From 1e548ee2b5f069e3362856249478baa8fd6abaf9 Mon Sep 17 00:00:00 2001 From: Marc Riegel Date: Wed, 22 Nov 2017 22:41:16 +0100 Subject: [PATCH 01/33] Added OnDemand and Spot Price models addressing #131 --- .../cloudprovider/aws/api/converter.go | 46 + .../cloudprovider/aws/api/ec2_autoscaling.go | 75 + .../aws/api/ec2_autoscaling_test.go | 152 + .../aws/api/ec2_launchconfiguration.go | 81 + .../aws/api/ec2_launchconfiguration_test.go | 145 + .../cloudprovider/aws/api/instance_info.go | 306 + .../aws/api/instance_info_test.go | 140 + .../aws/api/instance_spot_price_history.go | 131 + .../cloudprovider/aws/api/interfaces.go | 39 + .../aws/api/pricing_eu-west-1.json | 445344 +++++++++++++++ .../cloudprovider/aws/aws_cloud_provider.go | 17 +- .../aws/aws_cloud_provider_test.go | 12 +- .../cloudprovider/aws/aws_price_model.go | 119 + .../cloudprovider/aws/aws_price_model_test.go | 278 + .../cloudprovider/aws/ec2_instance_types.go | 78 +- .../cloudprovider/aws/price/descriptor.go | 70 + .../aws/price/ondemand/descriptor.go | 53 + .../aws/price/ondemand/descriptor_test.go | 119 + .../aws/price/spot/descriptor.go | 183 + .../cloudprovider/aws/price/spot/history.go | 122 + .../builder/cloud_provider_builder.go | 6 +- 21 files changed, 447497 insertions(+), 19 deletions(-) create mode 100644 cluster-autoscaler/cloudprovider/aws/api/converter.go create mode 100644 cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling.go create mode 100644 cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling_test.go create mode 100644 cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration.go create mode 100644 cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration_test.go create mode 100644 cluster-autoscaler/cloudprovider/aws/api/instance_info.go create mode 100644 cluster-autoscaler/cloudprovider/aws/api/instance_info_test.go create mode 100644 cluster-autoscaler/cloudprovider/aws/api/instance_spot_price_history.go create mode 100644 cluster-autoscaler/cloudprovider/aws/api/interfaces.go create mode 100644 cluster-autoscaler/cloudprovider/aws/api/pricing_eu-west-1.json create mode 100644 cluster-autoscaler/cloudprovider/aws/aws_price_model.go create mode 100644 cluster-autoscaler/cloudprovider/aws/aws_price_model_test.go create mode 100644 cluster-autoscaler/cloudprovider/aws/price/descriptor.go create mode 100644 cluster-autoscaler/cloudprovider/aws/price/ondemand/descriptor.go create mode 100644 cluster-autoscaler/cloudprovider/aws/price/ondemand/descriptor_test.go create mode 100644 cluster-autoscaler/cloudprovider/aws/price/spot/descriptor.go create mode 100644 cluster-autoscaler/cloudprovider/aws/price/spot/history.go diff --git a/cluster-autoscaler/cloudprovider/aws/api/converter.go b/cluster-autoscaler/cloudprovider/aws/api/converter.go new file mode 100644 index 000000000000..8b3bfb929f4c --- /dev/null +++ b/cluster-autoscaler/cloudprovider/aws/api/converter.go @@ -0,0 +1,46 @@ +/* +Copyright 2017 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package api + +import "strconv" + +func stringRefToFloat64(p *string) (float64, error) { + if p == nil { + return 0, nil + } + return strconv.ParseFloat(*p, 64) +} + +func stringRefToStringSlice(in ...*string) []string { + vs := make([]string, len(in)) + + for i, v := range in { + vs[i] = *v + } + + return vs +} + +func stringToStringSliceRef(in ...string) []*string { + vs := make([]*string, len(in)) + + for i, v := range in { + vs[i] = &v + } + + return vs +} diff --git a/cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling.go b/cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling.go new file mode 100644 index 000000000000..b28e0e6051f9 --- /dev/null +++ b/cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling.go @@ -0,0 +1,75 @@ +/* +Copyright 2017 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package api + +import ( + "fmt" + + "github.com/aws/aws-sdk-go/service/autoscaling" +) + +type awsEC2AutoscalingGroupService interface { + DescribeAutoScalingGroups(input *autoscaling.DescribeAutoScalingGroupsInput) (*autoscaling.DescribeAutoScalingGroupsOutput, error) +} + +// EC2AutoscalingGroup holds AWS Autoscaling Group information +type EC2AutoscalingGroup struct { + Name string + LaunchConfigurationName string + AvailabilityZones []string +} + +// NewEC2AutoscalingService is the constructor of autoscalingService which is a wrapper for the AWS EC2 +// Autoscaling Group API +func NewEC2AutoscalingService(awsEC2Service awsEC2AutoscalingGroupService) *autoscalingService { + return &autoscalingService{service: awsEC2Service} +} + +type autoscalingService struct { + service awsEC2AutoscalingGroupService +} + +// DescribeAutoscalingGroup returns the corresponding EC2AutoscalingGroup by the given autoscaling group name +func (ass *autoscalingService) DescribeAutoscalingGroup(autoscalingGroupName string) (*EC2AutoscalingGroup, error) { + req := &autoscaling.DescribeAutoScalingGroupsInput{ + AutoScalingGroupNames: []*string{&autoscalingGroupName}, + } + + for { + res, err := ass.service.DescribeAutoScalingGroups(req) + if err != nil { + return nil, err + } + + for _, group := range res.AutoScalingGroups { + if *group.AutoScalingGroupName == autoscalingGroupName { + return &EC2AutoscalingGroup{ + Name: *group.AutoScalingGroupName, + LaunchConfigurationName: *group.LaunchConfigurationName, + AvailabilityZones: stringRefToStringSlice(group.AvailabilityZones...), + }, nil + } + } + + req.NextToken = res.NextToken + if req.NextToken == nil { + break + } + } + + return nil, fmt.Errorf("autoscaling group named %s not found", autoscalingGroupName) +} diff --git a/cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling_test.go b/cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling_test.go new file mode 100644 index 000000000000..6dc0effb2574 --- /dev/null +++ b/cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling_test.go @@ -0,0 +1,152 @@ +/* +Copyright 2017 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package api + +import ( + "errors" + "testing" + + "fmt" + + "github.com/aws/aws-sdk-go/aws" + "github.com/aws/aws-sdk-go/service/autoscaling" + "github.com/stretchr/testify/assert" +) + +func TestAutoscalingService_DescribeAutoscalingGroup(t *testing.T) { + type testCase struct { + asName string + expectError bool + expectResult bool + } + type cases []testCase + + var ( + asName1 = "k8s-AutoscalingGroupWorker-TTTTTTTTTTTTT" + asName2 = "k8s-AutoscalingGroupWorker-YYYYYYYYYYYYY" + asName3 = "k8s-AutoscalingGroupWorker-XXXXXXXXXXXXX" + lcName1 = "k8s-LaunchConfigurationWorker-TTTTTTTTTTTTT" + lcName2 = "k8s-LaunchConfigurationWorker-YYYYYYYYYYYYY" + azName1 = "us-east-1a" + azName2 = "us-east-1b" + ) + + service := NewEC2AutoscalingService(newFakeAutoscalingService( + newAutoscalingMock(asName1, lcName1, azName1, azName2), + newAutoscalingMock(asName2, lcName2, azName1, azName2), + )) + + tcs := cases{ + { // good case: common case + asName1, + false, + true, + }, + { // good case: common case + asName2, + false, + true, + }, + { // error case: unknown autoscaling group + asName3, + true, + false, + }, + } + + for id, tc := range tcs { + out, err := service.DescribeAutoscalingGroup(tc.asName) + if tc.expectError { + assert.Error(t, err, fmt.Sprintf("case %d", id)) + assert.Nil(t, out, fmt.Sprintf("case %d", id)) + } else { + assert.NoError(t, err, fmt.Sprintf("case %d", id)) + assert.NotNil(t, out, fmt.Sprintf("case %d", id)) + } + if tc.expectResult { + assert.Equal(t, tc.asName, out.Name, fmt.Sprintf("case %d", id)) + } + + } +} + +func newFakeAutoscalingService(ams ...autoscalingMock) *fakeAutoscalingService { + m := make(map[string]*autoscaling.Group) + + for _, am := range ams { + m[am.name] = am.asg + } + + return &fakeAutoscalingService{m, []string{"token-a", "token-b"}} +} + +func newAutoscalingMock(asName, lcName string, availabilityZones ...string) autoscalingMock { + return autoscalingMock{ + asg: &autoscaling.Group{ + AvailabilityZones: stringToStringSliceRef(availabilityZones...), + LaunchConfigurationName: aws.String(lcName), + AutoScalingGroupName: aws.String(asName), + }, + name: asName, + } +} + +type autoscalingMock struct { + asg *autoscaling.Group + name string +} + +type fakeAutoscalingService struct { + mocks map[string]*autoscaling.Group + tokens []string +} + +func (lcs *fakeAutoscalingService) DescribeAutoScalingGroups(input *autoscaling.DescribeAutoScalingGroupsInput) (output *autoscaling.DescribeAutoScalingGroupsOutput, err error) { + output = new(autoscaling.DescribeAutoScalingGroupsOutput) + + if len(lcs.tokens) != 0 { + if input.NextToken == nil { + output.NextToken = &lcs.tokens[0] + return + } + + for i, token := range lcs.tokens { + if *input.NextToken == token { + next := i + 1 + if next < len(lcs.tokens) { + nextToken := lcs.tokens[next] + output.NextToken = &nextToken + } else { + goto respond + } + return + } + } + + return nil, errors.New("invalid token") + } + +respond: + output.AutoScalingGroups = make([]*autoscaling.Group, 0) + for _, name := range input.AutoScalingGroupNames { + if item, found := lcs.mocks[*name]; found { + output.AutoScalingGroups = append(output.AutoScalingGroups, item) + } + } + + return +} diff --git a/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration.go b/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration.go new file mode 100644 index 000000000000..4cbaabfc53e6 --- /dev/null +++ b/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration.go @@ -0,0 +1,81 @@ +/* +Copyright 2017 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package api + +import ( + "fmt" + + "github.com/aws/aws-sdk-go/service/autoscaling" +) + +type awsEC2LaunchConfigurationService interface { + DescribeLaunchConfigurations(input *autoscaling.DescribeLaunchConfigurationsInput) (*autoscaling.DescribeLaunchConfigurationsOutput, error) +} + +// EC2LaunchConfiguration holds AWS EC2 Launch Configuration information +type EC2LaunchConfiguration struct { + HasSpotMarkedBid bool + SpotPrice float64 + Name string + InstanceType string +} + +// NewEC2LaunchConfigurationService is the constructor of launchConfigurationService which is a wrapper for +// the AWS EC2 LaunchConfiguration API +func NewEC2LaunchConfigurationService(awsEC2Service awsEC2LaunchConfigurationService) *launchConfigurationService { + return &launchConfigurationService{service: awsEC2Service} +} + +type launchConfigurationService struct { + service awsEC2LaunchConfigurationService +} + +// DescribeLaunchConfiguration returns the corresponding launch configuration by the given launch configuration name. +func (lcs *launchConfigurationService) DescribeLaunchConfiguration(launchConfigurationName string) (*EC2LaunchConfiguration, error) { + req := &autoscaling.DescribeLaunchConfigurationsInput{ + LaunchConfigurationNames: []*string{&launchConfigurationName}, + } + + for { + res, err := lcs.service.DescribeLaunchConfigurations(req) + if err != nil { + return nil, err + } + + for _, lc := range res.LaunchConfigurations { + if *lc.LaunchConfigurationName == launchConfigurationName { + p, err := stringRefToFloat64(lc.SpotPrice) + if err != nil { + return nil, fmt.Errorf("failed to parse price: %v", err) + } + return &EC2LaunchConfiguration{ + HasSpotMarkedBid: lc.SpotPrice != nil, + SpotPrice: p, + Name: *lc.LaunchConfigurationName, + InstanceType: *lc.InstanceType, + }, nil + } + } + + req.NextToken = res.NextToken + if req.NextToken == nil { + break + } + } + + return nil, fmt.Errorf("launch configuration named %s not found", launchConfigurationName) +} diff --git a/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration_test.go b/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration_test.go new file mode 100644 index 000000000000..944475488688 --- /dev/null +++ b/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration_test.go @@ -0,0 +1,145 @@ +/* +Copyright 2017 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package api + +import ( + "fmt" + "testing" + + "errors" + + "github.com/aws/aws-sdk-go/aws" + "github.com/aws/aws-sdk-go/service/autoscaling" + "github.com/stretchr/testify/assert" +) + +func TestLaunchConfigurationService_DescribeLaunchConfiguration(t *testing.T) { + type testCase struct { + lcName string + service awsEC2LaunchConfigurationService + expectError bool + } + type cases []testCase + + var ( + lcName1 = "k8s-LaunchConfigurationWorker-TTTTTTTTTTTTT" + lcName2 = "k8s-LaunchConfigurationWorker-YYYYYYYYYYYYY" + lcName3 = "k8s-LaunchConfigurationWorker-XXXXXXXXXXXXX" + ) + + //NewEC2LaunchConfigurationService() + + tcs := cases{ + { // good case: common case + lcName1, + newLCFakeService(lcName1, "m3.xlarge", stringSlice("token-a"), nil), + false, + }, + { // good case: common case + lcName2, + newLCFakeService(lcName2, "m3.xlarge", stringSlice("token-a"), nil), + false, + }, + { // good case: common case + lcName3, + newLCFakeService(lcName2, "m3.xlarge", stringSlice("token-a"), nil), + true, + }, + } + + for id, tc := range tcs { + service := NewEC2LaunchConfigurationService(tc.service) + out, err := service.DescribeLaunchConfiguration(tc.lcName) + if tc.expectError { + assert.Error(t, err, fmt.Sprintf("case %d", id)) + assert.Nil(t, out, fmt.Sprintf("case %d", id)) + } else { + assert.NoError(t, err, fmt.Sprintf("case %d", id)) + assert.NotNil(t, out, fmt.Sprintf("case %d", id)) + } + + } +} + +func newLCFakeService( + name string, + instanceType string, + tokens []string, + err error, +) *fakeLCService { + return &fakeLCService{ + mocks: map[string]*autoscaling.LaunchConfiguration{ + name: { + LaunchConfigurationName: aws.String(name), + LaunchConfigurationARN: aws.String(fmt.Sprintf("arn:aws:ec2:launchconfiguration:123456789:%s", name)), + InstanceType: aws.String(instanceType), + }, + }, + err: err, + tokens: tokens, + } +} + +type fakeLCService struct { + mocks map[string]*autoscaling.LaunchConfiguration + err error + tokens []string +} + +func (lcs *fakeLCService) DescribeLaunchConfigurations(input *autoscaling.DescribeLaunchConfigurationsInput) (output *autoscaling.DescribeLaunchConfigurationsOutput, err error) { + if lcs.err != nil { + return nil, err + } + + output = new(autoscaling.DescribeLaunchConfigurationsOutput) + + if len(lcs.tokens) != 0 { + if input.NextToken == nil { + output.NextToken = &lcs.tokens[0] + return + } + + for i, token := range lcs.tokens { + if *input.NextToken == token { + next := i + 1 + if next < len(lcs.tokens) { + nextToken := lcs.tokens[next] + output.NextToken = &nextToken + } else { + goto respond + } + return + } + } + + return nil, errors.New("invalid token") + } + +respond: + output.LaunchConfigurations = make([]*autoscaling.LaunchConfiguration, 0) + for _, name := range input.LaunchConfigurationNames { + if item, found := lcs.mocks[*name]; found { + output.LaunchConfigurations = append(output.LaunchConfigurations, item) + } + } + + return +} + +func stringSlice(s ...string) []string { + return s +} diff --git a/cluster-autoscaler/cloudprovider/aws/api/instance_info.go b/cluster-autoscaler/cloudprovider/aws/api/instance_info.go new file mode 100644 index 000000000000..aa74acf084f4 --- /dev/null +++ b/cluster-autoscaler/cloudprovider/aws/api/instance_info.go @@ -0,0 +1,306 @@ +/* +Copyright 2017 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package api + +import ( + "encoding/json" + "fmt" + "io/ioutil" + "net/http" + "regexp" + "strconv" + "strings" + "sync" + "time" +) + +const instanceInfoCacheMaxAge = time.Hour * 6 +const awsPricingAPIURLTemplate = "https://pricing.us-east-1.amazonaws.com/offers/v1.0/aws/AmazonEC2/current/%s/index.json" + +// InstanceInfo holds AWS EC2 instance information +type InstanceInfo struct { + InstanceType string + OnDemandPrice float64 + VCPU int64 + MemoryMb int64 + GPU int64 +} + +type httpClient interface { + Do(req *http.Request) (*http.Response, error) +} + +// NewEC2InstanceInfoService is the constructor of instanceInfoService which is a wrapper for AWS Pricing API. +func NewEC2InstanceInfoService(client httpClient) *instanceInfoService { + return &instanceInfoService{ + client: client, + cache: make(instanceInfoCache), + } +} + +type instanceInfoService struct { + client httpClient + cache instanceInfoCache + mu sync.RWMutex +} + +// DescribeInstanceInfo returns the corresponding aws instance info by given instance type and availability zone. +func (s *instanceInfoService) DescribeInstanceInfo(instanceType string, availabilityZone string) (*InstanceInfo, error) { + if s.shouldSync(availabilityZone) { + if err := s.sync(availabilityZone); err != nil { + return nil, fmt.Errorf("failed to sync aws product and price information: %v", err) + } + } + + if bucket, found := s.cache[availabilityZone]; found { + for _, info := range bucket.info { + if info.InstanceType == instanceType { + return &info, nil + } + } + } + return nil, fmt.Errorf("instance info not available for instance type %s in zone %s", instanceType, availabilityZone) +} + +func (s *instanceInfoService) shouldSync(availabilityZone string) bool { + bucket, found := s.cache[availabilityZone] + if !found { + return true + } + + return bucket.LastSync().Before(time.Now().Truncate(instanceInfoCacheMaxAge)) +} + +func (s *instanceInfoService) sync(availabilityZone string) error { + s.mu.Lock() + defer s.mu.Unlock() + + bucket, found := s.cache[availabilityZone] + if !found { + bucket = new(regionalInstanceInfoBucket) + s.cache[availabilityZone] = bucket + } + + response, err := s.fetch(availabilityZone, bucket.ETag) + if err != nil { + return err + } + + if response == nil { + bucket.SetLastSync() + return nil + } + + instances := make([]InstanceInfo, 0) + + for _, product := range response.Products { + sku := product.SKU + attr := product.Attributes + if attr.InstanceType != "" { + + i := InstanceInfo{ + InstanceType: attr.InstanceType, + } + + var err error + if attr.Memory != "" && attr.Memory != "NA" { + if i.MemoryMb, err = parseMemory(attr.Memory); err != nil { + return fmt.Errorf("parser error %v", err) + } + } + + if attr.VCPU != "" { + if i.VCPU, err = parseCPU(attr.VCPU); err != nil { + return fmt.Errorf("parser error %v", err) + } + } + if attr.GPU != "" { + if i.GPU, err = parseCPU(attr.GPU); err != nil { + return fmt.Errorf("parser error %v", err) + } + } + + for priceSKU, offers := range response.Terms.OnDemand { + if priceSKU != sku { + continue + } + + for _, offer := range offers { + for _, price := range offer.PriceDimensions { + if price.EndRange != "Inf" || price.Unit != "Hrs" { + continue + } + p, err := strconv.ParseFloat(price.PricePerUnit.USD, 64) + if err != nil { + return fmt.Errorf("error parsing price for SKU %s [%s] %v", sku, price.PricePerUnit.USD, err) + } + + i.OnDemandPrice = p + } + } + } + + instances = append(instances, i) + } + } + + bucket.Clear() + bucket.Add(instances...) + bucket.SetLastSync() + + return nil +} + +func (s *instanceInfoService) fetch(availabilityZone string, etag string) (*response, error) { + url := fmt.Sprintf(awsPricingAPIURLTemplate, availabilityZone) + + req, err := http.NewRequest("GET", url, nil) + + if len(etag) != 0 { + req.Header.Add("If-None-Match", etag) + } + + res, err := s.client.Do(req) + if err != nil { + return nil, fmt.Errorf("error fetching [%s]", url) + } + + defer res.Body.Close() + + if res.StatusCode == 304 { + return nil, nil + } + + var body []byte + if body, err = ioutil.ReadAll(res.Body); err != nil { + return nil, fmt.Errorf("error loading content of %s", url) + } + + if res.StatusCode != 200 { + return nil, fmt.Errorf("got unexpected http status code %s with body [%s]", res.StatusCode, string(body)) + } + + var data = new(response) + if err := json.Unmarshal(body, data); err != nil { + return nil, fmt.Errorf("error unmarshaling %s with body [%s]", url, string(body)) + } + + return data, nil +} + +type instanceInfoCache map[string]*regionalInstanceInfoBucket + +type regionalInstanceInfoBucket struct { + lastSync time.Time + ETag string + mu sync.RWMutex + info []InstanceInfo +} + +func (b *regionalInstanceInfoBucket) SetLastSync() { + b.mu.Lock() + defer b.mu.Unlock() + + b.lastSync = time.Now() +} + +func (b *regionalInstanceInfoBucket) LastSync() time.Time { + b.mu.RLock() + defer b.mu.RUnlock() + + return b.lastSync +} + +func (b *regionalInstanceInfoBucket) Clear() { + b.mu.Lock() + defer b.mu.Unlock() + + b.info = make([]InstanceInfo, 0) +} + +func (b *regionalInstanceInfoBucket) Add(info ...InstanceInfo) { + b.mu.Lock() + defer b.mu.Unlock() + + b.info = append(b.info, info...) +} + +type response struct { + Products map[string]product `json:"products"` + Terms terms `json:"terms"` +} + +type terms struct { + OnDemand map[string]productOffers `json:"OnDemand"` +} + +type productOffers map[string]productOffer + +type productOffer struct { + OfferTermCode string `json:"offerTermCode"` + SKU string `json:"sku"` + PriceDimensions map[string]productPriceDimension `json:"priceDimensions"` +} + +type productPriceDimension struct { + RateCode string `json:"rateCode"` + Description string `json:"description"` + Unit string `json:"unit"` + BeginRange string `json:"beginRange"` + EndRange string `json:"endRange"` + PricePerUnit pricePerUnit `json:"pricePerUnit"` +} + +type pricePerUnit struct { + USD string `json:"USD"` +} + +type product struct { + SKU string `json:"sku"` + Attributes productAttributes `json:"attributes"` +} + +type productAttributes struct { + InstanceType string `json:"instanceType"` + VCPU string `json:"vcpu"` + Memory string `json:"memory"` + GPU string `json:"gpu"` + OperatingSystem string `json:"operatingSystem"` +} + +func parseMemory(memory string) (int64, error) { + reg, err := regexp.Compile("[^0-9\\.]+") + if err != nil { + return 0, fmt.Errorf("error compiling regex %v", err) + } + + parsed := strings.TrimSpace(reg.ReplaceAllString(memory, "")) + mem, err := strconv.ParseFloat(parsed, 64) + if err != nil { + return 0, fmt.Errorf("error parsing memory [%s] %v", memory, err) + } + + return int64(mem * float64(1024)), nil +} + +func parseCPU(cpu string) (int64, error) { + i, err := strconv.ParseInt(cpu, 10, 64) + if err != nil { + return 0, fmt.Errorf("error parsing cpu [%s] %v", cpu, err) + } + return i, nil +} diff --git a/cluster-autoscaler/cloudprovider/aws/api/instance_info_test.go b/cluster-autoscaler/cloudprovider/aws/api/instance_info_test.go new file mode 100644 index 000000000000..470454794f36 --- /dev/null +++ b/cluster-autoscaler/cloudprovider/aws/api/instance_info_test.go @@ -0,0 +1,140 @@ +/* +Copyright 2017 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package api + +import ( + "bytes" + "fmt" + "io/ioutil" + "net/http" + "net/url" + "os" + "testing" + + "github.com/stretchr/testify/assert" +) + +var pricingBody []byte + +func init() { + f, err := os.Open("pricing_eu-west-1.json") + if err != nil { + panic(err) + } + pricingBody, err = ioutil.ReadAll(f) + if err != nil { + panic(err) + } +} + +func TestInstanceInfoService_DescribeInstanceInfo(t *testing.T) { + usEastOneURL, err := url.Parse(fmt.Sprintf(awsPricingAPIURLTemplate, "us-east-1")) + assert.NoError(t, err) + + usWestOneURL, err := url.Parse(fmt.Sprintf(awsPricingAPIURLTemplate, "us-west-1")) + assert.NoError(t, err) + + //usWestTwoURL, err := url.Parse(fmt.Sprintf(awsPricingAPIURLTemplate, "us-west-2")) + //assert.NoError(t, err) + + mc := &mockClient{m: make(map[string]mockResponse)} + mc.m[usEastOneURL.Path] = mockResponse{pricingBody, 200} + mc.m[usWestOneURL.Path] = mockResponse{[]byte("some non-json stuff"), 200} + + type testCase struct { + instanceType string + availabilityZone string + expectError bool + expectOnDemandPrice float64 + expectCPU int64 + } + type cases []testCase + + tcs := cases{ + { // good case: common case + "m4.xlarge", + "us-east-1", + false, + 0, + 4, + }, + { // error case: unknown availability zone + "m4.xlarge", + "eu-east-2", + true, + 0, + 0, + }, + { // error case: unknown instance + "unknown-instance", + "us-east-1", + true, + 0, + 0, + }, + { // error case: invalid server response + "m4.xlarge", + "us-west-1", + true, + 0, + 0, + }, + } + + service := NewEC2InstanceInfoService(mc) + + for n, tc := range tcs { + info, err := service.DescribeInstanceInfo(tc.instanceType, tc.availabilityZone) + if tc.expectError { + assert.Error(t, err, fmt.Sprintf("case %d", n)) + } else { + assert.NoError(t, err, fmt.Sprintf("case %d", n)) + assert.Equal(t, tc.expectOnDemandPrice, info.OnDemandPrice) + assert.Equal(t, tc.expectCPU, info.VCPU) + assert.Equal(t, tc.instanceType, info.InstanceType) + } + + } +} + +type mockResponse struct { + body []byte + statusCode int +} + +type mockClient struct { + m map[string]mockResponse +} + +func (m *mockClient) Do(req *http.Request) (*http.Response, error) { + if mock, found := m.m[req.URL.Path]; found { + return &http.Response{ + Status: http.StatusText(mock.statusCode), + StatusCode: mock.statusCode, + ContentLength: int64(len(mock.body)), + Body: ioutil.NopCloser(bytes.NewReader(mock.body)), + Request: req, + }, nil + } + return &http.Response{ + Status: http.StatusText(404), + StatusCode: 404, + Request: req, + Body: ioutil.NopCloser(bytes.NewReader([]byte{})), + ContentLength: 0, + }, nil +} diff --git a/cluster-autoscaler/cloudprovider/aws/api/instance_spot_price_history.go b/cluster-autoscaler/cloudprovider/aws/api/instance_spot_price_history.go new file mode 100644 index 000000000000..295a0ff9e0c4 --- /dev/null +++ b/cluster-autoscaler/cloudprovider/aws/api/instance_spot_price_history.go @@ -0,0 +1,131 @@ +/* +Copyright 2017 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package api + +import ( + "sort" + "time" + + "github.com/aws/aws-sdk-go/service/ec2" +) + +// EmptySpotPriceItem is an empty struct for that could be used for default values +var EmptySpotPriceItem SpotPriceItem + +type awsSpotPriceHistoryService interface { + DescribeSpotPriceHistory(input *ec2.DescribeSpotPriceHistoryInput) (*ec2.DescribeSpotPriceHistoryOutput, error) +} + +// SpotPriceHistory is the output returned by DescribeSpotPriceHistory +type SpotPriceHistory struct { + HistoryItems SpotPriceItems +} + +// NewEC2SpotPriceService is the constructor of spotPriceHistoryService +func NewEC2SpotPriceService(awsEC2Service awsSpotPriceHistoryService) *spotPriceHistoryService { + return &spotPriceHistoryService{service: awsEC2Service} +} + +type spotPriceHistoryService struct { + service awsSpotPriceHistoryService +} + +// DescribeSpotPriceHistory returns the spot price history for given instance type +func (spd *spotPriceHistoryService) DescribeSpotPriceHistory(instanceType string, availabilityZone string, startTime time.Time) (*SpotPriceHistory, error) { + req := &ec2.DescribeSpotPriceHistoryInput{ + Filters: []*ec2.Filter{ + spotPriceFilter("availability-zone", availabilityZone), + spotPriceFilter("product-description", "Linux/UNIX"), + spotPriceFilter("instance-type", instanceType), + }, + StartTime: &startTime, + } + + prices := make(SpotPriceItems, 0) + + for { + res, err := spd.service.DescribeSpotPriceHistory(req) + if err != nil { + return nil, err + } + + prices = append(prices, convertSpotPriceItems(res.SpotPriceHistory...)...) + + req.NextToken = res.NextToken + if req.NextToken == nil || len(*req.NextToken) == 0 { + break + } + } + + sort.Sort(prices) + + return &SpotPriceHistory{HistoryItems: prices}, nil +} + +func newSpotPriceItem(price float64, ts time.Time) SpotPriceItem { + return SpotPriceItem{ + Timestamp: ts, + Price: price, + } +} + +// SpotPriceItem consists of a timestamp and a price +type SpotPriceItem struct { + Timestamp time.Time + Price float64 +} + +// SpotPriceItems is a list of SpotPriceItem +// Implements sort.Interface +type SpotPriceItems []SpotPriceItem + +func (sps SpotPriceItems) Len() int { + return len(sps) +} + +func (sps SpotPriceItems) Less(i, j int) bool { + return sps[i].Timestamp.Before(sps[j].Timestamp) +} + +func (sps SpotPriceItems) Swap(i, j int) { + sps[i], sps[j] = sps[j], sps[i] +} + +func spotPriceFilter(name string, values ...string) *ec2.Filter { + vs := stringToStringSliceRef(values...) + + return &ec2.Filter{ + Name: &name, + Values: vs, + } +} + +func convertSpotPriceItems(in ...*ec2.SpotPrice) SpotPriceItems { + prices := make(SpotPriceItems, len(in)) + + for i, item := range in { + price, err := stringRefToFloat64(item.SpotPrice) + if err != nil { + // TODO add logging + continue + } + + prices[i] = newSpotPriceItem(price, *item.Timestamp) + } + + return prices +} diff --git a/cluster-autoscaler/cloudprovider/aws/api/interfaces.go b/cluster-autoscaler/cloudprovider/aws/api/interfaces.go new file mode 100644 index 000000000000..6246bc088e71 --- /dev/null +++ b/cluster-autoscaler/cloudprovider/aws/api/interfaces.go @@ -0,0 +1,39 @@ +/* +Copyright 2017 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package api + +import "time" + +// InstanceInfoDescriber is an interface to describe instance information +type InstanceInfoDescriber interface { + DescribeInstanceInfo(instanceType string, availabilityZone string) (*InstanceInfo, error) +} + +// SpotPriceHistoryDescriber is an interface to describe spot price history information +type SpotPriceHistoryDescriber interface { + DescribeSpotPriceHistory(instanceType string, availabilityZone string, startTime time.Time) (*SpotPriceHistory, error) +} + +// LaunchConfigurationDescriber is an interface to describe aws ec2 launch configurations +type LaunchConfigurationDescriber interface { + DescribeLaunchConfiguration(launchConfigurationName string) (*EC2LaunchConfiguration, error) +} + +// AutoscalingGroupDescriber is an interface to describe aws ec2 autoscaling groups +type AutoscalingGroupDescriber interface { + DescribeAutoscalingGroup(autoscalingGroupName string) (*EC2AutoscalingGroup, error) +} diff --git a/cluster-autoscaler/cloudprovider/aws/api/pricing_eu-west-1.json b/cluster-autoscaler/cloudprovider/aws/api/pricing_eu-west-1.json new file mode 100644 index 000000000000..3d88838cb1d4 --- /dev/null +++ b/cluster-autoscaler/cloudprovider/aws/api/pricing_eu-west-1.json @@ -0,0 +1,445344 @@ +{ + "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/", + "offerCode" : "AmazonEC2", + "version" : "20171117190039", + "publicationDate" : "2017-11-17T19:00:39Z", + "products" : { + "HYZTQKMNAKH6FG9C" : { + "sku" : "HYZTQKMNAKH6FG9C", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.9xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "72 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.9xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "4500 Mbps", + "ecu" : "139", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "72", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2BEAK4F883TCCQMS" : { + "sku" : "2BEAK4F883TCCQMS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "1 x 120", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7QJJXQX9QWC5GEPD" : { + "sku" : "7QJJXQX9QWC5GEPD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.2xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "1600 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KV46EU5KJGKB53ZX" : { + "sku" : "KV46EU5KJGKB53ZX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.medium", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "3.75 GiB", + "storage" : "1 x 410", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m1.medium", + "operation" : "RunInstances:0010", + "ecu" : "2", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DUHF29UDCPK7Z84H" : { + "sku" : "DUHF29UDCPK7Z84H", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "8 x 1.9 NVMe SSD", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.16xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QC7Z34UZZ9GT65EJ" : { + "sku" : "QC7Z34UZZ9GT65EJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "768 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:p2.16xlarge", + "operation" : "RunInstances:000g", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "16", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CZVM5AM8JCW2BV2A" : { + "sku" : "CZVM5AM8JCW2BV2A", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "1 x 120", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XZ79CEGC6NSB9FQ8" : { + "sku" : "XZ79CEGC6NSB9FQ8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.2xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EGSUTJB8BPPKZR2N" : { + "sku" : "EGSUTJB8BPPKZR2N", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "68.4 GiB", + "storage" : "2 x 840", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:m2.4xlarge", + "operation" : "RunInstances:0800", + "ecu" : "26", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "T72RDCVVMHKECZ63" : { + "sku" : "T72RDCVVMHKECZ63", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "68.4 GiB", + "storage" : "2 x 840", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m2.4xlarge", + "operation" : "RunInstances:0006", + "ecu" : "26", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JADXKP28ZPH5KPM8" : { + "sku" : "JADXKP28ZPH5KPM8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:m3.2xlarge", + "operation" : "RunInstances:0800", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2VKUG32DUF246T8S" : { + "sku" : "2VKUG32DUF246T8S", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Inbound", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "US East (Ohio)", + "toLocationType" : "AWS Region", + "usagetype" : "USE1-USE2-AWS-In-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "9RDKMFQK57E4CCGM" : { + "sku" : "9RDKMFQK57E4CCGM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "1 x 120", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XMCTY6J8BEK2CTG2" : { + "sku" : "XMCTY6J8BEK2CTG2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 800 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i2.xlarge", + "operation" : "RunInstances:0002", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "G7CNANS9EFDWRFTB" : { + "sku" : "G7CNANS9EFDWRFTB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "1 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.2xlarge", + "operation" : "RunInstances:0010", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YQT3C842QHBG6XCU" : { + "sku" : "YQT3C842QHBG6XCU", + "productFamily" : "Storage", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "storageMedia" : "HDD-backed", + "volumeType" : "Throughput Optimized HDD", + "maxVolumeSize" : "16 TiB", + "maxIopsvolume" : "500 - based on 1 MiB I/O size", + "maxThroughputvolume" : "500 MiB/s", + "usagetype" : "EBS:VolumeUsage.st1", + "operation" : "", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QPCQXM3E9RSBMMU9" : { + "sku" : "QPCQXM3E9RSBMMU9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "1 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.2xlarge", + "operation" : "RunInstances:0010", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZH5YZDSEMAZNXC2E" : { + "sku" : "ZH5YZDSEMAZNXC2E", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "2 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i2.2xlarge", + "operation" : "RunInstances", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KP89XKS7BFTMVX77" : { + "sku" : "KP89XKS7BFTMVX77", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.small", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "1.7 GiB", + "storage" : "1 x 160", + "networkPerformance" : "Low", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage", + "operation" : "RunInstances:0006", + "ecu" : "Variable", + "normalizationSizeFactor" : "1", + "preInstalledSw" : "SQL Std", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "35QACGXEGWD9AZHY" : { + "sku" : "35QACGXEGWD9AZHY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "4 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.large", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SS8ZSWSJUYBWBV7G" : { + "sku" : "SS8ZSWSJUYBWBV7G", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.18xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "72", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "144 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.18xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "9000 Mbps", + "ecu" : "278", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "144", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3EM3XGHPBHA5A7G9" : { + "sku" : "3EM3XGHPBHA5A7G9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.8xlarge", + "operation" : "RunInstances:000g", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HHBS2UFCC9G8F3DM" : { + "sku" : "HHBS2UFCC9G8F3DM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.medium", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.3 GHz", + "memory" : "4 GiB", + "storage" : "EBS only", + "networkPerformance" : "Low to Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:t2.medium", + "operation" : "RunInstances:0800", + "ecu" : "Variable", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3B3UNRXVA6RCCGWP" : { + "sku" : "3B3UNRXVA6RCCGWP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "244 GiB", + "storage" : "24 x 2000 HDD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:d2.8xlarge", + "operation" : "RunInstances:0800", + "ecu" : "116", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9KA8YGU8KFGQ7ERN" : { + "sku" : "9KA8YGU8KFGQ7ERN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.4xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QCQ27AYFPSSTJG55" : { + "sku" : "QCQ27AYFPSSTJG55", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "34.2 GiB", + "storage" : "1 x 850", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m2.2xlarge", + "operation" : "RunInstances", + "ecu" : "13", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UAKHM4ASYH9KFBED" : { + "sku" : "UAKHM4ASYH9KFBED", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:p2.8xlarge", + "operation" : "RunInstances:0010", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "29WJRTNV2QJXKUW5" : { + "sku" : "29WJRTNV2QJXKUW5", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "1 x 240", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.2xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "23", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MGHXZ6GM47D23SUV" : { + "sku" : "MGHXZ6GM47D23SUV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "hs1.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "17", + "physicalProcessor" : "Intel Xeon E5-2650", + "clockSpeed" : "2 GHz", + "memory" : "117 GiB", + "storage" : "24 x 2000", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:hs1.8xlarge", + "operation" : "RunInstances:0800", + "ecu" : "35", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "8WJ6ATW98R4XURM2" : { + "sku" : "8WJ6ATW98R4XURM2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.large", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "400 Mbps", + "ecu" : "135", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "W3WU9RECE72NMJ77" : { + "sku" : "W3WU9RECE72NMJ77", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "15 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.2xlarge", + "operation" : "RunInstances:000g", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MB9M33K6AWVAZT8U" : { + "sku" : "MB9M33K6AWVAZT8U", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "1 x 320 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.4xlarge", + "operation" : "RunInstances:0002", + "ecu" : "52", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Z8KQMF3Z8ZFPNANM" : { + "sku" : "Z8KQMF3Z8ZFPNANM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "2 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i2.2xlarge", + "operation" : "RunInstances:0002", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BD398TEHQSUMAUDS" : { + "sku" : "BD398TEHQSUMAUDS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.large", + "operation" : "RunInstances:0006", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "8U8GT7P4FU5ABATQ" : { + "sku" : "8U8GT7P4FU5ABATQ", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "1 x 480", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.4xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "47", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "F2NC9U5PH9XZD7CQ" : { + "sku" : "F2NC9U5PH9XZD7CQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.8xlarge", + "operation" : "RunInstances:0002", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TKW4P5TMSVH4PAQ3" : { + "sku" : "TKW4P5TMSVH4PAQ3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.2xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "1600 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3FHKPAK9WZBH4HVY" : { + "sku" : "3FHKPAK9WZBH4HVY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.10xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "40", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "160 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.10xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "80", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AB34GJVVFDYBBGDJ" : { + "sku" : "AB34GJVVFDYBBGDJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "15 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.2xlarge", + "operation" : "RunInstances:0010", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9MG5B7V4UUU2WPAV" : { + "sku" : "9MG5B7V4UUU2WPAV", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "AWS Inbound", + "fromLocation" : "External", + "fromLocationType" : "Other", + "toLocation" : "US East (N. Virginia)", + "toLocationType" : "AWS Region", + "usagetype" : "DataTransfer-In-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "5CUNSRC3R37KEBS7" : { + "sku" : "5CUNSRC3R37KEBS7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "f1.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:f1.2xlarge", + "operation" : "RunInstances:0800", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KWHF9MHUCVG2FS5B" : { + "sku" : "KWHF9MHUCVG2FS5B", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m3.xlarge", + "operation" : "RunInstances:0102", + "ecu" : "13", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6TGXJKCAZTAFTYB9" : { + "sku" : "6TGXJKCAZTAFTYB9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.8xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "6000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "77PE9Y6MJW62DYCD" : { + "sku" : "77PE9Y6MJW62DYCD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:m4.large", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "450 Mbps", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "32XCE2AVYT82WZYJ" : { + "sku" : "32XCE2AVYT82WZYJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "8 x 1.9 NVMe SSD", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.16xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "J8FC8SEVZRJMDMBB" : { + "sku" : "J8FC8SEVZRJMDMBB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "244 GiB", + "storage" : "24 x 2000 HDD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:d2.8xlarge", + "operation" : "RunInstances:0102", + "ecu" : "116", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "C8UY35TVY9KH2ZPK" : { + "sku" : "C8UY35TVY9KH2ZPK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "30.5 GiB", + "storage" : "3 x 2000 HDD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:d2.xlarge", + "operation" : "RunInstances", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DXSPZRZ93HBNNHCJ" : { + "sku" : "DXSPZRZ93HBNNHCJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "7.5 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.xlarge", + "operation" : "RunInstances:0102", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CMJW5X9JZ98RXSMU" : { + "sku" : "CMJW5X9JZ98RXSMU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "7.5 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:c3.xlarge", + "operation" : "RunInstances:0800", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Y8HYRU3BZZ4QFJHH" : { + "sku" : "Y8HYRU3BZZ4QFJHH", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Outbound", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "Asia Pacific (Seoul)", + "toLocationType" : "AWS Region", + "usagetype" : "USE1-APN2-AWS-Out-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "WHYQJ8ZPHXUK6SXM" : { + "sku" : "WHYQJ8ZPHXUK6SXM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "3.75 GiB", + "storage" : "2 x 16 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.large", + "operation" : "RunInstances:0202", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YD2QA7TB4GYV4U3P" : { + "sku" : "YD2QA7TB4GYV4U3P", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "7.5 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:m3.large", + "operation" : "RunInstances:0800", + "ecu" : "6.5", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "84S2KXJ69JV6DQFX" : { + "sku" : "84S2KXJ69JV6DQFX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.16xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "12000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UMJEA2FJR4MEZ7ZC" : { + "sku" : "UMJEA2FJR4MEZ7ZC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "1 x 320 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.4xlarge", + "operation" : "RunInstances:0102", + "ecu" : "52", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RBSDAQVUVBS5AAS2" : { + "sku" : "RBSDAQVUVBS5AAS2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "122 GiB", + "storage" : "12 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:d2.4xlarge", + "operation" : "RunInstances:0002", + "ecu" : "56", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MKTYG4ZPBZEJP3T8" : { + "sku" : "MKTYG4ZPBZEJP3T8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6NHJBAA5ZJ25DJVN" : { + "sku" : "6NHJBAA5ZJ25DJVN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "1 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.2xlarge", + "operation" : "RunInstances:0102", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Q7DXWWF6MF8PNEWR" : { + "sku" : "Q7DXWWF6MF8PNEWR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m3.2xlarge", + "operation" : "RunInstances", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MGFVS9REN5EG5F65" : { + "sku" : "MGFVS9REN5EG5F65", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.2xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "J28DJ6QCZ8VU7DZQ" : { + "sku" : "J28DJ6QCZ8VU7DZQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "244 GiB", + "storage" : "24 x 2000 HDD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:d2.8xlarge", + "operation" : "RunInstances:0002", + "ecu" : "116", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "M2YSHUBETB3JX4M4" : { + "sku" : "M2YSHUBETB3JX4M4", + "productFamily" : "NAT Gateway", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "group" : "NGW:NatGateway", + "groupDescription" : "Hourly charge for NAT Gateways", + "usagetype" : "NatGateway-Hours", + "operation" : "NatGateway", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "B6VB3UEXSBZ2WHBT" : { + "sku" : "B6VB3UEXSBZ2WHBT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.large", + "operation" : "RunInstances:0010", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BHX8HR3SKNMTY2Z6" : { + "sku" : "BHX8HR3SKNMTY2Z6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "15 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.2xlarge", + "operation" : "RunInstances:0002", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TCG3S2HMU5VP2DFN" : { + "sku" : "TCG3S2HMU5VP2DFN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "30 GiB", + "storage" : "2 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:c3.4xlarge", + "operation" : "RunInstances:0800", + "ecu" : "55", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QZ5WGYAMVW8QTQY4" : { + "sku" : "QZ5WGYAMVW8QTQY4", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "60 GiB", + "storage" : "2 x 120 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:g2.8xlarge", + "operation" : "RunInstances", + "ecu" : "104", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "S73ZA9CU68E57ZAH" : { + "sku" : "S73ZA9CU68E57ZAH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 800 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i2.xlarge", + "operation" : "RunInstances:0102", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MQ6M7PWCD7PJTKHD" : { + "sku" : "MQ6M7PWCD7PJTKHD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "768 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:p2.16xlarge", + "operation" : "RunInstances:000g", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "16", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BVX3DU7JUBDMJ5TW" : { + "sku" : "BVX3DU7JUBDMJ5TW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "30.5 GiB", + "storage" : "3 x 2000 HDD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:d2.xlarge", + "operation" : "RunInstances:0002", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HY3BZPP2B6K8MSJF" : { + "sku" : "HY3BZPP2B6K8MSJF", + "productFamily" : "Storage", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "storageMedia" : "SSD-backed", + "volumeType" : "General Purpose", + "maxVolumeSize" : "16 TiB", + "maxIopsvolume" : "10000", + "maxIopsBurstPerformance" : "3000 for volumes <= 1 TiB", + "maxThroughputvolume" : "160 MB/sec", + "usagetype" : "EBS:VolumeUsage.gp2", + "operation" : "", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "R85D93TFFU8AU7WZ" : { + "sku" : "R85D93TFFU8AU7WZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:p3.2xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "8X3QU4DYXVJAXZK3" : { + "sku" : "8X3QU4DYXVJAXZK3", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Outbound", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "US West (N. California)", + "toLocationType" : "AWS Region", + "usagetype" : "USE1-USW1-AWS-Out-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "FUETJGKE44YRRDYN" : { + "sku" : "FUETJGKE44YRRDYN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.2xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TQV69AZUDVU7GUKY" : { + "sku" : "TQV69AZUDVU7GUKY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m3.2xlarge", + "operation" : "RunInstances:000g", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FSBXVV6Q3V6PKBSN" : { + "sku" : "FSBXVV6Q3V6PKBSN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5U9FJ3JR532G32NE" : { + "sku" : "5U9FJ3JR532G32NE", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "hs1.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "17", + "physicalProcessor" : "Intel Xeon E5-2650", + "clockSpeed" : "2 GHz", + "memory" : "117 GiB", + "storage" : "24 x 2000", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:hs1.8xlarge", + "operation" : "RunInstances:0006", + "ecu" : "35", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Std", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SCYNS2QNCRN89WMZ" : { + "sku" : "SCYNS2QNCRN89WMZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.0 GHz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.xlarge", + "operation" : "RunInstances:0010", + "ecu" : "Variable", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PAV3TCYGE4N3YT8E" : { + "sku" : "PAV3TCYGE4N3YT8E", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Inbound", + "fromLocation" : "AWS GovCloud (US)", + "fromLocationType" : "AWS Region", + "toLocation" : "US East (N. Virginia)", + "toLocationType" : "AWS Region", + "usagetype" : "UGW1-USE1-AWS-In-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "266JF3S5TDUM4QX4" : { + "sku" : "266JF3S5TDUM4QX4", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "3.75 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.large", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JJMJT8KUKWT7YX58" : { + "sku" : "JJMJT8KUKWT7YX58", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.4xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "3000 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Z4Y83SEHA9UDFDP2" : { + "sku" : "Z4Y83SEHA9UDFDP2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:g3.4xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "0", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "T6R594SDRM2DHYVF" : { + "sku" : "T6R594SDRM2DHYVF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "30.5 GiB", + "storage" : "3 x 2000 HDD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:d2.xlarge", + "operation" : "RunInstances:0800", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EBPZ7HKS449M43K4" : { + "sku" : "EBPZ7HKS449M43K4", + "productFamily" : "Dedicated Host", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "72", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "NA", + "storage" : "NA", + "networkPerformance" : "NA", + "processorArchitecture" : "64-bit", + "tenancy" : "Reserved", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "ReservedHostUsage:c5", + "operation" : "RunInstances", + "ecu" : "NA", + "instanceCapacity18xlarge" : "1", + "instanceCapacity2xlarge" : "8", + "instanceCapacity4xlarge" : "4", + "instanceCapacity9xlarge" : "2", + "instanceCapacityLarge" : "36", + "instanceCapacityXlarge" : "18", + "normalizationSizeFactor" : "NA", + "physicalCores" : "36", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FC6PRNUH98J5QR93" : { + "sku" : "FC6PRNUH98J5QR93", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:g3.8xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "0", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "2", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JDDEXQUM9ZCJ8RDR" : { + "sku" : "JDDEXQUM9ZCJ8RDR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.4xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "3000 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZMYRWAJAX252Z8ZW" : { + "sku" : "ZMYRWAJAX252Z8ZW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "30 GiB", + "storage" : "2 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.4xlarge", + "operation" : "RunInstances:0010", + "ecu" : "55", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HD7DSDMNNNQAM7PK" : { + "sku" : "HD7DSDMNNNQAM7PK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.16xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "12000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YN6S4KGMAE64PQR5" : { + "sku" : "YN6S4KGMAE64PQR5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.0 GHz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:t2.xlarge", + "operation" : "RunInstances:0800", + "ecu" : "Variable", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "F3HZNTTFXFDM68NR" : { + "sku" : "F3HZNTTFXFDM68NR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VBNNBXFKQ7Y722HK" : { + "sku" : "VBNNBXFKQ7Y722HK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "2 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:i2.2xlarge", + "operation" : "RunInstances:0800", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "M27XKJYAEY2SPYUU" : { + "sku" : "M27XKJYAEY2SPYUU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 80 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.xlarge", + "operation" : "RunInstances:0002", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7CHGSVMJ73UUBCGJ" : { + "sku" : "7CHGSVMJ73UUBCGJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:g3.8xlarge", + "operation" : "Hourly", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "0", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "2", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "D8RDVC722HKNR55G" : { + "sku" : "D8RDVC722HKNR55G", + "productFamily" : "System Operation", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "provisioned" : "Yes", + "group" : "EBS IOPS", + "groupDescription" : "IOPS", + "usagetype" : "EBS:VolumeP-IOPS.piops", + "operation" : "", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "B99R452XS63YWAQ4" : { + "sku" : "B99R452XS63YWAQ4", + "productFamily" : "Dedicated Host", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "NA", + "storage" : "NA", + "networkPerformance" : "NA", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostUsage:i2", + "operation" : "RunInstances", + "ecu" : "NA", + "instanceCapacity16xlarge" : "1", + "instanceCapacity2xlarge" : "4", + "instanceCapacity4xlarge" : "2", + "instanceCapacity8xlarge" : "1", + "instanceCapacityXlarge" : "8", + "normalizationSizeFactor" : "NA", + "physicalCores" : "20", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "P2HREWU59F8JRCVB" : { + "sku" : "P2HREWU59F8JRCVB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.16xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "12000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "8KGH3T8ZZRGT8BQF" : { + "sku" : "8KGH3T8ZZRGT8BQF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "30 GiB", + "storage" : "2 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.4xlarge", + "operation" : "RunInstances:0006", + "ecu" : "55", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RVFUWFSHJ76F8GFX" : { + "sku" : "RVFUWFSHJ76F8GFX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "60 GiB", + "storage" : "2 x 120 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:g2.8xlarge", + "operation" : "RunInstances:0800", + "ecu" : "104", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VWWDF9UY9DZAY2ZU" : { + "sku" : "VWWDF9UY9DZAY2ZU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "3,904 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.32xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "340", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "V7P8A57BFQNG5NH7" : { + "sku" : "V7P8A57BFQNG5NH7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:p2.xlarge", + "operation" : "RunInstances:0002", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "M7W8H8ETF66PU3XA" : { + "sku" : "M7W8H8ETF66PU3XA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.16xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "12000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KGM6Q2CJFMEMKWQN" : { + "sku" : "KGM6Q2CJFMEMKWQN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.small", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.3 GHz", + "memory" : "2 GiB", + "storage" : "EBS only", + "networkPerformance" : "Low to Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.small", + "operation" : "RunInstances:0010", + "ecu" : "Variable", + "normalizationSizeFactor" : "1", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "C3YH2XDN7TZMMA7P" : { + "sku" : "C3YH2XDN7TZMMA7P", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "8 x 1.9 NVMe SSD", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:i3.16xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SACDBTNC2KPVGJ8R" : { + "sku" : "SACDBTNC2KPVGJ8R", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Outbound", + "fromLocation" : "EU (Frankfurt)", + "fromLocationType" : "AWS Region", + "toLocation" : "US East (N. Virginia)", + "toLocationType" : "AWS Region", + "usagetype" : "EUC1-USE1-AWS-Out-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "URVKD93M9ZPEGG7Z" : { + "sku" : "URVKD93M9ZPEGG7Z", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.16xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "179", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FDYDQJ8P2SCE3SD8" : { + "sku" : "FDYDQJ8P2SCE3SD8", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "1 x 240", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.2xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "23", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QRBKW8JQVD29EVBU" : { + "sku" : "QRBKW8JQVD29EVBU", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "1 x 240", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.2xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "23", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "8D8WEXZEQ37HKFNV" : { + "sku" : "8D8WEXZEQ37HKFNV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1.32xlarge", + "operation" : "RunInstances:0202", + "ecu" : "349", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "SQL Web", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7U7TWP44UP36AT3R" : { + "sku" : "7U7TWP44UP36AT3R", + "productFamily" : "Storage Snapshot", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "storageMedia" : "Amazon S3", + "usagetype" : "EBS:SnapshotUsage", + "operation" : "", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Y4FKSUJMDV8DEFTS" : { + "sku" : "Y4FKSUJMDV8DEFTS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.medium", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "3.75 GiB", + "storage" : "1 x 410", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m1.medium", + "operation" : "RunInstances:000g", + "ecu" : "2", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AJUJW25DAVRG4WEY" : { + "sku" : "AJUJW25DAVRG4WEY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "7.5 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.xlarge", + "operation" : "RunInstances", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "G8C4DK367XUB4P7B" : { + "sku" : "G8C4DK367XUB4P7B", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "800 Mbps", + "ecu" : "Variable", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3HSGZRDZXZZHNPJC" : { + "sku" : "3HSGZRDZXZZHNPJC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "60 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.8xlarge", + "operation" : "RunInstances:0202", + "ecu" : "108", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EMT6SZKEDQPJRUQQ" : { + "sku" : "EMT6SZKEDQPJRUQQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "61 GiB", + "storage" : "6 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:d2.2xlarge", + "operation" : "RunInstances:0002", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CFPKDYHZCTKMWEKC" : { + "sku" : "CFPKDYHZCTKMWEKC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "60 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.8xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "132", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZWRX2ZR95V6ZB42V" : { + "sku" : "ZWRX2ZR95V6ZB42V", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "30 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.4xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "WHSMTPG2EQZT7C6G" : { + "sku" : "WHSMTPG2EQZT7C6G", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "30 GiB", + "storage" : "2 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.4xlarge", + "operation" : "RunInstances:0010", + "ecu" : "55", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PH8HDZXB5PCGB9JY" : { + "sku" : "PH8HDZXB5PCGB9JY", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "1 x 480", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.4xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "47", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "M585C29WB3HB866B" : { + "sku" : "M585C29WB3HB866B", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 960", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.8xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "91", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9SQP8ZU4V2K9UGTJ" : { + "sku" : "9SQP8ZU4V2K9UGTJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:r4.2xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "1600 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HUCWZ5CCHQU7EEQU" : { + "sku" : "HUCWZ5CCHQU7EEQU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cr1.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670", + "memory" : "244 GiB", + "storage" : "2 x 120 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:cr1.8xlarge", + "operation" : "RunInstances:0006", + "ecu" : "88", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Std", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "8D2QYF9WYWYEREWG" : { + "sku" : "8D2QYF9WYWYEREWG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "3.75 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.large", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MHX8TSHV6Z45N5KU" : { + "sku" : "MHX8TSHV6Z45N5KU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "30.5 GiB", + "storage" : "3 x 2000 HDD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:d2.xlarge", + "operation" : "RunInstances:0800", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EZC8PDJ8658WHH9T" : { + "sku" : "EZC8PDJ8658WHH9T", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.8xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "6000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "X6X8ZCTUWB8NGENM" : { + "sku" : "X6X8ZCTUWB8NGENM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:p3.2xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EVNBJQCCHQGV6XNB" : { + "sku" : "EVNBJQCCHQGV6XNB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:p2.xlarge", + "operation" : "RunInstances:000g", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "73PG2QBG4QJ74BQG" : { + "sku" : "73PG2QBG4QJ74BQG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 80 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.xlarge", + "operation" : "RunInstances:0102", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "642BR46BHCZHCCZK" : { + "sku" : "642BR46BHCZHCCZK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "f1.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:f1.2xlarge", + "operation" : "RunInstances:0800", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VE3T3XPXTXR5FGJH" : { + "sku" : "VE3T3XPXTXR5FGJH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.large", + "operation" : "RunInstances", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DHYKJ8VFD83V8ETR" : { + "sku" : "DHYKJ8VFD83V8ETR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.2xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "1600 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CZNF2F6CSUG2M7XY" : { + "sku" : "CZNF2F6CSUG2M7XY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.2xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XYZXK8CJSF87RVWV" : { + "sku" : "XYZXK8CJSF87RVWV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "17.1 GiB", + "storage" : "1 x 420", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m2.xlarge", + "operation" : "RunInstances:0002", + "ecu" : "6.5", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VYJYXGRA69WHNN6N" : { + "sku" : "VYJYXGRA69WHNN6N", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "61 GiB", + "storage" : "6 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:d2.2xlarge", + "operation" : "RunInstances:0202", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FG8VFZ2BRHXVE3UE" : { + "sku" : "FG8VFZ2BRHXVE3UE", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "7.5 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m3.large", + "operation" : "RunInstances:0002", + "ecu" : "6.5", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XTPNAJDDCCQR3XRZ" : { + "sku" : "XTPNAJDDCCQR3XRZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "15 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.2xlarge", + "operation" : "RunInstances:0010", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "33GEZXW546A5G39A" : { + "sku" : "33GEZXW546A5G39A", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.large", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "450 Mbps", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DVVFNW9ND93DVCKY" : { + "sku" : "DVVFNW9ND93DVCKY", + "productFamily" : "Dedicated Host", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "NA", + "networkPerformance" : "NA", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostUsage:p3", + "operation" : "RunInstances", + "ecu" : "188", + "gpu" : "8", + "instanceCapacity16xlarge" : "1", + "instanceCapacity2xlarge" : "8", + "instanceCapacity8xlarge" : "2", + "normalizationSizeFactor" : "NA", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZPUJSMGMEEHDRCWG" : { + "sku" : "ZPUJSMGMEEHDRCWG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cg1.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "GPU instance", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon x5570", + "memory" : "22.5 GiB", + "storage" : "2 x 840", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:cg1.4xlarge", + "operation" : "RunInstances:0010", + "ecu" : "33.5", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7G6ZVMHDU3FVW9D5" : { + "sku" : "7G6ZVMHDU3FVW9D5", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "1 x 480", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.4xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "47", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZVZ4NWBV3CDP2G5H" : { + "sku" : "ZVZ4NWBV3CDP2G5H", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "7.5 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m3.large", + "operation" : "RunInstances:000g", + "ecu" : "6.5", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZBTSPT6YGG5E39RC" : { + "sku" : "ZBTSPT6YGG5E39RC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "7.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:c4.xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QUKA5FNRVVKN5422" : { + "sku" : "QUKA5FNRVVKN5422", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "4 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.large", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "U29KTD6EKFTKBK6T" : { + "sku" : "U29KTD6EKFTKBK6T", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "30 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.4xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "P3G8DU7HDSFEWNGN" : { + "sku" : "P3G8DU7HDSFEWNGN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "4 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:i2.4xlarge", + "operation" : "RunInstances:0800", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QCXEYVM3Y3JDE2QA" : { + "sku" : "QCXEYVM3Y3JDE2QA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "60 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.8xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "132", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "639ZEB9D49ASFB26" : { + "sku" : "639ZEB9D49ASFB26", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t1.micro", + "currentGeneration" : "No", + "instanceFamily" : "Micro instances", + "vcpu" : "1", + "physicalProcessor" : "Variable", + "memory" : "0.613 GiB", + "storage" : "EBS only", + "networkPerformance" : "Very Low", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t1.micro", + "operation" : "RunInstances", + "ecu" : "26", + "normalizationSizeFactor" : "0.5", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2WG3ZVDRBDM6AXDY" : { + "sku" : "2WG3ZVDRBDM6AXDY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.large", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "400 Mbps", + "ecu" : "135", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2WSBC7H546ERPK5X" : { + "sku" : "2WSBC7H546ERPK5X", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.4xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "WMP332VHSC4A9Z25" : { + "sku" : "WMP332VHSC4A9Z25", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.0 GHz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:t2.2xlarge", + "operation" : "RunInstances:0800", + "ecu" : "Variable", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TK4PD8NGZPE9EAZ3" : { + "sku" : "TK4PD8NGZPE9EAZ3", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Outbound", + "fromLocation" : "South America (Sao Paulo)", + "fromLocationType" : "AWS Region", + "toLocation" : "US East (N. Virginia)", + "toLocationType" : "AWS Region", + "usagetype" : "SAE1-USE1-AWS-Out-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "EQAYX5BGG5UU7TKF" : { + "sku" : "EQAYX5BGG5UU7TKF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m3.2xlarge", + "operation" : "RunInstances:0202", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZQKQM4BJPUBCMDXD" : { + "sku" : "ZQKQM4BJPUBCMDXD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "hs1.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "17", + "physicalProcessor" : "Intel Xeon E5-2650", + "clockSpeed" : "2 GHz", + "memory" : "117 GiB", + "storage" : "24 x 2000", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:hs1.8xlarge", + "operation" : "RunInstances:0010", + "ecu" : "35", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "P47VRQMUV2K4MN5Z" : { + "sku" : "P47VRQMUV2K4MN5Z", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.large", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "450 Mbps", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SKMRUUXXN2WKPFZ8" : { + "sku" : "SKMRUUXXN2WKPFZ8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "4 x 1.9 NVMe SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.8xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YD7GPEVXPWVDFDJ7" : { + "sku" : "YD7GPEVXPWVDFDJ7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "61 GiB", + "storage" : "6 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:d2.2xlarge", + "operation" : "RunInstances:0002", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DJEXMYSZ7CJSUDPF" : { + "sku" : "DJEXMYSZ7CJSUDPF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.micro", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.3 GHz", + "memory" : "1 GiB", + "storage" : "EBS only", + "networkPerformance" : "Low to Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:t2.micro", + "operation" : "RunInstances:0800", + "ecu" : "Variable", + "normalizationSizeFactor" : "0.5", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "8D82FZE3BZCS4SXV" : { + "sku" : "8D82FZE3BZCS4SXV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "4 x 1.9 NVMe SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.8xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "R86DSK536TMRVK4T" : { + "sku" : "R86DSK536TMRVK4T", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cc2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670", + "clockSpeed" : "2.6 GHz", + "memory" : "60.5 GiB", + "storage" : "4 x 840", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:cc2.8xlarge", + "operation" : "RunInstances:0002", + "ecu" : "88", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "332WCJF3R5J2RH67" : { + "sku" : "332WCJF3R5J2RH67", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.large", + "operation" : "RunInstances:0202", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DBDH9RXEHD3FBJTR" : { + "sku" : "DBDH9RXEHD3FBJTR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:g3.16xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "4", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2GCTBU78G22TGEXZ" : { + "sku" : "2GCTBU78G22TGEXZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.small", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "1.7 GiB", + "storage" : "1 x 160", + "networkPerformance" : "Low", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage", + "operation" : "RunInstances", + "ecu" : "Variable", + "normalizationSizeFactor" : "1", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MK9AMH7NU69KFAYJ" : { + "sku" : "MK9AMH7NU69KFAYJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:g3.8xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "0", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "2", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "N8Q3DXFKSXBK5NQR" : { + "sku" : "N8Q3DXFKSXBK5NQR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 0.95 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:i3.xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "850 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "E9BJT9V6S2SW8D9F" : { + "sku" : "E9BJT9V6S2SW8D9F", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "64 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.4xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "53.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4BUZB6KWPTJTVSB7" : { + "sku" : "4BUZB6KWPTJTVSB7", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "1 x 480", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.4xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "47", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "96GP335H4PPFX6P2" : { + "sku" : "96GP335H4PPFX6P2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "122 GiB", + "storage" : "12 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:d2.4xlarge", + "operation" : "RunInstances:000g", + "ecu" : "56", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XERQGANK8Y3TXRRY" : { + "sku" : "XERQGANK8Y3TXRRY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.small", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.3 GHz", + "memory" : "2 GiB", + "storage" : "EBS only", + "networkPerformance" : "Low to Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.small", + "operation" : "RunInstances:000g", + "ecu" : "Variable", + "normalizationSizeFactor" : "1", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Y2UXNGAEK992YZMH" : { + "sku" : "Y2UXNGAEK992YZMH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "30 GiB", + "storage" : "2 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.4xlarge", + "operation" : "RunInstances:0102", + "ecu" : "55", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SKBEBKWYFZHQHM9H" : { + "sku" : "SKBEBKWYFZHQHM9H", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1.32xlarge", + "operation" : "RunInstances:000g", + "ecu" : "349", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CTE4Z3ZVEMX6UBMZ" : { + "sku" : "CTE4Z3ZVEMX6UBMZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.large", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "400 Mbps", + "ecu" : "135", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "WWNXU2QJU9XYEM5Z" : { + "sku" : "WWNXU2QJU9XYEM5Z", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.0 GHz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.xlarge", + "operation" : "RunInstances:0002", + "ecu" : "Variable", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3NXCSDASD23BBNGJ" : { + "sku" : "3NXCSDASD23BBNGJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "1 x 320 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:r3.4xlarge", + "operation" : "RunInstances:0800", + "ecu" : "52", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KZTDUURKCC3R7F95" : { + "sku" : "KZTDUURKCC3R7F95", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.4xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "M4YGUC8KPPJRRCRJ" : { + "sku" : "M4YGUC8KPPJRRCRJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "7.5 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:c3.xlarge", + "operation" : "RunInstances:0800", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HQEH3ZWJVT46JHRG" : { + "sku" : "HQEH3ZWJVT46JHRG", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "AWS Outbound", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "External", + "toLocationType" : "Other", + "usagetype" : "DataTransfer-Out-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "4PRP277ZT2QSK84X" : { + "sku" : "4PRP277ZT2QSK84X", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:p3.2xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UW8KGBXJYHZFRWWG" : { + "sku" : "UW8KGBXJYHZFRWWG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:p2.8xlarge", + "operation" : "RunInstances", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZJE4Q2AHZQ5TC873" : { + "sku" : "ZJE4Q2AHZQ5TC873", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.10xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "40", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "160 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:m4.10xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "80", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SVFBAAERCQTFD96J" : { + "sku" : "SVFBAAERCQTFD96J", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.2xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "33FHBWNHWMUJDK7G" : { + "sku" : "33FHBWNHWMUJDK7G", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "15 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:c4.2xlarge", + "operation" : "Hourly", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "WQS4N692QYT65JPA" : { + "sku" : "WQS4N692QYT65JPA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:r4.2xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "1600 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NR96G3WS4WXEXUW4" : { + "sku" : "NR96G3WS4WXEXUW4", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "60 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.8xlarge", + "operation" : "RunInstances:0202", + "ecu" : "108", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BGEHNPNUMJPPS6UY" : { + "sku" : "BGEHNPNUMJPPS6UY", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.16xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "179", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "378CVEQGDCKSJYEU" : { + "sku" : "378CVEQGDCKSJYEU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "768 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:p2.16xlarge", + "operation" : "RunInstances:0002", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "16", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TT84KWCJTYXTFX54" : { + "sku" : "TT84KWCJTYXTFX54", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RKCQDTMY5DZS4JWT" : { + "sku" : "RKCQDTMY5DZS4JWT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "68.4 GiB", + "storage" : "2 x 840", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m2.4xlarge", + "operation" : "RunInstances", + "ecu" : "26", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QG5G45WKDWDDHTFV" : { + "sku" : "QG5G45WKDWDDHTFV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.0 GHz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Low to Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.large", + "operation" : "RunInstances", + "ecu" : "Variable", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TSQYYQMSKWVB64XU" : { + "sku" : "TSQYYQMSKWVB64XU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "60 GiB", + "storage" : "2 x 120 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:g2.8xlarge", + "operation" : "RunInstances:0010", + "ecu" : "104", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5N3MEPSFNAD33R3K" : { + "sku" : "5N3MEPSFNAD33R3K", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "1 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:i3.2xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7WXY6Y9EMWKMGGWT" : { + "sku" : "7WXY6Y9EMWKMGGWT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 80 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.xlarge", + "operation" : "RunInstances:000g", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FSV8GFFRA53K2PPC" : { + "sku" : "FSV8GFFRA53K2PPC", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "1 x 240", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.2xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "23", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5GXT3Y9MYUCWS59J" : { + "sku" : "5GXT3Y9MYUCWS59J", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m3.2xlarge", + "operation" : "RunInstances", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZU8N8MJR36FHWUGA" : { + "sku" : "ZU8N8MJR36FHWUGA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cg1.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "GPU instance", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon x5570", + "memory" : "22.5 GiB", + "storage" : "2 x 840", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:cg1.4xlarge", + "operation" : "RunInstances:0010", + "ecu" : "33.5", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FCJS875MBNBNKGZB" : { + "sku" : "FCJS875MBNBNKGZB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "3,904 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.32xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "340", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZY733QB4MX5V3J68" : { + "sku" : "ZY733QB4MX5V3J68", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.micro", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.3 GHz", + "memory" : "1 GiB", + "storage" : "EBS only", + "networkPerformance" : "Low to Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.micro", + "operation" : "RunInstances:0010", + "ecu" : "Variable", + "normalizationSizeFactor" : "0.5", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JRQSPKHTPKSDNFSM" : { + "sku" : "JRQSPKHTPKSDNFSM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "64 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.4xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "53.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MU4QGTJYWR6T73MZ" : { + "sku" : "MU4QGTJYWR6T73MZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "2 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i2.2xlarge", + "operation" : "RunInstances", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HSDKMG6XBMBSSBZ9" : { + "sku" : "HSDKMG6XBMBSSBZ9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "4 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i2.4xlarge", + "operation" : "RunInstances:0202", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NE4JZMMMGJZH869R" : { + "sku" : "NE4JZMMMGJZH869R", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:c5.xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "43SVRH2NZVAKYEXT" : { + "sku" : "43SVRH2NZVAKYEXT", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Outbound", + "fromLocation" : "US East (Ohio)", + "fromLocationType" : "AWS Region", + "toLocation" : "US East (N. Virginia)", + "toLocationType" : "AWS Region", + "usagetype" : "USE2-USE1-AWS-Out-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "GKGWHEUHTS4PWNPE" : { + "sku" : "GKGWHEUHTS4PWNPE", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "4 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i2.4xlarge", + "operation" : "RunInstances:0010", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3UP33R2RXCADSPSX" : { + "sku" : "3UP33R2RXCADSPSX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "64 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.4xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "53.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MC5Y8Q7EUMRZTRZE" : { + "sku" : "MC5Y8Q7EUMRZTRZE", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "4 x 1.9 NVMe SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.8xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "D8R4U4YGJ7FBAM9V" : { + "sku" : "D8R4U4YGJ7FBAM9V", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.8xlarge", + "operation" : "RunInstances:0202", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VWMNXYV7FJNWU55C" : { + "sku" : "VWMNXYV7FJNWU55C", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c1.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "7 GiB", + "storage" : "4 x 420", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c1.xlarge", + "operation" : "RunInstances:000g", + "ecu" : "20", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "T8WDU2BB3QKC577Z" : { + "sku" : "T8WDU2BB3QKC577Z", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "8 x 800 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i2.8xlarge", + "operation" : "RunInstances:000g", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZS7S83VF4T4BSSC4" : { + "sku" : "ZS7S83VF4T4BSSC4", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:r4.8xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "6000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6VVPWTSHET4XF7T9" : { + "sku" : "6VVPWTSHET4XF7T9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "30 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.4xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MCUV5B88GT577CFE" : { + "sku" : "MCUV5B88GT577CFE", + "productFamily" : "Fee", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "group" : "EC2-Dedicated Usage", + "groupDescription" : "Fee for running at least one Dedicated Instance in the region", + "usagetype" : "DedicatedUsage", + "operation" : "Surcharge", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZESHW7CZVERW2BN2" : { + "sku" : "ZESHW7CZVERW2BN2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "4 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i2.4xlarge", + "operation" : "RunInstances", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XGQ9DRFV2RNYQE43" : { + "sku" : "XGQ9DRFV2RNYQE43", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "8 x 1.9 NVMe SSD", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.16xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2QF2GD6XUCJHFMKF" : { + "sku" : "2QF2GD6XUCJHFMKF", + "productFamily" : "NAT Gateway", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "group" : "NGW:NatGateway", + "groupDescription" : "Per hour and per Gbps charge for NAT Gateways with provisioned bandwidth", + "usagetype" : "NatGateway-Prvd-Gbps", + "operation" : "NatGateway", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JKH75GSYK4EQQ6ZK" : { + "sku" : "JKH75GSYK4EQQ6ZK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "244 GiB", + "storage" : "24 x 2000 HDD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:d2.8xlarge", + "operation" : "RunInstances:0102", + "ecu" : "116", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QC767KVGEA4QJZVP" : { + "sku" : "QC767KVGEA4QJZVP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "7.5 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "ebsOptimized" : "Yes", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:c3.xlarge", + "operation" : "Hourly", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "G2Y7JD8J9KR378JW" : { + "sku" : "G2Y7JD8J9KR378JW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "2 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.4xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FXA6QJGGCY7KRFGC" : { + "sku" : "FXA6QJGGCY7KRFGC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.large", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "450 Mbps", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QQXUWBKQH3U8F6KT" : { + "sku" : "QQXUWBKQH3U8F6KT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "17.1 GiB", + "storage" : "1 x 420", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m2.xlarge", + "operation" : "RunInstances:000g", + "ecu" : "6.5", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "44BFC6CSKFS3KEJP" : { + "sku" : "44BFC6CSKFS3KEJP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "2 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.4xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BQ5EKEX4RRBCH5MY" : { + "sku" : "BQ5EKEX4RRBCH5MY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "30.5 GiB", + "storage" : "3 x 2000 HDD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:d2.xlarge", + "operation" : "RunInstances:0002", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "355G43EUBXD5NEFF" : { + "sku" : "355G43EUBXD5NEFF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:g3.4xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "0", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "67X6UH937GWQTMF7" : { + "sku" : "67X6UH937GWQTMF7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "f1.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:f1.2xlarge", + "operation" : "RunInstances:0800", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3S465DABJFVVXWJG" : { + "sku" : "3S465DABJFVVXWJG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.18xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "72", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "144 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.18xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "9000 Mbps", + "ecu" : "278", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "144", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "WNE7QVTQ353JW53G" : { + "sku" : "WNE7QVTQ353JW53G", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "800 Mbps", + "ecu" : "Variable", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QR4WEBVA44K4VYE6" : { + "sku" : "QR4WEBVA44K4VYE6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "3.75 GiB", + "storage" : "2 x 16 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.large", + "operation" : "RunInstances:0006", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "WEJJ8BVQUW2CFG55" : { + "sku" : "WEJJ8BVQUW2CFG55", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "U333877KGJA25DEX" : { + "sku" : "U333877KGJA25DEX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "256 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.16xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "10000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2MAPZERKCXRGMU4P" : { + "sku" : "2MAPZERKCXRGMU4P", + "productFamily" : "Dedicated Host", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "72", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "NA", + "storage" : "NA", + "networkPerformance" : "NA", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostUsage:c5", + "operation" : "RunInstances", + "ecu" : "NA", + "instanceCapacity18xlarge" : "1", + "instanceCapacity2xlarge" : "8", + "instanceCapacity4xlarge" : "4", + "instanceCapacity9xlarge" : "2", + "instanceCapacityLarge" : "36", + "instanceCapacityXlarge" : "18", + "normalizationSizeFactor" : "NA", + "physicalCores" : "36", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KNFTFJY262DHDG36" : { + "sku" : "KNFTFJY262DHDG36", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.8xlarge", + "operation" : "RunInstances:0010", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FYEGBZ26B3KMNACW" : { + "sku" : "FYEGBZ26B3KMNACW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cg1.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "GPU instance", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon x5570", + "memory" : "22.5 GiB", + "storage" : "2 x 840", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:cg1.4xlarge", + "operation" : "RunInstances:0202", + "ecu" : "33.5", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6NR8XUQNBC8BXB6C" : { + "sku" : "6NR8XUQNBC8BXB6C", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cr1.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670", + "memory" : "244 GiB", + "storage" : "2 x 120 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:cr1.8xlarge", + "operation" : "RunInstances:0800", + "ecu" : "88", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Y8GH4ZVR4XW8623W" : { + "sku" : "Y8GH4ZVR4XW8623W", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "3.75 GiB", + "storage" : "2 x 16 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.large", + "operation" : "RunInstances", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "K9GMF5NPRDG654FW" : { + "sku" : "K9GMF5NPRDG654FW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:m3.xlarge", + "operation" : "RunInstances:0800", + "ecu" : "13", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7WKKM2PCFQV7UGX4" : { + "sku" : "7WKKM2PCFQV7UGX4", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c1.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "7 GiB", + "storage" : "4 x 420", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c1.xlarge", + "operation" : "RunInstances:0006", + "ecu" : "20", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BHM7BATGW8NG4NZ4" : { + "sku" : "BHM7BATGW8NG4NZ4", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Outbound", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "Asia Pacific (Mumbai)", + "toLocationType" : "AWS Region", + "usagetype" : "USE1-APS3-AWS-Out-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "CR9BJ8YMV2HGWRBH" : { + "sku" : "CR9BJ8YMV2HGWRBH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.2xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "1600 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GA5PWJF9UF3X7YVH" : { + "sku" : "GA5PWJF9UF3X7YVH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "17.1 GiB", + "storage" : "1 x 420", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m2.xlarge", + "operation" : "RunInstances:0202", + "ecu" : "6.5", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "86VC54YVHZCQW5AC" : { + "sku" : "86VC54YVHZCQW5AC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "7.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JHPHDAYNUFXJTVZB" : { + "sku" : "JHPHDAYNUFXJTVZB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.small", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "1.7 GiB", + "storage" : "1 x 160", + "networkPerformance" : "Low", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage", + "operation" : "RunInstances:0202", + "ecu" : "Variable", + "normalizationSizeFactor" : "1", + "preInstalledSw" : "SQL Web", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4EBV6P5EQBBDFNKX" : { + "sku" : "4EBV6P5EQBBDFNKX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.2xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KVUGTJ5SYPS9UYG6" : { + "sku" : "KVUGTJ5SYPS9UYG6", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "1 x 480", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.4xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "47", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GXY7B6YFCHHVPBQX" : { + "sku" : "GXY7B6YFCHHVPBQX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "8 x 1.9 NVMe SSD", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.16xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KBAHSDRSVP6ZT96X" : { + "sku" : "KBAHSDRSVP6ZT96X", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.small", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "1.7 GiB", + "storage" : "1 x 160", + "networkPerformance" : "Low", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage", + "operation" : "RunInstances", + "ecu" : "Variable", + "normalizationSizeFactor" : "1", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TA9V737SGNW5GKAK" : { + "sku" : "TA9V737SGNW5GKAK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "768 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:p2.16xlarge", + "operation" : "RunInstances:0102", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "16", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SGYUS9N7VCKNAXVB" : { + "sku" : "SGYUS9N7VCKNAXVB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:g3.16xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "4", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TJESF5VS9JX8WXEN" : { + "sku" : "TJESF5VS9JX8WXEN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "64 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.4xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "53.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XDMQUDGKMFD5ZV6E" : { + "sku" : "XDMQUDGKMFD5ZV6E", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:r4.4xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "3000 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3M86JWNYP8BSN55W" : { + "sku" : "3M86JWNYP8BSN55W", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "34.2 GiB", + "storage" : "1 x 850", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m2.2xlarge", + "operation" : "RunInstances:0010", + "ecu" : "13", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PWKZ9X73UG7P4PFN" : { + "sku" : "PWKZ9X73UG7P4PFN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "61 GiB", + "storage" : "6 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:d2.2xlarge", + "operation" : "RunInstances:0800", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZA2GJ3U6RCX4Q6HE" : { + "sku" : "ZA2GJ3U6RCX4Q6HE", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 0.475 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.large", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "425 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "K4FQKJH96JE6DDW2" : { + "sku" : "K4FQKJH96JE6DDW2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m3.xlarge", + "operation" : "RunInstances:000g", + "ecu" : "13", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YDKCXGKCG5THW77R" : { + "sku" : "YDKCXGKCG5THW77R", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "30 GiB", + "storage" : "2 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:c3.4xlarge", + "operation" : "RunInstances:0800", + "ecu" : "55", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "96UUST8GZ7QZZ2Z3" : { + "sku" : "96UUST8GZ7QZZ2Z3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "60 GiB", + "storage" : "2 x 120 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:g2.8xlarge", + "operation" : "RunInstances:0102", + "ecu" : "104", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "49B7W7H2P8FD3T53" : { + "sku" : "49B7W7H2P8FD3T53", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "8 x 800 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:i2.8xlarge", + "operation" : "RunInstances:0800", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "G7WBD4E4RJYGHKER" : { + "sku" : "G7WBD4E4RJYGHKER", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 80 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.xlarge", + "operation" : "RunInstances:0102", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "F5GG77WYJNEW8T77" : { + "sku" : "F5GG77WYJNEW8T77", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 0.95 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "850 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MSY2XU2REE8QSFZZ" : { + "sku" : "MSY2XU2REE8QSFZZ", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 960", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.8xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "91", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SQKVU3RSHDUKCC86" : { + "sku" : "SQKVU3RSHDUKCC86", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cg1.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "GPU instance", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon x5570", + "memory" : "22.5 GiB", + "storage" : "2 x 840", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:cg1.4xlarge", + "operation" : "RunInstances:0002", + "ecu" : "33.5", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QTWEYQU689QP4W2Y" : { + "sku" : "QTWEYQU689QP4W2Y", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.9xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "72 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.9xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "4500 Mbps", + "ecu" : "139", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "72", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "F3MSPCKJ74QTGZ7J" : { + "sku" : "F3MSPCKJ74QTGZ7J", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.2xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZJC9VZJF5NZNYSVK" : { + "sku" : "ZJC9VZJF5NZNYSVK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "122 GiB", + "storage" : "12 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:d2.4xlarge", + "operation" : "RunInstances", + "ecu" : "56", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6PNPTZCGGYT2UXSS" : { + "sku" : "6PNPTZCGGYT2UXSS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "7.5 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.xlarge", + "operation" : "RunInstances:0202", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TMTUPBFYDNCYXCDK" : { + "sku" : "TMTUPBFYDNCYXCDK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "768 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:p2.16xlarge", + "operation" : "RunInstances:000g", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "16", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2KNBBY32AX7JPE72" : { + "sku" : "2KNBBY32AX7JPE72", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "4 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.large", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MDQWTP6HDQDFGNVZ" : { + "sku" : "MDQWTP6HDQDFGNVZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.2xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7AH58V9CNVM6SBXM" : { + "sku" : "7AH58V9CNVM6SBXM", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "1 x 480", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.4xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "47", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Z9AT4X8BA5YM4T7A" : { + "sku" : "Z9AT4X8BA5YM4T7A", + "productFamily" : "Dedicated Host", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4", + "instanceFamily" : "General purpose", + "vcpu" : "40", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "NA", + "storage" : "NA", + "networkPerformance" : "NA", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostUsage:m4", + "operation" : "RunInstances", + "ecu" : "NA", + "instanceCapacity10xlarge" : "1", + "instanceCapacity2xlarge" : "5", + "instanceCapacity4xlarge" : "2", + "instanceCapacityLarge" : "22", + "instanceCapacityXlarge" : "11", + "normalizationSizeFactor" : "NA", + "physicalCores" : "24", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SPK2TX869ZYTJYHY" : { + "sku" : "SPK2TX869ZYTJYHY", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "1 x 480", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:x1e.4xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "47", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4TCUDNKW7PMPSUT2" : { + "sku" : "4TCUDNKW7PMPSUT2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.8xlarge", + "operation" : "RunInstances", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6UXYTS4EWKB6WXM9" : { + "sku" : "6UXYTS4EWKB6WXM9", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Outbound", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "Asia Pacific (Sydney)", + "toLocationType" : "AWS Region", + "usagetype" : "USE1-APS2-AWS-Out-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "RPZ8YUERRQ8JPNYQ" : { + "sku" : "RPZ8YUERRQ8JPNYQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.8xlarge", + "operation" : "RunInstances:0010", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XHB4DJDY65SW2BN6" : { + "sku" : "XHB4DJDY65SW2BN6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c1.medium", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "1.7 GiB", + "storage" : "1 x 350", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c1.medium", + "operation" : "RunInstances:0002", + "ecu" : "2", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XQJX4FHA6PK8JN3M" : { + "sku" : "XQJX4FHA6PK8JN3M", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.medium", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "3.75 GiB", + "storage" : "1 x 4 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m3.medium", + "operation" : "RunInstances:0010", + "ecu" : "3", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NEMESC9E58GMS89T" : { + "sku" : "NEMESC9E58GMS89T", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 0.475 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.large", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "425 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7AGDS8PY7CBCQ8E4" : { + "sku" : "7AGDS8PY7CBCQ8E4", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.medium", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "3.75 GiB", + "storage" : "1 x 4 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m3.medium", + "operation" : "RunInstances:0006", + "ecu" : "3", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5W546BUFYA67MPSM" : { + "sku" : "5W546BUFYA67MPSM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "60 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:c3.8xlarge", + "operation" : "RunInstances:0800", + "ecu" : "108", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RW6CPEJMXU8H79H3" : { + "sku" : "RW6CPEJMXU8H79H3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "1 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.2xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "P6BRAB67QFNZCBXV" : { + "sku" : "P6BRAB67QFNZCBXV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "4 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:c5.large", + "operation" : "Hourly", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "482YDSG5GBVK93D9" : { + "sku" : "482YDSG5GBVK93D9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1.16xlarge", + "operation" : "RunInstances:0006", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Std", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "W8TS7DJMAYZW9FYR" : { + "sku" : "W8TS7DJMAYZW9FYR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "4 x 1.9 NVMe SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.8xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KTK7J8VMUNWAGTMN" : { + "sku" : "KTK7J8VMUNWAGTMN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "3.75 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.large", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2RXSDBKMUNNU9JA9" : { + "sku" : "2RXSDBKMUNNU9JA9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:g3.8xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "0", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "2", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "W5JCPDDZFQ9MFMCP" : { + "sku" : "W5JCPDDZFQ9MFMCP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "3,904 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.32xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "340", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DCYZX6GSD65USD7D" : { + "sku" : "DCYZX6GSD65USD7D", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:p3.16xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CE5UXUUUXVX4BZXY" : { + "sku" : "CE5UXUUUXVX4BZXY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.0 GHz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Low to Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.large", + "operation" : "RunInstances:0010", + "ecu" : "Variable", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AA67GCTD2ZXZBRNU" : { + "sku" : "AA67GCTD2ZXZBRNU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "8 x 1.9 NVMe SSD", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.16xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BMW624PB2S9DK3CT" : { + "sku" : "BMW624PB2S9DK3CT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "1 x 320 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.4xlarge", + "operation" : "RunInstances:0006", + "ecu" : "52", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AYPJKSTN4WJQRZAK" : { + "sku" : "AYPJKSTN4WJQRZAK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.micro", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.3 GHz", + "memory" : "1 GiB", + "storage" : "EBS only", + "networkPerformance" : "Low to Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.micro", + "operation" : "RunInstances:0002", + "ecu" : "Variable", + "normalizationSizeFactor" : "0.5", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2DKER9NNJBJDN6TX" : { + "sku" : "2DKER9NNJBJDN6TX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:r4.2xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "1600 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "U7RB8YXJ8WGXHNK3" : { + "sku" : "U7RB8YXJ8WGXHNK3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "17.1 GiB", + "storage" : "1 x 420", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m2.xlarge", + "operation" : "RunInstances:0202", + "ecu" : "6.5", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2VFDAQVRR43WD6VS" : { + "sku" : "2VFDAQVRR43WD6VS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.4xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "3000 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "M3EYMWB8284E38CQ" : { + "sku" : "M3EYMWB8284E38CQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "60 GiB", + "storage" : "2 x 120 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:g2.8xlarge", + "operation" : "RunInstances:0102", + "ecu" : "104", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "N7JF33XCBEZEKJFQ" : { + "sku" : "N7JF33XCBEZEKJFQ", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Outbound", + "fromLocation" : "EU (Ireland)", + "fromLocationType" : "AWS Region", + "toLocation" : "US East (N. Virginia)", + "toLocationType" : "AWS Region", + "usagetype" : "EU-USE1-AWS-Out-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "89ECMN7HXY7HZ9TN" : { + "sku" : "89ECMN7HXY7HZ9TN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "30 GiB", + "storage" : "2 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.4xlarge", + "operation" : "RunInstances:0010", + "ecu" : "55", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FQFTKTSPGMBGY47W" : { + "sku" : "FQFTKTSPGMBGY47W", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.4xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "3000 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KVJ2TM3PPP6NB94R" : { + "sku" : "KVJ2TM3PPP6NB94R", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "64 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.4xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "53.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Z7CW8886929Z9X5V" : { + "sku" : "Z7CW8886929Z9X5V", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "64 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.4xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "53.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KNDB73D8XZCD246T" : { + "sku" : "KNDB73D8XZCD246T", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "34.2 GiB", + "storage" : "1 x 850", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m2.2xlarge", + "operation" : "RunInstances:0006", + "ecu" : "13", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "K53MFK3A5RMBQM4F" : { + "sku" : "K53MFK3A5RMBQM4F", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:g3.16xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "4", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EVFZ5VDSHTZYPX89" : { + "sku" : "EVFZ5VDSHTZYPX89", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "68.4 GiB", + "storage" : "2 x 840", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m2.4xlarge", + "operation" : "RunInstances:000g", + "ecu" : "26", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TUYCY7SN3AZV7PVP" : { + "sku" : "TUYCY7SN3AZV7PVP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "244 GiB", + "storage" : "24 x 2000 HDD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:d2.8xlarge", + "operation" : "Hourly", + "ecu" : "116", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "R9GDS3K2XNJM96RZ" : { + "sku" : "R9GDS3K2XNJM96RZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "61 GiB", + "storage" : "6 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:d2.2xlarge", + "operation" : "Hourly", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NW4B786HNAH6HZ7R" : { + "sku" : "NW4B786HNAH6HZ7R", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Outbound", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "EU (Ireland)", + "toLocationType" : "AWS Region", + "usagetype" : "USE1-EU-AWS-Out-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "TJTQVWS5KE6W7NKV" : { + "sku" : "TJTQVWS5KE6W7NKV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:p3.16xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "M585HN87CC23QMVN" : { + "sku" : "M585HN87CC23QMVN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "800 Mbps", + "ecu" : "Variable", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RRRPJJTQ9JB8YF5W" : { + "sku" : "RRRPJJTQ9JB8YF5W", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.large", + "operation" : "RunInstances:0010", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BQZA2V9VZEE32ZTX" : { + "sku" : "BQZA2V9VZEE32ZTX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.large", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "7.5 GiB", + "storage" : "2 x 420", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m1.large", + "operation" : "RunInstances:0006", + "ecu" : "4", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Std", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TRZ6E8JSBS5WZR6G" : { + "sku" : "TRZ6E8JSBS5WZR6G", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1.16xlarge", + "operation" : "RunInstances:0010", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "F5ZPZV2EEY3FC3V9" : { + "sku" : "F5ZPZV2EEY3FC3V9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "34.2 GiB", + "storage" : "1 x 850", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m2.2xlarge", + "operation" : "RunInstances:0202", + "ecu" : "13", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "URGXD2SFFV6PJGW7" : { + "sku" : "URGXD2SFFV6PJGW7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "68.4 GiB", + "storage" : "2 x 840", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m2.4xlarge", + "operation" : "RunInstances:0010", + "ecu" : "26", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6SB59AKPWK57QDT4" : { + "sku" : "6SB59AKPWK57QDT4", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "34.2 GiB", + "storage" : "1 x 850", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m2.2xlarge", + "operation" : "RunInstances:0002", + "ecu" : "13", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "56836GB58CR7CVY9" : { + "sku" : "56836GB58CR7CVY9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1.32xlarge", + "operation" : "RunInstances:0002", + "ecu" : "349", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AYYR654XYEDPM6TA" : { + "sku" : "AYYR654XYEDPM6TA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "f1.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:f1.2xlarge", + "operation" : "RunInstances:000g", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7EJUFSKMUWC5DSMS" : { + "sku" : "7EJUFSKMUWC5DSMS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cc1.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670", + "memory" : "23 GiB", + "storage" : "2 x 840 GB", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:cc1.4xlarge", + "operation" : "RunInstances:0800", + "ecu" : "NA", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3YMR7VMVAJWZPJVQ" : { + "sku" : "3YMR7VMVAJWZPJVQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "7.5 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.xlarge", + "operation" : "RunInstances:0006", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BUS2682V3FEX8NNV" : { + "sku" : "BUS2682V3FEX8NNV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "30.5 GiB", + "storage" : "3 x 2000 HDD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:d2.xlarge", + "operation" : "RunInstances:0102", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RUDWUCYJBCDYZNGV" : { + "sku" : "RUDWUCYJBCDYZNGV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.medium", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "3.75 GiB", + "storage" : "1 x 4 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m3.medium", + "operation" : "RunInstances:0202", + "ecu" : "3", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RXE37MRXKF33M9T8" : { + "sku" : "RXE37MRXKF33M9T8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "30 GiB", + "storage" : "2 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.4xlarge", + "operation" : "RunInstances:000g", + "ecu" : "55", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GEXPJU4GWZZ6DSTT" : { + "sku" : "GEXPJU4GWZZ6DSTT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1.16xlarge", + "operation" : "RunInstances:0102", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Ent", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SG6RKNMKR45QPDJW" : { + "sku" : "SG6RKNMKR45QPDJW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "8 x 800 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i2.8xlarge", + "operation" : "RunInstances", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PSVDMQASMVK87NYB" : { + "sku" : "PSVDMQASMVK87NYB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "8 x 1.9 NVMe SSD", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.16xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HESKMZUVTYYVD46R" : { + "sku" : "HESKMZUVTYYVD46R", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:g3.16xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "4", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3TGYW692U4UVK8F4" : { + "sku" : "3TGYW692U4UVK8F4", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1.32xlarge", + "operation" : "RunInstances", + "ecu" : "349", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "M7CJ3KNC8SVT4Y6G" : { + "sku" : "M7CJ3KNC8SVT4Y6G", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.large", + "operation" : "RunInstances:0002", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "V56C6ZGR7E55RDBN" : { + "sku" : "V56C6ZGR7E55RDBN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "15 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.2xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HJU8DJNB6BYWAMBG" : { + "sku" : "HJU8DJNB6BYWAMBG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "3.75 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:c4.large", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GNAPQZPVUSZ36KUU" : { + "sku" : "GNAPQZPVUSZ36KUU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "60 GiB", + "storage" : "2 x 120 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:g2.8xlarge", + "operation" : "RunInstances:0002", + "ecu" : "104", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ARPJFM962U4P5HAT" : { + "sku" : "ARPJFM962U4P5HAT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "30 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.4xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZDK96RPJGJ9MFZYU" : { + "sku" : "ZDK96RPJGJ9MFZYU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "8 x 1.9 NVMe SSD", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.16xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Q6R3PVH9UARHH828" : { + "sku" : "Q6R3PVH9UARHH828", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1.16xlarge", + "operation" : "RunInstances:000g", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "K5TSDMZRHY2JN5F6" : { + "sku" : "K5TSDMZRHY2JN5F6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m3.xlarge", + "operation" : "RunInstances:0002", + "ecu" : "13", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RHDHFX8Q8XYHVTC7" : { + "sku" : "RHDHFX8Q8XYHVTC7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "3,904 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:x1e.32xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "340", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XDG4DYSAQBVCPRJQ" : { + "sku" : "XDG4DYSAQBVCPRJQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:g3.8xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "0", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "2", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TN5GRYE6RHCET7M3" : { + "sku" : "TN5GRYE6RHCET7M3", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "1 x 240", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.2xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "23", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AUEXKF3V3JXC7F22" : { + "sku" : "AUEXKF3V3JXC7F22", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.large", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "7.5 GiB", + "storage" : "2 x 420", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m1.large", + "operation" : "RunInstances:0202", + "ecu" : "4", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Web", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZTRYHCJDHUC65SBA" : { + "sku" : "ZTRYHCJDHUC65SBA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.large", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "450 Mbps", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "8SB633RNEF7QTBRF" : { + "sku" : "8SB633RNEF7QTBRF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "4 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i2.4xlarge", + "operation" : "RunInstances:000g", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "N8NT76W8DSVFQXZF" : { + "sku" : "N8NT76W8DSVFQXZF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1.32xlarge", + "operation" : "RunInstances:0102", + "ecu" : "349", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "SQL Ent", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "A64H3T6VVR3C4SUA" : { + "sku" : "A64H3T6VVR3C4SUA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.0 GHz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.2xlarge", + "operation" : "RunInstances:0010", + "ecu" : "Variable", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "S829SWJS7CDHWFZY" : { + "sku" : "S829SWJS7CDHWFZY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "3,904 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.32xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "340", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UFKUZG4FVYQCFGYG" : { + "sku" : "UFKUZG4FVYQCFGYG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "4 x 1.9 NVMe SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:i3.8xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6V9UKEPJF6WP9M5K" : { + "sku" : "6V9UKEPJF6WP9M5K", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "4 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i2.4xlarge", + "operation" : "RunInstances", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "C3VTCSXYNCNUKHPS" : { + "sku" : "C3VTCSXYNCNUKHPS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.medium", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "3.75 GiB", + "storage" : "1 x 410", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m1.medium", + "operation" : "RunInstances:0006", + "ecu" : "2", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "SQL Std", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9N4WQNFE4TP78PQF" : { + "sku" : "9N4WQNFE4TP78PQF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "3.75 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.large", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "USQAR36DHU6YZUCD" : { + "sku" : "USQAR36DHU6YZUCD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "30 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:c4.4xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XKREJETCK4Q363EE" : { + "sku" : "XKREJETCK4Q363EE", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 80 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.xlarge", + "operation" : "RunInstances:0006", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "N58RGQJW3EFKG6Q2" : { + "sku" : "N58RGQJW3EFKG6Q2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "2 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i2.2xlarge", + "operation" : "RunInstances:0010", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PSQDNQXHAZDS7XT9" : { + "sku" : "PSQDNQXHAZDS7XT9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "15 GiB", + "storage" : "1 x 60 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:g2.2xlarge", + "operation" : "RunInstances:000g", + "ecu" : "26", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Y8VTXM3N25VB943C" : { + "sku" : "Y8VTXM3N25VB943C", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "1 x 320 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.4xlarge", + "operation" : "RunInstances:000g", + "ecu" : "52", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DPCWVHKZ3AJBNM43" : { + "sku" : "DPCWVHKZ3AJBNM43", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.0 GHz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.xlarge", + "operation" : "RunInstances", + "ecu" : "Variable", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GU6HKEMK86X9HZKT" : { + "sku" : "GU6HKEMK86X9HZKT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.2xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "1600 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "M3HZTEQVGDNSBKRF" : { + "sku" : "M3HZTEQVGDNSBKRF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.large", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "7.5 GiB", + "storage" : "2 x 420", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "ebsOptimized" : "Yes", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:m1.large", + "operation" : "Hourly", + "ecu" : "4", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5XD4G79GQT4HJ9K2" : { + "sku" : "5XD4G79GQT4HJ9K2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "8 x 1.9 NVMe SSD", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.16xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CEN6ESY9DJ423GZM" : { + "sku" : "CEN6ESY9DJ423GZM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "8 x 800 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i2.8xlarge", + "operation" : "RunInstances:0006", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YAJW34A4DJF7KS9G" : { + "sku" : "YAJW34A4DJF7KS9G", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 800 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i2.xlarge", + "operation" : "RunInstances:0006", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BKPRPT7V22GBZ4Z2" : { + "sku" : "BKPRPT7V22GBZ4Z2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "30 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.4xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "R785FVDGR7QSRRKB" : { + "sku" : "R785FVDGR7QSRRKB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "60 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.8xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "132", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "8QJEY5Y228R67A3N" : { + "sku" : "8QJEY5Y228R67A3N", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "4 x 1.9 NVMe SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.8xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "33Y5KYZ4JQEF6J66" : { + "sku" : "33Y5KYZ4JQEF6J66", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Inbound", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "US West (Oregon)", + "toLocationType" : "AWS Region", + "usagetype" : "USE1-USW2-AWS-In-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "CA5RFBSY7MFBKHTZ" : { + "sku" : "CA5RFBSY7MFBKHTZ", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Inbound", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "Asia Pacific (Mumbai)", + "toLocationType" : "AWS Region", + "usagetype" : "USE1-APS3-AWS-In-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "648A8SVAZE8FVHRE" : { + "sku" : "648A8SVAZE8FVHRE", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.large", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "400 Mbps", + "ecu" : "135", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MDG4ZJ269VPQ6XSV" : { + "sku" : "MDG4ZJ269VPQ6XSV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "60 GiB", + "storage" : "2 x 120 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:g2.8xlarge", + "operation" : "RunInstances:0102", + "ecu" : "104", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GT4TKK9K9AXX36E5" : { + "sku" : "GT4TKK9K9AXX36E5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "122 GiB", + "storage" : "12 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:d2.4xlarge", + "operation" : "RunInstances:0010", + "ecu" : "56", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3FV6G5BHBS5M6YUH" : { + "sku" : "3FV6G5BHBS5M6YUH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TJ9229Z73AJSA43F" : { + "sku" : "TJ9229Z73AJSA43F", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "60 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:c3.8xlarge", + "operation" : "RunInstances:0800", + "ecu" : "108", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RBN8F9Y5ZXEWGAXX" : { + "sku" : "RBN8F9Y5ZXEWGAXX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.medium", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "3.75 GiB", + "storage" : "1 x 410", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:m1.medium", + "operation" : "RunInstances:0800", + "ecu" : "2", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KCN6V5R2ZXCNYDBZ" : { + "sku" : "KCN6V5R2ZXCNYDBZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "1 x 120", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TQYX838K5K3QH7KK" : { + "sku" : "TQYX838K5K3QH7KK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "15 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.2xlarge", + "operation" : "RunInstances:0006", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "8329EG456ZYK9UHU" : { + "sku" : "8329EG456ZYK9UHU", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.16xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "179", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BFQ697P5TXZG7V4S" : { + "sku" : "BFQ697P5TXZG7V4S", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m3.xlarge", + "operation" : "RunInstances:0006", + "ecu" : "13", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4XKHFJVHSPER36XU" : { + "sku" : "4XKHFJVHSPER36XU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "800 Mbps", + "ecu" : "Variable", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Q5KJSQ8D6YCWXG4R" : { + "sku" : "Q5KJSQ8D6YCWXG4R", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "15 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.2xlarge", + "operation" : "RunInstances:0102", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XFQT7FKTHK7R4MNC" : { + "sku" : "XFQT7FKTHK7R4MNC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.8xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "6000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7NEQ4VTJKJUPEVYG" : { + "sku" : "7NEQ4VTJKJUPEVYG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "2 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.4xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7FR6FMY2UUXQ9MPG" : { + "sku" : "7FR6FMY2UUXQ9MPG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "34.2 GiB", + "storage" : "1 x 850", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:m2.2xlarge", + "operation" : "RunInstances:0800", + "ecu" : "13", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "J3WUTF2TJ45F4344" : { + "sku" : "J3WUTF2TJ45F4344", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:p3.16xlarge", + "operation" : "Hourly", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CEUJNVH6ZRW9Z3QW" : { + "sku" : "CEUJNVH6ZRW9Z3QW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.4xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UZHN722C5BU8DZ5W" : { + "sku" : "UZHN722C5BU8DZ5W", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "8 x 800 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i2.8xlarge", + "operation" : "RunInstances:0002", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5USKDBRWNSU8R9RB" : { + "sku" : "5USKDBRWNSU8R9RB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:m3.2xlarge", + "operation" : "RunInstances:0800", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "F2K784WPSCB8RMWH" : { + "sku" : "F2K784WPSCB8RMWH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "3.75 GiB", + "storage" : "2 x 16 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.large", + "operation" : "RunInstances:0002", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XFRVV8VCBT6YSWP9" : { + "sku" : "XFRVV8VCBT6YSWP9", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:x1e.16xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "179", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3YGFZFTB4F7JS7UX" : { + "sku" : "3YGFZFTB4F7JS7UX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.2xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YCB5ZDAPFSHHX97B" : { + "sku" : "YCB5ZDAPFSHHX97B", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1.16xlarge", + "operation" : "RunInstances:0002", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "N5J4FCEYTCJTEMNE" : { + "sku" : "N5J4FCEYTCJTEMNE", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.9xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "72 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.9xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "4500 Mbps", + "ecu" : "139", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "72", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XES86TS9BX33Y86Y" : { + "sku" : "XES86TS9BX33Y86Y", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:p3.16xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "APSTJRGAT44DWEJ8" : { + "sku" : "APSTJRGAT44DWEJ8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "3.75 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.large", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "8NKXTZ2DTZ67NZ5M" : { + "sku" : "8NKXTZ2DTZ67NZ5M", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.8xlarge", + "operation" : "RunInstances:0202", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RBTTMD5AP4CP4TEB" : { + "sku" : "RBTTMD5AP4CP4TEB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "61 GiB", + "storage" : "6 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:d2.2xlarge", + "operation" : "RunInstances:0102", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QNZG4DHQSZ82BDNJ" : { + "sku" : "QNZG4DHQSZ82BDNJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.10xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "40", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "160 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.10xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "80", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5KPSXJYCB44KZMV5" : { + "sku" : "5KPSXJYCB44KZMV5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.large", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "400 Mbps", + "ecu" : "135", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "W3ZH5EZCGFR6XWEV" : { + "sku" : "W3ZH5EZCGFR6XWEV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.10xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "40", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "160 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.10xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "80", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "25A2HQUGG7F7ZU2J" : { + "sku" : "25A2HQUGG7F7ZU2J", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "1 x 120", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:x1e.xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "39748UVFEUKY3MVQ" : { + "sku" : "39748UVFEUKY3MVQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "15 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.2xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "X4PYRTAZG2VJ5RJV" : { + "sku" : "X4PYRTAZG2VJ5RJV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "15 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.2xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "C6RPVDY76QHZ9VB5" : { + "sku" : "C6RPVDY76QHZ9VB5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "hs1.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "17", + "physicalProcessor" : "Intel Xeon E5-2650", + "clockSpeed" : "2 GHz", + "memory" : "117 GiB", + "storage" : "24 x 2000", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:hs1.8xlarge", + "operation" : "RunInstances:0800", + "ecu" : "35", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TB8JSDKA7MEGTRXV" : { + "sku" : "TB8JSDKA7MEGTRXV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.large", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "450 Mbps", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KT8ZEPCC5TRJCUKH" : { + "sku" : "KT8ZEPCC5TRJCUKH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.2xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5ZCS4GNXFBKC3TU6" : { + "sku" : "5ZCS4GNXFBKC3TU6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "1 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.2xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KJ3MH4B6WKTQZE2W" : { + "sku" : "KJ3MH4B6WKTQZE2W", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 960", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.8xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "91", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "H4R547VQJ55ZDDZ2" : { + "sku" : "H4R547VQJ55ZDDZ2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "8PWP644R45F4VKQ9" : { + "sku" : "8PWP644R45F4VKQ9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1.32xlarge", + "operation" : "RunInstances:0002", + "ecu" : "349", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "X4DNEZ99CC6GXAKU" : { + "sku" : "X4DNEZ99CC6GXAKU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 80 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.xlarge", + "operation" : "RunInstances", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CMNW6M9D7DPHUTDD" : { + "sku" : "CMNW6M9D7DPHUTDD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.2xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "1600 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "J89JWM6V2G7N25FR" : { + "sku" : "J89JWM6V2G7N25FR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "30 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.4xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ER3NUVD4WF36NZTQ" : { + "sku" : "ER3NUVD4WF36NZTQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "15 GiB", + "storage" : "1 x 60 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:g2.2xlarge", + "operation" : "RunInstances:0800", + "ecu" : "26", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BN987XH7R93S9FFN" : { + "sku" : "BN987XH7R93S9FFN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "15 GiB", + "storage" : "1 x 60 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:g2.2xlarge", + "operation" : "RunInstances:0002", + "ecu" : "26", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2QU9K6YAGYT2B3FK" : { + "sku" : "2QU9K6YAGYT2B3FK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m3.2xlarge", + "operation" : "RunInstances:0102", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RDXB855WSYGQHXSB" : { + "sku" : "RDXB855WSYGQHXSB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:p2.8xlarge", + "operation" : "RunInstances:0002", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "T2S6PU6V3NXVX7X2" : { + "sku" : "T2S6PU6V3NXVX7X2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m3.2xlarge", + "operation" : "RunInstances:0002", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5YVC4WAQGG4WW22Q" : { + "sku" : "5YVC4WAQGG4WW22Q", + "productFamily" : "Dedicated Host", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "NA", + "storage" : "NA", + "networkPerformance" : "NA", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostUsage:c4", + "operation" : "RunInstances", + "ecu" : "NA", + "instanceCapacity2xlarge" : "4", + "instanceCapacity4xlarge" : "2", + "instanceCapacity8xlarge" : "1", + "instanceCapacityLarge" : "16", + "instanceCapacityXlarge" : "8", + "normalizationSizeFactor" : "NA", + "physicalCores" : "20", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JVAJTRPTQ2TMRVRR" : { + "sku" : "JVAJTRPTQ2TMRVRR", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "1 x 480", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.4xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "47", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "A6ZFW8EK3D8FCRUW" : { + "sku" : "A6ZFW8EK3D8FCRUW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "2 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.4xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HMNJVFAEBVXVF64D" : { + "sku" : "HMNJVFAEBVXVF64D", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "7.5 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.xlarge", + "operation" : "RunInstances:0010", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3Y79JQPCM8NG9MKS" : { + "sku" : "3Y79JQPCM8NG9MKS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "60 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.8xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "132", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7GZHH8G9CD4XD8TM" : { + "sku" : "7GZHH8G9CD4XD8TM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "4 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i2.4xlarge", + "operation" : "RunInstances:0006", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "WCAVWCRVUD56G7JJ" : { + "sku" : "WCAVWCRVUD56G7JJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "3.75 GiB", + "storage" : "2 x 16 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.large", + "operation" : "RunInstances:0002", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EEJY25ZRYKB8MXQ7" : { + "sku" : "EEJY25ZRYKB8MXQ7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.8xlarge", + "operation" : "RunInstances:0006", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DJEY5GTEWFQSU2H3" : { + "sku" : "DJEY5GTEWFQSU2H3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "800 Mbps", + "ecu" : "Variable", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "J2FKWQYCNWT2R2V7" : { + "sku" : "J2FKWQYCNWT2R2V7", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Outbound", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "AWS GovCloud (US)", + "toLocationType" : "AWS Region", + "usagetype" : "USE1-UGW1-AWS-Out-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "4YYNPC2WZJJXCMPG" : { + "sku" : "4YYNPC2WZJJXCMPG", + "productFamily" : "Load Balancer", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "group" : "ELB:Balancing", + "groupDescription" : "Data processed by Elastic Load Balancer", + "usagetype" : "DataProcessing-Bytes", + "operation" : "LoadBalancing", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7MYCC33ZAHEJPS24" : { + "sku" : "7MYCC33ZAHEJPS24", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m3.xlarge", + "operation" : "RunInstances:0202", + "ecu" : "13", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FEZXX3JK34ZK8J5N" : { + "sku" : "FEZXX3JK34ZK8J5N", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "1 x 320 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.4xlarge", + "operation" : "RunInstances:000g", + "ecu" : "52", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BTQ2BXHDBD3MTARJ" : { + "sku" : "BTQ2BXHDBD3MTARJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m3.2xlarge", + "operation" : "RunInstances:000g", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "G6S6S5QMYJ4RMXEZ" : { + "sku" : "G6S6S5QMYJ4RMXEZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "15 GiB", + "storage" : "1 x 60 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:g2.2xlarge", + "operation" : "RunInstances:0102", + "ecu" : "26", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CS26JSU2ZC88WXHJ" : { + "sku" : "CS26JSU2ZC88WXHJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.medium", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "3.75 GiB", + "storage" : "1 x 410", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m1.medium", + "operation" : "RunInstances:0010", + "ecu" : "2", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XMKFQV8DFSMWGQ5G" : { + "sku" : "XMKFQV8DFSMWGQ5G", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:g3.4xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "0", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YKZXQZPGPVZNNRHA" : { + "sku" : "YKZXQZPGPVZNNRHA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "17.1 GiB", + "storage" : "1 x 420", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m2.xlarge", + "operation" : "RunInstances", + "ecu" : "6.5", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PH52NYAMKMVT6ARR" : { + "sku" : "PH52NYAMKMVT6ARR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:p2.8xlarge", + "operation" : "RunInstances:0102", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "8QXEMJ9C47K755H8" : { + "sku" : "8QXEMJ9C47K755H8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:p3.2xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "K8E96EKZVDS2C7SM" : { + "sku" : "K8E96EKZVDS2C7SM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6NDY9AE4VQNGEMV4" : { + "sku" : "6NDY9AE4VQNGEMV4", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.18xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "72", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "144 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.18xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "9000 Mbps", + "ecu" : "278", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "144", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "WN9SBQRYAU953YAV" : { + "sku" : "WN9SBQRYAU953YAV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "15 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:c3.2xlarge", + "operation" : "RunInstances:0800", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5P8A9S7FHZ9Q44SE" : { + "sku" : "5P8A9S7FHZ9Q44SE", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:p3.16xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2WVXMQUWAFQDPJNS" : { + "sku" : "2WVXMQUWAFQDPJNS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m3.2xlarge", + "operation" : "RunInstances:0006", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Q48JUPPFZD9KDMH3" : { + "sku" : "Q48JUPPFZD9KDMH3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.2xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GN43Y4P6APPBFGM8" : { + "sku" : "GN43Y4P6APPBFGM8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "60 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.8xlarge", + "operation" : "RunInstances:0006", + "ecu" : "108", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FP9695TT873RFND7" : { + "sku" : "FP9695TT873RFND7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "60 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.8xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "132", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "X67HWFH8QVT6NSW7" : { + "sku" : "X67HWFH8QVT6NSW7", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Outbound", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "South America (Sao Paulo)", + "toLocationType" : "AWS Region", + "usagetype" : "USE1-SAE1-AWS-Out-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "GSFCFZ283SFGMM8F" : { + "sku" : "GSFCFZ283SFGMM8F", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "256 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.16xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "10000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "K7D23FF53A36EYWB" : { + "sku" : "K7D23FF53A36EYWB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.4xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "3000 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QSNKQ8P78YXPTAH8" : { + "sku" : "QSNKQ8P78YXPTAH8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m3.2xlarge", + "operation" : "RunInstances", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TAUPPUG4Z5RWGJYB" : { + "sku" : "TAUPPUG4Z5RWGJYB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 80 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.xlarge", + "operation" : "RunInstances:0010", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4HTGDWXZE6KRTGSR" : { + "sku" : "4HTGDWXZE6KRTGSR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "7.5 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m3.large", + "operation" : "RunInstances:0010", + "ecu" : "6.5", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "P4TPDGNQH5SAQPSP" : { + "sku" : "P4TPDGNQH5SAQPSP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "64 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.4xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "53.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VW78UGRTYRQ6EVC9" : { + "sku" : "VW78UGRTYRQ6EVC9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:r4.xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "800 Mbps", + "ecu" : "Variable", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ASDZTDFMC5425T7P" : { + "sku" : "ASDZTDFMC5425T7P", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.medium", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "3.75 GiB", + "storage" : "1 x 4 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m3.medium", + "operation" : "RunInstances", + "ecu" : "3", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JKUR5KFWCTQXCJKH" : { + "sku" : "JKUR5KFWCTQXCJKH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "1 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.2xlarge", + "operation" : "RunInstances:0102", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YN9T2DVCE7TVTX8J" : { + "sku" : "YN9T2DVCE7TVTX8J", + "productFamily" : "Dedicated Host", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3", + "instanceFamily" : "Storage optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "NA", + "storage" : "NA", + "networkPerformance" : "NA", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostUsage:i3", + "operation" : "RunInstances", + "ecu" : "NA", + "instanceCapacity16xlarge" : "1", + "instanceCapacity2xlarge" : "8", + "instanceCapacity4xlarge" : "4", + "instanceCapacity8xlarge" : "2", + "instanceCapacityLarge" : "32", + "instanceCapacityXlarge" : "16", + "normalizationSizeFactor" : "NA", + "physicalCores" : "36", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YAQ9JKWS8Q8NSPYJ" : { + "sku" : "YAQ9JKWS8Q8NSPYJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.0 GHz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Low to Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.large", + "operation" : "RunInstances:0202", + "ecu" : "Variable", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TD3RKXS2B3BMGKXR" : { + "sku" : "TD3RKXS2B3BMGKXR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "8 x 1.9 NVMe SSD", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.16xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ARQG8GDGKQUYVY5C" : { + "sku" : "ARQG8GDGKQUYVY5C", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.2xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EBPBHYCSY9TBSKNQ" : { + "sku" : "EBPBHYCSY9TBSKNQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.large", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "400 Mbps", + "ecu" : "135", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DM52VSGUXWMC72XW" : { + "sku" : "DM52VSGUXWMC72XW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 800 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i2.xlarge", + "operation" : "RunInstances:0010", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ADJRHP9DZHM7DJPS" : { + "sku" : "ADJRHP9DZHM7DJPS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:p3.8xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TMDSK7VAE2TT3ECF" : { + "sku" : "TMDSK7VAE2TT3ECF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "30 GiB", + "storage" : "2 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:c3.4xlarge", + "operation" : "RunInstances:0800", + "ecu" : "55", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PDEUGZC7QK7AETP6" : { + "sku" : "PDEUGZC7QK7AETP6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "7.5 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m3.large", + "operation" : "RunInstances:0006", + "ecu" : "6.5", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CJC3SAFYHNB2FRUU" : { + "sku" : "CJC3SAFYHNB2FRUU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.8xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "6000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DAVYF6BBKWXMDDGD" : { + "sku" : "DAVYF6BBKWXMDDGD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "f1.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "memory" : "976 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:f1.16xlarge", + "operation" : "RunInstances:0010", + "ecu" : "188", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MD88Y4BYY57EECUZ" : { + "sku" : "MD88Y4BYY57EECUZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "15 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.2xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NWRPWAZ545BCP5YE" : { + "sku" : "NWRPWAZ545BCP5YE", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.18xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "72", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "144 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.18xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "9000 Mbps", + "ecu" : "278", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "144", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MSN4QHE8TBV8XBD2" : { + "sku" : "MSN4QHE8TBV8XBD2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "15 GiB", + "storage" : "4 x 420", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m1.xlarge", + "operation" : "RunInstances:0010", + "ecu" : "8", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QBBBEFQPVEBWTH4F" : { + "sku" : "QBBBEFQPVEBWTH4F", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "2 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i2.2xlarge", + "operation" : "RunInstances:0010", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2E6TFSUWJVXJ9TK8" : { + "sku" : "2E6TFSUWJVXJ9TK8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.18xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "72", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "144 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:c5.18xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "9000 Mbps", + "ecu" : "278", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "144", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "A633GX9XTPAPFK68" : { + "sku" : "A633GX9XTPAPFK68", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "2 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.4xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NDTH66N9XMTJ3CP6" : { + "sku" : "NDTH66N9XMTJ3CP6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:p2.8xlarge", + "operation" : "RunInstances:0800", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7WRGXK63YR8UUHF8" : { + "sku" : "7WRGXK63YR8UUHF8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 0.95 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "850 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EAAU7VGSNXDD23Q8" : { + "sku" : "EAAU7VGSNXDD23Q8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:p2.xlarge", + "operation" : "RunInstances:0800", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3H63S5QV423QAHHQ" : { + "sku" : "3H63S5QV423QAHHQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:g3.16xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "4", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GTJ44D58C728KCTE" : { + "sku" : "GTJ44D58C728KCTE", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:x1e.16xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "179", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2QVB6NSAF3S5JVJW" : { + "sku" : "2QVB6NSAF3S5JVJW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "60 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.8xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "132", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FMDFEJP7NHC74DVF" : { + "sku" : "FMDFEJP7NHC74DVF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.large", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "7.5 GiB", + "storage" : "2 x 420", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m1.large", + "operation" : "RunInstances:000g", + "ecu" : "4", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SUJ3QNNHT5BXCCWP" : { + "sku" : "SUJ3QNNHT5BXCCWP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 80 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.xlarge", + "operation" : "RunInstances:0202", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ERSKB3J598DCE2QB" : { + "sku" : "ERSKB3J598DCE2QB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.8xlarge", + "operation" : "RunInstances:0102", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KCTR9Z2CY7MTZPGS" : { + "sku" : "KCTR9Z2CY7MTZPGS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "1 x 320 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.4xlarge", + "operation" : "RunInstances:0102", + "ecu" : "52", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SMS2RQFVUU6VDNFP" : { + "sku" : "SMS2RQFVUU6VDNFP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CGHFTKH25J86C64Y" : { + "sku" : "CGHFTKH25J86C64Y", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.8xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "6000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RS5KEAYU8MER5RSM" : { + "sku" : "RS5KEAYU8MER5RSM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.4xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "3000 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "WJ879Q9A4WW7T6Y3" : { + "sku" : "WJ879Q9A4WW7T6Y3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.4xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "3000 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DX44AJZKPEUWHF3H" : { + "sku" : "DX44AJZKPEUWHF3H", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "1 x 240", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.2xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "23", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YVR4R7XCGTF5BWVS" : { + "sku" : "YVR4R7XCGTF5BWVS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.large", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "7.5 GiB", + "storage" : "2 x 420", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m1.large", + "operation" : "RunInstances:0006", + "ecu" : "4", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Std", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "W22DG9FACE6C38MS" : { + "sku" : "W22DG9FACE6C38MS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.large", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "450 Mbps", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "D6YAK3JVF2VWSDJ9" : { + "sku" : "D6YAK3JVF2VWSDJ9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.medium", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "3.75 GiB", + "storage" : "1 x 4 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m3.medium", + "operation" : "RunInstances:0002", + "ecu" : "3", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NBUQPTSYHSXS2EB6" : { + "sku" : "NBUQPTSYHSXS2EB6", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Inbound", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "US West (N. California)", + "toLocationType" : "AWS Region", + "usagetype" : "USE1-USW1-AWS-In-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "JMY8QZUVY8MRJ29G" : { + "sku" : "JMY8QZUVY8MRJ29G", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 0.95 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "850 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "G24JGV5VNDJ37S5F" : { + "sku" : "G24JGV5VNDJ37S5F", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.10xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "40", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "160 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.10xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "80", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TW7YX8U2PR5YVTFK" : { + "sku" : "TW7YX8U2PR5YVTFK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "30 GiB", + "storage" : "2 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.4xlarge", + "operation" : "RunInstances:0002", + "ecu" : "55", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XNHWHA56JBG8ZQZQ" : { + "sku" : "XNHWHA56JBG8ZQZQ", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "1 x 240", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.2xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "23", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GTXM83ZHJ4EVYY9U" : { + "sku" : "GTXM83ZHJ4EVYY9U", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "60 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.8xlarge", + "operation" : "RunInstances:0002", + "ecu" : "108", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XERSDU2TVYCQWYRV" : { + "sku" : "XERSDU2TVYCQWYRV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "800 Mbps", + "ecu" : "Variable", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NTS9R3ZEX6FDMW8S" : { + "sku" : "NTS9R3ZEX6FDMW8S", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "2 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i2.2xlarge", + "operation" : "RunInstances:0202", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6BD786EZRWD4UZTB" : { + "sku" : "6BD786EZRWD4UZTB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m3.xlarge", + "operation" : "RunInstances:0002", + "ecu" : "13", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TZPJVS2GCV8M5FXM" : { + "sku" : "TZPJVS2GCV8M5FXM", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Outbound", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "Amazon CloudFront", + "toLocationType" : "AWS Edge Location", + "usagetype" : "USE1-CloudFront-Out-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "4TYUSVW2SFT4SYCV" : { + "sku" : "4TYUSVW2SFT4SYCV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.large", + "operation" : "RunInstances:0202", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KC3PFUW2U3T5RRSR" : { + "sku" : "KC3PFUW2U3T5RRSR", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.16xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "179", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GEDBVWHPGWMPYFMC" : { + "sku" : "GEDBVWHPGWMPYFMC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "7.5 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.xlarge", + "operation" : "RunInstances", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PRPF3JAXJK67A625" : { + "sku" : "PRPF3JAXJK67A625", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "7.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "US4KNUGYQKAD8SVF" : { + "sku" : "US4KNUGYQKAD8SVF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:p3.8xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QE6TWY9JZPAAAFX6" : { + "sku" : "QE6TWY9JZPAAAFX6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m3.2xlarge", + "operation" : "RunInstances:0010", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DJHVN6BK8VNTW74G" : { + "sku" : "DJHVN6BK8VNTW74G", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "3.75 GiB", + "storage" : "2 x 16 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:c3.large", + "operation" : "RunInstances:0800", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "X6PQNCEPYKKQHDCA" : { + "sku" : "X6PQNCEPYKKQHDCA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:p3.8xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EP2SBMU2Z582EJNK" : { + "sku" : "EP2SBMU2Z582EJNK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c1.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "7 GiB", + "storage" : "4 x 420", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c1.xlarge", + "operation" : "RunInstances:0002", + "ecu" : "20", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Q3V4FNRZN9QKF6FC" : { + "sku" : "Q3V4FNRZN9QKF6FC", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Outbound", + "fromLocation" : "Asia Pacific (Mumbai)", + "fromLocationType" : "AWS Region", + "toLocation" : "US East (N. Virginia)", + "toLocationType" : "AWS Region", + "usagetype" : "APS3-USE1-AWS-Out-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "5AVR4REAWXYCDTBG" : { + "sku" : "5AVR4REAWXYCDTBG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "256 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.16xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "10000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RA7GXBYJW245U7C5" : { + "sku" : "RA7GXBYJW245U7C5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:p3.8xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RF9FHSRZ3SVU59FJ" : { + "sku" : "RF9FHSRZ3SVU59FJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.16xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "12000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "39SAA25CYWD748WC" : { + "sku" : "39SAA25CYWD748WC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "3.75 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:c4.large", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "E92W6J6ZWCYNHQYK" : { + "sku" : "E92W6J6ZWCYNHQYK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:p2.xlarge", + "operation" : "RunInstances:0010", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SVUSEDJB94K6K37X" : { + "sku" : "SVUSEDJB94K6K37X", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "60 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.8xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "132", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "W74H9N7H8NNRHRRV" : { + "sku" : "W74H9N7H8NNRHRRV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "3,904 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.32xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "340", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SBHS3JAQSXPZMQSH" : { + "sku" : "SBHS3JAQSXPZMQSH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "7.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2BG23N2FNX3BKVFW" : { + "sku" : "2BG23N2FNX3BKVFW", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Outbound", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "EU (Frankfurt)", + "toLocationType" : "AWS Region", + "usagetype" : "USE1-EUC1-AWS-Out-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "T64KKYA6S8ZUXCAT" : { + "sku" : "T64KKYA6S8ZUXCAT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "60 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.8xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "132", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "J95CCXETUZE5KFXR" : { + "sku" : "J95CCXETUZE5KFXR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:p3.16xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "WT63RNHXYTKJPT3V" : { + "sku" : "WT63RNHXYTKJPT3V", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.4xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "3000 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Y6BQV4XBTAFVVV2A" : { + "sku" : "Y6BQV4XBTAFVVV2A", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "2 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.4xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "V3RF6UFJXPKZ5CNE" : { + "sku" : "V3RF6UFJXPKZ5CNE", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 960", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.8xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "91", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "R44YAG7V59VVJURM" : { + "sku" : "R44YAG7V59VVJURM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "4 x 1.9 NVMe SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.8xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HXX5KQP8SE3AS5E2" : { + "sku" : "HXX5KQP8SE3AS5E2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "30 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.4xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UDEYV89RV6UUPFA2" : { + "sku" : "UDEYV89RV6UUPFA2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "8 x 1.9 NVMe SSD", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.16xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "B73TJ3GDPEVMDXTQ" : { + "sku" : "B73TJ3GDPEVMDXTQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.16xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "12000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "V8J7UTRH4P2HW8YW" : { + "sku" : "V8J7UTRH4P2HW8YW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.2xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "1600 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "V972X7PY72ZHR6V3" : { + "sku" : "V972X7PY72ZHR6V3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "800 Mbps", + "ecu" : "Variable", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2VHPXRTYGECESS2J" : { + "sku" : "2VHPXRTYGECESS2J", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "800 Mbps", + "ecu" : "Variable", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Z7DQXX2TTGQW7T5N" : { + "sku" : "Z7DQXX2TTGQW7T5N", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Outbound", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "Canada (Central)", + "toLocationType" : "AWS Region", + "usagetype" : "USE1-CAN1-AWS-Out-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "X8HSBS99N48YZKF3" : { + "sku" : "X8HSBS99N48YZKF3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "4 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.large", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "S4DJNZYAC3UVKJKQ" : { + "sku" : "S4DJNZYAC3UVKJKQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.2xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FZXWWWKE7AQGFDHX" : { + "sku" : "FZXWWWKE7AQGFDHX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "15 GiB", + "storage" : "4 x 420", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m1.xlarge", + "operation" : "RunInstances:0002", + "ecu" : "8", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KTZYT2QK3KRKX3XT" : { + "sku" : "KTZYT2QK3KRKX3XT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:p3.8xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "X2XXBVJKW4AFD4PA" : { + "sku" : "X2XXBVJKW4AFD4PA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "1 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.2xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3DKA632YPCBQAV5W" : { + "sku" : "3DKA632YPCBQAV5W", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.8xlarge", + "operation" : "RunInstances:0002", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5Q9H4XMF36Y7R6TM" : { + "sku" : "5Q9H4XMF36Y7R6TM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.8xlarge", + "operation" : "RunInstances:0102", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SQ37ZQ2CZ2H95VDC" : { + "sku" : "SQ37ZQ2CZ2H95VDC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:g3.4xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "0", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "599NS97NVDVBQMHV" : { + "sku" : "599NS97NVDVBQMHV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "4 x 1.9 NVMe SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.8xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "T2A8DS9QR9R22WZ2" : { + "sku" : "T2A8DS9QR9R22WZ2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "1 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.2xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SXC4GWK8KEDB7F93" : { + "sku" : "SXC4GWK8KEDB7F93", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "2 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.4xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9MZCJAF77KSVMAC2" : { + "sku" : "9MZCJAF77KSVMAC2", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.16xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "179", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5CT452VS74WXW77W" : { + "sku" : "5CT452VS74WXW77W", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "1 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.2xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CVWS7EQD5PCXDCZ3" : { + "sku" : "CVWS7EQD5PCXDCZ3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.8xlarge", + "operation" : "RunInstances", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5YU9U4CS2QFKY4UW" : { + "sku" : "5YU9U4CS2QFKY4UW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.2xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "1600 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "C79HZMYRKTWS54VW" : { + "sku" : "C79HZMYRKTWS54VW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.2xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YUPSNN9JFU6UZYAS" : { + "sku" : "YUPSNN9JFU6UZYAS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m3.xlarge", + "operation" : "RunInstances", + "ecu" : "13", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GCDTB8AS6VH4HTCD" : { + "sku" : "GCDTB8AS6VH4HTCD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.large", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "400 Mbps", + "ecu" : "135", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GMGKK582WT2TW2KT" : { + "sku" : "GMGKK582WT2TW2KT", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 960", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:x1e.8xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "91", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GVNK6UKCGGH82WUC" : { + "sku" : "GVNK6UKCGGH82WUC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.10xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "40", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "160 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.10xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "80", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JNRAY8EMZWNC3JNN" : { + "sku" : "JNRAY8EMZWNC3JNN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "68.4 GiB", + "storage" : "2 x 840", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m2.4xlarge", + "operation" : "RunInstances:0010", + "ecu" : "26", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JRRHF5CXWN8M3MCY" : { + "sku" : "JRRHF5CXWN8M3MCY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "122 GiB", + "storage" : "12 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:d2.4xlarge", + "operation" : "RunInstances:000g", + "ecu" : "56", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9CHFMGVK3AF7D8KU" : { + "sku" : "9CHFMGVK3AF7D8KU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "61 GiB", + "storage" : "6 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:d2.2xlarge", + "operation" : "RunInstances:0010", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9YXTC4KPBJSYNVNU" : { + "sku" : "9YXTC4KPBJSYNVNU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.9xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "72 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.9xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "4500 Mbps", + "ecu" : "139", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "72", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DPPVX7QQ3SGX3TED" : { + "sku" : "DPPVX7QQ3SGX3TED", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:g3.8xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "0", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "2", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZV6FCW29ACDSB8CF" : { + "sku" : "ZV6FCW29ACDSB8CF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.10xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "40", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "160 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.10xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "80", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3CHY5ZRYJFN6TYQF" : { + "sku" : "3CHY5ZRYJFN6TYQF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:r4.8xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "6000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "G2A5K95XMCKDA9AT" : { + "sku" : "G2A5K95XMCKDA9AT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 0.475 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.large", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "425 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CCH8XMK5SWS2XV75" : { + "sku" : "CCH8XMK5SWS2XV75", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "4 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.large", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RV7P78K2Q4CXVVP3" : { + "sku" : "RV7P78K2Q4CXVVP3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.9xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "72 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.9xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "4500 Mbps", + "ecu" : "139", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "72", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6R5GC45858YD7JK6" : { + "sku" : "6R5GC45858YD7JK6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.small", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "1.7 GiB", + "storage" : "1 x 160", + "networkPerformance" : "Low", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage", + "operation" : "RunInstances:0002", + "ecu" : "Variable", + "normalizationSizeFactor" : "1", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9MM8GACQ8HB29XKD" : { + "sku" : "9MM8GACQ8HB29XKD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "15 GiB", + "storage" : "1 x 60 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:g2.2xlarge", + "operation" : "RunInstances:0800", + "ecu" : "26", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AJKJ4N4Q2WVCYJJN" : { + "sku" : "AJKJ4N4Q2WVCYJJN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "7.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:c4.xlarge", + "operation" : "Hourly", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YBBWEV8UYE6E6N4Q" : { + "sku" : "YBBWEV8UYE6E6N4Q", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "15 GiB", + "storage" : "1 x 60 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:g2.2xlarge", + "operation" : "RunInstances:0202", + "ecu" : "26", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "W43N2ZPS868KHX7Y" : { + "sku" : "W43N2ZPS868KHX7Y", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "4 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i2.4xlarge", + "operation" : "RunInstances:000g", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XKJ4XRAHPF6M7XD9" : { + "sku" : "XKJ4XRAHPF6M7XD9", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Inbound", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "Canada (Central)", + "toLocationType" : "AWS Region", + "usagetype" : "USE1-CAN1-AWS-In-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "YFKXQVPA9X957EGE" : { + "sku" : "YFKXQVPA9X957EGE", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:p2.8xlarge", + "operation" : "RunInstances:000g", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HCMUNBKMY8ZTDFFE" : { + "sku" : "HCMUNBKMY8ZTDFFE", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.large", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "7.5 GiB", + "storage" : "2 x 420", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m1.large", + "operation" : "RunInstances:0010", + "ecu" : "4", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "WY2NRDKGBAP9WZHZ" : { + "sku" : "WY2NRDKGBAP9WZHZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "122 GiB", + "storage" : "12 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:d2.4xlarge", + "operation" : "RunInstances:0102", + "ecu" : "56", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HS3PUQUMX2MJTFJA" : { + "sku" : "HS3PUQUMX2MJTFJA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "f1.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "memory" : "976 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:f1.16xlarge", + "operation" : "RunInstances:0010", + "ecu" : "188", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KG9YWSKMK27V6W6V" : { + "sku" : "KG9YWSKMK27V6W6V", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.large", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "7.5 GiB", + "storage" : "2 x 420", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m1.large", + "operation" : "RunInstances", + "ecu" : "4", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "H65MFZJT8RFNRRQK" : { + "sku" : "H65MFZJT8RFNRRQK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "30.5 GiB", + "storage" : "3 x 2000 HDD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:d2.xlarge", + "operation" : "RunInstances:0202", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KPX48D6YDFSDBE2Y" : { + "sku" : "KPX48D6YDFSDBE2Y", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.large", + "operation" : "RunInstances:000g", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HVUDFQPHSTBP5QJC" : { + "sku" : "HVUDFQPHSTBP5QJC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.18xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "72", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "144 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.18xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "9000 Mbps", + "ecu" : "278", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "144", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FRR3BPV6Y433HGXY" : { + "sku" : "FRR3BPV6Y433HGXY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "244 GiB", + "storage" : "24 x 2000 HDD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:d2.8xlarge", + "operation" : "RunInstances:0002", + "ecu" : "116", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PS8T955EH7FMVZUG" : { + "sku" : "PS8T955EH7FMVZUG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "1 x 320 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.4xlarge", + "operation" : "RunInstances", + "ecu" : "52", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "H48ZRU3X7FXGTGQM" : { + "sku" : "H48ZRU3X7FXGTGQM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "3.75 GiB", + "storage" : "2 x 16 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.large", + "operation" : "RunInstances", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "STRFBQS9QNUUSSCD" : { + "sku" : "STRFBQS9QNUUSSCD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c1.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "7 GiB", + "storage" : "4 x 420", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c1.xlarge", + "operation" : "RunInstances:0202", + "ecu" : "20", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PF95WR6DG26CSW2U" : { + "sku" : "PF95WR6DG26CSW2U", + "productFamily" : "NAT Gateway", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "group" : "NGW:NatGateway", + "groupDescription" : "Charge for per GB data processed by NAT Gateways with provisioned bandwidth", + "usagetype" : "NatGateway-Prvd-Bytes", + "operation" : "NatGateway", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "95B5M4Z5DF8F8PVC" : { + "sku" : "95B5M4Z5DF8F8PVC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 0.475 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.large", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "425 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7EN7RS9DVKDM4WXZ" : { + "sku" : "7EN7RS9DVKDM4WXZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "60 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.8xlarge", + "operation" : "RunInstances", + "ecu" : "108", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XCCBFY7VKRFREWQZ" : { + "sku" : "XCCBFY7VKRFREWQZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cg1.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "GPU instance", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon x5570", + "memory" : "22.5 GiB", + "storage" : "2 x 840", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:cg1.4xlarge", + "operation" : "RunInstances:0202", + "ecu" : "33.5", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YJQ6VUEJFXP5T23D" : { + "sku" : "YJQ6VUEJFXP5T23D", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "1 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.2xlarge", + "operation" : "RunInstances:0202", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "24MXYDDDX5MFDX7E" : { + "sku" : "24MXYDDDX5MFDX7E", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "3.75 GiB", + "storage" : "2 x 16 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.large", + "operation" : "RunInstances", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EYGMRBWWFGSQBSBZ" : { + "sku" : "EYGMRBWWFGSQBSBZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "15 GiB", + "storage" : "4 x 420", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m1.xlarge", + "operation" : "RunInstances", + "ecu" : "8", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KGZ5JY4FKTR75YN3" : { + "sku" : "KGZ5JY4FKTR75YN3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.medium", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "3.75 GiB", + "storage" : "1 x 4 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m3.medium", + "operation" : "RunInstances:0010", + "ecu" : "3", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "H82A2SJ6H4MSM5Q6" : { + "sku" : "H82A2SJ6H4MSM5Q6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 0.95 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "850 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZKNV3YNZ7ETKWSWB" : { + "sku" : "ZKNV3YNZ7ETKWSWB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.0 GHz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Low to Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.large", + "operation" : "RunInstances:0002", + "ecu" : "Variable", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "WE43EAHVMJU4ZVBT" : { + "sku" : "WE43EAHVMJU4ZVBT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 0.95 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "850 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "WSBQ3GQCNJDRXWWZ" : { + "sku" : "WSBQ3GQCNJDRXWWZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.2xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "1600 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "8WMJSK8SESK57KMV" : { + "sku" : "8WMJSK8SESK57KMV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:g3.16xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "4", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "42568WZBBYJBWCB3" : { + "sku" : "42568WZBBYJBWCB3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "64 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.4xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "53.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "B94BJ9BKFE3BAMJW" : { + "sku" : "B94BJ9BKFE3BAMJW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cr1.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670", + "memory" : "244 GiB", + "storage" : "2 x 120 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:cr1.8xlarge", + "operation" : "RunInstances:000g", + "ecu" : "88", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "N62CGU7P3H3TVWVG" : { + "sku" : "N62CGU7P3H3TVWVG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "3,904 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.32xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "340", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FD2MYJ67QXPYJGHF" : { + "sku" : "FD2MYJ67QXPYJGHF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "1 x 320 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.4xlarge", + "operation" : "RunInstances:0002", + "ecu" : "52", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HNHRS6AFMYQWY26Y" : { + "sku" : "HNHRS6AFMYQWY26Y", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VHA3WETGYBUH3HCX" : { + "sku" : "VHA3WETGYBUH3HCX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "1 x 320 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:r3.4xlarge", + "operation" : "RunInstances:0800", + "ecu" : "52", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XEM85KR3292VMY35" : { + "sku" : "XEM85KR3292VMY35", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "15 GiB", + "storage" : "4 x 420", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m1.xlarge", + "operation" : "RunInstances:0002", + "ecu" : "8", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CF7GPWXNXHE4VJQX" : { + "sku" : "CF7GPWXNXHE4VJQX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "15 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.2xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "A28M9STN7TTR5DC8" : { + "sku" : "A28M9STN7TTR5DC8", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "1 x 240", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:x1e.2xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "23", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "A5GXEZ47W9A2SVY8" : { + "sku" : "A5GXEZ47W9A2SVY8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "64 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.4xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "53.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6FNWHYYYSDGVQ87S" : { + "sku" : "6FNWHYYYSDGVQ87S", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.2xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3SNVUNEGB8BAMWDP" : { + "sku" : "3SNVUNEGB8BAMWDP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 800 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i2.xlarge", + "operation" : "RunInstances", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FZFXDFC28N97MJBH" : { + "sku" : "FZFXDFC28N97MJBH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.2xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "1600 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HJA24B3YK2EKQPEQ" : { + "sku" : "HJA24B3YK2EKQPEQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.18xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "72", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "144 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.18xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "9000 Mbps", + "ecu" : "278", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "144", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6555VGRWG4AP5HWV" : { + "sku" : "6555VGRWG4AP5HWV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.large", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "450 Mbps", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KBNWDNPNYX37C8BM" : { + "sku" : "KBNWDNPNYX37C8BM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VNYB2GETE99SPEJJ" : { + "sku" : "VNYB2GETE99SPEJJ", + "productFamily" : "Dedicated Host", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "NA", + "storage" : "NA", + "networkPerformance" : "NA", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostUsage:c3", + "operation" : "RunInstances", + "ecu" : "NA", + "instanceCapacity2xlarge" : "4", + "instanceCapacity4xlarge" : "2", + "instanceCapacity8xlarge" : "1", + "instanceCapacityLarge" : "16", + "instanceCapacityXlarge" : "8", + "normalizationSizeFactor" : "NA", + "physicalCores" : "20", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RKV52SHBEQCC45W3" : { + "sku" : "RKV52SHBEQCC45W3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.large", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "450 Mbps", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "427555ENEC4F3EDG" : { + "sku" : "427555ENEC4F3EDG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "8 x 800 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i2.8xlarge", + "operation" : "RunInstances:0002", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "86FRG8MH7C6B944J" : { + "sku" : "86FRG8MH7C6B944J", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "1 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.2xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DSG34N2933CDGRJJ" : { + "sku" : "DSG34N2933CDGRJJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "7.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7NHNWKWH69EZHFFD" : { + "sku" : "7NHNWKWH69EZHFFD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m3.xlarge", + "operation" : "RunInstances:0010", + "ecu" : "13", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GS7JMPJ9ZA8J6K6K" : { + "sku" : "GS7JMPJ9ZA8J6K6K", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "15 GiB", + "storage" : "4 x 420", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m1.xlarge", + "operation" : "RunInstances", + "ecu" : "8", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JV8XGJX4R2ZMWD28" : { + "sku" : "JV8XGJX4R2ZMWD28", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "2 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i2.2xlarge", + "operation" : "RunInstances:0006", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "B77Q3B58P6KH3QKK" : { + "sku" : "B77Q3B58P6KH3QKK", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 960", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.8xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "91", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RX9PC8FR2YT42ZFG" : { + "sku" : "RX9PC8FR2YT42ZFG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "3.75 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.large", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "A7J6GBKB42E7ZP99" : { + "sku" : "A7J6GBKB42E7ZP99", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.4xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "3000 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DF8Q7FFWFQ7XFMWT" : { + "sku" : "DF8Q7FFWFQ7XFMWT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "1 x 120", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4RDK5GMP5336FHVU" : { + "sku" : "4RDK5GMP5336FHVU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "1 x 120", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "K6TSS6QSQBWVHANR" : { + "sku" : "K6TSS6QSQBWVHANR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m3.2xlarge", + "operation" : "RunInstances:000g", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "W2C299XDDHK5Q5HK" : { + "sku" : "W2C299XDDHK5Q5HK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "8 x 800 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i2.8xlarge", + "operation" : "RunInstances:0010", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KDCQC5EHG2SRP6TU" : { + "sku" : "KDCQC5EHG2SRP6TU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "hs1.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "17", + "physicalProcessor" : "Intel Xeon E5-2650", + "clockSpeed" : "2 GHz", + "memory" : "117 GiB", + "storage" : "24 x 2000", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:hs1.8xlarge", + "operation" : "RunInstances:000g", + "ecu" : "35", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ABJ9HJ6JXJ4MY26U" : { + "sku" : "ABJ9HJ6JXJ4MY26U", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "2 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.4xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "35AEEWH98DECPC35" : { + "sku" : "35AEEWH98DECPC35", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DMEAKMC95469FYDS" : { + "sku" : "DMEAKMC95469FYDS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "2 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.4xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "82EETVJ33AH6DNH9" : { + "sku" : "82EETVJ33AH6DNH9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "60 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:c4.8xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "132", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HW5URJGXS94RYC7N" : { + "sku" : "HW5URJGXS94RYC7N", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.2xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "1600 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HD5FKWRF3Y3UA5CY" : { + "sku" : "HD5FKWRF3Y3UA5CY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.small", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "1.7 GiB", + "storage" : "1 x 160", + "networkPerformance" : "Low", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage", + "operation" : "RunInstances:0006", + "ecu" : "Variable", + "normalizationSizeFactor" : "1", + "preInstalledSw" : "SQL Std", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "S35ZU4TJVUPNKG6U" : { + "sku" : "S35ZU4TJVUPNKG6U", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "1 x 240", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.2xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "23", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "D987U4EZH8SKPPQC" : { + "sku" : "D987U4EZH8SKPPQC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.small", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "1.7 GiB", + "storage" : "1 x 160", + "networkPerformance" : "Low", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage", + "operation" : "RunInstances:0202", + "ecu" : "Variable", + "normalizationSizeFactor" : "1", + "preInstalledSw" : "SQL Web", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "F6DTZSV5HTJ5SARF" : { + "sku" : "F6DTZSV5HTJ5SARF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "30 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.4xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XAJSBBR3F4CX756Z" : { + "sku" : "XAJSBBR3F4CX756Z", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Inbound", + "fromLocation" : "EU (Frankfurt)", + "fromLocationType" : "AWS Region", + "toLocation" : "US East (N. Virginia)", + "toLocationType" : "AWS Region", + "usagetype" : "EUC1-USE1-AWS-In-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "4EZQG8BYPRTVKHRZ" : { + "sku" : "4EZQG8BYPRTVKHRZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "800 Mbps", + "ecu" : "Variable", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GXUGSHFHQFHUTQMM" : { + "sku" : "GXUGSHFHQFHUTQMM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 0.95 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "850 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "436TQXUY62HKEC4V" : { + "sku" : "436TQXUY62HKEC4V", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:p3.16xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EBRWZVHDHP2KJAMQ" : { + "sku" : "EBRWZVHDHP2KJAMQ", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "1 x 480", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.4xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "47", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KD8DVSJPFVSX354N" : { + "sku" : "KD8DVSJPFVSX354N", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 960", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.8xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "91", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CSCB3RCZY9UUMWAN" : { + "sku" : "CSCB3RCZY9UUMWAN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "3,904 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.32xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "340", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "99NCMXTASQBWBS5F" : { + "sku" : "99NCMXTASQBWBS5F", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "60 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.8xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "132", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "WWPUYMRPHK6Y3WER" : { + "sku" : "WWPUYMRPHK6Y3WER", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "64 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.4xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "53.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "63U4EHGD76K6MYA6" : { + "sku" : "63U4EHGD76K6MYA6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "1 x 120", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NS9APTDFJ7SPEAAV" : { + "sku" : "NS9APTDFJ7SPEAAV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "ebsOptimized" : "Yes", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:m3.2xlarge", + "operation" : "Hourly", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AA7ZX8UEQ6R54FN8" : { + "sku" : "AA7ZX8UEQ6R54FN8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "15 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.2xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "D2UN9TFKVYBF6AUM" : { + "sku" : "D2UN9TFKVYBF6AUM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "f1.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:f1.2xlarge", + "operation" : "RunInstances:000g", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4BJYGSAQ24CQWAT9" : { + "sku" : "4BJYGSAQ24CQWAT9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.2xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QEK6WMVB3Q3SRE4E" : { + "sku" : "QEK6WMVB3Q3SRE4E", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "1 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.2xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "U55BDVR9QF3VHRGZ" : { + "sku" : "U55BDVR9QF3VHRGZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "68.4 GiB", + "storage" : "2 x 840", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m2.4xlarge", + "operation" : "RunInstances:0002", + "ecu" : "26", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ECGX6UUV4NV7ZXGQ" : { + "sku" : "ECGX6UUV4NV7ZXGQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "122 GiB", + "storage" : "12 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:d2.4xlarge", + "operation" : "RunInstances:0800", + "ecu" : "56", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QP7VG66RCTU7M632" : { + "sku" : "QP7VG66RCTU7M632", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.small", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "1.7 GiB", + "storage" : "1 x 160", + "networkPerformance" : "Low", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage", + "operation" : "RunInstances:0010", + "ecu" : "Variable", + "normalizationSizeFactor" : "1", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VN8JS6C4CHVEY8WD" : { + "sku" : "VN8JS6C4CHVEY8WD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "4 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "ebsOptimized" : "Yes", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:i2.4xlarge", + "operation" : "Hourly", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6SNHPAN3YKSWBAJB" : { + "sku" : "6SNHPAN3YKSWBAJB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.2xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "1600 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CYF7KMJTP6KF6443" : { + "sku" : "CYF7KMJTP6KF6443", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:p3.2xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TBC4ECWPWM5TJCUA" : { + "sku" : "TBC4ECWPWM5TJCUA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.2xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MCVQU48QPHRDXMRT" : { + "sku" : "MCVQU48QPHRDXMRT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "768 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:p2.16xlarge", + "operation" : "RunInstances", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "16", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TRJZT878WSTAV924" : { + "sku" : "TRJZT878WSTAV924", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "30 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.4xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MDMR23U3WGXF3XNN" : { + "sku" : "MDMR23U3WGXF3XNN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "30 GiB", + "storage" : "2 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.4xlarge", + "operation" : "RunInstances:0102", + "ecu" : "55", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "H3H6PVAND793CJ85" : { + "sku" : "H3H6PVAND793CJ85", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "60 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.8xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "132", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "URQPKMKKWVYXRDR3" : { + "sku" : "URQPKMKKWVYXRDR3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FZCQH9HE5YJHXGM4" : { + "sku" : "FZCQH9HE5YJHXGM4", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:p2.xlarge", + "operation" : "RunInstances", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2YXG22APZA6TC2QW" : { + "sku" : "2YXG22APZA6TC2QW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6898Z5WFTX5GEKYT" : { + "sku" : "6898Z5WFTX5GEKYT", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "1 x 480", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.4xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "47", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AHXYB8F5F4C9BS49" : { + "sku" : "AHXYB8F5F4C9BS49", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "60 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.8xlarge", + "operation" : "RunInstances:000g", + "ecu" : "108", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "73WCSETYKTR78DFE" : { + "sku" : "73WCSETYKTR78DFE", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "f1.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "memory" : "976 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:f1.16xlarge", + "operation" : "RunInstances:0800", + "ecu" : "188", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CNM382ND78XDQQAK" : { + "sku" : "CNM382ND78XDQQAK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "8 x 800 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i2.8xlarge", + "operation" : "RunInstances", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YNFV4A5QUAMVDGKX" : { + "sku" : "YNFV4A5QUAMVDGKX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1.16xlarge", + "operation" : "RunInstances", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RWRSW4Q7WCASA2W9" : { + "sku" : "RWRSW4Q7WCASA2W9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "7.5 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.xlarge", + "operation" : "RunInstances:0006", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "E8Q8HF3P3ZT76NBP" : { + "sku" : "E8Q8HF3P3ZT76NBP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "4 x 1.9 NVMe SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.8xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TB387UEUFCNJQBC7" : { + "sku" : "TB387UEUFCNJQBC7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.8xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "6000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GJ4X2G4FDXPBB6U8" : { + "sku" : "GJ4X2G4FDXPBB6U8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "30 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:c4.4xlarge", + "operation" : "Hourly", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SKRG28YJJD7F7ACS" : { + "sku" : "SKRG28YJJD7F7ACS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.2xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "1600 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YSGQ6AZH4GU6W9TM" : { + "sku" : "YSGQ6AZH4GU6W9TM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "7.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RZS5FY9ANEA8TU3F" : { + "sku" : "RZS5FY9ANEA8TU3F", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.2xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BJ9999E62JPQN34Q" : { + "sku" : "BJ9999E62JPQN34Q", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.0 GHz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.xlarge", + "operation" : "RunInstances:0202", + "ecu" : "Variable", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ENS9X5UYSE8HHJGX" : { + "sku" : "ENS9X5UYSE8HHJGX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "15 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.2xlarge", + "operation" : "RunInstances:0202", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JABV4QCJFZRBR8JA" : { + "sku" : "JABV4QCJFZRBR8JA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "122 GiB", + "storage" : "12 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:d2.4xlarge", + "operation" : "RunInstances:0102", + "ecu" : "56", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SH6G48SE9H3R9TQT" : { + "sku" : "SH6G48SE9H3R9TQT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c1.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "7 GiB", + "storage" : "4 x 420", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c1.xlarge", + "operation" : "RunInstances:0010", + "ecu" : "20", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "25T439HS4WV9KRN4" : { + "sku" : "25T439HS4WV9KRN4", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.large", + "operation" : "RunInstances:0006", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KE8V44XRQ8CWNHEV" : { + "sku" : "KE8V44XRQ8CWNHEV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "1 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.2xlarge", + "operation" : "RunInstances:0010", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FMGXVRPJP5ZBNB2U" : { + "sku" : "FMGXVRPJP5ZBNB2U", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "244 GiB", + "storage" : "24 x 2000 HDD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:d2.8xlarge", + "operation" : "RunInstances", + "ecu" : "116", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ASB6HFGHT3SUVED9" : { + "sku" : "ASB6HFGHT3SUVED9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "60 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.8xlarge", + "operation" : "RunInstances:000g", + "ecu" : "108", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "385ZWS8QDHMYGMFJ" : { + "sku" : "385ZWS8QDHMYGMFJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "60 GiB", + "storage" : "2 x 120 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:g2.8xlarge", + "operation" : "RunInstances:0800", + "ecu" : "104", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "W7AKAG7V86UE38RF" : { + "sku" : "W7AKAG7V86UE38RF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "60 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.8xlarge", + "operation" : "RunInstances:0202", + "ecu" : "108", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3JTKQKQVWWVVZF93" : { + "sku" : "3JTKQKQVWWVVZF93", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7H3YAVFCE5P4TFBT" : { + "sku" : "7H3YAVFCE5P4TFBT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.18xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "72", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "144 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.18xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "9000 Mbps", + "ecu" : "278", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "144", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PYM3KA9YWBXZT4WT" : { + "sku" : "PYM3KA9YWBXZT4WT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "1 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.2xlarge", + "operation" : "RunInstances:000g", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MTH9HCPYR8DT5RJ2" : { + "sku" : "MTH9HCPYR8DT5RJ2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "7.5 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.xlarge", + "operation" : "RunInstances:0002", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "W58JQDZKEMS87E3Y" : { + "sku" : "W58JQDZKEMS87E3Y", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "3,904 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.32xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "340", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PYHA3PVTP85MS7AS" : { + "sku" : "PYHA3PVTP85MS7AS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.large", + "operation" : "RunInstances:0102", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5WWYB7MN3STCHEGY" : { + "sku" : "5WWYB7MN3STCHEGY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.4xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "3000 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MJJTVPTXAH26VK8A" : { + "sku" : "MJJTVPTXAH26VK8A", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "3.75 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:c4.large", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "85VBBX5K6EY4TRRG" : { + "sku" : "85VBBX5K6EY4TRRG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 80 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.xlarge", + "operation" : "RunInstances:0006", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UFN38GHQREY7C7SB" : { + "sku" : "UFN38GHQREY7C7SB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:p2.8xlarge", + "operation" : "RunInstances:0010", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "R9EGFXUGURH2UNA2" : { + "sku" : "R9EGFXUGURH2UNA2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "15 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.2xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "P2X2N5M2PU9A9XS4" : { + "sku" : "P2X2N5M2PU9A9XS4", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "30.5 GiB", + "storage" : "3 x 2000 HDD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:d2.xlarge", + "operation" : "RunInstances:0010", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZQ8ZP9Y9DGFD6M45" : { + "sku" : "ZQ8ZP9Y9DGFD6M45", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.2xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YHVCZK7UAVDZMX92" : { + "sku" : "YHVCZK7UAVDZMX92", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cc2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670", + "clockSpeed" : "2.6 GHz", + "memory" : "60.5 GiB", + "storage" : "4 x 840", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:cc2.8xlarge", + "operation" : "RunInstances:0006", + "ecu" : "88", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Std", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NA5BT4DMBGMMK5MT" : { + "sku" : "NA5BT4DMBGMMK5MT", + "productFamily" : "IP Address", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "group" : "ElasticIP:AdditionalAddress", + "groupDescription" : "Additional Elastic IP address attached to a running instance", + "usagetype" : "ElasticIP:AdditionalAddress", + "operation" : "", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "8CXE6S2Y9CVQRTRQ" : { + "sku" : "8CXE6S2Y9CVQRTRQ", + "productFamily" : "Dedicated Host", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "NA", + "storage" : "NA", + "networkPerformance" : "NA", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostUsage:m3", + "operation" : "RunInstances", + "ecu" : "NA", + "instanceCapacity2xlarge" : "4", + "instanceCapacityLarge" : "16", + "instanceCapacityMedium" : "32", + "instanceCapacityXlarge" : "8", + "normalizationSizeFactor" : "NA", + "physicalCores" : "20", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AD2QCCRBSPBJMXXV" : { + "sku" : "AD2QCCRBSPBJMXXV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.small", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "1.7 GiB", + "storage" : "1 x 160", + "networkPerformance" : "Low", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage", + "operation" : "RunInstances:0800", + "ecu" : "Variable", + "normalizationSizeFactor" : "1", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "U69YCUGUWRE45CVF" : { + "sku" : "U69YCUGUWRE45CVF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "15 GiB", + "storage" : "1 x 60 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:g2.2xlarge", + "operation" : "RunInstances", + "ecu" : "26", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TCSVX6EBPRF578KP" : { + "sku" : "TCSVX6EBPRF578KP", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "1 x 240", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.2xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "23", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "84EGZ3JUNG2TSSNT" : { + "sku" : "84EGZ3JUNG2TSSNT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.16xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "12000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Z8YWRZHR75GJ2KSV" : { + "sku" : "Z8YWRZHR75GJ2KSV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cg1.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "GPU instance", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon x5570", + "memory" : "22.5 GiB", + "storage" : "2 x 840", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:cg1.4xlarge", + "operation" : "RunInstances:0006", + "ecu" : "33.5", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "V6W3V2B2AEWTCSUG" : { + "sku" : "V6W3V2B2AEWTCSUG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2YVYS3RPY25EY4XR" : { + "sku" : "2YVYS3RPY25EY4XR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.10xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "40", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "160 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.10xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "80", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5KPPP37EUJ6SDK38" : { + "sku" : "5KPPP37EUJ6SDK38", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.2xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YZU87WTY449E2C2T" : { + "sku" : "YZU87WTY449E2C2T", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.9xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "72 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:c5.9xlarge", + "operation" : "Hourly", + "dedicatedEbsThroughput" : "4500 Mbps", + "ecu" : "139", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "72", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JWPZDXTPDMBACQS9" : { + "sku" : "JWPZDXTPDMBACQS9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "7.5 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.xlarge", + "operation" : "RunInstances", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2G7QY8K5DB7ZC8PD" : { + "sku" : "2G7QY8K5DB7ZC8PD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "64 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.4xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "53.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VJ2DAWV6S9PPWZZA" : { + "sku" : "VJ2DAWV6S9PPWZZA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "15 GiB", + "storage" : "1 x 60 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:g2.2xlarge", + "operation" : "RunInstances:0006", + "ecu" : "26", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CDV3MB4FK98PAYP9" : { + "sku" : "CDV3MB4FK98PAYP9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "15 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.2xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5CS4EJVK2TSXGHNX" : { + "sku" : "5CS4EJVK2TSXGHNX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1.32xlarge", + "operation" : "RunInstances:0010", + "ecu" : "349", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MC5VZN6RJJJRB2CW" : { + "sku" : "MC5VZN6RJJJRB2CW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cc2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670", + "clockSpeed" : "2.6 GHz", + "memory" : "60.5 GiB", + "storage" : "4 x 840", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:cc2.8xlarge", + "operation" : "RunInstances:000g", + "ecu" : "88", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "H7FHBN6ZTC6EJQ2N" : { + "sku" : "H7FHBN6ZTC6EJQ2N", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "4 x 1.9 NVMe SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.8xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PYCJPPPYA7FXP2KM" : { + "sku" : "PYCJPPPYA7FXP2KM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:m4.large", + "operation" : "Hourly", + "dedicatedEbsThroughput" : "450 Mbps", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QMCSUNX7MQVY9UVN" : { + "sku" : "QMCSUNX7MQVY9UVN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.large", + "operation" : "RunInstances:0002", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3GCSD3HHQWFGV39C" : { + "sku" : "3GCSD3HHQWFGV39C", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c1.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "7 GiB", + "storage" : "4 x 420", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c1.xlarge", + "operation" : "RunInstances:0010", + "ecu" : "20", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CTWGRH5ACPDTJT2H" : { + "sku" : "CTWGRH5ACPDTJT2H", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.18xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "72", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "144 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:c5.18xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "9000 Mbps", + "ecu" : "278", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "144", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2MS9BQ29TD8ZPX2B" : { + "sku" : "2MS9BQ29TD8ZPX2B", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "3,904 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.32xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "340", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ABGVRF96RZJ9FHTF" : { + "sku" : "ABGVRF96RZJ9FHTF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "15 GiB", + "storage" : "1 x 60 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:g2.2xlarge", + "operation" : "RunInstances:0202", + "ecu" : "26", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QSAWD9QW3658YB28" : { + "sku" : "QSAWD9QW3658YB28", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:p2.8xlarge", + "operation" : "RunInstances:0800", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "232CDFDW89ENUXRB" : { + "sku" : "232CDFDW89ENUXRB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "244 GiB", + "storage" : "24 x 2000 HDD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:d2.8xlarge", + "operation" : "RunInstances", + "ecu" : "116", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TJCB42XUUBBP8KKF" : { + "sku" : "TJCB42XUUBBP8KKF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.16xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "12000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4XQSHVJTBAK4RP7T" : { + "sku" : "4XQSHVJTBAK4RP7T", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:m4.2xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4TE6EMDQEPCBNFAE" : { + "sku" : "4TE6EMDQEPCBNFAE", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "4 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i2.4xlarge", + "operation" : "RunInstances:0010", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UG8JKJZ5R9J4CW2Z" : { + "sku" : "UG8JKJZ5R9J4CW2Z", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "256 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:m4.16xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "10000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9NJKDTFRDQH4YFJ6" : { + "sku" : "9NJKDTFRDQH4YFJ6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:g3.16xlarge", + "operation" : "Hourly", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "4", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4WH4EK5RUS7PPQCA" : { + "sku" : "4WH4EK5RUS7PPQCA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SZQV42HNDR8AXTGV" : { + "sku" : "SZQV42HNDR8AXTGV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.10xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "40", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "160 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.10xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "80", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "W4HNTDUW2525QNYX" : { + "sku" : "W4HNTDUW2525QNYX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.9xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "72 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:c5.9xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "4500 Mbps", + "ecu" : "139", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "72", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7DUQ3HEEEBV8YX9T" : { + "sku" : "7DUQ3HEEEBV8YX9T", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:r3.large", + "operation" : "RunInstances:0800", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7VB9795V9MTDDCBF" : { + "sku" : "7VB9795V9MTDDCBF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "3.75 GiB", + "storage" : "2 x 16 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.large", + "operation" : "RunInstances:0102", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "X4RWGEB2DKQGCWC2" : { + "sku" : "X4RWGEB2DKQGCWC2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c1.medium", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "1.7 GiB", + "storage" : "1 x 350", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c1.medium", + "operation" : "RunInstances", + "ecu" : "2", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XDBQD4Z97Q72N97A" : { + "sku" : "XDBQD4Z97Q72N97A", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "3,904 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.32xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "340", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Z6NT2VUPAUJTCBJV" : { + "sku" : "Z6NT2VUPAUJTCBJV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "60 GiB", + "storage" : "2 x 120 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:g2.8xlarge", + "operation" : "RunInstances:0202", + "ecu" : "104", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YRY7U9ETRK6GWQEU" : { + "sku" : "YRY7U9ETRK6GWQEU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "7.5 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m3.large", + "operation" : "RunInstances:0006", + "ecu" : "6.5", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BKJP7BSW4MHQHNVV" : { + "sku" : "BKJP7BSW4MHQHNVV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9RBZ58Y8EJXERRGT" : { + "sku" : "9RBZ58Y8EJXERRGT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 80 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.xlarge", + "operation" : "RunInstances:0202", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4C2WZDUPRUA5S7YC" : { + "sku" : "4C2WZDUPRUA5S7YC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.8xlarge", + "operation" : "RunInstances:000g", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "R8DGVR4A52UQ7VP6" : { + "sku" : "R8DGVR4A52UQ7VP6", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Inbound", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "South America (Sao Paulo)", + "toLocationType" : "AWS Region", + "usagetype" : "USE1-SAE1-AWS-In-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "TTPHQSRWDV7SEYMT" : { + "sku" : "TTPHQSRWDV7SEYMT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 800 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:i2.xlarge", + "operation" : "RunInstances:0800", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VNT94W34YSHKDST8" : { + "sku" : "VNT94W34YSHKDST8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:p3.16xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CNBDW56G9K7XSBK4" : { + "sku" : "CNBDW56G9K7XSBK4", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "7.5 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.xlarge", + "operation" : "RunInstances:0102", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "D3DQYQJXGDG9DV7G" : { + "sku" : "D3DQYQJXGDG9DV7G", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "2 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i2.2xlarge", + "operation" : "RunInstances:0002", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3X4XPPD8AEXYQCJ7" : { + "sku" : "3X4XPPD8AEXYQCJ7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.2xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "68JXBV5UF5AMUV4X" : { + "sku" : "68JXBV5UF5AMUV4X", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 960", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.8xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "91", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6TEX73KEE94WMEED" : { + "sku" : "6TEX73KEE94WMEED", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c1.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "7 GiB", + "storage" : "4 x 420", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c1.xlarge", + "operation" : "RunInstances", + "ecu" : "20", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QBZMZDA3WBTDVYJ7" : { + "sku" : "QBZMZDA3WBTDVYJ7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "2 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i2.2xlarge", + "operation" : "RunInstances:0202", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MRRD2QZTJZU8NEUN" : { + "sku" : "MRRD2QZTJZU8NEUN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "4 x 1.9 NVMe SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.8xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4WQD6GEAM4NRC7U3" : { + "sku" : "4WQD6GEAM4NRC7U3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.medium", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "3.75 GiB", + "storage" : "1 x 410", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m1.medium", + "operation" : "RunInstances", + "ecu" : "2", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4GRDB56V2W7EVFSU" : { + "sku" : "4GRDB56V2W7EVFSU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:g3.16xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "4", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6AUAERFUWRVM7MMK" : { + "sku" : "6AUAERFUWRVM7MMK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:p3.2xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JUW4W8N3V4M8BP4F" : { + "sku" : "JUW4W8N3V4M8BP4F", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:p3.8xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2BCVUC7VFQV76XRN" : { + "sku" : "2BCVUC7VFQV76XRN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "30.5 GiB", + "storage" : "3 x 2000 HDD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:d2.xlarge", + "operation" : "RunInstances:0006", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3P9SFGQNFGEFVPCX" : { + "sku" : "3P9SFGQNFGEFVPCX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.0 GHz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Low to Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.large", + "operation" : "RunInstances:000g", + "ecu" : "Variable", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3PNERBF8KG8M4GQ2" : { + "sku" : "3PNERBF8KG8M4GQ2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "1 x 320 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:r3.4xlarge", + "operation" : "RunInstances:0800", + "ecu" : "52", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QYDN54PY6Q429VJA" : { + "sku" : "QYDN54PY6Q429VJA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "2 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i2.2xlarge", + "operation" : "RunInstances:000g", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AGHHWVT6KDRBWTWP" : { + "sku" : "AGHHWVT6KDRBWTWP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.nano", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.3 GHz", + "memory" : "0.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "Low", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.nano", + "operation" : "RunInstances", + "ecu" : "Variable", + "normalizationSizeFactor" : "0.25", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "N9VCZ7667JZZWNF5" : { + "sku" : "N9VCZ7667JZZWNF5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "4 x 1.9 NVMe SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:i3.8xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "M5Q2FGMPJ4Q6PA2G" : { + "sku" : "M5Q2FGMPJ4Q6PA2G", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1.16xlarge", + "operation" : "RunInstances:0010", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UEMM3EBWG9B8QGPK" : { + "sku" : "UEMM3EBWG9B8QGPK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.10xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "40", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "160 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.10xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "80", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BGU9UG7QCNNGBKAB" : { + "sku" : "BGU9UG7QCNNGBKAB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:p2.xlarge", + "operation" : "RunInstances:0002", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YGC2QHNNR7NU4B88" : { + "sku" : "YGC2QHNNR7NU4B88", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "f1.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "memory" : "976 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:f1.16xlarge", + "operation" : "RunInstances", + "ecu" : "188", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QQMYSYW64K9VEPF5" : { + "sku" : "QQMYSYW64K9VEPF5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:x1.16xlarge", + "operation" : "RunInstances:0800", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "88VG68PMGN3M4ZEY" : { + "sku" : "88VG68PMGN3M4ZEY", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.16xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "179", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "G7T27N57ERE3PVRC" : { + "sku" : "G7T27N57ERE3PVRC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "15 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.2xlarge", + "operation" : "RunInstances:0002", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2TWQMPVA6E2FTADF" : { + "sku" : "2TWQMPVA6E2FTADF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:m4.2xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HPSQPPJ249MHQR6A" : { + "sku" : "HPSQPPJ249MHQR6A", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "1 x 480", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.4xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "47", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Q8V833FWUY52YX8W" : { + "sku" : "Q8V833FWUY52YX8W", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "3.75 GiB", + "storage" : "2 x 16 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.large", + "operation" : "RunInstances:0202", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HBN8KMXQ2AA8Z2EV" : { + "sku" : "HBN8KMXQ2AA8Z2EV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.small", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "1.7 GiB", + "storage" : "1 x 160", + "networkPerformance" : "Low", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage", + "operation" : "RunInstances:0800", + "ecu" : "Variable", + "normalizationSizeFactor" : "1", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GSWT4ZQ4JNMRW7YU" : { + "sku" : "GSWT4ZQ4JNMRW7YU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:p3.8xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "N2ZR79PK3EYG8Y2Q" : { + "sku" : "N2ZR79PK3EYG8Y2Q", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 800 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:i2.xlarge", + "operation" : "RunInstances:0800", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "V7SRDNUCBKDMKD3M" : { + "sku" : "V7SRDNUCBKDMKD3M", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "2 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i2.2xlarge", + "operation" : "RunInstances", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "8GM5MHF25FH6C87J" : { + "sku" : "8GM5MHF25FH6C87J", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c1.medium", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "1.7 GiB", + "storage" : "1 x 350", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:c1.medium", + "operation" : "RunInstances:0800", + "ecu" : "2", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "U5PMX34FM7A6Y7VW" : { + "sku" : "U5PMX34FM7A6Y7VW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m3.xlarge", + "operation" : "RunInstances:0102", + "ecu" : "13", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XXD6BKTUGGN2547V" : { + "sku" : "XXD6BKTUGGN2547V", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "1 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:r3.2xlarge", + "operation" : "RunInstances:0800", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7BNV89HT66ESXJZR" : { + "sku" : "7BNV89HT66ESXJZR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 0.95 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "850 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "F2Q73ZKZWDKZ25TB" : { + "sku" : "F2Q73ZKZWDKZ25TB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "7.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "P4NKH8TTQ4BBNRDQ" : { + "sku" : "P4NKH8TTQ4BBNRDQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:m3.xlarge", + "operation" : "RunInstances:0800", + "ecu" : "13", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Z53PYBHU83UZWMXA" : { + "sku" : "Z53PYBHU83UZWMXA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "3.75 GiB", + "storage" : "2 x 16 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:c3.large", + "operation" : "RunInstances:0800", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6A98KYSNMAGXRPPR" : { + "sku" : "6A98KYSNMAGXRPPR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "15 GiB", + "storage" : "4 x 420", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m1.xlarge", + "operation" : "RunInstances:0006", + "ecu" : "8", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AZGXC7HPDQNS3725" : { + "sku" : "AZGXC7HPDQNS3725", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "Accelerated InterRegion Inbound from close by location", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "US West (Oregon)", + "toLocationType" : "AWS Region", + "usagetype" : "USE1-USW2-AWS-In-ABytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "8VCNEHQMSCQS4P39" : { + "sku" : "8VCNEHQMSCQS4P39", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.large", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "450 Mbps", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9YVNCN8XCQ7NAPYJ" : { + "sku" : "9YVNCN8XCQ7NAPYJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:m4.2xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XK8PATGXFTCH3726" : { + "sku" : "XK8PATGXFTCH3726", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "60 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.8xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "132", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JTHCG93HEJ7CXDPB" : { + "sku" : "JTHCG93HEJ7CXDPB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 800 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:i2.xlarge", + "operation" : "RunInstances:0800", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PHZYKS4DKKZQTHE2" : { + "sku" : "PHZYKS4DKKZQTHE2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:p2.8xlarge", + "operation" : "RunInstances", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9HPUN6CF83QX5EC3" : { + "sku" : "9HPUN6CF83QX5EC3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "15 GiB", + "storage" : "4 x 420", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m1.xlarge", + "operation" : "RunInstances:0006", + "ecu" : "8", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "49KSPMGA5DCV6VC6" : { + "sku" : "49KSPMGA5DCV6VC6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.4xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PG7N32NDHXVN79SC" : { + "sku" : "PG7N32NDHXVN79SC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "3,904 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.32xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "340", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "48VURD6MVAZ3M5JX" : { + "sku" : "48VURD6MVAZ3M5JX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "15 GiB", + "storage" : "1 x 60 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:g2.2xlarge", + "operation" : "RunInstances", + "ecu" : "26", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MNCVCF2WMXJ3B7FB" : { + "sku" : "MNCVCF2WMXJ3B7FB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 0.475 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:i3.large", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "425 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VCP5S8DX28AZ8RR2" : { + "sku" : "VCP5S8DX28AZ8RR2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "64 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.4xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "53.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ES3XAJX5E6SRUWY5" : { + "sku" : "ES3XAJX5E6SRUWY5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "3.75 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.large", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZC3Y45SUG7K4RB8W" : { + "sku" : "ZC3Y45SUG7K4RB8W", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c1.medium", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "1.7 GiB", + "storage" : "1 x 350", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c1.medium", + "operation" : "RunInstances:0002", + "ecu" : "2", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Y9WDY7HG6S2NXFSP" : { + "sku" : "Y9WDY7HG6S2NXFSP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "1 x 320 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.4xlarge", + "operation" : "RunInstances:0010", + "ecu" : "52", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YAPU23CHKA23RRR7" : { + "sku" : "YAPU23CHKA23RRR7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HZC9FAP4F9Y8JW67" : { + "sku" : "HZC9FAP4F9Y8JW67", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.micro", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.3 GHz", + "memory" : "1 GiB", + "storage" : "EBS only", + "networkPerformance" : "Low to Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.micro", + "operation" : "RunInstances", + "ecu" : "Variable", + "normalizationSizeFactor" : "0.5", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QWZW5Y8P4TX97TGS" : { + "sku" : "QWZW5Y8P4TX97TGS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "2 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.4xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "V8EJ2P6F3B8BQ4JZ" : { + "sku" : "V8EJ2P6F3B8BQ4JZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.4xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "3000 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZCJNXF2AJ56TTBVX" : { + "sku" : "ZCJNXF2AJ56TTBVX", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Outbound", + "fromLocation" : "AWS GovCloud (US)", + "fromLocationType" : "AWS Region", + "toLocation" : "US East (N. Virginia)", + "toLocationType" : "AWS Region", + "usagetype" : "UGW1-USE1-AWS-Out-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "Y39GSVXFDVZTA5NW" : { + "sku" : "Y39GSVXFDVZTA5NW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "30 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.4xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EN85M9PMPVGK77TA" : { + "sku" : "EN85M9PMPVGK77TA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "f1.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "memory" : "976 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:f1.16xlarge", + "operation" : "RunInstances", + "ecu" : "188", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FB2SHXY4CT6MW3FX" : { + "sku" : "FB2SHXY4CT6MW3FX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "122 GiB", + "storage" : "12 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:d2.4xlarge", + "operation" : "RunInstances:0002", + "ecu" : "56", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "68SDFG84HR8PCZY5" : { + "sku" : "68SDFG84HR8PCZY5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "4 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.large", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5NPY8GZN5BFUPMDZ" : { + "sku" : "5NPY8GZN5BFUPMDZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.medium", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "3.75 GiB", + "storage" : "1 x 4 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m3.medium", + "operation" : "RunInstances:0002", + "ecu" : "3", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "C6HNR92XQ2JU8MSN" : { + "sku" : "C6HNR92XQ2JU8MSN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "64 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:m4.4xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "53.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Z7AE49M8866J2GBA" : { + "sku" : "Z7AE49M8866J2GBA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "7.5 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.xlarge", + "operation" : "RunInstances:000g", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9WGNK9JK96GFCM3E" : { + "sku" : "9WGNK9JK96GFCM3E", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "122 GiB", + "storage" : "12 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:d2.4xlarge", + "operation" : "RunInstances:0010", + "ecu" : "56", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XDP9UAY59KP89W84" : { + "sku" : "XDP9UAY59KP89W84", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "30 GiB", + "storage" : "2 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.4xlarge", + "operation" : "RunInstances:0202", + "ecu" : "55", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CNQRJ2XRQ5WYZJQ3" : { + "sku" : "CNQRJ2XRQ5WYZJQ3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "1 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.2xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SKGAAJVJUYA4XN4J" : { + "sku" : "SKGAAJVJUYA4XN4J", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.18xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "72", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "144 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.18xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "9000 Mbps", + "ecu" : "278", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "144", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "J5F97VTUKDBTW8X5" : { + "sku" : "J5F97VTUKDBTW8X5", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Outbound", + "fromLocation" : "EU (London)", + "fromLocationType" : "AWS Region", + "toLocation" : "US East (N. Virginia)", + "toLocationType" : "AWS Region", + "usagetype" : "EUW2-USE1-AWS-Out-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "VRV65GYV3GNQWB7Z" : { + "sku" : "VRV65GYV3GNQWB7Z", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "15 GiB", + "storage" : "1 x 60 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:g2.2xlarge", + "operation" : "RunInstances:0800", + "ecu" : "26", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QYS4PZ8A9Q32ZPH2" : { + "sku" : "QYS4PZ8A9Q32ZPH2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:p3.8xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "69JW6QZ8TVS6R46R" : { + "sku" : "69JW6QZ8TVS6R46R", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 800 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "ebsOptimized" : "Yes", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:i2.xlarge", + "operation" : "Hourly", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7UNGQGFQFJTYCG4P" : { + "sku" : "7UNGQGFQFJTYCG4P", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:p3.16xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NW2F7XVYDCTPPGMJ" : { + "sku" : "NW2F7XVYDCTPPGMJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9MR4BWBNYFE4GCC3" : { + "sku" : "9MR4BWBNYFE4GCC3", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.16xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "179", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MW3YR4CA9XQU7PMV" : { + "sku" : "MW3YR4CA9XQU7PMV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cg1.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "GPU instance", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon x5570", + "memory" : "22.5 GiB", + "storage" : "2 x 840", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:cg1.4xlarge", + "operation" : "RunInstances:0002", + "ecu" : "33.5", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FPSSRYYG22AJKWQT" : { + "sku" : "FPSSRYYG22AJKWQT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 800 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i2.xlarge", + "operation" : "RunInstances:0202", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Q3B3QHUSMA9FRZZH" : { + "sku" : "Q3B3QHUSMA9FRZZH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "60 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:c4.8xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "132", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TAAVXTAR4D2NPUA8" : { + "sku" : "TAAVXTAR4D2NPUA8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "244 GiB", + "storage" : "24 x 2000 HDD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:d2.8xlarge", + "operation" : "RunInstances:0010", + "ecu" : "116", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "S96SK9E6DW5X9ZCD" : { + "sku" : "S96SK9E6DW5X9ZCD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 800 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i2.xlarge", + "operation" : "RunInstances:000g", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SV6J8GK44ZN2FKNF" : { + "sku" : "SV6J8GK44ZN2FKNF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.10xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "40", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "160 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.10xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "80", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SE6PJRHUA462KM9T" : { + "sku" : "SE6PJRHUA462KM9T", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "f1.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "memory" : "976 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:f1.16xlarge", + "operation" : "RunInstances:000g", + "ecu" : "188", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BWKDS9539ZWVQSVQ" : { + "sku" : "BWKDS9539ZWVQSVQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "4 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.large", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DUH49BWDXYJZKX4Z" : { + "sku" : "DUH49BWDXYJZKX4Z", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "122 GiB", + "storage" : "12 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:d2.4xlarge", + "operation" : "RunInstances:0800", + "ecu" : "56", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BW6AXJST7E7P4GBA" : { + "sku" : "BW6AXJST7E7P4GBA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:p3.8xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RHSXCZ3G6S7CMC36" : { + "sku" : "RHSXCZ3G6S7CMC36", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "7.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "V8DBBCPMYRSW3JJY" : { + "sku" : "V8DBBCPMYRSW3JJY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "1 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:r3.2xlarge", + "operation" : "RunInstances:0800", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TUZ66NQWUUE3DQ3K" : { + "sku" : "TUZ66NQWUUE3DQ3K", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "1 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "ebsOptimized" : "Yes", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:r3.2xlarge", + "operation" : "Hourly", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SURRSGSBEXVRX9RJ" : { + "sku" : "SURRSGSBEXVRX9RJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c1.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "7 GiB", + "storage" : "4 x 420", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "ebsOptimized" : "Yes", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:c1.xlarge", + "operation" : "Hourly", + "ecu" : "20", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4NZYXM2TKNFUFMFP" : { + "sku" : "4NZYXM2TKNFUFMFP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "15 GiB", + "storage" : "4 x 420", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:m1.xlarge", + "operation" : "RunInstances:0800", + "ecu" : "8", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YYT7SGG9WN5TE2P3" : { + "sku" : "YYT7SGG9WN5TE2P3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "30.5 GiB", + "storage" : "3 x 2000 HDD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:d2.xlarge", + "operation" : "RunInstances:0102", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DJZE39FJBRGB2JNH" : { + "sku" : "DJZE39FJBRGB2JNH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "30 GiB", + "storage" : "2 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.4xlarge", + "operation" : "RunInstances:0006", + "ecu" : "55", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ERPWM7KEFVQABEK6" : { + "sku" : "ERPWM7KEFVQABEK6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m3.xlarge", + "operation" : "RunInstances:0006", + "ecu" : "13", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7TCPFRQ8URKENK6F" : { + "sku" : "7TCPFRQ8URKENK6F", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.10xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "40", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "160 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:m4.10xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "80", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KAH9XCCP3F226R57" : { + "sku" : "KAH9XCCP3F226R57", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "34.2 GiB", + "storage" : "1 x 850", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m2.2xlarge", + "operation" : "RunInstances:000g", + "ecu" : "13", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6Z2HWHRBW2ZH7Z33" : { + "sku" : "6Z2HWHRBW2ZH7Z33", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 0.95 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "850 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6CB4U9QPSBPWD3PM" : { + "sku" : "6CB4U9QPSBPWD3PM", + "productFamily" : "Dedicated Host", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "NA", + "storage" : "NA", + "networkPerformance" : "NA", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostUsage:x1", + "operation" : "RunInstances", + "ecu" : "NA", + "instanceCapacity16xlarge" : "2", + "instanceCapacity32xlarge" : "1", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "NA", + "physicalCores" : "72", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4W9WDFJ5DZZ4Z4EJ" : { + "sku" : "4W9WDFJ5DZZ4Z4EJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "15 GiB", + "storage" : "1 x 60 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:g2.2xlarge", + "operation" : "RunInstances", + "ecu" : "26", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TDQNZBUHCYXTFDUS" : { + "sku" : "TDQNZBUHCYXTFDUS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m3.xlarge", + "operation" : "RunInstances:0010", + "ecu" : "13", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "WVXEZZPK3N9SFW9H" : { + "sku" : "WVXEZZPK3N9SFW9H", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 960", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.8xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "91", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "X7H5W7828HGJJPVY" : { + "sku" : "X7H5W7828HGJJPVY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "2 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.4xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3753VU7A9Z8KFJ3N" : { + "sku" : "3753VU7A9Z8KFJ3N", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 960", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.8xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "91", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9W95WEA2F9V4BVUJ" : { + "sku" : "9W95WEA2F9V4BVUJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:m4.xlarge", + "operation" : "Hourly", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JXT6YFU3KSU3C7ZV" : { + "sku" : "JXT6YFU3KSU3C7ZV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "3.75 GiB", + "storage" : "2 x 16 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.large", + "operation" : "RunInstances:0006", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EE7BATB9AU6WJQPT" : { + "sku" : "EE7BATB9AU6WJQPT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "256 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.16xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "10000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "864JFB48Z5WZN64X" : { + "sku" : "864JFB48Z5WZN64X", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 0.95 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "850 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9X8YQSJK3UTFW3TV" : { + "sku" : "9X8YQSJK3UTFW3TV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1.16xlarge", + "operation" : "RunInstances:0002", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RJJNTY6VUT5R56NM" : { + "sku" : "RJJNTY6VUT5R56NM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:p2.8xlarge", + "operation" : "Hourly", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NWNWWPNWF6HRM3M4" : { + "sku" : "NWNWWPNWF6HRM3M4", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.2xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SWJUJ3JPRMDJSCZU" : { + "sku" : "SWJUJ3JPRMDJSCZU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "1 x 120", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "F3MDY4T6HP6MHSY3" : { + "sku" : "F3MDY4T6HP6MHSY3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 0.475 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.large", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "425 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RATRP8MVJ9EVX6N7" : { + "sku" : "RATRP8MVJ9EVX6N7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 800 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i2.xlarge", + "operation" : "RunInstances:0010", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "WAWEH2Q4B3BTK68V" : { + "sku" : "WAWEH2Q4B3BTK68V", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:p2.8xlarge", + "operation" : "RunInstances", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EW84HPN3QSBRVQGJ" : { + "sku" : "EW84HPN3QSBRVQGJ", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.16xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "179", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9E9PKC86XNNXZ5RW" : { + "sku" : "9E9PKC86XNNXZ5RW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.16xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "12000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "U2FYDQN5UB6DJ9P6" : { + "sku" : "U2FYDQN5UB6DJ9P6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 0.475 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.large", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "425 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "P3HMXPX59K45JP62" : { + "sku" : "P3HMXPX59K45JP62", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "4 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.large", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VTRGBHUJVPMPXVJ5" : { + "sku" : "VTRGBHUJVPMPXVJ5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.18xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "72", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "144 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.18xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "9000 Mbps", + "ecu" : "278", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "144", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6SKVNRGYNDNJMWQA" : { + "sku" : "6SKVNRGYNDNJMWQA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "15 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.2xlarge", + "operation" : "RunInstances:0002", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "E3GUDV3CG8QTVYVK" : { + "sku" : "E3GUDV3CG8QTVYVK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:g3.16xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "4", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HEF4JAUBGGF9GEHP" : { + "sku" : "HEF4JAUBGGF9GEHP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "244 GiB", + "storage" : "24 x 2000 HDD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:d2.8xlarge", + "operation" : "RunInstances:000g", + "ecu" : "116", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "8K8S8K92EHM2PHP6" : { + "sku" : "8K8S8K92EHM2PHP6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.2xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "1600 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "P2X5CCNUGDNQVXV2" : { + "sku" : "P2X5CCNUGDNQVXV2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "15 GiB", + "storage" : "1 x 60 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:g2.2xlarge", + "operation" : "RunInstances:0006", + "ecu" : "26", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GSQJMJPK4SFYF63H" : { + "sku" : "GSQJMJPK4SFYF63H", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Inbound", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "Asia Pacific (Sydney)", + "toLocationType" : "AWS Region", + "usagetype" : "USE1-APS2-AWS-In-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "XP5P8NMSB2W7KP3U" : { + "sku" : "XP5P8NMSB2W7KP3U", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "244 GiB", + "storage" : "24 x 2000 HDD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:d2.8xlarge", + "operation" : "RunInstances", + "ecu" : "116", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SMTQRSCDV7BY873H" : { + "sku" : "SMTQRSCDV7BY873H", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.9xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "72 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.9xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "4500 Mbps", + "ecu" : "139", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "72", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RQBBRPV8FS6G4KCZ" : { + "sku" : "RQBBRPV8FS6G4KCZ", + "productFamily" : "Dedicated Host", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "NA", + "storage" : "NA", + "networkPerformance" : "NA", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostUsage:x1e", + "operation" : "RunInstances", + "ecu" : "NA", + "instanceCapacity32xlarge" : "1", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "NA", + "physicalCores" : "72", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CPC4739JBDJJ92RZ" : { + "sku" : "CPC4739JBDJJ92RZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "60 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.8xlarge", + "operation" : "RunInstances", + "ecu" : "108", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5ESJGGVJ9BWYXAY9" : { + "sku" : "5ESJGGVJ9BWYXAY9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m3.xlarge", + "operation" : "RunInstances:0002", + "ecu" : "13", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9MSTVHD5FNUTQ99C" : { + "sku" : "9MSTVHD5FNUTQ99C", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:p3.8xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "C8282STGWSCNVJCC" : { + "sku" : "C8282STGWSCNVJCC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "60 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.8xlarge", + "operation" : "RunInstances:0002", + "ecu" : "108", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "H338WENZAK73BM3E" : { + "sku" : "H338WENZAK73BM3E", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "60 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.8xlarge", + "operation" : "RunInstances:0102", + "ecu" : "108", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "K2PF4AX5RJMVHBC9" : { + "sku" : "K2PF4AX5RJMVHBC9", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 960", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.8xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "91", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UY23MW6DPAKU4KJ9" : { + "sku" : "UY23MW6DPAKU4KJ9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.0 GHz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.2xlarge", + "operation" : "RunInstances:0002", + "ecu" : "Variable", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PFVG5HVRU3HK5C4R" : { + "sku" : "PFVG5HVRU3HK5C4R", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "3.75 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.large", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CB7SJGDA74NZ9PCE" : { + "sku" : "CB7SJGDA74NZ9PCE", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "1 x 240", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.2xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "23", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VEYRGRFZB8WFUBH3" : { + "sku" : "VEYRGRFZB8WFUBH3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.4xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UYBNK9BE67UCKSSW" : { + "sku" : "UYBNK9BE67UCKSSW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "60 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:c4.8xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "132", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "M62BQXUWYDM97G4U" : { + "sku" : "M62BQXUWYDM97G4U", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.4xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "3000 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "C3J6CAXEXRG66B2Y" : { + "sku" : "C3J6CAXEXRG66B2Y", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Inbound", + "fromLocation" : "US West (N. California)", + "fromLocationType" : "AWS Region", + "toLocation" : "US East (N. Virginia)", + "toLocationType" : "AWS Region", + "usagetype" : "USW1-USE1-AWS-In-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "K86YRT3FMXX5Q76Y" : { + "sku" : "K86YRT3FMXX5Q76Y", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "1 x 480", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.4xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "47", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CHDYF9BYGFSAHSRK" : { + "sku" : "CHDYF9BYGFSAHSRK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 0.95 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "850 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "K8NM7HNBAX7T4N5U" : { + "sku" : "K8NM7HNBAX7T4N5U", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "60 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.8xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "132", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YDP6AWC4ZPX5AANZ" : { + "sku" : "YDP6AWC4ZPX5AANZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "61 GiB", + "storage" : "6 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:d2.2xlarge", + "operation" : "RunInstances:000g", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EFFHYDTSJGNSYAVJ" : { + "sku" : "EFFHYDTSJGNSYAVJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.medium", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "3.75 GiB", + "storage" : "1 x 4 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m3.medium", + "operation" : "RunInstances:000g", + "ecu" : "3", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5YBKCYT5H6J77KYT" : { + "sku" : "5YBKCYT5H6J77KYT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "15 GiB", + "storage" : "4 x 420", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m1.xlarge", + "operation" : "RunInstances:0202", + "ecu" : "8", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4QN7HTACSM3CFNUX" : { + "sku" : "4QN7HTACSM3CFNUX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:p2.xlarge", + "operation" : "RunInstances:0800", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "N6734AQ5CQHVEMES" : { + "sku" : "N6734AQ5CQHVEMES", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "30 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:c4.4xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YT5JTCAUXT587YW7" : { + "sku" : "YT5JTCAUXT587YW7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "7.5 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m3.large", + "operation" : "RunInstances:0010", + "ecu" : "6.5", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RCQDAE4337AGCJV8" : { + "sku" : "RCQDAE4337AGCJV8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:p2.8xlarge", + "operation" : "RunInstances:000g", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "86FEVXHAJVJ75D5R" : { + "sku" : "86FEVXHAJVJ75D5R", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "15 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.2xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3KAFWJNHJ6VKA77T" : { + "sku" : "3KAFWJNHJ6VKA77T", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.2xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5C78VXN9F5U4WPSN" : { + "sku" : "5C78VXN9F5U4WPSN", + "productFamily" : "IP Address", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "group" : "ElasticIP:Address", + "groupDescription" : "Elastic IP address attached to a running instance", + "usagetype" : "ElasticIP:IdleAddress", + "operation" : "", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SR2X29MBY6K3S2UM" : { + "sku" : "SR2X29MBY6K3S2UM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "800 Mbps", + "ecu" : "Variable", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VENWXFAH6ZT534EX" : { + "sku" : "VENWXFAH6ZT534EX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "30 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:c4.4xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VNV2TU2Q7ZCZ374Z" : { + "sku" : "VNV2TU2Q7ZCZ374Z", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "7.5 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m3.large", + "operation" : "RunInstances:0010", + "ecu" : "6.5", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YMKYAYKBFT6QURTQ" : { + "sku" : "YMKYAYKBFT6QURTQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "60 GiB", + "storage" : "2 x 120 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:g2.8xlarge", + "operation" : "RunInstances:000g", + "ecu" : "104", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DEEJRV3WVFPZTXRD" : { + "sku" : "DEEJRV3WVFPZTXRD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:m4.xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QT2HSTX3NZ4XCM9E" : { + "sku" : "QT2HSTX3NZ4XCM9E", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.large", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "450 Mbps", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6S9GKQW48P8VUTJ9" : { + "sku" : "6S9GKQW48P8VUTJ9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:p2.8xlarge", + "operation" : "RunInstances:0002", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "X54X2EBSMKMH8KGR" : { + "sku" : "X54X2EBSMKMH8KGR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "60 GiB", + "storage" : "2 x 120 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:g2.8xlarge", + "operation" : "RunInstances:0010", + "ecu" : "104", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FJ3G5WT7J4G7GT23" : { + "sku" : "FJ3G5WT7J4G7GT23", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cr1.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670", + "memory" : "244 GiB", + "storage" : "2 x 120 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:cr1.8xlarge", + "operation" : "RunInstances:0202", + "ecu" : "88", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Web", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QF49GBEQA86P5DD3" : { + "sku" : "QF49GBEQA86P5DD3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "30 GiB", + "storage" : "2 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.4xlarge", + "operation" : "RunInstances:000g", + "ecu" : "55", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UC54XWQVHQPRYB9K" : { + "sku" : "UC54XWQVHQPRYB9K", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 960", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.8xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "91", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FAFFPMHQDMTENZE8" : { + "sku" : "FAFFPMHQDMTENZE8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TDU6B3KE7HWTXURF" : { + "sku" : "TDU6B3KE7HWTXURF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.medium", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "3.75 GiB", + "storage" : "1 x 4 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m3.medium", + "operation" : "RunInstances:0102", + "ecu" : "3", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SJ2H8X62JZ6P6N48" : { + "sku" : "SJ2H8X62JZ6P6N48", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "60 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.8xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "132", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DFZPYYVFYF45BSQ3" : { + "sku" : "DFZPYYVFYF45BSQ3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "4 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i2.4xlarge", + "operation" : "RunInstances:0202", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SQD4BVC5RS7DWN7S" : { + "sku" : "SQD4BVC5RS7DWN7S", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "768 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:p2.16xlarge", + "operation" : "RunInstances:0800", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "16", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "A9YZTVBT2EH2RHUW" : { + "sku" : "A9YZTVBT2EH2RHUW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "64 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:m4.4xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "53.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GY7YBGWY6UY9H8G3" : { + "sku" : "GY7YBGWY6UY9H8G3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.large", + "operation" : "RunInstances:0202", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FENJBKVQ4CNCQN3M" : { + "sku" : "FENJBKVQ4CNCQN3M", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.16xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "179", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YXVKN9CCKCPCSTST" : { + "sku" : "YXVKN9CCKCPCSTST", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "60 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.8xlarge", + "operation" : "RunInstances:0006", + "ecu" : "108", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "J7XM6UBQVT7UKF3T" : { + "sku" : "J7XM6UBQVT7UKF3T", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "7.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:c4.xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "U3KDJRF6FGANNG5Z" : { + "sku" : "U3KDJRF6FGANNG5Z", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.large", + "operation" : "RunInstances", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "725FHGTUB3P2B9EU" : { + "sku" : "725FHGTUB3P2B9EU", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Inbound", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "EU (Ireland)", + "toLocationType" : "AWS Region", + "usagetype" : "USE1-EU-AWS-In-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "FXKTTJ7YWYEXQKUG" : { + "sku" : "FXKTTJ7YWYEXQKUG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.8xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "6000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "A3CMMJ5XHG8YDXAU" : { + "sku" : "A3CMMJ5XHG8YDXAU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "1 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.2xlarge", + "operation" : "RunInstances:0002", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "87NE3BBF7KA8H7NM" : { + "sku" : "87NE3BBF7KA8H7NM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "3.75 GiB", + "storage" : "2 x 16 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.large", + "operation" : "RunInstances:0010", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EU9WUWRRH3Z8Z25B" : { + "sku" : "EU9WUWRRH3Z8Z25B", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "1 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.2xlarge", + "operation" : "RunInstances:0002", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YP54Q9FFYE6AUN7A" : { + "sku" : "YP54Q9FFYE6AUN7A", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.large", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "400 Mbps", + "ecu" : "135", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4CYRKREB7U8REQP5" : { + "sku" : "4CYRKREB7U8REQP5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "30.5 GiB", + "storage" : "3 x 2000 HDD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:d2.xlarge", + "operation" : "RunInstances:0102", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "WWYHV89KB5YJVTSF" : { + "sku" : "WWYHV89KB5YJVTSF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 0.475 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.large", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "425 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "979YHCUCHTSAM3HF" : { + "sku" : "979YHCUCHTSAM3HF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "8 x 800 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i2.8xlarge", + "operation" : "RunInstances:000g", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JVT9JXEVPBRUMA3N" : { + "sku" : "JVT9JXEVPBRUMA3N", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 0.475 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.large", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "425 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5R3VUZC6A5EED78S" : { + "sku" : "5R3VUZC6A5EED78S", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "1 x 120", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2ZE6H5B8N6EJTXEZ" : { + "sku" : "2ZE6H5B8N6EJTXEZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "61 GiB", + "storage" : "6 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:d2.2xlarge", + "operation" : "RunInstances:0800", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "T55J69CYMKUV3MQC" : { + "sku" : "T55J69CYMKUV3MQC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "1 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.2xlarge", + "operation" : "RunInstances:0002", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Z73XYJRRH5CMMR8R" : { + "sku" : "Z73XYJRRH5CMMR8R", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "7.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VMRHNZ3YYYGM22ZW" : { + "sku" : "VMRHNZ3YYYGM22ZW", + "productFamily" : "Dedicated Host", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "NA", + "storage" : "NA", + "networkPerformance" : "NA", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostUsage:g2", + "operation" : "RunInstances", + "ecu" : "NA", + "gpu" : "4", + "normalizationSizeFactor" : "NA", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YPB7U95RTVHKX59T" : { + "sku" : "YPB7U95RTVHKX59T", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "4 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.large", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZK49TH4Z5ZFFPMXJ" : { + "sku" : "ZK49TH4Z5ZFFPMXJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cg1.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "GPU instance", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon x5570", + "memory" : "22.5 GiB", + "storage" : "2 x 840", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:cg1.4xlarge", + "operation" : "RunInstances", + "ecu" : "33.5", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5TGRKMTBQMH42KUS" : { + "sku" : "5TGRKMTBQMH42KUS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "2 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.4xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "33PWMNWFU7HHUVCS" : { + "sku" : "33PWMNWFU7HHUVCS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "1 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.2xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YQXXJJ49N744B7HM" : { + "sku" : "YQXXJJ49N744B7HM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:p3.2xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AKXXTUNGEUFY2NYA" : { + "sku" : "AKXXTUNGEUFY2NYA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "15 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.2xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2Y6EVK4CR7GZUMHR" : { + "sku" : "2Y6EVK4CR7GZUMHR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "7.5 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m3.large", + "operation" : "RunInstances:0002", + "ecu" : "6.5", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SMTM4XWYH27FGA26" : { + "sku" : "SMTM4XWYH27FGA26", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "15 GiB", + "storage" : "1 x 60 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:g2.2xlarge", + "operation" : "RunInstances:0006", + "ecu" : "26", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JNYSB2CFFU532DFN" : { + "sku" : "JNYSB2CFFU532DFN", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Outbound", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "EU (London)", + "toLocationType" : "AWS Region", + "usagetype" : "USE1-EUW2-AWS-Out-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "JRFGUQ324DZG472D" : { + "sku" : "JRFGUQ324DZG472D", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "30 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.4xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7J6XFQYCHJDQXR63" : { + "sku" : "7J6XFQYCHJDQXR63", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:r3.8xlarge", + "operation" : "RunInstances:0800", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QNBV9PBG5RAKHKFW" : { + "sku" : "QNBV9PBG5RAKHKFW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "64 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.4xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "53.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6QCMSW96MRVU6K5U" : { + "sku" : "6QCMSW96MRVU6K5U", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:p2.xlarge", + "operation" : "Hourly", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "V6A93PBRF8JRMDU8" : { + "sku" : "V6A93PBRF8JRMDU8", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "1 x 240", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:x1e.2xlarge", + "operation" : "Hourly", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "23", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "J29VH4DHMCPGPWS6" : { + "sku" : "J29VH4DHMCPGPWS6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.8xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "6000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XVDMNM2WMYBYVW3T" : { + "sku" : "XVDMNM2WMYBYVW3T", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "768 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:p2.16xlarge", + "operation" : "RunInstances", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "16", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NKJ4NNEJMKDJ54KC" : { + "sku" : "NKJ4NNEJMKDJ54KC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "60 GiB", + "storage" : "2 x 120 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:g2.8xlarge", + "operation" : "RunInstances:000g", + "ecu" : "104", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VDQX9KJN5DYBTUQJ" : { + "sku" : "VDQX9KJN5DYBTUQJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.8xlarge", + "operation" : "RunInstances:0002", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EQGP4KYME9PWXUCS" : { + "sku" : "EQGP4KYME9PWXUCS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1.16xlarge", + "operation" : "RunInstances", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "565K5EPDPPX9K6TV" : { + "sku" : "565K5EPDPPX9K6TV", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.16xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "179", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "8B7CXDY69FGHQH62" : { + "sku" : "8B7CXDY69FGHQH62", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 80 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:r3.xlarge", + "operation" : "RunInstances:0800", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "T5BZ33K73P9U93J6" : { + "sku" : "T5BZ33K73P9U93J6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "8 x 800 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i2.8xlarge", + "operation" : "RunInstances:0010", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RH7Y6HVXZXB4UY8U" : { + "sku" : "RH7Y6HVXZXB4UY8U", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.medium", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "3.75 GiB", + "storage" : "1 x 4 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:m3.medium", + "operation" : "RunInstances:0800", + "ecu" : "3", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9GNEUQUQYHH95HXP" : { + "sku" : "9GNEUQUQYHH95HXP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "800 Mbps", + "ecu" : "Variable", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CG5KRXYBD8PDWRA7" : { + "sku" : "CG5KRXYBD8PDWRA7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "30.5 GiB", + "storage" : "3 x 2000 HDD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:d2.xlarge", + "operation" : "RunInstances:0010", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7VQV76T5CW2D2S7E" : { + "sku" : "7VQV76T5CW2D2S7E", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cc1.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670", + "memory" : "23 GiB", + "storage" : "2 x 840 GB", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:cc1.4xlarge", + "operation" : "RunInstances:0800", + "ecu" : "NA", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "V6XZ8Q6G3WH46NAH" : { + "sku" : "V6XZ8Q6G3WH46NAH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.large", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "450 Mbps", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2NCC7B83WHP39NK5" : { + "sku" : "2NCC7B83WHP39NK5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "15 GiB", + "storage" : "1 x 60 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:g2.2xlarge", + "operation" : "RunInstances:0010", + "ecu" : "26", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DN4D2SAMCUHNKK2B" : { + "sku" : "DN4D2SAMCUHNKK2B", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "64 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.4xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "53.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HXSNUHZ63WJ98R8B" : { + "sku" : "HXSNUHZ63WJ98R8B", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "f1.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "memory" : "976 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:f1.16xlarge", + "operation" : "RunInstances:0800", + "ecu" : "188", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VTKYCWG47S8NZFFH" : { + "sku" : "VTKYCWG47S8NZFFH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "1 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.2xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "K28HPP98RVTNWAAD" : { + "sku" : "K28HPP98RVTNWAAD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.10xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "40", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "160 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.10xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "80", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AEGXDVRPAPWQ229X" : { + "sku" : "AEGXDVRPAPWQ229X", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cg1.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "GPU instance", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon x5570", + "memory" : "22.5 GiB", + "storage" : "2 x 840", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:cg1.4xlarge", + "operation" : "RunInstances:0800", + "ecu" : "33.5", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5S2R8NPMY3DY32FC" : { + "sku" : "5S2R8NPMY3DY32FC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "4 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.large", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "269VXUCZZ7E6JNXT" : { + "sku" : "269VXUCZZ7E6JNXT", + "productFamily" : "Storage", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "storageMedia" : "HDD-backed", + "volumeType" : "Magnetic", + "maxVolumeSize" : "1 TiB", + "maxIopsvolume" : "40 - 200", + "maxIopsBurstPerformance" : "Hundreds", + "maxThroughputvolume" : "40 - 90 MB/sec", + "usagetype" : "EBS:VolumeUsage", + "operation" : "", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NRK8WGZ9YPVJGC38" : { + "sku" : "NRK8WGZ9YPVJGC38", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "1 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.2xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Z5UJJBU6GS6N6Y27" : { + "sku" : "Z5UJJBU6GS6N6Y27", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.16xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "12000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZA47RH8PF27SDZKP" : { + "sku" : "ZA47RH8PF27SDZKP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "15 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.2xlarge", + "operation" : "RunInstances", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9S3T4JTQ45TQKNTE" : { + "sku" : "9S3T4JTQ45TQKNTE", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.10xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "40", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "160 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.10xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "80", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZQQM88TCYA932EPG" : { + "sku" : "ZQQM88TCYA932EPG", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.16xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "179", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BAFH9QBR62G3RHWT" : { + "sku" : "BAFH9QBR62G3RHWT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.4xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "22SBKEJ8F25GCA2X" : { + "sku" : "22SBKEJ8F25GCA2X", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "4 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.large", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UNDMB8TE7VGADM8X" : { + "sku" : "UNDMB8TE7VGADM8X", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "30 GiB", + "storage" : "2 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.4xlarge", + "operation" : "RunInstances", + "ecu" : "55", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EAUDKWWNQJZTV253" : { + "sku" : "EAUDKWWNQJZTV253", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Outbound", + "fromLocation" : "US West (Oregon)", + "fromLocationType" : "AWS Region", + "toLocation" : "US East (N. Virginia)", + "toLocationType" : "AWS Region", + "usagetype" : "USW2-USE1-AWS-Out-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "63SCWY92BSEPEYVC" : { + "sku" : "63SCWY92BSEPEYVC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "15 GiB", + "storage" : "1 x 60 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:g2.2xlarge", + "operation" : "RunInstances:0002", + "ecu" : "26", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7XDBWG89WM5JF367" : { + "sku" : "7XDBWG89WM5JF367", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "8 x 1.9 NVMe SSD", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.16xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Z73VPF4R8N955QMR" : { + "sku" : "Z73VPF4R8N955QMR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.8xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "6000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KAZBRUMA5WBV7S69" : { + "sku" : "KAZBRUMA5WBV7S69", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.0 GHz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.2xlarge", + "operation" : "RunInstances:0202", + "ecu" : "Variable", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2Q55CNPTGCQPP362" : { + "sku" : "2Q55CNPTGCQPP362", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 80 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.xlarge", + "operation" : "RunInstances:0202", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XBZH83GR86H4PK4U" : { + "sku" : "XBZH83GR86H4PK4U", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.2xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SYFUF8QKH77BHGHX" : { + "sku" : "SYFUF8QKH77BHGHX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "4 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:c5.large", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JEV4RPZQUJDFUUG5" : { + "sku" : "JEV4RPZQUJDFUUG5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.8xlarge", + "operation" : "RunInstances:0202", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XKP8XXFGKBFRSGFX" : { + "sku" : "XKP8XXFGKBFRSGFX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "7.5 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.xlarge", + "operation" : "RunInstances:0202", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DQ578CGN99KG6ECF" : { + "sku" : "DQ578CGN99KG6ECF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "hs1.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "17", + "physicalProcessor" : "Intel Xeon E5-2650", + "clockSpeed" : "2 GHz", + "memory" : "117 GiB", + "storage" : "24 x 2000", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:hs1.8xlarge", + "operation" : "RunInstances:0002", + "ecu" : "35", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HX3SBKCTTNFU8UEG" : { + "sku" : "HX3SBKCTTNFU8UEG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 0.475 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.large", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "425 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AQK8CMMUKFD4JB69" : { + "sku" : "AQK8CMMUKFD4JB69", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "15 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:c4.2xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6ZNK2Z79AEEBFV3M" : { + "sku" : "6ZNK2Z79AEEBFV3M", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Inbound", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "EU (London)", + "toLocationType" : "AWS Region", + "usagetype" : "USE1-EUW2-AWS-In-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "Q73NFXYCVJRVJD5P" : { + "sku" : "Q73NFXYCVJRVJD5P", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "8 x 800 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i2.8xlarge", + "operation" : "RunInstances:0006", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "A67CJDV9B3YBP6N6" : { + "sku" : "A67CJDV9B3YBP6N6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "60 GiB", + "storage" : "2 x 120 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:g2.8xlarge", + "operation" : "RunInstances", + "ecu" : "104", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DA7QMR94RJ2CZC88" : { + "sku" : "DA7QMR94RJ2CZC88", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.8xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "6000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SQZMQXR6THWASKYH" : { + "sku" : "SQZMQXR6THWASKYH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "1 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.2xlarge", + "operation" : "RunInstances:0006", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GAMAEGQGHSWC95UR" : { + "sku" : "GAMAEGQGHSWC95UR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "4 x 1.9 NVMe SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.8xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2DACTCDEQHTNHX93" : { + "sku" : "2DACTCDEQHTNHX93", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 800 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i2.xlarge", + "operation" : "RunInstances:0102", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "55BBGNQ587XXZTH4" : { + "sku" : "55BBGNQ587XXZTH4", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cr1.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670", + "memory" : "244 GiB", + "storage" : "2 x 120 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:cr1.8xlarge", + "operation" : "RunInstances", + "ecu" : "88", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AAY7WVV9ASN7U5CG" : { + "sku" : "AAY7WVV9ASN7U5CG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "7.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "V6J3XRHZNGUJMG3Z" : { + "sku" : "V6J3XRHZNGUJMG3Z", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "1 x 480", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.4xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "47", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XKKYTV6J2N4E3GXA" : { + "sku" : "XKKYTV6J2N4E3GXA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1.32xlarge", + "operation" : "RunInstances:000g", + "ecu" : "349", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7KSR4DFTZFRCXGGH" : { + "sku" : "7KSR4DFTZFRCXGGH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "hs1.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "17", + "physicalProcessor" : "Intel Xeon E5-2650", + "clockSpeed" : "2 GHz", + "memory" : "117 GiB", + "storage" : "24 x 2000", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:hs1.8xlarge", + "operation" : "RunInstances:0006", + "ecu" : "35", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Std", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FHFGWVJGRUAB5YUF" : { + "sku" : "FHFGWVJGRUAB5YUF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.18xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "72", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "144 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.18xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "9000 Mbps", + "ecu" : "278", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "144", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "R8FEN7446FZH75Y5" : { + "sku" : "R8FEN7446FZH75Y5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.8xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "6000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6W35NFYWJ6ZG37VX" : { + "sku" : "6W35NFYWJ6ZG37VX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t1.micro", + "currentGeneration" : "No", + "instanceFamily" : "Micro instances", + "vcpu" : "1", + "physicalProcessor" : "Variable", + "memory" : "0.613 GiB", + "storage" : "EBS only", + "networkPerformance" : "Very Low", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t1.micro", + "operation" : "RunInstances:000g", + "ecu" : "26", + "normalizationSizeFactor" : "0.5", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VETEGFEN68R236A6" : { + "sku" : "VETEGFEN68R236A6", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 960", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:x1e.8xlarge", + "operation" : "Hourly", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "91", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RN2BTZEEU3PRHGPQ" : { + "sku" : "RN2BTZEEU3PRHGPQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "1 x 320 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.4xlarge", + "operation" : "RunInstances:0102", + "ecu" : "52", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XJQHREQ4GHZQKQU7" : { + "sku" : "XJQHREQ4GHZQKQU7", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Inbound", + "fromLocation" : "Asia Pacific (Seoul)", + "fromLocationType" : "AWS Region", + "toLocation" : "US East (N. Virginia)", + "toLocationType" : "AWS Region", + "usagetype" : "APN2-USE1-AWS-In-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "KR7FACVV38RW2UPT" : { + "sku" : "KR7FACVV38RW2UPT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.16xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "12000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RP3ZUBNA3QZ7JHU5" : { + "sku" : "RP3ZUBNA3QZ7JHU5", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Inbound", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "Amazon CloudFront", + "toLocationType" : "AWS Edge Location", + "usagetype" : "USE1-CloudFront-In-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "HFJ8JNVXU9Z88543" : { + "sku" : "HFJ8JNVXU9Z88543", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:g3.8xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "0", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "2", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7CWP6FB636NZ4578" : { + "sku" : "7CWP6FB636NZ4578", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "4 x 1.9 NVMe SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.8xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "932MRHTPXM73RZJM" : { + "sku" : "932MRHTPXM73RZJM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 0.475 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.large", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "425 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "8QZCKNB62EDMDT63" : { + "sku" : "8QZCKNB62EDMDT63", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1.32xlarge", + "operation" : "RunInstances", + "ecu" : "349", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "S7W47N2777Q8FW7S" : { + "sku" : "S7W47N2777Q8FW7S", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 80 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.xlarge", + "operation" : "RunInstances", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4DVV92GAW5VRCP2Y" : { + "sku" : "4DVV92GAW5VRCP2Y", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "244 GiB", + "storage" : "24 x 2000 HDD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:d2.8xlarge", + "operation" : "RunInstances:0006", + "ecu" : "116", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZXT5RPKSX2EYYGJQ" : { + "sku" : "ZXT5RPKSX2EYYGJQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "2 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.4xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XV4ERE3TBNCX96M9" : { + "sku" : "XV4ERE3TBNCX96M9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RGKA4HJHM5TUYE4N" : { + "sku" : "RGKA4HJHM5TUYE4N", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "15 GiB", + "storage" : "4 x 420", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m1.xlarge", + "operation" : "RunInstances:000g", + "ecu" : "8", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "34JBU9PXRB8RPKYX" : { + "sku" : "34JBU9PXRB8RPKYX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.micro", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.3 GHz", + "memory" : "1 GiB", + "storage" : "EBS only", + "networkPerformance" : "Low to Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.micro", + "operation" : "RunInstances:0202", + "ecu" : "Variable", + "normalizationSizeFactor" : "0.5", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "N24FYYRTPFBF3UTD" : { + "sku" : "N24FYYRTPFBF3UTD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 80 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.xlarge", + "operation" : "RunInstances:0010", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GS3NHNTTTS84KQSP" : { + "sku" : "GS3NHNTTTS84KQSP", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.16xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "179", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PT4B2E8NE5P3DWW9" : { + "sku" : "PT4B2E8NE5P3DWW9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "800 Mbps", + "ecu" : "Variable", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KQTYTC2BEFA3UQD7" : { + "sku" : "KQTYTC2BEFA3UQD7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "1 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.2xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CHD28PNGD4WRFZDU" : { + "sku" : "CHD28PNGD4WRFZDU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:p3.16xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "F3Z269CFGBSPE3TW" : { + "sku" : "F3Z269CFGBSPE3TW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 0.95 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "850 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UGAW5CN698QFXJS9" : { + "sku" : "UGAW5CN698QFXJS9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "2 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i2.2xlarge", + "operation" : "RunInstances:0006", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YU6MR6S9Z249VF2X" : { + "sku" : "YU6MR6S9Z249VF2X", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "244 GiB", + "storage" : "24 x 2000 HDD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:d2.8xlarge", + "operation" : "RunInstances:000g", + "ecu" : "116", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "B5C2VWZ3WKXH29GV" : { + "sku" : "B5C2VWZ3WKXH29GV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 800 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i2.xlarge", + "operation" : "RunInstances:0202", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UHDU9A8XN6ZW8X9D" : { + "sku" : "UHDU9A8XN6ZW8X9D", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 0.475 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.large", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "425 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "F89CDKSSQ2AVMRYW" : { + "sku" : "F89CDKSSQ2AVMRYW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "1 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:i3.2xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MTJM4P7NUQTD7TTY" : { + "sku" : "MTJM4P7NUQTD7TTY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "8 x 1.9 NVMe SSD", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.16xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XHTGRKAAUAXJEMXS" : { + "sku" : "XHTGRKAAUAXJEMXS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "244 GiB", + "storage" : "24 x 2000 HDD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:d2.8xlarge", + "operation" : "RunInstances:0010", + "ecu" : "116", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ECM8RSBXMC7F4WAS" : { + "sku" : "ECM8RSBXMC7F4WAS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "256 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.16xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "10000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AYWDVNJQKCDA6E7M" : { + "sku" : "AYWDVNJQKCDA6E7M", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "3.75 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:c4.large", + "operation" : "Hourly", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FQVPYK9V83HTQEXR" : { + "sku" : "FQVPYK9V83HTQEXR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.large", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "7.5 GiB", + "storage" : "2 x 420", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:m1.large", + "operation" : "RunInstances:0800", + "ecu" : "4", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VV5A7BNXRSZQJ6MG" : { + "sku" : "VV5A7BNXRSZQJ6MG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.large", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "400 Mbps", + "ecu" : "135", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "D5JBSPHEHDXDUWJR" : { + "sku" : "D5JBSPHEHDXDUWJR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "1 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.2xlarge", + "operation" : "RunInstances", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZDSU8EJ7X5PVHMBU" : { + "sku" : "ZDSU8EJ7X5PVHMBU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "1 x 120", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MGQXS8Z3TAKPMGUM" : { + "sku" : "MGQXS8Z3TAKPMGUM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.4xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "3000 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9HJ2ASV4W3SUZJEE" : { + "sku" : "9HJ2ASV4W3SUZJEE", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:c5.xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VMVVV7NDFCNYYB5X" : { + "sku" : "VMVVV7NDFCNYYB5X", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.medium", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "3.75 GiB", + "storage" : "1 x 4 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m3.medium", + "operation" : "RunInstances:000g", + "ecu" : "3", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Q39AEGEKTSQKK4D3" : { + "sku" : "Q39AEGEKTSQKK4D3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 0.475 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.large", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "425 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GK3JQYYZHNZAHQ66" : { + "sku" : "GK3JQYYZHNZAHQ66", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "1 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.2xlarge", + "operation" : "RunInstances:0202", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RGN4FERZ8NXYWRDE" : { + "sku" : "RGN4FERZ8NXYWRDE", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Inbound", + "fromLocation" : "US West (Oregon)", + "fromLocationType" : "AWS Region", + "toLocation" : "US East (N. Virginia)", + "toLocationType" : "AWS Region", + "usagetype" : "USW2-USE1-AWS-In-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "G78P4J48KHGMSX93" : { + "sku" : "G78P4J48KHGMSX93", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "1 x 240", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.2xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "23", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ENFQDU23RKAAQR4R" : { + "sku" : "ENFQDU23RKAAQR4R", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "7.5 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.xlarge", + "operation" : "RunInstances:0002", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KYPREJHGNMP6GVSA" : { + "sku" : "KYPREJHGNMP6GVSA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "3.75 GiB", + "storage" : "2 x 16 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.large", + "operation" : "RunInstances:0002", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KDHC3D74WA7UFHUU" : { + "sku" : "KDHC3D74WA7UFHUU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FMHPC62WVZ9EB44Z" : { + "sku" : "FMHPC62WVZ9EB44Z", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.16xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "179", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CVZN7PCT7EYTAUNH" : { + "sku" : "CVZN7PCT7EYTAUNH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t1.micro", + "currentGeneration" : "No", + "instanceFamily" : "Micro instances", + "vcpu" : "1", + "physicalProcessor" : "Variable", + "memory" : "0.613 GiB", + "storage" : "EBS only", + "networkPerformance" : "Very Low", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:t1.micro", + "operation" : "RunInstances:0800", + "ecu" : "26", + "normalizationSizeFactor" : "0.5", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EGD7PR7MXJNRRR5M" : { + "sku" : "EGD7PR7MXJNRRR5M", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:r3.large", + "operation" : "RunInstances:0800", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XG2EKBMRP7S226WS" : { + "sku" : "XG2EKBMRP7S226WS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "7.5 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.xlarge", + "operation" : "RunInstances:0102", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KX42WEB78EWUHU8Q" : { + "sku" : "KX42WEB78EWUHU8Q", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "64 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.4xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "53.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "38AX843AAXNB6F95" : { + "sku" : "38AX843AAXNB6F95", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "256 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.16xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "10000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TDGFBAHXRZKBVVEK" : { + "sku" : "TDGFBAHXRZKBVVEK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "2 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i2.2xlarge", + "operation" : "RunInstances:0102", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9Z7C9YEQ5U8P5GDZ" : { + "sku" : "9Z7C9YEQ5U8P5GDZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.4xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "M9HNUU75T45RPFC6" : { + "sku" : "M9HNUU75T45RPFC6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "7.5 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m3.large", + "operation" : "RunInstances:000g", + "ecu" : "6.5", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YB65BFK6JTN2AVK3" : { + "sku" : "YB65BFK6JTN2AVK3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "15 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.2xlarge", + "operation" : "RunInstances:0202", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MBQPYDJSY3BY84BH" : { + "sku" : "MBQPYDJSY3BY84BH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "3.75 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.large", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DUFUABZJFHZ5SWBJ" : { + "sku" : "DUFUABZJFHZ5SWBJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 0.475 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.large", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "425 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FWTR9MGD2XP654H6" : { + "sku" : "FWTR9MGD2XP654H6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "122 GiB", + "storage" : "12 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:d2.4xlarge", + "operation" : "RunInstances:000g", + "ecu" : "56", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "8DAD556FD5NBRFC3" : { + "sku" : "8DAD556FD5NBRFC3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.18xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "72", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "144 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.18xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "9000 Mbps", + "ecu" : "278", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "144", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PPV5Q7DEDQX5ZEAC" : { + "sku" : "PPV5Q7DEDQX5ZEAC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "768 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:p2.16xlarge", + "operation" : "RunInstances", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "16", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MZHHAF4YCR5JMQ9C" : { + "sku" : "MZHHAF4YCR5JMQ9C", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.8xlarge", + "operation" : "RunInstances:0006", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ENHSMTH854TGXCX2" : { + "sku" : "ENHSMTH854TGXCX2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "122 GiB", + "storage" : "12 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:d2.4xlarge", + "operation" : "Hourly", + "ecu" : "56", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MGX8XKF9UWBS8FMV" : { + "sku" : "MGX8XKF9UWBS8FMV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "256 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.16xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "10000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "W3VESHWCSRCUY7WY" : { + "sku" : "W3VESHWCSRCUY7WY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "34.2 GiB", + "storage" : "1 x 850", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "ebsOptimized" : "Yes", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:m2.2xlarge", + "operation" : "Hourly", + "ecu" : "13", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "N449RKU6MSAPKBDX" : { + "sku" : "N449RKU6MSAPKBDX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "64 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:m4.4xlarge", + "operation" : "Hourly", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "53.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UGMJ2EBAQ8A6XBDQ" : { + "sku" : "UGMJ2EBAQ8A6XBDQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cg1.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "GPU instance", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon x5570", + "memory" : "22.5 GiB", + "storage" : "2 x 840", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:cg1.4xlarge", + "operation" : "RunInstances:000g", + "ecu" : "33.5", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CDY4KCZ5UTDSGTGH" : { + "sku" : "CDY4KCZ5UTDSGTGH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "60 GiB", + "storage" : "2 x 120 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:g2.8xlarge", + "operation" : "RunInstances:0800", + "ecu" : "104", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HW84S2UTHHJ2R3UP" : { + "sku" : "HW84S2UTHHJ2R3UP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "3,904 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.32xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "340", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "WAC5A9V7VNYMBPDR" : { + "sku" : "WAC5A9V7VNYMBPDR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "2 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.4xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MNP9VWKTPKFPDQWK" : { + "sku" : "MNP9VWKTPKFPDQWK", + "productFamily" : "Dedicated Host", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "NA", + "storage" : "NA", + "networkPerformance" : "NA", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostUsage:r4", + "operation" : "RunInstances", + "ecu" : "NA", + "instanceCapacity16xlarge" : "1", + "instanceCapacity2xlarge" : "8", + "instanceCapacity4xlarge" : "4", + "instanceCapacity8xlarge" : "2", + "instanceCapacityLarge" : "32", + "instanceCapacityXlarge" : "16", + "normalizationSizeFactor" : "NA", + "physicalCores" : "36", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "R653AEFSC6MG23XK" : { + "sku" : "R653AEFSC6MG23XK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:r4.large", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "400 Mbps", + "ecu" : "135", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "K5M8XEVN93GNAS5F" : { + "sku" : "K5M8XEVN93GNAS5F", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:c5.2xlarge", + "operation" : "Hourly", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QYFXFTGTF3CQ3XKH" : { + "sku" : "QYFXFTGTF3CQ3XKH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.nano", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.3 GHz", + "memory" : "0.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "Low", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.nano", + "operation" : "RunInstances:0002", + "ecu" : "Variable", + "normalizationSizeFactor" : "0.25", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VJAJFF3S48Y4ZK6H" : { + "sku" : "VJAJFF3S48Y4ZK6H", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "15 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.2xlarge", + "operation" : "RunInstances:000g", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "WZM4T9SQXM7SF7ZF" : { + "sku" : "WZM4T9SQXM7SF7ZF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.4xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "G6RMHZ78J5823WFT" : { + "sku" : "G6RMHZ78J5823WFT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "1 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.2xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PNHWQABRRB4TBUYK" : { + "sku" : "PNHWQABRRB4TBUYK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "1 x 320 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.4xlarge", + "operation" : "RunInstances:0202", + "ecu" : "52", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QA82VPGUZGU7KXVD" : { + "sku" : "QA82VPGUZGU7KXVD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.18xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "72", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "144 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.18xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "9000 Mbps", + "ecu" : "278", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "144", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KTQ9XV2KF6MVX7PJ" : { + "sku" : "KTQ9XV2KF6MVX7PJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:g3.4xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "0", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KMP6N3WQVNDKNT4Q" : { + "sku" : "KMP6N3WQVNDKNT4Q", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "64 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.4xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "53.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XVYMD36W2Q986RBB" : { + "sku" : "XVYMD36W2Q986RBB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:c5.xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EJXKAGBARC5X44CV" : { + "sku" : "EJXKAGBARC5X44CV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.9xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "72 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.9xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "4500 Mbps", + "ecu" : "139", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "72", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "G92C9VZA7CRCHVRC" : { + "sku" : "G92C9VZA7CRCHVRC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "3.75 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.large", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KAMVJY7RYQ6K3M4A" : { + "sku" : "KAMVJY7RYQ6K3M4A", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "7.5 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m3.large", + "operation" : "RunInstances", + "ecu" : "6.5", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Q7KRGX9524EXCE9T" : { + "sku" : "Q7KRGX9524EXCE9T", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:g3.4xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "0", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AAWCKPS6CUV38XXA" : { + "sku" : "AAWCKPS6CUV38XXA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.4xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "3000 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NQZBX7B4JXMHGKCW" : { + "sku" : "NQZBX7B4JXMHGKCW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:g3.8xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "0", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "2", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VGM6EF7PXMSGNFP9" : { + "sku" : "VGM6EF7PXMSGNFP9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.2xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YZ89W4FUGD48VKWX" : { + "sku" : "YZ89W4FUGD48VKWX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "2 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "ebsOptimized" : "Yes", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:i2.2xlarge", + "operation" : "Hourly", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Q2WXMV82X42S7KB7" : { + "sku" : "Q2WXMV82X42S7KB7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "61 GiB", + "storage" : "6 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:d2.2xlarge", + "operation" : "RunInstances", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "D6XVUTGMGFQKNVF4" : { + "sku" : "D6XVUTGMGFQKNVF4", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.large", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "450 Mbps", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "A3AVPUXAD6N4JXA9" : { + "sku" : "A3AVPUXAD6N4JXA9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "1 x 120", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "C6M58F98AZ4YZW7U" : { + "sku" : "C6M58F98AZ4YZW7U", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "15 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.2xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FUD3JZ9ZMGTAMQWY" : { + "sku" : "FUD3JZ9ZMGTAMQWY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "60 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.8xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "132", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4AEAXDW4BC2SCXMG" : { + "sku" : "4AEAXDW4BC2SCXMG", + "productFamily" : "IP Address", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "group" : "ElasticIP:Remap", + "groupDescription" : "Elastic IP address remap", + "usagetype" : "ElasticIP:Remap", + "operation" : "", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9YKWHYHK8CJW6DNV" : { + "sku" : "9YKWHYHK8CJW6DNV", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Outbound", + "fromLocation" : "US West (N. California)", + "fromLocationType" : "AWS Region", + "toLocation" : "US East (N. Virginia)", + "toLocationType" : "AWS Region", + "usagetype" : "USW1-USE1-AWS-Out-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "Z3R6FENB6RXUUA7Z" : { + "sku" : "Z3R6FENB6RXUUA7Z", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "f1.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:f1.2xlarge", + "operation" : "RunInstances:000g", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VYJECTWWHZY57WXX" : { + "sku" : "VYJECTWWHZY57WXX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 800 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i2.xlarge", + "operation" : "RunInstances:0002", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SMK6B2NB8E64PZDV" : { + "sku" : "SMK6B2NB8E64PZDV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m3.xlarge", + "operation" : "RunInstances:0010", + "ecu" : "13", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CZEFYKJRS5KC69GA" : { + "sku" : "CZEFYKJRS5KC69GA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:p3.8xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "B7QBHF63SG76UXTS" : { + "sku" : "B7QBHF63SG76UXTS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "2 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:i3.4xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "E39WJ4NFW33589ZS" : { + "sku" : "E39WJ4NFW33589ZS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.2xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "1600 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FEE2HQXAD6YH9EBE" : { + "sku" : "FEE2HQXAD6YH9EBE", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "2 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:i2.2xlarge", + "operation" : "RunInstances:0800", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BV77CKND4GMG6JUT" : { + "sku" : "BV77CKND4GMG6JUT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.small", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "1.7 GiB", + "storage" : "1 x 160", + "networkPerformance" : "Low", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage", + "operation" : "RunInstances:000g", + "ecu" : "Variable", + "normalizationSizeFactor" : "1", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XUKM8UBN69JM7HAV" : { + "sku" : "XUKM8UBN69JM7HAV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.small", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.3 GHz", + "memory" : "2 GiB", + "storage" : "EBS only", + "networkPerformance" : "Low to Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.small", + "operation" : "RunInstances:0202", + "ecu" : "Variable", + "normalizationSizeFactor" : "1", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VZB4MZEV7XEAF6US" : { + "sku" : "VZB4MZEV7XEAF6US", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "f1.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:f1.2xlarge", + "operation" : "RunInstances", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "P76K65KFZQNPR4CV" : { + "sku" : "P76K65KFZQNPR4CV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.10xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "40", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "160 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:m4.10xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "80", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HWHBVKY9RQMK67F9" : { + "sku" : "HWHBVKY9RQMK67F9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.10xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "40", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "160 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.10xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "80", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7VJXKNKUWTYUUJDQ" : { + "sku" : "7VJXKNKUWTYUUJDQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "2 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.4xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "U9S9CX6UESN4T4P2" : { + "sku" : "U9S9CX6UESN4T4P2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 80 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.xlarge", + "operation" : "RunInstances:0102", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "X36E8MM7YF7JC38Y" : { + "sku" : "X36E8MM7YF7JC38Y", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "4 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:i2.4xlarge", + "operation" : "RunInstances:0800", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "K5J5FMBSS7S88WMV" : { + "sku" : "K5J5FMBSS7S88WMV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "30 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.4xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "D87JMYVFZXKJD58A" : { + "sku" : "D87JMYVFZXKJD58A", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "17.1 GiB", + "storage" : "1 x 420", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m2.xlarge", + "operation" : "RunInstances:000g", + "ecu" : "6.5", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "24XN5CF83RWVHY65" : { + "sku" : "24XN5CF83RWVHY65", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "7.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "J4UDT5BERQ92MHNK" : { + "sku" : "J4UDT5BERQ92MHNK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.2xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "38HK7GA2PMZ3QFP2" : { + "sku" : "38HK7GA2PMZ3QFP2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 80 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:r3.xlarge", + "operation" : "RunInstances:0800", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5QKUPV9RQN5Z98G7" : { + "sku" : "5QKUPV9RQN5Z98G7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "4 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i2.4xlarge", + "operation" : "RunInstances:0102", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9G23QA9CK3NU3BRY" : { + "sku" : "9G23QA9CK3NU3BRY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "60 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.8xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "132", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DZHU5BKVVZXEHEYR" : { + "sku" : "DZHU5BKVVZXEHEYR", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Inbound", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "Asia Pacific (Singapore)", + "toLocationType" : "AWS Region", + "usagetype" : "USE1-APS1-AWS-In-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "REEFNGM3CZ2DRRN8" : { + "sku" : "REEFNGM3CZ2DRRN8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "3.75 GiB", + "storage" : "2 x 16 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.large", + "operation" : "RunInstances:0010", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BJKH3VYGVEEXSNAH" : { + "sku" : "BJKH3VYGVEEXSNAH", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Inbound", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "Asia Pacific (Tokyo)", + "toLocationType" : "AWS Region", + "usagetype" : "USE1-APN1-AWS-In-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "VKZY87EJ294KXKWY" : { + "sku" : "VKZY87EJ294KXKWY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:p2.8xlarge", + "operation" : "RunInstances:0002", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YP22M5YTQ23BWN3Z" : { + "sku" : "YP22M5YTQ23BWN3Z", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 960", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.8xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "91", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4NP4X68DAN26TTQZ" : { + "sku" : "4NP4X68DAN26TTQZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "ebsOptimized" : "Yes", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:m3.xlarge", + "operation" : "Hourly", + "ecu" : "13", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JN3KK3Y79A6JZJNG" : { + "sku" : "JN3KK3Y79A6JZJNG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "3.75 GiB", + "storage" : "2 x 16 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.large", + "operation" : "RunInstances:000g", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BVM3C8VUB3CUM3XK" : { + "sku" : "BVM3C8VUB3CUM3XK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:c5.xlarge", + "operation" : "Hourly", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZXQF4FMZPFD962D7" : { + "sku" : "ZXQF4FMZPFD962D7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "7.5 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:m3.large", + "operation" : "RunInstances:0800", + "ecu" : "6.5", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MDKVAJXMJGZFDJUE" : { + "sku" : "MDKVAJXMJGZFDJUE", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "3.75 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.large", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "M7JDPTTFT6JUZ92Q" : { + "sku" : "M7JDPTTFT6JUZ92Q", + "productFamily" : "Dedicated Host", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "f1", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "memory" : "NA", + "storage" : "NA", + "networkPerformance" : "NA", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostUsage:f1", + "operation" : "RunInstances", + "ecu" : "NA", + "normalizationSizeFactor" : "NA", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RZRGZV8C4EBA9RFW" : { + "sku" : "RZRGZV8C4EBA9RFW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.16xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "12000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YSQ44UEJR3KC9UZ6" : { + "sku" : "YSQ44UEJR3KC9UZ6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 80 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.xlarge", + "operation" : "RunInstances:0002", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UMZX79C7JU2QYP8B" : { + "sku" : "UMZX79C7JU2QYP8B", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.16xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "179", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GC47ACDRS3ATDYYA" : { + "sku" : "GC47ACDRS3ATDYYA", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "1 x 480", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.4xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "47", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "42VGMPF8Y5PJ76X3" : { + "sku" : "42VGMPF8Y5PJ76X3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "7.5 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m3.large", + "operation" : "RunInstances:0202", + "ecu" : "6.5", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6NCC4FFQSR3WFGZZ" : { + "sku" : "6NCC4FFQSR3WFGZZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.medium", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "3.75 GiB", + "storage" : "1 x 410", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:m1.medium", + "operation" : "RunInstances:0800", + "ecu" : "2", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "S7XYZXB5D99A9Y8M" : { + "sku" : "S7XYZXB5D99A9Y8M", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "30 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.4xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "H9ZN7EUEHC2S7YH5" : { + "sku" : "H9ZN7EUEHC2S7YH5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.2xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FTHQYJFCP3DPSYCY" : { + "sku" : "FTHQYJFCP3DPSYCY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "64 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.4xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "53.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "N8CRYUBTUE378VHJ" : { + "sku" : "N8CRYUBTUE378VHJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m3.xlarge", + "operation" : "RunInstances:0202", + "ecu" : "13", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZEJBXPHEDWRE3FE8" : { + "sku" : "ZEJBXPHEDWRE3FE8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 0.95 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "850 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PQ44QRGZYQ87XPN2" : { + "sku" : "PQ44QRGZYQ87XPN2", + "productFamily" : "Load Balancer-Network", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "group" : "ELB:Balancer", + "groupDescription" : "LoadBalancer hourly usage by Network Load Balancer", + "usagetype" : "LoadBalancerUsage", + "operation" : "LoadBalancing:Network", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JH77489982R9B75M" : { + "sku" : "JH77489982R9B75M", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "256 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.16xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "10000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "T9EWKN7MGMP23VG7" : { + "sku" : "T9EWKN7MGMP23VG7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "f1.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "memory" : "976 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:f1.16xlarge", + "operation" : "RunInstances:0010", + "ecu" : "188", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EDJPFY8K3AW2AD23" : { + "sku" : "EDJPFY8K3AW2AD23", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Outbound", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "Asia Pacific (Tokyo)", + "toLocationType" : "AWS Region", + "usagetype" : "USE1-APN1-AWS-Out-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "H4SWC23NZ6GQ2RR9" : { + "sku" : "H4SWC23NZ6GQ2RR9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "800 Mbps", + "ecu" : "Variable", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "N7DSK6NF5W734PPK" : { + "sku" : "N7DSK6NF5W734PPK", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "1 x 480", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.4xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "47", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "P9DZZQU4NVYMBDKA" : { + "sku" : "P9DZZQU4NVYMBDKA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "3,904 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.32xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "340", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "B6SAEPP6NFMFCUU3" : { + "sku" : "B6SAEPP6NFMFCUU3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "7.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XJF7B8BASZ9KBAC4" : { + "sku" : "XJF7B8BASZ9KBAC4", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "8 x 1.9 NVMe SSD", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.16xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "C7XDWJNQJCHH2ZQT" : { + "sku" : "C7XDWJNQJCHH2ZQT", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Inbound", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "Asia Pacific (Seoul)", + "toLocationType" : "AWS Region", + "usagetype" : "USE1-APN2-AWS-In-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "8W89WZF8F2RMTQFG" : { + "sku" : "8W89WZF8F2RMTQFG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 0.95 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:i3.xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "850 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MBDEK77AM97QDASM" : { + "sku" : "MBDEK77AM97QDASM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.4xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "3000 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XFYWQUTA9A757A82" : { + "sku" : "XFYWQUTA9A757A82", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.9xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "72 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.9xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "4500 Mbps", + "ecu" : "139", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "72", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6MK3U3SATG93CSHN" : { + "sku" : "6MK3U3SATG93CSHN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "800 Mbps", + "ecu" : "Variable", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6A5H8V2W7HVVXSB7" : { + "sku" : "6A5H8V2W7HVVXSB7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:p3.8xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SDH7JHR69GKRHZE7" : { + "sku" : "SDH7JHR69GKRHZE7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "1 x 120", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FUJ2WGMJU3VK73ZN" : { + "sku" : "FUJ2WGMJU3VK73ZN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "61 GiB", + "storage" : "6 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:d2.2xlarge", + "operation" : "RunInstances:000g", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7ATPZU2G6QRQFTXN" : { + "sku" : "7ATPZU2G6QRQFTXN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "8 x 1.9 NVMe SSD", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.16xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "P5RN9BCZJT39XF2F" : { + "sku" : "P5RN9BCZJT39XF2F", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.large", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "7.5 GiB", + "storage" : "2 x 420", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:m1.large", + "operation" : "RunInstances:0800", + "ecu" : "4", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Q47MRW8XVZXWXPE6" : { + "sku" : "Q47MRW8XVZXWXPE6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.2xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "U35UAX5SUJURKCT4" : { + "sku" : "U35UAX5SUJURKCT4", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "1 x 240", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.2xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "23", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XCMMYCWQYMYT84XG" : { + "sku" : "XCMMYCWQYMYT84XG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "1 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.2xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TA7UVX8V5EKCNAFA" : { + "sku" : "TA7UVX8V5EKCNAFA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.18xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "72", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "144 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:c5.18xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "9000 Mbps", + "ecu" : "278", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "144", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7GUHNB4GSSZNUVY2" : { + "sku" : "7GUHNB4GSSZNUVY2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m3.2xlarge", + "operation" : "RunInstances:0202", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RSMWKBGGTAAEV4RH" : { + "sku" : "RSMWKBGGTAAEV4RH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:g3.8xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "0", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "2", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "URH8Q5S2UVXB3ZCQ" : { + "sku" : "URH8Q5S2UVXB3ZCQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "61 GiB", + "storage" : "6 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:d2.2xlarge", + "operation" : "RunInstances:0010", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SESWDZQB6R8ZGXJK" : { + "sku" : "SESWDZQB6R8ZGXJK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.18xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "72", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "144 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.18xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "9000 Mbps", + "ecu" : "278", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "144", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "K7CXCBYXYBR3P73G" : { + "sku" : "K7CXCBYXYBR3P73G", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "4 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:i2.4xlarge", + "operation" : "RunInstances:0800", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "V9ZFC4WMNYSWFHRQ" : { + "sku" : "V9ZFC4WMNYSWFHRQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "30.5 GiB", + "storage" : "3 x 2000 HDD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:d2.xlarge", + "operation" : "RunInstances:0002", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UEJ864RYGQM7EWS4" : { + "sku" : "UEJ864RYGQM7EWS4", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c1.medium", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "1.7 GiB", + "storage" : "1 x 350", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:c1.medium", + "operation" : "RunInstances:0800", + "ecu" : "2", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XGBGHMXAG9HECAGE" : { + "sku" : "XGBGHMXAG9HECAGE", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "244 GiB", + "storage" : "24 x 2000 HDD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:d2.8xlarge", + "operation" : "RunInstances:0002", + "ecu" : "116", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6AHJNWJK7N3CKJ6D" : { + "sku" : "6AHJNWJK7N3CKJ6D", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.9xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "72 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.9xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "4500 Mbps", + "ecu" : "139", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "72", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AYSR4P45C3BGQFUC" : { + "sku" : "AYSR4P45C3BGQFUC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PM7SF7GUUSEM94ZC" : { + "sku" : "PM7SF7GUUSEM94ZC", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Outbound", + "fromLocation" : "Asia Pacific (Sydney)", + "fromLocationType" : "AWS Region", + "toLocation" : "US East (N. Virginia)", + "toLocationType" : "AWS Region", + "usagetype" : "APS2-USE1-AWS-Out-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "8EJJ843PNMRKMSZC" : { + "sku" : "8EJJ843PNMRKMSZC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t1.micro", + "currentGeneration" : "No", + "instanceFamily" : "Micro instances", + "vcpu" : "1", + "physicalProcessor" : "Variable", + "memory" : "0.613 GiB", + "storage" : "EBS only", + "networkPerformance" : "Very Low", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t1.micro", + "operation" : "RunInstances:0202", + "ecu" : "26", + "normalizationSizeFactor" : "0.5", + "preInstalledSw" : "SQL Web", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SM2N6WCVK5EXAYJ9" : { + "sku" : "SM2N6WCVK5EXAYJ9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c1.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "7 GiB", + "storage" : "4 x 420", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c1.xlarge", + "operation" : "RunInstances:0002", + "ecu" : "20", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "K4QSF4H4QQGJSSK7" : { + "sku" : "K4QSF4H4QQGJSSK7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "768 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:p2.16xlarge", + "operation" : "RunInstances:0010", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "16", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "D9S2YAG2HUF7C3PC" : { + "sku" : "D9S2YAG2HUF7C3PC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.medium", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "3.75 GiB", + "storage" : "1 x 4 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m3.medium", + "operation" : "RunInstances", + "ecu" : "3", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YMRN5MTGT97CSMR5" : { + "sku" : "YMRN5MTGT97CSMR5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.medium", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "3.75 GiB", + "storage" : "1 x 4 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m3.medium", + "operation" : "RunInstances:000g", + "ecu" : "3", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DJHEPZFBQWFDH3PZ" : { + "sku" : "DJHEPZFBQWFDH3PZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "f1.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:f1.2xlarge", + "operation" : "RunInstances:0010", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9DK6BK45W6CJ9A5X" : { + "sku" : "9DK6BK45W6CJ9A5X", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "3.75 GiB", + "storage" : "2 x 16 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.large", + "operation" : "RunInstances:0010", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CXWQTSDJMF3AP864" : { + "sku" : "CXWQTSDJMF3AP864", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "f1.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:f1.2xlarge", + "operation" : "RunInstances:0010", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "B36TB4HQKCE3PSVX" : { + "sku" : "B36TB4HQKCE3PSVX", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Inbound", + "fromLocation" : "Asia Pacific (Mumbai)", + "fromLocationType" : "AWS Region", + "toLocation" : "US East (N. Virginia)", + "toLocationType" : "AWS Region", + "usagetype" : "APS3-USE1-AWS-In-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "X894WEFHKGGUVR52" : { + "sku" : "X894WEFHKGGUVR52", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.8xlarge", + "operation" : "RunInstances", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PA99ECAE74DADX5J" : { + "sku" : "PA99ECAE74DADX5J", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "30 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.4xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Q65EXUN6VVKKRUQ6" : { + "sku" : "Q65EXUN6VVKKRUQ6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:g3.4xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "0", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XP7U4PW6TG4NXAZS" : { + "sku" : "XP7U4PW6TG4NXAZS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.2xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GPTGBM5JNED7SKZW" : { + "sku" : "GPTGBM5JNED7SKZW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "2 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.4xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NCNT25B6JEQBVF9P" : { + "sku" : "NCNT25B6JEQBVF9P", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.large", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "400 Mbps", + "ecu" : "135", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5RDXQSEVV5YEEYS6" : { + "sku" : "5RDXQSEVV5YEEYS6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 80 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.xlarge", + "operation" : "RunInstances:000g", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "S6MPFZZYQH2JQDPJ" : { + "sku" : "S6MPFZZYQH2JQDPJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.18xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "72", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "144 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.18xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "9000 Mbps", + "ecu" : "278", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "144", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "T9G44MU9TAHQW69C" : { + "sku" : "T9G44MU9TAHQW69C", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "122 GiB", + "storage" : "12 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:d2.4xlarge", + "operation" : "RunInstances:0010", + "ecu" : "56", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NUMNVV4X9PJW42JH" : { + "sku" : "NUMNVV4X9PJW42JH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:p3.2xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZA8X9PK3KYPXZSEC" : { + "sku" : "ZA8X9PK3KYPXZSEC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:r3.8xlarge", + "operation" : "RunInstances:0800", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SUXHXAPA9KC5QKGF" : { + "sku" : "SUXHXAPA9KC5QKGF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "1 x 120", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VC8RXUKPQB42NMCF" : { + "sku" : "VC8RXUKPQB42NMCF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "3.75 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.large", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "T66DXZFUDZ8KW7UG" : { + "sku" : "T66DXZFUDZ8KW7UG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "60 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.8xlarge", + "operation" : "RunInstances:0010", + "ecu" : "108", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DRMGTKKSRFBNB2TD" : { + "sku" : "DRMGTKKSRFBNB2TD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 80 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.xlarge", + "operation" : "RunInstances:0010", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "V2ZSDPZ5ANEBUE99" : { + "sku" : "V2ZSDPZ5ANEBUE99", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c1.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "7 GiB", + "storage" : "4 x 420", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c1.xlarge", + "operation" : "RunInstances:000g", + "ecu" : "20", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QG8MPRPSA2WNM57J" : { + "sku" : "QG8MPRPSA2WNM57J", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "3.75 GiB", + "storage" : "2 x 16 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.large", + "operation" : "RunInstances:000g", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZG4JRPCC4VZQWHCQ" : { + "sku" : "ZG4JRPCC4VZQWHCQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "800 Mbps", + "ecu" : "Variable", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "26EZN83WFYW935BY" : { + "sku" : "26EZN83WFYW935BY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m3.2xlarge", + "operation" : "RunInstances:0010", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YRUVJDC2XTW5YRU3" : { + "sku" : "YRUVJDC2XTW5YRU3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "hs1.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "17", + "physicalProcessor" : "Intel Xeon E5-2650", + "clockSpeed" : "2 GHz", + "memory" : "117 GiB", + "storage" : "24 x 2000", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:hs1.8xlarge", + "operation" : "RunInstances:0202", + "ecu" : "35", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Web", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "433RA7YYXTQK4NPN" : { + "sku" : "433RA7YYXTQK4NPN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.large", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "450 Mbps", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Q7XJ7URGAZ8RWDX7" : { + "sku" : "Q7XJ7URGAZ8RWDX7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "hs1.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "17", + "physicalProcessor" : "Intel Xeon E5-2650", + "clockSpeed" : "2 GHz", + "memory" : "117 GiB", + "storage" : "24 x 2000", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:hs1.8xlarge", + "operation" : "RunInstances:000g", + "ecu" : "35", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5XKKG2W7WCHSD7VK" : { + "sku" : "5XKKG2W7WCHSD7VK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "1 x 120", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MGQK9YE98AEGCFNM" : { + "sku" : "MGQK9YE98AEGCFNM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "8 x 800 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i2.8xlarge", + "operation" : "RunInstances:0202", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FN8H3W6RA9EGGSDT" : { + "sku" : "FN8H3W6RA9EGGSDT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.4xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QW4FHUGEZYB74TW8" : { + "sku" : "QW4FHUGEZYB74TW8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.4xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VQ9NZ966GW3FJN84" : { + "sku" : "VQ9NZ966GW3FJN84", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "30 GiB", + "storage" : "2 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.4xlarge", + "operation" : "RunInstances:0102", + "ecu" : "55", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HU3VQPHQ79Z4SYU9" : { + "sku" : "HU3VQPHQ79Z4SYU9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "256 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.16xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "10000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AZ53HKVHTCDJVZZ5" : { + "sku" : "AZ53HKVHTCDJVZZ5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "30.5 GiB", + "storage" : "3 x 2000 HDD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:d2.xlarge", + "operation" : "RunInstances:000g", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2XTPEFBB8H3K4XFX" : { + "sku" : "2XTPEFBB8H3K4XFX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "30 GiB", + "storage" : "2 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.4xlarge", + "operation" : "RunInstances:0006", + "ecu" : "55", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VECCJJE6R85MP4ET" : { + "sku" : "VECCJJE6R85MP4ET", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "30.5 GiB", + "storage" : "3 x 2000 HDD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:d2.xlarge", + "operation" : "RunInstances:0800", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FDH7AF66PWQFC4ZX" : { + "sku" : "FDH7AF66PWQFC4ZX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:p3.16xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DRAB8D3XCC6DBS2S" : { + "sku" : "DRAB8D3XCC6DBS2S", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:p3.8xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "E3V2KVENAFSFNH7J" : { + "sku" : "E3V2KVENAFSFNH7J", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Inbound", + "fromLocation" : "Asia Pacific (Singapore)", + "fromLocationType" : "AWS Region", + "toLocation" : "US East (N. Virginia)", + "toLocationType" : "AWS Region", + "usagetype" : "APS1-USE1-AWS-In-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "M9PVZPV4MHCKEKFH" : { + "sku" : "M9PVZPV4MHCKEKFH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6UGXE3NSRP2KMUVK" : { + "sku" : "6UGXE3NSRP2KMUVK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "2 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i2.2xlarge", + "operation" : "RunInstances:0006", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PEZSCPW7MSBPD29U" : { + "sku" : "PEZSCPW7MSBPD29U", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.8xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "6000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9NMZ5HGTS2QHKR4V" : { + "sku" : "9NMZ5HGTS2QHKR4V", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.micro", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.3 GHz", + "memory" : "1 GiB", + "storage" : "EBS only", + "networkPerformance" : "Low to Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.micro", + "operation" : "RunInstances:000g", + "ecu" : "Variable", + "normalizationSizeFactor" : "0.5", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "785SBWPX67SS7DW5" : { + "sku" : "785SBWPX67SS7DW5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.2xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "984E6K3QWKATY2P9" : { + "sku" : "984E6K3QWKATY2P9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "4 x 1.9 NVMe SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.8xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2SN6CBPKJWMJK4W8" : { + "sku" : "2SN6CBPKJWMJK4W8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.18xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "72", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "144 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.18xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "9000 Mbps", + "ecu" : "278", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "144", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TYB68AE89KN6D5QZ" : { + "sku" : "TYB68AE89KN6D5QZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "3.75 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.large", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3P2M6AUE8TUFCQEM" : { + "sku" : "3P2M6AUE8TUFCQEM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "1 x 120", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MZHWDXN9MH59MH34" : { + "sku" : "MZHWDXN9MH59MH34", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "68.4 GiB", + "storage" : "2 x 840", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m2.4xlarge", + "operation" : "RunInstances:0202", + "ecu" : "26", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "X6RTWQ5CB38FVRKJ" : { + "sku" : "X6RTWQ5CB38FVRKJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 80 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.xlarge", + "operation" : "RunInstances:0002", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AN49H8NYXWHMRMMP" : { + "sku" : "AN49H8NYXWHMRMMP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "4 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:c5.large", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NPXGF3ETGHQX3T5Z" : { + "sku" : "NPXGF3ETGHQX3T5Z", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.medium", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "3.75 GiB", + "storage" : "1 x 410", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m1.medium", + "operation" : "RunInstances:000g", + "ecu" : "2", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "53K4ZCP8C6KM9F2C" : { + "sku" : "53K4ZCP8C6KM9F2C", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.large", + "operation" : "RunInstances:0002", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2WRUKSBG6TN3PSR2" : { + "sku" : "2WRUKSBG6TN3PSR2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "15 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:c4.2xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SN5UZ97VKJUAGEM5" : { + "sku" : "SN5UZ97VKJUAGEM5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "4 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.large", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RKQ5SSVTNQ4ZKZUB" : { + "sku" : "RKQ5SSVTNQ4ZKZUB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c1.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "7 GiB", + "storage" : "4 x 420", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:c1.xlarge", + "operation" : "RunInstances:0800", + "ecu" : "20", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZACFFWPPC668YV8A" : { + "sku" : "ZACFFWPPC668YV8A", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Inbound", + "fromLocation" : "Asia Pacific (Sydney)", + "fromLocationType" : "AWS Region", + "toLocation" : "US East (N. Virginia)", + "toLocationType" : "AWS Region", + "usagetype" : "APS2-USE1-AWS-In-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "PCMEF8PUJ2K4JEB5" : { + "sku" : "PCMEF8PUJ2K4JEB5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "68.4 GiB", + "storage" : "2 x 840", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m2.4xlarge", + "operation" : "RunInstances:0002", + "ecu" : "26", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "94FAEGR9U7X9TX7P" : { + "sku" : "94FAEGR9U7X9TX7P", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "7.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NSYRY4TWKKZQG94N" : { + "sku" : "NSYRY4TWKKZQG94N", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 0.475 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:i3.large", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "425 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BYRRQU7P3FHKBRZR" : { + "sku" : "BYRRQU7P3FHKBRZR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 0.95 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "850 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9VWFY2XSEFEGH78A" : { + "sku" : "9VWFY2XSEFEGH78A", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.4xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Q7J4FUMSN7DX2PHJ" : { + "sku" : "Q7J4FUMSN7DX2PHJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.large", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "400 Mbps", + "ecu" : "135", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SEEZD7FKBH2QXGYK" : { + "sku" : "SEEZD7FKBH2QXGYK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:p3.16xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "E5SXHSF9V8H3MYZD" : { + "sku" : "E5SXHSF9V8H3MYZD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cg1.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "GPU instance", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon x5570", + "memory" : "22.5 GiB", + "storage" : "2 x 840", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:cg1.4xlarge", + "operation" : "RunInstances:0800", + "ecu" : "33.5", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "D5X7AACFHDWJ6DC4" : { + "sku" : "D5X7AACFHDWJ6DC4", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:p3.16xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QKYEBPNSRB9NX7TU" : { + "sku" : "QKYEBPNSRB9NX7TU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:m3.2xlarge", + "operation" : "RunInstances:0800", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "J4T9ZF4AJ2DXE7SA" : { + "sku" : "J4T9ZF4AJ2DXE7SA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.10xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "40", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "160 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.10xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "80", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QNQNFXEZD4JV6K7J" : { + "sku" : "QNQNFXEZD4JV6K7J", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "hs1.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "17", + "physicalProcessor" : "Intel Xeon E5-2650", + "clockSpeed" : "2 GHz", + "memory" : "117 GiB", + "storage" : "24 x 2000", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:hs1.8xlarge", + "operation" : "RunInstances:0010", + "ecu" : "35", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FMZ94AJH8354XRME" : { + "sku" : "FMZ94AJH8354XRME", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "30.5 GiB", + "storage" : "3 x 2000 HDD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:d2.xlarge", + "operation" : "RunInstances:0010", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "H8WYYS7YF6HH44J2" : { + "sku" : "H8WYYS7YF6HH44J2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.medium", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.3 GHz", + "memory" : "4 GiB", + "storage" : "EBS only", + "networkPerformance" : "Low to Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.medium", + "operation" : "RunInstances:0010", + "ecu" : "Variable", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "8XV97FS637CF8UU5" : { + "sku" : "8XV97FS637CF8UU5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "64 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.4xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "53.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "8MH9R5J8CSVZTVPD" : { + "sku" : "8MH9R5J8CSVZTVPD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.large", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "450 Mbps", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5G5Y2SDTS4FP8GX7" : { + "sku" : "5G5Y2SDTS4FP8GX7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "8 x 800 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:i2.8xlarge", + "operation" : "RunInstances:0800", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5QR4TP35UWG5GTHK" : { + "sku" : "5QR4TP35UWG5GTHK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:c5.2xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EKP8GMP6PAVZ6VVY" : { + "sku" : "EKP8GMP6PAVZ6VVY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.10xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "40", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "160 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.10xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "80", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KWYNFA3ZNTZ3FWQA" : { + "sku" : "KWYNFA3ZNTZ3FWQA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "1 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.2xlarge", + "operation" : "RunInstances:000g", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SQ7KCWAADJKDQN9W" : { + "sku" : "SQ7KCWAADJKDQN9W", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "800 Mbps", + "ecu" : "Variable", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "S44SURMZ8AJWTZYH" : { + "sku" : "S44SURMZ8AJWTZYH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "61 GiB", + "storage" : "6 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:d2.2xlarge", + "operation" : "RunInstances:0002", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9HUMJZVBNYX2RZS7" : { + "sku" : "9HUMJZVBNYX2RZS7", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "1 x 240", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:x1e.2xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "23", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "N4AWRPYC2F4YT3WW" : { + "sku" : "N4AWRPYC2F4YT3WW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cr1.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670", + "memory" : "244 GiB", + "storage" : "2 x 120 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:cr1.8xlarge", + "operation" : "RunInstances:0010", + "ecu" : "88", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5XHJPTC7E6NA5KGC" : { + "sku" : "5XHJPTC7E6NA5KGC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "8 x 800 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:i2.8xlarge", + "operation" : "RunInstances:0800", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7HB6PUR4SRPNKUUK" : { + "sku" : "7HB6PUR4SRPNKUUK", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Inbound", + "fromLocation" : "South America (Sao Paulo)", + "fromLocationType" : "AWS Region", + "toLocation" : "US East (N. Virginia)", + "toLocationType" : "AWS Region", + "usagetype" : "SAE1-USE1-AWS-In-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "W832TY8QSXWJMAAY" : { + "sku" : "W832TY8QSXWJMAAY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:r4.8xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "6000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "8VNJC4YN7JDXVN8W" : { + "sku" : "8VNJC4YN7JDXVN8W", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.4xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "3000 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "59S5R83GFPUAGVR5" : { + "sku" : "59S5R83GFPUAGVR5", + "productFamily" : "NAT Gateway", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "group" : "NGW:NatGateway", + "groupDescription" : "Charge for per GB data processed by NatGateways", + "usagetype" : "NatGateway-Bytes", + "operation" : "NatGateway", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TF7VKDXQVWSCQYBK" : { + "sku" : "TF7VKDXQVWSCQYBK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.nano", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.3 GHz", + "memory" : "0.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "Low", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.nano", + "operation" : "RunInstances:000g", + "ecu" : "Variable", + "normalizationSizeFactor" : "0.25", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6UG463TFGD9X4M5A" : { + "sku" : "6UG463TFGD9X4M5A", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:m3.xlarge", + "operation" : "RunInstances:0800", + "ecu" : "13", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "57XGZG7W7W67682J" : { + "sku" : "57XGZG7W7W67682J", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.large", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "450 Mbps", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DFF53P772NKJNMUW" : { + "sku" : "DFF53P772NKJNMUW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.10xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "40", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "160 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.10xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "80", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6B92TZ937DKQEP93" : { + "sku" : "6B92TZ937DKQEP93", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Y4XD9NA45RXPDXY7" : { + "sku" : "Y4XD9NA45RXPDXY7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "15 GiB", + "storage" : "1 x 60 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:g2.2xlarge", + "operation" : "RunInstances:000g", + "ecu" : "26", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "V7ZPECCN7AX2ME3K" : { + "sku" : "V7ZPECCN7AX2ME3K", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.small", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.3 GHz", + "memory" : "2 GiB", + "storage" : "EBS only", + "networkPerformance" : "Low to Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.small", + "operation" : "RunInstances:0002", + "ecu" : "Variable", + "normalizationSizeFactor" : "1", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "H6JT2V67UAFS4Z2Y" : { + "sku" : "H6JT2V67UAFS4Z2Y", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cc2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670", + "clockSpeed" : "2.6 GHz", + "memory" : "60.5 GiB", + "storage" : "4 x 840", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:cc2.8xlarge", + "operation" : "RunInstances:0202", + "ecu" : "88", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Web", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DE3QV5WMKKGZRFHG" : { + "sku" : "DE3QV5WMKKGZRFHG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "60 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.8xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "132", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "R6T5AVAY3H4NQFQ4" : { + "sku" : "R6T5AVAY3H4NQFQ4", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.2xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "1600 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BFTE24AMMM45YVGQ" : { + "sku" : "BFTE24AMMM45YVGQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "30 GiB", + "storage" : "2 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.4xlarge", + "operation" : "RunInstances", + "ecu" : "55", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9RK78KZK2N3R66EZ" : { + "sku" : "9RK78KZK2N3R66EZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.large", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "7.5 GiB", + "storage" : "2 x 420", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m1.large", + "operation" : "RunInstances:0002", + "ecu" : "4", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZBVHTEDA4X8G6DPB" : { + "sku" : "ZBVHTEDA4X8G6DPB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "1 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.2xlarge", + "operation" : "RunInstances:0202", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2JE46CBZYW8NSTTW" : { + "sku" : "2JE46CBZYW8NSTTW", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Inbound", + "fromLocation" : "Canada (Central)", + "fromLocationType" : "AWS Region", + "toLocation" : "US East (N. Virginia)", + "toLocationType" : "AWS Region", + "usagetype" : "CAN1-USE1-AWS-In-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "PZAZYRGRJEARRZEW" : { + "sku" : "PZAZYRGRJEARRZEW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "1 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.2xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6FWXGNKA63Z8BMCH" : { + "sku" : "6FWXGNKA63Z8BMCH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cc2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670", + "clockSpeed" : "2.6 GHz", + "memory" : "60.5 GiB", + "storage" : "4 x 840", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:cc2.8xlarge", + "operation" : "RunInstances:0010", + "ecu" : "88", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "46RTKB3PY2USZ3JU" : { + "sku" : "46RTKB3PY2USZ3JU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:c5.4xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UKDR4WHMWWJ5CSDR" : { + "sku" : "UKDR4WHMWWJ5CSDR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.0 GHz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Low to Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:t2.large", + "operation" : "RunInstances:0800", + "ecu" : "Variable", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Y44NT84DJSFFW437" : { + "sku" : "Y44NT84DJSFFW437", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AMRJDA6P539Y5Q3X" : { + "sku" : "AMRJDA6P539Y5Q3X", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.2xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VERRUXNQ656VFYCC" : { + "sku" : "VERRUXNQ656VFYCC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.medium", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.3 GHz", + "memory" : "4 GiB", + "storage" : "EBS only", + "networkPerformance" : "Low to Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.medium", + "operation" : "RunInstances:0202", + "ecu" : "Variable", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7MS6E9W2YWKJZRX5" : { + "sku" : "7MS6E9W2YWKJZRX5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "7.5 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.xlarge", + "operation" : "RunInstances:0002", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6FVWSFZ39BEVJUVW" : { + "sku" : "6FVWSFZ39BEVJUVW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.large", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "400 Mbps", + "ecu" : "135", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YJAJYU26JMTDCU86" : { + "sku" : "YJAJYU26JMTDCU86", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "4 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.large", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TX7H54J52X2GTX6C" : { + "sku" : "TX7H54J52X2GTX6C", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.large", + "operation" : "RunInstances:000g", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PQSYKZPSZAFEZVK7" : { + "sku" : "PQSYKZPSZAFEZVK7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.medium", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "3.75 GiB", + "storage" : "1 x 4 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m3.medium", + "operation" : "RunInstances:0002", + "ecu" : "3", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XGC6ECJC7S6BUMKQ" : { + "sku" : "XGC6ECJC7S6BUMKQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "4 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:c5.large", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BA8XB9J4UJVPU6DS" : { + "sku" : "BA8XB9J4UJVPU6DS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:r4.xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "800 Mbps", + "ecu" : "Variable", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TZ5DAMR52CPHF2F6" : { + "sku" : "TZ5DAMR52CPHF2F6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7APFVGHQXR9QGJ23" : { + "sku" : "7APFVGHQXR9QGJ23", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:p3.16xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "W8BNBRKMXW7VU4BK" : { + "sku" : "W8BNBRKMXW7VU4BK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "15 GiB", + "storage" : "1 x 60 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:g2.2xlarge", + "operation" : "RunInstances:0010", + "ecu" : "26", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3EFSVCMF7TVMQPZ3" : { + "sku" : "3EFSVCMF7TVMQPZ3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "60 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.8xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "132", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PNUBVW4CPC8XA46W" : { + "sku" : "PNUBVW4CPC8XA46W", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "IntraRegion", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "US East (N. Virginia)", + "toLocationType" : "AWS Region", + "usagetype" : "DataTransfer-Regional-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "CNBCS3T6ZYW47Y8W" : { + "sku" : "CNBCS3T6ZYW47Y8W", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "8 x 1.9 NVMe SSD", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.16xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "V7TY6J97RFNXWD8V" : { + "sku" : "V7TY6J97RFNXWD8V", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:p3.2xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SG2J8TRQ57JQYCRA" : { + "sku" : "SG2J8TRQ57JQYCRA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "7.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "332GEN3V5S3FTKZJ" : { + "sku" : "332GEN3V5S3FTKZJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m3.xlarge", + "operation" : "RunInstances:000g", + "ecu" : "13", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "G9R9MZY25V8QGW6J" : { + "sku" : "G9R9MZY25V8QGW6J", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "15 GiB", + "storage" : "1 x 60 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:g2.2xlarge", + "operation" : "RunInstances:0202", + "ecu" : "26", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KR92PJED8B49G7EJ" : { + "sku" : "KR92PJED8B49G7EJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "60 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.8xlarge", + "operation" : "RunInstances:0002", + "ecu" : "108", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VA8Q43DVPX4YV6NG" : { + "sku" : "VA8Q43DVPX4YV6NG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.small", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.3 GHz", + "memory" : "2 GiB", + "storage" : "EBS only", + "networkPerformance" : "Low to Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.small", + "operation" : "RunInstances", + "ecu" : "Variable", + "normalizationSizeFactor" : "1", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CD2SCABAVGYKKGRQ" : { + "sku" : "CD2SCABAVGYKKGRQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cg1.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "GPU instance", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon x5570", + "memory" : "22.5 GiB", + "storage" : "2 x 840", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:cg1.4xlarge", + "operation" : "RunInstances:000g", + "ecu" : "33.5", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XBYJG3BUDTPN8NB9" : { + "sku" : "XBYJG3BUDTPN8NB9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cc2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670", + "clockSpeed" : "2.6 GHz", + "memory" : "60.5 GiB", + "storage" : "4 x 840", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:cc2.8xlarge", + "operation" : "RunInstances:0002", + "ecu" : "88", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DFJU7MKX4S9ZU689" : { + "sku" : "DFJU7MKX4S9ZU689", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "3,904 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.32xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "340", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4NYBH5BWKQ2W5ZQ5" : { + "sku" : "4NYBH5BWKQ2W5ZQ5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.medium", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "3.75 GiB", + "storage" : "1 x 4 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:m3.medium", + "operation" : "RunInstances:0800", + "ecu" : "3", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NARXYND9H74FTC7A" : { + "sku" : "NARXYND9H74FTC7A", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "8 x 800 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i2.8xlarge", + "operation" : "RunInstances", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XTNCFY9Y77D7WC9Y" : { + "sku" : "XTNCFY9Y77D7WC9Y", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YM5RNCFKGBB4T3QM" : { + "sku" : "YM5RNCFKGBB4T3QM", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "1 x 480", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.4xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "47", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RSN2RZ8JSX98HFVM" : { + "sku" : "RSN2RZ8JSX98HFVM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "1 x 320 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.4xlarge", + "operation" : "RunInstances", + "ecu" : "52", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QAMMQS9R5WC8PTN7" : { + "sku" : "QAMMQS9R5WC8PTN7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "8 x 1.9 NVMe SSD", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.16xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9M4946BDX6NVDS6R" : { + "sku" : "9M4946BDX6NVDS6R", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.4xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YS8Z2EM6AZQYWEY8" : { + "sku" : "YS8Z2EM6AZQYWEY8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "15 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.2xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "B8SBWVGGW2W6MUVG" : { + "sku" : "B8SBWVGGW2W6MUVG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "7.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BWPP6VPRP5NECMAA" : { + "sku" : "BWPP6VPRP5NECMAA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.0 GHz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.2xlarge", + "operation" : "RunInstances:000g", + "ecu" : "Variable", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FXDDR8N72HV8JWMF" : { + "sku" : "FXDDR8N72HV8JWMF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:p3.16xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "USYT2WUJN73X3QSZ" : { + "sku" : "USYT2WUJN73X3QSZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "60 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.8xlarge", + "operation" : "RunInstances:0006", + "ecu" : "108", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9QAKNX2JRT8D5B76" : { + "sku" : "9QAKNX2JRT8D5B76", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 80 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:r3.xlarge", + "operation" : "RunInstances:0800", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4QZ87TMBCWWNPSG4" : { + "sku" : "4QZ87TMBCWWNPSG4", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:p2.xlarge", + "operation" : "RunInstances:0800", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KNZCWW7PZRYSMJ6S" : { + "sku" : "KNZCWW7PZRYSMJ6S", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 0.475 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.large", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "425 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BZ7GFWTXT5ST7P4K" : { + "sku" : "BZ7GFWTXT5ST7P4K", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:r4.4xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "3000 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YA3C3GQF9SK75Y3V" : { + "sku" : "YA3C3GQF9SK75Y3V", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "800 Mbps", + "ecu" : "Variable", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TGH4GCMRQQNEDGCJ" : { + "sku" : "TGH4GCMRQQNEDGCJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.18xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "72", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "144 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.18xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "9000 Mbps", + "ecu" : "278", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "144", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SA3SBP2T8HCQWD6V" : { + "sku" : "SA3SBP2T8HCQWD6V", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.9xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "72 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.9xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "4500 Mbps", + "ecu" : "139", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "72", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TS9C3QP757SZ6Y65" : { + "sku" : "TS9C3QP757SZ6Y65", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.2xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "1600 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "G6V333UDG5YNV6DP" : { + "sku" : "G6V333UDG5YNV6DP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m3.2xlarge", + "operation" : "RunInstances:0102", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MR5MW694BZTU3QD6" : { + "sku" : "MR5MW694BZTU3QD6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1.16xlarge", + "operation" : "RunInstances:0102", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Ent", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MHMTSP3T6M2NU383" : { + "sku" : "MHMTSP3T6M2NU383", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:p3.16xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZMGP8SNR2VJEV8FJ" : { + "sku" : "ZMGP8SNR2VJEV8FJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.8xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "6000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "R6ZE4UJ2C8B36SBY" : { + "sku" : "R6ZE4UJ2C8B36SBY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c1.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "7 GiB", + "storage" : "4 x 420", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c1.xlarge", + "operation" : "RunInstances:0006", + "ecu" : "20", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GVHWDK4ADFF5B3WR" : { + "sku" : "GVHWDK4ADFF5B3WR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cr1.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670", + "memory" : "244 GiB", + "storage" : "2 x 120 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:cr1.8xlarge", + "operation" : "RunInstances:0010", + "ecu" : "88", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YW5M3UMGGY95EQKF" : { + "sku" : "YW5M3UMGGY95EQKF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m3.xlarge", + "operation" : "RunInstances", + "ecu" : "13", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CHYHEFYUM8H6G965" : { + "sku" : "CHYHEFYUM8H6G965", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "1 x 240", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:x1e.2xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "23", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5WSKPWBZAEKKQ6RB" : { + "sku" : "5WSKPWBZAEKKQ6RB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "1 x 320 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.4xlarge", + "operation" : "RunInstances:000g", + "ecu" : "52", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JC8C66GWV5KYJPAD" : { + "sku" : "JC8C66GWV5KYJPAD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "4 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i2.4xlarge", + "operation" : "RunInstances:0002", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DS6NATW2S9Q4UKZS" : { + "sku" : "DS6NATW2S9Q4UKZS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c1.medium", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "1.7 GiB", + "storage" : "1 x 350", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c1.medium", + "operation" : "RunInstances:0010", + "ecu" : "2", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MK3NYJPZ3RCV7QNY" : { + "sku" : "MK3NYJPZ3RCV7QNY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6SWWQPFNK6JG5AHS" : { + "sku" : "6SWWQPFNK6JG5AHS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m3.2xlarge", + "operation" : "RunInstances:0006", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YKQEND52YE639ZHB" : { + "sku" : "YKQEND52YE639ZHB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.16xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "12000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "68TFKFM9J33ZZB97" : { + "sku" : "68TFKFM9J33ZZB97", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.4xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "3000 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5B3GT4NNY7ZCKUY7" : { + "sku" : "5B3GT4NNY7ZCKUY7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "3,904 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.32xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "340", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PPNHZGKEWXG9QZV3" : { + "sku" : "PPNHZGKEWXG9QZV3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "256 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.16xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "10000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "T87WP8AU8KNBMRYM" : { + "sku" : "T87WP8AU8KNBMRYM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "2 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i2.2xlarge", + "operation" : "RunInstances:0102", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RSKUKWVCVPG8AZB5" : { + "sku" : "RSKUKWVCVPG8AZB5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "30.5 GiB", + "storage" : "3 x 2000 HDD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:d2.xlarge", + "operation" : "RunInstances", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TRGMRGV2R47AP6CQ" : { + "sku" : "TRGMRGV2R47AP6CQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:g3.4xlarge", + "operation" : "Hourly", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "0", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "95TPTPM37YTV8B2P" : { + "sku" : "95TPTPM37YTV8B2P", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "30 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.4xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XP36THJWHRJ7JUHM" : { + "sku" : "XP36THJWHRJ7JUHM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "1 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.2xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MSQ5AMG3XXYG534Q" : { + "sku" : "MSQ5AMG3XXYG534Q", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:p3.2xlarge", + "operation" : "Hourly", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PEEKBP32QZKKEGWF" : { + "sku" : "PEEKBP32QZKKEGWF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "8 x 1.9 NVMe SSD", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.16xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MAVGNUA5DQ5SM9C7" : { + "sku" : "MAVGNUA5DQ5SM9C7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m3.xlarge", + "operation" : "RunInstances:000g", + "ecu" : "13", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DMG3Z3PAUFNBRWWT" : { + "sku" : "DMG3Z3PAUFNBRWWT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "3.75 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.large", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "A5V9YQVUZMY5XA83" : { + "sku" : "A5V9YQVUZMY5XA83", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.2xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "J7QRRNJ6GRX8D5SH" : { + "sku" : "J7QRRNJ6GRX8D5SH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m3.xlarge", + "operation" : "RunInstances:0006", + "ecu" : "13", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MV64DNBJGVHEPRZX" : { + "sku" : "MV64DNBJGVHEPRZX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.4xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "3000 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3X6C8WE2N2TR8BTN" : { + "sku" : "3X6C8WE2N2TR8BTN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:m4.large", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "450 Mbps", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EXEUENAPGQHAQGBS" : { + "sku" : "EXEUENAPGQHAQGBS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "15 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:c4.2xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5SZ449G4YHET8NEX" : { + "sku" : "5SZ449G4YHET8NEX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.medium", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "3.75 GiB", + "storage" : "1 x 4 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m3.medium", + "operation" : "RunInstances", + "ecu" : "3", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "S6WMG2PUJJT43MCU" : { + "sku" : "S6WMG2PUJJT43MCU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1.16xlarge", + "operation" : "RunInstances", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BJMX7R52F3VNFNEH" : { + "sku" : "BJMX7R52F3VNFNEH", + "productFamily" : "Load Balancer-Application", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "group" : "ELB:Balancer", + "groupDescription" : "LoadBalancer hourly usage by Application Load Balancer", + "usagetype" : "LoadBalancerUsage", + "operation" : "LoadBalancing:Application", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UFNYR85GSNMJPAWG" : { + "sku" : "UFNYR85GSNMJPAWG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "4 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.large", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TB4MYGC7MSS5DCKM" : { + "sku" : "TB4MYGC7MSS5DCKM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.2xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GBSWCG32FV9G4PVY" : { + "sku" : "GBSWCG32FV9G4PVY", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Outbound", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "US East (Ohio)", + "toLocationType" : "AWS Region", + "usagetype" : "USE1-USE2-AWS-Out-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "58HUPRT96M5H8VUW" : { + "sku" : "58HUPRT96M5H8VUW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:p2.xlarge", + "operation" : "RunInstances", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EKUJM8CMFGA8AN48" : { + "sku" : "EKUJM8CMFGA8AN48", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.4xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2HFR6K6Q9KU8Q5YK" : { + "sku" : "2HFR6K6Q9KU8Q5YK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.large", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "400 Mbps", + "ecu" : "135", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UHM8B3D5UY4TJ8DU" : { + "sku" : "UHM8B3D5UY4TJ8DU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.2xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "1600 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UKZHD7X8AUPRMNQ7" : { + "sku" : "UKZHD7X8AUPRMNQ7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "7.5 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:c3.xlarge", + "operation" : "RunInstances:0800", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YGU2QZY8VPP94FSR" : { + "sku" : "YGU2QZY8VPP94FSR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "7.5 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m3.large", + "operation" : "RunInstances", + "ecu" : "6.5", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QPKCG2B2XC9C53GT" : { + "sku" : "QPKCG2B2XC9C53GT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.2xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DXZA4TZJFG2BW52U" : { + "sku" : "DXZA4TZJFG2BW52U", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.16xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "179", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YC7GJ8CDWFPWMK89" : { + "sku" : "YC7GJ8CDWFPWMK89", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.10xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "40", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "160 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.10xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "80", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6GASB9Z3J6ZHWKU5" : { + "sku" : "6GASB9Z3J6ZHWKU5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cr1.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670", + "memory" : "244 GiB", + "storage" : "2 x 120 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:cr1.8xlarge", + "operation" : "RunInstances:0002", + "ecu" : "88", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6N5AHFKQR9A49BXT" : { + "sku" : "6N5AHFKQR9A49BXT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:p2.8xlarge", + "operation" : "RunInstances:0102", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4EHZWPPGG7Y9CC73" : { + "sku" : "4EHZWPPGG7Y9CC73", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "15 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.2xlarge", + "operation" : "RunInstances:000g", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SDXF3BRYZZTH5K7Q" : { + "sku" : "SDXF3BRYZZTH5K7Q", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "3,904 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.32xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "340", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YBUQUQQV5SHSS34G" : { + "sku" : "YBUQUQQV5SHSS34G", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.2xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "WMZMV9VFMDY39S43" : { + "sku" : "WMZMV9VFMDY39S43", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "768 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:p2.16xlarge", + "operation" : "RunInstances:0002", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "16", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4Q997J8DQYG2634Z" : { + "sku" : "4Q997J8DQYG2634Z", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "68.4 GiB", + "storage" : "2 x 840", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m2.4xlarge", + "operation" : "RunInstances:0006", + "ecu" : "26", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "M9RJASMMSC92RM2J" : { + "sku" : "M9RJASMMSC92RM2J", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "7.5 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:m3.large", + "operation" : "RunInstances:0800", + "ecu" : "6.5", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "T3YPSF6NJ69JWWNM" : { + "sku" : "T3YPSF6NJ69JWWNM", + "productFamily" : "Load Balancer", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "group" : "ELB:Balancer", + "groupDescription" : "Standard Elastic Load Balancer", + "usagetype" : "LoadBalancerUsage", + "operation" : "LoadBalancing", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6CNJHBFSUT74HD2K" : { + "sku" : "6CNJHBFSUT74HD2K", + "productFamily" : "Load Balancer-Network", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "group" : "ELB:Balancer", + "groupDescription" : "Used Network load balancer capacity units-hr", + "usagetype" : "LCUUsage", + "operation" : "LoadBalancing:Network", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "M57UMFD3S77UZWZ3" : { + "sku" : "M57UMFD3S77UZWZ3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1.16xlarge", + "operation" : "RunInstances:0202", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Web", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VZ59SXRTT8GCK9N3" : { + "sku" : "VZ59SXRTT8GCK9N3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m3.2xlarge", + "operation" : "RunInstances:0010", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3EADMJNNJS3U42HF" : { + "sku" : "3EADMJNNJS3U42HF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:c5.2xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "V6MQGHYV9HMHTNFE" : { + "sku" : "V6MQGHYV9HMHTNFE", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "17.1 GiB", + "storage" : "1 x 420", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m2.xlarge", + "operation" : "RunInstances:0010", + "ecu" : "6.5", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QHEP8CAE9HJS33WN" : { + "sku" : "QHEP8CAE9HJS33WN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "15 GiB", + "storage" : "1 x 60 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:g2.2xlarge", + "operation" : "RunInstances:000g", + "ecu" : "26", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YP5VZWVE6N228WH8" : { + "sku" : "YP5VZWVE6N228WH8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1.32xlarge", + "operation" : "RunInstances:0006", + "ecu" : "349", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "SQL Std", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TNE6USZS8RUFQW28" : { + "sku" : "TNE6USZS8RUFQW28", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 800 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i2.xlarge", + "operation" : "RunInstances:000g", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CZ3H3JJEPGJZKTU9" : { + "sku" : "CZ3H3JJEPGJZKTU9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:r3.8xlarge", + "operation" : "RunInstances:0800", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "8QAR2NUMVX46Z9J5" : { + "sku" : "8QAR2NUMVX46Z9J5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "1 x 320 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.4xlarge", + "operation" : "RunInstances:0202", + "ecu" : "52", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VN3PHQUB842ETS6X" : { + "sku" : "VN3PHQUB842ETS6X", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "4 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i2.4xlarge", + "operation" : "RunInstances:000g", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ATP45XBTJS5DKRMF" : { + "sku" : "ATP45XBTJS5DKRMF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "60 GiB", + "storage" : "2 x 120 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:g2.8xlarge", + "operation" : "RunInstances:0006", + "ecu" : "104", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XFJWBADTXUKBRGTC" : { + "sku" : "XFJWBADTXUKBRGTC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.10xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "40", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "160 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.10xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "80", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3RTZAQ64564SNQ7T" : { + "sku" : "3RTZAQ64564SNQ7T", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.9xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "72 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.9xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "4500 Mbps", + "ecu" : "139", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "72", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "G6HSPJYKGG7P9NJR" : { + "sku" : "G6HSPJYKGG7P9NJR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "7.5 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.xlarge", + "operation" : "RunInstances:0010", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "783XD5AJCNJSV3H7" : { + "sku" : "783XD5AJCNJSV3H7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cr1.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670", + "memory" : "244 GiB", + "storage" : "2 x 120 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:cr1.8xlarge", + "operation" : "RunInstances:0002", + "ecu" : "88", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SSTT3HA4W7HHVR38" : { + "sku" : "SSTT3HA4W7HHVR38", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cc2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670", + "clockSpeed" : "2.6 GHz", + "memory" : "60.5 GiB", + "storage" : "4 x 840", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:cc2.8xlarge", + "operation" : "RunInstances:0006", + "ecu" : "88", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Std", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5E4JKRKRN35X4R5X" : { + "sku" : "5E4JKRKRN35X4R5X", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.9xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "72 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.9xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "4500 Mbps", + "ecu" : "139", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "72", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "H9KMFFHRW3R5NVSJ" : { + "sku" : "H9KMFFHRW3R5NVSJ", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 960", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.8xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "91", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UKGSFRXY8AQU42DQ" : { + "sku" : "UKGSFRXY8AQU42DQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.4xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4WS6PX29WVZCPFGT" : { + "sku" : "4WS6PX29WVZCPFGT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "17.1 GiB", + "storage" : "1 x 420", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:m2.xlarge", + "operation" : "RunInstances:0800", + "ecu" : "6.5", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3A65FUFDYWGRUUNU" : { + "sku" : "3A65FUFDYWGRUUNU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "1 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:i3.2xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TUK52HKAU24AGZAB" : { + "sku" : "TUK52HKAU24AGZAB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "3.75 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.large", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "M3C347MWQ8PPQ83Q" : { + "sku" : "M3C347MWQ8PPQ83Q", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "15 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.2xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Z35WNPQJZZCRRJYH" : { + "sku" : "Z35WNPQJZZCRRJYH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "34.2 GiB", + "storage" : "1 x 850", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m2.2xlarge", + "operation" : "RunInstances:0002", + "ecu" : "13", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SNK426EAU6XEHU6F" : { + "sku" : "SNK426EAU6XEHU6F", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:m4.xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NQXBP3Y49DB4QUFW" : { + "sku" : "NQXBP3Y49DB4QUFW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "1 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.2xlarge", + "operation" : "RunInstances:0006", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4EJ6YKYP3U22GDYZ" : { + "sku" : "4EJ6YKYP3U22GDYZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.9xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "72 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.9xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "4500 Mbps", + "ecu" : "139", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "72", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "63ADXUYM8Q7RHXYU" : { + "sku" : "63ADXUYM8Q7RHXYU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "244 GiB", + "storage" : "24 x 2000 HDD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:d2.8xlarge", + "operation" : "RunInstances:0010", + "ecu" : "116", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YY6BTZ5HW8FD5V6Q" : { + "sku" : "YY6BTZ5HW8FD5V6Q", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "244 GiB", + "storage" : "24 x 2000 HDD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:d2.8xlarge", + "operation" : "RunInstances:000g", + "ecu" : "116", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GXJXWPH2ZPJQ8XXJ" : { + "sku" : "GXJXWPH2ZPJQ8XXJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.2xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "1600 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3A8W7GXJJKZB5V45" : { + "sku" : "3A8W7GXJJKZB5V45", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.large", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "7.5 GiB", + "storage" : "2 x 420", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m1.large", + "operation" : "RunInstances:0010", + "ecu" : "4", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9MCJXY6ZTFBSRNZB" : { + "sku" : "9MCJXY6ZTFBSRNZB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cc2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670", + "clockSpeed" : "2.6 GHz", + "memory" : "60.5 GiB", + "storage" : "4 x 840", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:cc2.8xlarge", + "operation" : "RunInstances:0010", + "ecu" : "88", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RTF2UNENTQNKBZS3" : { + "sku" : "RTF2UNENTQNKBZS3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "2 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.4xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VMVDDQB5JVUS29SY" : { + "sku" : "VMVDDQB5JVUS29SY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "4 x 1.9 NVMe SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.8xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "8SPMKN7PWFUUUK25" : { + "sku" : "8SPMKN7PWFUUUK25", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "30 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.4xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "WD5HZXPHH8Z3VFSD" : { + "sku" : "WD5HZXPHH8Z3VFSD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "34.2 GiB", + "storage" : "1 x 850", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:m2.2xlarge", + "operation" : "RunInstances:0800", + "ecu" : "13", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "WBC9QMDGSSY2UNJA" : { + "sku" : "WBC9QMDGSSY2UNJA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "768 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:p2.16xlarge", + "operation" : "Hourly", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "16", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "F7E2CXKVAY923NDJ" : { + "sku" : "F7E2CXKVAY923NDJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m3.2xlarge", + "operation" : "RunInstances:0002", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SSME5U3BWQXEH2ES" : { + "sku" : "SSME5U3BWQXEH2ES", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.small", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "1.7 GiB", + "storage" : "1 x 160", + "networkPerformance" : "Low", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage", + "operation" : "RunInstances:000g", + "ecu" : "Variable", + "normalizationSizeFactor" : "1", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CDK4SMXRA7K87J58" : { + "sku" : "CDK4SMXRA7K87J58", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "7.5 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m3.large", + "operation" : "RunInstances", + "ecu" : "6.5", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "J7CC798XUX322NAB" : { + "sku" : "J7CC798XUX322NAB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.18xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "72", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "144 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:c5.18xlarge", + "operation" : "Hourly", + "dedicatedEbsThroughput" : "9000 Mbps", + "ecu" : "278", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "144", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MU4CDFJXM862BVJ3" : { + "sku" : "MU4CDFJXM862BVJ3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "1 x 120", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "76QZ6KV3AUVAJ4PP" : { + "sku" : "76QZ6KV3AUVAJ4PP", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 960", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.8xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "91", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "J4WQF46DKE3825ST" : { + "sku" : "J4WQF46DKE3825ST", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "30 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.4xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KBMDCRY5348X5TCN" : { + "sku" : "KBMDCRY5348X5TCN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "1 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.2xlarge", + "operation" : "RunInstances:000g", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "V57DX5BAS5NCGXY8" : { + "sku" : "V57DX5BAS5NCGXY8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "3.75 GiB", + "storage" : "2 x 16 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.large", + "operation" : "RunInstances:0006", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RJEQJTKJA4WCBCRN" : { + "sku" : "RJEQJTKJA4WCBCRN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "15 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.2xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "K48QRUR7K3WJWD3Y" : { + "sku" : "K48QRUR7K3WJWD3Y", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:p2.8xlarge", + "operation" : "RunInstances:0800", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Z684JBY4N78FZQ8Q" : { + "sku" : "Z684JBY4N78FZQ8Q", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.large", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "450 Mbps", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JDJYS4AM5CW779YH" : { + "sku" : "JDJYS4AM5CW779YH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "7.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:c4.xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TTS386B2SXKQXGZP" : { + "sku" : "TTS386B2SXKQXGZP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.8xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "6000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AWHZBBETT4RF387X" : { + "sku" : "AWHZBBETT4RF387X", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "34.2 GiB", + "storage" : "1 x 850", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m2.2xlarge", + "operation" : "RunInstances:0202", + "ecu" : "13", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZS78J2NQU7SMU7HB" : { + "sku" : "ZS78J2NQU7SMU7HB", + "productFamily" : "Dedicated Host", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "NA", + "storage" : "NA", + "networkPerformance" : "NA", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostUsage:r3", + "operation" : "RunInstances", + "ecu" : "NA", + "instanceCapacity2xlarge" : "4", + "instanceCapacity4xlarge" : "2", + "instanceCapacity8xlarge" : "1", + "instanceCapacityLarge" : "16", + "instanceCapacityXlarge" : "8", + "normalizationSizeFactor" : "NA", + "physicalCores" : "20", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UHW9QAKPPBUC6E5K" : { + "sku" : "UHW9QAKPPBUC6E5K", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "15 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.2xlarge", + "operation" : "RunInstances", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZWKFSQ2ZGE2PEHZQ" : { + "sku" : "ZWKFSQ2ZGE2PEHZQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "1 x 320 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.4xlarge", + "operation" : "RunInstances:0006", + "ecu" : "52", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AP8CRXEFDUCGR7QY" : { + "sku" : "AP8CRXEFDUCGR7QY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.large", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "450 Mbps", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JB6B8VEMWKJACNH2" : { + "sku" : "JB6B8VEMWKJACNH2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "15 GiB", + "storage" : "1 x 60 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "ebsOptimized" : "Yes", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:g2.2xlarge", + "operation" : "Hourly", + "ecu" : "26", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BYDPYVAT6B57HKJT" : { + "sku" : "BYDPYVAT6B57HKJT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "1 x 120", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BUBBYJ9CTGMQDCAN" : { + "sku" : "BUBBYJ9CTGMQDCAN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:g3.16xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "4", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TE86D77WEKH98NPZ" : { + "sku" : "TE86D77WEKH98NPZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "60 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.8xlarge", + "operation" : "RunInstances:0102", + "ecu" : "108", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "X2CZGDXUSRSFGZQ7" : { + "sku" : "X2CZGDXUSRSFGZQ7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "1 x 320 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.4xlarge", + "operation" : "RunInstances:0010", + "ecu" : "52", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VJ4XPF7YHUHKA3ZJ" : { + "sku" : "VJ4XPF7YHUHKA3ZJ", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 960", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.8xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "91", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7JWZZUN6V6RU9JES" : { + "sku" : "7JWZZUN6V6RU9JES", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cc2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670", + "clockSpeed" : "2.6 GHz", + "memory" : "60.5 GiB", + "storage" : "4 x 840", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:cc2.8xlarge", + "operation" : "RunInstances:000g", + "ecu" : "88", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6RTK76EDTUWSCDZ8" : { + "sku" : "6RTK76EDTUWSCDZ8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.9xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "72 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:c5.9xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "4500 Mbps", + "ecu" : "139", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "72", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NJGTPJ6BZDGQXTUY" : { + "sku" : "NJGTPJ6BZDGQXTUY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.9xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "72 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.9xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "4500 Mbps", + "ecu" : "139", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "72", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Y5HXB4JMEUSW7MKH" : { + "sku" : "Y5HXB4JMEUSW7MKH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "2 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:i3.4xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "H4ERZSZPBES3WKPY" : { + "sku" : "H4ERZSZPBES3WKPY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "256 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.16xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "10000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3RVR33X4EBZ55XDC" : { + "sku" : "3RVR33X4EBZ55XDC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.4xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "V9GRWABS3YTSNDT3" : { + "sku" : "V9GRWABS3YTSNDT3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "4 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.large", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QMW9CSCFTNV2H99M" : { + "sku" : "QMW9CSCFTNV2H99M", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "800 Mbps", + "ecu" : "Variable", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6BD6MNUEKG75NY7W" : { + "sku" : "6BD6MNUEKG75NY7W", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3X6QM8VEN9SGUP4E" : { + "sku" : "3X6QM8VEN9SGUP4E", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "68.4 GiB", + "storage" : "2 x 840", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m2.4xlarge", + "operation" : "RunInstances", + "ecu" : "26", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "E598E3ESM66XHVUP" : { + "sku" : "E598E3ESM66XHVUP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.medium", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "3.75 GiB", + "storage" : "1 x 4 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m3.medium", + "operation" : "RunInstances:0006", + "ecu" : "3", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HK2GMCFHXFH3NGAD" : { + "sku" : "HK2GMCFHXFH3NGAD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:p2.xlarge", + "operation" : "RunInstances:0010", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "N23UBSTNARQRHWES" : { + "sku" : "N23UBSTNARQRHWES", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.8xlarge", + "operation" : "RunInstances:000g", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6U6GZ2DN4RFCJ7D9" : { + "sku" : "6U6GZ2DN4RFCJ7D9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "4 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.large", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AXBKPP5M3DJRHZ89" : { + "sku" : "AXBKPP5M3DJRHZ89", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 960", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:x1e.8xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "91", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4V9HUNHYA5JHS8MD" : { + "sku" : "4V9HUNHYA5JHS8MD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.9xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "72 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.9xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "4500 Mbps", + "ecu" : "139", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "72", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MEMWYBVHG4M8SJQ8" : { + "sku" : "MEMWYBVHG4M8SJQ8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "122 GiB", + "storage" : "12 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:d2.4xlarge", + "operation" : "RunInstances:0800", + "ecu" : "56", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "T9TYJWD5FYY22EY9" : { + "sku" : "T9TYJWD5FYY22EY9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.9xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "72 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.9xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "4500 Mbps", + "ecu" : "139", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "72", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "R48KWC2ZSMSQE76W" : { + "sku" : "R48KWC2ZSMSQE76W", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 800 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i2.xlarge", + "operation" : "RunInstances", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RSYDZDVYE5V36ECZ" : { + "sku" : "RSYDZDVYE5V36ECZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "2 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i2.2xlarge", + "operation" : "RunInstances:000g", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CBEVSDJQW44MTAH9" : { + "sku" : "CBEVSDJQW44MTAH9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "800 Mbps", + "ecu" : "Variable", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YRB3EKJ97RGRBWWN" : { + "sku" : "YRB3EKJ97RGRBWWN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "7.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PXS7W75RUSBYTA74" : { + "sku" : "PXS7W75RUSBYTA74", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "7.5 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m3.large", + "operation" : "RunInstances:0006", + "ecu" : "6.5", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3BZUZ8TX5Q6KDMND" : { + "sku" : "3BZUZ8TX5Q6KDMND", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "17.1 GiB", + "storage" : "1 x 420", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m2.xlarge", + "operation" : "RunInstances:0010", + "ecu" : "6.5", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "U9GUPGBUQ64FG73U" : { + "sku" : "U9GUPGBUQ64FG73U", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DQKFGKR56DWDJFRK" : { + "sku" : "DQKFGKR56DWDJFRK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "8 x 800 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i2.8xlarge", + "operation" : "RunInstances:0102", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "X6FJM3B6HUSDM27X" : { + "sku" : "X6FJM3B6HUSDM27X", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "1 x 240", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.2xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "23", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XVCPRU82RU77VTVY" : { + "sku" : "XVCPRU82RU77VTVY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "4 x 1.9 NVMe SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.8xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JY3YATTYGNTRDKBA" : { + "sku" : "JY3YATTYGNTRDKBA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:p3.2xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "T9CM8EYXT4ZBVWNE" : { + "sku" : "T9CM8EYXT4ZBVWNE", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "4 x 1.9 NVMe SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:i3.8xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XC5ZWJZS84Q3XZTZ" : { + "sku" : "XC5ZWJZS84Q3XZTZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:g3.4xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "0", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "E7FZJRV7JXQJXFED" : { + "sku" : "E7FZJRV7JXQJXFED", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "30 GiB", + "storage" : "2 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.4xlarge", + "operation" : "RunInstances:0202", + "ecu" : "55", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "R7PB2UQAZQDARZ8X" : { + "sku" : "R7PB2UQAZQDARZ8X", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "1 x 480", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.4xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "47", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "429MR8T2YBX27EZR" : { + "sku" : "429MR8T2YBX27EZR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "30 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.4xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "65VXSY6D3U449E4W" : { + "sku" : "65VXSY6D3U449E4W", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "3,904 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.32xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "340", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FVBHJHDCMPPWYN7V" : { + "sku" : "FVBHJHDCMPPWYN7V", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 0.95 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "850 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "W7UEAU2BZ54FZMWV" : { + "sku" : "W7UEAU2BZ54FZMWV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "1 x 320 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.4xlarge", + "operation" : "RunInstances:0202", + "ecu" : "52", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XCS4G266BD9VMZE6" : { + "sku" : "XCS4G266BD9VMZE6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "8 x 1.9 NVMe SSD", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.16xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CE5S3J445F4X6VYF" : { + "sku" : "CE5S3J445F4X6VYF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.16xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "12000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "P6N8TE7UUQ73EHRS" : { + "sku" : "P6N8TE7UUQ73EHRS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "4 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.large", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YT69AAZT9MZJXMUB" : { + "sku" : "YT69AAZT9MZJXMUB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "1 x 120", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZPYBCRBFCYN9APCP" : { + "sku" : "ZPYBCRBFCYN9APCP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "30.5 GiB", + "storage" : "3 x 2000 HDD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:d2.xlarge", + "operation" : "RunInstances:000g", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NZFDNPR89WKZ6C5N" : { + "sku" : "NZFDNPR89WKZ6C5N", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "15 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.2xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7H6M5F6HHQ5YHT4V" : { + "sku" : "7H6M5F6HHQ5YHT4V", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "1 x 480", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.4xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "47", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZE2F35FX6PVMD63Y" : { + "sku" : "ZE2F35FX6PVMD63Y", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "30.5 GiB", + "storage" : "3 x 2000 HDD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:d2.xlarge", + "operation" : "RunInstances:000g", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4VV6V3MAZZGV47MU" : { + "sku" : "4VV6V3MAZZGV47MU", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "1 x 240", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.2xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "23", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5B3J35TKN9FFQAR9" : { + "sku" : "5B3J35TKN9FFQAR9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 800 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i2.xlarge", + "operation" : "RunInstances:000g", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9YBEBPDN4MSDTQMG" : { + "sku" : "9YBEBPDN4MSDTQMG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.4xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "3000 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "D35U33PKHD4MZRB5" : { + "sku" : "D35U33PKHD4MZRB5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 0.95 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "850 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "J6U6GMEFVH686HBN" : { + "sku" : "J6U6GMEFVH686HBN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "17.1 GiB", + "storage" : "1 x 420", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m2.xlarge", + "operation" : "RunInstances", + "ecu" : "6.5", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GHUDYUUVD52EBZW2" : { + "sku" : "GHUDYUUVD52EBZW2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "122 GiB", + "storage" : "12 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:d2.4xlarge", + "operation" : "RunInstances", + "ecu" : "56", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RVMQS6Z2ZKDKPUUX" : { + "sku" : "RVMQS6Z2ZKDKPUUX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "f1.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:f1.2xlarge", + "operation" : "RunInstances", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QEN4NKBP2QQKVJGV" : { + "sku" : "QEN4NKBP2QQKVJGV", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "1 x 480", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.4xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "47", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RKUUP7AYRVCXF3ZJ" : { + "sku" : "RKUUP7AYRVCXF3ZJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.large", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "7.5 GiB", + "storage" : "2 x 420", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m1.large", + "operation" : "RunInstances:0002", + "ecu" : "4", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "56STRVG6SNYJSZDZ" : { + "sku" : "56STRVG6SNYJSZDZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c1.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "7 GiB", + "storage" : "4 x 420", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:c1.xlarge", + "operation" : "RunInstances:0800", + "ecu" : "20", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "63BQRF7SF8WK9XJC" : { + "sku" : "63BQRF7SF8WK9XJC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "15 GiB", + "storage" : "1 x 60 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:g2.2xlarge", + "operation" : "RunInstances:0002", + "ecu" : "26", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FWCGRGHA7B5TAJDH" : { + "sku" : "FWCGRGHA7B5TAJDH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "4 x 1.9 NVMe SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.8xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KV8S83TSUZZQ2X2K" : { + "sku" : "KV8S83TSUZZQ2X2K", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 0.475 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.large", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "425 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Z65ZPSYYEJ69PVAM" : { + "sku" : "Z65ZPSYYEJ69PVAM", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 960", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.8xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "91", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3ZYHHAY9TXWX5S7X" : { + "sku" : "3ZYHHAY9TXWX5S7X", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QY3YSEST3C6FQNQH" : { + "sku" : "QY3YSEST3C6FQNQH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.medium", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.3 GHz", + "memory" : "4 GiB", + "storage" : "EBS only", + "networkPerformance" : "Low to Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.medium", + "operation" : "RunInstances", + "ecu" : "Variable", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PSF39FBPC6PFD9W3" : { + "sku" : "PSF39FBPC6PFD9W3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.4xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "C7UZ38M4P93WMCBP" : { + "sku" : "C7UZ38M4P93WMCBP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:p2.8xlarge", + "operation" : "RunInstances:000g", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TY2FBZ3Y8X8N6TXE" : { + "sku" : "TY2FBZ3Y8X8N6TXE", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "1 x 240", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.2xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "23", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BFXWBPUC878XX5WC" : { + "sku" : "BFXWBPUC878XX5WC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "2 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.4xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SZAG69AWYJF676BA" : { + "sku" : "SZAG69AWYJF676BA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "122 GiB", + "storage" : "12 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:d2.4xlarge", + "operation" : "RunInstances:0002", + "ecu" : "56", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SQKUUTYR8NCPCZQK" : { + "sku" : "SQKUUTYR8NCPCZQK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "244 GiB", + "storage" : "24 x 2000 HDD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:d2.8xlarge", + "operation" : "RunInstances:0202", + "ecu" : "116", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6SZSU4SPSN4VNV6H" : { + "sku" : "6SZSU4SPSN4VNV6H", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 800 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i2.xlarge", + "operation" : "RunInstances:0102", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TFQ5DSSKH395ATXV" : { + "sku" : "TFQ5DSSKH395ATXV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.2xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "P63NKZQXED5H7HUK" : { + "sku" : "P63NKZQXED5H7HUK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "61 GiB", + "storage" : "6 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:d2.2xlarge", + "operation" : "RunInstances", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UA4QBJUCBNHDQX2B" : { + "sku" : "UA4QBJUCBNHDQX2B", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "1 x 240", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.2xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "23", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7MVN3GT6EP25KDUJ" : { + "sku" : "7MVN3GT6EP25KDUJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cc2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670", + "clockSpeed" : "2.6 GHz", + "memory" : "60.5 GiB", + "storage" : "4 x 840", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:cc2.8xlarge", + "operation" : "RunInstances", + "ecu" : "88", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "N9AQNRUTKCFEVCJ6" : { + "sku" : "N9AQNRUTKCFEVCJ6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "1 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.2xlarge", + "operation" : "RunInstances", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XCXYQ48G7HXYYHAC" : { + "sku" : "XCXYQ48G7HXYYHAC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "15 GiB", + "storage" : "1 x 60 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:g2.2xlarge", + "operation" : "RunInstances:0010", + "ecu" : "26", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DT3ZK6NDAD7ADBVZ" : { + "sku" : "DT3ZK6NDAD7ADBVZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "4 x 1.9 NVMe SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.8xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YTTWW26ACBCFNQFW" : { + "sku" : "YTTWW26ACBCFNQFW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:x1.32xlarge", + "operation" : "RunInstances:0800", + "ecu" : "349", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Y5KA5VEADFSRVVYY" : { + "sku" : "Y5KA5VEADFSRVVYY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "64 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.4xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "53.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "K28MGJB7A9VHR5UW" : { + "sku" : "K28MGJB7A9VHR5UW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "1 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.2xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "APERCPEVDRU8YTTJ" : { + "sku" : "APERCPEVDRU8YTTJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "7.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UK3253N3FM8G9VRT" : { + "sku" : "UK3253N3FM8G9VRT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "2 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:i3.4xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PQQ53JZ8S758UUWS" : { + "sku" : "PQQ53JZ8S758UUWS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1.32xlarge", + "operation" : "RunInstances:0202", + "ecu" : "349", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "SQL Web", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9PA6CYJ4VMXA3MPV" : { + "sku" : "9PA6CYJ4VMXA3MPV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "61 GiB", + "storage" : "6 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:d2.2xlarge", + "operation" : "RunInstances:0102", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PFVCSMK3T7J3UAHB" : { + "sku" : "PFVCSMK3T7J3UAHB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 800 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i2.xlarge", + "operation" : "RunInstances:0006", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "8ZKTF27C8KTCX3VS" : { + "sku" : "8ZKTF27C8KTCX3VS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.9xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "72 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.9xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "4500 Mbps", + "ecu" : "139", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "72", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UEHZ36662EWM4RGB" : { + "sku" : "UEHZ36662EWM4RGB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "3,904 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.32xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "340", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JGBX8UHZUVP2AMXP" : { + "sku" : "JGBX8UHZUVP2AMXP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.18xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "72", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "144 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.18xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "9000 Mbps", + "ecu" : "278", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "144", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JF9QHW5XYZ9MK42R" : { + "sku" : "JF9QHW5XYZ9MK42R", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cr1.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670", + "memory" : "244 GiB", + "storage" : "2 x 120 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:cr1.8xlarge", + "operation" : "RunInstances:0006", + "ecu" : "88", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Std", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "62VQZ6W2YK7P5N9B" : { + "sku" : "62VQZ6W2YK7P5N9B", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "60 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.8xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "132", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "38G6R9HH2W74WD78" : { + "sku" : "38G6R9HH2W74WD78", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "2 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i2.2xlarge", + "operation" : "RunInstances:0002", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5BBSXXSX365HB5ME" : { + "sku" : "5BBSXXSX365HB5ME", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "2 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.4xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3XZGHRZ6YE3HHENC" : { + "sku" : "3XZGHRZ6YE3HHENC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "3,904 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.32xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "340", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GAAPZE44XKXJUATT" : { + "sku" : "GAAPZE44XKXJUATT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "2 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.4xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TA6DVCUX4BZXUYXM" : { + "sku" : "TA6DVCUX4BZXUYXM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.large", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "400 Mbps", + "ecu" : "135", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KCYHZ77Q583MP6ET" : { + "sku" : "KCYHZ77Q583MP6ET", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 960", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.8xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "91", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EEY67C7D4RJ9CHR3" : { + "sku" : "EEY67C7D4RJ9CHR3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.large", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "400 Mbps", + "ecu" : "135", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "B49ZJ7RVTVWQUJ85" : { + "sku" : "B49ZJ7RVTVWQUJ85", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:p3.2xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZTJAGDVB3B33WX4G" : { + "sku" : "ZTJAGDVB3B33WX4G", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "4 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.large", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EKX4XJYWHK3C9ZDP" : { + "sku" : "EKX4XJYWHK3C9ZDP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "3.75 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.large", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "8XS2K65N47Y67NAF" : { + "sku" : "8XS2K65N47Y67NAF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:r4.16xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "12000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VRTKB5F5VS4VGBMS" : { + "sku" : "VRTKB5F5VS4VGBMS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "64 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:m4.4xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "53.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "N48UCGS5YF8G8CCW" : { + "sku" : "N48UCGS5YF8G8CCW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:p2.8xlarge", + "operation" : "RunInstances:0010", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "8", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "A8NG2GF96A6WJPJW" : { + "sku" : "A8NG2GF96A6WJPJW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 0.95 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "850 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VU398KD2CYRQCGPP" : { + "sku" : "VU398KD2CYRQCGPP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "8 x 800 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i2.8xlarge", + "operation" : "RunInstances:0102", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Q49VKFFWC877GUFC" : { + "sku" : "Q49VKFFWC877GUFC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "64EUYDYDPNWKXQUX" : { + "sku" : "64EUYDYDPNWKXQUX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "hs1.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "17", + "physicalProcessor" : "Intel Xeon E5-2650", + "clockSpeed" : "2 GHz", + "memory" : "117 GiB", + "storage" : "24 x 2000", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:hs1.8xlarge", + "operation" : "RunInstances", + "ecu" : "35", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "B2S7FU4V6J386XED" : { + "sku" : "B2S7FU4V6J386XED", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.10xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "40", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "160 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:m4.10xlarge", + "operation" : "Hourly", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "80", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZRAA23N7FYQDZBNU" : { + "sku" : "ZRAA23N7FYQDZBNU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "768 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:p2.16xlarge", + "operation" : "RunInstances:0800", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "16", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5E9TGWTBKMHMQWQ2" : { + "sku" : "5E9TGWTBKMHMQWQ2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "3.75 GiB", + "storage" : "2 x 16 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.large", + "operation" : "RunInstances:000g", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XJZ34YAGC7UHGRHJ" : { + "sku" : "XJZ34YAGC7UHGRHJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:m4.xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "M8D9MPXPJGZE2NYV" : { + "sku" : "M8D9MPXPJGZE2NYV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "34.2 GiB", + "storage" : "1 x 850", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m2.2xlarge", + "operation" : "RunInstances", + "ecu" : "13", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "E52BDE5FYKFFMM6R" : { + "sku" : "E52BDE5FYKFFMM6R", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1.32xlarge", + "operation" : "RunInstances", + "ecu" : "349", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EK8RQK3XNDHYVHY2" : { + "sku" : "EK8RQK3XNDHYVHY2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.10xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "40", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "160 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.10xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "80", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XUVPNXCYKWF33FBW" : { + "sku" : "XUVPNXCYKWF33FBW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.9xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "72 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:c5.9xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "4500 Mbps", + "ecu" : "139", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "72", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "B29HW84ZHNQH6MAR" : { + "sku" : "B29HW84ZHNQH6MAR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "8 x 800 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i2.8xlarge", + "operation" : "RunInstances:0102", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9DFRVEWZ38WMEJVB" : { + "sku" : "9DFRVEWZ38WMEJVB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "800 Mbps", + "ecu" : "Variable", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Y6NKND98FNQAQ8K9" : { + "sku" : "Y6NKND98FNQAQ8K9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.medium", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "3.75 GiB", + "storage" : "1 x 4 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m3.medium", + "operation" : "RunInstances:0202", + "ecu" : "3", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UDYTM9QGGMXVAR7Y" : { + "sku" : "UDYTM9QGGMXVAR7Y", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:c5.4xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "B6RS3QA3WVNWUFKM" : { + "sku" : "B6RS3QA3WVNWUFKM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "61 GiB", + "storage" : "6 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:d2.2xlarge", + "operation" : "RunInstances:0102", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DM8QWYMUB3C3JJAR" : { + "sku" : "DM8QWYMUB3C3JJAR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "2 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i2.2xlarge", + "operation" : "RunInstances:0010", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DB68VE3TDETBPZZZ" : { + "sku" : "DB68VE3TDETBPZZZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "800 Mbps", + "ecu" : "Variable", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "U4ACUCANS9BM4R7H" : { + "sku" : "U4ACUCANS9BM4R7H", + "productFamily" : "Load Balancer-Application", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "group" : "ELB:Balancer", + "groupDescription" : "Used Application load balancer capacity units-hr", + "usagetype" : "LCUUsage", + "operation" : "LoadBalancing:Application", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CZY4WZCSMEYRT6BS" : { + "sku" : "CZY4WZCSMEYRT6BS", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "1 x 240", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.2xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "23", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SVKJPJ49D87Z4D8D" : { + "sku" : "SVKJPJ49D87Z4D8D", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HM82VKFH3K99HEA4" : { + "sku" : "HM82VKFH3K99HEA4", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 0.475 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.large", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "425 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "A83EBS2T67UP72G2" : { + "sku" : "A83EBS2T67UP72G2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m3.xlarge", + "operation" : "RunInstances", + "ecu" : "13", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EM3N7MRMRY4Z5BMR" : { + "sku" : "EM3N7MRMRY4Z5BMR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "3,904 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:x1e.32xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "340", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GAU68ZZUP6T8UDTP" : { + "sku" : "GAU68ZZUP6T8UDTP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "1 x 120", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:x1e.xlarge", + "operation" : "Hourly", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PQXUZFT763CBBFXN" : { + "sku" : "PQXUZFT763CBBFXN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "768 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:p2.16xlarge", + "operation" : "RunInstances:0002", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "16", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EWR4DWGXX5YW4B4M" : { + "sku" : "EWR4DWGXX5YW4B4M", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:g3.8xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "0", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "2", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XX2TZABY6QFVXNY9" : { + "sku" : "XX2TZABY6QFVXNY9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "34.2 GiB", + "storage" : "1 x 850", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m2.2xlarge", + "operation" : "RunInstances:0010", + "ecu" : "13", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6WKTRGBBJD2C2RZE" : { + "sku" : "6WKTRGBBJD2C2RZE", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 0.475 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.large", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "425 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "87Z6QV469BMNJV52" : { + "sku" : "87Z6QV469BMNJV52", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:p3.8xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6U2SB7CVRVWJEX22" : { + "sku" : "6U2SB7CVRVWJEX22", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1.32xlarge", + "operation" : "RunInstances:0010", + "ecu" : "349", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZVFV8KSWQPNVNYCW" : { + "sku" : "ZVFV8KSWQPNVNYCW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.large", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "400 Mbps", + "ecu" : "135", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "W84NR989M57Y5DZJ" : { + "sku" : "W84NR989M57Y5DZJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 0.95 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "850 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "H6T3SYB5G6QCVMZM" : { + "sku" : "H6T3SYB5G6QCVMZM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "60 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.8xlarge", + "operation" : "RunInstances", + "ecu" : "108", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "R4XHKDDZUJXABU4Z" : { + "sku" : "R4XHKDDZUJXABU4Z", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "3.75 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.large", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6767SWNDDU2CUUEJ" : { + "sku" : "6767SWNDDU2CUUEJ", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 960", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.8xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "91", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5EYCR4NNAWN9DZT3" : { + "sku" : "5EYCR4NNAWN9DZT3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c1.medium", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "1.7 GiB", + "storage" : "1 x 350", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c1.medium", + "operation" : "RunInstances:000g", + "ecu" : "2", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "F7H92E3N3TN52552" : { + "sku" : "F7H92E3N3TN52552", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.medium", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.3 GHz", + "memory" : "4 GiB", + "storage" : "EBS only", + "networkPerformance" : "Low to Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.medium", + "operation" : "RunInstances:0002", + "ecu" : "Variable", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FUPZEHMJB57T55W6" : { + "sku" : "FUPZEHMJB57T55W6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.2xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "WH9T6569SRYX7MN9" : { + "sku" : "WH9T6569SRYX7MN9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.8xlarge", + "operation" : "RunInstances:0006", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NXP3TET93CDDJX8W" : { + "sku" : "NXP3TET93CDDJX8W", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "122 GiB", + "storage" : "12 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:d2.4xlarge", + "operation" : "RunInstances:0006", + "ecu" : "56", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6VXGKV62HT3PPGUM" : { + "sku" : "6VXGKV62HT3PPGUM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 800 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i2.xlarge", + "operation" : "RunInstances:0002", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "P6GWCP7NZJR2VSTT" : { + "sku" : "P6GWCP7NZJR2VSTT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c1.medium", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "1.7 GiB", + "storage" : "1 x 350", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c1.medium", + "operation" : "RunInstances:000g", + "ecu" : "2", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9XSMT4DCCR64C6B8" : { + "sku" : "9XSMT4DCCR64C6B8", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "1 x 480", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.4xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "47", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "N3VSW4S7495SMAMS" : { + "sku" : "N3VSW4S7495SMAMS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.10xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "40", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "160 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.10xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "80", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "8A423BKQGUQM2JT7" : { + "sku" : "8A423BKQGUQM2JT7", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "1 x 480", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:x1e.4xlarge", + "operation" : "Hourly", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "47", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GTXYRWSN8RXE5ZBA" : { + "sku" : "GTXYRWSN8RXE5ZBA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "30 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.4xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "U7343ZA6ABZUXFZ9" : { + "sku" : "U7343ZA6ABZUXFZ9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "30.5 GiB", + "storage" : "3 x 2000 HDD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:d2.xlarge", + "operation" : "RunInstances", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GCU5MTJSYT27M7JU" : { + "sku" : "GCU5MTJSYT27M7JU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "15 GiB", + "storage" : "4 x 420", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m1.xlarge", + "operation" : "RunInstances:000g", + "ecu" : "8", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NT2P2VJM9AFTGQGE" : { + "sku" : "NT2P2VJM9AFTGQGE", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cr1.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670", + "memory" : "244 GiB", + "storage" : "2 x 120 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:cr1.8xlarge", + "operation" : "RunInstances:0800", + "ecu" : "88", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "32R9UMHRGUNFK9EM" : { + "sku" : "32R9UMHRGUNFK9EM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 80 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.xlarge", + "operation" : "RunInstances:000g", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZXVGNAHUW5AY3DYX" : { + "sku" : "ZXVGNAHUW5AY3DYX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c1.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "7 GiB", + "storage" : "4 x 420", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c1.xlarge", + "operation" : "RunInstances:0202", + "ecu" : "20", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VECSNYXG6RJ6YNH2" : { + "sku" : "VECSNYXG6RJ6YNH2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.medium", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "3.75 GiB", + "storage" : "1 x 4 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m3.medium", + "operation" : "RunInstances:0202", + "ecu" : "3", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "C8WRJP4N7N5CN6HS" : { + "sku" : "C8WRJP4N7N5CN6HS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.large", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "7.5 GiB", + "storage" : "2 x 420", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m1.large", + "operation" : "RunInstances:0202", + "ecu" : "4", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Web", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZJXKCMNRMSTSZTE8" : { + "sku" : "ZJXKCMNRMSTSZTE8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.16xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "12000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "D7U963P5YEKVSRHT" : { + "sku" : "D7U963P5YEKVSRHT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.large", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "450 Mbps", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TKSBGRRFANCGSQGJ" : { + "sku" : "TKSBGRRFANCGSQGJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cc2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670", + "clockSpeed" : "2.6 GHz", + "memory" : "60.5 GiB", + "storage" : "4 x 840", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:cc2.8xlarge", + "operation" : "RunInstances:0800", + "ecu" : "88", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "35JBFVAK8WGVGG7U" : { + "sku" : "35JBFVAK8WGVGG7U", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 960", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.8xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "91", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "8X7RVDXN67YREJTH" : { + "sku" : "8X7RVDXN67YREJTH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7GGEQ9QF87XSSGPH" : { + "sku" : "7GGEQ9QF87XSSGPH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "7.5 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.xlarge", + "operation" : "RunInstances:000g", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2CJFZEAKYQD4ZCJU" : { + "sku" : "2CJFZEAKYQD4ZCJU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.medium", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "3.75 GiB", + "storage" : "1 x 410", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m1.medium", + "operation" : "RunInstances:0002", + "ecu" : "2", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "D6N7KTJH42VTNPFJ" : { + "sku" : "D6N7KTJH42VTNPFJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "34.2 GiB", + "storage" : "1 x 850", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m2.2xlarge", + "operation" : "RunInstances:000g", + "ecu" : "13", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FFWF55NY7SRTUYUX" : { + "sku" : "FFWF55NY7SRTUYUX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "60 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.8xlarge", + "operation" : "RunInstances:0010", + "ecu" : "108", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6VG367TBGT66TM4N" : { + "sku" : "6VG367TBGT66TM4N", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.0 GHz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.xlarge", + "operation" : "RunInstances:000g", + "ecu" : "Variable", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EM4WENQDQTCE6CHN" : { + "sku" : "EM4WENQDQTCE6CHN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "4 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i2.4xlarge", + "operation" : "RunInstances:0010", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "47S8UCB86MXKYKKM" : { + "sku" : "47S8UCB86MXKYKKM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.2xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "1600 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BVY8N2S8YT6DK8AE" : { + "sku" : "BVY8N2S8YT6DK8AE", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "1 x 320 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "ebsOptimized" : "Yes", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:r3.4xlarge", + "operation" : "Hourly", + "ecu" : "52", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QFF26RH4D8T9V64T" : { + "sku" : "QFF26RH4D8T9V64T", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "15 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:c3.2xlarge", + "operation" : "RunInstances:0800", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SJGHN3P4PMXPP9SA" : { + "sku" : "SJGHN3P4PMXPP9SA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.4xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JEUDBWRRVYWVAQ8W" : { + "sku" : "JEUDBWRRVYWVAQ8W", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.small", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "1.7 GiB", + "storage" : "1 x 160", + "networkPerformance" : "Low", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage", + "operation" : "RunInstances:0010", + "ecu" : "Variable", + "normalizationSizeFactor" : "1", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YUXKRQ5SQSHVKD58" : { + "sku" : "YUXKRQ5SQSHVKD58", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.medium", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "3.75 GiB", + "storage" : "1 x 410", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m1.medium", + "operation" : "RunInstances", + "ecu" : "2", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BVA53SP54488TUC8" : { + "sku" : "BVA53SP54488TUC8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "7.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "K2UX3Q9DEX25YU7R" : { + "sku" : "K2UX3Q9DEX25YU7R", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.4xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "3000 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TTPFUQFE3Y5ZHJQU" : { + "sku" : "TTPFUQFE3Y5ZHJQU", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "1 x 240", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.2xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "23", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "R663DPH9T8Q89W88" : { + "sku" : "R663DPH9T8Q89W88", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "4 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i2.4xlarge", + "operation" : "RunInstances:0002", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3DX9M63484ZSZFJV" : { + "sku" : "3DX9M63484ZSZFJV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cc2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670", + "clockSpeed" : "2.6 GHz", + "memory" : "60.5 GiB", + "storage" : "4 x 840", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:cc2.8xlarge", + "operation" : "RunInstances", + "ecu" : "88", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NYB5S5CHCEM4EHBM" : { + "sku" : "NYB5S5CHCEM4EHBM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "15 GiB", + "storage" : "4 x 420", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "ebsOptimized" : "Yes", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:m1.xlarge", + "operation" : "Hourly", + "ecu" : "8", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "27HV9GJNZPAQHPXQ" : { + "sku" : "27HV9GJNZPAQHPXQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1.32xlarge", + "operation" : "RunInstances:0006", + "ecu" : "349", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "SQL Std", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RHMYCN6PD6GHSQUU" : { + "sku" : "RHMYCN6PD6GHSQUU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:p2.xlarge", + "operation" : "RunInstances", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JYVS4BZET85J8C7N" : { + "sku" : "JYVS4BZET85J8C7N", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "68.4 GiB", + "storage" : "2 x 840", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:m2.4xlarge", + "operation" : "RunInstances:0800", + "ecu" : "26", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MA94X27R3YTPE3NC" : { + "sku" : "MA94X27R3YTPE3NC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 0.475 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:i3.large", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "425 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TNZVJ6TD58FTD557" : { + "sku" : "TNZVJ6TD58FTD557", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "1 x 480", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:x1e.4xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "47", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NF67K4WANEWZZV22" : { + "sku" : "NF67K4WANEWZZV22", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cg1.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "GPU instance", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon x5570", + "memory" : "22.5 GiB", + "storage" : "2 x 840", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:cg1.4xlarge", + "operation" : "RunInstances", + "ecu" : "33.5", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7QQSWJDPGHJWXN69" : { + "sku" : "7QQSWJDPGHJWXN69", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:p3.8xlarge", + "operation" : "Hourly", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3AJKTZTHDW42GS66" : { + "sku" : "3AJKTZTHDW42GS66", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.large", + "operation" : "RunInstances:0006", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VRCAUVZXNVUK48Y2" : { + "sku" : "VRCAUVZXNVUK48Y2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "8 x 1.9 NVMe SSD", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.16xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "245DEJZVP4HBBUX3" : { + "sku" : "245DEJZVP4HBBUX3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:p3.2xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "M6T9NG7HTENPGTMK" : { + "sku" : "M6T9NG7HTENPGTMK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "244 GiB", + "storage" : "24 x 2000 HDD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:d2.8xlarge", + "operation" : "RunInstances:0102", + "ecu" : "116", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "62G57MU6KCQ2AQS8" : { + "sku" : "62G57MU6KCQ2AQS8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t1.micro", + "currentGeneration" : "No", + "instanceFamily" : "Micro instances", + "vcpu" : "1", + "physicalProcessor" : "Variable", + "memory" : "0.613 GiB", + "storage" : "EBS only", + "networkPerformance" : "Very Low", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t1.micro", + "operation" : "RunInstances:0010", + "ecu" : "26", + "normalizationSizeFactor" : "0.5", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UA3JWMHE5JCMQN3Z" : { + "sku" : "UA3JWMHE5JCMQN3Z", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "15 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.2xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CGJXHFUSGE546RV6" : { + "sku" : "CGJXHFUSGE546RV6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.large", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "400 Mbps", + "ecu" : "135", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HZEF7XT3HAKD5NEZ" : { + "sku" : "HZEF7XT3HAKD5NEZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.large", + "operation" : "RunInstances", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ATA6MJZDUQ53CRMP" : { + "sku" : "ATA6MJZDUQ53CRMP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.medium", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "3.75 GiB", + "storage" : "1 x 410", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m1.medium", + "operation" : "RunInstances:0202", + "ecu" : "2", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "SQL Web", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SVSVP5FJUTSNJXNJ" : { + "sku" : "SVSVP5FJUTSNJXNJ", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.16xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "179", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9HFHK6RECZZ4W92B" : { + "sku" : "9HFHK6RECZZ4W92B", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "1 x 120", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2EKFX2CKSTAYWT4G" : { + "sku" : "2EKFX2CKSTAYWT4G", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "883Q8VPBXGCX7MQC" : { + "sku" : "883Q8VPBXGCX7MQC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "4 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i2.4xlarge", + "operation" : "RunInstances:0006", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6MAMZMQ6FM3UK7P6" : { + "sku" : "6MAMZMQ6FM3UK7P6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.8xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "6000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9V4P3HXFJR9R93QT" : { + "sku" : "9V4P3HXFJR9R93QT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:r4.4xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "3000 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2T92AZQGNFAQHEXW" : { + "sku" : "2T92AZQGNFAQHEXW", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Outbound", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "Asia Pacific (Singapore)", + "toLocationType" : "AWS Region", + "usagetype" : "USE1-APS1-AWS-Out-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "CW2JQMRMB2W7GWB3" : { + "sku" : "CW2JQMRMB2W7GWB3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m3.2xlarge", + "operation" : "RunInstances:0202", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DNQP3UURB2QMZNV3" : { + "sku" : "DNQP3UURB2QMZNV3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "15 GiB", + "storage" : "4 x 420", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m1.xlarge", + "operation" : "RunInstances:0010", + "ecu" : "8", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GCJMZVKZNG7MAKT4" : { + "sku" : "GCJMZVKZNG7MAKT4", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "15 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:c3.2xlarge", + "operation" : "RunInstances:0800", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NVQ292F84D694PKT" : { + "sku" : "NVQ292F84D694PKT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.large", + "operation" : "RunInstances:0010", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3GAF7GUVFB6WDJQR" : { + "sku" : "3GAF7GUVFB6WDJQR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "15 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.2xlarge", + "operation" : "RunInstances:0006", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YGKQRRYEKC2NTSQT" : { + "sku" : "YGKQRRYEKC2NTSQT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "30 GiB", + "storage" : "2 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "ebsOptimized" : "Yes", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:c3.4xlarge", + "operation" : "Hourly", + "ecu" : "55", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AG87TQB4PQQPZXFK" : { + "sku" : "AG87TQB4PQQPZXFK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.small", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.3 GHz", + "memory" : "2 GiB", + "storage" : "EBS only", + "networkPerformance" : "Low to Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:t2.small", + "operation" : "RunInstances:0800", + "ecu" : "Variable", + "normalizationSizeFactor" : "1", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9J54RV93FDP84TGG" : { + "sku" : "9J54RV93FDP84TGG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "122 GiB", + "storage" : "12 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:d2.4xlarge", + "operation" : "RunInstances:0102", + "ecu" : "56", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3CAET66XVXDZHGQY" : { + "sku" : "3CAET66XVXDZHGQY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c1.medium", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "1.7 GiB", + "storage" : "1 x 350", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c1.medium", + "operation" : "RunInstances:0202", + "ecu" : "2", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "SQL Web", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "F7MKSFT7MRGHJF5U" : { + "sku" : "F7MKSFT7MRGHJF5U", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "768 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:p2.16xlarge", + "operation" : "RunInstances:0102", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "16", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EUZYYTAVEP8JDS42" : { + "sku" : "EUZYYTAVEP8JDS42", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "1 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.2xlarge", + "operation" : "RunInstances:0102", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "D6HGB9XUMNSDTB9G" : { + "sku" : "D6HGB9XUMNSDTB9G", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "f1.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "memory" : "976 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:f1.16xlarge", + "operation" : "RunInstances:000g", + "ecu" : "188", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TMQJ4GK6Z38D6DZU" : { + "sku" : "TMQJ4GK6Z38D6DZU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "3.75 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.large", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NCF2TWM2X9WTUPEG" : { + "sku" : "NCF2TWM2X9WTUPEG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "7.5 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.xlarge", + "operation" : "RunInstances:0006", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4YHC7A4CJ3HBPKDX" : { + "sku" : "4YHC7A4CJ3HBPKDX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "1 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.2xlarge", + "operation" : "RunInstances", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AKSFQX72CUFYMDSH" : { + "sku" : "AKSFQX72CUFYMDSH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "2 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.4xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HRE9N7QDXRK4WGK6" : { + "sku" : "HRE9N7QDXRK4WGK6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "61 GiB", + "storage" : "6 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:d2.2xlarge", + "operation" : "RunInstances:0006", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5J4A5X6Z5M3JUPTT" : { + "sku" : "5J4A5X6Z5M3JUPTT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "1 x 320 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.4xlarge", + "operation" : "RunInstances:0002", + "ecu" : "52", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HFDNWEZYQYRJQR8N" : { + "sku" : "HFDNWEZYQYRJQR8N", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.2xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "1600 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PY2CUEC5DXV8VV3Y" : { + "sku" : "PY2CUEC5DXV8VV3Y", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "30.5 GiB", + "storage" : "3 x 2000 HDD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:d2.xlarge", + "operation" : "Hourly", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TWMSTK9JU8ZP6G3X" : { + "sku" : "TWMSTK9JU8ZP6G3X", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "1 x 120", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VS9R2VWDK4T46YAC" : { + "sku" : "VS9R2VWDK4T46YAC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "256 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:m4.16xlarge", + "operation" : "Hourly", + "dedicatedEbsThroughput" : "10000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JR4AM7VS63CTEPMN" : { + "sku" : "JR4AM7VS63CTEPMN", + "productFamily" : "Storage", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "storageMedia" : "SSD-backed", + "volumeType" : "Provisioned IOPS", + "maxVolumeSize" : "16 TiB", + "maxIopsvolume" : "20000", + "maxThroughputvolume" : "320 MB/sec", + "usagetype" : "EBS:VolumeUsage.piops", + "operation" : "", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VP7WYZSF63TZQ25D" : { + "sku" : "VP7WYZSF63TZQ25D", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "34.2 GiB", + "storage" : "1 x 850", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m2.2xlarge", + "operation" : "RunInstances:0006", + "ecu" : "13", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6TY9KK9HGP4Z383Q" : { + "sku" : "6TY9KK9HGP4Z383Q", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "60 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.8xlarge", + "operation" : "RunInstances:0010", + "ecu" : "108", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2S47E3PRB8XVH9QV" : { + "sku" : "2S47E3PRB8XVH9QV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.0 GHz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.2xlarge", + "operation" : "RunInstances", + "ecu" : "Variable", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GQZCFDP9G7RHFB9X" : { + "sku" : "GQZCFDP9G7RHFB9X", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.16xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "12000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "G58S7QPRR2YBRCEW" : { + "sku" : "G58S7QPRR2YBRCEW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.8xlarge", + "operation" : "RunInstances:0102", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7YAZRK59RPPWSKMN" : { + "sku" : "7YAZRK59RPPWSKMN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "17.1 GiB", + "storage" : "1 x 420", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m2.xlarge", + "operation" : "RunInstances:0002", + "ecu" : "6.5", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VNX2EXRCP445NC9K" : { + "sku" : "VNX2EXRCP445NC9K", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "8 x 800 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i2.8xlarge", + "operation" : "RunInstances:0010", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TJN762HY6CCQEX25" : { + "sku" : "TJN762HY6CCQEX25", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "4 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i2.4xlarge", + "operation" : "RunInstances:0002", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JTDCCHG4KZ5M8H8N" : { + "sku" : "JTDCCHG4KZ5M8H8N", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.large", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "7.5 GiB", + "storage" : "2 x 420", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m1.large", + "operation" : "RunInstances:000g", + "ecu" : "4", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TYZADFBQUJ5K2FN7" : { + "sku" : "TYZADFBQUJ5K2FN7", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Outbound", + "fromLocation" : "Asia Pacific (Singapore)", + "fromLocationType" : "AWS Region", + "toLocation" : "US East (N. Virginia)", + "toLocationType" : "AWS Region", + "usagetype" : "APS1-USE1-AWS-Out-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "4CWD92A352MDCZ9Q" : { + "sku" : "4CWD92A352MDCZ9Q", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "7.5 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m3.large", + "operation" : "RunInstances:000g", + "ecu" : "6.5", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PHH3YFDMQYEVPEK4" : { + "sku" : "PHH3YFDMQYEVPEK4", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 960", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.8xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "91", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "B2SAE43884DJ529Q" : { + "sku" : "B2SAE43884DJ529Q", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:p2.xlarge", + "operation" : "RunInstances:0010", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MDWHVPMZ3JHUF4C8" : { + "sku" : "MDWHVPMZ3JHUF4C8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "17.1 GiB", + "storage" : "1 x 420", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m2.xlarge", + "operation" : "RunInstances:0006", + "ecu" : "6.5", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6NM6AHQ97YV7NWV2" : { + "sku" : "6NM6AHQ97YV7NWV2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "60 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.8xlarge", + "operation" : "RunInstances:000g", + "ecu" : "108", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VX7DJN9XPR7HMV2K" : { + "sku" : "VX7DJN9XPR7HMV2K", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:p2.xlarge", + "operation" : "RunInstances:000g", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RB56QANQ2YBHVFK2" : { + "sku" : "RB56QANQ2YBHVFK2", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:x1e.16xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "179", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "94UG4CXUHQVWH768" : { + "sku" : "94UG4CXUHQVWH768", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "8 x 1.9 NVMe SSD", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.16xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Z78M4CHWU3KRBC2H" : { + "sku" : "Z78M4CHWU3KRBC2H", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9VRMFY5RW5MYMD9F" : { + "sku" : "9VRMFY5RW5MYMD9F", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.18xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "72", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "144 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.18xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "9000 Mbps", + "ecu" : "278", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "144", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Z33PSF4NA7EKH68C" : { + "sku" : "Z33PSF4NA7EKH68C", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "8 x 800 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i2.8xlarge", + "operation" : "RunInstances:000g", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VK7DM9VN6XHH954M" : { + "sku" : "VK7DM9VN6XHH954M", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.16xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "12000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CZMS4AAZCDSZGNTD" : { + "sku" : "CZMS4AAZCDSZGNTD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.large", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "400 Mbps", + "ecu" : "135", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MYS2DJRWTYJAZ2G3" : { + "sku" : "MYS2DJRWTYJAZ2G3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "15 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.2xlarge", + "operation" : "RunInstances:0006", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "E3A2FAQ7KZXK2BME" : { + "sku" : "E3A2FAQ7KZXK2BME", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1.16xlarge", + "operation" : "RunInstances:0006", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Std", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TFK9JRBDPXTYU5ZM" : { + "sku" : "TFK9JRBDPXTYU5ZM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.8xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "6000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BQ3BGTNB2B9AK9XC" : { + "sku" : "BQ3BGTNB2B9AK9XC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 80 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "ebsOptimized" : "Yes", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:r3.xlarge", + "operation" : "Hourly", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CDHRWPJ4QQUN4CPP" : { + "sku" : "CDHRWPJ4QQUN4CPP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "68.4 GiB", + "storage" : "2 x 840", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m2.4xlarge", + "operation" : "RunInstances:0202", + "ecu" : "26", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "B36YBM4BFMUWZSG4" : { + "sku" : "B36YBM4BFMUWZSG4", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.large", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "7.5 GiB", + "storage" : "2 x 420", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m1.large", + "operation" : "RunInstances", + "ecu" : "4", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "22YA2RYTS4SSFJRY" : { + "sku" : "22YA2RYTS4SSFJRY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 800 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i2.xlarge", + "operation" : "RunInstances:0006", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "47GP959QAF69YPG5" : { + "sku" : "47GP959QAF69YPG5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YPSGG4AGGKWCT4F5" : { + "sku" : "YPSGG4AGGKWCT4F5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "1 x 120", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:x1e.xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VKHDPS8VTZRT43GD" : { + "sku" : "VKHDPS8VTZRT43GD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.9xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "72 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.9xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "4500 Mbps", + "ecu" : "139", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "72", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3E2DK2EWM3HWCYX7" : { + "sku" : "3E2DK2EWM3HWCYX7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "244 GiB", + "storage" : "24 x 2000 HDD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:d2.8xlarge", + "operation" : "RunInstances:0800", + "ecu" : "116", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JNEJWP3E6GZMD3DR" : { + "sku" : "JNEJWP3E6GZMD3DR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "60 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.8xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "132", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JZW848E84BCHGUHR" : { + "sku" : "JZW848E84BCHGUHR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:r4.large", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "400 Mbps", + "ecu" : "135", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9GWTW8S686K9W5FP" : { + "sku" : "9GWTW8S686K9W5FP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c1.medium", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "1.7 GiB", + "storage" : "1 x 350", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c1.medium", + "operation" : "RunInstances:0202", + "ecu" : "2", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "SQL Web", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7EQFT8UVNNKTV2AA" : { + "sku" : "7EQFT8UVNNKTV2AA", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Outbound", + "fromLocation" : "Asia Pacific (Tokyo)", + "fromLocationType" : "AWS Region", + "toLocation" : "US East (N. Virginia)", + "toLocationType" : "AWS Region", + "usagetype" : "APN1-USE1-AWS-Out-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "GH36ES6UF9N3TAPC" : { + "sku" : "GH36ES6UF9N3TAPC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "122 GiB", + "storage" : "12 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:d2.4xlarge", + "operation" : "RunInstances", + "ecu" : "56", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EEMNBPTSMJARKSKJ" : { + "sku" : "EEMNBPTSMJARKSKJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 80 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.xlarge", + "operation" : "RunInstances:0006", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "C8A3366T6RWMUWD6" : { + "sku" : "C8A3366T6RWMUWD6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "256 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.16xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "10000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NN2CMDZPNDJ4GWGU" : { + "sku" : "NN2CMDZPNDJ4GWGU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.large", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "400 Mbps", + "ecu" : "135", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PS7GTF4X2G9VEN36" : { + "sku" : "PS7GTF4X2G9VEN36", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "64 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.4xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "53.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JCAJXA8C736VK6KZ" : { + "sku" : "JCAJXA8C736VK6KZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.18xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "72", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "144 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.18xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "9000 Mbps", + "ecu" : "278", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "144", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4A3JNV4H2AJRA65Z" : { + "sku" : "4A3JNV4H2AJRA65Z", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "60 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:c4.8xlarge", + "operation" : "Hourly", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "132", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PRQPEPABCB4GFVSC" : { + "sku" : "PRQPEPABCB4GFVSC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "30 GiB", + "storage" : "2 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.4xlarge", + "operation" : "RunInstances:0002", + "ecu" : "55", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SVMA6TVRGD4B8MMP" : { + "sku" : "SVMA6TVRGD4B8MMP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "15 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.2xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AC2NWG73MEX4BBX3" : { + "sku" : "AC2NWG73MEX4BBX3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1.16xlarge", + "operation" : "RunInstances:000g", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UUX3B6ZG6M7C8N5A" : { + "sku" : "UUX3B6ZG6M7C8N5A", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "768 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:p2.16xlarge", + "operation" : "RunInstances:0800", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "16", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "J5HSGUZ5Y3QZKRJT" : { + "sku" : "J5HSGUZ5Y3QZKRJT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "4 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i2.4xlarge", + "operation" : "RunInstances:0102", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4J62B76AXGGMHG57" : { + "sku" : "4J62B76AXGGMHG57", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "7.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Y2TP2WYH8ZP2ZSNP" : { + "sku" : "Y2TP2WYH8ZP2ZSNP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "7.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZD2U9663ARS5XSMA" : { + "sku" : "ZD2U9663ARS5XSMA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "1 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:r3.2xlarge", + "operation" : "RunInstances:0800", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "K73JG8M9A8MW4QWP" : { + "sku" : "K73JG8M9A8MW4QWP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "8 x 1.9 NVMe SSD", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:i3.16xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XU7GMTDRK2VMN7K9" : { + "sku" : "XU7GMTDRK2VMN7K9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cr1.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670", + "memory" : "244 GiB", + "storage" : "2 x 120 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:cr1.8xlarge", + "operation" : "RunInstances:000g", + "ecu" : "88", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2NBCH8MGXY3QQ5ZH" : { + "sku" : "2NBCH8MGXY3QQ5ZH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.4xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5ZD4WU2CC6CZ2KXG" : { + "sku" : "5ZD4WU2CC6CZ2KXG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "7.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9HGFJGGDXTRDQUED" : { + "sku" : "9HGFJGGDXTRDQUED", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m3.2xlarge", + "operation" : "RunInstances:0002", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YHQ4HRT9DMUQV8QN" : { + "sku" : "YHQ4HRT9DMUQV8QN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "4 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.large", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QHXEDKXAPRFFF59N" : { + "sku" : "QHXEDKXAPRFFF59N", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "15 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.2xlarge", + "operation" : "RunInstances:0202", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5XB5GJ5E68GHCXVW" : { + "sku" : "5XB5GJ5E68GHCXVW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "7.5 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.xlarge", + "operation" : "RunInstances:0202", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "E22Q4PYY34TZ2E23" : { + "sku" : "E22Q4PYY34TZ2E23", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:r4.16xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "12000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "H446M8G8PYYV4XKM" : { + "sku" : "H446M8G8PYYV4XKM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:m4.2xlarge", + "operation" : "Hourly", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HKEJ2ZPKMXDAARWE" : { + "sku" : "HKEJ2ZPKMXDAARWE", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "8 x 800 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i2.8xlarge", + "operation" : "RunInstances:0202", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UPGE3ZJ573XGT9P7" : { + "sku" : "UPGE3ZJ573XGT9P7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cg1.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "GPU instance", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon x5570", + "memory" : "22.5 GiB", + "storage" : "2 x 840", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:cg1.4xlarge", + "operation" : "RunInstances:0006", + "ecu" : "33.5", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2E92X23Q6E3W4UYQ" : { + "sku" : "2E92X23Q6E3W4UYQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "61 GiB", + "storage" : "6 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:d2.2xlarge", + "operation" : "RunInstances:000g", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6U5VMCFHHMTH3QW6" : { + "sku" : "6U5VMCFHHMTH3QW6", + "productFamily" : "Storage", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "storageMedia" : "HDD-backed", + "volumeType" : "Cold HDD", + "maxVolumeSize" : "16 TiB", + "maxIopsvolume" : "250 - based on 1 MiB I/O size", + "maxThroughputvolume" : "250 MiB/s", + "usagetype" : "EBS:VolumeUsage.sc1", + "operation" : "", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "WXU9QBE38YNQDZE3" : { + "sku" : "WXU9QBE38YNQDZE3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "7.5 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m3.large", + "operation" : "RunInstances:0002", + "ecu" : "6.5", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TMS2BYDD3JMP8ZHP" : { + "sku" : "TMS2BYDD3JMP8ZHP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:r4.xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "800 Mbps", + "ecu" : "Variable", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7E7KNSKBJUR3PK9V" : { + "sku" : "7E7KNSKBJUR3PK9V", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:p3.8xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "94", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7YFC8DX6JB9UEFUF" : { + "sku" : "7YFC8DX6JB9UEFUF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "3,904 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.32xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "340", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VJVE25YH42K8TGEJ" : { + "sku" : "VJVE25YH42K8TGEJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "8 x 800 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i2.8xlarge", + "operation" : "RunInstances:0006", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "C92P55KXZZVQPVRT" : { + "sku" : "C92P55KXZZVQPVRT", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 960", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.8xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "91", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VHC3YWSZ6ZFZPJN4" : { + "sku" : "VHC3YWSZ6ZFZPJN4", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.2xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CTZ6QQ5C598KFDED" : { + "sku" : "CTZ6QQ5C598KFDED", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 0.95 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:i3.xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "850 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3D264ECCWU44GADE" : { + "sku" : "3D264ECCWU44GADE", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "17.1 GiB", + "storage" : "1 x 420", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m2.xlarge", + "operation" : "RunInstances:0006", + "ecu" : "6.5", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SXK3NYF7FUGNCYNW" : { + "sku" : "SXK3NYF7FUGNCYNW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "2 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i2.2xlarge", + "operation" : "RunInstances:0102", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "X9NV55CM3DDZH8WM" : { + "sku" : "X9NV55CM3DDZH8WM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "f1.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "memory" : "976 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:f1.16xlarge", + "operation" : "RunInstances:0800", + "ecu" : "188", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "M9J2DPTBA6842MJH" : { + "sku" : "M9J2DPTBA6842MJH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:r3.large", + "operation" : "RunInstances:0800", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7SQ2BQ8A45ARW92Z" : { + "sku" : "7SQ2BQ8A45ARW92Z", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:m4.large", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "450 Mbps", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NUX3MUG87XRK86AD" : { + "sku" : "NUX3MUG87XRK86AD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "8 x 800 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i2.8xlarge", + "operation" : "RunInstances:0202", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HZ8DFZSZ7N4XS65D" : { + "sku" : "HZ8DFZSZ7N4XS65D", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.16xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "179", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FVBNJRJQXKTZMPVR" : { + "sku" : "FVBNJRJQXKTZMPVR", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "1 x 480", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.4xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "47", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "X3Q7CMUEB38C83RH" : { + "sku" : "X3Q7CMUEB38C83RH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "4 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i2.4xlarge", + "operation" : "RunInstances", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VMMGB42RKPM3E742" : { + "sku" : "VMMGB42RKPM3E742", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "15 GiB", + "storage" : "4 x 420", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:m1.xlarge", + "operation" : "RunInstances:0800", + "ecu" : "8", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "R9PWNAHCDMYRXNMW" : { + "sku" : "R9PWNAHCDMYRXNMW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.2xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "89WDVYSF7M632K4P" : { + "sku" : "89WDVYSF7M632K4P", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:g3.16xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "4", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "V34YMXZ5WQ9WHREH" : { + "sku" : "V34YMXZ5WQ9WHREH", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.16xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "179", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MJKCR5ZSNFXJ35EA" : { + "sku" : "MJKCR5ZSNFXJ35EA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.4xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NCQEUP5F7MP2C7VT" : { + "sku" : "NCQEUP5F7MP2C7VT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "hs1.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "17", + "physicalProcessor" : "Intel Xeon E5-2650", + "clockSpeed" : "2 GHz", + "memory" : "117 GiB", + "storage" : "24 x 2000", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:hs1.8xlarge", + "operation" : "RunInstances:0002", + "ecu" : "35", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2RZ6RRUC3U8UVYP9" : { + "sku" : "2RZ6RRUC3U8UVYP9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m3.xlarge", + "operation" : "RunInstances:0102", + "ecu" : "13", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "X5T4377XTFNYDM3K" : { + "sku" : "X5T4377XTFNYDM3K", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4B63NWS2TS69S46X" : { + "sku" : "4B63NWS2TS69S46X", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "122 GiB", + "storage" : "12 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:d2.4xlarge", + "operation" : "RunInstances:0202", + "ecu" : "56", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "298AWKD7RC822MQJ" : { + "sku" : "298AWKD7RC822MQJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "768 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:p2.16xlarge", + "operation" : "RunInstances:0010", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "16", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QURFZDZRCJFUV9KZ" : { + "sku" : "QURFZDZRCJFUV9KZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "61 GiB", + "storage" : "6 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:d2.2xlarge", + "operation" : "RunInstances:0010", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YMR9864XJTF2JBSD" : { + "sku" : "YMR9864XJTF2JBSD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t1.micro", + "currentGeneration" : "No", + "instanceFamily" : "Micro instances", + "vcpu" : "1", + "physicalProcessor" : "Variable", + "memory" : "0.613 GiB", + "storage" : "EBS only", + "networkPerformance" : "Very Low", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t1.micro", + "operation" : "RunInstances:0002", + "ecu" : "26", + "normalizationSizeFactor" : "0.5", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FMN62RHYUNCFD57B" : { + "sku" : "FMN62RHYUNCFD57B", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.nano", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.3 GHz", + "memory" : "0.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "Low", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:t2.nano", + "operation" : "RunInstances:0800", + "ecu" : "Variable", + "normalizationSizeFactor" : "0.25", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PQPJ4CV7Q5CNYCFD" : { + "sku" : "PQPJ4CV7Q5CNYCFD", + "productFamily" : "Dedicated Host", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "memory" : "NA", + "storage" : "NA", + "networkPerformance" : "NA", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostUsage:p2", + "operation" : "RunInstances", + "ecu" : "NA", + "gpu" : "16", + "instanceCapacity16xlarge" : "1", + "instanceCapacity8xlarge" : "2", + "instanceCapacityXlarge" : "16", + "normalizationSizeFactor" : "NA", + "physicalCores" : "36", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4WKDEBCNFZKFEKEZ" : { + "sku" : "4WKDEBCNFZKFEKEZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "61 GiB", + "storage" : "6 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:d2.2xlarge", + "operation" : "RunInstances", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "KTX4HGW8878XMM7R" : { + "sku" : "KTX4HGW8878XMM7R", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "3.75 GiB", + "storage" : "2 x 16 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:c3.large", + "operation" : "RunInstances:0800", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AJVKWKD84J3BCR86" : { + "sku" : "AJVKWKD84J3BCR86", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "7.5 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m3.large", + "operation" : "RunInstances:0102", + "ecu" : "6.5", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "M3V33TUCANWGSDGH" : { + "sku" : "M3V33TUCANWGSDGH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "60 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.8xlarge", + "operation" : "RunInstances:0102", + "ecu" : "108", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CAJNJQPQHHFV48TD" : { + "sku" : "CAJNJQPQHHFV48TD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c5.xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RA5N9YR5B2CYJ8U7" : { + "sku" : "RA5N9YR5B2CYJ8U7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:c5.2xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BPK6ZJ9DW5BR885X" : { + "sku" : "BPK6ZJ9DW5BR885X", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 800 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i2.xlarge", + "operation" : "RunInstances:0202", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MJFVKRE8CR2DYKWF" : { + "sku" : "MJFVKRE8CR2DYKWF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "2 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i2.2xlarge", + "operation" : "RunInstances:0202", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SCM48G5B7MFU9DV3" : { + "sku" : "SCM48G5B7MFU9DV3", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Inbound", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "AWS GovCloud (US)", + "toLocationType" : "AWS Region", + "usagetype" : "USE1-UGW1-AWS-In-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "TBEWTV892NWKQS69" : { + "sku" : "TBEWTV892NWKQS69", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "1 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.2xlarge", + "operation" : "RunInstances:0006", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NBP9U2SVG37VG5S9" : { + "sku" : "NBP9U2SVG37VG5S9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "15 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.2xlarge", + "operation" : "RunInstances", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AW64VE5DA5MH4J22" : { + "sku" : "AW64VE5DA5MH4J22", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "15 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.2xlarge", + "operation" : "RunInstances:0102", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GJDDYRCUFGU7BA7D" : { + "sku" : "GJDDYRCUFGU7BA7D", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Inbound", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "EU (Frankfurt)", + "toLocationType" : "AWS Region", + "usagetype" : "USE1-EUC1-AWS-In-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "3J2VT9RG6ADN3BVK" : { + "sku" : "3J2VT9RG6ADN3BVK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "2 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:i2.2xlarge", + "operation" : "RunInstances:0800", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "U9A5GD49U2QWSB8N" : { + "sku" : "U9A5GD49U2QWSB8N", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.16xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "12000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TSDEZUXYZHBDK9YE" : { + "sku" : "TSDEZUXYZHBDK9YE", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "3,904 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:x1e.32xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "340", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3RUU5T58T7XAFAAF" : { + "sku" : "3RUU5T58T7XAFAAF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cr1.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670", + "memory" : "244 GiB", + "storage" : "2 x 120 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:cr1.8xlarge", + "operation" : "RunInstances", + "ecu" : "88", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "J5XXRJGFYZHJVQZJ" : { + "sku" : "J5XXRJGFYZHJVQZJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 80 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r3.xlarge", + "operation" : "RunInstances", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6S9PZ5AUPX5MV74N" : { + "sku" : "6S9PZ5AUPX5MV74N", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "7.5 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.xlarge", + "operation" : "RunInstances:0010", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TE2QPK3WJ4MBEASP" : { + "sku" : "TE2QPK3WJ4MBEASP", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.16xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "179", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "A2QSKG5CZVECRMUE" : { + "sku" : "A2QSKG5CZVECRMUE", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "64 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.4xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "53.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UY5E8NPU7EQX4UJD" : { + "sku" : "UY5E8NPU7EQX4UJD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "15 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.2xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QQ6P3Q6HJP7W7RYN" : { + "sku" : "QQ6P3Q6HJP7W7RYN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "1 x 320 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.4xlarge", + "operation" : "RunInstances:0010", + "ecu" : "52", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4YPVS7TMJF4ESQ24" : { + "sku" : "4YPVS7TMJF4ESQ24", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.4xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "S3H5EEV3EEF3YHPE" : { + "sku" : "S3H5EEV3EEF3YHPE", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "1 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.2xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Z926BDVSB7Q736SZ" : { + "sku" : "Z926BDVSB7Q736SZ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "8 x 1.9 NVMe SSD", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:i3.16xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4C7N4APU9GEUZ6H6" : { + "sku" : "4C7N4APU9GEUZ6H6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "3.75 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.large", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9Z79M3D9R4KBF3U2" : { + "sku" : "9Z79M3D9R4KBF3U2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:g3.4xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "0", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "T66YUXKX79359UWK" : { + "sku" : "T66YUXKX79359UWK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "17.1 GiB", + "storage" : "1 x 420", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:m2.xlarge", + "operation" : "RunInstances:0800", + "ecu" : "6.5", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AJPCC5PE24CKEBWW" : { + "sku" : "AJPCC5PE24CKEBWW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "61 GiB", + "storage" : "6 x 2000 HDD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:d2.2xlarge", + "operation" : "RunInstances:0800", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CZ9BHU45SGEFD4MA" : { + "sku" : "CZ9BHU45SGEFD4MA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "256 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.16xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "10000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RT74PXCRDW3YR4VQ" : { + "sku" : "RT74PXCRDW3YR4VQ", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "1 x 480", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:x1e.4xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "47", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SCK4YS7YAEFFVGNK" : { + "sku" : "SCK4YS7YAEFFVGNK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "256 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m4.16xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "10000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Z2FWTR8FP7YR4UXY" : { + "sku" : "Z2FWTR8FP7YR4UXY", + "productFamily" : "Dedicated Host", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2", + "instanceFamily" : "Storage optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "NA", + "storage" : "NA", + "networkPerformance" : "NA", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostUsage:d2", + "operation" : "RunInstances", + "ecu" : "NA", + "instanceCapacity2xlarge" : "4", + "instanceCapacity4xlarge" : "2", + "instanceCapacity8xlarge" : "1", + "instanceCapacityXlarge" : "8", + "normalizationSizeFactor" : "NA", + "physicalCores" : "24", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "A3G83M36QWPVFFSP" : { + "sku" : "A3G83M36QWPVFFSP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.small", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "1.7 GiB", + "storage" : "1 x 160", + "networkPerformance" : "Low", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage", + "operation" : "RunInstances:0002", + "ecu" : "Variable", + "normalizationSizeFactor" : "1", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "PJY6CW7GDQYM5RHH" : { + "sku" : "PJY6CW7GDQYM5RHH", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Inbound", + "fromLocation" : "US East (Ohio)", + "fromLocationType" : "AWS Region", + "toLocation" : "US East (N. Virginia)", + "toLocationType" : "AWS Region", + "usagetype" : "USE2-USE1-AWS-In-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "R48BU675BDZRSA46" : { + "sku" : "R48BU675BDZRSA46", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.medium", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "3.75 GiB", + "storage" : "1 x 410", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m1.medium", + "operation" : "RunInstances:0202", + "ecu" : "2", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "SQL Web", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "22BY823JMH3UZ9AS" : { + "sku" : "22BY823JMH3UZ9AS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.9xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "72 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.9xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "4500 Mbps", + "ecu" : "139", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "72", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ANHAK96GJ32FCXM9" : { + "sku" : "ANHAK96GJ32FCXM9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "4 x 1.9 NVMe SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.8xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DRXSTBE8SCECG53R" : { + "sku" : "DRXSTBE8SCECG53R", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.16xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "179", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "N7TBAPPYVJFAVWBC" : { + "sku" : "N7TBAPPYVJFAVWBC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:r4.large", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "400 Mbps", + "ecu" : "135", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "H4TBXNHHCPZMWURK" : { + "sku" : "H4TBXNHHCPZMWURK", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Inbound", + "fromLocation" : "EU (Ireland)", + "fromLocationType" : "AWS Region", + "toLocation" : "US East (N. Virginia)", + "toLocationType" : "AWS Region", + "usagetype" : "EU-USE1-AWS-In-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "WTV2MMMZFYFVHXYW" : { + "sku" : "WTV2MMMZFYFVHXYW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "1 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.2xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FP4BCUYCYE74237A" : { + "sku" : "FP4BCUYCYE74237A", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "256 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:m4.16xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "10000 Mbps", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "T5ZANFQ2RH352Q48" : { + "sku" : "T5ZANFQ2RH352Q48", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "15 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.2xlarge", + "operation" : "RunInstances:0102", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZUTU5QZ3PZY7BWCS" : { + "sku" : "ZUTU5QZ3PZY7BWCS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.9xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "72 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.9xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "4500 Mbps", + "ecu" : "139", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "72", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "B4JUK3U7ZG63RGSF" : { + "sku" : "B4JUK3U7ZG63RGSF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "30 GiB", + "storage" : "2 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.4xlarge", + "operation" : "RunInstances", + "ecu" : "55", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RG525W32DHGJSVCS" : { + "sku" : "RG525W32DHGJSVCS", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "68.4 GiB", + "storage" : "2 x 840", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m2.4xlarge", + "operation" : "RunInstances:000g", + "ecu" : "26", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7SE3X65CKC25URNP" : { + "sku" : "7SE3X65CKC25URNP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m3.2xlarge", + "operation" : "RunInstances:0102", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YHTMJU9RK3XB4R35" : { + "sku" : "YHTMJU9RK3XB4R35", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:p2.xlarge", + "operation" : "RunInstances:000g", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2R3TZFKRGVGPMMC9" : { + "sku" : "2R3TZFKRGVGPMMC9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:p3.2xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Q9SS9CE4RXPCX5KG" : { + "sku" : "Q9SS9CE4RXPCX5KG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 0.95 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "850 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BNQSZ9699GKWMJ72" : { + "sku" : "BNQSZ9699GKWMJ72", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "7.5 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "750 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MJH659788VC2CJYV" : { + "sku" : "MJH659788VC2CJYV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "15 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c4.2xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4QXRNM4XXHKD5KJH" : { + "sku" : "4QXRNM4XXHKD5KJH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 0.475 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.large", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "425 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "8744TF3WB3SSENYH" : { + "sku" : "8744TF3WB3SSENYH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "60 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.8xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "132", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "4U7JAK7UHS4DSAR8" : { + "sku" : "4U7JAK7UHS4DSAR8", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.4xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "3000 Mbps", + "ecu" : "99", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5JB8CSWXY6V42ECR" : { + "sku" : "5JB8CSWXY6V42ECR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:x1.16xlarge", + "operation" : "RunInstances:0800", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XVUGSEGTBYPTMD8N" : { + "sku" : "XVUGSEGTBYPTMD8N", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m3.2xlarge", + "operation" : "RunInstances:0006", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3SK2R9VZ8N24UV8B" : { + "sku" : "3SK2R9VZ8N24UV8B", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "1 x 240", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.2xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "23", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UBAX9CMEYA8JJEHX" : { + "sku" : "UBAX9CMEYA8JJEHX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "60 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:c3.8xlarge", + "operation" : "RunInstances:0800", + "ecu" : "108", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YGPA59CYGTE7GDPD" : { + "sku" : "YGPA59CYGTE7GDPD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "3,904 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.32xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "340", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RKEGB47DHY7WYBKQ" : { + "sku" : "RKEGB47DHY7WYBKQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.2xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "61 GiB", + "storage" : "2 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i2.2xlarge", + "operation" : "RunInstances:000g", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "P4S7RSCXQEBBBKQF" : { + "sku" : "P4S7RSCXQEBBBKQF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "t2.medium", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "clockSpeed" : "Up to 3.3 GHz", + "memory" : "4 GiB", + "storage" : "EBS only", + "networkPerformance" : "Low to Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:t2.medium", + "operation" : "RunInstances:000g", + "ecu" : "Variable", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "USG92YSEYUCAFZCC" : { + "sku" : "USG92YSEYUCAFZCC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:r4.16xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "12000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7AF3HUR3SD2EN693" : { + "sku" : "7AF3HUR3SD2EN693", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.10xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "40", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "160 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.10xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "80", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "6XRAZB77YRS54YH2" : { + "sku" : "6XRAZB77YRS54YH2", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.medium", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "3.75 GiB", + "storage" : "1 x 4 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m3.medium", + "operation" : "RunInstances:0010", + "ecu" : "3", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DMR9Q6F9N9PFPE9C" : { + "sku" : "DMR9Q6F9N9PFPE9C", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "1 x 120", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Y9MW2V2ZRXFQMQHU" : { + "sku" : "Y9MW2V2ZRXFQMQHU", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.medium", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "3.75 GiB", + "storage" : "1 x 410", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m1.medium", + "operation" : "RunInstances:0002", + "ecu" : "2", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "V2PCSTGVBXJBKMTJ" : { + "sku" : "V2PCSTGVBXJBKMTJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "4 x 1.9 NVMe SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.8xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JJR4TQHH8JY9D8BV" : { + "sku" : "JJR4TQHH8JY9D8BV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "4 x 1.9 NVMe SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.8xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2CPTVQN6QMQ24WAQ" : { + "sku" : "2CPTVQN6QMQ24WAQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.16xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "12000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QWBZPDE9BGTPCYWW" : { + "sku" : "QWBZPDE9BGTPCYWW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c1.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "7 GiB", + "storage" : "4 x 420", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c1.xlarge", + "operation" : "RunInstances", + "ecu" : "20", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BNBFMJCU6HWE4NK6" : { + "sku" : "BNBFMJCU6HWE4NK6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:c5.4xlarge", + "operation" : "Hourly", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "K9GNYJBAEBJGBE3S" : { + "sku" : "K9GNYJBAEBJGBE3S", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 0.475 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.large", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "425 Mbps", + "ecu" : "13", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "S8J79EPAU2WP28Z5" : { + "sku" : "S8J79EPAU2WP28Z5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.medium", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "3.75 GiB", + "storage" : "1 x 410", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:m1.medium", + "operation" : "RunInstances:0006", + "ecu" : "2", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "SQL Std", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "VV3ASRE8RPAY7C9U" : { + "sku" : "VV3ASRE8RPAY7C9U", + "productFamily" : "System Operation", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "provisioned" : "No", + "group" : "EBS I/O Requests", + "groupDescription" : "Input/Output Operation", + "usagetype" : "EBS:VolumeIOUsage", + "operation" : "", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XSCV3UUT79TB83MN" : { + "sku" : "XSCV3UUT79TB83MN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "8 x 800 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i2.8xlarge", + "operation" : "RunInstances:0002", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "H7NN7P9Z3E8KY8UD" : { + "sku" : "H7NN7P9Z3E8KY8UD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.18xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "72", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "144 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.18xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "9000 Mbps", + "ecu" : "278", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "144", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XNUKM2T6VT564KF3" : { + "sku" : "XNUKM2T6VT564KF3", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.9xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "72 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.9xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "4500 Mbps", + "ecu" : "139", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "72", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "B9MF6CH342MVWQRW" : { + "sku" : "B9MF6CH342MVWQRW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "15 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c3.2xlarge", + "operation" : "RunInstances:0010", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "UW7KAEYR4CZ6SHKM" : { + "sku" : "UW7KAEYR4CZ6SHKM", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Inbound", + "fromLocation" : "Asia Pacific (Tokyo)", + "fromLocationType" : "AWS Region", + "toLocation" : "US East (N. Virginia)", + "toLocationType" : "AWS Region", + "usagetype" : "APN1-USE1-AWS-In-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "SU7X27GC72VJG45S" : { + "sku" : "SU7X27GC72VJG45S", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "1 x 240", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.2xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "23", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NJ6JSD62VJ72A8GJ" : { + "sku" : "NJ6JSD62VJ72A8GJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m3.xlarge", + "operation" : "RunInstances:0202", + "ecu" : "13", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SFZ2UCQNRZD2WN5F" : { + "sku" : "SFZ2UCQNRZD2WN5F", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:x1e.16xlarge", + "operation" : "Hourly", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "179", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "DWKBVCX644ZFSPZC" : { + "sku" : "DWKBVCX644ZFSPZC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.medium", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "3.75 GiB", + "storage" : "1 x 4 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m3.medium", + "operation" : "RunInstances:0006", + "ecu" : "3", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "GTVQFYE9FHRN6U2Z" : { + "sku" : "GTVQFYE9FHRN6U2Z", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "15 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.2xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "EW588KWA3CB5EA96" : { + "sku" : "EW588KWA3CB5EA96", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "4 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.large", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3XXEP5YX5DYFE8HD" : { + "sku" : "3XXEP5YX5DYFE8HD", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "1 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.2xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MN9WQ6GC5TGSSY9E" : { + "sku" : "MN9WQ6GC5TGSSY9E", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", + "clockSpeed" : "2.6 GHz", + "memory" : "60 GiB", + "storage" : "2 x 120 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:g2.8xlarge", + "operation" : "RunInstances:0002", + "ecu" : "104", + "gpu" : "4", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JNSD8R3ZBZZH9BMM" : { + "sku" : "JNSD8R3ZBZZH9BMM", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 0.95 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "850 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7DZ2ZNK9ZVM2D8RJ" : { + "sku" : "7DZ2ZNK9ZVM2D8RJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "4 x 1.9 NVMe SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i3.8xlarge", + "operation" : "RunInstances:0010", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9SSB4RSRXFF8HK42" : { + "sku" : "9SSB4RSRXFF8HK42", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "30 GiB", + "storage" : "2 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.4xlarge", + "operation" : "RunInstances:000g", + "ecu" : "55", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AQ4BJM4AR87GBQDX" : { + "sku" : "AQ4BJM4AR87GBQDX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "30 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.4xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CX88FC6J9JAZ8TJW" : { + "sku" : "CX88FC6J9JAZ8TJW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "16 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.2xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "NP6CAG27PTSDFJW4" : { + "sku" : "NP6CAG27PTSDFJW4", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "d2.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "244 GiB", + "storage" : "24 x 2000 HDD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:d2.8xlarge", + "operation" : "RunInstances:0800", + "ecu" : "116", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AS5YFH475AAXG3U6" : { + "sku" : "AS5YFH475AAXG3U6", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m4.2xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "K97AXAD4GAYGE99Y" : { + "sku" : "K97AXAD4GAYGE99Y", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "f1.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "memory" : "976 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:f1.16xlarge", + "operation" : "RunInstances:000g", + "ecu" : "188", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YCTHWE4X8352UUP7" : { + "sku" : "YCTHWE4X8352UUP7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 0.95 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:i3.xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "850 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "2Y3RARMUM73VYH92" : { + "sku" : "2Y3RARMUM73VYH92", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "30 GiB", + "storage" : "2 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c3.4xlarge", + "operation" : "RunInstances:0002", + "ecu" : "55", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "69HHGBJ3N8F7N3PN" : { + "sku" : "69HHGBJ3N8F7N3PN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:g3.8xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "0", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "2", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "C4ADNNGW2WA5AJWY" : { + "sku" : "C4ADNNGW2WA5AJWY", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "1 x 480", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:x1e.4xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "47", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9XSHJSECKR9ATRQG" : { + "sku" : "9XSHJSECKR9ATRQG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "f1.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:f1.2xlarge", + "operation" : "RunInstances", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QFJGATXWKZNECDMG" : { + "sku" : "QFJGATXWKZNECDMG", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:c5.4xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZVXTQDHA6WPZ4MZA" : { + "sku" : "ZVXTQDHA6WPZ4MZA", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "15 GiB", + "storage" : "2 x 80 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "ebsOptimized" : "Yes", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:c3.2xlarge", + "operation" : "Hourly", + "ecu" : "28", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5MJUCCSSP8MZ34U5" : { + "sku" : "5MJUCCSSP8MZ34U5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "7.5 GiB", + "storage" : "2 x 40 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.xlarge", + "operation" : "RunInstances:000g", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9VUNFNF2X9X7UC95" : { + "sku" : "9VUNFNF2X9X7UC95", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "15.25 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.large", + "operation" : "RunInstances:000g", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "HKQX2V6VYDVCQE4V" : { + "sku" : "HKQX2V6VYDVCQE4V", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "cc2.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670", + "clockSpeed" : "2.6 GHz", + "memory" : "60.5 GiB", + "storage" : "4 x 840", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "DedicatedUsage:cc2.8xlarge", + "operation" : "RunInstances:0800", + "ecu" : "88", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "77H9Y9KFP98VPQ8Y" : { + "sku" : "77H9Y9KFP98VPQ8Y", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.16xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "12000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5QUVP6VPNFNBWMDW" : { + "sku" : "5QUVP6VPNFNBWMDW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "g3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:g3.4xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "0", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TJYZERFDZ38JVQQW" : { + "sku" : "TJYZERFDZ38JVQQW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 800 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i2.xlarge", + "operation" : "RunInstances:0010", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3ARUYSTGB7ZSA582" : { + "sku" : "3ARUYSTGB7ZSA582", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "68.4 GiB", + "storage" : "2 x 840", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "NA", + "ebsOptimized" : "Yes", + "operatingSystem" : "NA", + "licenseModel" : "NA", + "usagetype" : "EBSOptimized:m2.4xlarge", + "operation" : "Hourly", + "ecu" : "26", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "3XXW5XAES8B7AAAP" : { + "sku" : "3XXW5XAES8B7AAAP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.8xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "6000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QTBCAR9ZB82ZM54B" : { + "sku" : "QTBCAR9ZB82ZM54B", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.large", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "450 Mbps", + "ecu" : "6.5", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZDQ8JPG9VUPFXHXJ" : { + "sku" : "ZDQ8JPG9VUPFXHXJ", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1e.16xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "7000 Mbps", + "ecu" : "179", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "385FHNM4MG8P3KGR" : { + "sku" : "385FHNM4MG8P3KGR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "4 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i2.4xlarge", + "operation" : "RunInstances:0102", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "87S4RVHRSZ8J8ZD5" : { + "sku" : "87S4RVHRSZ8J8ZD5", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "4 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.large", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "8", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BZBTYKT6J87853AW" : { + "sku" : "BZBTYKT6J87853AW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c1.medium", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "1.7 GiB", + "storage" : "1 x 350", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c1.medium", + "operation" : "RunInstances:0010", + "ecu" : "2", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "H9V234B3K9QAR4NJ" : { + "sku" : "H9V234B3K9QAR4NJ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:p2.xlarge", + "operation" : "RunInstances:0002", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "B7KQBWQQMASEJN3N" : { + "sku" : "B7KQBWQQMASEJN3N", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "30 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.4xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "2000 Mbps", + "ecu" : "62", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SGCXRY4DA899SRWQ" : { + "sku" : "SGCXRY4DA899SRWQ", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p2.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "768 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:p2.16xlarge", + "operation" : "RunInstances:0010", + "ecu" : "188", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "16", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MUSDPAYU48C7WCHN" : { + "sku" : "MUSDPAYU48C7WCHN", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c1.medium", + "currentGeneration" : "No", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "1.7 GiB", + "storage" : "1 x 350", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c1.medium", + "operation" : "RunInstances", + "ecu" : "2", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "TDJBW85D7BJ6AB9K" : { + "sku" : "TDJBW85D7BJ6AB9K", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 960", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:x1e.8xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "3500 Mbps", + "ecu" : "91", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "75XER897G2X2ZNFP" : { + "sku" : "75XER897G2X2ZNFP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "8 x 1.9 NVMe SSD", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.16xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "14000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CDBGJDEAQMWTZ2TB" : { + "sku" : "CDBGJDEAQMWTZ2TB", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "BoxUsage:x1.32xlarge", + "operation" : "RunInstances:0800", + "ecu" : "349", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "285FWCDXDE9KA35M" : { + "sku" : "285FWCDXDE9KA35M", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "7.5 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m3.large", + "operation" : "RunInstances:0202", + "ecu" : "6.5", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "WU8MR6W7VJJUBGWW" : { + "sku" : "WU8MR6W7VJJUBGWW", + "productFamily" : "Compute", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "8", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "1 x 240", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:x1e.2xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "23", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "5KHB4S5E8M74C6ES" : { + "sku" : "5KHB4S5E8M74C6ES", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 800 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:i2.xlarge", + "operation" : "RunInstances", + "ecu" : "14", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "QVZGU743YEW7J8ZP" : { + "sku" : "QVZGU743YEW7J8ZP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "4 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i2.4xlarge", + "operation" : "RunInstances:0006", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "U8B7D4SWAWCW5E9F" : { + "sku" : "U8B7D4SWAWCW5E9F", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1e.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "4", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "122 GiB", + "storage" : "1 x 120", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:x1e.xlarge", + "operation" : "RunInstances:0800", + "dedicatedEbsThroughput" : "500 Mbps", + "ecu" : "12", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YXBZYU573BYR2VBR" : { + "sku" : "YXBZYU573BYR2VBR", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "1 x 320 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.4xlarge", + "operation" : "RunInstances:0006", + "ecu" : "52", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9ZMBKXJZ46UNKSTH" : { + "sku" : "9ZMBKXJZ46UNKSTH", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.8xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "6000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "BUEPRDN9GYBNSP3F" : { + "sku" : "BUEPRDN9GYBNSP3F", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:p3.2xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Q7J8RTVDQ7R7AEP9" : { + "sku" : "Q7J8RTVDQ7R7AEP9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "3.75 GiB", + "storage" : "2 x 16 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "32-bit or 64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.large", + "operation" : "RunInstances:0202", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7V39RZQPSWWKKC2U" : { + "sku" : "7V39RZQPSWWKKC2U", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", + "clockSpeed" : "2.8 GHz", + "memory" : "30 GiB", + "storage" : "2 x 160 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c3.4xlarge", + "operation" : "RunInstances:0202", + "ecu" : "55", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "JTQJ2YNV8MN79SVF" : { + "sku" : "JTQJ2YNV8MN79SVF", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.18xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "72", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "144 GiB", + "storage" : "EBS only", + "networkPerformance" : "25 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:c5.18xlarge", + "operation" : "RunInstances", + "dedicatedEbsThroughput" : "9000 Mbps", + "ecu" : "278", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "144", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7P443J9REGZVNYQY" : { + "sku" : "7P443J9REGZVNYQY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "244 GiB", + "storage" : "2 x 320 SSD", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r3.8xlarge", + "operation" : "RunInstances:0010", + "ecu" : "104", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "9HPS57TE9XYPQEV9" : { + "sku" : "9HPS57TE9XYPQEV9", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.large", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "2", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "7.5 GiB", + "storage" : "1 x 32 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m3.large", + "operation" : "RunInstances:0202", + "ecu" : "6.5", + "normalizationSizeFactor" : "4", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "R4QE46FY6EGW3G4T" : { + "sku" : "R4QE46FY6EGW3G4T", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c5.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Platinum 8124M", + "clockSpeed" : "3.0 Ghz", + "memory" : "8 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c5.xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "Upto 2250 Mbps", + "ecu" : "16", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "AJYJZ3X3S2AJ2D6D" : { + "sku" : "AJYJZ3X3S2AJ2D6D", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "p3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:p3.2xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "gpu" : "1", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "7MZTFYDPAUJUXG8R" : { + "sku" : "7MZTFYDPAUJUXG8R", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "f1.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "memory" : "122 GiB", + "storage" : "EBS only", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "RHEL", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:f1.2xlarge", + "operation" : "RunInstances:0010", + "ecu" : "26", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "RM8MDNG928Q7RY5N" : { + "sku" : "RM8MDNG928Q7RY5N", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed" : "2.4 GHz", + "memory" : "32 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:m4.2xlarge", + "operation" : "RunInstances:0002", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "XGXYRYWGNXSSEUVT" : { + "sku" : "XGXYRYWGNXSSEUVT", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Outbound", + "fromLocation" : "US East (N. Virginia)", + "fromLocationType" : "AWS Region", + "toLocation" : "US West (Oregon)", + "toLocationType" : "AWS Region", + "usagetype" : "USE1-USW2-AWS-Out-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "SUWG7U93QWGDKW8P" : { + "sku" : "SUWG7U93QWGDKW8P", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "SUSE", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:r4.8xlarge", + "operation" : "RunInstances:000g", + "dedicatedEbsThroughput" : "6000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "24EZ2DK36FZ2REKT" : { + "sku" : "24EZ2DK36FZ2REKT", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.8xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "6000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FYP43BRDNQ66J7E7" : { + "sku" : "FYP43BRDNQ66J7E7", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.32xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "128", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "1,952 GiB", + "storage" : "2 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1.32xlarge", + "operation" : "RunInstances:0102", + "ecu" : "349", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "256", + "preInstalledSw" : "SQL Ent", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "SZADZHSFYSRDW37F" : { + "sku" : "SZADZHSFYSRDW37F", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "36", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "60 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:c4.8xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "4000 Mbps", + "ecu" : "132", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "CRRB3H2DYHU6K9FV" : { + "sku" : "CRRB3H2DYHU6K9FV", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "hs1.8xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "17", + "physicalProcessor" : "Intel Xeon E5-2650", + "clockSpeed" : "2 GHz", + "memory" : "117 GiB", + "storage" : "24 x 2000", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:hs1.8xlarge", + "operation" : "RunInstances", + "ecu" : "35", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Y3Y6KWQHPWZMXFTW" : { + "sku" : "Y3Y6KWQHPWZMXFTW", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "61 GiB", + "storage" : "1 x 1.9 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.2xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "1750 Mbps", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MEWEMY6NUVGMP6AP" : { + "sku" : "MEWEMY6NUVGMP6AP", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m3.medium", + "currentGeneration" : "Yes", + "instanceFamily" : "General purpose", + "vcpu" : "1", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "3.75 GiB", + "storage" : "1 x 4 SSD", + "networkPerformance" : "Moderate", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "Bring your own license", + "usagetype" : "HostBoxUsage:m3.medium", + "operation" : "RunInstances:0800", + "ecu" : "3", + "normalizationSizeFactor" : "2", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "97BZM647G2XZPFCY" : { + "sku" : "97BZM647G2XZPFCY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i3.xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Storage optimized", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "30.5 GiB", + "storage" : "1 x 0.95 NVMe SSD", + "networkPerformance" : "Up to 10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i3.xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "850 Mbps", + "ecu" : "26", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "FFSCXMMMXUSSXA8W" : { + "sku" : "FFSCXMMMXUSSXA8W", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "c4.2xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Compute optimized", + "vcpu" : "8", + "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", + "clockSpeed" : "2.9 GHz", + "memory" : "15 GiB", + "storage" : "EBS only", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:c4.2xlarge", + "operation" : "RunInstances:0202", + "dedicatedEbsThroughput" : "1000 Mbps", + "ecu" : "31", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "16", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "YNCWT4YUEZJHAETE" : { + "sku" : "YNCWT4YUEZJHAETE", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "488 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r4.16xlarge", + "operation" : "RunInstances:0102", + "dedicatedEbsThroughput" : "12000 Mbps", + "ecu" : "27", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Ent", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "Y56F747HTG5NJVJ2" : { + "sku" : "Y56F747HTG5NJVJ2", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Inbound", + "fromLocation" : "EU (London)", + "fromLocationType" : "AWS Region", + "toLocation" : "US East (N. Virginia)", + "toLocationType" : "AWS Region", + "usagetype" : "EUW2-USE1-AWS-In-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "R5VPK73B6MUUM6YC" : { + "sku" : "R5VPK73B6MUUM6YC", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "i2.4xlarge", + "currentGeneration" : "No", + "instanceFamily" : "Storage optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "4 x 800 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:i2.4xlarge", + "operation" : "RunInstances:0202", + "ecu" : "53", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "SQL Web", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ZGMR5TZVDVP9BAJZ" : { + "sku" : "ZGMR5TZVDVP9BAJZ", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Outbound", + "fromLocation" : "Canada (Central)", + "fromLocationType" : "AWS Region", + "toLocation" : "US East (N. Virginia)", + "toLocationType" : "AWS Region", + "usagetype" : "CAN1-USE1-AWS-Out-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + }, + "2BU9UYZTGYW8M965" : { + "sku" : "2BU9UYZTGYW8M965", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "m1.xlarge", + "currentGeneration" : "No", + "instanceFamily" : "General purpose", + "vcpu" : "4", + "physicalProcessor" : "Intel Xeon Family", + "memory" : "15 GiB", + "storage" : "4 x 420", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Dedicated", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "DedicatedUsage:m1.xlarge", + "operation" : "RunInstances:0202", + "ecu" : "8", + "normalizationSizeFactor" : "8", + "preInstalledSw" : "SQL Web", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "73HRUT4W38285YYX" : { + "sku" : "73HRUT4W38285YYX", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r4.8xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "32", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed" : "2.3 GHz", + "memory" : "244 GiB", + "storage" : "EBS only", + "networkPerformance" : "10 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:r4.8xlarge", + "operation" : "RunInstances:0006", + "dedicatedEbsThroughput" : "6000 Mbps", + "ecu" : "7", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "64", + "preInstalledSw" : "SQL Std", + "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "ED4J2JJZWVS4X9HY" : { + "sku" : "ED4J2JJZWVS4X9HY", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "r3.4xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "16", + "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "clockSpeed" : "2.5 GHz", + "memory" : "122 GiB", + "storage" : "1 x 320 SSD", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:r3.4xlarge", + "operation" : "RunInstances", + "ecu" : "52", + "enhancedNetworkingSupported" : "Yes", + "normalizationSizeFactor" : "32", + "preInstalledSw" : "NA", + "processorFeatures" : "Intel AVX; Intel Turbo", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "MXS65NQ4H7WKNXGE" : { + "sku" : "MXS65NQ4H7WKNXGE", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "f1.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "GPU instance", + "vcpu" : "64", + "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", + "memory" : "976 GiB", + "storage" : "EBS only", + "networkPerformance" : "20 Gigabit", + "processorArchitecture" : "64-bit", + "tenancy" : "Host", + "operatingSystem" : "Linux", + "licenseModel" : "No License required", + "usagetype" : "HostBoxUsage:f1.16xlarge", + "operation" : "RunInstances", + "ecu" : "188", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "NA", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "D8HDF78JFRVMSXZK" : { + "sku" : "D8HDF78JFRVMSXZK", + "productFamily" : "Compute Instance", + "attributes" : { + "servicecode" : "AmazonEC2", + "location" : "US East (N. Virginia)", + "locationType" : "AWS Region", + "instanceType" : "x1.16xlarge", + "currentGeneration" : "Yes", + "instanceFamily" : "Memory optimized", + "vcpu" : "64", + "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", + "clockSpeed" : "2.3 GHz", + "memory" : "976 GiB", + "storage" : "1 x 1,920", + "networkPerformance" : "High", + "processorArchitecture" : "64-bit", + "tenancy" : "Shared", + "operatingSystem" : "Windows", + "licenseModel" : "No License required", + "usagetype" : "BoxUsage:x1.16xlarge", + "operation" : "RunInstances:0202", + "ecu" : "124.5", + "enhancedNetworkingSupported" : "Yes", + "intelAvxAvailable" : "Yes", + "intelAvx2Available" : "Yes", + "intelTurboAvailable" : "Yes", + "normalizationSizeFactor" : "128", + "preInstalledSw" : "SQL Web", + "servicename" : "Amazon Elastic Compute Cloud" + } + }, + "39FN83U7M4TB4352" : { + "sku" : "39FN83U7M4TB4352", + "productFamily" : "Data Transfer", + "attributes" : { + "servicecode" : "AWSDataTransfer", + "transferType" : "InterRegion Outbound", + "fromLocation" : "Asia Pacific (Seoul)", + "fromLocationType" : "AWS Region", + "toLocation" : "US East (N. Virginia)", + "toLocationType" : "AWS Region", + "usagetype" : "APN2-USE1-AWS-Out-Bytes", + "operation" : "", + "servicename" : "AWS Data Transfer" + } + } + }, + "terms" : { + "OnDemand" : { + "DQ578CGN99KG6ECF" : { + "DQ578CGN99KG6ECF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DQ578CGN99KG6ECF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DQ578CGN99KG6ECF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DQ578CGN99KG6ECF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.931 per On Demand Windows hs1.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PXS7W75RUSBYTA74" : { + "PXS7W75RUSBYTA74.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PXS7W75RUSBYTA74", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PXS7W75RUSBYTA74.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PXS7W75RUSBYTA74.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std m3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EP2SBMU2Z582EJNK" : { + "EP2SBMU2Z582EJNK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EP2SBMU2Z582EJNK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EP2SBMU2Z582EJNK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EP2SBMU2Z582EJNK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.924 per Dedicated Windows c1.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HX3SBKCTTNFU8UEG" : { + "HX3SBKCTTNFU8UEG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HX3SBKCTTNFU8UEG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HX3SBKCTTNFU8UEG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HX3SBKCTTNFU8UEG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Web i3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HYZTQKMNAKH6FG9C" : { + "HYZTQKMNAKH6FG9C.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HYZTQKMNAKH6FG9C", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HYZTQKMNAKH6FG9C.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HYZTQKMNAKH6FG9C.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.752 per Dedicated RHEL c5.9xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2BEAK4F883TCCQMS" : { + "2BEAK4F883TCCQMS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2BEAK4F883TCCQMS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2BEAK4F883TCCQMS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2BEAK4F883TCCQMS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.601 per Dedicated Windows with SQL Server Enterprise x1e.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Q3V4FNRZN9QKF6FC" : { + "Q3V4FNRZN9QKF6FC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Q3V4FNRZN9QKF6FC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Q3V4FNRZN9QKF6FC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Q3V4FNRZN9QKF6FC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.086 per GB - Asia Pacific (Mumbai) data transfer to US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3BZUZ8TX5Q6KDMND" : { + "3BZUZ8TX5Q6KDMND.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3BZUZ8TX5Q6KDMND", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3BZUZ8TX5Q6KDMND.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3BZUZ8TX5Q6KDMND.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.305 per On Demand RHEL m2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "F5GG77WYJNEW8T77" : { + "F5GG77WYJNEW8T77.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "F5GG77WYJNEW8T77", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "F5GG77WYJNEW8T77.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "F5GG77WYJNEW8T77.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per RHEL i3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KV46EU5KJGKB53ZX" : { + "KV46EU5KJGKB53ZX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KV46EU5KJGKB53ZX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KV46EU5KJGKB53ZX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KV46EU5KJGKB53ZX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.156 per Dedicated RHEL m1.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7QJJXQX9QWC5GEPD" : { + "7QJJXQX9QWC5GEPD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7QJJXQX9QWC5GEPD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7QJJXQX9QWC5GEPD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7QJJXQX9QWC5GEPD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.787 per On Demand Windows with SQL Web r4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DUHF29UDCPK7Z84H" : { + "DUHF29UDCPK7Z84H.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DUHF29UDCPK7Z84H", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DUHF29UDCPK7Z84H.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DUHF29UDCPK7Z84H.JRTCKXETXF.6YS6EN2CT7", + "description" : "$9.063 per Dedicated Windows with SQL Web i3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.0630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5AVR4REAWXYCDTBG" : { + "5AVR4REAWXYCDTBG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5AVR4REAWXYCDTBG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5AVR4REAWXYCDTBG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5AVR4REAWXYCDTBG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$30.144 per Dedicated Windows with SQL Server Enterprise m4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "30.1440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RA7GXBYJW245U7C5" : { + "RA7GXBYJW245U7C5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RA7GXBYJW245U7C5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RA7GXBYJW245U7C5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RA7GXBYJW245U7C5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$12.34 per On Demand SUSE p3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.3400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QC7Z34UZZ9GT65EJ" : { + "QC7Z34UZZ9GT65EJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QC7Z34UZZ9GT65EJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QC7Z34UZZ9GT65EJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QC7Z34UZZ9GT65EJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE p2.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TFK9JRBDPXTYU5ZM" : { + "TFK9JRBDPXTYU5ZM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TFK9JRBDPXTYU5ZM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TFK9JRBDPXTYU5ZM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TFK9JRBDPXTYU5ZM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.6528 per Dedicated Windows with SQL Std r4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.6528000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MSY2XU2REE8QSFZZ" : { + "MSY2XU2REE8QSFZZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MSY2XU2REE8QSFZZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MSY2XU2REE8QSFZZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MSY2XU2REE8QSFZZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Linux x1e.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CZVM5AM8JCW2BV2A" : { + "CZVM5AM8JCW2BV2A.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CZVM5AM8JCW2BV2A", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CZVM5AM8JCW2BV2A.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CZVM5AM8JCW2BV2A.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Server Enterprise x1e.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RF9FHSRZ3SVU59FJ" : { + "RF9FHSRZ3SVU59FJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RF9FHSRZ3SVU59FJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RF9FHSRZ3SVU59FJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RF9FHSRZ3SVU59FJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux r4.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AQK8CMMUKFD4JB69" : { + "AQK8CMMUKFD4JB69.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AQK8CMMUKFD4JB69", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AQK8CMMUKFD4JB69.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AQK8CMMUKFD4JB69.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL c4.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XZ79CEGC6NSB9FQ8" : { + "XZ79CEGC6NSB9FQ8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XZ79CEGC6NSB9FQ8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XZ79CEGC6NSB9FQ8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XZ79CEGC6NSB9FQ8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.728 per Dedicated Windows c5.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BQ3BGTNB2B9AK9XC" : { + "BQ3BGTNB2B9AK9XC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BQ3BGTNB2B9AK9XC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BQ3BGTNB2B9AK9XC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BQ3BGTNB2B9AK9XC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.02 for 400 Mbps per r3.xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2WRUKSBG6TN3PSR2" : { + "2WRUKSBG6TN3PSR2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2WRUKSBG6TN3PSR2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2WRUKSBG6TN3PSR2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2WRUKSBG6TN3PSR2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.398 per On Demand Windows BYOL c4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SN5UZ97VKJUAGEM5" : { + "SN5UZ97VKJUAGEM5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SN5UZ97VKJUAGEM5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SN5UZ97VKJUAGEM5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SN5UZ97VKJUAGEM5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Server Enterprise c5.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SQKVU3RSHDUKCC86" : { + "SQKVU3RSHDUKCC86.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SQKVU3RSHDUKCC86", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SQKVU3RSHDUKCC86.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SQKVU3RSHDUKCC86.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.600 per On Demand Windows cg1.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CDHRWPJ4QQUN4CPP" : { + "CDHRWPJ4QQUN4CPP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CDHRWPJ4QQUN4CPP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CDHRWPJ4QQUN4CPP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CDHRWPJ4QQUN4CPP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.870 per Dedicated SQL Web m2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EGSUTJB8BPPKZR2N" : { + "EGSUTJB8BPPKZR2N.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EGSUTJB8BPPKZR2N", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EGSUTJB8BPPKZR2N.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EGSUTJB8BPPKZR2N.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.078 per Dedicated Windows BYOL m2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "39SAA25CYWD748WC" : { + "39SAA25CYWD748WC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "39SAA25CYWD748WC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "39SAA25CYWD748WC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "39SAA25CYWD748WC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL c4.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6ZNK2Z79AEEBFV3M" : { + "6ZNK2Z79AEEBFV3M.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6ZNK2Z79AEEBFV3M", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6ZNK2Z79AEEBFV3M.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6ZNK2Z79AEEBFV3M.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per GB - US East (Northern Virginia) data transfer from EU (London)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YGC2QHNNR7NU4B88" : { + "YGC2QHNNR7NU4B88.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YGC2QHNNR7NU4B88", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YGC2QHNNR7NU4B88.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YGC2QHNNR7NU4B88.JRTCKXETXF.6YS6EN2CT7", + "description" : "$13.20 per Dedicated Linux f1.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.2000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "B36YBM4BFMUWZSG4" : { + "B36YBM4BFMUWZSG4.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "B36YBM4BFMUWZSG4", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "B36YBM4BFMUWZSG4.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "B36YBM4BFMUWZSG4.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.193 per Dedicated Linux m1.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "U9GUPGBUQ64FG73U" : { + "U9GUPGBUQ64FG73U.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "U9GUPGBUQ64FG73U", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "U9GUPGBUQ64FG73U.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "U9GUPGBUQ64FG73U.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Std c5.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "T72RDCVVMHKECZ63" : { + "T72RDCVVMHKECZ63.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "T72RDCVVMHKECZ63", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "T72RDCVVMHKECZ63.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "T72RDCVVMHKECZ63.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.976 per On Demand SQL Std m2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Q73NFXYCVJRVJD5P" : { + "Q73NFXYCVJRVJD5P.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Q73NFXYCVJRVJD5P", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Q73NFXYCVJRVJD5P.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Q73NFXYCVJRVJD5P.JRTCKXETXF.6YS6EN2CT7", + "description" : "$9.836 per Dedicated SQL Std i2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.8360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DQKFGKR56DWDJFRK" : { + "DQKFGKR56DWDJFRK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DQKFGKR56DWDJFRK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DQKFGKR56DWDJFRK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DQKFGKR56DWDJFRK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise i2.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "E92W6J6ZWCYNHQYK" : { + "E92W6J6ZWCYNHQYK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "E92W6J6ZWCYNHQYK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "E92W6J6ZWCYNHQYK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "E92W6J6ZWCYNHQYK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.96 per On Demand RHEL p2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SVUSEDJB94K6K37X" : { + "SVUSEDJB94K6K37X.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SVUSEDJB94K6K37X", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SVUSEDJB94K6K37X.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SVUSEDJB94K6K37X.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.881 per Dedicated Usage Windows with SQL Web c4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "X6FJM3B6HUSDM27X" : { + "X6FJM3B6HUSDM27X.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "X6FJM3B6HUSDM27X", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "X6FJM3B6HUSDM27X.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "X6FJM3B6HUSDM27X.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.935 per Dedicated SUSE x1e.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "W74H9N7H8NNRHRRV" : { + "W74H9N7H8NNRHRRV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "W74H9N7H8NNRHRRV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "W74H9N7H8NNRHRRV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "W74H9N7H8NNRHRRV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$26.818 per On Demand RHEL x1e.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "26.8180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JADXKP28ZPH5KPM8" : { + "JADXKP28ZPH5KPM8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JADXKP28ZPH5KPM8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JADXKP28ZPH5KPM8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JADXKP28ZPH5KPM8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL m3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "22YA2RYTS4SSFJRY" : { + "22YA2RYTS4SSFJRY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "22YA2RYTS4SSFJRY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "22YA2RYTS4SSFJRY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "22YA2RYTS4SSFJRY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std i2.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SBHS3JAQSXPZMQSH" : { + "SBHS3JAQSXPZMQSH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SBHS3JAQSXPZMQSH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SBHS3JAQSXPZMQSH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SBHS3JAQSXPZMQSH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.319 per Dedicated Usage SUSE c4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "A67CJDV9B3YBP6N6" : { + "A67CJDV9B3YBP6N6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "A67CJDV9B3YBP6N6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "A67CJDV9B3YBP6N6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "A67CJDV9B3YBP6N6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.6 per On Demand Linux g2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2VKUG32DUF246T8S" : { + "2VKUG32DUF246T8S.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2VKUG32DUF246T8S", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2VKUG32DUF246T8S.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2VKUG32DUF246T8S.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per GB - US East (Northern Virginia) data transfer from US East (Ohio)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QTWEYQU689QP4W2Y" : { + "QTWEYQU689QP4W2Y.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QTWEYQU689QP4W2Y", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QTWEYQU689QP4W2Y.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QTWEYQU689QP4W2Y.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows c5.9xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DA7QMR94RJ2CZC88" : { + "DA7QMR94RJ2CZC88.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DA7QMR94RJ2CZC88", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DA7QMR94RJ2CZC88.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DA7QMR94RJ2CZC88.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL r4.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SQZMQXR6THWASKYH" : { + "SQZMQXR6THWASKYH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SQZMQXR6THWASKYH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SQZMQXR6THWASKYH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SQZMQXR6THWASKYH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.74 per On Demand Windows with SQL Std r3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JY3YATTYGNTRDKBA" : { + "JY3YATTYGNTRDKBA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JY3YATTYGNTRDKBA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JY3YATTYGNTRDKBA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JY3YATTYGNTRDKBA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows p3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XVCPRU82RU77VTVY" : { + "XVCPRU82RU77VTVY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XVCPRU82RU77VTVY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XVCPRU82RU77VTVY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XVCPRU82RU77VTVY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$8.058 per Dedicated Windows with SQL Std i3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.0580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9RDKMFQK57E4CCGM" : { + "9RDKMFQK57E4CCGM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9RDKMFQK57E4CCGM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9RDKMFQK57E4CCGM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9RDKMFQK57E4CCGM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per SUSE x1e.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RKQ5SSVTNQ4ZKZUB" : { + "RKQ5SSVTNQ4ZKZUB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RKQ5SSVTNQ4ZKZUB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RKQ5SSVTNQ4ZKZUB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RKQ5SSVTNQ4ZKZUB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.52 per On Demand Windows BYOL c1.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZACFFWPPC668YV8A" : { + "ZACFFWPPC668YV8A.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZACFFWPPC668YV8A", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZACFFWPPC668YV8A.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZACFFWPPC668YV8A.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per GB - Asia Pacific (Sydney) data transfer from US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "47GP959QAF69YPG5" : { + "47GP959QAF69YPG5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "47GP959QAF69YPG5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "47GP959QAF69YPG5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "47GP959QAF69YPG5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.20 per On Demand Linux m4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PCMEF8PUJ2K4JEB5" : { + "PCMEF8PUJ2K4JEB5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PCMEF8PUJ2K4JEB5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PCMEF8PUJ2K4JEB5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PCMEF8PUJ2K4JEB5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.518 per Dedicated Windows m2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "T9CM8EYXT4ZBVWNE" : { + "T9CM8EYXT4ZBVWNE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "T9CM8EYXT4ZBVWNE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "T9CM8EYXT4ZBVWNE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "T9CM8EYXT4ZBVWNE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.746 per Dedicated Windows BYOL i3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XC5ZWJZS84Q3XZTZ" : { + "XC5ZWJZS84Q3XZTZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XC5ZWJZS84Q3XZTZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XC5ZWJZS84Q3XZTZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XC5ZWJZS84Q3XZTZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.384 per Dedicated RHEL g3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XMCTY6J8BEK2CTG2" : { + "XMCTY6J8BEK2CTG2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XMCTY6J8BEK2CTG2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XMCTY6J8BEK2CTG2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XMCTY6J8BEK2CTG2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.973 per On Demand Windows i2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "G7CNANS9EFDWRFTB" : { + "G7CNANS9EFDWRFTB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "G7CNANS9EFDWRFTB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "G7CNANS9EFDWRFTB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "G7CNANS9EFDWRFTB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL r3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "94FAEGR9U7X9TX7P" : { + "94FAEGR9U7X9TX7P.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "94FAEGR9U7X9TX7P", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "94FAEGR9U7X9TX7P.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "94FAEGR9U7X9TX7P.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE c4.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YQT3C842QHBG6XCU" : { + "YQT3C842QHBG6XCU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YQT3C842QHBG6XCU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YQT3C842QHBG6XCU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YQT3C842QHBG6XCU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.045 per GB-month of Throughput Optimized HDD (st1) provisioned storage - US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB-Mo", + "pricePerUnit" : { + "USD" : "0.0450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2BG23N2FNX3BKVFW" : { + "2BG23N2FNX3BKVFW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2BG23N2FNX3BKVFW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2BG23N2FNX3BKVFW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2BG23N2FNX3BKVFW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.02 per GB - US East (Northern Virginia) data transfer to EU (Germany)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YPSGG4AGGKWCT4F5" : { + "YPSGG4AGGKWCT4F5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YPSGG4AGGKWCT4F5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YPSGG4AGGKWCT4F5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YPSGG4AGGKWCT4F5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.834 per On Demand Windows BYOL x1e.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NSYRY4TWKKZQG94N" : { + "NSYRY4TWKKZQG94N.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NSYRY4TWKKZQG94N", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NSYRY4TWKKZQG94N.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NSYRY4TWKKZQG94N.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows BYOL i3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QPCQXM3E9RSBMMU9" : { + "QPCQXM3E9RSBMMU9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QPCQXM3E9RSBMMU9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QPCQXM3E9RSBMMU9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QPCQXM3E9RSBMMU9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.862 per Dedicated Usage RHEL r3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VKHDPS8VTZRT43GD" : { + "VKHDPS8VTZRT43GD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VKHDPS8VTZRT43GD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VKHDPS8VTZRT43GD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VKHDPS8VTZRT43GD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.886 per Dedicated Windows with SQL Web c5.9xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GAMAEGQGHSWC95UR" : { + "GAMAEGQGHSWC95UR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GAMAEGQGHSWC95UR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GAMAEGQGHSWC95UR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GAMAEGQGHSWC95UR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.968 per On Demand Windows i3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BYRRQU7P3FHKBRZR" : { + "BYRRQU7P3FHKBRZR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BYRRQU7P3FHKBRZR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BYRRQU7P3FHKBRZR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BYRRQU7P3FHKBRZR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.567 per On Demand Windows with SQL Web i3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3E2DK2EWM3HWCYX7" : { + "3E2DK2EWM3HWCYX7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3E2DK2EWM3HWCYX7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3E2DK2EWM3HWCYX7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3E2DK2EWM3HWCYX7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL d2.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JNEJWP3E6GZMD3DR" : { + "JNEJWP3E6GZMD3DR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JNEJWP3E6GZMD3DR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JNEJWP3E6GZMD3DR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JNEJWP3E6GZMD3DR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise c4.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZH5YZDSEMAZNXC2E" : { + "ZH5YZDSEMAZNXC2E.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZH5YZDSEMAZNXC2E", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZH5YZDSEMAZNXC2E.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZH5YZDSEMAZNXC2E.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux i2.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9VWFY2XSEFEGH78A" : { + "9VWFY2XSEFEGH78A.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9VWFY2XSEFEGH78A", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9VWFY2XSEFEGH78A.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9VWFY2XSEFEGH78A.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per RHEL c5.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "E7FZJRV7JXQJXFED" : { + "E7FZJRV7JXQJXFED.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "E7FZJRV7JXQJXFED", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "E7FZJRV7JXQJXFED.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "E7FZJRV7JXQJXFED.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.383 per Dedicated SQL Web c3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "F3MSPCKJ74QTGZ7J" : { + "F3MSPCKJ74QTGZ7J.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "F3MSPCKJ74QTGZ7J", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "F3MSPCKJ74QTGZ7J.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "F3MSPCKJ74QTGZ7J.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.53 per On Demand RHEL m4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "T64KKYA6S8ZUXCAT" : { + "T64KKYA6S8ZUXCAT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "T64KKYA6S8ZUXCAT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "T64KKYA6S8ZUXCAT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "T64KKYA6S8ZUXCAT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE c4.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "J95CCXETUZE5KFXR" : { + "J95CCXETUZE5KFXR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "J95CCXETUZE5KFXR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "J95CCXETUZE5KFXR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "J95CCXETUZE5KFXR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per SUSE p3.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "R7PB2UQAZQDARZ8X" : { + "R7PB2UQAZQDARZ8X.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "R7PB2UQAZQDARZ8X", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "R7PB2UQAZQDARZ8X.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "R7PB2UQAZQDARZ8X.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.406 per Dedicated Windows x1e.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.4060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2DACTCDEQHTNHX93" : { + "2DACTCDEQHTNHX93.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2DACTCDEQHTNHX93", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2DACTCDEQHTNHX93.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2DACTCDEQHTNHX93.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise i2.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "55BBGNQ587XXZTH4" : { + "55BBGNQ587XXZTH4.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "55BBGNQ587XXZTH4", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "55BBGNQ587XXZTH4.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "55BBGNQ587XXZTH4.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.500 per Dedicated Linux cr1.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AAY7WVV9ASN7U5CG" : { + "AAY7WVV9ASN7U5CG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AAY7WVV9ASN7U5CG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AAY7WVV9ASN7U5CG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AAY7WVV9ASN7U5CG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std c4.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "429MR8T2YBX27EZR" : { + "429MR8T2YBX27EZR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "429MR8T2YBX27EZR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "429MR8T2YBX27EZR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "429MR8T2YBX27EZR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.896 per On Demand SUSE c4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KP89XKS7BFTMVX77" : { + "KP89XKS7BFTMVX77.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KP89XKS7BFTMVX77", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KP89XKS7BFTMVX77.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KP89XKS7BFTMVX77.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.629 per On Demand SQL Std m1.small Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JZW848E84BCHGUHR" : { + "JZW848E84BCHGUHR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JZW848E84BCHGUHR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JZW848E84BCHGUHR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JZW848E84BCHGUHR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL r4.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "35QACGXEGWD9AZHY" : { + "35QACGXEGWD9AZHY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "35QACGXEGWD9AZHY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "35QACGXEGWD9AZHY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "35QACGXEGWD9AZHY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.177 per On Demand Windows c5.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QQMYSYW64K9VEPF5" : { + "QQMYSYW64K9VEPF5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QQMYSYW64K9VEPF5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QQMYSYW64K9VEPF5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QQMYSYW64K9VEPF5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.336 per Dedicated Usage Windows BYOL x1.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SS8ZSWSJUYBWBV7G" : { + "SS8ZSWSJUYBWBV7G.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SS8ZSWSJUYBWBV7G", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SS8ZSWSJUYBWBV7G.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SS8ZSWSJUYBWBV7G.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Web c5.18xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZJC9VZJF5NZNYSVK" : { + "ZJC9VZJF5NZNYSVK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZJC9VZJF5NZNYSVK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZJC9VZJF5NZNYSVK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZJC9VZJF5NZNYSVK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.76 per On Demand Linux d2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3EM3XGHPBHA5A7G9" : { + "3EM3XGHPBHA5A7G9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3EM3XGHPBHA5A7G9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3EM3XGHPBHA5A7G9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3EM3XGHPBHA5A7G9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.76 per On Demand SUSE r3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "65VXSY6D3U449E4W" : { + "65VXSY6D3U449E4W.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "65VXSY6D3U449E4W", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "65VXSY6D3U449E4W.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "65VXSY6D3U449E4W.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per RHEL x1e.32xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "V6J3XRHZNGUJMG3Z" : { + "V6J3XRHZNGUJMG3Z.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "V6J3XRHZNGUJMG3Z", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "V6J3XRHZNGUJMG3Z.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "V6J3XRHZNGUJMG3Z.JRTCKXETXF.6YS6EN2CT7", + "description" : "$10.406 per Dedicated Windows with SQL Server Enterprise x1e.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.4060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FVBHJHDCMPPWYN7V" : { + "FVBHJHDCMPPWYN7V.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FVBHJHDCMPPWYN7V", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FVBHJHDCMPPWYN7V.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FVBHJHDCMPPWYN7V.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.527 per Dedicated Windows i3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9GWTW8S686K9W5FP" : { + "9GWTW8S686K9W5FP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9GWTW8S686K9W5FP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9GWTW8S686K9W5FP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9GWTW8S686K9W5FP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.341 per Dedicated SQL Web c1.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "88VG68PMGN3M4ZEY" : { + "88VG68PMGN3M4ZEY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "88VG68PMGN3M4ZEY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "88VG68PMGN3M4ZEY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "88VG68PMGN3M4ZEY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$13.344 per On Demand Linux x1e.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.3440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "W7UEAU2BZ54FZMWV" : { + "W7UEAU2BZ54FZMWV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "W7UEAU2BZ54FZMWV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "W7UEAU2BZ54FZMWV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "W7UEAU2BZ54FZMWV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web r3.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "WT63RNHXYTKJPT3V" : { + "WT63RNHXYTKJPT3V.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "WT63RNHXYTKJPT3V", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "WT63RNHXYTKJPT3V.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "WT63RNHXYTKJPT3V.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.164 per On Demand SUSE r4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XKKYTV6J2N4E3GXA" : { + "XKKYTV6J2N4E3GXA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XKKYTV6J2N4E3GXA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XKKYTV6J2N4E3GXA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XKKYTV6J2N4E3GXA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$13.438 per Dedicated Usage SUSE x1.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.4380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HHBS2UFCC9G8F3DM" : { + "HHBS2UFCC9G8F3DM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HHBS2UFCC9G8F3DM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HHBS2UFCC9G8F3DM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HHBS2UFCC9G8F3DM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.0464 per On Demand Windows BYOL t2.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0464000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7KSR4DFTZFRCXGGH" : { + "7KSR4DFTZFRCXGGH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7KSR4DFTZFRCXGGH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7KSR4DFTZFRCXGGH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7KSR4DFTZFRCXGGH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$8.350 per On Demand SQL Std hs1.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.3500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7EQFT8UVNNKTV2AA" : { + "7EQFT8UVNNKTV2AA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7EQFT8UVNNKTV2AA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7EQFT8UVNNKTV2AA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7EQFT8UVNNKTV2AA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.09 per GB - Asia Pacific (Tokyo) data transfer to US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3B3UNRXVA6RCCGWP" : { + "3B3UNRXVA6RCCGWP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3B3UNRXVA6RCCGWP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3B3UNRXVA6RCCGWP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3B3UNRXVA6RCCGWP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$5.52 per On Demand Windows BYOL d2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.5200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "G7T27N57ERE3PVRC" : { + "G7T27N57ERE3PVRC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "G7T27N57ERE3PVRC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "G7T27N57ERE3PVRC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "G7T27N57ERE3PVRC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.827 per Dedicated Windows c3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9KA8YGU8KFGQ7ERN" : { + "9KA8YGU8KFGQ7ERN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9KA8YGU8KFGQ7ERN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9KA8YGU8KFGQ7ERN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9KA8YGU8KFGQ7ERN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.416 per On Demand Windows c5.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6PNPTZCGGYT2UXSS" : { + "6PNPTZCGGYT2UXSS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6PNPTZCGGYT2UXSS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6PNPTZCGGYT2UXSS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6PNPTZCGGYT2UXSS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.596 per Dedicated SQL Web c3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TMTUPBFYDNCYXCDK" : { + "TMTUPBFYDNCYXCDK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TMTUPBFYDNCYXCDK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TMTUPBFYDNCYXCDK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TMTUPBFYDNCYXCDK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$14.5 per On Demand SUSE p2.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.5000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GH36ES6UF9N3TAPC" : { + "GH36ES6UF9N3TAPC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GH36ES6UF9N3TAPC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GH36ES6UF9N3TAPC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GH36ES6UF9N3TAPC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.036 per Dedicated Usage Linux d2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FHFGWVJGRUAB5YUF" : { + "FHFGWVJGRUAB5YUF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FHFGWVJGRUAB5YUF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FHFGWVJGRUAB5YUF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FHFGWVJGRUAB5YUF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.06 per On Demand Linux c5.18xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2KNBBY32AX7JPE72" : { + "2KNBBY32AX7JPE72.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2KNBBY32AX7JPE72", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2KNBBY32AX7JPE72.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2KNBBY32AX7JPE72.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.682 per Dedicated Windows with SQL Server Enterprise c5.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QCQ27AYFPSSTJG55" : { + "QCQ27AYFPSSTJG55.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QCQ27AYFPSSTJG55", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QCQ27AYFPSSTJG55.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QCQ27AYFPSSTJG55.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.490 per On Demand Linux m2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Y6BQV4XBTAFVVV2A" : { + "Y6BQV4XBTAFVVV2A.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Y6BQV4XBTAFVVV2A", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Y6BQV4XBTAFVVV2A.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Y6BQV4XBTAFVVV2A.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.109 per Dedicated Windows i3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2TWQMPVA6E2FTADF" : { + "2TWQMPVA6E2FTADF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2TWQMPVA6E2FTADF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2TWQMPVA6E2FTADF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2TWQMPVA6E2FTADF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL m4.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XCS4G266BD9VMZE6" : { + "XCS4G266BD9VMZE6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XCS4G266BD9VMZE6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XCS4G266BD9VMZE6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XCS4G266BD9VMZE6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Linux i3.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "R8FEN7446FZH75Y5" : { + "R8FEN7446FZH75Y5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "R8FEN7446FZH75Y5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "R8FEN7446FZH75Y5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "R8FEN7446FZH75Y5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows r4.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "V3RF6UFJXPKZ5CNE" : { + "V3RF6UFJXPKZ5CNE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "V3RF6UFJXPKZ5CNE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "V3RF6UFJXPKZ5CNE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "V3RF6UFJXPKZ5CNE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.439 per Dedicated SUSE x1e.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UAKHM4ASYH9KFBED" : { + "UAKHM4ASYH9KFBED.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UAKHM4ASYH9KFBED", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UAKHM4ASYH9KFBED.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UAKHM4ASYH9KFBED.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.33 per On Demand RHEL p2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "29WJRTNV2QJXKUW5" : { + "29WJRTNV2QJXKUW5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "29WJRTNV2QJXKUW5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "29WJRTNV2QJXKUW5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "29WJRTNV2QJXKUW5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.965 per Dedicated RHEL x1e.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MDQWTP6HDQDFGNVZ" : { + "MDQWTP6HDQDFGNVZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MDQWTP6HDQDFGNVZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MDQWTP6HDQDFGNVZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MDQWTP6HDQDFGNVZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.708 per On Demand Windows with SQL Server Enterprise c5.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6W35NFYWJ6ZG37VX" : { + "6W35NFYWJ6ZG37VX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6W35NFYWJ6ZG37VX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6W35NFYWJ6ZG37VX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6W35NFYWJ6ZG37VX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.030 per On Demand SUSE t1.micro Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7AH58V9CNVM6SBXM" : { + "7AH58V9CNVM6SBXM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7AH58V9CNVM6SBXM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7AH58V9CNVM6SBXM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7AH58V9CNVM6SBXM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.676 per Dedicated Windows with SQL Web x1e.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.6760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HPSQPPJ249MHQR6A" : { + "HPSQPPJ249MHQR6A.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HPSQPPJ249MHQR6A", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HPSQPPJ249MHQR6A.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HPSQPPJ249MHQR6A.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.342 per On Demand Windows with SQL Web x1e.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.3420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CE5S3J445F4X6VYF" : { + "CE5S3J445F4X6VYF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CE5S3J445F4X6VYF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CE5S3J445F4X6VYF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CE5S3J445F4X6VYF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$8.327 per Dedicated Usage Windows with SQL Web r4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.3270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VETEGFEN68R236A6" : { + "VETEGFEN68R236A6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VETEGFEN68R236A6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VETEGFEN68R236A6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VETEGFEN68R236A6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 for 1 Mbps per x1e.8xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Z9AT4X8BA5YM4T7A" : { + "Z9AT4X8BA5YM4T7A.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Z9AT4X8BA5YM4T7A", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Z9AT4X8BA5YM4T7A.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Z9AT4X8BA5YM4T7A.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.42 per On Demand M4 Dedicated Host Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RN2BTZEEU3PRHGPQ" : { + "RN2BTZEEU3PRHGPQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RN2BTZEEU3PRHGPQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RN2BTZEEU3PRHGPQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RN2BTZEEU3PRHGPQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$8.066 per On Demand Windows with SQL Server Enterprise r3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.0660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XJQHREQ4GHZQKQU7" : { + "XJQHREQ4GHZQKQU7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XJQHREQ4GHZQKQU7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XJQHREQ4GHZQKQU7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XJQHREQ4GHZQKQU7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per GB - Asia Pacific (Seoul) data transfer from US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Q7J4FUMSN7DX2PHJ" : { + "Q7J4FUMSN7DX2PHJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Q7J4FUMSN7DX2PHJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Q7J4FUMSN7DX2PHJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Q7J4FUMSN7DX2PHJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise r4.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Q8V833FWUY52YX8W" : { + "Q8V833FWUY52YX8W.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Q8V833FWUY52YX8W", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Q8V833FWUY52YX8W.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Q8V833FWUY52YX8W.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web c3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SEEZD7FKBH2QXGYK" : { + "SEEZD7FKBH2QXGYK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SEEZD7FKBH2QXGYK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SEEZD7FKBH2QXGYK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SEEZD7FKBH2QXGYK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$24.48 per Dedicated Linux p3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "24.4800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EEMNBPTSMJARKSKJ" : { + "EEMNBPTSMJARKSKJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EEMNBPTSMJARKSKJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EEMNBPTSMJARKSKJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EEMNBPTSMJARKSKJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std r3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MGHXZ6GM47D23SUV" : { + "MGHXZ6GM47D23SUV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MGHXZ6GM47D23SUV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MGHXZ6GM47D23SUV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MGHXZ6GM47D23SUV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.6 per On Demand Windows BYOL hs1.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.6000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "R44YAG7V59VVJURM" : { + "R44YAG7V59VVJURM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "R44YAG7V59VVJURM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "R44YAG7V59VVJURM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "R44YAG7V59VVJURM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.876 per Dedicated RHEL i3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "E5SXHSF9V8H3MYZD" : { + "E5SXHSF9V8H3MYZD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "E5SXHSF9V8H3MYZD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "E5SXHSF9V8H3MYZD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "E5SXHSF9V8H3MYZD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.1 per On Demand Windows BYOL cg1.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SPK2TX869ZYTJYHY" : { + "SPK2TX869ZYTJYHY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SPK2TX869ZYTJYHY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SPK2TX869ZYTJYHY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SPK2TX869ZYTJYHY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows BYOL x1e.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KR7FACVV38RW2UPT" : { + "KR7FACVV38RW2UPT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KR7FACVV38RW2UPT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KR7FACVV38RW2UPT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KR7FACVV38RW2UPT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std r4.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8WJ6ATW98R4XURM2" : { + "8WJ6ATW98R4XURM2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8WJ6ATW98R4XURM2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8WJ6ATW98R4XURM2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8WJ6ATW98R4XURM2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.233 per On Demand SUSE r4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "C8A3366T6RWMUWD6" : { + "C8A3366T6RWMUWD6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "C8A3366T6RWMUWD6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "C8A3366T6RWMUWD6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "C8A3366T6RWMUWD6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$13.824 per Dedicated Windows with SQL Std m4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.8240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RP3ZUBNA3QZ7JHU5" : { + "RP3ZUBNA3QZ7JHU5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RP3ZUBNA3QZ7JHU5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RP3ZUBNA3QZ7JHU5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RP3ZUBNA3QZ7JHU5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per GB data transfer in to US East (Northern Virginia) from CloudFront", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4TCUDNKW7PMPSUT2" : { + "4TCUDNKW7PMPSUT2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4TCUDNKW7PMPSUT2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4TCUDNKW7PMPSUT2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4TCUDNKW7PMPSUT2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.66 per On Demand Linux r3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "P6N8TE7UUQ73EHRS" : { + "P6N8TE7UUQ73EHRS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "P6N8TE7UUQ73EHRS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "P6N8TE7UUQ73EHRS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "P6N8TE7UUQ73EHRS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.09 per Dedicated Linux c5.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UDEYV89RV6UUPFA2" : { + "UDEYV89RV6UUPFA2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UDEYV89RV6UUPFA2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UDEYV89RV6UUPFA2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UDEYV89RV6UUPFA2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per RHEL i3.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HXX5KQP8SE3AS5E2" : { + "HXX5KQP8SE3AS5E2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HXX5KQP8SE3AS5E2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HXX5KQP8SE3AS5E2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HXX5KQP8SE3AS5E2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.532 per On Demand Windows with SQL Server Enterprise c4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HFJ8JNVXU9Z88543" : { + "HFJ8JNVXU9Z88543.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HFJ8JNVXU9Z88543", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HFJ8JNVXU9Z88543.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HFJ8JNVXU9Z88543.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.608 per Dedicated SUSE g3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HBN8KMXQ2AA8Z2EV" : { + "HBN8KMXQ2AA8Z2EV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HBN8KMXQ2AA8Z2EV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HBN8KMXQ2AA8Z2EV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HBN8KMXQ2AA8Z2EV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.048 per Dedicated Windows BYOL m1.small Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "D5X7AACFHDWJ6DC4" : { + "D5X7AACFHDWJ6DC4.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "D5X7AACFHDWJ6DC4", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "D5X7AACFHDWJ6DC4.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "D5X7AACFHDWJ6DC4.JRTCKXETXF.6YS6EN2CT7", + "description" : "$24.48 per On Demand Windows BYOL p3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "24.4800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "W3WU9RECE72NMJ77" : { + "W3WU9RECE72NMJ77.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "W3WU9RECE72NMJ77", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "W3WU9RECE72NMJ77.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "W3WU9RECE72NMJ77.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.520 per On Demand SUSE c3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YT69AAZT9MZJXMUB" : { + "YT69AAZT9MZJXMUB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YT69AAZT9MZJXMUB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YT69AAZT9MZJXMUB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YT69AAZT9MZJXMUB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.498 per On Demand Windows with SQL Std x1e.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "B73TJ3GDPEVMDXTQ" : { + "B73TJ3GDPEVMDXTQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "B73TJ3GDPEVMDXTQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "B73TJ3GDPEVMDXTQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "B73TJ3GDPEVMDXTQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$31.2 per On Demand Windows with SQL Server Enterprise r4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "31.2000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7CWP6FB636NZ4578" : { + "7CWP6FB636NZ4578.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7CWP6FB636NZ4578", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7CWP6FB636NZ4578.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7CWP6FB636NZ4578.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Linux i3.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GSWT4ZQ4JNMRW7YU" : { + "GSWT4ZQ4JNMRW7YU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GSWT4ZQ4JNMRW7YU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GSWT4ZQ4JNMRW7YU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GSWT4ZQ4JNMRW7YU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows BYOL p3.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "932MRHTPXM73RZJM" : { + "932MRHTPXM73RZJM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "932MRHTPXM73RZJM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "932MRHTPXM73RZJM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "932MRHTPXM73RZJM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per RHEL i3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6UXYTS4EWKB6WXM9" : { + "6UXYTS4EWKB6WXM9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6UXYTS4EWKB6WXM9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6UXYTS4EWKB6WXM9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6UXYTS4EWKB6WXM9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.02 per GB - US East (Northern Virginia) data transfer to Asia Pacific (Sydney)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "N2ZR79PK3EYG8Y2Q" : { + "N2ZR79PK3EYG8Y2Q.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "N2ZR79PK3EYG8Y2Q", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "N2ZR79PK3EYG8Y2Q.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "N2ZR79PK3EYG8Y2Q.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.853 per On Demand Windows BYOL i2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZPYBCRBFCYN9APCP" : { + "ZPYBCRBFCYN9APCP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZPYBCRBFCYN9APCP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZPYBCRBFCYN9APCP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZPYBCRBFCYN9APCP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.869 per Dedicated Usage SUSE d2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RPZ8YUERRQ8JPNYQ" : { + "RPZ8YUERRQ8JPNYQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RPZ8YUERRQ8JPNYQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RPZ8YUERRQ8JPNYQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RPZ8YUERRQ8JPNYQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL r3.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "V8J7UTRH4P2HW8YW" : { + "V8J7UTRH4P2HW8YW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "V8J7UTRH4P2HW8YW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "V8J7UTRH4P2HW8YW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "V8J7UTRH4P2HW8YW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.715 per Dedicated Usage RHEL r4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QKYEBPNSRB9NX7TU" : { + "QKYEBPNSRB9NX7TU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QKYEBPNSRB9NX7TU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QKYEBPNSRB9NX7TU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QKYEBPNSRB9NX7TU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.585 per Dedicated Usage Windows BYOL m3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MB9M33K6AWVAZT8U" : { + "MB9M33K6AWVAZT8U.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MB9M33K6AWVAZT8U", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MB9M33K6AWVAZT8U.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MB9M33K6AWVAZT8U.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.138 per Dedicated Windows r3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8QZCKNB62EDMDT63" : { + "8QZCKNB62EDMDT63.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8QZCKNB62EDMDT63", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8QZCKNB62EDMDT63.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8QZCKNB62EDMDT63.JRTCKXETXF.6YS6EN2CT7", + "description" : "$13.338 per On Demand Linux x1.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.3380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "J4T9ZF4AJ2DXE7SA" : { + "J4T9ZF4AJ2DXE7SA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "J4T9ZF4AJ2DXE7SA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "J4T9ZF4AJ2DXE7SA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "J4T9ZF4AJ2DXE7SA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.00 per On Demand Linux m4.10xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "V972X7PY72ZHR6V3" : { + "V972X7PY72ZHR6V3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "V972X7PY72ZHR6V3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "V972X7PY72ZHR6V3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "V972X7PY72ZHR6V3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise r4.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "V7SRDNUCBKDMKD3M" : { + "V7SRDNUCBKDMKD3M.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "V7SRDNUCBKDMKD3M", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "V7SRDNUCBKDMKD3M.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "V7SRDNUCBKDMKD3M.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.876 per Dedicated Linux i2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2VHPXRTYGECESS2J" : { + "2VHPXRTYGECESS2J.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2VHPXRTYGECESS2J", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2VHPXRTYGECESS2J.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2VHPXRTYGECESS2J.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.366 per On Demand SUSE r4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "S7W47N2777Q8FW7S" : { + "S7W47N2777Q8FW7S.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "S7W47N2777Q8FW7S", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "S7W47N2777Q8FW7S.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "S7W47N2777Q8FW7S.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux r3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4DVV92GAW5VRCP2Y" : { + "4DVV92GAW5VRCP2Y.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4DVV92GAW5VRCP2Y", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4DVV92GAW5VRCP2Y.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4DVV92GAW5VRCP2Y.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std d2.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NZFDNPR89WKZ6C5N" : { + "NZFDNPR89WKZ6C5N.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NZFDNPR89WKZ6C5N", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NZFDNPR89WKZ6C5N.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NZFDNPR89WKZ6C5N.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.498 per On Demand SUSE c4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XHB4DJDY65SW2BN6" : { + "XHB4DJDY65SW2BN6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XHB4DJDY65SW2BN6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XHB4DJDY65SW2BN6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XHB4DJDY65SW2BN6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.210 per On Demand Windows c1.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZXT5RPKSX2EYYGJQ" : { + "ZXT5RPKSX2EYYGJQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZXT5RPKSX2EYYGJQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZXT5RPKSX2EYYGJQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZXT5RPKSX2EYYGJQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per SUSE i3.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XQJX4FHA6PK8JN3M" : { + "XQJX4FHA6PK8JN3M.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XQJX4FHA6PK8JN3M", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XQJX4FHA6PK8JN3M.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XQJX4FHA6PK8JN3M.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL m3.medium Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NEMESC9E58GMS89T" : { + "NEMESC9E58GMS89T.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NEMESC9E58GMS89T", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NEMESC9E58GMS89T.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NEMESC9E58GMS89T.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.264 per Dedicated Windows i3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7H6M5F6HHQ5YHT4V" : { + "7H6M5F6HHQ5YHT4V.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7H6M5F6HHQ5YHT4V", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7H6M5F6HHQ5YHT4V.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7H6M5F6HHQ5YHT4V.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.436 per On Demand SUSE x1e.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XV4ERE3TBNCX96M9" : { + "XV4ERE3TBNCX96M9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XV4ERE3TBNCX96M9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XV4ERE3TBNCX96M9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XV4ERE3TBNCX96M9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.27 per On Demand SUSE c5.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Z7DQXX2TTGQW7T5N" : { + "Z7DQXX2TTGQW7T5N.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Z7DQXX2TTGQW7T5N", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Z7DQXX2TTGQW7T5N.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Z7DQXX2TTGQW7T5N.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.02 per GB - US East (Northern Virginia) data transfer to Canada (Central)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZE2F35FX6PVMD63Y" : { + "ZE2F35FX6PVMD63Y.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZE2F35FX6PVMD63Y", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZE2F35FX6PVMD63Y.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZE2F35FX6PVMD63Y.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE d2.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "X8HSBS99N48YZKF3" : { + "X8HSBS99N48YZKF3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "X8HSBS99N48YZKF3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "X8HSBS99N48YZKF3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "X8HSBS99N48YZKF3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.19 per Dedicated SUSE c5.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7AGDS8PY7CBCQ8E4" : { + "7AGDS8PY7CBCQ8E4.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7AGDS8PY7CBCQ8E4", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7AGDS8PY7CBCQ8E4.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7AGDS8PY7CBCQ8E4.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.388 per Dedicated Usage Windows with SQL Std m3.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4VV6V3MAZZGV47MU" : { + "4VV6V3MAZZGV47MU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4VV6V3MAZZGV47MU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4VV6V3MAZZGV47MU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4VV6V3MAZZGV47MU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.036 per On Demand Windows x1e.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RGKA4HJHM5TUYE4N" : { + "RGKA4HJHM5TUYE4N.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RGKA4HJHM5TUYE4N", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RGKA4HJHM5TUYE4N.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RGKA4HJHM5TUYE4N.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.485 per Dedicated SUSE m1.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NN2CMDZPNDJ4GWGU" : { + "NN2CMDZPNDJ4GWGU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NN2CMDZPNDJ4GWGU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NN2CMDZPNDJ4GWGU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NN2CMDZPNDJ4GWGU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.705 per On Demand Windows with SQL Std r4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QNQNFXEZD4JV6K7J" : { + "QNQNFXEZD4JV6K7J.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QNQNFXEZD4JV6K7J", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QNQNFXEZD4JV6K7J.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QNQNFXEZD4JV6K7J.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.730 per Dedicated RHEL hs1.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.7300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8GM5MHF25FH6C87J" : { + "8GM5MHF25FH6C87J.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8GM5MHF25FH6C87J", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8GM5MHF25FH6C87J.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8GM5MHF25FH6C87J.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.143 per Dedicated Windows BYOL c1.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Z8KQMF3Z8ZFPNANM" : { + "Z8KQMF3Z8ZFPNANM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Z8KQMF3Z8ZFPNANM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Z8KQMF3Z8ZFPNANM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Z8KQMF3Z8ZFPNANM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows i2.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "34JBU9PXRB8RPKYX" : { + "34JBU9PXRB8RPKYX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "34JBU9PXRB8RPKYX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "34JBU9PXRB8RPKYX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "34JBU9PXRB8RPKYX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.0872 per On Demand Windows with SQL Web t2.micro Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "N24FYYRTPFBF3UTD" : { + "N24FYYRTPFBF3UTD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "N24FYYRTPFBF3UTD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "N24FYYRTPFBF3UTD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "N24FYYRTPFBF3UTD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL r3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GS3NHNTTTS84KQSP" : { + "GS3NHNTTTS84KQSP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GS3NHNTTTS84KQSP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GS3NHNTTTS84KQSP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GS3NHNTTTS84KQSP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$17.37 per On Demand Windows with SQL Web x1e.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "17.3700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5B3J35TKN9FFQAR9" : { + "5B3J35TKN9FFQAR9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5B3J35TKN9FFQAR9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5B3J35TKN9FFQAR9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5B3J35TKN9FFQAR9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE i2.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PS7GTF4X2G9VEN36" : { + "PS7GTF4X2G9VEN36.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PS7GTF4X2G9VEN36", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PS7GTF4X2G9VEN36.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PS7GTF4X2G9VEN36.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web m4.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BD398TEHQSUMAUDS" : { + "BD398TEHQSUMAUDS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BD398TEHQSUMAUDS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BD398TEHQSUMAUDS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BD398TEHQSUMAUDS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.946 per On Demand Windows with SQL Std r3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "U5PMX34FM7A6Y7VW" : { + "U5PMX34FM7A6Y7VW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "U5PMX34FM7A6Y7VW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "U5PMX34FM7A6Y7VW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "U5PMX34FM7A6Y7VW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.95 per On Demand Windows with SQL Server Enterprise m3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "S4DJNZYAC3UVKJKQ" : { + "S4DJNZYAC3UVKJKQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "S4DJNZYAC3UVKJKQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "S4DJNZYAC3UVKJKQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "S4DJNZYAC3UVKJKQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE m4.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XXD6BKTUGGN2547V" : { + "XXD6BKTUGGN2547V.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XXD6BKTUGGN2547V", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XXD6BKTUGGN2547V.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XXD6BKTUGGN2547V.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.732 per Dedicated Usage Windows BYOL r3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FMZ94AJH8354XRME" : { + "FMZ94AJH8354XRME.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FMZ94AJH8354XRME", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FMZ94AJH8354XRME.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FMZ94AJH8354XRME.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.75 per On Demand RHEL d2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8U8GT7P4FU5ABATQ" : { + "8U8GT7P4FU5ABATQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8U8GT7P4FU5ABATQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8U8GT7P4FU5ABATQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8U8GT7P4FU5ABATQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.80 per Dedicated RHEL x1e.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5W546BUFYA67MPSM" : { + "5W546BUFYA67MPSM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5W546BUFYA67MPSM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5W546BUFYA67MPSM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5W546BUFYA67MPSM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.68 per On Demand Windows BYOL c3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "F2NC9U5PH9XZD7CQ" : { + "F2NC9U5PH9XZD7CQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "F2NC9U5PH9XZD7CQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "F2NC9U5PH9XZD7CQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "F2NC9U5PH9XZD7CQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows r3.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RW6CPEJMXU8H79H3" : { + "RW6CPEJMXU8H79H3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RW6CPEJMXU8H79H3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RW6CPEJMXU8H79H3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RW6CPEJMXU8H79H3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.686 per Dedicated Linux i3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JCAJXA8C736VK6KZ" : { + "JCAJXA8C736VK6KZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JCAJXA8C736VK6KZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JCAJXA8C736VK6KZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JCAJXA8C736VK6KZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.16 per On Demand SUSE c5.18xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FZXWWWKE7AQGFDHX" : { + "FZXWWWKE7AQGFDHX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FZXWWWKE7AQGFDHX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FZXWWWKE7AQGFDHX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FZXWWWKE7AQGFDHX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.658 per Dedicated Windows m1.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KTZYT2QK3KRKX3XT" : { + "KTZYT2QK3KRKX3XT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KTZYT2QK3KRKX3XT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KTZYT2QK3KRKX3XT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KTZYT2QK3KRKX3XT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$13.712 per On Demand Windows p3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.7120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "X2XXBVJKW4AFD4PA" : { + "X2XXBVJKW4AFD4PA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "X2XXBVJKW4AFD4PA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "X2XXBVJKW4AFD4PA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "X2XXBVJKW4AFD4PA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.133 per On Demand Windows with SQL Web i3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3DKA632YPCBQAV5W" : { + "3DKA632YPCBQAV5W.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3DKA632YPCBQAV5W", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3DKA632YPCBQAV5W.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3DKA632YPCBQAV5W.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.500 per On Demand Windows r3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TKW4P5TMSVH4PAQ3" : { + "TKW4P5TMSVH4PAQ3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TKW4P5TMSVH4PAQ3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TKW4P5TMSVH4PAQ3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TKW4P5TMSVH4PAQ3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise r4.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "P6BRAB67QFNZCBXV" : { + "P6BRAB67QFNZCBXV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "P6BRAB67QFNZCBXV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "P6BRAB67QFNZCBXV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "P6BRAB67QFNZCBXV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 for 525 Mbps per c5.large instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5Q9H4XMF36Y7R6TM" : { + "5Q9H4XMF36Y7R6TM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5Q9H4XMF36Y7R6TM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5Q9H4XMF36Y7R6TM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5Q9H4XMF36Y7R6TM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$16.132 per Dedicated Usage Windows with SQL Server Enterprise r3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.1320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7BNV89HT66ESXJZR" : { + "7BNV89HT66ESXJZR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7BNV89HT66ESXJZR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7BNV89HT66ESXJZR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7BNV89HT66ESXJZR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Std i3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PT4B2E8NE5P3DWW9" : { + "PT4B2E8NE5P3DWW9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PT4B2E8NE5P3DWW9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PT4B2E8NE5P3DWW9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PT4B2E8NE5P3DWW9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows r4.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9YBEBPDN4MSDTQMG" : { + "9YBEBPDN4MSDTQMG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9YBEBPDN4MSDTQMG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9YBEBPDN4MSDTQMG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9YBEBPDN4MSDTQMG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.27 per Dedicated Usage SUSE r4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3FHKPAK9WZBH4HVY" : { + "3FHKPAK9WZBH4HVY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3FHKPAK9WZBH4HVY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3FHKPAK9WZBH4HVY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3FHKPAK9WZBH4HVY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std m4.10xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AB34GJVVFDYBBGDJ" : { + "AB34GJVVFDYBBGDJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AB34GJVVFDYBBGDJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AB34GJVVFDYBBGDJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AB34GJVVFDYBBGDJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.550 per On Demand RHEL c3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "H8WYYS7YF6HH44J2" : { + "H8WYYS7YF6HH44J2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "H8WYYS7YF6HH44J2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "H8WYYS7YF6HH44J2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "H8WYYS7YF6HH44J2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.1064 per On Demand RHEL t2.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1064000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "D35U33PKHD4MZRB5" : { + "D35U33PKHD4MZRB5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "D35U33PKHD4MZRB5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "D35U33PKHD4MZRB5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "D35U33PKHD4MZRB5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.412 per On Demand SUSE i3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "J6U6GMEFVH686HBN" : { + "J6U6GMEFVH686HBN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "J6U6GMEFVH686HBN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "J6U6GMEFVH686HBN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "J6U6GMEFVH686HBN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.245 per On Demand Linux m2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KQTYTC2BEFA3UQD7" : { + "KQTYTC2BEFA3UQD7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KQTYTC2BEFA3UQD7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KQTYTC2BEFA3UQD7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KQTYTC2BEFA3UQD7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.624 per On Demand Linux i3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9MG5B7V4UUU2WPAV" : { + "9MG5B7V4UUU2WPAV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9MG5B7V4UUU2WPAV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9MG5B7V4UUU2WPAV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9MG5B7V4UUU2WPAV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per GB - data transfer in per month", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SQ37ZQ2CZ2H95VDC" : { + "SQ37ZQ2CZ2H95VDC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SQ37ZQ2CZ2H95VDC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SQ37ZQ2CZ2H95VDC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SQ37ZQ2CZ2H95VDC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.14 per On Demand Linux g3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8XV97FS637CF8UU5" : { + "8XV97FS637CF8UU5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8XV97FS637CF8UU5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8XV97FS637CF8UU5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8XV97FS637CF8UU5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows m4.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "599NS97NVDVBQMHV" : { + "599NS97NVDVBQMHV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "599NS97NVDVBQMHV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "599NS97NVDVBQMHV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "599NS97NVDVBQMHV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$15.968 per On Demand Windows with SQL Server Enterprise i3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.9680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4A3JNV4H2AJRA65Z" : { + "4A3JNV4H2AJRA65Z.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4A3JNV4H2AJRA65Z", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4A3JNV4H2AJRA65Z.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4A3JNV4H2AJRA65Z.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 for 4000 Mbps per c4.8xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "482YDSG5GBVK93D9" : { + "482YDSG5GBVK93D9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "482YDSG5GBVK93D9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "482YDSG5GBVK93D9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "482YDSG5GBVK93D9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$17.293 per On Demand Windows with SQL Std x1.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "17.2930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PRQPEPABCB4GFVSC" : { + "PRQPEPABCB4GFVSC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PRQPEPABCB4GFVSC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PRQPEPABCB4GFVSC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PRQPEPABCB4GFVSC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.504 per On Demand Windows c3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5CUNSRC3R37KEBS7" : { + "5CUNSRC3R37KEBS7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5CUNSRC3R37KEBS7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5CUNSRC3R37KEBS7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5CUNSRC3R37KEBS7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.815 per Dedicated Windows BYOL f1.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CHD28PNGD4WRFZDU" : { + "CHD28PNGD4WRFZDU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CHD28PNGD4WRFZDU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CHD28PNGD4WRFZDU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CHD28PNGD4WRFZDU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$24.61 per On Demand RHEL p3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "24.6100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "W8TS7DJMAYZW9FYR" : { + "W8TS7DJMAYZW9FYR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "W8TS7DJMAYZW9FYR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "W8TS7DJMAYZW9FYR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "W8TS7DJMAYZW9FYR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.496 per On Demand Linux i3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KTK7J8VMUNWAGTMN" : { + "KTK7J8VMUNWAGTMN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KTK7J8VMUNWAGTMN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KTK7J8VMUNWAGTMN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KTK7J8VMUNWAGTMN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows c4.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8MH9R5J8CSVZTVPD" : { + "8MH9R5J8CSVZTVPD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8MH9R5J8CSVZTVPD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8MH9R5J8CSVZTVPD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8MH9R5J8CSVZTVPD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.263 per On Demand Windows with SQL Web m4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SVMA6TVRGD4B8MMP" : { + "SVMA6TVRGD4B8MMP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SVMA6TVRGD4B8MMP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SVMA6TVRGD4B8MMP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SVMA6TVRGD4B8MMP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.766 per On Demand Windows with SQL Server Enterprise c4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GHUDYUUVD52EBZW2" : { + "GHUDYUUVD52EBZW2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GHUDYUUVD52EBZW2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GHUDYUUVD52EBZW2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GHUDYUUVD52EBZW2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux d2.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AC2NWG73MEX4BBX3" : { + "AC2NWG73MEX4BBX3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AC2NWG73MEX4BBX3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AC2NWG73MEX4BBX3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AC2NWG73MEX4BBX3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$6.769 per On Demand SUSE x1.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.7690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KWHF9MHUCVG2FS5B" : { + "KWHF9MHUCVG2FS5B.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KWHF9MHUCVG2FS5B", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KWHF9MHUCVG2FS5B.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KWHF9MHUCVG2FS5B.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise m3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6TGXJKCAZTAFTYB9" : { + "6TGXJKCAZTAFTYB9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6TGXJKCAZTAFTYB9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6TGXJKCAZTAFTYB9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6TGXJKCAZTAFTYB9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.164 per On Demand Windows with SQL Web r4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.1640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2RXSDBKMUNNU9JA9" : { + "2RXSDBKMUNNU9JA9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2RXSDBKMUNNU9JA9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2RXSDBKMUNNU9JA9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2RXSDBKMUNNU9JA9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.28 per On Demand Windows BYOL g3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RVMQS6Z2ZKDKPUUX" : { + "RVMQS6Z2ZKDKPUUX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RVMQS6Z2ZKDKPUUX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RVMQS6Z2ZKDKPUUX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RVMQS6Z2ZKDKPUUX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Linux f1.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "T2A8DS9QR9R22WZ2" : { + "T2A8DS9QR9R22WZ2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "T2A8DS9QR9R22WZ2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "T2A8DS9QR9R22WZ2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "T2A8DS9QR9R22WZ2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.816 per Dedicated RHEL i3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "77PE9Y6MJW62DYCD" : { + "77PE9Y6MJW62DYCD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "77PE9Y6MJW62DYCD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "77PE9Y6MJW62DYCD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "77PE9Y6MJW62DYCD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.11 per Dedicated Windows BYOL m4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SXC4GWK8KEDB7F93" : { + "SXC4GWK8KEDB7F93.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SXC4GWK8KEDB7F93", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SXC4GWK8KEDB7F93.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SXC4GWK8KEDB7F93.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.473 per Dedicated SUSE i3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "W5JCPDDZFQ9MFMCP" : { + "W5JCPDDZFQ9MFMCP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "W5JCPDDZFQ9MFMCP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "W5JCPDDZFQ9MFMCP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "W5JCPDDZFQ9MFMCP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$80.576 per Dedicated Windows with SQL Server Enterprise x1e.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "80.5760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "F2Q73ZKZWDKZ25TB" : { + "F2Q73ZKZWDKZ25TB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "F2Q73ZKZWDKZ25TB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "F2Q73ZKZWDKZ25TB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "F2Q73ZKZWDKZ25TB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.279 per Dedicated Usage RHEL c4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "P4NKH8TTQ4BBNRDQ" : { + "P4NKH8TTQ4BBNRDQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "P4NKH8TTQ4BBNRDQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "P4NKH8TTQ4BBNRDQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "P4NKH8TTQ4BBNRDQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL m3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9MZCJAF77KSVMAC2" : { + "9MZCJAF77KSVMAC2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9MZCJAF77KSVMAC2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9MZCJAF77KSVMAC2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9MZCJAF77KSVMAC2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$40.288 per On Demand Windows with SQL Server Enterprise x1e.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "40.2880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Z53PYBHU83UZWMXA" : { + "Z53PYBHU83UZWMXA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Z53PYBHU83UZWMXA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Z53PYBHU83UZWMXA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Z53PYBHU83UZWMXA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.105 per On Demand Windows BYOL c3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "32XCE2AVYT82WZYJ" : { + "32XCE2AVYT82WZYJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "32XCE2AVYT82WZYJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "32XCE2AVYT82WZYJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "32XCE2AVYT82WZYJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$31.936 per On Demand Windows with SQL Server Enterprise i3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "31.9360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UUX3B6ZG6M7C8N5A" : { + "UUX3B6ZG6M7C8N5A.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UUX3B6ZG6M7C8N5A", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UUX3B6ZG6M7C8N5A.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UUX3B6ZG6M7C8N5A.JRTCKXETXF.6YS6EN2CT7", + "description" : "$14.4 per Dedicated Usage Windows BYOL p2.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.4000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "F3Z269CFGBSPE3TW" : { + "F3Z269CFGBSPE3TW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "F3Z269CFGBSPE3TW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "F3Z269CFGBSPE3TW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "F3Z269CFGBSPE3TW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Web i3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DCYZX6GSD65USD7D" : { + "DCYZX6GSD65USD7D.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DCYZX6GSD65USD7D", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DCYZX6GSD65USD7D.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DCYZX6GSD65USD7D.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Linux p3.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UGAW5CN698QFXJS9" : { + "UGAW5CN698QFXJS9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UGAW5CN698QFXJS9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UGAW5CN698QFXJS9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UGAW5CN698QFXJS9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.459 per On Demand SQL Std i2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "J5HSGUZ5Y3QZKRJT" : { + "J5HSGUZ5Y3QZKRJT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "J5HSGUZ5Y3QZKRJT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "J5HSGUZ5Y3QZKRJT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "J5HSGUZ5Y3QZKRJT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$10.146 per On Demand Windows with SQL Server Enterprise i2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.1460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5CT452VS74WXW77W" : { + "5CT452VS74WXW77W.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5CT452VS74WXW77W", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5CT452VS74WXW77W.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5CT452VS74WXW77W.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.952 per On Demand Windows with SQL Std i3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "J8FC8SEVZRJMDMBB" : { + "J8FC8SEVZRJMDMBB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "J8FC8SEVZRJMDMBB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "J8FC8SEVZRJMDMBB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "J8FC8SEVZRJMDMBB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$20.676 per On Demand Windows with SQL Server Enterprise d2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "20.6760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CVWS7EQD5PCXDCZ3" : { + "CVWS7EQD5PCXDCZ3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CVWS7EQD5PCXDCZ3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CVWS7EQD5PCXDCZ3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CVWS7EQD5PCXDCZ3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux r3.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YU6MR6S9Z249VF2X" : { + "YU6MR6S9Z249VF2X.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YU6MR6S9Z249VF2X", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YU6MR6S9Z249VF2X.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YU6MR6S9Z249VF2X.JRTCKXETXF.6YS6EN2CT7", + "description" : "$5.62 per Dedicated Usage SUSE d2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.6200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4J62B76AXGGMHG57" : { + "4J62B76AXGGMHG57.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4J62B76AXGGMHG57", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4J62B76AXGGMHG57.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4J62B76AXGGMHG57.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.199 per On Demand Linux c4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CE5UXUUUXVX4BZXY" : { + "CE5UXUUUXVX4BZXY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CE5UXUUUXVX4BZXY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CE5UXUUUXVX4BZXY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CE5UXUUUXVX4BZXY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.1528 per On Demand RHEL t2.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1528000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5YU9U4CS2QFKY4UW" : { + "5YU9U4CS2QFKY4UW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5YU9U4CS2QFKY4UW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5YU9U4CS2QFKY4UW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5YU9U4CS2QFKY4UW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.9132 per Dedicated Windows with SQL Std r4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9132000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AA67GCTD2ZXZBRNU" : { + "AA67GCTD2ZXZBRNU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AA67GCTD2ZXZBRNU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AA67GCTD2ZXZBRNU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AA67GCTD2ZXZBRNU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Web i3.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "C8UY35TVY9KH2ZPK" : { + "C8UY35TVY9KH2ZPK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "C8UY35TVY9KH2ZPK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "C8UY35TVY9KH2ZPK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "C8UY35TVY9KH2ZPK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux d2.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DXSPZRZ93HBNNHCJ" : { + "DXSPZRZ93HBNNHCJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DXSPZRZ93HBNNHCJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DXSPZRZ93HBNNHCJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DXSPZRZ93HBNNHCJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.915 per Dedicated Usage Windows with SQL Server Enterprise c3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "B5C2VWZ3WKXH29GV" : { + "B5C2VWZ3WKXH29GV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "B5C2VWZ3WKXH29GV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "B5C2VWZ3WKXH29GV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "B5C2VWZ3WKXH29GV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.092 per Dedicated SQL Web i2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QEN4NKBP2QQKVJGV" : { + "QEN4NKBP2QQKVJGV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QEN4NKBP2QQKVJGV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QEN4NKBP2QQKVJGV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QEN4NKBP2QQKVJGV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.466 per On Demand RHEL x1e.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BMW624PB2S9DK3CT" : { + "BMW624PB2S9DK3CT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BMW624PB2S9DK3CT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BMW624PB2S9DK3CT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BMW624PB2S9DK3CT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.585 per On Demand Windows with SQL Std r3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6A98KYSNMAGXRPPR" : { + "6A98KYSNMAGXRPPR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6A98KYSNMAGXRPPR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6A98KYSNMAGXRPPR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6A98KYSNMAGXRPPR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.498 per Dedicated SQL Std m1.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AZGXC7HPDQNS3725" : { + "AZGXC7HPDQNS3725.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AZGXC7HPDQNS3725", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AZGXC7HPDQNS3725.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AZGXC7HPDQNS3725.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.040 per GB - US East (Northern Virginia) Amazon S3 accelerated data transfer from US West (Oregon)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5G5Y2SDTS4FP8GX7" : { + "5G5Y2SDTS4FP8GX7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5G5Y2SDTS4FP8GX7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5G5Y2SDTS4FP8GX7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5G5Y2SDTS4FP8GX7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$6.82 per On Demand Windows BYOL i2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.8200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AYPJKSTN4WJQRZAK" : { + "AYPJKSTN4WJQRZAK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AYPJKSTN4WJQRZAK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AYPJKSTN4WJQRZAK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AYPJKSTN4WJQRZAK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.0162 per On Demand Windows t2.micro Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0162000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Y2TP2WYH8ZP2ZSNP" : { + "Y2TP2WYH8ZP2ZSNP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Y2TP2WYH8ZP2ZSNP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Y2TP2WYH8ZP2ZSNP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Y2TP2WYH8ZP2ZSNP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.883 per On Demand Windows with SQL Server Enterprise c4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UHDU9A8XN6ZW8X9D" : { + "UHDU9A8XN6ZW8X9D.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UHDU9A8XN6ZW8X9D", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UHDU9A8XN6ZW8X9D.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UHDU9A8XN6ZW8X9D.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Linux i3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CMJW5X9JZ98RXSMU" : { + "CMJW5X9JZ98RXSMU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CMJW5X9JZ98RXSMU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CMJW5X9JZ98RXSMU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CMJW5X9JZ98RXSMU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.21 per On Demand Windows BYOL c3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "F89CDKSSQ2AVMRYW" : { + "F89CDKSSQ2AVMRYW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "F89CDKSSQ2AVMRYW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "F89CDKSSQ2AVMRYW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "F89CDKSSQ2AVMRYW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows BYOL i3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8VCNEHQMSCQS4P39" : { + "8VCNEHQMSCQS4P39.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8VCNEHQMSCQS4P39", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8VCNEHQMSCQS4P39.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8VCNEHQMSCQS4P39.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.10 per On Demand Linux m4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZD2U9663ARS5XSMA" : { + "ZD2U9663ARS5XSMA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZD2U9663ARS5XSMA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZD2U9663ARS5XSMA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZD2U9663ARS5XSMA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL r3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "K73JG8M9A8MW4QWP" : { + "K73JG8M9A8MW4QWP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "K73JG8M9A8MW4QWP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "K73JG8M9A8MW4QWP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "K73JG8M9A8MW4QWP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.992 per On Demand Windows BYOL i3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2DKER9NNJBJDN6TX" : { + "2DKER9NNJBJDN6TX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2DKER9NNJBJDN6TX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2DKER9NNJBJDN6TX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2DKER9NNJBJDN6TX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL r4.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RKUUP7AYRVCXF3ZJ" : { + "RKUUP7AYRVCXF3ZJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RKUUP7AYRVCXF3ZJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RKUUP7AYRVCXF3ZJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RKUUP7AYRVCXF3ZJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.299 per On Demand Windows m1.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Y8HYRU3BZZ4QFJHH" : { + "Y8HYRU3BZZ4QFJHH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Y8HYRU3BZZ4QFJHH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Y8HYRU3BZZ4QFJHH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Y8HYRU3BZZ4QFJHH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.02 per GB - US East (Northern Virginia) data transfer to Asia Pacific (Seoul)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "U7RB8YXJ8WGXHNK3" : { + "U7RB8YXJ8WGXHNK3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "U7RB8YXJ8WGXHNK3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "U7RB8YXJ8WGXHNK3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "U7RB8YXJ8WGXHNK3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.490 per Dedicated SQL Web m2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5QR4TP35UWG5GTHK" : { + "5QR4TP35UWG5GTHK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5QR4TP35UWG5GTHK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5QR4TP35UWG5GTHK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5QR4TP35UWG5GTHK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows BYOL c5.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MTJM4P7NUQTD7TTY" : { + "MTJM4P7NUQTD7TTY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MTJM4P7NUQTD7TTY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MTJM4P7NUQTD7TTY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MTJM4P7NUQTD7TTY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Server Enterprise i3.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "C79HZMYRKTWS54VW" : { + "C79HZMYRKTWS54VW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "C79HZMYRKTWS54VW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "C79HZMYRKTWS54VW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "C79HZMYRKTWS54VW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows c5.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EKP8GMP6PAVZ6VVY" : { + "EKP8GMP6PAVZ6VVY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EKP8GMP6PAVZ6VVY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EKP8GMP6PAVZ6VVY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EKP8GMP6PAVZ6VVY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows m4.10xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9YVNCN8XCQ7NAPYJ" : { + "9YVNCN8XCQ7NAPYJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9YVNCN8XCQ7NAPYJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9YVNCN8XCQ7NAPYJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9YVNCN8XCQ7NAPYJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.40 per On Demand Windows BYOL m4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KWYNFA3ZNTZ3FWQA" : { + "KWYNFA3ZNTZ3FWQA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KWYNFA3ZNTZ3FWQA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KWYNFA3ZNTZ3FWQA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KWYNFA3ZNTZ3FWQA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.832 per Dedicated Usage SUSE r3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SQ7KCWAADJKDQN9W" : { + "SQ7KCWAADJKDQN9W.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SQ7KCWAADJKDQN9W", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SQ7KCWAADJKDQN9W.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SQ7KCWAADJKDQN9W.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.977 per Dedicated Usage Windows with SQL Server Enterprise r4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YUPSNN9JFU6UZYAS" : { + "YUPSNN9JFU6UZYAS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YUPSNN9JFU6UZYAS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YUPSNN9JFU6UZYAS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YUPSNN9JFU6UZYAS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.293 per Dedicated Usage Linux m3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "S44SURMZ8AJWTZYH" : { + "S44SURMZ8AJWTZYH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "S44SURMZ8AJWTZYH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "S44SURMZ8AJWTZYH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "S44SURMZ8AJWTZYH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows d2.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XU7GMTDRK2VMN7K9" : { + "XU7GMTDRK2VMN7K9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XU7GMTDRK2VMN7K9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XU7GMTDRK2VMN7K9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XU7GMTDRK2VMN7K9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.600 per On Demand SUSE cr1.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XHTGRKAAUAXJEMXS" : { + "XHTGRKAAUAXJEMXS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XHTGRKAAUAXJEMXS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XHTGRKAAUAXJEMXS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XHTGRKAAUAXJEMXS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$5.65 per Dedicated Usage RHEL d2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.6500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XK8PATGXFTCH3726" : { + "XK8PATGXFTCH3726.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XK8PATGXFTCH3726", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XK8PATGXFTCH3726.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XK8PATGXFTCH3726.JRTCKXETXF.6YS6EN2CT7", + "description" : "$12.485 per Dedicated Usage Windows with SQL Std c4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.4850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "WHYQJ8ZPHXUK6SXM" : { + "WHYQJ8ZPHXUK6SXM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "WHYQJ8ZPHXUK6SXM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "WHYQJ8ZPHXUK6SXM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "WHYQJ8ZPHXUK6SXM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.298 per Dedicated SQL Web c3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2VFDAQVRR43WD6VS" : { + "2VFDAQVRR43WD6VS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2VFDAQVRR43WD6VS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2VFDAQVRR43WD6VS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2VFDAQVRR43WD6VS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std r4.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JTHCG93HEJ7CXDPB" : { + "JTHCG93HEJ7CXDPB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JTHCG93HEJ7CXDPB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JTHCG93HEJ7CXDPB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JTHCG93HEJ7CXDPB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL i2.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2NBCH8MGXY3QQ5ZH" : { + "2NBCH8MGXY3QQ5ZH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2NBCH8MGXY3QQ5ZH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2NBCH8MGXY3QQ5ZH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2NBCH8MGXY3QQ5ZH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.336 per On Demand Windows with SQL Std c5.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PHZYKS4DKKZQTHE2" : { + "PHZYKS4DKKZQTHE2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PHZYKS4DKKZQTHE2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PHZYKS4DKKZQTHE2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PHZYKS4DKKZQTHE2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.92 per Dedicated Usage Linux p2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.9200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ECM8RSBXMC7F4WAS" : { + "ECM8RSBXMC7F4WAS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ECM8RSBXMC7F4WAS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ECM8RSBXMC7F4WAS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ECM8RSBXMC7F4WAS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.20 per On Demand Linux m4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9HUMJZVBNYX2RZS7" : { + "9HUMJZVBNYX2RZS7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9HUMJZVBNYX2RZS7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9HUMJZVBNYX2RZS7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9HUMJZVBNYX2RZS7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.835 per Dedicated Windows BYOL x1e.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AYWDVNJQKCDA6E7M" : { + "AYWDVNJQKCDA6E7M.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AYWDVNJQKCDA6E7M", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AYWDVNJQKCDA6E7M.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AYWDVNJQKCDA6E7M.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 for 500 Mbps per c4.large instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "M3EYMWB8284E38CQ" : { + "M3EYMWB8284E38CQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "M3EYMWB8284E38CQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "M3EYMWB8284E38CQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "M3EYMWB8284E38CQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$16.072 per Dedicated Usage Windows with SQL Server Enterprise g2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.0720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FQVPYK9V83HTQEXR" : { + "FQVPYK9V83HTQEXR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FQVPYK9V83HTQEXR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FQVPYK9V83HTQEXR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FQVPYK9V83HTQEXR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.193 per Dedicated Windows BYOL m1.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YD2QA7TB4GYV4U3P" : { + "YD2QA7TB4GYV4U3P.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YD2QA7TB4GYV4U3P", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YD2QA7TB4GYV4U3P.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YD2QA7TB4GYV4U3P.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL m3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9HPUN6CF83QX5EC3" : { + "9HPUN6CF83QX5EC3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9HPUN6CF83QX5EC3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9HPUN6CF83QX5EC3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9HPUN6CF83QX5EC3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.362 per On Demand SQL Std m1.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5ZD4WU2CC6CZ2KXG" : { + "5ZD4WU2CC6CZ2KXG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5ZD4WU2CC6CZ2KXG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5ZD4WU2CC6CZ2KXG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5ZD4WU2CC6CZ2KXG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web c4.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "N4AWRPYC2F4YT3WW" : { + "N4AWRPYC2F4YT3WW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "N4AWRPYC2F4YT3WW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "N4AWRPYC2F4YT3WW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "N4AWRPYC2F4YT3WW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.630 per Dedicated RHEL cr1.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VV5A7BNXRSZQJ6MG" : { + "VV5A7BNXRSZQJ6MG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VV5A7BNXRSZQJ6MG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VV5A7BNXRSZQJ6MG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VV5A7BNXRSZQJ6MG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.225 per On Demand Windows r4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9HGFJGGDXTRDQUED" : { + "9HGFJGGDXTRDQUED.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9HGFJGGDXTRDQUED", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9HGFJGGDXTRDQUED.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9HGFJGGDXTRDQUED.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.14 per Dedicated Usage Windows m3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5XHJPTC7E6NA5KGC" : { + "5XHJPTC7E6NA5KGC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5XHJPTC7E6NA5KGC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5XHJPTC7E6NA5KGC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5XHJPTC7E6NA5KGC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$6.820 per Dedicated Windows BYOL i2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.8200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "84S2KXJ69JV6DQFX" : { + "84S2KXJ69JV6DQFX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "84S2KXJ69JV6DQFX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "84S2KXJ69JV6DQFX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "84S2KXJ69JV6DQFX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.356 per On Demand SUSE r4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.3560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "D5JBSPHEHDXDUWJR" : { + "D5JBSPHEHDXDUWJR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "D5JBSPHEHDXDUWJR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "D5JBSPHEHDXDUWJR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "D5JBSPHEHDXDUWJR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.665 per On Demand Linux r3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UMJEA2FJR4MEZ7ZC" : { + "UMJEA2FJR4MEZ7ZC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UMJEA2FJR4MEZ7ZC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UMJEA2FJR4MEZ7ZC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UMJEA2FJR4MEZ7ZC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise r3.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "56STRVG6SNYJSZDZ" : { + "56STRVG6SNYJSZDZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "56STRVG6SNYJSZDZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "56STRVG6SNYJSZDZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "56STRVG6SNYJSZDZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.572 per Dedicated Windows BYOL c1.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7HB6PUR4SRPNKUUK" : { + "7HB6PUR4SRPNKUUK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7HB6PUR4SRPNKUUK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7HB6PUR4SRPNKUUK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7HB6PUR4SRPNKUUK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per GB - South America (Sao Paulo) data transfer from US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YHQ4HRT9DMUQV8QN" : { + "YHQ4HRT9DMUQV8QN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YHQ4HRT9DMUQV8QN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YHQ4HRT9DMUQV8QN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YHQ4HRT9DMUQV8QN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per RHEL c5.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZDSU8EJ7X5PVHMBU" : { + "ZDSU8EJ7X5PVHMBU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZDSU8EJ7X5PVHMBU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZDSU8EJ7X5PVHMBU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZDSU8EJ7X5PVHMBU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per RHEL x1e.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "63BQRF7SF8WK9XJC" : { + "63BQRF7SF8WK9XJC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "63BQRF7SF8WK9XJC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "63BQRF7SF8WK9XJC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "63BQRF7SF8WK9XJC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows g2.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QHXEDKXAPRFFF59N" : { + "QHXEDKXAPRFFF59N.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QHXEDKXAPRFFF59N", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QHXEDKXAPRFFF59N.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QHXEDKXAPRFFF59N.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.191 per Dedicated SQL Web c3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FWCGRGHA7B5TAJDH" : { + "FWCGRGHA7B5TAJDH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FWCGRGHA7B5TAJDH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FWCGRGHA7B5TAJDH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FWCGRGHA7B5TAJDH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.746 per Dedicated Linux i3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KV8S83TSUZZQ2X2K" : { + "KV8S83TSUZZQ2X2K.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KV8S83TSUZZQ2X2K", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KV8S83TSUZZQ2X2K.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KV8S83TSUZZQ2X2K.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.216 per On Demand RHEL i3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GCDTB8AS6VH4HTCD" : { + "GCDTB8AS6VH4HTCD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GCDTB8AS6VH4HTCD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GCDTB8AS6VH4HTCD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GCDTB8AS6VH4HTCD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL r4.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GMGKK582WT2TW2KT" : { + "GMGKK582WT2TW2KT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GMGKK582WT2TW2KT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GMGKK582WT2TW2KT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GMGKK582WT2TW2KT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$6.672 per On Demand Windows BYOL x1e.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.6720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Z65ZPSYYEJ69PVAM" : { + "Z65ZPSYYEJ69PVAM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Z65ZPSYYEJ69PVAM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Z65ZPSYYEJ69PVAM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Z65ZPSYYEJ69PVAM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$6.802 per On Demand RHEL x1e.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.8020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GVNK6UKCGGH82WUC" : { + "GVNK6UKCGGH82WUC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GVNK6UKCGGH82WUC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GVNK6UKCGGH82WUC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GVNK6UKCGGH82WUC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$8.64 per On Demand Windows with SQL Std m4.10xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.6400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "W832TY8QSXWJMAAY" : { + "W832TY8QSXWJMAAY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "W832TY8QSXWJMAAY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "W832TY8QSXWJMAAY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "W832TY8QSXWJMAAY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.128 per On Demand Windows BYOL r4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5XB5GJ5E68GHCXVW" : { + "5XB5GJ5E68GHCXVW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5XB5GJ5E68GHCXVW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5XB5GJ5E68GHCXVW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5XB5GJ5E68GHCXVW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web c3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "49KSPMGA5DCV6VC6" : { + "49KSPMGA5DCV6VC6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "49KSPMGA5DCV6VC6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "49KSPMGA5DCV6VC6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "49KSPMGA5DCV6VC6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.81 per On Demand RHEL c5.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RBSDAQVUVBS5AAS2" : { + "RBSDAQVUVBS5AAS2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RBSDAQVUVBS5AAS2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RBSDAQVUVBS5AAS2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RBSDAQVUVBS5AAS2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.062 per On Demand Windows d2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "E22Q4PYY34TZ2E23" : { + "E22Q4PYY34TZ2E23.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "E22Q4PYY34TZ2E23", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "E22Q4PYY34TZ2E23.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "E22Q4PYY34TZ2E23.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.256 per On Demand Windows BYOL r4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MKTYG4ZPBZEJP3T8" : { + "MKTYG4ZPBZEJP3T8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MKTYG4ZPBZEJP3T8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MKTYG4ZPBZEJP3T8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MKTYG4ZPBZEJP3T8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web m4.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6NHJBAA5ZJ25DJVN" : { + "6NHJBAA5ZJ25DJVN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6NHJBAA5ZJ25DJVN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6NHJBAA5ZJ25DJVN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6NHJBAA5ZJ25DJVN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.033 per On Demand Windows with SQL Server Enterprise r3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.0330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PG7N32NDHXVN79SC" : { + "PG7N32NDHXVN79SC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PG7N32NDHXVN79SC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PG7N32NDHXVN79SC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PG7N32NDHXVN79SC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$26.788 per On Demand SUSE x1e.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "26.7880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9HJ2ASV4W3SUZJEE" : { + "9HJ2ASV4W3SUZJEE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9HJ2ASV4W3SUZJEE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9HJ2ASV4W3SUZJEE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9HJ2ASV4W3SUZJEE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows BYOL c5.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MGQXS8Z3TAKPMGUM" : { + "MGQXS8Z3TAKPMGUM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MGQXS8Z3TAKPMGUM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MGQXS8Z3TAKPMGUM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MGQXS8Z3TAKPMGUM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.064 per On Demand Linux r4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VMVVV7NDFCNYYB5X" : { + "VMVVV7NDFCNYYB5X.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VMVVV7NDFCNYYB5X", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VMVVV7NDFCNYYB5X.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VMVVV7NDFCNYYB5X.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.184 per Dedicated Usage SUSE m3.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8VNJC4YN7JDXVN8W" : { + "8VNJC4YN7JDXVN8W.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8VNJC4YN7JDXVN8W", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8VNJC4YN7JDXVN8W.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8VNJC4YN7JDXVN8W.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise r4.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "H446M8G8PYYV4XKM" : { + "H446M8G8PYYV4XKM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "H446M8G8PYYV4XKM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "H446M8G8PYYV4XKM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "H446M8G8PYYV4XKM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 for 1000 Mbps per m4.2xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Q7DXWWF6MF8PNEWR" : { + "Q7DXWWF6MF8PNEWR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Q7DXWWF6MF8PNEWR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Q7DXWWF6MF8PNEWR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Q7DXWWF6MF8PNEWR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.585 per Dedicated Usage Linux m3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "N7JF33XCBEZEKJFQ" : { + "N7JF33XCBEZEKJFQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "N7JF33XCBEZEKJFQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "N7JF33XCBEZEKJFQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "N7JF33XCBEZEKJFQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.02 per GB - EU (Ireland) data transfer to US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JNRAY8EMZWNC3JNN" : { + "JNRAY8EMZWNC3JNN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JNRAY8EMZWNC3JNN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JNRAY8EMZWNC3JNN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JNRAY8EMZWNC3JNN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.110 per On Demand RHEL m2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "59S5R83GFPUAGVR5" : { + "59S5R83GFPUAGVR5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "59S5R83GFPUAGVR5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "59S5R83GFPUAGVR5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "59S5R83GFPUAGVR5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.045 per GB Data Processed by NAT Gateways", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3ZYHHAY9TXWX5S7X" : { + "3ZYHHAY9TXWX5S7X.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3ZYHHAY9TXWX5S7X", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3ZYHHAY9TXWX5S7X.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3ZYHHAY9TXWX5S7X.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Linux c5.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TF7VKDXQVWSCQYBK" : { + "TF7VKDXQVWSCQYBK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TF7VKDXQVWSCQYBK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TF7VKDXQVWSCQYBK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TF7VKDXQVWSCQYBK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.0158 per On Demand SUSE t2.nano Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0158000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "89ECMN7HXY7HZ9TN" : { + "89ECMN7HXY7HZ9TN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "89ECMN7HXY7HZ9TN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "89ECMN7HXY7HZ9TN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "89ECMN7HXY7HZ9TN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL c3.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FQFTKTSPGMBGY47W" : { + "FQFTKTSPGMBGY47W.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FQFTKTSPGMBGY47W", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FQFTKTSPGMBGY47W.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FQFTKTSPGMBGY47W.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.188 per Dedicated Usage Windows with SQL Web r4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "48VURD6MVAZ3M5JX" : { + "48VURD6MVAZ3M5JX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "48VURD6MVAZ3M5JX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "48VURD6MVAZ3M5JX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "48VURD6MVAZ3M5JX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.650 per On Demand Linux g2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6UG463TFGD9X4M5A" : { + "6UG463TFGD9X4M5A.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6UG463TFGD9X4M5A", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6UG463TFGD9X4M5A.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6UG463TFGD9X4M5A.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.293 per Dedicated Usage Windows BYOL m3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HKEJ2ZPKMXDAARWE" : { + "HKEJ2ZPKMXDAARWE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HKEJ2ZPKMXDAARWE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HKEJ2ZPKMXDAARWE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HKEJ2ZPKMXDAARWE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web i2.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MNCVCF2WMXJ3B7FB" : { + "MNCVCF2WMXJ3B7FB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MNCVCF2WMXJ3B7FB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MNCVCF2WMXJ3B7FB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MNCVCF2WMXJ3B7FB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.156 per On Demand Windows BYOL i3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "57XGZG7W7W67682J" : { + "57XGZG7W7W67682J.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "57XGZG7W7W67682J", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "57XGZG7W7W67682J.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "57XGZG7W7W67682J.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.17 per Dedicated RHEL m4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QY3YSEST3C6FQNQH" : { + "QY3YSEST3C6FQNQH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QY3YSEST3C6FQNQH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QY3YSEST3C6FQNQH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QY3YSEST3C6FQNQH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.0464 per On Demand Linux t2.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0464000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KVJ2TM3PPP6NB94R" : { + "KVJ2TM3PPP6NB94R.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KVJ2TM3PPP6NB94R", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KVJ2TM3PPP6NB94R.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KVJ2TM3PPP6NB94R.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL m4.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JRRHF5CXWN8M3MCY" : { + "JRRHF5CXWN8M3MCY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JRRHF5CXWN8M3MCY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JRRHF5CXWN8M3MCY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JRRHF5CXWN8M3MCY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.146 per Dedicated Usage SUSE d2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Q39AEGEKTSQKK4D3" : { + "Q39AEGEKTSQKK4D3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Q39AEGEKTSQKK4D3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Q39AEGEKTSQKK4D3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Q39AEGEKTSQKK4D3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Std i3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9CHFMGVK3AF7D8KU" : { + "9CHFMGVK3AF7D8KU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9CHFMGVK3AF7D8KU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9CHFMGVK3AF7D8KU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9CHFMGVK3AF7D8KU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.661 per Dedicated Usage RHEL d2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9YXTC4KPBJSYNVNU" : { + "9YXTC4KPBJSYNVNU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9YXTC4KPBJSYNVNU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9YXTC4KPBJSYNVNU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9YXTC4KPBJSYNVNU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$16.778 per Dedicated Windows with SQL Server Enterprise c5.9xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.7780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VCP5S8DX28AZ8RR2" : { + "VCP5S8DX28AZ8RR2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VCP5S8DX28AZ8RR2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VCP5S8DX28AZ8RR2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VCP5S8DX28AZ8RR2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.536 per On Demand Windows with SQL Server Enterprise m4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DPPVX7QQ3SGX3TED" : { + "DPPVX7QQ3SGX3TED.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DPPVX7QQ3SGX3TED", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DPPVX7QQ3SGX3TED.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DPPVX7QQ3SGX3TED.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.41 per On Demand RHEL g3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PSF39FBPC6PFD9W3" : { + "PSF39FBPC6PFD9W3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PSF39FBPC6PFD9W3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PSF39FBPC6PFD9W3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PSF39FBPC6PFD9W3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.457 per Dedicated Windows with SQL Server Enterprise c5.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Z7CW8886929Z9X5V" : { + "Z7CW8886929Z9X5V.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Z7CW8886929Z9X5V", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Z7CW8886929Z9X5V.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Z7CW8886929Z9X5V.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.88 per Dedicated Linux m4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MGFVS9REN5EG5F65" : { + "MGFVS9REN5EG5F65.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MGFVS9REN5EG5F65", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MGFVS9REN5EG5F65.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MGFVS9REN5EG5F65.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.49 per Dedicated RHEL c5.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UPGE3ZJ573XGT9P7" : { + "UPGE3ZJ573XGT9P7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UPGE3ZJ573XGT9P7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UPGE3ZJ573XGT9P7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UPGE3ZJ573XGT9P7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.850 per Dedicated SQL Std cg1.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DFF53P772NKJNMUW" : { + "DFF53P772NKJNMUW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DFF53P772NKJNMUW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DFF53P772NKJNMUW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DFF53P772NKJNMUW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$8.64 per Dedicated Windows with SQL Std m4.10xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.6400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GK3JQYYZHNZAHQ66" : { + "GK3JQYYZHNZAHQ66.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GK3JQYYZHNZAHQ66", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GK3JQYYZHNZAHQ66.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GK3JQYYZHNZAHQ66.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web r3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2E92X23Q6E3W4UYQ" : { + "2E92X23Q6E3W4UYQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2E92X23Q6E3W4UYQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2E92X23Q6E3W4UYQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2E92X23Q6E3W4UYQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE d2.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6U5VMCFHHMTH3QW6" : { + "6U5VMCFHHMTH3QW6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6U5VMCFHHMTH3QW6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6U5VMCFHHMTH3QW6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6U5VMCFHHMTH3QW6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.025 per GB-month of Cold HDD (sc1) provisioned storage - US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB-Mo", + "pricePerUnit" : { + "USD" : "0.0250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KNDB73D8XZCD246T" : { + "KNDB73D8XZCD246T.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KNDB73D8XZCD246T", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KNDB73D8XZCD246T.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KNDB73D8XZCD246T.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.489 per On Demand SQL Std m2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6B92TZ937DKQEP93" : { + "6B92TZ937DKQEP93.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6B92TZ937DKQEP93", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6B92TZ937DKQEP93.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6B92TZ937DKQEP93.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.834 per On Demand Windows with SQL Std c5.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "J28DJ6QCZ8VU7DZQ" : { + "J28DJ6QCZ8VU7DZQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "J28DJ6QCZ8VU7DZQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "J28DJ6QCZ8VU7DZQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "J28DJ6QCZ8VU7DZQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$6.198 per On Demand Windows d2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.1980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "K53MFK3A5RMBQM4F" : { + "K53MFK3A5RMBQM4F.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "K53MFK3A5RMBQM4F", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "K53MFK3A5RMBQM4F.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "K53MFK3A5RMBQM4F.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.56 per On Demand Windows BYOL g3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ES3XAJX5E6SRUWY5" : { + "ES3XAJX5E6SRUWY5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ES3XAJX5E6SRUWY5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ES3XAJX5E6SRUWY5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ES3XAJX5E6SRUWY5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.329 per Dedicated Usage Windows with SQL Std c4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZV6FCW29ACDSB8CF" : { + "ZV6FCW29ACDSB8CF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZV6FCW29ACDSB8CF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZV6FCW29ACDSB8CF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZV6FCW29ACDSB8CF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$18.84 per Dedicated Windows with SQL Server Enterprise m4.10xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "18.8400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Y4XD9NA45RXPDXY7" : { + "Y4XD9NA45RXPDXY7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Y4XD9NA45RXPDXY7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Y4XD9NA45RXPDXY7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Y4XD9NA45RXPDXY7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.750 per On Demand SUSE g2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EVFZ5VDSHTZYPX89" : { + "EVFZ5VDSHTZYPX89.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EVFZ5VDSHTZYPX89", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EVFZ5VDSHTZYPX89.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EVFZ5VDSHTZYPX89.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.178 per Dedicated SUSE m2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3CHY5ZRYJFN6TYQF" : { + "3CHY5ZRYJFN6TYQF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3CHY5ZRYJFN6TYQF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3CHY5ZRYJFN6TYQF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3CHY5ZRYJFN6TYQF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL r4.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TUYCY7SN3AZV7PVP" : { + "TUYCY7SN3AZV7PVP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TUYCY7SN3AZV7PVP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TUYCY7SN3AZV7PVP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TUYCY7SN3AZV7PVP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 for 4000 Mbps per d2.8xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RGN4FERZ8NXYWRDE" : { + "RGN4FERZ8NXYWRDE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RGN4FERZ8NXYWRDE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RGN4FERZ8NXYWRDE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RGN4FERZ8NXYWRDE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per GB - US West (Oregon) data transfer from US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "WXU9QBE38YNQDZE3" : { + "WXU9QBE38YNQDZE3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "WXU9QBE38YNQDZE3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "WXU9QBE38YNQDZE3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "WXU9QBE38YNQDZE3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.285 per Dedicated Usage Windows m3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZC3Y45SUG7K4RB8W" : { + "ZC3Y45SUG7K4RB8W.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZC3Y45SUG7K4RB8W", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZC3Y45SUG7K4RB8W.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZC3Y45SUG7K4RB8W.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.231 per Dedicated Windows c1.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "G78P4J48KHGMSX93" : { + "G78P4J48KHGMSX93.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "G78P4J48KHGMSX93", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "G78P4J48KHGMSX93.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "G78P4J48KHGMSX93.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Server Enterprise x1e.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "M2YSHUBETB3JX4M4" : { + "M2YSHUBETB3JX4M4.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "M2YSHUBETB3JX4M4", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "M2YSHUBETB3JX4M4.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "M2YSHUBETB3JX4M4.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.045 per NAT Gateway Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "G2A5K95XMCKDA9AT" : { + "G2A5K95XMCKDA9AT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "G2A5K95XMCKDA9AT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "G2A5K95XMCKDA9AT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "G2A5K95XMCKDA9AT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows i3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "C7UZ38M4P93WMCBP" : { + "C7UZ38M4P93WMCBP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "C7UZ38M4P93WMCBP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "C7UZ38M4P93WMCBP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "C7UZ38M4P93WMCBP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$8.02 per Dedicated Usage SUSE p2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "B6VB3UEXSBZ2WHBT" : { + "B6VB3UEXSBZ2WHBT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "B6VB3UEXSBZ2WHBT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "B6VB3UEXSBZ2WHBT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "B6VB3UEXSBZ2WHBT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL r3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "R9GDS3K2XNJM96RZ" : { + "R9GDS3K2XNJM96RZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "R9GDS3K2XNJM96RZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "R9GDS3K2XNJM96RZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "R9GDS3K2XNJM96RZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 for 1000 Mbps per d2.2xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NW4B786HNAH6HZ7R" : { + "NW4B786HNAH6HZ7R.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NW4B786HNAH6HZ7R", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NW4B786HNAH6HZ7R.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NW4B786HNAH6HZ7R.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.02 per GB - US East (Northern Virginia) data transfer to EU (Ireland)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "V7ZPECCN7AX2ME3K" : { + "V7ZPECCN7AX2ME3K.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "V7ZPECCN7AX2ME3K", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "V7ZPECCN7AX2ME3K.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "V7ZPECCN7AX2ME3K.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.0324 per On Demand Windows t2.small Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CCH8XMK5SWS2XV75" : { + "CCH8XMK5SWS2XV75.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CCH8XMK5SWS2XV75", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CCH8XMK5SWS2XV75.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CCH8XMK5SWS2XV75.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows c5.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TMS2BYDD3JMP8ZHP" : { + "TMS2BYDD3JMP8ZHP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TMS2BYDD3JMP8ZHP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TMS2BYDD3JMP8ZHP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TMS2BYDD3JMP8ZHP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL r4.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "H6JT2V67UAFS4Z2Y" : { + "H6JT2V67UAFS4Z2Y.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "H6JT2V67UAFS4Z2Y", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "H6JT2V67UAFS4Z2Y.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "H6JT2V67UAFS4Z2Y.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.775 per On Demand SQL Web cc2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DE3QV5WMKKGZRFHG" : { + "DE3QV5WMKKGZRFHG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DE3QV5WMKKGZRFHG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DE3QV5WMKKGZRFHG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DE3QV5WMKKGZRFHG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$16.747 per Dedicated Usage Windows with SQL Server Enterprise c4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.7470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TY2FBZ3Y8X8N6TXE" : { + "TY2FBZ3Y8X8N6TXE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TY2FBZ3Y8X8N6TXE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TY2FBZ3Y8X8N6TXE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TY2FBZ3Y8X8N6TXE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Linux x1e.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Y9WDY7HG6S2NXFSP" : { + "Y9WDY7HG6S2NXFSP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Y9WDY7HG6S2NXFSP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Y9WDY7HG6S2NXFSP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Y9WDY7HG6S2NXFSP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.593 per Dedicated Usage RHEL r3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7E7KNSKBJUR3PK9V" : { + "7E7KNSKBJUR3PK9V.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7E7KNSKBJUR3PK9V", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7E7KNSKBJUR3PK9V.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7E7KNSKBJUR3PK9V.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows p3.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BHX8HR3SKNMTY2Z6" : { + "BHX8HR3SKNMTY2Z6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BHX8HR3SKNMTY2Z6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BHX8HR3SKNMTY2Z6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BHX8HR3SKNMTY2Z6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.752 per On Demand Windows c3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YAPU23CHKA23RRR7" : { + "YAPU23CHKA23RRR7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YAPU23CHKA23RRR7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YAPU23CHKA23RRR7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YAPU23CHKA23RRR7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.30 per On Demand SUSE m4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TCG3S2HMU5VP2DFN" : { + "TCG3S2HMU5VP2DFN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TCG3S2HMU5VP2DFN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TCG3S2HMU5VP2DFN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TCG3S2HMU5VP2DFN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL c3.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ENFQDU23RKAAQR4R" : { + "ENFQDU23RKAAQR4R.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ENFQDU23RKAAQR4R", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ENFQDU23RKAAQR4R.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ENFQDU23RKAAQR4R.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows c3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "R6T5AVAY3H4NQFQ4" : { + "R6T5AVAY3H4NQFQ4.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "R6T5AVAY3H4NQFQ4", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "R6T5AVAY3H4NQFQ4.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "R6T5AVAY3H4NQFQ4.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.953 per Dedicated Usage Windows r4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HZC9FAP4F9Y8JW67" : { + "HZC9FAP4F9Y8JW67.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HZC9FAP4F9Y8JW67", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HZC9FAP4F9Y8JW67.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HZC9FAP4F9Y8JW67.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.0116 per On Demand Linux t2.micro Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0116000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QWZW5Y8P4TX97TGS" : { + "QWZW5Y8P4TX97TGS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QWZW5Y8P4TX97TGS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QWZW5Y8P4TX97TGS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QWZW5Y8P4TX97TGS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.378 per On Demand RHEL i3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BFXWBPUC878XX5WC" : { + "BFXWBPUC878XX5WC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BFXWBPUC878XX5WC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BFXWBPUC878XX5WC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BFXWBPUC878XX5WC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Server Enterprise i3.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "V8EJ2P6F3B8BQ4JZ" : { + "V8EJ2P6F3B8BQ4JZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "V8EJ2P6F3B8BQ4JZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "V8EJ2P6F3B8BQ4JZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "V8EJ2P6F3B8BQ4JZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.8264 per Dedicated Windows with SQL Std r4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8264000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KYPREJHGNMP6GVSA" : { + "KYPREJHGNMP6GVSA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KYPREJHGNMP6GVSA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KYPREJHGNMP6GVSA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KYPREJHGNMP6GVSA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.207 per Dedicated Windows c3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7YFC8DX6JB9UEFUF" : { + "7YFC8DX6JB9UEFUF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7YFC8DX6JB9UEFUF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7YFC8DX6JB9UEFUF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7YFC8DX6JB9UEFUF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$26.688 per On Demand Linux x1e.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "26.6880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QZ5WGYAMVW8QTQY4" : { + "QZ5WGYAMVW8QTQY4.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QZ5WGYAMVW8QTQY4", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QZ5WGYAMVW8QTQY4.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QZ5WGYAMVW8QTQY4.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux g2.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BFTE24AMMM45YVGQ" : { + "BFTE24AMMM45YVGQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BFTE24AMMM45YVGQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BFTE24AMMM45YVGQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BFTE24AMMM45YVGQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.924 per Dedicated Linux c3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "S73ZA9CU68E57ZAH" : { + "S73ZA9CU68E57ZAH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "S73ZA9CU68E57ZAH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "S73ZA9CU68E57ZAH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "S73ZA9CU68E57ZAH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.622 per Dedicated Usage Windows with SQL Server Enterprise i2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SZAG69AWYJF676BA" : { + "SZAG69AWYJF676BA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SZAG69AWYJF676BA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SZAG69AWYJF676BA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SZAG69AWYJF676BA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows d2.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZCJNXF2AJ56TTBVX" : { + "ZCJNXF2AJ56TTBVX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZCJNXF2AJ56TTBVX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZCJNXF2AJ56TTBVX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZCJNXF2AJ56TTBVX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.03 per GB - AWS GovCloud (US) data transfer to US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Y39GSVXFDVZTA5NW" : { + "Y39GSVXFDVZTA5NW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Y39GSVXFDVZTA5NW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Y39GSVXFDVZTA5NW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Y39GSVXFDVZTA5NW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise c4.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MQ6M7PWCD7PJTKHD" : { + "MQ6M7PWCD7PJTKHD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MQ6M7PWCD7PJTKHD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MQ6M7PWCD7PJTKHD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MQ6M7PWCD7PJTKHD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$14.5 per Dedicated Usage SUSE p2.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.5000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SQKUUTYR8NCPCZQK" : { + "SQKUUTYR8NCPCZQK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SQKUUTYR8NCPCZQK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SQKUUTYR8NCPCZQK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SQKUUTYR8NCPCZQK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web d2.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TJTQVWS5KE6W7NKV" : { + "TJTQVWS5KE6W7NKV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TJTQVWS5KE6W7NKV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TJTQVWS5KE6W7NKV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TJTQVWS5KE6W7NKV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$24.58 per Dedicated SUSE p3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "24.5800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VJVE25YH42K8TGEJ" : { + "VJVE25YH42K8TGEJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VJVE25YH42K8TGEJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VJVE25YH42K8TGEJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VJVE25YH42K8TGEJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$9.836 per On Demand SQL Std i2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.8360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BVX3DU7JUBDMJ5TW" : { + "BVX3DU7JUBDMJ5TW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BVX3DU7JUBDMJ5TW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BVX3DU7JUBDMJ5TW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BVX3DU7JUBDMJ5TW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.821 per On Demand Windows d2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "C92P55KXZZVQPVRT" : { + "C92P55KXZZVQPVRT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "C92P55KXZZVQPVRT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "C92P55KXZZVQPVRT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "C92P55KXZZVQPVRT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$12.651 per Dedicated Windows with SQL Std x1e.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.6510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KDHC3D74WA7UFHUU" : { + "KDHC3D74WA7UFHUU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KDHC3D74WA7UFHUU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KDHC3D74WA7UFHUU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KDHC3D74WA7UFHUU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.23 per On Demand RHEL c5.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VHC3YWSZ6ZFZPJN4" : { + "VHC3YWSZ6ZFZPJN4.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VHC3YWSZ6ZFZPJN4", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VHC3YWSZ6ZFZPJN4.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VHC3YWSZ6ZFZPJN4.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.40 per On Demand Linux m4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EN85M9PMPVGK77TA" : { + "EN85M9PMPVGK77TA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EN85M9PMPVGK77TA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EN85M9PMPVGK77TA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EN85M9PMPVGK77TA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$13.20 per On Demand Linux f1.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.2000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HY3BZPP2B6K8MSJF" : { + "HY3BZPP2B6K8MSJF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HY3BZPP2B6K8MSJF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HY3BZPP2B6K8MSJF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HY3BZPP2B6K8MSJF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.10 per GB-month of General Purpose SSD (gp2) provisioned storage - US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB-Mo", + "pricePerUnit" : { + "USD" : "0.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "R85D93TFFU8AU7WZ" : { + "R85D93TFFU8AU7WZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "R85D93TFFU8AU7WZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "R85D93TFFU8AU7WZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "R85D93TFFU8AU7WZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.16 per On Demand SUSE p3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RV7P78K2Q4CXVVP3" : { + "RV7P78K2Q4CXVVP3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RV7P78K2Q4CXVVP3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RV7P78K2Q4CXVVP3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RV7P78K2Q4CXVVP3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.722 per Dedicated SUSE c5.9xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FB2SHXY4CT6MW3FX" : { + "FB2SHXY4CT6MW3FX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FB2SHXY4CT6MW3FX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FB2SHXY4CT6MW3FX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FB2SHXY4CT6MW3FX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.368 per Dedicated Usage Windows d2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "68SDFG84HR8PCZY5" : { + "68SDFG84HR8PCZY5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "68SDFG84HR8PCZY5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "68SDFG84HR8PCZY5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "68SDFG84HR8PCZY5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.25 per Dedicated Windows with SQL Web c5.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9RK78KZK2N3R66EZ" : { + "9RK78KZK2N3R66EZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9RK78KZK2N3R66EZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9RK78KZK2N3R66EZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9RK78KZK2N3R66EZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.329 per Dedicated Windows m1.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FMHPC62WVZ9EB44Z" : { + "FMHPC62WVZ9EB44Z.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FMHPC62WVZ9EB44Z", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FMHPC62WVZ9EB44Z.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FMHPC62WVZ9EB44Z.JRTCKXETXF.6YS6EN2CT7", + "description" : "$17.622 per Dedicated Windows x1e.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "17.6220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZBVHTEDA4X8G6DPB" : { + "ZBVHTEDA4X8G6DPB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZBVHTEDA4X8G6DPB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZBVHTEDA4X8G6DPB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZBVHTEDA4X8G6DPB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.673 per Dedicated Usage Windows with SQL Web r3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CTZ6QQ5C598KFDED" : { + "CTZ6QQ5C598KFDED.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CTZ6QQ5C598KFDED", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CTZ6QQ5C598KFDED.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CTZ6QQ5C598KFDED.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows BYOL i3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3D264ECCWU44GADE" : { + "3D264ECCWU44GADE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3D264ECCWU44GADE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3D264ECCWU44GADE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3D264ECCWU44GADE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.084 per On Demand SQL Std m2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8X3QU4DYXVJAXZK3" : { + "8X3QU4DYXVJAXZK3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8X3QU4DYXVJAXZK3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8X3QU4DYXVJAXZK3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8X3QU4DYXVJAXZK3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.02 per GB - US East (Northern Virginia) data transfer to US West (Northern California)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6SZSU4SPSN4VNV6H" : { + "6SZSU4SPSN4VNV6H.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6SZSU4SPSN4VNV6H", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6SZSU4SPSN4VNV6H.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6SZSU4SPSN4VNV6H.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.537 per On Demand Windows with SQL Server Enterprise i2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5NPY8GZN5BFUPMDZ" : { + "5NPY8GZN5BFUPMDZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5NPY8GZN5BFUPMDZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5NPY8GZN5BFUPMDZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5NPY8GZN5BFUPMDZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.143 per Dedicated Usage Windows m3.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2JE46CBZYW8NSTTW" : { + "2JE46CBZYW8NSTTW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2JE46CBZYW8NSTTW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2JE46CBZYW8NSTTW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2JE46CBZYW8NSTTW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per GB - Canada (Central) data transfer from US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PZAZYRGRJEARRZEW" : { + "PZAZYRGRJEARRZEW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PZAZYRGRJEARRZEW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PZAZYRGRJEARRZEW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PZAZYRGRJEARRZEW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per RHEL i3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6R5GC45858YD7JK6" : { + "6R5GC45858YD7JK6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6R5GC45858YD7JK6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6R5GC45858YD7JK6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6R5GC45858YD7JK6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.083 per Dedicated Windows m1.small Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TFQ5DSSKH395ATXV" : { + "TFQ5DSSKH395ATXV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TFQ5DSSKH395ATXV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TFQ5DSSKH395ATXV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TFQ5DSSKH395ATXV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.688 per Dedicated Windows with SQL Std c5.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SXK3NYF7FUGNCYNW" : { + "SXK3NYF7FUGNCYNW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SXK3NYF7FUGNCYNW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SXK3NYF7FUGNCYNW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SXK3NYF7FUGNCYNW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise i2.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9MM8GACQ8HB29XKD" : { + "9MM8GACQ8HB29XKD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9MM8GACQ8HB29XKD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9MM8GACQ8HB29XKD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9MM8GACQ8HB29XKD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.715 per Dedicated Windows BYOL g2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6FWXGNKA63Z8BMCH" : { + "6FWXGNKA63Z8BMCH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6FWXGNKA63Z8BMCH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6FWXGNKA63Z8BMCH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6FWXGNKA63Z8BMCH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.130 per Dedicated RHEL cc2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "P63NKZQXED5H7HUK" : { + "P63NKZQXED5H7HUK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "P63NKZQXED5H7HUK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "P63NKZQXED5H7HUK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "P63NKZQXED5H7HUK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.38 per On Demand Linux d2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "C6HNR92XQ2JU8MSN" : { + "C6HNR92XQ2JU8MSN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "C6HNR92XQ2JU8MSN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "C6HNR92XQ2JU8MSN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "C6HNR92XQ2JU8MSN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL m4.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AJKJ4N4Q2WVCYJJN" : { + "AJKJ4N4Q2WVCYJJN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AJKJ4N4Q2WVCYJJN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AJKJ4N4Q2WVCYJJN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AJKJ4N4Q2WVCYJJN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 for 750 Mbps per c4.xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YBBWEV8UYE6E6N4Q" : { + "YBBWEV8UYE6E6N4Q.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YBBWEV8UYE6E6N4Q", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YBBWEV8UYE6E6N4Q.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YBBWEV8UYE6E6N4Q.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web g2.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "W43N2ZPS868KHX7Y" : { + "W43N2ZPS868KHX7Y.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "W43N2ZPS868KHX7Y", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "W43N2ZPS868KHX7Y.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "W43N2ZPS868KHX7Y.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.510 per On Demand SUSE i2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "X9NV55CM3DDZH8WM" : { + "X9NV55CM3DDZH8WM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "X9NV55CM3DDZH8WM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "X9NV55CM3DDZH8WM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "X9NV55CM3DDZH8WM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$13.20 per Dedicated Windows BYOL f1.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.2000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CVZN7PCT7EYTAUNH" : { + "CVZN7PCT7EYTAUNH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CVZN7PCT7EYTAUNH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CVZN7PCT7EYTAUNH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CVZN7PCT7EYTAUNH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.02 per On Demand Windows BYOL t1.micro Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "46RTKB3PY2USZ3JU" : { + "46RTKB3PY2USZ3JU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "46RTKB3PY2USZ3JU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "46RTKB3PY2USZ3JU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "46RTKB3PY2USZ3JU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.68 per On Demand Windows BYOL c5.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UKDR4WHMWWJ5CSDR" : { + "UKDR4WHMWWJ5CSDR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UKDR4WHMWWJ5CSDR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UKDR4WHMWWJ5CSDR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UKDR4WHMWWJ5CSDR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.0928 per On Demand Windows BYOL t2.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0928000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XKJ4XRAHPF6M7XD9" : { + "XKJ4XRAHPF6M7XD9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XKJ4XRAHPF6M7XD9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XKJ4XRAHPF6M7XD9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XKJ4XRAHPF6M7XD9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per GB - US East (Northern Virginia) data transfer from Canada (Central)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "M585HN87CC23QMVN" : { + "M585HN87CC23QMVN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "M585HN87CC23QMVN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "M585HN87CC23QMVN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "M585HN87CC23QMVN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.393 per Dedicated Usage SUSE r4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EGD7PR7MXJNRRR5M" : { + "EGD7PR7MXJNRRR5M.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EGD7PR7MXJNRRR5M", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EGD7PR7MXJNRRR5M.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EGD7PR7MXJNRRR5M.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL r3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Y44NT84DJSFFW437" : { + "Y44NT84DJSFFW437.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Y44NT84DJSFFW437", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Y44NT84DJSFFW437.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Y44NT84DJSFFW437.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.404 per Dedicated Windows m4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XG2EKBMRP7S226WS" : { + "XG2EKBMRP7S226WS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XG2EKBMRP7S226WS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XG2EKBMRP7S226WS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XG2EKBMRP7S226WS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise c3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UA4QBJUCBNHDQX2B" : { + "UA4QBJUCBNHDQX2B.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UA4QBJUCBNHDQX2B", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UA4QBJUCBNHDQX2B.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UA4QBJUCBNHDQX2B.JRTCKXETXF.6YS6EN2CT7", + "description" : "$5.036 per On Demand Windows with SQL Server Enterprise x1e.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.0360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RRRPJJTQ9JB8YF5W" : { + "RRRPJJTQ9JB8YF5W.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RRRPJJTQ9JB8YF5W", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RRRPJJTQ9JB8YF5W.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RRRPJJTQ9JB8YF5W.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.243 per Dedicated Usage RHEL r3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Z7AE49M8866J2GBA" : { + "Z7AE49M8866J2GBA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Z7AE49M8866J2GBA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Z7AE49M8866J2GBA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Z7AE49M8866J2GBA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE c3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KX42WEB78EWUHU8Q" : { + "KX42WEB78EWUHU8Q.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KX42WEB78EWUHU8Q", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KX42WEB78EWUHU8Q.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KX42WEB78EWUHU8Q.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.98 per Dedicated SUSE m4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BQZA2V9VZEE32ZTX" : { + "BQZA2V9VZEE32ZTX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BQZA2V9VZEE32ZTX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BQZA2V9VZEE32ZTX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BQZA2V9VZEE32ZTX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.955 per On Demand SQL Std m1.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "38AX843AAXNB6F95" : { + "38AX843AAXNB6F95.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "38AX843AAXNB6F95", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "38AX843AAXNB6F95.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "38AX843AAXNB6F95.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.271 per On Demand Windows with SQL Web m4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TDGFBAHXRZKBVVEK" : { + "TDGFBAHXRZKBVVEK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TDGFBAHXRZKBVVEK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TDGFBAHXRZKBVVEK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TDGFBAHXRZKBVVEK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$5.244 per Dedicated Usage Windows with SQL Server Enterprise i2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.2440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TRZ6E8JSBS5WZR6G" : { + "TRZ6E8JSBS5WZR6G.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TRZ6E8JSBS5WZR6G", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TRZ6E8JSBS5WZR6G.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TRZ6E8JSBS5WZR6G.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.466 per Dedicated Usage RHEL x1.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FUETJGKE44YRRDYN" : { + "FUETJGKE44YRRDYN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FUETJGKE44YRRDYN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FUETJGKE44YRRDYN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FUETJGKE44YRRDYN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.708 per On Demand Windows c5.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7MVN3GT6EP25KDUJ" : { + "7MVN3GT6EP25KDUJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7MVN3GT6EP25KDUJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7MVN3GT6EP25KDUJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7MVN3GT6EP25KDUJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.000 per Dedicated Linux cc2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9WGNK9JK96GFCM3E" : { + "9WGNK9JK96GFCM3E.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9WGNK9JK96GFCM3E", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9WGNK9JK96GFCM3E.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9WGNK9JK96GFCM3E.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.89 per On Demand RHEL d2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XDP9UAY59KP89W84" : { + "XDP9UAY59KP89W84.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XDP9UAY59KP89W84", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XDP9UAY59KP89W84.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XDP9UAY59KP89W84.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web c3.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TQV69AZUDVU7GUKY" : { + "TQV69AZUDVU7GUKY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TQV69AZUDVU7GUKY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TQV69AZUDVU7GUKY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TQV69AZUDVU7GUKY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.695 per Dedicated Usage SUSE m3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FSBXVV6Q3V6PKBSN" : { + "FSBXVV6Q3V6PKBSN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FSBXVV6Q3V6PKBSN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FSBXVV6Q3V6PKBSN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FSBXVV6Q3V6PKBSN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.864 per On Demand Windows with SQL Std m4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "N9AQNRUTKCFEVCJ6" : { + "N9AQNRUTKCFEVCJ6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "N9AQNRUTKCFEVCJ6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "N9AQNRUTKCFEVCJ6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "N9AQNRUTKCFEVCJ6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.732 per Dedicated Usage Linux r3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5U9FJ3JR532G32NE" : { + "5U9FJ3JR532G32NE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5U9FJ3JR532G32NE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5U9FJ3JR532G32NE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5U9FJ3JR532G32NE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$8.350 per Dedicated SQL Std hs1.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.3500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "F5ZPZV2EEY3FC3V9" : { + "F5ZPZV2EEY3FC3V9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "F5ZPZV2EEY3FC3V9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "F5ZPZV2EEY3FC3V9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "F5ZPZV2EEY3FC3V9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.850 per On Demand SQL Web m2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "URGXD2SFFV6PJGW7" : { + "URGXD2SFFV6PJGW7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "URGXD2SFFV6PJGW7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "URGXD2SFFV6PJGW7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "URGXD2SFFV6PJGW7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.208 per Dedicated RHEL m2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9Z7C9YEQ5U8P5GDZ" : { + "9Z7C9YEQ5U8P5GDZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9Z7C9YEQ5U8P5GDZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9Z7C9YEQ5U8P5GDZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9Z7C9YEQ5U8P5GDZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.78 per On Demand SUSE c5.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CNQRJ2XRQ5WYZJQ3" : { + "CNQRJ2XRQ5WYZJQ3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CNQRJ2XRQ5WYZJQ3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CNQRJ2XRQ5WYZJQ3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CNQRJ2XRQ5WYZJQ3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.992 per On Demand Windows i3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "M9J2DPTBA6842MJH" : { + "M9J2DPTBA6842MJH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "M9J2DPTBA6842MJH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "M9J2DPTBA6842MJH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "M9J2DPTBA6842MJH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.183 per Dedicated Usage Windows BYOL r3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XCXYQ48G7HXYYHAC" : { + "XCXYQ48G7HXYYHAC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XCXYQ48G7HXYYHAC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XCXYQ48G7HXYYHAC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XCXYQ48G7HXYYHAC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.845 per Dedicated RHEL g2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AMRJDA6P539Y5Q3X" : { + "AMRJDA6P539Y5Q3X.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AMRJDA6P539Y5Q3X", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AMRJDA6P539Y5Q3X.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AMRJDA6P539Y5Q3X.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.50 per On Demand SUSE m4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YFKXQVPA9X957EGE" : { + "YFKXQVPA9X957EGE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YFKXQVPA9X957EGE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YFKXQVPA9X957EGE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YFKXQVPA9X957EGE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE p2.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DT3ZK6NDAD7ADBVZ" : { + "DT3ZK6NDAD7ADBVZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DT3ZK6NDAD7ADBVZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DT3ZK6NDAD7ADBVZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DT3ZK6NDAD7ADBVZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.532 per On Demand Windows with SQL Web i3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "M9HNUU75T45RPFC6" : { + "M9HNUU75T45RPFC6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "M9HNUU75T45RPFC6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "M9HNUU75T45RPFC6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "M9HNUU75T45RPFC6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.233 per On Demand SUSE m3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VERRUXNQ656VFYCC" : { + "VERRUXNQ656VFYCC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VERRUXNQ656VFYCC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VERRUXNQ656VFYCC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VERRUXNQ656VFYCC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.1358 per On Demand Windows with SQL Web t2.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1358000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SCYNS2QNCRN89WMZ" : { + "SCYNS2QNCRN89WMZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SCYNS2QNCRN89WMZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SCYNS2QNCRN89WMZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SCYNS2QNCRN89WMZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.2456 per On Demand RHEL t2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2456000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6SB59AKPWK57QDT4" : { + "6SB59AKPWK57QDT4.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6SB59AKPWK57QDT4", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6SB59AKPWK57QDT4.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6SB59AKPWK57QDT4.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.759 per Dedicated Windows m2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SKGAAJVJUYA4XN4J" : { + "SKGAAJVJUYA4XN4J.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SKGAAJVJUYA4XN4J", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SKGAAJVJUYA4XN4J.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SKGAAJVJUYA4XN4J.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.06 per Dedicated Linux c5.18xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YB65BFK6JTN2AVK3" : { + "YB65BFK6JTN2AVK3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YB65BFK6JTN2AVK3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YB65BFK6JTN2AVK3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YB65BFK6JTN2AVK3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web c3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MBQPYDJSY3BY84BH" : { + "MBQPYDJSY3BY84BH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MBQPYDJSY3BY84BH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MBQPYDJSY3BY84BH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MBQPYDJSY3BY84BH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux c4.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DUFUABZJFHZ5SWBJ" : { + "DUFUABZJFHZ5SWBJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DUFUABZJFHZ5SWBJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DUFUABZJFHZ5SWBJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DUFUABZJFHZ5SWBJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.335 per Dedicated Windows with SQL Web i3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7MS6E9W2YWKJZRX5" : { + "7MS6E9W2YWKJZRX5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7MS6E9W2YWKJZRX5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7MS6E9W2YWKJZRX5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7MS6E9W2YWKJZRX5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.376 per On Demand Windows c3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6FVWSFZ39BEVJUVW" : { + "6FVWSFZ39BEVJUVW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6FVWSFZ39BEVJUVW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6FVWSFZ39BEVJUVW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6FVWSFZ39BEVJUVW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.246 per Dedicated Usage SUSE r4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HCMUNBKMY8ZTDFFE" : { + "HCMUNBKMY8ZTDFFE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HCMUNBKMY8ZTDFFE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HCMUNBKMY8ZTDFFE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HCMUNBKMY8ZTDFFE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.235 per On Demand RHEL m1.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YJAJYU26JMTDCU86" : { + "YJAJYU26JMTDCU86.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YJAJYU26JMTDCU86", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YJAJYU26JMTDCU86.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YJAJYU26JMTDCU86.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.677 per On Demand Windows with SQL Server Enterprise c5.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "WY2NRDKGBAP9WZHZ" : { + "WY2NRDKGBAP9WZHZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "WY2NRDKGBAP9WZHZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "WY2NRDKGBAP9WZHZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "WY2NRDKGBAP9WZHZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise d2.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "J5F97VTUKDBTW8X5" : { + "J5F97VTUKDBTW8X5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "J5F97VTUKDBTW8X5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "J5F97VTUKDBTW8X5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "J5F97VTUKDBTW8X5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.02 per GB - EU (London) data transfer to US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VRV65GYV3GNQWB7Z" : { + "VRV65GYV3GNQWB7Z.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VRV65GYV3GNQWB7Z", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VRV65GYV3GNQWB7Z.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VRV65GYV3GNQWB7Z.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL g2.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TX7H54J52X2GTX6C" : { + "TX7H54J52X2GTX6C.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TX7H54J52X2GTX6C", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TX7H54J52X2GTX6C.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TX7H54J52X2GTX6C.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.283 per Dedicated Usage SUSE r3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7SQ2BQ8A45ARW92Z" : { + "7SQ2BQ8A45ARW92Z.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7SQ2BQ8A45ARW92Z", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7SQ2BQ8A45ARW92Z.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7SQ2BQ8A45ARW92Z.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.10 per On Demand Windows BYOL m4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PAV3TCYGE4N3YT8E" : { + "PAV3TCYGE4N3YT8E.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PAV3TCYGE4N3YT8E", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PAV3TCYGE4N3YT8E.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PAV3TCYGE4N3YT8E.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per GB - AWS GovCloud (US) data transfer from US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "56836GB58CR7CVY9" : { + "56836GB58CR7CVY9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "56836GB58CR7CVY9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "56836GB58CR7CVY9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "56836GB58CR7CVY9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$19.226 per Dedicated Usage Windows x1.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "19.2260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YTTWW26ACBCFNQFW" : { + "YTTWW26ACBCFNQFW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YTTWW26ACBCFNQFW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YTTWW26ACBCFNQFW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YTTWW26ACBCFNQFW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$13.338 per Dedicated Usage Windows BYOL x1.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.3380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FWTR9MGD2XP654H6" : { + "FWTR9MGD2XP654H6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FWTR9MGD2XP654H6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FWTR9MGD2XP654H6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FWTR9MGD2XP654H6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE d2.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NUX3MUG87XRK86AD" : { + "NUX3MUG87XRK86AD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NUX3MUG87XRK86AD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NUX3MUG87XRK86AD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NUX3MUG87XRK86AD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.942 per Dedicated SQL Web i2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.9420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HZ8DFZSZ7N4XS65D" : { + "HZ8DFZSZ7N4XS65D.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HZ8DFZSZ7N4XS65D", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HZ8DFZSZ7N4XS65D.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HZ8DFZSZ7N4XS65D.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Web x1e.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8DAD556FD5NBRFC3" : { + "8DAD556FD5NBRFC3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8DAD556FD5NBRFC3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8DAD556FD5NBRFC3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8DAD556FD5NBRFC3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.589 per Dedicated Windows with SQL Web c5.18xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FVBNJRJQXKTZMPVR" : { + "FVBNJRJQXKTZMPVR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FVBNJRJQXKTZMPVR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FVBNJRJQXKTZMPVR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FVBNJRJQXKTZMPVR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$6.326 per Dedicated Windows with SQL Std x1e.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.3260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "266JF3S5TDUM4QX4" : { + "266JF3S5TDUM4QX4.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "266JF3S5TDUM4QX4", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "266JF3S5TDUM4QX4.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "266JF3S5TDUM4QX4.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.319 per On Demand Windows with SQL Std c4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JJMJT8KUKWT7YX58" : { + "JJMJT8KUKWT7YX58.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JJMJT8KUKWT7YX58", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JJMJT8KUKWT7YX58.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JJMJT8KUKWT7YX58.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux r4.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HS3PUQUMX2MJTFJA" : { + "HS3PUQUMX2MJTFJA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HS3PUQUMX2MJTFJA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HS3PUQUMX2MJTFJA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HS3PUQUMX2MJTFJA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$13.33 per Dedicated RHEL f1.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.3300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "X3Q7CMUEB38C83RH" : { + "X3Q7CMUEB38C83RH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "X3Q7CMUEB38C83RH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "X3Q7CMUEB38C83RH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "X3Q7CMUEB38C83RH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux i2.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Y5KA5VEADFSRVVYY" : { + "Y5KA5VEADFSRVVYY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Y5KA5VEADFSRVVYY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Y5KA5VEADFSRVVYY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Y5KA5VEADFSRVVYY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std m4.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Z4Y83SEHA9UDFDP2" : { + "Z4Y83SEHA9UDFDP2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Z4Y83SEHA9UDFDP2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Z4Y83SEHA9UDFDP2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Z4Y83SEHA9UDFDP2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.354 per Dedicated SUSE g3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QYS4PZ8A9Q32ZPH2" : { + "QYS4PZ8A9Q32ZPH2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QYS4PZ8A9Q32ZPH2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QYS4PZ8A9Q32ZPH2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QYS4PZ8A9Q32ZPH2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$13.036 per Dedicated Linux p3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.0360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VMMGB42RKPM3E742" : { + "VMMGB42RKPM3E742.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VMMGB42RKPM3E742", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VMMGB42RKPM3E742.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VMMGB42RKPM3E742.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.35 per On Demand Windows BYOL m1.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "69JW6QZ8TVS6R46R" : { + "69JW6QZ8TVS6R46R.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "69JW6QZ8TVS6R46R", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "69JW6QZ8TVS6R46R.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "69JW6QZ8TVS6R46R.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.02 for 400 Mbps per i2.xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PQSYKZPSZAFEZVK7" : { + "PQSYKZPSZAFEZVK7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PQSYKZPSZAFEZVK7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PQSYKZPSZAFEZVK7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PQSYKZPSZAFEZVK7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows m3.medium Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "R9PWNAHCDMYRXNMW" : { + "R9PWNAHCDMYRXNMW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "R9PWNAHCDMYRXNMW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "R9PWNAHCDMYRXNMW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "R9PWNAHCDMYRXNMW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.768 per Dedicated Windows with SQL Std m4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7UNGQGFQFJTYCG4P" : { + "7UNGQGFQFJTYCG4P.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7UNGQGFQFJTYCG4P", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7UNGQGFQFJTYCG4P.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7UNGQGFQFJTYCG4P.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows p3.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "K28MGJB7A9VHR5UW" : { + "K28MGJB7A9VHR5UW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "K28MGJB7A9VHR5UW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "K28MGJB7A9VHR5UW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "K28MGJB7A9VHR5UW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows i3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XGC6ECJC7S6BUMKQ" : { + "XGC6ECJC7S6BUMKQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XGC6ECJC7S6BUMKQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XGC6ECJC7S6BUMKQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XGC6ECJC7S6BUMKQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows BYOL c5.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "T6R594SDRM2DHYVF" : { + "T6R594SDRM2DHYVF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "T6R594SDRM2DHYVF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "T6R594SDRM2DHYVF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "T6R594SDRM2DHYVF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL d2.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "89WDVYSF7M632K4P" : { + "89WDVYSF7M632K4P.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "89WDVYSF7M632K4P", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "89WDVYSF7M632K4P.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "89WDVYSF7M632K4P.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.66 per On Demand SUSE g3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.6600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PPV5Q7DEDQX5ZEAC" : { + "PPV5Q7DEDQX5ZEAC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PPV5Q7DEDQX5ZEAC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PPV5Q7DEDQX5ZEAC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PPV5Q7DEDQX5ZEAC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux p2.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "V34YMXZ5WQ9WHREH" : { + "V34YMXZ5WQ9WHREH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "V34YMXZ5WQ9WHREH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "V34YMXZ5WQ9WHREH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "V34YMXZ5WQ9WHREH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$23.968 per On Demand Windows with SQL Std x1e.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "23.9680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KG9YWSKMK27V6W6V" : { + "KG9YWSKMK27V6W6V.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KG9YWSKMK27V6W6V", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KG9YWSKMK27V6W6V.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KG9YWSKMK27V6W6V.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.175 per On Demand Linux m1.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NW2F7XVYDCTPPGMJ" : { + "NW2F7XVYDCTPPGMJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NW2F7XVYDCTPPGMJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NW2F7XVYDCTPPGMJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NW2F7XVYDCTPPGMJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.884 per On Demand Windows with SQL Server Enterprise m4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "APERCPEVDRU8YTTJ" : { + "APERCPEVDRU8YTTJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "APERCPEVDRU8YTTJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "APERCPEVDRU8YTTJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "APERCPEVDRU8YTTJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise c4.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "H65MFZJT8RFNRRQK" : { + "H65MFZJT8RFNRRQK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "H65MFZJT8RFNRRQK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "H65MFZJT8RFNRRQK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "H65MFZJT8RFNRRQK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web d2.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FC6PRNUH98J5QR93" : { + "FC6PRNUH98J5QR93.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FC6PRNUH98J5QR93", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FC6PRNUH98J5QR93.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FC6PRNUH98J5QR93.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.508 per Dedicated Windows BYOL g3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JDDEXQUM9ZCJ8RDR" : { + "JDDEXQUM9ZCJ8RDR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JDDEXQUM9ZCJ8RDR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JDDEXQUM9ZCJ8RDR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JDDEXQUM9ZCJ8RDR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.72 per On Demand Windows with SQL Std r4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UK3253N3FM8G9VRT" : { + "UK3253N3FM8G9VRT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UK3253N3FM8G9VRT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UK3253N3FM8G9VRT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UK3253N3FM8G9VRT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.248 per On Demand Windows BYOL i3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZMYRWAJAX252Z8ZW" : { + "ZMYRWAJAX252Z8ZW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZMYRWAJAX252Z8ZW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZMYRWAJAX252Z8ZW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZMYRWAJAX252Z8ZW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.970 per On Demand RHEL c3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MJKCR5ZSNFXJ35EA" : { + "MJKCR5ZSNFXJ35EA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MJKCR5ZSNFXJ35EA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MJKCR5ZSNFXJ35EA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MJKCR5ZSNFXJ35EA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.457 per Dedicated Windows c5.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NCQEUP5F7MP2C7VT" : { + "NCQEUP5F7MP2C7VT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NCQEUP5F7MP2C7VT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NCQEUP5F7MP2C7VT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NCQEUP5F7MP2C7VT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.931 per Dedicated Windows hs1.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PQQ53JZ8S758UUWS" : { + "PQQ53JZ8S758UUWS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PQQ53JZ8S758UUWS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PQQ53JZ8S758UUWS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PQQ53JZ8S758UUWS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$21.88 per On Demand Windows with SQL Web x1.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "21.8800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MZHHAF4YCR5JMQ9C" : { + "MZHHAF4YCR5JMQ9C.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MZHHAF4YCR5JMQ9C", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MZHHAF4YCR5JMQ9C.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MZHHAF4YCR5JMQ9C.JRTCKXETXF.6YS6EN2CT7", + "description" : "$8.615 per Dedicated Usage Windows with SQL Std r3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.6150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BA8XB9J4UJVPU6DS" : { + "BA8XB9J4UJVPU6DS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BA8XB9J4UJVPU6DS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BA8XB9J4UJVPU6DS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BA8XB9J4UJVPU6DS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.293 per Dedicated Usage Windows BYOL r4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ENHSMTH854TGXCX2" : { + "ENHSMTH854TGXCX2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ENHSMTH854TGXCX2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ENHSMTH854TGXCX2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ENHSMTH854TGXCX2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 for 2000 Mbps per d2.4xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TZ5DAMR52CPHF2F6" : { + "TZ5DAMR52CPHF2F6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TZ5DAMR52CPHF2F6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TZ5DAMR52CPHF2F6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TZ5DAMR52CPHF2F6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per SUSE c5.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HD7DSDMNNNQAM7PK" : { + "HD7DSDMNNNQAM7PK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HD7DSDMNNNQAM7PK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HD7DSDMNNNQAM7PK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HD7DSDMNNNQAM7PK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.2 per On Demand Windows r4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.2000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AYYR654XYEDPM6TA" : { + "AYYR654XYEDPM6TA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AYYR654XYEDPM6TA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AYYR654XYEDPM6TA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AYYR654XYEDPM6TA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per SUSE f1.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9PA6CYJ4VMXA3MPV" : { + "9PA6CYJ4VMXA3MPV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9PA6CYJ4VMXA3MPV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9PA6CYJ4VMXA3MPV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9PA6CYJ4VMXA3MPV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise d2.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9MR4BWBNYFE4GCC3" : { + "9MR4BWBNYFE4GCC3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9MR4BWBNYFE4GCC3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9MR4BWBNYFE4GCC3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9MR4BWBNYFE4GCC3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Linux x1e.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MGX8XKF9UWBS8FMV" : { + "MGX8XKF9UWBS8FMV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MGX8XKF9UWBS8FMV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MGX8XKF9UWBS8FMV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MGX8XKF9UWBS8FMV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.30 per Dedicated SUSE m4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MW3YR4CA9XQU7PMV" : { + "MW3YR4CA9XQU7PMV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MW3YR4CA9XQU7PMV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MW3YR4CA9XQU7PMV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MW3YR4CA9XQU7PMV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.600 per Dedicated Windows cg1.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7EJUFSKMUWC5DSMS" : { + "7EJUFSKMUWC5DSMS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7EJUFSKMUWC5DSMS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7EJUFSKMUWC5DSMS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7EJUFSKMUWC5DSMS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.300 per Dedicated Windows BYOL cc1.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2RZ6RRUC3U8UVYP9" : { + "2RZ6RRUC3U8UVYP9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2RZ6RRUC3U8UVYP9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2RZ6RRUC3U8UVYP9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2RZ6RRUC3U8UVYP9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.977 per Dedicated Usage Windows with SQL Server Enterprise m3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "X5T4377XTFNYDM3K" : { + "X5T4377XTFNYDM3K.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "X5T4377XTFNYDM3K", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "X5T4377XTFNYDM3K.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "X5T4377XTFNYDM3K.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.904 per Dedicated Windows with SQL Server Enterprise m4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FPSSRYYG22AJKWQT" : { + "FPSSRYYG22AJKWQT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FPSSRYYG22AJKWQT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FPSSRYYG22AJKWQT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FPSSRYYG22AJKWQT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web i2.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KPX48D6YDFSDBE2Y" : { + "KPX48D6YDFSDBE2Y.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KPX48D6YDFSDBE2Y", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KPX48D6YDFSDBE2Y.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KPX48D6YDFSDBE2Y.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.266 per On Demand SUSE r3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PFVCSMK3T7J3UAHB" : { + "PFVCSMK3T7J3UAHB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PFVCSMK3T7J3UAHB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PFVCSMK3T7J3UAHB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PFVCSMK3T7J3UAHB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.353 per Dedicated SQL Std i2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7APFVGHQXR9QGJ23" : { + "7APFVGHQXR9QGJ23.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7APFVGHQXR9QGJ23", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7APFVGHQXR9QGJ23.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7APFVGHQXR9QGJ23.JRTCKXETXF.6YS6EN2CT7", + "description" : "$27.424 per On Demand Windows p3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "27.4240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8ZKTF27C8KTCX3VS" : { + "8ZKTF27C8KTCX3VS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8ZKTF27C8KTCX3VS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8ZKTF27C8KTCX3VS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8ZKTF27C8KTCX3VS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Web c5.9xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Q3B3QHUSMA9FRZZH" : { + "Q3B3QHUSMA9FRZZH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Q3B3QHUSMA9FRZZH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Q3B3QHUSMA9FRZZH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Q3B3QHUSMA9FRZZH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.591 per On Demand Windows BYOL c4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4B63NWS2TS69S46X" : { + "4B63NWS2TS69S46X.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4B63NWS2TS69S46X", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4B63NWS2TS69S46X.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4B63NWS2TS69S46X.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web d2.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TAAVXTAR4D2NPUA8" : { + "TAAVXTAR4D2NPUA8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TAAVXTAR4D2NPUA8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TAAVXTAR4D2NPUA8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TAAVXTAR4D2NPUA8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL d2.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "W3VESHWCSRCUY7WY" : { + "W3VESHWCSRCUY7WY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "W3VESHWCSRCUY7WY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "W3VESHWCSRCUY7WY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "W3VESHWCSRCUY7WY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.025 for 500 Mbps per m2.2xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "N449RKU6MSAPKBDX" : { + "N449RKU6MSAPKBDX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "N449RKU6MSAPKBDX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "N449RKU6MSAPKBDX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "N449RKU6MSAPKBDX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 for 2000 Mbps per m4.4xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "W8BNBRKMXW7VU4BK" : { + "W8BNBRKMXW7VU4BK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "W8BNBRKMXW7VU4BK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "W8BNBRKMXW7VU4BK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "W8BNBRKMXW7VU4BK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL g2.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3YMR7VMVAJWZPJVQ" : { + "3YMR7VMVAJWZPJVQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3YMR7VMVAJWZPJVQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3YMR7VMVAJWZPJVQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3YMR7VMVAJWZPJVQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.066 per On Demand SQL Std c3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YN6S4KGMAE64PQR5" : { + "YN6S4KGMAE64PQR5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YN6S4KGMAE64PQR5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YN6S4KGMAE64PQR5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YN6S4KGMAE64PQR5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.1856 per On Demand Windows BYOL t2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1856000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BUS2682V3FEX8NNV" : { + "BUS2682V3FEX8NNV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BUS2682V3FEX8NNV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BUS2682V3FEX8NNV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BUS2682V3FEX8NNV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.443 per Dedicated Usage Windows with SQL Server Enterprise d2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "S96SK9E6DW5X9ZCD" : { + "S96SK9E6DW5X9ZCD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "S96SK9E6DW5X9ZCD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "S96SK9E6DW5X9ZCD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "S96SK9E6DW5X9ZCD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.953 per On Demand SUSE i2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HVUDFQPHSTBP5QJC" : { + "HVUDFQPHSTBP5QJC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HVUDFQPHSTBP5QJC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HVUDFQPHSTBP5QJC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HVUDFQPHSTBP5QJC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$33.372 per On Demand Windows with SQL Server Enterprise c5.18xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "33.3720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UGMJ2EBAQ8A6XBDQ" : { + "UGMJ2EBAQ8A6XBDQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UGMJ2EBAQ8A6XBDQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UGMJ2EBAQ8A6XBDQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UGMJ2EBAQ8A6XBDQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.200 per On Demand SUSE cg1.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RUDWUCYJBCDYZNGV" : { + "RUDWUCYJBCDYZNGV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RUDWUCYJBCDYZNGV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RUDWUCYJBCDYZNGV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RUDWUCYJBCDYZNGV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.202 per Dedicated Usage Windows with SQL Web m3.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UEHZ36662EWM4RGB" : { + "UEHZ36662EWM4RGB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UEHZ36662EWM4RGB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UEHZ36662EWM4RGB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UEHZ36662EWM4RGB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$32.576 per Dedicated Windows x1e.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "32.5760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FRR3BPV6Y433HGXY" : { + "FRR3BPV6Y433HGXY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FRR3BPV6Y433HGXY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FRR3BPV6Y433HGXY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FRR3BPV6Y433HGXY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$6.198 per Dedicated Usage Windows d2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.1980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3EFSVCMF7TVMQPZ3" : { + "3EFSVCMF7TVMQPZ3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3EFSVCMF7TVMQPZ3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3EFSVCMF7TVMQPZ3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3EFSVCMF7TVMQPZ3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux c4.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "298AWKD7RC822MQJ" : { + "298AWKD7RC822MQJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "298AWKD7RC822MQJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "298AWKD7RC822MQJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "298AWKD7RC822MQJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$14.53 per Dedicated Usage RHEL p2.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.5300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "F3HZNTTFXFDM68NR" : { + "F3HZNTTFXFDM68NR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "F3HZNTTFXFDM68NR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "F3HZNTTFXFDM68NR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "F3HZNTTFXFDM68NR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.28 per Dedicated SUSE c5.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SV6J8GK44ZN2FKNF" : { + "SV6J8GK44ZN2FKNF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SV6J8GK44ZN2FKNF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SV6J8GK44ZN2FKNF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SV6J8GK44ZN2FKNF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.544 per Dedicated Windows with SQL Web m4.10xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JGBX8UHZUVP2AMXP" : { + "JGBX8UHZUVP2AMXP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JGBX8UHZUVP2AMXP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JGBX8UHZUVP2AMXP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JGBX8UHZUVP2AMXP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per RHEL c5.18xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RXE37MRXKF33M9T8" : { + "RXE37MRXKF33M9T8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RXE37MRXKF33M9T8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RXE37MRXKF33M9T8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RXE37MRXKF33M9T8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.024 per Dedicated SUSE c3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CDY4KCZ5UTDSGTGH" : { + "CDY4KCZ5UTDSGTGH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CDY4KCZ5UTDSGTGH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CDY4KCZ5UTDSGTGH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CDY4KCZ5UTDSGTGH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.6 per On Demand Windows BYOL g2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QURFZDZRCJFUV9KZ" : { + "QURFZDZRCJFUV9KZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QURFZDZRCJFUV9KZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QURFZDZRCJFUV9KZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QURFZDZRCJFUV9KZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.51 per On Demand RHEL d2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GEXPJU4GWZZ6DSTT" : { + "GEXPJU4GWZZ6DSTT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GEXPJU4GWZZ6DSTT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GEXPJU4GWZZ6DSTT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GEXPJU4GWZZ6DSTT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$33.613 per On Demand Windows with SQL Server Enterprise x1.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "33.6130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PNUBVW4CPC8XA46W" : { + "PNUBVW4CPC8XA46W.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PNUBVW4CPC8XA46W", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PNUBVW4CPC8XA46W.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PNUBVW4CPC8XA46W.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.010 per GB - regional data transfer - in/out/between EC2 AZs or using elastic IPs or ELB", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PS8T955EH7FMVZUG" : { + "PS8T955EH7FMVZUG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PS8T955EH7FMVZUG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PS8T955EH7FMVZUG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PS8T955EH7FMVZUG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.463 per Dedicated Usage Linux r3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HW84S2UTHHJ2R3UP" : { + "HW84S2UTHHJ2R3UP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HW84S2UTHHJ2R3UP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HW84S2UTHHJ2R3UP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HW84S2UTHHJ2R3UP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Std x1e.32xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "WAC5A9V7VNYMBPDR" : { + "WAC5A9V7VNYMBPDR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "WAC5A9V7VNYMBPDR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "WAC5A9V7VNYMBPDR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "WAC5A9V7VNYMBPDR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.904 per On Demand Windows with SQL Std i3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VBNNBXFKQ7Y722HK" : { + "VBNNBXFKQ7Y722HK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VBNNBXFKQ7Y722HK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VBNNBXFKQ7Y722HK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VBNNBXFKQ7Y722HK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL i2.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SG6RKNMKR45QPDJW" : { + "SG6RKNMKR45QPDJW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SG6RKNMKR45QPDJW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SG6RKNMKR45QPDJW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SG6RKNMKR45QPDJW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux i2.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "M27XKJYAEY2SPYUU" : { + "M27XKJYAEY2SPYUU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "M27XKJYAEY2SPYUU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "M27XKJYAEY2SPYUU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "M27XKJYAEY2SPYUU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.641 per Dedicated Usage Windows r3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YMR9864XJTF2JBSD" : { + "YMR9864XJTF2JBSD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YMR9864XJTF2JBSD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YMR9864XJTF2JBSD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YMR9864XJTF2JBSD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.020 per On Demand Windows t1.micro Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SE6PJRHUA462KM9T" : { + "SE6PJRHUA462KM9T.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SE6PJRHUA462KM9T", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SE6PJRHUA462KM9T.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SE6PJRHUA462KM9T.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per SUSE f1.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BWKDS9539ZWVQSVQ" : { + "BWKDS9539ZWVQSVQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BWKDS9539ZWVQSVQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BWKDS9539ZWVQSVQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BWKDS9539ZWVQSVQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.145 per On Demand RHEL c5.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "H48ZRU3X7FXGTGQM" : { + "H48ZRU3X7FXGTGQM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "H48ZRU3X7FXGTGQM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "H48ZRU3X7FXGTGQM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "H48ZRU3X7FXGTGQM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.105 per On Demand Linux c3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MNP9VWKTPKFPDQWK" : { + "MNP9VWKTPKFPDQWK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MNP9VWKTPKFPDQWK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MNP9VWKTPKFPDQWK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MNP9VWKTPKFPDQWK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.682 per On Demand R4 Dedicated Host Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.6820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CNBCS3T6ZYW47Y8W" : { + "CNBCS3T6ZYW47Y8W.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CNBCS3T6ZYW47Y8W", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CNBCS3T6ZYW47Y8W.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CNBCS3T6ZYW47Y8W.JRTCKXETXF.6YS6EN2CT7", + "description" : "$5.092 per On Demand SUSE i3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.0920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "R653AEFSC6MG23XK" : { + "R653AEFSC6MG23XK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "R653AEFSC6MG23XK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "R653AEFSC6MG23XK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "R653AEFSC6MG23XK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.146 per Dedicated Usage Windows BYOL r4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JF9QHW5XYZ9MK42R" : { + "JF9QHW5XYZ9MK42R.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JF9QHW5XYZ9MK42R", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JF9QHW5XYZ9MK42R.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JF9QHW5XYZ9MK42R.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.250 per On Demand SQL Std cr1.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.2500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "V7TY6J97RFNXWD8V" : { + "V7TY6J97RFNXWD8V.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "V7TY6J97RFNXWD8V", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "V7TY6J97RFNXWD8V.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "V7TY6J97RFNXWD8V.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.19 per On Demand RHEL p3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "62VQZ6W2YK7P5N9B" : { + "62VQZ6W2YK7P5N9B.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "62VQZ6W2YK7P5N9B", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "62VQZ6W2YK7P5N9B.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "62VQZ6W2YK7P5N9B.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.881 per On Demand Windows with SQL Web c4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "STRFBQS9QNUUSSCD" : { + "STRFBQS9QNUUSSCD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "STRFBQS9QNUUSSCD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "STRFBQS9QNUUSSCD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "STRFBQS9QNUUSSCD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.276 per Dedicated SQL Web c1.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "K5M8XEVN93GNAS5F" : { + "K5M8XEVN93GNAS5F.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "K5M8XEVN93GNAS5F", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "K5M8XEVN93GNAS5F.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "K5M8XEVN93GNAS5F.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 for 1125 Mbps per c5.2xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SG2J8TRQ57JQYCRA" : { + "SG2J8TRQ57JQYCRA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SG2J8TRQ57JQYCRA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SG2J8TRQ57JQYCRA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SG2J8TRQ57JQYCRA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.624 per On Demand Windows with SQL Web c4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "38G6R9HH2W74WD78" : { + "38G6R9HH2W74WD78.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "38G6R9HH2W74WD78", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "38G6R9HH2W74WD78.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "38G6R9HH2W74WD78.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.946 per On Demand Windows i2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FMN62RHYUNCFD57B" : { + "FMN62RHYUNCFD57B.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FMN62RHYUNCFD57B", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FMN62RHYUNCFD57B.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FMN62RHYUNCFD57B.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.0058 per On Demand Windows BYOL t2.nano Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0058000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PF95WR6DG26CSW2U" : { + "PF95WR6DG26CSW2U.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PF95WR6DG26CSW2U", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PF95WR6DG26CSW2U.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PF95WR6DG26CSW2U.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per GB Data Processed by NAT Gateways with Provisioned Bandwidth", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "332GEN3V5S3FTKZJ" : { + "332GEN3V5S3FTKZJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "332GEN3V5S3FTKZJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "332GEN3V5S3FTKZJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "332GEN3V5S3FTKZJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.403 per Dedicated Usage SUSE m3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PQPJ4CV7Q5CNYCFD" : { + "PQPJ4CV7Q5CNYCFD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PQPJ4CV7Q5CNYCFD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PQPJ4CV7Q5CNYCFD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PQPJ4CV7Q5CNYCFD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$15.84 per On Demand p2 Dedicated Host Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.8400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QYFXFTGTF3CQ3XKH" : { + "QYFXFTGTF3CQ3XKH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QYFXFTGTF3CQ3XKH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QYFXFTGTF3CQ3XKH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QYFXFTGTF3CQ3XKH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.0081 per On Demand Windows t2.nano Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0081000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4WKDEBCNFZKFEKEZ" : { + "4WKDEBCNFZKFEKEZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4WKDEBCNFZKFEKEZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4WKDEBCNFZKFEKEZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4WKDEBCNFZKFEKEZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.518 per Dedicated Usage Linux d2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VJAJFF3S48Y4ZK6H" : { + "VJAJFF3S48Y4ZK6H.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VJAJFF3S48Y4ZK6H", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VJAJFF3S48Y4ZK6H.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VJAJFF3S48Y4ZK6H.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.562 per Dedicated SUSE c3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KTX4HGW8878XMM7R" : { + "KTX4HGW8878XMM7R.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KTX4HGW8878XMM7R", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KTX4HGW8878XMM7R.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KTX4HGW8878XMM7R.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.116 per Dedicated Windows BYOL c3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7CHGSVMJ73UUBCGJ" : { + "7CHGSVMJ73UUBCGJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7CHGSVMJ73UUBCGJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7CHGSVMJ73UUBCGJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7CHGSVMJ73UUBCGJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0 for 1 Mbps per g3.8xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "D8RDVC722HKNR55G" : { + "D8RDVC722HKNR55G.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "D8RDVC722HKNR55G", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "D8RDVC722HKNR55G.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "D8RDVC722HKNR55G.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.065 per IOPS-month provisioned - US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "IOPS-Mo", + "pricePerUnit" : { + "USD" : "0.0650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "95B5M4Z5DF8F8PVC" : { + "95B5M4Z5DF8F8PVC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "95B5M4Z5DF8F8PVC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "95B5M4Z5DF8F8PVC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "95B5M4Z5DF8F8PVC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Server Enterprise i3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DUH49BWDXYJZKX4Z" : { + "DUH49BWDXYJZKX4Z.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DUH49BWDXYJZKX4Z", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DUH49BWDXYJZKX4Z.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DUH49BWDXYJZKX4Z.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.036 per Dedicated Windows BYOL d2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PSVDMQASMVK87NYB" : { + "PSVDMQASMVK87NYB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PSVDMQASMVK87NYB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PSVDMQASMVK87NYB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PSVDMQASMVK87NYB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$5.122 per Dedicated RHEL i3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.1220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BW6AXJST7E7P4GBA" : { + "BW6AXJST7E7P4GBA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BW6AXJST7E7P4GBA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BW6AXJST7E7P4GBA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BW6AXJST7E7P4GBA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$13.136 per Dedicated SUSE p3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.1360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AJVKWKD84J3BCR86" : { + "AJVKWKD84J3BCR86.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AJVKWKD84J3BCR86", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AJVKWKD84J3BCR86.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AJVKWKD84J3BCR86.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise m3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5BBSXXSX365HB5ME" : { + "5BBSXXSX365HB5ME.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5BBSXXSX365HB5ME", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5BBSXXSX365HB5ME.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5BBSXXSX365HB5ME.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Std i3.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "M3V33TUCANWGSDGH" : { + "M3V33TUCANWGSDGH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "M3V33TUCANWGSDGH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "M3V33TUCANWGSDGH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "M3V33TUCANWGSDGH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$15.152 per On Demand Windows with SQL Server Enterprise c3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.1520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "G9R9MZY25V8QGW6J" : { + "G9R9MZY25V8QGW6J.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "G9R9MZY25V8QGW6J", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "G9R9MZY25V8QGW6J.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "G9R9MZY25V8QGW6J.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.957 per On Demand SQL Web g2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7EN7RS9DVKDM4WXZ" : { + "7EN7RS9DVKDM4WXZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7EN7RS9DVKDM4WXZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7EN7RS9DVKDM4WXZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7EN7RS9DVKDM4WXZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.680 per Dedicated Linux c3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XCCBFY7VKRFREWQZ" : { + "XCCBFY7VKRFREWQZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XCCBFY7VKRFREWQZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XCCBFY7VKRFREWQZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XCCBFY7VKRFREWQZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.703 per On Demand SQL Web cg1.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "B99R452XS63YWAQ4" : { + "B99R452XS63YWAQ4.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "B99R452XS63YWAQ4", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "B99R452XS63YWAQ4.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "B99R452XS63YWAQ4.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.502 per On Demand I2 Dedicated Host Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "P2HREWU59F8JRCVB" : { + "P2HREWU59F8JRCVB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "P2HREWU59F8JRCVB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "P2HREWU59F8JRCVB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "P2HREWU59F8JRCVB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.386 per Dedicated Usage RHEL r4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.3860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YJQ6VUEJFXP5T23D" : { + "YJQ6VUEJFXP5T23D.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YJQ6VUEJFXP5T23D", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YJQ6VUEJFXP5T23D.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YJQ6VUEJFXP5T23D.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.52 per On Demand Windows with SQL Web r3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KR92PJED8B49G7EJ" : { + "KR92PJED8B49G7EJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KR92PJED8B49G7EJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KR92PJED8B49G7EJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KR92PJED8B49G7EJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.008 per Dedicated Windows c3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CAJNJQPQHHFV48TD" : { + "CAJNJQPQHHFV48TD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CAJNJQPQHHFV48TD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CAJNJQPQHHFV48TD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CAJNJQPQHHFV48TD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.844 per Dedicated Windows with SQL Std c5.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VA8Q43DVPX4YV6NG" : { + "VA8Q43DVPX4YV6NG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VA8Q43DVPX4YV6NG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VA8Q43DVPX4YV6NG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VA8Q43DVPX4YV6NG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.0232 per On Demand Linux t2.small Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RHSXCZ3G6S7CMC36" : { + "RHSXCZ3G6S7CMC36.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RHSXCZ3G6S7CMC36", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RHSXCZ3G6S7CMC36.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RHSXCZ3G6S7CMC36.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.299 per On Demand SUSE c4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CD2SCABAVGYKKGRQ" : { + "CD2SCABAVGYKKGRQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CD2SCABAVGYKKGRQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CD2SCABAVGYKKGRQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CD2SCABAVGYKKGRQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.200 per Dedicated SUSE cg1.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "24MXYDDDX5MFDX7E" : { + "24MXYDDDX5MFDX7E.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "24MXYDDDX5MFDX7E", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "24MXYDDDX5MFDX7E.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "24MXYDDDX5MFDX7E.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux c3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HESKMZUVTYYVD46R" : { + "HESKMZUVTYYVD46R.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HESKMZUVTYYVD46R", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HESKMZUVTYYVD46R.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HESKMZUVTYYVD46R.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.56 per Dedicated Linux g3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3TGYW692U4UVK8F4" : { + "3TGYW692U4UVK8F4.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3TGYW692U4UVK8F4", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3TGYW692U4UVK8F4.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3TGYW692U4UVK8F4.JRTCKXETXF.6YS6EN2CT7", + "description" : "$13.338 per Dedicated Usage Linux x1.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.3380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XBYJG3BUDTPN8NB9" : { + "XBYJG3BUDTPN8NB9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XBYJG3BUDTPN8NB9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XBYJG3BUDTPN8NB9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XBYJG3BUDTPN8NB9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.570 per On Demand Windows cc2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RA5N9YR5B2CYJ8U7" : { + "RA5N9YR5B2CYJ8U7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RA5N9YR5B2CYJ8U7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RA5N9YR5B2CYJ8U7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RA5N9YR5B2CYJ8U7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.36 per Dedicated Windows BYOL c5.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BPK6ZJ9DW5BR885X" : { + "BPK6ZJ9DW5BR885X.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BPK6ZJ9DW5BR885X", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BPK6ZJ9DW5BR885X.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BPK6ZJ9DW5BR885X.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.993 per On Demand SQL Web i2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "V8DBBCPMYRSW3JJY" : { + "V8DBBCPMYRSW3JJY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "V8DBBCPMYRSW3JJY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "V8DBBCPMYRSW3JJY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "V8DBBCPMYRSW3JJY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.665 per On Demand Windows BYOL r3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DFJU7MKX4S9ZU689" : { + "DFJU7MKX4S9ZU689.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DFJU7MKX4S9ZU689", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DFJU7MKX4S9ZU689.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DFJU7MKX4S9ZU689.JRTCKXETXF.6YS6EN2CT7", + "description" : "$26.818 per Dedicated RHEL x1e.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "26.8180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "M7CJ3KNC8SVT4Y6G" : { + "M7CJ3KNC8SVT4Y6G.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "M7CJ3KNC8SVT4Y6G", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "M7CJ3KNC8SVT4Y6G.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "M7CJ3KNC8SVT4Y6G.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows r3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "WZM4T9SQXM7SF7ZF" : { + "WZM4T9SQXM7SF7ZF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "WZM4T9SQXM7SF7ZF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "WZM4T9SQXM7SF7ZF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "WZM4T9SQXM7SF7ZF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.686 per On Demand Windows with SQL Web c5.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TUZ66NQWUUE3DQ3K" : { + "TUZ66NQWUUE3DQ3K.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TUZ66NQWUUE3DQ3K", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TUZ66NQWUUE3DQ3K.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TUZ66NQWUUE3DQ3K.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.05 for 1000 Mbps per r3.2xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "V56C6ZGR7E55RDBN" : { + "V56C6ZGR7E55RDBN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "V56C6ZGR7E55RDBN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "V56C6ZGR7E55RDBN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "V56C6ZGR7E55RDBN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.528 per On Demand RHEL c4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4NYBH5BWKQ2W5ZQ5" : { + "4NYBH5BWKQ2W5ZQ5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4NYBH5BWKQ2W5ZQ5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4NYBH5BWKQ2W5ZQ5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4NYBH5BWKQ2W5ZQ5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.067 per On Demand Windows BYOL m3.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MJFVKRE8CR2DYKWF" : { + "MJFVKRE8CR2DYKWF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MJFVKRE8CR2DYKWF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MJFVKRE8CR2DYKWF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MJFVKRE8CR2DYKWF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.986 per On Demand SQL Web i2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SURRSGSBEXVRX9RJ" : { + "SURRSGSBEXVRX9RJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SURRSGSBEXVRX9RJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SURRSGSBEXVRX9RJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SURRSGSBEXVRX9RJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.05 for 1000 Mbps per c1.xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NARXYND9H74FTC7A" : { + "NARXYND9H74FTC7A.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NARXYND9H74FTC7A", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NARXYND9H74FTC7A.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NARXYND9H74FTC7A.JRTCKXETXF.6YS6EN2CT7", + "description" : "$6.820 per On Demand Linux i2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.8200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XTNCFY9Y77D7WC9Y" : { + "XTNCFY9Y77D7WC9Y.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XTNCFY9Y77D7WC9Y", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XTNCFY9Y77D7WC9Y.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XTNCFY9Y77D7WC9Y.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.22 per Dedicated Linux m4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HJU8DJNB6BYWAMBG" : { + "HJU8DJNB6BYWAMBG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HJU8DJNB6BYWAMBG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HJU8DJNB6BYWAMBG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HJU8DJNB6BYWAMBG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.1 per On Demand Windows BYOL c4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SCM48G5B7MFU9DV3" : { + "SCM48G5B7MFU9DV3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SCM48G5B7MFU9DV3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SCM48G5B7MFU9DV3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SCM48G5B7MFU9DV3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per GB - US East (Northern Virginia) data transfer from AWS GovCloud (US)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3XZGHRZ6YE3HHENC" : { + "3XZGHRZ6YE3HHENC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3XZGHRZ6YE3HHENC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3XZGHRZ6YE3HHENC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3XZGHRZ6YE3HHENC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$47.936 per On Demand Windows with SQL Std x1e.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "47.9360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GNAPQZPVUSZ36KUU" : { + "GNAPQZPVUSZ36KUU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GNAPQZPVUSZ36KUU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GNAPQZPVUSZ36KUU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GNAPQZPVUSZ36KUU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.878 per On Demand Windows g2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GAAPZE44XKXJUATT" : { + "GAAPZE44XKXJUATT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GAAPZE44XKXJUATT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GAAPZE44XKXJUATT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GAAPZE44XKXJUATT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Linux i3.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YM5RNCFKGBB4T3QM" : { + "YM5RNCFKGBB4T3QM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YM5RNCFKGBB4T3QM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YM5RNCFKGBB4T3QM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YM5RNCFKGBB4T3QM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$5.992 per On Demand Windows with SQL Std x1e.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.9920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RSN2RZ8JSX98HFVM" : { + "RSN2RZ8JSX98HFVM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RSN2RZ8JSX98HFVM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RSN2RZ8JSX98HFVM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RSN2RZ8JSX98HFVM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.33 per On Demand Linux r3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TA6DVCUX4BZXUYXM" : { + "TA6DVCUX4BZXUYXM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TA6DVCUX4BZXUYXM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TA6DVCUX4BZXUYXM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TA6DVCUX4BZXUYXM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows r4.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KCYHZ77Q583MP6ET" : { + "KCYHZ77Q583MP6ET.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KCYHZ77Q583MP6ET", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KCYHZ77Q583MP6ET.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KCYHZ77Q583MP6ET.JRTCKXETXF.6YS6EN2CT7", + "description" : "$20.144 per On Demand Windows with SQL Server Enterprise x1e.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "20.1440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ARPJFM962U4P5HAT" : { + "ARPJFM962U4P5HAT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ARPJFM962U4P5HAT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ARPJFM962U4P5HAT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ARPJFM962U4P5HAT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.796 per On Demand Linux c4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4NZYXM2TKNFUFMFP" : { + "4NZYXM2TKNFUFMFP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4NZYXM2TKNFUFMFP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4NZYXM2TKNFUFMFP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4NZYXM2TKNFUFMFP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.385 per Dedicated Windows BYOL m1.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EEY67C7D4RJ9CHR3" : { + "EEY67C7D4RJ9CHR3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EEY67C7D4RJ9CHR3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EEY67C7D4RJ9CHR3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EEY67C7D4RJ9CHR3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.309 per Dedicated Usage Windows with SQL Web r4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8KGH3T8ZZRGT8BQF" : { + "8KGH3T8ZZRGT8BQF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8KGH3T8ZZRGT8BQF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8KGH3T8ZZRGT8BQF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8KGH3T8ZZRGT8BQF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.262 per On Demand SQL Std c3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TBEWTV892NWKQS69" : { + "TBEWTV892NWKQS69.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TBEWTV892NWKQS69", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TBEWTV892NWKQS69.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TBEWTV892NWKQS69.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.015 per Dedicated Usage Windows with SQL Std r3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "B49ZJ7RVTVWQUJ85" : { + "B49ZJ7RVTVWQUJ85.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "B49ZJ7RVTVWQUJ85", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "B49ZJ7RVTVWQUJ85.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "B49ZJ7RVTVWQUJ85.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows BYOL p3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YYT7SGG9WN5TE2P3" : { + "YYT7SGG9WN5TE2P3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YYT7SGG9WN5TE2P3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YYT7SGG9WN5TE2P3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YYT7SGG9WN5TE2P3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise d2.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QAMMQS9R5WC8PTN7" : { + "QAMMQS9R5WC8PTN7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QAMMQS9R5WC8PTN7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QAMMQS9R5WC8PTN7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QAMMQS9R5WC8PTN7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.936 per On Demand Windows i3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.9360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DJZE39FJBRGB2JNH" : { + "DJZE39FJBRGB2JNH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DJZE39FJBRGB2JNH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DJZE39FJBRGB2JNH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DJZE39FJBRGB2JNH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.688 per Dedicated SQL Std c3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.6880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ERPWM7KEFVQABEK6" : { + "ERPWM7KEFVQABEK6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ERPWM7KEFVQABEK6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ERPWM7KEFVQABEK6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ERPWM7KEFVQABEK6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std m3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7TCPFRQ8URKENK6F" : { + "7TCPFRQ8URKENK6F.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7TCPFRQ8URKENK6F", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7TCPFRQ8URKENK6F.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7TCPFRQ8URKENK6F.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.00 per On Demand Windows BYOL m4.10xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EYGMRBWWFGSQBSBZ" : { + "EYGMRBWWFGSQBSBZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EYGMRBWWFGSQBSBZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EYGMRBWWFGSQBSBZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EYGMRBWWFGSQBSBZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.350 per On Demand Linux m1.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZTJAGDVB3B33WX4G" : { + "ZTJAGDVB3B33WX4G.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZTJAGDVB3B33WX4G", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZTJAGDVB3B33WX4G.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZTJAGDVB3B33WX4G.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.245 per On Demand Windows with SQL Web c5.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KAH9XCCP3F226R57" : { + "KAH9XCCP3F226R57.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KAH9XCCP3F226R57", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KAH9XCCP3F226R57.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KAH9XCCP3F226R57.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.639 per Dedicated SUSE m2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6Z2HWHRBW2ZH7Z33" : { + "6Z2HWHRBW2ZH7Z33.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6Z2HWHRBW2ZH7Z33", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6Z2HWHRBW2ZH7Z33.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6Z2HWHRBW2ZH7Z33.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.403 per Dedicated RHEL i3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EKX4XJYWHK3C9ZDP" : { + "EKX4XJYWHK3C9ZDP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EKX4XJYWHK3C9ZDP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EKX4XJYWHK3C9ZDP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EKX4XJYWHK3C9ZDP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.202 per Dedicated Usage Windows c4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZDK96RPJGJ9MFZYU" : { + "ZDK96RPJGJ9MFZYU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZDK96RPJGJ9MFZYU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZDK96RPJGJ9MFZYU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZDK96RPJGJ9MFZYU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.992 per On Demand Linux i3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Q6R3PVH9UARHH828" : { + "Q6R3PVH9UARHH828.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Q6R3PVH9UARHH828", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Q6R3PVH9UARHH828.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Q6R3PVH9UARHH828.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.436 per Dedicated Usage SUSE x1.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9M4946BDX6NVDS6R" : { + "9M4946BDX6NVDS6R.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9M4946BDX6NVDS6R", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9M4946BDX6NVDS6R.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9M4946BDX6NVDS6R.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Server Enterprise c5.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RVFUWFSHJ76F8GFX" : { + "RVFUWFSHJ76F8GFX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RVFUWFSHJ76F8GFX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RVFUWFSHJ76F8GFX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RVFUWFSHJ76F8GFX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL g2.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NBP9U2SVG37VG5S9" : { + "NBP9U2SVG37VG5S9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NBP9U2SVG37VG5S9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NBP9U2SVG37VG5S9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NBP9U2SVG37VG5S9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.462 per Dedicated Linux c3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AW64VE5DA5MH4J22" : { + "AW64VE5DA5MH4J22.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AW64VE5DA5MH4J22", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AW64VE5DA5MH4J22.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AW64VE5DA5MH4J22.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.83 per Dedicated Usage Windows with SQL Server Enterprise c3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YS8Z2EM6AZQYWEY8" : { + "YS8Z2EM6AZQYWEY8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YS8Z2EM6AZQYWEY8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YS8Z2EM6AZQYWEY8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YS8Z2EM6AZQYWEY8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux c4.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6CB4U9QPSBPWD3PM" : { + "6CB4U9QPSBPWD3PM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6CB4U9QPSBPWD3PM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6CB4U9QPSBPWD3PM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6CB4U9QPSBPWD3PM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$14.672 per On Demand X1 Dedicated Host Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.6720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VWWDF9UY9DZAY2ZU" : { + "VWWDF9UY9DZAY2ZU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VWWDF9UY9DZAY2ZU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VWWDF9UY9DZAY2ZU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VWWDF9UY9DZAY2ZU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per SUSE x1e.32xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8XS2K65N47Y67NAF" : { + "8XS2K65N47Y67NAF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8XS2K65N47Y67NAF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8XS2K65N47Y67NAF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8XS2K65N47Y67NAF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.256 per Dedicated Usage Windows BYOL r4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "B8SBWVGGW2W6MUVG" : { + "B8SBWVGGW2W6MUVG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "B8SBWVGGW2W6MUVG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "B8SBWVGGW2W6MUVG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "B8SBWVGGW2W6MUVG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL c4.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KGZ5JY4FKTR75YN3" : { + "KGZ5JY4FKTR75YN3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KGZ5JY4FKTR75YN3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KGZ5JY4FKTR75YN3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KGZ5JY4FKTR75YN3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.14 per Dedicated Usage RHEL m3.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GJDDYRCUFGU7BA7D" : { + "GJDDYRCUFGU7BA7D.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GJDDYRCUFGU7BA7D", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GJDDYRCUFGU7BA7D.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GJDDYRCUFGU7BA7D.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per GB - US East (Northern Virginia) data transfer from EU (Germany)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "V7P8A57BFQNG5NH7" : { + "V7P8A57BFQNG5NH7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "V7P8A57BFQNG5NH7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "V7P8A57BFQNG5NH7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "V7P8A57BFQNG5NH7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows p2.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "M7W8H8ETF66PU3XA" : { + "M7W8H8ETF66PU3XA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "M7W8H8ETF66PU3XA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "M7W8H8ETF66PU3XA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "M7W8H8ETF66PU3XA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.356 per Dedicated Usage SUSE r4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.3560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "H82A2SJ6H4MSM5Q6" : { + "H82A2SJ6H4MSM5Q6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "H82A2SJ6H4MSM5Q6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "H82A2SJ6H4MSM5Q6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "H82A2SJ6H4MSM5Q6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.976 per On Demand Windows with SQL Std i3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BWPP6VPRP5NECMAA" : { + "BWPP6VPRP5NECMAA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BWPP6VPRP5NECMAA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BWPP6VPRP5NECMAA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BWPP6VPRP5NECMAA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.4712 per On Demand SUSE t2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4712000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FXDDR8N72HV8JWMF" : { + "FXDDR8N72HV8JWMF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FXDDR8N72HV8JWMF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FXDDR8N72HV8JWMF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FXDDR8N72HV8JWMF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$24.58 per On Demand SUSE p3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "24.5800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "K5TSDMZRHY2JN5F6" : { + "K5TSDMZRHY2JN5F6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "K5TSDMZRHY2JN5F6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "K5TSDMZRHY2JN5F6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "K5TSDMZRHY2JN5F6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows m3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "G6RMHZ78J5823WFT" : { + "G6RMHZ78J5823WFT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "G6RMHZ78J5823WFT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "G6RMHZ78J5823WFT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "G6RMHZ78J5823WFT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per SUSE i3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KGM6Q2CJFMEMKWQN" : { + "KGM6Q2CJFMEMKWQN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KGM6Q2CJFMEMKWQN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KGM6Q2CJFMEMKWQN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KGM6Q2CJFMEMKWQN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.0832 per On Demand RHEL t2.small Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3J2VT9RG6ADN3BVK" : { + "3J2VT9RG6ADN3BVK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3J2VT9RG6ADN3BVK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3J2VT9RG6ADN3BVK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3J2VT9RG6ADN3BVK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.876 per Dedicated Windows BYOL i2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "U9A5GD49U2QWSB8N" : { + "U9A5GD49U2QWSB8N.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "U9A5GD49U2QWSB8N", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "U9A5GD49U2QWSB8N.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "U9A5GD49U2QWSB8N.JRTCKXETXF.6YS6EN2CT7", + "description" : "$31.2 per Dedicated Usage Windows with SQL Server Enterprise r4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "31.2000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PNHWQABRRB4TBUYK" : { + "PNHWQABRRB4TBUYK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PNHWQABRRB4TBUYK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PNHWQABRRB4TBUYK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PNHWQABRRB4TBUYK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.525 per Dedicated Usage Windows with SQL Web r3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "USYT2WUJN73X3QSZ" : { + "USYT2WUJN73X3QSZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "USYT2WUJN73X3QSZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "USYT2WUJN73X3QSZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "USYT2WUJN73X3QSZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std c3.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VRTKB5F5VS4VGBMS" : { + "VRTKB5F5VS4VGBMS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VRTKB5F5VS4VGBMS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VRTKB5F5VS4VGBMS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VRTKB5F5VS4VGBMS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.80 per On Demand Windows BYOL m4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QA82VPGUZGU7KXVD" : { + "QA82VPGUZGU7KXVD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QA82VPGUZGU7KXVD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QA82VPGUZGU7KXVD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QA82VPGUZGU7KXVD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.16 per Dedicated SUSE c5.18xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9QAKNX2JRT8D5B76" : { + "9QAKNX2JRT8D5B76.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9QAKNX2JRT8D5B76", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9QAKNX2JRT8D5B76.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9QAKNX2JRT8D5B76.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL r3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TSDEZUXYZHBDK9YE" : { + "TSDEZUXYZHBDK9YE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TSDEZUXYZHBDK9YE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TSDEZUXYZHBDK9YE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TSDEZUXYZHBDK9YE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$26.688 per On Demand Windows BYOL x1e.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "26.6880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RHDHFX8Q8XYHVTC7" : { + "RHDHFX8Q8XYHVTC7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RHDHFX8Q8XYHVTC7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RHDHFX8Q8XYHVTC7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RHDHFX8Q8XYHVTC7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows BYOL x1e.32xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZKNV3YNZ7ETKWSWB" : { + "ZKNV3YNZ7ETKWSWB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZKNV3YNZ7ETKWSWB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZKNV3YNZ7ETKWSWB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZKNV3YNZ7ETKWSWB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.1208 per On Demand Windows t2.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1208000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4QZ87TMBCWWNPSG4" : { + "4QZ87TMBCWWNPSG4.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4QZ87TMBCWWNPSG4", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4QZ87TMBCWWNPSG4.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4QZ87TMBCWWNPSG4.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL p2.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3RUU5T58T7XAFAAF" : { + "3RUU5T58T7XAFAAF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3RUU5T58T7XAFAAF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3RUU5T58T7XAFAAF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3RUU5T58T7XAFAAF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.500 per On Demand Linux cr1.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4W9WDFJ5DZZ4Z4EJ" : { + "4W9WDFJ5DZZ4Z4EJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4W9WDFJ5DZZ4Z4EJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4W9WDFJ5DZZ4Z4EJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4W9WDFJ5DZZ4Z4EJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux g2.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KNZCWW7PZRYSMJ6S" : { + "KNZCWW7PZRYSMJ6S.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KNZCWW7PZRYSMJ6S", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KNZCWW7PZRYSMJ6S.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KNZCWW7PZRYSMJ6S.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.272 per Dedicated SUSE i3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "C3YH2XDN7TZMMA7P" : { + "C3YH2XDN7TZMMA7P.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "C3YH2XDN7TZMMA7P", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "C3YH2XDN7TZMMA7P.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "C3YH2XDN7TZMMA7P.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows BYOL i3.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "WE43EAHVMJU4ZVBT" : { + "WE43EAHVMJU4ZVBT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "WE43EAHVMJU4ZVBT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "WE43EAHVMJU4ZVBT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "WE43EAHVMJU4ZVBT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.007 per Dedicated Windows with SQL Std i3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KTQ9XV2KF6MVX7PJ" : { + "KTQ9XV2KF6MVX7PJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KTQ9XV2KF6MVX7PJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KTQ9XV2KF6MVX7PJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KTQ9XV2KF6MVX7PJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.24 per On Demand SUSE g3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "WSBQ3GQCNJDRXWWZ" : { + "WSBQ3GQCNJDRXWWZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "WSBQ3GQCNJDRXWWZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "WSBQ3GQCNJDRXWWZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "WSBQ3GQCNJDRXWWZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.585 per Dedicated Usage Linux r4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TDQNZBUHCYXTFDUS" : { + "TDQNZBUHCYXTFDUS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TDQNZBUHCYXTFDUS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TDQNZBUHCYXTFDUS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TDQNZBUHCYXTFDUS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.359 per Dedicated Usage RHEL m3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "N48UCGS5YF8G8CCW" : { + "N48UCGS5YF8G8CCW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "N48UCGS5YF8G8CCW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "N48UCGS5YF8G8CCW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "N48UCGS5YF8G8CCW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$8.05 per Dedicated Usage RHEL p2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.0500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8WMJSK8SESK57KMV" : { + "8WMJSK8SESK57KMV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8WMJSK8SESK57KMV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8WMJSK8SESK57KMV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8WMJSK8SESK57KMV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.504 per Dedicated Windows g3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XDG4DYSAQBVCPRJQ" : { + "XDG4DYSAQBVCPRJQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XDG4DYSAQBVCPRJQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XDG4DYSAQBVCPRJQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XDG4DYSAQBVCPRJQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.638 per Dedicated RHEL g3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "A8NG2GF96A6WJPJW" : { + "A8NG2GF96A6WJPJW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "A8NG2GF96A6WJPJW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "A8NG2GF96A6WJPJW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "A8NG2GF96A6WJPJW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.496 per On Demand Windows i3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KMP6N3WQVNDKNT4Q" : { + "KMP6N3WQVNDKNT4Q.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KMP6N3WQVNDKNT4Q", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KMP6N3WQVNDKNT4Q.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KMP6N3WQVNDKNT4Q.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux m4.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BZ7GFWTXT5ST7P4K" : { + "BZ7GFWTXT5ST7P4K.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BZ7GFWTXT5ST7P4K", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BZ7GFWTXT5ST7P4K.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BZ7GFWTXT5ST7P4K.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.17 per Dedicated Usage Windows BYOL r4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TN5GRYE6RHCET7M3" : { + "TN5GRYE6RHCET7M3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TN5GRYE6RHCET7M3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TN5GRYE6RHCET7M3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TN5GRYE6RHCET7M3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.668 per On Demand Linux x1e.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YA3C3GQF9SK75Y3V" : { + "YA3C3GQF9SK75Y3V.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YA3C3GQF9SK75Y3V", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YA3C3GQF9SK75Y3V.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YA3C3GQF9SK75Y3V.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web r4.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "42568WZBBYJBWCB3" : { + "42568WZBBYJBWCB3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "42568WZBBYJBWCB3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "42568WZBBYJBWCB3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "42568WZBBYJBWCB3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.536 per Dedicated Windows with SQL Std m4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AUEXKF3V3JXC7F22" : { + "AUEXKF3V3JXC7F22.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AUEXKF3V3JXC7F22", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AUEXKF3V3JXC7F22.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AUEXKF3V3JXC7F22.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.479 per Dedicated SQL Web m1.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VU398KD2CYRQCGPP" : { + "VU398KD2CYRQCGPP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VU398KD2CYRQCGPP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VU398KD2CYRQCGPP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VU398KD2CYRQCGPP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$20.292 per On Demand Windows with SQL Server Enterprise i2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "20.2920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TGH4GCMRQQNEDGCJ" : { + "TGH4GCMRQQNEDGCJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TGH4GCMRQQNEDGCJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TGH4GCMRQQNEDGCJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TGH4GCMRQQNEDGCJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$6.372 per Dedicated Windows c5.18xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.3720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Q49VKFFWC877GUFC" : { + "Q49VKFFWC877GUFC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Q49VKFFWC877GUFC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Q49VKFFWC877GUFC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Q49VKFFWC877GUFC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.384 per On Demand Windows m4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "WVXEZZPK3N9SFW9H" : { + "WVXEZZPK3N9SFW9H.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "WVXEZZPK3N9SFW9H", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "WVXEZZPK3N9SFW9H.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "WVXEZZPK3N9SFW9H.JRTCKXETXF.6YS6EN2CT7", + "description" : "$9.352 per Dedicated Windows with SQL Web x1e.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.3520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZTRYHCJDHUC65SBA" : { + "ZTRYHCJDHUC65SBA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZTRYHCJDHUC65SBA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZTRYHCJDHUC65SBA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZTRYHCJDHUC65SBA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.202 per Dedicated Windows m4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "B94BJ9BKFE3BAMJW" : { + "B94BJ9BKFE3BAMJW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "B94BJ9BKFE3BAMJW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "B94BJ9BKFE3BAMJW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "B94BJ9BKFE3BAMJW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.600 per Dedicated SUSE cr1.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "J5XXRJGFYZHJVQZJ" : { + "J5XXRJGFYZHJVQZJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "J5XXRJGFYZHJVQZJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "J5XXRJGFYZHJVQZJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "J5XXRJGFYZHJVQZJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.333 per On Demand Linux r3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SACDBTNC2KPVGJ8R" : { + "SACDBTNC2KPVGJ8R.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SACDBTNC2KPVGJ8R", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SACDBTNC2KPVGJ8R.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SACDBTNC2KPVGJ8R.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.02 per GB - EU (Germany) data transfer to US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SA3SBP2T8HCQWD6V" : { + "SA3SBP2T8HCQWD6V.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SA3SBP2T8HCQWD6V", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SA3SBP2T8HCQWD6V.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SA3SBP2T8HCQWD6V.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.186 per On Demand Windows c5.9xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "X7H5W7828HGJJPVY" : { + "X7H5W7828HGJJPVY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "X7H5W7828HGJJPVY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "X7H5W7828HGJJPVY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "X7H5W7828HGJJPVY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Web i3.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6S9PZ5AUPX5MV74N" : { + "6S9PZ5AUPX5MV74N.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6S9PZ5AUPX5MV74N", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6S9PZ5AUPX5MV74N.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6S9PZ5AUPX5MV74N.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.270 per On Demand RHEL c3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3753VU7A9Z8KFJ3N" : { + "3753VU7A9Z8KFJ3N.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3753VU7A9Z8KFJ3N", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3753VU7A9Z8KFJ3N.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3753VU7A9Z8KFJ3N.JRTCKXETXF.6YS6EN2CT7", + "description" : "$8.685 per On Demand Windows with SQL Web x1e.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.6850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XVYMD36W2Q986RBB" : { + "XVYMD36W2Q986RBB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XVYMD36W2Q986RBB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XVYMD36W2Q986RBB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XVYMD36W2Q986RBB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.18 per Dedicated Windows BYOL c5.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TS9C3QP757SZ6Y65" : { + "TS9C3QP757SZ6Y65.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TS9C3QP757SZ6Y65", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TS9C3QP757SZ6Y65.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TS9C3QP757SZ6Y65.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.9 per On Demand Windows with SQL Server Enterprise r4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8SB633RNEF7QTBRF" : { + "8SB633RNEF7QTBRF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8SB633RNEF7QTBRF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8SB633RNEF7QTBRF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8SB633RNEF7QTBRF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.851 per Dedicated SUSE i2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "G6V333UDG5YNV6DP" : { + "G6V333UDG5YNV6DP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "G6V333UDG5YNV6DP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "G6V333UDG5YNV6DP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "G6V333UDG5YNV6DP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.9 per On Demand Windows with SQL Server Enterprise m3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "N62CGU7P3H3TVWVG" : { + "N62CGU7P3H3TVWVG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "N62CGU7P3H3TVWVG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "N62CGU7P3H3TVWVG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "N62CGU7P3H3TVWVG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows x1e.32xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "64EUYDYDPNWKXQUX" : { + "64EUYDYDPNWKXQUX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "64EUYDYDPNWKXQUX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "64EUYDYDPNWKXQUX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "64EUYDYDPNWKXQUX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.600 per Dedicated Linux hs1.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.6000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "URVKD93M9ZPEGG7Z" : { + "URVKD93M9ZPEGG7Z.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "URVKD93M9ZPEGG7Z", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "URVKD93M9ZPEGG7Z.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "URVKD93M9ZPEGG7Z.JRTCKXETXF.6YS6EN2CT7", + "description" : "$13.474 per On Demand RHEL x1e.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.4740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "N8NT76W8DSVFQXZF" : { + "N8NT76W8DSVFQXZF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "N8NT76W8DSVFQXZF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "N8NT76W8DSVFQXZF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "N8NT76W8DSVFQXZF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$67.226 per Dedicated Usage Windows with SQL Server Enterprise x1.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "67.2260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "B2S7FU4V6J386XED" : { + "B2S7FU4V6J386XED.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "B2S7FU4V6J386XED", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "B2S7FU4V6J386XED.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "B2S7FU4V6J386XED.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 for 4000 Mbps per m4.10xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FD2MYJ67QXPYJGHF" : { + "FD2MYJ67QXPYJGHF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FD2MYJ67QXPYJGHF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FD2MYJ67QXPYJGHF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FD2MYJ67QXPYJGHF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.944 per On Demand Windows r3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MR5MW694BZTU3QD6" : { + "MR5MW694BZTU3QD6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MR5MW694BZTU3QD6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MR5MW694BZTU3QD6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MR5MW694BZTU3QD6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$34.28 per Dedicated Usage Windows with SQL Server Enterprise x1.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "34.2800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "A64H3T6VVR3C4SUA" : { + "A64H3T6VVR3C4SUA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "A64H3T6VVR3C4SUA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "A64H3T6VVR3C4SUA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "A64H3T6VVR3C4SUA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.5012 per On Demand RHEL t2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5012000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MHMTSP3T6M2NU383" : { + "MHMTSP3T6M2NU383.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MHMTSP3T6M2NU383", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MHMTSP3T6M2NU383.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MHMTSP3T6M2NU383.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows BYOL p3.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "S829SWJS7CDHWFZY" : { + "S829SWJS7CDHWFZY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "S829SWJS7CDHWFZY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "S829SWJS7CDHWFZY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "S829SWJS7CDHWFZY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$80.576 per On Demand Windows with SQL Server Enterprise x1e.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "80.5760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HNHRS6AFMYQWY26Y" : { + "HNHRS6AFMYQWY26Y.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HNHRS6AFMYQWY26Y", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HNHRS6AFMYQWY26Y.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HNHRS6AFMYQWY26Y.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows m4.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UFKUZG4FVYQCFGYG" : { + "UFKUZG4FVYQCFGYG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UFKUZG4FVYQCFGYG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UFKUZG4FVYQCFGYG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UFKUZG4FVYQCFGYG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows BYOL i3.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VHA3WETGYBUH3HCX" : { + "VHA3WETGYBUH3HCX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VHA3WETGYBUH3HCX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VHA3WETGYBUH3HCX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VHA3WETGYBUH3HCX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.463 per Dedicated Usage Windows BYOL r3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QRBKW8JQVD29EVBU" : { + "QRBKW8JQVD29EVBU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QRBKW8JQVD29EVBU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QRBKW8JQVD29EVBU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QRBKW8JQVD29EVBU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.171 per On Demand Windows with SQL Web x1e.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FDYDQJ8P2SCE3SD8" : { + "FDYDQJ8P2SCE3SD8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FDYDQJ8P2SCE3SD8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FDYDQJ8P2SCE3SD8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FDYDQJ8P2SCE3SD8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$5.203 per Dedicated Windows with SQL Server Enterprise x1e.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.2030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6V9UKEPJF6WP9M5K" : { + "6V9UKEPJF6WP9M5K.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6V9UKEPJF6WP9M5K", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6V9UKEPJF6WP9M5K.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6V9UKEPJF6WP9M5K.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.751 per Dedicated Linux i2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "C3VTCSXYNCNUKHPS" : { + "C3VTCSXYNCNUKHPS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "C3VTCSXYNCNUKHPS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "C3VTCSXYNCNUKHPS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "C3VTCSXYNCNUKHPS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.818 per Dedicated SQL Std m1.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8D8WEXZEQ37HKFNV" : { + "8D8WEXZEQ37HKFNV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8D8WEXZEQ37HKFNV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8D8WEXZEQ37HKFNV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8D8WEXZEQ37HKFNV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$21.88 per Dedicated Usage Windows with SQL Web x1.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "21.8800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XEM85KR3292VMY35" : { + "XEM85KR3292VMY35.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XEM85KR3292VMY35", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XEM85KR3292VMY35.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XEM85KR3292VMY35.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.598 per On Demand Windows m1.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9W95WEA2F9V4BVUJ" : { + "9W95WEA2F9V4BVUJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9W95WEA2F9V4BVUJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9W95WEA2F9V4BVUJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9W95WEA2F9V4BVUJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 for 750 Mbps per m4.xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JXT6YFU3KSU3C7ZV" : { + "JXT6YFU3KSU3C7ZV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JXT6YFU3KSU3C7ZV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JXT6YFU3KSU3C7ZV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JXT6YFU3KSU3C7ZV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.561 per On Demand SQL Std c3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7U7TWP44UP36AT3R" : { + "7U7TWP44UP36AT3R.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7U7TWP44UP36AT3R", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7U7TWP44UP36AT3R.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7U7TWP44UP36AT3R.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.05 per GB-Month of snapshot data stored - US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB-Mo", + "pricePerUnit" : { + "USD" : "0.0500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZMGP8SNR2VJEV8FJ" : { + "ZMGP8SNR2VJEV8FJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZMGP8SNR2VJEV8FJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZMGP8SNR2VJEV8FJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZMGP8SNR2VJEV8FJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$15.813 per Dedicated Usage Windows with SQL Server Enterprise r4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.8130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EJXKAGBARC5X44CV" : { + "EJXKAGBARC5X44CV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EJXKAGBARC5X44CV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EJXKAGBARC5X44CV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EJXKAGBARC5X44CV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.598 per Dedicated Windows with SQL Std c5.9xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Y4FKSUJMDV8DEFTS" : { + "Y4FKSUJMDV8DEFTS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Y4FKSUJMDV8DEFTS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Y4FKSUJMDV8DEFTS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Y4FKSUJMDV8DEFTS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.187 per On Demand SUSE m1.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9N4WQNFE4TP78PQF" : { + "9N4WQNFE4TP78PQF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9N4WQNFE4TP78PQF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9N4WQNFE4TP78PQF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9N4WQNFE4TP78PQF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.364 per Dedicated Usage Windows with SQL Web c4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "R6ZE4UJ2C8B36SBY" : { + "R6ZE4UJ2C8B36SBY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "R6ZE4UJ2C8B36SBY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "R6ZE4UJ2C8B36SBY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "R6ZE4UJ2C8B36SBY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.124 per On Demand SQL Std c1.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZRAA23N7FYQDZBNU" : { + "ZRAA23N7FYQDZBNU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZRAA23N7FYQDZBNU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZRAA23N7FYQDZBNU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZRAA23N7FYQDZBNU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$14.4 per On Demand Windows BYOL p2.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.4000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AJUJW25DAVRG4WEY" : { + "AJUJW25DAVRG4WEY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AJUJW25DAVRG4WEY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AJUJW25DAVRG4WEY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AJUJW25DAVRG4WEY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.231 per Dedicated Linux c3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EE7BATB9AU6WJQPT" : { + "EE7BATB9AU6WJQPT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EE7BATB9AU6WJQPT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EE7BATB9AU6WJQPT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EE7BATB9AU6WJQPT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$30.144 per On Demand Windows with SQL Server Enterprise m4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "30.1440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "864JFB48Z5WZN64X" : { + "864JFB48Z5WZN64X.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "864JFB48Z5WZN64X", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "864JFB48Z5WZN64X.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "864JFB48Z5WZN64X.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.372 per On Demand RHEL i3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TE2QPK3WJ4MBEASP" : { + "TE2QPK3WJ4MBEASP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TE2QPK3WJ4MBEASP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TE2QPK3WJ4MBEASP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TE2QPK3WJ4MBEASP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$14.808 per Dedicated RHEL x1e.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.8080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5E9TGWTBKMHMQWQ2" : { + "5E9TGWTBKMHMQWQ2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5E9TGWTBKMHMQWQ2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5E9TGWTBKMHMQWQ2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5E9TGWTBKMHMQWQ2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE c3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GVHWDK4ADFF5B3WR" : { + "GVHWDK4ADFF5B3WR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GVHWDK4ADFF5B3WR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GVHWDK4ADFF5B3WR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GVHWDK4ADFF5B3WR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.630 per On Demand RHEL cr1.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CF7GPWXNXHE4VJQX" : { + "CF7GPWXNXHE4VJQX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CF7GPWXNXHE4VJQX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CF7GPWXNXHE4VJQX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CF7GPWXNXHE4VJQX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows c4.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "G92C9VZA7CRCHVRC" : { + "G92C9VZA7CRCHVRC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "G92C9VZA7CRCHVRC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "G92C9VZA7CRCHVRC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "G92C9VZA7CRCHVRC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise c4.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KAMVJY7RYQ6K3M4A" : { + "KAMVJY7RYQ6K3M4A.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KAMVJY7RYQ6K3M4A", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KAMVJY7RYQ6K3M4A.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KAMVJY7RYQ6K3M4A.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux m3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "G8C4DK367XUB4P7B" : { + "G8C4DK367XUB4P7B.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "G8C4DK367XUB4P7B", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "G8C4DK367XUB4P7B.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "G8C4DK367XUB4P7B.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.9566 per Dedicated Windows with SQL Std r4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9566000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "USQAR36DHU6YZUCD" : { + "USQAR36DHU6YZUCD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "USQAR36DHU6YZUCD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "USQAR36DHU6YZUCD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "USQAR36DHU6YZUCD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.876 per Dedicated Usage Windows BYOL c4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YW5M3UMGGY95EQKF" : { + "YW5M3UMGGY95EQKF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YW5M3UMGGY95EQKF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YW5M3UMGGY95EQKF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YW5M3UMGGY95EQKF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux m3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "A28M9STN7TTR5DC8" : { + "A28M9STN7TTR5DC8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "A28M9STN7TTR5DC8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "A28M9STN7TTR5DC8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "A28M9STN7TTR5DC8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows BYOL x1e.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XJZ34YAGC7UHGRHJ" : { + "XJZ34YAGC7UHGRHJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XJZ34YAGC7UHGRHJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XJZ34YAGC7UHGRHJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XJZ34YAGC7UHGRHJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL m4.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3HSGZRDZXZZHNPJC" : { + "3HSGZRDZXZZHNPJC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3HSGZRDZXZZHNPJC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3HSGZRDZXZZHNPJC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3HSGZRDZXZZHNPJC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web c3.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Q7KRGX9524EXCE9T" : { + "Q7KRGX9524EXCE9T.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Q7KRGX9524EXCE9T", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Q7KRGX9524EXCE9T.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Q7KRGX9524EXCE9T.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.876 per On Demand Windows g3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AAWCKPS6CUV38XXA" : { + "AAWCKPS6CUV38XXA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AAWCKPS6CUV38XXA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AAWCKPS6CUV38XXA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AAWCKPS6CUV38XXA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.3 per Dedicated Usage RHEL r4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "M8D9MPXPJGZE2NYV" : { + "M8D9MPXPJGZE2NYV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "M8D9MPXPJGZE2NYV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "M8D9MPXPJGZE2NYV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "M8D9MPXPJGZE2NYV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.539 per Dedicated Linux m2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "A2QSKG5CZVECRMUE" : { + "A2QSKG5CZVECRMUE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "A2QSKG5CZVECRMUE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "A2QSKG5CZVECRMUE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "A2QSKG5CZVECRMUE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.616 per Dedicated Windows m4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XKREJETCK4Q363EE" : { + "XKREJETCK4Q363EE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XKREJETCK4Q363EE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XKREJETCK4Q363EE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XKREJETCK4Q363EE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.378 per On Demand Windows with SQL Std r3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NQZBX7B4JXMHGKCW" : { + "NQZBX7B4JXMHGKCW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NQZBX7B4JXMHGKCW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NQZBX7B4JXMHGKCW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NQZBX7B4JXMHGKCW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.38 per On Demand SUSE g3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UY5E8NPU7EQX4UJD" : { + "UY5E8NPU7EQX4UJD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UY5E8NPU7EQX4UJD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UY5E8NPU7EQX4UJD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UY5E8NPU7EQX4UJD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std c4.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VGM6EF7PXMSGNFP9" : { + "VGM6EF7PXMSGNFP9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VGM6EF7PXMSGNFP9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VGM6EF7PXMSGNFP9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VGM6EF7PXMSGNFP9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web m4.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EMT6SZKEDQPJRUQQ" : { + "EMT6SZKEDQPJRUQQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EMT6SZKEDQPJRUQQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EMT6SZKEDQPJRUQQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EMT6SZKEDQPJRUQQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.601 per On Demand Windows d2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "E52BDE5FYKFFMM6R" : { + "E52BDE5FYKFFMM6R.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "E52BDE5FYKFFMM6R", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "E52BDE5FYKFFMM6R.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "E52BDE5FYKFFMM6R.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux x1.32xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "N58RGQJW3EFKG6Q2" : { + "N58RGQJW3EFKG6Q2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "N58RGQJW3EFKG6Q2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "N58RGQJW3EFKG6Q2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "N58RGQJW3EFKG6Q2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.006 per Dedicated RHEL i2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CHYHEFYUM8H6G965" : { + "CHYHEFYUM8H6G965.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CHYHEFYUM8H6G965", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CHYHEFYUM8H6G965.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CHYHEFYUM8H6G965.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.668 per On Demand Windows BYOL x1e.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EK8RQK3XNDHYVHY2" : { + "EK8RQK3XNDHYVHY2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EK8RQK3XNDHYVHY2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EK8RQK3XNDHYVHY2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EK8RQK3XNDHYVHY2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.13 per Dedicated RHEL m4.10xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "A5GXEZ47W9A2SVY8" : { + "A5GXEZ47W9A2SVY8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "A5GXEZ47W9A2SVY8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "A5GXEZ47W9A2SVY8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "A5GXEZ47W9A2SVY8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.898 per Dedicated Windows with SQL Web m4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5WSKPWBZAEKKQ6RB" : { + "5WSKPWBZAEKKQ6RB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5WSKPWBZAEKKQ6RB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5WSKPWBZAEKKQ6RB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5WSKPWBZAEKKQ6RB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.43 per On Demand SUSE r3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QQ6P3Q6HJP7W7RYN" : { + "QQ6P3Q6HJP7W7RYN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QQ6P3Q6HJP7W7RYN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QQ6P3Q6HJP7W7RYN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QQ6P3Q6HJP7W7RYN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL r3.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4YPVS7TMJF4ESQ24" : { + "4YPVS7TMJF4ESQ24.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4YPVS7TMJF4ESQ24", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4YPVS7TMJF4ESQ24.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4YPVS7TMJF4ESQ24.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Web c5.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PSQDNQXHAZDS7XT9" : { + "PSQDNQXHAZDS7XT9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PSQDNQXHAZDS7XT9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PSQDNQXHAZDS7XT9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PSQDNQXHAZDS7XT9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE g2.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9X8YQSJK3UTFW3TV" : { + "9X8YQSJK3UTFW3TV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9X8YQSJK3UTFW3TV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9X8YQSJK3UTFW3TV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9X8YQSJK3UTFW3TV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$10.28 per Dedicated Usage Windows x1.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.2800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JC8C66GWV5KYJPAD" : { + "JC8C66GWV5KYJPAD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JC8C66GWV5KYJPAD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JC8C66GWV5KYJPAD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JC8C66GWV5KYJPAD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.891 per On Demand Windows i2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "S3H5EEV3EEF3YHPE" : { + "S3H5EEV3EEF3YHPE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "S3H5EEV3EEF3YHPE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "S3H5EEV3EEF3YHPE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "S3H5EEV3EEF3YHPE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.195 per Dedicated Windows with SQL Web i3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DS6NATW2S9Q4UKZS" : { + "DS6NATW2S9Q4UKZS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DS6NATW2S9Q4UKZS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DS6NATW2S9Q4UKZS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DS6NATW2S9Q4UKZS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.190 per On Demand RHEL c1.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Z926BDVSB7Q736SZ" : { + "Z926BDVSB7Q736SZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Z926BDVSB7Q736SZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Z926BDVSB7Q736SZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Z926BDVSB7Q736SZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.992 per Dedicated Windows BYOL i3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MK3NYJPZ3RCV7QNY" : { + "MK3NYJPZ3RCV7QNY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MK3NYJPZ3RCV7QNY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MK3NYJPZ3RCV7QNY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MK3NYJPZ3RCV7QNY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Web c5.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4C7N4APU9GEUZ6H6" : { + "4C7N4APU9GEUZ6H6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4C7N4APU9GEUZ6H6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4C7N4APU9GEUZ6H6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4C7N4APU9GEUZ6H6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.1 per On Demand Linux c4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Y8VTXM3N25VB943C" : { + "Y8VTXM3N25VB943C.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Y8VTXM3N25VB943C", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Y8VTXM3N25VB943C.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Y8VTXM3N25VB943C.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.563 per Dedicated Usage SUSE r3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RJJNTY6VUT5R56NM" : { + "RJJNTY6VUT5R56NM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RJJNTY6VUT5R56NM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RJJNTY6VUT5R56NM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RJJNTY6VUT5R56NM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 for 5 Gbps per p2.8xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6FNWHYYYSDGVQ87S" : { + "6FNWHYYYSDGVQ87S.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6FNWHYYYSDGVQ87S", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6FNWHYYYSDGVQ87S.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6FNWHYYYSDGVQ87S.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.843 per On Demand Windows with SQL Web c5.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DPCWVHKZ3AJBNM43" : { + "DPCWVHKZ3AJBNM43.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DPCWVHKZ3AJBNM43", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DPCWVHKZ3AJBNM43.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DPCWVHKZ3AJBNM43.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.1856 per On Demand Linux t2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1856000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9Z79M3D9R4KBF3U2" : { + "9Z79M3D9R4KBF3U2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9Z79M3D9R4KBF3U2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9Z79M3D9R4KBF3U2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9Z79M3D9R4KBF3U2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.27 per On Demand RHEL g3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3SNVUNEGB8BAMWDP" : { + "3SNVUNEGB8BAMWDP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3SNVUNEGB8BAMWDP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3SNVUNEGB8BAMWDP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3SNVUNEGB8BAMWDP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.938 per Dedicated Linux i2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GU6HKEMK86X9HZKT" : { + "GU6HKEMK86X9HZKT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GU6HKEMK86X9HZKT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GU6HKEMK86X9HZKT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GU6HKEMK86X9HZKT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.84 per Dedicated Usage Windows with SQL Web r4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FZFXDFC28N97MJBH" : { + "FZFXDFC28N97MJBH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FZFXDFC28N97MJBH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FZFXDFC28N97MJBH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FZFXDFC28N97MJBH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.685 per Dedicated Usage SUSE r4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "M3HZTEQVGDNSBKRF" : { + "M3HZTEQVGDNSBKRF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "M3HZTEQVGDNSBKRF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "M3HZTEQVGDNSBKRF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "M3HZTEQVGDNSBKRF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.025 for 500 Mbps per m1.large instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HJA24B3YK2EKQPEQ" : { + "HJA24B3YK2EKQPEQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HJA24B3YK2EKQPEQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HJA24B3YK2EKQPEQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HJA24B3YK2EKQPEQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Server Enterprise c5.18xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6SWWQPFNK6JG5AHS" : { + "6SWWQPFNK6JG5AHS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6SWWQPFNK6JG5AHS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6SWWQPFNK6JG5AHS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6SWWQPFNK6JG5AHS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.785 per Dedicated Usage Windows with SQL Std m3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YZ89W4FUGD48VKWX" : { + "YZ89W4FUGD48VKWX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YZ89W4FUGD48VKWX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YZ89W4FUGD48VKWX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YZ89W4FUGD48VKWX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.05 for 1000 Mbps per i2.2xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XUVPNXCYKWF33FBW" : { + "XUVPNXCYKWF33FBW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XUVPNXCYKWF33FBW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XUVPNXCYKWF33FBW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XUVPNXCYKWF33FBW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows BYOL c5.9xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CFPKDYHZCTKMWEKC" : { + "CFPKDYHZCTKMWEKC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CFPKDYHZCTKMWEKC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CFPKDYHZCTKMWEKC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CFPKDYHZCTKMWEKC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.721 per On Demand RHEL c4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5XD4G79GQT4HJ9K2" : { + "5XD4G79GQT4HJ9K2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5XD4G79GQT4HJ9K2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5XD4G79GQT4HJ9K2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5XD4G79GQT4HJ9K2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$5.092 per Dedicated SUSE i3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.0920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6555VGRWG4AP5HWV" : { + "6555VGRWG4AP5HWV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6555VGRWG4AP5HWV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6555VGRWG4AP5HWV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6555VGRWG4AP5HWV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.16 per On Demand RHEL m4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KBNWDNPNYX37C8BM" : { + "KBNWDNPNYX37C8BM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KBNWDNPNYX37C8BM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KBNWDNPNYX37C8BM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KBNWDNPNYX37C8BM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.354 per On Demand Windows c5.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CEN6ESY9DJ423GZM" : { + "CEN6ESY9DJ423GZM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CEN6ESY9DJ423GZM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CEN6ESY9DJ423GZM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CEN6ESY9DJ423GZM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std i2.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "T66YUXKX79359UWK" : { + "T66YUXKX79359UWK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "T66YUXKX79359UWK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "T66YUXKX79359UWK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "T66YUXKX79359UWK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.245 per On Demand Windows BYOL m2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AJPCC5PE24CKEBWW" : { + "AJPCC5PE24CKEBWW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AJPCC5PE24CKEBWW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AJPCC5PE24CKEBWW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AJPCC5PE24CKEBWW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.518 per Dedicated Windows BYOL d2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Q2WXMV82X42S7KB7" : { + "Q2WXMV82X42S7KB7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Q2WXMV82X42S7KB7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Q2WXMV82X42S7KB7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Q2WXMV82X42S7KB7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux d2.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CZ9BHU45SGEFD4MA" : { + "CZ9BHU45SGEFD4MA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CZ9BHU45SGEFD4MA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CZ9BHU45SGEFD4MA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CZ9BHU45SGEFD4MA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$6.144 per On Demand Windows m4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.1440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RT74PXCRDW3YR4VQ" : { + "RT74PXCRDW3YR4VQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RT74PXCRDW3YR4VQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RT74PXCRDW3YR4VQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RT74PXCRDW3YR4VQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows x1e.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZWRX2ZR95V6ZB42V" : { + "ZWRX2ZR95V6ZB42V.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZWRX2ZR95V6ZB42V", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZWRX2ZR95V6ZB42V.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZWRX2ZR95V6ZB42V.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.612 per Dedicated Usage Windows with SQL Server Enterprise c4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.6120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YAJW34A4DJF7KS9G" : { + "YAJW34A4DJF7KS9G.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YAJW34A4DJF7KS9G", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YAJW34A4DJF7KS9G.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YAJW34A4DJF7KS9G.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.230 per On Demand SQL Std i2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BKPRPT7V22GBZ4Z2" : { + "BKPRPT7V22GBZ4Z2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BKPRPT7V22GBZ4Z2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BKPRPT7V22GBZ4Z2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BKPRPT7V22GBZ4Z2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std c4.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "WHSMTPG2EQZT7C6G" : { + "WHSMTPG2EQZT7C6G.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "WHSMTPG2EQZT7C6G", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "WHSMTPG2EQZT7C6G.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "WHSMTPG2EQZT7C6G.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.054 per Dedicated RHEL c3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PH8HDZXB5PCGB9JY" : { + "PH8HDZXB5PCGB9JY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PH8HDZXB5PCGB9JY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PH8HDZXB5PCGB9JY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PH8HDZXB5PCGB9JY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.77 per Dedicated SUSE x1e.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "M585C29WB3HB866B" : { + "M585C29WB3HB866B.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "M585C29WB3HB866B", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "M585C29WB3HB866B.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "M585C29WB3HB866B.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.339 per Dedicated Linux x1e.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "R785FVDGR7QSRRKB" : { + "R785FVDGR7QSRRKB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "R785FVDGR7QSRRKB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "R785FVDGR7QSRRKB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "R785FVDGR7QSRRKB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$16.747 per On Demand Windows with SQL Server Enterprise c4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.7470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "B29HW84ZHNQH6MAR" : { + "B29HW84ZHNQH6MAR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "B29HW84ZHNQH6MAR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "B29HW84ZHNQH6MAR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "B29HW84ZHNQH6MAR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$20.292 per Dedicated Usage Windows with SQL Server Enterprise i2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "20.2920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SCK4YS7YAEFFVGNK" : { + "SCK4YS7YAEFFVGNK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SCK4YS7YAEFFVGNK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SCK4YS7YAEFFVGNK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SCK4YS7YAEFFVGNK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$13.824 per On Demand Windows with SQL Std m4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.8240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8QJEY5Y228R67A3N" : { + "8QJEY5Y228R67A3N.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8QJEY5Y228R67A3N", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8QJEY5Y228R67A3N.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8QJEY5Y228R67A3N.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.782 per Dedicated Windows with SQL Web i3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.7820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VNYB2GETE99SPEJJ" : { + "VNYB2GETE99SPEJJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VNYB2GETE99SPEJJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VNYB2GETE99SPEJJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VNYB2GETE99SPEJJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.848 per On Demand C3 Dedicated Host Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NWNWWPNWF6HRM3M4" : { + "NWNWWPNWF6HRM3M4.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NWNWWPNWF6HRM3M4", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NWNWWPNWF6HRM3M4.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NWNWWPNWF6HRM3M4.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std m4.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9SQP8ZU4V2K9UGTJ" : { + "9SQP8ZU4V2K9UGTJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9SQP8ZU4V2K9UGTJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9SQP8ZU4V2K9UGTJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9SQP8ZU4V2K9UGTJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.532 per On Demand Windows BYOL r4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HUCWZ5CCHQU7EEQU" : { + "HUCWZ5CCHQU7EEQU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HUCWZ5CCHQU7EEQU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HUCWZ5CCHQU7EEQU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HUCWZ5CCHQU7EEQU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.250 per Dedicated SQL Std cr1.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.2500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "33Y5KYZ4JQEF6J66" : { + "33Y5KYZ4JQEF6J66.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "33Y5KYZ4JQEF6J66", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "33Y5KYZ4JQEF6J66.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "33Y5KYZ4JQEF6J66.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per GB - US East (Northern Virginia) data transfer from US West (Oregon)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SWJUJ3JPRMDJSCZU" : { + "SWJUJ3JPRMDJSCZU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SWJUJ3JPRMDJSCZU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SWJUJ3JPRMDJSCZU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SWJUJ3JPRMDJSCZU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Linux x1e.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "D6XVUTGMGFQKNVF4" : { + "D6XVUTGMGFQKNVF4.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "D6XVUTGMGFQKNVF4", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "D6XVUTGMGFQKNVF4.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "D6XVUTGMGFQKNVF4.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL m4.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CA5RFBSY7MFBKHTZ" : { + "CA5RFBSY7MFBKHTZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CA5RFBSY7MFBKHTZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CA5RFBSY7MFBKHTZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CA5RFBSY7MFBKHTZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per GB - US East (Northern Virginia) data transfer from Asia Pacific (Mumbai)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RKV52SHBEQCC45W3" : { + "RKV52SHBEQCC45W3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RKV52SHBEQCC45W3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RKV52SHBEQCC45W3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RKV52SHBEQCC45W3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows m4.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "A3AVPUXAD6N4JXA9" : { + "A3AVPUXAD6N4JXA9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "A3AVPUXAD6N4JXA9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "A3AVPUXAD6N4JXA9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "A3AVPUXAD6N4JXA9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.017 per Dedicated SUSE x1e.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8D2QYF9WYWYEREWG" : { + "8D2QYF9WYWYEREWG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8D2QYF9WYWYEREWG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8D2QYF9WYWYEREWG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8D2QYF9WYWYEREWG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.16 per On Demand RHEL c4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9DFRVEWZ38WMEJVB" : { + "9DFRVEWZ38WMEJVB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9DFRVEWZ38WMEJVB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9DFRVEWZ38WMEJVB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9DFRVEWZ38WMEJVB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.521 per On Demand Windows with SQL Web r4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "648A8SVAZE8FVHRE" : { + "648A8SVAZE8FVHRE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "648A8SVAZE8FVHRE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "648A8SVAZE8FVHRE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "648A8SVAZE8FVHRE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux r4.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "F3MDY4T6HP6MHSY3" : { + "F3MDY4T6HP6MHSY3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "F3MDY4T6HP6MHSY3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "F3MDY4T6HP6MHSY3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "F3MDY4T6HP6MHSY3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per SUSE i3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "427555ENEC4F3EDG" : { + "427555ENEC4F3EDG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "427555ENEC4F3EDG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "427555ENEC4F3EDG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "427555ENEC4F3EDG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.782 per Dedicated Windows i2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.7820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Z2FWTR8FP7YR4UXY" : { + "Z2FWTR8FP7YR4UXY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Z2FWTR8FP7YR4UXY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Z2FWTR8FP7YR4UXY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Z2FWTR8FP7YR4UXY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$6.072 per On Demand D2 Dedicated Host Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.0720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "86FRG8MH7C6B944J" : { + "86FRG8MH7C6B944J.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "86FRG8MH7C6B944J", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "86FRG8MH7C6B944J.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "86FRG8MH7C6B944J.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Web i3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RATRP8MVJ9EVX6N7" : { + "RATRP8MVJ9EVX6N7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RATRP8MVJ9EVX6N7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RATRP8MVJ9EVX6N7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RATRP8MVJ9EVX6N7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL i2.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Y6NKND98FNQAQ8K9" : { + "Y6NKND98FNQAQ8K9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Y6NKND98FNQAQ8K9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Y6NKND98FNQAQ8K9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Y6NKND98FNQAQ8K9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web m3.medium Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DSG34N2933CDGRJJ" : { + "DSG34N2933CDGRJJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DSG34N2933CDGRJJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DSG34N2933CDGRJJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DSG34N2933CDGRJJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux c4.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YKQEND52YE639ZHB" : { + "YKQEND52YE639ZHB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YKQEND52YE639ZHB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YKQEND52YE639ZHB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YKQEND52YE639ZHB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.256 per Dedicated Usage Linux r4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "68TFKFM9J33ZZB97" : { + "68TFKFM9J33ZZB97.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "68TFKFM9J33ZZB97", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "68TFKFM9J33ZZB97.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "68TFKFM9J33ZZB97.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.8 per On Demand Windows r4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MHX8TSHV6Z45N5KU" : { + "MHX8TSHV6Z45N5KU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MHX8TSHV6Z45N5KU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MHX8TSHV6Z45N5KU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MHX8TSHV6Z45N5KU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.759 per Dedicated Windows BYOL d2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MDG4ZJ269VPQ6XSV" : { + "MDG4ZJ269VPQ6XSV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MDG4ZJ269VPQ6XSV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MDG4ZJ269VPQ6XSV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MDG4ZJ269VPQ6XSV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise g2.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UDYTM9QGGMXVAR7Y" : { + "UDYTM9QGGMXVAR7Y.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UDYTM9QGGMXVAR7Y", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UDYTM9QGGMXVAR7Y.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UDYTM9QGGMXVAR7Y.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows BYOL c5.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "WAWEH2Q4B3BTK68V" : { + "WAWEH2Q4B3BTK68V.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "WAWEH2Q4B3BTK68V", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "WAWEH2Q4B3BTK68V.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "WAWEH2Q4B3BTK68V.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.2 per On Demand Linux p2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.2000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5B3GT4NNY7ZCKUY7" : { + "5B3GT4NNY7ZCKUY7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5B3GT4NNY7ZCKUY7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5B3GT4NNY7ZCKUY7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5B3GT4NNY7ZCKUY7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$34.74 per On Demand Windows with SQL Web x1e.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "34.7400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "B6RS3QA3WVNWUFKM" : { + "B6RS3QA3WVNWUFKM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "B6RS3QA3WVNWUFKM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "B6RS3QA3WVNWUFKM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "B6RS3QA3WVNWUFKM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.886 per Dedicated Usage Windows with SQL Server Enterprise d2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.8860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PPNHZGKEWXG9QZV3" : { + "PPNHZGKEWXG9QZV3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PPNHZGKEWXG9QZV3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PPNHZGKEWXG9QZV3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PPNHZGKEWXG9QZV3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.271 per Dedicated Windows with SQL Web m4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7NHNWKWH69EZHFFD" : { + "7NHNWKWH69EZHFFD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7NHNWKWH69EZHFFD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7NHNWKWH69EZHFFD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7NHNWKWH69EZHFFD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.326 per On Demand RHEL m3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EZC8PDJ8658WHH9T" : { + "EZC8PDJ8658WHH9T.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EZC8PDJ8658WHH9T", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EZC8PDJ8658WHH9T.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EZC8PDJ8658WHH9T.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.471 per Dedicated Usage RHEL r4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "A3G83M36QWPVFFSP" : { + "A3G83M36QWPVFFSP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "A3G83M36QWPVFFSP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "A3G83M36QWPVFFSP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "A3G83M36QWPVFFSP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.075 per On Demand Windows m1.small Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GS7JMPJ9ZA8J6K6K" : { + "GS7JMPJ9ZA8J6K6K.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GS7JMPJ9ZA8J6K6K", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GS7JMPJ9ZA8J6K6K.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GS7JMPJ9ZA8J6K6K.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.385 per Dedicated Linux m1.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DM8QWYMUB3C3JJAR" : { + "DM8QWYMUB3C3JJAR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DM8QWYMUB3C3JJAR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DM8QWYMUB3C3JJAR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DM8QWYMUB3C3JJAR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL i2.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "T87WP8AU8KNBMRYM" : { + "T87WP8AU8KNBMRYM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "T87WP8AU8KNBMRYM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "T87WP8AU8KNBMRYM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "T87WP8AU8KNBMRYM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$5.073 per On Demand Windows with SQL Server Enterprise i2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.0730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "C6M58F98AZ4YZW7U" : { + "C6M58F98AZ4YZW7U.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "C6M58F98AZ4YZW7U", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "C6M58F98AZ4YZW7U.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "C6M58F98AZ4YZW7U.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.806 per Dedicated Usage Windows with SQL Server Enterprise c4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EW84HPN3QSBRVQGJ" : { + "EW84HPN3QSBRVQGJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EW84HPN3QSBRVQGJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EW84HPN3QSBRVQGJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EW84HPN3QSBRVQGJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Server Enterprise x1e.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DB68VE3TDETBPZZZ" : { + "DB68VE3TDETBPZZZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DB68VE3TDETBPZZZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DB68VE3TDETBPZZZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DB68VE3TDETBPZZZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std r4.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FUD3JZ9ZMGTAMQWY" : { + "FUD3JZ9ZMGTAMQWY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FUD3JZ9ZMGTAMQWY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FUD3JZ9ZMGTAMQWY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FUD3JZ9ZMGTAMQWY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.691 per On Demand SUSE c4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JV8XGJX4R2ZMWD28" : { + "JV8XGJX4R2ZMWD28.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JV8XGJX4R2ZMWD28", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JV8XGJX4R2ZMWD28.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JV8XGJX4R2ZMWD28.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.705 per Dedicated SQL Std i2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "U4ACUCANS9BM4R7H" : { + "U4ACUCANS9BM4R7H.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "U4ACUCANS9BM4R7H", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "U4ACUCANS9BM4R7H.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "U4ACUCANS9BM4R7H.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.008 per used Application load balancer capacity unit-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "LCU-Hrs", + "pricePerUnit" : { + "USD" : "0.0080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9E9PKC86XNNXZ5RW" : { + "9E9PKC86XNNXZ5RW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9E9PKC86XNNXZ5RW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9E9PKC86XNNXZ5RW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9E9PKC86XNNXZ5RW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$14.88 per Dedicated Windows with SQL Std r4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.8800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GT4TKK9K9AXX36E5" : { + "GT4TKK9K9AXX36E5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GT4TKK9K9AXX36E5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GT4TKK9K9AXX36E5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GT4TKK9K9AXX36E5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.179 per Dedicated Usage RHEL d2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3FV6G5BHBS5M6YUH" : { + "3FV6G5BHBS5M6YUH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3FV6G5BHBS5M6YUH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3FV6G5BHBS5M6YUH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3FV6G5BHBS5M6YUH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std m4.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TJ9229Z73AJSA43F" : { + "TJ9229Z73AJSA43F.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TJ9229Z73AJSA43F", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TJ9229Z73AJSA43F.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TJ9229Z73AJSA43F.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL c3.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RSKUKWVCVPG8AZB5" : { + "RSKUKWVCVPG8AZB5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RSKUKWVCVPG8AZB5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RSKUKWVCVPG8AZB5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RSKUKWVCVPG8AZB5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.759 per Dedicated Usage Linux d2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CZY4WZCSMEYRT6BS" : { + "CZY4WZCSMEYRT6BS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CZY4WZCSMEYRT6BS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CZY4WZCSMEYRT6BS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CZY4WZCSMEYRT6BS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Web x1e.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4AEAXDW4BC2SCXMG" : { + "4AEAXDW4BC2SCXMG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4AEAXDW4BC2SCXMG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4AEAXDW4BC2SCXMG.JRTCKXETXF.ETY2894C67" : { + "rateCode" : "4AEAXDW4BC2SCXMG.JRTCKXETXF.ETY2894C67", + "description" : "$0.00 per Elastic IP address remap - first 100 remaps / month", + "beginRange" : "0", + "endRange" : "100", + "unit" : "Count", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "4AEAXDW4BC2SCXMG.JRTCKXETXF.JBQRCS5NHT" : { + "rateCode" : "4AEAXDW4BC2SCXMG.JRTCKXETXF.JBQRCS5NHT", + "description" : "$0.10 per Elastic IP address remap - additional remap / month over 100", + "beginRange" : "100", + "endRange" : "Inf", + "unit" : "Count", + "pricePerUnit" : { + "USD" : "0.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SVKJPJ49D87Z4D8D" : { + "SVKJPJ49D87Z4D8D.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SVKJPJ49D87Z4D8D", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SVKJPJ49D87Z4D8D.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SVKJPJ49D87Z4D8D.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise m4.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PJY6CW7GDQYM5RHH" : { + "PJY6CW7GDQYM5RHH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PJY6CW7GDQYM5RHH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PJY6CW7GDQYM5RHH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PJY6CW7GDQYM5RHH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per GB - US East (Ohio) data transfer from US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RBN8F9Y5ZXEWGAXX" : { + "RBN8F9Y5ZXEWGAXX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RBN8F9Y5ZXEWGAXX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RBN8F9Y5ZXEWGAXX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RBN8F9Y5ZXEWGAXX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.087 per On Demand Windows BYOL m1.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "R48BU675BDZRSA46" : { + "R48BU675BDZRSA46.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "R48BU675BDZRSA46", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "R48BU675BDZRSA46.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "R48BU675BDZRSA46.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.237 per On Demand SQL Web m1.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HM82VKFH3K99HEA4" : { + "HM82VKFH3K99HEA4.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HM82VKFH3K99HEA4", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HM82VKFH3K99HEA4.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HM82VKFH3K99HEA4.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.728 per On Demand Windows with SQL Std i3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KCN6V5R2ZXCNYDBZ" : { + "KCN6V5R2ZXCNYDBZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KCN6V5R2ZXCNYDBZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KCN6V5R2ZXCNYDBZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KCN6V5R2ZXCNYDBZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.581 per Dedicated Windows with SQL Std x1e.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "22BY823JMH3UZ9AS" : { + "22BY823JMH3UZ9AS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "22BY823JMH3UZ9AS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "22BY823JMH3UZ9AS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "22BY823JMH3UZ9AS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.66 per On Demand RHEL c5.9xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9YKWHYHK8CJW6DNV" : { + "9YKWHYHK8CJW6DNV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9YKWHYHK8CJW6DNV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9YKWHYHK8CJW6DNV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9YKWHYHK8CJW6DNV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.02 per GB - US West (Northern California) data transfer to US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TRGMRGV2R47AP6CQ" : { + "TRGMRGV2R47AP6CQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TRGMRGV2R47AP6CQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TRGMRGV2R47AP6CQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TRGMRGV2R47AP6CQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0 for 1 Mbps per g3.4xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "95TPTPM37YTV8B2P" : { + "95TPTPM37YTV8B2P.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "95TPTPM37YTV8B2P", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "95TPTPM37YTV8B2P.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "95TPTPM37YTV8B2P.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows c4.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "X6X8ZCTUWB8NGENM" : { + "X6X8ZCTUWB8NGENM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "X6X8ZCTUWB8NGENM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "X6X8ZCTUWB8NGENM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "X6X8ZCTUWB8NGENM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Linux p3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "B77Q3B58P6KH3QKK" : { + "B77Q3B58P6KH3QKK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "B77Q3B58P6KH3QKK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "B77Q3B58P6KH3QKK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "B77Q3B58P6KH3QKK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Server Enterprise x1e.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ANHAK96GJ32FCXM9" : { + "ANHAK96GJ32FCXM9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ANHAK96GJ32FCXM9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ANHAK96GJ32FCXM9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ANHAK96GJ32FCXM9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.596 per On Demand SUSE i3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EVNBJQCCHQGV6XNB" : { + "EVNBJQCCHQGV6XNB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EVNBJQCCHQGV6XNB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EVNBJQCCHQGV6XNB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EVNBJQCCHQGV6XNB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1 per On Demand SUSE p2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Z3R6FENB6RXUUA7Z" : { + "Z3R6FENB6RXUUA7Z.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Z3R6FENB6RXUUA7Z", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Z3R6FENB6RXUUA7Z.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Z3R6FENB6RXUUA7Z.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.915 per Dedicated SUSE f1.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "73PG2QBG4QJ74BQG" : { + "73PG2QBG4QJ74BQG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "73PG2QBG4QJ74BQG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "73PG2QBG4QJ74BQG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "73PG2QBG4QJ74BQG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.017 per On Demand Windows with SQL Server Enterprise r3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VYJECTWWHZY57WXX" : { + "VYJECTWWHZY57WXX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VYJECTWWHZY57WXX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VYJECTWWHZY57WXX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VYJECTWWHZY57WXX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.070 per Dedicated Windows i2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XP36THJWHRJ7JUHM" : { + "XP36THJWHRJ7JUHM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XP36THJWHRJ7JUHM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XP36THJWHRJ7JUHM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XP36THJWHRJ7JUHM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.754 per On Demand RHEL i3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MSQ5AMG3XXYG534Q" : { + "MSQ5AMG3XXYG534Q.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MSQ5AMG3XXYG534Q", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MSQ5AMG3XXYG534Q.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MSQ5AMG3XXYG534Q.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 for 1 Gbps per p3.2xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TQYX838K5K3QH7KK" : { + "TQYX838K5K3QH7KK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TQYX838K5K3QH7KK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TQYX838K5K3QH7KK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TQYX838K5K3QH7KK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.131 per On Demand SQL Std c3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "U2FYDQN5UB6DJ9P6" : { + "U2FYDQN5UB6DJ9P6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "U2FYDQN5UB6DJ9P6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "U2FYDQN5UB6DJ9P6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "U2FYDQN5UB6DJ9P6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.172 per Dedicated Linux i3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PEEKBP32QZKKEGWF" : { + "PEEKBP32QZKKEGWF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PEEKBP32QZKKEGWF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PEEKBP32QZKKEGWF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PEEKBP32QZKKEGWF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$9.063 per On Demand Windows with SQL Web i3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.0630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DRXSTBE8SCECG53R" : { + "DRXSTBE8SCECG53R.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DRXSTBE8SCECG53R", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DRXSTBE8SCECG53R.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DRXSTBE8SCECG53R.JRTCKXETXF.6YS6EN2CT7", + "description" : "$25.302 per Dedicated Windows with SQL Std x1e.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "25.3020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "P3HMXPX59K45JP62" : { + "P3HMXPX59K45JP62.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "P3HMXPX59K45JP62", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "P3HMXPX59K45JP62.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "P3HMXPX59K45JP62.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.185 per On Demand SUSE c5.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "N7TBAPPYVJFAVWBC" : { + "N7TBAPPYVJFAVWBC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "N7TBAPPYVJFAVWBC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "N7TBAPPYVJFAVWBC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "N7TBAPPYVJFAVWBC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.133 per On Demand Windows BYOL r4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MAVGNUA5DQ5SM9C7" : { + "MAVGNUA5DQ5SM9C7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MAVGNUA5DQ5SM9C7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MAVGNUA5DQ5SM9C7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MAVGNUA5DQ5SM9C7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.366 per On Demand SUSE m3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "642BR46BHCZHCCZK" : { + "642BR46BHCZHCCZK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "642BR46BHCZHCCZK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "642BR46BHCZHCCZK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "642BR46BHCZHCCZK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.65 per On Demand Windows BYOL f1.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RX9PC8FR2YT42ZFG" : { + "RX9PC8FR2YT42ZFG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RX9PC8FR2YT42ZFG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RX9PC8FR2YT42ZFG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RX9PC8FR2YT42ZFG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std c4.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "H4TBXNHHCPZMWURK" : { + "H4TBXNHHCPZMWURK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "H4TBXNHHCPZMWURK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "H4TBXNHHCPZMWURK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "H4TBXNHHCPZMWURK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per GB - EU (Ireland) data transfer from US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "WTV2MMMZFYFVHXYW" : { + "WTV2MMMZFYFVHXYW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "WTV2MMMZFYFVHXYW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "WTV2MMMZFYFVHXYW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "WTV2MMMZFYFVHXYW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.054 per Dedicated Windows i3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VTRGBHUJVPMPXVJ5" : { + "VTRGBHUJVPMPXVJ5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VTRGBHUJVPMPXVJ5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VTRGBHUJVPMPXVJ5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VTRGBHUJVPMPXVJ5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$15.012 per Dedicated Windows with SQL Std c5.18xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.0120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FP4BCUYCYE74237A" : { + "FP4BCUYCYE74237A.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FP4BCUYCYE74237A", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FP4BCUYCYE74237A.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FP4BCUYCYE74237A.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.20 per On Demand Windows BYOL m4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8329EG456ZYK9UHU" : { + "8329EG456ZYK9UHU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8329EG456ZYK9UHU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8329EG456ZYK9UHU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8329EG456ZYK9UHU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$41.622 per Dedicated Windows with SQL Server Enterprise x1e.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "41.6220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SMK6B2NB8E64PZDV" : { + "SMK6B2NB8E64PZDV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SMK6B2NB8E64PZDV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SMK6B2NB8E64PZDV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SMK6B2NB8E64PZDV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL m3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CZEFYKJRS5KC69GA" : { + "CZEFYKJRS5KC69GA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CZEFYKJRS5KC69GA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CZEFYKJRS5KC69GA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CZEFYKJRS5KC69GA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$12.37 per On Demand RHEL p3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.3700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "A7J6GBKB42E7ZP99" : { + "A7J6GBKB42E7ZP99.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "A7J6GBKB42E7ZP99", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "A7J6GBKB42E7ZP99.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "A7J6GBKB42E7ZP99.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.8 per On Demand Windows with SQL Server Enterprise r4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.8000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VE3T3XPXTXR5FGJH" : { + "VE3T3XPXTXR5FGJH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VE3T3XPXTXR5FGJH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VE3T3XPXTXR5FGJH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VE3T3XPXTXR5FGJH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux r3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6SKVNRGYNDNJMWQA" : { + "6SKVNRGYNDNJMWQA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6SKVNRGYNDNJMWQA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6SKVNRGYNDNJMWQA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6SKVNRGYNDNJMWQA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows c3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DF8Q7FFWFQ7XFMWT" : { + "DF8Q7FFWFQ7XFMWT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DF8Q7FFWFQ7XFMWT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DF8Q7FFWFQ7XFMWT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DF8Q7FFWFQ7XFMWT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.894 per On Demand RHEL x1e.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "A83EBS2T67UP72G2" : { + "A83EBS2T67UP72G2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "A83EBS2T67UP72G2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "A83EBS2T67UP72G2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "A83EBS2T67UP72G2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.266 per On Demand Linux m3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DHYKJ8VFD83V8ETR" : { + "DHYKJ8VFD83V8ETR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DHYKJ8VFD83V8ETR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DHYKJ8VFD83V8ETR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DHYKJ8VFD83V8ETR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux r4.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "B7QBHF63SG76UXTS" : { + "B7QBHF63SG76UXTS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "B7QBHF63SG76UXTS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "B7QBHF63SG76UXTS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "B7QBHF63SG76UXTS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows BYOL i3.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EM3N7MRMRY4Z5BMR" : { + "EM3N7MRMRY4Z5BMR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EM3N7MRMRY4Z5BMR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EM3N7MRMRY4Z5BMR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EM3N7MRMRY4Z5BMR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$26.688 per Dedicated Windows BYOL x1e.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "26.6880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4RDK5GMP5336FHVU" : { + "4RDK5GMP5336FHVU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4RDK5GMP5336FHVU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4RDK5GMP5336FHVU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4RDK5GMP5336FHVU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.169 per Dedicated Windows with SQL Web x1e.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "E3GUDV3CG8QTVYVK" : { + "E3GUDV3CG8QTVYVK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "E3GUDV3CG8QTVYVK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "E3GUDV3CG8QTVYVK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "E3GUDV3CG8QTVYVK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.66 per Dedicated SUSE g3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.6600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "E39WJ4NFW33589ZS" : { + "E39WJ4NFW33589ZS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "E39WJ4NFW33589ZS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "E39WJ4NFW33589ZS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "E39WJ4NFW33589ZS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.86 per On Demand Windows with SQL Std r4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FEE2HQXAD6YH9EBE" : { + "FEE2HQXAD6YH9EBE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FEE2HQXAD6YH9EBE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FEE2HQXAD6YH9EBE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FEE2HQXAD6YH9EBE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.705 per On Demand Windows BYOL i2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "T5ZANFQ2RH352Q48" : { + "T5ZANFQ2RH352Q48.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "T5ZANFQ2RH352Q48", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "T5ZANFQ2RH352Q48.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "T5ZANFQ2RH352Q48.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise c3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DMG3Z3PAUFNBRWWT" : { + "DMG3Z3PAUFNBRWWT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DMG3Z3PAUFNBRWWT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DMG3Z3PAUFNBRWWT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DMG3Z3PAUFNBRWWT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.2 per On Demand SUSE c4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZUTU5QZ3PZY7BWCS" : { + "ZUTU5QZ3PZY7BWCS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZUTU5QZ3PZY7BWCS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZUTU5QZ3PZY7BWCS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZUTU5QZ3PZY7BWCS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$16.686 per On Demand Windows with SQL Server Enterprise c5.9xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.6860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BFQ697P5TXZG7V4S" : { + "BFQ697P5TXZG7V4S.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BFQ697P5TXZG7V4S", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BFQ697P5TXZG7V4S.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BFQ697P5TXZG7V4S.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.266 per On Demand Windows with SQL Std m3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HEF4JAUBGGF9GEHP" : { + "HEF4JAUBGGF9GEHP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HEF4JAUBGGF9GEHP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HEF4JAUBGGF9GEHP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HEF4JAUBGGF9GEHP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$5.62 per On Demand SUSE d2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.6200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GAU68ZZUP6T8UDTP" : { + "GAU68ZZUP6T8UDTP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GAU68ZZUP6T8UDTP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GAU68ZZUP6T8UDTP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GAU68ZZUP6T8UDTP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 for 1 Mbps per x1e.xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CZNF2F6CSUG2M7XY" : { + "CZNF2F6CSUG2M7XY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CZNF2F6CSUG2M7XY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CZNF2F6CSUG2M7XY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CZNF2F6CSUG2M7XY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.57 per Dedicated RHEL m4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BV77CKND4GMG6JUT" : { + "BV77CKND4GMG6JUT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BV77CKND4GMG6JUT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BV77CKND4GMG6JUT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BV77CKND4GMG6JUT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.074 per On Demand SUSE m1.small Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XYZXK8CJSF87RVWV" : { + "XYZXK8CJSF87RVWV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XYZXK8CJSF87RVWV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XYZXK8CJSF87RVWV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XYZXK8CJSF87RVWV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.380 per Dedicated Windows m2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PQXUZFT763CBBFXN" : { + "PQXUZFT763CBBFXN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PQXUZFT763CBBFXN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PQXUZFT763CBBFXN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PQXUZFT763CBBFXN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$17.344 per Dedicated Usage Windows p2.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "17.3440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8K8S8K92EHM2PHP6" : { + "8K8S8K92EHM2PHP6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8K8S8K92EHM2PHP6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8K8S8K92EHM2PHP6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8K8S8K92EHM2PHP6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.662 per On Demand RHEL r4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XUKM8UBN69JM7HAV" : { + "XUKM8UBN69JM7HAV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XUKM8UBN69JM7HAV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XUKM8UBN69JM7HAV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XUKM8UBN69JM7HAV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.1034 per On Demand Windows with SQL Web t2.small Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1034000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "B4JUK3U7ZG63RGSF" : { + "B4JUK3U7ZG63RGSF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "B4JUK3U7ZG63RGSF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "B4JUK3U7ZG63RGSF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "B4JUK3U7ZG63RGSF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.840 per On Demand Linux c3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "A5V9YQVUZMY5XA83" : { + "A5V9YQVUZMY5XA83.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "A5V9YQVUZMY5XA83", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "A5V9YQVUZMY5XA83.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "A5V9YQVUZMY5XA83.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.36 per Dedicated Linux c5.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4XKHFJVHSPER36XU" : { + "4XKHFJVHSPER36XU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4XKHFJVHSPER36XU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4XKHFJVHSPER36XU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4XKHFJVHSPER36XU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.293 per Dedicated Usage Linux r4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "K6TSS6QSQBWVHANR" : { + "K6TSS6QSQBWVHANR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "K6TSS6QSQBWVHANR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "K6TSS6QSQBWVHANR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "K6TSS6QSQBWVHANR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.632 per On Demand SUSE m3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RG525W32DHGJSVCS" : { + "RG525W32DHGJSVCS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RG525W32DHGJSVCS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RG525W32DHGJSVCS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RG525W32DHGJSVCS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.080 per On Demand SUSE m2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VYJYXGRA69WHNN6N" : { + "VYJYXGRA69WHNN6N.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VYJYXGRA69WHNN6N", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VYJYXGRA69WHNN6N.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VYJYXGRA69WHNN6N.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web d2.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FG8VFZ2BRHXVE3UE" : { + "FG8VFZ2BRHXVE3UE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FG8VFZ2BRHXVE3UE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FG8VFZ2BRHXVE3UE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FG8VFZ2BRHXVE3UE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows m3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7SE3X65CKC25URNP" : { + "7SE3X65CKC25URNP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7SE3X65CKC25URNP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7SE3X65CKC25URNP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7SE3X65CKC25URNP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.953 per Dedicated Usage Windows with SQL Server Enterprise m3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "P2X5CCNUGDNQVXV2" : { + "P2X5CCNUGDNQVXV2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "P2X5CCNUGDNQVXV2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "P2X5CCNUGDNQVXV2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "P2X5CCNUGDNQVXV2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.816 per On Demand SQL Std g2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XTPNAJDDCCQR3XRZ" : { + "XTPNAJDDCCQR3XRZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XTPNAJDDCCQR3XRZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XTPNAJDDCCQR3XRZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XTPNAJDDCCQR3XRZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.592 per Dedicated RHEL c3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "W2C299XDDHK5Q5HK" : { + "W2C299XDDHK5Q5HK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "W2C299XDDHK5Q5HK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "W2C299XDDHK5Q5HK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "W2C299XDDHK5Q5HK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$6.950 per Dedicated RHEL i2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.9500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VZB4MZEV7XEAF6US" : { + "VZB4MZEV7XEAF6US.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VZB4MZEV7XEAF6US", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VZB4MZEV7XEAF6US.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VZB4MZEV7XEAF6US.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.65 per On Demand Linux f1.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "P76K65KFZQNPR4CV" : { + "P76K65KFZQNPR4CV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "P76K65KFZQNPR4CV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "P76K65KFZQNPR4CV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "P76K65KFZQNPR4CV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL m4.10xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GSQJMJPK4SFYF63H" : { + "GSQJMJPK4SFYF63H.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GSQJMJPK4SFYF63H", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GSQJMJPK4SFYF63H.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GSQJMJPK4SFYF63H.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per GB - US East (Northern Virginia) data transfer from Asia Pacific (Sydney)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Q5KJSQ8D6YCWXG4R" : { + "Q5KJSQ8D6YCWXG4R.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Q5KJSQ8D6YCWXG4R", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Q5KJSQ8D6YCWXG4R.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Q5KJSQ8D6YCWXG4R.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.788 per On Demand Windows with SQL Server Enterprise c3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "J7QRRNJ6GRX8D5SH" : { + "J7QRRNJ6GRX8D5SH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "J7QRRNJ6GRX8D5SH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "J7QRRNJ6GRX8D5SH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "J7QRRNJ6GRX8D5SH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.393 per Dedicated Usage Windows with SQL Std m3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HWHBVKY9RQMK67F9" : { + "HWHBVKY9RQMK67F9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HWHBVKY9RQMK67F9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HWHBVKY9RQMK67F9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HWHBVKY9RQMK67F9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.13 per On Demand RHEL m4.10xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7VJXKNKUWTYUUJDQ" : { + "7VJXKNKUWTYUUJDQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7VJXKNKUWTYUUJDQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7VJXKNKUWTYUUJDQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7VJXKNKUWTYUUJDQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.984 per On Demand Windows i3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "33GEZXW546A5G39A" : { + "33GEZXW546A5G39A.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "33GEZXW546A5G39A", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "33GEZXW546A5G39A.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "33GEZXW546A5G39A.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux m4.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XFQT7FKTHK7R4MNC" : { + "XFQT7FKTHK7R4MNC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XFQT7FKTHK7R4MNC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XFQT7FKTHK7R4MNC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XFQT7FKTHK7R4MNC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE r4.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MV64DNBJGVHEPRZX" : { + "MV64DNBJGVHEPRZX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MV64DNBJGVHEPRZX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MV64DNBJGVHEPRZX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MV64DNBJGVHEPRZX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.082 per On Demand Windows with SQL Web r4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KDCQC5EHG2SRP6TU" : { + "KDCQC5EHG2SRP6TU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KDCQC5EHG2SRP6TU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KDCQC5EHG2SRP6TU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KDCQC5EHG2SRP6TU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.700 per On Demand SUSE hs1.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.7000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "U9S9CX6UESN4T4P2" : { + "U9S9CX6UESN4T4P2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "U9S9CX6UESN4T4P2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "U9S9CX6UESN4T4P2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "U9S9CX6UESN4T4P2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.05 per Dedicated Usage Windows with SQL Server Enterprise r3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EWR4DWGXX5YW4B4M" : { + "EWR4DWGXX5YW4B4M.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EWR4DWGXX5YW4B4M", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EWR4DWGXX5YW4B4M.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EWR4DWGXX5YW4B4M.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.752 per On Demand Windows g3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XX2TZABY6QFVXNY9" : { + "XX2TZABY6QFVXNY9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XX2TZABY6QFVXNY9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XX2TZABY6QFVXNY9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XX2TZABY6QFVXNY9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.599 per Dedicated RHEL m2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DVVFNW9ND93DVCKY" : { + "DVVFNW9ND93DVCKY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DVVFNW9ND93DVCKY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DVVFNW9ND93DVCKY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DVVFNW9ND93DVCKY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$26.928 per On Demand P3 Dedicated Host Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "26.9280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "X36E8MM7YF7JC38Y" : { + "X36E8MM7YF7JC38Y.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "X36E8MM7YF7JC38Y", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "X36E8MM7YF7JC38Y.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "X36E8MM7YF7JC38Y.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.41 per On Demand Windows BYOL i2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6WKTRGBBJD2C2RZE" : { + "6WKTRGBBJD2C2RZE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6WKTRGBBJD2C2RZE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6WKTRGBBJD2C2RZE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6WKTRGBBJD2C2RZE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.232 per Dedicated RHEL i3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZPUJSMGMEEHDRCWG" : { + "ZPUJSMGMEEHDRCWG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZPUJSMGMEEHDRCWG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZPUJSMGMEEHDRCWG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZPUJSMGMEEHDRCWG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.230 per Dedicated RHEL cg1.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ABJ9HJ6JXJ4MY26U" : { + "ABJ9HJ6JXJ4MY26U.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ABJ9HJ6JXJ4MY26U", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ABJ9HJ6JXJ4MY26U.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ABJ9HJ6JXJ4MY26U.JRTCKXETXF.6YS6EN2CT7", + "description" : "$8.109 per Dedicated Windows with SQL Server Enterprise i3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.1090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YHTMJU9RK3XB4R35" : { + "YHTMJU9RK3XB4R35.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YHTMJU9RK3XB4R35", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YHTMJU9RK3XB4R35.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YHTMJU9RK3XB4R35.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.09 per Dedicated Usage SUSE p2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2R3TZFKRGVGPMMC9" : { + "2R3TZFKRGVGPMMC9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2R3TZFKRGVGPMMC9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2R3TZFKRGVGPMMC9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2R3TZFKRGVGPMMC9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.359 per Dedicated SUSE p3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7NEQ4VTJKJUPEVYG" : { + "7NEQ4VTJKJUPEVYG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7NEQ4VTJKJUPEVYG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7NEQ4VTJKJUPEVYG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7NEQ4VTJKJUPEVYG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.348 per On Demand SUSE i3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "87Z6QV469BMNJV52" : { + "87Z6QV469BMNJV52.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "87Z6QV469BMNJV52", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "87Z6QV469BMNJV52.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "87Z6QV469BMNJV52.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Linux p3.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "35AEEWH98DECPC35" : { + "35AEEWH98DECPC35.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "35AEEWH98DECPC35", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "35AEEWH98DECPC35.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "35AEEWH98DECPC35.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.17 per On Demand Linux c5.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3X6C8WE2N2TR8BTN" : { + "3X6C8WE2N2TR8BTN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3X6C8WE2N2TR8BTN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3X6C8WE2N2TR8BTN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3X6C8WE2N2TR8BTN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL m4.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "K5J5FMBSS7S88WMV" : { + "K5J5FMBSS7S88WMV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "K5J5FMBSS7S88WMV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "K5J5FMBSS7S88WMV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "K5J5FMBSS7S88WMV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE c4.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Q9SS9CE4RXPCX5KG" : { + "Q9SS9CE4RXPCX5KG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Q9SS9CE4RXPCX5KG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Q9SS9CE4RXPCX5KG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Q9SS9CE4RXPCX5KG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.312 per On Demand Linux i3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BNQSZ9699GKWMJ72" : { + "BNQSZ9699GKWMJ72.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BNQSZ9699GKWMJ72", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BNQSZ9699GKWMJ72.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BNQSZ9699GKWMJ72.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.53 per Dedicated Usage Windows with SQL Std c4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DMEAKMC95469FYDS" : { + "DMEAKMC95469FYDS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DMEAKMC95469FYDS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DMEAKMC95469FYDS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DMEAKMC95469FYDS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.984 per On Demand Windows with SQL Server Enterprise i3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.9840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "82EETVJ33AH6DNH9" : { + "82EETVJ33AH6DNH9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "82EETVJ33AH6DNH9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "82EETVJ33AH6DNH9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "82EETVJ33AH6DNH9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.591 per Dedicated Usage Windows BYOL c4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6U2SB7CVRVWJEX22" : { + "6U2SB7CVRVWJEX22.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6U2SB7CVRVWJEX22", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6U2SB7CVRVWJEX22.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6U2SB7CVRVWJEX22.JRTCKXETXF.6YS6EN2CT7", + "description" : "$13.468 per Dedicated Usage RHEL x1.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.4680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EXEUENAPGQHAQGBS" : { + "EXEUENAPGQHAQGBS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EXEUENAPGQHAQGBS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EXEUENAPGQHAQGBS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EXEUENAPGQHAQGBS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.438 per Dedicated Usage Windows BYOL c4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HW5URJGXS94RYC7N" : { + "HW5URJGXS94RYC7N.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HW5URJGXS94RYC7N", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HW5URJGXS94RYC7N.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HW5URJGXS94RYC7N.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL r4.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5SZ449G4YHET8NEX" : { + "5SZ449G4YHET8NEX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5SZ449G4YHET8NEX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5SZ449G4YHET8NEX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5SZ449G4YHET8NEX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux m3.medium Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7G6ZVMHDU3FVW9D5" : { + "7G6ZVMHDU3FVW9D5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7G6ZVMHDU3FVW9D5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7G6ZVMHDU3FVW9D5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7G6ZVMHDU3FVW9D5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$10.072 per On Demand Windows with SQL Server Enterprise x1e.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.0720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZVZ4NWBV3CDP2G5H" : { + "ZVZ4NWBV3CDP2G5H.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZVZ4NWBV3CDP2G5H", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZVZ4NWBV3CDP2G5H.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZVZ4NWBV3CDP2G5H.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE m3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "D87JMYVFZXKJD58A" : { + "D87JMYVFZXKJD58A.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "D87JMYVFZXKJD58A", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "D87JMYVFZXKJD58A.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "D87JMYVFZXKJD58A.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.370 per Dedicated SUSE m2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XP5P8NMSB2W7KP3U" : { + "XP5P8NMSB2W7KP3U.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XP5P8NMSB2W7KP3U", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XP5P8NMSB2W7KP3U.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XP5P8NMSB2W7KP3U.JRTCKXETXF.6YS6EN2CT7", + "description" : "$5.52 per On Demand Linux d2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.5200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MJH659788VC2CJYV" : { + "MJH659788VC2CJYV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MJH659788VC2CJYV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MJH659788VC2CJYV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MJH659788VC2CJYV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web c4.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SMTQRSCDV7BY873H" : { + "SMTQRSCDV7BY873H.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SMTQRSCDV7BY873H", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SMTQRSCDV7BY873H.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SMTQRSCDV7BY873H.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.63 per On Demand SUSE c5.9xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "24XN5CF83RWVHY65" : { + "24XN5CF83RWVHY65.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "24XN5CF83RWVHY65", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "24XN5CF83RWVHY65.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "24XN5CF83RWVHY65.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.51 per On Demand Windows with SQL Std c4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HD5FKWRF3Y3UA5CY" : { + "HD5FKWRF3Y3UA5CY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HD5FKWRF3Y3UA5CY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HD5FKWRF3Y3UA5CY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HD5FKWRF3Y3UA5CY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.692 per Dedicated SQL Std m1.small Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "S6WMG2PUJJT43MCU" : { + "S6WMG2PUJJT43MCU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "S6WMG2PUJJT43MCU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "S6WMG2PUJJT43MCU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "S6WMG2PUJJT43MCU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.336 per Dedicated Usage Linux x1.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "J4UDT5BERQ92MHNK" : { + "J4UDT5BERQ92MHNK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "J4UDT5BERQ92MHNK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "J4UDT5BERQ92MHNK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "J4UDT5BERQ92MHNK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.864 per Dedicated Windows with SQL Web c5.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7FR6FMY2UUXQ9MPG" : { + "7FR6FMY2UUXQ9MPG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7FR6FMY2UUXQ9MPG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7FR6FMY2UUXQ9MPG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7FR6FMY2UUXQ9MPG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.49 per On Demand Windows BYOL m2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZBTSPT6YGG5E39RC" : { + "ZBTSPT6YGG5E39RC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZBTSPT6YGG5E39RC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZBTSPT6YGG5E39RC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZBTSPT6YGG5E39RC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.199 per On Demand Windows BYOL c4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "38HK7GA2PMZ3QFP2" : { + "38HK7GA2PMZ3QFP2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "38HK7GA2PMZ3QFP2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "38HK7GA2PMZ3QFP2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "38HK7GA2PMZ3QFP2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.366 per Dedicated Usage Windows BYOL r3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "S35ZU4TJVUPNKG6U" : { + "S35ZU4TJVUPNKG6U.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "S35ZU4TJVUPNKG6U", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "S35ZU4TJVUPNKG6U.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "S35ZU4TJVUPNKG6U.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.798 per On Demand RHEL x1e.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZVFV8KSWQPNVNYCW" : { + "ZVFV8KSWQPNVNYCW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZVFV8KSWQPNVNYCW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZVFV8KSWQPNVNYCW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZVFV8KSWQPNVNYCW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.206 per Dedicated Usage RHEL r4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "J3WUTF2TJ45F4344" : { + "J3WUTF2TJ45F4344.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "J3WUTF2TJ45F4344", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "J3WUTF2TJ45F4344.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "J3WUTF2TJ45F4344.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 for 14 Gbps per p3.16xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "D987U4EZH8SKPPQC" : { + "D987U4EZH8SKPPQC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "D987U4EZH8SKPPQC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "D987U4EZH8SKPPQC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "D987U4EZH8SKPPQC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.139 per On Demand SQL Web m1.small Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5QKUPV9RQN5Z98G7" : { + "5QKUPV9RQN5Z98G7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5QKUPV9RQN5Z98G7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5QKUPV9RQN5Z98G7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5QKUPV9RQN5Z98G7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise i2.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CEUJNVH6ZRW9Z3QW" : { + "CEUJNVH6ZRW9Z3QW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CEUJNVH6ZRW9Z3QW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CEUJNVH6ZRW9Z3QW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CEUJNVH6ZRW9Z3QW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Std c5.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "F6DTZSV5HTJ5SARF" : { + "F6DTZSV5HTJ5SARF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "F6DTZSV5HTJ5SARF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "F6DTZSV5HTJ5SARF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "F6DTZSV5HTJ5SARF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$5.538 per On Demand Windows with SQL Std c4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.5380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9G23QA9CK3NU3BRY" : { + "9G23QA9CK3NU3BRY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9G23QA9CK3NU3BRY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9G23QA9CK3NU3BRY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9G23QA9CK3NU3BRY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.591 per On Demand Linux c4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4QXRNM4XXHKD5KJH" : { + "4QXRNM4XXHKD5KJH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4QXRNM4XXHKD5KJH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4QXRNM4XXHKD5KJH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4QXRNM4XXHKD5KJH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.319 per On Demand Windows with SQL Web i3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UZHN722C5BU8DZ5W" : { + "UZHN722C5BU8DZ5W.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UZHN722C5BU8DZ5W", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UZHN722C5BU8DZ5W.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UZHN722C5BU8DZ5W.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.782 per On Demand Windows i2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.7820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DZHU5BKVVZXEHEYR" : { + "DZHU5BKVVZXEHEYR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DZHU5BKVVZXEHEYR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DZHU5BKVVZXEHEYR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DZHU5BKVVZXEHEYR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per GB - US East (Northern Virginia) data transfer from Asia Pacific (Singapore)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5USKDBRWNSU8R9RB" : { + "5USKDBRWNSU8R9RB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5USKDBRWNSU8R9RB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5USKDBRWNSU8R9RB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5USKDBRWNSU8R9RB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.532 per On Demand Windows BYOL m3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RQBBRPV8FS6G4KCZ" : { + "RQBBRPV8FS6G4KCZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RQBBRPV8FS6G4KCZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RQBBRPV8FS6G4KCZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RQBBRPV8FS6G4KCZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$29.357 per On Demand X1E Dedicated Host Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "29.3570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BJMX7R52F3VNFNEH" : { + "BJMX7R52F3VNFNEH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BJMX7R52F3VNFNEH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BJMX7R52F3VNFNEH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BJMX7R52F3VNFNEH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.0225 per Application LoadBalancer-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0225000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "F2K784WPSCB8RMWH" : { + "F2K784WPSCB8RMWH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "F2K784WPSCB8RMWH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "F2K784WPSCB8RMWH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "F2K784WPSCB8RMWH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows c3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XAJSBBR3F4CX756Z" : { + "XAJSBBR3F4CX756Z.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XAJSBBR3F4CX756Z", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XAJSBBR3F4CX756Z.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XAJSBBR3F4CX756Z.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per GB - EU (Germany) data transfer from US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CPC4739JBDJJ92RZ" : { + "CPC4739JBDJJ92RZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CPC4739JBDJJ92RZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CPC4739JBDJJ92RZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CPC4739JBDJJ92RZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux c3.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XFRVV8VCBT6YSWP9" : { + "XFRVV8VCBT6YSWP9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XFRVV8VCBT6YSWP9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XFRVV8VCBT6YSWP9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XFRVV8VCBT6YSWP9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows BYOL x1e.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "W84NR989M57Y5DZJ" : { + "W84NR989M57Y5DZJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "W84NR989M57Y5DZJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "W84NR989M57Y5DZJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "W84NR989M57Y5DZJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.443 per Dedicated SUSE i3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3YGFZFTB4F7JS7UX" : { + "3YGFZFTB4F7JS7UX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3YGFZFTB4F7JS7UX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3YGFZFTB4F7JS7UX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3YGFZFTB4F7JS7UX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.909 per On Demand Windows with SQL Web m4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9MSTVHD5FNUTQ99C" : { + "9MSTVHD5FNUTQ99C.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9MSTVHD5FNUTQ99C", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9MSTVHD5FNUTQ99C.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9MSTVHD5FNUTQ99C.JRTCKXETXF.6YS6EN2CT7", + "description" : "$14.508 per Dedicated Windows p3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.5080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5ESJGGVJ9BWYXAY9" : { + "5ESJGGVJ9BWYXAY9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5ESJGGVJ9BWYXAY9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5ESJGGVJ9BWYXAY9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5ESJGGVJ9BWYXAY9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.57 per Dedicated Usage Windows m3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "H6T3SYB5G6QCVMZM" : { + "H6T3SYB5G6QCVMZM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "H6T3SYB5G6QCVMZM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "H6T3SYB5G6QCVMZM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "H6T3SYB5G6QCVMZM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.680 per On Demand Linux c3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QUKA5FNRVVKN5422" : { + "QUKA5FNRVVKN5422.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QUKA5FNRVVKN5422", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QUKA5FNRVVKN5422.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QUKA5FNRVVKN5422.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.15 per Dedicated RHEL c5.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "C8282STGWSCNVJCC" : { + "C8282STGWSCNVJCC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "C8282STGWSCNVJCC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "C8282STGWSCNVJCC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "C8282STGWSCNVJCC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows c3.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YCB5ZDAPFSHHX97B" : { + "YCB5ZDAPFSHHX97B.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YCB5ZDAPFSHHX97B", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YCB5ZDAPFSHHX97B.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YCB5ZDAPFSHHX97B.JRTCKXETXF.6YS6EN2CT7", + "description" : "$9.613 per On Demand Windows x1.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.6130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4EZQG8BYPRTVKHRZ" : { + "4EZQG8BYPRTVKHRZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4EZQG8BYPRTVKHRZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4EZQG8BYPRTVKHRZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4EZQG8BYPRTVKHRZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL r4.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8744TF3WB3SSENYH" : { + "8744TF3WB3SSENYH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8744TF3WB3SSENYH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8744TF3WB3SSENYH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8744TF3WB3SSENYH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.091 per On Demand Windows c4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "REEFNGM3CZ2DRRN8" : { + "REEFNGM3CZ2DRRN8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "REEFNGM3CZ2DRRN8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "REEFNGM3CZ2DRRN8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "REEFNGM3CZ2DRRN8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.176 per Dedicated RHEL c3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "R4XHKDDZUJXABU4Z" : { + "R4XHKDDZUJXABU4Z.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "R4XHKDDZUJXABU4Z", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "R4XHKDDZUJXABU4Z.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "R4XHKDDZUJXABU4Z.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.192 per On Demand Windows c4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GXUGSHFHQFHUTQMM" : { + "GXUGSHFHQFHUTQMM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GXUGSHFHQFHUTQMM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GXUGSHFHQFHUTQMM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GXUGSHFHQFHUTQMM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.343 per Dedicated Linux i3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "N5J4FCEYTCJTEMNE" : { + "N5J4FCEYTCJTEMNE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "N5J4FCEYTCJTEMNE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "N5J4FCEYTCJTEMNE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "N5J4FCEYTCJTEMNE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.278 per Dedicated Windows c5.9xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "H338WENZAK73BM3E" : { + "H338WENZAK73BM3E.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "H338WENZAK73BM3E", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "H338WENZAK73BM3E.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "H338WENZAK73BM3E.JRTCKXETXF.6YS6EN2CT7", + "description" : "$15.152 per Dedicated Usage Windows with SQL Server Enterprise c3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.1520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BJKH3VYGVEEXSNAH" : { + "BJKH3VYGVEEXSNAH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BJKH3VYGVEEXSNAH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BJKH3VYGVEEXSNAH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BJKH3VYGVEEXSNAH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per GB - US East (Northern Virginia) data transfer from Asia Pacific (Tokyo)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UFNYR85GSNMJPAWG" : { + "UFNYR85GSNMJPAWG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UFNYR85GSNMJPAWG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UFNYR85GSNMJPAWG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UFNYR85GSNMJPAWG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.657 per On Demand Windows with SQL Std c5.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6767SWNDDU2CUUEJ" : { + "6767SWNDDU2CUUEJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6767SWNDDU2CUUEJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6767SWNDDU2CUUEJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6767SWNDDU2CUUEJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$8.811 per Dedicated Windows x1e.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.8110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "K2PF4AX5RJMVHBC9" : { + "K2PF4AX5RJMVHBC9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "K2PF4AX5RJMVHBC9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "K2PF4AX5RJMVHBC9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "K2PF4AX5RJMVHBC9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per SUSE x1e.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5EYCR4NNAWN9DZT3" : { + "5EYCR4NNAWN9DZT3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5EYCR4NNAWN9DZT3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5EYCR4NNAWN9DZT3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5EYCR4NNAWN9DZT3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.230 per On Demand SUSE c1.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VKZY87EJ294KXKWY" : { + "VKZY87EJ294KXKWY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VKZY87EJ294KXKWY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VKZY87EJ294KXKWY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VKZY87EJ294KXKWY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$8.672 per On Demand Windows p2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.6720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XES86TS9BX33Y86Y" : { + "XES86TS9BX33Y86Y.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XES86TS9BX33Y86Y", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XES86TS9BX33Y86Y.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XES86TS9BX33Y86Y.JRTCKXETXF.6YS6EN2CT7", + "description" : "$24.48 per On Demand Linux p3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "24.4800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UY23MW6DPAKU4KJ9" : { + "UY23MW6DPAKU4KJ9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UY23MW6DPAKU4KJ9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UY23MW6DPAKU4KJ9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UY23MW6DPAKU4KJ9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.4332 per On Demand Windows t2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4332000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PFVG5HVRU3HK5C4R" : { + "PFVG5HVRU3HK5C4R.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PFVG5HVRU3HK5C4R", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PFVG5HVRU3HK5C4R.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PFVG5HVRU3HK5C4R.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.21 per Dedicated Usage SUSE c4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YP22M5YTQ23BWN3Z" : { + "YP22M5YTQ23BWN3Z.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YP22M5YTQ23BWN3Z", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YP22M5YTQ23BWN3Z.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YP22M5YTQ23BWN3Z.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows x1e.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "APSTJRGAT44DWEJ8" : { + "APSTJRGAT44DWEJ8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "APSTJRGAT44DWEJ8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "APSTJRGAT44DWEJ8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "APSTJRGAT44DWEJ8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE c4.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4NP4X68DAN26TTQZ" : { + "4NP4X68DAN26TTQZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4NP4X68DAN26TTQZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4NP4X68DAN26TTQZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4NP4X68DAN26TTQZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.025 for 500 Mbps per m3.xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4U7JAK7UHS4DSAR8" : { + "4U7JAK7UHS4DSAR8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4U7JAK7UHS4DSAR8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4U7JAK7UHS4DSAR8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4U7JAK7UHS4DSAR8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.194 per On Demand RHEL r4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5JB8CSWXY6V42ECR" : { + "5JB8CSWXY6V42ECR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5JB8CSWXY6V42ECR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5JB8CSWXY6V42ECR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5JB8CSWXY6V42ECR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$6.669 per On Demand Windows BYOL x1.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.6690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TB4MYGC7MSS5DCKM" : { + "TB4MYGC7MSS5DCKM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TB4MYGC7MSS5DCKM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TB4MYGC7MSS5DCKM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TB4MYGC7MSS5DCKM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.768 per On Demand Windows m4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CB7SJGDA74NZ9PCE" : { + "CB7SJGDA74NZ9PCE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CB7SJGDA74NZ9PCE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CB7SJGDA74NZ9PCE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CB7SJGDA74NZ9PCE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows x1e.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8NKXTZ2DTZ67NZ5M" : { + "8NKXTZ2DTZ67NZ5M.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8NKXTZ2DTZ67NZ5M", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8NKXTZ2DTZ67NZ5M.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8NKXTZ2DTZ67NZ5M.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web r3.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VEYRGRFZB8WFUBH3" : { + "VEYRGRFZB8WFUBH3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VEYRGRFZB8WFUBH3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VEYRGRFZB8WFUBH3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VEYRGRFZB8WFUBH3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.851 per Dedicated RHEL c5.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RBTTMD5AP4CP4TEB" : { + "RBTTMD5AP4CP4TEB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RBTTMD5AP4CP4TEB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RBTTMD5AP4CP4TEB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RBTTMD5AP4CP4TEB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.748 per On Demand Windows with SQL Server Enterprise d2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.7480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JN3KK3Y79A6JZJNG" : { + "JN3KK3Y79A6JZJNG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JN3KK3Y79A6JZJNG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JN3KK3Y79A6JZJNG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JN3KK3Y79A6JZJNG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.216 per Dedicated SUSE c3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GBSWCG32FV9G4PVY" : { + "GBSWCG32FV9G4PVY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GBSWCG32FV9G4PVY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GBSWCG32FV9G4PVY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GBSWCG32FV9G4PVY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.01 per GB - US East (Northern Virginia) data transfer to US East (Ohio)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "58HUPRT96M5H8VUW" : { + "58HUPRT96M5H8VUW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "58HUPRT96M5H8VUW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "58HUPRT96M5H8VUW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "58HUPRT96M5H8VUW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.9 per On Demand Linux p2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "F7H92E3N3TN52552" : { + "F7H92E3N3TN52552.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "F7H92E3N3TN52552", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "F7H92E3N3TN52552.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "F7H92E3N3TN52552.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.0644 per On Demand Windows t2.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0644000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FUPZEHMJB57T55W6" : { + "FUPZEHMJB57T55W6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FUPZEHMJB57T55W6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FUPZEHMJB57T55W6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FUPZEHMJB57T55W6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.47 per On Demand RHEL c5.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QNZG4DHQSZ82BDNJ" : { + "QNZG4DHQSZ82BDNJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QNZG4DHQSZ82BDNJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QNZG4DHQSZ82BDNJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QNZG4DHQSZ82BDNJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.10 per On Demand SUSE m4.10xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "436TQXUY62HKEC4V" : { + "436TQXUY62HKEC4V.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "436TQXUY62HKEC4V", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "436TQXUY62HKEC4V.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "436TQXUY62HKEC4V.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per RHEL p3.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XVUGSEGTBYPTMD8N" : { + "XVUGSEGTBYPTMD8N.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XVUGSEGTBYPTMD8N", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XVUGSEGTBYPTMD8N.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XVUGSEGTBYPTMD8N.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std m3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EKUJM8CMFGA8AN48" : { + "EKUJM8CMFGA8AN48.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EKUJM8CMFGA8AN48", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EKUJM8CMFGA8AN48.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EKUJM8CMFGA8AN48.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.416 per On Demand Windows with SQL Server Enterprise c5.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BVM3C8VUB3CUM3XK" : { + "BVM3C8VUB3CUM3XK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BVM3C8VUB3CUM3XK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BVM3C8VUB3CUM3XK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BVM3C8VUB3CUM3XK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 for 775 Mbps per c5.xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2HFR6K6Q9KU8Q5YK" : { + "2HFR6K6Q9KU8Q5YK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2HFR6K6Q9KU8Q5YK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2HFR6K6Q9KU8Q5YK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2HFR6K6Q9KU8Q5YK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.296 per On Demand Windows with SQL Web r4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UHM8B3D5UY4TJ8DU" : { + "UHM8B3D5UY4TJ8DU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UHM8B3D5UY4TJ8DU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UHM8B3D5UY4TJ8DU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UHM8B3D5UY4TJ8DU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.953 per Dedicated Usage Windows with SQL Server Enterprise r4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UYBNK9BE67UCKSSW" : { + "UYBNK9BE67UCKSSW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UYBNK9BE67UCKSSW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UYBNK9BE67UCKSSW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UYBNK9BE67UCKSSW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL c4.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3SK2R9VZ8N24UV8B" : { + "3SK2R9VZ8N24UV8B.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3SK2R9VZ8N24UV8B", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3SK2R9VZ8N24UV8B.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3SK2R9VZ8N24UV8B.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.163 per Dedicated Windows with SQL Std x1e.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UBAX9CMEYA8JJEHX" : { + "UBAX9CMEYA8JJEHX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UBAX9CMEYA8JJEHX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UBAX9CMEYA8JJEHX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UBAX9CMEYA8JJEHX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.680 per Dedicated Windows BYOL c3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UKZHD7X8AUPRMNQ7" : { + "UKZHD7X8AUPRMNQ7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UKZHD7X8AUPRMNQ7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UKZHD7X8AUPRMNQ7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UKZHD7X8AUPRMNQ7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL c3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YGPA59CYGTE7GDPD" : { + "YGPA59CYGTE7GDPD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YGPA59CYGTE7GDPD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YGPA59CYGTE7GDPD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YGPA59CYGTE7GDPD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$26.788 per Dedicated SUSE x1e.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "26.7880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5KPSXJYCB44KZMV5" : { + "5KPSXJYCB44KZMV5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5KPSXJYCB44KZMV5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5KPSXJYCB44KZMV5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5KPSXJYCB44KZMV5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std r4.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "WH9T6569SRYX7MN9" : { + "WH9T6569SRYX7MN9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "WH9T6569SRYX7MN9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "WH9T6569SRYX7MN9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "WH9T6569SRYX7MN9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std r3.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "U29KTD6EKFTKBK6T" : { + "U29KTD6EKFTKBK6T.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "U29KTD6EKFTKBK6T", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "U29KTD6EKFTKBK6T.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "U29KTD6EKFTKBK6T.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.612 per Dedicated Usage Windows c4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NXP3TET93CDDJX8W" : { + "NXP3TET93CDDJX8W.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NXP3TET93CDDJX8W", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NXP3TET93CDDJX8W.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NXP3TET93CDDJX8W.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std d2.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6VXGKV62HT3PPGUM" : { + "6VXGKV62HT3PPGUM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6VXGKV62HT3PPGUM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6VXGKV62HT3PPGUM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6VXGKV62HT3PPGUM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows i2.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EBRWZVHDHP2KJAMQ" : { + "EBRWZVHDHP2KJAMQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EBRWZVHDHP2KJAMQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EBRWZVHDHP2KJAMQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EBRWZVHDHP2KJAMQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.336 per On Demand Linux x1e.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YGU2QZY8VPP94FSR" : { + "YGU2QZY8VPP94FSR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YGU2QZY8VPP94FSR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YGU2QZY8VPP94FSR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YGU2QZY8VPP94FSR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.133 per On Demand Linux m3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RKEGB47DHY7WYBKQ" : { + "RKEGB47DHY7WYBKQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RKEGB47DHY7WYBKQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RKEGB47DHY7WYBKQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RKEGB47DHY7WYBKQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.976 per Dedicated SUSE i2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "P3G8DU7HDSFEWNGN" : { + "P3G8DU7HDSFEWNGN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "P3G8DU7HDSFEWNGN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "P3G8DU7HDSFEWNGN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "P3G8DU7HDSFEWNGN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL i2.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZXQF4FMZPFD962D7" : { + "ZXQF4FMZPFD962D7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZXQF4FMZPFD962D7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZXQF4FMZPFD962D7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZXQF4FMZPFD962D7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.133 per On Demand Windows BYOL m3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QPKCG2B2XC9C53GT" : { + "QPKCG2B2XC9C53GT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QPKCG2B2XC9C53GT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QPKCG2B2XC9C53GT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QPKCG2B2XC9C53GT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.668 per On Demand Windows with SQL Std c5.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "P4S7RSCXQEBBBKQF" : { + "P4S7RSCXQEBBBKQF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "P4S7RSCXQEBBBKQF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "P4S7RSCXQEBBBKQF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "P4S7RSCXQEBBBKQF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.1464 per On Demand SUSE t2.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1464000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "M62BQXUWYDM97G4U" : { + "M62BQXUWYDM97G4U.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "M62BQXUWYDM97G4U", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "M62BQXUWYDM97G4U.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "M62BQXUWYDM97G4U.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.906 per Dedicated Usage Windows with SQL Server Enterprise r4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.9060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "P6GWCP7NZJR2VSTT" : { + "P6GWCP7NZJR2VSTT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "P6GWCP7NZJR2VSTT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "P6GWCP7NZJR2VSTT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "P6GWCP7NZJR2VSTT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.243 per Dedicated SUSE c1.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QCXEYVM3Y3JDE2QA" : { + "QCXEYVM3Y3JDE2QA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QCXEYVM3Y3JDE2QA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QCXEYVM3Y3JDE2QA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QCXEYVM3Y3JDE2QA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.091 per Dedicated Usage Windows c4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "W3ZH5EZCGFR6XWEV" : { + "W3ZH5EZCGFR6XWEV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "W3ZH5EZCGFR6XWEV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "W3ZH5EZCGFR6XWEV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "W3ZH5EZCGFR6XWEV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise m4.10xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "25A2HQUGG7F7ZU2J" : { + "25A2HQUGG7F7ZU2J.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "25A2HQUGG7F7ZU2J", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "25A2HQUGG7F7ZU2J.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "25A2HQUGG7F7ZU2J.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.917 per Dedicated Windows BYOL x1e.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "639ZEB9D49ASFB26" : { + "639ZEB9D49ASFB26.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "639ZEB9D49ASFB26", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "639ZEB9D49ASFB26.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "639ZEB9D49ASFB26.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.020 per On Demand Linux t1.micro Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KD8DVSJPFVSX354N" : { + "KD8DVSJPFVSX354N.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KD8DVSJPFVSX354N", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KD8DVSJPFVSX354N.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KD8DVSJPFVSX354N.JRTCKXETXF.6YS6EN2CT7", + "description" : "$11.984 per On Demand Windows with SQL Std x1e.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "11.9840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "39748UVFEUKY3MVQ" : { + "39748UVFEUKY3MVQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "39748UVFEUKY3MVQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "39748UVFEUKY3MVQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "39748UVFEUKY3MVQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.398 per On Demand Linux c4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9XSMT4DCCR64C6B8" : { + "9XSMT4DCCR64C6B8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9XSMT4DCCR64C6B8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9XSMT4DCCR64C6B8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9XSMT4DCCR64C6B8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Std x1e.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "USG92YSEYUCAFZCC" : { + "USG92YSEYUCAFZCC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "USG92YSEYUCAFZCC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "USG92YSEYUCAFZCC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "USG92YSEYUCAFZCC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL r4.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7AF3HUR3SD2EN693" : { + "7AF3HUR3SD2EN693.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7AF3HUR3SD2EN693", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7AF3HUR3SD2EN693.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7AF3HUR3SD2EN693.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web m4.10xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MDKVAJXMJGZFDJUE" : { + "MDKVAJXMJGZFDJUE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MDKVAJXMJGZFDJUE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MDKVAJXMJGZFDJUE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MDKVAJXMJGZFDJUE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.11 per Dedicated Usage Linux c4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "X4PYRTAZG2VJ5RJV" : { + "X4PYRTAZG2VJ5RJV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "X4PYRTAZG2VJ5RJV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "X4PYRTAZG2VJ5RJV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "X4PYRTAZG2VJ5RJV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.019 per On Demand Windows with SQL Std c4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "M7JDPTTFT6JUZ92Q" : { + "M7JDPTTFT6JUZ92Q.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "M7JDPTTFT6JUZ92Q", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "M7JDPTTFT6JUZ92Q.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "M7JDPTTFT6JUZ92Q.JRTCKXETXF.6YS6EN2CT7", + "description" : "$13.20 per On Demand F1 Dedicated Host Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.2000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2WG3ZVDRBDM6AXDY" : { + "2WG3ZVDRBDM6AXDY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2WG3ZVDRBDM6AXDY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2WG3ZVDRBDM6AXDY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2WG3ZVDRBDM6AXDY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.238 per Dedicated Usage Windows r4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "N3VSW4S7495SMAMS" : { + "N3VSW4S7495SMAMS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "N3VSW4S7495SMAMS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "N3VSW4S7495SMAMS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "N3VSW4S7495SMAMS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.84 per Dedicated Windows m4.10xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2WSBC7H546ERPK5X" : { + "2WSBC7H546ERPK5X.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2WSBC7H546ERPK5X", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2WSBC7H546ERPK5X.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2WSBC7H546ERPK5X.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.821 per Dedicated SUSE c5.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "C6RPVDY76QHZ9VB5" : { + "C6RPVDY76QHZ9VB5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "C6RPVDY76QHZ9VB5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "C6RPVDY76QHZ9VB5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "C6RPVDY76QHZ9VB5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.600 per Dedicated Windows BYOL hs1.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.6000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TB8JSDKA7MEGTRXV" : { + "TB8JSDKA7MEGTRXV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TB8JSDKA7MEGTRXV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TB8JSDKA7MEGTRXV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TB8JSDKA7MEGTRXV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.11 per Dedicated Linux m4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CSCB3RCZY9UUMWAN" : { + "CSCB3RCZY9UUMWAN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CSCB3RCZY9UUMWAN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CSCB3RCZY9UUMWAN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CSCB3RCZY9UUMWAN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Linux x1e.32xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "C3J6CAXEXRG66B2Y" : { + "C3J6CAXEXRG66B2Y.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "C3J6CAXEXRG66B2Y", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "C3J6CAXEXRG66B2Y.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "C3J6CAXEXRG66B2Y.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per GB - US West (Northern California) data transfer from US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RZRGZV8C4EBA9RFW" : { + "RZRGZV8C4EBA9RFW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RZRGZV8C4EBA9RFW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RZRGZV8C4EBA9RFW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RZRGZV8C4EBA9RFW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$8.327 per On Demand Windows with SQL Web r4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.3270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "WMP332VHSC4A9Z25" : { + "WMP332VHSC4A9Z25.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "WMP332VHSC4A9Z25", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "WMP332VHSC4A9Z25.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "WMP332VHSC4A9Z25.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.3712 per On Demand Windows BYOL t2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3712000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KT8ZEPCC5TRJCUKH" : { + "KT8ZEPCC5TRJCUKH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KT8ZEPCC5TRJCUKH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KT8ZEPCC5TRJCUKH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KT8ZEPCC5TRJCUKH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.728 per On Demand Windows with SQL Std m4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5ZCS4GNXFBKC3TU6" : { + "5ZCS4GNXFBKC3TU6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5ZCS4GNXFBKC3TU6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5ZCS4GNXFBKC3TU6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5ZCS4GNXFBKC3TU6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.786 per Dedicated SUSE i3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6XRAZB77YRS54YH2" : { + "6XRAZB77YRS54YH2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6XRAZB77YRS54YH2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6XRAZB77YRS54YH2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6XRAZB77YRS54YH2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.127 per On Demand RHEL m3.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8A423BKQGUQM2JT7" : { + "8A423BKQGUQM2JT7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8A423BKQGUQM2JT7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8A423BKQGUQM2JT7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8A423BKQGUQM2JT7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 for 1 Mbps per x1e.4xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KJ3MH4B6WKTQZE2W" : { + "KJ3MH4B6WKTQZE2W.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KJ3MH4B6WKTQZE2W", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KJ3MH4B6WKTQZE2W.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KJ3MH4B6WKTQZE2W.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Std x1e.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "K86YRT3FMXX5Q76Y" : { + "K86YRT3FMXX5Q76Y.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "K86YRT3FMXX5Q76Y", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "K86YRT3FMXX5Q76Y.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "K86YRT3FMXX5Q76Y.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.67 per Dedicated Linux x1e.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CHDYF9BYGFSAHSRK" : { + "CHDYF9BYGFSAHSRK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CHDYF9BYGFSAHSRK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CHDYF9BYGFSAHSRK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CHDYF9BYGFSAHSRK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.027 per Dedicated Windows with SQL Server Enterprise i3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TK4PD8NGZPE9EAZ3" : { + "TK4PD8NGZPE9EAZ3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TK4PD8NGZPE9EAZ3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TK4PD8NGZPE9EAZ3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TK4PD8NGZPE9EAZ3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.16 per GB - South America (Sao Paulo) data transfer to US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.1600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EQAYX5BGG5UU7TKF" : { + "EQAYX5BGG5UU7TKF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EQAYX5BGG5UU7TKF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EQAYX5BGG5UU7TKF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EQAYX5BGG5UU7TKF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web m3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DMR9Q6F9N9PFPE9C" : { + "DMR9Q6F9N9PFPE9C.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DMR9Q6F9N9PFPE9C", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DMR9Q6F9N9PFPE9C.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DMR9Q6F9N9PFPE9C.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.917 per Dedicated Linux x1e.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZQKQM4BJPUBCMDXD" : { + "ZQKQM4BJPUBCMDXD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZQKQM4BJPUBCMDXD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZQKQM4BJPUBCMDXD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZQKQM4BJPUBCMDXD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.730 per On Demand RHEL hs1.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.7300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "V2PCSTGVBXJBKMTJ" : { + "V2PCSTGVBXJBKMTJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "V2PCSTGVBXJBKMTJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "V2PCSTGVBXJBKMTJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "V2PCSTGVBXJBKMTJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$16.218 per Dedicated Windows with SQL Server Enterprise i3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.2180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Y9MW2V2ZRXFQMQHU" : { + "Y9MW2V2ZRXFQMQHU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Y9MW2V2ZRXFQMQHU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Y9MW2V2ZRXFQMQHU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Y9MW2V2ZRXFQMQHU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.164 per Dedicated Windows m1.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YSQ44UEJR3KC9UZ6" : { + "YSQ44UEJR3KC9UZ6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YSQ44UEJR3KC9UZ6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YSQ44UEJR3KC9UZ6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YSQ44UEJR3KC9UZ6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.583 per On Demand Windows r3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UMZX79C7JU2QYP8B" : { + "UMZX79C7JU2QYP8B.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UMZX79C7JU2QYP8B", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UMZX79C7JU2QYP8B.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UMZX79C7JU2QYP8B.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per SUSE x1e.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "99NCMXTASQBWBS5F" : { + "99NCMXTASQBWBS5F.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "99NCMXTASQBWBS5F", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "99NCMXTASQBWBS5F.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "99NCMXTASQBWBS5F.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std c4.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "H4R547VQJ55ZDDZ2" : { + "H4R547VQJ55ZDDZ2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "H4R547VQJ55ZDDZ2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "H4R547VQJ55ZDDZ2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "H4R547VQJ55ZDDZ2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.455 per On Demand Windows with SQL Web m4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GTXYRWSN8RXE5ZBA" : { + "GTXYRWSN8RXE5ZBA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GTXYRWSN8RXE5ZBA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GTXYRWSN8RXE5ZBA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GTXYRWSN8RXE5ZBA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$6.092 per Dedicated Usage Windows with SQL Std c4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.0920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JJR4TQHH8JY9D8BV" : { + "JJR4TQHH8JY9D8BV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JJR4TQHH8JY9D8BV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JJR4TQHH8JY9D8BV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JJR4TQHH8JY9D8BV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Server Enterprise i3.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2CPTVQN6QMQ24WAQ" : { + "2CPTVQN6QMQ24WAQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2CPTVQN6QMQ24WAQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2CPTVQN6QMQ24WAQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2CPTVQN6QMQ24WAQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows r4.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DXZA4TZJFG2BW52U" : { + "DXZA4TZJFG2BW52U.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DXZA4TZJFG2BW52U", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DXZA4TZJFG2BW52U.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DXZA4TZJFG2BW52U.JRTCKXETXF.6YS6EN2CT7", + "description" : "$14.778 per Dedicated SUSE x1e.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.7780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QWBZPDE9BGTPCYWW" : { + "QWBZPDE9BGTPCYWW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QWBZPDE9BGTPCYWW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QWBZPDE9BGTPCYWW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QWBZPDE9BGTPCYWW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.572 per Dedicated Linux c1.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8PWP644R45F4VKQ9" : { + "8PWP644R45F4VKQ9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8PWP644R45F4VKQ9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8PWP644R45F4VKQ9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8PWP644R45F4VKQ9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$19.226 per On Demand Windows x1.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "19.2260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "U7343ZA6ABZUXFZ9" : { + "U7343ZA6ABZUXFZ9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "U7343ZA6ABZUXFZ9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "U7343ZA6ABZUXFZ9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "U7343ZA6ABZUXFZ9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.69 per On Demand Linux d2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "WWPUYMRPHK6Y3WER" : { + "WWPUYMRPHK6Y3WER.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "WWPUYMRPHK6Y3WER", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "WWPUYMRPHK6Y3WER.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "WWPUYMRPHK6Y3WER.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise m4.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GCU5MTJSYT27M7JU" : { + "GCU5MTJSYT27M7JU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GCU5MTJSYT27M7JU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GCU5MTJSYT27M7JU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GCU5MTJSYT27M7JU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.450 per On Demand SUSE m1.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GC47ACDRS3ATDYYA" : { + "GC47ACDRS3ATDYYA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GC47ACDRS3ATDYYA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GC47ACDRS3ATDYYA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GC47ACDRS3ATDYYA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Server Enterprise x1e.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "42VGMPF8Y5PJ76X3" : { + "42VGMPF8Y5PJ76X3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "42VGMPF8Y5PJ76X3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "42VGMPF8Y5PJ76X3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "42VGMPF8Y5PJ76X3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.367 per On Demand Windows with SQL Web m3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NT2P2VJM9AFTGQGE" : { + "NT2P2VJM9AFTGQGE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NT2P2VJM9AFTGQGE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NT2P2VJM9AFTGQGE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NT2P2VJM9AFTGQGE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.500 per Dedicated Windows BYOL cr1.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "63U4EHGD76K6MYA6" : { + "63U4EHGD76K6MYA6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "63U4EHGD76K6MYA6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "63U4EHGD76K6MYA6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "63U4EHGD76K6MYA6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.086 per On Demand Windows with SQL Web x1e.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "K8NM7HNBAX7T4N5U" : { + "K8NM7HNBAX7T4N5U.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "K8NM7HNBAX7T4N5U", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "K8NM7HNBAX7T4N5U.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "K8NM7HNBAX7T4N5U.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.691 per Dedicated Usage SUSE c4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "P47VRQMUV2K4MN5Z" : { + "P47VRQMUV2K4MN5Z.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "P47VRQMUV2K4MN5Z", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "P47VRQMUV2K4MN5Z.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "P47VRQMUV2K4MN5Z.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.682 per Dedicated Windows with SQL Std m4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SKMRUUXXN2WKPFZ8" : { + "SKMRUUXXN2WKPFZ8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SKMRUUXXN2WKPFZ8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SKMRUUXXN2WKPFZ8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SKMRUUXXN2WKPFZ8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per RHEL i3.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BNBFMJCU6HWE4NK6" : { + "BNBFMJCU6HWE4NK6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BNBFMJCU6HWE4NK6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BNBFMJCU6HWE4NK6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BNBFMJCU6HWE4NK6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 for 2250 Mbps per c5.4xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "X4DNEZ99CC6GXAKU" : { + "X4DNEZ99CC6GXAKU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "X4DNEZ99CC6GXAKU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "X4DNEZ99CC6GXAKU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "X4DNEZ99CC6GXAKU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.366 per Dedicated Usage Linux r3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YC7GJ8CDWFPWMK89" : { + "YC7GJ8CDWFPWMK89.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YC7GJ8CDWFPWMK89", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YC7GJ8CDWFPWMK89.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YC7GJ8CDWFPWMK89.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux m4.10xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "K9GNYJBAEBJGBE3S" : { + "K9GNYJBAEBJGBE3S.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "K9GNYJBAEBJGBE3S", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "K9GNYJBAEBJGBE3S.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "K9GNYJBAEBJGBE3S.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.248 per On Demand Windows i3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6GASB9Z3J6ZHWKU5" : { + "6GASB9Z3J6ZHWKU5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6GASB9Z3J6ZHWKU5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6GASB9Z3J6ZHWKU5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6GASB9Z3J6ZHWKU5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.831 per On Demand Windows cr1.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "32R9UMHRGUNFK9EM" : { + "32R9UMHRGUNFK9EM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "32R9UMHRGUNFK9EM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "32R9UMHRGUNFK9EM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "32R9UMHRGUNFK9EM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.433 per On Demand SUSE r3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NS9APTDFJ7SPEAAV" : { + "NS9APTDFJ7SPEAAV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NS9APTDFJ7SPEAAV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NS9APTDFJ7SPEAAV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NS9APTDFJ7SPEAAV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.05 for 1000 Mbps per m3.2xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6N5AHFKQR9A49BXT" : { + "6N5AHFKQR9A49BXT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6N5AHFKQR9A49BXT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6N5AHFKQR9A49BXT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6N5AHFKQR9A49BXT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$20.672 per On Demand Windows with SQL Server Enterprise p2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "20.6720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4EHZWPPGG7Y9CC73" : { + "4EHZWPPGG7Y9CC73.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4EHZWPPGG7Y9CC73", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4EHZWPPGG7Y9CC73.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4EHZWPPGG7Y9CC73.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE c3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6NCC4FFQSR3WFGZZ" : { + "6NCC4FFQSR3WFGZZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6NCC4FFQSR3WFGZZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6NCC4FFQSR3WFGZZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6NCC4FFQSR3WFGZZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.096 per Dedicated Windows BYOL m1.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YD7GPEVXPWVDFDJ7" : { + "YD7GPEVXPWVDFDJ7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YD7GPEVXPWVDFDJ7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YD7GPEVXPWVDFDJ7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YD7GPEVXPWVDFDJ7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.761 per Dedicated Usage Windows d2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "S7XYZXB5D99A9Y8M" : { + "S7XYZXB5D99A9Y8M.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "S7XYZXB5D99A9Y8M", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "S7XYZXB5D99A9Y8M.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "S7XYZXB5D99A9Y8M.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.876 per Dedicated Usage Linux c4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YDP6AWC4ZPX5AANZ" : { + "YDP6AWC4ZPX5AANZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YDP6AWC4ZPX5AANZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YDP6AWC4ZPX5AANZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YDP6AWC4ZPX5AANZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.48 per On Demand SUSE d2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "S8J79EPAU2WP28Z5" : { + "S8J79EPAU2WP28Z5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "S8J79EPAU2WP28Z5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "S8J79EPAU2WP28Z5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "S8J79EPAU2WP28Z5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.744 per On Demand SQL Std m1.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YBUQUQQV5SHSS34G" : { + "YBUQUQQV5SHSS34G.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YBUQUQQV5SHSS34G", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YBUQUQQV5SHSS34G.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YBUQUQQV5SHSS34G.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per SUSE c5.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SDXF3BRYZZTH5K7Q" : { + "SDXF3BRYZZTH5K7Q.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SDXF3BRYZZTH5K7Q", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SDXF3BRYZZTH5K7Q.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SDXF3BRYZZTH5K7Q.JRTCKXETXF.6YS6EN2CT7", + "description" : "$47.936 per Dedicated Windows with SQL Std x1e.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "47.9360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EFFHYDTSJGNSYAVJ" : { + "EFFHYDTSJGNSYAVJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EFFHYDTSJGNSYAVJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EFFHYDTSJGNSYAVJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EFFHYDTSJGNSYAVJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE m3.medium Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZXVGNAHUW5AY3DYX" : { + "ZXVGNAHUW5AY3DYX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZXVGNAHUW5AY3DYX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZXVGNAHUW5AY3DYX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZXVGNAHUW5AY3DYX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.160 per On Demand SQL Web c1.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VECSNYXG6RJ6YNH2" : { + "VECSNYXG6RJ6YNH2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VECSNYXG6RJ6YNH2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VECSNYXG6RJ6YNH2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VECSNYXG6RJ6YNH2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.184 per On Demand Windows with SQL Web m3.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "C8WRJP4N7N5CN6HS" : { + "C8WRJP4N7N5CN6HS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "C8WRJP4N7N5CN6HS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "C8WRJP4N7N5CN6HS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "C8WRJP4N7N5CN6HS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.435 per On Demand SQL Web m1.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5YBKCYT5H6J77KYT" : { + "5YBKCYT5H6J77KYT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5YBKCYT5H6J77KYT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5YBKCYT5H6J77KYT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5YBKCYT5H6J77KYT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.830 per On Demand SQL Web m1.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "H9ZN7EUEHC2S7YH5" : { + "H9ZN7EUEHC2S7YH5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "H9ZN7EUEHC2S7YH5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "H9ZN7EUEHC2S7YH5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "H9ZN7EUEHC2S7YH5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.34 per On Demand Linux c5.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AA7ZX8UEQ6R54FN8" : { + "AA7ZX8UEQ6R54FN8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AA7ZX8UEQ6R54FN8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AA7ZX8UEQ6R54FN8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AA7ZX8UEQ6R54FN8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.438 per Dedicated Usage Linux c4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "D2UN9TFKVYBF6AUM" : { + "D2UN9TFKVYBF6AUM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "D2UN9TFKVYBF6AUM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "D2UN9TFKVYBF6AUM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "D2UN9TFKVYBF6AUM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.75 per On Demand SUSE f1.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FTHQYJFCP3DPSYCY" : { + "FTHQYJFCP3DPSYCY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FTHQYJFCP3DPSYCY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FTHQYJFCP3DPSYCY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FTHQYJFCP3DPSYCY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.01 per Dedicated RHEL m4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4QN7HTACSM3CFNUX" : { + "4QN7HTACSM3CFNUX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4QN7HTACSM3CFNUX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4QN7HTACSM3CFNUX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4QN7HTACSM3CFNUX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.9 per On Demand Windows BYOL p2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZJXKCMNRMSTSZTE8" : { + "ZJXKCMNRMSTSZTE8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZJXKCMNRMSTSZTE8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZJXKCMNRMSTSZTE8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZJXKCMNRMSTSZTE8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.386 per On Demand RHEL r4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.3860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4BJYGSAQ24CQWAT9" : { + "4BJYGSAQ24CQWAT9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4BJYGSAQ24CQWAT9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4BJYGSAQ24CQWAT9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4BJYGSAQ24CQWAT9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL m4.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "N8CRYUBTUE378VHJ" : { + "N8CRYUBTUE378VHJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "N8CRYUBTUE378VHJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "N8CRYUBTUE378VHJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "N8CRYUBTUE378VHJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.734 per On Demand Windows with SQL Web m3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DJEXMYSZ7CJSUDPF" : { + "DJEXMYSZ7CJSUDPF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DJEXMYSZ7CJSUDPF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DJEXMYSZ7CJSUDPF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DJEXMYSZ7CJSUDPF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.0116 per On Demand Windows BYOL t2.micro Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0116000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "N6734AQ5CQHVEMES" : { + "N6734AQ5CQHVEMES.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "N6734AQ5CQHVEMES", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "N6734AQ5CQHVEMES.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "N6734AQ5CQHVEMES.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.796 per On Demand Windows BYOL c4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "D7U963P5YEKVSRHT" : { + "D7U963P5YEKVSRHT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "D7U963P5YEKVSRHT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "D7U963P5YEKVSRHT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "D7U963P5YEKVSRHT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise m4.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QEK6WMVB3Q3SRE4E" : { + "QEK6WMVB3Q3SRE4E.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QEK6WMVB3Q3SRE4E", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QEK6WMVB3Q3SRE4E.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QEK6WMVB3Q3SRE4E.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Server Enterprise i3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZEJBXPHEDWRE3FE8" : { + "ZEJBXPHEDWRE3FE8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZEJBXPHEDWRE3FE8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZEJBXPHEDWRE3FE8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZEJBXPHEDWRE3FE8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows i3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PQ44QRGZYQ87XPN2" : { + "PQ44QRGZYQ87XPN2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PQ44QRGZYQ87XPN2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PQ44QRGZYQ87XPN2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PQ44QRGZYQ87XPN2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.0225 per Network LoadBalancer-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0225000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TKSBGRRFANCGSQGJ" : { + "TKSBGRRFANCGSQGJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TKSBGRRFANCGSQGJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TKSBGRRFANCGSQGJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TKSBGRRFANCGSQGJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2 per On Demand Windows BYOL cc2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VV3ASRE8RPAY7C9U" : { + "VV3ASRE8RPAY7C9U.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VV3ASRE8RPAY7C9U", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VV3ASRE8RPAY7C9U.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VV3ASRE8RPAY7C9U.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.05 per 1 million I/O requests - US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "IOs", + "pricePerUnit" : { + "USD" : "0.0000000500" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8D82FZE3BZCS4SXV" : { + "8D82FZE3BZCS4SXV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8D82FZE3BZCS4SXV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8D82FZE3BZCS4SXV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8D82FZE3BZCS4SXV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per SUSE i3.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "WMZMV9VFMDY39S43" : { + "WMZMV9VFMDY39S43.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "WMZMV9VFMDY39S43", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "WMZMV9VFMDY39S43.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "WMZMV9VFMDY39S43.JRTCKXETXF.6YS6EN2CT7", + "description" : "$17.344 per On Demand Windows p2.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "17.3440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4Q997J8DQYG2634Z" : { + "4Q997J8DQYG2634Z.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4Q997J8DQYG2634Z", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4Q997J8DQYG2634Z.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4Q997J8DQYG2634Z.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.274 per Dedicated SQL Std m2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "35JBFVAK8WGVGG7U" : { + "35JBFVAK8WGVGG7U.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "35JBFVAK8WGVGG7U", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "35JBFVAK8WGVGG7U.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "35JBFVAK8WGVGG7U.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per RHEL x1e.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8X7RVDXN67YREJTH" : { + "8X7RVDXN67YREJTH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8X7RVDXN67YREJTH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8X7RVDXN67YREJTH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8X7RVDXN67YREJTH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.18 per Dedicated Linux c5.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CMNW6M9D7DPHUTDD" : { + "CMNW6M9D7DPHUTDD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CMNW6M9D7DPHUTDD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CMNW6M9D7DPHUTDD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CMNW6M9D7DPHUTDD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.632 per On Demand SUSE r4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YT5JTCAUXT587YW7" : { + "YT5JTCAUXT587YW7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YT5JTCAUXT587YW7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YT5JTCAUXT587YW7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YT5JTCAUXT587YW7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.212 per Dedicated Usage RHEL m3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XSCV3UUT79TB83MN" : { + "XSCV3UUT79TB83MN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XSCV3UUT79TB83MN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XSCV3UUT79TB83MN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XSCV3UUT79TB83MN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows i2.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "H7NN7P9Z3E8KY8UD" : { + "H7NN7P9Z3E8KY8UD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "H7NN7P9Z3E8KY8UD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "H7NN7P9Z3E8KY8UD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "H7NN7P9Z3E8KY8UD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per SUSE c5.18xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7GGEQ9QF87XSSGPH" : { + "7GGEQ9QF87XSSGPH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7GGEQ9QF87XSSGPH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7GGEQ9QF87XSSGPH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7GGEQ9QF87XSSGPH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.331 per Dedicated SUSE c3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RCQDAE4337AGCJV8" : { + "RCQDAE4337AGCJV8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RCQDAE4337AGCJV8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RCQDAE4337AGCJV8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RCQDAE4337AGCJV8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.3 per On Demand SUSE p2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2CJFZEAKYQD4ZCJU" : { + "2CJFZEAKYQD4ZCJU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2CJFZEAKYQD4ZCJU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2CJFZEAKYQD4ZCJU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2CJFZEAKYQD4ZCJU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.149 per On Demand Windows m1.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XNUKM2T6VT564KF3" : { + "XNUKM2T6VT564KF3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XNUKM2T6VT564KF3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XNUKM2T6VT564KF3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XNUKM2T6VT564KF3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per SUSE c5.9xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "D6N7KTJH42VTNPFJ" : { + "D6N7KTJH42VTNPFJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "D6N7KTJH42VTNPFJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "D6N7KTJH42VTNPFJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "D6N7KTJH42VTNPFJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.590 per On Demand SUSE m2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "J89JWM6V2G7N25FR" : { + "J89JWM6V2G7N25FR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "J89JWM6V2G7N25FR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "J89JWM6V2G7N25FR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "J89JWM6V2G7N25FR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux c4.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "86FEVXHAJVJ75D5R" : { + "86FEVXHAJVJ75D5R.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "86FEVXHAJVJ75D5R", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "86FEVXHAJVJ75D5R.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "86FEVXHAJVJ75D5R.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.766 per On Demand Windows c4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "M9RJASMMSC92RM2J" : { + "M9RJASMMSC92RM2J.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "M9RJASMMSC92RM2J", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "M9RJASMMSC92RM2J.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "M9RJASMMSC92RM2J.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.146 per Dedicated Usage Windows BYOL m3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "B9MF6CH342MVWQRW" : { + "B9MF6CH342MVWQRW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "B9MF6CH342MVWQRW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "B9MF6CH342MVWQRW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "B9MF6CH342MVWQRW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL c3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "U55BDVR9QF3VHRGZ" : { + "U55BDVR9QF3VHRGZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "U55BDVR9QF3VHRGZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "U55BDVR9QF3VHRGZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "U55BDVR9QF3VHRGZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.380 per On Demand Windows m2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JH77489982R9B75M" : { + "JH77489982R9B75M.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JH77489982R9B75M", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JH77489982R9B75M.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JH77489982R9B75M.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.20 per Dedicated Linux m4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ECGX6UUV4NV7ZXGQ" : { + "ECGX6UUV4NV7ZXGQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ECGX6UUV4NV7ZXGQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ECGX6UUV4NV7ZXGQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ECGX6UUV4NV7ZXGQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL d2.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "R86DSK536TMRVK4T" : { + "R86DSK536TMRVK4T.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "R86DSK536TMRVK4T", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "R86DSK536TMRVK4T.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "R86DSK536TMRVK4T.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.570 per Dedicated Windows cc2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QP7VG66RCTU7M632" : { + "QP7VG66RCTU7M632.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QP7VG66RCTU7M632", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QP7VG66RCTU7M632.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QP7VG66RCTU7M632.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.104 per On Demand RHEL m1.small Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UW7KAEYR4CZ6SHKM" : { + "UW7KAEYR4CZ6SHKM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UW7KAEYR4CZ6SHKM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UW7KAEYR4CZ6SHKM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UW7KAEYR4CZ6SHKM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per GB - Asia Pacific (Tokyo) data transfer from US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "T3YPSF6NJ69JWWNM" : { + "T3YPSF6NJ69JWWNM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "T3YPSF6NJ69JWWNM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "T3YPSF6NJ69JWWNM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "T3YPSF6NJ69JWWNM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.025 per LoadBalancer-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6CNJHBFSUT74HD2K" : { + "6CNJHBFSUT74HD2K.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6CNJHBFSUT74HD2K", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6CNJHBFSUT74HD2K.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6CNJHBFSUT74HD2K.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.006 per used Network load balancer capacity unit-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "LCU-Hrs", + "pricePerUnit" : { + "USD" : "0.0060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SU7X27GC72VJG45S" : { + "SU7X27GC72VJG45S.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SU7X27GC72VJG45S", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SU7X27GC72VJG45S.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SU7X27GC72VJG45S.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.203 per Dedicated Windows x1e.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3KAFWJNHJ6VKA77T" : { + "3KAFWJNHJ6VKA77T.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3KAFWJNHJ6VKA77T", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3KAFWJNHJ6VKA77T.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3KAFWJNHJ6VKA77T.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.44 per Dedicated Linux m4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VN8JS6C4CHVEY8WD" : { + "VN8JS6C4CHVEY8WD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VN8JS6C4CHVEY8WD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VN8JS6C4CHVEY8WD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VN8JS6C4CHVEY8WD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.10 for 2000 Mbps per i2.4xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FFWF55NY7SRTUYUX" : { + "FFWF55NY7SRTUYUX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FFWF55NY7SRTUYUX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FFWF55NY7SRTUYUX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FFWF55NY7SRTUYUX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.810 per On Demand RHEL c3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "T9EWKN7MGMP23VG7" : { + "T9EWKN7MGMP23VG7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "T9EWKN7MGMP23VG7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "T9EWKN7MGMP23VG7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "T9EWKN7MGMP23VG7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per RHEL f1.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EDJPFY8K3AW2AD23" : { + "EDJPFY8K3AW2AD23.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EDJPFY8K3AW2AD23", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EDJPFY8K3AW2AD23.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EDJPFY8K3AW2AD23.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.02 per GB - US East (Northern Virginia) data transfer to Asia Pacific (Tokyo)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6SNHPAN3YKSWBAJB" : { + "6SNHPAN3YKSWBAJB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6SNHPAN3YKSWBAJB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6SNHPAN3YKSWBAJB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6SNHPAN3YKSWBAJB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.9 per On Demand Windows r4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6VG367TBGT66TM4N" : { + "6VG367TBGT66TM4N.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6VG367TBGT66TM4N", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6VG367TBGT66TM4N.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6VG367TBGT66TM4N.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.2856 per On Demand SUSE t2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2856000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CYF7KMJTP6KF6443" : { + "CYF7KMJTP6KF6443.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CYF7KMJTP6KF6443", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CYF7KMJTP6KF6443.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CYF7KMJTP6KF6443.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.06 per On Demand Windows BYOL p3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TBC4ECWPWM5TJCUA" : { + "TBC4ECWPWM5TJCUA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TBC4ECWPWM5TJCUA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TBC4ECWPWM5TJCUA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TBC4ECWPWM5TJCUA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.44 per On Demand SUSE c5.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5C78VXN9F5U4WPSN" : { + "5C78VXN9F5U4WPSN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5C78VXN9F5U4WPSN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5C78VXN9F5U4WPSN.JRTCKXETXF.8EEUB22XNJ" : { + "rateCode" : "5C78VXN9F5U4WPSN.JRTCKXETXF.8EEUB22XNJ", + "description" : "$0.00 per Elastic IP address not attached to a running instance for the first hour", + "beginRange" : "0", + "endRange" : "1", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "5C78VXN9F5U4WPSN.JRTCKXETXF.JTU8TKNAMW" : { + "rateCode" : "5C78VXN9F5U4WPSN.JRTCKXETXF.JTU8TKNAMW", + "description" : "$0.005 per Elastic IP address not attached to a running instance per hour (prorated)", + "beginRange" : "1", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "332WCJF3R5J2RH67" : { + "332WCJF3R5J2RH67.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "332WCJF3R5J2RH67", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "332WCJF3R5J2RH67.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "332WCJF3R5J2RH67.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web r3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "H4SWC23NZ6GQ2RR9" : { + "H4SWC23NZ6GQ2RR9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "H4SWC23NZ6GQ2RR9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "H4SWC23NZ6GQ2RR9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "H4SWC23NZ6GQ2RR9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.396 per On Demand RHEL r4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EM4WENQDQTCE6CHN" : { + "EM4WENQDQTCE6CHN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EM4WENQDQTCE6CHN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EM4WENQDQTCE6CHN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EM4WENQDQTCE6CHN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.881 per Dedicated RHEL i2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ER3NUVD4WF36NZTQ" : { + "ER3NUVD4WF36NZTQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ER3NUVD4WF36NZTQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ER3NUVD4WF36NZTQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ER3NUVD4WF36NZTQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.65 per On Demand Windows BYOL g2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NJ6JSD62VJ72A8GJ" : { + "NJ6JSD62VJ72A8GJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NJ6JSD62VJ72A8GJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NJ6JSD62VJ72A8GJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NJ6JSD62VJ72A8GJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web m3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "47S8UCB86MXKYKKM" : { + "47S8UCB86MXKYKKM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "47S8UCB86MXKYKKM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "47S8UCB86MXKYKKM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "47S8UCB86MXKYKKM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web r4.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "N7DSK6NF5W734PPK" : { + "N7DSK6NF5W734PPK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "N7DSK6NF5W734PPK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "N7DSK6NF5W734PPK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "N7DSK6NF5W734PPK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per RHEL x1e.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BN987XH7R93S9FFN" : { + "BN987XH7R93S9FFN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BN987XH7R93S9FFN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BN987XH7R93S9FFN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BN987XH7R93S9FFN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.844 per Dedicated Windows g2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DBDH9RXEHD3FBJTR" : { + "DBDH9RXEHD3FBJTR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DBDH9RXEHD3FBJTR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DBDH9RXEHD3FBJTR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DBDH9RXEHD3FBJTR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.56 per Dedicated Windows BYOL g3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MCVQU48QPHRDXMRT" : { + "MCVQU48QPHRDXMRT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MCVQU48QPHRDXMRT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MCVQU48QPHRDXMRT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MCVQU48QPHRDXMRT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$14.4 per Dedicated Usage Linux p2.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.4000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BVY8N2S8YT6DK8AE" : { + "BVY8N2S8YT6DK8AE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BVY8N2S8YT6DK8AE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BVY8N2S8YT6DK8AE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BVY8N2S8YT6DK8AE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.10 for 2000 Mbps per r3.4xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QFF26RH4D8T9V64T" : { + "QFF26RH4D8T9V64T.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QFF26RH4D8T9V64T", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QFF26RH4D8T9V64T.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QFF26RH4D8T9V64T.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.42 per On Demand Windows BYOL c3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "P9DZZQU4NVYMBDKA" : { + "P9DZZQU4NVYMBDKA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "P9DZZQU4NVYMBDKA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "P9DZZQU4NVYMBDKA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "P9DZZQU4NVYMBDKA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Server Enterprise x1e.32xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2GCTBU78G22TGEXZ" : { + "2GCTBU78G22TGEXZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2GCTBU78G22TGEXZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2GCTBU78G22TGEXZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2GCTBU78G22TGEXZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.044 per On Demand Linux m1.small Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2QU9K6YAGYT2B3FK" : { + "2QU9K6YAGYT2B3FK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2QU9K6YAGYT2B3FK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2QU9K6YAGYT2B3FK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2QU9K6YAGYT2B3FK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise m3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "M57UMFD3S77UZWZ3" : { + "M57UMFD3S77UZWZ3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "M57UMFD3S77UZWZ3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "M57UMFD3S77UZWZ3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "M57UMFD3S77UZWZ3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$11.607 per Dedicated Usage Windows with SQL Web x1.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "11.6070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MK9AMH7NU69KFAYJ" : { + "MK9AMH7NU69KFAYJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MK9AMH7NU69KFAYJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MK9AMH7NU69KFAYJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MK9AMH7NU69KFAYJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.508 per Dedicated Linux g3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SJGHN3P4PMXPP9SA" : { + "SJGHN3P4PMXPP9SA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SJGHN3P4PMXPP9SA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SJGHN3P4PMXPP9SA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SJGHN3P4PMXPP9SA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.377 per Dedicated Windows with SQL Std c5.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SFZ2UCQNRZD2WN5F" : { + "SFZ2UCQNRZD2WN5F.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SFZ2UCQNRZD2WN5F", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SFZ2UCQNRZD2WN5F.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SFZ2UCQNRZD2WN5F.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 for 1 Mbps per x1e.16xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TRJZT878WSTAV924" : { + "TRJZT878WSTAV924.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TRJZT878WSTAV924", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TRJZT878WSTAV924.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TRJZT878WSTAV924.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.976 per Dedicated Usage SUSE c4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MDMR23U3WGXF3XNN" : { + "MDMR23U3WGXF3XNN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MDMR23U3WGXF3XNN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MDMR23U3WGXF3XNN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MDMR23U3WGXF3XNN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise c3.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VZ59SXRTT8GCK9N3" : { + "VZ59SXRTT8GCK9N3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VZ59SXRTT8GCK9N3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VZ59SXRTT8GCK9N3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VZ59SXRTT8GCK9N3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.728 per Dedicated Usage RHEL m3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3EADMJNNJS3U42HF" : { + "3EADMJNNJS3U42HF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3EADMJNNJS3U42HF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3EADMJNNJS3U42HF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3EADMJNNJS3U42HF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.34 per On Demand Windows BYOL c5.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JEUDBWRRVYWVAQ8W" : { + "JEUDBWRRVYWVAQ8W.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JEUDBWRRVYWVAQ8W", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JEUDBWRRVYWVAQ8W.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JEUDBWRRVYWVAQ8W.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.108 per Dedicated RHEL m1.small Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "B6SAEPP6NFMFCUU3" : { + "B6SAEPP6NFMFCUU3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "B6SAEPP6NFMFCUU3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "B6SAEPP6NFMFCUU3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "B6SAEPP6NFMFCUU3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.219 per Dedicated Usage Linux c4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "N8Q3DXFKSXBK5NQR" : { + "N8Q3DXFKSXBK5NQR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "N8Q3DXFKSXBK5NQR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "N8Q3DXFKSXBK5NQR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "N8Q3DXFKSXBK5NQR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.343 per Dedicated Windows BYOL i3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "H3H6PVAND793CJ85" : { + "H3H6PVAND793CJ85.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "H3H6PVAND793CJ85", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "H3H6PVAND793CJ85.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "H3H6PVAND793CJ85.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL c4.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SR2X29MBY6K3S2UM" : { + "SR2X29MBY6K3S2UM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SR2X29MBY6K3S2UM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SR2X29MBY6K3S2UM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SR2X29MBY6K3S2UM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.423 per Dedicated Usage RHEL r4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "V6MQGHYV9HMHTNFE" : { + "V6MQGHYV9HMHTNFE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "V6MQGHYV9HMHTNFE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "V6MQGHYV9HMHTNFE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "V6MQGHYV9HMHTNFE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.330 per Dedicated RHEL m2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "E9BJT9V6S2SW8D9F" : { + "E9BJT9V6S2SW8D9F.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "E9BJT9V6S2SW8D9F", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "E9BJT9V6S2SW8D9F.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "E9BJT9V6S2SW8D9F.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.90 per On Demand SUSE m4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RDXB855WSYGQHXSB" : { + "RDXB855WSYGQHXSB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RDXB855WSYGQHXSB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RDXB855WSYGQHXSB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RDXB855WSYGQHXSB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows p2.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XJF7B8BASZ9KBAC4" : { + "XJF7B8BASZ9KBAC4.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XJF7B8BASZ9KBAC4", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XJF7B8BASZ9KBAC4.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XJF7B8BASZ9KBAC4.JRTCKXETXF.6YS6EN2CT7", + "description" : "$31.936 per Dedicated Windows with SQL Server Enterprise i3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "31.9360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "URQPKMKKWVYXRDR3" : { + "URQPKMKKWVYXRDR3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "URQPKMKKWVYXRDR3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "URQPKMKKWVYXRDR3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "URQPKMKKWVYXRDR3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.32 per Dedicated SUSE m4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "C7XDWJNQJCHH2ZQT" : { + "C7XDWJNQJCHH2ZQT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "C7XDWJNQJCHH2ZQT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "C7XDWJNQJCHH2ZQT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "C7XDWJNQJCHH2ZQT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per GB - US East (Northern Virginia) data transfer from Asia Pacific (Seoul)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DWKBVCX644ZFSPZC" : { + "DWKBVCX644ZFSPZC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DWKBVCX644ZFSPZC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DWKBVCX644ZFSPZC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DWKBVCX644ZFSPZC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std m3.medium Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GTVQFYE9FHRN6U2Z" : { + "GTVQFYE9FHRN6U2Z.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GTVQFYE9FHRN6U2Z", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GTVQFYE9FHRN6U2Z.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GTVQFYE9FHRN6U2Z.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.568 per Dedicated Usage RHEL c4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "T2S6PU6V3NXVX7X2" : { + "T2S6PU6V3NXVX7X2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "T2S6PU6V3NXVX7X2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "T2S6PU6V3NXVX7X2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "T2S6PU6V3NXVX7X2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.036 per On Demand Windows m3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FZCQH9HE5YJHXGM4" : { + "FZCQH9HE5YJHXGM4.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FZCQH9HE5YJHXGM4", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FZCQH9HE5YJHXGM4.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FZCQH9HE5YJHXGM4.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux p2.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2YXG22APZA6TC2QW" : { + "2YXG22APZA6TC2QW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2YXG22APZA6TC2QW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2YXG22APZA6TC2QW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2YXG22APZA6TC2QW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.475 per Dedicated Windows with SQL Web m4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EW588KWA3CB5EA96" : { + "EW588KWA3CB5EA96.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EW588KWA3CB5EA96", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EW588KWA3CB5EA96.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EW588KWA3CB5EA96.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per SUSE c5.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5YVC4WAQGG4WW22Q" : { + "5YVC4WAQGG4WW22Q.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5YVC4WAQGG4WW22Q", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5YVC4WAQGG4WW22Q.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5YVC4WAQGG4WW22Q.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.75 per On Demand C4 Dedicated Host Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YUXKRQ5SQSHVKD58" : { + "YUXKRQ5SQSHVKD58.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YUXKRQ5SQSHVKD58", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YUXKRQ5SQSHVKD58.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YUXKRQ5SQSHVKD58.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.087 per On Demand Linux m1.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JVAJTRPTQ2TMRVRR" : { + "JVAJTRPTQ2TMRVRR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JVAJTRPTQ2TMRVRR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JVAJTRPTQ2TMRVRR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JVAJTRPTQ2TMRVRR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Linux x1e.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8W89WZF8F2RMTQFG" : { + "8W89WZF8F2RMTQFG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8W89WZF8F2RMTQFG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8W89WZF8F2RMTQFG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8W89WZF8F2RMTQFG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.312 per On Demand Windows BYOL i3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MBDEK77AM97QDASM" : { + "MBDEK77AM97QDASM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MBDEK77AM97QDASM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MBDEK77AM97QDASM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MBDEK77AM97QDASM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.17 per Dedicated Usage Linux r4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6898Z5WFTX5GEKYT" : { + "6898Z5WFTX5GEKYT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6898Z5WFTX5GEKYT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6898Z5WFTX5GEKYT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6898Z5WFTX5GEKYT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.072 per On Demand Windows x1e.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.0720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "A6ZFW8EK3D8FCRUW" : { + "A6ZFW8EK3D8FCRUW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "A6ZFW8EK3D8FCRUW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "A6ZFW8EK3D8FCRUW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "A6ZFW8EK3D8FCRUW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per RHEL i3.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HMNJVFAEBVXVF64D" : { + "HMNJVFAEBVXVF64D.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HMNJVFAEBVXVF64D", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HMNJVFAEBVXVF64D.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HMNJVFAEBVXVF64D.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.291 per Dedicated RHEL c3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BVA53SP54488TUC8" : { + "BVA53SP54488TUC8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BVA53SP54488TUC8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BVA53SP54488TUC8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BVA53SP54488TUC8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.383 per On Demand Windows c4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3XXEP5YX5DYFE8HD" : { + "3XXEP5YX5DYFE8HD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3XXEP5YX5DYFE8HD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3XXEP5YX5DYFE8HD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3XXEP5YX5DYFE8HD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.724 per On Demand SUSE i3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MN9WQ6GC5TGSSY9E" : { + "MN9WQ6GC5TGSSY9E.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MN9WQ6GC5TGSSY9E", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MN9WQ6GC5TGSSY9E.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MN9WQ6GC5TGSSY9E.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows g2.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QHEP8CAE9HJS33WN" : { + "QHEP8CAE9HJS33WN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QHEP8CAE9HJS33WN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QHEP8CAE9HJS33WN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QHEP8CAE9HJS33WN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.815 per Dedicated SUSE g2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XFYWQUTA9A757A82" : { + "XFYWQUTA9A757A82.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XFYWQUTA9A757A82", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XFYWQUTA9A757A82.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XFYWQUTA9A757A82.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per RHEL c5.9xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VENWXFAH6ZT534EX" : { + "VENWXFAH6ZT534EX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VENWXFAH6ZT534EX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VENWXFAH6ZT534EX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VENWXFAH6ZT534EX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL c4.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VNV2TU2Q7ZCZ374Z" : { + "VNV2TU2Q7ZCZ374Z.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VNV2TU2Q7ZCZ374Z", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VNV2TU2Q7ZCZ374Z.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VNV2TU2Q7ZCZ374Z.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL m3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "K2UX3Q9DEX25YU7R" : { + "K2UX3Q9DEX25YU7R.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "K2UX3Q9DEX25YU7R", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "K2UX3Q9DEX25YU7R.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "K2UX3Q9DEX25YU7R.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.906 per Dedicated Usage Windows r4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JNSD8R3ZBZZH9BMM" : { + "JNSD8R3ZBZZH9BMM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JNSD8R3ZBZZH9BMM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JNSD8R3ZBZZH9BMM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JNSD8R3ZBZZH9BMM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Linux i3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AHXYB8F5F4C9BS49" : { + "AHXYB8F5F4C9BS49.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AHXYB8F5F4C9BS49", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AHXYB8F5F4C9BS49.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AHXYB8F5F4C9BS49.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE c3.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6MK3U3SATG93CSHN" : { + "6MK3U3SATG93CSHN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6MK3U3SATG93CSHN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6MK3U3SATG93CSHN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6MK3U3SATG93CSHN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE r4.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7DZ2ZNK9ZVM2D8RJ" : { + "7DZ2ZNK9ZVM2D8RJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7DZ2ZNK9ZVM2D8RJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7DZ2ZNK9ZVM2D8RJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7DZ2ZNK9ZVM2D8RJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.626 per On Demand RHEL i3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "73WCSETYKTR78DFE" : { + "73WCSETYKTR78DFE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "73WCSETYKTR78DFE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "73WCSETYKTR78DFE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "73WCSETYKTR78DFE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows BYOL f1.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6A5H8V2W7HVVXSB7" : { + "6A5H8V2W7HVVXSB7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6A5H8V2W7HVVXSB7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6A5H8V2W7HVVXSB7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6A5H8V2W7HVVXSB7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$12.24 per On Demand Windows BYOL p3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.2400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3Y79JQPCM8NG9MKS" : { + "3Y79JQPCM8NG9MKS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3Y79JQPCM8NG9MKS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3Y79JQPCM8NG9MKS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3Y79JQPCM8NG9MKS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows c4.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7GZHH8G9CD4XD8TM" : { + "7GZHH8G9CD4XD8TM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7GZHH8G9CD4XD8TM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7GZHH8G9CD4XD8TM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7GZHH8G9CD4XD8TM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.918 per On Demand SQL Std i2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YMKYAYKBFT6QURTQ" : { + "YMKYAYKBFT6QURTQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YMKYAYKBFT6QURTQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YMKYAYKBFT6QURTQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YMKYAYKBFT6QURTQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE g2.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4BUZB6KWPTJTVSB7" : { + "4BUZB6KWPTJTVSB7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4BUZB6KWPTJTVSB7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4BUZB6KWPTJTVSB7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4BUZB6KWPTJTVSB7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per SUSE x1e.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "96GP335H4PPFX6P2" : { + "96GP335H4PPFX6P2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "96GP335H4PPFX6P2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "96GP335H4PPFX6P2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "96GP335H4PPFX6P2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.86 per On Demand SUSE d2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DEEJRV3WVFPZTXRD" : { + "DEEJRV3WVFPZTXRD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DEEJRV3WVFPZTXRD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DEEJRV3WVFPZTXRD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DEEJRV3WVFPZTXRD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.20 per On Demand Windows BYOL m4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YP5VZWVE6N228WH8" : { + "YP5VZWVE6N228WH8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YP5VZWVE6N228WH8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YP5VZWVE6N228WH8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YP5VZWVE6N228WH8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$34.586 per On Demand Windows with SQL Std x1.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "34.5860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CNM382ND78XDQQAK" : { + "CNM382ND78XDQQAK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CNM382ND78XDQQAK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CNM382ND78XDQQAK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CNM382ND78XDQQAK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$6.820 per Dedicated Linux i2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.8200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XERQGANK8Y3TXRRY" : { + "XERQGANK8Y3TXRRY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XERQGANK8Y3TXRRY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XERQGANK8Y3TXRRY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XERQGANK8Y3TXRRY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.0532 per On Demand SUSE t2.small Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9SSB4RSRXFF8HK42" : { + "9SSB4RSRXFF8HK42.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9SSB4RSRXFF8HK42", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9SSB4RSRXFF8HK42.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9SSB4RSRXFF8HK42.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.940 per On Demand SUSE c3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TTPFUQFE3Y5ZHJQU" : { + "TTPFUQFE3Y5ZHJQU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TTPFUQFE3Y5ZHJQU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TTPFUQFE3Y5ZHJQU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TTPFUQFE3Y5ZHJQU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.996 per On Demand Windows with SQL Std x1e.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Y2UXNGAEK992YZMH" : { + "Y2UXNGAEK992YZMH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Y2UXNGAEK992YZMH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Y2UXNGAEK992YZMH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Y2UXNGAEK992YZMH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.66 per Dedicated Usage Windows with SQL Server Enterprise c3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.6600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "WCAVWCRVUD56G7JJ" : { + "WCAVWCRVUD56G7JJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "WCAVWCRVUD56G7JJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "WCAVWCRVUD56G7JJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "WCAVWCRVUD56G7JJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.188 per On Demand Windows c3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EEJY25ZRYKB8MXQ7" : { + "EEJY25ZRYKB8MXQ7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EEJY25ZRYKB8MXQ7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EEJY25ZRYKB8MXQ7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EEJY25ZRYKB8MXQ7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$8.615 per On Demand Windows with SQL Std r3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.6150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DJEY5GTEWFQSU2H3" : { + "DJEY5GTEWFQSU2H3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DJEY5GTEWFQSU2H3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DJEY5GTEWFQSU2H3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DJEY5GTEWFQSU2H3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.95 per On Demand Windows with SQL Server Enterprise r4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "R663DPH9T8Q89W88" : { + "R663DPH9T8Q89W88.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "R663DPH9T8Q89W88", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "R663DPH9T8Q89W88.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "R663DPH9T8Q89W88.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.280 per Dedicated Windows i2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AQ4BJM4AR87GBQDX" : { + "AQ4BJM4AR87GBQDX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AQ4BJM4AR87GBQDX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AQ4BJM4AR87GBQDX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AQ4BJM4AR87GBQDX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.532 per On Demand Windows c4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3DX9M63484ZSZFJV" : { + "3DX9M63484ZSZFJV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3DX9M63484ZSZFJV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3DX9M63484ZSZFJV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3DX9M63484ZSZFJV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.000 per On Demand Linux cc2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YNFV4A5QUAMVDGKX" : { + "YNFV4A5QUAMVDGKX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YNFV4A5QUAMVDGKX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YNFV4A5QUAMVDGKX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YNFV4A5QUAMVDGKX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$6.669 per On Demand Linux x1.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.6690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "J2FKWQYCNWT2R2V7" : { + "J2FKWQYCNWT2R2V7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "J2FKWQYCNWT2R2V7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "J2FKWQYCNWT2R2V7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "J2FKWQYCNWT2R2V7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.02 per GB - US East (Northern Virginia) data transfer to AWS GovCloud (US)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TNE6USZS8RUFQW28" : { + "TNE6USZS8RUFQW28.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TNE6USZS8RUFQW28", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TNE6USZS8RUFQW28.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TNE6USZS8RUFQW28.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.038 per Dedicated SUSE i2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4YYNPC2WZJJXCMPG" : { + "4YYNPC2WZJJXCMPG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4YYNPC2WZJJXCMPG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4YYNPC2WZJJXCMPG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4YYNPC2WZJJXCMPG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.008 per GB Data Processed by the LoadBalancer", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RWRSW4Q7WCASA2W9" : { + "RWRSW4Q7WCASA2W9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RWRSW4Q7WCASA2W9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RWRSW4Q7WCASA2W9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RWRSW4Q7WCASA2W9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.173 per Dedicated SQL Std c3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NYB5S5CHCEM4EHBM" : { + "NYB5S5CHCEM4EHBM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NYB5S5CHCEM4EHBM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NYB5S5CHCEM4EHBM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NYB5S5CHCEM4EHBM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.05 for 1000 Mbps per m1.xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QT2HSTX3NZ4XCM9E" : { + "QT2HSTX3NZ4XCM9E.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QT2HSTX3NZ4XCM9E", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QT2HSTX3NZ4XCM9E.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QT2HSTX3NZ4XCM9E.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.20 per On Demand SUSE m4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7MYCC33ZAHEJPS24" : { + "7MYCC33ZAHEJPS24.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7MYCC33ZAHEJPS24", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7MYCC33ZAHEJPS24.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7MYCC33ZAHEJPS24.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.807 per Dedicated Usage Windows with SQL Web m3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CX88FC6J9JAZ8TJW" : { + "CX88FC6J9JAZ8TJW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CX88FC6J9JAZ8TJW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CX88FC6J9JAZ8TJW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CX88FC6J9JAZ8TJW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Std c5.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6S9GKQW48P8VUTJ9" : { + "6S9GKQW48P8VUTJ9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6S9GKQW48P8VUTJ9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6S9GKQW48P8VUTJ9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6S9GKQW48P8VUTJ9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$9.392 per Dedicated Usage Windows p2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.3920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SKBEBKWYFZHQHM9H" : { + "SKBEBKWYFZHQHM9H.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SKBEBKWYFZHQHM9H", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SKBEBKWYFZHQHM9H.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SKBEBKWYFZHQHM9H.JRTCKXETXF.6YS6EN2CT7", + "description" : "$13.438 per On Demand SUSE x1.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.4380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SDH7JHR69GKRHZE7" : { + "SDH7JHR69GKRHZE7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SDH7JHR69GKRHZE7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SDH7JHR69GKRHZE7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SDH7JHR69GKRHZE7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.834 per On Demand Linux x1e.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NP6CAG27PTSDFJW4" : { + "NP6CAG27PTSDFJW4.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NP6CAG27PTSDFJW4", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NP6CAG27PTSDFJW4.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NP6CAG27PTSDFJW4.JRTCKXETXF.6YS6EN2CT7", + "description" : "$5.52 per Dedicated Windows BYOL d2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.5200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CTE4Z3ZVEMX6UBMZ" : { + "CTE4Z3ZVEMX6UBMZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CTE4Z3ZVEMX6UBMZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CTE4Z3ZVEMX6UBMZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CTE4Z3ZVEMX6UBMZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE r4.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "E8Q8HF3P3ZT76NBP" : { + "E8Q8HF3P3ZT76NBP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "E8Q8HF3P3ZT76NBP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "E8Q8HF3P3ZT76NBP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "E8Q8HF3P3ZT76NBP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Std i3.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AS5YFH475AAXG3U6" : { + "AS5YFH475AAXG3U6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AS5YFH475AAXG3U6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AS5YFH475AAXG3U6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AS5YFH475AAXG3U6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.808 per Dedicated Windows m4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CZ3H3JJEPGJZKTU9" : { + "CZ3H3JJEPGJZKTU9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CZ3H3JJEPGJZKTU9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CZ3H3JJEPGJZKTU9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CZ3H3JJEPGJZKTU9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.66 per Dedicated Usage Windows BYOL r3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "K97AXAD4GAYGE99Y" : { + "K97AXAD4GAYGE99Y.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "K97AXAD4GAYGE99Y", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "K97AXAD4GAYGE99Y.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "K97AXAD4GAYGE99Y.JRTCKXETXF.6YS6EN2CT7", + "description" : "$13.30 per Dedicated SUSE f1.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.3000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8QAR2NUMVX46Z9J5" : { + "8QAR2NUMVX46Z9J5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8QAR2NUMVX46Z9J5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8QAR2NUMVX46Z9J5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8QAR2NUMVX46Z9J5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.295 per On Demand Windows with SQL Web r3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TB387UEUFCNJQBC7" : { + "TB387UEUFCNJQBC7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TB387UEUFCNJQBC7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TB387UEUFCNJQBC7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TB387UEUFCNJQBC7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.228 per On Demand SUSE r4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FEZXX3JK34ZK8J5N" : { + "FEZXX3JK34ZK8J5N.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FEZXX3JK34ZK8J5N", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FEZXX3JK34ZK8J5N.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FEZXX3JK34ZK8J5N.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE r3.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "WWNXU2QJU9XYEM5Z" : { + "WWNXU2QJU9XYEM5Z.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "WWNXU2QJU9XYEM5Z", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "WWNXU2QJU9XYEM5Z.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "WWNXU2QJU9XYEM5Z.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.2266 per On Demand Windows t2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2266000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "27HV9GJNZPAQHPXQ" : { + "27HV9GJNZPAQHPXQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "27HV9GJNZPAQHPXQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "27HV9GJNZPAQHPXQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "27HV9GJNZPAQHPXQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$34.586 per Dedicated Windows with SQL Std x1.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "34.5860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GJ4X2G4FDXPBB6U8" : { + "GJ4X2G4FDXPBB6U8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GJ4X2G4FDXPBB6U8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GJ4X2G4FDXPBB6U8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GJ4X2G4FDXPBB6U8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 for 2000 Mbps per c4.4xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VN3PHQUB842ETS6X" : { + "VN3PHQUB842ETS6X.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VN3PHQUB842ETS6X", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VN3PHQUB842ETS6X.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VN3PHQUB842ETS6X.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE i2.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3NXCSDASD23BBNGJ" : { + "3NXCSDASD23BBNGJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3NXCSDASD23BBNGJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3NXCSDASD23BBNGJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3NXCSDASD23BBNGJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL r3.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RHMYCN6PD6GHSQUU" : { + "RHMYCN6PD6GHSQUU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RHMYCN6PD6GHSQUU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RHMYCN6PD6GHSQUU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RHMYCN6PD6GHSQUU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.99 per Dedicated Usage Linux p2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "X54X2EBSMKMH8KGR" : { + "X54X2EBSMKMH8KGR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "X54X2EBSMKMH8KGR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "X54X2EBSMKMH8KGR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "X54X2EBSMKMH8KGR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL g2.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FUJ2WGMJU3VK73ZN" : { + "FUJ2WGMJU3VK73ZN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FUJ2WGMJU3VK73ZN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FUJ2WGMJU3VK73ZN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FUJ2WGMJU3VK73ZN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.628 per Dedicated Usage SUSE d2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KZTDUURKCC3R7F95" : { + "KZTDUURKCC3R7F95.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KZTDUURKCC3R7F95", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KZTDUURKCC3R7F95.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KZTDUURKCC3R7F95.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.727 per Dedicated Windows with SQL Web c5.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SKRG28YJJD7F7ACS" : { + "SKRG28YJJD7F7ACS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SKRG28YJJD7F7ACS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SKRG28YJJD7F7ACS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SKRG28YJJD7F7ACS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std r4.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ATP45XBTJS5DKRMF" : { + "ATP45XBTJS5DKRMF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ATP45XBTJS5DKRMF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ATP45XBTJS5DKRMF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ATP45XBTJS5DKRMF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std g2.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BTQ2BXHDBD3MTARJ" : { + "BTQ2BXHDBD3MTARJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BTQ2BXHDBD3MTARJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BTQ2BXHDBD3MTARJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BTQ2BXHDBD3MTARJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE m3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "G6S6S5QMYJ4RMXEZ" : { + "G6S6S5QMYJ4RMXEZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "G6S6S5QMYJ4RMXEZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "G6S6S5QMYJ4RMXEZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "G6S6S5QMYJ4RMXEZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise g2.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XFJWBADTXUKBRGTC" : { + "XFJWBADTXUKBRGTC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XFJWBADTXUKBRGTC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XFJWBADTXUKBRGTC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XFJWBADTXUKBRGTC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.84 per On Demand Windows m4.10xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CS26JSU2ZC88WXHJ" : { + "CS26JSU2ZC88WXHJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CS26JSU2ZC88WXHJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CS26JSU2ZC88WXHJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CS26JSU2ZC88WXHJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.147 per On Demand RHEL m1.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JYVS4BZET85J8C7N" : { + "JYVS4BZET85J8C7N.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JYVS4BZET85J8C7N", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JYVS4BZET85J8C7N.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JYVS4BZET85J8C7N.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.98 per On Demand Windows BYOL m2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YSGQ6AZH4GU6W9TM" : { + "YSGQ6AZH4GU6W9TM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YSGQ6AZH4GU6W9TM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YSGQ6AZH4GU6W9TM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YSGQ6AZH4GU6W9TM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.903 per Dedicated Usage Windows with SQL Server Enterprise c4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "M4YGUC8KPPJRRCRJ" : { + "M4YGUC8KPPJRRCRJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "M4YGUC8KPPJRRCRJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "M4YGUC8KPPJRRCRJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "M4YGUC8KPPJRRCRJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.231 per Dedicated Windows BYOL c3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YCTHWE4X8352UUP7" : { + "YCTHWE4X8352UUP7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YCTHWE4X8352UUP7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YCTHWE4X8352UUP7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YCTHWE4X8352UUP7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Server Enterprise i3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RZS5FY9ANEA8TU3F" : { + "RZS5FY9ANEA8TU3F.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RZS5FY9ANEA8TU3F", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RZS5FY9ANEA8TU3F.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RZS5FY9ANEA8TU3F.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux m4.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MA94X27R3YTPE3NC" : { + "MA94X27R3YTPE3NC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MA94X27R3YTPE3NC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MA94X27R3YTPE3NC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MA94X27R3YTPE3NC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.172 per Dedicated Windows BYOL i3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2Y3RARMUM73VYH92" : { + "2Y3RARMUM73VYH92.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2Y3RARMUM73VYH92", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2Y3RARMUM73VYH92.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2Y3RARMUM73VYH92.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.654 per Dedicated Windows c3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7ATPZU2G6QRQFTXN" : { + "7ATPZU2G6QRQFTXN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7ATPZU2G6QRQFTXN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7ATPZU2G6QRQFTXN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7ATPZU2G6QRQFTXN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$5.122 per On Demand RHEL i3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.1220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BJ9999E62JPQN34Q" : { + "BJ9999E62JPQN34Q.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BJ9999E62JPQN34Q", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BJ9999E62JPQN34Q.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BJ9999E62JPQN34Q.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.298 per On Demand Windows with SQL Web t2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FJ3G5WT7J4G7GT23" : { + "FJ3G5WT7J4G7GT23.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FJ3G5WT7J4G7GT23", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FJ3G5WT7J4G7GT23.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FJ3G5WT7J4G7GT23.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.044 per On Demand SQL Web cr1.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.0440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "P5RN9BCZJT39XF2F" : { + "P5RN9BCZJT39XF2F.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "P5RN9BCZJT39XF2F", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "P5RN9BCZJT39XF2F.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "P5RN9BCZJT39XF2F.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.175 per On Demand Windows BYOL m1.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QF49GBEQA86P5DD3" : { + "QF49GBEQA86P5DD3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QF49GBEQA86P5DD3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QF49GBEQA86P5DD3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QF49GBEQA86P5DD3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE c3.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "69HHGBJ3N8F7N3PN" : { + "69HHGBJ3N8F7N3PN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "69HHGBJ3N8F7N3PN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "69HHGBJ3N8F7N3PN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "69HHGBJ3N8F7N3PN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.98 per Dedicated Windows g3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "C4ADNNGW2WA5AJWY" : { + "C4ADNNGW2WA5AJWY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "C4ADNNGW2WA5AJWY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "C4ADNNGW2WA5AJWY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "C4ADNNGW2WA5AJWY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.336 per On Demand Windows BYOL x1e.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UC54XWQVHQPRYB9K" : { + "UC54XWQVHQPRYB9K.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UC54XWQVHQPRYB9K", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UC54XWQVHQPRYB9K.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UC54XWQVHQPRYB9K.JRTCKXETXF.6YS6EN2CT7", + "description" : "$6.672 per On Demand Linux x1e.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.6720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XMKFQV8DFSMWGQ5G" : { + "XMKFQV8DFSMWGQ5G.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XMKFQV8DFSMWGQ5G", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XMKFQV8DFSMWGQ5G.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XMKFQV8DFSMWGQ5G.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.254 per Dedicated Windows BYOL g3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TNZVJ6TD58FTD557" : { + "TNZVJ6TD58FTD557.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TNZVJ6TD58FTD557", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TNZVJ6TD58FTD557.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TNZVJ6TD58FTD557.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.67 per Dedicated Windows BYOL x1e.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Q47MRW8XVZXWXPE6" : { + "Q47MRW8XVZXWXPE6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Q47MRW8XVZXWXPE6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Q47MRW8XVZXWXPE6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Q47MRW8XVZXWXPE6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Web c5.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3RTZAQ64564SNQ7T" : { + "3RTZAQ64564SNQ7T.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3RTZAQ64564SNQ7T", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3RTZAQ64564SNQ7T.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3RTZAQ64564SNQ7T.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.622 per Dedicated Linux c5.9xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HQEH3ZWJVT46JHRG" : { + "HQEH3ZWJVT46JHRG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HQEH3ZWJVT46JHRG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HQEH3ZWJVT46JHRG.JRTCKXETXF.WVV8R9FH29" : { + "rateCode" : "HQEH3ZWJVT46JHRG.JRTCKXETXF.WVV8R9FH29", + "description" : "$0.090 per GB - first 10 TB / month data transfer out beyond the global free tier", + "beginRange" : "1", + "endRange" : "10240", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0900000000" + }, + "appliesTo" : [ ] + }, + "HQEH3ZWJVT46JHRG.JRTCKXETXF.8EEUB22XNJ" : { + "rateCode" : "HQEH3ZWJVT46JHRG.JRTCKXETXF.8EEUB22XNJ", + "description" : "$0.000 per GB - first 1 GB of data transferred out per month", + "beginRange" : "0", + "endRange" : "1", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "HQEH3ZWJVT46JHRG.JRTCKXETXF.VF6T3GAUKQ" : { + "rateCode" : "HQEH3ZWJVT46JHRG.JRTCKXETXF.VF6T3GAUKQ", + "description" : "$0.085 per GB - next 40 TB / month data transfer out", + "beginRange" : "10240", + "endRange" : "51200", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0850000000" + }, + "appliesTo" : [ ] + }, + "HQEH3ZWJVT46JHRG.JRTCKXETXF.GPHXDESFBB" : { + "rateCode" : "HQEH3ZWJVT46JHRG.JRTCKXETXF.GPHXDESFBB", + "description" : "$0.050 per GB - greater than 150 TB / month data transfer out", + "beginRange" : "153600", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0500000000" + }, + "appliesTo" : [ ] + }, + "HQEH3ZWJVT46JHRG.JRTCKXETXF.N9EW5UVVPA" : { + "rateCode" : "HQEH3ZWJVT46JHRG.JRTCKXETXF.N9EW5UVVPA", + "description" : "$0.070 per GB - next 100 TB / month data transfer out", + "beginRange" : "51200", + "endRange" : "153600", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FAFFPMHQDMTENZE8" : { + "FAFFPMHQDMTENZE8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FAFFPMHQDMTENZE8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FAFFPMHQDMTENZE8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FAFFPMHQDMTENZE8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Server Enterprise c5.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TDU6B3KE7HWTXURF" : { + "TDU6B3KE7HWTXURF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TDU6B3KE7HWTXURF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TDU6B3KE7HWTXURF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TDU6B3KE7HWTXURF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise m3.medium Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SJ2H8X62JZ6P6N48" : { + "SJ2H8X62JZ6P6N48.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SJ2H8X62JZ6P6N48", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SJ2H8X62JZ6P6N48.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SJ2H8X62JZ6P6N48.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.721 per Dedicated Usage RHEL c4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "U35UAX5SUJURKCT4" : { + "U35UAX5SUJURKCT4.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "U35UAX5SUJURKCT4", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "U35UAX5SUJURKCT4.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "U35UAX5SUJURKCT4.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.338 per Dedicated Windows with SQL Web x1e.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4PRP277ZT2QSK84X" : { + "4PRP277ZT2QSK84X.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4PRP277ZT2QSK84X", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4PRP277ZT2QSK84X.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4PRP277ZT2QSK84X.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per SUSE p3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DFZPYYVFYF45BSQ3" : { + "DFZPYYVFYF45BSQ3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DFZPYYVFYF45BSQ3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DFZPYYVFYF45BSQ3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DFZPYYVFYF45BSQ3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.971 per On Demand SQL Web i2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SQD4BVC5RS7DWN7S" : { + "SQD4BVC5RS7DWN7S.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SQD4BVC5RS7DWN7S", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SQD4BVC5RS7DWN7S.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SQD4BVC5RS7DWN7S.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL p2.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "A9YZTVBT2EH2RHUW" : { + "A9YZTVBT2EH2RHUW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "A9YZTVBT2EH2RHUW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "A9YZTVBT2EH2RHUW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "A9YZTVBT2EH2RHUW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.88 per Dedicated Windows BYOL m4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XCMMYCWQYMYT84XG" : { + "XCMMYCWQYMYT84XG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XCMMYCWQYMYT84XG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XCMMYCWQYMYT84XG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XCMMYCWQYMYT84XG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.992 per On Demand Windows with SQL Server Enterprise i3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GY7YBGWY6UY9H8G3" : { + "GY7YBGWY6UY9H8G3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GY7YBGWY6UY9H8G3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GY7YBGWY6UY9H8G3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GY7YBGWY6UY9H8G3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.386 per On Demand Windows with SQL Web r3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9XSHJSECKR9ATRQG" : { + "9XSHJSECKR9ATRQG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9XSHJSECKR9ATRQG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9XSHJSECKR9ATRQG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9XSHJSECKR9ATRQG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.815 per Dedicated Linux f1.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ENS9X5UYSE8HHJGX" : { + "ENS9X5UYSE8HHJGX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ENS9X5UYSE8HHJGX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ENS9X5UYSE8HHJGX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ENS9X5UYSE8HHJGX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.083 per On Demand SQL Web c3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "G6HSPJYKGG7P9NJR" : { + "G6HSPJYKGG7P9NJR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "G6HSPJYKGG7P9NJR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "G6HSPJYKGG7P9NJR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "G6HSPJYKGG7P9NJR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL c3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JABV4QCJFZRBR8JA" : { + "JABV4QCJFZRBR8JA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JABV4QCJFZRBR8JA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JABV4QCJFZRBR8JA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JABV4QCJFZRBR8JA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$9.496 per On Demand Windows with SQL Server Enterprise d2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.4960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TA7UVX8V5EKCNAFA" : { + "TA7UVX8V5EKCNAFA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TA7UVX8V5EKCNAFA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TA7UVX8V5EKCNAFA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TA7UVX8V5EKCNAFA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.06 per Dedicated Windows BYOL c5.18xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SH6G48SE9H3R9TQT" : { + "SH6G48SE9H3R9TQT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SH6G48SE9H3R9TQT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SH6G48SE9H3R9TQT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SH6G48SE9H3R9TQT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.650 per On Demand RHEL c1.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "25T439HS4WV9KRN4" : { + "25T439HS4WV9KRN4.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "25T439HS4WV9KRN4", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "25T439HS4WV9KRN4.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "25T439HS4WV9KRN4.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.041 per Dedicated Usage Windows with SQL Std r3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NF67K4WANEWZZV22" : { + "NF67K4WANEWZZV22.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NF67K4WANEWZZV22", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NF67K4WANEWZZV22.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NF67K4WANEWZZV22.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.100 per On Demand Linux cg1.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FENJBKVQ4CNCQN3M" : { + "FENJBKVQ4CNCQN3M.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FENJBKVQ4CNCQN3M", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FENJBKVQ4CNCQN3M.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FENJBKVQ4CNCQN3M.JRTCKXETXF.6YS6EN2CT7", + "description" : "$18.704 per Dedicated Windows with SQL Web x1e.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "18.7040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UW8KGBXJYHZFRWWG" : { + "UW8KGBXJYHZFRWWG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UW8KGBXJYHZFRWWG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UW8KGBXJYHZFRWWG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UW8KGBXJYHZFRWWG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux p2.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "783XD5AJCNJSV3H7" : { + "783XD5AJCNJSV3H7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "783XD5AJCNJSV3H7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "783XD5AJCNJSV3H7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "783XD5AJCNJSV3H7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.831 per Dedicated Windows cr1.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7QQSWJDPGHJWXN69" : { + "7QQSWJDPGHJWXN69.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7QQSWJDPGHJWXN69", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7QQSWJDPGHJWXN69.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7QQSWJDPGHJWXN69.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 for 7 Gbps per p3.8xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZJE4Q2AHZQ5TC873" : { + "ZJE4Q2AHZQ5TC873.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZJE4Q2AHZQ5TC873", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZJE4Q2AHZQ5TC873.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZJE4Q2AHZQ5TC873.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.00 per Dedicated Windows BYOL m4.10xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3AJKTZTHDW42GS66" : { + "3AJKTZTHDW42GS66.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3AJKTZTHDW42GS66", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3AJKTZTHDW42GS66.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3AJKTZTHDW42GS66.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std r3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7GUHNB4GSSZNUVY2" : { + "7GUHNB4GSSZNUVY2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7GUHNB4GSSZNUVY2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7GUHNB4GSSZNUVY2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7GUHNB4GSSZNUVY2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.615 per Dedicated Usage Windows with SQL Web m3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YKZXQZPGPVZNNRHA" : { + "YKZXQZPGPVZNNRHA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YKZXQZPGPVZNNRHA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YKZXQZPGPVZNNRHA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YKZXQZPGPVZNNRHA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.270 per Dedicated Linux m2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KE8V44XRQ8CWNHEV" : { + "KE8V44XRQ8CWNHEV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KE8V44XRQ8CWNHEV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KE8V44XRQ8CWNHEV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KE8V44XRQ8CWNHEV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.795 per On Demand RHEL r3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YXVKN9CCKCPCSTST" : { + "YXVKN9CCKCPCSTST.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YXVKN9CCKCPCSTST", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YXVKN9CCKCPCSTST.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YXVKN9CCKCPCSTST.JRTCKXETXF.6YS6EN2CT7", + "description" : "$8.523 per On Demand SQL Std c3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.5230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "J7XM6UBQVT7UKF3T" : { + "J7XM6UBQVT7UKF3T.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "J7XM6UBQVT7UKF3T", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "J7XM6UBQVT7UKF3T.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "J7XM6UBQVT7UKF3T.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.219 per Dedicated Usage Windows BYOL c4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SSTT3HA4W7HHVR38" : { + "SSTT3HA4W7HHVR38.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SSTT3HA4W7HHVR38", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SSTT3HA4W7HHVR38.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SSTT3HA4W7HHVR38.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.410 per On Demand SQL Std cc2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.4100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "U3KDJRF6FGANNG5Z" : { + "U3KDJRF6FGANNG5Z.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "U3KDJRF6FGANNG5Z", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "U3KDJRF6FGANNG5Z.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "U3KDJRF6FGANNG5Z.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.166 per On Demand Linux r3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FMGXVRPJP5ZBNB2U" : { + "FMGXVRPJP5ZBNB2U.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FMGXVRPJP5ZBNB2U", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FMGXVRPJP5ZBNB2U.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FMGXVRPJP5ZBNB2U.JRTCKXETXF.6YS6EN2CT7", + "description" : "$5.52 per Dedicated Usage Linux d2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.5200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PH52NYAMKMVT6ARR" : { + "PH52NYAMKMVT6ARR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PH52NYAMKMVT6ARR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PH52NYAMKMVT6ARR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PH52NYAMKMVT6ARR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$21.392 per Dedicated Usage Windows with SQL Server Enterprise p2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "21.3920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8QXEMJ9C47K755H8" : { + "8QXEMJ9C47K755H8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8QXEMJ9C47K755H8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8QXEMJ9C47K755H8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8QXEMJ9C47K755H8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.259 per Dedicated Windows BYOL p3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RSMWKBGGTAAEV4RH" : { + "RSMWKBGGTAAEV4RH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RSMWKBGGTAAEV4RH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RSMWKBGGTAAEV4RH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RSMWKBGGTAAEV4RH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.28 per On Demand Linux g3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "URH8Q5S2UVXB3ZCQ" : { + "URH8Q5S2UVXB3ZCQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "URH8Q5S2UVXB3ZCQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "URH8Q5S2UVXB3ZCQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "URH8Q5S2UVXB3ZCQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL d2.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VRCAUVZXNVUK48Y2" : { + "VRCAUVZXNVUK48Y2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VRCAUVZXNVUK48Y2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VRCAUVZXNVUK48Y2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VRCAUVZXNVUK48Y2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per SUSE i3.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "725FHGTUB3P2B9EU" : { + "725FHGTUB3P2B9EU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "725FHGTUB3P2B9EU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "725FHGTUB3P2B9EU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "725FHGTUB3P2B9EU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per GB - US East (Northern Virginia) data transfer from EU (Ireland)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SESWDZQB6R8ZGXJK" : { + "SESWDZQB6R8ZGXJK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SESWDZQB6R8ZGXJK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SESWDZQB6R8ZGXJK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SESWDZQB6R8ZGXJK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows c5.18xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FXKTTJ7YWYEXQKUG" : { + "FXKTTJ7YWYEXQKUG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FXKTTJ7YWYEXQKUG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FXKTTJ7YWYEXQKUG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FXKTTJ7YWYEXQKUG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise r4.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ASB6HFGHT3SUVED9" : { + "ASB6HFGHT3SUVED9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ASB6HFGHT3SUVED9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ASB6HFGHT3SUVED9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ASB6HFGHT3SUVED9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.780 per On Demand SUSE c3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "K7CXCBYXYBR3P73G" : { + "K7CXCBYXYBR3P73G.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "K7CXCBYXYBR3P73G", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "K7CXCBYXYBR3P73G.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "K7CXCBYXYBR3P73G.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.751 per Dedicated Windows BYOL i2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "385ZWS8QDHMYGMFJ" : { + "385ZWS8QDHMYGMFJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "385ZWS8QDHMYGMFJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "385ZWS8QDHMYGMFJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "385ZWS8QDHMYGMFJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.6 per Dedicated Windows BYOL g2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "A3CMMJ5XHG8YDXAU" : { + "A3CMMJ5XHG8YDXAU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "A3CMMJ5XHG8YDXAU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "A3CMMJ5XHG8YDXAU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "A3CMMJ5XHG8YDXAU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.045 per On Demand Windows r3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SVFBAAERCQTFD96J" : { + "SVFBAAERCQTFD96J.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SVFBAAERCQTFD96J", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SVFBAAERCQTFD96J.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SVFBAAERCQTFD96J.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.728 per Dedicated Windows with SQL Server Enterprise c5.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "33FHBWNHWMUJDK7G" : { + "33FHBWNHWMUJDK7G.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "33FHBWNHWMUJDK7G", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "33FHBWNHWMUJDK7G.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "33FHBWNHWMUJDK7G.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 for 1000 Mbps per c4.2xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "WQS4N692QYT65JPA" : { + "WQS4N692QYT65JPA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "WQS4N692QYT65JPA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "WQS4N692QYT65JPA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "WQS4N692QYT65JPA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.585 per Dedicated Usage Windows BYOL r4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5E4JKRKRN35X4R5X" : { + "5E4JKRKRN35X4R5X.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5E4JKRKRN35X4R5X", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5E4JKRKRN35X4R5X.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5E4JKRKRN35X4R5X.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Linux c5.9xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NR96G3WS4WXEXUW4" : { + "NR96G3WS4WXEXUW4.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NR96G3WS4WXEXUW4", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NR96G3WS4WXEXUW4.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NR96G3WS4WXEXUW4.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.332 per Dedicated SQL Web c3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.3320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "87NE3BBF7KA8H7NM" : { + "87NE3BBF7KA8H7NM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "87NE3BBF7KA8H7NM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "87NE3BBF7KA8H7NM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "87NE3BBF7KA8H7NM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL c3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "245DEJZVP4HBBUX3" : { + "245DEJZVP4HBBUX3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "245DEJZVP4HBBUX3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "245DEJZVP4HBBUX3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "245DEJZVP4HBBUX3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per RHEL p3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QFJGATXWKZNECDMG" : { + "QFJGATXWKZNECDMG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QFJGATXWKZNECDMG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QFJGATXWKZNECDMG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QFJGATXWKZNECDMG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.721 per Dedicated Windows BYOL c5.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "W7AKAG7V86UE38RF" : { + "W7AKAG7V86UE38RF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "W7AKAG7V86UE38RF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "W7AKAG7V86UE38RF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "W7AKAG7V86UE38RF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.332 per On Demand SQL Web c3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.3320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "H9KMFFHRW3R5NVSJ" : { + "H9KMFFHRW3R5NVSJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "H9KMFFHRW3R5NVSJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "H9KMFFHRW3R5NVSJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "H9KMFFHRW3R5NVSJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$20.811 per Dedicated Windows with SQL Server Enterprise x1e.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "20.8110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UKGSFRXY8AQU42DQ" : { + "UKGSFRXY8AQU42DQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UKGSFRXY8AQU42DQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UKGSFRXY8AQU42DQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UKGSFRXY8AQU42DQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows c5.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BGEHNPNUMJPPS6UY" : { + "BGEHNPNUMJPPS6UY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BGEHNPNUMJPPS6UY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BGEHNPNUMJPPS6UY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BGEHNPNUMJPPS6UY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows x1e.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "K8E96EKZVDS2C7SM" : { + "K8E96EKZVDS2C7SM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "K8E96EKZVDS2C7SM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "K8E96EKZVDS2C7SM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "K8E96EKZVDS2C7SM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL m4.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "M6T9NG7HTENPGTMK" : { + "M6T9NG7HTENPGTMK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "M6T9NG7HTENPGTMK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "M6T9NG7HTENPGTMK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "M6T9NG7HTENPGTMK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$20.676 per Dedicated Usage Windows with SQL Server Enterprise d2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "20.6760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "62G57MU6KCQ2AQS8" : { + "62G57MU6KCQ2AQS8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "62G57MU6KCQ2AQS8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "62G57MU6KCQ2AQS8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "62G57MU6KCQ2AQS8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.080 per On Demand RHEL t1.micro Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "378CVEQGDCKSJYEU" : { + "378CVEQGDCKSJYEU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "378CVEQGDCKSJYEU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "378CVEQGDCKSJYEU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "378CVEQGDCKSJYEU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows p2.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6NDY9AE4VQNGEMV4" : { + "6NDY9AE4VQNGEMV4.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6NDY9AE4VQNGEMV4", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6NDY9AE4VQNGEMV4.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6NDY9AE4VQNGEMV4.JRTCKXETXF.6YS6EN2CT7", + "description" : "$33.372 per Dedicated Windows with SQL Server Enterprise c5.18xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "33.3720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TT84KWCJTYXTFX54" : { + "TT84KWCJTYXTFX54.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TT84KWCJTYXTFX54", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TT84KWCJTYXTFX54.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TT84KWCJTYXTFX54.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.432 per Dedicated Windows with SQL Web c5.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "WN9SBQRYAU953YAV" : { + "WN9SBQRYAU953YAV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "WN9SBQRYAU953YAV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "WN9SBQRYAU953YAV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "WN9SBQRYAU953YAV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL c3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4WS6PX29WVZCPFGT" : { + "4WS6PX29WVZCPFGT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4WS6PX29WVZCPFGT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4WS6PX29WVZCPFGT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4WS6PX29WVZCPFGT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.270 per Dedicated Windows BYOL m2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RKCQDTMY5DZS4JWT" : { + "RKCQDTMY5DZS4JWT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RKCQDTMY5DZS4JWT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RKCQDTMY5DZS4JWT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RKCQDTMY5DZS4JWT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.980 per On Demand Linux m2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5P8A9S7FHZ9Q44SE" : { + "5P8A9S7FHZ9Q44SE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5P8A9S7FHZ9Q44SE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5P8A9S7FHZ9Q44SE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5P8A9S7FHZ9Q44SE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$24.48 per Dedicated Windows BYOL p3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "24.4800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EU9WUWRRH3Z8Z25B" : { + "EU9WUWRRH3Z8Z25B.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EU9WUWRRH3Z8Z25B", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EU9WUWRRH3Z8Z25B.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EU9WUWRRH3Z8Z25B.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows r3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2WVXMQUWAFQDPJNS" : { + "2WVXMQUWAFQDPJNS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2WVXMQUWAFQDPJNS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2WVXMQUWAFQDPJNS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2WVXMQUWAFQDPJNS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.532 per On Demand Windows with SQL Std m3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Q48JUPPFZD9KDMH3" : { + "Q48JUPPFZD9KDMH3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Q48JUPPFZD9KDMH3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Q48JUPPFZD9KDMH3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Q48JUPPFZD9KDMH3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.46 per Dedicated SUSE c5.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QG5G45WKDWDDHTFV" : { + "QG5G45WKDWDDHTFV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QG5G45WKDWDDHTFV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QG5G45WKDWDDHTFV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QG5G45WKDWDDHTFV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.0928 per On Demand Linux t2.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0928000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3A65FUFDYWGRUUNU" : { + "3A65FUFDYWGRUUNU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3A65FUFDYWGRUUNU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3A65FUFDYWGRUUNU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3A65FUFDYWGRUUNU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.686 per Dedicated Windows BYOL i3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TSQYYQMSKWVB64XU" : { + "TSQYYQMSKWVB64XU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TSQYYQMSKWVB64XU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TSQYYQMSKWVB64XU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TSQYYQMSKWVB64XU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.73 per On Demand RHEL g2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YP54Q9FFYE6AUN7A" : { + "YP54Q9FFYE6AUN7A.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YP54Q9FFYE6AUN7A", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YP54Q9FFYE6AUN7A.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YP54Q9FFYE6AUN7A.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.7183 per Dedicated Windows with SQL Std r4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7183000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZVXTQDHA6WPZ4MZA" : { + "ZVXTQDHA6WPZ4MZA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZVXTQDHA6WPZ4MZA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZVXTQDHA6WPZ4MZA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZVXTQDHA6WPZ4MZA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.05 for 1000 Mbps per c3.2xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3JTKQKQVWWVVZF93" : { + "3JTKQKQVWWVVZF93.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3JTKQKQVWWVVZF93", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3JTKQKQVWWVVZF93.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3JTKQKQVWWVVZF93.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE m4.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5MJUCCSSP8MZ34U5" : { + "5MJUCCSSP8MZ34U5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5MJUCCSSP8MZ34U5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5MJUCCSSP8MZ34U5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5MJUCCSSP8MZ34U5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.310 per On Demand SUSE c3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TUK52HKAU24AGZAB" : { + "TUK52HKAU24AGZAB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TUK52HKAU24AGZAB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TUK52HKAU24AGZAB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TUK52HKAU24AGZAB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.331 per On Demand Windows with SQL Web c4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4CYRKREB7U8REQP5" : { + "4CYRKREB7U8REQP5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4CYRKREB7U8REQP5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4CYRKREB7U8REQP5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4CYRKREB7U8REQP5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.374 per On Demand Windows with SQL Server Enterprise d2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "M3C347MWQ8PPQ83Q" : { + "M3C347MWQ8PPQ83Q.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "M3C347MWQ8PPQ83Q", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "M3C347MWQ8PPQ83Q.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "M3C347MWQ8PPQ83Q.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE c4.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7H3YAVFCE5P4TFBT" : { + "7H3YAVFCE5P4TFBT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7H3YAVFCE5P4TFBT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7H3YAVFCE5P4TFBT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7H3YAVFCE5P4TFBT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$15.012 per On Demand Windows with SQL Std c5.18xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.0120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PYM3KA9YWBXZT4WT" : { + "PYM3KA9YWBXZT4WT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PYM3KA9YWBXZT4WT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PYM3KA9YWBXZT4WT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PYM3KA9YWBXZT4WT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.765 per On Demand SUSE r3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "V9ZFC4WMNYSWFHRQ" : { + "V9ZFC4WMNYSWFHRQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "V9ZFC4WMNYSWFHRQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "V9ZFC4WMNYSWFHRQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "V9ZFC4WMNYSWFHRQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows d2.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UA3JWMHE5JCMQN3Z" : { + "UA3JWMHE5JCMQN3Z.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UA3JWMHE5JCMQN3Z", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UA3JWMHE5JCMQN3Z.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UA3JWMHE5JCMQN3Z.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.538 per Dedicated Usage SUSE c4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GN43Y4P6APPBFGM8" : { + "GN43Y4P6APPBFGM8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GN43Y4P6APPBFGM8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GN43Y4P6APPBFGM8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GN43Y4P6APPBFGM8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$8.523 per Dedicated SQL Std c3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.5230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UEJ864RYGQM7EWS4" : { + "UEJ864RYGQM7EWS4.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UEJ864RYGQM7EWS4", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UEJ864RYGQM7EWS4.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UEJ864RYGQM7EWS4.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.13 per On Demand Windows BYOL c1.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Z35WNPQJZZCRRJYH" : { + "Z35WNPQJZZCRRJYH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Z35WNPQJZZCRRJYH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Z35WNPQJZZCRRJYH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Z35WNPQJZZCRRJYH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.690 per On Demand Windows m2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SNK426EAU6XEHU6F" : { + "SNK426EAU6XEHU6F.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SNK426EAU6XEHU6F", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SNK426EAU6XEHU6F.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SNK426EAU6XEHU6F.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.22 per Dedicated Windows BYOL m4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5N3MEPSFNAD33R3K" : { + "5N3MEPSFNAD33R3K.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5N3MEPSFNAD33R3K", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5N3MEPSFNAD33R3K.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5N3MEPSFNAD33R3K.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.624 per On Demand Windows BYOL i3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9VUNFNF2X9X7UC95" : { + "9VUNFNF2X9X7UC95.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9VUNFNF2X9X7UC95", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9VUNFNF2X9X7UC95.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9VUNFNF2X9X7UC95.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE r3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MTH9HCPYR8DT5RJ2" : { + "MTH9HCPYR8DT5RJ2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MTH9HCPYR8DT5RJ2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MTH9HCPYR8DT5RJ2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MTH9HCPYR8DT5RJ2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.414 per Dedicated Windows c3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "W58JQDZKEMS87E3Y" : { + "W58JQDZKEMS87E3Y.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "W58JQDZKEMS87E3Y", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "W58JQDZKEMS87E3Y.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "W58JQDZKEMS87E3Y.JRTCKXETXF.6YS6EN2CT7", + "description" : "$26.688 per Dedicated Linux x1e.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "26.6880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XGBGHMXAG9HECAGE" : { + "XGBGHMXAG9HECAGE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XGBGHMXAG9HECAGE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XGBGHMXAG9HECAGE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XGBGHMXAG9HECAGE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows d2.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NQXBP3Y49DB4QUFW" : { + "NQXBP3Y49DB4QUFW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NQXBP3Y49DB4QUFW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NQXBP3Y49DB4QUFW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NQXBP3Y49DB4QUFW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std r3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HKQX2V6VYDVCQE4V" : { + "HKQX2V6VYDVCQE4V.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HKQX2V6VYDVCQE4V", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HKQX2V6VYDVCQE4V.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HKQX2V6VYDVCQE4V.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.000 per Dedicated Windows BYOL cc2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7WXY6Y9EMWKMGGWT" : { + "7WXY6Y9EMWKMGGWT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7WXY6Y9EMWKMGGWT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7WXY6Y9EMWKMGGWT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7WXY6Y9EMWKMGGWT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.466 per Dedicated Usage SUSE r3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6AHJNWJK7N3CKJ6D" : { + "6AHJNWJK7N3CKJ6D.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6AHJNWJK7N3CKJ6D", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6AHJNWJK7N3CKJ6D.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6AHJNWJK7N3CKJ6D.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.794 per On Demand Windows with SQL Web c5.9xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "77H9Y9KFP98VPQ8Y" : { + "77H9Y9KFP98VPQ8Y.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "77H9Y9KFP98VPQ8Y", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "77H9Y9KFP98VPQ8Y.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "77H9Y9KFP98VPQ8Y.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE r4.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PYHA3PVTP85MS7AS" : { + "PYHA3PVTP85MS7AS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PYHA3PVTP85MS7AS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PYHA3PVTP85MS7AS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PYHA3PVTP85MS7AS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise r3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "WWYHV89KB5YJVTSF" : { + "WWYHV89KB5YJVTSF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "WWYHV89KB5YJVTSF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "WWYHV89KB5YJVTSF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "WWYHV89KB5YJVTSF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.744 per Dedicated Windows with SQL Std i3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5QUVP6VPNFNBWMDW" : { + "5QUVP6VPNFNBWMDW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5QUVP6VPNFNBWMDW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5QUVP6VPNFNBWMDW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5QUVP6VPNFNBWMDW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.14 per On Demand Windows BYOL g3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FSV8GFFRA53K2PPC" : { + "FSV8GFFRA53K2PPC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FSV8GFFRA53K2PPC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FSV8GFFRA53K2PPC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FSV8GFFRA53K2PPC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per SUSE x1e.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "979YHCUCHTSAM3HF" : { + "979YHCUCHTSAM3HF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "979YHCUCHTSAM3HF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "979YHCUCHTSAM3HF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "979YHCUCHTSAM3HF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$6.920 per On Demand SUSE i2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.9200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5WWYB7MN3STCHEGY" : { + "5WWYB7MN3STCHEGY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5WWYB7MN3STCHEGY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5WWYB7MN3STCHEGY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5WWYB7MN3STCHEGY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL r4.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TJYZERFDZ38JVQQW" : { + "TJYZERFDZ38JVQQW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TJYZERFDZ38JVQQW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TJYZERFDZ38JVQQW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TJYZERFDZ38JVQQW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.998 per Dedicated RHEL i2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AYSR4P45C3BGQFUC" : { + "AYSR4P45C3BGQFUC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AYSR4P45C3BGQFUC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AYSR4P45C3BGQFUC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AYSR4P45C3BGQFUC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.864 per Dedicated Windows with SQL Server Enterprise c5.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PM7SF7GUUSEM94ZC" : { + "PM7SF7GUUSEM94ZC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PM7SF7GUUSEM94ZC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PM7SF7GUUSEM94ZC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PM7SF7GUUSEM94ZC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.14 per GB - Asia Pacific (Sydney) data transfer to US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.1400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8EJJ843PNMRKMSZC" : { + "8EJJ843PNMRKMSZC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8EJJ843PNMRKMSZC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8EJJ843PNMRKMSZC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8EJJ843PNMRKMSZC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.070 per On Demand SQL Web t1.micro Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SM2N6WCVK5EXAYJ9" : { + "SM2N6WCVK5EXAYJ9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SM2N6WCVK5EXAYJ9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SM2N6WCVK5EXAYJ9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SM2N6WCVK5EXAYJ9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.840 per On Demand Windows c1.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CGJXHFUSGE546RV6" : { + "CGJXHFUSGE546RV6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CGJXHFUSGE546RV6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CGJXHFUSGE546RV6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CGJXHFUSGE546RV6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.133 per On Demand Linux r4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3ARUYSTGB7ZSA582" : { + "3ARUYSTGB7ZSA582.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3ARUYSTGB7ZSA582", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3ARUYSTGB7ZSA582.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3ARUYSTGB7ZSA582.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.05 for 1000 Mbps per m2.4xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "K4QSF4H4QQGJSSK7" : { + "K4QSF4H4QQGJSSK7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "K4QSF4H4QQGJSSK7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "K4QSF4H4QQGJSSK7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "K4QSF4H4QQGJSSK7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$14.53 per On Demand RHEL p2.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.5300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5GXT3Y9MYUCWS59J" : { + "5GXT3Y9MYUCWS59J.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5GXT3Y9MYUCWS59J", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5GXT3Y9MYUCWS59J.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5GXT3Y9MYUCWS59J.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux m3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HZEF7XT3HAKD5NEZ" : { + "HZEF7XT3HAKD5NEZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HZEF7XT3HAKD5NEZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HZEF7XT3HAKD5NEZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HZEF7XT3HAKD5NEZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.183 per Dedicated Usage Linux r3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JVT9JXEVPBRUMA3N" : { + "JVT9JXEVPBRUMA3N.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JVT9JXEVPBRUMA3N", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JVT9JXEVPBRUMA3N.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JVT9JXEVPBRUMA3N.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.156 per On Demand Linux i3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5R3VUZC6A5EED78S" : { + "5R3VUZC6A5EED78S.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5R3VUZC6A5EED78S", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5R3VUZC6A5EED78S.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5R3VUZC6A5EED78S.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.518 per On Demand Windows with SQL Server Enterprise x1e.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "D9S2YAG2HUF7C3PC" : { + "D9S2YAG2HUF7C3PC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "D9S2YAG2HUF7C3PC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "D9S2YAG2HUF7C3PC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "D9S2YAG2HUF7C3PC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.074 per Dedicated Usage Linux m3.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MJJTVPTXAH26VK8A" : { + "MJJTVPTXAH26VK8A.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MJJTVPTXAH26VK8A", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MJJTVPTXAH26VK8A.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MJJTVPTXAH26VK8A.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.11 per Dedicated Usage Windows BYOL c4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2ZE6H5B8N6EJTXEZ" : { + "2ZE6H5B8N6EJTXEZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2ZE6H5B8N6EJTXEZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2ZE6H5B8N6EJTXEZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2ZE6H5B8N6EJTXEZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.38 per On Demand Windows BYOL d2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "85VBBX5K6EY4TRRG" : { + "85VBBX5K6EY4TRRG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "85VBBX5K6EY4TRRG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "85VBBX5K6EY4TRRG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "85VBBX5K6EY4TRRG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.516 per Dedicated Usage Windows with SQL Std r3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UFN38GHQREY7C7SB" : { + "UFN38GHQREY7C7SB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UFN38GHQREY7C7SB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UFN38GHQREY7C7SB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UFN38GHQREY7C7SB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL p2.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "T55J69CYMKUV3MQC" : { + "T55J69CYMKUV3MQC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "T55J69CYMKUV3MQC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "T55J69CYMKUV3MQC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "T55J69CYMKUV3MQC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.15 per Dedicated Usage Windows r3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4EJ6YKYP3U22GDYZ" : { + "4EJ6YKYP3U22GDYZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4EJ6YKYP3U22GDYZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4EJ6YKYP3U22GDYZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4EJ6YKYP3U22GDYZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.53 per On Demand Linux c5.9xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3XXW5XAES8B7AAAP" : { + "3XXW5XAES8B7AAAP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3XXW5XAES8B7AAAP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3XXW5XAES8B7AAAP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3XXW5XAES8B7AAAP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.341 per Dedicated Usage Linux r4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZU8N8MJR36FHWUGA" : { + "ZU8N8MJR36FHWUGA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZU8N8MJR36FHWUGA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZU8N8MJR36FHWUGA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZU8N8MJR36FHWUGA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.230 per On Demand RHEL cg1.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "R9EGFXUGURH2UNA2" : { + "R9EGFXUGURH2UNA2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "R9EGFXUGURH2UNA2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "R9EGFXUGURH2UNA2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "R9EGFXUGURH2UNA2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.059 per Dedicated Usage Windows with SQL Std c4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ATA6MJZDUQ53CRMP" : { + "ATA6MJZDUQ53CRMP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ATA6MJZDUQ53CRMP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ATA6MJZDUQ53CRMP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ATA6MJZDUQ53CRMP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.261 per Dedicated SQL Web m1.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "P2X2N5M2PU9A9XS4" : { + "P2X2N5M2PU9A9XS4.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "P2X2N5M2PU9A9XS4", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "P2X2N5M2PU9A9XS4.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "P2X2N5M2PU9A9XS4.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.825 per Dedicated Usage RHEL d2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "63ADXUYM8Q7RHXYU" : { + "63ADXUYM8Q7RHXYU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "63ADXUYM8Q7RHXYU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "63ADXUYM8Q7RHXYU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "63ADXUYM8Q7RHXYU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$5.65 per On Demand RHEL d2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.6500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YMRN5MTGT97CSMR5" : { + "YMRN5MTGT97CSMR5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YMRN5MTGT97CSMR5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YMRN5MTGT97CSMR5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YMRN5MTGT97CSMR5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.167 per On Demand SUSE m3.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YY6BTZ5HW8FD5V6Q" : { + "YY6BTZ5HW8FD5V6Q.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YY6BTZ5HW8FD5V6Q", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YY6BTZ5HW8FD5V6Q.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YY6BTZ5HW8FD5V6Q.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE d2.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Z73XYJRRH5CMMR8R" : { + "Z73XYJRRH5CMMR8R.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Z73XYJRRH5CMMR8R", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Z73XYJRRH5CMMR8R.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Z73XYJRRH5CMMR8R.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.687 per Dedicated Usage Windows with SQL Web c4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VMRHNZ3YYYGM22ZW" : { + "VMRHNZ3YYYGM22ZW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VMRHNZ3YYYGM22ZW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VMRHNZ3YYYGM22ZW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VMRHNZ3YYYGM22ZW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.86 per On Demand G2 Dedicated Host Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FCJS875MBNBNKGZB" : { + "FCJS875MBNBNKGZB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FCJS875MBNBNKGZB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FCJS875MBNBNKGZB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FCJS875MBNBNKGZB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Web x1e.32xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZQ8ZP9Y9DGFD6M45" : { + "ZQ8ZP9Y9DGFD6M45.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZQ8ZP9Y9DGFD6M45", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZQ8ZP9Y9DGFD6M45.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZQ8ZP9Y9DGFD6M45.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.949 per Dedicated Windows with SQL Web m4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YHVCZK7UAVDZMX92" : { + "YHVCZK7UAVDZMX92.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YHVCZK7UAVDZMX92", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YHVCZK7UAVDZMX92.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YHVCZK7UAVDZMX92.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.410 per Dedicated SQL Std cc2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.4100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FP9695TT873RFND7" : { + "FP9695TT873RFND7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FP9695TT873RFND7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FP9695TT873RFND7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FP9695TT873RFND7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.591 per Dedicated Usage Linux c4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YPB7U95RTVHKX59T" : { + "YPB7U95RTVHKX59T.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YPB7U95RTVHKX59T", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YPB7U95RTVHKX59T.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YPB7U95RTVHKX59T.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Web c5.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DJHEPZFBQWFDH3PZ" : { + "DJHEPZFBQWFDH3PZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DJHEPZFBQWFDH3PZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DJHEPZFBQWFDH3PZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DJHEPZFBQWFDH3PZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per RHEL f1.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QTBCAR9ZB82ZM54B" : { + "QTBCAR9ZB82ZM54B.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QTBCAR9ZB82ZM54B", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QTBCAR9ZB82ZM54B.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QTBCAR9ZB82ZM54B.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web m4.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SVSVP5FJUTSNJXNJ" : { + "SVSVP5FJUTSNJXNJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SVSVP5FJUTSNJXNJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SVSVP5FJUTSNJXNJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SVSVP5FJUTSNJXNJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per RHEL x1e.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZY733QB4MX5V3J68" : { + "ZY733QB4MX5V3J68.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZY733QB4MX5V3J68", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZY733QB4MX5V3J68.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZY733QB4MX5V3J68.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.0716 per On Demand RHEL t2.micro Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0716000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9HFHK6RECZZ4W92B" : { + "9HFHK6RECZZ4W92B.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9HFHK6RECZZ4W92B", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9HFHK6RECZZ4W92B.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9HFHK6RECZZ4W92B.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.018 per On Demand Windows x1e.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NA5BT4DMBGMMK5MT" : { + "NA5BT4DMBGMMK5MT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NA5BT4DMBGMMK5MT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NA5BT4DMBGMMK5MT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NA5BT4DMBGMMK5MT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.005 per Additional Elastic IP address attached to a running instance per hour (prorated)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8CXE6S2Y9CVQRTRQ" : { + "8CXE6S2Y9CVQRTRQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8CXE6S2Y9CVQRTRQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8CXE6S2Y9CVQRTRQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8CXE6S2Y9CVQRTRQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.341 per On Demand M3 Dedicated Host Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AD2QCCRBSPBJMXXV" : { + "AD2QCCRBSPBJMXXV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AD2QCCRBSPBJMXXV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AD2QCCRBSPBJMXXV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AD2QCCRBSPBJMXXV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.044 per On Demand Windows BYOL m1.small Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GXJXWPH2ZPJQ8XXJ" : { + "GXJXWPH2ZPJQ8XXJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GXJXWPH2ZPJQ8XXJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GXJXWPH2ZPJQ8XXJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GXJXWPH2ZPJQ8XXJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows r4.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "U69YCUGUWRE45CVF" : { + "U69YCUGUWRE45CVF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "U69YCUGUWRE45CVF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "U69YCUGUWRE45CVF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "U69YCUGUWRE45CVF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.715 per Dedicated Linux g2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TCSVX6EBPRF578KP" : { + "TCSVX6EBPRF578KP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TCSVX6EBPRF578KP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TCSVX6EBPRF578KP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TCSVX6EBPRF578KP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per RHEL x1e.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9DK6BK45W6CJ9A5X" : { + "9DK6BK45W6CJ9A5X.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9DK6BK45W6CJ9A5X", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9DK6BK45W6CJ9A5X.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9DK6BK45W6CJ9A5X.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.165 per On Demand RHEL c3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2EKFX2CKSTAYWT4G" : { + "2EKFX2CKSTAYWT4G.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2EKFX2CKSTAYWT4G", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2EKFX2CKSTAYWT4G.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2EKFX2CKSTAYWT4G.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.854 per On Demand Windows with SQL Server Enterprise c5.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZDQ8JPG9VUPFXHXJ" : { + "ZDQ8JPG9VUPFXHXJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZDQ8JPG9VUPFXHXJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZDQ8JPG9VUPFXHXJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZDQ8JPG9VUPFXHXJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$13.444 per On Demand SUSE x1e.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.4440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3A8W7GXJJKZB5V45" : { + "3A8W7GXJJKZB5V45.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3A8W7GXJJKZB5V45", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3A8W7GXJJKZB5V45.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3A8W7GXJJKZB5V45.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.253 per Dedicated RHEL m1.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9MCJXY6ZTFBSRNZB" : { + "9MCJXY6ZTFBSRNZB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9MCJXY6ZTFBSRNZB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9MCJXY6ZTFBSRNZB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9MCJXY6ZTFBSRNZB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.130 per On Demand RHEL cc2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CXWQTSDJMF3AP864" : { + "CXWQTSDJMF3AP864.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CXWQTSDJMF3AP864", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CXWQTSDJMF3AP864.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CXWQTSDJMF3AP864.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.945 per Dedicated RHEL f1.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "X67HWFH8QVT6NSW7" : { + "X67HWFH8QVT6NSW7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "X67HWFH8QVT6NSW7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "X67HWFH8QVT6NSW7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "X67HWFH8QVT6NSW7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.02 per GB - US East (Northern Virginia) data transfer to South America (Sao Paulo)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RTF2UNENTQNKBZS3" : { + "RTF2UNENTQNKBZS3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RTF2UNENTQNKBZS3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RTF2UNENTQNKBZS3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RTF2UNENTQNKBZS3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.266 per On Demand Windows with SQL Web i3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "84EGZ3JUNG2TSSNT" : { + "84EGZ3JUNG2TSSNT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "84EGZ3JUNG2TSSNT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "84EGZ3JUNG2TSSNT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "84EGZ3JUNG2TSSNT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL r4.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JRQSPKHTPKSDNFSM" : { + "JRQSPKHTPKSDNFSM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JRQSPKHTPKSDNFSM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JRQSPKHTPKSDNFSM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JRQSPKHTPKSDNFSM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.456 per On Demand Windows with SQL Std m4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GSFCFZ283SFGMM8F" : { + "GSFCFZ283SFGMM8F.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GSFCFZ283SFGMM8F", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GSFCFZ283SFGMM8F.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GSFCFZ283SFGMM8F.JRTCKXETXF.6YS6EN2CT7", + "description" : "$6.144 per Dedicated Windows m4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.1440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "B36TB4HQKCE3PSVX" : { + "B36TB4HQKCE3PSVX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "B36TB4HQKCE3PSVX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "B36TB4HQKCE3PSVX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "B36TB4HQKCE3PSVX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per GB - Asia Pacific (Mumbai) data transfer from US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Z8YWRZHR75GJ2KSV" : { + "Z8YWRZHR75GJ2KSV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Z8YWRZHR75GJ2KSV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Z8YWRZHR75GJ2KSV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Z8YWRZHR75GJ2KSV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.850 per On Demand SQL Std cg1.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "X894WEFHKGGUVR52" : { + "X894WEFHKGGUVR52.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "X894WEFHKGGUVR52", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "X894WEFHKGGUVR52.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "X894WEFHKGGUVR52.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.66 per Dedicated Usage Linux r3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VMVDDQB5JVUS29SY" : { + "VMVDDQB5JVUS29SY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VMVDDQB5JVUS29SY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VMVDDQB5JVUS29SY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VMVDDQB5JVUS29SY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.218 per Dedicated Windows i3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZK49TH4Z5ZFFPMXJ" : { + "ZK49TH4Z5ZFFPMXJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZK49TH4Z5ZFFPMXJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZK49TH4Z5ZFFPMXJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZK49TH4Z5ZFFPMXJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.100 per Dedicated Linux cg1.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PA99ECAE74DADX5J" : { + "PA99ECAE74DADX5J.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PA99ECAE74DADX5J", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PA99ECAE74DADX5J.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PA99ECAE74DADX5J.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.991 per Dedicated Usage Windows with SQL Web c4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "883Q8VPBXGCX7MQC" : { + "883Q8VPBXGCX7MQC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "883Q8VPBXGCX7MQC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "883Q8VPBXGCX7MQC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "883Q8VPBXGCX7MQC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std i2.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6MAMZMQ6FM3UK7P6" : { + "6MAMZMQ6FM3UK7P6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6MAMZMQ6FM3UK7P6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6MAMZMQ6FM3UK7P6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6MAMZMQ6FM3UK7P6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.258 per On Demand RHEL r4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9V4P3HXFJR9R93QT" : { + "9V4P3HXFJR9R93QT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9V4P3HXFJR9R93QT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9V4P3HXFJR9R93QT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9V4P3HXFJR9R93QT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.064 per On Demand Windows BYOL r4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5TGRKMTBQMH42KUS" : { + "5TGRKMTBQMH42KUS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5TGRKMTBQMH42KUS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5TGRKMTBQMH42KUS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5TGRKMTBQMH42KUS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.373 per Dedicated Linux i3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "385FHNM4MG8P3KGR" : { + "385FHNM4MG8P3KGR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "385FHNM4MG8P3KGR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "385FHNM4MG8P3KGR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "385FHNM4MG8P3KGR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$10.487 per Dedicated Usage Windows with SQL Server Enterprise i2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.4870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2T92AZQGNFAQHEXW" : { + "2T92AZQGNFAQHEXW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2T92AZQGNFAQHEXW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2T92AZQGNFAQHEXW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2T92AZQGNFAQHEXW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.02 per GB - US East (Northern Virginia) data transfer to Asia Pacific (Singapore)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "33PWMNWFU7HHUVCS" : { + "33PWMNWFU7HHUVCS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "33PWMNWFU7HHUVCS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "33PWMNWFU7HHUVCS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "33PWMNWFU7HHUVCS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Std i3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MU4QGTJYWR6T73MZ" : { + "MU4QGTJYWR6T73MZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MU4QGTJYWR6T73MZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MU4QGTJYWR6T73MZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MU4QGTJYWR6T73MZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.705 per On Demand Linux i2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "V6W3V2B2AEWTCSUG" : { + "V6W3V2B2AEWTCSUG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "V6W3V2B2AEWTCSUG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "V6W3V2B2AEWTCSUG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "V6W3V2B2AEWTCSUG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows c5.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8SPMKN7PWFUUUK25" : { + "8SPMKN7PWFUUUK25.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8SPMKN7PWFUUUK25", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8SPMKN7PWFUUUK25.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8SPMKN7PWFUUUK25.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.926 per On Demand RHEL c4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2YVYS3RPY25EY4XR" : { + "2YVYS3RPY25EY4XR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2YVYS3RPY25EY4XR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2YVYS3RPY25EY4XR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2YVYS3RPY25EY4XR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE m4.10xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YQXXJJ49N744B7HM" : { + "YQXXJJ49N744B7HM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YQXXJJ49N744B7HM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YQXXJJ49N744B7HM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YQXXJJ49N744B7HM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.259 per Dedicated Linux p3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "K7D23FF53A36EYWB" : { + "K7D23FF53A36EYWB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "K7D23FF53A36EYWB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "K7D23FF53A36EYWB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "K7D23FF53A36EYWB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows r4.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5KPPP37EUJ6SDK38" : { + "5KPPP37EUJ6SDK38.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5KPPP37EUJ6SDK38", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5KPPP37EUJ6SDK38.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5KPPP37EUJ6SDK38.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.768 per On Demand Windows with SQL Server Enterprise m4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "87S4RVHRSZ8J8ZD5" : { + "87S4RVHRSZ8J8ZD5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "87S4RVHRSZ8J8ZD5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "87S4RVHRSZ8J8ZD5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "87S4RVHRSZ8J8ZD5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Linux c5.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CW2JQMRMB2W7GWB3" : { + "CW2JQMRMB2W7GWB3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CW2JQMRMB2W7GWB3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CW2JQMRMB2W7GWB3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CW2JQMRMB2W7GWB3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.468 per On Demand Windows with SQL Web m3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DNQP3UURB2QMZNV3" : { + "DNQP3UURB2QMZNV3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DNQP3UURB2QMZNV3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DNQP3UURB2QMZNV3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DNQP3UURB2QMZNV3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.410 per On Demand RHEL m1.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YZU87WTY449E2C2T" : { + "YZU87WTY449E2C2T.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YZU87WTY449E2C2T", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YZU87WTY449E2C2T.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YZU87WTY449E2C2T.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 for 4500 Mbps per c5.9xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "WD5HZXPHH8Z3VFSD" : { + "WD5HZXPHH8Z3VFSD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "WD5HZXPHH8Z3VFSD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "WD5HZXPHH8Z3VFSD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "WD5HZXPHH8Z3VFSD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.539 per Dedicated Windows BYOL m2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HSDKMG6XBMBSSBZ9" : { + "HSDKMG6XBMBSSBZ9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HSDKMG6XBMBSSBZ9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HSDKMG6XBMBSSBZ9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HSDKMG6XBMBSSBZ9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web i2.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JWPZDXTPDMBACQS9" : { + "JWPZDXTPDMBACQS9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JWPZDXTPDMBACQS9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JWPZDXTPDMBACQS9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JWPZDXTPDMBACQS9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux c3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2G7QY8K5DB7ZC8PD" : { + "2G7QY8K5DB7ZC8PD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2G7QY8K5DB7ZC8PD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2G7QY8K5DB7ZC8PD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2G7QY8K5DB7ZC8PD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.616 per Dedicated Windows with SQL Server Enterprise m4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.6160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QSNKQ8P78YXPTAH8" : { + "QSNKQ8P78YXPTAH8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QSNKQ8P78YXPTAH8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QSNKQ8P78YXPTAH8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QSNKQ8P78YXPTAH8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.532 per On Demand Linux m3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TAUPPUG4Z5RWGJYB" : { + "TAUPPUG4Z5RWGJYB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TAUPPUG4Z5RWGJYB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TAUPPUG4Z5RWGJYB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TAUPPUG4Z5RWGJYB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.393 per On Demand RHEL r3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GCJMZVKZNG7MAKT4" : { + "GCJMZVKZNG7MAKT4.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GCJMZVKZNG7MAKT4", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GCJMZVKZNG7MAKT4.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GCJMZVKZNG7MAKT4.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.462 per Dedicated Windows BYOL c3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "WBC9QMDGSSY2UNJA" : { + "WBC9QMDGSSY2UNJA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "WBC9QMDGSSY2UNJA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "WBC9QMDGSSY2UNJA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "WBC9QMDGSSY2UNJA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 for 10 Gbps per p2.16xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BZBTYKT6J87853AW" : { + "BZBTYKT6J87853AW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BZBTYKT6J87853AW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BZBTYKT6J87853AW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BZBTYKT6J87853AW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.203 per Dedicated RHEL c1.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4HTGDWXZE6KRTGSR" : { + "4HTGDWXZE6KRTGSR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4HTGDWXZE6KRTGSR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4HTGDWXZE6KRTGSR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4HTGDWXZE6KRTGSR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.193 per On Demand RHEL m3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VJ2DAWV6S9PPWZZA" : { + "VJ2DAWV6S9PPWZZA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VJ2DAWV6S9PPWZZA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VJ2DAWV6S9PPWZZA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VJ2DAWV6S9PPWZZA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std g2.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Q65EXUN6VVKKRUQ6" : { + "Q65EXUN6VVKKRUQ6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Q65EXUN6VVKKRUQ6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Q65EXUN6VVKKRUQ6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Q65EXUN6VVKKRUQ6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.254 per Dedicated Linux g3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NE4JZMMMGJZH869R" : { + "NE4JZMMMGJZH869R.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NE4JZMMMGJZH869R", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NE4JZMMMGJZH869R.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NE4JZMMMGJZH869R.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.17 per On Demand Windows BYOL c5.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XP7U4PW6TG4NXAZS" : { + "XP7U4PW6TG4NXAZS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XP7U4PW6TG4NXAZS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XP7U4PW6TG4NXAZS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XP7U4PW6TG4NXAZS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise m4.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "P4TPDGNQH5SAQPSP" : { + "P4TPDGNQH5SAQPSP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "P4TPDGNQH5SAQPSP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "P4TPDGNQH5SAQPSP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "P4TPDGNQH5SAQPSP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.536 per On Demand Windows m4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "43SVRH2NZVAKYEXT" : { + "43SVRH2NZVAKYEXT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "43SVRH2NZVAKYEXT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "43SVRH2NZVAKYEXT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "43SVRH2NZVAKYEXT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.01 per GB - US East (Ohio) data transfer to US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VW78UGRTYRQ6EVC9" : { + "VW78UGRTYRQ6EVC9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VW78UGRTYRQ6EVC9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VW78UGRTYRQ6EVC9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VW78UGRTYRQ6EVC9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.266 per On Demand Windows BYOL r4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CDV3MB4FK98PAYP9" : { + "CDV3MB4FK98PAYP9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CDV3MB4FK98PAYP9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CDV3MB4FK98PAYP9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CDV3MB4FK98PAYP9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL c4.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5CS4EJVK2TSXGHNX" : { + "5CS4EJVK2TSXGHNX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5CS4EJVK2TSXGHNX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5CS4EJVK2TSXGHNX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5CS4EJVK2TSXGHNX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$13.468 per On Demand RHEL x1.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.4680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MC5VZN6RJJJRB2CW" : { + "MC5VZN6RJJJRB2CW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MC5VZN6RJJJRB2CW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MC5VZN6RJJJRB2CW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MC5VZN6RJJJRB2CW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.100 per On Demand SUSE cc2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AKXXTUNGEUFY2NYA" : { + "AKXXTUNGEUFY2NYA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AKXXTUNGEUFY2NYA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AKXXTUNGEUFY2NYA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AKXXTUNGEUFY2NYA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.296 per On Demand Windows with SQL Web c4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "H9V234B3K9QAR4NJ" : { + "H9V234B3K9QAR4NJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "H9V234B3K9QAR4NJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "H9V234B3K9QAR4NJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "H9V234B3K9QAR4NJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.174 per Dedicated Usage Windows p2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GPTGBM5JNED7SKZW" : { + "GPTGBM5JNED7SKZW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GPTGBM5JNED7SKZW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GPTGBM5JNED7SKZW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GPTGBM5JNED7SKZW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.391 per Dedicated Windows with SQL Web i3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ASDZTDFMC5425T7P" : { + "ASDZTDFMC5425T7P.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ASDZTDFMC5425T7P", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ASDZTDFMC5425T7P.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ASDZTDFMC5425T7P.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.067 per On Demand Linux m3.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2Y6EVK4CR7GZUMHR" : { + "2Y6EVK4CR7GZUMHR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2Y6EVK4CR7GZUMHR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2Y6EVK4CR7GZUMHR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2Y6EVK4CR7GZUMHR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.259 per On Demand Windows m3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JKUR5KFWCTQXCJKH" : { + "JKUR5KFWCTQXCJKH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JKUR5KFWCTQXCJKH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JKUR5KFWCTQXCJKH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JKUR5KFWCTQXCJKH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.1 per Dedicated Usage Windows with SQL Server Enterprise r3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NVQ292F84D694PKT" : { + "NVQ292F84D694PKT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NVQ292F84D694PKT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NVQ292F84D694PKT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NVQ292F84D694PKT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.226 per On Demand RHEL r3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GKGWHEUHTS4PWNPE" : { + "GKGWHEUHTS4PWNPE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GKGWHEUHTS4PWNPE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GKGWHEUHTS4PWNPE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GKGWHEUHTS4PWNPE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL i2.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SMTM4XWYH27FGA26" : { + "SMTM4XWYH27FGA26.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SMTM4XWYH27FGA26", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SMTM4XWYH27FGA26.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SMTM4XWYH27FGA26.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.198 per Dedicated SQL Std g2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.1980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3UP33R2RXCADSPSX" : { + "3UP33R2RXCADSPSX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3UP33R2RXCADSPSX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3UP33R2RXCADSPSX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3UP33R2RXCADSPSX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.80 per On Demand Linux m4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YN9T2DVCE7TVTX8J" : { + "YN9T2DVCE7TVTX8J.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YN9T2DVCE7TVTX8J", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YN9T2DVCE7TVTX8J.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YN9T2DVCE7TVTX8J.JRTCKXETXF.6YS6EN2CT7", + "description" : "$5.491 per On Demand I3 Dedicated Host Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.4910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JNYSB2CFFU532DFN" : { + "JNYSB2CFFU532DFN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JNYSB2CFFU532DFN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JNYSB2CFFU532DFN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JNYSB2CFFU532DFN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.02 per GB - US East (Northern Virginia) data transfer to EU (London)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NCNT25B6JEQBVF9P" : { + "NCNT25B6JEQBVF9P.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NCNT25B6JEQBVF9P", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NCNT25B6JEQBVF9P.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NCNT25B6JEQBVF9P.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web r4.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "F7E2CXKVAY923NDJ" : { + "F7E2CXKVAY923NDJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "F7E2CXKVAY923NDJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "F7E2CXKVAY923NDJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "F7E2CXKVAY923NDJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows m3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "H7FHBN6ZTC6EJQ2N" : { + "H7FHBN6ZTC6EJQ2N.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "H7FHBN6ZTC6EJQ2N", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "H7FHBN6ZTC6EJQ2N.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "H7FHBN6ZTC6EJQ2N.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.846 per Dedicated SUSE i3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5RDXQSEVV5YEEYS6" : { + "5RDXQSEVV5YEEYS6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5RDXQSEVV5YEEYS6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5RDXQSEVV5YEEYS6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5RDXQSEVV5YEEYS6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE r3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MC5Y8Q7EUMRZTRZE" : { + "MC5Y8Q7EUMRZTRZE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MC5Y8Q7EUMRZTRZE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MC5Y8Q7EUMRZTRZE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MC5Y8Q7EUMRZTRZE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.808 per On Demand Windows with SQL Std i3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.8080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JRFGUQ324DZG472D" : { + "JRFGUQ324DZG472D.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JRFGUQ324DZG472D", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JRFGUQ324DZG472D.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JRFGUQ324DZG472D.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web c4.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "S6MPFZZYQH2JQDPJ" : { + "S6MPFZZYQH2JQDPJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "S6MPFZZYQH2JQDPJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "S6MPFZZYQH2JQDPJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "S6MPFZZYQH2JQDPJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Std c5.18xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YAQ9JKWS8Q8NSPYJ" : { + "YAQ9JKWS8Q8NSPYJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YAQ9JKWS8Q8NSPYJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YAQ9JKWS8Q8NSPYJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YAQ9JKWS8Q8NSPYJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.1918 per On Demand Windows with SQL Web t2.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1918000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3GAF7GUVFB6WDJQR" : { + "3GAF7GUVFB6WDJQR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3GAF7GUVFB6WDJQR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3GAF7GUVFB6WDJQR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3GAF7GUVFB6WDJQR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.344 per Dedicated SQL Std c3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "B7KQBWQQMASEJN3N" : { + "B7KQBWQQMASEJN3N.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "B7KQBWQQMASEJN3N", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "B7KQBWQQMASEJN3N.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "B7KQBWQQMASEJN3N.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.814 per On Demand Windows with SQL Web c4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "D8R4U4YGJ7FBAM9V" : { + "D8R4U4YGJ7FBAM9V.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "D8R4U4YGJ7FBAM9V", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "D8R4U4YGJ7FBAM9V.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "D8R4U4YGJ7FBAM9V.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.855 per On Demand Windows with SQL Web r3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SSME5U3BWQXEH2ES" : { + "SSME5U3BWQXEH2ES.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SSME5U3BWQXEH2ES", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SSME5U3BWQXEH2ES.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SSME5U3BWQXEH2ES.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.078 per Dedicated SUSE m1.small Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VWMNXYV7FJNWU55C" : { + "VWMNXYV7FJNWU55C.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VWMNXYV7FJNWU55C", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VWMNXYV7FJNWU55C.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VWMNXYV7FJNWU55C.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.672 per Dedicated SUSE c1.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PYCJPPPYA7FXP2KM" : { + "PYCJPPPYA7FXP2KM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PYCJPPPYA7FXP2KM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PYCJPPPYA7FXP2KM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PYCJPPPYA7FXP2KM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 for 450 Mbps per m4.large instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7J6XFQYCHJDQXR63" : { + "7J6XFQYCHJDQXR63.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7J6XFQYCHJDQXR63", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7J6XFQYCHJDQXR63.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7J6XFQYCHJDQXR63.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.66 per On Demand Windows BYOL r3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YGKQRRYEKC2NTSQT" : { + "YGKQRRYEKC2NTSQT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YGKQRRYEKC2NTSQT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YGKQRRYEKC2NTSQT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YGKQRRYEKC2NTSQT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.10 for 2000 Mbps per c3.4xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TD3RKXS2B3BMGKXR" : { + "TD3RKXS2B3BMGKXR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TD3RKXS2B3BMGKXR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TD3RKXS2B3BMGKXR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TD3RKXS2B3BMGKXR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows i3.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AG87TQB4PQQPZXFK" : { + "AG87TQB4PQQPZXFK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AG87TQB4PQQPZXFK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AG87TQB4PQQPZXFK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AG87TQB4PQQPZXFK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.0232 per On Demand Windows BYOL t2.small Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QMCSUNX7MQVY9UVN" : { + "QMCSUNX7MQVY9UVN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QMCSUNX7MQVY9UVN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QMCSUNX7MQVY9UVN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QMCSUNX7MQVY9UVN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.291 per On Demand Windows r3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SGCXRY4DA899SRWQ" : { + "SGCXRY4DA899SRWQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SGCXRY4DA899SRWQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SGCXRY4DA899SRWQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SGCXRY4DA899SRWQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL p2.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QNBV9PBG5RAKHKFW" : { + "QNBV9PBG5RAKHKFW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QNBV9PBG5RAKHKFW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QNBV9PBG5RAKHKFW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QNBV9PBG5RAKHKFW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.93 per On Demand RHEL m4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "T9G44MU9TAHQW69C" : { + "T9G44MU9TAHQW69C.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "T9G44MU9TAHQW69C", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "T9G44MU9TAHQW69C.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "T9G44MU9TAHQW69C.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL d2.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9J54RV93FDP84TGG" : { + "9J54RV93FDP84TGG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9J54RV93FDP84TGG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9J54RV93FDP84TGG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9J54RV93FDP84TGG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$9.772 per Dedicated Usage Windows with SQL Server Enterprise d2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.7720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3CAET66XVXDZHGQY" : { + "3CAET66XVXDZHGQY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3CAET66XVXDZHGQY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3CAET66XVXDZHGQY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3CAET66XVXDZHGQY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.310 per On Demand SQL Web c1.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "F7MKSFT7MRGHJF5U" : { + "F7MKSFT7MRGHJF5U.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "F7MKSFT7MRGHJF5U", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "F7MKSFT7MRGHJF5U.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "F7MKSFT7MRGHJF5U.JRTCKXETXF.6YS6EN2CT7", + "description" : "$41.344 per On Demand Windows with SQL Server Enterprise p2.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "41.3440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CDK4SMXRA7K87J58" : { + "CDK4SMXRA7K87J58.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CDK4SMXRA7K87J58", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CDK4SMXRA7K87J58.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CDK4SMXRA7K87J58.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.146 per Dedicated Usage Linux m3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ARQG8GDGKQUYVY5C" : { + "ARQG8GDGKQUYVY5C.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ARQG8GDGKQUYVY5C", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ARQG8GDGKQUYVY5C.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ARQG8GDGKQUYVY5C.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Server Enterprise c5.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NUMNVV4X9PJW42JH" : { + "NUMNVV4X9PJW42JH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NUMNVV4X9PJW42JH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NUMNVV4X9PJW42JH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NUMNVV4X9PJW42JH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.389 per Dedicated RHEL p3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZA8X9PK3KYPXZSEC" : { + "ZA8X9PK3KYPXZSEC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZA8X9PK3KYPXZSEC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZA8X9PK3KYPXZSEC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZA8X9PK3KYPXZSEC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL r3.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "T8WDU2BB3QKC577Z" : { + "T8WDU2BB3QKC577Z.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "T8WDU2BB3QKC577Z", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "T8WDU2BB3QKC577Z.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "T8WDU2BB3QKC577Z.JRTCKXETXF.6YS6EN2CT7", + "description" : "$6.920 per Dedicated SUSE i2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.9200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MUSDPAYU48C7WCHN" : { + "MUSDPAYU48C7WCHN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MUSDPAYU48C7WCHN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MUSDPAYU48C7WCHN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MUSDPAYU48C7WCHN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.143 per Dedicated Linux c1.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZS7S83VF4T4BSSC4" : { + "ZS7S83VF4T4BSSC4.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZS7S83VF4T4BSSC4", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZS7S83VF4T4BSSC4.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZS7S83VF4T4BSSC4.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.341 per Dedicated Usage Windows BYOL r4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "J7CC798XUX322NAB" : { + "J7CC798XUX322NAB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "J7CC798XUX322NAB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "J7CC798XUX322NAB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "J7CC798XUX322NAB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 for 9000 Mbps per c5.18xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3GCSD3HHQWFGV39C" : { + "3GCSD3HHQWFGV39C.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3GCSD3HHQWFGV39C", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3GCSD3HHQWFGV39C.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3GCSD3HHQWFGV39C.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.702 per Dedicated RHEL c1.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EBPBHYCSY9TBSKNQ" : { + "EBPBHYCSY9TBSKNQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EBPBHYCSY9TBSKNQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EBPBHYCSY9TBSKNQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EBPBHYCSY9TBSKNQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.146 per Dedicated Usage Linux r4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CTWGRH5ACPDTJT2H" : { + "CTWGRH5ACPDTJT2H.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CTWGRH5ACPDTJT2H", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CTWGRH5ACPDTJT2H.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CTWGRH5ACPDTJT2H.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows BYOL c5.18xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2MS9BQ29TD8ZPX2B" : { + "2MS9BQ29TD8ZPX2B.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2MS9BQ29TD8ZPX2B", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2MS9BQ29TD8ZPX2B.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2MS9BQ29TD8ZPX2B.JRTCKXETXF.6YS6EN2CT7", + "description" : "$32.576 per On Demand Windows x1e.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "32.5760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MU4CDFJXM862BVJ3" : { + "MU4CDFJXM862BVJ3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MU4CDFJXM862BVJ3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MU4CDFJXM862BVJ3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MU4CDFJXM862BVJ3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.101 per Dedicated Windows x1e.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TDJBW85D7BJ6AB9K" : { + "TDJBW85D7BJ6AB9K.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TDJBW85D7BJ6AB9K", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TDJBW85D7BJ6AB9K.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TDJBW85D7BJ6AB9K.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows BYOL x1e.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6VVPWTSHET4XF7T9" : { + "6VVPWTSHET4XF7T9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6VVPWTSHET4XF7T9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6VVPWTSHET4XF7T9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6VVPWTSHET4XF7T9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL c4.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ABGVRF96RZJ9FHTF" : { + "ABGVRF96RZJ9FHTF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ABGVRF96RZJ9FHTF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ABGVRF96RZJ9FHTF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ABGVRF96RZJ9FHTF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.053 per Dedicated SQL Web g2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "76QZ6KV3AUVAJ4PP" : { + "76QZ6KV3AUVAJ4PP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "76QZ6KV3AUVAJ4PP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "76QZ6KV3AUVAJ4PP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "76QZ6KV3AUVAJ4PP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Web x1e.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6QCMSW96MRVU6K5U" : { + "6QCMSW96MRVU6K5U.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6QCMSW96MRVU6K5U", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6QCMSW96MRVU6K5U.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6QCMSW96MRVU6K5U.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 for 750 Mbps per p2.xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DM52VSGUXWMC72XW" : { + "DM52VSGUXWMC72XW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DM52VSGUXWMC72XW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DM52VSGUXWMC72XW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DM52VSGUXWMC72XW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.913 per On Demand RHEL i2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "75XER897G2X2ZNFP" : { + "75XER897G2X2ZNFP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "75XER897G2X2ZNFP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "75XER897G2X2ZNFP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "75XER897G2X2ZNFP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.936 per Dedicated Windows i3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.9360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "V6A93PBRF8JRMDU8" : { + "V6A93PBRF8JRMDU8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "V6A93PBRF8JRMDU8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "V6A93PBRF8JRMDU8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "V6A93PBRF8JRMDU8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 for 1 Mbps per x1e.2xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SUXHXAPA9KC5QKGF" : { + "SUXHXAPA9KC5QKGF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SUXHXAPA9KC5QKGF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SUXHXAPA9KC5QKGF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SUXHXAPA9KC5QKGF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.934 per On Demand SUSE x1e.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CDBGJDEAQMWTZ2TB" : { + "CDBGJDEAQMWTZ2TB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CDBGJDEAQMWTZ2TB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CDBGJDEAQMWTZ2TB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CDBGJDEAQMWTZ2TB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$13.338 per On Demand Windows BYOL x1.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.3380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "J29VH4DHMCPGPWS6" : { + "J29VH4DHMCPGPWS6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "J29VH4DHMCPGPWS6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "J29VH4DHMCPGPWS6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "J29VH4DHMCPGPWS6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std r4.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "285FWCDXDE9KA35M" : { + "285FWCDXDE9KA35M.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "285FWCDXDE9KA35M", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "285FWCDXDE9KA35M.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "285FWCDXDE9KA35M.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.404 per Dedicated Usage Windows with SQL Web m3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ADJRHP9DZHM7DJPS" : { + "ADJRHP9DZHM7DJPS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ADJRHP9DZHM7DJPS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ADJRHP9DZHM7DJPS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ADJRHP9DZHM7DJPS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$13.036 per Dedicated Windows BYOL p3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.0360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EUZYYTAVEP8JDS42" : { + "EUZYYTAVEP8JDS42.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EUZYYTAVEP8JDS42", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EUZYYTAVEP8JDS42.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EUZYYTAVEP8JDS42.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise r3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QSAWD9QW3658YB28" : { + "QSAWD9QW3658YB28.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QSAWD9QW3658YB28", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QSAWD9QW3658YB28.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QSAWD9QW3658YB28.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.92 per Dedicated Usage Windows BYOL p2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.9200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TMDSK7VAE2TT3ECF" : { + "TMDSK7VAE2TT3ECF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TMDSK7VAE2TT3ECF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TMDSK7VAE2TT3ECF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TMDSK7VAE2TT3ECF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.84 per On Demand Windows BYOL c3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XVDMNM2WMYBYVW3T" : { + "XVDMNM2WMYBYVW3T.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XVDMNM2WMYBYVW3T", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XVDMNM2WMYBYVW3T.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XVDMNM2WMYBYVW3T.JRTCKXETXF.6YS6EN2CT7", + "description" : "$14.4 per On Demand Linux p2.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.4000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MCUV5B88GT577CFE" : { + "MCUV5B88GT577CFE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MCUV5B88GT577CFE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MCUV5B88GT577CFE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MCUV5B88GT577CFE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.00 once per hour when you're running at least one Dedicated Instance in the US East Region", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VC8RXUKPQB42NMCF" : { + "VC8RXUKPQB42NMCF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VC8RXUKPQB42NMCF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VC8RXUKPQB42NMCF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VC8RXUKPQB42NMCF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.17 per Dedicated Usage RHEL c4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "WU8MR6W7VJJUBGWW" : { + "WU8MR6W7VJJUBGWW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "WU8MR6W7VJJUBGWW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "WU8MR6W7VJJUBGWW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "WU8MR6W7VJJUBGWW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.835 per Dedicated Linux x1e.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "J4WQF46DKE3825ST" : { + "J4WQF46DKE3825ST.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "J4WQF46DKE3825ST", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "J4WQF46DKE3825ST.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "J4WQF46DKE3825ST.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.006 per Dedicated Usage RHEL c4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NKJ4NNEJMKDJ54KC" : { + "NKJ4NNEJMKDJ54KC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NKJ4NNEJMKDJ54KC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NKJ4NNEJMKDJ54KC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NKJ4NNEJMKDJ54KC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.7 per On Demand SUSE g2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KBMDCRY5348X5TCN" : { + "KBMDCRY5348X5TCN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KBMDCRY5348X5TCN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KBMDCRY5348X5TCN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KBMDCRY5348X5TCN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE r3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "D6HGB9XUMNSDTB9G" : { + "D6HGB9XUMNSDTB9G.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "D6HGB9XUMNSDTB9G", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "D6HGB9XUMNSDTB9G.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "D6HGB9XUMNSDTB9G.JRTCKXETXF.6YS6EN2CT7", + "description" : "$13.30 per On Demand SUSE f1.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.3000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZESHW7CZVERW2BN2" : { + "ZESHW7CZVERW2BN2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZESHW7CZVERW2BN2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZESHW7CZVERW2BN2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZESHW7CZVERW2BN2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.410 per On Demand Linux i2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "232CDFDW89ENUXRB" : { + "232CDFDW89ENUXRB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "232CDFDW89ENUXRB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "232CDFDW89ENUXRB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "232CDFDW89ENUXRB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux d2.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "T66DXZFUDZ8KW7UG" : { + "T66DXZFUDZ8KW7UG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "T66DXZFUDZ8KW7UG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "T66DXZFUDZ8KW7UG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "T66DXZFUDZ8KW7UG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.810 per Dedicated RHEL c3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XGQ9DRFV2RNYQE43" : { + "XGQ9DRFV2RNYQE43.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XGQ9DRFV2RNYQE43", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XGQ9DRFV2RNYQE43.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XGQ9DRFV2RNYQE43.JRTCKXETXF.6YS6EN2CT7", + "description" : "$15.616 per Dedicated Windows with SQL Std i3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.6160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2QF2GD6XUCJHFMKF" : { + "2QF2GD6XUCJHFMKF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2QF2GD6XUCJHFMKF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2QF2GD6XUCJHFMKF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2QF2GD6XUCJHFMKF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.076 per Gbps-hour of NAT Gateways with Provisioned Bandwidth", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Gbps-hrs", + "pricePerUnit" : { + "USD" : "1.0760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JKH75GSYK4EQQ6ZK" : { + "JKH75GSYK4EQQ6ZK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JKH75GSYK4EQQ6ZK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JKH75GSYK4EQQ6ZK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JKH75GSYK4EQQ6ZK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise d2.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5KHB4S5E8M74C6ES" : { + "5KHB4S5E8M74C6ES.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5KHB4S5E8M74C6ES", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5KHB4S5E8M74C6ES.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5KHB4S5E8M74C6ES.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.853 per On Demand Linux i2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QC767KVGEA4QJZVP" : { + "QC767KVGEA4QJZVP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QC767KVGEA4QJZVP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QC767KVGEA4QJZVP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QC767KVGEA4QJZVP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.02 for 400 Mbps per c3.xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "G2Y7JD8J9KR378JW" : { + "G2Y7JD8J9KR378JW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "G2Y7JD8J9KR378JW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "G2Y7JD8J9KR378JW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "G2Y7JD8J9KR378JW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.503 per Dedicated RHEL i3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PDEUGZC7QK7AETP6" : { + "PDEUGZC7QK7AETP6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PDEUGZC7QK7AETP6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PDEUGZC7QK7AETP6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PDEUGZC7QK7AETP6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.704 per On Demand Windows with SQL Std m3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "V57DX5BAS5NCGXY8" : { + "V57DX5BAS5NCGXY8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "V57DX5BAS5NCGXY8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "V57DX5BAS5NCGXY8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "V57DX5BAS5NCGXY8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.617 per Dedicated SQL Std c3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CJC3SAFYHNB2FRUU" : { + "CJC3SAFYHNB2FRUU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CJC3SAFYHNB2FRUU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CJC3SAFYHNB2FRUU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CJC3SAFYHNB2FRUU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.377 per Dedicated Usage Windows with SQL Web r4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.3770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DAVYF6BBKWXMDDGD" : { + "DAVYF6BBKWXMDDGD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DAVYF6BBKWXMDDGD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DAVYF6BBKWXMDDGD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DAVYF6BBKWXMDDGD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$13.33 per On Demand RHEL f1.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.3300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VDQX9KJN5DYBTUQJ" : { + "VDQX9KJN5DYBTUQJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VDQX9KJN5DYBTUQJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VDQX9KJN5DYBTUQJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VDQX9KJN5DYBTUQJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.500 per Dedicated Windows r3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QVZGU743YEW7J8ZP" : { + "QVZGU743YEW7J8ZP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QVZGU743YEW7J8ZP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QVZGU743YEW7J8ZP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QVZGU743YEW7J8ZP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$5.410 per Dedicated SQL Std i2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.4100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TJCB42XUUBBP8KKF" : { + "TJCB42XUUBBP8KKF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TJCB42XUUBBP8KKF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TJCB42XUUBBP8KKF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TJCB42XUUBBP8KKF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.256 per On Demand Linux r4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4XQSHVJTBAK4RP7T" : { + "4XQSHVJTBAK4RP7T.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4XQSHVJTBAK4RP7T", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4XQSHVJTBAK4RP7T.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4XQSHVJTBAK4RP7T.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.44 per Dedicated Windows BYOL m4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FXA6QJGGCY7KRFGC" : { + "FXA6QJGGCY7KRFGC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FXA6QJGGCY7KRFGC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FXA6QJGGCY7KRFGC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FXA6QJGGCY7KRFGC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std m4.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4TE6EMDQEPCBNFAE" : { + "4TE6EMDQEPCBNFAE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4TE6EMDQEPCBNFAE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4TE6EMDQEPCBNFAE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4TE6EMDQEPCBNFAE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.540 per On Demand RHEL i2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QQXUWBKQH3U8F6KT" : { + "QQXUWBKQH3U8F6KT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QQXUWBKQH3U8F6KT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QQXUWBKQH3U8F6KT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QQXUWBKQH3U8F6KT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.345 per On Demand SUSE m2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TMQJ4GK6Z38D6DZU" : { + "TMQJ4GK6Z38D6DZU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TMQJ4GK6Z38D6DZU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TMQJ4GK6Z38D6DZU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TMQJ4GK6Z38D6DZU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web c4.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MD88Y4BYY57EECUZ" : { + "MD88Y4BYY57EECUZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MD88Y4BYY57EECUZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MD88Y4BYY57EECUZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MD88Y4BYY57EECUZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.806 per Dedicated Usage Windows c4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NWRPWAZ545BCP5YE" : { + "NWRPWAZ545BCP5YE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NWRPWAZ545BCP5YE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NWRPWAZ545BCP5YE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NWRPWAZ545BCP5YE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.589 per On Demand Windows with SQL Web c5.18xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EQGP4KYME9PWXUCS" : { + "EQGP4KYME9PWXUCS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EQGP4KYME9PWXUCS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EQGP4KYME9PWXUCS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EQGP4KYME9PWXUCS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux x1.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "44BFC6CSKFS3KEJP" : { + "44BFC6CSKFS3KEJP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "44BFC6CSKFS3KEJP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "44BFC6CSKFS3KEJP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "44BFC6CSKFS3KEJP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.248 per On Demand Linux i3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NCF2TWM2X9WTUPEG" : { + "NCF2TWM2X9WTUPEG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NCF2TWM2X9WTUPEG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NCF2TWM2X9WTUPEG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NCF2TWM2X9WTUPEG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std c3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RJEQJTKJA4WCBCRN" : { + "RJEQJTKJA4WCBCRN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RJEQJTKJA4WCBCRN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RJEQJTKJA4WCBCRN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RJEQJTKJA4WCBCRN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise c4.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MSN4QHE8TBV8XBD2" : { + "MSN4QHE8TBV8XBD2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MSN4QHE8TBV8XBD2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MSN4QHE8TBV8XBD2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MSN4QHE8TBV8XBD2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.445 per Dedicated RHEL m1.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BQ5EKEX4RRBCH5MY" : { + "BQ5EKEX4RRBCH5MY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BQ5EKEX4RRBCH5MY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BQ5EKEX4RRBCH5MY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BQ5EKEX4RRBCH5MY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.903 per Dedicated Usage Windows d2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "K48QRUR7K3WJWD3Y" : { + "K48QRUR7K3WJWD3Y.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "K48QRUR7K3WJWD3Y", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "K48QRUR7K3WJWD3Y.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "K48QRUR7K3WJWD3Y.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.2 per On Demand Windows BYOL p2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.2000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QBBBEFQPVEBWTH4F" : { + "QBBBEFQPVEBWTH4F.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QBBBEFQPVEBWTH4F", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QBBBEFQPVEBWTH4F.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QBBBEFQPVEBWTH4F.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.835 per On Demand RHEL i2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2E6TFSUWJVXJ9TK8" : { + "2E6TFSUWJVXJ9TK8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2E6TFSUWJVXJ9TK8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2E6TFSUWJVXJ9TK8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2E6TFSUWJVXJ9TK8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.06 per On Demand Windows BYOL c5.18xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "A633GX9XTPAPFK68" : { + "A633GX9XTPAPFK68.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "A633GX9XTPAPFK68", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "A633GX9XTPAPFK68.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "A633GX9XTPAPFK68.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.029 per Dedicated Windows with SQL Std i3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.0290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "355G43EUBXD5NEFF" : { + "355G43EUBXD5NEFF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "355G43EUBXD5NEFF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "355G43EUBXD5NEFF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "355G43EUBXD5NEFF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.99 per Dedicated Windows g3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4YHC7A4CJ3HBPKDX" : { + "4YHC7A4CJ3HBPKDX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4YHC7A4CJ3HBPKDX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4YHC7A4CJ3HBPKDX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4YHC7A4CJ3HBPKDX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux r3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UG8JKJZ5R9J4CW2Z" : { + "UG8JKJZ5R9J4CW2Z.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UG8JKJZ5R9J4CW2Z", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UG8JKJZ5R9J4CW2Z.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UG8JKJZ5R9J4CW2Z.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.20 per Dedicated Windows BYOL m4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "565K5EPDPPX9K6TV" : { + "565K5EPDPPX9K6TV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "565K5EPDPPX9K6TV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "565K5EPDPPX9K6TV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "565K5EPDPPX9K6TV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Std x1e.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NDTH66N9XMTJ3CP6" : { + "NDTH66N9XMTJ3CP6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NDTH66N9XMTJ3CP6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NDTH66N9XMTJ3CP6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NDTH66N9XMTJ3CP6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL p2.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Z684JBY4N78FZQ8Q" : { + "Z684JBY4N78FZQ8Q.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Z684JBY4N78FZQ8Q", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Z684JBY4N78FZQ8Q.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Z684JBY4N78FZQ8Q.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.21 per Dedicated SUSE m4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7WRGXK63YR8UUHF8" : { + "7WRGXK63YR8UUHF8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7WRGXK63YR8UUHF8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7WRGXK63YR8UUHF8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7WRGXK63YR8UUHF8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.996 per On Demand Windows with SQL Server Enterprise i3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EAAU7VGSNXDD23Q8" : { + "EAAU7VGSNXDD23Q8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EAAU7VGSNXDD23Q8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EAAU7VGSNXDD23Q8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EAAU7VGSNXDD23Q8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.99 per Dedicated Usage Windows BYOL p2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "U8B7D4SWAWCW5E9F" : { + "U8B7D4SWAWCW5E9F.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "U8B7D4SWAWCW5E9F", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "U8B7D4SWAWCW5E9F.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "U8B7D4SWAWCW5E9F.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows BYOL x1e.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "8B7CXDY69FGHQH62" : { + "8B7CXDY69FGHQH62.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "8B7CXDY69FGHQH62", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "8B7CXDY69FGHQH62.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "8B7CXDY69FGHQH62.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.333 per On Demand Windows BYOL r3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JDJYS4AM5CW779YH" : { + "JDJYS4AM5CW779YH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JDJYS4AM5CW779YH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JDJYS4AM5CW779YH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JDJYS4AM5CW779YH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL c4.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AKSFQX72CUFYMDSH" : { + "AKSFQX72CUFYMDSH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AKSFQX72CUFYMDSH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AKSFQX72CUFYMDSH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AKSFQX72CUFYMDSH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows i3.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DRMGTKKSRFBNB2TD" : { + "DRMGTKKSRFBNB2TD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DRMGTKKSRFBNB2TD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DRMGTKKSRFBNB2TD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DRMGTKKSRFBNB2TD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.426 per Dedicated Usage RHEL r3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TTS386B2SXKQXGZP" : { + "TTS386B2SXKQXGZP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TTS386B2SXKQXGZP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TTS386B2SXKQXGZP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TTS386B2SXKQXGZP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.6 per On Demand Windows r4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YXBZYU573BYR2VBR" : { + "YXBZYU573BYR2VBR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YXBZYU573BYR2VBR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YXBZYU573BYR2VBR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YXBZYU573BYR2VBR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std r3.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9NJKDTFRDQH4YFJ6" : { + "9NJKDTFRDQH4YFJ6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9NJKDTFRDQH4YFJ6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9NJKDTFRDQH4YFJ6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9NJKDTFRDQH4YFJ6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0 for 1 Mbps per g3.16xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9ZMBKXJZ46UNKSTH" : { + "9ZMBKXJZ46UNKSTH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9ZMBKXJZ46UNKSTH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9ZMBKXJZ46UNKSTH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9ZMBKXJZ46UNKSTH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux r4.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "67X6UH937GWQTMF7" : { + "67X6UH937GWQTMF7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "67X6UH937GWQTMF7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "67X6UH937GWQTMF7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "67X6UH937GWQTMF7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows BYOL f1.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AWHZBBETT4RF387X" : { + "AWHZBBETT4RF387X.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AWHZBBETT4RF387X", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AWHZBBETT4RF387X.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AWHZBBETT4RF387X.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.935 per Dedicated SQL Web m2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3H63S5QV423QAHHQ" : { + "3H63S5QV423QAHHQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3H63S5QV423QAHHQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3H63S5QV423QAHHQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3H63S5QV423QAHHQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.56 per On Demand Linux g3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4WH4EK5RUS7PPQCA" : { + "4WH4EK5RUS7PPQCA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4WH4EK5RUS7PPQCA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4WH4EK5RUS7PPQCA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4WH4EK5RUS7PPQCA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per RHEL c5.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "T5BZ33K73P9U93J6" : { + "T5BZ33K73P9U93J6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "T5BZ33K73P9U93J6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "T5BZ33K73P9U93J6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "T5BZ33K73P9U93J6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL i2.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BUEPRDN9GYBNSP3F" : { + "BUEPRDN9GYBNSP3F.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BUEPRDN9GYBNSP3F", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BUEPRDN9GYBNSP3F.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BUEPRDN9GYBNSP3F.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.627 per Dedicated Windows p3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SZQV42HNDR8AXTGV" : { + "SZQV42HNDR8AXTGV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SZQV42HNDR8AXTGV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SZQV42HNDR8AXTGV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SZQV42HNDR8AXTGV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$18.84 per On Demand Windows with SQL Server Enterprise m4.10xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "18.8400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HRE9N7QDXRK4WGK6" : { + "HRE9N7QDXRK4WGK6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HRE9N7QDXRK4WGK6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HRE9N7QDXRK4WGK6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HRE9N7QDXRK4WGK6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std d2.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3S465DABJFVVXWJG" : { + "3S465DABJFVVXWJG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3S465DABJFVVXWJG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3S465DABJFVVXWJG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3S465DABJFVVXWJG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.19 per On Demand RHEL c5.18xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RH7Y6HVXZXB4UY8U" : { + "RH7Y6HVXZXB4UY8U.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RH7Y6HVXZXB4UY8U", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RH7Y6HVXZXB4UY8U.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RH7Y6HVXZXB4UY8U.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.074 per Dedicated Usage Windows BYOL m3.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "W4HNTDUW2525QNYX" : { + "W4HNTDUW2525QNYX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "W4HNTDUW2525QNYX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "W4HNTDUW2525QNYX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "W4HNTDUW2525QNYX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.622 per Dedicated Windows BYOL c5.9xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5J4A5X6Z5M3JUPTT" : { + "5J4A5X6Z5M3JUPTT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5J4A5X6Z5M3JUPTT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5J4A5X6Z5M3JUPTT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5J4A5X6Z5M3JUPTT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows r3.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GTJ44D58C728KCTE" : { + "GTJ44D58C728KCTE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GTJ44D58C728KCTE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GTJ44D58C728KCTE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GTJ44D58C728KCTE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$13.344 per On Demand Windows BYOL x1e.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.3440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9GNEUQUQYHH95HXP" : { + "9GNEUQUQYHH95HXP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9GNEUQUQYHH95HXP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9GNEUQUQYHH95HXP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9GNEUQUQYHH95HXP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux r4.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "V2ZSDPZ5ANEBUE99" : { + "V2ZSDPZ5ANEBUE99.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "V2ZSDPZ5ANEBUE99", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "V2ZSDPZ5ANEBUE99.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "V2ZSDPZ5ANEBUE99.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.620 per On Demand SUSE c1.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Q7J8RTVDQ7R7AEP9" : { + "Q7J8RTVDQ7R7AEP9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Q7J8RTVDQ7R7AEP9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Q7J8RTVDQ7R7AEP9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Q7J8RTVDQ7R7AEP9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.271 per On Demand SQL Web c3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "WNE7QVTQ353JW53G" : { + "WNE7QVTQ353JW53G.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "WNE7QVTQ353JW53G", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "WNE7QVTQ353JW53G.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "WNE7QVTQ353JW53G.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.93 per On Demand Windows with SQL Std r4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QR4WEBVA44K4VYE6" : { + "QR4WEBVA44K4VYE6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QR4WEBVA44K4VYE6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QR4WEBVA44K4VYE6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QR4WEBVA44K4VYE6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std c3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7DUQ3HEEEBV8YX9T" : { + "7DUQ3HEEEBV8YX9T.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7DUQ3HEEEBV8YX9T", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7DUQ3HEEEBV8YX9T.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7DUQ3HEEEBV8YX9T.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.166 per On Demand Windows BYOL r3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7VB9795V9MTDDCBF" : { + "7VB9795V9MTDDCBF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7VB9795V9MTDDCBF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7VB9795V9MTDDCBF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7VB9795V9MTDDCBF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise c3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HFDNWEZYQYRJQR8N" : { + "HFDNWEZYQYRJQR8N.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HFDNWEZYQYRJQR8N", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HFDNWEZYQYRJQR8N.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HFDNWEZYQYRJQR8N.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE r4.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QG8MPRPSA2WNM57J" : { + "QG8MPRPSA2WNM57J.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QG8MPRPSA2WNM57J", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QG8MPRPSA2WNM57J.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QG8MPRPSA2WNM57J.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.205 per On Demand SUSE c3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2QVB6NSAF3S5JVJW" : { + "2QVB6NSAF3S5JVJW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2QVB6NSAF3S5JVJW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2QVB6NSAF3S5JVJW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2QVB6NSAF3S5JVJW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web c4.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZS78J2NQU7SMU7HB" : { + "ZS78J2NQU7SMU7HB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZS78J2NQU7SMU7HB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZS78J2NQU7SMU7HB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZS78J2NQU7SMU7HB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.926 per On Demand R3 Dedicated Host Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PY2CUEC5DXV8VV3Y" : { + "PY2CUEC5DXV8VV3Y.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PY2CUEC5DXV8VV3Y", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PY2CUEC5DXV8VV3Y.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PY2CUEC5DXV8VV3Y.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 for 750 Mbps per d2.xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "WEJJ8BVQUW2CFG55" : { + "WEJJ8BVQUW2CFG55.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "WEJJ8BVQUW2CFG55", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "WEJJ8BVQUW2CFG55.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "WEJJ8BVQUW2CFG55.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.24 per Dedicated RHEL c5.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CG5KRXYBD8PDWRA7" : { + "CG5KRXYBD8PDWRA7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CG5KRXYBD8PDWRA7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CG5KRXYBD8PDWRA7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CG5KRXYBD8PDWRA7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL d2.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TWMSTK9JU8ZP6G3X" : { + "TWMSTK9JU8ZP6G3X.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TWMSTK9JU8ZP6G3X", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TWMSTK9JU8ZP6G3X.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TWMSTK9JU8ZP6G3X.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Std x1e.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UHW9QAKPPBUC6E5K" : { + "UHW9QAKPPBUC6E5K.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UHW9QAKPPBUC6E5K", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UHW9QAKPPBUC6E5K.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UHW9QAKPPBUC6E5K.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux c3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VS9R2VWDK4T46YAC" : { + "VS9R2VWDK4T46YAC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VS9R2VWDK4T46YAC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VS9R2VWDK4T46YAC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VS9R2VWDK4T46YAC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 for 10000 Mbps per m4.large instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZWKFSQ2ZGE2PEHZQ" : { + "ZWKFSQ2ZGE2PEHZQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZWKFSQ2ZGE2PEHZQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZWKFSQ2ZGE2PEHZQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZWKFSQ2ZGE2PEHZQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$5.044 per Dedicated Usage Windows with SQL Std r3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.0440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZG4JRPCC4VZQWHCQ" : { + "ZG4JRPCC4VZQWHCQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZG4JRPCC4VZQWHCQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZG4JRPCC4VZQWHCQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZG4JRPCC4VZQWHCQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.45 per On Demand Windows r4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7V39RZQPSWWKKC2U" : { + "7V39RZQPSWWKKC2U.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7V39RZQPSWWKKC2U", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7V39RZQPSWWKKC2U.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7V39RZQPSWWKKC2U.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.166 per On Demand SQL Web c3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JR4AM7VS63CTEPMN" : { + "JR4AM7VS63CTEPMN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JR4AM7VS63CTEPMN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JR4AM7VS63CTEPMN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JR4AM7VS63CTEPMN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.125 per GB-month of Provisioned IOPS SSD (io1) provisioned storage - US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB-Mo", + "pricePerUnit" : { + "USD" : "0.1250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FMDFEJP7NHC74DVF" : { + "FMDFEJP7NHC74DVF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FMDFEJP7NHC74DVF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FMDFEJP7NHC74DVF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FMDFEJP7NHC74DVF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.293 per Dedicated SUSE m1.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AP8CRXEFDUCGR7QY" : { + "AP8CRXEFDUCGR7QY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AP8CRXEFDUCGR7QY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AP8CRXEFDUCGR7QY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AP8CRXEFDUCGR7QY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.192 per On Demand Windows m4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JB6B8VEMWKJACNH2" : { + "JB6B8VEMWKJACNH2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JB6B8VEMWKJACNH2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JB6B8VEMWKJACNH2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JB6B8VEMWKJACNH2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.050 for 1000 Mbps per g2.2xlarge instance-hour (or partial hour)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JTQJ2YNV8MN79SVF" : { + "JTQJ2YNV8MN79SVF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JTQJ2YNV8MN79SVF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JTQJ2YNV8MN79SVF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JTQJ2YNV8MN79SVF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Linux c5.18xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "26EZN83WFYW935BY" : { + "26EZN83WFYW935BY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "26EZN83WFYW935BY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "26EZN83WFYW935BY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "26EZN83WFYW935BY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.662 per On Demand RHEL m3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YRUVJDC2XTW5YRU3" : { + "YRUVJDC2XTW5YRU3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YRUVJDC2XTW5YRU3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YRUVJDC2XTW5YRU3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YRUVJDC2XTW5YRU3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$5.144 per On Demand SQL Web hs1.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.1440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BYDPYVAT6B57HKJT" : { + "BYDPYVAT6B57HKJT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BYDPYVAT6B57HKJT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BYDPYVAT6B57HKJT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BYDPYVAT6B57HKJT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.977 per Dedicated RHEL x1e.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "X4RWGEB2DKQGCWC2" : { + "X4RWGEB2DKQGCWC2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "X4RWGEB2DKQGCWC2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "X4RWGEB2DKQGCWC2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "X4RWGEB2DKQGCWC2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.130 per On Demand Linux c1.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XDBQD4Z97Q72N97A" : { + "XDBQD4Z97Q72N97A.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XDBQD4Z97Q72N97A", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XDBQD4Z97Q72N97A.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XDBQD4Z97Q72N97A.JRTCKXETXF.6YS6EN2CT7", + "description" : "$34.74 per Dedicated Windows with SQL Web x1e.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "34.7400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SUJ3QNNHT5BXCCWP" : { + "SUJ3QNNHT5BXCCWP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SUJ3QNNHT5BXCCWP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SUJ3QNNHT5BXCCWP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SUJ3QNNHT5BXCCWP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.738 per On Demand Windows with SQL Web r3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "433RA7YYXTQK4NPN" : { + "433RA7YYXTQK4NPN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "433RA7YYXTQK4NPN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "433RA7YYXTQK4NPN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "433RA7YYXTQK4NPN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE m4.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BUBBYJ9CTGMQDCAN" : { + "BUBBYJ9CTGMQDCAN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BUBBYJ9CTGMQDCAN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BUBBYJ9CTGMQDCAN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BUBBYJ9CTGMQDCAN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.69 per On Demand RHEL g3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.6900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Z6NT2VUPAUJTCBJV" : { + "Z6NT2VUPAUJTCBJV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Z6NT2VUPAUJTCBJV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Z6NT2VUPAUJTCBJV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Z6NT2VUPAUJTCBJV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web g2.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TE86D77WEKH98NPZ" : { + "TE86D77WEKH98NPZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TE86D77WEKH98NPZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TE86D77WEKH98NPZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TE86D77WEKH98NPZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise c3.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VP7WYZSF63TZQ25D" : { + "VP7WYZSF63TZQ25D.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VP7WYZSF63TZQ25D", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VP7WYZSF63TZQ25D.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VP7WYZSF63TZQ25D.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.638 per Dedicated SQL Std m2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "U333877KGJA25DEX" : { + "U333877KGJA25DEX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "U333877KGJA25DEX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "U333877KGJA25DEX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "U333877KGJA25DEX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.30 per On Demand SUSE m4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ERSKB3J598DCE2QB" : { + "ERSKB3J598DCE2QB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ERSKB3J598DCE2QB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ERSKB3J598DCE2QB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ERSKB3J598DCE2QB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$16.132 per On Demand Windows with SQL Server Enterprise r3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.1320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "X2CZGDXUSRSFGZQ7" : { + "X2CZGDXUSRSFGZQ7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "X2CZGDXUSRSFGZQ7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "X2CZGDXUSRSFGZQ7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "X2CZGDXUSRSFGZQ7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.46 per On Demand RHEL r3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KCTR9Z2CY7MTZPGS" : { + "KCTR9Z2CY7MTZPGS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KCTR9Z2CY7MTZPGS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KCTR9Z2CY7MTZPGS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KCTR9Z2CY7MTZPGS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$8.199 per Dedicated Usage Windows with SQL Server Enterprise r3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.1990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VJ4XPF7YHUHKA3ZJ" : { + "VJ4XPF7YHUHKA3ZJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VJ4XPF7YHUHKA3ZJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VJ4XPF7YHUHKA3ZJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VJ4XPF7YHUHKA3ZJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.469 per Dedicated RHEL x1e.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7JWZZUN6V6RU9JES" : { + "7JWZZUN6V6RU9JES.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7JWZZUN6V6RU9JES", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7JWZZUN6V6RU9JES.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7JWZZUN6V6RU9JES.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.100 per Dedicated SUSE cc2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2MAPZERKCXRGMU4P" : { + "2MAPZERKCXRGMU4P.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2MAPZERKCXRGMU4P", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2MAPZERKCXRGMU4P.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2MAPZERKCXRGMU4P.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.366 per On Demand C5 Dedicated Host Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SMS2RQFVUU6VDNFP" : { + "SMS2RQFVUU6VDNFP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SMS2RQFVUU6VDNFP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SMS2RQFVUU6VDNFP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SMS2RQFVUU6VDNFP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.364 per Dedicated Windows c5.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7P443J9REGZVNYQY" : { + "7P443J9REGZVNYQY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7P443J9REGZVNYQY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7P443J9REGZVNYQY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7P443J9REGZVNYQY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.79 per Dedicated Usage RHEL r3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YRY7U9ETRK6GWQEU" : { + "YRY7U9ETRK6GWQEU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YRY7U9ETRK6GWQEU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YRY7U9ETRK6GWQEU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YRY7U9ETRK6GWQEU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.774 per Dedicated Usage Windows with SQL Std m3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9HPS57TE9XYPQEV9" : { + "9HPS57TE9XYPQEV9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9HPS57TE9XYPQEV9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9HPS57TE9XYPQEV9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9HPS57TE9XYPQEV9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web m3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KNFTFJY262DHDG36" : { + "KNFTFJY262DHDG36.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KNFTFJY262DHDG36", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KNFTFJY262DHDG36.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KNFTFJY262DHDG36.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.79 per On Demand RHEL r3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CGHFTKH25J86C64Y" : { + "CGHFTKH25J86C64Y.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CGHFTKH25J86C64Y", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CGHFTKH25J86C64Y.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CGHFTKH25J86C64Y.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.813 per Dedicated Usage Windows r4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Q7XJ7URGAZ8RWDX7" : { + "Q7XJ7URGAZ8RWDX7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Q7XJ7URGAZ8RWDX7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Q7XJ7URGAZ8RWDX7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Q7XJ7URGAZ8RWDX7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.700 per Dedicated SUSE hs1.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.7000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RS5KEAYU8MER5RSM" : { + "RS5KEAYU8MER5RSM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RS5KEAYU8MER5RSM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RS5KEAYU8MER5RSM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RS5KEAYU8MER5RSM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE r4.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6RTK76EDTUWSCDZ8" : { + "6RTK76EDTUWSCDZ8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6RTK76EDTUWSCDZ8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6RTK76EDTUWSCDZ8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6RTK76EDTUWSCDZ8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.53 per On Demand Windows BYOL c5.9xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6TY9KK9HGP4Z383Q" : { + "6TY9KK9HGP4Z383Q.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6TY9KK9HGP4Z383Q", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6TY9KK9HGP4Z383Q.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6TY9KK9HGP4Z383Q.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL c3.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7VQV76T5CW2D2S7E" : { + "7VQV76T5CW2D2S7E.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7VQV76T5CW2D2S7E", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7VQV76T5CW2D2S7E.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7VQV76T5CW2D2S7E.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.3 per On Demand Windows BYOL cc1.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5XKKG2W7WCHSD7VK" : { + "5XKKG2W7WCHSD7VK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5XKKG2W7WCHSD7VK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5XKKG2W7WCHSD7VK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5XKKG2W7WCHSD7VK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Web x1e.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FYEGBZ26B3KMNACW" : { + "FYEGBZ26B3KMNACW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FYEGBZ26B3KMNACW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FYEGBZ26B3KMNACW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FYEGBZ26B3KMNACW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.703 per Dedicated SQL Web cg1.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6NR8XUQNBC8BXB6C" : { + "6NR8XUQNBC8BXB6C.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6NR8XUQNBC8BXB6C", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6NR8XUQNBC8BXB6C.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6NR8XUQNBC8BXB6C.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.5 per On Demand Windows BYOL cr1.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MGQK9YE98AEGCFNM" : { + "MGQK9YE98AEGCFNM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MGQK9YE98AEGCFNM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MGQK9YE98AEGCFNM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MGQK9YE98AEGCFNM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.942 per On Demand SQL Web i2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.9420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Y8GH4ZVR4XW8623W" : { + "Y8GH4ZVR4XW8623W.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Y8GH4ZVR4XW8623W", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Y8GH4ZVR4XW8623W.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Y8GH4ZVR4XW8623W.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.116 per Dedicated Linux c3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "R4QE46FY6EGW3G4T" : { + "R4QE46FY6EGW3G4T.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "R4QE46FY6EGW3G4T", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "R4QE46FY6EGW3G4T.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "R4QE46FY6EGW3G4T.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.422 per On Demand Windows with SQL Web c5.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "V6XZ8Q6G3WH46NAH" : { + "V6XZ8Q6G3WH46NAH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "V6XZ8Q6G3WH46NAH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "V6XZ8Q6G3WH46NAH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "V6XZ8Q6G3WH46NAH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.672 per On Demand Windows with SQL Std m4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BKJP7BSW4MHQHNVV" : { + "BKJP7BSW4MHQHNVV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BKJP7BSW4MHQHNVV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BKJP7BSW4MHQHNVV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BKJP7BSW4MHQHNVV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux m4.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AJYJZ3X3S2AJ2D6D" : { + "AJYJZ3X3S2AJ2D6D.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AJYJZ3X3S2AJ2D6D", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AJYJZ3X3S2AJ2D6D.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AJYJZ3X3S2AJ2D6D.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.428 per On Demand Windows p3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7MZTFYDPAUJUXG8R" : { + "7MZTFYDPAUJUXG8R.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7MZTFYDPAUJUXG8R", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7MZTFYDPAUJUXG8R.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7MZTFYDPAUJUXG8R.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.78 per On Demand RHEL f1.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9RBZ58Y8EJXERRGT" : { + "9RBZ58Y8EJXERRGT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9RBZ58Y8EJXERRGT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9RBZ58Y8EJXERRGT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9RBZ58Y8EJXERRGT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web r3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NJGTPJ6BZDGQXTUY" : { + "NJGTPJ6BZDGQXTUY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NJGTPJ6BZDGQXTUY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NJGTPJ6BZDGQXTUY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NJGTPJ6BZDGQXTUY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Server Enterprise c5.9xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "WJ879Q9A4WW7T6Y3" : { + "WJ879Q9A4WW7T6Y3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "WJ879Q9A4WW7T6Y3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "WJ879Q9A4WW7T6Y3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "WJ879Q9A4WW7T6Y3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web r4.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Y5HXB4JMEUSW7MKH" : { + "Y5HXB4JMEUSW7MKH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Y5HXB4JMEUSW7MKH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Y5HXB4JMEUSW7MKH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Y5HXB4JMEUSW7MKH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.373 per Dedicated Windows BYOL i3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2NCC7B83WHP39NK5" : { + "2NCC7B83WHP39NK5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2NCC7B83WHP39NK5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2NCC7B83WHP39NK5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2NCC7B83WHP39NK5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.780 per On Demand RHEL g2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RM8MDNG928Q7RY5N" : { + "RM8MDNG928Q7RY5N.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RM8MDNG928Q7RY5N", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RM8MDNG928Q7RY5N.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RM8MDNG928Q7RY5N.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows m4.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "K9GMF5NPRDG654FW" : { + "K9GMF5NPRDG654FW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "K9GMF5NPRDG654FW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "K9GMF5NPRDG654FW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "K9GMF5NPRDG654FW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.266 per On Demand Windows BYOL m3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7WKKM2PCFQV7UGX4" : { + "7WKKM2PCFQV7UGX4.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7WKKM2PCFQV7UGX4", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7WKKM2PCFQV7UGX4.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7WKKM2PCFQV7UGX4.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.336 per Dedicated SQL Std c1.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2S47E3PRB8XVH9QV" : { + "2S47E3PRB8XVH9QV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2S47E3PRB8XVH9QV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2S47E3PRB8XVH9QV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2S47E3PRB8XVH9QV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.3712 per On Demand Linux t2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3712000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XGXYRYWGNXSSEUVT" : { + "XGXYRYWGNXSSEUVT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XGXYRYWGNXSSEUVT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XGXYRYWGNXSSEUVT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XGXYRYWGNXSSEUVT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.02 per GB - US East (Northern Virginia) data transfer to US West (Oregon)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SUWG7U93QWGDKW8P" : { + "SUWG7U93QWGDKW8P.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SUWG7U93QWGDKW8P", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SUWG7U93QWGDKW8P.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SUWG7U93QWGDKW8P.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.441 per Dedicated Usage SUSE r4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BHM7BATGW8NG4NZ4" : { + "BHM7BATGW8NG4NZ4.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BHM7BATGW8NG4NZ4", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BHM7BATGW8NG4NZ4.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BHM7BATGW8NG4NZ4.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.02 per GB - US East (Northern Virginia) data transfer to Asia Pacific (Mumbai)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GQZCFDP9G7RHFB9X" : { + "GQZCFDP9G7RHFB9X.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GQZCFDP9G7RHFB9X", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GQZCFDP9G7RHFB9X.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GQZCFDP9G7RHFB9X.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web r4.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4C2WZDUPRUA5S7YC" : { + "4C2WZDUPRUA5S7YC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4C2WZDUPRUA5S7YC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4C2WZDUPRUA5S7YC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4C2WZDUPRUA5S7YC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE r3.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "H4ERZSZPBES3WKPY" : { + "H4ERZSZPBES3WKPY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "H4ERZSZPBES3WKPY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "H4ERZSZPBES3WKPY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "H4ERZSZPBES3WKPY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.33 per Dedicated RHEL m4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DX44AJZKPEUWHF3H" : { + "DX44AJZKPEUWHF3H.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DX44AJZKPEUWHF3H", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DX44AJZKPEUWHF3H.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DX44AJZKPEUWHF3H.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.768 per On Demand SUSE x1e.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FN8H3W6RA9EGGSDT" : { + "FN8H3W6RA9EGGSDT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FN8H3W6RA9EGGSDT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FN8H3W6RA9EGGSDT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FN8H3W6RA9EGGSDT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.721 per Dedicated Linux c5.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "G58S7QPRR2YBRCEW" : { + "G58S7QPRR2YBRCEW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "G58S7QPRR2YBRCEW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "G58S7QPRR2YBRCEW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "G58S7QPRR2YBRCEW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise r3.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "24EZ2DK36FZ2REKT" : { + "24EZ2DK36FZ2REKT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "24EZ2DK36FZ2REKT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "24EZ2DK36FZ2REKT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "24EZ2DK36FZ2REKT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$15.6 per On Demand Windows with SQL Server Enterprise r4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.6000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QW4FHUGEZYB74TW8" : { + "QW4FHUGEZYB74TW8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QW4FHUGEZYB74TW8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QW4FHUGEZYB74TW8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QW4FHUGEZYB74TW8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.68 per On Demand Linux c5.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YVR4R7XCGTF5BWVS" : { + "YVR4R7XCGTF5BWVS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YVR4R7XCGTF5BWVS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YVR4R7XCGTF5BWVS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YVR4R7XCGTF5BWVS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.051 per Dedicated SQL Std m1.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DN4D2SAMCUHNKK2B" : { + "DN4D2SAMCUHNKK2B.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DN4D2SAMCUHNKK2B", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DN4D2SAMCUHNKK2B.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DN4D2SAMCUHNKK2B.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.818 per On Demand Windows with SQL Web m4.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CR9BJ8YMV2HGWRBH" : { + "CR9BJ8YMV2HGWRBH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CR9BJ8YMV2HGWRBH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CR9BJ8YMV2HGWRBH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CR9BJ8YMV2HGWRBH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.532 per On Demand Linux r4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3RVR33X4EBZ55XDC" : { + "3RVR33X4EBZ55XDC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3RVR33X4EBZ55XDC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3RVR33X4EBZ55XDC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3RVR33X4EBZ55XDC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Linux c5.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FYP43BRDNQ66J7E7" : { + "FYP43BRDNQ66J7E7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FYP43BRDNQ66J7E7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FYP43BRDNQ66J7E7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FYP43BRDNQ66J7E7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$67.226 per On Demand Windows with SQL Server Enterprise x1.32xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "67.2260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HXSNUHZ63WJ98R8B" : { + "HXSNUHZ63WJ98R8B.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HXSNUHZ63WJ98R8B", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HXSNUHZ63WJ98R8B.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HXSNUHZ63WJ98R8B.JRTCKXETXF.6YS6EN2CT7", + "description" : "$13.20 per On Demand Windows BYOL f1.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.2000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "W22DG9FACE6C38MS" : { + "W22DG9FACE6C38MS.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "W22DG9FACE6C38MS", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "W22DG9FACE6C38MS.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "W22DG9FACE6C38MS.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.273 per Dedicated Windows with SQL Web m4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VNX2EXRCP445NC9K" : { + "VNX2EXRCP445NC9K.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VNX2EXRCP445NC9K", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VNX2EXRCP445NC9K.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VNX2EXRCP445NC9K.JRTCKXETXF.6YS6EN2CT7", + "description" : "$6.950 per On Demand RHEL i2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.9500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7YAZRK59RPPWSKMN" : { + "7YAZRK59RPPWSKMN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7YAZRK59RPPWSKMN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7YAZRK59RPPWSKMN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7YAZRK59RPPWSKMN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.345 per On Demand Windows m2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VQ9NZ966GW3FJN84" : { + "VQ9NZ966GW3FJN84.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VQ9NZ966GW3FJN84", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VQ9NZ966GW3FJN84.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VQ9NZ966GW3FJN84.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.576 per On Demand Windows with SQL Server Enterprise c3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "D6YAK3JVF2VWSDJ9" : { + "D6YAK3JVF2VWSDJ9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "D6YAK3JVF2VWSDJ9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "D6YAK3JVF2VWSDJ9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "D6YAK3JVF2VWSDJ9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.13 per On Demand Windows m3.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NBUQPTSYHSXS2EB6" : { + "NBUQPTSYHSXS2EB6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NBUQPTSYHSXS2EB6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NBUQPTSYHSXS2EB6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NBUQPTSYHSXS2EB6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per GB - US East (Northern Virginia) data transfer from US West (Northern California)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HU3VQPHQ79Z4SYU9" : { + "HU3VQPHQ79Z4SYU9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HU3VQPHQ79Z4SYU9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HU3VQPHQ79Z4SYU9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HU3VQPHQ79Z4SYU9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.33 per On Demand RHEL m4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TJN762HY6CCQEX25" : { + "TJN762HY6CCQEX25.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TJN762HY6CCQEX25", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TJN762HY6CCQEX25.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TJN762HY6CCQEX25.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows i2.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SZADZHSFYSRDW37F" : { + "SZADZHSFYSRDW37F.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SZADZHSFYSRDW37F", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SZADZHSFYSRDW37F.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SZADZHSFYSRDW37F.JRTCKXETXF.6YS6EN2CT7", + "description" : "$12.485 per On Demand Windows with SQL Std c4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.4850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "V9GRWABS3YTSNDT3" : { + "V9GRWABS3YTSNDT3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "V9GRWABS3YTSNDT3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "V9GRWABS3YTSNDT3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "V9GRWABS3YTSNDT3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.182 per Dedicated Windows c5.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JMY8QZUVY8MRJ29G" : { + "JMY8QZUVY8MRJ29G.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JMY8QZUVY8MRJ29G", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JMY8QZUVY8MRJ29G.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JMY8QZUVY8MRJ29G.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per SUSE i3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AZ53HKVHTCDJVZZ5" : { + "AZ53HKVHTCDJVZZ5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AZ53HKVHTCDJVZZ5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AZ53HKVHTCDJVZZ5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AZ53HKVHTCDJVZZ5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.79 per On Demand SUSE d2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QMW9CSCFTNV2H99M" : { + "QMW9CSCFTNV2H99M.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QMW9CSCFTNV2H99M", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QMW9CSCFTNV2H99M.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QMW9CSCFTNV2H99M.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.266 per On Demand Linux r4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GA5PWJF9UF3X7YVH" : { + "GA5PWJF9UF3X7YVH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GA5PWJF9UF3X7YVH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GA5PWJF9UF3X7YVH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GA5PWJF9UF3X7YVH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.445 per On Demand SQL Web m2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VTKYCWG47S8NZFFH" : { + "VTKYCWG47S8NZFFH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VTKYCWG47S8NZFFH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VTKYCWG47S8NZFFH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VTKYCWG47S8NZFFH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.054 per Dedicated Windows with SQL Server Enterprise i3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.0540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CRRB3H2DYHU6K9FV" : { + "CRRB3H2DYHU6K9FV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CRRB3H2DYHU6K9FV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CRRB3H2DYHU6K9FV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CRRB3H2DYHU6K9FV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.600 per On Demand Linux hs1.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.6000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2XTPEFBB8H3K4XFX" : { + "2XTPEFBB8H3K4XFX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2XTPEFBB8H3K4XFX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2XTPEFBB8H3K4XFX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2XTPEFBB8H3K4XFX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std c3.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "G24JGV5VNDJ37S5F" : { + "G24JGV5VNDJ37S5F.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "G24JGV5VNDJ37S5F", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "G24JGV5VNDJ37S5F.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "G24JGV5VNDJ37S5F.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL m4.10xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "K28HPP98RVTNWAAD" : { + "K28HPP98RVTNWAAD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "K28HPP98RVTNWAAD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "K28HPP98RVTNWAAD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "K28HPP98RVTNWAAD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.10 per Dedicated SUSE m4.10xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Y3Y6KWQHPWZMXFTW" : { + "Y3Y6KWQHPWZMXFTW.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Y3Y6KWQHPWZMXFTW", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Y3Y6KWQHPWZMXFTW.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Y3Y6KWQHPWZMXFTW.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.014 per Dedicated Windows with SQL Std i3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MEWEMY6NUVGMP6AP" : { + "MEWEMY6NUVGMP6AP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MEWEMY6NUVGMP6AP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MEWEMY6NUVGMP6AP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MEWEMY6NUVGMP6AP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL m3.medium Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AEGXDVRPAPWQ229X" : { + "AEGXDVRPAPWQ229X.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AEGXDVRPAPWQ229X", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AEGXDVRPAPWQ229X.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AEGXDVRPAPWQ229X.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.100 per Dedicated Windows BYOL cg1.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6BD6MNUEKG75NY7W" : { + "6BD6MNUEKG75NY7W.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6BD6MNUEKG75NY7W", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6BD6MNUEKG75NY7W.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6BD6MNUEKG75NY7W.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.884 per Dedicated Windows with SQL Std m4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VECCJJE6R85MP4ET" : { + "VECCJJE6R85MP4ET.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VECCJJE6R85MP4ET", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VECCJJE6R85MP4ET.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VECCJJE6R85MP4ET.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.69 per On Demand Windows BYOL d2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FDH7AF66PWQFC4ZX" : { + "FDH7AF66PWQFC4ZX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FDH7AF66PWQFC4ZX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FDH7AF66PWQFC4ZX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FDH7AF66PWQFC4ZX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$27.424 per Dedicated Windows p3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "27.4240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JTDCCHG4KZ5M8H8N" : { + "JTDCCHG4KZ5M8H8N.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JTDCCHG4KZ5M8H8N", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JTDCCHG4KZ5M8H8N.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JTDCCHG4KZ5M8H8N.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.275 per On Demand SUSE m1.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "97BZM647G2XZPFCY" : { + "97BZM647G2XZPFCY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "97BZM647G2XZPFCY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "97BZM647G2XZPFCY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "97BZM647G2XZPFCY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.598 per Dedicated Windows with SQL Web i3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TYZADFBQUJ5K2FN7" : { + "TYZADFBQUJ5K2FN7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TYZADFBQUJ5K2FN7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TYZADFBQUJ5K2FN7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TYZADFBQUJ5K2FN7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.09 per GB - Asia Pacific (Singapore) data transfer to US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "86VC54YVHZCQW5AC" : { + "86VC54YVHZCQW5AC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "86VC54YVHZCQW5AC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "86VC54YVHZCQW5AC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "86VC54YVHZCQW5AC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.403 per Dedicated Usage Windows c4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "R8DGVR4A52UQ7VP6" : { + "R8DGVR4A52UQ7VP6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "R8DGVR4A52UQ7VP6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "R8DGVR4A52UQ7VP6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "R8DGVR4A52UQ7VP6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per GB - US East (Northern Virginia) data transfer from South America (Sao Paulo)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DRAB8D3XCC6DBS2S" : { + "DRAB8D3XCC6DBS2S.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DRAB8D3XCC6DBS2S", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DRAB8D3XCC6DBS2S.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DRAB8D3XCC6DBS2S.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per SUSE p3.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TW7YX8U2PR5YVTFK" : { + "TW7YX8U2PR5YVTFK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TW7YX8U2PR5YVTFK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TW7YX8U2PR5YVTFK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TW7YX8U2PR5YVTFK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows c3.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XNHWHA56JBG8ZQZQ" : { + "XNHWHA56JBG8ZQZQ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XNHWHA56JBG8ZQZQ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XNHWHA56JBG8ZQZQ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XNHWHA56JBG8ZQZQ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Std x1e.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "5S2R8NPMY3DY32FC" : { + "5S2R8NPMY3DY32FC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "5S2R8NPMY3DY32FC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "5S2R8NPMY3DY32FC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "5S2R8NPMY3DY32FC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Std c5.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4CWD92A352MDCZ9Q" : { + "4CWD92A352MDCZ9Q.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4CWD92A352MDCZ9Q", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4CWD92A352MDCZ9Q.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4CWD92A352MDCZ9Q.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.256 per Dedicated Usage SUSE m3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PHH3YFDMQYEVPEK4" : { + "PHH3YFDMQYEVPEK4.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PHH3YFDMQYEVPEK4", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PHH3YFDMQYEVPEK4.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PHH3YFDMQYEVPEK4.JRTCKXETXF.6YS6EN2CT7", + "description" : "$6.772 per On Demand SUSE x1e.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.7720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "B2SAE43884DJ529Q" : { + "B2SAE43884DJ529Q.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "B2SAE43884DJ529Q", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "B2SAE43884DJ529Q.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "B2SAE43884DJ529Q.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL p2.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "E3V2KVENAFSFNH7J" : { + "E3V2KVENAFSFNH7J.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "E3V2KVENAFSFNH7J", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "E3V2KVENAFSFNH7J.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "E3V2KVENAFSFNH7J.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per GB - Asia Pacific (Singapore) data transfer from US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "M9PVZPV4MHCKEKFH" : { + "M9PVZPV4MHCKEKFH.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "M9PVZPV4MHCKEKFH", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "M9PVZPV4MHCKEKFH.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "M9PVZPV4MHCKEKFH.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.26 per On Demand RHEL m4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "269VXUCZZ7E6JNXT" : { + "269VXUCZZ7E6JNXT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "269VXUCZZ7E6JNXT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "269VXUCZZ7E6JNXT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "269VXUCZZ7E6JNXT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.05 per GB-month of Magnetic provisioned storage - US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB-Mo", + "pricePerUnit" : { + "USD" : "0.0500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6UGXE3NSRP2KMUVK" : { + "6UGXE3NSRP2KMUVK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6UGXE3NSRP2KMUVK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6UGXE3NSRP2KMUVK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6UGXE3NSRP2KMUVK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std i2.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TTPHQSRWDV7SEYMT" : { + "TTPHQSRWDV7SEYMT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TTPHQSRWDV7SEYMT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TTPHQSRWDV7SEYMT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TTPHQSRWDV7SEYMT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.938 per Dedicated Windows BYOL i2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MDWHVPMZ3JHUF4C8" : { + "MDWHVPMZ3JHUF4C8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MDWHVPMZ3JHUF4C8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MDWHVPMZ3JHUF4C8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MDWHVPMZ3JHUF4C8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.192 per Dedicated SQL Std m2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3X6QM8VEN9SGUP4E" : { + "3X6QM8VEN9SGUP4E.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3X6QM8VEN9SGUP4E", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3X6QM8VEN9SGUP4E.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3X6QM8VEN9SGUP4E.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.078 per Dedicated Linux m2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "FFSCXMMMXUSSXA8W" : { + "FFSCXMMMXUSSXA8W.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "FFSCXMMMXUSSXA8W", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "FFSCXMMMXUSSXA8W.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "FFSCXMMMXUSSXA8W.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.426 per Dedicated Usage Windows with SQL Web c4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VNT94W34YSHKDST8" : { + "VNT94W34YSHKDST8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VNT94W34YSHKDST8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VNT94W34YSHKDST8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VNT94W34YSHKDST8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$24.61 per Dedicated RHEL p3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "24.6100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "E598E3ESM66XHVUP" : { + "E598E3ESM66XHVUP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "E598E3ESM66XHVUP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "E598E3ESM66XHVUP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "E598E3ESM66XHVUP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.353 per On Demand Windows with SQL Std m3.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CNBDW56G9K7XSBK4" : { + "CNBDW56G9K7XSBK4.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CNBDW56G9K7XSBK4", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CNBDW56G9K7XSBK4.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CNBDW56G9K7XSBK4.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.894 per On Demand Windows with SQL Server Enterprise c3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NRK8WGZ9YPVJGC38" : { + "NRK8WGZ9YPVJGC38.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NRK8WGZ9YPVJGC38", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NRK8WGZ9YPVJGC38.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NRK8WGZ9YPVJGC38.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Linux i3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "HK2GMCFHXFH3NGAD" : { + "HK2GMCFHXFH3NGAD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "HK2GMCFHXFH3NGAD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "HK2GMCFHXFH3NGAD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "HK2GMCFHXFH3NGAD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.05 per Dedicated Usage RHEL p2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "D3DQYQJXGDG9DV7G" : { + "D3DQYQJXGDG9DV7G.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "D3DQYQJXGDG9DV7G", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "D3DQYQJXGDG9DV7G.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "D3DQYQJXGDG9DV7G.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.141 per Dedicated Windows i2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Z5UJJBU6GS6N6Y27" : { + "Z5UJJBU6GS6N6Y27.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Z5UJJBU6GS6N6Y27", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Z5UJJBU6GS6N6Y27.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Z5UJJBU6GS6N6Y27.JRTCKXETXF.6YS6EN2CT7", + "description" : "$14.88 per On Demand Windows with SQL Std r4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.8800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PEZSCPW7MSBPD29U" : { + "PEZSCPW7MSBPD29U.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PEZSCPW7MSBPD29U", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PEZSCPW7MSBPD29U.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PEZSCPW7MSBPD29U.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web r4.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YNCWT4YUEZJHAETE" : { + "YNCWT4YUEZJHAETE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YNCWT4YUEZJHAETE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YNCWT4YUEZJHAETE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YNCWT4YUEZJHAETE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise r4.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6NM6AHQ97YV7NWV2" : { + "6NM6AHQ97YV7NWV2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6NM6AHQ97YV7NWV2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6NM6AHQ97YV7NWV2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6NM6AHQ97YV7NWV2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.780 per Dedicated SUSE c3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZA47RH8PF27SDZKP" : { + "ZA47RH8PF27SDZKP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZA47RH8PF27SDZKP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZA47RH8PF27SDZKP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZA47RH8PF27SDZKP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.420 per On Demand Linux c3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9S3T4JTQ45TQKNTE" : { + "9S3T4JTQ45TQKNTE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9S3T4JTQ45TQKNTE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9S3T4JTQ45TQKNTE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9S3T4JTQ45TQKNTE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.544 per On Demand Windows with SQL Web m4.10xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9NMZ5HGTS2QHKR4V" : { + "9NMZ5HGTS2QHKR4V.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9NMZ5HGTS2QHKR4V", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9NMZ5HGTS2QHKR4V.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9NMZ5HGTS2QHKR4V.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.0216 per On Demand SUSE t2.micro Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0216000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZQQM88TCYA932EPG" : { + "ZQQM88TCYA932EPG.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZQQM88TCYA932EPG", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZQQM88TCYA932EPG.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZQQM88TCYA932EPG.JRTCKXETXF.6YS6EN2CT7", + "description" : "$14.678 per Dedicated Linux x1e.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.6780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "785SBWPX67SS7DW5" : { + "785SBWPX67SS7DW5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "785SBWPX67SS7DW5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "785SBWPX67SS7DW5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "785SBWPX67SS7DW5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per RHEL c5.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3X4XPPD8AEXYQCJ7" : { + "3X4XPPD8AEXYQCJ7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3X4XPPD8AEXYQCJ7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3X4XPPD8AEXYQCJ7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3X4XPPD8AEXYQCJ7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.54 per Dedicated SUSE m4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Y56F747HTG5NJVJ2" : { + "Y56F747HTG5NJVJ2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Y56F747HTG5NJVJ2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Y56F747HTG5NJVJ2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Y56F747HTG5NJVJ2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per GB - EU (London) data transfer from US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VX7DJN9XPR7HMV2K" : { + "VX7DJN9XPR7HMV2K.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VX7DJN9XPR7HMV2K", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VX7DJN9XPR7HMV2K.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VX7DJN9XPR7HMV2K.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE p2.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JHPHDAYNUFXJTVZB" : { + "JHPHDAYNUFXJTVZB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JHPHDAYNUFXJTVZB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JHPHDAYNUFXJTVZB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JHPHDAYNUFXJTVZB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.153 per Dedicated SQL Web m1.small Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "68JXBV5UF5AMUV4X" : { + "68JXBV5UF5AMUV4X.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "68JXBV5UF5AMUV4X", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "68JXBV5UF5AMUV4X.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "68JXBV5UF5AMUV4X.JRTCKXETXF.6YS6EN2CT7", + "description" : "$8.144 per On Demand Windows x1e.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.1440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "R5VPK73B6MUUM6YC" : { + "R5VPK73B6MUUM6YC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "R5VPK73B6MUUM6YC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "R5VPK73B6MUUM6YC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "R5VPK73B6MUUM6YC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.368 per Dedicated SQL Web i2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.3680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZGMR5TZVDVP9BAJZ" : { + "ZGMR5TZVDVP9BAJZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZGMR5TZVDVP9BAJZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZGMR5TZVDVP9BAJZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZGMR5TZVDVP9BAJZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.02 per GB - Canada (Central) data transfer to US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BAFH9QBR62G3RHWT" : { + "BAFH9QBR62G3RHWT.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BAFH9QBR62G3RHWT", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BAFH9QBR62G3RHWT.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BAFH9QBR62G3RHWT.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per SUSE c5.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4EBV6P5EQBBDFNKX" : { + "4EBV6P5EQBBDFNKX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4EBV6P5EQBBDFNKX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4EBV6P5EQBBDFNKX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4EBV6P5EQBBDFNKX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.808 per Dedicated Windows with SQL Server Enterprise m4.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "22SBKEJ8F25GCA2X" : { + "22SBKEJ8F25GCA2X.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "22SBKEJ8F25GCA2X", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "22SBKEJ8F25GCA2X.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "22SBKEJ8F25GCA2X.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.662 per Dedicated Windows with SQL Std c5.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6TEX73KEE94WMEED" : { + "6TEX73KEE94WMEED.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6TEX73KEE94WMEED", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6TEX73KEE94WMEED.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6TEX73KEE94WMEED.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.520 per On Demand Linux c1.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GTXM83ZHJ4EVYY9U" : { + "GTXM83ZHJ4EVYY9U.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GTXM83ZHJ4EVYY9U", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GTXM83ZHJ4EVYY9U.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GTXM83ZHJ4EVYY9U.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.008 per On Demand Windows c3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KVUGTJ5SYPS9UYG6" : { + "KVUGTJ5SYPS9UYG6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KVUGTJ5SYPS9UYG6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KVUGTJ5SYPS9UYG6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KVUGTJ5SYPS9UYG6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Web x1e.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QBZMZDA3WBTDVYJ7" : { + "QBZMZDA3WBTDVYJ7.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QBZMZDA3WBTDVYJ7", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QBZMZDA3WBTDVYJ7.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QBZMZDA3WBTDVYJ7.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.185 per Dedicated SQL Web i2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2BU9UYZTGYW8M965" : { + "2BU9UYZTGYW8M965.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2BU9UYZTGYW8M965", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2BU9UYZTGYW8M965.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2BU9UYZTGYW8M965.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.913 per Dedicated SQL Web m1.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RB56QANQ2YBHVFK2" : { + "RB56QANQ2YBHVFK2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RB56QANQ2YBHVFK2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RB56QANQ2YBHVFK2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RB56QANQ2YBHVFK2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$14.678 per Dedicated Windows BYOL x1e.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.6780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XERSDU2TVYCQWYRV" : { + "XERSDU2TVYCQWYRV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XERSDU2TVYCQWYRV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XERSDU2TVYCQWYRV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XERSDU2TVYCQWYRV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.477 per Dedicated Usage Windows r4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "73HRUT4W38285YYX" : { + "73HRUT4W38285YYX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "73HRUT4W38285YYX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "73HRUT4W38285YYX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "73HRUT4W38285YYX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.44 per On Demand Windows with SQL Std r4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GXY7B6YFCHHVPBQX" : { + "GXY7B6YFCHHVPBQX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GXY7B6YFCHHVPBQX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GXY7B6YFCHHVPBQX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GXY7B6YFCHHVPBQX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Std i3.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "984E6K3QWKATY2P9" : { + "984E6K3QWKATY2P9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "984E6K3QWKATY2P9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "984E6K3QWKATY2P9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "984E6K3QWKATY2P9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows i3.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KBAHSDRSVP6ZT96X" : { + "KBAHSDRSVP6ZT96X.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KBAHSDRSVP6ZT96X", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KBAHSDRSVP6ZT96X.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KBAHSDRSVP6ZT96X.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.048 per Dedicated Linux m1.small Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "N23UBSTNARQRHWES" : { + "N23UBSTNARQRHWES.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "N23UBSTNARQRHWES", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "N23UBSTNARQRHWES.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "N23UBSTNARQRHWES.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.76 per Dedicated Usage SUSE r3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2SN6CBPKJWMJK4W8" : { + "2SN6CBPKJWMJK4W8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2SN6CBPKJWMJK4W8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2SN6CBPKJWMJK4W8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2SN6CBPKJWMJK4W8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$6.372 per On Demand Windows c5.18xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.3720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TA9V737SGNW5GKAK" : { + "TA9V737SGNW5GKAK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TA9V737SGNW5GKAK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TA9V737SGNW5GKAK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TA9V737SGNW5GKAK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$41.344 per Dedicated Usage Windows with SQL Server Enterprise p2.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "41.3440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MRRD2QZTJZU8NEUN" : { + "MRRD2QZTJZU8NEUN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MRRD2QZTJZU8NEUN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MRRD2QZTJZU8NEUN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MRRD2QZTJZU8NEUN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Web i3.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SGYUS9N7VCKNAXVB" : { + "SGYUS9N7VCKNAXVB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SGYUS9N7VCKNAXVB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SGYUS9N7VCKNAXVB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SGYUS9N7VCKNAXVB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.504 per On Demand Windows g3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NTS9R3ZEX6FDMW8S" : { + "NTS9R3ZEX6FDMW8S.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NTS9R3ZEX6FDMW8S", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NTS9R3ZEX6FDMW8S.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NTS9R3ZEX6FDMW8S.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Web i2.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TYB68AE89KN6D5QZ" : { + "TYB68AE89KN6D5QZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TYB68AE89KN6D5QZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TYB68AE89KN6D5QZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TYB68AE89KN6D5QZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL c4.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4WQD6GEAM4NRC7U3" : { + "4WQD6GEAM4NRC7U3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4WQD6GEAM4NRC7U3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4WQD6GEAM4NRC7U3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4WQD6GEAM4NRC7U3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.096 per Dedicated Linux m1.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3P2M6AUE8TUFCQEM" : { + "3P2M6AUE8TUFCQEM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3P2M6AUE8TUFCQEM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3P2M6AUE8TUFCQEM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3P2M6AUE8TUFCQEM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows x1e.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "94UG4CXUHQVWH768" : { + "94UG4CXUHQVWH768.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "94UG4CXUHQVWH768", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "94UG4CXUHQVWH768.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "94UG4CXUHQVWH768.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.992 per Dedicated Linux i3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6BD786EZRWD4UZTB" : { + "6BD786EZRWD4UZTB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6BD786EZRWD4UZTB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6BD786EZRWD4UZTB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6BD786EZRWD4UZTB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.518 per On Demand Windows m3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MZHWDXN9MH59MH34" : { + "MZHWDXN9MH59MH34.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MZHWDXN9MH59MH34", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MZHWDXN9MH59MH34.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MZHWDXN9MH59MH34.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.700 per On Demand SQL Web m2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Z78M4CHWU3KRBC2H" : { + "Z78M4CHWU3KRBC2H.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Z78M4CHWU3KRBC2H", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Z78M4CHWU3KRBC2H.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Z78M4CHWU3KRBC2H.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.28 per Dedicated RHEL m4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TZPJVS2GCV8M5FXM" : { + "TZPJVS2GCV8M5FXM.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TZPJVS2GCV8M5FXM", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TZPJVS2GCV8M5FXM.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TZPJVS2GCV8M5FXM.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per GB data transfer out of US East (Northern Virginia) to CloudFront", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4GRDB56V2W7EVFSU" : { + "4GRDB56V2W7EVFSU.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4GRDB56V2W7EVFSU", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4GRDB56V2W7EVFSU.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4GRDB56V2W7EVFSU.JRTCKXETXF.6YS6EN2CT7", + "description" : "$4.69 per Dedicated RHEL g3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.6900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UNDMB8TE7VGADM8X" : { + "UNDMB8TE7VGADM8X.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UNDMB8TE7VGADM8X", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UNDMB8TE7VGADM8X.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UNDMB8TE7VGADM8X.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux c3.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "TJESF5VS9JX8WXEN" : { + "TJESF5VS9JX8WXEN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "TJESF5VS9JX8WXEN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "TJESF5VS9JX8WXEN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "TJESF5VS9JX8WXEN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE m4.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6AUAERFUWRVM7MMK" : { + "6AUAERFUWRVM7MMK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6AUAERFUWRVM7MMK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6AUAERFUWRVM7MMK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6AUAERFUWRVM7MMK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.06 per On Demand Linux p3.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "EAUDKWWNQJZTV253" : { + "EAUDKWWNQJZTV253.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "EAUDKWWNQJZTV253", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "EAUDKWWNQJZTV253.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "EAUDKWWNQJZTV253.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.02 per GB - US West (Oregon) data transfer to US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ED4J2JJZWVS4X9HY" : { + "ED4J2JJZWVS4X9HY.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ED4J2JJZWVS4X9HY", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ED4J2JJZWVS4X9HY.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ED4J2JJZWVS4X9HY.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux r3.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "X6RTWQ5CB38FVRKJ" : { + "X6RTWQ5CB38FVRKJ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "X6RTWQ5CB38FVRKJ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "X6RTWQ5CB38FVRKJ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "X6RTWQ5CB38FVRKJ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows r3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "9VRMFY5RW5MYMD9F" : { + "9VRMFY5RW5MYMD9F.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "9VRMFY5RW5MYMD9F", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "9VRMFY5RW5MYMD9F.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "9VRMFY5RW5MYMD9F.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.19 per Dedicated RHEL c5.18xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Z33PSF4NA7EKH68C" : { + "Z33PSF4NA7EKH68C.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Z33PSF4NA7EKH68C", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Z33PSF4NA7EKH68C.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Z33PSF4NA7EKH68C.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE i2.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XDMQUDGKMFD5ZV6E" : { + "XDMQUDGKMFD5ZV6E.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XDMQUDGKMFD5ZV6E", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XDMQUDGKMFD5ZV6E.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XDMQUDGKMFD5ZV6E.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL r4.4xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "VK7DM9VN6XHH954M" : { + "VK7DM9VN6XHH954M.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "VK7DM9VN6XHH954M", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "VK7DM9VN6XHH954M.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "VK7DM9VN6XHH954M.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.2 per Dedicated Usage Windows r4.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.2000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JUW4W8N3V4M8BP4F" : { + "JUW4W8N3V4M8BP4F.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JUW4W8N3V4M8BP4F", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JUW4W8N3V4M8BP4F.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JUW4W8N3V4M8BP4F.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per RHEL p3.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2BCVUC7VFQV76XRN" : { + "2BCVUC7VFQV76XRN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2BCVUC7VFQV76XRN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2BCVUC7VFQV76XRN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2BCVUC7VFQV76XRN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std d2.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MXS65NQ4H7WKNXGE" : { + "MXS65NQ4H7WKNXGE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MXS65NQ4H7WKNXGE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MXS65NQ4H7WKNXGE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MXS65NQ4H7WKNXGE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Linux f1.16xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3P9SFGQNFGEFVPCX" : { + "3P9SFGQNFGEFVPCX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3P9SFGQNFGEFVPCX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3P9SFGQNFGEFVPCX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3P9SFGQNFGEFVPCX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.1928 per On Demand SUSE t2.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1928000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AN49H8NYXWHMRMMP" : { + "AN49H8NYXWHMRMMP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AN49H8NYXWHMRMMP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AN49H8NYXWHMRMMP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AN49H8NYXWHMRMMP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.09 per Dedicated Windows BYOL c5.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "63SCWY92BSEPEYVC" : { + "63SCWY92BSEPEYVC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "63SCWY92BSEPEYVC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "63SCWY92BSEPEYVC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "63SCWY92BSEPEYVC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.767 per On Demand Windows g2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CZMS4AAZCDSZGNTD" : { + "CZMS4AAZCDSZGNTD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CZMS4AAZCDSZGNTD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CZMS4AAZCDSZGNTD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CZMS4AAZCDSZGNTD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.193 per On Demand RHEL r4.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4TYUSVW2SFT4SYCV" : { + "4TYUSVW2SFT4SYCV.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4TYUSVW2SFT4SYCV", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4TYUSVW2SFT4SYCV.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4TYUSVW2SFT4SYCV.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.425 per Dedicated Usage Windows with SQL Web r3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3M86JWNYP8BSN55W" : { + "3M86JWNYP8BSN55W.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3M86JWNYP8BSN55W", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3M86JWNYP8BSN55W.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3M86JWNYP8BSN55W.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.550 per On Demand RHEL m2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "7XDBWG89WM5JF367" : { + "7XDBWG89WM5JF367.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "7XDBWG89WM5JF367", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "7XDBWG89WM5JF367.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "7XDBWG89WM5JF367.JRTCKXETXF.6YS6EN2CT7", + "description" : "$15.616 per On Demand Windows with SQL Std i3.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.6160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KC3PFUW2U3T5RRSR" : { + "KC3PFUW2U3T5RRSR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KC3PFUW2U3T5RRSR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KC3PFUW2U3T5RRSR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KC3PFUW2U3T5RRSR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$16.288 per On Demand Windows x1e.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.2880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "6U6GZ2DN4RFCJ7D9" : { + "6U6GZ2DN4RFCJ7D9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "6U6GZ2DN4RFCJ7D9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "6U6GZ2DN4RFCJ7D9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "6U6GZ2DN4RFCJ7D9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.085 per On Demand Linux c5.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "Z73VPF4R8N955QMR" : { + "Z73VPF4R8N955QMR.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "Z73VPF4R8N955QMR", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "Z73VPF4R8N955QMR.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "Z73VPF4R8N955QMR.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.128 per On Demand Linux r4.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "KAZBRUMA5WBV7S69" : { + "KAZBRUMA5WBV7S69.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "KAZBRUMA5WBV7S69", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "KAZBRUMA5WBV7S69.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "KAZBRUMA5WBV7S69.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.5742 per On Demand Windows with SQL Web t2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5742000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "GEDBVWHPGWMPYFMC" : { + "GEDBVWHPGWMPYFMC.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "GEDBVWHPGWMPYFMC", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "GEDBVWHPGWMPYFMC.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "GEDBVWHPGWMPYFMC.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.210 per On Demand Linux c3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MYS2DJRWTYJAZ2G3" : { + "MYS2DJRWTYJAZ2G3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MYS2DJRWTYJAZ2G3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MYS2DJRWTYJAZ2G3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MYS2DJRWTYJAZ2G3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Std c3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "3PNERBF8KG8M4GQ2" : { + "3PNERBF8KG8M4GQ2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "3PNERBF8KG8M4GQ2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "3PNERBF8KG8M4GQ2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "3PNERBF8KG8M4GQ2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.33 per On Demand Windows BYOL r3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "D8HDF78JFRVMSXZK" : { + "D8HDF78JFRVMSXZK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "D8HDF78JFRVMSXZK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "D8HDF78JFRVMSXZK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "D8HDF78JFRVMSXZK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$10.94 per On Demand Windows with SQL Web x1.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.9400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PWKZ9X73UG7P4PFN" : { + "PWKZ9X73UG7P4PFN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PWKZ9X73UG7P4PFN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PWKZ9X73UG7P4PFN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PWKZ9X73UG7P4PFN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL d2.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AXBKPP5M3DJRHZ89" : { + "AXBKPP5M3DJRHZ89.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AXBKPP5M3DJRHZ89", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AXBKPP5M3DJRHZ89.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AXBKPP5M3DJRHZ89.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.339 per Dedicated Windows BYOL x1e.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "4V9HUNHYA5JHS8MD" : { + "4V9HUNHYA5JHS8MD.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "4V9HUNHYA5JHS8MD", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "4V9HUNHYA5JHS8MD.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "4V9HUNHYA5JHS8MD.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Windows with SQL Std c5.9xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "PRPF3JAXJK67A625" : { + "PRPF3JAXJK67A625.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "PRPF3JAXJK67A625", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "PRPF3JAXJK67A625.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "PRPF3JAXJK67A625.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows c4.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "ZA2GJ3U6RCX4Q6HE" : { + "ZA2GJ3U6RCX4Q6HE.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "ZA2GJ3U6RCX4Q6HE", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "ZA2GJ3U6RCX4Q6HE.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "ZA2GJ3U6RCX4Q6HE.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.256 per On Demand SUSE i3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "US4KNUGYQKAD8SVF" : { + "US4KNUGYQKAD8SVF.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "US4KNUGYQKAD8SVF", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "US4KNUGYQKAD8SVF.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "US4KNUGYQKAD8SVF.JRTCKXETXF.6YS6EN2CT7", + "description" : "$12.24 per On Demand Linux p3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.2400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QYDN54PY6Q429VJA" : { + "QYDN54PY6Q429VJA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QYDN54PY6Q429VJA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QYDN54PY6Q429VJA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QYDN54PY6Q429VJA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE i2.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "2Q55CNPTGCQPP362" : { + "2Q55CNPTGCQPP362.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "2Q55CNPTGCQPP362", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "2Q55CNPTGCQPP362.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "2Q55CNPTGCQPP362.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.812 per Dedicated Usage Windows with SQL Web r3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "NPXGF3ETGHQX3T5Z" : { + "NPXGF3ETGHQX3T5Z.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "NPXGF3ETGHQX3T5Z", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "NPXGF3ETGHQX3T5Z.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "NPXGF3ETGHQX3T5Z.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.196 per Dedicated SUSE m1.medium Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "MEMWYBVHG4M8SJQ8" : { + "MEMWYBVHG4M8SJQ8.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "MEMWYBVHG4M8SJQ8", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "MEMWYBVHG4M8SJQ8.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "MEMWYBVHG4M8SJQ8.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.76 per On Demand Windows BYOL d2.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "QE6TWY9JZPAAAFX6" : { + "QE6TWY9JZPAAAFX6.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "QE6TWY9JZPAAAFX6", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "QE6TWY9JZPAAAFX6.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "QE6TWY9JZPAAAFX6.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per RHEL m3.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "K4FQKJH96JE6DDW2" : { + "K4FQKJH96JE6DDW2.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "K4FQKJH96JE6DDW2", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "K4FQKJH96JE6DDW2.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "K4FQKJH96JE6DDW2.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per SUSE m3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "AGHHWVT6KDRBWTWP" : { + "AGHHWVT6KDRBWTWP.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "AGHHWVT6KDRBWTWP", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "AGHHWVT6KDRBWTWP.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "AGHHWVT6KDRBWTWP.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.0058 per On Demand Linux t2.nano Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0058000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "N9VCZ7667JZZWNF5" : { + "N9VCZ7667JZZWNF5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "N9VCZ7667JZZWNF5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "N9VCZ7667JZZWNF5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "N9VCZ7667JZZWNF5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.496 per On Demand Windows BYOL i3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "T9TYJWD5FYY22EY9" : { + "T9TYJWD5FYY22EY9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "T9TYJWD5FYY22EY9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "T9TYJWD5FYY22EY9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "T9TYJWD5FYY22EY9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$7.506 per On Demand Windows with SQL Std c5.9xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "R48KWC2ZSMSQE76W" : { + "R48KWC2ZSMSQE76W.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "R48KWC2ZSMSQE76W", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "R48KWC2ZSMSQE76W.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "R48KWC2ZSMSQE76W.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Linux i2.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "DJHVN6BK8VNTW74G" : { + "DJHVN6BK8VNTW74G.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "DJHVN6BK8VNTW74G", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "DJHVN6BK8VNTW74G.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "DJHVN6BK8VNTW74G.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL c3.large Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "M5Q2FGMPJ4Q6PA2G" : { + "M5Q2FGMPJ4Q6PA2G.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "M5Q2FGMPJ4Q6PA2G", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "M5Q2FGMPJ4Q6PA2G.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "M5Q2FGMPJ4Q6PA2G.JRTCKXETXF.6YS6EN2CT7", + "description" : "$6.799 per On Demand RHEL x1.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.7990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "RSYDZDVYE5V36ECZ" : { + "RSYDZDVYE5V36ECZ.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "RSYDZDVYE5V36ECZ", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "RSYDZDVYE5V36ECZ.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "RSYDZDVYE5V36ECZ.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.805 per On Demand SUSE i2.2xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YDKCXGKCG5THW77R" : { + "YDKCXGKCG5THW77R.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YDKCXGKCG5THW77R", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YDKCXGKCG5THW77R.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YDKCXGKCG5THW77R.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.924 per Dedicated Windows BYOL c3.4xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "E3A2FAQ7KZXK2BME" : { + "E3A2FAQ7KZXK2BME.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "E3A2FAQ7KZXK2BME", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "E3A2FAQ7KZXK2BME.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "E3A2FAQ7KZXK2BME.JRTCKXETXF.6YS6EN2CT7", + "description" : "$17.96 per Dedicated Windows with SQL Std x1.16xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "17.9600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "53K4ZCP8C6KM9F2C" : { + "53K4ZCP8C6KM9F2C.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "53K4ZCP8C6KM9F2C", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "53K4ZCP8C6KM9F2C.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "53K4ZCP8C6KM9F2C.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.32 per Dedicated Usage Windows r3.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "96UUST8GZ7QZZ2Z3" : { + "96UUST8GZ7QZZ2Z3.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "96UUST8GZ7QZZ2Z3", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "96UUST8GZ7QZZ2Z3.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "96UUST8GZ7QZZ2Z3.JRTCKXETXF.6YS6EN2CT7", + "description" : "$16.072 per On Demand Windows with SQL Server Enterprise g2.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.0720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "UEMM3EBWG9B8QGPK" : { + "UEMM3EBWG9B8QGPK.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "UEMM3EBWG9B8QGPK", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "UEMM3EBWG9B8QGPK.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "UEMM3EBWG9B8QGPK.JRTCKXETXF.6YS6EN2CT7", + "description" : "$2.00 per Dedicated Linux m4.10xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XBZH83GR86H4PK4U" : { + "XBZH83GR86H4PK4U.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XBZH83GR86H4PK4U", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XBZH83GR86H4PK4U.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XBZH83GR86H4PK4U.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.00 per Linux c5.2xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "SYFUF8QKH77BHGHX" : { + "SYFUF8QKH77BHGHX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "SYFUF8QKH77BHGHX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "SYFUF8QKH77BHGHX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "SYFUF8QKH77BHGHX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.085 per On Demand Windows BYOL c5.large Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "39FN83U7M4TB4352" : { + "39FN83U7M4TB4352.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "39FN83U7M4TB4352", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "39FN83U7M4TB4352.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "39FN83U7M4TB4352.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.080 per GB - Asia Pacific (Seoul) data transfer to US East (Northern Virginia)", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "GB", + "pricePerUnit" : { + "USD" : "0.0800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "JEV4RPZQUJDFUUG5" : { + "JEV4RPZQUJDFUUG5.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "JEV4RPZQUJDFUUG5", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "JEV4RPZQUJDFUUG5.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "JEV4RPZQUJDFUUG5.JRTCKXETXF.6YS6EN2CT7", + "description" : "$3.855 per Dedicated Usage Windows with SQL Web r3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "CBEVSDJQW44MTAH9" : { + "CBEVSDJQW44MTAH9.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "CBEVSDJQW44MTAH9", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "CBEVSDJQW44MTAH9.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "CBEVSDJQW44MTAH9.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.548 per Dedicated Usage Windows with SQL Web r4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "49B7W7H2P8FD3T53" : { + "49B7W7H2P8FD3T53.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "49B7W7H2P8FD3T53", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "49B7W7H2P8FD3T53.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "49B7W7H2P8FD3T53.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows BYOL i2.8xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "XKP8XXFGKBFRSGFX" : { + "XKP8XXFGKBFRSGFX.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "XKP8XXFGKBFRSGFX", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "XKP8XXFGKBFRSGFX.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "XKP8XXFGKBFRSGFX.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.542 per On Demand SQL Web c3.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "BGU9UG7QCNNGBKAB" : { + "BGU9UG7QCNNGBKAB.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "BGU9UG7QCNNGBKAB", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "BGU9UG7QCNNGBKAB.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "BGU9UG7QCNNGBKAB.JRTCKXETXF.6YS6EN2CT7", + "description" : "$1.084 per On Demand Windows p2.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "X6PQNCEPYKKQHDCA" : { + "X6PQNCEPYKKQHDCA.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "X6PQNCEPYKKQHDCA", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "X6PQNCEPYKKQHDCA.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "X6PQNCEPYKKQHDCA.JRTCKXETXF.6YS6EN2CT7", + "description" : "$13.166 per Dedicated RHEL p3.8xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.1660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "YRB3EKJ97RGRBWWN" : { + "YRB3EKJ97RGRBWWN.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "YRB3EKJ97RGRBWWN", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "YRB3EKJ97RGRBWWN.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "YRB3EKJ97RGRBWWN.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.259 per On Demand RHEL c4.xlarge Instance Hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + }, + "G7WBD4E4RJYGHKER" : { + "G7WBD4E4RJYGHKER.JRTCKXETXF" : { + "offerTermCode" : "JRTCKXETXF", + "sku" : "G7WBD4E4RJYGHKER", + "effectiveDate" : "2017-11-01T00:00:00Z", + "priceDimensions" : { + "G7WBD4E4RJYGHKER.JRTCKXETXF.6YS6EN2CT7" : { + "rateCode" : "G7WBD4E4RJYGHKER.JRTCKXETXF.6YS6EN2CT7", + "description" : "$0.000 per Windows with SQL Server Enterprise r3.xlarge Dedicated Host Instance hour", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { } + } + } + }, + "Reserved" : { + "DQ578CGN99KG6ECF" : { + "DQ578CGN99KG6ECF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "DQ578CGN99KG6ECF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "DQ578CGN99KG6ECF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "DQ578CGN99KG6ECF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11213" + }, + "appliesTo" : [ ] + }, + "DQ578CGN99KG6ECF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "DQ578CGN99KG6ECF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DQ578CGN99KG6ECF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "DQ578CGN99KG6ECF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "DQ578CGN99KG6ECF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "DQ578CGN99KG6ECF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16924" + }, + "appliesTo" : [ ] + }, + "DQ578CGN99KG6ECF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "DQ578CGN99KG6ECF.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DQ578CGN99KG6ECF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "DQ578CGN99KG6ECF", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "DQ578CGN99KG6ECF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "DQ578CGN99KG6ECF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21728" + }, + "appliesTo" : [ ] + }, + "DQ578CGN99KG6ECF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "DQ578CGN99KG6ECF.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DQ578CGN99KG6ECF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "DQ578CGN99KG6ECF", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "DQ578CGN99KG6ECF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "DQ578CGN99KG6ECF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "DQ578CGN99KG6ECF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "DQ578CGN99KG6ECF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "42860" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DQ578CGN99KG6ECF.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "DQ578CGN99KG6ECF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "DQ578CGN99KG6ECF.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "DQ578CGN99KG6ECF.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "DMEAKMC95469FYDS" : { + "DMEAKMC95469FYDS.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "DMEAKMC95469FYDS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DMEAKMC95469FYDS.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "DMEAKMC95469FYDS.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "DMEAKMC95469FYDS.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "DMEAKMC95469FYDS.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "193608" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DMEAKMC95469FYDS.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "DMEAKMC95469FYDS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DMEAKMC95469FYDS.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "DMEAKMC95469FYDS.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DMEAKMC95469FYDS.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "DMEAKMC95469FYDS", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "DMEAKMC95469FYDS.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "DMEAKMC95469FYDS.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "95890" + }, + "appliesTo" : [ ] + }, + "DMEAKMC95469FYDS.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "DMEAKMC95469FYDS.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DMEAKMC95469FYDS.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "DMEAKMC95469FYDS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DMEAKMC95469FYDS.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "DMEAKMC95469FYDS.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "96973" + }, + "appliesTo" : [ ] + }, + "DMEAKMC95469FYDS.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "DMEAKMC95469FYDS.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DMEAKMC95469FYDS.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "DMEAKMC95469FYDS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DMEAKMC95469FYDS.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "DMEAKMC95469FYDS.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "190895" + }, + "appliesTo" : [ ] + }, + "DMEAKMC95469FYDS.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "DMEAKMC95469FYDS.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DMEAKMC95469FYDS.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "DMEAKMC95469FYDS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DMEAKMC95469FYDS.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "DMEAKMC95469FYDS.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DMEAKMC95469FYDS.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "DMEAKMC95469FYDS", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "DMEAKMC95469FYDS.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "DMEAKMC95469FYDS.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "DMEAKMC95469FYDS.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "DMEAKMC95469FYDS.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "65971" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DMEAKMC95469FYDS.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "DMEAKMC95469FYDS", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "DMEAKMC95469FYDS.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "DMEAKMC95469FYDS.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33057" + }, + "appliesTo" : [ ] + }, + "DMEAKMC95469FYDS.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "DMEAKMC95469FYDS.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DMEAKMC95469FYDS.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "DMEAKMC95469FYDS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DMEAKMC95469FYDS.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "DMEAKMC95469FYDS.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "DMEAKMC95469FYDS.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "DMEAKMC95469FYDS.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "67063" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DMEAKMC95469FYDS.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "DMEAKMC95469FYDS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DMEAKMC95469FYDS.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "DMEAKMC95469FYDS.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.7210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DMEAKMC95469FYDS.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "DMEAKMC95469FYDS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DMEAKMC95469FYDS.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "DMEAKMC95469FYDS.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DMEAKMC95469FYDS.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "DMEAKMC95469FYDS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DMEAKMC95469FYDS.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "DMEAKMC95469FYDS.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8370000000" + }, + "appliesTo" : [ ] + }, + "DMEAKMC95469FYDS.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "DMEAKMC95469FYDS.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33614" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "EP2SBMU2Z582EJNK" : { + "EP2SBMU2Z582EJNK.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "EP2SBMU2Z582EJNK", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "EP2SBMU2Z582EJNK.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "EP2SBMU2Z582EJNK.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "EP2SBMU2Z582EJNK.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "EP2SBMU2Z582EJNK", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "EP2SBMU2Z582EJNK.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "EP2SBMU2Z582EJNK.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4200000000" + }, + "appliesTo" : [ ] + }, + "EP2SBMU2Z582EJNK.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "EP2SBMU2Z582EJNK.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3258" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EP2SBMU2Z582EJNK.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "EP2SBMU2Z582EJNK", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "EP2SBMU2Z582EJNK.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "EP2SBMU2Z582EJNK.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "EP2SBMU2Z582EJNK.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "EP2SBMU2Z582EJNK.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5801" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EP2SBMU2Z582EJNK.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "EP2SBMU2Z582EJNK", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "EP2SBMU2Z582EJNK.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "EP2SBMU2Z582EJNK.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "EP2SBMU2Z582EJNK.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "EP2SBMU2Z582EJNK.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13443" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EP2SBMU2Z582EJNK.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "EP2SBMU2Z582EJNK", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "EP2SBMU2Z582EJNK.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "EP2SBMU2Z582EJNK.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2085" + }, + "appliesTo" : [ ] + }, + "EP2SBMU2Z582EJNK.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "EP2SBMU2Z582EJNK.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "6U2SB7CVRVWJEX22" : { + "6U2SB7CVRVWJEX22.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6U2SB7CVRVWJEX22", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6U2SB7CVRVWJEX22.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6U2SB7CVRVWJEX22.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "68338" + }, + "appliesTo" : [ ] + }, + "6U2SB7CVRVWJEX22.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6U2SB7CVRVWJEX22.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6U2SB7CVRVWJEX22.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6U2SB7CVRVWJEX22", + "effectiveDate" : "2016-06-30T23:59:59Z", + "priceDimensions" : { + "6U2SB7CVRVWJEX22.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6U2SB7CVRVWJEX22.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34285" + }, + "appliesTo" : [ ] + }, + "6U2SB7CVRVWJEX22.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6U2SB7CVRVWJEX22.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.0440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6U2SB7CVRVWJEX22.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "6U2SB7CVRVWJEX22", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6U2SB7CVRVWJEX22.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "6U2SB7CVRVWJEX22.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "78420" + }, + "appliesTo" : [ ] + }, + "6U2SB7CVRVWJEX22.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "6U2SB7CVRVWJEX22.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6U2SB7CVRVWJEX22.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "6U2SB7CVRVWJEX22", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6U2SB7CVRVWJEX22.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "6U2SB7CVRVWJEX22.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.5820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6U2SB7CVRVWJEX22.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "6U2SB7CVRVWJEX22", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6U2SB7CVRVWJEX22.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "6U2SB7CVRVWJEX22.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39429" + }, + "appliesTo" : [ ] + }, + "6U2SB7CVRVWJEX22.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "6U2SB7CVRVWJEX22.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.6310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6U2SB7CVRVWJEX22.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "6U2SB7CVRVWJEX22", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6U2SB7CVRVWJEX22.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "6U2SB7CVRVWJEX22.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "120997" + }, + "appliesTo" : [ ] + }, + "6U2SB7CVRVWJEX22.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "6U2SB7CVRVWJEX22.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6U2SB7CVRVWJEX22.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "6U2SB7CVRVWJEX22", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6U2SB7CVRVWJEX22.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "6U2SB7CVRVWJEX22.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.4180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6U2SB7CVRVWJEX22.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6U2SB7CVRVWJEX22", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "6U2SB7CVRVWJEX22.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6U2SB7CVRVWJEX22.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1150000000" + }, + "appliesTo" : [ ] + }, + "6U2SB7CVRVWJEX22.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6U2SB7CVRVWJEX22.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "52166" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6U2SB7CVRVWJEX22.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6U2SB7CVRVWJEX22", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6U2SB7CVRVWJEX22.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6U2SB7CVRVWJEX22.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.3490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6U2SB7CVRVWJEX22.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "6U2SB7CVRVWJEX22", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6U2SB7CVRVWJEX22.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "6U2SB7CVRVWJEX22.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.0610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6U2SB7CVRVWJEX22.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "6U2SB7CVRVWJEX22", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6U2SB7CVRVWJEX22.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "6U2SB7CVRVWJEX22.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "59990" + }, + "appliesTo" : [ ] + }, + "6U2SB7CVRVWJEX22.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "6U2SB7CVRVWJEX22.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6U2SB7CVRVWJEX22.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6U2SB7CVRVWJEX22", + "effectiveDate" : "2016-06-30T23:59:59Z", + "priceDimensions" : { + "6U2SB7CVRVWJEX22.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6U2SB7CVRVWJEX22.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "101488" + }, + "appliesTo" : [ ] + }, + "6U2SB7CVRVWJEX22.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6U2SB7CVRVWJEX22.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "7G6ZVMHDU3FVW9D5" : { + "7G6ZVMHDU3FVW9D5.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "7G6ZVMHDU3FVW9D5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7G6ZVMHDU3FVW9D5.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "7G6ZVMHDU3FVW9D5.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "78337" + }, + "appliesTo" : [ ] + }, + "7G6ZVMHDU3FVW9D5.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "7G6ZVMHDU3FVW9D5.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7G6ZVMHDU3FVW9D5.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "7G6ZVMHDU3FVW9D5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7G6ZVMHDU3FVW9D5.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "7G6ZVMHDU3FVW9D5.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9390000000" + }, + "appliesTo" : [ ] + }, + "7G6ZVMHDU3FVW9D5.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "7G6ZVMHDU3FVW9D5.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "103515" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7G6ZVMHDU3FVW9D5.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "7G6ZVMHDU3FVW9D5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7G6ZVMHDU3FVW9D5.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "7G6ZVMHDU3FVW9D5.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.9690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7G6ZVMHDU3FVW9D5.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "7G6ZVMHDU3FVW9D5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7G6ZVMHDU3FVW9D5.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "7G6ZVMHDU3FVW9D5.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8640000000" + }, + "appliesTo" : [ ] + }, + "7G6ZVMHDU3FVW9D5.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "7G6ZVMHDU3FVW9D5.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "101558" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7G6ZVMHDU3FVW9D5.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "7G6ZVMHDU3FVW9D5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7G6ZVMHDU3FVW9D5.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "7G6ZVMHDU3FVW9D5.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "75815" + }, + "appliesTo" : [ ] + }, + "7G6ZVMHDU3FVW9D5.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "7G6ZVMHDU3FVW9D5.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7G6ZVMHDU3FVW9D5.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "7G6ZVMHDU3FVW9D5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7G6ZVMHDU3FVW9D5.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "7G6ZVMHDU3FVW9D5.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "7G6ZVMHDU3FVW9D5.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "7G6ZVMHDU3FVW9D5.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "201551" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7G6ZVMHDU3FVW9D5.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "7G6ZVMHDU3FVW9D5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7G6ZVMHDU3FVW9D5.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "7G6ZVMHDU3FVW9D5.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7G6ZVMHDU3FVW9D5.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "7G6ZVMHDU3FVW9D5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7G6ZVMHDU3FVW9D5.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "7G6ZVMHDU3FVW9D5.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.4940000000" + }, + "appliesTo" : [ ] + }, + "7G6ZVMHDU3FVW9D5.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "7G6ZVMHDU3FVW9D5.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39366" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7G6ZVMHDU3FVW9D5.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "7G6ZVMHDU3FVW9D5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7G6ZVMHDU3FVW9D5.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "7G6ZVMHDU3FVW9D5.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.7920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7G6ZVMHDU3FVW9D5.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "7G6ZVMHDU3FVW9D5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7G6ZVMHDU3FVW9D5.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "7G6ZVMHDU3FVW9D5.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38079" + }, + "appliesTo" : [ ] + }, + "7G6ZVMHDU3FVW9D5.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "7G6ZVMHDU3FVW9D5.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.3470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7G6ZVMHDU3FVW9D5.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "7G6ZVMHDU3FVW9D5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7G6ZVMHDU3FVW9D5.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "7G6ZVMHDU3FVW9D5.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "206431" + }, + "appliesTo" : [ ] + }, + "7G6ZVMHDU3FVW9D5.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "7G6ZVMHDU3FVW9D5.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7G6ZVMHDU3FVW9D5.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "7G6ZVMHDU3FVW9D5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7G6ZVMHDU3FVW9D5.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "7G6ZVMHDU3FVW9D5.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.8080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "D87JMYVFZXKJD58A" : { + "D87JMYVFZXKJD58A.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "D87JMYVFZXKJD58A", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "D87JMYVFZXKJD58A.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "D87JMYVFZXKJD58A.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "D87JMYVFZXKJD58A.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "D87JMYVFZXKJD58A", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "D87JMYVFZXKJD58A.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "D87JMYVFZXKJD58A.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "714" + }, + "appliesTo" : [ ] + }, + "D87JMYVFZXKJD58A.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "D87JMYVFZXKJD58A.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "D87JMYVFZXKJD58A.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "D87JMYVFZXKJD58A", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "D87JMYVFZXKJD58A.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "D87JMYVFZXKJD58A.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1190" + }, + "appliesTo" : [ ] + }, + "D87JMYVFZXKJD58A.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "D87JMYVFZXKJD58A.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "D87JMYVFZXKJD58A.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "D87JMYVFZXKJD58A", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "D87JMYVFZXKJD58A.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "D87JMYVFZXKJD58A.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2274" + }, + "appliesTo" : [ ] + }, + "D87JMYVFZXKJD58A.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "D87JMYVFZXKJD58A.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "D87JMYVFZXKJD58A.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "D87JMYVFZXKJD58A", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "D87JMYVFZXKJD58A.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "D87JMYVFZXKJD58A.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1178" + }, + "appliesTo" : [ ] + }, + "D87JMYVFZXKJD58A.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "D87JMYVFZXKJD58A.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "HYZTQKMNAKH6FG9C" : { + "HYZTQKMNAKH6FG9C.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "HYZTQKMNAKH6FG9C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HYZTQKMNAKH6FG9C.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "HYZTQKMNAKH6FG9C.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9007" + }, + "appliesTo" : [ ] + }, + "HYZTQKMNAKH6FG9C.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "HYZTQKMNAKH6FG9C.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HYZTQKMNAKH6FG9C.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "HYZTQKMNAKH6FG9C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HYZTQKMNAKH6FG9C.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "HYZTQKMNAKH6FG9C.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23443" + }, + "appliesTo" : [ ] + }, + "HYZTQKMNAKH6FG9C.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "HYZTQKMNAKH6FG9C.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "HYZTQKMNAKH6FG9C.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "HYZTQKMNAKH6FG9C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HYZTQKMNAKH6FG9C.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "HYZTQKMNAKH6FG9C.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10193" + }, + "appliesTo" : [ ] + }, + "HYZTQKMNAKH6FG9C.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "HYZTQKMNAKH6FG9C.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HYZTQKMNAKH6FG9C.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "HYZTQKMNAKH6FG9C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HYZTQKMNAKH6FG9C.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "HYZTQKMNAKH6FG9C.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "HYZTQKMNAKH6FG9C.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "HYZTQKMNAKH6FG9C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HYZTQKMNAKH6FG9C.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "HYZTQKMNAKH6FG9C.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20494" + }, + "appliesTo" : [ ] + }, + "HYZTQKMNAKH6FG9C.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "HYZTQKMNAKH6FG9C.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HYZTQKMNAKH6FG9C.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "HYZTQKMNAKH6FG9C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HYZTQKMNAKH6FG9C.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "HYZTQKMNAKH6FG9C.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "HYZTQKMNAKH6FG9C.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "HYZTQKMNAKH6FG9C.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9824" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HYZTQKMNAKH6FG9C.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "HYZTQKMNAKH6FG9C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HYZTQKMNAKH6FG9C.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "HYZTQKMNAKH6FG9C.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7040000000" + }, + "appliesTo" : [ ] + }, + "HYZTQKMNAKH6FG9C.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "HYZTQKMNAKH6FG9C.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5026" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HYZTQKMNAKH6FG9C.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "HYZTQKMNAKH6FG9C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HYZTQKMNAKH6FG9C.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "HYZTQKMNAKH6FG9C.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "HYZTQKMNAKH6FG9C.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "HYZTQKMNAKH6FG9C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HYZTQKMNAKH6FG9C.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "HYZTQKMNAKH6FG9C.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "HYZTQKMNAKH6FG9C.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "HYZTQKMNAKH6FG9C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HYZTQKMNAKH6FG9C.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "HYZTQKMNAKH6FG9C.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6350000000" + }, + "appliesTo" : [ ] + }, + "HYZTQKMNAKH6FG9C.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "HYZTQKMNAKH6FG9C.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4423" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HYZTQKMNAKH6FG9C.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "HYZTQKMNAKH6FG9C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HYZTQKMNAKH6FG9C.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "HYZTQKMNAKH6FG9C.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11006" + }, + "appliesTo" : [ ] + }, + "HYZTQKMNAKH6FG9C.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "HYZTQKMNAKH6FG9C.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "HYZTQKMNAKH6FG9C.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "HYZTQKMNAKH6FG9C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HYZTQKMNAKH6FG9C.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "HYZTQKMNAKH6FG9C.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "2BEAK4F883TCCQMS" : { + "2BEAK4F883TCCQMS.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "2BEAK4F883TCCQMS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2BEAK4F883TCCQMS.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "2BEAK4F883TCCQMS.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1110000000" + }, + "appliesTo" : [ ] + }, + "2BEAK4F883TCCQMS.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "2BEAK4F883TCCQMS.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9734" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2BEAK4F883TCCQMS.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "2BEAK4F883TCCQMS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2BEAK4F883TCCQMS.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "2BEAK4F883TCCQMS.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "2BEAK4F883TCCQMS.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "2BEAK4F883TCCQMS.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19374" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2BEAK4F883TCCQMS.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "2BEAK4F883TCCQMS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2BEAK4F883TCCQMS.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "2BEAK4F883TCCQMS.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "2BEAK4F883TCCQMS.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "2BEAK4F883TCCQMS.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "51001" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2BEAK4F883TCCQMS.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "2BEAK4F883TCCQMS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2BEAK4F883TCCQMS.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "2BEAK4F883TCCQMS.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2BEAK4F883TCCQMS.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "2BEAK4F883TCCQMS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2BEAK4F883TCCQMS.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "2BEAK4F883TCCQMS.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9790000000" + }, + "appliesTo" : [ ] + }, + "2BEAK4F883TCCQMS.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "2BEAK4F883TCCQMS.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25716" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2BEAK4F883TCCQMS.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "2BEAK4F883TCCQMS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2BEAK4F883TCCQMS.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "2BEAK4F883TCCQMS.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "52343" + }, + "appliesTo" : [ ] + }, + "2BEAK4F883TCCQMS.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "2BEAK4F883TCCQMS.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2BEAK4F883TCCQMS.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "2BEAK4F883TCCQMS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2BEAK4F883TCCQMS.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "2BEAK4F883TCCQMS.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26254" + }, + "appliesTo" : [ ] + }, + "2BEAK4F883TCCQMS.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "2BEAK4F883TCCQMS.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2BEAK4F883TCCQMS.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "2BEAK4F883TCCQMS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2BEAK4F883TCCQMS.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "2BEAK4F883TCCQMS.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2BEAK4F883TCCQMS.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "2BEAK4F883TCCQMS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2BEAK4F883TCCQMS.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "2BEAK4F883TCCQMS.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1520000000" + }, + "appliesTo" : [ ] + }, + "2BEAK4F883TCCQMS.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "2BEAK4F883TCCQMS.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10088" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2BEAK4F883TCCQMS.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "2BEAK4F883TCCQMS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2BEAK4F883TCCQMS.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "2BEAK4F883TCCQMS.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20067" + }, + "appliesTo" : [ ] + }, + "2BEAK4F883TCCQMS.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "2BEAK4F883TCCQMS.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2BEAK4F883TCCQMS.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "2BEAK4F883TCCQMS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2BEAK4F883TCCQMS.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "2BEAK4F883TCCQMS.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2BEAK4F883TCCQMS.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "2BEAK4F883TCCQMS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2BEAK4F883TCCQMS.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "2BEAK4F883TCCQMS.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "3BZUZ8TX5Q6KDMND" : { + "3BZUZ8TX5Q6KDMND.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "3BZUZ8TX5Q6KDMND", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3BZUZ8TX5Q6KDMND.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "3BZUZ8TX5Q6KDMND.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "3BZUZ8TX5Q6KDMND.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "3BZUZ8TX5Q6KDMND.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1330" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3BZUZ8TX5Q6KDMND.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "3BZUZ8TX5Q6KDMND", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "3BZUZ8TX5Q6KDMND.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "3BZUZ8TX5Q6KDMND.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1010000000" + }, + "appliesTo" : [ ] + }, + "3BZUZ8TX5Q6KDMND.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "3BZUZ8TX5Q6KDMND.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "473" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3BZUZ8TX5Q6KDMND.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "3BZUZ8TX5Q6KDMND", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3BZUZ8TX5Q6KDMND.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "3BZUZ8TX5Q6KDMND.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3BZUZ8TX5Q6KDMND.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "3BZUZ8TX5Q6KDMND", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "3BZUZ8TX5Q6KDMND.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "3BZUZ8TX5Q6KDMND.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2948" + }, + "appliesTo" : [ ] + }, + "3BZUZ8TX5Q6KDMND.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "3BZUZ8TX5Q6KDMND.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3BZUZ8TX5Q6KDMND.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "3BZUZ8TX5Q6KDMND", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "3BZUZ8TX5Q6KDMND.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "3BZUZ8TX5Q6KDMND.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "719" + }, + "appliesTo" : [ ] + }, + "3BZUZ8TX5Q6KDMND.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "3BZUZ8TX5Q6KDMND.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "XP5P8NMSB2W7KP3U" : { + "XP5P8NMSB2W7KP3U.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "XP5P8NMSB2W7KP3U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XP5P8NMSB2W7KP3U.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "XP5P8NMSB2W7KP3U.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27248" + }, + "appliesTo" : [ ] + }, + "XP5P8NMSB2W7KP3U.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "XP5P8NMSB2W7KP3U.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XP5P8NMSB2W7KP3U.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "XP5P8NMSB2W7KP3U", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "XP5P8NMSB2W7KP3U.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "XP5P8NMSB2W7KP3U.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XP5P8NMSB2W7KP3U.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XP5P8NMSB2W7KP3U", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XP5P8NMSB2W7KP3U.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XP5P8NMSB2W7KP3U.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3760000000" + }, + "appliesTo" : [ ] + }, + "XP5P8NMSB2W7KP3U.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XP5P8NMSB2W7KP3U.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12048" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XP5P8NMSB2W7KP3U.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "XP5P8NMSB2W7KP3U", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "XP5P8NMSB2W7KP3U.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "XP5P8NMSB2W7KP3U.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32530" + }, + "appliesTo" : [ ] + }, + "XP5P8NMSB2W7KP3U.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "XP5P8NMSB2W7KP3U.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XP5P8NMSB2W7KP3U.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XP5P8NMSB2W7KP3U", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XP5P8NMSB2W7KP3U.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XP5P8NMSB2W7KP3U.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "41560" + }, + "appliesTo" : [ ] + }, + "XP5P8NMSB2W7KP3U.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XP5P8NMSB2W7KP3U.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XP5P8NMSB2W7KP3U.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XP5P8NMSB2W7KP3U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XP5P8NMSB2W7KP3U.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XP5P8NMSB2W7KP3U.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23616" + }, + "appliesTo" : [ ] + }, + "XP5P8NMSB2W7KP3U.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XP5P8NMSB2W7KP3U.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XP5P8NMSB2W7KP3U.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "XP5P8NMSB2W7KP3U", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "XP5P8NMSB2W7KP3U.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "XP5P8NMSB2W7KP3U.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "63763" + }, + "appliesTo" : [ ] + }, + "XP5P8NMSB2W7KP3U.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "XP5P8NMSB2W7KP3U.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XP5P8NMSB2W7KP3U.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "XP5P8NMSB2W7KP3U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XP5P8NMSB2W7KP3U.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "XP5P8NMSB2W7KP3U.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XP5P8NMSB2W7KP3U.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XP5P8NMSB2W7KP3U", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XP5P8NMSB2W7KP3U.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XP5P8NMSB2W7KP3U.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XP5P8NMSB2W7KP3U.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "XP5P8NMSB2W7KP3U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XP5P8NMSB2W7KP3U.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "XP5P8NMSB2W7KP3U.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13902" + }, + "appliesTo" : [ ] + }, + "XP5P8NMSB2W7KP3U.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "XP5P8NMSB2W7KP3U.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XP5P8NMSB2W7KP3U.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XP5P8NMSB2W7KP3U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XP5P8NMSB2W7KP3U.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XP5P8NMSB2W7KP3U.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22136" + }, + "appliesTo" : [ ] + }, + "XP5P8NMSB2W7KP3U.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XP5P8NMSB2W7KP3U.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "SMTQRSCDV7BY873H" : { + "SMTQRSCDV7BY873H.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SMTQRSCDV7BY873H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SMTQRSCDV7BY873H.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SMTQRSCDV7BY873H.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8171" + }, + "appliesTo" : [ ] + }, + "SMTQRSCDV7BY873H.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SMTQRSCDV7BY873H.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SMTQRSCDV7BY873H.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SMTQRSCDV7BY873H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SMTQRSCDV7BY873H.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SMTQRSCDV7BY873H.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4197" + }, + "appliesTo" : [ ] + }, + "SMTQRSCDV7BY873H.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SMTQRSCDV7BY873H.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SMTQRSCDV7BY873H.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SMTQRSCDV7BY873H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SMTQRSCDV7BY873H.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SMTQRSCDV7BY873H.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15359" + }, + "appliesTo" : [ ] + }, + "SMTQRSCDV7BY873H.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SMTQRSCDV7BY873H.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SMTQRSCDV7BY873H.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "SMTQRSCDV7BY873H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SMTQRSCDV7BY873H.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "SMTQRSCDV7BY873H.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SMTQRSCDV7BY873H.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SMTQRSCDV7BY873H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SMTQRSCDV7BY873H.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SMTQRSCDV7BY873H.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8152" + }, + "appliesTo" : [ ] + }, + "SMTQRSCDV7BY873H.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SMTQRSCDV7BY873H.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SMTQRSCDV7BY873H.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "SMTQRSCDV7BY873H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SMTQRSCDV7BY873H.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "SMTQRSCDV7BY873H.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SMTQRSCDV7BY873H.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "SMTQRSCDV7BY873H.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18308" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SMTQRSCDV7BY873H.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "SMTQRSCDV7BY873H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SMTQRSCDV7BY873H.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "SMTQRSCDV7BY873H.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9339" + }, + "appliesTo" : [ ] + }, + "SMTQRSCDV7BY873H.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "SMTQRSCDV7BY873H.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SMTQRSCDV7BY873H.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SMTQRSCDV7BY873H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SMTQRSCDV7BY873H.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SMTQRSCDV7BY873H.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SMTQRSCDV7BY873H.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "SMTQRSCDV7BY873H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SMTQRSCDV7BY873H.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "SMTQRSCDV7BY873H.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SMTQRSCDV7BY873H.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "SMTQRSCDV7BY873H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SMTQRSCDV7BY873H.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "SMTQRSCDV7BY873H.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SMTQRSCDV7BY873H.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "SMTQRSCDV7BY873H.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9353" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SMTQRSCDV7BY873H.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "SMTQRSCDV7BY873H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SMTQRSCDV7BY873H.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "SMTQRSCDV7BY873H.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SMTQRSCDV7BY873H.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "SMTQRSCDV7BY873H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SMTQRSCDV7BY873H.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "SMTQRSCDV7BY873H.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4800" + }, + "appliesTo" : [ ] + }, + "SMTQRSCDV7BY873H.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "SMTQRSCDV7BY873H.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "24XN5CF83RWVHY65" : { + "24XN5CF83RWVHY65.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "24XN5CF83RWVHY65", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "24XN5CF83RWVHY65.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "24XN5CF83RWVHY65.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9318" + }, + "appliesTo" : [ ] + }, + "24XN5CF83RWVHY65.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "24XN5CF83RWVHY65.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "24XN5CF83RWVHY65.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "24XN5CF83RWVHY65", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "24XN5CF83RWVHY65.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "24XN5CF83RWVHY65.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12669" + }, + "appliesTo" : [ ] + }, + "24XN5CF83RWVHY65.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "24XN5CF83RWVHY65.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "24XN5CF83RWVHY65.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "24XN5CF83RWVHY65", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "24XN5CF83RWVHY65.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "24XN5CF83RWVHY65.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4755" + }, + "appliesTo" : [ ] + }, + "24XN5CF83RWVHY65.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "24XN5CF83RWVHY65.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "24XN5CF83RWVHY65.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "24XN5CF83RWVHY65", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "24XN5CF83RWVHY65.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "24XN5CF83RWVHY65.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14088" + }, + "appliesTo" : [ ] + }, + "24XN5CF83RWVHY65.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "24XN5CF83RWVHY65.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "24XN5CF83RWVHY65.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "24XN5CF83RWVHY65", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "24XN5CF83RWVHY65.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "24XN5CF83RWVHY65.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20236" + }, + "appliesTo" : [ ] + }, + "24XN5CF83RWVHY65.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "24XN5CF83RWVHY65.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "24XN5CF83RWVHY65.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "24XN5CF83RWVHY65", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "24XN5CF83RWVHY65.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "24XN5CF83RWVHY65.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "24XN5CF83RWVHY65.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "24XN5CF83RWVHY65", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "24XN5CF83RWVHY65.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "24XN5CF83RWVHY65.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "24XN5CF83RWVHY65.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "24XN5CF83RWVHY65", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "24XN5CF83RWVHY65.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "24XN5CF83RWVHY65.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10759" + }, + "appliesTo" : [ ] + }, + "24XN5CF83RWVHY65.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "24XN5CF83RWVHY65.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "24XN5CF83RWVHY65.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "24XN5CF83RWVHY65", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "24XN5CF83RWVHY65.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "24XN5CF83RWVHY65.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "24XN5CF83RWVHY65.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "24XN5CF83RWVHY65", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "24XN5CF83RWVHY65.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "24XN5CF83RWVHY65.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "24XN5CF83RWVHY65.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "24XN5CF83RWVHY65.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27609" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "24XN5CF83RWVHY65.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "24XN5CF83RWVHY65", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "24XN5CF83RWVHY65.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "24XN5CF83RWVHY65.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "24XN5CF83RWVHY65.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "24XN5CF83RWVHY65", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "24XN5CF83RWVHY65.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "24XN5CF83RWVHY65.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6347" + }, + "appliesTo" : [ ] + }, + "24XN5CF83RWVHY65.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "24XN5CF83RWVHY65.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "7QJJXQX9QWC5GEPD" : { + "7QJJXQX9QWC5GEPD.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "7QJJXQX9QWC5GEPD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7QJJXQX9QWC5GEPD.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "7QJJXQX9QWC5GEPD.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7QJJXQX9QWC5GEPD.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "7QJJXQX9QWC5GEPD", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "7QJJXQX9QWC5GEPD.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "7QJJXQX9QWC5GEPD.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11958" + }, + "appliesTo" : [ ] + }, + "7QJJXQX9QWC5GEPD.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "7QJJXQX9QWC5GEPD.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7QJJXQX9QWC5GEPD.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "7QJJXQX9QWC5GEPD", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "7QJJXQX9QWC5GEPD.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "7QJJXQX9QWC5GEPD.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7QJJXQX9QWC5GEPD.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "7QJJXQX9QWC5GEPD", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "7QJJXQX9QWC5GEPD.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "7QJJXQX9QWC5GEPD.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2710000000" + }, + "appliesTo" : [ ] + }, + "7QJJXQX9QWC5GEPD.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "7QJJXQX9QWC5GEPD.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7126" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7QJJXQX9QWC5GEPD.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "7QJJXQX9QWC5GEPD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7QJJXQX9QWC5GEPD.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "7QJJXQX9QWC5GEPD.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5389" + }, + "appliesTo" : [ ] + }, + "7QJJXQX9QWC5GEPD.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "7QJJXQX9QWC5GEPD.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7QJJXQX9QWC5GEPD.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "7QJJXQX9QWC5GEPD", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "7QJJXQX9QWC5GEPD.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "7QJJXQX9QWC5GEPD.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14100" + }, + "appliesTo" : [ ] + }, + "7QJJXQX9QWC5GEPD.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "7QJJXQX9QWC5GEPD.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7QJJXQX9QWC5GEPD.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "7QJJXQX9QWC5GEPD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7QJJXQX9QWC5GEPD.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "7QJJXQX9QWC5GEPD.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2515" + }, + "appliesTo" : [ ] + }, + "7QJJXQX9QWC5GEPD.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "7QJJXQX9QWC5GEPD.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7QJJXQX9QWC5GEPD.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "7QJJXQX9QWC5GEPD", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "7QJJXQX9QWC5GEPD.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "7QJJXQX9QWC5GEPD.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7QJJXQX9QWC5GEPD.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "7QJJXQX9QWC5GEPD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7QJJXQX9QWC5GEPD.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "7QJJXQX9QWC5GEPD.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6409000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7QJJXQX9QWC5GEPD.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "7QJJXQX9QWC5GEPD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7QJJXQX9QWC5GEPD.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "7QJJXQX9QWC5GEPD.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2727" + }, + "appliesTo" : [ ] + }, + "7QJJXQX9QWC5GEPD.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "7QJJXQX9QWC5GEPD.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3113000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7QJJXQX9QWC5GEPD.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "7QJJXQX9QWC5GEPD", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "7QJJXQX9QWC5GEPD.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "7QJJXQX9QWC5GEPD.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4974" + }, + "appliesTo" : [ ] + }, + "7QJJXQX9QWC5GEPD.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "7QJJXQX9QWC5GEPD.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7QJJXQX9QWC5GEPD.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "7QJJXQX9QWC5GEPD", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "7QJJXQX9QWC5GEPD.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "7QJJXQX9QWC5GEPD.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6147" + }, + "appliesTo" : [ ] + }, + "7QJJXQX9QWC5GEPD.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "7QJJXQX9QWC5GEPD.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "KV46EU5KJGKB53ZX" : { + "KV46EU5KJGKB53ZX.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "KV46EU5KJGKB53ZX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "KV46EU5KJGKB53ZX.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "KV46EU5KJGKB53ZX.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0880000000" + }, + "appliesTo" : [ ] + }, + "KV46EU5KJGKB53ZX.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "KV46EU5KJGKB53ZX.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "272" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KV46EU5KJGKB53ZX.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "KV46EU5KJGKB53ZX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "KV46EU5KJGKB53ZX.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "KV46EU5KJGKB53ZX.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KV46EU5KJGKB53ZX.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "KV46EU5KJGKB53ZX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "KV46EU5KJGKB53ZX.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "KV46EU5KJGKB53ZX.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "413" + }, + "appliesTo" : [ ] + }, + "KV46EU5KJGKB53ZX.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "KV46EU5KJGKB53ZX.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KV46EU5KJGKB53ZX.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "KV46EU5KJGKB53ZX", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "KV46EU5KJGKB53ZX.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "KV46EU5KJGKB53ZX.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1020" + }, + "appliesTo" : [ ] + }, + "KV46EU5KJGKB53ZX.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "KV46EU5KJGKB53ZX.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KV46EU5KJGKB53ZX.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "KV46EU5KJGKB53ZX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "KV46EU5KJGKB53ZX.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "KV46EU5KJGKB53ZX.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2479" + }, + "appliesTo" : [ ] + }, + "KV46EU5KJGKB53ZX.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "KV46EU5KJGKB53ZX.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "HD5FKWRF3Y3UA5CY" : { + "HD5FKWRF3Y3UA5CY.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "HD5FKWRF3Y3UA5CY", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "HD5FKWRF3Y3UA5CY.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "HD5FKWRF3Y3UA5CY.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2570000000" + }, + "appliesTo" : [ ] + }, + "HD5FKWRF3Y3UA5CY.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "HD5FKWRF3Y3UA5CY.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4510" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HD5FKWRF3Y3UA5CY.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "HD5FKWRF3Y3UA5CY", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "HD5FKWRF3Y3UA5CY.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "HD5FKWRF3Y3UA5CY.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "HD5FKWRF3Y3UA5CY.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "HD5FKWRF3Y3UA5CY.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10598" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HD5FKWRF3Y3UA5CY.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "HD5FKWRF3Y3UA5CY", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "HD5FKWRF3Y3UA5CY.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "HD5FKWRF3Y3UA5CY.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "HD5FKWRF3Y3UA5CY.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "HD5FKWRF3Y3UA5CY", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "HD5FKWRF3Y3UA5CY.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "HD5FKWRF3Y3UA5CY.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1562" + }, + "appliesTo" : [ ] + }, + "HD5FKWRF3Y3UA5CY.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "HD5FKWRF3Y3UA5CY.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HD5FKWRF3Y3UA5CY.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "HD5FKWRF3Y3UA5CY", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "HD5FKWRF3Y3UA5CY.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "HD5FKWRF3Y3UA5CY.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3815" + }, + "appliesTo" : [ ] + }, + "HD5FKWRF3Y3UA5CY.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "HD5FKWRF3Y3UA5CY.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "DUHF29UDCPK7Z84H" : { + "DUHF29UDCPK7Z84H.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "DUHF29UDCPK7Z84H", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "DUHF29UDCPK7Z84H.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "DUHF29UDCPK7Z84H.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "63518" + }, + "appliesTo" : [ ] + }, + "DUHF29UDCPK7Z84H.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "DUHF29UDCPK7Z84H.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DUHF29UDCPK7Z84H.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "DUHF29UDCPK7Z84H", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DUHF29UDCPK7Z84H.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "DUHF29UDCPK7Z84H.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.8530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DUHF29UDCPK7Z84H.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "DUHF29UDCPK7Z84H", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DUHF29UDCPK7Z84H.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "DUHF29UDCPK7Z84H.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "87342" + }, + "appliesTo" : [ ] + }, + "DUHF29UDCPK7Z84H.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "DUHF29UDCPK7Z84H.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DUHF29UDCPK7Z84H.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "DUHF29UDCPK7Z84H", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "DUHF29UDCPK7Z84H.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "DUHF29UDCPK7Z84H.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "162479" + }, + "appliesTo" : [ ] + }, + "DUHF29UDCPK7Z84H.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "DUHF29UDCPK7Z84H.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DUHF29UDCPK7Z84H.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "DUHF29UDCPK7Z84H", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DUHF29UDCPK7Z84H.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "DUHF29UDCPK7Z84H.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "83011" + }, + "appliesTo" : [ ] + }, + "DUHF29UDCPK7Z84H.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "DUHF29UDCPK7Z84H.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DUHF29UDCPK7Z84H.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "DUHF29UDCPK7Z84H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DUHF29UDCPK7Z84H.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "DUHF29UDCPK7Z84H.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.0120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DUHF29UDCPK7Z84H.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "DUHF29UDCPK7Z84H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DUHF29UDCPK7Z84H.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "DUHF29UDCPK7Z84H.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34272" + }, + "appliesTo" : [ ] + }, + "DUHF29UDCPK7Z84H.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "DUHF29UDCPK7Z84H.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DUHF29UDCPK7Z84H.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "DUHF29UDCPK7Z84H", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DUHF29UDCPK7Z84H.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "DUHF29UDCPK7Z84H.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "DUHF29UDCPK7Z84H.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "DUHF29UDCPK7Z84H.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "173330" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DUHF29UDCPK7Z84H.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "DUHF29UDCPK7Z84H", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DUHF29UDCPK7Z84H.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "DUHF29UDCPK7Z84H.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.4900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DUHF29UDCPK7Z84H.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "DUHF29UDCPK7Z84H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DUHF29UDCPK7Z84H.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "DUHF29UDCPK7Z84H.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "67886" + }, + "appliesTo" : [ ] + }, + "DUHF29UDCPK7Z84H.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "DUHF29UDCPK7Z84H.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DUHF29UDCPK7Z84H.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "DUHF29UDCPK7Z84H", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DUHF29UDCPK7Z84H.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "DUHF29UDCPK7Z84H.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DUHF29UDCPK7Z84H.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "DUHF29UDCPK7Z84H", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "DUHF29UDCPK7Z84H.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "DUHF29UDCPK7Z84H.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6580000000" + }, + "appliesTo" : [ ] + }, + "DUHF29UDCPK7Z84H.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "DUHF29UDCPK7Z84H.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32043" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "S6WMG2PUJJT43MCU" : { + "S6WMG2PUJJT43MCU.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "S6WMG2PUJJT43MCU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "S6WMG2PUJJT43MCU.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "S6WMG2PUJJT43MCU.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0920000000" + }, + "appliesTo" : [ ] + }, + "S6WMG2PUJJT43MCU.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "S6WMG2PUJJT43MCU.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28692" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "S6WMG2PUJJT43MCU.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "S6WMG2PUJJT43MCU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "S6WMG2PUJJT43MCU.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "S6WMG2PUJJT43MCU.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "64669" + }, + "appliesTo" : [ ] + }, + "S6WMG2PUJJT43MCU.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "S6WMG2PUJJT43MCU.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "S6WMG2PUJJT43MCU.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "S6WMG2PUJJT43MCU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "S6WMG2PUJJT43MCU.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "S6WMG2PUJJT43MCU.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "S6WMG2PUJJT43MCU.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "S6WMG2PUJJT43MCU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "S6WMG2PUJJT43MCU.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "S6WMG2PUJJT43MCU.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32995" + }, + "appliesTo" : [ ] + }, + "S6WMG2PUJJT43MCU.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "S6WMG2PUJJT43MCU.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "S6WMG2PUJJT43MCU.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "S6WMG2PUJJT43MCU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "S6WMG2PUJJT43MCU.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "S6WMG2PUJJT43MCU.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "S6WMG2PUJJT43MCU.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "S6WMG2PUJJT43MCU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "S6WMG2PUJJT43MCU.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "S6WMG2PUJJT43MCU.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21686" + }, + "appliesTo" : [ ] + }, + "S6WMG2PUJJT43MCU.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "S6WMG2PUJJT43MCU.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "S6WMG2PUJJT43MCU.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "S6WMG2PUJJT43MCU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "S6WMG2PUJJT43MCU.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "S6WMG2PUJJT43MCU.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.1990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "S6WMG2PUJJT43MCU.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "S6WMG2PUJJT43MCU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "S6WMG2PUJJT43MCU.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "S6WMG2PUJJT43MCU.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "36962" + }, + "appliesTo" : [ ] + }, + "S6WMG2PUJJT43MCU.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "S6WMG2PUJJT43MCU.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "S6WMG2PUJJT43MCU.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "S6WMG2PUJJT43MCU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "S6WMG2PUJJT43MCU.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "S6WMG2PUJJT43MCU.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "42505" + }, + "appliesTo" : [ ] + }, + "S6WMG2PUJJT43MCU.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "S6WMG2PUJJT43MCU.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "S6WMG2PUJJT43MCU.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "S6WMG2PUJJT43MCU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "S6WMG2PUJJT43MCU.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "S6WMG2PUJJT43MCU.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18858" + }, + "appliesTo" : [ ] + }, + "S6WMG2PUJJT43MCU.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "S6WMG2PUJJT43MCU.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "S6WMG2PUJJT43MCU.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "S6WMG2PUJJT43MCU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "S6WMG2PUJJT43MCU.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "S6WMG2PUJJT43MCU.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "S6WMG2PUJJT43MCU.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "S6WMG2PUJJT43MCU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "S6WMG2PUJJT43MCU.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "S6WMG2PUJJT43MCU.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "S6WMG2PUJJT43MCU.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "S6WMG2PUJJT43MCU.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "53940" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "5AVR4REAWXYCDTBG" : { + "5AVR4REAWXYCDTBG.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "5AVR4REAWXYCDTBG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5AVR4REAWXYCDTBG.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "5AVR4REAWXYCDTBG.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "29.2238000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "5AVR4REAWXYCDTBG.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "5AVR4REAWXYCDTBG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5AVR4REAWXYCDTBG.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "5AVR4REAWXYCDTBG.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "127525" + }, + "appliesTo" : [ ] + }, + "5AVR4REAWXYCDTBG.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "5AVR4REAWXYCDTBG.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.5576000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "5AVR4REAWXYCDTBG.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "5AVR4REAWXYCDTBG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5AVR4REAWXYCDTBG.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "5AVR4REAWXYCDTBG.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "126284" + }, + "appliesTo" : [ ] + }, + "5AVR4REAWXYCDTBG.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "5AVR4REAWXYCDTBG.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.4160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5AVR4REAWXYCDTBG.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "5AVR4REAWXYCDTBG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5AVR4REAWXYCDTBG.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "5AVR4REAWXYCDTBG.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "28.9264000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "5AVR4REAWXYCDTBG.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "5AVR4REAWXYCDTBG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5AVR4REAWXYCDTBG.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "5AVR4REAWXYCDTBG.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "28.5338000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "5AVR4REAWXYCDTBG.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "5AVR4REAWXYCDTBG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5AVR4REAWXYCDTBG.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "5AVR4REAWXYCDTBG.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.2080000000" + }, + "appliesTo" : [ ] + }, + "5AVR4REAWXYCDTBG.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "5AVR4REAWXYCDTBG.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "373386" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "5AVR4REAWXYCDTBG.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "5AVR4REAWXYCDTBG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5AVR4REAWXYCDTBG.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "5AVR4REAWXYCDTBG.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "254669" + }, + "appliesTo" : [ ] + }, + "5AVR4REAWXYCDTBG.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "5AVR4REAWXYCDTBG.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "5AVR4REAWXYCDTBG.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "5AVR4REAWXYCDTBG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5AVR4REAWXYCDTBG.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "5AVR4REAWXYCDTBG.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "745999" + }, + "appliesTo" : [ ] + }, + "5AVR4REAWXYCDTBG.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "5AVR4REAWXYCDTBG.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "5AVR4REAWXYCDTBG.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "5AVR4REAWXYCDTBG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5AVR4REAWXYCDTBG.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "5AVR4REAWXYCDTBG.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "739708" + }, + "appliesTo" : [ ] + }, + "5AVR4REAWXYCDTBG.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "5AVR4REAWXYCDTBG.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5AVR4REAWXYCDTBG.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "5AVR4REAWXYCDTBG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5AVR4REAWXYCDTBG.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "5AVR4REAWXYCDTBG.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "28.3264000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "5AVR4REAWXYCDTBG.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "5AVR4REAWXYCDTBG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5AVR4REAWXYCDTBG.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "5AVR4REAWXYCDTBG.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "252238" + }, + "appliesTo" : [ ] + }, + "5AVR4REAWXYCDTBG.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "5AVR4REAWXYCDTBG.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5AVR4REAWXYCDTBG.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "5AVR4REAWXYCDTBG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5AVR4REAWXYCDTBG.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "5AVR4REAWXYCDTBG.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "370863" + }, + "appliesTo" : [ ] + }, + "5AVR4REAWXYCDTBG.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "5AVR4REAWXYCDTBG.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.1120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "J4UDT5BERQ92MHNK" : { + "J4UDT5BERQ92MHNK.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "J4UDT5BERQ92MHNK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J4UDT5BERQ92MHNK.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "J4UDT5BERQ92MHNK.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "J4UDT5BERQ92MHNK.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "J4UDT5BERQ92MHNK.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17674" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "J4UDT5BERQ92MHNK.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "J4UDT5BERQ92MHNK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J4UDT5BERQ92MHNK.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "J4UDT5BERQ92MHNK.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8877" + }, + "appliesTo" : [ ] + }, + "J4UDT5BERQ92MHNK.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "J4UDT5BERQ92MHNK.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "J4UDT5BERQ92MHNK.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "J4UDT5BERQ92MHNK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J4UDT5BERQ92MHNK.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "J4UDT5BERQ92MHNK.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8614" + }, + "appliesTo" : [ ] + }, + "J4UDT5BERQ92MHNK.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "J4UDT5BERQ92MHNK.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "J4UDT5BERQ92MHNK.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "J4UDT5BERQ92MHNK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J4UDT5BERQ92MHNK.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "J4UDT5BERQ92MHNK.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "J4UDT5BERQ92MHNK.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "J4UDT5BERQ92MHNK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J4UDT5BERQ92MHNK.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "J4UDT5BERQ92MHNK.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "J4UDT5BERQ92MHNK.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "J4UDT5BERQ92MHNK.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6601" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "J4UDT5BERQ92MHNK.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "J4UDT5BERQ92MHNK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J4UDT5BERQ92MHNK.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "J4UDT5BERQ92MHNK.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "J4UDT5BERQ92MHNK.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "J4UDT5BERQ92MHNK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J4UDT5BERQ92MHNK.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "J4UDT5BERQ92MHNK.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "J4UDT5BERQ92MHNK.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "J4UDT5BERQ92MHNK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J4UDT5BERQ92MHNK.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "J4UDT5BERQ92MHNK.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3321" + }, + "appliesTo" : [ ] + }, + "J4UDT5BERQ92MHNK.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "J4UDT5BERQ92MHNK.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "J4UDT5BERQ92MHNK.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "J4UDT5BERQ92MHNK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J4UDT5BERQ92MHNK.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "J4UDT5BERQ92MHNK.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "J4UDT5BERQ92MHNK.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "J4UDT5BERQ92MHNK.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6338" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "J4UDT5BERQ92MHNK.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "J4UDT5BERQ92MHNK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J4UDT5BERQ92MHNK.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "J4UDT5BERQ92MHNK.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3187" + }, + "appliesTo" : [ ] + }, + "J4UDT5BERQ92MHNK.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "J4UDT5BERQ92MHNK.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "J4UDT5BERQ92MHNK.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "J4UDT5BERQ92MHNK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J4UDT5BERQ92MHNK.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "J4UDT5BERQ92MHNK.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17019" + }, + "appliesTo" : [ ] + }, + "J4UDT5BERQ92MHNK.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "J4UDT5BERQ92MHNK.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "J4UDT5BERQ92MHNK.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "J4UDT5BERQ92MHNK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J4UDT5BERQ92MHNK.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "J4UDT5BERQ92MHNK.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "S35ZU4TJVUPNKG6U" : { + "S35ZU4TJVUPNKG6U.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "S35ZU4TJVUPNKG6U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "S35ZU4TJVUPNKG6U.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "S35ZU4TJVUPNKG6U.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6524" + }, + "appliesTo" : [ ] + }, + "S35ZU4TJVUPNKG6U.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "S35ZU4TJVUPNKG6U.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "S35ZU4TJVUPNKG6U.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "S35ZU4TJVUPNKG6U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "S35ZU4TJVUPNKG6U.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "S35ZU4TJVUPNKG6U.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "S35ZU4TJVUPNKG6U.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "S35ZU4TJVUPNKG6U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "S35ZU4TJVUPNKG6U.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "S35ZU4TJVUPNKG6U.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15681" + }, + "appliesTo" : [ ] + }, + "S35ZU4TJVUPNKG6U.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "S35ZU4TJVUPNKG6U.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "S35ZU4TJVUPNKG6U.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "S35ZU4TJVUPNKG6U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "S35ZU4TJVUPNKG6U.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "S35ZU4TJVUPNKG6U.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9543" + }, + "appliesTo" : [ ] + }, + "S35ZU4TJVUPNKG6U.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "S35ZU4TJVUPNKG6U.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "S35ZU4TJVUPNKG6U.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "S35ZU4TJVUPNKG6U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "S35ZU4TJVUPNKG6U.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "S35ZU4TJVUPNKG6U.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7502" + }, + "appliesTo" : [ ] + }, + "S35ZU4TJVUPNKG6U.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "S35ZU4TJVUPNKG6U.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "S35ZU4TJVUPNKG6U.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "S35ZU4TJVUPNKG6U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "S35ZU4TJVUPNKG6U.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "S35ZU4TJVUPNKG6U.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "S35ZU4TJVUPNKG6U.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "S35ZU4TJVUPNKG6U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "S35ZU4TJVUPNKG6U.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "S35ZU4TJVUPNKG6U.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10803" + }, + "appliesTo" : [ ] + }, + "S35ZU4TJVUPNKG6U.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "S35ZU4TJVUPNKG6U.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "S35ZU4TJVUPNKG6U.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "S35ZU4TJVUPNKG6U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "S35ZU4TJVUPNKG6U.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "S35ZU4TJVUPNKG6U.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6930000000" + }, + "appliesTo" : [ ] + }, + "S35ZU4TJVUPNKG6U.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "S35ZU4TJVUPNKG6U.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4931" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "S35ZU4TJVUPNKG6U.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "S35ZU4TJVUPNKG6U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "S35ZU4TJVUPNKG6U.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "S35ZU4TJVUPNKG6U.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "S35ZU4TJVUPNKG6U.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "S35ZU4TJVUPNKG6U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "S35ZU4TJVUPNKG6U.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "S35ZU4TJVUPNKG6U.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6190000000" + }, + "appliesTo" : [ ] + }, + "S35ZU4TJVUPNKG6U.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "S35ZU4TJVUPNKG6U.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4288" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "S35ZU4TJVUPNKG6U.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "S35ZU4TJVUPNKG6U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "S35ZU4TJVUPNKG6U.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "S35ZU4TJVUPNKG6U.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "S35ZU4TJVUPNKG6U.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "S35ZU4TJVUPNKG6U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "S35ZU4TJVUPNKG6U.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "S35ZU4TJVUPNKG6U.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "S35ZU4TJVUPNKG6U.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "S35ZU4TJVUPNKG6U.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18121" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "RA7GXBYJW245U7C5" : { + "RA7GXBYJW245U7C5.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "RA7GXBYJW245U7C5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RA7GXBYJW245U7C5.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "RA7GXBYJW245U7C5.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "78888" + }, + "appliesTo" : [ ] + }, + "RA7GXBYJW245U7C5.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "RA7GXBYJW245U7C5.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RA7GXBYJW245U7C5.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "RA7GXBYJW245U7C5", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "RA7GXBYJW245U7C5.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "RA7GXBYJW245U7C5.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.3600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RA7GXBYJW245U7C5.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "RA7GXBYJW245U7C5", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "RA7GXBYJW245U7C5.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "RA7GXBYJW245U7C5.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3360000000" + }, + "appliesTo" : [ ] + }, + "RA7GXBYJW245U7C5.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "RA7GXBYJW245U7C5.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "87685" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RA7GXBYJW245U7C5.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "RA7GXBYJW245U7C5", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "RA7GXBYJW245U7C5.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "RA7GXBYJW245U7C5.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "68591" + }, + "appliesTo" : [ ] + }, + "RA7GXBYJW245U7C5.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "RA7GXBYJW245U7C5.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RA7GXBYJW245U7C5.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "RA7GXBYJW245U7C5", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "RA7GXBYJW245U7C5.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "RA7GXBYJW245U7C5.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "122548" + }, + "appliesTo" : [ ] + }, + "RA7GXBYJW245U7C5.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "RA7GXBYJW245U7C5.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RA7GXBYJW245U7C5.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "RA7GXBYJW245U7C5", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "RA7GXBYJW245U7C5.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "RA7GXBYJW245U7C5.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35023" + }, + "appliesTo" : [ ] + }, + "RA7GXBYJW245U7C5.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "RA7GXBYJW245U7C5.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RA7GXBYJW245U7C5.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "RA7GXBYJW245U7C5", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "RA7GXBYJW245U7C5.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "RA7GXBYJW245U7C5.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "171866" + }, + "appliesTo" : [ ] + }, + "RA7GXBYJW245U7C5.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "RA7GXBYJW245U7C5.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RA7GXBYJW245U7C5.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "RA7GXBYJW245U7C5", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "RA7GXBYJW245U7C5.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "RA7GXBYJW245U7C5.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "65168" + }, + "appliesTo" : [ ] + }, + "RA7GXBYJW245U7C5.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "RA7GXBYJW245U7C5.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RA7GXBYJW245U7C5.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "RA7GXBYJW245U7C5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RA7GXBYJW245U7C5.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "RA7GXBYJW245U7C5.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.6460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RA7GXBYJW245U7C5.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "RA7GXBYJW245U7C5", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "RA7GXBYJW245U7C5.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "RA7GXBYJW245U7C5.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.3870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RA7GXBYJW245U7C5.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "RA7GXBYJW245U7C5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RA7GXBYJW245U7C5.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "RA7GXBYJW245U7C5.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "40277" + }, + "appliesTo" : [ ] + }, + "RA7GXBYJW245U7C5.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "RA7GXBYJW245U7C5.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RA7GXBYJW245U7C5.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "RA7GXBYJW245U7C5", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "RA7GXBYJW245U7C5.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "RA7GXBYJW245U7C5.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.2110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "ZVFV8KSWQPNVNYCW" : { + "ZVFV8KSWQPNVNYCW.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ZVFV8KSWQPNVNYCW", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "ZVFV8KSWQPNVNYCW.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ZVFV8KSWQPNVNYCW.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "384" + }, + "appliesTo" : [ ] + }, + "ZVFV8KSWQPNVNYCW.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ZVFV8KSWQPNVNYCW.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZVFV8KSWQPNVNYCW.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ZVFV8KSWQPNVNYCW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZVFV8KSWQPNVNYCW.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ZVFV8KSWQPNVNYCW.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ZVFV8KSWQPNVNYCW.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ZVFV8KSWQPNVNYCW.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1394" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZVFV8KSWQPNVNYCW.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ZVFV8KSWQPNVNYCW", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "ZVFV8KSWQPNVNYCW.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ZVFV8KSWQPNVNYCW.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ZVFV8KSWQPNVNYCW.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ZVFV8KSWQPNVNYCW.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1278" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZVFV8KSWQPNVNYCW.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ZVFV8KSWQPNVNYCW", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "ZVFV8KSWQPNVNYCW.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ZVFV8KSWQPNVNYCW.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3019" + }, + "appliesTo" : [ ] + }, + "ZVFV8KSWQPNVNYCW.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ZVFV8KSWQPNVNYCW.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZVFV8KSWQPNVNYCW.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "ZVFV8KSWQPNVNYCW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZVFV8KSWQPNVNYCW.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "ZVFV8KSWQPNVNYCW.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZVFV8KSWQPNVNYCW.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ZVFV8KSWQPNVNYCW", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "ZVFV8KSWQPNVNYCW.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ZVFV8KSWQPNVNYCW.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "767" + }, + "appliesTo" : [ ] + }, + "ZVFV8KSWQPNVNYCW.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ZVFV8KSWQPNVNYCW.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZVFV8KSWQPNVNYCW.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ZVFV8KSWQPNVNYCW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZVFV8KSWQPNVNYCW.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ZVFV8KSWQPNVNYCW.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "881" + }, + "appliesTo" : [ ] + }, + "ZVFV8KSWQPNVNYCW.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ZVFV8KSWQPNVNYCW.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0935000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZVFV8KSWQPNVNYCW.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ZVFV8KSWQPNVNYCW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZVFV8KSWQPNVNYCW.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ZVFV8KSWQPNVNYCW.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1524000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZVFV8KSWQPNVNYCW.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ZVFV8KSWQPNVNYCW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZVFV8KSWQPNVNYCW.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ZVFV8KSWQPNVNYCW.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1106000000" + }, + "appliesTo" : [ ] + }, + "ZVFV8KSWQPNVNYCW.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ZVFV8KSWQPNVNYCW.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "443" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZVFV8KSWQPNVNYCW.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ZVFV8KSWQPNVNYCW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZVFV8KSWQPNVNYCW.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ZVFV8KSWQPNVNYCW.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1663000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZVFV8KSWQPNVNYCW.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ZVFV8KSWQPNVNYCW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZVFV8KSWQPNVNYCW.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ZVFV8KSWQPNVNYCW.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ZVFV8KSWQPNVNYCW.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ZVFV8KSWQPNVNYCW.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3304" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZVFV8KSWQPNVNYCW.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ZVFV8KSWQPNVNYCW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZVFV8KSWQPNVNYCW.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ZVFV8KSWQPNVNYCW.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1324000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "D987U4EZH8SKPPQC" : { + "D987U4EZH8SKPPQC.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "D987U4EZH8SKPPQC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "D987U4EZH8SKPPQC.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "D987U4EZH8SKPPQC.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "D987U4EZH8SKPPQC.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "D987U4EZH8SKPPQC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "D987U4EZH8SKPPQC.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "D987U4EZH8SKPPQC.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "690" + }, + "appliesTo" : [ ] + }, + "D987U4EZH8SKPPQC.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "D987U4EZH8SKPPQC.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "D987U4EZH8SKPPQC.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "D987U4EZH8SKPPQC", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "D987U4EZH8SKPPQC.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "D987U4EZH8SKPPQC.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1637" + }, + "appliesTo" : [ ] + }, + "D987U4EZH8SKPPQC.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "D987U4EZH8SKPPQC.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "D987U4EZH8SKPPQC.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "D987U4EZH8SKPPQC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "D987U4EZH8SKPPQC.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "D987U4EZH8SKPPQC.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "686" + }, + "appliesTo" : [ ] + }, + "D987U4EZH8SKPPQC.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "D987U4EZH8SKPPQC.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "D987U4EZH8SKPPQC.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "D987U4EZH8SKPPQC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "D987U4EZH8SKPPQC.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "D987U4EZH8SKPPQC.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "280" + }, + "appliesTo" : [ ] + }, + "D987U4EZH8SKPPQC.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "D987U4EZH8SKPPQC.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "TFK9JRBDPXTYU5ZM" : { + "TFK9JRBDPXTYU5ZM.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TFK9JRBDPXTYU5ZM", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "TFK9JRBDPXTYU5ZM.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TFK9JRBDPXTYU5ZM.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29434" + }, + "appliesTo" : [ ] + }, + "TFK9JRBDPXTYU5ZM.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TFK9JRBDPXTYU5ZM.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TFK9JRBDPXTYU5ZM.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "TFK9JRBDPXTYU5ZM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TFK9JRBDPXTYU5ZM.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "TFK9JRBDPXTYU5ZM.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.0121000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TFK9JRBDPXTYU5ZM.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "TFK9JRBDPXTYU5ZM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TFK9JRBDPXTYU5ZM.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "TFK9JRBDPXTYU5ZM.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "60434" + }, + "appliesTo" : [ ] + }, + "TFK9JRBDPXTYU5ZM.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "TFK9JRBDPXTYU5ZM.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TFK9JRBDPXTYU5ZM.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "TFK9JRBDPXTYU5ZM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TFK9JRBDPXTYU5ZM.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "TFK9JRBDPXTYU5ZM.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30359" + }, + "appliesTo" : [ ] + }, + "TFK9JRBDPXTYU5ZM.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "TFK9JRBDPXTYU5ZM.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4656000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TFK9JRBDPXTYU5ZM.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "TFK9JRBDPXTYU5ZM", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "TFK9JRBDPXTYU5ZM.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "TFK9JRBDPXTYU5ZM.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.3194000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TFK9JRBDPXTYU5ZM.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "TFK9JRBDPXTYU5ZM", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "TFK9JRBDPXTYU5ZM.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "TFK9JRBDPXTYU5ZM.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "167227" + }, + "appliesTo" : [ ] + }, + "TFK9JRBDPXTYU5ZM.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "TFK9JRBDPXTYU5ZM.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TFK9JRBDPXTYU5ZM.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TFK9JRBDPXTYU5ZM", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "TFK9JRBDPXTYU5ZM.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TFK9JRBDPXTYU5ZM.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1224000000" + }, + "appliesTo" : [ ] + }, + "TFK9JRBDPXTYU5ZM.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TFK9JRBDPXTYU5ZM.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "82057" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TFK9JRBDPXTYU5ZM.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TFK9JRBDPXTYU5ZM", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "TFK9JRBDPXTYU5ZM.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TFK9JRBDPXTYU5ZM.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.7904000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TFK9JRBDPXTYU5ZM.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "TFK9JRBDPXTYU5ZM", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "TFK9JRBDPXTYU5ZM.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "TFK9JRBDPXTYU5ZM.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.4705000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TFK9JRBDPXTYU5ZM.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "TFK9JRBDPXTYU5ZM", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "TFK9JRBDPXTYU5ZM.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "TFK9JRBDPXTYU5ZM.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1924000000" + }, + "appliesTo" : [ ] + }, + "TFK9JRBDPXTYU5ZM.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "TFK9JRBDPXTYU5ZM.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "83895" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TFK9JRBDPXTYU5ZM.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TFK9JRBDPXTYU5ZM", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "TFK9JRBDPXTYU5ZM.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TFK9JRBDPXTYU5ZM.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "162643" + }, + "appliesTo" : [ ] + }, + "TFK9JRBDPXTYU5ZM.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TFK9JRBDPXTYU5ZM.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TFK9JRBDPXTYU5ZM.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TFK9JRBDPXTYU5ZM", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "TFK9JRBDPXTYU5ZM.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TFK9JRBDPXTYU5ZM.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "58620" + }, + "appliesTo" : [ ] + }, + "TFK9JRBDPXTYU5ZM.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TFK9JRBDPXTYU5ZM.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "F6DTZSV5HTJ5SARF" : { + "F6DTZSV5HTJ5SARF.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "F6DTZSV5HTJ5SARF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "F6DTZSV5HTJ5SARF.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "F6DTZSV5HTJ5SARF.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "F6DTZSV5HTJ5SARF.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "F6DTZSV5HTJ5SARF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "F6DTZSV5HTJ5SARF.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "F6DTZSV5HTJ5SARF.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16032" + }, + "appliesTo" : [ ] + }, + "F6DTZSV5HTJ5SARF.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "F6DTZSV5HTJ5SARF.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "F6DTZSV5HTJ5SARF.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "F6DTZSV5HTJ5SARF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "F6DTZSV5HTJ5SARF.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "F6DTZSV5HTJ5SARF.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "91129" + }, + "appliesTo" : [ ] + }, + "F6DTZSV5HTJ5SARF.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "F6DTZSV5HTJ5SARF.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "F6DTZSV5HTJ5SARF.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "F6DTZSV5HTJ5SARF", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "F6DTZSV5HTJ5SARF.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "F6DTZSV5HTJ5SARF.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "F6DTZSV5HTJ5SARF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "F6DTZSV5HTJ5SARF", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "F6DTZSV5HTJ5SARF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "F6DTZSV5HTJ5SARF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15732" + }, + "appliesTo" : [ ] + }, + "F6DTZSV5HTJ5SARF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "F6DTZSV5HTJ5SARF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "F6DTZSV5HTJ5SARF.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "F6DTZSV5HTJ5SARF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "F6DTZSV5HTJ5SARF.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "F6DTZSV5HTJ5SARF.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31968" + }, + "appliesTo" : [ ] + }, + "F6DTZSV5HTJ5SARF.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "F6DTZSV5HTJ5SARF.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "F6DTZSV5HTJ5SARF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "F6DTZSV5HTJ5SARF", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "F6DTZSV5HTJ5SARF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "F6DTZSV5HTJ5SARF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "66638" + }, + "appliesTo" : [ ] + }, + "F6DTZSV5HTJ5SARF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "F6DTZSV5HTJ5SARF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "F6DTZSV5HTJ5SARF.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "F6DTZSV5HTJ5SARF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "F6DTZSV5HTJ5SARF.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "F6DTZSV5HTJ5SARF.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6978000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "F6DTZSV5HTJ5SARF.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "F6DTZSV5HTJ5SARF", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "F6DTZSV5HTJ5SARF.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "F6DTZSV5HTJ5SARF.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.1410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "F6DTZSV5HTJ5SARF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "F6DTZSV5HTJ5SARF", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "F6DTZSV5HTJ5SARF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "F6DTZSV5HTJ5SARF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30837" + }, + "appliesTo" : [ ] + }, + "F6DTZSV5HTJ5SARF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "F6DTZSV5HTJ5SARF.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "F6DTZSV5HTJ5SARF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "F6DTZSV5HTJ5SARF", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "F6DTZSV5HTJ5SARF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "F6DTZSV5HTJ5SARF.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3490000000" + }, + "appliesTo" : [ ] + }, + "F6DTZSV5HTJ5SARF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "F6DTZSV5HTJ5SARF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35446" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "F6DTZSV5HTJ5SARF.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "F6DTZSV5HTJ5SARF", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "F6DTZSV5HTJ5SARF.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "F6DTZSV5HTJ5SARF.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46488" + }, + "appliesTo" : [ ] + }, + "F6DTZSV5HTJ5SARF.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "F6DTZSV5HTJ5SARF.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "9G23QA9CK3NU3BRY" : { + "9G23QA9CK3NU3BRY.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "9G23QA9CK3NU3BRY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9G23QA9CK3NU3BRY.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "9G23QA9CK3NU3BRY.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9G23QA9CK3NU3BRY.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "9G23QA9CK3NU3BRY", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "9G23QA9CK3NU3BRY.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "9G23QA9CK3NU3BRY.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16329" + }, + "appliesTo" : [ ] + }, + "9G23QA9CK3NU3BRY.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "9G23QA9CK3NU3BRY.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9G23QA9CK3NU3BRY.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "9G23QA9CK3NU3BRY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9G23QA9CK3NU3BRY.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "9G23QA9CK3NU3BRY.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9G23QA9CK3NU3BRY.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "9G23QA9CK3NU3BRY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9G23QA9CK3NU3BRY.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "9G23QA9CK3NU3BRY.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3770000000" + }, + "appliesTo" : [ ] + }, + "9G23QA9CK3NU3BRY.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "9G23QA9CK3NU3BRY.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9913" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9G23QA9CK3NU3BRY.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "9G23QA9CK3NU3BRY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9G23QA9CK3NU3BRY.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "9G23QA9CK3NU3BRY.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9478" + }, + "appliesTo" : [ ] + }, + "9G23QA9CK3NU3BRY.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "9G23QA9CK3NU3BRY.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9G23QA9CK3NU3BRY.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "9G23QA9CK3NU3BRY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9G23QA9CK3NU3BRY.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "9G23QA9CK3NU3BRY.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19429" + }, + "appliesTo" : [ ] + }, + "9G23QA9CK3NU3BRY.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "9G23QA9CK3NU3BRY.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9G23QA9CK3NU3BRY.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "9G23QA9CK3NU3BRY", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "9G23QA9CK3NU3BRY.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "9G23QA9CK3NU3BRY.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4231" + }, + "appliesTo" : [ ] + }, + "9G23QA9CK3NU3BRY.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "9G23QA9CK3NU3BRY.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9G23QA9CK3NU3BRY.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "9G23QA9CK3NU3BRY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9G23QA9CK3NU3BRY.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "9G23QA9CK3NU3BRY.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9G23QA9CK3NU3BRY.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "9G23QA9CK3NU3BRY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9G23QA9CK3NU3BRY.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "9G23QA9CK3NU3BRY.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9G23QA9CK3NU3BRY.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "9G23QA9CK3NU3BRY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9G23QA9CK3NU3BRY.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "9G23QA9CK3NU3BRY.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4836" + }, + "appliesTo" : [ ] + }, + "9G23QA9CK3NU3BRY.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "9G23QA9CK3NU3BRY.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9G23QA9CK3NU3BRY.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "9G23QA9CK3NU3BRY", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "9G23QA9CK3NU3BRY.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "9G23QA9CK3NU3BRY.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8293" + }, + "appliesTo" : [ ] + }, + "9G23QA9CK3NU3BRY.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "9G23QA9CK3NU3BRY.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9G23QA9CK3NU3BRY.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "9G23QA9CK3NU3BRY", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "9G23QA9CK3NU3BRY.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "9G23QA9CK3NU3BRY.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3300000000" + }, + "appliesTo" : [ ] + }, + "9G23QA9CK3NU3BRY.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "9G23QA9CK3NU3BRY.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8686" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "4QXRNM4XXHKD5KJH" : { + "4QXRNM4XXHKD5KJH.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "4QXRNM4XXHKD5KJH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4QXRNM4XXHKD5KJH.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "4QXRNM4XXHKD5KJH.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "4QXRNM4XXHKD5KJH.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "4QXRNM4XXHKD5KJH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4QXRNM4XXHKD5KJH.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "4QXRNM4XXHKD5KJH.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "4QXRNM4XXHKD5KJH.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "4QXRNM4XXHKD5KJH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4QXRNM4XXHKD5KJH.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "4QXRNM4XXHKD5KJH.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6357" + }, + "appliesTo" : [ ] + }, + "4QXRNM4XXHKD5KJH.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "4QXRNM4XXHKD5KJH.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4QXRNM4XXHKD5KJH.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "4QXRNM4XXHKD5KJH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4QXRNM4XXHKD5KJH.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "4QXRNM4XXHKD5KJH.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1228" + }, + "appliesTo" : [ ] + }, + "4QXRNM4XXHKD5KJH.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "4QXRNM4XXHKD5KJH.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4QXRNM4XXHKD5KJH.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "4QXRNM4XXHKD5KJH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4QXRNM4XXHKD5KJH.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "4QXRNM4XXHKD5KJH.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2435" + }, + "appliesTo" : [ ] + }, + "4QXRNM4XXHKD5KJH.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "4QXRNM4XXHKD5KJH.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4QXRNM4XXHKD5KJH.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "4QXRNM4XXHKD5KJH", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "4QXRNM4XXHKD5KJH.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "4QXRNM4XXHKD5KJH.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "4QXRNM4XXHKD5KJH.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "4QXRNM4XXHKD5KJH.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6018" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4QXRNM4XXHKD5KJH.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "4QXRNM4XXHKD5KJH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4QXRNM4XXHKD5KJH.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "4QXRNM4XXHKD5KJH.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "4QXRNM4XXHKD5KJH.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "4QXRNM4XXHKD5KJH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4QXRNM4XXHKD5KJH.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "4QXRNM4XXHKD5KJH.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3200" + }, + "appliesTo" : [ ] + }, + "4QXRNM4XXHKD5KJH.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "4QXRNM4XXHKD5KJH.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4QXRNM4XXHKD5KJH.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "4QXRNM4XXHKD5KJH", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "4QXRNM4XXHKD5KJH.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "4QXRNM4XXHKD5KJH.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1320000000" + }, + "appliesTo" : [ ] + }, + "4QXRNM4XXHKD5KJH.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "4QXRNM4XXHKD5KJH.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1158" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4QXRNM4XXHKD5KJH.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "4QXRNM4XXHKD5KJH", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "4QXRNM4XXHKD5KJH.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "4QXRNM4XXHKD5KJH.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3064" + }, + "appliesTo" : [ ] + }, + "4QXRNM4XXHKD5KJH.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "4QXRNM4XXHKD5KJH.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4QXRNM4XXHKD5KJH.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "4QXRNM4XXHKD5KJH", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "4QXRNM4XXHKD5KJH.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "4QXRNM4XXHKD5KJH.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "4QXRNM4XXHKD5KJH.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "4QXRNM4XXHKD5KJH.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2298" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4QXRNM4XXHKD5KJH.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "4QXRNM4XXHKD5KJH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4QXRNM4XXHKD5KJH.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "4QXRNM4XXHKD5KJH.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "UZHN722C5BU8DZ5W" : { + "UZHN722C5BU8DZ5W.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "UZHN722C5BU8DZ5W", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "UZHN722C5BU8DZ5W.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "UZHN722C5BU8DZ5W.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "UZHN722C5BU8DZ5W.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "UZHN722C5BU8DZ5W.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33173" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "UZHN722C5BU8DZ5W.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "UZHN722C5BU8DZ5W", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "UZHN722C5BU8DZ5W.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "UZHN722C5BU8DZ5W.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.1820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "UZHN722C5BU8DZ5W.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "UZHN722C5BU8DZ5W", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "UZHN722C5BU8DZ5W.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "UZHN722C5BU8DZ5W.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "UZHN722C5BU8DZ5W.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "UZHN722C5BU8DZ5W.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "68134" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "UZHN722C5BU8DZ5W.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "UZHN722C5BU8DZ5W", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "UZHN722C5BU8DZ5W.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "UZHN722C5BU8DZ5W.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21920" + }, + "appliesTo" : [ ] + }, + "UZHN722C5BU8DZ5W.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "UZHN722C5BU8DZ5W.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "UZHN722C5BU8DZ5W.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "UZHN722C5BU8DZ5W", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "UZHN722C5BU8DZ5W.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "UZHN722C5BU8DZ5W.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39312" + }, + "appliesTo" : [ ] + }, + "UZHN722C5BU8DZ5W.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "UZHN722C5BU8DZ5W.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "UZHN722C5BU8DZ5W.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "UZHN722C5BU8DZ5W", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UZHN722C5BU8DZ5W.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "UZHN722C5BU8DZ5W.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21067" + }, + "appliesTo" : [ ] + }, + "UZHN722C5BU8DZ5W.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "UZHN722C5BU8DZ5W.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "UZHN722C5BU8DZ5W.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "UZHN722C5BU8DZ5W", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UZHN722C5BU8DZ5W.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "UZHN722C5BU8DZ5W.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "UZHN722C5BU8DZ5W.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "UZHN722C5BU8DZ5W", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "UZHN722C5BU8DZ5W.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "UZHN722C5BU8DZ5W.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "UZHN722C5BU8DZ5W.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "UZHN722C5BU8DZ5W", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "UZHN722C5BU8DZ5W.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "UZHN722C5BU8DZ5W.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "92040" + }, + "appliesTo" : [ ] + }, + "UZHN722C5BU8DZ5W.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "UZHN722C5BU8DZ5W.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "UZHN722C5BU8DZ5W.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "UZHN722C5BU8DZ5W", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "UZHN722C5BU8DZ5W.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "UZHN722C5BU8DZ5W.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2020000000" + }, + "appliesTo" : [ ] + }, + "UZHN722C5BU8DZ5W.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "UZHN722C5BU8DZ5W.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14560" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "UZHN722C5BU8DZ5W.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "UZHN722C5BU8DZ5W", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UZHN722C5BU8DZ5W.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "UZHN722C5BU8DZ5W.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "UZHN722C5BU8DZ5W.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "UZHN722C5BU8DZ5W.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "41549" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "XZ79CEGC6NSB9FQ8" : { + "XZ79CEGC6NSB9FQ8.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "XZ79CEGC6NSB9FQ8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XZ79CEGC6NSB9FQ8.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "XZ79CEGC6NSB9FQ8.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14121" + }, + "appliesTo" : [ ] + }, + "XZ79CEGC6NSB9FQ8.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "XZ79CEGC6NSB9FQ8.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XZ79CEGC6NSB9FQ8.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XZ79CEGC6NSB9FQ8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XZ79CEGC6NSB9FQ8.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XZ79CEGC6NSB9FQ8.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XZ79CEGC6NSB9FQ8.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "XZ79CEGC6NSB9FQ8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XZ79CEGC6NSB9FQ8.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "XZ79CEGC6NSB9FQ8.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7101" + }, + "appliesTo" : [ ] + }, + "XZ79CEGC6NSB9FQ8.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "XZ79CEGC6NSB9FQ8.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XZ79CEGC6NSB9FQ8.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XZ79CEGC6NSB9FQ8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XZ79CEGC6NSB9FQ8.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XZ79CEGC6NSB9FQ8.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6837" + }, + "appliesTo" : [ ] + }, + "XZ79CEGC6NSB9FQ8.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XZ79CEGC6NSB9FQ8.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XZ79CEGC6NSB9FQ8.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "XZ79CEGC6NSB9FQ8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XZ79CEGC6NSB9FQ8.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "XZ79CEGC6NSB9FQ8.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5416" + }, + "appliesTo" : [ ] + }, + "XZ79CEGC6NSB9FQ8.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "XZ79CEGC6NSB9FQ8.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XZ79CEGC6NSB9FQ8.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "XZ79CEGC6NSB9FQ8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XZ79CEGC6NSB9FQ8.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "XZ79CEGC6NSB9FQ8.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XZ79CEGC6NSB9FQ8.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "XZ79CEGC6NSB9FQ8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XZ79CEGC6NSB9FQ8.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "XZ79CEGC6NSB9FQ8.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2729" + }, + "appliesTo" : [ ] + }, + "XZ79CEGC6NSB9FQ8.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "XZ79CEGC6NSB9FQ8.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XZ79CEGC6NSB9FQ8.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "XZ79CEGC6NSB9FQ8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XZ79CEGC6NSB9FQ8.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "XZ79CEGC6NSB9FQ8.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XZ79CEGC6NSB9FQ8.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XZ79CEGC6NSB9FQ8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XZ79CEGC6NSB9FQ8.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XZ79CEGC6NSB9FQ8.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5154" + }, + "appliesTo" : [ ] + }, + "XZ79CEGC6NSB9FQ8.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XZ79CEGC6NSB9FQ8.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XZ79CEGC6NSB9FQ8.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XZ79CEGC6NSB9FQ8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XZ79CEGC6NSB9FQ8.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XZ79CEGC6NSB9FQ8.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2595" + }, + "appliesTo" : [ ] + }, + "XZ79CEGC6NSB9FQ8.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XZ79CEGC6NSB9FQ8.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XZ79CEGC6NSB9FQ8.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XZ79CEGC6NSB9FQ8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XZ79CEGC6NSB9FQ8.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XZ79CEGC6NSB9FQ8.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13466" + }, + "appliesTo" : [ ] + }, + "XZ79CEGC6NSB9FQ8.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XZ79CEGC6NSB9FQ8.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XZ79CEGC6NSB9FQ8.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "XZ79CEGC6NSB9FQ8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XZ79CEGC6NSB9FQ8.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "XZ79CEGC6NSB9FQ8.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "CDHRWPJ4QQUN4CPP" : { + "CDHRWPJ4QQUN4CPP.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "CDHRWPJ4QQUN4CPP", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "CDHRWPJ4QQUN4CPP.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "CDHRWPJ4QQUN4CPP.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10045" + }, + "appliesTo" : [ ] + }, + "CDHRWPJ4QQUN4CPP.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "CDHRWPJ4QQUN4CPP.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CDHRWPJ4QQUN4CPP.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "CDHRWPJ4QQUN4CPP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "CDHRWPJ4QQUN4CPP.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "CDHRWPJ4QQUN4CPP.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7020000000" + }, + "appliesTo" : [ ] + }, + "CDHRWPJ4QQUN4CPP.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "CDHRWPJ4QQUN4CPP.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4102" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CDHRWPJ4QQUN4CPP.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "CDHRWPJ4QQUN4CPP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "CDHRWPJ4QQUN4CPP.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "CDHRWPJ4QQUN4CPP.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "CDHRWPJ4QQUN4CPP.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "CDHRWPJ4QQUN4CPP.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21226" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CDHRWPJ4QQUN4CPP.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "CDHRWPJ4QQUN4CPP", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "CDHRWPJ4QQUN4CPP.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "CDHRWPJ4QQUN4CPP.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CDHRWPJ4QQUN4CPP.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "CDHRWPJ4QQUN4CPP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "CDHRWPJ4QQUN4CPP.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "CDHRWPJ4QQUN4CPP.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9023" + }, + "appliesTo" : [ ] + }, + "CDHRWPJ4QQUN4CPP.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "CDHRWPJ4QQUN4CPP.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "YGC2QHNNR7NU4B88" : { + "YGC2QHNNR7NU4B88.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YGC2QHNNR7NU4B88", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "YGC2QHNNR7NU4B88.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YGC2QHNNR7NU4B88.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.9250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YGC2QHNNR7NU4B88.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YGC2QHNNR7NU4B88", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "YGC2QHNNR7NU4B88.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YGC2QHNNR7NU4B88.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "80154" + }, + "appliesTo" : [ ] + }, + "YGC2QHNNR7NU4B88.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YGC2QHNNR7NU4B88.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YGC2QHNNR7NU4B88.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "YGC2QHNNR7NU4B88", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YGC2QHNNR7NU4B88.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "YGC2QHNNR7NU4B88.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.5880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YGC2QHNNR7NU4B88.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "YGC2QHNNR7NU4B88", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YGC2QHNNR7NU4B88.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "YGC2QHNNR7NU4B88.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "180664" + }, + "appliesTo" : [ ] + }, + "YGC2QHNNR7NU4B88.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "YGC2QHNNR7NU4B88.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YGC2QHNNR7NU4B88.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "YGC2QHNNR7NU4B88", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YGC2QHNNR7NU4B88.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "YGC2QHNNR7NU4B88.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.2636000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YGC2QHNNR7NU4B88.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "YGC2QHNNR7NU4B88", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YGC2QHNNR7NU4B88.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "YGC2QHNNR7NU4B88.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "42814" + }, + "appliesTo" : [ ] + }, + "YGC2QHNNR7NU4B88.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "YGC2QHNNR7NU4B88.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.8874000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YGC2QHNNR7NU4B88.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YGC2QHNNR7NU4B88", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "YGC2QHNNR7NU4B88.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YGC2QHNNR7NU4B88.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "72971" + }, + "appliesTo" : [ ] + }, + "YGC2QHNNR7NU4B88.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YGC2QHNNR7NU4B88.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YGC2QHNNR7NU4B88.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "YGC2QHNNR7NU4B88", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YGC2QHNNR7NU4B88.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "YGC2QHNNR7NU4B88.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "83915" + }, + "appliesTo" : [ ] + }, + "YGC2QHNNR7NU4B88.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "YGC2QHNNR7NU4B88.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YGC2QHNNR7NU4B88.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "YGC2QHNNR7NU4B88", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YGC2QHNNR7NU4B88.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "YGC2QHNNR7NU4B88.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "92175" + }, + "appliesTo" : [ ] + }, + "YGC2QHNNR7NU4B88.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "YGC2QHNNR7NU4B88.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5074000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YGC2QHNNR7NU4B88.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YGC2QHNNR7NU4B88", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "YGC2QHNNR7NU4B88.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YGC2QHNNR7NU4B88.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37230" + }, + "appliesTo" : [ ] + }, + "YGC2QHNNR7NU4B88.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YGC2QHNNR7NU4B88.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YGC2QHNNR7NU4B88.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YGC2QHNNR7NU4B88", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "YGC2QHNNR7NU4B88.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YGC2QHNNR7NU4B88.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "150690" + }, + "appliesTo" : [ ] + }, + "YGC2QHNNR7NU4B88.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YGC2QHNNR7NU4B88.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YGC2QHNNR7NU4B88.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "YGC2QHNNR7NU4B88", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YGC2QHNNR7NU4B88.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "YGC2QHNNR7NU4B88.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5761000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "B36YBM4BFMUWZSG4" : { + "B36YBM4BFMUWZSG4.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "B36YBM4BFMUWZSG4", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "B36YBM4BFMUWZSG4.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "B36YBM4BFMUWZSG4.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "B36YBM4BFMUWZSG4.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "B36YBM4BFMUWZSG4", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "B36YBM4BFMUWZSG4.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "B36YBM4BFMUWZSG4.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0370000000" + }, + "appliesTo" : [ ] + }, + "B36YBM4BFMUWZSG4.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "B36YBM4BFMUWZSG4.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "825" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "B36YBM4BFMUWZSG4.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "B36YBM4BFMUWZSG4", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "B36YBM4BFMUWZSG4.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "B36YBM4BFMUWZSG4.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "B36YBM4BFMUWZSG4.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "B36YBM4BFMUWZSG4.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1698" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "B36YBM4BFMUWZSG4.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "B36YBM4BFMUWZSG4", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "B36YBM4BFMUWZSG4.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "B36YBM4BFMUWZSG4.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "918" + }, + "appliesTo" : [ ] + }, + "B36YBM4BFMUWZSG4.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "B36YBM4BFMUWZSG4.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "B36YBM4BFMUWZSG4.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "B36YBM4BFMUWZSG4", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "B36YBM4BFMUWZSG4.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "B36YBM4BFMUWZSG4.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "542" + }, + "appliesTo" : [ ] + }, + "B36YBM4BFMUWZSG4.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "B36YBM4BFMUWZSG4.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "W84NR989M57Y5DZJ" : { + "W84NR989M57Y5DZJ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "W84NR989M57Y5DZJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W84NR989M57Y5DZJ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "W84NR989M57Y5DZJ.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "W84NR989M57Y5DZJ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "W84NR989M57Y5DZJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W84NR989M57Y5DZJ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "W84NR989M57Y5DZJ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1306" + }, + "appliesTo" : [ ] + }, + "W84NR989M57Y5DZJ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "W84NR989M57Y5DZJ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "W84NR989M57Y5DZJ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "W84NR989M57Y5DZJ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "W84NR989M57Y5DZJ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "W84NR989M57Y5DZJ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4509" + }, + "appliesTo" : [ ] + }, + "W84NR989M57Y5DZJ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "W84NR989M57Y5DZJ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "W84NR989M57Y5DZJ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "W84NR989M57Y5DZJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "W84NR989M57Y5DZJ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "W84NR989M57Y5DZJ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1020000000" + }, + "appliesTo" : [ ] + }, + "W84NR989M57Y5DZJ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "W84NR989M57Y5DZJ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2679" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "W84NR989M57Y5DZJ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "W84NR989M57Y5DZJ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "W84NR989M57Y5DZJ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "W84NR989M57Y5DZJ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2381" + }, + "appliesTo" : [ ] + }, + "W84NR989M57Y5DZJ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "W84NR989M57Y5DZJ.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "W84NR989M57Y5DZJ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "W84NR989M57Y5DZJ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "W84NR989M57Y5DZJ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "W84NR989M57Y5DZJ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1153" + }, + "appliesTo" : [ ] + }, + "W84NR989M57Y5DZJ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "W84NR989M57Y5DZJ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "W84NR989M57Y5DZJ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "W84NR989M57Y5DZJ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "W84NR989M57Y5DZJ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "W84NR989M57Y5DZJ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2205" + }, + "appliesTo" : [ ] + }, + "W84NR989M57Y5DZJ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "W84NR989M57Y5DZJ.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "W84NR989M57Y5DZJ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "W84NR989M57Y5DZJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "W84NR989M57Y5DZJ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "W84NR989M57Y5DZJ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "W84NR989M57Y5DZJ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "W84NR989M57Y5DZJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "W84NR989M57Y5DZJ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "W84NR989M57Y5DZJ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "W84NR989M57Y5DZJ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "W84NR989M57Y5DZJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "W84NR989M57Y5DZJ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "W84NR989M57Y5DZJ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5255" + }, + "appliesTo" : [ ] + }, + "W84NR989M57Y5DZJ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "W84NR989M57Y5DZJ.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "W84NR989M57Y5DZJ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "W84NR989M57Y5DZJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W84NR989M57Y5DZJ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "W84NR989M57Y5DZJ.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "W84NR989M57Y5DZJ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "W84NR989M57Y5DZJ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2505" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "W84NR989M57Y5DZJ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "W84NR989M57Y5DZJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "W84NR989M57Y5DZJ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "W84NR989M57Y5DZJ.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "3YGFZFTB4F7JS7UX" : { + "3YGFZFTB4F7JS7UX.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "3YGFZFTB4F7JS7UX", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "3YGFZFTB4F7JS7UX.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "3YGFZFTB4F7JS7UX.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2580" + }, + "appliesTo" : [ ] + }, + "3YGFZFTB4F7JS7UX.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "3YGFZFTB4F7JS7UX.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3YGFZFTB4F7JS7UX.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "3YGFZFTB4F7JS7UX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3YGFZFTB4F7JS7UX.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "3YGFZFTB4F7JS7UX.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5056" + }, + "appliesTo" : [ ] + }, + "3YGFZFTB4F7JS7UX.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "3YGFZFTB4F7JS7UX.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3YGFZFTB4F7JS7UX.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "3YGFZFTB4F7JS7UX", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "3YGFZFTB4F7JS7UX.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "3YGFZFTB4F7JS7UX.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3YGFZFTB4F7JS7UX.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "3YGFZFTB4F7JS7UX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3YGFZFTB4F7JS7UX.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "3YGFZFTB4F7JS7UX.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4935000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3YGFZFTB4F7JS7UX.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "3YGFZFTB4F7JS7UX", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "3YGFZFTB4F7JS7UX.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "3YGFZFTB4F7JS7UX.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7371" + }, + "appliesTo" : [ ] + }, + "3YGFZFTB4F7JS7UX.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "3YGFZFTB4F7JS7UX.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3YGFZFTB4F7JS7UX.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "3YGFZFTB4F7JS7UX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3YGFZFTB4F7JS7UX.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "3YGFZFTB4F7JS7UX.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12178" + }, + "appliesTo" : [ ] + }, + "3YGFZFTB4F7JS7UX.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "3YGFZFTB4F7JS7UX.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3YGFZFTB4F7JS7UX.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "3YGFZFTB4F7JS7UX", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "3YGFZFTB4F7JS7UX.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "3YGFZFTB4F7JS7UX.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3YGFZFTB4F7JS7UX.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "3YGFZFTB4F7JS7UX", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "3YGFZFTB4F7JS7UX.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "3YGFZFTB4F7JS7UX.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6478" + }, + "appliesTo" : [ ] + }, + "3YGFZFTB4F7JS7UX.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "3YGFZFTB4F7JS7UX.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3YGFZFTB4F7JS7UX.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "3YGFZFTB4F7JS7UX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3YGFZFTB4F7JS7UX.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "3YGFZFTB4F7JS7UX.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6789" + }, + "appliesTo" : [ ] + }, + "3YGFZFTB4F7JS7UX.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "3YGFZFTB4F7JS7UX.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3YGFZFTB4F7JS7UX.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "3YGFZFTB4F7JS7UX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3YGFZFTB4F7JS7UX.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "3YGFZFTB4F7JS7UX.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14444" + }, + "appliesTo" : [ ] + }, + "3YGFZFTB4F7JS7UX.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "3YGFZFTB4F7JS7UX.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3YGFZFTB4F7JS7UX.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "3YGFZFTB4F7JS7UX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3YGFZFTB4F7JS7UX.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "3YGFZFTB4F7JS7UX.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3418" + }, + "appliesTo" : [ ] + }, + "3YGFZFTB4F7JS7UX.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "3YGFZFTB4F7JS7UX.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3902000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3YGFZFTB4F7JS7UX.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "3YGFZFTB4F7JS7UX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3YGFZFTB4F7JS7UX.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "3YGFZFTB4F7JS7UX.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "5ESJGGVJ9BWYXAY9" : { + "5ESJGGVJ9BWYXAY9.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "5ESJGGVJ9BWYXAY9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5ESJGGVJ9BWYXAY9.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "5ESJGGVJ9BWYXAY9.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1960000000" + }, + "appliesTo" : [ ] + }, + "5ESJGGVJ9BWYXAY9.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "5ESJGGVJ9BWYXAY9.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1717" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "5ESJGGVJ9BWYXAY9.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "5ESJGGVJ9BWYXAY9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5ESJGGVJ9BWYXAY9.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "5ESJGGVJ9BWYXAY9.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "5ESJGGVJ9BWYXAY9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "5ESJGGVJ9BWYXAY9", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "5ESJGGVJ9BWYXAY9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "5ESJGGVJ9BWYXAY9.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "5ESJGGVJ9BWYXAY9.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "5ESJGGVJ9BWYXAY9", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "5ESJGGVJ9BWYXAY9.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "5ESJGGVJ9BWYXAY9.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9138" + }, + "appliesTo" : [ ] + }, + "5ESJGGVJ9BWYXAY9.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "5ESJGGVJ9BWYXAY9.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "5ESJGGVJ9BWYXAY9.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "5ESJGGVJ9BWYXAY9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5ESJGGVJ9BWYXAY9.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "5ESJGGVJ9BWYXAY9.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3397" + }, + "appliesTo" : [ ] + }, + "5ESJGGVJ9BWYXAY9.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "5ESJGGVJ9BWYXAY9.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "5ESJGGVJ9BWYXAY9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "5ESJGGVJ9BWYXAY9", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "5ESJGGVJ9BWYXAY9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "5ESJGGVJ9BWYXAY9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1287" + }, + "appliesTo" : [ ] + }, + "5ESJGGVJ9BWYXAY9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "5ESJGGVJ9BWYXAY9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5ESJGGVJ9BWYXAY9.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "5ESJGGVJ9BWYXAY9", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "5ESJGGVJ9BWYXAY9.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "5ESJGGVJ9BWYXAY9.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3583" + }, + "appliesTo" : [ ] + }, + "5ESJGGVJ9BWYXAY9.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "5ESJGGVJ9BWYXAY9.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "5ESJGGVJ9BWYXAY9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "5ESJGGVJ9BWYXAY9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "5ESJGGVJ9BWYXAY9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "5ESJGGVJ9BWYXAY9.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2190000000" + }, + "appliesTo" : [ ] + }, + "5ESJGGVJ9BWYXAY9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "5ESJGGVJ9BWYXAY9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2097" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5ESJGGVJ9BWYXAY9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "5ESJGGVJ9BWYXAY9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "5ESJGGVJ9BWYXAY9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "5ESJGGVJ9BWYXAY9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "5ESJGGVJ9BWYXAY9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "5ESJGGVJ9BWYXAY9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7378" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5ESJGGVJ9BWYXAY9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "5ESJGGVJ9BWYXAY9", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "5ESJGGVJ9BWYXAY9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "5ESJGGVJ9BWYXAY9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3203" + }, + "appliesTo" : [ ] + }, + "5ESJGGVJ9BWYXAY9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "5ESJGGVJ9BWYXAY9.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5ESJGGVJ9BWYXAY9.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "5ESJGGVJ9BWYXAY9", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "5ESJGGVJ9BWYXAY9.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "5ESJGGVJ9BWYXAY9.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "9MSTVHD5FNUTQ99C" : { + "9MSTVHD5FNUTQ99C.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "9MSTVHD5FNUTQ99C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9MSTVHD5FNUTQ99C.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "9MSTVHD5FNUTQ99C.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "9MSTVHD5FNUTQ99C.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "9MSTVHD5FNUTQ99C.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "98462" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9MSTVHD5FNUTQ99C.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "9MSTVHD5FNUTQ99C", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "9MSTVHD5FNUTQ99C.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "9MSTVHD5FNUTQ99C.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "9MSTVHD5FNUTQ99C.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "9MSTVHD5FNUTQ99C.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "88165" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9MSTVHD5FNUTQ99C.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "9MSTVHD5FNUTQ99C", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "9MSTVHD5FNUTQ99C.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "9MSTVHD5FNUTQ99C.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.4460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9MSTVHD5FNUTQ99C.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "9MSTVHD5FNUTQ99C", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "9MSTVHD5FNUTQ99C.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "9MSTVHD5FNUTQ99C.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9MSTVHD5FNUTQ99C.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "9MSTVHD5FNUTQ99C", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "9MSTVHD5FNUTQ99C.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "9MSTVHD5FNUTQ99C.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "9MSTVHD5FNUTQ99C.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "9MSTVHD5FNUTQ99C.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "181446" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9MSTVHD5FNUTQ99C.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "9MSTVHD5FNUTQ99C", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "9MSTVHD5FNUTQ99C.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "9MSTVHD5FNUTQ99C.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "94612" + }, + "appliesTo" : [ ] + }, + "9MSTVHD5FNUTQ99C.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "9MSTVHD5FNUTQ99C.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9MSTVHD5FNUTQ99C.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "9MSTVHD5FNUTQ99C", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "9MSTVHD5FNUTQ99C.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "9MSTVHD5FNUTQ99C.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "117129" + }, + "appliesTo" : [ ] + }, + "9MSTVHD5FNUTQ99C.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "9MSTVHD5FNUTQ99C.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.4570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9MSTVHD5FNUTQ99C.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "9MSTVHD5FNUTQ99C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9MSTVHD5FNUTQ99C.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "9MSTVHD5FNUTQ99C.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.7120000000" + }, + "appliesTo" : [ ] + }, + "9MSTVHD5FNUTQ99C.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "9MSTVHD5FNUTQ99C.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "50033" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9MSTVHD5FNUTQ99C.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "9MSTVHD5FNUTQ99C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9MSTVHD5FNUTQ99C.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "9MSTVHD5FNUTQ99C.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "11.8810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9MSTVHD5FNUTQ99C.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "9MSTVHD5FNUTQ99C", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "9MSTVHD5FNUTQ99C.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "9MSTVHD5FNUTQ99C.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "9MSTVHD5FNUTQ99C.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "9MSTVHD5FNUTQ99C.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "230765" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9MSTVHD5FNUTQ99C.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "9MSTVHD5FNUTQ99C", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "9MSTVHD5FNUTQ99C.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "9MSTVHD5FNUTQ99C.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "44779" + }, + "appliesTo" : [ ] + }, + "9MSTVHD5FNUTQ99C.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "9MSTVHD5FNUTQ99C.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.1120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9MSTVHD5FNUTQ99C.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "9MSTVHD5FNUTQ99C", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "9MSTVHD5FNUTQ99C.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "9MSTVHD5FNUTQ99C.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.6210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "H6T3SYB5G6QCVMZM" : { + "H6T3SYB5G6QCVMZM.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "H6T3SYB5G6QCVMZM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H6T3SYB5G6QCVMZM.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "H6T3SYB5G6QCVMZM.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "H6T3SYB5G6QCVMZM.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "H6T3SYB5G6QCVMZM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H6T3SYB5G6QCVMZM.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "H6T3SYB5G6QCVMZM.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5093" + }, + "appliesTo" : [ ] + }, + "H6T3SYB5G6QCVMZM.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "H6T3SYB5G6QCVMZM.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "H6T3SYB5G6QCVMZM.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "H6T3SYB5G6QCVMZM", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "H6T3SYB5G6QCVMZM.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "H6T3SYB5G6QCVMZM.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23466" + }, + "appliesTo" : [ ] + }, + "H6T3SYB5G6QCVMZM.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "H6T3SYB5G6QCVMZM.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "H6T3SYB5G6QCVMZM.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "H6T3SYB5G6QCVMZM", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "H6T3SYB5G6QCVMZM.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "H6T3SYB5G6QCVMZM.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5216" + }, + "appliesTo" : [ ] + }, + "H6T3SYB5G6QCVMZM.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "H6T3SYB5G6QCVMZM.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "H6T3SYB5G6QCVMZM.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "H6T3SYB5G6QCVMZM", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "H6T3SYB5G6QCVMZM.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "H6T3SYB5G6QCVMZM.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "H6T3SYB5G6QCVMZM.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "H6T3SYB5G6QCVMZM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H6T3SYB5G6QCVMZM.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "H6T3SYB5G6QCVMZM.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "H6T3SYB5G6QCVMZM.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "H6T3SYB5G6QCVMZM.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9983" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "H6T3SYB5G6QCVMZM.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "H6T3SYB5G6QCVMZM", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "H6T3SYB5G6QCVMZM.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "H6T3SYB5G6QCVMZM.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16506" + }, + "appliesTo" : [ ] + }, + "H6T3SYB5G6QCVMZM.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "H6T3SYB5G6QCVMZM.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "H6T3SYB5G6QCVMZM.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "H6T3SYB5G6QCVMZM", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "H6T3SYB5G6QCVMZM.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "H6T3SYB5G6QCVMZM.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "H6T3SYB5G6QCVMZM.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "H6T3SYB5G6QCVMZM", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "H6T3SYB5G6QCVMZM.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "H6T3SYB5G6QCVMZM.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8691" + }, + "appliesTo" : [ ] + }, + "H6T3SYB5G6QCVMZM.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "H6T3SYB5G6QCVMZM.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "H6T3SYB5G6QCVMZM.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "H6T3SYB5G6QCVMZM", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "H6T3SYB5G6QCVMZM.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "H6T3SYB5G6QCVMZM.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3590000000" + }, + "appliesTo" : [ ] + }, + "H6T3SYB5G6QCVMZM.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "H6T3SYB5G6QCVMZM.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8126" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "H6T3SYB5G6QCVMZM.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "H6T3SYB5G6QCVMZM", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "H6T3SYB5G6QCVMZM.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "H6T3SYB5G6QCVMZM.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14083" + }, + "appliesTo" : [ ] + }, + "H6T3SYB5G6QCVMZM.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "H6T3SYB5G6QCVMZM.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "QUKA5FNRVVKN5422" : { + "QUKA5FNRVVKN5422.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "QUKA5FNRVVKN5422", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QUKA5FNRVVKN5422.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "QUKA5FNRVVKN5422.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2689" + }, + "appliesTo" : [ ] + }, + "QUKA5FNRVVKN5422.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "QUKA5FNRVVKN5422.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QUKA5FNRVVKN5422.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "QUKA5FNRVVKN5422", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QUKA5FNRVVKN5422.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "QUKA5FNRVVKN5422.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "566" + }, + "appliesTo" : [ ] + }, + "QUKA5FNRVVKN5422.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "QUKA5FNRVVKN5422.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QUKA5FNRVVKN5422.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QUKA5FNRVVKN5422", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QUKA5FNRVVKN5422.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QUKA5FNRVVKN5422.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QUKA5FNRVVKN5422.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QUKA5FNRVVKN5422", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QUKA5FNRVVKN5422.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QUKA5FNRVVKN5422.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "500" + }, + "appliesTo" : [ ] + }, + "QUKA5FNRVVKN5422.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QUKA5FNRVVKN5422.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QUKA5FNRVVKN5422.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QUKA5FNRVVKN5422", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QUKA5FNRVVKN5422.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QUKA5FNRVVKN5422.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2526" + }, + "appliesTo" : [ ] + }, + "QUKA5FNRVVKN5422.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QUKA5FNRVVKN5422.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QUKA5FNRVVKN5422.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "QUKA5FNRVVKN5422", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QUKA5FNRVVKN5422.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "QUKA5FNRVVKN5422.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QUKA5FNRVVKN5422.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QUKA5FNRVVKN5422", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QUKA5FNRVVKN5422.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QUKA5FNRVVKN5422.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1008" + }, + "appliesTo" : [ ] + }, + "QUKA5FNRVVKN5422.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QUKA5FNRVVKN5422.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QUKA5FNRVVKN5422.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QUKA5FNRVVKN5422", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QUKA5FNRVVKN5422.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QUKA5FNRVVKN5422.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "246" + }, + "appliesTo" : [ ] + }, + "QUKA5FNRVVKN5422.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QUKA5FNRVVKN5422.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QUKA5FNRVVKN5422.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "QUKA5FNRVVKN5422", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QUKA5FNRVVKN5422.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "QUKA5FNRVVKN5422.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QUKA5FNRVVKN5422.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "QUKA5FNRVVKN5422", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QUKA5FNRVVKN5422.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "QUKA5FNRVVKN5422.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1074" + }, + "appliesTo" : [ ] + }, + "QUKA5FNRVVKN5422.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "QUKA5FNRVVKN5422.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QUKA5FNRVVKN5422.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "QUKA5FNRVVKN5422", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QUKA5FNRVVKN5422.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "QUKA5FNRVVKN5422.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QUKA5FNRVVKN5422.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "QUKA5FNRVVKN5422", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QUKA5FNRVVKN5422.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "QUKA5FNRVVKN5422.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "279" + }, + "appliesTo" : [ ] + }, + "QUKA5FNRVVKN5422.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "QUKA5FNRVVKN5422.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "T72RDCVVMHKECZ63" : { + "T72RDCVVMHKECZ63.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "T72RDCVVMHKECZ63", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "T72RDCVVMHKECZ63.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "T72RDCVVMHKECZ63.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14076" + }, + "appliesTo" : [ ] + }, + "T72RDCVVMHKECZ63.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "T72RDCVVMHKECZ63.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "T72RDCVVMHKECZ63.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "T72RDCVVMHKECZ63", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "T72RDCVVMHKECZ63.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "T72RDCVVMHKECZ63.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33093" + }, + "appliesTo" : [ ] + }, + "T72RDCVVMHKECZ63.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "T72RDCVVMHKECZ63.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "T72RDCVVMHKECZ63.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "T72RDCVVMHKECZ63", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "T72RDCVVMHKECZ63.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "T72RDCVVMHKECZ63.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13849" + }, + "appliesTo" : [ ] + }, + "T72RDCVVMHKECZ63.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "T72RDCVVMHKECZ63.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "T72RDCVVMHKECZ63.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "T72RDCVVMHKECZ63", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "T72RDCVVMHKECZ63.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "T72RDCVVMHKECZ63.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "T72RDCVVMHKECZ63.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "T72RDCVVMHKECZ63", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "T72RDCVVMHKECZ63.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "T72RDCVVMHKECZ63.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5652" + }, + "appliesTo" : [ ] + }, + "T72RDCVVMHKECZ63.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "T72RDCVVMHKECZ63.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "Q73NFXYCVJRVJD5P" : { + "Q73NFXYCVJRVJD5P.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Q73NFXYCVJRVJD5P", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "Q73NFXYCVJRVJD5P.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Q73NFXYCVJRVJD5P.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18394" + }, + "appliesTo" : [ ] + }, + "Q73NFXYCVJRVJD5P.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Q73NFXYCVJRVJD5P.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q73NFXYCVJRVJD5P.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Q73NFXYCVJRVJD5P", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "Q73NFXYCVJRVJD5P.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Q73NFXYCVJRVJD5P.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "45068" + }, + "appliesTo" : [ ] + }, + "Q73NFXYCVJRVJD5P.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Q73NFXYCVJRVJD5P.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Q73NFXYCVJRVJD5P.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Q73NFXYCVJRVJD5P", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "Q73NFXYCVJRVJD5P.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Q73NFXYCVJRVJD5P.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "102344" + }, + "appliesTo" : [ ] + }, + "Q73NFXYCVJRVJD5P.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Q73NFXYCVJRVJD5P.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Q73NFXYCVJRVJD5P.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "Q73NFXYCVJRVJD5P", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "Q73NFXYCVJRVJD5P.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "Q73NFXYCVJRVJD5P.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0260000000" + }, + "appliesTo" : [ ] + }, + "Q73NFXYCVJRVJD5P.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "Q73NFXYCVJRVJD5P.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "50814" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q73NFXYCVJRVJD5P.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "Q73NFXYCVJRVJD5P", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "Q73NFXYCVJRVJD5P.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "Q73NFXYCVJRVJD5P.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "127725" + }, + "appliesTo" : [ ] + }, + "Q73NFXYCVJRVJD5P.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "Q73NFXYCVJRVJD5P.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Q73NFXYCVJRVJD5P.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "Q73NFXYCVJRVJD5P", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q73NFXYCVJRVJD5P.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "Q73NFXYCVJRVJD5P.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "49202" + }, + "appliesTo" : [ ] + }, + "Q73NFXYCVJRVJD5P.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "Q73NFXYCVJRVJD5P.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Q73NFXYCVJRVJD5P.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Q73NFXYCVJRVJD5P", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "Q73NFXYCVJRVJD5P.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Q73NFXYCVJRVJD5P.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "43544" + }, + "appliesTo" : [ ] + }, + "Q73NFXYCVJRVJD5P.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Q73NFXYCVJRVJD5P.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q73NFXYCVJRVJD5P.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "Q73NFXYCVJRVJD5P", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q73NFXYCVJRVJD5P.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "Q73NFXYCVJRVJD5P.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.8500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Q73NFXYCVJRVJD5P.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "Q73NFXYCVJRVJD5P", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q73NFXYCVJRVJD5P.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "Q73NFXYCVJRVJD5P.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24893" + }, + "appliesTo" : [ ] + }, + "Q73NFXYCVJRVJD5P.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "Q73NFXYCVJRVJD5P.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q73NFXYCVJRVJD5P.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Q73NFXYCVJRVJD5P", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "Q73NFXYCVJRVJD5P.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Q73NFXYCVJRVJD5P.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.1420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Q73NFXYCVJRVJD5P.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "Q73NFXYCVJRVJD5P", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "Q73NFXYCVJRVJD5P.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "Q73NFXYCVJRVJD5P.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.8030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "YCB5ZDAPFSHHX97B" : { + "YCB5ZDAPFSHHX97B.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YCB5ZDAPFSHHX97B", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "YCB5ZDAPFSHHX97B.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YCB5ZDAPFSHHX97B.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30038" + }, + "appliesTo" : [ ] + }, + "YCB5ZDAPFSHHX97B.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YCB5ZDAPFSHHX97B.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YCB5ZDAPFSHHX97B.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "YCB5ZDAPFSHHX97B", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YCB5ZDAPFSHHX97B.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "YCB5ZDAPFSHHX97B.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "68679" + }, + "appliesTo" : [ ] + }, + "YCB5ZDAPFSHHX97B.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "YCB5ZDAPFSHHX97B.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YCB5ZDAPFSHHX97B.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YCB5ZDAPFSHHX97B", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YCB5ZDAPFSHHX97B.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YCB5ZDAPFSHHX97B.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4640000000" + }, + "appliesTo" : [ ] + }, + "YCB5ZDAPFSHHX97B.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YCB5ZDAPFSHHX97B.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "64767" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YCB5ZDAPFSHHX97B.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "YCB5ZDAPFSHHX97B", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YCB5ZDAPFSHHX97B.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "YCB5ZDAPFSHHX97B.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.4090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YCB5ZDAPFSHHX97B.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YCB5ZDAPFSHHX97B", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YCB5ZDAPFSHHX97B.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YCB5ZDAPFSHHX97B.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YCB5ZDAPFSHHX97B.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YCB5ZDAPFSHHX97B.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "59390" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YCB5ZDAPFSHHX97B.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YCB5ZDAPFSHHX97B", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "YCB5ZDAPFSHHX97B.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YCB5ZDAPFSHHX97B.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YCB5ZDAPFSHHX97B.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YCB5ZDAPFSHHX97B.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "126404" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YCB5ZDAPFSHHX97B.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "YCB5ZDAPFSHHX97B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YCB5ZDAPFSHHX97B.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "YCB5ZDAPFSHHX97B.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7230000000" + }, + "appliesTo" : [ ] + }, + "YCB5ZDAPFSHHX97B.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "YCB5ZDAPFSHHX97B.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32609" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YCB5ZDAPFSHHX97B.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YCB5ZDAPFSHHX97B", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YCB5ZDAPFSHHX97B.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YCB5ZDAPFSHHX97B.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.0540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YCB5ZDAPFSHHX97B.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "YCB5ZDAPFSHHX97B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YCB5ZDAPFSHHX97B.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "YCB5ZDAPFSHHX97B.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.6700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YCB5ZDAPFSHHX97B.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "YCB5ZDAPFSHHX97B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YCB5ZDAPFSHHX97B.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "YCB5ZDAPFSHHX97B.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "64430" + }, + "appliesTo" : [ ] + }, + "YCB5ZDAPFSHHX97B.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "YCB5ZDAPFSHHX97B.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YCB5ZDAPFSHHX97B.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "YCB5ZDAPFSHHX97B", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YCB5ZDAPFSHHX97B.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "YCB5ZDAPFSHHX97B.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.0880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YCB5ZDAPFSHHX97B.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "YCB5ZDAPFSHHX97B", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YCB5ZDAPFSHHX97B.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "YCB5ZDAPFSHHX97B.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "136159" + }, + "appliesTo" : [ ] + }, + "YCB5ZDAPFSHHX97B.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "YCB5ZDAPFSHHX97B.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "8744TF3WB3SSENYH" : { + "8744TF3WB3SSENYH.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "8744TF3WB3SSENYH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8744TF3WB3SSENYH.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "8744TF3WB3SSENYH.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8744TF3WB3SSENYH.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "8744TF3WB3SSENYH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8744TF3WB3SSENYH.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "8744TF3WB3SSENYH.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12089" + }, + "appliesTo" : [ ] + }, + "8744TF3WB3SSENYH.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "8744TF3WB3SSENYH.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8744TF3WB3SSENYH.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "8744TF3WB3SSENYH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "8744TF3WB3SSENYH.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "8744TF3WB3SSENYH.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20312" + }, + "appliesTo" : [ ] + }, + "8744TF3WB3SSENYH.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "8744TF3WB3SSENYH.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8744TF3WB3SSENYH.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "8744TF3WB3SSENYH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8744TF3WB3SSENYH.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "8744TF3WB3SSENYH.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25231" + }, + "appliesTo" : [ ] + }, + "8744TF3WB3SSENYH.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "8744TF3WB3SSENYH.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8744TF3WB3SSENYH.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "8744TF3WB3SSENYH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8744TF3WB3SSENYH.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "8744TF3WB3SSENYH.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29678" + }, + "appliesTo" : [ ] + }, + "8744TF3WB3SSENYH.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "8744TF3WB3SSENYH.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8744TF3WB3SSENYH.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "8744TF3WB3SSENYH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8744TF3WB3SSENYH.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "8744TF3WB3SSENYH.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "58172" + }, + "appliesTo" : [ ] + }, + "8744TF3WB3SSENYH.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "8744TF3WB3SSENYH.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8744TF3WB3SSENYH.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "8744TF3WB3SSENYH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "8744TF3WB3SSENYH.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "8744TF3WB3SSENYH.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47433" + }, + "appliesTo" : [ ] + }, + "8744TF3WB3SSENYH.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "8744TF3WB3SSENYH.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8744TF3WB3SSENYH.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "8744TF3WB3SSENYH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8744TF3WB3SSENYH.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "8744TF3WB3SSENYH.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8744TF3WB3SSENYH.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "8744TF3WB3SSENYH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8744TF3WB3SSENYH.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "8744TF3WB3SSENYH.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8744TF3WB3SSENYH.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "8744TF3WB3SSENYH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8744TF3WB3SSENYH.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "8744TF3WB3SSENYH.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8744TF3WB3SSENYH.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "8744TF3WB3SSENYH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8744TF3WB3SSENYH.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "8744TF3WB3SSENYH.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23984" + }, + "appliesTo" : [ ] + }, + "8744TF3WB3SSENYH.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "8744TF3WB3SSENYH.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8744TF3WB3SSENYH.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "8744TF3WB3SSENYH", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "8744TF3WB3SSENYH.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "8744TF3WB3SSENYH.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1830000000" + }, + "appliesTo" : [ ] + }, + "8744TF3WB3SSENYH.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "8744TF3WB3SSENYH.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10365" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "REEFNGM3CZ2DRRN8" : { + "REEFNGM3CZ2DRRN8.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "REEFNGM3CZ2DRRN8", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "REEFNGM3CZ2DRRN8.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "REEFNGM3CZ2DRRN8.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "REEFNGM3CZ2DRRN8.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "REEFNGM3CZ2DRRN8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "REEFNGM3CZ2DRRN8.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "REEFNGM3CZ2DRRN8.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "350" + }, + "appliesTo" : [ ] + }, + "REEFNGM3CZ2DRRN8.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "REEFNGM3CZ2DRRN8.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "REEFNGM3CZ2DRRN8.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "REEFNGM3CZ2DRRN8", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "REEFNGM3CZ2DRRN8.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "REEFNGM3CZ2DRRN8.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "559" + }, + "appliesTo" : [ ] + }, + "REEFNGM3CZ2DRRN8.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "REEFNGM3CZ2DRRN8.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "REEFNGM3CZ2DRRN8.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "REEFNGM3CZ2DRRN8", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "REEFNGM3CZ2DRRN8.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "REEFNGM3CZ2DRRN8.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3307" + }, + "appliesTo" : [ ] + }, + "REEFNGM3CZ2DRRN8.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "REEFNGM3CZ2DRRN8.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "REEFNGM3CZ2DRRN8.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "REEFNGM3CZ2DRRN8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "REEFNGM3CZ2DRRN8.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "REEFNGM3CZ2DRRN8.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "REEFNGM3CZ2DRRN8.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "REEFNGM3CZ2DRRN8", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "REEFNGM3CZ2DRRN8.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "REEFNGM3CZ2DRRN8.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1162" + }, + "appliesTo" : [ ] + }, + "REEFNGM3CZ2DRRN8.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "REEFNGM3CZ2DRRN8.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "REEFNGM3CZ2DRRN8.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "REEFNGM3CZ2DRRN8", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "REEFNGM3CZ2DRRN8.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "REEFNGM3CZ2DRRN8.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "359" + }, + "appliesTo" : [ ] + }, + "REEFNGM3CZ2DRRN8.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "REEFNGM3CZ2DRRN8.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "REEFNGM3CZ2DRRN8.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "REEFNGM3CZ2DRRN8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "REEFNGM3CZ2DRRN8.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "REEFNGM3CZ2DRRN8.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1212" + }, + "appliesTo" : [ ] + }, + "REEFNGM3CZ2DRRN8.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "REEFNGM3CZ2DRRN8.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "REEFNGM3CZ2DRRN8.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "REEFNGM3CZ2DRRN8", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "REEFNGM3CZ2DRRN8.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "REEFNGM3CZ2DRRN8.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0920000000" + }, + "appliesTo" : [ ] + }, + "REEFNGM3CZ2DRRN8.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "REEFNGM3CZ2DRRN8.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "969" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "REEFNGM3CZ2DRRN8.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "REEFNGM3CZ2DRRN8", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "REEFNGM3CZ2DRRN8.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "REEFNGM3CZ2DRRN8.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2753" + }, + "appliesTo" : [ ] + }, + "REEFNGM3CZ2DRRN8.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "REEFNGM3CZ2DRRN8.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "REEFNGM3CZ2DRRN8.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "REEFNGM3CZ2DRRN8", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "REEFNGM3CZ2DRRN8.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "REEFNGM3CZ2DRRN8.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "E92W6J6ZWCYNHQYK" : { + "E92W6J6ZWCYNHQYK.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "E92W6J6ZWCYNHQYK", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "E92W6J6ZWCYNHQYK.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "E92W6J6ZWCYNHQYK.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12076" + }, + "appliesTo" : [ ] + }, + "E92W6J6ZWCYNHQYK.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "E92W6J6ZWCYNHQYK.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "E92W6J6ZWCYNHQYK.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "E92W6J6ZWCYNHQYK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "E92W6J6ZWCYNHQYK.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "E92W6J6ZWCYNHQYK.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "E92W6J6ZWCYNHQYK.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "E92W6J6ZWCYNHQYK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "E92W6J6ZWCYNHQYK.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "E92W6J6ZWCYNHQYK.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6422" + }, + "appliesTo" : [ ] + }, + "E92W6J6ZWCYNHQYK.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "E92W6J6ZWCYNHQYK.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "E92W6J6ZWCYNHQYK.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "E92W6J6ZWCYNHQYK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "E92W6J6ZWCYNHQYK.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "E92W6J6ZWCYNHQYK.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "E92W6J6ZWCYNHQYK.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "E92W6J6ZWCYNHQYK", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "E92W6J6ZWCYNHQYK.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "E92W6J6ZWCYNHQYK.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2562" + }, + "appliesTo" : [ ] + }, + "E92W6J6ZWCYNHQYK.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "E92W6J6ZWCYNHQYK.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "E92W6J6ZWCYNHQYK.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "E92W6J6ZWCYNHQYK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "E92W6J6ZWCYNHQYK.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "E92W6J6ZWCYNHQYK.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2947" + }, + "appliesTo" : [ ] + }, + "E92W6J6ZWCYNHQYK.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "E92W6J6ZWCYNHQYK.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "E92W6J6ZWCYNHQYK.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "E92W6J6ZWCYNHQYK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "E92W6J6ZWCYNHQYK.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "E92W6J6ZWCYNHQYK.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "E92W6J6ZWCYNHQYK.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "E92W6J6ZWCYNHQYK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "E92W6J6ZWCYNHQYK.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "E92W6J6ZWCYNHQYK.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14164" + }, + "appliesTo" : [ ] + }, + "E92W6J6ZWCYNHQYK.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "E92W6J6ZWCYNHQYK.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "E92W6J6ZWCYNHQYK.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "E92W6J6ZWCYNHQYK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "E92W6J6ZWCYNHQYK.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "E92W6J6ZWCYNHQYK.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6301" + }, + "appliesTo" : [ ] + }, + "E92W6J6ZWCYNHQYK.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "E92W6J6ZWCYNHQYK.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "E92W6J6ZWCYNHQYK.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "E92W6J6ZWCYNHQYK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "E92W6J6ZWCYNHQYK.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "E92W6J6ZWCYNHQYK.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "E92W6J6ZWCYNHQYK.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "E92W6J6ZWCYNHQYK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "E92W6J6ZWCYNHQYK.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "E92W6J6ZWCYNHQYK.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5548" + }, + "appliesTo" : [ ] + }, + "E92W6J6ZWCYNHQYK.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "E92W6J6ZWCYNHQYK.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "E92W6J6ZWCYNHQYK.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "E92W6J6ZWCYNHQYK", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "E92W6J6ZWCYNHQYK.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "E92W6J6ZWCYNHQYK.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2720000000" + }, + "appliesTo" : [ ] + }, + "E92W6J6ZWCYNHQYK.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "E92W6J6ZWCYNHQYK.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5584" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "R4XHKDDZUJXABU4Z" : { + "R4XHKDDZUJXABU4Z.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "R4XHKDDZUJXABU4Z", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "R4XHKDDZUJXABU4Z.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "R4XHKDDZUJXABU4Z.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1273" + }, + "appliesTo" : [ ] + }, + "R4XHKDDZUJXABU4Z.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "R4XHKDDZUJXABU4Z.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "R4XHKDDZUJXABU4Z.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "R4XHKDDZUJXABU4Z", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "R4XHKDDZUJXABU4Z.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "R4XHKDDZUJXABU4Z.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "R4XHKDDZUJXABU4Z.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "R4XHKDDZUJXABU4Z", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "R4XHKDDZUJXABU4Z.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "R4XHKDDZUJXABU4Z.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2959" + }, + "appliesTo" : [ ] + }, + "R4XHKDDZUJXABU4Z.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "R4XHKDDZUJXABU4Z.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "R4XHKDDZUJXABU4Z.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "R4XHKDDZUJXABU4Z", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "R4XHKDDZUJXABU4Z.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "R4XHKDDZUJXABU4Z.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1828" + }, + "appliesTo" : [ ] + }, + "R4XHKDDZUJXABU4Z.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "R4XHKDDZUJXABU4Z.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "R4XHKDDZUJXABU4Z.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "R4XHKDDZUJXABU4Z", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "R4XHKDDZUJXABU4Z.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "R4XHKDDZUJXABU4Z.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1572" + }, + "appliesTo" : [ ] + }, + "R4XHKDDZUJXABU4Z.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "R4XHKDDZUJXABU4Z.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "R4XHKDDZUJXABU4Z.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "R4XHKDDZUJXABU4Z", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "R4XHKDDZUJXABU4Z.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "R4XHKDDZUJXABU4Z.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "R4XHKDDZUJXABU4Z.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "R4XHKDDZUJXABU4Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R4XHKDDZUJXABU4Z.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "R4XHKDDZUJXABU4Z.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "R4XHKDDZUJXABU4Z.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "R4XHKDDZUJXABU4Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R4XHKDDZUJXABU4Z.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "R4XHKDDZUJXABU4Z.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "705" + }, + "appliesTo" : [ ] + }, + "R4XHKDDZUJXABU4Z.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "R4XHKDDZUJXABU4Z.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "R4XHKDDZUJXABU4Z.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "R4XHKDDZUJXABU4Z", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "R4XHKDDZUJXABU4Z.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "R4XHKDDZUJXABU4Z.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "R4XHKDDZUJXABU4Z.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "R4XHKDDZUJXABU4Z", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "R4XHKDDZUJXABU4Z.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "R4XHKDDZUJXABU4Z.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3632" + }, + "appliesTo" : [ ] + }, + "R4XHKDDZUJXABU4Z.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "R4XHKDDZUJXABU4Z.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "R4XHKDDZUJXABU4Z.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "R4XHKDDZUJXABU4Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R4XHKDDZUJXABU4Z.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "R4XHKDDZUJXABU4Z.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1398" + }, + "appliesTo" : [ ] + }, + "R4XHKDDZUJXABU4Z.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "R4XHKDDZUJXABU4Z.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "R4XHKDDZUJXABU4Z.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "R4XHKDDZUJXABU4Z", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "R4XHKDDZUJXABU4Z.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "R4XHKDDZUJXABU4Z.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0740000000" + }, + "appliesTo" : [ ] + }, + "R4XHKDDZUJXABU4Z.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "R4XHKDDZUJXABU4Z.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "649" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "SVUSEDJB94K6K37X" : { + "SVUSEDJB94K6K37X.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "SVUSEDJB94K6K37X", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "SVUSEDJB94K6K37X.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "SVUSEDJB94K6K37X.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SVUSEDJB94K6K37X.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SVUSEDJB94K6K37X", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "SVUSEDJB94K6K37X.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SVUSEDJB94K6K37X.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28448" + }, + "appliesTo" : [ ] + }, + "SVUSEDJB94K6K37X.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SVUSEDJB94K6K37X.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SVUSEDJB94K6K37X.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "SVUSEDJB94K6K37X", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "SVUSEDJB94K6K37X.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "SVUSEDJB94K6K37X.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33980" + }, + "appliesTo" : [ ] + }, + "SVUSEDJB94K6K37X.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "SVUSEDJB94K6K37X.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SVUSEDJB94K6K37X.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "SVUSEDJB94K6K37X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SVUSEDJB94K6K37X.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "SVUSEDJB94K6K37X.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29538" + }, + "appliesTo" : [ ] + }, + "SVUSEDJB94K6K37X.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "SVUSEDJB94K6K37X.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SVUSEDJB94K6K37X.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SVUSEDJB94K6K37X", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "SVUSEDJB94K6K37X.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SVUSEDJB94K6K37X.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "53485" + }, + "appliesTo" : [ ] + }, + "SVUSEDJB94K6K37X.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SVUSEDJB94K6K37X.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SVUSEDJB94K6K37X.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "SVUSEDJB94K6K37X", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SVUSEDJB94K6K37X.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "SVUSEDJB94K6K37X.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SVUSEDJB94K6K37X.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "SVUSEDJB94K6K37X", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SVUSEDJB94K6K37X.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "SVUSEDJB94K6K37X.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "66626" + }, + "appliesTo" : [ ] + }, + "SVUSEDJB94K6K37X.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "SVUSEDJB94K6K37X.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SVUSEDJB94K6K37X.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SVUSEDJB94K6K37X", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "SVUSEDJB94K6K37X.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SVUSEDJB94K6K37X.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SVUSEDJB94K6K37X.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SVUSEDJB94K6K37X", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SVUSEDJB94K6K37X.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SVUSEDJB94K6K37X.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11799" + }, + "appliesTo" : [ ] + }, + "SVUSEDJB94K6K37X.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SVUSEDJB94K6K37X.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SVUSEDJB94K6K37X.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SVUSEDJB94K6K37X", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SVUSEDJB94K6K37X.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SVUSEDJB94K6K37X.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23130" + }, + "appliesTo" : [ ] + }, + "SVUSEDJB94K6K37X.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SVUSEDJB94K6K37X.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SVUSEDJB94K6K37X.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "SVUSEDJB94K6K37X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SVUSEDJB94K6K37X.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "SVUSEDJB94K6K37X.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14866" + }, + "appliesTo" : [ ] + }, + "SVUSEDJB94K6K37X.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "SVUSEDJB94K6K37X.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SVUSEDJB94K6K37X.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "SVUSEDJB94K6K37X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SVUSEDJB94K6K37X.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "SVUSEDJB94K6K37X.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "X6FJM3B6HUSDM27X" : { + "X6FJM3B6HUSDM27X.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "X6FJM3B6HUSDM27X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X6FJM3B6HUSDM27X.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "X6FJM3B6HUSDM27X.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9534" + }, + "appliesTo" : [ ] + }, + "X6FJM3B6HUSDM27X.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "X6FJM3B6HUSDM27X.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "X6FJM3B6HUSDM27X.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "X6FJM3B6HUSDM27X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X6FJM3B6HUSDM27X.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "X6FJM3B6HUSDM27X.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5510000000" + }, + "appliesTo" : [ ] + }, + "X6FJM3B6HUSDM27X.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "X6FJM3B6HUSDM27X.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4893" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "X6FJM3B6HUSDM27X.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "X6FJM3B6HUSDM27X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X6FJM3B6HUSDM27X.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "X6FJM3B6HUSDM27X.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14185" + }, + "appliesTo" : [ ] + }, + "X6FJM3B6HUSDM27X.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "X6FJM3B6HUSDM27X.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "X6FJM3B6HUSDM27X.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "X6FJM3B6HUSDM27X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X6FJM3B6HUSDM27X.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "X6FJM3B6HUSDM27X.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8604" + }, + "appliesTo" : [ ] + }, + "X6FJM3B6HUSDM27X.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "X6FJM3B6HUSDM27X.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "X6FJM3B6HUSDM27X.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "X6FJM3B6HUSDM27X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X6FJM3B6HUSDM27X.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "X6FJM3B6HUSDM27X.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "X6FJM3B6HUSDM27X.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "X6FJM3B6HUSDM27X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X6FJM3B6HUSDM27X.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "X6FJM3B6HUSDM27X.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7528" + }, + "appliesTo" : [ ] + }, + "X6FJM3B6HUSDM27X.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "X6FJM3B6HUSDM27X.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "X6FJM3B6HUSDM27X.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "X6FJM3B6HUSDM27X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X6FJM3B6HUSDM27X.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "X6FJM3B6HUSDM27X.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5600" + }, + "appliesTo" : [ ] + }, + "X6FJM3B6HUSDM27X.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "X6FJM3B6HUSDM27X.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "X6FJM3B6HUSDM27X.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "X6FJM3B6HUSDM27X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X6FJM3B6HUSDM27X.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "X6FJM3B6HUSDM27X.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "X6FJM3B6HUSDM27X.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "X6FJM3B6HUSDM27X.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16869" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "X6FJM3B6HUSDM27X.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "X6FJM3B6HUSDM27X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X6FJM3B6HUSDM27X.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "X6FJM3B6HUSDM27X.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "X6FJM3B6HUSDM27X.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "X6FJM3B6HUSDM27X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X6FJM3B6HUSDM27X.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "X6FJM3B6HUSDM27X.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "X6FJM3B6HUSDM27X.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "X6FJM3B6HUSDM27X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X6FJM3B6HUSDM27X.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "X6FJM3B6HUSDM27X.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10921" + }, + "appliesTo" : [ ] + }, + "X6FJM3B6HUSDM27X.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "X6FJM3B6HUSDM27X.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "X6FJM3B6HUSDM27X.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "X6FJM3B6HUSDM27X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X6FJM3B6HUSDM27X.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "X6FJM3B6HUSDM27X.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "GXUGSHFHQFHUTQMM" : { + "GXUGSHFHQFHUTQMM.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "GXUGSHFHQFHUTQMM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GXUGSHFHQFHUTQMM.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "GXUGSHFHQFHUTQMM.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "GXUGSHFHQFHUTQMM.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "GXUGSHFHQFHUTQMM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GXUGSHFHQFHUTQMM.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "GXUGSHFHQFHUTQMM.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1290000000" + }, + "appliesTo" : [ ] + }, + "GXUGSHFHQFHUTQMM.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "GXUGSHFHQFHUTQMM.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1130" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GXUGSHFHQFHUTQMM.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "GXUGSHFHQFHUTQMM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GXUGSHFHQFHUTQMM.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "GXUGSHFHQFHUTQMM.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4561" + }, + "appliesTo" : [ ] + }, + "GXUGSHFHQFHUTQMM.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "GXUGSHFHQFHUTQMM.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "GXUGSHFHQFHUTQMM.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "GXUGSHFHQFHUTQMM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GXUGSHFHQFHUTQMM.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "GXUGSHFHQFHUTQMM.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GXUGSHFHQFHUTQMM.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "GXUGSHFHQFHUTQMM", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "GXUGSHFHQFHUTQMM.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "GXUGSHFHQFHUTQMM.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "977" + }, + "appliesTo" : [ ] + }, + "GXUGSHFHQFHUTQMM.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "GXUGSHFHQFHUTQMM.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GXUGSHFHQFHUTQMM.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "GXUGSHFHQFHUTQMM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GXUGSHFHQFHUTQMM.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "GXUGSHFHQFHUTQMM.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2215" + }, + "appliesTo" : [ ] + }, + "GXUGSHFHQFHUTQMM.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "GXUGSHFHQFHUTQMM.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "GXUGSHFHQFHUTQMM.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "GXUGSHFHQFHUTQMM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GXUGSHFHQFHUTQMM.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "GXUGSHFHQFHUTQMM.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GXUGSHFHQFHUTQMM.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "GXUGSHFHQFHUTQMM", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "GXUGSHFHQFHUTQMM.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "GXUGSHFHQFHUTQMM.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "GXUGSHFHQFHUTQMM.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "GXUGSHFHQFHUTQMM.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3815" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GXUGSHFHQFHUTQMM.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "GXUGSHFHQFHUTQMM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GXUGSHFHQFHUTQMM.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "GXUGSHFHQFHUTQMM.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "GXUGSHFHQFHUTQMM.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "GXUGSHFHQFHUTQMM", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "GXUGSHFHQFHUTQMM.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "GXUGSHFHQFHUTQMM.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "GXUGSHFHQFHUTQMM.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "GXUGSHFHQFHUTQMM.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1915" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GXUGSHFHQFHUTQMM.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "GXUGSHFHQFHUTQMM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GXUGSHFHQFHUTQMM.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "GXUGSHFHQFHUTQMM.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0770000000" + }, + "appliesTo" : [ ] + }, + "GXUGSHFHQFHUTQMM.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "GXUGSHFHQFHUTQMM.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2029" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GXUGSHFHQFHUTQMM.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "GXUGSHFHQFHUTQMM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GXUGSHFHQFHUTQMM.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "GXUGSHFHQFHUTQMM.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2327" + }, + "appliesTo" : [ ] + }, + "GXUGSHFHQFHUTQMM.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "GXUGSHFHQFHUTQMM.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "N5J4FCEYTCJTEMNE" : { + "N5J4FCEYTCJTEMNE.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "N5J4FCEYTCJTEMNE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N5J4FCEYTCJTEMNE.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "N5J4FCEYTCJTEMNE.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3330000000" + }, + "appliesTo" : [ ] + }, + "N5J4FCEYTCJTEMNE.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "N5J4FCEYTCJTEMNE.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11676" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "N5J4FCEYTCJTEMNE.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "N5J4FCEYTCJTEMNE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N5J4FCEYTCJTEMNE.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "N5J4FCEYTCJTEMNE.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23192" + }, + "appliesTo" : [ ] + }, + "N5J4FCEYTCJTEMNE.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "N5J4FCEYTCJTEMNE.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "N5J4FCEYTCJTEMNE.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "N5J4FCEYTCJTEMNE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N5J4FCEYTCJTEMNE.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "N5J4FCEYTCJTEMNE.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "N5J4FCEYTCJTEMNE.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "N5J4FCEYTCJTEMNE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N5J4FCEYTCJTEMNE.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "N5J4FCEYTCJTEMNE.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24374" + }, + "appliesTo" : [ ] + }, + "N5J4FCEYTCJTEMNE.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "N5J4FCEYTCJTEMNE.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "N5J4FCEYTCJTEMNE.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "N5J4FCEYTCJTEMNE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N5J4FCEYTCJTEMNE.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "N5J4FCEYTCJTEMNE.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "N5J4FCEYTCJTEMNE.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "N5J4FCEYTCJTEMNE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N5J4FCEYTCJTEMNE.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "N5J4FCEYTCJTEMNE.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4020000000" + }, + "appliesTo" : [ ] + }, + "N5J4FCEYTCJTEMNE.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "N5J4FCEYTCJTEMNE.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12279" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "N5J4FCEYTCJTEMNE.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "N5J4FCEYTCJTEMNE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N5J4FCEYTCJTEMNE.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "N5J4FCEYTCJTEMNE.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "63546" + }, + "appliesTo" : [ ] + }, + "N5J4FCEYTCJTEMNE.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "N5J4FCEYTCJTEMNE.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "N5J4FCEYTCJTEMNE.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "N5J4FCEYTCJTEMNE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N5J4FCEYTCJTEMNE.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "N5J4FCEYTCJTEMNE.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "N5J4FCEYTCJTEMNE.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "N5J4FCEYTCJTEMNE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N5J4FCEYTCJTEMNE.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "N5J4FCEYTCJTEMNE.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1710000000" + }, + "appliesTo" : [ ] + }, + "N5J4FCEYTCJTEMNE.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "N5J4FCEYTCJTEMNE.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30767" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "N5J4FCEYTCJTEMNE.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "N5J4FCEYTCJTEMNE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N5J4FCEYTCJTEMNE.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "N5J4FCEYTCJTEMNE.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "N5J4FCEYTCJTEMNE.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "N5J4FCEYTCJTEMNE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N5J4FCEYTCJTEMNE.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "N5J4FCEYTCJTEMNE.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31953" + }, + "appliesTo" : [ ] + }, + "N5J4FCEYTCJTEMNE.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "N5J4FCEYTCJTEMNE.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "N5J4FCEYTCJTEMNE.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "N5J4FCEYTCJTEMNE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N5J4FCEYTCJTEMNE.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "N5J4FCEYTCJTEMNE.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "60597" + }, + "appliesTo" : [ ] + }, + "N5J4FCEYTCJTEMNE.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "N5J4FCEYTCJTEMNE.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "UFNYR85GSNMJPAWG" : { + "UFNYR85GSNMJPAWG.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "UFNYR85GSNMJPAWG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UFNYR85GSNMJPAWG.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "UFNYR85GSNMJPAWG.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5514" + }, + "appliesTo" : [ ] + }, + "UFNYR85GSNMJPAWG.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "UFNYR85GSNMJPAWG.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "UFNYR85GSNMJPAWG.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "UFNYR85GSNMJPAWG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UFNYR85GSNMJPAWG.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "UFNYR85GSNMJPAWG.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "UFNYR85GSNMJPAWG.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "UFNYR85GSNMJPAWG.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15847" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "UFNYR85GSNMJPAWG.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "UFNYR85GSNMJPAWG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UFNYR85GSNMJPAWG.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "UFNYR85GSNMJPAWG.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "UFNYR85GSNMJPAWG.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "UFNYR85GSNMJPAWG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UFNYR85GSNMJPAWG.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "UFNYR85GSNMJPAWG.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "UFNYR85GSNMJPAWG.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "UFNYR85GSNMJPAWG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UFNYR85GSNMJPAWG.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "UFNYR85GSNMJPAWG.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16011" + }, + "appliesTo" : [ ] + }, + "UFNYR85GSNMJPAWG.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "UFNYR85GSNMJPAWG.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "UFNYR85GSNMJPAWG.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "UFNYR85GSNMJPAWG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UFNYR85GSNMJPAWG.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "UFNYR85GSNMJPAWG.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "UFNYR85GSNMJPAWG.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "UFNYR85GSNMJPAWG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UFNYR85GSNMJPAWG.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "UFNYR85GSNMJPAWG.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2729" + }, + "appliesTo" : [ ] + }, + "UFNYR85GSNMJPAWG.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "UFNYR85GSNMJPAWG.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "UFNYR85GSNMJPAWG.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "UFNYR85GSNMJPAWG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UFNYR85GSNMJPAWG.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "UFNYR85GSNMJPAWG.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2762" + }, + "appliesTo" : [ ] + }, + "UFNYR85GSNMJPAWG.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "UFNYR85GSNMJPAWG.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "UFNYR85GSNMJPAWG.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "UFNYR85GSNMJPAWG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UFNYR85GSNMJPAWG.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "UFNYR85GSNMJPAWG.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "UFNYR85GSNMJPAWG.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "UFNYR85GSNMJPAWG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UFNYR85GSNMJPAWG.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "UFNYR85GSNMJPAWG.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5449" + }, + "appliesTo" : [ ] + }, + "UFNYR85GSNMJPAWG.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "UFNYR85GSNMJPAWG.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "UFNYR85GSNMJPAWG.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "UFNYR85GSNMJPAWG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UFNYR85GSNMJPAWG.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "UFNYR85GSNMJPAWG.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8015" + }, + "appliesTo" : [ ] + }, + "UFNYR85GSNMJPAWG.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "UFNYR85GSNMJPAWG.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "UFNYR85GSNMJPAWG.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "UFNYR85GSNMJPAWG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UFNYR85GSNMJPAWG.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "UFNYR85GSNMJPAWG.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3020000000" + }, + "appliesTo" : [ ] + }, + "UFNYR85GSNMJPAWG.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "UFNYR85GSNMJPAWG.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7949" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "H338WENZAK73BM3E" : { + "H338WENZAK73BM3E.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "H338WENZAK73BM3E", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "H338WENZAK73BM3E.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "H338WENZAK73BM3E.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "126706" + }, + "appliesTo" : [ ] + }, + "H338WENZAK73BM3E.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "H338WENZAK73BM3E.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "H338WENZAK73BM3E.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "H338WENZAK73BM3E", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "H338WENZAK73BM3E.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "H338WENZAK73BM3E.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "63442" + }, + "appliesTo" : [ ] + }, + "H338WENZAK73BM3E.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "H338WENZAK73BM3E.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.2420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "H338WENZAK73BM3E.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "H338WENZAK73BM3E", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "H338WENZAK73BM3E.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "H338WENZAK73BM3E.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "H338WENZAK73BM3E.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "H338WENZAK73BM3E.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "370551" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "H338WENZAK73BM3E.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "H338WENZAK73BM3E", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "H338WENZAK73BM3E.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "H338WENZAK73BM3E.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.5380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "H338WENZAK73BM3E.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "H338WENZAK73BM3E", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "H338WENZAK73BM3E.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "H338WENZAK73BM3E.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "377511" + }, + "appliesTo" : [ ] + }, + "H338WENZAK73BM3E.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "H338WENZAK73BM3E.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "H338WENZAK73BM3E.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "H338WENZAK73BM3E", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "H338WENZAK73BM3E.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "H338WENZAK73BM3E.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.6570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "H338WENZAK73BM3E.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "H338WENZAK73BM3E", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "H338WENZAK73BM3E.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "H338WENZAK73BM3E.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.1920000000" + }, + "appliesTo" : [ ] + }, + "H338WENZAK73BM3E.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "H338WENZAK73BM3E.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "188995" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "H338WENZAK73BM3E.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "H338WENZAK73BM3E", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "H338WENZAK73BM3E.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "H338WENZAK73BM3E.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.0700000000" + }, + "appliesTo" : [ ] + }, + "H338WENZAK73BM3E.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "H338WENZAK73BM3E.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "185802" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "H338WENZAK73BM3E.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "H338WENZAK73BM3E", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H338WENZAK73BM3E.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "H338WENZAK73BM3E.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "127998" + }, + "appliesTo" : [ ] + }, + "H338WENZAK73BM3E.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "H338WENZAK73BM3E.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "H338WENZAK73BM3E.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "H338WENZAK73BM3E", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H338WENZAK73BM3E.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "H338WENZAK73BM3E.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.6930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "H338WENZAK73BM3E.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "H338WENZAK73BM3E", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H338WENZAK73BM3E.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "H338WENZAK73BM3E.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "64101" + }, + "appliesTo" : [ ] + }, + "H338WENZAK73BM3E.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "H338WENZAK73BM3E.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "6767SWNDDU2CUUEJ" : { + "6767SWNDDU2CUUEJ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "6767SWNDDU2CUUEJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6767SWNDDU2CUUEJ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "6767SWNDDU2CUUEJ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "6767SWNDDU2CUUEJ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "6767SWNDDU2CUUEJ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "55419" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6767SWNDDU2CUUEJ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6767SWNDDU2CUUEJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6767SWNDDU2CUUEJ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6767SWNDDU2CUUEJ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "92648" + }, + "appliesTo" : [ ] + }, + "6767SWNDDU2CUUEJ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6767SWNDDU2CUUEJ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6767SWNDDU2CUUEJ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "6767SWNDDU2CUUEJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6767SWNDDU2CUUEJ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "6767SWNDDU2CUUEJ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6767SWNDDU2CUUEJ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "6767SWNDDU2CUUEJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6767SWNDDU2CUUEJ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "6767SWNDDU2CUUEJ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "52352" + }, + "appliesTo" : [ ] + }, + "6767SWNDDU2CUUEJ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "6767SWNDDU2CUUEJ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6767SWNDDU2CUUEJ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6767SWNDDU2CUUEJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6767SWNDDU2CUUEJ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6767SWNDDU2CUUEJ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8900000000" + }, + "appliesTo" : [ ] + }, + "6767SWNDDU2CUUEJ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6767SWNDDU2CUUEJ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25313" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6767SWNDDU2CUUEJ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6767SWNDDU2CUUEJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6767SWNDDU2CUUEJ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6767SWNDDU2CUUEJ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "48046" + }, + "appliesTo" : [ ] + }, + "6767SWNDDU2CUUEJ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6767SWNDDU2CUUEJ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6767SWNDDU2CUUEJ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "6767SWNDDU2CUUEJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6767SWNDDU2CUUEJ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "6767SWNDDU2CUUEJ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "103383" + }, + "appliesTo" : [ ] + }, + "6767SWNDDU2CUUEJ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "6767SWNDDU2CUUEJ.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6767SWNDDU2CUUEJ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "6767SWNDDU2CUUEJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6767SWNDDU2CUUEJ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "6767SWNDDU2CUUEJ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28143" + }, + "appliesTo" : [ ] + }, + "6767SWNDDU2CUUEJ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "6767SWNDDU2CUUEJ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6767SWNDDU2CUUEJ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "6767SWNDDU2CUUEJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6767SWNDDU2CUUEJ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "6767SWNDDU2CUUEJ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.6730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6767SWNDDU2CUUEJ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6767SWNDDU2CUUEJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6767SWNDDU2CUUEJ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6767SWNDDU2CUUEJ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.9950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6767SWNDDU2CUUEJ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6767SWNDDU2CUUEJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6767SWNDDU2CUUEJ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6767SWNDDU2CUUEJ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "49872" + }, + "appliesTo" : [ ] + }, + "6767SWNDDU2CUUEJ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6767SWNDDU2CUUEJ.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6767SWNDDU2CUUEJ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "6767SWNDDU2CUUEJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6767SWNDDU2CUUEJ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "6767SWNDDU2CUUEJ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.1850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "W74H9N7H8NNRHRRV" : { + "W74H9N7H8NNRHRRV.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "W74H9N7H8NNRHRRV", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "W74H9N7H8NNRHRRV.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "W74H9N7H8NNRHRRV.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "68604" + }, + "appliesTo" : [ ] + }, + "W74H9N7H8NNRHRRV.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "W74H9N7H8NNRHRRV.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.9620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "W74H9N7H8NNRHRRV.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "W74H9N7H8NNRHRRV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W74H9N7H8NNRHRRV.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "W74H9N7H8NNRHRRV.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "19.0430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "W74H9N7H8NNRHRRV.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "W74H9N7H8NNRHRRV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W74H9N7H8NNRHRRV.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "W74H9N7H8NNRHRRV.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "155773" + }, + "appliesTo" : [ ] + }, + "W74H9N7H8NNRHRRV.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "W74H9N7H8NNRHRRV.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "W74H9N7H8NNRHRRV.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "W74H9N7H8NNRHRRV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W74H9N7H8NNRHRRV.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "W74H9N7H8NNRHRRV.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "78895" + }, + "appliesTo" : [ ] + }, + "W74H9N7H8NNRHRRV.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "W74H9N7H8NNRHRRV.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.1360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "W74H9N7H8NNRHRRV.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "W74H9N7H8NNRHRRV", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "W74H9N7H8NNRHRRV.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "W74H9N7H8NNRHRRV.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "238686" + }, + "appliesTo" : [ ] + }, + "W74H9N7H8NNRHRRV.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "W74H9N7H8NNRHRRV.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "W74H9N7H8NNRHRRV.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "W74H9N7H8NNRHRRV", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "W74H9N7H8NNRHRRV.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "W74H9N7H8NNRHRRV.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.7090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "W74H9N7H8NNRHRRV.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "W74H9N7H8NNRHRRV", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "W74H9N7H8NNRHRRV.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "W74H9N7H8NNRHRRV.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "104379" + }, + "appliesTo" : [ ] + }, + "W74H9N7H8NNRHRRV.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "W74H9N7H8NNRHRRV.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.1020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "W74H9N7H8NNRHRRV.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "W74H9N7H8NNRHRRV", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "W74H9N7H8NNRHRRV.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "W74H9N7H8NNRHRRV.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.5760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "W74H9N7H8NNRHRRV.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "W74H9N7H8NNRHRRV", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "W74H9N7H8NNRHRRV.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "W74H9N7H8NNRHRRV.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "120035" + }, + "appliesTo" : [ ] + }, + "W74H9N7H8NNRHRRV.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "W74H9N7H8NNRHRRV.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.6980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "W74H9N7H8NNRHRRV.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "W74H9N7H8NNRHRRV", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "W74H9N7H8NNRHRRV.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "W74H9N7H8NNRHRRV.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "135603" + }, + "appliesTo" : [ ] + }, + "W74H9N7H8NNRHRRV.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "W74H9N7H8NNRHRRV.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "W74H9N7H8NNRHRRV.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "W74H9N7H8NNRHRRV", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "W74H9N7H8NNRHRRV.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "W74H9N7H8NNRHRRV.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "199648" + }, + "appliesTo" : [ ] + }, + "W74H9N7H8NNRHRRV.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "W74H9N7H8NNRHRRV.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "5EYCR4NNAWN9DZT3" : { + "5EYCR4NNAWN9DZT3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "5EYCR4NNAWN9DZT3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "5EYCR4NNAWN9DZT3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "5EYCR4NNAWN9DZT3.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "5EYCR4NNAWN9DZT3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "5EYCR4NNAWN9DZT3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "5EYCR4NNAWN9DZT3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "5EYCR4NNAWN9DZT3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1887" + }, + "appliesTo" : [ ] + }, + "5EYCR4NNAWN9DZT3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "5EYCR4NNAWN9DZT3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5EYCR4NNAWN9DZT3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "5EYCR4NNAWN9DZT3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "5EYCR4NNAWN9DZT3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "5EYCR4NNAWN9DZT3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "938" + }, + "appliesTo" : [ ] + }, + "5EYCR4NNAWN9DZT3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "5EYCR4NNAWN9DZT3.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5EYCR4NNAWN9DZT3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "5EYCR4NNAWN9DZT3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "5EYCR4NNAWN9DZT3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "5EYCR4NNAWN9DZT3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "581" + }, + "appliesTo" : [ ] + }, + "5EYCR4NNAWN9DZT3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "5EYCR4NNAWN9DZT3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5EYCR4NNAWN9DZT3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "5EYCR4NNAWN9DZT3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "5EYCR4NNAWN9DZT3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "5EYCR4NNAWN9DZT3.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0390000000" + }, + "appliesTo" : [ ] + }, + "5EYCR4NNAWN9DZT3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "5EYCR4NNAWN9DZT3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "983" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "VKZY87EJ294KXKWY" : { + "VKZY87EJ294KXKWY.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "VKZY87EJ294KXKWY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VKZY87EJ294KXKWY.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "VKZY87EJ294KXKWY.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30021" + }, + "appliesTo" : [ ] + }, + "VKZY87EJ294KXKWY.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "VKZY87EJ294KXKWY.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VKZY87EJ294KXKWY.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "VKZY87EJ294KXKWY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VKZY87EJ294KXKWY.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "VKZY87EJ294KXKWY.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.1230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VKZY87EJ294KXKWY.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "VKZY87EJ294KXKWY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VKZY87EJ294KXKWY.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "VKZY87EJ294KXKWY.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.3860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VKZY87EJ294KXKWY.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "VKZY87EJ294KXKWY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VKZY87EJ294KXKWY.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "VKZY87EJ294KXKWY.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "64018" + }, + "appliesTo" : [ ] + }, + "VKZY87EJ294KXKWY.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "VKZY87EJ294KXKWY.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VKZY87EJ294KXKWY.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "VKZY87EJ294KXKWY", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "VKZY87EJ294KXKWY.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "VKZY87EJ294KXKWY.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "122675" + }, + "appliesTo" : [ ] + }, + "VKZY87EJ294KXKWY.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "VKZY87EJ294KXKWY.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VKZY87EJ294KXKWY.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "VKZY87EJ294KXKWY", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "VKZY87EJ294KXKWY.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "VKZY87EJ294KXKWY.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "53072" + }, + "appliesTo" : [ ] + }, + "VKZY87EJ294KXKWY.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "VKZY87EJ294KXKWY.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VKZY87EJ294KXKWY.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "VKZY87EJ294KXKWY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VKZY87EJ294KXKWY.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "VKZY87EJ294KXKWY.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.6950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VKZY87EJ294KXKWY.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "VKZY87EJ294KXKWY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VKZY87EJ294KXKWY.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "VKZY87EJ294KXKWY.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "VKZY87EJ294KXKWY.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "VKZY87EJ294KXKWY.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "59098" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VKZY87EJ294KXKWY.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "VKZY87EJ294KXKWY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VKZY87EJ294KXKWY.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "VKZY87EJ294KXKWY.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "70720" + }, + "appliesTo" : [ ] + }, + "VKZY87EJ294KXKWY.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "VKZY87EJ294KXKWY.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VKZY87EJ294KXKWY.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "VKZY87EJ294KXKWY", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "VKZY87EJ294KXKWY.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "VKZY87EJ294KXKWY.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26946" + }, + "appliesTo" : [ ] + }, + "VKZY87EJ294KXKWY.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "VKZY87EJ294KXKWY.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VKZY87EJ294KXKWY.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "VKZY87EJ294KXKWY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VKZY87EJ294KXKWY.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "VKZY87EJ294KXKWY.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "139385" + }, + "appliesTo" : [ ] + }, + "VKZY87EJ294KXKWY.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "VKZY87EJ294KXKWY.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VKZY87EJ294KXKWY.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "VKZY87EJ294KXKWY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VKZY87EJ294KXKWY.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "VKZY87EJ294KXKWY.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.1440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "SBHS3JAQSXPZMQSH" : { + "SBHS3JAQSXPZMQSH.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SBHS3JAQSXPZMQSH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "SBHS3JAQSXPZMQSH.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SBHS3JAQSXPZMQSH.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "759" + }, + "appliesTo" : [ ] + }, + "SBHS3JAQSXPZMQSH.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SBHS3JAQSXPZMQSH.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SBHS3JAQSXPZMQSH.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "SBHS3JAQSXPZMQSH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SBHS3JAQSXPZMQSH.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "SBHS3JAQSXPZMQSH.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SBHS3JAQSXPZMQSH.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "SBHS3JAQSXPZMQSH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SBHS3JAQSXPZMQSH.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "SBHS3JAQSXPZMQSH.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1593" + }, + "appliesTo" : [ ] + }, + "SBHS3JAQSXPZMQSH.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "SBHS3JAQSXPZMQSH.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SBHS3JAQSXPZMQSH.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "SBHS3JAQSXPZMQSH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SBHS3JAQSXPZMQSH.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "SBHS3JAQSXPZMQSH.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SBHS3JAQSXPZMQSH.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "SBHS3JAQSXPZMQSH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SBHS3JAQSXPZMQSH.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "SBHS3JAQSXPZMQSH.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0890000000" + }, + "appliesTo" : [ ] + }, + "SBHS3JAQSXPZMQSH.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "SBHS3JAQSXPZMQSH.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "841" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SBHS3JAQSXPZMQSH.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SBHS3JAQSXPZMQSH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "SBHS3JAQSXPZMQSH.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SBHS3JAQSXPZMQSH.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0590000000" + }, + "appliesTo" : [ ] + }, + "SBHS3JAQSXPZMQSH.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SBHS3JAQSXPZMQSH.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1552" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SBHS3JAQSXPZMQSH.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "SBHS3JAQSXPZMQSH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SBHS3JAQSXPZMQSH.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "SBHS3JAQSXPZMQSH.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3366" + }, + "appliesTo" : [ ] + }, + "SBHS3JAQSXPZMQSH.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "SBHS3JAQSXPZMQSH.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SBHS3JAQSXPZMQSH.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "SBHS3JAQSXPZMQSH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SBHS3JAQSXPZMQSH.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "SBHS3JAQSXPZMQSH.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1715" + }, + "appliesTo" : [ ] + }, + "SBHS3JAQSXPZMQSH.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "SBHS3JAQSXPZMQSH.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SBHS3JAQSXPZMQSH.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SBHS3JAQSXPZMQSH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SBHS3JAQSXPZMQSH.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SBHS3JAQSXPZMQSH.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SBHS3JAQSXPZMQSH.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "SBHS3JAQSXPZMQSH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SBHS3JAQSXPZMQSH.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "SBHS3JAQSXPZMQSH.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SBHS3JAQSXPZMQSH.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SBHS3JAQSXPZMQSH", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "SBHS3JAQSXPZMQSH.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SBHS3JAQSXPZMQSH.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SBHS3JAQSXPZMQSH.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SBHS3JAQSXPZMQSH.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2950" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SBHS3JAQSXPZMQSH.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SBHS3JAQSXPZMQSH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "SBHS3JAQSXPZMQSH.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SBHS3JAQSXPZMQSH.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SBHS3JAQSXPZMQSH.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SBHS3JAQSXPZMQSH.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1433" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "A67CJDV9B3YBP6N6" : { + "A67CJDV9B3YBP6N6.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "A67CJDV9B3YBP6N6", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "A67CJDV9B3YBP6N6.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "A67CJDV9B3YBP6N6.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24905" + }, + "appliesTo" : [ ] + }, + "A67CJDV9B3YBP6N6.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "A67CJDV9B3YBP6N6.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "A67CJDV9B3YBP6N6.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "A67CJDV9B3YBP6N6", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "A67CJDV9B3YBP6N6.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "A67CJDV9B3YBP6N6.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "A67CJDV9B3YBP6N6.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "A67CJDV9B3YBP6N6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "A67CJDV9B3YBP6N6.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "A67CJDV9B3YBP6N6.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29640" + }, + "appliesTo" : [ ] + }, + "A67CJDV9B3YBP6N6.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "A67CJDV9B3YBP6N6.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "A67CJDV9B3YBP6N6.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "A67CJDV9B3YBP6N6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A67CJDV9B3YBP6N6.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "A67CJDV9B3YBP6N6.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16001" + }, + "appliesTo" : [ ] + }, + "A67CJDV9B3YBP6N6.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "A67CJDV9B3YBP6N6.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "A67CJDV9B3YBP6N6.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "A67CJDV9B3YBP6N6", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "A67CJDV9B3YBP6N6.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "A67CJDV9B3YBP6N6.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "A67CJDV9B3YBP6N6.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "A67CJDV9B3YBP6N6.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37562" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "A67CJDV9B3YBP6N6.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "A67CJDV9B3YBP6N6", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "A67CJDV9B3YBP6N6.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "A67CJDV9B3YBP6N6.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9224" + }, + "appliesTo" : [ ] + }, + "A67CJDV9B3YBP6N6.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "A67CJDV9B3YBP6N6.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "A67CJDV9B3YBP6N6.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "A67CJDV9B3YBP6N6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "A67CJDV9B3YBP6N6.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "A67CJDV9B3YBP6N6.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "A67CJDV9B3YBP6N6.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "A67CJDV9B3YBP6N6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A67CJDV9B3YBP6N6.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "A67CJDV9B3YBP6N6.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "A67CJDV9B3YBP6N6.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "A67CJDV9B3YBP6N6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A67CJDV9B3YBP6N6.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "A67CJDV9B3YBP6N6.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8164" + }, + "appliesTo" : [ ] + }, + "A67CJDV9B3YBP6N6.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "A67CJDV9B3YBP6N6.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "A67CJDV9B3YBP6N6.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "A67CJDV9B3YBP6N6", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "A67CJDV9B3YBP6N6.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "A67CJDV9B3YBP6N6.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13912" + }, + "appliesTo" : [ ] + }, + "A67CJDV9B3YBP6N6.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "A67CJDV9B3YBP6N6.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "A67CJDV9B3YBP6N6.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "A67CJDV9B3YBP6N6", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "A67CJDV9B3YBP6N6.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "A67CJDV9B3YBP6N6.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25228" + }, + "appliesTo" : [ ] + }, + "A67CJDV9B3YBP6N6.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "A67CJDV9B3YBP6N6.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "SQZMQXR6THWASKYH" : { + "SQZMQXR6THWASKYH.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "SQZMQXR6THWASKYH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SQZMQXR6THWASKYH.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "SQZMQXR6THWASKYH.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9260" + }, + "appliesTo" : [ ] + }, + "SQZMQXR6THWASKYH.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "SQZMQXR6THWASKYH.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SQZMQXR6THWASKYH.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "SQZMQXR6THWASKYH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SQZMQXR6THWASKYH.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "SQZMQXR6THWASKYH.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SQZMQXR6THWASKYH.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SQZMQXR6THWASKYH", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "SQZMQXR6THWASKYH.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SQZMQXR6THWASKYH.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11741" + }, + "appliesTo" : [ ] + }, + "SQZMQXR6THWASKYH.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SQZMQXR6THWASKYH.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SQZMQXR6THWASKYH.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SQZMQXR6THWASKYH", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "SQZMQXR6THWASKYH.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SQZMQXR6THWASKYH.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SQZMQXR6THWASKYH.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "SQZMQXR6THWASKYH", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "SQZMQXR6THWASKYH.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "SQZMQXR6THWASKYH.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "52170" + }, + "appliesTo" : [ ] + }, + "SQZMQXR6THWASKYH.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "SQZMQXR6THWASKYH.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SQZMQXR6THWASKYH.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "SQZMQXR6THWASKYH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SQZMQXR6THWASKYH.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "SQZMQXR6THWASKYH.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18448" + }, + "appliesTo" : [ ] + }, + "SQZMQXR6THWASKYH.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "SQZMQXR6THWASKYH.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SQZMQXR6THWASKYH.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "SQZMQXR6THWASKYH", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "SQZMQXR6THWASKYH.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "SQZMQXR6THWASKYH.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34606" + }, + "appliesTo" : [ ] + }, + "SQZMQXR6THWASKYH.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "SQZMQXR6THWASKYH.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SQZMQXR6THWASKYH.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SQZMQXR6THWASKYH", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "SQZMQXR6THWASKYH.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SQZMQXR6THWASKYH.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "45608" + }, + "appliesTo" : [ ] + }, + "SQZMQXR6THWASKYH.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SQZMQXR6THWASKYH.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SQZMQXR6THWASKYH.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "SQZMQXR6THWASKYH", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "SQZMQXR6THWASKYH.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "SQZMQXR6THWASKYH.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SQZMQXR6THWASKYH.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SQZMQXR6THWASKYH", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "SQZMQXR6THWASKYH.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SQZMQXR6THWASKYH.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17699" + }, + "appliesTo" : [ ] + }, + "SQZMQXR6THWASKYH.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SQZMQXR6THWASKYH.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SQZMQXR6THWASKYH.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SQZMQXR6THWASKYH", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "SQZMQXR6THWASKYH.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SQZMQXR6THWASKYH.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6460000000" + }, + "appliesTo" : [ ] + }, + "SQZMQXR6THWASKYH.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SQZMQXR6THWASKYH.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31548" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "XES86TS9BX33Y86Y" : { + "XES86TS9BX33Y86Y.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "XES86TS9BX33Y86Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XES86TS9BX33Y86Y.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "XES86TS9BX33Y86Y.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "19.2270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XES86TS9BX33Y86Y.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XES86TS9BX33Y86Y", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "XES86TS9BX33Y86Y.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XES86TS9BX33Y86Y.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "136601" + }, + "appliesTo" : [ ] + }, + "XES86TS9BX33Y86Y.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XES86TS9BX33Y86Y.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XES86TS9BX33Y86Y.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XES86TS9BX33Y86Y", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "XES86TS9BX33Y86Y.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XES86TS9BX33Y86Y.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "243708" + }, + "appliesTo" : [ ] + }, + "XES86TS9BX33Y86Y.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XES86TS9BX33Y86Y.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XES86TS9BX33Y86Y.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "XES86TS9BX33Y86Y", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "XES86TS9BX33Y86Y.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "XES86TS9BX33Y86Y.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.6460000000" + }, + "appliesTo" : [ ] + }, + "XES86TS9BX33Y86Y.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "XES86TS9BX33Y86Y.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "174665" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XES86TS9BX33Y86Y.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XES86TS9BX33Y86Y", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "XES86TS9BX33Y86Y.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XES86TS9BX33Y86Y.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "129632" + }, + "appliesTo" : [ ] + }, + "XES86TS9BX33Y86Y.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XES86TS9BX33Y86Y.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XES86TS9BX33Y86Y.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "XES86TS9BX33Y86Y", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "XES86TS9BX33Y86Y.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "XES86TS9BX33Y86Y.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.3560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XES86TS9BX33Y86Y.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "XES86TS9BX33Y86Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XES86TS9BX33Y86Y.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "XES86TS9BX33Y86Y.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "80202" + }, + "appliesTo" : [ ] + }, + "XES86TS9BX33Y86Y.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "XES86TS9BX33Y86Y.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.1560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XES86TS9BX33Y86Y.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XES86TS9BX33Y86Y", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "XES86TS9BX33Y86Y.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XES86TS9BX33Y86Y.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.7080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XES86TS9BX33Y86Y.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XES86TS9BX33Y86Y", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "XES86TS9BX33Y86Y.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XES86TS9BX33Y86Y.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "69695" + }, + "appliesTo" : [ ] + }, + "XES86TS9BX33Y86Y.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XES86TS9BX33Y86Y.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.9560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XES86TS9BX33Y86Y.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "XES86TS9BX33Y86Y", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "XES86TS9BX33Y86Y.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "XES86TS9BX33Y86Y.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.6550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XES86TS9BX33Y86Y.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "XES86TS9BX33Y86Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XES86TS9BX33Y86Y.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "XES86TS9BX33Y86Y.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "157197" + }, + "appliesTo" : [ ] + }, + "XES86TS9BX33Y86Y.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "XES86TS9BX33Y86Y.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XES86TS9BX33Y86Y.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "XES86TS9BX33Y86Y", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "XES86TS9BX33Y86Y.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "XES86TS9BX33Y86Y.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "342344" + }, + "appliesTo" : [ ] + }, + "XES86TS9BX33Y86Y.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "XES86TS9BX33Y86Y.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "XVCPRU82RU77VTVY" : { + "XVCPRU82RU77VTVY.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XVCPRU82RU77VTVY", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XVCPRU82RU77VTVY.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XVCPRU82RU77VTVY.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31130" + }, + "appliesTo" : [ ] + }, + "XVCPRU82RU77VTVY.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XVCPRU82RU77VTVY.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XVCPRU82RU77VTVY.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XVCPRU82RU77VTVY", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XVCPRU82RU77VTVY.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XVCPRU82RU77VTVY.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "61945" + }, + "appliesTo" : [ ] + }, + "XVCPRU82RU77VTVY.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XVCPRU82RU77VTVY.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XVCPRU82RU77VTVY.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "XVCPRU82RU77VTVY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XVCPRU82RU77VTVY.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "XVCPRU82RU77VTVY.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "64256" + }, + "appliesTo" : [ ] + }, + "XVCPRU82RU77VTVY.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "XVCPRU82RU77VTVY.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XVCPRU82RU77VTVY.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "XVCPRU82RU77VTVY", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XVCPRU82RU77VTVY.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "XVCPRU82RU77VTVY.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.8420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XVCPRU82RU77VTVY.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XVCPRU82RU77VTVY", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XVCPRU82RU77VTVY.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XVCPRU82RU77VTVY.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.1970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XVCPRU82RU77VTVY.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XVCPRU82RU77VTVY", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XVCPRU82RU77VTVY.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XVCPRU82RU77VTVY.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "85988" + }, + "appliesTo" : [ ] + }, + "XVCPRU82RU77VTVY.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XVCPRU82RU77VTVY.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XVCPRU82RU77VTVY.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "XVCPRU82RU77VTVY", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XVCPRU82RU77VTVY.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "XVCPRU82RU77VTVY.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "176089" + }, + "appliesTo" : [ ] + }, + "XVCPRU82RU77VTVY.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "XVCPRU82RU77VTVY.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XVCPRU82RU77VTVY.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "XVCPRU82RU77VTVY", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XVCPRU82RU77VTVY.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "XVCPRU82RU77VTVY.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.6430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XVCPRU82RU77VTVY.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XVCPRU82RU77VTVY", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XVCPRU82RU77VTVY.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XVCPRU82RU77VTVY.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "170034" + }, + "appliesTo" : [ ] + }, + "XVCPRU82RU77VTVY.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XVCPRU82RU77VTVY.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XVCPRU82RU77VTVY.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "XVCPRU82RU77VTVY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XVCPRU82RU77VTVY.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "XVCPRU82RU77VTVY.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XVCPRU82RU77VTVY.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "XVCPRU82RU77VTVY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XVCPRU82RU77VTVY.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "XVCPRU82RU77VTVY.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32309" + }, + "appliesTo" : [ ] + }, + "XVCPRU82RU77VTVY.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "XVCPRU82RU77VTVY.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XVCPRU82RU77VTVY.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "XVCPRU82RU77VTVY", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XVCPRU82RU77VTVY.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "XVCPRU82RU77VTVY.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3640000000" + }, + "appliesTo" : [ ] + }, + "XVCPRU82RU77VTVY.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "XVCPRU82RU77VTVY.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "88417" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "UY23MW6DPAKU4KJ9" : { + "UY23MW6DPAKU4KJ9.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "UY23MW6DPAKU4KJ9", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "UY23MW6DPAKU4KJ9.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "UY23MW6DPAKU4KJ9.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3058" + }, + "appliesTo" : [ ] + }, + "UY23MW6DPAKU4KJ9.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "UY23MW6DPAKU4KJ9.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1164000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "UY23MW6DPAKU4KJ9.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "UY23MW6DPAKU4KJ9", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "UY23MW6DPAKU4KJ9.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "UY23MW6DPAKU4KJ9.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2464000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "UY23MW6DPAKU4KJ9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "UY23MW6DPAKU4KJ9", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "UY23MW6DPAKU4KJ9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "UY23MW6DPAKU4KJ9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5297" + }, + "appliesTo" : [ ] + }, + "UY23MW6DPAKU4KJ9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "UY23MW6DPAKU4KJ9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "UY23MW6DPAKU4KJ9.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "UY23MW6DPAKU4KJ9", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "UY23MW6DPAKU4KJ9.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "UY23MW6DPAKU4KJ9.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2224000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "UY23MW6DPAKU4KJ9.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "UY23MW6DPAKU4KJ9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UY23MW6DPAKU4KJ9.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "UY23MW6DPAKU4KJ9.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2705" + }, + "appliesTo" : [ ] + }, + "UY23MW6DPAKU4KJ9.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "UY23MW6DPAKU4KJ9.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "UY23MW6DPAKU4KJ9.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "UY23MW6DPAKU4KJ9", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "UY23MW6DPAKU4KJ9.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "UY23MW6DPAKU4KJ9.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6027" + }, + "appliesTo" : [ ] + }, + "UY23MW6DPAKU4KJ9.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "UY23MW6DPAKU4KJ9.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "UY23MW6DPAKU4KJ9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "UY23MW6DPAKU4KJ9", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "UY23MW6DPAKU4KJ9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "UY23MW6DPAKU4KJ9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1405000000" + }, + "appliesTo" : [ ] + }, + "UY23MW6DPAKU4KJ9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "UY23MW6DPAKU4KJ9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1231" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "UY23MW6DPAKU4KJ9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "UY23MW6DPAKU4KJ9", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "UY23MW6DPAKU4KJ9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "UY23MW6DPAKU4KJ9.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "UY23MW6DPAKU4KJ9.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "UY23MW6DPAKU4KJ9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UY23MW6DPAKU4KJ9.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "UY23MW6DPAKU4KJ9.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3265000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "UY23MW6DPAKU4KJ9.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "UY23MW6DPAKU4KJ9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UY23MW6DPAKU4KJ9.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "UY23MW6DPAKU4KJ9.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1569000000" + }, + "appliesTo" : [ ] + }, + "UY23MW6DPAKU4KJ9.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "UY23MW6DPAKU4KJ9.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1375" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "UY23MW6DPAKU4KJ9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "UY23MW6DPAKU4KJ9", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "UY23MW6DPAKU4KJ9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "UY23MW6DPAKU4KJ9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2423" + }, + "appliesTo" : [ ] + }, + "UY23MW6DPAKU4KJ9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "UY23MW6DPAKU4KJ9.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "UY23MW6DPAKU4KJ9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "UY23MW6DPAKU4KJ9", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "UY23MW6DPAKU4KJ9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "UY23MW6DPAKU4KJ9.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1052000000" + }, + "appliesTo" : [ ] + }, + "UY23MW6DPAKU4KJ9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "UY23MW6DPAKU4KJ9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2766" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "PFVG5HVRU3HK5C4R" : { + "PFVG5HVRU3HK5C4R.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "PFVG5HVRU3HK5C4R", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PFVG5HVRU3HK5C4R.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "PFVG5HVRU3HK5C4R.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "PFVG5HVRU3HK5C4R.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "PFVG5HVRU3HK5C4R.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2030" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PFVG5HVRU3HK5C4R.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "PFVG5HVRU3HK5C4R", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PFVG5HVRU3HK5C4R.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "PFVG5HVRU3HK5C4R.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1034" + }, + "appliesTo" : [ ] + }, + "PFVG5HVRU3HK5C4R.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "PFVG5HVRU3HK5C4R.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PFVG5HVRU3HK5C4R.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "PFVG5HVRU3HK5C4R", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "PFVG5HVRU3HK5C4R.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "PFVG5HVRU3HK5C4R.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "945" + }, + "appliesTo" : [ ] + }, + "PFVG5HVRU3HK5C4R.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "PFVG5HVRU3HK5C4R.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PFVG5HVRU3HK5C4R.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "PFVG5HVRU3HK5C4R", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PFVG5HVRU3HK5C4R.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "PFVG5HVRU3HK5C4R.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "PFVG5HVRU3HK5C4R.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "PFVG5HVRU3HK5C4R", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PFVG5HVRU3HK5C4R.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "PFVG5HVRU3HK5C4R.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "PFVG5HVRU3HK5C4R.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "PFVG5HVRU3HK5C4R", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "PFVG5HVRU3HK5C4R.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "PFVG5HVRU3HK5C4R.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1808" + }, + "appliesTo" : [ ] + }, + "PFVG5HVRU3HK5C4R.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "PFVG5HVRU3HK5C4R.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PFVG5HVRU3HK5C4R.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "PFVG5HVRU3HK5C4R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PFVG5HVRU3HK5C4R.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "PFVG5HVRU3HK5C4R.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "508" + }, + "appliesTo" : [ ] + }, + "PFVG5HVRU3HK5C4R.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "PFVG5HVRU3HK5C4R.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PFVG5HVRU3HK5C4R.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "PFVG5HVRU3HK5C4R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PFVG5HVRU3HK5C4R.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "PFVG5HVRU3HK5C4R.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "PFVG5HVRU3HK5C4R.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "PFVG5HVRU3HK5C4R", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "PFVG5HVRU3HK5C4R.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "PFVG5HVRU3HK5C4R.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "857" + }, + "appliesTo" : [ ] + }, + "PFVG5HVRU3HK5C4R.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "PFVG5HVRU3HK5C4R.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PFVG5HVRU3HK5C4R.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "PFVG5HVRU3HK5C4R", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PFVG5HVRU3HK5C4R.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "PFVG5HVRU3HK5C4R.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "PFVG5HVRU3HK5C4R.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "PFVG5HVRU3HK5C4R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PFVG5HVRU3HK5C4R.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "PFVG5HVRU3HK5C4R.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "PFVG5HVRU3HK5C4R.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "PFVG5HVRU3HK5C4R.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "942" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PFVG5HVRU3HK5C4R.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "PFVG5HVRU3HK5C4R", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "PFVG5HVRU3HK5C4R.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "PFVG5HVRU3HK5C4R.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "465" + }, + "appliesTo" : [ ] + }, + "PFVG5HVRU3HK5C4R.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "PFVG5HVRU3HK5C4R.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "47GP959QAF69YPG5" : { + "47GP959QAF69YPG5.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "47GP959QAF69YPG5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "47GP959QAF69YPG5.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "47GP959QAF69YPG5.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0679000000" + }, + "appliesTo" : [ ] + }, + "47GP959QAF69YPG5.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "47GP959QAF69YPG5.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "594" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "47GP959QAF69YPG5.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "47GP959QAF69YPG5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "47GP959QAF69YPG5.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "47GP959QAF69YPG5.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1425000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "47GP959QAF69YPG5.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "47GP959QAF69YPG5", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "47GP959QAF69YPG5.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "47GP959QAF69YPG5.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1013" + }, + "appliesTo" : [ ] + }, + "47GP959QAF69YPG5.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "47GP959QAF69YPG5.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "47GP959QAF69YPG5.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "47GP959QAF69YPG5", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "47GP959QAF69YPG5.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "47GP959QAF69YPG5.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1051" + }, + "appliesTo" : [ ] + }, + "47GP959QAF69YPG5.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "47GP959QAF69YPG5.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "47GP959QAF69YPG5.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "47GP959QAF69YPG5", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "47GP959QAF69YPG5.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "47GP959QAF69YPG5.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "47GP959QAF69YPG5.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "47GP959QAF69YPG5.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1976" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "47GP959QAF69YPG5.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "47GP959QAF69YPG5", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "47GP959QAF69YPG5.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "47GP959QAF69YPG5.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1209" + }, + "appliesTo" : [ ] + }, + "47GP959QAF69YPG5.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "47GP959QAF69YPG5.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "47GP959QAF69YPG5.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "47GP959QAF69YPG5", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "47GP959QAF69YPG5.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "47GP959QAF69YPG5.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0864000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "47GP959QAF69YPG5.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "47GP959QAF69YPG5", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "47GP959QAF69YPG5.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "47GP959QAF69YPG5.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0994000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "47GP959QAF69YPG5.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "47GP959QAF69YPG5", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "47GP959QAF69YPG5.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "47GP959QAF69YPG5.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "517" + }, + "appliesTo" : [ ] + }, + "47GP959QAF69YPG5.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "47GP959QAF69YPG5.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "47GP959QAF69YPG5.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "47GP959QAF69YPG5", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "47GP959QAF69YPG5.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "47GP959QAF69YPG5.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1239000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "47GP959QAF69YPG5.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "47GP959QAF69YPG5", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "47GP959QAF69YPG5.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "47GP959QAF69YPG5.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "47GP959QAF69YPG5.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "47GP959QAF69YPG5.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2369" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "47GP959QAF69YPG5.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "47GP959QAF69YPG5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "47GP959QAF69YPG5.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "47GP959QAF69YPG5.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1165" + }, + "appliesTo" : [ ] + }, + "47GP959QAF69YPG5.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "47GP959QAF69YPG5.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "PCMEF8PUJ2K4JEB5" : { + "PCMEF8PUJ2K4JEB5.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "PCMEF8PUJ2K4JEB5", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "PCMEF8PUJ2K4JEB5.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "PCMEF8PUJ2K4JEB5.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4940000000" + }, + "appliesTo" : [ ] + }, + "PCMEF8PUJ2K4JEB5.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "PCMEF8PUJ2K4JEB5.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5466" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PCMEF8PUJ2K4JEB5.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "PCMEF8PUJ2K4JEB5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "PCMEF8PUJ2K4JEB5.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "PCMEF8PUJ2K4JEB5.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7999" + }, + "appliesTo" : [ ] + }, + "PCMEF8PUJ2K4JEB5.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "PCMEF8PUJ2K4JEB5.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PCMEF8PUJ2K4JEB5.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "PCMEF8PUJ2K4JEB5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "PCMEF8PUJ2K4JEB5.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "PCMEF8PUJ2K4JEB5.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "PCMEF8PUJ2K4JEB5.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "PCMEF8PUJ2K4JEB5.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17339" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PCMEF8PUJ2K4JEB5.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "PCMEF8PUJ2K4JEB5", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "PCMEF8PUJ2K4JEB5.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "PCMEF8PUJ2K4JEB5.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "PCMEF8PUJ2K4JEB5.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "PCMEF8PUJ2K4JEB5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "PCMEF8PUJ2K4JEB5.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "PCMEF8PUJ2K4JEB5.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3489" + }, + "appliesTo" : [ ] + }, + "PCMEF8PUJ2K4JEB5.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "PCMEF8PUJ2K4JEB5.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "4U7JAK7UHS4DSAR8" : { + "4U7JAK7UHS4DSAR8.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "4U7JAK7UHS4DSAR8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4U7JAK7UHS4DSAR8.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "4U7JAK7UHS4DSAR8.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "4U7JAK7UHS4DSAR8.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "4U7JAK7UHS4DSAR8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4U7JAK7UHS4DSAR8.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "4U7JAK7UHS4DSAR8.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4980000000" + }, + "appliesTo" : [ ] + }, + "4U7JAK7UHS4DSAR8.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "4U7JAK7UHS4DSAR8.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3224" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4U7JAK7UHS4DSAR8.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "4U7JAK7UHS4DSAR8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4U7JAK7UHS4DSAR8.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "4U7JAK7UHS4DSAR8.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9028000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "4U7JAK7UHS4DSAR8.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "4U7JAK7UHS4DSAR8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4U7JAK7UHS4DSAR8.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "4U7JAK7UHS4DSAR8.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6566000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "4U7JAK7UHS4DSAR8.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "4U7JAK7UHS4DSAR8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4U7JAK7UHS4DSAR8.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "4U7JAK7UHS4DSAR8.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6407" + }, + "appliesTo" : [ ] + }, + "4U7JAK7UHS4DSAR8.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "4U7JAK7UHS4DSAR8.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3738000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4U7JAK7UHS4DSAR8.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "4U7JAK7UHS4DSAR8", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "4U7JAK7UHS4DSAR8.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "4U7JAK7UHS4DSAR8.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5592" + }, + "appliesTo" : [ ] + }, + "4U7JAK7UHS4DSAR8.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "4U7JAK7UHS4DSAR8.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4U7JAK7UHS4DSAR8.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "4U7JAK7UHS4DSAR8", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "4U7JAK7UHS4DSAR8.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "4U7JAK7UHS4DSAR8.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13930" + }, + "appliesTo" : [ ] + }, + "4U7JAK7UHS4DSAR8.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "4U7JAK7UHS4DSAR8.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4U7JAK7UHS4DSAR8.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "4U7JAK7UHS4DSAR8", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "4U7JAK7UHS4DSAR8.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "4U7JAK7UHS4DSAR8.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "4U7JAK7UHS4DSAR8.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "4U7JAK7UHS4DSAR8.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6619" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4U7JAK7UHS4DSAR8.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "4U7JAK7UHS4DSAR8", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "4U7JAK7UHS4DSAR8.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "4U7JAK7UHS4DSAR8.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2796" + }, + "appliesTo" : [ ] + }, + "4U7JAK7UHS4DSAR8.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "4U7JAK7UHS4DSAR8.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4U7JAK7UHS4DSAR8.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "4U7JAK7UHS4DSAR8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4U7JAK7UHS4DSAR8.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "4U7JAK7UHS4DSAR8.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "4U7JAK7UHS4DSAR8.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "4U7JAK7UHS4DSAR8.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7457" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4U7JAK7UHS4DSAR8.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "4U7JAK7UHS4DSAR8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4U7JAK7UHS4DSAR8.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "4U7JAK7UHS4DSAR8.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15974" + }, + "appliesTo" : [ ] + }, + "4U7JAK7UHS4DSAR8.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "4U7JAK7UHS4DSAR8.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4U7JAK7UHS4DSAR8.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "4U7JAK7UHS4DSAR8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4U7JAK7UHS4DSAR8.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "4U7JAK7UHS4DSAR8.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5879000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "XC5ZWJZS84Q3XZTZ" : { + "XC5ZWJZS84Q3XZTZ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XC5ZWJZS84Q3XZTZ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XC5ZWJZS84Q3XZTZ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XC5ZWJZS84Q3XZTZ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9859000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XC5ZWJZS84Q3XZTZ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XC5ZWJZS84Q3XZTZ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XC5ZWJZS84Q3XZTZ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XC5ZWJZS84Q3XZTZ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7776" + }, + "appliesTo" : [ ] + }, + "XC5ZWJZS84Q3XZTZ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XC5ZWJZS84Q3XZTZ.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4259000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XC5ZWJZS84Q3XZTZ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XC5ZWJZS84Q3XZTZ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XC5ZWJZS84Q3XZTZ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XC5ZWJZS84Q3XZTZ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18035" + }, + "appliesTo" : [ ] + }, + "XC5ZWJZS84Q3XZTZ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XC5ZWJZS84Q3XZTZ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XC5ZWJZS84Q3XZTZ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "XC5ZWJZS84Q3XZTZ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XC5ZWJZS84Q3XZTZ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "XC5ZWJZS84Q3XZTZ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XC5ZWJZS84Q3XZTZ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "XC5ZWJZS84Q3XZTZ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XC5ZWJZS84Q3XZTZ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "XC5ZWJZS84Q3XZTZ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8942" + }, + "appliesTo" : [ ] + }, + "XC5ZWJZS84Q3XZTZ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "XC5ZWJZS84Q3XZTZ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4703000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XC5ZWJZS84Q3XZTZ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XC5ZWJZS84Q3XZTZ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XC5ZWJZS84Q3XZTZ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XC5ZWJZS84Q3XZTZ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3570" + }, + "appliesTo" : [ ] + }, + "XC5ZWJZS84Q3XZTZ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XC5ZWJZS84Q3XZTZ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5376000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XC5ZWJZS84Q3XZTZ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XC5ZWJZS84Q3XZTZ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XC5ZWJZS84Q3XZTZ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XC5ZWJZS84Q3XZTZ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8136" + }, + "appliesTo" : [ ] + }, + "XC5ZWJZS84Q3XZTZ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XC5ZWJZS84Q3XZTZ.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XC5ZWJZS84Q3XZTZ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "XC5ZWJZS84Q3XZTZ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XC5ZWJZS84Q3XZTZ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "XC5ZWJZS84Q3XZTZ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7691000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XC5ZWJZS84Q3XZTZ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "XC5ZWJZS84Q3XZTZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XC5ZWJZS84Q3XZTZ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "XC5ZWJZS84Q3XZTZ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9186" + }, + "appliesTo" : [ ] + }, + "XC5ZWJZS84Q3XZTZ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "XC5ZWJZS84Q3XZTZ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XC5ZWJZS84Q3XZTZ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "XC5ZWJZS84Q3XZTZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XC5ZWJZS84Q3XZTZ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "XC5ZWJZS84Q3XZTZ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1142000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XC5ZWJZS84Q3XZTZ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "XC5ZWJZS84Q3XZTZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XC5ZWJZS84Q3XZTZ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "XC5ZWJZS84Q3XZTZ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5987000000" + }, + "appliesTo" : [ ] + }, + "XC5ZWJZS84Q3XZTZ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "XC5ZWJZS84Q3XZTZ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4106" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XC5ZWJZS84Q3XZTZ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "XC5ZWJZS84Q3XZTZ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XC5ZWJZS84Q3XZTZ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "XC5ZWJZS84Q3XZTZ.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "XC5ZWJZS84Q3XZTZ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "XC5ZWJZS84Q3XZTZ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20943" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "TB4MYGC7MSS5DCKM" : { + "TB4MYGC7MSS5DCKM.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TB4MYGC7MSS5DCKM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TB4MYGC7MSS5DCKM.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TB4MYGC7MSS5DCKM.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2646" + }, + "appliesTo" : [ ] + }, + "TB4MYGC7MSS5DCKM.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TB4MYGC7MSS5DCKM.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TB4MYGC7MSS5DCKM.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TB4MYGC7MSS5DCKM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TB4MYGC7MSS5DCKM.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TB4MYGC7MSS5DCKM.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5250" + }, + "appliesTo" : [ ] + }, + "TB4MYGC7MSS5DCKM.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TB4MYGC7MSS5DCKM.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TB4MYGC7MSS5DCKM.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "TB4MYGC7MSS5DCKM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TB4MYGC7MSS5DCKM.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "TB4MYGC7MSS5DCKM.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5408000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TB4MYGC7MSS5DCKM.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "TB4MYGC7MSS5DCKM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TB4MYGC7MSS5DCKM.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "TB4MYGC7MSS5DCKM.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5554" + }, + "appliesTo" : [ ] + }, + "TB4MYGC7MSS5DCKM.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "TB4MYGC7MSS5DCKM.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TB4MYGC7MSS5DCKM.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "TB4MYGC7MSS5DCKM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TB4MYGC7MSS5DCKM.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "TB4MYGC7MSS5DCKM.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TB4MYGC7MSS5DCKM.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "TB4MYGC7MSS5DCKM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TB4MYGC7MSS5DCKM.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "TB4MYGC7MSS5DCKM.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3197000000" + }, + "appliesTo" : [ ] + }, + "TB4MYGC7MSS5DCKM.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "TB4MYGC7MSS5DCKM.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2801" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TB4MYGC7MSS5DCKM.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "TB4MYGC7MSS5DCKM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TB4MYGC7MSS5DCKM.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "TB4MYGC7MSS5DCKM.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TB4MYGC7MSS5DCKM.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "TB4MYGC7MSS5DCKM.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14410" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TB4MYGC7MSS5DCKM.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TB4MYGC7MSS5DCKM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TB4MYGC7MSS5DCKM.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TB4MYGC7MSS5DCKM.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6158000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TB4MYGC7MSS5DCKM.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TB4MYGC7MSS5DCKM", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "TB4MYGC7MSS5DCKM.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TB4MYGC7MSS5DCKM.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6842" + }, + "appliesTo" : [ ] + }, + "TB4MYGC7MSS5DCKM.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TB4MYGC7MSS5DCKM.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TB4MYGC7MSS5DCKM.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "TB4MYGC7MSS5DCKM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TB4MYGC7MSS5DCKM.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "TB4MYGC7MSS5DCKM.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5667000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TB4MYGC7MSS5DCKM.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TB4MYGC7MSS5DCKM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TB4MYGC7MSS5DCKM.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TB4MYGC7MSS5DCKM.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12863" + }, + "appliesTo" : [ ] + }, + "TB4MYGC7MSS5DCKM.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TB4MYGC7MSS5DCKM.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TB4MYGC7MSS5DCKM.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "TB4MYGC7MSS5DCKM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TB4MYGC7MSS5DCKM.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "TB4MYGC7MSS5DCKM.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7253" + }, + "appliesTo" : [ ] + }, + "TB4MYGC7MSS5DCKM.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "TB4MYGC7MSS5DCKM.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "XMCTY6J8BEK2CTG2" : { + "XMCTY6J8BEK2CTG2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XMCTY6J8BEK2CTG2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XMCTY6J8BEK2CTG2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XMCTY6J8BEK2CTG2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8529" + }, + "appliesTo" : [ ] + }, + "XMCTY6J8BEK2CTG2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XMCTY6J8BEK2CTG2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XMCTY6J8BEK2CTG2.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "XMCTY6J8BEK2CTG2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "XMCTY6J8BEK2CTG2.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "XMCTY6J8BEK2CTG2.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XMCTY6J8BEK2CTG2.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "XMCTY6J8BEK2CTG2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "XMCTY6J8BEK2CTG2.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "XMCTY6J8BEK2CTG2.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11498" + }, + "appliesTo" : [ ] + }, + "XMCTY6J8BEK2CTG2.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "XMCTY6J8BEK2CTG2.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XMCTY6J8BEK2CTG2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XMCTY6J8BEK2CTG2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "XMCTY6J8BEK2CTG2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XMCTY6J8BEK2CTG2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2740" + }, + "appliesTo" : [ ] + }, + "XMCTY6J8BEK2CTG2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XMCTY6J8BEK2CTG2.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XMCTY6J8BEK2CTG2.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "XMCTY6J8BEK2CTG2", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "XMCTY6J8BEK2CTG2.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "XMCTY6J8BEK2CTG2.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4914" + }, + "appliesTo" : [ ] + }, + "XMCTY6J8BEK2CTG2.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "XMCTY6J8BEK2CTG2.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XMCTY6J8BEK2CTG2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XMCTY6J8BEK2CTG2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XMCTY6J8BEK2CTG2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XMCTY6J8BEK2CTG2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1820" + }, + "appliesTo" : [ ] + }, + "XMCTY6J8BEK2CTG2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XMCTY6J8BEK2CTG2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XMCTY6J8BEK2CTG2.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "XMCTY6J8BEK2CTG2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XMCTY6J8BEK2CTG2.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "XMCTY6J8BEK2CTG2.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "XMCTY6J8BEK2CTG2.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "XMCTY6J8BEK2CTG2.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5194" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XMCTY6J8BEK2CTG2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XMCTY6J8BEK2CTG2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XMCTY6J8BEK2CTG2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XMCTY6J8BEK2CTG2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4144" + }, + "appliesTo" : [ ] + }, + "XMCTY6J8BEK2CTG2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XMCTY6J8BEK2CTG2.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XMCTY6J8BEK2CTG2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XMCTY6J8BEK2CTG2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XMCTY6J8BEK2CTG2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XMCTY6J8BEK2CTG2.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XMCTY6J8BEK2CTG2.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "XMCTY6J8BEK2CTG2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XMCTY6J8BEK2CTG2.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "XMCTY6J8BEK2CTG2.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2633" + }, + "appliesTo" : [ ] + }, + "XMCTY6J8BEK2CTG2.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "XMCTY6J8BEK2CTG2.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XMCTY6J8BEK2CTG2.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "XMCTY6J8BEK2CTG2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XMCTY6J8BEK2CTG2.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "XMCTY6J8BEK2CTG2.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "VEYRGRFZB8WFUBH3" : { + "VEYRGRFZB8WFUBH3.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "VEYRGRFZB8WFUBH3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VEYRGRFZB8WFUBH3.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "VEYRGRFZB8WFUBH3.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5524" + }, + "appliesTo" : [ ] + }, + "VEYRGRFZB8WFUBH3.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "VEYRGRFZB8WFUBH3.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VEYRGRFZB8WFUBH3.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "VEYRGRFZB8WFUBH3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VEYRGRFZB8WFUBH3.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "VEYRGRFZB8WFUBH3.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4530" + }, + "appliesTo" : [ ] + }, + "VEYRGRFZB8WFUBH3.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "VEYRGRFZB8WFUBH3.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VEYRGRFZB8WFUBH3.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "VEYRGRFZB8WFUBH3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VEYRGRFZB8WFUBH3.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "VEYRGRFZB8WFUBH3.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VEYRGRFZB8WFUBH3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "VEYRGRFZB8WFUBH3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VEYRGRFZB8WFUBH3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "VEYRGRFZB8WFUBH3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3540000000" + }, + "appliesTo" : [ ] + }, + "VEYRGRFZB8WFUBH3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "VEYRGRFZB8WFUBH3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1966" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VEYRGRFZB8WFUBH3.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "VEYRGRFZB8WFUBH3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VEYRGRFZB8WFUBH3.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "VEYRGRFZB8WFUBH3.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12317" + }, + "appliesTo" : [ ] + }, + "VEYRGRFZB8WFUBH3.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "VEYRGRFZB8WFUBH3.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VEYRGRFZB8WFUBH3.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "VEYRGRFZB8WFUBH3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VEYRGRFZB8WFUBH3.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "VEYRGRFZB8WFUBH3.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VEYRGRFZB8WFUBH3.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "VEYRGRFZB8WFUBH3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VEYRGRFZB8WFUBH3.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "VEYRGRFZB8WFUBH3.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VEYRGRFZB8WFUBH3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "VEYRGRFZB8WFUBH3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VEYRGRFZB8WFUBH3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "VEYRGRFZB8WFUBH3.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VEYRGRFZB8WFUBH3.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "VEYRGRFZB8WFUBH3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VEYRGRFZB8WFUBH3.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "VEYRGRFZB8WFUBH3.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2234" + }, + "appliesTo" : [ ] + }, + "VEYRGRFZB8WFUBH3.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "VEYRGRFZB8WFUBH3.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VEYRGRFZB8WFUBH3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "VEYRGRFZB8WFUBH3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VEYRGRFZB8WFUBH3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "VEYRGRFZB8WFUBH3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4003" + }, + "appliesTo" : [ ] + }, + "VEYRGRFZB8WFUBH3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "VEYRGRFZB8WFUBH3.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VEYRGRFZB8WFUBH3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "VEYRGRFZB8WFUBH3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VEYRGRFZB8WFUBH3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "VEYRGRFZB8WFUBH3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11006" + }, + "appliesTo" : [ ] + }, + "VEYRGRFZB8WFUBH3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "VEYRGRFZB8WFUBH3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VEYRGRFZB8WFUBH3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "VEYRGRFZB8WFUBH3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VEYRGRFZB8WFUBH3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "VEYRGRFZB8WFUBH3.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "VEYRGRFZB8WFUBH3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "VEYRGRFZB8WFUBH3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4999" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "RBTTMD5AP4CP4TEB" : { + "RBTTMD5AP4CP4TEB.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "RBTTMD5AP4CP4TEB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RBTTMD5AP4CP4TEB.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "RBTTMD5AP4CP4TEB.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RBTTMD5AP4CP4TEB.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "RBTTMD5AP4CP4TEB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RBTTMD5AP4CP4TEB.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "RBTTMD5AP4CP4TEB.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0810000000" + }, + "appliesTo" : [ ] + }, + "RBTTMD5AP4CP4TEB.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "RBTTMD5AP4CP4TEB.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18227" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RBTTMD5AP4CP4TEB.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "RBTTMD5AP4CP4TEB", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "RBTTMD5AP4CP4TEB.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "RBTTMD5AP4CP4TEB.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "104454" + }, + "appliesTo" : [ ] + }, + "RBTTMD5AP4CP4TEB.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "RBTTMD5AP4CP4TEB.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RBTTMD5AP4CP4TEB.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "RBTTMD5AP4CP4TEB", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "RBTTMD5AP4CP4TEB.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "RBTTMD5AP4CP4TEB.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17764" + }, + "appliesTo" : [ ] + }, + "RBTTMD5AP4CP4TEB.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "RBTTMD5AP4CP4TEB.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RBTTMD5AP4CP4TEB.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "RBTTMD5AP4CP4TEB", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "RBTTMD5AP4CP4TEB.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "RBTTMD5AP4CP4TEB.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.1730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RBTTMD5AP4CP4TEB.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "RBTTMD5AP4CP4TEB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RBTTMD5AP4CP4TEB.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "RBTTMD5AP4CP4TEB.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "36316" + }, + "appliesTo" : [ ] + }, + "RBTTMD5AP4CP4TEB.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "RBTTMD5AP4CP4TEB.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RBTTMD5AP4CP4TEB.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "RBTTMD5AP4CP4TEB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RBTTMD5AP4CP4TEB.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "RBTTMD5AP4CP4TEB.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "98901" + }, + "appliesTo" : [ ] + }, + "RBTTMD5AP4CP4TEB.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "RBTTMD5AP4CP4TEB.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RBTTMD5AP4CP4TEB.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "RBTTMD5AP4CP4TEB", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "RBTTMD5AP4CP4TEB.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "RBTTMD5AP4CP4TEB.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.0920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RBTTMD5AP4CP4TEB.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "RBTTMD5AP4CP4TEB", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "RBTTMD5AP4CP4TEB.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "RBTTMD5AP4CP4TEB.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "RBTTMD5AP4CP4TEB.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "RBTTMD5AP4CP4TEB.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35408" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RBTTMD5AP4CP4TEB.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "RBTTMD5AP4CP4TEB", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "RBTTMD5AP4CP4TEB.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "RBTTMD5AP4CP4TEB.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9940000000" + }, + "appliesTo" : [ ] + }, + "RBTTMD5AP4CP4TEB.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "RBTTMD5AP4CP4TEB.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "52389" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RBTTMD5AP4CP4TEB.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "RBTTMD5AP4CP4TEB", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "RBTTMD5AP4CP4TEB.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "RBTTMD5AP4CP4TEB.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "49782" + }, + "appliesTo" : [ ] + }, + "RBTTMD5AP4CP4TEB.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "RBTTMD5AP4CP4TEB.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "YPSGG4AGGKWCT4F5" : { + "YPSGG4AGGKWCT4F5.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YPSGG4AGGKWCT4F5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YPSGG4AGGKWCT4F5.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YPSGG4AGGKWCT4F5.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3262" + }, + "appliesTo" : [ ] + }, + "YPSGG4AGGKWCT4F5.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YPSGG4AGGKWCT4F5.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YPSGG4AGGKWCT4F5.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YPSGG4AGGKWCT4F5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YPSGG4AGGKWCT4F5.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YPSGG4AGGKWCT4F5.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6132" + }, + "appliesTo" : [ ] + }, + "YPSGG4AGGKWCT4F5.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YPSGG4AGGKWCT4F5.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YPSGG4AGGKWCT4F5.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YPSGG4AGGKWCT4F5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YPSGG4AGGKWCT4F5.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YPSGG4AGGKWCT4F5.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YPSGG4AGGKWCT4F5.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YPSGG4AGGKWCT4F5.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4202" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YPSGG4AGGKWCT4F5.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "YPSGG4AGGKWCT4F5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YPSGG4AGGKWCT4F5.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "YPSGG4AGGKWCT4F5.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YPSGG4AGGKWCT4F5.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YPSGG4AGGKWCT4F5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YPSGG4AGGKWCT4F5.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YPSGG4AGGKWCT4F5.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2144" + }, + "appliesTo" : [ ] + }, + "YPSGG4AGGKWCT4F5.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YPSGG4AGGKWCT4F5.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YPSGG4AGGKWCT4F5.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YPSGG4AGGKWCT4F5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YPSGG4AGGKWCT4F5.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YPSGG4AGGKWCT4F5.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "JN3KK3Y79A6JZJNG" : { + "JN3KK3Y79A6JZJNG.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "JN3KK3Y79A6JZJNG", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "JN3KK3Y79A6JZJNG.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "JN3KK3Y79A6JZJNG.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "JN3KK3Y79A6JZJNG.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "JN3KK3Y79A6JZJNG", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "JN3KK3Y79A6JZJNG.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "JN3KK3Y79A6JZJNG.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1356" + }, + "appliesTo" : [ ] + }, + "JN3KK3Y79A6JZJNG.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "JN3KK3Y79A6JZJNG.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "JN3KK3Y79A6JZJNG.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "JN3KK3Y79A6JZJNG", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JN3KK3Y79A6JZJNG.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "JN3KK3Y79A6JZJNG.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0360000000" + }, + "appliesTo" : [ ] + }, + "JN3KK3Y79A6JZJNG.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "JN3KK3Y79A6JZJNG.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "946" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "JN3KK3Y79A6JZJNG.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "JN3KK3Y79A6JZJNG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JN3KK3Y79A6JZJNG.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "JN3KK3Y79A6JZJNG.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "976" + }, + "appliesTo" : [ ] + }, + "JN3KK3Y79A6JZJNG.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "JN3KK3Y79A6JZJNG.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "JN3KK3Y79A6JZJNG.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "JN3KK3Y79A6JZJNG", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JN3KK3Y79A6JZJNG.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "JN3KK3Y79A6JZJNG.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "JN3KK3Y79A6JZJNG.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "JN3KK3Y79A6JZJNG.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1785" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JN3KK3Y79A6JZJNG.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "JN3KK3Y79A6JZJNG", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "JN3KK3Y79A6JZJNG.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "JN3KK3Y79A6JZJNG.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2272" + }, + "appliesTo" : [ ] + }, + "JN3KK3Y79A6JZJNG.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "JN3KK3Y79A6JZJNG.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "JN3KK3Y79A6JZJNG.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "JN3KK3Y79A6JZJNG", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JN3KK3Y79A6JZJNG.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "JN3KK3Y79A6JZJNG.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "JN3KK3Y79A6JZJNG.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "JN3KK3Y79A6JZJNG", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JN3KK3Y79A6JZJNG.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "JN3KK3Y79A6JZJNG.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "552" + }, + "appliesTo" : [ ] + }, + "JN3KK3Y79A6JZJNG.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "JN3KK3Y79A6JZJNG.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "JN3KK3Y79A6JZJNG.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "JN3KK3Y79A6JZJNG", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "JN3KK3Y79A6JZJNG.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "JN3KK3Y79A6JZJNG.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "889" + }, + "appliesTo" : [ ] + }, + "JN3KK3Y79A6JZJNG.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "JN3KK3Y79A6JZJNG.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JN3KK3Y79A6JZJNG.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "JN3KK3Y79A6JZJNG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JN3KK3Y79A6JZJNG.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "JN3KK3Y79A6JZJNG.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0530000000" + }, + "appliesTo" : [ ] + }, + "JN3KK3Y79A6JZJNG.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "JN3KK3Y79A6JZJNG.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "526" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "JN3KK3Y79A6JZJNG.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "JN3KK3Y79A6JZJNG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JN3KK3Y79A6JZJNG.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "JN3KK3Y79A6JZJNG.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "QPCQXM3E9RSBMMU9" : { + "QPCQXM3E9RSBMMU9.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "QPCQXM3E9RSBMMU9", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "QPCQXM3E9RSBMMU9.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "QPCQXM3E9RSBMMU9.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12858" + }, + "appliesTo" : [ ] + }, + "QPCQXM3E9RSBMMU9.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "QPCQXM3E9RSBMMU9.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QPCQXM3E9RSBMMU9.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "QPCQXM3E9RSBMMU9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QPCQXM3E9RSBMMU9.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "QPCQXM3E9RSBMMU9.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1988" + }, + "appliesTo" : [ ] + }, + "QPCQXM3E9RSBMMU9.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "QPCQXM3E9RSBMMU9.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QPCQXM3E9RSBMMU9.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "QPCQXM3E9RSBMMU9", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "QPCQXM3E9RSBMMU9.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "QPCQXM3E9RSBMMU9.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QPCQXM3E9RSBMMU9.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "QPCQXM3E9RSBMMU9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QPCQXM3E9RSBMMU9.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "QPCQXM3E9RSBMMU9.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5035" + }, + "appliesTo" : [ ] + }, + "QPCQXM3E9RSBMMU9.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "QPCQXM3E9RSBMMU9.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QPCQXM3E9RSBMMU9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QPCQXM3E9RSBMMU9", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "QPCQXM3E9RSBMMU9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QPCQXM3E9RSBMMU9.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QPCQXM3E9RSBMMU9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QPCQXM3E9RSBMMU9", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "QPCQXM3E9RSBMMU9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QPCQXM3E9RSBMMU9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4626" + }, + "appliesTo" : [ ] + }, + "QPCQXM3E9RSBMMU9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QPCQXM3E9RSBMMU9.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QPCQXM3E9RSBMMU9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QPCQXM3E9RSBMMU9", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "QPCQXM3E9RSBMMU9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QPCQXM3E9RSBMMU9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2261" + }, + "appliesTo" : [ ] + }, + "QPCQXM3E9RSBMMU9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QPCQXM3E9RSBMMU9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QPCQXM3E9RSBMMU9.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "QPCQXM3E9RSBMMU9", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "QPCQXM3E9RSBMMU9.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "QPCQXM3E9RSBMMU9.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6105" + }, + "appliesTo" : [ ] + }, + "QPCQXM3E9RSBMMU9.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "QPCQXM3E9RSBMMU9.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QPCQXM3E9RSBMMU9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QPCQXM3E9RSBMMU9", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "QPCQXM3E9RSBMMU9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QPCQXM3E9RSBMMU9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QPCQXM3E9RSBMMU9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QPCQXM3E9RSBMMU9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10275" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QPCQXM3E9RSBMMU9.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "QPCQXM3E9RSBMMU9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QPCQXM3E9RSBMMU9.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "QPCQXM3E9RSBMMU9.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QPCQXM3E9RSBMMU9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QPCQXM3E9RSBMMU9", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "QPCQXM3E9RSBMMU9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QPCQXM3E9RSBMMU9.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2510000000" + }, + "appliesTo" : [ ] + }, + "QPCQXM3E9RSBMMU9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QPCQXM3E9RSBMMU9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4318" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "58HUPRT96M5H8VUW" : { + "58HUPRT96M5H8VUW.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "58HUPRT96M5H8VUW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "58HUPRT96M5H8VUW.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "58HUPRT96M5H8VUW.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "58HUPRT96M5H8VUW.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "58HUPRT96M5H8VUW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "58HUPRT96M5H8VUW.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "58HUPRT96M5H8VUW.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2947" + }, + "appliesTo" : [ ] + }, + "58HUPRT96M5H8VUW.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "58HUPRT96M5H8VUW.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "58HUPRT96M5H8VUW.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "58HUPRT96M5H8VUW", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "58HUPRT96M5H8VUW.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "58HUPRT96M5H8VUW.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2562" + }, + "appliesTo" : [ ] + }, + "58HUPRT96M5H8VUW.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "58HUPRT96M5H8VUW.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "58HUPRT96M5H8VUW.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "58HUPRT96M5H8VUW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "58HUPRT96M5H8VUW.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "58HUPRT96M5H8VUW.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "58HUPRT96M5H8VUW.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "58HUPRT96M5H8VUW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "58HUPRT96M5H8VUW.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "58HUPRT96M5H8VUW.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5775" + }, + "appliesTo" : [ ] + }, + "58HUPRT96M5H8VUW.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "58HUPRT96M5H8VUW.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "58HUPRT96M5H8VUW.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "58HUPRT96M5H8VUW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "58HUPRT96M5H8VUW.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "58HUPRT96M5H8VUW.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "58HUPRT96M5H8VUW.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "58HUPRT96M5H8VUW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "58HUPRT96M5H8VUW.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "58HUPRT96M5H8VUW.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12588" + }, + "appliesTo" : [ ] + }, + "58HUPRT96M5H8VUW.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "58HUPRT96M5H8VUW.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "58HUPRT96M5H8VUW.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "58HUPRT96M5H8VUW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "58HUPRT96M5H8VUW.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "58HUPRT96M5H8VUW.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6422" + }, + "appliesTo" : [ ] + }, + "58HUPRT96M5H8VUW.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "58HUPRT96M5H8VUW.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "58HUPRT96M5H8VUW.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "58HUPRT96M5H8VUW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "58HUPRT96M5H8VUW.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "58HUPRT96M5H8VUW.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5584" + }, + "appliesTo" : [ ] + }, + "58HUPRT96M5H8VUW.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "58HUPRT96M5H8VUW.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "58HUPRT96M5H8VUW.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "58HUPRT96M5H8VUW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "58HUPRT96M5H8VUW.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "58HUPRT96M5H8VUW.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "58HUPRT96M5H8VUW.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "58HUPRT96M5H8VUW", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "58HUPRT96M5H8VUW.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "58HUPRT96M5H8VUW.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10499" + }, + "appliesTo" : [ ] + }, + "58HUPRT96M5H8VUW.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "58HUPRT96M5H8VUW.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "58HUPRT96M5H8VUW.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "58HUPRT96M5H8VUW", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "58HUPRT96M5H8VUW.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "58HUPRT96M5H8VUW.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5022" + }, + "appliesTo" : [ ] + }, + "58HUPRT96M5H8VUW.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "58HUPRT96M5H8VUW.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "F7H92E3N3TN52552" : { + "F7H92E3N3TN52552.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "F7H92E3N3TN52552", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "F7H92E3N3TN52552.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "F7H92E3N3TN52552.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "393" + }, + "appliesTo" : [ ] + }, + "F7H92E3N3TN52552.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "F7H92E3N3TN52552.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "F7H92E3N3TN52552.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "F7H92E3N3TN52552", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "F7H92E3N3TN52552.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "F7H92E3N3TN52552.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "199" + }, + "appliesTo" : [ ] + }, + "F7H92E3N3TN52552.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "F7H92E3N3TN52552.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0227000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "F7H92E3N3TN52552.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "F7H92E3N3TN52552", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "F7H92E3N3TN52552.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "F7H92E3N3TN52552.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "217" + }, + "appliesTo" : [ ] + }, + "F7H92E3N3TN52552.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "F7H92E3N3TN52552.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0247000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "F7H92E3N3TN52552.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "F7H92E3N3TN52552", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "F7H92E3N3TN52552.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "F7H92E3N3TN52552.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0511000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "F7H92E3N3TN52552.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "F7H92E3N3TN52552", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "F7H92E3N3TN52552.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "F7H92E3N3TN52552.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "F7H92E3N3TN52552.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "F7H92E3N3TN52552.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1023" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "F7H92E3N3TN52552.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "F7H92E3N3TN52552", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "F7H92E3N3TN52552.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "F7H92E3N3TN52552.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "859" + }, + "appliesTo" : [ ] + }, + "F7H92E3N3TN52552.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "F7H92E3N3TN52552.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "F7H92E3N3TN52552.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "F7H92E3N3TN52552", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "F7H92E3N3TN52552.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "F7H92E3N3TN52552.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "F7H92E3N3TN52552.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "F7H92E3N3TN52552", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "F7H92E3N3TN52552.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "F7H92E3N3TN52552.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "546" + }, + "appliesTo" : [ ] + }, + "F7H92E3N3TN52552.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "F7H92E3N3TN52552.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "F7H92E3N3TN52552.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "F7H92E3N3TN52552", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "F7H92E3N3TN52552.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "F7H92E3N3TN52552.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "F7H92E3N3TN52552.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "F7H92E3N3TN52552.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "428" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "F7H92E3N3TN52552.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "F7H92E3N3TN52552", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "F7H92E3N3TN52552.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "F7H92E3N3TN52552.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0197000000" + }, + "appliesTo" : [ ] + }, + "F7H92E3N3TN52552.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "F7H92E3N3TN52552.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "517" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "F7H92E3N3TN52552.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "F7H92E3N3TN52552", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "F7H92E3N3TN52552.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "F7H92E3N3TN52552.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0467000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "F7H92E3N3TN52552.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "F7H92E3N3TN52552", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "F7H92E3N3TN52552.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "F7H92E3N3TN52552.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0411000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "VKHDPS8VTZRT43GD" : { + "VKHDPS8VTZRT43GD.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "VKHDPS8VTZRT43GD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VKHDPS8VTZRT43GD.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "VKHDPS8VTZRT43GD.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38761" + }, + "appliesTo" : [ ] + }, + "VKHDPS8VTZRT43GD.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "VKHDPS8VTZRT43GD.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VKHDPS8VTZRT43GD.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "VKHDPS8VTZRT43GD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VKHDPS8VTZRT43GD.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "VKHDPS8VTZRT43GD.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VKHDPS8VTZRT43GD.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "VKHDPS8VTZRT43GD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VKHDPS8VTZRT43GD.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "VKHDPS8VTZRT43GD.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VKHDPS8VTZRT43GD.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "VKHDPS8VTZRT43GD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VKHDPS8VTZRT43GD.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "VKHDPS8VTZRT43GD.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VKHDPS8VTZRT43GD.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "VKHDPS8VTZRT43GD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VKHDPS8VTZRT43GD.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "VKHDPS8VTZRT43GD.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14944" + }, + "appliesTo" : [ ] + }, + "VKHDPS8VTZRT43GD.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "VKHDPS8VTZRT43GD.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VKHDPS8VTZRT43GD.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "VKHDPS8VTZRT43GD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VKHDPS8VTZRT43GD.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "VKHDPS8VTZRT43GD.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VKHDPS8VTZRT43GD.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "VKHDPS8VTZRT43GD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VKHDPS8VTZRT43GD.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "VKHDPS8VTZRT43GD.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6370000000" + }, + "appliesTo" : [ ] + }, + "VKHDPS8VTZRT43GD.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "VKHDPS8VTZRT43GD.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14341" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VKHDPS8VTZRT43GD.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "VKHDPS8VTZRT43GD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VKHDPS8VTZRT43GD.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "VKHDPS8VTZRT43GD.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "79535" + }, + "appliesTo" : [ ] + }, + "VKHDPS8VTZRT43GD.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "VKHDPS8VTZRT43GD.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VKHDPS8VTZRT43GD.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "VKHDPS8VTZRT43GD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VKHDPS8VTZRT43GD.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "VKHDPS8VTZRT43GD.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29703" + }, + "appliesTo" : [ ] + }, + "VKHDPS8VTZRT43GD.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "VKHDPS8VTZRT43GD.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VKHDPS8VTZRT43GD.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "VKHDPS8VTZRT43GD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VKHDPS8VTZRT43GD.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "VKHDPS8VTZRT43GD.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "76586" + }, + "appliesTo" : [ ] + }, + "VKHDPS8VTZRT43GD.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "VKHDPS8VTZRT43GD.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VKHDPS8VTZRT43GD.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "VKHDPS8VTZRT43GD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VKHDPS8VTZRT43GD.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "VKHDPS8VTZRT43GD.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39947" + }, + "appliesTo" : [ ] + }, + "VKHDPS8VTZRT43GD.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "VKHDPS8VTZRT43GD.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VKHDPS8VTZRT43GD.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "VKHDPS8VTZRT43GD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VKHDPS8VTZRT43GD.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "VKHDPS8VTZRT43GD.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28521" + }, + "appliesTo" : [ ] + }, + "VKHDPS8VTZRT43GD.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "VKHDPS8VTZRT43GD.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "FUPZEHMJB57T55W6" : { + "FUPZEHMJB57T55W6.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "FUPZEHMJB57T55W6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FUPZEHMJB57T55W6.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "FUPZEHMJB57T55W6.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FUPZEHMJB57T55W6.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "FUPZEHMJB57T55W6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FUPZEHMJB57T55W6.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "FUPZEHMJB57T55W6.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1997" + }, + "appliesTo" : [ ] + }, + "FUPZEHMJB57T55W6.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "FUPZEHMJB57T55W6.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FUPZEHMJB57T55W6.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "FUPZEHMJB57T55W6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FUPZEHMJB57T55W6.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "FUPZEHMJB57T55W6.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FUPZEHMJB57T55W6.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "FUPZEHMJB57T55W6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FUPZEHMJB57T55W6.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "FUPZEHMJB57T55W6.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6675" + }, + "appliesTo" : [ ] + }, + "FUPZEHMJB57T55W6.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "FUPZEHMJB57T55W6.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FUPZEHMJB57T55W6.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "FUPZEHMJB57T55W6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FUPZEHMJB57T55W6.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "FUPZEHMJB57T55W6.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3153" + }, + "appliesTo" : [ ] + }, + "FUPZEHMJB57T55W6.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "FUPZEHMJB57T55W6.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FUPZEHMJB57T55W6.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "FUPZEHMJB57T55W6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FUPZEHMJB57T55W6.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "FUPZEHMJB57T55W6.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1733" + }, + "appliesTo" : [ ] + }, + "FUPZEHMJB57T55W6.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "FUPZEHMJB57T55W6.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FUPZEHMJB57T55W6.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "FUPZEHMJB57T55W6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FUPZEHMJB57T55W6.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "FUPZEHMJB57T55W6.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2890" + }, + "appliesTo" : [ ] + }, + "FUPZEHMJB57T55W6.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "FUPZEHMJB57T55W6.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FUPZEHMJB57T55W6.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "FUPZEHMJB57T55W6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FUPZEHMJB57T55W6.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "FUPZEHMJB57T55W6.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FUPZEHMJB57T55W6.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "FUPZEHMJB57T55W6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FUPZEHMJB57T55W6.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "FUPZEHMJB57T55W6.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FUPZEHMJB57T55W6.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "FUPZEHMJB57T55W6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FUPZEHMJB57T55W6.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "FUPZEHMJB57T55W6.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "894" + }, + "appliesTo" : [ ] + }, + "FUPZEHMJB57T55W6.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "FUPZEHMJB57T55W6.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FUPZEHMJB57T55W6.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "FUPZEHMJB57T55W6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FUPZEHMJB57T55W6.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "FUPZEHMJB57T55W6.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1028" + }, + "appliesTo" : [ ] + }, + "FUPZEHMJB57T55W6.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "FUPZEHMJB57T55W6.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FUPZEHMJB57T55W6.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "FUPZEHMJB57T55W6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FUPZEHMJB57T55W6.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "FUPZEHMJB57T55W6.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7331" + }, + "appliesTo" : [ ] + }, + "FUPZEHMJB57T55W6.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "FUPZEHMJB57T55W6.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "GAMAEGQGHSWC95UR" : { + "GAMAEGQGHSWC95UR.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "GAMAEGQGHSWC95UR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GAMAEGQGHSWC95UR.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "GAMAEGQGHSWC95UR.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "36267" + }, + "appliesTo" : [ ] + }, + "GAMAEGQGHSWC95UR.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "GAMAEGQGHSWC95UR.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GAMAEGQGHSWC95UR.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "GAMAEGQGHSWC95UR", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "GAMAEGQGHSWC95UR.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "GAMAEGQGHSWC95UR.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5470000000" + }, + "appliesTo" : [ ] + }, + "GAMAEGQGHSWC95UR.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "GAMAEGQGHSWC95UR.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13553" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GAMAEGQGHSWC95UR.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "GAMAEGQGHSWC95UR", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "GAMAEGQGHSWC95UR.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "GAMAEGQGHSWC95UR.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26823" + }, + "appliesTo" : [ ] + }, + "GAMAEGQGHSWC95UR.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "GAMAEGQGHSWC95UR.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GAMAEGQGHSWC95UR.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "GAMAEGQGHSWC95UR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GAMAEGQGHSWC95UR.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "GAMAEGQGHSWC95UR.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GAMAEGQGHSWC95UR.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "GAMAEGQGHSWC95UR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GAMAEGQGHSWC95UR.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "GAMAEGQGHSWC95UR.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "66431" + }, + "appliesTo" : [ ] + }, + "GAMAEGQGHSWC95UR.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "GAMAEGQGHSWC95UR.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GAMAEGQGHSWC95UR.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "GAMAEGQGHSWC95UR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GAMAEGQGHSWC95UR.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "GAMAEGQGHSWC95UR.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29007" + }, + "appliesTo" : [ ] + }, + "GAMAEGQGHSWC95UR.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "GAMAEGQGHSWC95UR.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "GAMAEGQGHSWC95UR.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "GAMAEGQGHSWC95UR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GAMAEGQGHSWC95UR.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "GAMAEGQGHSWC95UR.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "GAMAEGQGHSWC95UR.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "GAMAEGQGHSWC95UR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GAMAEGQGHSWC95UR.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "GAMAEGQGHSWC95UR.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14668" + }, + "appliesTo" : [ ] + }, + "GAMAEGQGHSWC95UR.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "GAMAEGQGHSWC95UR.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GAMAEGQGHSWC95UR.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "GAMAEGQGHSWC95UR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GAMAEGQGHSWC95UR.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "GAMAEGQGHSWC95UR.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GAMAEGQGHSWC95UR.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "GAMAEGQGHSWC95UR", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "GAMAEGQGHSWC95UR.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "GAMAEGQGHSWC95UR.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34101" + }, + "appliesTo" : [ ] + }, + "GAMAEGQGHSWC95UR.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "GAMAEGQGHSWC95UR.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GAMAEGQGHSWC95UR.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "GAMAEGQGHSWC95UR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GAMAEGQGHSWC95UR.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "GAMAEGQGHSWC95UR.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "71856" + }, + "appliesTo" : [ ] + }, + "GAMAEGQGHSWC95UR.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "GAMAEGQGHSWC95UR.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "GAMAEGQGHSWC95UR.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "GAMAEGQGHSWC95UR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GAMAEGQGHSWC95UR.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "GAMAEGQGHSWC95UR.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "BYRRQU7P3FHKBRZR" : { + "BYRRQU7P3FHKBRZR.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "BYRRQU7P3FHKBRZR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BYRRQU7P3FHKBRZR.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "BYRRQU7P3FHKBRZR.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BYRRQU7P3FHKBRZR.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "BYRRQU7P3FHKBRZR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BYRRQU7P3FHKBRZR.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "BYRRQU7P3FHKBRZR.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2144" + }, + "appliesTo" : [ ] + }, + "BYRRQU7P3FHKBRZR.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "BYRRQU7P3FHKBRZR.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BYRRQU7P3FHKBRZR.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "BYRRQU7P3FHKBRZR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "BYRRQU7P3FHKBRZR.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "BYRRQU7P3FHKBRZR.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BYRRQU7P3FHKBRZR.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "BYRRQU7P3FHKBRZR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BYRRQU7P3FHKBRZR.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "BYRRQU7P3FHKBRZR.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4248" + }, + "appliesTo" : [ ] + }, + "BYRRQU7P3FHKBRZR.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "BYRRQU7P3FHKBRZR.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BYRRQU7P3FHKBRZR.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "BYRRQU7P3FHKBRZR", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "BYRRQU7P3FHKBRZR.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "BYRRQU7P3FHKBRZR.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2005" + }, + "appliesTo" : [ ] + }, + "BYRRQU7P3FHKBRZR.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "BYRRQU7P3FHKBRZR.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BYRRQU7P3FHKBRZR.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "BYRRQU7P3FHKBRZR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "BYRRQU7P3FHKBRZR.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "BYRRQU7P3FHKBRZR.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10848" + }, + "appliesTo" : [ ] + }, + "BYRRQU7P3FHKBRZR.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "BYRRQU7P3FHKBRZR.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BYRRQU7P3FHKBRZR.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "BYRRQU7P3FHKBRZR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "BYRRQU7P3FHKBRZR.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "BYRRQU7P3FHKBRZR.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10170" + }, + "appliesTo" : [ ] + }, + "BYRRQU7P3FHKBRZR.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "BYRRQU7P3FHKBRZR.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BYRRQU7P3FHKBRZR.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "BYRRQU7P3FHKBRZR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "BYRRQU7P3FHKBRZR.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "BYRRQU7P3FHKBRZR.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BYRRQU7P3FHKBRZR.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "BYRRQU7P3FHKBRZR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "BYRRQU7P3FHKBRZR.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "BYRRQU7P3FHKBRZR.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BYRRQU7P3FHKBRZR.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "BYRRQU7P3FHKBRZR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "BYRRQU7P3FHKBRZR.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "BYRRQU7P3FHKBRZR.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3975" + }, + "appliesTo" : [ ] + }, + "BYRRQU7P3FHKBRZR.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "BYRRQU7P3FHKBRZR.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BYRRQU7P3FHKBRZR.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "BYRRQU7P3FHKBRZR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "BYRRQU7P3FHKBRZR.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "BYRRQU7P3FHKBRZR.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5466" + }, + "appliesTo" : [ ] + }, + "BYRRQU7P3FHKBRZR.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "BYRRQU7P3FHKBRZR.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BYRRQU7P3FHKBRZR.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "BYRRQU7P3FHKBRZR", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "BYRRQU7P3FHKBRZR.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "BYRRQU7P3FHKBRZR.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5196" + }, + "appliesTo" : [ ] + }, + "BYRRQU7P3FHKBRZR.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "BYRRQU7P3FHKBRZR.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "QNZG4DHQSZ82BDNJ" : { + "QNZG4DHQSZ82BDNJ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "QNZG4DHQSZ82BDNJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QNZG4DHQSZ82BDNJ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "QNZG4DHQSZ82BDNJ.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QNZG4DHQSZ82BDNJ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "QNZG4DHQSZ82BDNJ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24388" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QNZG4DHQSZ82BDNJ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "QNZG4DHQSZ82BDNJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QNZG4DHQSZ82BDNJ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "QNZG4DHQSZ82BDNJ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QNZG4DHQSZ82BDNJ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QNZG4DHQSZ82BDNJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QNZG4DHQSZ82BDNJ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QNZG4DHQSZ82BDNJ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20457" + }, + "appliesTo" : [ ] + }, + "QNZG4DHQSZ82BDNJ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QNZG4DHQSZ82BDNJ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QNZG4DHQSZ82BDNJ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "QNZG4DHQSZ82BDNJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QNZG4DHQSZ82BDNJ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "QNZG4DHQSZ82BDNJ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0266000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QNZG4DHQSZ82BDNJ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QNZG4DHQSZ82BDNJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QNZG4DHQSZ82BDNJ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QNZG4DHQSZ82BDNJ.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QNZG4DHQSZ82BDNJ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QNZG4DHQSZ82BDNJ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10420" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QNZG4DHQSZ82BDNJ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QNZG4DHQSZ82BDNJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QNZG4DHQSZ82BDNJ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QNZG4DHQSZ82BDNJ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10864" + }, + "appliesTo" : [ ] + }, + "QNZG4DHQSZ82BDNJ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QNZG4DHQSZ82BDNJ.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QNZG4DHQSZ82BDNJ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "QNZG4DHQSZ82BDNJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QNZG4DHQSZ82BDNJ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "QNZG4DHQSZ82BDNJ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12441" + }, + "appliesTo" : [ ] + }, + "QNZG4DHQSZ82BDNJ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "QNZG4DHQSZ82BDNJ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QNZG4DHQSZ82BDNJ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "QNZG4DHQSZ82BDNJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QNZG4DHQSZ82BDNJ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "QNZG4DHQSZ82BDNJ.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4579000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QNZG4DHQSZ82BDNJ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "QNZG4DHQSZ82BDNJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QNZG4DHQSZ82BDNJ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "QNZG4DHQSZ82BDNJ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6120" + }, + "appliesTo" : [ ] + }, + "QNZG4DHQSZ82BDNJ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "QNZG4DHQSZ82BDNJ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6915000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QNZG4DHQSZ82BDNJ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QNZG4DHQSZ82BDNJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QNZG4DHQSZ82BDNJ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QNZG4DHQSZ82BDNJ.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QNZG4DHQSZ82BDNJ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "QNZG4DHQSZ82BDNJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QNZG4DHQSZ82BDNJ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "QNZG4DHQSZ82BDNJ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11940" + }, + "appliesTo" : [ ] + }, + "QNZG4DHQSZ82BDNJ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "QNZG4DHQSZ82BDNJ.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QNZG4DHQSZ82BDNJ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QNZG4DHQSZ82BDNJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QNZG4DHQSZ82BDNJ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QNZG4DHQSZ82BDNJ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6030000000" + }, + "appliesTo" : [ ] + }, + "QNZG4DHQSZ82BDNJ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QNZG4DHQSZ82BDNJ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5344" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "EKUJM8CMFGA8AN48" : { + "EKUJM8CMFGA8AN48.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "EKUJM8CMFGA8AN48", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EKUJM8CMFGA8AN48.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "EKUJM8CMFGA8AN48.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31291" + }, + "appliesTo" : [ ] + }, + "EKUJM8CMFGA8AN48.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "EKUJM8CMFGA8AN48.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EKUJM8CMFGA8AN48.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "EKUJM8CMFGA8AN48", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EKUJM8CMFGA8AN48.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "EKUJM8CMFGA8AN48.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "63035" + }, + "appliesTo" : [ ] + }, + "EKUJM8CMFGA8AN48.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "EKUJM8CMFGA8AN48.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "EKUJM8CMFGA8AN48.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "EKUJM8CMFGA8AN48", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EKUJM8CMFGA8AN48.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "EKUJM8CMFGA8AN48.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "EKUJM8CMFGA8AN48.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "EKUJM8CMFGA8AN48.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "183540" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EKUJM8CMFGA8AN48.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "EKUJM8CMFGA8AN48", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EKUJM8CMFGA8AN48.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "EKUJM8CMFGA8AN48.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "62510" + }, + "appliesTo" : [ ] + }, + "EKUJM8CMFGA8AN48.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "EKUJM8CMFGA8AN48.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EKUJM8CMFGA8AN48.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "EKUJM8CMFGA8AN48", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EKUJM8CMFGA8AN48.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "EKUJM8CMFGA8AN48.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.0210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "EKUJM8CMFGA8AN48.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "EKUJM8CMFGA8AN48", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EKUJM8CMFGA8AN48.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "EKUJM8CMFGA8AN48.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5000000000" + }, + "appliesTo" : [ ] + }, + "EKUJM8CMFGA8AN48.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "EKUJM8CMFGA8AN48.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "91978" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EKUJM8CMFGA8AN48.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "EKUJM8CMFGA8AN48", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EKUJM8CMFGA8AN48.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "EKUJM8CMFGA8AN48.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "92505" + }, + "appliesTo" : [ ] + }, + "EKUJM8CMFGA8AN48.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "EKUJM8CMFGA8AN48.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "EKUJM8CMFGA8AN48.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "EKUJM8CMFGA8AN48", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EKUJM8CMFGA8AN48.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "EKUJM8CMFGA8AN48.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.1640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "EKUJM8CMFGA8AN48.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "EKUJM8CMFGA8AN48", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EKUJM8CMFGA8AN48.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "EKUJM8CMFGA8AN48.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31559" + }, + "appliesTo" : [ ] + }, + "EKUJM8CMFGA8AN48.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "EKUJM8CMFGA8AN48.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "EKUJM8CMFGA8AN48.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "EKUJM8CMFGA8AN48", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EKUJM8CMFGA8AN48.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "EKUJM8CMFGA8AN48.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.2290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "EKUJM8CMFGA8AN48.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "EKUJM8CMFGA8AN48", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EKUJM8CMFGA8AN48.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "EKUJM8CMFGA8AN48.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "184850" + }, + "appliesTo" : [ ] + }, + "EKUJM8CMFGA8AN48.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "EKUJM8CMFGA8AN48.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "EKUJM8CMFGA8AN48.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "EKUJM8CMFGA8AN48", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EKUJM8CMFGA8AN48.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "EKUJM8CMFGA8AN48.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.0640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "2HFR6K6Q9KU8Q5YK" : { + "2HFR6K6Q9KU8Q5YK.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "2HFR6K6Q9KU8Q5YK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2HFR6K6Q9KU8Q5YK.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "2HFR6K6Q9KU8Q5YK.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2596000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2HFR6K6Q9KU8Q5YK.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "2HFR6K6Q9KU8Q5YK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2HFR6K6Q9KU8Q5YK.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "2HFR6K6Q9KU8Q5YK.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1117" + }, + "appliesTo" : [ ] + }, + "2HFR6K6Q9KU8Q5YK.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "2HFR6K6Q9KU8Q5YK.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1275000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2HFR6K6Q9KU8Q5YK.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "2HFR6K6Q9KU8Q5YK", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "2HFR6K6Q9KU8Q5YK.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "2HFR6K6Q9KU8Q5YK.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2113" + }, + "appliesTo" : [ ] + }, + "2HFR6K6Q9KU8Q5YK.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "2HFR6K6Q9KU8Q5YK.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2HFR6K6Q9KU8Q5YK.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "2HFR6K6Q9KU8Q5YK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2HFR6K6Q9KU8Q5YK.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "2HFR6K6Q9KU8Q5YK.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2943" + }, + "appliesTo" : [ ] + }, + "2HFR6K6Q9KU8Q5YK.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "2HFR6K6Q9KU8Q5YK.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2HFR6K6Q9KU8Q5YK.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "2HFR6K6Q9KU8Q5YK", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "2HFR6K6Q9KU8Q5YK.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "2HFR6K6Q9KU8Q5YK.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1080000000" + }, + "appliesTo" : [ ] + }, + "2HFR6K6Q9KU8Q5YK.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "2HFR6K6Q9KU8Q5YK.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2841" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2HFR6K6Q9KU8Q5YK.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "2HFR6K6Q9KU8Q5YK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2HFR6K6Q9KU8Q5YK.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "2HFR6K6Q9KU8Q5YK.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2218" + }, + "appliesTo" : [ ] + }, + "2HFR6K6Q9KU8Q5YK.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "2HFR6K6Q9KU8Q5YK.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2HFR6K6Q9KU8Q5YK.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "2HFR6K6Q9KU8Q5YK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2HFR6K6Q9KU8Q5YK.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "2HFR6K6Q9KU8Q5YK.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2202000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2HFR6K6Q9KU8Q5YK.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "2HFR6K6Q9KU8Q5YK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2HFR6K6Q9KU8Q5YK.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "2HFR6K6Q9KU8Q5YK.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "2HFR6K6Q9KU8Q5YK.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "2HFR6K6Q9KU8Q5YK.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5598" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2HFR6K6Q9KU8Q5YK.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "2HFR6K6Q9KU8Q5YK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2HFR6K6Q9KU8Q5YK.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "2HFR6K6Q9KU8Q5YK.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2288000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2HFR6K6Q9KU8Q5YK.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "2HFR6K6Q9KU8Q5YK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2HFR6K6Q9KU8Q5YK.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "2HFR6K6Q9KU8Q5YK.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5853" + }, + "appliesTo" : [ ] + }, + "2HFR6K6Q9KU8Q5YK.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "2HFR6K6Q9KU8Q5YK.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2HFR6K6Q9KU8Q5YK.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "2HFR6K6Q9KU8Q5YK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2HFR6K6Q9KU8Q5YK.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "2HFR6K6Q9KU8Q5YK.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2HFR6K6Q9KU8Q5YK.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "2HFR6K6Q9KU8Q5YK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2HFR6K6Q9KU8Q5YK.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "2HFR6K6Q9KU8Q5YK.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1063" + }, + "appliesTo" : [ ] + }, + "2HFR6K6Q9KU8Q5YK.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "2HFR6K6Q9KU8Q5YK.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "E7FZJRV7JXQJXFED" : { + "E7FZJRV7JXQJXFED.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "E7FZJRV7JXQJXFED", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "E7FZJRV7JXQJXFED.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "E7FZJRV7JXQJXFED.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12427" + }, + "appliesTo" : [ ] + }, + "E7FZJRV7JXQJXFED.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "E7FZJRV7JXQJXFED.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "E7FZJRV7JXQJXFED.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "E7FZJRV7JXQJXFED", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "E7FZJRV7JXQJXFED.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "E7FZJRV7JXQJXFED.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5069" + }, + "appliesTo" : [ ] + }, + "E7FZJRV7JXQJXFED.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "E7FZJRV7JXQJXFED.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "E7FZJRV7JXQJXFED.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "E7FZJRV7JXQJXFED", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "E7FZJRV7JXQJXFED.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "E7FZJRV7JXQJXFED.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "E7FZJRV7JXQJXFED.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "E7FZJRV7JXQJXFED", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "E7FZJRV7JXQJXFED.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "E7FZJRV7JXQJXFED.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "E7FZJRV7JXQJXFED.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "E7FZJRV7JXQJXFED.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35846" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "E7FZJRV7JXQJXFED.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "E7FZJRV7JXQJXFED", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "E7FZJRV7JXQJXFED.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "E7FZJRV7JXQJXFED.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "E7FZJRV7JXQJXFED.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "E7FZJRV7JXQJXFED.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14408" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "E7FZJRV7JXQJXFED.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "E7FZJRV7JXQJXFED", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "E7FZJRV7JXQJXFED.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "E7FZJRV7JXQJXFED.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7260" + }, + "appliesTo" : [ ] + }, + "E7FZJRV7JXQJXFED.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "E7FZJRV7JXQJXFED.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "E7FZJRV7JXQJXFED.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "E7FZJRV7JXQJXFED", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "E7FZJRV7JXQJXFED.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "E7FZJRV7JXQJXFED.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "E7FZJRV7JXQJXFED.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "E7FZJRV7JXQJXFED", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "E7FZJRV7JXQJXFED.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "E7FZJRV7JXQJXFED.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "E7FZJRV7JXQJXFED.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "E7FZJRV7JXQJXFED", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "E7FZJRV7JXQJXFED.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "E7FZJRV7JXQJXFED.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29063" + }, + "appliesTo" : [ ] + }, + "E7FZJRV7JXQJXFED.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "E7FZJRV7JXQJXFED.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "E7FZJRV7JXQJXFED.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "E7FZJRV7JXQJXFED", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "E7FZJRV7JXQJXFED.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "E7FZJRV7JXQJXFED.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12360" + }, + "appliesTo" : [ ] + }, + "E7FZJRV7JXQJXFED.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "E7FZJRV7JXQJXFED.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "E7FZJRV7JXQJXFED.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "E7FZJRV7JXQJXFED", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "E7FZJRV7JXQJXFED.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "E7FZJRV7JXQJXFED.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14346" + }, + "appliesTo" : [ ] + }, + "E7FZJRV7JXQJXFED.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "E7FZJRV7JXQJXFED.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "F3MSPCKJ74QTGZ7J" : { + "F3MSPCKJ74QTGZ7J.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "F3MSPCKJ74QTGZ7J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "F3MSPCKJ74QTGZ7J.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "F3MSPCKJ74QTGZ7J.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2657000000" + }, + "appliesTo" : [ ] + }, + "F3MSPCKJ74QTGZ7J.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "F3MSPCKJ74QTGZ7J.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1189" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "F3MSPCKJ74QTGZ7J.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "F3MSPCKJ74QTGZ7J", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "F3MSPCKJ74QTGZ7J.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "F3MSPCKJ74QTGZ7J.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3778000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "F3MSPCKJ74QTGZ7J.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "F3MSPCKJ74QTGZ7J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "F3MSPCKJ74QTGZ7J.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "F3MSPCKJ74QTGZ7J.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "F3MSPCKJ74QTGZ7J.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "F3MSPCKJ74QTGZ7J", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "F3MSPCKJ74QTGZ7J.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "F3MSPCKJ74QTGZ7J.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2418" + }, + "appliesTo" : [ ] + }, + "F3MSPCKJ74QTGZ7J.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "F3MSPCKJ74QTGZ7J.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "F3MSPCKJ74QTGZ7J.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "F3MSPCKJ74QTGZ7J", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "F3MSPCKJ74QTGZ7J.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "F3MSPCKJ74QTGZ7J.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2102" + }, + "appliesTo" : [ ] + }, + "F3MSPCKJ74QTGZ7J.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "F3MSPCKJ74QTGZ7J.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "F3MSPCKJ74QTGZ7J.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "F3MSPCKJ74QTGZ7J", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "F3MSPCKJ74QTGZ7J.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "F3MSPCKJ74QTGZ7J.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3287000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "F3MSPCKJ74QTGZ7J.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "F3MSPCKJ74QTGZ7J", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "F3MSPCKJ74QTGZ7J.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "F3MSPCKJ74QTGZ7J.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "F3MSPCKJ74QTGZ7J.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "F3MSPCKJ74QTGZ7J.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3165" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "F3MSPCKJ74QTGZ7J.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "F3MSPCKJ74QTGZ7J", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "F3MSPCKJ74QTGZ7J.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "F3MSPCKJ74QTGZ7J.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "F3MSPCKJ74QTGZ7J.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "F3MSPCKJ74QTGZ7J.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7369" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "F3MSPCKJ74QTGZ7J.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "F3MSPCKJ74QTGZ7J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "F3MSPCKJ74QTGZ7J.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "F3MSPCKJ74QTGZ7J.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3469" + }, + "appliesTo" : [ ] + }, + "F3MSPCKJ74QTGZ7J.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "F3MSPCKJ74QTGZ7J.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "F3MSPCKJ74QTGZ7J.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "F3MSPCKJ74QTGZ7J", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "F3MSPCKJ74QTGZ7J.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "F3MSPCKJ74QTGZ7J.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1034" + }, + "appliesTo" : [ ] + }, + "F3MSPCKJ74QTGZ7J.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "F3MSPCKJ74QTGZ7J.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "F3MSPCKJ74QTGZ7J.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "F3MSPCKJ74QTGZ7J", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "F3MSPCKJ74QTGZ7J.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "F3MSPCKJ74QTGZ7J.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8155" + }, + "appliesTo" : [ ] + }, + "F3MSPCKJ74QTGZ7J.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "F3MSPCKJ74QTGZ7J.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "F3MSPCKJ74QTGZ7J.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "F3MSPCKJ74QTGZ7J", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "F3MSPCKJ74QTGZ7J.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "F3MSPCKJ74QTGZ7J.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3028000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "UHM8B3D5UY4TJ8DU" : { + "UHM8B3D5UY4TJ8DU.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "UHM8B3D5UY4TJ8DU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "UHM8B3D5UY4TJ8DU.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "UHM8B3D5UY4TJ8DU.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7376000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "UHM8B3D5UY4TJ8DU.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "UHM8B3D5UY4TJ8DU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UHM8B3D5UY4TJ8DU.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "UHM8B3D5UY4TJ8DU.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16525" + }, + "appliesTo" : [ ] + }, + "UHM8B3D5UY4TJ8DU.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "UHM8B3D5UY4TJ8DU.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8864000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "UHM8B3D5UY4TJ8DU.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "UHM8B3D5UY4TJ8DU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UHM8B3D5UY4TJ8DU.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "UHM8B3D5UY4TJ8DU.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "UHM8B3D5UY4TJ8DU.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "UHM8B3D5UY4TJ8DU", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "UHM8B3D5UY4TJ8DU.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "UHM8B3D5UY4TJ8DU.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47330" + }, + "appliesTo" : [ ] + }, + "UHM8B3D5UY4TJ8DU.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "UHM8B3D5UY4TJ8DU.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "UHM8B3D5UY4TJ8DU.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "UHM8B3D5UY4TJ8DU", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "UHM8B3D5UY4TJ8DU.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "UHM8B3D5UY4TJ8DU.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "94292" + }, + "appliesTo" : [ ] + }, + "UHM8B3D5UY4TJ8DU.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "UHM8B3D5UY4TJ8DU.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "UHM8B3D5UY4TJ8DU.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "UHM8B3D5UY4TJ8DU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "UHM8B3D5UY4TJ8DU.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "UHM8B3D5UY4TJ8DU.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6576000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "UHM8B3D5UY4TJ8DU.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "UHM8B3D5UY4TJ8DU", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "UHM8B3D5UY4TJ8DU.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "UHM8B3D5UY4TJ8DU.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32517" + }, + "appliesTo" : [ ] + }, + "UHM8B3D5UY4TJ8DU.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "UHM8B3D5UY4TJ8DU.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "UHM8B3D5UY4TJ8DU.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "UHM8B3D5UY4TJ8DU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UHM8B3D5UY4TJ8DU.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "UHM8B3D5UY4TJ8DU.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "UHM8B3D5UY4TJ8DU.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "UHM8B3D5UY4TJ8DU.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32979" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "UHM8B3D5UY4TJ8DU.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "UHM8B3D5UY4TJ8DU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "UHM8B3D5UY4TJ8DU.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "UHM8B3D5UY4TJ8DU.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47779" + }, + "appliesTo" : [ ] + }, + "UHM8B3D5UY4TJ8DU.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "UHM8B3D5UY4TJ8DU.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8181000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "UHM8B3D5UY4TJ8DU.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "UHM8B3D5UY4TJ8DU", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "UHM8B3D5UY4TJ8DU.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "UHM8B3D5UY4TJ8DU.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8600000000" + }, + "appliesTo" : [ ] + }, + "UHM8B3D5UY4TJ8DU.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "UHM8B3D5UY4TJ8DU.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16289" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "UHM8B3D5UY4TJ8DU.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "UHM8B3D5UY4TJ8DU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "UHM8B3D5UY4TJ8DU.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "UHM8B3D5UY4TJ8DU.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "95418" + }, + "appliesTo" : [ ] + }, + "UHM8B3D5UY4TJ8DU.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "UHM8B3D5UY4TJ8DU.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "UHM8B3D5UY4TJ8DU.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "UHM8B3D5UY4TJ8DU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "UHM8B3D5UY4TJ8DU.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "UHM8B3D5UY4TJ8DU.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6199000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "R7PB2UQAZQDARZ8X" : { + "R7PB2UQAZQDARZ8X.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "R7PB2UQAZQDARZ8X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R7PB2UQAZQDARZ8X.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "R7PB2UQAZQDARZ8X.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4450000000" + }, + "appliesTo" : [ ] + }, + "R7PB2UQAZQDARZ8X.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "R7PB2UQAZQDARZ8X.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12657" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "R7PB2UQAZQDARZ8X.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "R7PB2UQAZQDARZ8X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R7PB2UQAZQDARZ8X.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "R7PB2UQAZQDARZ8X.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26176" + }, + "appliesTo" : [ ] + }, + "R7PB2UQAZQDARZ8X.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "R7PB2UQAZQDARZ8X.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "R7PB2UQAZQDARZ8X.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "R7PB2UQAZQDARZ8X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R7PB2UQAZQDARZ8X.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "R7PB2UQAZQDARZ8X.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "R7PB2UQAZQDARZ8X.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "R7PB2UQAZQDARZ8X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R7PB2UQAZQDARZ8X.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "R7PB2UQAZQDARZ8X.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46324" + }, + "appliesTo" : [ ] + }, + "R7PB2UQAZQDARZ8X.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "R7PB2UQAZQDARZ8X.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "R7PB2UQAZQDARZ8X.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "R7PB2UQAZQDARZ8X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R7PB2UQAZQDARZ8X.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "R7PB2UQAZQDARZ8X.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24936" + }, + "appliesTo" : [ ] + }, + "R7PB2UQAZQDARZ8X.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "R7PB2UQAZQDARZ8X.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "R7PB2UQAZQDARZ8X.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "R7PB2UQAZQDARZ8X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R7PB2UQAZQDARZ8X.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "R7PB2UQAZQDARZ8X.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24023" + }, + "appliesTo" : [ ] + }, + "R7PB2UQAZQDARZ8X.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "R7PB2UQAZQDARZ8X.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "R7PB2UQAZQDARZ8X.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "R7PB2UQAZQDARZ8X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R7PB2UQAZQDARZ8X.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "R7PB2UQAZQDARZ8X.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "R7PB2UQAZQDARZ8X.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "R7PB2UQAZQDARZ8X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R7PB2UQAZQDARZ8X.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "R7PB2UQAZQDARZ8X.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "R7PB2UQAZQDARZ8X.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "R7PB2UQAZQDARZ8X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R7PB2UQAZQDARZ8X.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "R7PB2UQAZQDARZ8X.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27709" + }, + "appliesTo" : [ ] + }, + "R7PB2UQAZQDARZ8X.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "R7PB2UQAZQDARZ8X.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "R7PB2UQAZQDARZ8X.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "R7PB2UQAZQDARZ8X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R7PB2UQAZQDARZ8X.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "R7PB2UQAZQDARZ8X.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14072" + }, + "appliesTo" : [ ] + }, + "R7PB2UQAZQDARZ8X.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "R7PB2UQAZQDARZ8X.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "R7PB2UQAZQDARZ8X.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "R7PB2UQAZQDARZ8X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R7PB2UQAZQDARZ8X.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "R7PB2UQAZQDARZ8X.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "51692" + }, + "appliesTo" : [ ] + }, + "R7PB2UQAZQDARZ8X.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "R7PB2UQAZQDARZ8X.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "R7PB2UQAZQDARZ8X.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "R7PB2UQAZQDARZ8X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R7PB2UQAZQDARZ8X.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "R7PB2UQAZQDARZ8X.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "55BBGNQ587XXZTH4" : { + "55BBGNQ587XXZTH4.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "55BBGNQ587XXZTH4", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "55BBGNQ587XXZTH4.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "55BBGNQ587XXZTH4.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10880" + }, + "appliesTo" : [ ] + }, + "55BBGNQ587XXZTH4.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "55BBGNQ587XXZTH4.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "55BBGNQ587XXZTH4.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "55BBGNQ587XXZTH4", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "55BBGNQ587XXZTH4.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "55BBGNQ587XXZTH4.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22331" + }, + "appliesTo" : [ ] + }, + "55BBGNQ587XXZTH4.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "55BBGNQ587XXZTH4.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "55BBGNQ587XXZTH4.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "55BBGNQ587XXZTH4", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "55BBGNQ587XXZTH4.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "55BBGNQ587XXZTH4.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12398" + }, + "appliesTo" : [ ] + }, + "55BBGNQ587XXZTH4.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "55BBGNQ587XXZTH4.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "55BBGNQ587XXZTH4.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "55BBGNQ587XXZTH4", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "55BBGNQ587XXZTH4.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "55BBGNQ587XXZTH4.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "55BBGNQ587XXZTH4.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "55BBGNQ587XXZTH4", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "55BBGNQ587XXZTH4.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "55BBGNQ587XXZTH4.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7220" + }, + "appliesTo" : [ ] + }, + "55BBGNQ587XXZTH4.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "55BBGNQ587XXZTH4.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "3SK2R9VZ8N24UV8B" : { + "3SK2R9VZ8N24UV8B.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "3SK2R9VZ8N24UV8B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3SK2R9VZ8N24UV8B.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "3SK2R9VZ8N24UV8B.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2830000000" + }, + "appliesTo" : [ ] + }, + "3SK2R9VZ8N24UV8B.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "3SK2R9VZ8N24UV8B.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11241" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3SK2R9VZ8N24UV8B.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "3SK2R9VZ8N24UV8B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3SK2R9VZ8N24UV8B.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "3SK2R9VZ8N24UV8B.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3SK2R9VZ8N24UV8B.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "3SK2R9VZ8N24UV8B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3SK2R9VZ8N24UV8B.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "3SK2R9VZ8N24UV8B.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20878" + }, + "appliesTo" : [ ] + }, + "3SK2R9VZ8N24UV8B.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "3SK2R9VZ8N24UV8B.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3SK2R9VZ8N24UV8B.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "3SK2R9VZ8N24UV8B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3SK2R9VZ8N24UV8B.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "3SK2R9VZ8N24UV8B.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9370000000" + }, + "appliesTo" : [ ] + }, + "3SK2R9VZ8N24UV8B.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "3SK2R9VZ8N24UV8B.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24626" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3SK2R9VZ8N24UV8B.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "3SK2R9VZ8N24UV8B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3SK2R9VZ8N24UV8B.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "3SK2R9VZ8N24UV8B.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25702" + }, + "appliesTo" : [ ] + }, + "3SK2R9VZ8N24UV8B.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "3SK2R9VZ8N24UV8B.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3SK2R9VZ8N24UV8B.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "3SK2R9VZ8N24UV8B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3SK2R9VZ8N24UV8B.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "3SK2R9VZ8N24UV8B.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3SK2R9VZ8N24UV8B.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "3SK2R9VZ8N24UV8B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3SK2R9VZ8N24UV8B.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "3SK2R9VZ8N24UV8B.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3SK2R9VZ8N24UV8B.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "3SK2R9VZ8N24UV8B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3SK2R9VZ8N24UV8B.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "3SK2R9VZ8N24UV8B.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "3SK2R9VZ8N24UV8B.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "3SK2R9VZ8N24UV8B.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "48391" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3SK2R9VZ8N24UV8B.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "3SK2R9VZ8N24UV8B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3SK2R9VZ8N24UV8B.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "3SK2R9VZ8N24UV8B.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10533" + }, + "appliesTo" : [ ] + }, + "3SK2R9VZ8N24UV8B.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "3SK2R9VZ8N24UV8B.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3SK2R9VZ8N24UV8B.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "3SK2R9VZ8N24UV8B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3SK2R9VZ8N24UV8B.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "3SK2R9VZ8N24UV8B.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "51075" + }, + "appliesTo" : [ ] + }, + "3SK2R9VZ8N24UV8B.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "3SK2R9VZ8N24UV8B.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3SK2R9VZ8N24UV8B.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "3SK2R9VZ8N24UV8B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3SK2R9VZ8N24UV8B.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "3SK2R9VZ8N24UV8B.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3SK2R9VZ8N24UV8B.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "3SK2R9VZ8N24UV8B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3SK2R9VZ8N24UV8B.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "3SK2R9VZ8N24UV8B.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22264" + }, + "appliesTo" : [ ] + }, + "3SK2R9VZ8N24UV8B.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "3SK2R9VZ8N24UV8B.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "YGPA59CYGTE7GDPD" : { + "YGPA59CYGTE7GDPD.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "YGPA59CYGTE7GDPD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YGPA59CYGTE7GDPD.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "YGPA59CYGTE7GDPD.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "154924" + }, + "appliesTo" : [ ] + }, + "YGPA59CYGTE7GDPD.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "YGPA59CYGTE7GDPD.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YGPA59CYGTE7GDPD.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YGPA59CYGTE7GDPD", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "YGPA59CYGTE7GDPD.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YGPA59CYGTE7GDPD.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "196926" + }, + "appliesTo" : [ ] + }, + "YGPA59CYGTE7GDPD.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YGPA59CYGTE7GDPD.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YGPA59CYGTE7GDPD.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "YGPA59CYGTE7GDPD", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "YGPA59CYGTE7GDPD.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "YGPA59CYGTE7GDPD.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.6120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YGPA59CYGTE7GDPD.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "YGPA59CYGTE7GDPD", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "YGPA59CYGTE7GDPD.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "YGPA59CYGTE7GDPD.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.8990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YGPA59CYGTE7GDPD.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YGPA59CYGTE7GDPD", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "YGPA59CYGTE7GDPD.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YGPA59CYGTE7GDPD.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "134754" + }, + "appliesTo" : [ ] + }, + "YGPA59CYGTE7GDPD.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YGPA59CYGTE7GDPD.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YGPA59CYGTE7GDPD.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "YGPA59CYGTE7GDPD", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "YGPA59CYGTE7GDPD.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "YGPA59CYGTE7GDPD.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5810000000" + }, + "appliesTo" : [ ] + }, + "YGPA59CYGTE7GDPD.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "YGPA59CYGTE7GDPD.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "120387" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YGPA59CYGTE7GDPD.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YGPA59CYGTE7GDPD", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "YGPA59CYGTE7GDPD.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YGPA59CYGTE7GDPD.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "104731" + }, + "appliesTo" : [ ] + }, + "YGPA59CYGTE7GDPD.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YGPA59CYGTE7GDPD.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YGPA59CYGTE7GDPD.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "YGPA59CYGTE7GDPD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YGPA59CYGTE7GDPD.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "YGPA59CYGTE7GDPD.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "18.9460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YGPA59CYGTE7GDPD.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "YGPA59CYGTE7GDPD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YGPA59CYGTE7GDPD.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "YGPA59CYGTE7GDPD.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "79071" + }, + "appliesTo" : [ ] + }, + "YGPA59CYGTE7GDPD.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "YGPA59CYGTE7GDPD.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.0190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YGPA59CYGTE7GDPD.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "YGPA59CYGTE7GDPD", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "YGPA59CYGTE7GDPD.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "YGPA59CYGTE7GDPD.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "235963" + }, + "appliesTo" : [ ] + }, + "YGPA59CYGTE7GDPD.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "YGPA59CYGTE7GDPD.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YGPA59CYGTE7GDPD.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YGPA59CYGTE7GDPD", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "YGPA59CYGTE7GDPD.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YGPA59CYGTE7GDPD.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.4790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YGPA59CYGTE7GDPD.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YGPA59CYGTE7GDPD", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "YGPA59CYGTE7GDPD.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YGPA59CYGTE7GDPD.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "68780" + }, + "appliesTo" : [ ] + }, + "YGPA59CYGTE7GDPD.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YGPA59CYGTE7GDPD.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.8450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "429MR8T2YBX27EZR" : { + "429MR8T2YBX27EZR.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "429MR8T2YBX27EZR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "429MR8T2YBX27EZR.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "429MR8T2YBX27EZR.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2594" + }, + "appliesTo" : [ ] + }, + "429MR8T2YBX27EZR.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "429MR8T2YBX27EZR.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "429MR8T2YBX27EZR.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "429MR8T2YBX27EZR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "429MR8T2YBX27EZR.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "429MR8T2YBX27EZR.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "429MR8T2YBX27EZR.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "429MR8T2YBX27EZR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "429MR8T2YBX27EZR.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "429MR8T2YBX27EZR.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "429MR8T2YBX27EZR.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "429MR8T2YBX27EZR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "429MR8T2YBX27EZR.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "429MR8T2YBX27EZR.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10409" + }, + "appliesTo" : [ ] + }, + "429MR8T2YBX27EZR.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "429MR8T2YBX27EZR.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "429MR8T2YBX27EZR.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "429MR8T2YBX27EZR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "429MR8T2YBX27EZR.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "429MR8T2YBX27EZR.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "429MR8T2YBX27EZR.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "429MR8T2YBX27EZR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "429MR8T2YBX27EZR.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "429MR8T2YBX27EZR.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5029" + }, + "appliesTo" : [ ] + }, + "429MR8T2YBX27EZR.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "429MR8T2YBX27EZR.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "429MR8T2YBX27EZR.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "429MR8T2YBX27EZR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "429MR8T2YBX27EZR.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "429MR8T2YBX27EZR.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5308" + }, + "appliesTo" : [ ] + }, + "429MR8T2YBX27EZR.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "429MR8T2YBX27EZR.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "429MR8T2YBX27EZR.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "429MR8T2YBX27EZR", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "429MR8T2YBX27EZR.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "429MR8T2YBX27EZR.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2292" + }, + "appliesTo" : [ ] + }, + "429MR8T2YBX27EZR.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "429MR8T2YBX27EZR.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "429MR8T2YBX27EZR.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "429MR8T2YBX27EZR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "429MR8T2YBX27EZR.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "429MR8T2YBX27EZR.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4688" + }, + "appliesTo" : [ ] + }, + "429MR8T2YBX27EZR.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "429MR8T2YBX27EZR.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "429MR8T2YBX27EZR.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "429MR8T2YBX27EZR", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "429MR8T2YBX27EZR.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "429MR8T2YBX27EZR.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8846" + }, + "appliesTo" : [ ] + }, + "429MR8T2YBX27EZR.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "429MR8T2YBX27EZR.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "429MR8T2YBX27EZR.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "429MR8T2YBX27EZR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "429MR8T2YBX27EZR.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "429MR8T2YBX27EZR.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "429MR8T2YBX27EZR.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "429MR8T2YBX27EZR", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "429MR8T2YBX27EZR.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "429MR8T2YBX27EZR.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "429MR8T2YBX27EZR.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "429MR8T2YBX27EZR.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4436" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "KP89XKS7BFTMVX77" : { + "KP89XKS7BFTMVX77.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "KP89XKS7BFTMVX77", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "KP89XKS7BFTMVX77.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "KP89XKS7BFTMVX77.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "KP89XKS7BFTMVX77.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "KP89XKS7BFTMVX77.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9635" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KP89XKS7BFTMVX77.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "KP89XKS7BFTMVX77", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "KP89XKS7BFTMVX77.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "KP89XKS7BFTMVX77.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4100" + }, + "appliesTo" : [ ] + }, + "KP89XKS7BFTMVX77.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "KP89XKS7BFTMVX77.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KP89XKS7BFTMVX77.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "KP89XKS7BFTMVX77", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "KP89XKS7BFTMVX77.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "KP89XKS7BFTMVX77.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1420" + }, + "appliesTo" : [ ] + }, + "KP89XKS7BFTMVX77.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "KP89XKS7BFTMVX77.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KP89XKS7BFTMVX77.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "KP89XKS7BFTMVX77", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "KP89XKS7BFTMVX77.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "KP89XKS7BFTMVX77.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KP89XKS7BFTMVX77.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "KP89XKS7BFTMVX77", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "KP89XKS7BFTMVX77.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "KP89XKS7BFTMVX77.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3469" + }, + "appliesTo" : [ ] + }, + "KP89XKS7BFTMVX77.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "KP89XKS7BFTMVX77.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "U29KTD6EKFTKBK6T" : { + "U29KTD6EKFTKBK6T.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "U29KTD6EKFTKBK6T", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "U29KTD6EKFTKBK6T.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "U29KTD6EKFTKBK6T.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15123" + }, + "appliesTo" : [ ] + }, + "U29KTD6EKFTKBK6T.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "U29KTD6EKFTKBK6T.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "U29KTD6EKFTKBK6T.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "U29KTD6EKFTKBK6T", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "U29KTD6EKFTKBK6T.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "U29KTD6EKFTKBK6T.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "U29KTD6EKFTKBK6T.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "U29KTD6EKFTKBK6T", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "U29KTD6EKFTKBK6T.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "U29KTD6EKFTKBK6T.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "U29KTD6EKFTKBK6T.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "U29KTD6EKFTKBK6T.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26096" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "U29KTD6EKFTKBK6T.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "U29KTD6EKFTKBK6T", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "U29KTD6EKFTKBK6T.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "U29KTD6EKFTKBK6T.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "U29KTD6EKFTKBK6T.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "U29KTD6EKFTKBK6T", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "U29KTD6EKFTKBK6T.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "U29KTD6EKFTKBK6T.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5280000000" + }, + "appliesTo" : [ ] + }, + "U29KTD6EKFTKBK6T.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "U29KTD6EKFTKBK6T.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13886" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "U29KTD6EKFTKBK6T.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "U29KTD6EKFTKBK6T", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "U29KTD6EKFTKBK6T.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "U29KTD6EKFTKBK6T.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30028" + }, + "appliesTo" : [ ] + }, + "U29KTD6EKFTKBK6T.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "U29KTD6EKFTKBK6T.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "U29KTD6EKFTKBK6T.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "U29KTD6EKFTKBK6T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U29KTD6EKFTKBK6T.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "U29KTD6EKFTKBK6T.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11660" + }, + "appliesTo" : [ ] + }, + "U29KTD6EKFTKBK6T.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "U29KTD6EKFTKBK6T.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "U29KTD6EKFTKBK6T.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "U29KTD6EKFTKBK6T", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "U29KTD6EKFTKBK6T.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "U29KTD6EKFTKBK6T.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11011" + }, + "appliesTo" : [ ] + }, + "U29KTD6EKFTKBK6T.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "U29KTD6EKFTKBK6T.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "U29KTD6EKFTKBK6T.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "U29KTD6EKFTKBK6T", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "U29KTD6EKFTKBK6T.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "U29KTD6EKFTKBK6T.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5554" + }, + "appliesTo" : [ ] + }, + "U29KTD6EKFTKBK6T.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "U29KTD6EKFTKBK6T.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "U29KTD6EKFTKBK6T.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "U29KTD6EKFTKBK6T", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "U29KTD6EKFTKBK6T.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "U29KTD6EKFTKBK6T.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "U29KTD6EKFTKBK6T.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "U29KTD6EKFTKBK6T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U29KTD6EKFTKBK6T.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "U29KTD6EKFTKBK6T.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5883" + }, + "appliesTo" : [ ] + }, + "U29KTD6EKFTKBK6T.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "U29KTD6EKFTKBK6T.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "U29KTD6EKFTKBK6T.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "U29KTD6EKFTKBK6T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U29KTD6EKFTKBK6T.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "U29KTD6EKFTKBK6T.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "35QACGXEGWD9AZHY" : { + "35QACGXEGWD9AZHY.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "35QACGXEGWD9AZHY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "35QACGXEGWD9AZHY.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "35QACGXEGWD9AZHY.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "35QACGXEGWD9AZHY.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "35QACGXEGWD9AZHY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "35QACGXEGWD9AZHY.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "35QACGXEGWD9AZHY.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1309" + }, + "appliesTo" : [ ] + }, + "35QACGXEGWD9AZHY.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "35QACGXEGWD9AZHY.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "35QACGXEGWD9AZHY.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "35QACGXEGWD9AZHY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "35QACGXEGWD9AZHY.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "35QACGXEGWD9AZHY.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0750000000" + }, + "appliesTo" : [ ] + }, + "35QACGXEGWD9AZHY.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "35QACGXEGWD9AZHY.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "660" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "35QACGXEGWD9AZHY.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "35QACGXEGWD9AZHY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "35QACGXEGWD9AZHY.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "35QACGXEGWD9AZHY.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "35QACGXEGWD9AZHY.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "35QACGXEGWD9AZHY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "35QACGXEGWD9AZHY.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "35QACGXEGWD9AZHY.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "35QACGXEGWD9AZHY.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "35QACGXEGWD9AZHY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "35QACGXEGWD9AZHY.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "35QACGXEGWD9AZHY.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0720000000" + }, + "appliesTo" : [ ] + }, + "35QACGXEGWD9AZHY.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "35QACGXEGWD9AZHY.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "626" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "35QACGXEGWD9AZHY.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "35QACGXEGWD9AZHY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "35QACGXEGWD9AZHY.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "35QACGXEGWD9AZHY.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3396" + }, + "appliesTo" : [ ] + }, + "35QACGXEGWD9AZHY.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "35QACGXEGWD9AZHY.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "35QACGXEGWD9AZHY.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "35QACGXEGWD9AZHY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "35QACGXEGWD9AZHY.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "35QACGXEGWD9AZHY.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0620000000" + }, + "appliesTo" : [ ] + }, + "35QACGXEGWD9AZHY.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "35QACGXEGWD9AZHY.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1642" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "35QACGXEGWD9AZHY.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "35QACGXEGWD9AZHY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "35QACGXEGWD9AZHY.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "35QACGXEGWD9AZHY.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "35QACGXEGWD9AZHY.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "35QACGXEGWD9AZHY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "35QACGXEGWD9AZHY.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "35QACGXEGWD9AZHY.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3232" + }, + "appliesTo" : [ ] + }, + "35QACGXEGWD9AZHY.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "35QACGXEGWD9AZHY.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "35QACGXEGWD9AZHY.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "35QACGXEGWD9AZHY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "35QACGXEGWD9AZHY.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "35QACGXEGWD9AZHY.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1708" + }, + "appliesTo" : [ ] + }, + "35QACGXEGWD9AZHY.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "35QACGXEGWD9AZHY.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "35QACGXEGWD9AZHY.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "35QACGXEGWD9AZHY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "35QACGXEGWD9AZHY.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "35QACGXEGWD9AZHY.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1244" + }, + "appliesTo" : [ ] + }, + "35QACGXEGWD9AZHY.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "35QACGXEGWD9AZHY.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "YGU2QZY8VPP94FSR" : { + "YGU2QZY8VPP94FSR.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "YGU2QZY8VPP94FSR", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "YGU2QZY8VPP94FSR.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "YGU2QZY8VPP94FSR.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YGU2QZY8VPP94FSR.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YGU2QZY8VPP94FSR", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YGU2QZY8VPP94FSR.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YGU2QZY8VPP94FSR.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1373" + }, + "appliesTo" : [ ] + }, + "YGU2QZY8VPP94FSR.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YGU2QZY8VPP94FSR.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YGU2QZY8VPP94FSR.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "YGU2QZY8VPP94FSR", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YGU2QZY8VPP94FSR.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "YGU2QZY8VPP94FSR.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1137" + }, + "appliesTo" : [ ] + }, + "YGU2QZY8VPP94FSR.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "YGU2QZY8VPP94FSR.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YGU2QZY8VPP94FSR.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YGU2QZY8VPP94FSR", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YGU2QZY8VPP94FSR.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YGU2QZY8VPP94FSR.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "673" + }, + "appliesTo" : [ ] + }, + "YGU2QZY8VPP94FSR.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YGU2QZY8VPP94FSR.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YGU2QZY8VPP94FSR.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "YGU2QZY8VPP94FSR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YGU2QZY8VPP94FSR.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "YGU2QZY8VPP94FSR.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YGU2QZY8VPP94FSR.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "YGU2QZY8VPP94FSR.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "812" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YGU2QZY8VPP94FSR.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "YGU2QZY8VPP94FSR", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YGU2QZY8VPP94FSR.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "YGU2QZY8VPP94FSR.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1925" + }, + "appliesTo" : [ ] + }, + "YGU2QZY8VPP94FSR.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "YGU2QZY8VPP94FSR.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YGU2QZY8VPP94FSR.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YGU2QZY8VPP94FSR", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "YGU2QZY8VPP94FSR.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YGU2QZY8VPP94FSR.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "421" + }, + "appliesTo" : [ ] + }, + "YGU2QZY8VPP94FSR.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YGU2QZY8VPP94FSR.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YGU2QZY8VPP94FSR.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YGU2QZY8VPP94FSR", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "YGU2QZY8VPP94FSR.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YGU2QZY8VPP94FSR.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YGU2QZY8VPP94FSR.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YGU2QZY8VPP94FSR", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "YGU2QZY8VPP94FSR.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YGU2QZY8VPP94FSR.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "713" + }, + "appliesTo" : [ ] + }, + "YGU2QZY8VPP94FSR.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YGU2QZY8VPP94FSR.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YGU2QZY8VPP94FSR.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "YGU2QZY8VPP94FSR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YGU2QZY8VPP94FSR.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "YGU2QZY8VPP94FSR.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "414" + }, + "appliesTo" : [ ] + }, + "YGU2QZY8VPP94FSR.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "YGU2QZY8VPP94FSR.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YGU2QZY8VPP94FSR.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "YGU2QZY8VPP94FSR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YGU2QZY8VPP94FSR.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "YGU2QZY8VPP94FSR.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "EBRWZVHDHP2KJAMQ" : { + "EBRWZVHDHP2KJAMQ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "EBRWZVHDHP2KJAMQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EBRWZVHDHP2KJAMQ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "EBRWZVHDHP2KJAMQ.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4960000000" + }, + "appliesTo" : [ ] + }, + "EBRWZVHDHP2KJAMQ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "EBRWZVHDHP2KJAMQ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13047" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EBRWZVHDHP2KJAMQ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "EBRWZVHDHP2KJAMQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EBRWZVHDHP2KJAMQ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "EBRWZVHDHP2KJAMQ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "EBRWZVHDHP2KJAMQ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "EBRWZVHDHP2KJAMQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EBRWZVHDHP2KJAMQ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "EBRWZVHDHP2KJAMQ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "EBRWZVHDHP2KJAMQ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "EBRWZVHDHP2KJAMQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EBRWZVHDHP2KJAMQ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "EBRWZVHDHP2KJAMQ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "EBRWZVHDHP2KJAMQ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "EBRWZVHDHP2KJAMQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EBRWZVHDHP2KJAMQ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "EBRWZVHDHP2KJAMQ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19329" + }, + "appliesTo" : [ ] + }, + "EBRWZVHDHP2KJAMQ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "EBRWZVHDHP2KJAMQ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "EBRWZVHDHP2KJAMQ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "EBRWZVHDHP2KJAMQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EBRWZVHDHP2KJAMQ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "EBRWZVHDHP2KJAMQ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9862" + }, + "appliesTo" : [ ] + }, + "EBRWZVHDHP2KJAMQ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "EBRWZVHDHP2KJAMQ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "EBRWZVHDHP2KJAMQ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "EBRWZVHDHP2KJAMQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EBRWZVHDHP2KJAMQ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "EBRWZVHDHP2KJAMQ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29409" + }, + "appliesTo" : [ ] + }, + "EBRWZVHDHP2KJAMQ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "EBRWZVHDHP2KJAMQ.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "EBRWZVHDHP2KJAMQ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "EBRWZVHDHP2KJAMQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EBRWZVHDHP2KJAMQ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "EBRWZVHDHP2KJAMQ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8576" + }, + "appliesTo" : [ ] + }, + "EBRWZVHDHP2KJAMQ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "EBRWZVHDHP2KJAMQ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EBRWZVHDHP2KJAMQ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "EBRWZVHDHP2KJAMQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EBRWZVHDHP2KJAMQ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "EBRWZVHDHP2KJAMQ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16808" + }, + "appliesTo" : [ ] + }, + "EBRWZVHDHP2KJAMQ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "EBRWZVHDHP2KJAMQ.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EBRWZVHDHP2KJAMQ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "EBRWZVHDHP2KJAMQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EBRWZVHDHP2KJAMQ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "EBRWZVHDHP2KJAMQ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24529" + }, + "appliesTo" : [ ] + }, + "EBRWZVHDHP2KJAMQ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "EBRWZVHDHP2KJAMQ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EBRWZVHDHP2KJAMQ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "EBRWZVHDHP2KJAMQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EBRWZVHDHP2KJAMQ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "EBRWZVHDHP2KJAMQ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5710000000" + }, + "appliesTo" : [ ] + }, + "EBRWZVHDHP2KJAMQ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "EBRWZVHDHP2KJAMQ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15004" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "EBRWZVHDHP2KJAMQ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "EBRWZVHDHP2KJAMQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EBRWZVHDHP2KJAMQ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "EBRWZVHDHP2KJAMQ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "RKEGB47DHY7WYBKQ" : { + "RKEGB47DHY7WYBKQ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "RKEGB47DHY7WYBKQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RKEGB47DHY7WYBKQ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "RKEGB47DHY7WYBKQ.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RKEGB47DHY7WYBKQ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "RKEGB47DHY7WYBKQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RKEGB47DHY7WYBKQ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "RKEGB47DHY7WYBKQ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4196" + }, + "appliesTo" : [ ] + }, + "RKEGB47DHY7WYBKQ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "RKEGB47DHY7WYBKQ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RKEGB47DHY7WYBKQ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "RKEGB47DHY7WYBKQ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RKEGB47DHY7WYBKQ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "RKEGB47DHY7WYBKQ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4198" + }, + "appliesTo" : [ ] + }, + "RKEGB47DHY7WYBKQ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "RKEGB47DHY7WYBKQ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RKEGB47DHY7WYBKQ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "RKEGB47DHY7WYBKQ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "RKEGB47DHY7WYBKQ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "RKEGB47DHY7WYBKQ.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RKEGB47DHY7WYBKQ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "RKEGB47DHY7WYBKQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RKEGB47DHY7WYBKQ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "RKEGB47DHY7WYBKQ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8170" + }, + "appliesTo" : [ ] + }, + "RKEGB47DHY7WYBKQ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "RKEGB47DHY7WYBKQ.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RKEGB47DHY7WYBKQ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "RKEGB47DHY7WYBKQ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "RKEGB47DHY7WYBKQ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "RKEGB47DHY7WYBKQ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3210000000" + }, + "appliesTo" : [ ] + }, + "RKEGB47DHY7WYBKQ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "RKEGB47DHY7WYBKQ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11198" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RKEGB47DHY7WYBKQ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "RKEGB47DHY7WYBKQ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "RKEGB47DHY7WYBKQ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "RKEGB47DHY7WYBKQ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RKEGB47DHY7WYBKQ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "RKEGB47DHY7WYBKQ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "RKEGB47DHY7WYBKQ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "RKEGB47DHY7WYBKQ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19212" + }, + "appliesTo" : [ ] + }, + "RKEGB47DHY7WYBKQ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "RKEGB47DHY7WYBKQ.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RKEGB47DHY7WYBKQ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "RKEGB47DHY7WYBKQ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RKEGB47DHY7WYBKQ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "RKEGB47DHY7WYBKQ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7163" + }, + "appliesTo" : [ ] + }, + "RKEGB47DHY7WYBKQ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "RKEGB47DHY7WYBKQ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RKEGB47DHY7WYBKQ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "RKEGB47DHY7WYBKQ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RKEGB47DHY7WYBKQ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "RKEGB47DHY7WYBKQ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12904" + }, + "appliesTo" : [ ] + }, + "RKEGB47DHY7WYBKQ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "RKEGB47DHY7WYBKQ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RKEGB47DHY7WYBKQ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "RKEGB47DHY7WYBKQ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RKEGB47DHY7WYBKQ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "RKEGB47DHY7WYBKQ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6415" + }, + "appliesTo" : [ ] + }, + "RKEGB47DHY7WYBKQ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "RKEGB47DHY7WYBKQ.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "ZJC9VZJF5NZNYSVK" : { + "ZJC9VZJF5NZNYSVK.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ZJC9VZJF5NZNYSVK", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "ZJC9VZJF5NZNYSVK.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ZJC9VZJF5NZNYSVK.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16265" + }, + "appliesTo" : [ ] + }, + "ZJC9VZJF5NZNYSVK.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ZJC9VZJF5NZNYSVK.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZJC9VZJF5NZNYSVK.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ZJC9VZJF5NZNYSVK", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "ZJC9VZJF5NZNYSVK.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ZJC9VZJF5NZNYSVK.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZJC9VZJF5NZNYSVK.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ZJC9VZJF5NZNYSVK", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "ZJC9VZJF5NZNYSVK.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ZJC9VZJF5NZNYSVK.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20780" + }, + "appliesTo" : [ ] + }, + "ZJC9VZJF5NZNYSVK.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ZJC9VZJF5NZNYSVK.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZJC9VZJF5NZNYSVK.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ZJC9VZJF5NZNYSVK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZJC9VZJF5NZNYSVK.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ZJC9VZJF5NZNYSVK.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13624" + }, + "appliesTo" : [ ] + }, + "ZJC9VZJF5NZNYSVK.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ZJC9VZJF5NZNYSVK.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZJC9VZJF5NZNYSVK.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ZJC9VZJF5NZNYSVK", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "ZJC9VZJF5NZNYSVK.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ZJC9VZJF5NZNYSVK.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31882" + }, + "appliesTo" : [ ] + }, + "ZJC9VZJF5NZNYSVK.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ZJC9VZJF5NZNYSVK.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZJC9VZJF5NZNYSVK.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ZJC9VZJF5NZNYSVK", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "ZJC9VZJF5NZNYSVK.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ZJC9VZJF5NZNYSVK.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11808" + }, + "appliesTo" : [ ] + }, + "ZJC9VZJF5NZNYSVK.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ZJC9VZJF5NZNYSVK.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZJC9VZJF5NZNYSVK.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ZJC9VZJF5NZNYSVK", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "ZJC9VZJF5NZNYSVK.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ZJC9VZJF5NZNYSVK.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11068" + }, + "appliesTo" : [ ] + }, + "ZJC9VZJF5NZNYSVK.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ZJC9VZJF5NZNYSVK.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZJC9VZJF5NZNYSVK.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ZJC9VZJF5NZNYSVK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZJC9VZJF5NZNYSVK.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ZJC9VZJF5NZNYSVK.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZJC9VZJF5NZNYSVK.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ZJC9VZJF5NZNYSVK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZJC9VZJF5NZNYSVK.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ZJC9VZJF5NZNYSVK.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7940000000" + }, + "appliesTo" : [ ] + }, + "ZJC9VZJF5NZNYSVK.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ZJC9VZJF5NZNYSVK.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6951" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZJC9VZJF5NZNYSVK.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ZJC9VZJF5NZNYSVK", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ZJC9VZJF5NZNYSVK.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ZJC9VZJF5NZNYSVK.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6024" + }, + "appliesTo" : [ ] + }, + "ZJC9VZJF5NZNYSVK.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ZJC9VZJF5NZNYSVK.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZJC9VZJF5NZNYSVK.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ZJC9VZJF5NZNYSVK", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "ZJC9VZJF5NZNYSVK.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ZJC9VZJF5NZNYSVK.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "QPKCG2B2XC9C53GT" : { + "QPKCG2B2XC9C53GT.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "QPKCG2B2XC9C53GT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QPKCG2B2XC9C53GT.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "QPKCG2B2XC9C53GT.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19447" + }, + "appliesTo" : [ ] + }, + "QPKCG2B2XC9C53GT.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "QPKCG2B2XC9C53GT.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QPKCG2B2XC9C53GT.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "QPKCG2B2XC9C53GT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QPKCG2B2XC9C53GT.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "QPKCG2B2XC9C53GT.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QPKCG2B2XC9C53GT.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QPKCG2B2XC9C53GT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QPKCG2B2XC9C53GT.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QPKCG2B2XC9C53GT.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QPKCG2B2XC9C53GT.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QPKCG2B2XC9C53GT.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38159" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QPKCG2B2XC9C53GT.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "QPKCG2B2XC9C53GT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QPKCG2B2XC9C53GT.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "QPKCG2B2XC9C53GT.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38814" + }, + "appliesTo" : [ ] + }, + "QPKCG2B2XC9C53GT.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "QPKCG2B2XC9C53GT.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QPKCG2B2XC9C53GT.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "QPKCG2B2XC9C53GT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QPKCG2B2XC9C53GT.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "QPKCG2B2XC9C53GT.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QPKCG2B2XC9C53GT.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QPKCG2B2XC9C53GT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QPKCG2B2XC9C53GT.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QPKCG2B2XC9C53GT.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13385" + }, + "appliesTo" : [ ] + }, + "QPKCG2B2XC9C53GT.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QPKCG2B2XC9C53GT.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QPKCG2B2XC9C53GT.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QPKCG2B2XC9C53GT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QPKCG2B2XC9C53GT.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QPKCG2B2XC9C53GT.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7300000000" + }, + "appliesTo" : [ ] + }, + "QPKCG2B2XC9C53GT.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QPKCG2B2XC9C53GT.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19183" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QPKCG2B2XC9C53GT.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "QPKCG2B2XC9C53GT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QPKCG2B2XC9C53GT.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "QPKCG2B2XC9C53GT.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QPKCG2B2XC9C53GT.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "QPKCG2B2XC9C53GT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QPKCG2B2XC9C53GT.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "QPKCG2B2XC9C53GT.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6844" + }, + "appliesTo" : [ ] + }, + "QPKCG2B2XC9C53GT.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "QPKCG2B2XC9C53GT.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QPKCG2B2XC9C53GT.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QPKCG2B2XC9C53GT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QPKCG2B2XC9C53GT.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QPKCG2B2XC9C53GT.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6710" + }, + "appliesTo" : [ ] + }, + "QPKCG2B2XC9C53GT.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QPKCG2B2XC9C53GT.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QPKCG2B2XC9C53GT.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "QPKCG2B2XC9C53GT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QPKCG2B2XC9C53GT.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "QPKCG2B2XC9C53GT.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13647" + }, + "appliesTo" : [ ] + }, + "QPKCG2B2XC9C53GT.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "QPKCG2B2XC9C53GT.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QPKCG2B2XC9C53GT.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QPKCG2B2XC9C53GT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QPKCG2B2XC9C53GT.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QPKCG2B2XC9C53GT.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "3EM3XGHPBHA5A7G9" : { + "3EM3XGHPBHA5A7G9.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "3EM3XGHPBHA5A7G9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3EM3XGHPBHA5A7G9.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "3EM3XGHPBHA5A7G9.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14459" + }, + "appliesTo" : [ ] + }, + "3EM3XGHPBHA5A7G9.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "3EM3XGHPBHA5A7G9.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3EM3XGHPBHA5A7G9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "3EM3XGHPBHA5A7G9", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "3EM3XGHPBHA5A7G9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "3EM3XGHPBHA5A7G9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "3EM3XGHPBHA5A7G9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "3EM3XGHPBHA5A7G9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25215" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3EM3XGHPBHA5A7G9.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "3EM3XGHPBHA5A7G9", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "3EM3XGHPBHA5A7G9.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "3EM3XGHPBHA5A7G9.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3EM3XGHPBHA5A7G9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "3EM3XGHPBHA5A7G9", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "3EM3XGHPBHA5A7G9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "3EM3XGHPBHA5A7G9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16054" + }, + "appliesTo" : [ ] + }, + "3EM3XGHPBHA5A7G9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "3EM3XGHPBHA5A7G9.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3EM3XGHPBHA5A7G9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "3EM3XGHPBHA5A7G9", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "3EM3XGHPBHA5A7G9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "3EM3XGHPBHA5A7G9.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "3EM3XGHPBHA5A7G9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "3EM3XGHPBHA5A7G9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12654" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3EM3XGHPBHA5A7G9.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "3EM3XGHPBHA5A7G9", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "3EM3XGHPBHA5A7G9.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "3EM3XGHPBHA5A7G9.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22554" + }, + "appliesTo" : [ ] + }, + "3EM3XGHPBHA5A7G9.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "3EM3XGHPBHA5A7G9.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3EM3XGHPBHA5A7G9.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "3EM3XGHPBHA5A7G9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3EM3XGHPBHA5A7G9.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "3EM3XGHPBHA5A7G9.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3EM3XGHPBHA5A7G9.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "3EM3XGHPBHA5A7G9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3EM3XGHPBHA5A7G9.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "3EM3XGHPBHA5A7G9.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8380000000" + }, + "appliesTo" : [ ] + }, + "3EM3XGHPBHA5A7G9.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "3EM3XGHPBHA5A7G9.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7405" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3EM3XGHPBHA5A7G9.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "3EM3XGHPBHA5A7G9", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "3EM3XGHPBHA5A7G9.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "3EM3XGHPBHA5A7G9.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "3EM3XGHPBHA5A7G9.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "3EM3XGHPBHA5A7G9.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34077" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3EM3XGHPBHA5A7G9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "3EM3XGHPBHA5A7G9", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "3EM3XGHPBHA5A7G9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "3EM3XGHPBHA5A7G9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8399" + }, + "appliesTo" : [ ] + }, + "3EM3XGHPBHA5A7G9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "3EM3XGHPBHA5A7G9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3EM3XGHPBHA5A7G9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "3EM3XGHPBHA5A7G9", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "3EM3XGHPBHA5A7G9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "3EM3XGHPBHA5A7G9.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "P4S7RSCXQEBBBKQF" : { + "P4S7RSCXQEBBBKQF.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "P4S7RSCXQEBBBKQF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "P4S7RSCXQEBBBKQF.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "P4S7RSCXQEBBBKQF.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0561000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "P4S7RSCXQEBBBKQF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "P4S7RSCXQEBBBKQF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "P4S7RSCXQEBBBKQF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "P4S7RSCXQEBBBKQF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "596" + }, + "appliesTo" : [ ] + }, + "P4S7RSCXQEBBBKQF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "P4S7RSCXQEBBBKQF.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0223000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "P4S7RSCXQEBBBKQF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "P4S7RSCXQEBBBKQF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "P4S7RSCXQEBBBKQF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "P4S7RSCXQEBBBKQF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "525" + }, + "appliesTo" : [ ] + }, + "P4S7RSCXQEBBBKQF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "P4S7RSCXQEBBBKQF.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "P4S7RSCXQEBBBKQF.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "P4S7RSCXQEBBBKQF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "P4S7RSCXQEBBBKQF.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "P4S7RSCXQEBBBKQF.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "632" + }, + "appliesTo" : [ ] + }, + "P4S7RSCXQEBBBKQF.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "P4S7RSCXQEBBBKQF.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0237000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "P4S7RSCXQEBBBKQF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "P4S7RSCXQEBBBKQF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "P4S7RSCXQEBBBKQF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "P4S7RSCXQEBBBKQF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1152" + }, + "appliesTo" : [ ] + }, + "P4S7RSCXQEBBBKQF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "P4S7RSCXQEBBBKQF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "P4S7RSCXQEBBBKQF.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "P4S7RSCXQEBBBKQF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P4S7RSCXQEBBBKQF.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "P4S7RSCXQEBBBKQF.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "314" + }, + "appliesTo" : [ ] + }, + "P4S7RSCXQEBBBKQF.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "P4S7RSCXQEBBBKQF.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0287000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "P4S7RSCXQEBBBKQF.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "P4S7RSCXQEBBBKQF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "P4S7RSCXQEBBBKQF.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "P4S7RSCXQEBBBKQF.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0617000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "P4S7RSCXQEBBBKQF.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "P4S7RSCXQEBBBKQF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P4S7RSCXQEBBBKQF.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "P4S7RSCXQEBBBKQF.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0661000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "P4S7RSCXQEBBBKQF.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "P4S7RSCXQEBBBKQF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "P4S7RSCXQEBBBKQF.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "P4S7RSCXQEBBBKQF.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "P4S7RSCXQEBBBKQF.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "P4S7RSCXQEBBBKQF.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1244" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "P4S7RSCXQEBBBKQF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "P4S7RSCXQEBBBKQF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "P4S7RSCXQEBBBKQF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "P4S7RSCXQEBBBKQF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "296" + }, + "appliesTo" : [ ] + }, + "P4S7RSCXQEBBBKQF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "P4S7RSCXQEBBBKQF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0267000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "P4S7RSCXQEBBBKQF.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "P4S7RSCXQEBBBKQF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "P4S7RSCXQEBBBKQF.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "P4S7RSCXQEBBBKQF.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "P4S7RSCXQEBBBKQF.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "P4S7RSCXQEBBBKQF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P4S7RSCXQEBBBKQF.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "P4S7RSCXQEBBBKQF.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "P4S7RSCXQEBBBKQF.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "P4S7RSCXQEBBBKQF.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "560" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "M62BQXUWYDM97G4U" : { + "M62BQXUWYDM97G4U.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "M62BQXUWYDM97G4U", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "M62BQXUWYDM97G4U.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "M62BQXUWYDM97G4U.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "94661" + }, + "appliesTo" : [ ] + }, + "M62BQXUWYDM97G4U.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "M62BQXUWYDM97G4U.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "M62BQXUWYDM97G4U.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "M62BQXUWYDM97G4U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M62BQXUWYDM97G4U.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "M62BQXUWYDM97G4U.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3153000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "M62BQXUWYDM97G4U.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "M62BQXUWYDM97G4U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M62BQXUWYDM97G4U.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "M62BQXUWYDM97G4U.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "95559" + }, + "appliesTo" : [ ] + }, + "M62BQXUWYDM97G4U.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "M62BQXUWYDM97G4U.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6362000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "M62BQXUWYDM97G4U.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "M62BQXUWYDM97G4U", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "M62BQXUWYDM97G4U.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "M62BQXUWYDM97G4U.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "M62BQXUWYDM97G4U.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "M62BQXUWYDM97G4U.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "65034" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "M62BQXUWYDM97G4U.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "M62BQXUWYDM97G4U", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "M62BQXUWYDM97G4U.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "M62BQXUWYDM97G4U.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "188583" + }, + "appliesTo" : [ ] + }, + "M62BQXUWYDM97G4U.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "M62BQXUWYDM97G4U.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "M62BQXUWYDM97G4U.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "M62BQXUWYDM97G4U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M62BQXUWYDM97G4U.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "M62BQXUWYDM97G4U.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5861000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "M62BQXUWYDM97G4U.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "M62BQXUWYDM97G4U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M62BQXUWYDM97G4U.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "M62BQXUWYDM97G4U.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4752000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "M62BQXUWYDM97G4U.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "M62BQXUWYDM97G4U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M62BQXUWYDM97G4U.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "M62BQXUWYDM97G4U.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33050" + }, + "appliesTo" : [ ] + }, + "M62BQXUWYDM97G4U.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "M62BQXUWYDM97G4U.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7728000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "M62BQXUWYDM97G4U.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "M62BQXUWYDM97G4U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M62BQXUWYDM97G4U.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "M62BQXUWYDM97G4U.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.2397000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "M62BQXUWYDM97G4U.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "M62BQXUWYDM97G4U", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "M62BQXUWYDM97G4U.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "M62BQXUWYDM97G4U.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7190000000" + }, + "appliesTo" : [ ] + }, + "M62BQXUWYDM97G4U.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "M62BQXUWYDM97G4U.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32578" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "M62BQXUWYDM97G4U.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "M62BQXUWYDM97G4U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M62BQXUWYDM97G4U.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "M62BQXUWYDM97G4U.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "190836" + }, + "appliesTo" : [ ] + }, + "M62BQXUWYDM97G4U.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "M62BQXUWYDM97G4U.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "M62BQXUWYDM97G4U.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "M62BQXUWYDM97G4U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M62BQXUWYDM97G4U.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "M62BQXUWYDM97G4U.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "65958" + }, + "appliesTo" : [ ] + }, + "M62BQXUWYDM97G4U.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "M62BQXUWYDM97G4U.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "V6J3XRHZNGUJMG3Z" : { + "V6J3XRHZNGUJMG3Z.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "V6J3XRHZNGUJMG3Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V6J3XRHZNGUJMG3Z.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "V6J3XRHZNGUJMG3Z.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "209372" + }, + "appliesTo" : [ ] + }, + "V6J3XRHZNGUJMG3Z.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "V6J3XRHZNGUJMG3Z.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "V6J3XRHZNGUJMG3Z.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "V6J3XRHZNGUJMG3Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V6J3XRHZNGUJMG3Z.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "V6J3XRHZNGUJMG3Z.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "102863" + }, + "appliesTo" : [ ] + }, + "V6J3XRHZNGUJMG3Z.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "V6J3XRHZNGUJMG3Z.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "V6J3XRHZNGUJMG3Z.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "V6J3XRHZNGUJMG3Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V6J3XRHZNGUJMG3Z.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "V6J3XRHZNGUJMG3Z.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "204004" + }, + "appliesTo" : [ ] + }, + "V6J3XRHZNGUJMG3Z.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "V6J3XRHZNGUJMG3Z.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "V6J3XRHZNGUJMG3Z.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "V6J3XRHZNGUJMG3Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V6J3XRHZNGUJMG3Z.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "V6J3XRHZNGUJMG3Z.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9960000000" + }, + "appliesTo" : [ ] + }, + "V6J3XRHZNGUJMG3Z.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "V6J3XRHZNGUJMG3Z.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "105016" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "V6J3XRHZNGUJMG3Z.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "V6J3XRHZNGUJMG3Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V6J3XRHZNGUJMG3Z.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "V6J3XRHZNGUJMG3Z.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.9160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "V6J3XRHZNGUJMG3Z.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "V6J3XRHZNGUJMG3Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V6J3XRHZNGUJMG3Z.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "V6J3XRHZNGUJMG3Z.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "80269" + }, + "appliesTo" : [ ] + }, + "V6J3XRHZNGUJMG3Z.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "V6J3XRHZNGUJMG3Z.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "V6J3XRHZNGUJMG3Z.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "V6J3XRHZNGUJMG3Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V6J3XRHZNGUJMG3Z.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "V6J3XRHZNGUJMG3Z.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "40352" + }, + "appliesTo" : [ ] + }, + "V6J3XRHZNGUJMG3Z.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "V6J3XRHZNGUJMG3Z.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.6060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "V6J3XRHZNGUJMG3Z.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "V6J3XRHZNGUJMG3Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V6J3XRHZNGUJMG3Z.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "V6J3XRHZNGUJMG3Z.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.3370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "V6J3XRHZNGUJMG3Z.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "V6J3XRHZNGUJMG3Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V6J3XRHZNGUJMG3Z.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "V6J3XRHZNGUJMG3Z.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38937" + }, + "appliesTo" : [ ] + }, + "V6J3XRHZNGUJMG3Z.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "V6J3XRHZNGUJMG3Z.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.4450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "V6J3XRHZNGUJMG3Z.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "V6J3XRHZNGUJMG3Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V6J3XRHZNGUJMG3Z.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "V6J3XRHZNGUJMG3Z.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "77496" + }, + "appliesTo" : [ ] + }, + "V6J3XRHZNGUJMG3Z.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "V6J3XRHZNGUJMG3Z.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "V6J3XRHZNGUJMG3Z.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "V6J3XRHZNGUJMG3Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V6J3XRHZNGUJMG3Z.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "V6J3XRHZNGUJMG3Z.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.9970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "V6J3XRHZNGUJMG3Z.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "V6J3XRHZNGUJMG3Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V6J3XRHZNGUJMG3Z.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "V6J3XRHZNGUJMG3Z.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.0930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "FVBHJHDCMPPWYN7V" : { + "FVBHJHDCMPPWYN7V.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "FVBHJHDCMPPWYN7V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FVBHJHDCMPPWYN7V.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "FVBHJHDCMPPWYN7V.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2210000000" + }, + "appliesTo" : [ ] + }, + "FVBHJHDCMPPWYN7V.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "FVBHJHDCMPPWYN7V.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1936" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FVBHJHDCMPPWYN7V.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "FVBHJHDCMPPWYN7V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FVBHJHDCMPPWYN7V.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "FVBHJHDCMPPWYN7V.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FVBHJHDCMPPWYN7V.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "FVBHJHDCMPPWYN7V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FVBHJHDCMPPWYN7V.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "FVBHJHDCMPPWYN7V.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FVBHJHDCMPPWYN7V.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "FVBHJHDCMPPWYN7V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FVBHJHDCMPPWYN7V.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "FVBHJHDCMPPWYN7V.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9397" + }, + "appliesTo" : [ ] + }, + "FVBHJHDCMPPWYN7V.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "FVBHJHDCMPPWYN7V.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FVBHJHDCMPPWYN7V.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "FVBHJHDCMPPWYN7V", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "FVBHJHDCMPPWYN7V.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "FVBHJHDCMPPWYN7V.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1783" + }, + "appliesTo" : [ ] + }, + "FVBHJHDCMPPWYN7V.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "FVBHJHDCMPPWYN7V.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FVBHJHDCMPPWYN7V.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "FVBHJHDCMPPWYN7V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FVBHJHDCMPPWYN7V.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "FVBHJHDCMPPWYN7V.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "FVBHJHDCMPPWYN7V.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "FVBHJHDCMPPWYN7V.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3827" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FVBHJHDCMPPWYN7V.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "FVBHJHDCMPPWYN7V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FVBHJHDCMPPWYN7V.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "FVBHJHDCMPPWYN7V.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FVBHJHDCMPPWYN7V.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "FVBHJHDCMPPWYN7V", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "FVBHJHDCMPPWYN7V.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "FVBHJHDCMPPWYN7V.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "FVBHJHDCMPPWYN7V.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "FVBHJHDCMPPWYN7V.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3527" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FVBHJHDCMPPWYN7V.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "FVBHJHDCMPPWYN7V", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "FVBHJHDCMPPWYN7V.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "FVBHJHDCMPPWYN7V.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8651" + }, + "appliesTo" : [ ] + }, + "FVBHJHDCMPPWYN7V.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "FVBHJHDCMPPWYN7V.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FVBHJHDCMPPWYN7V.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "FVBHJHDCMPPWYN7V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FVBHJHDCMPPWYN7V.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "FVBHJHDCMPPWYN7V.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FVBHJHDCMPPWYN7V.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "FVBHJHDCMPPWYN7V", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "FVBHJHDCMPPWYN7V.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "FVBHJHDCMPPWYN7V.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4447" + }, + "appliesTo" : [ ] + }, + "FVBHJHDCMPPWYN7V.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "FVBHJHDCMPPWYN7V.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FVBHJHDCMPPWYN7V.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "FVBHJHDCMPPWYN7V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FVBHJHDCMPPWYN7V.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "FVBHJHDCMPPWYN7V.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4745" + }, + "appliesTo" : [ ] + }, + "FVBHJHDCMPPWYN7V.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "FVBHJHDCMPPWYN7V.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "P6GWCP7NZJR2VSTT" : { + "P6GWCP7NZJR2VSTT.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "P6GWCP7NZJR2VSTT", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "P6GWCP7NZJR2VSTT.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "P6GWCP7NZJR2VSTT.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1031" + }, + "appliesTo" : [ ] + }, + "P6GWCP7NZJR2VSTT.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "P6GWCP7NZJR2VSTT.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "P6GWCP7NZJR2VSTT.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "P6GWCP7NZJR2VSTT", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "P6GWCP7NZJR2VSTT.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "P6GWCP7NZJR2VSTT.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2075" + }, + "appliesTo" : [ ] + }, + "P6GWCP7NZJR2VSTT.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "P6GWCP7NZJR2VSTT.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "P6GWCP7NZJR2VSTT.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "P6GWCP7NZJR2VSTT", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "P6GWCP7NZJR2VSTT.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "P6GWCP7NZJR2VSTT.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0430000000" + }, + "appliesTo" : [ ] + }, + "P6GWCP7NZJR2VSTT.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "P6GWCP7NZJR2VSTT.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1081" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "P6GWCP7NZJR2VSTT.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "P6GWCP7NZJR2VSTT", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "P6GWCP7NZJR2VSTT.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "P6GWCP7NZJR2VSTT.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "639" + }, + "appliesTo" : [ ] + }, + "P6GWCP7NZJR2VSTT.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "P6GWCP7NZJR2VSTT.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "P6GWCP7NZJR2VSTT.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "P6GWCP7NZJR2VSTT", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "P6GWCP7NZJR2VSTT.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "P6GWCP7NZJR2VSTT.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "QCXEYVM3Y3JDE2QA" : { + "QCXEYVM3Y3JDE2QA.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QCXEYVM3Y3JDE2QA", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "QCXEYVM3Y3JDE2QA.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QCXEYVM3Y3JDE2QA.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1830000000" + }, + "appliesTo" : [ ] + }, + "QCXEYVM3Y3JDE2QA.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QCXEYVM3Y3JDE2QA.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10365" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QCXEYVM3Y3JDE2QA.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "QCXEYVM3Y3JDE2QA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QCXEYVM3Y3JDE2QA.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "QCXEYVM3Y3JDE2QA.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QCXEYVM3Y3JDE2QA.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "QCXEYVM3Y3JDE2QA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QCXEYVM3Y3JDE2QA.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "QCXEYVM3Y3JDE2QA.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23984" + }, + "appliesTo" : [ ] + }, + "QCXEYVM3Y3JDE2QA.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "QCXEYVM3Y3JDE2QA.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QCXEYVM3Y3JDE2QA.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "QCXEYVM3Y3JDE2QA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QCXEYVM3Y3JDE2QA.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "QCXEYVM3Y3JDE2QA.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "58172" + }, + "appliesTo" : [ ] + }, + "QCXEYVM3Y3JDE2QA.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "QCXEYVM3Y3JDE2QA.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QCXEYVM3Y3JDE2QA.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QCXEYVM3Y3JDE2QA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QCXEYVM3Y3JDE2QA.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QCXEYVM3Y3JDE2QA.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QCXEYVM3Y3JDE2QA.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "QCXEYVM3Y3JDE2QA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QCXEYVM3Y3JDE2QA.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "QCXEYVM3Y3JDE2QA.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3800000000" + }, + "appliesTo" : [ ] + }, + "QCXEYVM3Y3JDE2QA.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "QCXEYVM3Y3JDE2QA.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12089" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QCXEYVM3Y3JDE2QA.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "QCXEYVM3Y3JDE2QA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QCXEYVM3Y3JDE2QA.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "QCXEYVM3Y3JDE2QA.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QCXEYVM3Y3JDE2QA.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QCXEYVM3Y3JDE2QA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QCXEYVM3Y3JDE2QA.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QCXEYVM3Y3JDE2QA.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QCXEYVM3Y3JDE2QA.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QCXEYVM3Y3JDE2QA.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47433" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QCXEYVM3Y3JDE2QA.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "QCXEYVM3Y3JDE2QA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QCXEYVM3Y3JDE2QA.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "QCXEYVM3Y3JDE2QA.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29678" + }, + "appliesTo" : [ ] + }, + "QCXEYVM3Y3JDE2QA.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "QCXEYVM3Y3JDE2QA.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QCXEYVM3Y3JDE2QA.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "QCXEYVM3Y3JDE2QA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QCXEYVM3Y3JDE2QA.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "QCXEYVM3Y3JDE2QA.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QCXEYVM3Y3JDE2QA.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QCXEYVM3Y3JDE2QA", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "QCXEYVM3Y3JDE2QA.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QCXEYVM3Y3JDE2QA.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25231" + }, + "appliesTo" : [ ] + }, + "QCXEYVM3Y3JDE2QA.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QCXEYVM3Y3JDE2QA.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QCXEYVM3Y3JDE2QA.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QCXEYVM3Y3JDE2QA", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "QCXEYVM3Y3JDE2QA.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QCXEYVM3Y3JDE2QA.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QCXEYVM3Y3JDE2QA.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QCXEYVM3Y3JDE2QA.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20312" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "9GWTW8S686K9W5FP" : { + "9GWTW8S686K9W5FP.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "9GWTW8S686K9W5FP", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "9GWTW8S686K9W5FP.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "9GWTW8S686K9W5FP.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "704" + }, + "appliesTo" : [ ] + }, + "9GWTW8S686K9W5FP.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "9GWTW8S686K9W5FP.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9GWTW8S686K9W5FP.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "9GWTW8S686K9W5FP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9GWTW8S686K9W5FP.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "9GWTW8S686K9W5FP.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9GWTW8S686K9W5FP.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "9GWTW8S686K9W5FP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9GWTW8S686K9W5FP.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "9GWTW8S686K9W5FP.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1749" + }, + "appliesTo" : [ ] + }, + "9GWTW8S686K9W5FP.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "9GWTW8S686K9W5FP.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9GWTW8S686K9W5FP.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "9GWTW8S686K9W5FP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9GWTW8S686K9W5FP.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "9GWTW8S686K9W5FP.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4117" + }, + "appliesTo" : [ ] + }, + "9GWTW8S686K9W5FP.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "9GWTW8S686K9W5FP.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9GWTW8S686K9W5FP.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "9GWTW8S686K9W5FP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9GWTW8S686K9W5FP.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "9GWTW8S686K9W5FP.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1738" + }, + "appliesTo" : [ ] + }, + "9GWTW8S686K9W5FP.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "9GWTW8S686K9W5FP.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "25A2HQUGG7F7ZU2J" : { + "25A2HQUGG7F7ZU2J.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "25A2HQUGG7F7ZU2J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "25A2HQUGG7F7ZU2J.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "25A2HQUGG7F7ZU2J.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "25A2HQUGG7F7ZU2J.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "25A2HQUGG7F7ZU2J.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4622" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "25A2HQUGG7F7ZU2J.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "25A2HQUGG7F7ZU2J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "25A2HQUGG7F7ZU2J.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "25A2HQUGG7F7ZU2J.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "25A2HQUGG7F7ZU2J.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "25A2HQUGG7F7ZU2J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "25A2HQUGG7F7ZU2J.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "25A2HQUGG7F7ZU2J.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2358" + }, + "appliesTo" : [ ] + }, + "25A2HQUGG7F7ZU2J.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "25A2HQUGG7F7ZU2J.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "25A2HQUGG7F7ZU2J.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "25A2HQUGG7F7ZU2J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "25A2HQUGG7F7ZU2J.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "25A2HQUGG7F7ZU2J.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3588" + }, + "appliesTo" : [ ] + }, + "25A2HQUGG7F7ZU2J.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "25A2HQUGG7F7ZU2J.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "25A2HQUGG7F7ZU2J.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "25A2HQUGG7F7ZU2J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "25A2HQUGG7F7ZU2J.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "25A2HQUGG7F7ZU2J.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6745" + }, + "appliesTo" : [ ] + }, + "25A2HQUGG7F7ZU2J.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "25A2HQUGG7F7ZU2J.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "25A2HQUGG7F7ZU2J.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "25A2HQUGG7F7ZU2J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "25A2HQUGG7F7ZU2J.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "25A2HQUGG7F7ZU2J.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "88VG68PMGN3M4ZEY" : { + "88VG68PMGN3M4ZEY.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "88VG68PMGN3M4ZEY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "88VG68PMGN3M4ZEY.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "88VG68PMGN3M4ZEY.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "67232" + }, + "appliesTo" : [ ] + }, + "88VG68PMGN3M4ZEY.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "88VG68PMGN3M4ZEY.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "88VG68PMGN3M4ZEY.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "88VG68PMGN3M4ZEY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "88VG68PMGN3M4ZEY.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "88VG68PMGN3M4ZEY.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "88VG68PMGN3M4ZEY.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "88VG68PMGN3M4ZEY.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "77317" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "88VG68PMGN3M4ZEY.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "88VG68PMGN3M4ZEY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "88VG68PMGN3M4ZEY.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "88VG68PMGN3M4ZEY.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "88VG68PMGN3M4ZEY.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "88VG68PMGN3M4ZEY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "88VG68PMGN3M4ZEY.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "88VG68PMGN3M4ZEY.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.2230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "88VG68PMGN3M4ZEY.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "88VG68PMGN3M4ZEY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "88VG68PMGN3M4ZEY.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "88VG68PMGN3M4ZEY.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34302" + }, + "appliesTo" : [ ] + }, + "88VG68PMGN3M4ZEY.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "88VG68PMGN3M4ZEY.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "88VG68PMGN3M4ZEY.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "88VG68PMGN3M4ZEY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "88VG68PMGN3M4ZEY.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "88VG68PMGN3M4ZEY.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "117635" + }, + "appliesTo" : [ ] + }, + "88VG68PMGN3M4ZEY.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "88VG68PMGN3M4ZEY.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "88VG68PMGN3M4ZEY.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "88VG68PMGN3M4ZEY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "88VG68PMGN3M4ZEY.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "88VG68PMGN3M4ZEY.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5030000000" + }, + "appliesTo" : [ ] + }, + "88VG68PMGN3M4ZEY.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "88VG68PMGN3M4ZEY.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39447" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "88VG68PMGN3M4ZEY.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "88VG68PMGN3M4ZEY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "88VG68PMGN3M4ZEY.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "88VG68PMGN3M4ZEY.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "88VG68PMGN3M4ZEY.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "88VG68PMGN3M4ZEY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "88VG68PMGN3M4ZEY.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "88VG68PMGN3M4ZEY.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.4570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "88VG68PMGN3M4ZEY.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "88VG68PMGN3M4ZEY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "88VG68PMGN3M4ZEY.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "88VG68PMGN3M4ZEY.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "98116" + }, + "appliesTo" : [ ] + }, + "88VG68PMGN3M4ZEY.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "88VG68PMGN3M4ZEY.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "88VG68PMGN3M4ZEY.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "88VG68PMGN3M4ZEY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "88VG68PMGN3M4ZEY.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "88VG68PMGN3M4ZEY.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "52189" + }, + "appliesTo" : [ ] + }, + "88VG68PMGN3M4ZEY.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "88VG68PMGN3M4ZEY.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "88VG68PMGN3M4ZEY.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "88VG68PMGN3M4ZEY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "88VG68PMGN3M4ZEY.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "88VG68PMGN3M4ZEY.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "60018" + }, + "appliesTo" : [ ] + }, + "88VG68PMGN3M4ZEY.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "88VG68PMGN3M4ZEY.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "639ZEB9D49ASFB26" : { + "639ZEB9D49ASFB26.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "639ZEB9D49ASFB26", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "639ZEB9D49ASFB26.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "639ZEB9D49ASFB26.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), t1.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "639ZEB9D49ASFB26.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "639ZEB9D49ASFB26.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "103" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "639ZEB9D49ASFB26.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "639ZEB9D49ASFB26", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "639ZEB9D49ASFB26.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "639ZEB9D49ASFB26.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "62" + }, + "appliesTo" : [ ] + }, + "639ZEB9D49ASFB26.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "639ZEB9D49ASFB26.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t1.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "639ZEB9D49ASFB26.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "639ZEB9D49ASFB26", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "639ZEB9D49ASFB26.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "639ZEB9D49ASFB26.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "217" + }, + "appliesTo" : [ ] + }, + "639ZEB9D49ASFB26.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "639ZEB9D49ASFB26.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), t1.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "639ZEB9D49ASFB26.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "639ZEB9D49ASFB26", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "639ZEB9D49ASFB26.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "639ZEB9D49ASFB26.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t1.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "639ZEB9D49ASFB26.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "639ZEB9D49ASFB26", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "639ZEB9D49ASFB26.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "639ZEB9D49ASFB26.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "100" + }, + "appliesTo" : [ ] + }, + "639ZEB9D49ASFB26.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "639ZEB9D49ASFB26.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t1.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "XKKYTV6J2N4E3GXA" : { + "XKKYTV6J2N4E3GXA.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XKKYTV6J2N4E3GXA", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "XKKYTV6J2N4E3GXA.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XKKYTV6J2N4E3GXA.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "67489" + }, + "appliesTo" : [ ] + }, + "XKKYTV6J2N4E3GXA.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XKKYTV6J2N4E3GXA.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XKKYTV6J2N4E3GXA.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XKKYTV6J2N4E3GXA", + "effectiveDate" : "2016-06-30T23:59:59Z", + "priceDimensions" : { + "XKKYTV6J2N4E3GXA.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XKKYTV6J2N4E3GXA.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9270000000" + }, + "appliesTo" : [ ] + }, + "XKKYTV6J2N4E3GXA.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XKKYTV6J2N4E3GXA.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34461" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XKKYTV6J2N4E3GXA.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "XKKYTV6J2N4E3GXA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XKKYTV6J2N4E3GXA.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "XKKYTV6J2N4E3GXA.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "77571" + }, + "appliesTo" : [ ] + }, + "XKKYTV6J2N4E3GXA.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "XKKYTV6J2N4E3GXA.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XKKYTV6J2N4E3GXA.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "XKKYTV6J2N4E3GXA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XKKYTV6J2N4E3GXA.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "XKKYTV6J2N4E3GXA.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "60342" + }, + "appliesTo" : [ ] + }, + "XKKYTV6J2N4E3GXA.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "XKKYTV6J2N4E3GXA.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XKKYTV6J2N4E3GXA.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "XKKYTV6J2N4E3GXA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XKKYTV6J2N4E3GXA.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "XKKYTV6J2N4E3GXA.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.3210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XKKYTV6J2N4E3GXA.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "XKKYTV6J2N4E3GXA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XKKYTV6J2N4E3GXA.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "XKKYTV6J2N4E3GXA.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39605" + }, + "appliesTo" : [ ] + }, + "XKKYTV6J2N4E3GXA.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "XKKYTV6J2N4E3GXA.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XKKYTV6J2N4E3GXA.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "XKKYTV6J2N4E3GXA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XKKYTV6J2N4E3GXA.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "XKKYTV6J2N4E3GXA.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.4850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XKKYTV6J2N4E3GXA.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XKKYTV6J2N4E3GXA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XKKYTV6J2N4E3GXA.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XKKYTV6J2N4E3GXA.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.2520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XKKYTV6J2N4E3GXA.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XKKYTV6J2N4E3GXA", + "effectiveDate" : "2016-05-31T23:59:59Z", + "priceDimensions" : { + "XKKYTV6J2N4E3GXA.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XKKYTV6J2N4E3GXA.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "52518" + }, + "appliesTo" : [ ] + }, + "XKKYTV6J2N4E3GXA.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XKKYTV6J2N4E3GXA.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XKKYTV6J2N4E3GXA.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "XKKYTV6J2N4E3GXA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XKKYTV6J2N4E3GXA.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "XKKYTV6J2N4E3GXA.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "118275" + }, + "appliesTo" : [ ] + }, + "XKKYTV6J2N4E3GXA.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "XKKYTV6J2N4E3GXA.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XKKYTV6J2N4E3GXA.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "XKKYTV6J2N4E3GXA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XKKYTV6J2N4E3GXA.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "XKKYTV6J2N4E3GXA.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XKKYTV6J2N4E3GXA.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XKKYTV6J2N4E3GXA", + "effectiveDate" : "2016-06-30T23:59:59Z", + "priceDimensions" : { + "XKKYTV6J2N4E3GXA.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XKKYTV6J2N4E3GXA.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "98766" + }, + "appliesTo" : [ ] + }, + "XKKYTV6J2N4E3GXA.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XKKYTV6J2N4E3GXA.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "WT63RNHXYTKJPT3V" : { + "WT63RNHXYTKJPT3V.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "WT63RNHXYTKJPT3V", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "WT63RNHXYTKJPT3V.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "WT63RNHXYTKJPT3V.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5771" + }, + "appliesTo" : [ ] + }, + "WT63RNHXYTKJPT3V.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "WT63RNHXYTKJPT3V.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WT63RNHXYTKJPT3V.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "WT63RNHXYTKJPT3V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WT63RNHXYTKJPT3V.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "WT63RNHXYTKJPT3V.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8058000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WT63RNHXYTKJPT3V.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "WT63RNHXYTKJPT3V", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "WT63RNHXYTKJPT3V.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "WT63RNHXYTKJPT3V.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "WT63RNHXYTKJPT3V.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "WT63RNHXYTKJPT3V.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11208" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WT63RNHXYTKJPT3V.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "WT63RNHXYTKJPT3V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "WT63RNHXYTKJPT3V.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "WT63RNHXYTKJPT3V.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6759" + }, + "appliesTo" : [ ] + }, + "WT63RNHXYTKJPT3V.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "WT63RNHXYTKJPT3V.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2568000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WT63RNHXYTKJPT3V.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "WT63RNHXYTKJPT3V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "WT63RNHXYTKJPT3V.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "WT63RNHXYTKJPT3V.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2260000000" + }, + "appliesTo" : [ ] + }, + "WT63RNHXYTKJPT3V.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "WT63RNHXYTKJPT3V.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5944" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WT63RNHXYTKJPT3V.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "WT63RNHXYTKJPT3V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "WT63RNHXYTKJPT3V.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "WT63RNHXYTKJPT3V.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13252" + }, + "appliesTo" : [ ] + }, + "WT63RNHXYTKJPT3V.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "WT63RNHXYTKJPT3V.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WT63RNHXYTKJPT3V.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "WT63RNHXYTKJPT3V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WT63RNHXYTKJPT3V.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "WT63RNHXYTKJPT3V.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3810000000" + }, + "appliesTo" : [ ] + }, + "WT63RNHXYTKJPT3V.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "WT63RNHXYTKJPT3V.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3400" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WT63RNHXYTKJPT3V.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "WT63RNHXYTKJPT3V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "WT63RNHXYTKJPT3V.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "WT63RNHXYTKJPT3V.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5596000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WT63RNHXYTKJPT3V.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "WT63RNHXYTKJPT3V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WT63RNHXYTKJPT3V.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "WT63RNHXYTKJPT3V.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6608" + }, + "appliesTo" : [ ] + }, + "WT63RNHXYTKJPT3V.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "WT63RNHXYTKJPT3V.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WT63RNHXYTKJPT3V.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "WT63RNHXYTKJPT3V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "WT63RNHXYTKJPT3V.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "WT63RNHXYTKJPT3V.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4909000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "WT63RNHXYTKJPT3V.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "WT63RNHXYTKJPT3V", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "WT63RNHXYTKJPT3V.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "WT63RNHXYTKJPT3V.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2972" + }, + "appliesTo" : [ ] + }, + "WT63RNHXYTKJPT3V.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "WT63RNHXYTKJPT3V.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WT63RNHXYTKJPT3V.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "WT63RNHXYTKJPT3V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "WT63RNHXYTKJPT3V.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "WT63RNHXYTKJPT3V.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "HHBS2UFCC9G8F3DM" : { + "HHBS2UFCC9G8F3DM.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "HHBS2UFCC9G8F3DM", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "HHBS2UFCC9G8F3DM.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "HHBS2UFCC9G8F3DM.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "235" + }, + "appliesTo" : [ ] + }, + "HHBS2UFCC9G8F3DM.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "HHBS2UFCC9G8F3DM.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HHBS2UFCC9G8F3DM.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "HHBS2UFCC9G8F3DM", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "HHBS2UFCC9G8F3DM.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "HHBS2UFCC9G8F3DM.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "HHBS2UFCC9G8F3DM.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "HHBS2UFCC9G8F3DM", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "HHBS2UFCC9G8F3DM.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "HHBS2UFCC9G8F3DM.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "458" + }, + "appliesTo" : [ ] + }, + "HHBS2UFCC9G8F3DM.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "HHBS2UFCC9G8F3DM.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HHBS2UFCC9G8F3DM.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "HHBS2UFCC9G8F3DM", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "HHBS2UFCC9G8F3DM.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "HHBS2UFCC9G8F3DM.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "120" + }, + "appliesTo" : [ ] + }, + "HHBS2UFCC9G8F3DM.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "HHBS2UFCC9G8F3DM.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0137000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HHBS2UFCC9G8F3DM.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "HHBS2UFCC9G8F3DM", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "HHBS2UFCC9G8F3DM.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "HHBS2UFCC9G8F3DM.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0287000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "HHBS2UFCC9G8F3DM.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "HHBS2UFCC9G8F3DM", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "HHBS2UFCC9G8F3DM.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "HHBS2UFCC9G8F3DM.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "244" + }, + "appliesTo" : [ ] + }, + "HHBS2UFCC9G8F3DM.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "HHBS2UFCC9G8F3DM.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0093000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "KD8DVSJPFVSX354N" : { + "KD8DVSJPFVSX354N.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "KD8DVSJPFVSX354N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KD8DVSJPFVSX354N.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "KD8DVSJPFVSX354N.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "198417" + }, + "appliesTo" : [ ] + }, + "KD8DVSJPFVSX354N.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "KD8DVSJPFVSX354N.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KD8DVSJPFVSX354N.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "KD8DVSJPFVSX354N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KD8DVSJPFVSX354N.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "KD8DVSJPFVSX354N.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.4240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KD8DVSJPFVSX354N.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "KD8DVSJPFVSX354N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KD8DVSJPFVSX354N.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "KD8DVSJPFVSX354N.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6490000000" + }, + "appliesTo" : [ ] + }, + "KD8DVSJPFVSX354N.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "KD8DVSJPFVSX354N.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "95894" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KD8DVSJPFVSX354N.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "KD8DVSJPFVSX354N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KD8DVSJPFVSX354N.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "KD8DVSJPFVSX354N.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "99809" + }, + "appliesTo" : [ ] + }, + "KD8DVSJPFVSX354N.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "KD8DVSJPFVSX354N.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KD8DVSJPFVSX354N.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "KD8DVSJPFVSX354N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KD8DVSJPFVSX354N.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "KD8DVSJPFVSX354N.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "KD8DVSJPFVSX354N.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "KD8DVSJPFVSX354N.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "188657" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KD8DVSJPFVSX354N.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "KD8DVSJPFVSX354N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KD8DVSJPFVSX354N.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "KD8DVSJPFVSX354N.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.7780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KD8DVSJPFVSX354N.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "KD8DVSJPFVSX354N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KD8DVSJPFVSX354N.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "KD8DVSJPFVSX354N.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "80149" + }, + "appliesTo" : [ ] + }, + "KD8DVSJPFVSX354N.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "KD8DVSJPFVSX354N.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KD8DVSJPFVSX354N.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "KD8DVSJPFVSX354N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KD8DVSJPFVSX354N.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "KD8DVSJPFVSX354N.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "40418" + }, + "appliesTo" : [ ] + }, + "KD8DVSJPFVSX354N.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "KD8DVSJPFVSX354N.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.6140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KD8DVSJPFVSX354N.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "KD8DVSJPFVSX354N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KD8DVSJPFVSX354N.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "KD8DVSJPFVSX354N.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.0400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KD8DVSJPFVSX354N.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "KD8DVSJPFVSX354N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KD8DVSJPFVSX354N.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "KD8DVSJPFVSX354N.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "85192" + }, + "appliesTo" : [ ] + }, + "KD8DVSJPFVSX354N.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "KD8DVSJPFVSX354N.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KD8DVSJPFVSX354N.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "KD8DVSJPFVSX354N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KD8DVSJPFVSX354N.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "KD8DVSJPFVSX354N.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KD8DVSJPFVSX354N.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "KD8DVSJPFVSX354N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KD8DVSJPFVSX354N.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "KD8DVSJPFVSX354N.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "42990" + }, + "appliesTo" : [ ] + }, + "KD8DVSJPFVSX354N.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "KD8DVSJPFVSX354N.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "39748UVFEUKY3MVQ" : { + "39748UVFEUKY3MVQ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "39748UVFEUKY3MVQ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "39748UVFEUKY3MVQ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "39748UVFEUKY3MVQ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "39748UVFEUKY3MVQ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "39748UVFEUKY3MVQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "39748UVFEUKY3MVQ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "39748UVFEUKY3MVQ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1209" + }, + "appliesTo" : [ ] + }, + "39748UVFEUKY3MVQ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "39748UVFEUKY3MVQ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "39748UVFEUKY3MVQ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "39748UVFEUKY3MVQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "39748UVFEUKY3MVQ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "39748UVFEUKY3MVQ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "39748UVFEUKY3MVQ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "39748UVFEUKY3MVQ", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "39748UVFEUKY3MVQ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "39748UVFEUKY3MVQ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2168" + }, + "appliesTo" : [ ] + }, + "39748UVFEUKY3MVQ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "39748UVFEUKY3MVQ.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "39748UVFEUKY3MVQ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "39748UVFEUKY3MVQ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "39748UVFEUKY3MVQ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "39748UVFEUKY3MVQ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2478" + }, + "appliesTo" : [ ] + }, + "39748UVFEUKY3MVQ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "39748UVFEUKY3MVQ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "39748UVFEUKY3MVQ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "39748UVFEUKY3MVQ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "39748UVFEUKY3MVQ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "39748UVFEUKY3MVQ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4076" + }, + "appliesTo" : [ ] + }, + "39748UVFEUKY3MVQ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "39748UVFEUKY3MVQ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "39748UVFEUKY3MVQ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "39748UVFEUKY3MVQ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "39748UVFEUKY3MVQ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "39748UVFEUKY3MVQ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "39748UVFEUKY3MVQ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "39748UVFEUKY3MVQ", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "39748UVFEUKY3MVQ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "39748UVFEUKY3MVQ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2078" + }, + "appliesTo" : [ ] + }, + "39748UVFEUKY3MVQ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "39748UVFEUKY3MVQ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "39748UVFEUKY3MVQ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "39748UVFEUKY3MVQ", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "39748UVFEUKY3MVQ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "39748UVFEUKY3MVQ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1060" + }, + "appliesTo" : [ ] + }, + "39748UVFEUKY3MVQ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "39748UVFEUKY3MVQ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "39748UVFEUKY3MVQ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "39748UVFEUKY3MVQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "39748UVFEUKY3MVQ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "39748UVFEUKY3MVQ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "39748UVFEUKY3MVQ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "39748UVFEUKY3MVQ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2369" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "39748UVFEUKY3MVQ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "39748UVFEUKY3MVQ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "39748UVFEUKY3MVQ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "39748UVFEUKY3MVQ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4857" + }, + "appliesTo" : [ ] + }, + "39748UVFEUKY3MVQ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "39748UVFEUKY3MVQ.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "39748UVFEUKY3MVQ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "39748UVFEUKY3MVQ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "39748UVFEUKY3MVQ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "39748UVFEUKY3MVQ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "7KSR4DFTZFRCXGGH" : { + "7KSR4DFTZFRCXGGH.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "7KSR4DFTZFRCXGGH", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7KSR4DFTZFRCXGGH.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "7KSR4DFTZFRCXGGH.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "7KSR4DFTZFRCXGGH.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "7KSR4DFTZFRCXGGH.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "51077" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7KSR4DFTZFRCXGGH.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "7KSR4DFTZFRCXGGH", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7KSR4DFTZFRCXGGH.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "7KSR4DFTZFRCXGGH.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "70253" + }, + "appliesTo" : [ ] + }, + "7KSR4DFTZFRCXGGH.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "7KSR4DFTZFRCXGGH.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7KSR4DFTZFRCXGGH.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "7KSR4DFTZFRCXGGH", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7KSR4DFTZFRCXGGH.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "7KSR4DFTZFRCXGGH.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "127326" + }, + "appliesTo" : [ ] + }, + "7KSR4DFTZFRCXGGH.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "7KSR4DFTZFRCXGGH.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7KSR4DFTZFRCXGGH.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "7KSR4DFTZFRCXGGH", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7KSR4DFTZFRCXGGH.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "7KSR4DFTZFRCXGGH.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4880000000" + }, + "appliesTo" : [ ] + }, + "7KSR4DFTZFRCXGGH.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "7KSR4DFTZFRCXGGH.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30324" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7KSR4DFTZFRCXGGH.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "7KSR4DFTZFRCXGGH", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "7KSR4DFTZFRCXGGH.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "7KSR4DFTZFRCXGGH.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.9610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "G7T27N57ERE3PVRC" : { + "G7T27N57ERE3PVRC.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "G7T27N57ERE3PVRC", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "G7T27N57ERE3PVRC.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "G7T27N57ERE3PVRC.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15202" + }, + "appliesTo" : [ ] + }, + "G7T27N57ERE3PVRC.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "G7T27N57ERE3PVRC.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "G7T27N57ERE3PVRC.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "G7T27N57ERE3PVRC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "G7T27N57ERE3PVRC.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "G7T27N57ERE3PVRC.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "G7T27N57ERE3PVRC.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "G7T27N57ERE3PVRC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "G7T27N57ERE3PVRC.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "G7T27N57ERE3PVRC.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3062" + }, + "appliesTo" : [ ] + }, + "G7T27N57ERE3PVRC.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "G7T27N57ERE3PVRC.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "G7T27N57ERE3PVRC.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "G7T27N57ERE3PVRC", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "G7T27N57ERE3PVRC.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "G7T27N57ERE3PVRC.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5291" + }, + "appliesTo" : [ ] + }, + "G7T27N57ERE3PVRC.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "G7T27N57ERE3PVRC.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "G7T27N57ERE3PVRC.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "G7T27N57ERE3PVRC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "G7T27N57ERE3PVRC.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "G7T27N57ERE3PVRC.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12633" + }, + "appliesTo" : [ ] + }, + "G7T27N57ERE3PVRC.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "G7T27N57ERE3PVRC.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "G7T27N57ERE3PVRC.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "G7T27N57ERE3PVRC", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "G7T27N57ERE3PVRC.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "G7T27N57ERE3PVRC.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "G7T27N57ERE3PVRC.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "G7T27N57ERE3PVRC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "G7T27N57ERE3PVRC.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "G7T27N57ERE3PVRC.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5306" + }, + "appliesTo" : [ ] + }, + "G7T27N57ERE3PVRC.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "G7T27N57ERE3PVRC.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "G7T27N57ERE3PVRC.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "G7T27N57ERE3PVRC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "G7T27N57ERE3PVRC.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "G7T27N57ERE3PVRC.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1907" + }, + "appliesTo" : [ ] + }, + "G7T27N57ERE3PVRC.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "G7T27N57ERE3PVRC.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "G7T27N57ERE3PVRC.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "G7T27N57ERE3PVRC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "G7T27N57ERE3PVRC.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "G7T27N57ERE3PVRC.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "G7T27N57ERE3PVRC.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "G7T27N57ERE3PVRC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "G7T27N57ERE3PVRC.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "G7T27N57ERE3PVRC.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5969" + }, + "appliesTo" : [ ] + }, + "G7T27N57ERE3PVRC.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "G7T27N57ERE3PVRC.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "G7T27N57ERE3PVRC.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "G7T27N57ERE3PVRC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "G7T27N57ERE3PVRC.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "G7T27N57ERE3PVRC.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3013" + }, + "appliesTo" : [ ] + }, + "G7T27N57ERE3PVRC.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "G7T27N57ERE3PVRC.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "9KA8YGU8KFGQ7ERN" : { + "9KA8YGU8KFGQ7ERN.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "9KA8YGU8KFGQ7ERN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9KA8YGU8KFGQ7ERN.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "9KA8YGU8KFGQ7ERN.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10475" + }, + "appliesTo" : [ ] + }, + "9KA8YGU8KFGQ7ERN.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "9KA8YGU8KFGQ7ERN.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9KA8YGU8KFGQ7ERN.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "9KA8YGU8KFGQ7ERN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9KA8YGU8KFGQ7ERN.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "9KA8YGU8KFGQ7ERN.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9KA8YGU8KFGQ7ERN.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "9KA8YGU8KFGQ7ERN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9KA8YGU8KFGQ7ERN.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "9KA8YGU8KFGQ7ERN.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "9KA8YGU8KFGQ7ERN.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "9KA8YGU8KFGQ7ERN.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25860" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9KA8YGU8KFGQ7ERN.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "9KA8YGU8KFGQ7ERN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9KA8YGU8KFGQ7ERN.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "9KA8YGU8KFGQ7ERN.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9KA8YGU8KFGQ7ERN.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "9KA8YGU8KFGQ7ERN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9KA8YGU8KFGQ7ERN.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "9KA8YGU8KFGQ7ERN.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "9KA8YGU8KFGQ7ERN.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "9KA8YGU8KFGQ7ERN.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9950" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9KA8YGU8KFGQ7ERN.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "9KA8YGU8KFGQ7ERN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9KA8YGU8KFGQ7ERN.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "9KA8YGU8KFGQ7ERN.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5000000000" + }, + "appliesTo" : [ ] + }, + "9KA8YGU8KFGQ7ERN.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "9KA8YGU8KFGQ7ERN.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13138" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9KA8YGU8KFGQ7ERN.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "9KA8YGU8KFGQ7ERN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9KA8YGU8KFGQ7ERN.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "9KA8YGU8KFGQ7ERN.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13665" + }, + "appliesTo" : [ ] + }, + "9KA8YGU8KFGQ7ERN.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "9KA8YGU8KFGQ7ERN.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9KA8YGU8KFGQ7ERN.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "9KA8YGU8KFGQ7ERN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9KA8YGU8KFGQ7ERN.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "9KA8YGU8KFGQ7ERN.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9KA8YGU8KFGQ7ERN.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "9KA8YGU8KFGQ7ERN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9KA8YGU8KFGQ7ERN.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "9KA8YGU8KFGQ7ERN.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6030000000" + }, + "appliesTo" : [ ] + }, + "9KA8YGU8KFGQ7ERN.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "9KA8YGU8KFGQ7ERN.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5279" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9KA8YGU8KFGQ7ERN.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "9KA8YGU8KFGQ7ERN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9KA8YGU8KFGQ7ERN.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "9KA8YGU8KFGQ7ERN.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27170" + }, + "appliesTo" : [ ] + }, + "9KA8YGU8KFGQ7ERN.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "9KA8YGU8KFGQ7ERN.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9KA8YGU8KFGQ7ERN.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "9KA8YGU8KFGQ7ERN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9KA8YGU8KFGQ7ERN.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "9KA8YGU8KFGQ7ERN.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9KA8YGU8KFGQ7ERN.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "9KA8YGU8KFGQ7ERN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9KA8YGU8KFGQ7ERN.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "9KA8YGU8KFGQ7ERN.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5011" + }, + "appliesTo" : [ ] + }, + "9KA8YGU8KFGQ7ERN.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "9KA8YGU8KFGQ7ERN.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "6PNPTZCGGYT2UXSS" : { + "6PNPTZCGGYT2UXSS.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6PNPTZCGGYT2UXSS", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6PNPTZCGGYT2UXSS.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6PNPTZCGGYT2UXSS.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "6PNPTZCGGYT2UXSS.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6PNPTZCGGYT2UXSS.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3111" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6PNPTZCGGYT2UXSS.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6PNPTZCGGYT2UXSS", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "6PNPTZCGGYT2UXSS.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6PNPTZCGGYT2UXSS.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1267" + }, + "appliesTo" : [ ] + }, + "6PNPTZCGGYT2UXSS.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6PNPTZCGGYT2UXSS.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6PNPTZCGGYT2UXSS.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "6PNPTZCGGYT2UXSS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6PNPTZCGGYT2UXSS.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "6PNPTZCGGYT2UXSS.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3606" + }, + "appliesTo" : [ ] + }, + "6PNPTZCGGYT2UXSS.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "6PNPTZCGGYT2UXSS.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6PNPTZCGGYT2UXSS.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "6PNPTZCGGYT2UXSS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6PNPTZCGGYT2UXSS.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "6PNPTZCGGYT2UXSS.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6PNPTZCGGYT2UXSS.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "6PNPTZCGGYT2UXSS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6PNPTZCGGYT2UXSS.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "6PNPTZCGGYT2UXSS.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2070000000" + }, + "appliesTo" : [ ] + }, + "6PNPTZCGGYT2UXSS.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "6PNPTZCGGYT2UXSS.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1817" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6PNPTZCGGYT2UXSS.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "6PNPTZCGGYT2UXSS", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "6PNPTZCGGYT2UXSS.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "6PNPTZCGGYT2UXSS.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8972" + }, + "appliesTo" : [ ] + }, + "6PNPTZCGGYT2UXSS.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "6PNPTZCGGYT2UXSS.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6PNPTZCGGYT2UXSS.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6PNPTZCGGYT2UXSS", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6PNPTZCGGYT2UXSS.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6PNPTZCGGYT2UXSS.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6PNPTZCGGYT2UXSS.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "6PNPTZCGGYT2UXSS", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "6PNPTZCGGYT2UXSS.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "6PNPTZCGGYT2UXSS.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3586" + }, + "appliesTo" : [ ] + }, + "6PNPTZCGGYT2UXSS.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "6PNPTZCGGYT2UXSS.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6PNPTZCGGYT2UXSS.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6PNPTZCGGYT2UXSS", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "6PNPTZCGGYT2UXSS.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6PNPTZCGGYT2UXSS.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3090" + }, + "appliesTo" : [ ] + }, + "6PNPTZCGGYT2UXSS.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6PNPTZCGGYT2UXSS.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6PNPTZCGGYT2UXSS.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6PNPTZCGGYT2UXSS", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "6PNPTZCGGYT2UXSS.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6PNPTZCGGYT2UXSS.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7252" + }, + "appliesTo" : [ ] + }, + "6PNPTZCGGYT2UXSS.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6PNPTZCGGYT2UXSS.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6PNPTZCGGYT2UXSS.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "6PNPTZCGGYT2UXSS", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "6PNPTZCGGYT2UXSS.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "6PNPTZCGGYT2UXSS.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "TMTUPBFYDNCYXCDK" : { + "TMTUPBFYDNCYXCDK.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TMTUPBFYDNCYXCDK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TMTUPBFYDNCYXCDK.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TMTUPBFYDNCYXCDK.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TMTUPBFYDNCYXCDK.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TMTUPBFYDNCYXCDK.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "168676" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TMTUPBFYDNCYXCDK.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "TMTUPBFYDNCYXCDK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TMTUPBFYDNCYXCDK.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "TMTUPBFYDNCYXCDK.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "103108" + }, + "appliesTo" : [ ] + }, + "TMTUPBFYDNCYXCDK.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "TMTUPBFYDNCYXCDK.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TMTUPBFYDNCYXCDK.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "TMTUPBFYDNCYXCDK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TMTUPBFYDNCYXCDK.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "TMTUPBFYDNCYXCDK.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.4790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TMTUPBFYDNCYXCDK.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "TMTUPBFYDNCYXCDK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TMTUPBFYDNCYXCDK.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "TMTUPBFYDNCYXCDK.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TMTUPBFYDNCYXCDK.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TMTUPBFYDNCYXCDK", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "TMTUPBFYDNCYXCDK.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TMTUPBFYDNCYXCDK.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TMTUPBFYDNCYXCDK.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TMTUPBFYDNCYXCDK.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "80644" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TMTUPBFYDNCYXCDK.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TMTUPBFYDNCYXCDK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TMTUPBFYDNCYXCDK.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TMTUPBFYDNCYXCDK.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4130000000" + }, + "appliesTo" : [ ] + }, + "TMTUPBFYDNCYXCDK.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TMTUPBFYDNCYXCDK.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "89704" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TMTUPBFYDNCYXCDK.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "TMTUPBFYDNCYXCDK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TMTUPBFYDNCYXCDK.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "TMTUPBFYDNCYXCDK.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.3950000000" + }, + "appliesTo" : [ ] + }, + "TMTUPBFYDNCYXCDK.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "TMTUPBFYDNCYXCDK.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47322" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TMTUPBFYDNCYXCDK.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "TMTUPBFYDNCYXCDK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TMTUPBFYDNCYXCDK.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "TMTUPBFYDNCYXCDK.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "11.3350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TMTUPBFYDNCYXCDK.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TMTUPBFYDNCYXCDK", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "TMTUPBFYDNCYXCDK.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TMTUPBFYDNCYXCDK.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "41173" + }, + "appliesTo" : [ ] + }, + "TMTUPBFYDNCYXCDK.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TMTUPBFYDNCYXCDK.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.6930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TMTUPBFYDNCYXCDK.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TMTUPBFYDNCYXCDK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TMTUPBFYDNCYXCDK.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TMTUPBFYDNCYXCDK.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.8610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TMTUPBFYDNCYXCDK.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "TMTUPBFYDNCYXCDK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TMTUPBFYDNCYXCDK.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "TMTUPBFYDNCYXCDK.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "202095" + }, + "appliesTo" : [ ] + }, + "TMTUPBFYDNCYXCDK.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "TMTUPBFYDNCYXCDK.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TMTUPBFYDNCYXCDK.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "TMTUPBFYDNCYXCDK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TMTUPBFYDNCYXCDK.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "TMTUPBFYDNCYXCDK.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "92697" + }, + "appliesTo" : [ ] + }, + "TMTUPBFYDNCYXCDK.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "TMTUPBFYDNCYXCDK.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "GH36ES6UF9N3TAPC" : { + "GH36ES6UF9N3TAPC.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "GH36ES6UF9N3TAPC", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "GH36ES6UF9N3TAPC.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "GH36ES6UF9N3TAPC.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12989" + }, + "appliesTo" : [ ] + }, + "GH36ES6UF9N3TAPC.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "GH36ES6UF9N3TAPC.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GH36ES6UF9N3TAPC.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "GH36ES6UF9N3TAPC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GH36ES6UF9N3TAPC.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "GH36ES6UF9N3TAPC.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6626" + }, + "appliesTo" : [ ] + }, + "GH36ES6UF9N3TAPC.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "GH36ES6UF9N3TAPC.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GH36ES6UF9N3TAPC.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "GH36ES6UF9N3TAPC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GH36ES6UF9N3TAPC.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "GH36ES6UF9N3TAPC.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14986" + }, + "appliesTo" : [ ] + }, + "GH36ES6UF9N3TAPC.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "GH36ES6UF9N3TAPC.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "GH36ES6UF9N3TAPC.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "GH36ES6UF9N3TAPC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GH36ES6UF9N3TAPC.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "GH36ES6UF9N3TAPC.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "GH36ES6UF9N3TAPC.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "GH36ES6UF9N3TAPC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GH36ES6UF9N3TAPC.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "GH36ES6UF9N3TAPC.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7646" + }, + "appliesTo" : [ ] + }, + "GH36ES6UF9N3TAPC.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "GH36ES6UF9N3TAPC.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GH36ES6UF9N3TAPC.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "GH36ES6UF9N3TAPC", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "GH36ES6UF9N3TAPC.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "GH36ES6UF9N3TAPC.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GH36ES6UF9N3TAPC.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "GH36ES6UF9N3TAPC", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GH36ES6UF9N3TAPC.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "GH36ES6UF9N3TAPC.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35070" + }, + "appliesTo" : [ ] + }, + "GH36ES6UF9N3TAPC.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "GH36ES6UF9N3TAPC.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "GH36ES6UF9N3TAPC.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "GH36ES6UF9N3TAPC", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "GH36ES6UF9N3TAPC.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "GH36ES6UF9N3TAPC.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6810000000" + }, + "appliesTo" : [ ] + }, + "GH36ES6UF9N3TAPC.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "GH36ES6UF9N3TAPC.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17890" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GH36ES6UF9N3TAPC.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "GH36ES6UF9N3TAPC", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GH36ES6UF9N3TAPC.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "GH36ES6UF9N3TAPC.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12175" + }, + "appliesTo" : [ ] + }, + "GH36ES6UF9N3TAPC.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "GH36ES6UF9N3TAPC.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GH36ES6UF9N3TAPC.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "GH36ES6UF9N3TAPC", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "GH36ES6UF9N3TAPC.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "GH36ES6UF9N3TAPC.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22858" + }, + "appliesTo" : [ ] + }, + "GH36ES6UF9N3TAPC.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "GH36ES6UF9N3TAPC.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GH36ES6UF9N3TAPC.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "GH36ES6UF9N3TAPC", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "GH36ES6UF9N3TAPC.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "GH36ES6UF9N3TAPC.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "FHFGWVJGRUAB5YUF" : { + "FHFGWVJGRUAB5YUF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "FHFGWVJGRUAB5YUF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FHFGWVJGRUAB5YUF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "FHFGWVJGRUAB5YUF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8042" + }, + "appliesTo" : [ ] + }, + "FHFGWVJGRUAB5YUF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "FHFGWVJGRUAB5YUF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FHFGWVJGRUAB5YUF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "FHFGWVJGRUAB5YUF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FHFGWVJGRUAB5YUF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "FHFGWVJGRUAB5YUF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15762" + }, + "appliesTo" : [ ] + }, + "FHFGWVJGRUAB5YUF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "FHFGWVJGRUAB5YUF.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FHFGWVJGRUAB5YUF.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "FHFGWVJGRUAB5YUF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FHFGWVJGRUAB5YUF.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "FHFGWVJGRUAB5YUF.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FHFGWVJGRUAB5YUF.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "FHFGWVJGRUAB5YUF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FHFGWVJGRUAB5YUF.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "FHFGWVJGRUAB5YUF.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6840000000" + }, + "appliesTo" : [ ] + }, + "FHFGWVJGRUAB5YUF.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "FHFGWVJGRUAB5YUF.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17973" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FHFGWVJGRUAB5YUF.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "FHFGWVJGRUAB5YUF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FHFGWVJGRUAB5YUF.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "FHFGWVJGRUAB5YUF.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9248" + }, + "appliesTo" : [ ] + }, + "FHFGWVJGRUAB5YUF.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "FHFGWVJGRUAB5YUF.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FHFGWVJGRUAB5YUF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "FHFGWVJGRUAB5YUF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FHFGWVJGRUAB5YUF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "FHFGWVJGRUAB5YUF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15601" + }, + "appliesTo" : [ ] + }, + "FHFGWVJGRUAB5YUF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "FHFGWVJGRUAB5YUF.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FHFGWVJGRUAB5YUF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "FHFGWVJGRUAB5YUF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FHFGWVJGRUAB5YUF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "FHFGWVJGRUAB5YUF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29330" + }, + "appliesTo" : [ ] + }, + "FHFGWVJGRUAB5YUF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "FHFGWVJGRUAB5YUF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FHFGWVJGRUAB5YUF.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "FHFGWVJGRUAB5YUF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FHFGWVJGRUAB5YUF.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "FHFGWVJGRUAB5YUF.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FHFGWVJGRUAB5YUF.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "FHFGWVJGRUAB5YUF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FHFGWVJGRUAB5YUF.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "FHFGWVJGRUAB5YUF.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "FHFGWVJGRUAB5YUF.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "FHFGWVJGRUAB5YUF.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35227" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FHFGWVJGRUAB5YUF.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "FHFGWVJGRUAB5YUF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FHFGWVJGRUAB5YUF.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "FHFGWVJGRUAB5YUF.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "FHFGWVJGRUAB5YUF.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "FHFGWVJGRUAB5YUF.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18126" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FHFGWVJGRUAB5YUF.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "FHFGWVJGRUAB5YUF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FHFGWVJGRUAB5YUF.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "FHFGWVJGRUAB5YUF.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FHFGWVJGRUAB5YUF.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "FHFGWVJGRUAB5YUF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FHFGWVJGRUAB5YUF.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "FHFGWVJGRUAB5YUF.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "MDKVAJXMJGZFDJUE" : { + "MDKVAJXMJGZFDJUE.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "MDKVAJXMJGZFDJUE", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "MDKVAJXMJGZFDJUE.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "MDKVAJXMJGZFDJUE.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "567" + }, + "appliesTo" : [ ] + }, + "MDKVAJXMJGZFDJUE.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "MDKVAJXMJGZFDJUE.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MDKVAJXMJGZFDJUE.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "MDKVAJXMJGZFDJUE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MDKVAJXMJGZFDJUE.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "MDKVAJXMJGZFDJUE.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0380000000" + }, + "appliesTo" : [ ] + }, + "MDKVAJXMJGZFDJUE.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "MDKVAJXMJGZFDJUE.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "332" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MDKVAJXMJGZFDJUE.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "MDKVAJXMJGZFDJUE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MDKVAJXMJGZFDJUE.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "MDKVAJXMJGZFDJUE.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MDKVAJXMJGZFDJUE.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "MDKVAJXMJGZFDJUE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MDKVAJXMJGZFDJUE.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "MDKVAJXMJGZFDJUE.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "682" + }, + "appliesTo" : [ ] + }, + "MDKVAJXMJGZFDJUE.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "MDKVAJXMJGZFDJUE.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MDKVAJXMJGZFDJUE.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "MDKVAJXMJGZFDJUE", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "MDKVAJXMJGZFDJUE.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "MDKVAJXMJGZFDJUE.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "593" + }, + "appliesTo" : [ ] + }, + "MDKVAJXMJGZFDJUE.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "MDKVAJXMJGZFDJUE.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MDKVAJXMJGZFDJUE.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "MDKVAJXMJGZFDJUE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MDKVAJXMJGZFDJUE.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "MDKVAJXMJGZFDJUE.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MDKVAJXMJGZFDJUE.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "MDKVAJXMJGZFDJUE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MDKVAJXMJGZFDJUE.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "MDKVAJXMJGZFDJUE.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "MDKVAJXMJGZFDJUE.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "MDKVAJXMJGZFDJUE.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "652" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MDKVAJXMJGZFDJUE.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "MDKVAJXMJGZFDJUE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MDKVAJXMJGZFDJUE.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "MDKVAJXMJGZFDJUE.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1336" + }, + "appliesTo" : [ ] + }, + "MDKVAJXMJGZFDJUE.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "MDKVAJXMJGZFDJUE.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MDKVAJXMJGZFDJUE.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "MDKVAJXMJGZFDJUE", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "MDKVAJXMJGZFDJUE.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "MDKVAJXMJGZFDJUE.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1114" + }, + "appliesTo" : [ ] + }, + "MDKVAJXMJGZFDJUE.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "MDKVAJXMJGZFDJUE.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MDKVAJXMJGZFDJUE.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "MDKVAJXMJGZFDJUE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MDKVAJXMJGZFDJUE.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "MDKVAJXMJGZFDJUE.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MDKVAJXMJGZFDJUE.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "MDKVAJXMJGZFDJUE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MDKVAJXMJGZFDJUE.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "MDKVAJXMJGZFDJUE.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MDKVAJXMJGZFDJUE.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "MDKVAJXMJGZFDJUE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MDKVAJXMJGZFDJUE.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "MDKVAJXMJGZFDJUE.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "289" + }, + "appliesTo" : [ ] + }, + "MDKVAJXMJGZFDJUE.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "MDKVAJXMJGZFDJUE.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "2KNBBY32AX7JPE72" : { + "2KNBBY32AX7JPE72.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "2KNBBY32AX7JPE72", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2KNBBY32AX7JPE72.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "2KNBBY32AX7JPE72.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21419" + }, + "appliesTo" : [ ] + }, + "2KNBBY32AX7JPE72.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "2KNBBY32AX7JPE72.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2KNBBY32AX7JPE72.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "2KNBBY32AX7JPE72", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2KNBBY32AX7JPE72.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "2KNBBY32AX7JPE72.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "42950" + }, + "appliesTo" : [ ] + }, + "2KNBBY32AX7JPE72.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "2KNBBY32AX7JPE72.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2KNBBY32AX7JPE72.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "2KNBBY32AX7JPE72", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2KNBBY32AX7JPE72.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "2KNBBY32AX7JPE72.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21485" + }, + "appliesTo" : [ ] + }, + "2KNBBY32AX7JPE72.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "2KNBBY32AX7JPE72.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2KNBBY32AX7JPE72.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "2KNBBY32AX7JPE72", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2KNBBY32AX7JPE72.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "2KNBBY32AX7JPE72.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2KNBBY32AX7JPE72.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "2KNBBY32AX7JPE72", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2KNBBY32AX7JPE72.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "2KNBBY32AX7JPE72.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2KNBBY32AX7JPE72.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "2KNBBY32AX7JPE72", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2KNBBY32AX7JPE72.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "2KNBBY32AX7JPE72.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "2KNBBY32AX7JPE72.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "2KNBBY32AX7JPE72.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14494" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2KNBBY32AX7JPE72.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "2KNBBY32AX7JPE72", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2KNBBY32AX7JPE72.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "2KNBBY32AX7JPE72.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2KNBBY32AX7JPE72.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "2KNBBY32AX7JPE72", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2KNBBY32AX7JPE72.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "2KNBBY32AX7JPE72.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8280000000" + }, + "appliesTo" : [ ] + }, + "2KNBBY32AX7JPE72.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "2KNBBY32AX7JPE72.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7252" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2KNBBY32AX7JPE72.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "2KNBBY32AX7JPE72", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2KNBBY32AX7JPE72.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "2KNBBY32AX7JPE72.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7219" + }, + "appliesTo" : [ ] + }, + "2KNBBY32AX7JPE72.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "2KNBBY32AX7JPE72.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2KNBBY32AX7JPE72.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "2KNBBY32AX7JPE72", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2KNBBY32AX7JPE72.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "2KNBBY32AX7JPE72.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2KNBBY32AX7JPE72.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "2KNBBY32AX7JPE72", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2KNBBY32AX7JPE72.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "2KNBBY32AX7JPE72.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "42786" + }, + "appliesTo" : [ ] + }, + "2KNBBY32AX7JPE72.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "2KNBBY32AX7JPE72.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2KNBBY32AX7JPE72.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "2KNBBY32AX7JPE72", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2KNBBY32AX7JPE72.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "2KNBBY32AX7JPE72.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "2KNBBY32AX7JPE72.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "2KNBBY32AX7JPE72.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14428" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "QCQ27AYFPSSTJG55" : { + "QCQ27AYFPSSTJG55.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QCQ27AYFPSSTJG55", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QCQ27AYFPSSTJG55.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QCQ27AYFPSSTJG55.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1632" + }, + "appliesTo" : [ ] + }, + "QCQ27AYFPSSTJG55.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QCQ27AYFPSSTJG55.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QCQ27AYFPSSTJG55.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QCQ27AYFPSSTJG55", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "QCQ27AYFPSSTJG55.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QCQ27AYFPSSTJG55.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "947" + }, + "appliesTo" : [ ] + }, + "QCQ27AYFPSSTJG55.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QCQ27AYFPSSTJG55.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QCQ27AYFPSSTJG55.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QCQ27AYFPSSTJG55", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "QCQ27AYFPSSTJG55.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QCQ27AYFPSSTJG55.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QCQ27AYFPSSTJG55.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QCQ27AYFPSSTJG55", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QCQ27AYFPSSTJG55.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QCQ27AYFPSSTJG55.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QCQ27AYFPSSTJG55.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QCQ27AYFPSSTJG55.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2932" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QCQ27AYFPSSTJG55.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QCQ27AYFPSSTJG55", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "QCQ27AYFPSSTJG55.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QCQ27AYFPSSTJG55.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1438" + }, + "appliesTo" : [ ] + }, + "QCQ27AYFPSSTJG55.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QCQ27AYFPSSTJG55.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "Y6BQV4XBTAFVVV2A" : { + "Y6BQV4XBTAFVVV2A.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "Y6BQV4XBTAFVVV2A", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Y6BQV4XBTAFVVV2A.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "Y6BQV4XBTAFVVV2A.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7220000000" + }, + "appliesTo" : [ ] + }, + "Y6BQV4XBTAFVVV2A.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "Y6BQV4XBTAFVVV2A.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18979" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y6BQV4XBTAFVVV2A.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "Y6BQV4XBTAFVVV2A", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Y6BQV4XBTAFVVV2A.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "Y6BQV4XBTAFVVV2A.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37587" + }, + "appliesTo" : [ ] + }, + "Y6BQV4XBTAFVVV2A.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "Y6BQV4XBTAFVVV2A.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Y6BQV4XBTAFVVV2A.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Y6BQV4XBTAFVVV2A", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "Y6BQV4XBTAFVVV2A.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Y6BQV4XBTAFVVV2A.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34603" + }, + "appliesTo" : [ ] + }, + "Y6BQV4XBTAFVVV2A.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Y6BQV4XBTAFVVV2A.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Y6BQV4XBTAFVVV2A.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "Y6BQV4XBTAFVVV2A", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Y6BQV4XBTAFVVV2A.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "Y6BQV4XBTAFVVV2A.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Y6BQV4XBTAFVVV2A.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Y6BQV4XBTAFVVV2A", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "Y6BQV4XBTAFVVV2A.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Y6BQV4XBTAFVVV2A.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17788" + }, + "appliesTo" : [ ] + }, + "Y6BQV4XBTAFVVV2A.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Y6BQV4XBTAFVVV2A.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y6BQV4XBTAFVVV2A.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "Y6BQV4XBTAFVVV2A", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Y6BQV4XBTAFVVV2A.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "Y6BQV4XBTAFVVV2A.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15309" + }, + "appliesTo" : [ ] + }, + "Y6BQV4XBTAFVVV2A.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "Y6BQV4XBTAFVVV2A.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Y6BQV4XBTAFVVV2A.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Y6BQV4XBTAFVVV2A", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "Y6BQV4XBTAFVVV2A.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Y6BQV4XBTAFVVV2A.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14108" + }, + "appliesTo" : [ ] + }, + "Y6BQV4XBTAFVVV2A.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Y6BQV4XBTAFVVV2A.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Y6BQV4XBTAFVVV2A.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "Y6BQV4XBTAFVVV2A", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Y6BQV4XBTAFVVV2A.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "Y6BQV4XBTAFVVV2A.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Y6BQV4XBTAFVVV2A.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Y6BQV4XBTAFVVV2A", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Y6BQV4XBTAFVVV2A.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Y6BQV4XBTAFVVV2A.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Y6BQV4XBTAFVVV2A.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Y6BQV4XBTAFVVV2A", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Y6BQV4XBTAFVVV2A.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Y6BQV4XBTAFVVV2A.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8140000000" + }, + "appliesTo" : [ ] + }, + "Y6BQV4XBTAFVVV2A.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Y6BQV4XBTAFVVV2A.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7132" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y6BQV4XBTAFVVV2A.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "Y6BQV4XBTAFVVV2A", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Y6BQV4XBTAFVVV2A.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "Y6BQV4XBTAFVVV2A.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Y6BQV4XBTAFVVV2A.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "Y6BQV4XBTAFVVV2A", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Y6BQV4XBTAFVVV2A.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "Y6BQV4XBTAFVVV2A.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7745" + }, + "appliesTo" : [ ] + }, + "Y6BQV4XBTAFVVV2A.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "Y6BQV4XBTAFVVV2A.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "X4PYRTAZG2VJ5RJV" : { + "X4PYRTAZG2VJ5RJV.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "X4PYRTAZG2VJ5RJV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X4PYRTAZG2VJ5RJV.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "X4PYRTAZG2VJ5RJV.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12689" + }, + "appliesTo" : [ ] + }, + "X4PYRTAZG2VJ5RJV.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "X4PYRTAZG2VJ5RJV.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "X4PYRTAZG2VJ5RJV.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "X4PYRTAZG2VJ5RJV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "X4PYRTAZG2VJ5RJV.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "X4PYRTAZG2VJ5RJV.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "54854" + }, + "appliesTo" : [ ] + }, + "X4PYRTAZG2VJ5RJV.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "X4PYRTAZG2VJ5RJV.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "X4PYRTAZG2VJ5RJV.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "X4PYRTAZG2VJ5RJV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "X4PYRTAZG2VJ5RJV.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "X4PYRTAZG2VJ5RJV.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "X4PYRTAZG2VJ5RJV.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "X4PYRTAZG2VJ5RJV", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "X4PYRTAZG2VJ5RJV.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "X4PYRTAZG2VJ5RJV.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "X4PYRTAZG2VJ5RJV.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "X4PYRTAZG2VJ5RJV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X4PYRTAZG2VJ5RJV.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "X4PYRTAZG2VJ5RJV.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25329" + }, + "appliesTo" : [ ] + }, + "X4PYRTAZG2VJ5RJV.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "X4PYRTAZG2VJ5RJV.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "X4PYRTAZG2VJ5RJV.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "X4PYRTAZG2VJ5RJV", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "X4PYRTAZG2VJ5RJV.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "X4PYRTAZG2VJ5RJV.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "X4PYRTAZG2VJ5RJV.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "X4PYRTAZG2VJ5RJV", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "X4PYRTAZG2VJ5RJV.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "X4PYRTAZG2VJ5RJV.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9448" + }, + "appliesTo" : [ ] + }, + "X4PYRTAZG2VJ5RJV.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "X4PYRTAZG2VJ5RJV.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "X4PYRTAZG2VJ5RJV.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "X4PYRTAZG2VJ5RJV", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "X4PYRTAZG2VJ5RJV.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "X4PYRTAZG2VJ5RJV.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18515" + }, + "appliesTo" : [ ] + }, + "X4PYRTAZG2VJ5RJV.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "X4PYRTAZG2VJ5RJV.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "X4PYRTAZG2VJ5RJV.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "X4PYRTAZG2VJ5RJV", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "X4PYRTAZG2VJ5RJV.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "X4PYRTAZG2VJ5RJV.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "X4PYRTAZG2VJ5RJV.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "X4PYRTAZG2VJ5RJV.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "40187" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "X4PYRTAZG2VJ5RJV.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "X4PYRTAZG2VJ5RJV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "X4PYRTAZG2VJ5RJV.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "X4PYRTAZG2VJ5RJV.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27990" + }, + "appliesTo" : [ ] + }, + "X4PYRTAZG2VJ5RJV.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "X4PYRTAZG2VJ5RJV.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "X4PYRTAZG2VJ5RJV.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "X4PYRTAZG2VJ5RJV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X4PYRTAZG2VJ5RJV.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "X4PYRTAZG2VJ5RJV.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "X4PYRTAZG2VJ5RJV.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "X4PYRTAZG2VJ5RJV", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "X4PYRTAZG2VJ5RJV.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "X4PYRTAZG2VJ5RJV.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21376" + }, + "appliesTo" : [ ] + }, + "X4PYRTAZG2VJ5RJV.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "X4PYRTAZG2VJ5RJV.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "V3RF6UFJXPKZ5CNE" : { + "V3RF6UFJXPKZ5CNE.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "V3RF6UFJXPKZ5CNE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V3RF6UFJXPKZ5CNE.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "V3RF6UFJXPKZ5CNE.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.2340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "V3RF6UFJXPKZ5CNE.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "V3RF6UFJXPKZ5CNE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V3RF6UFJXPKZ5CNE.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "V3RF6UFJXPKZ5CNE.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "V3RF6UFJXPKZ5CNE.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "V3RF6UFJXPKZ5CNE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V3RF6UFJXPKZ5CNE.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "V3RF6UFJXPKZ5CNE.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19042" + }, + "appliesTo" : [ ] + }, + "V3RF6UFJXPKZ5CNE.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "V3RF6UFJXPKZ5CNE.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "V3RF6UFJXPKZ5CNE.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "V3RF6UFJXPKZ5CNE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V3RF6UFJXPKZ5CNE.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "V3RF6UFJXPKZ5CNE.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "V3RF6UFJXPKZ5CNE.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "V3RF6UFJXPKZ5CNE.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "65393" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "V3RF6UFJXPKZ5CNE.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "V3RF6UFJXPKZ5CNE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V3RF6UFJXPKZ5CNE.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "V3RF6UFJXPKZ5CNE.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21872" + }, + "appliesTo" : [ ] + }, + "V3RF6UFJXPKZ5CNE.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "V3RF6UFJXPKZ5CNE.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "V3RF6UFJXPKZ5CNE.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "V3RF6UFJXPKZ5CNE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V3RF6UFJXPKZ5CNE.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "V3RF6UFJXPKZ5CNE.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "V3RF6UFJXPKZ5CNE.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "V3RF6UFJXPKZ5CNE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V3RF6UFJXPKZ5CNE.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "V3RF6UFJXPKZ5CNE.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "V3RF6UFJXPKZ5CNE.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "V3RF6UFJXPKZ5CNE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V3RF6UFJXPKZ5CNE.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "V3RF6UFJXPKZ5CNE.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "54658" + }, + "appliesTo" : [ ] + }, + "V3RF6UFJXPKZ5CNE.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "V3RF6UFJXPKZ5CNE.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "V3RF6UFJXPKZ5CNE.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "V3RF6UFJXPKZ5CNE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V3RF6UFJXPKZ5CNE.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "V3RF6UFJXPKZ5CNE.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2690000000" + }, + "appliesTo" : [ ] + }, + "V3RF6UFJXPKZ5CNE.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "V3RF6UFJXPKZ5CNE.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33362" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "V3RF6UFJXPKZ5CNE.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "V3RF6UFJXPKZ5CNE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V3RF6UFJXPKZ5CNE.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "V3RF6UFJXPKZ5CNE.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "V3RF6UFJXPKZ5CNE.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "V3RF6UFJXPKZ5CNE.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "42814" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "V3RF6UFJXPKZ5CNE.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "V3RF6UFJXPKZ5CNE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V3RF6UFJXPKZ5CNE.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "V3RF6UFJXPKZ5CNE.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29056" + }, + "appliesTo" : [ ] + }, + "V3RF6UFJXPKZ5CNE.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "V3RF6UFJXPKZ5CNE.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "V3RF6UFJXPKZ5CNE.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "V3RF6UFJXPKZ5CNE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V3RF6UFJXPKZ5CNE.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "V3RF6UFJXPKZ5CNE.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37268" + }, + "appliesTo" : [ ] + }, + "V3RF6UFJXPKZ5CNE.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "V3RF6UFJXPKZ5CNE.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "UAKHM4ASYH9KFBED" : { + "UAKHM4ASYH9KFBED.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "UAKHM4ASYH9KFBED", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UAKHM4ASYH9KFBED.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "UAKHM4ASYH9KFBED.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.7810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "UAKHM4ASYH9KFBED.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "UAKHM4ASYH9KFBED", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UAKHM4ASYH9KFBED.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "UAKHM4ASYH9KFBED.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23573" + }, + "appliesTo" : [ ] + }, + "UAKHM4ASYH9KFBED.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "UAKHM4ASYH9KFBED.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "UAKHM4ASYH9KFBED.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "UAKHM4ASYH9KFBED", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "UAKHM4ASYH9KFBED.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "UAKHM4ASYH9KFBED.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "UAKHM4ASYH9KFBED.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "UAKHM4ASYH9KFBED.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "41316" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "UAKHM4ASYH9KFBED.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "UAKHM4ASYH9KFBED", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "UAKHM4ASYH9KFBED.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "UAKHM4ASYH9KFBED.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "44676" + }, + "appliesTo" : [ ] + }, + "UAKHM4ASYH9KFBED.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "UAKHM4ASYH9KFBED.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "UAKHM4ASYH9KFBED.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "UAKHM4ASYH9KFBED", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "UAKHM4ASYH9KFBED.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "UAKHM4ASYH9KFBED.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "51378" + }, + "appliesTo" : [ ] + }, + "UAKHM4ASYH9KFBED.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "UAKHM4ASYH9KFBED.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "UAKHM4ASYH9KFBED.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "UAKHM4ASYH9KFBED", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "UAKHM4ASYH9KFBED.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "UAKHM4ASYH9KFBED.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "87407" + }, + "appliesTo" : [ ] + }, + "UAKHM4ASYH9KFBED.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "UAKHM4ASYH9KFBED.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "UAKHM4ASYH9KFBED.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "UAKHM4ASYH9KFBED", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "UAKHM4ASYH9KFBED.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "UAKHM4ASYH9KFBED.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "UAKHM4ASYH9KFBED.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "UAKHM4ASYH9KFBED", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "UAKHM4ASYH9KFBED.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "UAKHM4ASYH9KFBED.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "104117" + }, + "appliesTo" : [ ] + }, + "UAKHM4ASYH9KFBED.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "UAKHM4ASYH9KFBED.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "UAKHM4ASYH9KFBED.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "UAKHM4ASYH9KFBED", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "UAKHM4ASYH9KFBED.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "UAKHM4ASYH9KFBED.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.3530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "UAKHM4ASYH9KFBED.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "UAKHM4ASYH9KFBED", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UAKHM4ASYH9KFBED.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "UAKHM4ASYH9KFBED.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47342" + }, + "appliesTo" : [ ] + }, + "UAKHM4ASYH9KFBED.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "UAKHM4ASYH9KFBED.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "UAKHM4ASYH9KFBED.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "UAKHM4ASYH9KFBED", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "UAKHM4ASYH9KFBED.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "UAKHM4ASYH9KFBED.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4700000000" + }, + "appliesTo" : [ ] + }, + "UAKHM4ASYH9KFBED.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "UAKHM4ASYH9KFBED.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20498" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "UAKHM4ASYH9KFBED.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "UAKHM4ASYH9KFBED", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "UAKHM4ASYH9KFBED.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "UAKHM4ASYH9KFBED.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.0440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "2WG3ZVDRBDM6AXDY" : { + "2WG3ZVDRBDM6AXDY.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "2WG3ZVDRBDM6AXDY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2WG3ZVDRBDM6AXDY.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "2WG3ZVDRBDM6AXDY.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2WG3ZVDRBDM6AXDY.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "2WG3ZVDRBDM6AXDY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2WG3ZVDRBDM6AXDY.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "2WG3ZVDRBDM6AXDY.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "2WG3ZVDRBDM6AXDY.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "2WG3ZVDRBDM6AXDY.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4144" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2WG3ZVDRBDM6AXDY.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "2WG3ZVDRBDM6AXDY", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "2WG3ZVDRBDM6AXDY.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "2WG3ZVDRBDM6AXDY.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3860" + }, + "appliesTo" : [ ] + }, + "2WG3ZVDRBDM6AXDY.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "2WG3ZVDRBDM6AXDY.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2WG3ZVDRBDM6AXDY.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "2WG3ZVDRBDM6AXDY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2WG3ZVDRBDM6AXDY.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "2WG3ZVDRBDM6AXDY.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1644000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2WG3ZVDRBDM6AXDY.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "2WG3ZVDRBDM6AXDY", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "2WG3ZVDRBDM6AXDY.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "2WG3ZVDRBDM6AXDY.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1558" + }, + "appliesTo" : [ ] + }, + "2WG3ZVDRBDM6AXDY.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "2WG3ZVDRBDM6AXDY.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2WG3ZVDRBDM6AXDY.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "2WG3ZVDRBDM6AXDY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2WG3ZVDRBDM6AXDY.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "2WG3ZVDRBDM6AXDY.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2090" + }, + "appliesTo" : [ ] + }, + "2WG3ZVDRBDM6AXDY.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "2WG3ZVDRBDM6AXDY.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0795000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2WG3ZVDRBDM6AXDY.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "2WG3ZVDRBDM6AXDY", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "2WG3ZVDRBDM6AXDY.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "2WG3ZVDRBDM6AXDY.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1976" + }, + "appliesTo" : [ ] + }, + "2WG3ZVDRBDM6AXDY.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "2WG3ZVDRBDM6AXDY.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2WG3ZVDRBDM6AXDY.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "2WG3ZVDRBDM6AXDY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2WG3ZVDRBDM6AXDY.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "2WG3ZVDRBDM6AXDY.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1983000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2WG3ZVDRBDM6AXDY.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "2WG3ZVDRBDM6AXDY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2WG3ZVDRBDM6AXDY.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "2WG3ZVDRBDM6AXDY.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "846" + }, + "appliesTo" : [ ] + }, + "2WG3ZVDRBDM6AXDY.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "2WG3ZVDRBDM6AXDY.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0966000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2WG3ZVDRBDM6AXDY.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "2WG3ZVDRBDM6AXDY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2WG3ZVDRBDM6AXDY.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "2WG3ZVDRBDM6AXDY.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "2WG3ZVDRBDM6AXDY.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "2WG3ZVDRBDM6AXDY.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1675" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2WG3ZVDRBDM6AXDY.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "2WG3ZVDRBDM6AXDY", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "2WG3ZVDRBDM6AXDY.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "2WG3ZVDRBDM6AXDY.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "787" + }, + "appliesTo" : [ ] + }, + "2WG3ZVDRBDM6AXDY.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "2WG3ZVDRBDM6AXDY.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2WG3ZVDRBDM6AXDY.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "2WG3ZVDRBDM6AXDY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2WG3ZVDRBDM6AXDY.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "2WG3ZVDRBDM6AXDY.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1844000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "N3VSW4S7495SMAMS" : { + "N3VSW4S7495SMAMS.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "N3VSW4S7495SMAMS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "N3VSW4S7495SMAMS.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "N3VSW4S7495SMAMS.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "72049" + }, + "appliesTo" : [ ] + }, + "N3VSW4S7495SMAMS.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "N3VSW4S7495SMAMS.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "N3VSW4S7495SMAMS.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "N3VSW4S7495SMAMS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "N3VSW4S7495SMAMS.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "N3VSW4S7495SMAMS.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "N3VSW4S7495SMAMS.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "N3VSW4S7495SMAMS.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "64315" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "N3VSW4S7495SMAMS.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "N3VSW4S7495SMAMS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "N3VSW4S7495SMAMS.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "N3VSW4S7495SMAMS.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "N3VSW4S7495SMAMS.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "N3VSW4S7495SMAMS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N3VSW4S7495SMAMS.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "N3VSW4S7495SMAMS.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27768" + }, + "appliesTo" : [ ] + }, + "N3VSW4S7495SMAMS.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "N3VSW4S7495SMAMS.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "N3VSW4S7495SMAMS.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "N3VSW4S7495SMAMS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "N3VSW4S7495SMAMS.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "N3VSW4S7495SMAMS.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3800000000" + }, + "appliesTo" : [ ] + }, + "N3VSW4S7495SMAMS.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "N3VSW4S7495SMAMS.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "36266" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "N3VSW4S7495SMAMS.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "N3VSW4S7495SMAMS", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "N3VSW4S7495SMAMS.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "N3VSW4S7495SMAMS.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3020000000" + }, + "appliesTo" : [ ] + }, + "N3VSW4S7495SMAMS.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "N3VSW4S7495SMAMS.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34210" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "N3VSW4S7495SMAMS.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "N3VSW4S7495SMAMS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "N3VSW4S7495SMAMS.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "N3VSW4S7495SMAMS.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "N3VSW4S7495SMAMS.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "N3VSW4S7495SMAMS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "N3VSW4S7495SMAMS.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "N3VSW4S7495SMAMS.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26248" + }, + "appliesTo" : [ ] + }, + "N3VSW4S7495SMAMS.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "N3VSW4S7495SMAMS.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "N3VSW4S7495SMAMS.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "N3VSW4S7495SMAMS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "N3VSW4S7495SMAMS.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "N3VSW4S7495SMAMS.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8336000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "N3VSW4S7495SMAMS.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "N3VSW4S7495SMAMS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "N3VSW4S7495SMAMS.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "N3VSW4S7495SMAMS.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13228" + }, + "appliesTo" : [ ] + }, + "N3VSW4S7495SMAMS.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "N3VSW4S7495SMAMS.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "N3VSW4S7495SMAMS.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "N3VSW4S7495SMAMS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N3VSW4S7495SMAMS.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "N3VSW4S7495SMAMS.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2649000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "N3VSW4S7495SMAMS.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "N3VSW4S7495SMAMS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N3VSW4S7495SMAMS.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "N3VSW4S7495SMAMS.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14003" + }, + "appliesTo" : [ ] + }, + "N3VSW4S7495SMAMS.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "N3VSW4S7495SMAMS.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5985000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "2WSBC7H546ERPK5X" : { + "2WSBC7H546ERPK5X.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "2WSBC7H546ERPK5X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2WSBC7H546ERPK5X.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "2WSBC7H546ERPK5X.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2WSBC7H546ERPK5X.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "2WSBC7H546ERPK5X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2WSBC7H546ERPK5X.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "2WSBC7H546ERPK5X.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2WSBC7H546ERPK5X.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "2WSBC7H546ERPK5X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2WSBC7H546ERPK5X.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "2WSBC7H546ERPK5X.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2410" + }, + "appliesTo" : [ ] + }, + "2WSBC7H546ERPK5X.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "2WSBC7H546ERPK5X.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2WSBC7H546ERPK5X.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "2WSBC7H546ERPK5X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2WSBC7H546ERPK5X.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "2WSBC7H546ERPK5X.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4675" + }, + "appliesTo" : [ ] + }, + "2WSBC7H546ERPK5X.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "2WSBC7H546ERPK5X.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2WSBC7H546ERPK5X.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "2WSBC7H546ERPK5X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2WSBC7H546ERPK5X.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "2WSBC7H546ERPK5X.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2WSBC7H546ERPK5X.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "2WSBC7H546ERPK5X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2WSBC7H546ERPK5X.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "2WSBC7H546ERPK5X.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2WSBC7H546ERPK5X.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "2WSBC7H546ERPK5X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2WSBC7H546ERPK5X.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "2WSBC7H546ERPK5X.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2370000000" + }, + "appliesTo" : [ ] + }, + "2WSBC7H546ERPK5X.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "2WSBC7H546ERPK5X.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2142" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2WSBC7H546ERPK5X.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "2WSBC7H546ERPK5X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2WSBC7H546ERPK5X.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "2WSBC7H546ERPK5X.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4882" + }, + "appliesTo" : [ ] + }, + "2WSBC7H546ERPK5X.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "2WSBC7H546ERPK5X.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2WSBC7H546ERPK5X.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "2WSBC7H546ERPK5X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2WSBC7H546ERPK5X.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "2WSBC7H546ERPK5X.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "2WSBC7H546ERPK5X.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "2WSBC7H546ERPK5X.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4150" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2WSBC7H546ERPK5X.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "2WSBC7H546ERPK5X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2WSBC7H546ERPK5X.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "2WSBC7H546ERPK5X.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9595" + }, + "appliesTo" : [ ] + }, + "2WSBC7H546ERPK5X.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "2WSBC7H546ERPK5X.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2WSBC7H546ERPK5X.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "2WSBC7H546ERPK5X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2WSBC7H546ERPK5X.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "2WSBC7H546ERPK5X.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8284" + }, + "appliesTo" : [ ] + }, + "2WSBC7H546ERPK5X.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "2WSBC7H546ERPK5X.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2WSBC7H546ERPK5X.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "2WSBC7H546ERPK5X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2WSBC7H546ERPK5X.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "2WSBC7H546ERPK5X.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4355" + }, + "appliesTo" : [ ] + }, + "2WSBC7H546ERPK5X.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "2WSBC7H546ERPK5X.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "29WJRTNV2QJXKUW5" : { + "29WJRTNV2QJXKUW5.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "29WJRTNV2QJXKUW5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "29WJRTNV2QJXKUW5.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "29WJRTNV2QJXKUW5.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4717" + }, + "appliesTo" : [ ] + }, + "29WJRTNV2QJXKUW5.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "29WJRTNV2QJXKUW5.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "29WJRTNV2QJXKUW5.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "29WJRTNV2QJXKUW5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "29WJRTNV2QJXKUW5.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "29WJRTNV2QJXKUW5.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11770" + }, + "appliesTo" : [ ] + }, + "29WJRTNV2QJXKUW5.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "29WJRTNV2QJXKUW5.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "29WJRTNV2QJXKUW5.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "29WJRTNV2QJXKUW5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "29WJRTNV2QJXKUW5.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "29WJRTNV2QJXKUW5.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "29WJRTNV2QJXKUW5.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "29WJRTNV2QJXKUW5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "29WJRTNV2QJXKUW5.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "29WJRTNV2QJXKUW5.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16907" + }, + "appliesTo" : [ ] + }, + "29WJRTNV2QJXKUW5.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "29WJRTNV2QJXKUW5.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "29WJRTNV2QJXKUW5.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "29WJRTNV2QJXKUW5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "29WJRTNV2QJXKUW5.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "29WJRTNV2QJXKUW5.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "29WJRTNV2QJXKUW5.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "29WJRTNV2QJXKUW5.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10383" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "29WJRTNV2QJXKUW5.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "29WJRTNV2QJXKUW5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "29WJRTNV2QJXKUW5.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "29WJRTNV2QJXKUW5.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7176" + }, + "appliesTo" : [ ] + }, + "29WJRTNV2QJXKUW5.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "29WJRTNV2QJXKUW5.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "29WJRTNV2QJXKUW5.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "29WJRTNV2QJXKUW5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "29WJRTNV2QJXKUW5.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "29WJRTNV2QJXKUW5.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4440000000" + }, + "appliesTo" : [ ] + }, + "29WJRTNV2QJXKUW5.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "29WJRTNV2QJXKUW5.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8252" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "29WJRTNV2QJXKUW5.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "29WJRTNV2QJXKUW5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "29WJRTNV2QJXKUW5.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "29WJRTNV2QJXKUW5.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "29WJRTNV2QJXKUW5.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "29WJRTNV2QJXKUW5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "29WJRTNV2QJXKUW5.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "29WJRTNV2QJXKUW5.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "29WJRTNV2QJXKUW5.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "29WJRTNV2QJXKUW5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "29WJRTNV2QJXKUW5.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "29WJRTNV2QJXKUW5.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7490000000" + }, + "appliesTo" : [ ] + }, + "29WJRTNV2QJXKUW5.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "29WJRTNV2QJXKUW5.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5424" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "29WJRTNV2QJXKUW5.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "29WJRTNV2QJXKUW5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "29WJRTNV2QJXKUW5.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "29WJRTNV2QJXKUW5.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19591" + }, + "appliesTo" : [ ] + }, + "29WJRTNV2QJXKUW5.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "29WJRTNV2QJXKUW5.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "29WJRTNV2QJXKUW5.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "29WJRTNV2QJXKUW5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "29WJRTNV2QJXKUW5.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "29WJRTNV2QJXKUW5.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "TB8JSDKA7MEGTRXV" : { + "TB8JSDKA7MEGTRXV.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TB8JSDKA7MEGTRXV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TB8JSDKA7MEGTRXV.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TB8JSDKA7MEGTRXV.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0681000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TB8JSDKA7MEGTRXV.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "TB8JSDKA7MEGTRXV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TB8JSDKA7MEGTRXV.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "TB8JSDKA7MEGTRXV.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0373000000" + }, + "appliesTo" : [ ] + }, + "TB8JSDKA7MEGTRXV.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "TB8JSDKA7MEGTRXV.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "327" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TB8JSDKA7MEGTRXV.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "TB8JSDKA7MEGTRXV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TB8JSDKA7MEGTRXV.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "TB8JSDKA7MEGTRXV.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0784000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TB8JSDKA7MEGTRXV.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TB8JSDKA7MEGTRXV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TB8JSDKA7MEGTRXV.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TB8JSDKA7MEGTRXV.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TB8JSDKA7MEGTRXV.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TB8JSDKA7MEGTRXV.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1087" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TB8JSDKA7MEGTRXV.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "TB8JSDKA7MEGTRXV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TB8JSDKA7MEGTRXV.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "TB8JSDKA7MEGTRXV.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0546000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TB8JSDKA7MEGTRXV.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "TB8JSDKA7MEGTRXV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TB8JSDKA7MEGTRXV.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "TB8JSDKA7MEGTRXV.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "665" + }, + "appliesTo" : [ ] + }, + "TB8JSDKA7MEGTRXV.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "TB8JSDKA7MEGTRXV.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0253000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TB8JSDKA7MEGTRXV.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TB8JSDKA7MEGTRXV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TB8JSDKA7MEGTRXV.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TB8JSDKA7MEGTRXV.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "578" + }, + "appliesTo" : [ ] + }, + "TB8JSDKA7MEGTRXV.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TB8JSDKA7MEGTRXV.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TB8JSDKA7MEGTRXV.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TB8JSDKA7MEGTRXV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TB8JSDKA7MEGTRXV.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TB8JSDKA7MEGTRXV.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TB8JSDKA7MEGTRXV.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TB8JSDKA7MEGTRXV.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "557" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TB8JSDKA7MEGTRXV.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TB8JSDKA7MEGTRXV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TB8JSDKA7MEGTRXV.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TB8JSDKA7MEGTRXV.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0325000000" + }, + "appliesTo" : [ ] + }, + "TB8JSDKA7MEGTRXV.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TB8JSDKA7MEGTRXV.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "284" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TB8JSDKA7MEGTRXV.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "TB8JSDKA7MEGTRXV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TB8JSDKA7MEGTRXV.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "TB8JSDKA7MEGTRXV.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0475000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TB8JSDKA7MEGTRXV.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "TB8JSDKA7MEGTRXV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TB8JSDKA7MEGTRXV.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "TB8JSDKA7MEGTRXV.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1303" + }, + "appliesTo" : [ ] + }, + "TB8JSDKA7MEGTRXV.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "TB8JSDKA7MEGTRXV.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TB8JSDKA7MEGTRXV.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "TB8JSDKA7MEGTRXV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TB8JSDKA7MEGTRXV.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "TB8JSDKA7MEGTRXV.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "641" + }, + "appliesTo" : [ ] + }, + "TB8JSDKA7MEGTRXV.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "TB8JSDKA7MEGTRXV.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "RZRGZV8C4EBA9RFW" : { + "RZRGZV8C4EBA9RFW.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "RZRGZV8C4EBA9RFW", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "RZRGZV8C4EBA9RFW.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "RZRGZV8C4EBA9RFW.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8870000000" + }, + "appliesTo" : [ ] + }, + "RZRGZV8C4EBA9RFW.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "RZRGZV8C4EBA9RFW.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "75862" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RZRGZV8C4EBA9RFW.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "RZRGZV8C4EBA9RFW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RZRGZV8C4EBA9RFW.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "RZRGZV8C4EBA9RFW.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.7590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RZRGZV8C4EBA9RFW.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "RZRGZV8C4EBA9RFW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RZRGZV8C4EBA9RFW.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "RZRGZV8C4EBA9RFW.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.1622000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RZRGZV8C4EBA9RFW.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "RZRGZV8C4EBA9RFW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RZRGZV8C4EBA9RFW.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "RZRGZV8C4EBA9RFW.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "60935" + }, + "appliesTo" : [ ] + }, + "RZRGZV8C4EBA9RFW.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "RZRGZV8C4EBA9RFW.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RZRGZV8C4EBA9RFW.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "RZRGZV8C4EBA9RFW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RZRGZV8C4EBA9RFW.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "RZRGZV8C4EBA9RFW.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30726" + }, + "appliesTo" : [ ] + }, + "RZRGZV8C4EBA9RFW.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "RZRGZV8C4EBA9RFW.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5075000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RZRGZV8C4EBA9RFW.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "RZRGZV8C4EBA9RFW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RZRGZV8C4EBA9RFW.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "RZRGZV8C4EBA9RFW.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "157217" + }, + "appliesTo" : [ ] + }, + "RZRGZV8C4EBA9RFW.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "RZRGZV8C4EBA9RFW.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RZRGZV8C4EBA9RFW.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "RZRGZV8C4EBA9RFW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RZRGZV8C4EBA9RFW.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "RZRGZV8C4EBA9RFW.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.9027000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RZRGZV8C4EBA9RFW.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "RZRGZV8C4EBA9RFW", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "RZRGZV8C4EBA9RFW.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "RZRGZV8C4EBA9RFW.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "57584" + }, + "appliesTo" : [ ] + }, + "RZRGZV8C4EBA9RFW.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "RZRGZV8C4EBA9RFW.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RZRGZV8C4EBA9RFW.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "RZRGZV8C4EBA9RFW", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "RZRGZV8C4EBA9RFW.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "RZRGZV8C4EBA9RFW.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29016" + }, + "appliesTo" : [ ] + }, + "RZRGZV8C4EBA9RFW.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "RZRGZV8C4EBA9RFW.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RZRGZV8C4EBA9RFW.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "RZRGZV8C4EBA9RFW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RZRGZV8C4EBA9RFW.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "RZRGZV8C4EBA9RFW.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.1774000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RZRGZV8C4EBA9RFW.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "RZRGZV8C4EBA9RFW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RZRGZV8C4EBA9RFW.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "RZRGZV8C4EBA9RFW.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0107000000" + }, + "appliesTo" : [ ] + }, + "RZRGZV8C4EBA9RFW.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "RZRGZV8C4EBA9RFW.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "79121" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RZRGZV8C4EBA9RFW.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "RZRGZV8C4EBA9RFW", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "RZRGZV8C4EBA9RFW.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "RZRGZV8C4EBA9RFW.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "149041" + }, + "appliesTo" : [ ] + }, + "RZRGZV8C4EBA9RFW.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "RZRGZV8C4EBA9RFW.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "WMP332VHSC4A9Z25" : { + "WMP332VHSC4A9Z25.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "WMP332VHSC4A9Z25", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "WMP332VHSC4A9Z25.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "WMP332VHSC4A9Z25.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "WMP332VHSC4A9Z25.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "WMP332VHSC4A9Z25", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "WMP332VHSC4A9Z25.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "WMP332VHSC4A9Z25.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "WMP332VHSC4A9Z25.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "WMP332VHSC4A9Z25.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3668" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WMP332VHSC4A9Z25.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "WMP332VHSC4A9Z25", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "WMP332VHSC4A9Z25.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "WMP332VHSC4A9Z25.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1951" + }, + "appliesTo" : [ ] + }, + "WMP332VHSC4A9Z25.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "WMP332VHSC4A9Z25.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0742000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WMP332VHSC4A9Z25.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "WMP332VHSC4A9Z25", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "WMP332VHSC4A9Z25.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "WMP332VHSC4A9Z25.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "959" + }, + "appliesTo" : [ ] + }, + "WMP332VHSC4A9Z25.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "WMP332VHSC4A9Z25.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1095000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WMP332VHSC4A9Z25.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "WMP332VHSC4A9Z25", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "WMP332VHSC4A9Z25.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "WMP332VHSC4A9Z25.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "WMP332VHSC4A9Z25.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "WMP332VHSC4A9Z25.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1880" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WMP332VHSC4A9Z25.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "WMP332VHSC4A9Z25", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "WMP332VHSC4A9Z25.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "WMP332VHSC4A9Z25.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1604000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "KT8ZEPCC5TRJCUKH" : { + "KT8ZEPCC5TRJCUKH.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "KT8ZEPCC5TRJCUKH", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "KT8ZEPCC5TRJCUKH.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "KT8ZEPCC5TRJCUKH.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5267000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KT8ZEPCC5TRJCUKH.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "KT8ZEPCC5TRJCUKH", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "KT8ZEPCC5TRJCUKH.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "KT8ZEPCC5TRJCUKH.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39639" + }, + "appliesTo" : [ ] + }, + "KT8ZEPCC5TRJCUKH.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "KT8ZEPCC5TRJCUKH.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KT8ZEPCC5TRJCUKH.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "KT8ZEPCC5TRJCUKH", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "KT8ZEPCC5TRJCUKH.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "KT8ZEPCC5TRJCUKH.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7820000000" + }, + "appliesTo" : [ ] + }, + "KT8ZEPCC5TRJCUKH.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "KT8ZEPCC5TRJCUKH.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6850" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KT8ZEPCC5TRJCUKH.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "KT8ZEPCC5TRJCUKH", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "KT8ZEPCC5TRJCUKH.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "KT8ZEPCC5TRJCUKH.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5008000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KT8ZEPCC5TRJCUKH.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "KT8ZEPCC5TRJCUKH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KT8ZEPCC5TRJCUKH.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "KT8ZEPCC5TRJCUKH.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13963" + }, + "appliesTo" : [ ] + }, + "KT8ZEPCC5TRJCUKH.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "KT8ZEPCC5TRJCUKH.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KT8ZEPCC5TRJCUKH.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "KT8ZEPCC5TRJCUKH", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "KT8ZEPCC5TRJCUKH.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "KT8ZEPCC5TRJCUKH.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5758000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KT8ZEPCC5TRJCUKH.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "KT8ZEPCC5TRJCUKH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KT8ZEPCC5TRJCUKH.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "KT8ZEPCC5TRJCUKH.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7005" + }, + "appliesTo" : [ ] + }, + "KT8ZEPCC5TRJCUKH.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "KT8ZEPCC5TRJCUKH.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7997000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KT8ZEPCC5TRJCUKH.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "KT8ZEPCC5TRJCUKH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KT8ZEPCC5TRJCUKH.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "KT8ZEPCC5TRJCUKH.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KT8ZEPCC5TRJCUKH.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "KT8ZEPCC5TRJCUKH", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "KT8ZEPCC5TRJCUKH.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "KT8ZEPCC5TRJCUKH.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19552" + }, + "appliesTo" : [ ] + }, + "KT8ZEPCC5TRJCUKH.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "KT8ZEPCC5TRJCUKH.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KT8ZEPCC5TRJCUKH.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "KT8ZEPCC5TRJCUKH", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "KT8ZEPCC5TRJCUKH.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "KT8ZEPCC5TRJCUKH.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19868" + }, + "appliesTo" : [ ] + }, + "KT8ZEPCC5TRJCUKH.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "KT8ZEPCC5TRJCUKH.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KT8ZEPCC5TRJCUKH.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "KT8ZEPCC5TRJCUKH", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "KT8ZEPCC5TRJCUKH.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "KT8ZEPCC5TRJCUKH.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38339" + }, + "appliesTo" : [ ] + }, + "KT8ZEPCC5TRJCUKH.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "KT8ZEPCC5TRJCUKH.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KT8ZEPCC5TRJCUKH.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "KT8ZEPCC5TRJCUKH", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "KT8ZEPCC5TRJCUKH.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "KT8ZEPCC5TRJCUKH.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13659" + }, + "appliesTo" : [ ] + }, + "KT8ZEPCC5TRJCUKH.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "KT8ZEPCC5TRJCUKH.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "6W35NFYWJ6ZG37VX" : { + "6W35NFYWJ6ZG37VX.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6W35NFYWJ6ZG37VX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6W35NFYWJ6ZG37VX.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6W35NFYWJ6ZG37VX.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t1.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6W35NFYWJ6ZG37VX.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6W35NFYWJ6ZG37VX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6W35NFYWJ6ZG37VX.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6W35NFYWJ6ZG37VX.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "84" + }, + "appliesTo" : [ ] + }, + "6W35NFYWJ6ZG37VX.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6W35NFYWJ6ZG37VX.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t1.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6W35NFYWJ6ZG37VX.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6W35NFYWJ6ZG37VX", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "6W35NFYWJ6ZG37VX.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6W35NFYWJ6ZG37VX.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "176" + }, + "appliesTo" : [ ] + }, + "6W35NFYWJ6ZG37VX.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6W35NFYWJ6ZG37VX.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), t1.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6W35NFYWJ6ZG37VX.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6W35NFYWJ6ZG37VX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6W35NFYWJ6ZG37VX.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6W35NFYWJ6ZG37VX.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "407" + }, + "appliesTo" : [ ] + }, + "6W35NFYWJ6ZG37VX.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6W35NFYWJ6ZG37VX.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), t1.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6W35NFYWJ6ZG37VX.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6W35NFYWJ6ZG37VX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6W35NFYWJ6ZG37VX.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6W35NFYWJ6ZG37VX.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "144" + }, + "appliesTo" : [ ] + }, + "6W35NFYWJ6ZG37VX.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6W35NFYWJ6ZG37VX.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t1.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "MDQWTP6HDQDFGNVZ" : { + "MDQWTP6HDQDFGNVZ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "MDQWTP6HDQDFGNVZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MDQWTP6HDQDFGNVZ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "MDQWTP6HDQDFGNVZ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "45989" + }, + "appliesTo" : [ ] + }, + "MDQWTP6HDQDFGNVZ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "MDQWTP6HDQDFGNVZ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MDQWTP6HDQDFGNVZ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "MDQWTP6HDQDFGNVZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MDQWTP6HDQDFGNVZ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "MDQWTP6HDQDFGNVZ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "92425" + }, + "appliesTo" : [ ] + }, + "MDQWTP6HDQDFGNVZ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "MDQWTP6HDQDFGNVZ.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MDQWTP6HDQDFGNVZ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "MDQWTP6HDQDFGNVZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MDQWTP6HDQDFGNVZ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "MDQWTP6HDQDFGNVZ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MDQWTP6HDQDFGNVZ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "MDQWTP6HDQDFGNVZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MDQWTP6HDQDFGNVZ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "MDQWTP6HDQDFGNVZ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46253" + }, + "appliesTo" : [ ] + }, + "MDQWTP6HDQDFGNVZ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "MDQWTP6HDQDFGNVZ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MDQWTP6HDQDFGNVZ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "MDQWTP6HDQDFGNVZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MDQWTP6HDQDFGNVZ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "MDQWTP6HDQDFGNVZ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MDQWTP6HDQDFGNVZ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "MDQWTP6HDQDFGNVZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MDQWTP6HDQDFGNVZ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "MDQWTP6HDQDFGNVZ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15779" + }, + "appliesTo" : [ ] + }, + "MDQWTP6HDQDFGNVZ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "MDQWTP6HDQDFGNVZ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MDQWTP6HDQDFGNVZ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "MDQWTP6HDQDFGNVZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MDQWTP6HDQDFGNVZ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "MDQWTP6HDQDFGNVZ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MDQWTP6HDQDFGNVZ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "MDQWTP6HDQDFGNVZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MDQWTP6HDQDFGNVZ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "MDQWTP6HDQDFGNVZ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31255" + }, + "appliesTo" : [ ] + }, + "MDQWTP6HDQDFGNVZ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "MDQWTP6HDQDFGNVZ.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MDQWTP6HDQDFGNVZ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "MDQWTP6HDQDFGNVZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MDQWTP6HDQDFGNVZ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "MDQWTP6HDQDFGNVZ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15645" + }, + "appliesTo" : [ ] + }, + "MDQWTP6HDQDFGNVZ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "MDQWTP6HDQDFGNVZ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MDQWTP6HDQDFGNVZ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "MDQWTP6HDQDFGNVZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MDQWTP6HDQDFGNVZ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "MDQWTP6HDQDFGNVZ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "MDQWTP6HDQDFGNVZ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "MDQWTP6HDQDFGNVZ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31518" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MDQWTP6HDQDFGNVZ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "MDQWTP6HDQDFGNVZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MDQWTP6HDQDFGNVZ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "MDQWTP6HDQDFGNVZ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "91770" + }, + "appliesTo" : [ ] + }, + "MDQWTP6HDQDFGNVZ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "MDQWTP6HDQDFGNVZ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MDQWTP6HDQDFGNVZ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "MDQWTP6HDQDFGNVZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MDQWTP6HDQDFGNVZ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "MDQWTP6HDQDFGNVZ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "7AH58V9CNVM6SBXM" : { + "7AH58V9CNVM6SBXM.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "7AH58V9CNVM6SBXM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7AH58V9CNVM6SBXM.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "7AH58V9CNVM6SBXM.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30078" + }, + "appliesTo" : [ ] + }, + "7AH58V9CNVM6SBXM.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "7AH58V9CNVM6SBXM.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7AH58V9CNVM6SBXM.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "7AH58V9CNVM6SBXM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7AH58V9CNVM6SBXM.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "7AH58V9CNVM6SBXM.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7AH58V9CNVM6SBXM.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "7AH58V9CNVM6SBXM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7AH58V9CNVM6SBXM.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "7AH58V9CNVM6SBXM.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1310000000" + }, + "appliesTo" : [ ] + }, + "7AH58V9CNVM6SBXM.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "7AH58V9CNVM6SBXM.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29729" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7AH58V9CNVM6SBXM.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "7AH58V9CNVM6SBXM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7AH58V9CNVM6SBXM.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "7AH58V9CNVM6SBXM.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13841" + }, + "appliesTo" : [ ] + }, + "7AH58V9CNVM6SBXM.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "7AH58V9CNVM6SBXM.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7AH58V9CNVM6SBXM.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "7AH58V9CNVM6SBXM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7AH58V9CNVM6SBXM.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "7AH58V9CNVM6SBXM.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "58798" + }, + "appliesTo" : [ ] + }, + "7AH58V9CNVM6SBXM.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "7AH58V9CNVM6SBXM.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7AH58V9CNVM6SBXM.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "7AH58V9CNVM6SBXM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7AH58V9CNVM6SBXM.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "7AH58V9CNVM6SBXM.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15256" + }, + "appliesTo" : [ ] + }, + "7AH58V9CNVM6SBXM.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "7AH58V9CNVM6SBXM.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7AH58V9CNVM6SBXM.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "7AH58V9CNVM6SBXM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7AH58V9CNVM6SBXM.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "7AH58V9CNVM6SBXM.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7AH58V9CNVM6SBXM.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "7AH58V9CNVM6SBXM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7AH58V9CNVM6SBXM.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "7AH58V9CNVM6SBXM.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7AH58V9CNVM6SBXM.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "7AH58V9CNVM6SBXM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7AH58V9CNVM6SBXM.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "7AH58V9CNVM6SBXM.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7AH58V9CNVM6SBXM.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "7AH58V9CNVM6SBXM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7AH58V9CNVM6SBXM.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "7AH58V9CNVM6SBXM.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27576" + }, + "appliesTo" : [ ] + }, + "7AH58V9CNVM6SBXM.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "7AH58V9CNVM6SBXM.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7AH58V9CNVM6SBXM.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "7AH58V9CNVM6SBXM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7AH58V9CNVM6SBXM.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "7AH58V9CNVM6SBXM.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27305" + }, + "appliesTo" : [ ] + }, + "7AH58V9CNVM6SBXM.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "7AH58V9CNVM6SBXM.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7AH58V9CNVM6SBXM.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "7AH58V9CNVM6SBXM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7AH58V9CNVM6SBXM.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "7AH58V9CNVM6SBXM.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "53430" + }, + "appliesTo" : [ ] + }, + "7AH58V9CNVM6SBXM.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "7AH58V9CNVM6SBXM.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "5ZCS4GNXFBKC3TU6" : { + "5ZCS4GNXFBKC3TU6.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "5ZCS4GNXFBKC3TU6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5ZCS4GNXFBKC3TU6.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "5ZCS4GNXFBKC3TU6.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2437" + }, + "appliesTo" : [ ] + }, + "5ZCS4GNXFBKC3TU6.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "5ZCS4GNXFBKC3TU6.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "5ZCS4GNXFBKC3TU6.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "5ZCS4GNXFBKC3TU6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5ZCS4GNXFBKC3TU6.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "5ZCS4GNXFBKC3TU6.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "5ZCS4GNXFBKC3TU6.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "5ZCS4GNXFBKC3TU6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5ZCS4GNXFBKC3TU6.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "5ZCS4GNXFBKC3TU6.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "5ZCS4GNXFBKC3TU6.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "5ZCS4GNXFBKC3TU6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5ZCS4GNXFBKC3TU6.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "5ZCS4GNXFBKC3TU6.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "5ZCS4GNXFBKC3TU6.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "5ZCS4GNXFBKC3TU6.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9816" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "5ZCS4GNXFBKC3TU6.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "5ZCS4GNXFBKC3TU6", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "5ZCS4GNXFBKC3TU6.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "5ZCS4GNXFBKC3TU6.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2130" + }, + "appliesTo" : [ ] + }, + "5ZCS4GNXFBKC3TU6.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "5ZCS4GNXFBKC3TU6.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5ZCS4GNXFBKC3TU6.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "5ZCS4GNXFBKC3TU6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5ZCS4GNXFBKC3TU6.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "5ZCS4GNXFBKC3TU6.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "5ZCS4GNXFBKC3TU6.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "5ZCS4GNXFBKC3TU6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5ZCS4GNXFBKC3TU6.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "5ZCS4GNXFBKC3TU6.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4721" + }, + "appliesTo" : [ ] + }, + "5ZCS4GNXFBKC3TU6.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "5ZCS4GNXFBKC3TU6.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "5ZCS4GNXFBKC3TU6.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "5ZCS4GNXFBKC3TU6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5ZCS4GNXFBKC3TU6.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "5ZCS4GNXFBKC3TU6.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "5ZCS4GNXFBKC3TU6.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "5ZCS4GNXFBKC3TU6", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "5ZCS4GNXFBKC3TU6.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "5ZCS4GNXFBKC3TU6.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4411" + }, + "appliesTo" : [ ] + }, + "5ZCS4GNXFBKC3TU6.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "5ZCS4GNXFBKC3TU6.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5ZCS4GNXFBKC3TU6.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "5ZCS4GNXFBKC3TU6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5ZCS4GNXFBKC3TU6.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "5ZCS4GNXFBKC3TU6.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5006" + }, + "appliesTo" : [ ] + }, + "5ZCS4GNXFBKC3TU6.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "5ZCS4GNXFBKC3TU6.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "5ZCS4GNXFBKC3TU6.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "5ZCS4GNXFBKC3TU6", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "5ZCS4GNXFBKC3TU6.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "5ZCS4GNXFBKC3TU6.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4120" + }, + "appliesTo" : [ ] + }, + "5ZCS4GNXFBKC3TU6.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "5ZCS4GNXFBKC3TU6.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5ZCS4GNXFBKC3TU6.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "5ZCS4GNXFBKC3TU6", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "5ZCS4GNXFBKC3TU6.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "5ZCS4GNXFBKC3TU6.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8324" + }, + "appliesTo" : [ ] + }, + "5ZCS4GNXFBKC3TU6.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "5ZCS4GNXFBKC3TU6.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "6XRAZB77YRS54YH2" : { + "6XRAZB77YRS54YH2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6XRAZB77YRS54YH2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "6XRAZB77YRS54YH2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6XRAZB77YRS54YH2.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6XRAZB77YRS54YH2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6XRAZB77YRS54YH2", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "6XRAZB77YRS54YH2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6XRAZB77YRS54YH2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "211" + }, + "appliesTo" : [ ] + }, + "6XRAZB77YRS54YH2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6XRAZB77YRS54YH2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6XRAZB77YRS54YH2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6XRAZB77YRS54YH2", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "6XRAZB77YRS54YH2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6XRAZB77YRS54YH2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "879" + }, + "appliesTo" : [ ] + }, + "6XRAZB77YRS54YH2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6XRAZB77YRS54YH2.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6XRAZB77YRS54YH2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6XRAZB77YRS54YH2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6XRAZB77YRS54YH2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6XRAZB77YRS54YH2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2169" + }, + "appliesTo" : [ ] + }, + "6XRAZB77YRS54YH2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6XRAZB77YRS54YH2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6XRAZB77YRS54YH2.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "6XRAZB77YRS54YH2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "6XRAZB77YRS54YH2.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "6XRAZB77YRS54YH2.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6XRAZB77YRS54YH2.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "6XRAZB77YRS54YH2", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "6XRAZB77YRS54YH2.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "6XRAZB77YRS54YH2.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "570" + }, + "appliesTo" : [ ] + }, + "6XRAZB77YRS54YH2.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "6XRAZB77YRS54YH2.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6XRAZB77YRS54YH2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6XRAZB77YRS54YH2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6XRAZB77YRS54YH2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6XRAZB77YRS54YH2.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0750000000" + }, + "appliesTo" : [ ] + }, + "6XRAZB77YRS54YH2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6XRAZB77YRS54YH2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "337" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6XRAZB77YRS54YH2.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "6XRAZB77YRS54YH2", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "6XRAZB77YRS54YH2.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "6XRAZB77YRS54YH2.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2531" + }, + "appliesTo" : [ ] + }, + "6XRAZB77YRS54YH2.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "6XRAZB77YRS54YH2.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6XRAZB77YRS54YH2.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "6XRAZB77YRS54YH2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6XRAZB77YRS54YH2.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "6XRAZB77YRS54YH2.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "6XRAZB77YRS54YH2.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "6XRAZB77YRS54YH2.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "931" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6XRAZB77YRS54YH2.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "6XRAZB77YRS54YH2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6XRAZB77YRS54YH2.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "6XRAZB77YRS54YH2.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "207" + }, + "appliesTo" : [ ] + }, + "6XRAZB77YRS54YH2.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "6XRAZB77YRS54YH2.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6XRAZB77YRS54YH2.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "6XRAZB77YRS54YH2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6XRAZB77YRS54YH2.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "6XRAZB77YRS54YH2.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "CE5S3J445F4X6VYF" : { + "CE5S3J445F4X6VYF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "CE5S3J445F4X6VYF", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "CE5S3J445F4X6VYF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "CE5S3J445F4X6VYF.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8870000000" + }, + "appliesTo" : [ ] + }, + "CE5S3J445F4X6VYF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "CE5S3J445F4X6VYF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "75862" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CE5S3J445F4X6VYF.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "CE5S3J445F4X6VYF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CE5S3J445F4X6VYF.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "CE5S3J445F4X6VYF.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "157217" + }, + "appliesTo" : [ ] + }, + "CE5S3J445F4X6VYF.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "CE5S3J445F4X6VYF.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CE5S3J445F4X6VYF.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "CE5S3J445F4X6VYF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CE5S3J445F4X6VYF.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "CE5S3J445F4X6VYF.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0107000000" + }, + "appliesTo" : [ ] + }, + "CE5S3J445F4X6VYF.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "CE5S3J445F4X6VYF.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "79121" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CE5S3J445F4X6VYF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "CE5S3J445F4X6VYF", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "CE5S3J445F4X6VYF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "CE5S3J445F4X6VYF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "149041" + }, + "appliesTo" : [ ] + }, + "CE5S3J445F4X6VYF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "CE5S3J445F4X6VYF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CE5S3J445F4X6VYF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "CE5S3J445F4X6VYF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CE5S3J445F4X6VYF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "CE5S3J445F4X6VYF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "57584" + }, + "appliesTo" : [ ] + }, + "CE5S3J445F4X6VYF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "CE5S3J445F4X6VYF.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CE5S3J445F4X6VYF.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "CE5S3J445F4X6VYF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CE5S3J445F4X6VYF.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "CE5S3J445F4X6VYF.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.1774000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CE5S3J445F4X6VYF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "CE5S3J445F4X6VYF", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "CE5S3J445F4X6VYF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "CE5S3J445F4X6VYF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29016" + }, + "appliesTo" : [ ] + }, + "CE5S3J445F4X6VYF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "CE5S3J445F4X6VYF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CE5S3J445F4X6VYF.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "CE5S3J445F4X6VYF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CE5S3J445F4X6VYF.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "CE5S3J445F4X6VYF.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.7590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CE5S3J445F4X6VYF.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "CE5S3J445F4X6VYF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CE5S3J445F4X6VYF.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "CE5S3J445F4X6VYF.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30726" + }, + "appliesTo" : [ ] + }, + "CE5S3J445F4X6VYF.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "CE5S3J445F4X6VYF.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5075000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CE5S3J445F4X6VYF.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "CE5S3J445F4X6VYF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CE5S3J445F4X6VYF.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "CE5S3J445F4X6VYF.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "CE5S3J445F4X6VYF.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "CE5S3J445F4X6VYF.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "60935" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CE5S3J445F4X6VYF.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "CE5S3J445F4X6VYF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CE5S3J445F4X6VYF.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "CE5S3J445F4X6VYF.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.1622000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CE5S3J445F4X6VYF.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "CE5S3J445F4X6VYF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CE5S3J445F4X6VYF.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "CE5S3J445F4X6VYF.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.9027000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "HPSQPPJ249MHQR6A" : { + "HPSQPPJ249MHQR6A.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "HPSQPPJ249MHQR6A", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HPSQPPJ249MHQR6A.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "HPSQPPJ249MHQR6A.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "HPSQPPJ249MHQR6A.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "HPSQPPJ249MHQR6A", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HPSQPPJ249MHQR6A.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "HPSQPPJ249MHQR6A.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14270" + }, + "appliesTo" : [ ] + }, + "HPSQPPJ249MHQR6A.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "HPSQPPJ249MHQR6A.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HPSQPPJ249MHQR6A.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "HPSQPPJ249MHQR6A", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HPSQPPJ249MHQR6A.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "HPSQPPJ249MHQR6A.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12984" + }, + "appliesTo" : [ ] + }, + "HPSQPPJ249MHQR6A.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "HPSQPPJ249MHQR6A.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HPSQPPJ249MHQR6A.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "HPSQPPJ249MHQR6A", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HPSQPPJ249MHQR6A.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "HPSQPPJ249MHQR6A.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "HPSQPPJ249MHQR6A.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "HPSQPPJ249MHQR6A", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HPSQPPJ249MHQR6A.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "HPSQPPJ249MHQR6A.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "HPSQPPJ249MHQR6A.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "HPSQPPJ249MHQR6A", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HPSQPPJ249MHQR6A.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "HPSQPPJ249MHQR6A.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0740000000" + }, + "appliesTo" : [ ] + }, + "HPSQPPJ249MHQR6A.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "HPSQPPJ249MHQR6A.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28229" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HPSQPPJ249MHQR6A.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "HPSQPPJ249MHQR6A", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HPSQPPJ249MHQR6A.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "HPSQPPJ249MHQR6A.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28145" + }, + "appliesTo" : [ ] + }, + "HPSQPPJ249MHQR6A.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "HPSQPPJ249MHQR6A.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "HPSQPPJ249MHQR6A.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "HPSQPPJ249MHQR6A", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HPSQPPJ249MHQR6A.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "HPSQPPJ249MHQR6A.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "55857" + }, + "appliesTo" : [ ] + }, + "HPSQPPJ249MHQR6A.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "HPSQPPJ249MHQR6A.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "HPSQPPJ249MHQR6A.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "HPSQPPJ249MHQR6A", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HPSQPPJ249MHQR6A.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "HPSQPPJ249MHQR6A.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "HPSQPPJ249MHQR6A.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "HPSQPPJ249MHQR6A", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HPSQPPJ249MHQR6A.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "HPSQPPJ249MHQR6A.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "50977" + }, + "appliesTo" : [ ] + }, + "HPSQPPJ249MHQR6A.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "HPSQPPJ249MHQR6A.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HPSQPPJ249MHQR6A.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "HPSQPPJ249MHQR6A", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HPSQPPJ249MHQR6A.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "HPSQPPJ249MHQR6A.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25624" + }, + "appliesTo" : [ ] + }, + "HPSQPPJ249MHQR6A.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "HPSQPPJ249MHQR6A.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HPSQPPJ249MHQR6A.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "HPSQPPJ249MHQR6A", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HPSQPPJ249MHQR6A.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "HPSQPPJ249MHQR6A.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26271" + }, + "appliesTo" : [ ] + }, + "HPSQPPJ249MHQR6A.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "HPSQPPJ249MHQR6A.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "RN2BTZEEU3PRHGPQ" : { + "RN2BTZEEU3PRHGPQ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "RN2BTZEEU3PRHGPQ", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "RN2BTZEEU3PRHGPQ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "RN2BTZEEU3PRHGPQ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "95038" + }, + "appliesTo" : [ ] + }, + "RN2BTZEEU3PRHGPQ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "RN2BTZEEU3PRHGPQ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RN2BTZEEU3PRHGPQ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "RN2BTZEEU3PRHGPQ", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "RN2BTZEEU3PRHGPQ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "RN2BTZEEU3PRHGPQ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RN2BTZEEU3PRHGPQ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "RN2BTZEEU3PRHGPQ", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "RN2BTZEEU3PRHGPQ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "RN2BTZEEU3PRHGPQ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "97030" + }, + "appliesTo" : [ ] + }, + "RN2BTZEEU3PRHGPQ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "RN2BTZEEU3PRHGPQ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RN2BTZEEU3PRHGPQ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "RN2BTZEEU3PRHGPQ", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "RN2BTZEEU3PRHGPQ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "RN2BTZEEU3PRHGPQ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "189292" + }, + "appliesTo" : [ ] + }, + "RN2BTZEEU3PRHGPQ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "RN2BTZEEU3PRHGPQ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RN2BTZEEU3PRHGPQ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "RN2BTZEEU3PRHGPQ", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "RN2BTZEEU3PRHGPQ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "RN2BTZEEU3PRHGPQ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "65192" + }, + "appliesTo" : [ ] + }, + "RN2BTZEEU3PRHGPQ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "RN2BTZEEU3PRHGPQ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RN2BTZEEU3PRHGPQ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "RN2BTZEEU3PRHGPQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RN2BTZEEU3PRHGPQ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "RN2BTZEEU3PRHGPQ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.6030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RN2BTZEEU3PRHGPQ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "RN2BTZEEU3PRHGPQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RN2BTZEEU3PRHGPQ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "RN2BTZEEU3PRHGPQ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33118" + }, + "appliesTo" : [ ] + }, + "RN2BTZEEU3PRHGPQ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "RN2BTZEEU3PRHGPQ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RN2BTZEEU3PRHGPQ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "RN2BTZEEU3PRHGPQ", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "RN2BTZEEU3PRHGPQ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "RN2BTZEEU3PRHGPQ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RN2BTZEEU3PRHGPQ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "RN2BTZEEU3PRHGPQ", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "RN2BTZEEU3PRHGPQ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "RN2BTZEEU3PRHGPQ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7280000000" + }, + "appliesTo" : [ ] + }, + "RN2BTZEEU3PRHGPQ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "RN2BTZEEU3PRHGPQ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32659" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RN2BTZEEU3PRHGPQ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "RN2BTZEEU3PRHGPQ", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "RN2BTZEEU3PRHGPQ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "RN2BTZEEU3PRHGPQ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "193720" + }, + "appliesTo" : [ ] + }, + "RN2BTZEEU3PRHGPQ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "RN2BTZEEU3PRHGPQ.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RN2BTZEEU3PRHGPQ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "RN2BTZEEU3PRHGPQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RN2BTZEEU3PRHGPQ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "RN2BTZEEU3PRHGPQ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "66092" + }, + "appliesTo" : [ ] + }, + "RN2BTZEEU3PRHGPQ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "RN2BTZEEU3PRHGPQ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "SEEZD7FKBH2QXGYK" : { + "SEEZD7FKBH2QXGYK.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SEEZD7FKBH2QXGYK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "SEEZD7FKBH2QXGYK.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SEEZD7FKBH2QXGYK.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "243708" + }, + "appliesTo" : [ ] + }, + "SEEZD7FKBH2QXGYK.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SEEZD7FKBH2QXGYK.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SEEZD7FKBH2QXGYK.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "SEEZD7FKBH2QXGYK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "SEEZD7FKBH2QXGYK.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "SEEZD7FKBH2QXGYK.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "174665" + }, + "appliesTo" : [ ] + }, + "SEEZD7FKBH2QXGYK.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "SEEZD7FKBH2QXGYK.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.6460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SEEZD7FKBH2QXGYK.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "SEEZD7FKBH2QXGYK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "SEEZD7FKBH2QXGYK.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "SEEZD7FKBH2QXGYK.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.3560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SEEZD7FKBH2QXGYK.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "SEEZD7FKBH2QXGYK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "SEEZD7FKBH2QXGYK.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "SEEZD7FKBH2QXGYK.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.6550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SEEZD7FKBH2QXGYK.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SEEZD7FKBH2QXGYK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "SEEZD7FKBH2QXGYK.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SEEZD7FKBH2QXGYK.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "69695" + }, + "appliesTo" : [ ] + }, + "SEEZD7FKBH2QXGYK.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SEEZD7FKBH2QXGYK.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.9560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SEEZD7FKBH2QXGYK.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SEEZD7FKBH2QXGYK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "SEEZD7FKBH2QXGYK.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SEEZD7FKBH2QXGYK.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.7080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SEEZD7FKBH2QXGYK.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "SEEZD7FKBH2QXGYK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "SEEZD7FKBH2QXGYK.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "SEEZD7FKBH2QXGYK.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SEEZD7FKBH2QXGYK.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "SEEZD7FKBH2QXGYK.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "342344" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SEEZD7FKBH2QXGYK.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "SEEZD7FKBH2QXGYK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SEEZD7FKBH2QXGYK.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "SEEZD7FKBH2QXGYK.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SEEZD7FKBH2QXGYK.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "SEEZD7FKBH2QXGYK.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "157197" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SEEZD7FKBH2QXGYK.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "SEEZD7FKBH2QXGYK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SEEZD7FKBH2QXGYK.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "SEEZD7FKBH2QXGYK.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.1560000000" + }, + "appliesTo" : [ ] + }, + "SEEZD7FKBH2QXGYK.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "SEEZD7FKBH2QXGYK.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "80202" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SEEZD7FKBH2QXGYK.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "SEEZD7FKBH2QXGYK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SEEZD7FKBH2QXGYK.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "SEEZD7FKBH2QXGYK.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "19.2270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SEEZD7FKBH2QXGYK.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SEEZD7FKBH2QXGYK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "SEEZD7FKBH2QXGYK.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SEEZD7FKBH2QXGYK.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "136601" + }, + "appliesTo" : [ ] + }, + "SEEZD7FKBH2QXGYK.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SEEZD7FKBH2QXGYK.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SEEZD7FKBH2QXGYK.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SEEZD7FKBH2QXGYK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "SEEZD7FKBH2QXGYK.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SEEZD7FKBH2QXGYK.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "129632" + }, + "appliesTo" : [ ] + }, + "SEEZD7FKBH2QXGYK.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SEEZD7FKBH2QXGYK.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "K86YRT3FMXX5Q76Y" : { + "K86YRT3FMXX5Q76Y.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "K86YRT3FMXX5Q76Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K86YRT3FMXX5Q76Y.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "K86YRT3FMXX5Q76Y.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "K86YRT3FMXX5Q76Y.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "K86YRT3FMXX5Q76Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K86YRT3FMXX5Q76Y.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "K86YRT3FMXX5Q76Y.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10848" + }, + "appliesTo" : [ ] + }, + "K86YRT3FMXX5Q76Y.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "K86YRT3FMXX5Q76Y.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "K86YRT3FMXX5Q76Y.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "K86YRT3FMXX5Q76Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K86YRT3FMXX5Q76Y.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "K86YRT3FMXX5Q76Y.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32350" + }, + "appliesTo" : [ ] + }, + "K86YRT3FMXX5Q76Y.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "K86YRT3FMXX5Q76Y.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "K86YRT3FMXX5Q76Y.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "K86YRT3FMXX5Q76Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K86YRT3FMXX5Q76Y.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "K86YRT3FMXX5Q76Y.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14352" + }, + "appliesTo" : [ ] + }, + "K86YRT3FMXX5Q76Y.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "K86YRT3FMXX5Q76Y.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "K86YRT3FMXX5Q76Y.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "K86YRT3FMXX5Q76Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K86YRT3FMXX5Q76Y.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "K86YRT3FMXX5Q76Y.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "K86YRT3FMXX5Q76Y.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "K86YRT3FMXX5Q76Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K86YRT3FMXX5Q76Y.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "K86YRT3FMXX5Q76Y.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18489" + }, + "appliesTo" : [ ] + }, + "K86YRT3FMXX5Q76Y.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "K86YRT3FMXX5Q76Y.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "K86YRT3FMXX5Q76Y.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "K86YRT3FMXX5Q76Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K86YRT3FMXX5Q76Y.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "K86YRT3FMXX5Q76Y.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "K86YRT3FMXX5Q76Y.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "K86YRT3FMXX5Q76Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K86YRT3FMXX5Q76Y.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "K86YRT3FMXX5Q76Y.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26982" + }, + "appliesTo" : [ ] + }, + "K86YRT3FMXX5Q76Y.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "K86YRT3FMXX5Q76Y.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "K86YRT3FMXX5Q76Y.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "K86YRT3FMXX5Q76Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K86YRT3FMXX5Q76Y.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "K86YRT3FMXX5Q76Y.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9433" + }, + "appliesTo" : [ ] + }, + "K86YRT3FMXX5Q76Y.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "K86YRT3FMXX5Q76Y.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "K86YRT3FMXX5Q76Y.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "K86YRT3FMXX5Q76Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K86YRT3FMXX5Q76Y.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "K86YRT3FMXX5Q76Y.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6280000000" + }, + "appliesTo" : [ ] + }, + "K86YRT3FMXX5Q76Y.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "K86YRT3FMXX5Q76Y.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16505" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "K86YRT3FMXX5Q76Y.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "K86YRT3FMXX5Q76Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K86YRT3FMXX5Q76Y.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "K86YRT3FMXX5Q76Y.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21262" + }, + "appliesTo" : [ ] + }, + "K86YRT3FMXX5Q76Y.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "K86YRT3FMXX5Q76Y.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "K86YRT3FMXX5Q76Y.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "K86YRT3FMXX5Q76Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K86YRT3FMXX5Q76Y.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "K86YRT3FMXX5Q76Y.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "R44YAG7V59VVJURM" : { + "R44YAG7V59VVJURM.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "R44YAG7V59VVJURM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R44YAG7V59VVJURM.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "R44YAG7V59VVJURM.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "R44YAG7V59VVJURM.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "R44YAG7V59VVJURM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R44YAG7V59VVJURM.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "R44YAG7V59VVJURM.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9042" + }, + "appliesTo" : [ ] + }, + "R44YAG7V59VVJURM.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "R44YAG7V59VVJURM.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "R44YAG7V59VVJURM.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "R44YAG7V59VVJURM", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "R44YAG7V59VVJURM.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "R44YAG7V59VVJURM.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16460" + }, + "appliesTo" : [ ] + }, + "R44YAG7V59VVJURM.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "R44YAG7V59VVJURM.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "R44YAG7V59VVJURM.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "R44YAG7V59VVJURM", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "R44YAG7V59VVJURM.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "R44YAG7V59VVJURM.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16235" + }, + "appliesTo" : [ ] + }, + "R44YAG7V59VVJURM.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "R44YAG7V59VVJURM.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "R44YAG7V59VVJURM.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "R44YAG7V59VVJURM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "R44YAG7V59VVJURM.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "R44YAG7V59VVJURM.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "R44YAG7V59VVJURM.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "R44YAG7V59VVJURM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "R44YAG7V59VVJURM.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "R44YAG7V59VVJURM.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8380000000" + }, + "appliesTo" : [ ] + }, + "R44YAG7V59VVJURM.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "R44YAG7V59VVJURM.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18617" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "R44YAG7V59VVJURM.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "R44YAG7V59VVJURM", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "R44YAG7V59VVJURM.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "R44YAG7V59VVJURM.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33938" + }, + "appliesTo" : [ ] + }, + "R44YAG7V59VVJURM.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "R44YAG7V59VVJURM.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "R44YAG7V59VVJURM.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "R44YAG7V59VVJURM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "R44YAG7V59VVJURM.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "R44YAG7V59VVJURM.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "R44YAG7V59VVJURM.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "R44YAG7V59VVJURM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R44YAG7V59VVJURM.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "R44YAG7V59VVJURM.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18862" + }, + "appliesTo" : [ ] + }, + "R44YAG7V59VVJURM.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "R44YAG7V59VVJURM.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "R44YAG7V59VVJURM.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "R44YAG7V59VVJURM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "R44YAG7V59VVJURM.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "R44YAG7V59VVJURM.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39906" + }, + "appliesTo" : [ ] + }, + "R44YAG7V59VVJURM.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "R44YAG7V59VVJURM.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "R44YAG7V59VVJURM.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "R44YAG7V59VVJURM", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "R44YAG7V59VVJURM.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "R44YAG7V59VVJURM.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7817" + }, + "appliesTo" : [ ] + }, + "R44YAG7V59VVJURM.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "R44YAG7V59VVJURM.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "R44YAG7V59VVJURM.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "R44YAG7V59VVJURM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "R44YAG7V59VVJURM.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "R44YAG7V59VVJURM.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "CHDYF9BYGFSAHSRK" : { + "CHDYF9BYGFSAHSRK.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "CHDYF9BYGFSAHSRK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CHDYF9BYGFSAHSRK.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "CHDYF9BYGFSAHSRK.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16967" + }, + "appliesTo" : [ ] + }, + "CHDYF9BYGFSAHSRK.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "CHDYF9BYGFSAHSRK.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CHDYF9BYGFSAHSRK.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "CHDYF9BYGFSAHSRK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CHDYF9BYGFSAHSRK.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "CHDYF9BYGFSAHSRK.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CHDYF9BYGFSAHSRK.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "CHDYF9BYGFSAHSRK", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "CHDYF9BYGFSAHSRK.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "CHDYF9BYGFSAHSRK.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "48071" + }, + "appliesTo" : [ ] + }, + "CHDYF9BYGFSAHSRK.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "CHDYF9BYGFSAHSRK.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CHDYF9BYGFSAHSRK.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "CHDYF9BYGFSAHSRK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CHDYF9BYGFSAHSRK.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "CHDYF9BYGFSAHSRK.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CHDYF9BYGFSAHSRK.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "CHDYF9BYGFSAHSRK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CHDYF9BYGFSAHSRK.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "CHDYF9BYGFSAHSRK.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "48817" + }, + "appliesTo" : [ ] + }, + "CHDYF9BYGFSAHSRK.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "CHDYF9BYGFSAHSRK.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CHDYF9BYGFSAHSRK.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "CHDYF9BYGFSAHSRK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CHDYF9BYGFSAHSRK.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "CHDYF9BYGFSAHSRK.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CHDYF9BYGFSAHSRK.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "CHDYF9BYGFSAHSRK", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "CHDYF9BYGFSAHSRK.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "CHDYF9BYGFSAHSRK.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8353" + }, + "appliesTo" : [ ] + }, + "CHDYF9BYGFSAHSRK.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "CHDYF9BYGFSAHSRK.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CHDYF9BYGFSAHSRK.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "CHDYF9BYGFSAHSRK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CHDYF9BYGFSAHSRK.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "CHDYF9BYGFSAHSRK.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CHDYF9BYGFSAHSRK.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "CHDYF9BYGFSAHSRK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CHDYF9BYGFSAHSRK.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "CHDYF9BYGFSAHSRK.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8506" + }, + "appliesTo" : [ ] + }, + "CHDYF9BYGFSAHSRK.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "CHDYF9BYGFSAHSRK.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CHDYF9BYGFSAHSRK.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "CHDYF9BYGFSAHSRK", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "CHDYF9BYGFSAHSRK.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "CHDYF9BYGFSAHSRK.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "CHDYF9BYGFSAHSRK.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "CHDYF9BYGFSAHSRK.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16667" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CHDYF9BYGFSAHSRK.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "CHDYF9BYGFSAHSRK", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "CHDYF9BYGFSAHSRK.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "CHDYF9BYGFSAHSRK.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9190000000" + }, + "appliesTo" : [ ] + }, + "CHDYF9BYGFSAHSRK.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "CHDYF9BYGFSAHSRK.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24157" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CHDYF9BYGFSAHSRK.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "CHDYF9BYGFSAHSRK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CHDYF9BYGFSAHSRK.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "CHDYF9BYGFSAHSRK.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9310000000" + }, + "appliesTo" : [ ] + }, + "CHDYF9BYGFSAHSRK.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "CHDYF9BYGFSAHSRK.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24455" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "8WJ6ATW98R4XURM2" : { + "8WJ6ATW98R4XURM2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "8WJ6ATW98R4XURM2", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "8WJ6ATW98R4XURM2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "8WJ6ATW98R4XURM2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "975" + }, + "appliesTo" : [ ] + }, + "8WJ6ATW98R4XURM2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "8WJ6ATW98R4XURM2.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8WJ6ATW98R4XURM2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "8WJ6ATW98R4XURM2", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "8WJ6ATW98R4XURM2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "8WJ6ATW98R4XURM2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0530000000" + }, + "appliesTo" : [ ] + }, + "8WJ6ATW98R4XURM2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "8WJ6ATW98R4XURM2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "526" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8WJ6ATW98R4XURM2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "8WJ6ATW98R4XURM2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8WJ6ATW98R4XURM2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "8WJ6ATW98R4XURM2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2008" + }, + "appliesTo" : [ ] + }, + "8WJ6ATW98R4XURM2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "8WJ6ATW98R4XURM2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8WJ6ATW98R4XURM2.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "8WJ6ATW98R4XURM2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8WJ6ATW98R4XURM2.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "8WJ6ATW98R4XURM2.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1296000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8WJ6ATW98R4XURM2.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "8WJ6ATW98R4XURM2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8WJ6ATW98R4XURM2.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "8WJ6ATW98R4XURM2.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1153" + }, + "appliesTo" : [ ] + }, + "8WJ6ATW98R4XURM2.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "8WJ6ATW98R4XURM2.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0435000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8WJ6ATW98R4XURM2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "8WJ6ATW98R4XURM2", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "8WJ6ATW98R4XURM2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "8WJ6ATW98R4XURM2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1051" + }, + "appliesTo" : [ ] + }, + "8WJ6ATW98R4XURM2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "8WJ6ATW98R4XURM2.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8WJ6ATW98R4XURM2.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "8WJ6ATW98R4XURM2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8WJ6ATW98R4XURM2.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "8WJ6ATW98R4XURM2.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "579" + }, + "appliesTo" : [ ] + }, + "8WJ6ATW98R4XURM2.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "8WJ6ATW98R4XURM2.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8WJ6ATW98R4XURM2.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "8WJ6ATW98R4XURM2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8WJ6ATW98R4XURM2.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "8WJ6ATW98R4XURM2.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "8WJ6ATW98R4XURM2.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "8WJ6ATW98R4XURM2.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2264" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8WJ6ATW98R4XURM2.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "8WJ6ATW98R4XURM2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8WJ6ATW98R4XURM2.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "8WJ6ATW98R4XURM2.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0902000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8WJ6ATW98R4XURM2.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "8WJ6ATW98R4XURM2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8WJ6ATW98R4XURM2.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "8WJ6ATW98R4XURM2.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0988000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8WJ6ATW98R4XURM2.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "8WJ6ATW98R4XURM2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8WJ6ATW98R4XURM2.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "8WJ6ATW98R4XURM2.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "8WJ6ATW98R4XURM2.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "8WJ6ATW98R4XURM2.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1080" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8WJ6ATW98R4XURM2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "8WJ6ATW98R4XURM2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8WJ6ATW98R4XURM2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "8WJ6ATW98R4XURM2.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "C8A3366T6RWMUWD6" : { + "C8A3366T6RWMUWD6.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "C8A3366T6RWMUWD6", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "C8A3366T6RWMUWD6.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "C8A3366T6RWMUWD6.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.6064000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "C8A3366T6RWMUWD6.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "C8A3366T6RWMUWD6", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "C8A3366T6RWMUWD6.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "C8A3366T6RWMUWD6.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "156419" + }, + "appliesTo" : [ ] + }, + "C8A3366T6RWMUWD6.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "C8A3366T6RWMUWD6.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.9520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "C8A3366T6RWMUWD6.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "C8A3366T6RWMUWD6", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "C8A3366T6RWMUWD6.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "C8A3366T6RWMUWD6.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.0064000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "C8A3366T6RWMUWD6.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "C8A3366T6RWMUWD6", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "C8A3366T6RWMUWD6.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "C8A3366T6RWMUWD6.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "C8A3366T6RWMUWD6.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "C8A3366T6RWMUWD6.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "317109" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "C8A3366T6RWMUWD6.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "C8A3366T6RWMUWD6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "C8A3366T6RWMUWD6.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "C8A3366T6RWMUWD6.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.9038000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "C8A3366T6RWMUWD6.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "C8A3366T6RWMUWD6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "C8A3366T6RWMUWD6.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "C8A3366T6RWMUWD6.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.3976000000" + }, + "appliesTo" : [ ] + }, + "C8A3366T6RWMUWD6.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "C8A3366T6RWMUWD6.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "56043" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "C8A3366T6RWMUWD6.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "C8A3366T6RWMUWD6", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "C8A3366T6RWMUWD6.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "C8A3366T6RWMUWD6.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "109274" + }, + "appliesTo" : [ ] + }, + "C8A3366T6RWMUWD6.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "C8A3366T6RWMUWD6.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "C8A3366T6RWMUWD6.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "C8A3366T6RWMUWD6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "C8A3366T6RWMUWD6.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "C8A3366T6RWMUWD6.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "111706" + }, + "appliesTo" : [ ] + }, + "C8A3366T6RWMUWD6.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "C8A3366T6RWMUWD6.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "C8A3366T6RWMUWD6.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "C8A3366T6RWMUWD6", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "C8A3366T6RWMUWD6.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "C8A3366T6RWMUWD6.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.2560000000" + }, + "appliesTo" : [ ] + }, + "C8A3366T6RWMUWD6.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "C8A3366T6RWMUWD6.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "54803" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "C8A3366T6RWMUWD6.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "C8A3366T6RWMUWD6", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "C8A3366T6RWMUWD6.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "C8A3366T6RWMUWD6.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "158941" + }, + "appliesTo" : [ ] + }, + "C8A3366T6RWMUWD6.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "C8A3366T6RWMUWD6.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.0480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "C8A3366T6RWMUWD6.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "C8A3366T6RWMUWD6", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "C8A3366T6RWMUWD6.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "C8A3366T6RWMUWD6.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "C8A3366T6RWMUWD6.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "C8A3366T6RWMUWD6.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "306635" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "C8A3366T6RWMUWD6.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "C8A3366T6RWMUWD6", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "C8A3366T6RWMUWD6.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "C8A3366T6RWMUWD6.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.2138000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "4TCUDNKW7PMPSUT2" : { + "4TCUDNKW7PMPSUT2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "4TCUDNKW7PMPSUT2", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "4TCUDNKW7PMPSUT2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "4TCUDNKW7PMPSUT2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12364" + }, + "appliesTo" : [ ] + }, + "4TCUDNKW7PMPSUT2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "4TCUDNKW7PMPSUT2.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4TCUDNKW7PMPSUT2.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "4TCUDNKW7PMPSUT2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "4TCUDNKW7PMPSUT2.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "4TCUDNKW7PMPSUT2.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "4TCUDNKW7PMPSUT2.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "4TCUDNKW7PMPSUT2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "4TCUDNKW7PMPSUT2.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "4TCUDNKW7PMPSUT2.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "4TCUDNKW7PMPSUT2.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "4TCUDNKW7PMPSUT2.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33383" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4TCUDNKW7PMPSUT2.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "4TCUDNKW7PMPSUT2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4TCUDNKW7PMPSUT2.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "4TCUDNKW7PMPSUT2.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14169" + }, + "appliesTo" : [ ] + }, + "4TCUDNKW7PMPSUT2.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "4TCUDNKW7PMPSUT2.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4TCUDNKW7PMPSUT2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "4TCUDNKW7PMPSUT2", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "4TCUDNKW7PMPSUT2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "4TCUDNKW7PMPSUT2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8223" + }, + "appliesTo" : [ ] + }, + "4TCUDNKW7PMPSUT2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "4TCUDNKW7PMPSUT2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4TCUDNKW7PMPSUT2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "4TCUDNKW7PMPSUT2", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "4TCUDNKW7PMPSUT2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "4TCUDNKW7PMPSUT2.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "4TCUDNKW7PMPSUT2.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "4TCUDNKW7PMPSUT2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4TCUDNKW7PMPSUT2.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "4TCUDNKW7PMPSUT2.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "4TCUDNKW7PMPSUT2.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "4TCUDNKW7PMPSUT2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4TCUDNKW7PMPSUT2.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "4TCUDNKW7PMPSUT2.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8250000000" + }, + "appliesTo" : [ ] + }, + "4TCUDNKW7PMPSUT2.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "4TCUDNKW7PMPSUT2.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7229" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4TCUDNKW7PMPSUT2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "4TCUDNKW7PMPSUT2", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "4TCUDNKW7PMPSUT2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "4TCUDNKW7PMPSUT2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24521" + }, + "appliesTo" : [ ] + }, + "4TCUDNKW7PMPSUT2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "4TCUDNKW7PMPSUT2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4TCUDNKW7PMPSUT2.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "4TCUDNKW7PMPSUT2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "4TCUDNKW7PMPSUT2.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "4TCUDNKW7PMPSUT2.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22202" + }, + "appliesTo" : [ ] + }, + "4TCUDNKW7PMPSUT2.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "4TCUDNKW7PMPSUT2.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4TCUDNKW7PMPSUT2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "4TCUDNKW7PMPSUT2", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "4TCUDNKW7PMPSUT2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "4TCUDNKW7PMPSUT2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15702" + }, + "appliesTo" : [ ] + }, + "4TCUDNKW7PMPSUT2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "4TCUDNKW7PMPSUT2.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "DMR9Q6F9N9PFPE9C" : { + "DMR9Q6F9N9PFPE9C.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "DMR9Q6F9N9PFPE9C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DMR9Q6F9N9PFPE9C.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "DMR9Q6F9N9PFPE9C.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2358" + }, + "appliesTo" : [ ] + }, + "DMR9Q6F9N9PFPE9C.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "DMR9Q6F9N9PFPE9C.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DMR9Q6F9N9PFPE9C.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "DMR9Q6F9N9PFPE9C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DMR9Q6F9N9PFPE9C.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "DMR9Q6F9N9PFPE9C.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4622" + }, + "appliesTo" : [ ] + }, + "DMR9Q6F9N9PFPE9C.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "DMR9Q6F9N9PFPE9C.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DMR9Q6F9N9PFPE9C.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "DMR9Q6F9N9PFPE9C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DMR9Q6F9N9PFPE9C.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "DMR9Q6F9N9PFPE9C.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DMR9Q6F9N9PFPE9C.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "DMR9Q6F9N9PFPE9C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DMR9Q6F9N9PFPE9C.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "DMR9Q6F9N9PFPE9C.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3100000000" + }, + "appliesTo" : [ ] + }, + "DMR9Q6F9N9PFPE9C.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "DMR9Q6F9N9PFPE9C.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2712" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DMR9Q6F9N9PFPE9C.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "DMR9Q6F9N9PFPE9C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DMR9Q6F9N9PFPE9C.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "DMR9Q6F9N9PFPE9C.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1570000000" + }, + "appliesTo" : [ ] + }, + "DMR9Q6F9N9PFPE9C.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "DMR9Q6F9N9PFPE9C.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4126" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DMR9Q6F9N9PFPE9C.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "DMR9Q6F9N9PFPE9C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DMR9Q6F9N9PFPE9C.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "DMR9Q6F9N9PFPE9C.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1370000000" + }, + "appliesTo" : [ ] + }, + "DMR9Q6F9N9PFPE9C.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "DMR9Q6F9N9PFPE9C.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3588" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DMR9Q6F9N9PFPE9C.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "DMR9Q6F9N9PFPE9C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DMR9Q6F9N9PFPE9C.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "DMR9Q6F9N9PFPE9C.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DMR9Q6F9N9PFPE9C.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "DMR9Q6F9N9PFPE9C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DMR9Q6F9N9PFPE9C.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "DMR9Q6F9N9PFPE9C.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "DMR9Q6F9N9PFPE9C.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "DMR9Q6F9N9PFPE9C.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6745" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DMR9Q6F9N9PFPE9C.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "DMR9Q6F9N9PFPE9C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DMR9Q6F9N9PFPE9C.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "DMR9Q6F9N9PFPE9C.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8087" + }, + "appliesTo" : [ ] + }, + "DMR9Q6F9N9PFPE9C.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "DMR9Q6F9N9PFPE9C.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DMR9Q6F9N9PFPE9C.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "DMR9Q6F9N9PFPE9C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DMR9Q6F9N9PFPE9C.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "DMR9Q6F9N9PFPE9C.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5316" + }, + "appliesTo" : [ ] + }, + "DMR9Q6F9N9PFPE9C.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "DMR9Q6F9N9PFPE9C.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DMR9Q6F9N9PFPE9C.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "DMR9Q6F9N9PFPE9C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DMR9Q6F9N9PFPE9C.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "DMR9Q6F9N9PFPE9C.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DMR9Q6F9N9PFPE9C.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "DMR9Q6F9N9PFPE9C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DMR9Q6F9N9PFPE9C.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "DMR9Q6F9N9PFPE9C.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "ZQKQM4BJPUBCMDXD" : { + "ZQKQM4BJPUBCMDXD.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ZQKQM4BJPUBCMDXD", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ZQKQM4BJPUBCMDXD.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ZQKQM4BJPUBCMDXD.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ZQKQM4BJPUBCMDXD.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ZQKQM4BJPUBCMDXD.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19745" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZQKQM4BJPUBCMDXD.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ZQKQM4BJPUBCMDXD", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "ZQKQM4BJPUBCMDXD.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ZQKQM4BJPUBCMDXD.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11213" + }, + "appliesTo" : [ ] + }, + "ZQKQM4BJPUBCMDXD.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ZQKQM4BJPUBCMDXD.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZQKQM4BJPUBCMDXD.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ZQKQM4BJPUBCMDXD", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ZQKQM4BJPUBCMDXD.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ZQKQM4BJPUBCMDXD.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37153" + }, + "appliesTo" : [ ] + }, + "ZQKQM4BJPUBCMDXD.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ZQKQM4BJPUBCMDXD.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZQKQM4BJPUBCMDXD.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ZQKQM4BJPUBCMDXD", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "ZQKQM4BJPUBCMDXD.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ZQKQM4BJPUBCMDXD.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16924" + }, + "appliesTo" : [ ] + }, + "ZQKQM4BJPUBCMDXD.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ZQKQM4BJPUBCMDXD.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZQKQM4BJPUBCMDXD.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ZQKQM4BJPUBCMDXD", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ZQKQM4BJPUBCMDXD.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ZQKQM4BJPUBCMDXD.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "P6N8TE7UUQ73EHRS" : { + "P6N8TE7UUQ73EHRS.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "P6N8TE7UUQ73EHRS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P6N8TE7UUQ73EHRS.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "P6N8TE7UUQ73EHRS.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "P6N8TE7UUQ73EHRS.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "P6N8TE7UUQ73EHRS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P6N8TE7UUQ73EHRS.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "P6N8TE7UUQ73EHRS.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "P6N8TE7UUQ73EHRS.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "P6N8TE7UUQ73EHRS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P6N8TE7UUQ73EHRS.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "P6N8TE7UUQ73EHRS.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "P6N8TE7UUQ73EHRS.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "P6N8TE7UUQ73EHRS.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "483" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "P6N8TE7UUQ73EHRS.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "P6N8TE7UUQ73EHRS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P6N8TE7UUQ73EHRS.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "P6N8TE7UUQ73EHRS.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "P6N8TE7UUQ73EHRS.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "P6N8TE7UUQ73EHRS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P6N8TE7UUQ73EHRS.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "P6N8TE7UUQ73EHRS.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "548" + }, + "appliesTo" : [ ] + }, + "P6N8TE7UUQ73EHRS.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "P6N8TE7UUQ73EHRS.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "P6N8TE7UUQ73EHRS.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "P6N8TE7UUQ73EHRS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P6N8TE7UUQ73EHRS.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "P6N8TE7UUQ73EHRS.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "P6N8TE7UUQ73EHRS.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "P6N8TE7UUQ73EHRS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P6N8TE7UUQ73EHRS.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "P6N8TE7UUQ73EHRS.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "P6N8TE7UUQ73EHRS.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "P6N8TE7UUQ73EHRS.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "949" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "P6N8TE7UUQ73EHRS.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "P6N8TE7UUQ73EHRS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P6N8TE7UUQ73EHRS.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "P6N8TE7UUQ73EHRS.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "566" + }, + "appliesTo" : [ ] + }, + "P6N8TE7UUQ73EHRS.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "P6N8TE7UUQ73EHRS.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "P6N8TE7UUQ73EHRS.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "P6N8TE7UUQ73EHRS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P6N8TE7UUQ73EHRS.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "P6N8TE7UUQ73EHRS.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "500" + }, + "appliesTo" : [ ] + }, + "P6N8TE7UUQ73EHRS.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "P6N8TE7UUQ73EHRS.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "P6N8TE7UUQ73EHRS.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "P6N8TE7UUQ73EHRS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P6N8TE7UUQ73EHRS.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "P6N8TE7UUQ73EHRS.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "246" + }, + "appliesTo" : [ ] + }, + "P6N8TE7UUQ73EHRS.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "P6N8TE7UUQ73EHRS.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "P6N8TE7UUQ73EHRS.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "P6N8TE7UUQ73EHRS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P6N8TE7UUQ73EHRS.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "P6N8TE7UUQ73EHRS.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1113" + }, + "appliesTo" : [ ] + }, + "P6N8TE7UUQ73EHRS.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "P6N8TE7UUQ73EHRS.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "P6N8TE7UUQ73EHRS.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "P6N8TE7UUQ73EHRS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P6N8TE7UUQ73EHRS.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "P6N8TE7UUQ73EHRS.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "279" + }, + "appliesTo" : [ ] + }, + "P6N8TE7UUQ73EHRS.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "P6N8TE7UUQ73EHRS.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "Y9MW2V2ZRXFQMQHU" : { + "Y9MW2V2ZRXFQMQHU.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Y9MW2V2ZRXFQMQHU", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "Y9MW2V2ZRXFQMQHU.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Y9MW2V2ZRXFQMQHU.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Y9MW2V2ZRXFQMQHU.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Y9MW2V2ZRXFQMQHU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "Y9MW2V2ZRXFQMQHU.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Y9MW2V2ZRXFQMQHU.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "360" + }, + "appliesTo" : [ ] + }, + "Y9MW2V2ZRXFQMQHU.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Y9MW2V2ZRXFQMQHU.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y9MW2V2ZRXFQMQHU.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Y9MW2V2ZRXFQMQHU", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "Y9MW2V2ZRXFQMQHU.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Y9MW2V2ZRXFQMQHU.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "571" + }, + "appliesTo" : [ ] + }, + "Y9MW2V2ZRXFQMQHU.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Y9MW2V2ZRXFQMQHU.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y9MW2V2ZRXFQMQHU.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Y9MW2V2ZRXFQMQHU", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "Y9MW2V2ZRXFQMQHU.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Y9MW2V2ZRXFQMQHU.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "928" + }, + "appliesTo" : [ ] + }, + "Y9MW2V2ZRXFQMQHU.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Y9MW2V2ZRXFQMQHU.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Y9MW2V2ZRXFQMQHU.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Y9MW2V2ZRXFQMQHU", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "Y9MW2V2ZRXFQMQHU.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Y9MW2V2ZRXFQMQHU.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2085" + }, + "appliesTo" : [ ] + }, + "Y9MW2V2ZRXFQMQHU.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Y9MW2V2ZRXFQMQHU.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "V2PCSTGVBXJBKMTJ" : { + "V2PCSTGVBXJBKMTJ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "V2PCSTGVBXJBKMTJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V2PCSTGVBXJBKMTJ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "V2PCSTGVBXJBKMTJ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.6400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "V2PCSTGVBXJBKMTJ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "V2PCSTGVBXJBKMTJ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "V2PCSTGVBXJBKMTJ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "V2PCSTGVBXJBKMTJ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "133335" + }, + "appliesTo" : [ ] + }, + "V2PCSTGVBXJBKMTJ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "V2PCSTGVBXJBKMTJ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "V2PCSTGVBXJBKMTJ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "V2PCSTGVBXJBKMTJ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "V2PCSTGVBXJBKMTJ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "V2PCSTGVBXJBKMTJ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "384565" + }, + "appliesTo" : [ ] + }, + "V2PCSTGVBXJBKMTJ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "V2PCSTGVBXJBKMTJ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "V2PCSTGVBXJBKMTJ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "V2PCSTGVBXJBKMTJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "V2PCSTGVBXJBKMTJ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "V2PCSTGVBXJBKMTJ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "195639" + }, + "appliesTo" : [ ] + }, + "V2PCSTGVBXJBKMTJ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "V2PCSTGVBXJBKMTJ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "V2PCSTGVBXJBKMTJ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "V2PCSTGVBXJBKMTJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "V2PCSTGVBXJBKMTJ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "V2PCSTGVBXJBKMTJ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.0020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "V2PCSTGVBXJBKMTJ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "V2PCSTGVBXJBKMTJ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "V2PCSTGVBXJBKMTJ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "V2PCSTGVBXJBKMTJ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "193257" + }, + "appliesTo" : [ ] + }, + "V2PCSTGVBXJBKMTJ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "V2PCSTGVBXJBKMTJ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "V2PCSTGVBXJBKMTJ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "V2PCSTGVBXJBKMTJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "V2PCSTGVBXJBKMTJ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "V2PCSTGVBXJBKMTJ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.3570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "V2PCSTGVBXJBKMTJ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "V2PCSTGVBXJBKMTJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "V2PCSTGVBXJBKMTJ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "V2PCSTGVBXJBKMTJ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "66824" + }, + "appliesTo" : [ ] + }, + "V2PCSTGVBXJBKMTJ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "V2PCSTGVBXJBKMTJ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.6280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "V2PCSTGVBXJBKMTJ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "V2PCSTGVBXJBKMTJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V2PCSTGVBXJBKMTJ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "V2PCSTGVBXJBKMTJ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "68050" + }, + "appliesTo" : [ ] + }, + "V2PCSTGVBXJBKMTJ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "V2PCSTGVBXJBKMTJ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.7680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "V2PCSTGVBXJBKMTJ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "V2PCSTGVBXJBKMTJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V2PCSTGVBXJBKMTJ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "V2PCSTGVBXJBKMTJ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "135738" + }, + "appliesTo" : [ ] + }, + "V2PCSTGVBXJBKMTJ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "V2PCSTGVBXJBKMTJ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "V2PCSTGVBXJBKMTJ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "V2PCSTGVBXJBKMTJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "V2PCSTGVBXJBKMTJ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "V2PCSTGVBXJBKMTJ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "390533" + }, + "appliesTo" : [ ] + }, + "V2PCSTGVBXJBKMTJ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "V2PCSTGVBXJBKMTJ.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "V2PCSTGVBXJBKMTJ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "V2PCSTGVBXJBKMTJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "V2PCSTGVBXJBKMTJ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "V2PCSTGVBXJBKMTJ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.8030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "YSQ44UEJR3KC9UZ6" : { + "YSQ44UEJR3KC9UZ6.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YSQ44UEJR3KC9UZ6", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "YSQ44UEJR3KC9UZ6.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YSQ44UEJR3KC9UZ6.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4415" + }, + "appliesTo" : [ ] + }, + "YSQ44UEJR3KC9UZ6.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YSQ44UEJR3KC9UZ6.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YSQ44UEJR3KC9UZ6.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "YSQ44UEJR3KC9UZ6", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "YSQ44UEJR3KC9UZ6.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "YSQ44UEJR3KC9UZ6.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5938" + }, + "appliesTo" : [ ] + }, + "YSQ44UEJR3KC9UZ6.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "YSQ44UEJR3KC9UZ6.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YSQ44UEJR3KC9UZ6.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YSQ44UEJR3KC9UZ6", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "YSQ44UEJR3KC9UZ6.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YSQ44UEJR3KC9UZ6.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6917" + }, + "appliesTo" : [ ] + }, + "YSQ44UEJR3KC9UZ6.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YSQ44UEJR3KC9UZ6.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YSQ44UEJR3KC9UZ6.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "YSQ44UEJR3KC9UZ6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YSQ44UEJR3KC9UZ6.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "YSQ44UEJR3KC9UZ6.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YSQ44UEJR3KC9UZ6.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "YSQ44UEJR3KC9UZ6.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3383" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YSQ44UEJR3KC9UZ6.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "YSQ44UEJR3KC9UZ6", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YSQ44UEJR3KC9UZ6.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "YSQ44UEJR3KC9UZ6.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YSQ44UEJR3KC9UZ6.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "YSQ44UEJR3KC9UZ6.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9008" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YSQ44UEJR3KC9UZ6.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "YSQ44UEJR3KC9UZ6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YSQ44UEJR3KC9UZ6.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "YSQ44UEJR3KC9UZ6.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YSQ44UEJR3KC9UZ6.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "YSQ44UEJR3KC9UZ6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YSQ44UEJR3KC9UZ6.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "YSQ44UEJR3KC9UZ6.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1710" + }, + "appliesTo" : [ ] + }, + "YSQ44UEJR3KC9UZ6.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "YSQ44UEJR3KC9UZ6.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YSQ44UEJR3KC9UZ6.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YSQ44UEJR3KC9UZ6", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "YSQ44UEJR3KC9UZ6.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YSQ44UEJR3KC9UZ6.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2082" + }, + "appliesTo" : [ ] + }, + "YSQ44UEJR3KC9UZ6.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YSQ44UEJR3KC9UZ6.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YSQ44UEJR3KC9UZ6.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YSQ44UEJR3KC9UZ6", + "effectiveDate" : "2017-07-31T23:59:59Z", + "priceDimensions" : { + "YSQ44UEJR3KC9UZ6.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YSQ44UEJR3KC9UZ6.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3157" + }, + "appliesTo" : [ ] + }, + "YSQ44UEJR3KC9UZ6.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YSQ44UEJR3KC9UZ6.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YSQ44UEJR3KC9UZ6.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YSQ44UEJR3KC9UZ6", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "YSQ44UEJR3KC9UZ6.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YSQ44UEJR3KC9UZ6.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YSQ44UEJR3KC9UZ6.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "YSQ44UEJR3KC9UZ6", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "YSQ44UEJR3KC9UZ6.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "YSQ44UEJR3KC9UZ6.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "HXX5KQP8SE3AS5E2" : { + "HXX5KQP8SE3AS5E2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "HXX5KQP8SE3AS5E2", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "HXX5KQP8SE3AS5E2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "HXX5KQP8SE3AS5E2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "63386" + }, + "appliesTo" : [ ] + }, + "HXX5KQP8SE3AS5E2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "HXX5KQP8SE3AS5E2.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HXX5KQP8SE3AS5E2.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "HXX5KQP8SE3AS5E2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HXX5KQP8SE3AS5E2.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "HXX5KQP8SE3AS5E2.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "63746" + }, + "appliesTo" : [ ] + }, + "HXX5KQP8SE3AS5E2.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "HXX5KQP8SE3AS5E2.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "HXX5KQP8SE3AS5E2.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "HXX5KQP8SE3AS5E2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HXX5KQP8SE3AS5E2.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "HXX5KQP8SE3AS5E2.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "93467" + }, + "appliesTo" : [ ] + }, + "HXX5KQP8SE3AS5E2.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "HXX5KQP8SE3AS5E2.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HXX5KQP8SE3AS5E2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "HXX5KQP8SE3AS5E2", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "HXX5KQP8SE3AS5E2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "HXX5KQP8SE3AS5E2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31737" + }, + "appliesTo" : [ ] + }, + "HXX5KQP8SE3AS5E2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "HXX5KQP8SE3AS5E2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HXX5KQP8SE3AS5E2.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "HXX5KQP8SE3AS5E2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HXX5KQP8SE3AS5E2.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "HXX5KQP8SE3AS5E2.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.0900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "HXX5KQP8SE3AS5E2.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "HXX5KQP8SE3AS5E2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HXX5KQP8SE3AS5E2.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "HXX5KQP8SE3AS5E2.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "HXX5KQP8SE3AS5E2.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "HXX5KQP8SE3AS5E2.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "186737" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "HXX5KQP8SE3AS5E2.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "HXX5KQP8SE3AS5E2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HXX5KQP8SE3AS5E2.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "HXX5KQP8SE3AS5E2.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "HXX5KQP8SE3AS5E2.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "HXX5KQP8SE3AS5E2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HXX5KQP8SE3AS5E2.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "HXX5KQP8SE3AS5E2.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6440000000" + }, + "appliesTo" : [ ] + }, + "HXX5KQP8SE3AS5E2.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "HXX5KQP8SE3AS5E2.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31921" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HXX5KQP8SE3AS5E2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "HXX5KQP8SE3AS5E2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HXX5KQP8SE3AS5E2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "HXX5KQP8SE3AS5E2.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.2400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "HXX5KQP8SE3AS5E2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "HXX5KQP8SE3AS5E2", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "HXX5KQP8SE3AS5E2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "HXX5KQP8SE3AS5E2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "92847" + }, + "appliesTo" : [ ] + }, + "HXX5KQP8SE3AS5E2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "HXX5KQP8SE3AS5E2.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HXX5KQP8SE3AS5E2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "HXX5KQP8SE3AS5E2", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "HXX5KQP8SE3AS5E2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "HXX5KQP8SE3AS5E2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "185174" + }, + "appliesTo" : [ ] + }, + "HXX5KQP8SE3AS5E2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "HXX5KQP8SE3AS5E2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HXX5KQP8SE3AS5E2.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "HXX5KQP8SE3AS5E2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HXX5KQP8SE3AS5E2.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "HXX5KQP8SE3AS5E2.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.1430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "HFJ8JNVXU9Z88543" : { + "HFJ8JNVXU9Z88543.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "HFJ8JNVXU9Z88543", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "HFJ8JNVXU9Z88543.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "HFJ8JNVXU9Z88543.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15904" + }, + "appliesTo" : [ ] + }, + "HFJ8JNVXU9Z88543.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "HFJ8JNVXU9Z88543.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6048000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HFJ8JNVXU9Z88543.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "HFJ8JNVXU9Z88543", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "HFJ8JNVXU9Z88543.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "HFJ8JNVXU9Z88543.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35748" + }, + "appliesTo" : [ ] + }, + "HFJ8JNVXU9Z88543.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "HFJ8JNVXU9Z88543.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "HFJ8JNVXU9Z88543.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "HFJ8JNVXU9Z88543", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "HFJ8JNVXU9Z88543.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "HFJ8JNVXU9Z88543.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3112000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "HFJ8JNVXU9Z88543.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "HFJ8JNVXU9Z88543", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "HFJ8JNVXU9Z88543.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "HFJ8JNVXU9Z88543.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29931" + }, + "appliesTo" : [ ] + }, + "HFJ8JNVXU9Z88543.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "HFJ8JNVXU9Z88543.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HFJ8JNVXU9Z88543.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "HFJ8JNVXU9Z88543", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HFJ8JNVXU9Z88543.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "HFJ8JNVXU9Z88543.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "HFJ8JNVXU9Z88543.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "HFJ8JNVXU9Z88543.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16384" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "HFJ8JNVXU9Z88543.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "HFJ8JNVXU9Z88543", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "HFJ8JNVXU9Z88543.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "HFJ8JNVXU9Z88543.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6935000000" + }, + "appliesTo" : [ ] + }, + "HFJ8JNVXU9Z88543.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "HFJ8JNVXU9Z88543.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18237" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HFJ8JNVXU9Z88543.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "HFJ8JNVXU9Z88543", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "HFJ8JNVXU9Z88543.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "HFJ8JNVXU9Z88543.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7447000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "HFJ8JNVXU9Z88543.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "HFJ8JNVXU9Z88543", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "HFJ8JNVXU9Z88543.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "HFJ8JNVXU9Z88543.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "HFJ8JNVXU9Z88543.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "HFJ8JNVXU9Z88543", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "HFJ8JNVXU9Z88543.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "HFJ8JNVXU9Z88543.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14285" + }, + "appliesTo" : [ ] + }, + "HFJ8JNVXU9Z88543.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "HFJ8JNVXU9Z88543.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HFJ8JNVXU9Z88543.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "HFJ8JNVXU9Z88543", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "HFJ8JNVXU9Z88543.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "HFJ8JNVXU9Z88543.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7316" + }, + "appliesTo" : [ ] + }, + "HFJ8JNVXU9Z88543.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "HFJ8JNVXU9Z88543.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8281000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HFJ8JNVXU9Z88543.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "HFJ8JNVXU9Z88543", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HFJ8JNVXU9Z88543.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "HFJ8JNVXU9Z88543.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8387" + }, + "appliesTo" : [ ] + }, + "HFJ8JNVXU9Z88543.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "HFJ8JNVXU9Z88543.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9504000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HFJ8JNVXU9Z88543.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "HFJ8JNVXU9Z88543", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HFJ8JNVXU9Z88543.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "HFJ8JNVXU9Z88543.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0015000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "H4R547VQJ55ZDDZ2" : { + "H4R547VQJ55ZDDZ2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "H4R547VQJ55ZDDZ2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "H4R547VQJ55ZDDZ2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "H4R547VQJ55ZDDZ2.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "H4R547VQJ55ZDDZ2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "H4R547VQJ55ZDDZ2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2541" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "H4R547VQJ55ZDDZ2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "H4R547VQJ55ZDDZ2", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "H4R547VQJ55ZDDZ2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "H4R547VQJ55ZDDZ2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1296" + }, + "appliesTo" : [ ] + }, + "H4R547VQJ55ZDDZ2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "H4R547VQJ55ZDDZ2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "H4R547VQJ55ZDDZ2.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "H4R547VQJ55ZDDZ2", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "H4R547VQJ55ZDDZ2.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "H4R547VQJ55ZDDZ2.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "H4R547VQJ55ZDDZ2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "H4R547VQJ55ZDDZ2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "H4R547VQJ55ZDDZ2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "H4R547VQJ55ZDDZ2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6126" + }, + "appliesTo" : [ ] + }, + "H4R547VQJ55ZDDZ2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "H4R547VQJ55ZDDZ2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "H4R547VQJ55ZDDZ2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "H4R547VQJ55ZDDZ2", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "H4R547VQJ55ZDDZ2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "H4R547VQJ55ZDDZ2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3259" + }, + "appliesTo" : [ ] + }, + "H4R547VQJ55ZDDZ2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "H4R547VQJ55ZDDZ2.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "H4R547VQJ55ZDDZ2.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "H4R547VQJ55ZDDZ2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "H4R547VQJ55ZDDZ2.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "H4R547VQJ55ZDDZ2.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7261" + }, + "appliesTo" : [ ] + }, + "H4R547VQJ55ZDDZ2.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "H4R547VQJ55ZDDZ2.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "H4R547VQJ55ZDDZ2.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "H4R547VQJ55ZDDZ2", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "H4R547VQJ55ZDDZ2.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "H4R547VQJ55ZDDZ2.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3703" + }, + "appliesTo" : [ ] + }, + "H4R547VQJ55ZDDZ2.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "H4R547VQJ55ZDDZ2.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "H4R547VQJ55ZDDZ2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "H4R547VQJ55ZDDZ2", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "H4R547VQJ55ZDDZ2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "H4R547VQJ55ZDDZ2.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "H4R547VQJ55ZDDZ2.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "H4R547VQJ55ZDDZ2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H4R547VQJ55ZDDZ2.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "H4R547VQJ55ZDDZ2.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "H4R547VQJ55ZDDZ2.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "H4R547VQJ55ZDDZ2.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3399" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "H4R547VQJ55ZDDZ2.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "H4R547VQJ55ZDDZ2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H4R547VQJ55ZDDZ2.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "H4R547VQJ55ZDDZ2.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3975000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "H4R547VQJ55ZDDZ2.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "H4R547VQJ55ZDDZ2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "H4R547VQJ55ZDDZ2.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "H4R547VQJ55ZDDZ2.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "H4R547VQJ55ZDDZ2.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "H4R547VQJ55ZDDZ2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H4R547VQJ55ZDDZ2.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "H4R547VQJ55ZDDZ2.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1711" + }, + "appliesTo" : [ ] + }, + "H4R547VQJ55ZDDZ2.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "H4R547VQJ55ZDDZ2.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1954000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "GTXYRWSN8RXE5ZBA" : { + "GTXYRWSN8RXE5ZBA.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "GTXYRWSN8RXE5ZBA", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "GTXYRWSN8RXE5ZBA.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "GTXYRWSN8RXE5ZBA.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33920" + }, + "appliesTo" : [ ] + }, + "GTXYRWSN8RXE5ZBA.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "GTXYRWSN8RXE5ZBA.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GTXYRWSN8RXE5ZBA.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "GTXYRWSN8RXE5ZBA", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "GTXYRWSN8RXE5ZBA.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "GTXYRWSN8RXE5ZBA.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17305" + }, + "appliesTo" : [ ] + }, + "GTXYRWSN8RXE5ZBA.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "GTXYRWSN8RXE5ZBA.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GTXYRWSN8RXE5ZBA.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "GTXYRWSN8RXE5ZBA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GTXYRWSN8RXE5ZBA.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "GTXYRWSN8RXE5ZBA.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.8800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "GTXYRWSN8RXE5ZBA.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "GTXYRWSN8RXE5ZBA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GTXYRWSN8RXE5ZBA.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "GTXYRWSN8RXE5ZBA.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "GTXYRWSN8RXE5ZBA.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "GTXYRWSN8RXE5ZBA.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "51133" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "GTXYRWSN8RXE5ZBA.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "GTXYRWSN8RXE5ZBA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GTXYRWSN8RXE5ZBA.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "GTXYRWSN8RXE5ZBA.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.6320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GTXYRWSN8RXE5ZBA.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "GTXYRWSN8RXE5ZBA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GTXYRWSN8RXE5ZBA.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "GTXYRWSN8RXE5ZBA.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25619" + }, + "appliesTo" : [ ] + }, + "GTXYRWSN8RXE5ZBA.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "GTXYRWSN8RXE5ZBA.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GTXYRWSN8RXE5ZBA.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "GTXYRWSN8RXE5ZBA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GTXYRWSN8RXE5ZBA.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "GTXYRWSN8RXE5ZBA.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "100240" + }, + "appliesTo" : [ ] + }, + "GTXYRWSN8RXE5ZBA.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "GTXYRWSN8RXE5ZBA.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "GTXYRWSN8RXE5ZBA.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "GTXYRWSN8RXE5ZBA", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "GTXYRWSN8RXE5ZBA.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "GTXYRWSN8RXE5ZBA.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9470000000" + }, + "appliesTo" : [ ] + }, + "GTXYRWSN8RXE5ZBA.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "GTXYRWSN8RXE5ZBA.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "51136" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GTXYRWSN8RXE5ZBA.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "GTXYRWSN8RXE5ZBA", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "GTXYRWSN8RXE5ZBA.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "GTXYRWSN8RXE5ZBA.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38991" + }, + "appliesTo" : [ ] + }, + "GTXYRWSN8RXE5ZBA.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "GTXYRWSN8RXE5ZBA.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GTXYRWSN8RXE5ZBA.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "GTXYRWSN8RXE5ZBA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GTXYRWSN8RXE5ZBA.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "GTXYRWSN8RXE5ZBA.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.6240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GTXYRWSN8RXE5ZBA.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "GTXYRWSN8RXE5ZBA", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "GTXYRWSN8RXE5ZBA.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "GTXYRWSN8RXE5ZBA.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "73303" + }, + "appliesTo" : [ ] + }, + "GTXYRWSN8RXE5ZBA.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "GTXYRWSN8RXE5ZBA.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GTXYRWSN8RXE5ZBA.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "GTXYRWSN8RXE5ZBA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GTXYRWSN8RXE5ZBA.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "GTXYRWSN8RXE5ZBA.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "D5X7AACFHDWJ6DC4" : { + "D5X7AACFHDWJ6DC4.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "D5X7AACFHDWJ6DC4", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "D5X7AACFHDWJ6DC4.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "D5X7AACFHDWJ6DC4.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.7080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "D5X7AACFHDWJ6DC4.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "D5X7AACFHDWJ6DC4", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "D5X7AACFHDWJ6DC4.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "D5X7AACFHDWJ6DC4.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "69695" + }, + "appliesTo" : [ ] + }, + "D5X7AACFHDWJ6DC4.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "D5X7AACFHDWJ6DC4.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.9560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "D5X7AACFHDWJ6DC4.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "D5X7AACFHDWJ6DC4", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "D5X7AACFHDWJ6DC4.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "D5X7AACFHDWJ6DC4.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.6550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "D5X7AACFHDWJ6DC4.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "D5X7AACFHDWJ6DC4", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "D5X7AACFHDWJ6DC4.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "D5X7AACFHDWJ6DC4.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "243708" + }, + "appliesTo" : [ ] + }, + "D5X7AACFHDWJ6DC4.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "D5X7AACFHDWJ6DC4.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "D5X7AACFHDWJ6DC4.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "D5X7AACFHDWJ6DC4", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "D5X7AACFHDWJ6DC4.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "D5X7AACFHDWJ6DC4.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "D5X7AACFHDWJ6DC4.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "D5X7AACFHDWJ6DC4.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "136601" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "D5X7AACFHDWJ6DC4.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "D5X7AACFHDWJ6DC4", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "D5X7AACFHDWJ6DC4.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "D5X7AACFHDWJ6DC4.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "129632" + }, + "appliesTo" : [ ] + }, + "D5X7AACFHDWJ6DC4.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "D5X7AACFHDWJ6DC4.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "W3WU9RECE72NMJ77" : { + "W3WU9RECE72NMJ77.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "W3WU9RECE72NMJ77", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "W3WU9RECE72NMJ77.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "W3WU9RECE72NMJ77.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "W3WU9RECE72NMJ77.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "W3WU9RECE72NMJ77", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "W3WU9RECE72NMJ77.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "W3WU9RECE72NMJ77.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1050000000" + }, + "appliesTo" : [ ] + }, + "W3WU9RECE72NMJ77.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "W3WU9RECE72NMJ77.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3873" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "W3WU9RECE72NMJ77.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "W3WU9RECE72NMJ77", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "W3WU9RECE72NMJ77.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "W3WU9RECE72NMJ77.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "W3WU9RECE72NMJ77.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "W3WU9RECE72NMJ77.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4735" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "W3WU9RECE72NMJ77.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "W3WU9RECE72NMJ77", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W3WU9RECE72NMJ77.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "W3WU9RECE72NMJ77.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2786" + }, + "appliesTo" : [ ] + }, + "W3WU9RECE72NMJ77.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "W3WU9RECE72NMJ77.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "W3WU9RECE72NMJ77.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "W3WU9RECE72NMJ77", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "W3WU9RECE72NMJ77.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "W3WU9RECE72NMJ77.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2383" + }, + "appliesTo" : [ ] + }, + "W3WU9RECE72NMJ77.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "W3WU9RECE72NMJ77.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "W3WU9RECE72NMJ77.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "W3WU9RECE72NMJ77", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "W3WU9RECE72NMJ77.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "W3WU9RECE72NMJ77.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1480" + }, + "appliesTo" : [ ] + }, + "W3WU9RECE72NMJ77.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "W3WU9RECE72NMJ77.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "W3WU9RECE72NMJ77.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "W3WU9RECE72NMJ77", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "W3WU9RECE72NMJ77.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "W3WU9RECE72NMJ77.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6462" + }, + "appliesTo" : [ ] + }, + "W3WU9RECE72NMJ77.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "W3WU9RECE72NMJ77.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "W3WU9RECE72NMJ77.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "W3WU9RECE72NMJ77", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W3WU9RECE72NMJ77.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "W3WU9RECE72NMJ77.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1580000000" + }, + "appliesTo" : [ ] + }, + "W3WU9RECE72NMJ77.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "W3WU9RECE72NMJ77.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1449" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "W3WU9RECE72NMJ77.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "W3WU9RECE72NMJ77", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W3WU9RECE72NMJ77.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "W3WU9RECE72NMJ77.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "W3WU9RECE72NMJ77.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "W3WU9RECE72NMJ77", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "W3WU9RECE72NMJ77.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "W3WU9RECE72NMJ77.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "W3WU9RECE72NMJ77.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "W3WU9RECE72NMJ77", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "W3WU9RECE72NMJ77.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "W3WU9RECE72NMJ77.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2437" + }, + "appliesTo" : [ ] + }, + "W3WU9RECE72NMJ77.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "W3WU9RECE72NMJ77.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "DXZA4TZJFG2BW52U" : { + "DXZA4TZJFG2BW52U.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "DXZA4TZJFG2BW52U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DXZA4TZJFG2BW52U.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "DXZA4TZJFG2BW52U.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.4350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DXZA4TZJFG2BW52U.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "DXZA4TZJFG2BW52U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DXZA4TZJFG2BW52U.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "DXZA4TZJFG2BW52U.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "DXZA4TZJFG2BW52U.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "DXZA4TZJFG2BW52U.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "108621" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DXZA4TZJFG2BW52U.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "DXZA4TZJFG2BW52U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DXZA4TZJFG2BW52U.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "DXZA4TZJFG2BW52U.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "DXZA4TZJFG2BW52U.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "DXZA4TZJFG2BW52U.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "74245" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DXZA4TZJFG2BW52U.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "DXZA4TZJFG2BW52U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DXZA4TZJFG2BW52U.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "DXZA4TZJFG2BW52U.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "66371" + }, + "appliesTo" : [ ] + }, + "DXZA4TZJFG2BW52U.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "DXZA4TZJFG2BW52U.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DXZA4TZJFG2BW52U.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "DXZA4TZJFG2BW52U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DXZA4TZJFG2BW52U.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "DXZA4TZJFG2BW52U.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "57760" + }, + "appliesTo" : [ ] + }, + "DXZA4TZJFG2BW52U.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "DXZA4TZJFG2BW52U.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DXZA4TZJFG2BW52U.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "DXZA4TZJFG2BW52U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DXZA4TZJFG2BW52U.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "DXZA4TZJFG2BW52U.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.4590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DXZA4TZJFG2BW52U.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "DXZA4TZJFG2BW52U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DXZA4TZJFG2BW52U.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "DXZA4TZJFG2BW52U.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37908" + }, + "appliesTo" : [ ] + }, + "DXZA4TZJFG2BW52U.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "DXZA4TZJFG2BW52U.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.3200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DXZA4TZJFG2BW52U.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "DXZA4TZJFG2BW52U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DXZA4TZJFG2BW52U.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "DXZA4TZJFG2BW52U.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9660000000" + }, + "appliesTo" : [ ] + }, + "DXZA4TZJFG2BW52U.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "DXZA4TZJFG2BW52U.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "43568" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DXZA4TZJFG2BW52U.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "DXZA4TZJFG2BW52U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DXZA4TZJFG2BW52U.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "DXZA4TZJFG2BW52U.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.0780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DXZA4TZJFG2BW52U.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "DXZA4TZJFG2BW52U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DXZA4TZJFG2BW52U.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "DXZA4TZJFG2BW52U.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "85339" + }, + "appliesTo" : [ ] + }, + "DXZA4TZJFG2BW52U.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "DXZA4TZJFG2BW52U.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DXZA4TZJFG2BW52U.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "DXZA4TZJFG2BW52U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DXZA4TZJFG2BW52U.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "DXZA4TZJFG2BW52U.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.7510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DXZA4TZJFG2BW52U.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "DXZA4TZJFG2BW52U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DXZA4TZJFG2BW52U.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "DXZA4TZJFG2BW52U.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "130092" + }, + "appliesTo" : [ ] + }, + "DXZA4TZJFG2BW52U.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "DXZA4TZJFG2BW52U.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "YT69AAZT9MZJXMUB" : { + "YT69AAZT9MZJXMUB.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YT69AAZT9MZJXMUB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YT69AAZT9MZJXMUB.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YT69AAZT9MZJXMUB.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10019" + }, + "appliesTo" : [ ] + }, + "YT69AAZT9MZJXMUB.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YT69AAZT9MZJXMUB.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YT69AAZT9MZJXMUB.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "YT69AAZT9MZJXMUB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YT69AAZT9MZJXMUB.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "YT69AAZT9MZJXMUB.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10649" + }, + "appliesTo" : [ ] + }, + "YT69AAZT9MZJXMUB.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "YT69AAZT9MZJXMUB.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YT69AAZT9MZJXMUB.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "YT69AAZT9MZJXMUB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YT69AAZT9MZJXMUB.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "YT69AAZT9MZJXMUB.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12476" + }, + "appliesTo" : [ ] + }, + "YT69AAZT9MZJXMUB.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "YT69AAZT9MZJXMUB.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YT69AAZT9MZJXMUB.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YT69AAZT9MZJXMUB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YT69AAZT9MZJXMUB.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YT69AAZT9MZJXMUB.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5052" + }, + "appliesTo" : [ ] + }, + "YT69AAZT9MZJXMUB.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YT69AAZT9MZJXMUB.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YT69AAZT9MZJXMUB.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YT69AAZT9MZJXMUB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YT69AAZT9MZJXMUB.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YT69AAZT9MZJXMUB.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23582" + }, + "appliesTo" : [ ] + }, + "YT69AAZT9MZJXMUB.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YT69AAZT9MZJXMUB.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YT69AAZT9MZJXMUB.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "YT69AAZT9MZJXMUB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YT69AAZT9MZJXMUB.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "YT69AAZT9MZJXMUB.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YT69AAZT9MZJXMUB.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YT69AAZT9MZJXMUB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YT69AAZT9MZJXMUB.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YT69AAZT9MZJXMUB.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4560000000" + }, + "appliesTo" : [ ] + }, + "YT69AAZT9MZJXMUB.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YT69AAZT9MZJXMUB.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11987" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YT69AAZT9MZJXMUB.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YT69AAZT9MZJXMUB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YT69AAZT9MZJXMUB.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YT69AAZT9MZJXMUB.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YT69AAZT9MZJXMUB.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "YT69AAZT9MZJXMUB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YT69AAZT9MZJXMUB.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "YT69AAZT9MZJXMUB.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24802" + }, + "appliesTo" : [ ] + }, + "YT69AAZT9MZJXMUB.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "YT69AAZT9MZJXMUB.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YT69AAZT9MZJXMUB.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "YT69AAZT9MZJXMUB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YT69AAZT9MZJXMUB.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "YT69AAZT9MZJXMUB.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YT69AAZT9MZJXMUB.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "YT69AAZT9MZJXMUB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YT69AAZT9MZJXMUB.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "YT69AAZT9MZJXMUB.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YT69AAZT9MZJXMUB.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "YT69AAZT9MZJXMUB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YT69AAZT9MZJXMUB.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "YT69AAZT9MZJXMUB.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5374" + }, + "appliesTo" : [ ] + }, + "YT69AAZT9MZJXMUB.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "YT69AAZT9MZJXMUB.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "B73TJ3GDPEVMDXTQ" : { + "B73TJ3GDPEVMDXTQ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "B73TJ3GDPEVMDXTQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "B73TJ3GDPEVMDXTQ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "B73TJ3GDPEVMDXTQ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.9440000000" + }, + "appliesTo" : [ ] + }, + "B73TJ3GDPEVMDXTQ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "B73TJ3GDPEVMDXTQ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "130909" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "B73TJ3GDPEVMDXTQ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "B73TJ3GDPEVMDXTQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "B73TJ3GDPEVMDXTQ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "B73TJ3GDPEVMDXTQ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "30.0352000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "B73TJ3GDPEVMDXTQ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "B73TJ3GDPEVMDXTQ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "B73TJ3GDPEVMDXTQ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "B73TJ3GDPEVMDXTQ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "29.6320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "B73TJ3GDPEVMDXTQ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "B73TJ3GDPEVMDXTQ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "B73TJ3GDPEVMDXTQ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "B73TJ3GDPEVMDXTQ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "758320" + }, + "appliesTo" : [ ] + }, + "B73TJ3GDPEVMDXTQ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "B73TJ3GDPEVMDXTQ.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "B73TJ3GDPEVMDXTQ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "B73TJ3GDPEVMDXTQ", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "B73TJ3GDPEVMDXTQ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "B73TJ3GDPEVMDXTQ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.7490000000" + }, + "appliesTo" : [ ] + }, + "B73TJ3GDPEVMDXTQ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "B73TJ3GDPEVMDXTQ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "129199" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "B73TJ3GDPEVMDXTQ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "B73TJ3GDPEVMDXTQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "B73TJ3GDPEVMDXTQ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "B73TJ3GDPEVMDXTQ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "261303" + }, + "appliesTo" : [ ] + }, + "B73TJ3GDPEVMDXTQ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "B73TJ3GDPEVMDXTQ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "B73TJ3GDPEVMDXTQ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "B73TJ3GDPEVMDXTQ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "B73TJ3GDPEVMDXTQ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "B73TJ3GDPEVMDXTQ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "750143" + }, + "appliesTo" : [ ] + }, + "B73TJ3GDPEVMDXTQ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "B73TJ3GDPEVMDXTQ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "B73TJ3GDPEVMDXTQ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "B73TJ3GDPEVMDXTQ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "B73TJ3GDPEVMDXTQ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "B73TJ3GDPEVMDXTQ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "28.7757000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "B73TJ3GDPEVMDXTQ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "B73TJ3GDPEVMDXTQ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "B73TJ3GDPEVMDXTQ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "B73TJ3GDPEVMDXTQ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "29.0504000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "B73TJ3GDPEVMDXTQ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "B73TJ3GDPEVMDXTQ", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "B73TJ3GDPEVMDXTQ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "B73TJ3GDPEVMDXTQ.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "B73TJ3GDPEVMDXTQ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "B73TJ3GDPEVMDXTQ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "257952" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "B73TJ3GDPEVMDXTQ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "B73TJ3GDPEVMDXTQ", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "B73TJ3GDPEVMDXTQ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "B73TJ3GDPEVMDXTQ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "376414" + }, + "appliesTo" : [ ] + }, + "B73TJ3GDPEVMDXTQ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "B73TJ3GDPEVMDXTQ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.3230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "B73TJ3GDPEVMDXTQ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "B73TJ3GDPEVMDXTQ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "B73TJ3GDPEVMDXTQ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "B73TJ3GDPEVMDXTQ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "379672" + }, + "appliesTo" : [ ] + }, + "B73TJ3GDPEVMDXTQ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "B73TJ3GDPEVMDXTQ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.4472000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "QWBZPDE9BGTPCYWW" : { + "QWBZPDE9BGTPCYWW.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QWBZPDE9BGTPCYWW", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "QWBZPDE9BGTPCYWW.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QWBZPDE9BGTPCYWW.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2776" + }, + "appliesTo" : [ ] + }, + "QWBZPDE9BGTPCYWW.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QWBZPDE9BGTPCYWW.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QWBZPDE9BGTPCYWW.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QWBZPDE9BGTPCYWW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QWBZPDE9BGTPCYWW.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QWBZPDE9BGTPCYWW.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QWBZPDE9BGTPCYWW.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QWBZPDE9BGTPCYWW", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "QWBZPDE9BGTPCYWW.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QWBZPDE9BGTPCYWW.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1430000000" + }, + "appliesTo" : [ ] + }, + "QWBZPDE9BGTPCYWW.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QWBZPDE9BGTPCYWW.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1782" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QWBZPDE9BGTPCYWW.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QWBZPDE9BGTPCYWW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QWBZPDE9BGTPCYWW.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QWBZPDE9BGTPCYWW.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QWBZPDE9BGTPCYWW.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QWBZPDE9BGTPCYWW.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2973" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QWBZPDE9BGTPCYWW.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QWBZPDE9BGTPCYWW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QWBZPDE9BGTPCYWW.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QWBZPDE9BGTPCYWW.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5652" + }, + "appliesTo" : [ ] + }, + "QWBZPDE9BGTPCYWW.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QWBZPDE9BGTPCYWW.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "8PWP644R45F4VKQ9" : { + "8PWP644R45F4VKQ9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "8PWP644R45F4VKQ9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8PWP644R45F4VKQ9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "8PWP644R45F4VKQ9.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "8PWP644R45F4VKQ9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "8PWP644R45F4VKQ9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "118778" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8PWP644R45F4VKQ9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "8PWP644R45F4VKQ9", + "effectiveDate" : "2016-06-30T23:59:59Z", + "priceDimensions" : { + "8PWP644R45F4VKQ9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "8PWP644R45F4VKQ9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "60075" + }, + "appliesTo" : [ ] + }, + "8PWP644R45F4VKQ9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "8PWP644R45F4VKQ9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.8580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8PWP644R45F4VKQ9.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "8PWP644R45F4VKQ9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8PWP644R45F4VKQ9.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "8PWP644R45F4VKQ9.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "128860" + }, + "appliesTo" : [ ] + }, + "8PWP644R45F4VKQ9.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "8PWP644R45F4VKQ9.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8PWP644R45F4VKQ9.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "8PWP644R45F4VKQ9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8PWP644R45F4VKQ9.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "8PWP644R45F4VKQ9.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.1760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8PWP644R45F4VKQ9.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "8PWP644R45F4VKQ9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8PWP644R45F4VKQ9.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "8PWP644R45F4VKQ9.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.2270000000" + }, + "appliesTo" : [ ] + }, + "8PWP644R45F4VKQ9.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "8PWP644R45F4VKQ9.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "137359" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8PWP644R45F4VKQ9.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "8PWP644R45F4VKQ9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8PWP644R45F4VKQ9.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "8PWP644R45F4VKQ9.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4450000000" + }, + "appliesTo" : [ ] + }, + "8PWP644R45F4VKQ9.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "8PWP644R45F4VKQ9.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "65219" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8PWP644R45F4VKQ9.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "8PWP644R45F4VKQ9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8PWP644R45F4VKQ9.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "8PWP644R45F4VKQ9.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.3400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8PWP644R45F4VKQ9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "8PWP644R45F4VKQ9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8PWP644R45F4VKQ9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "8PWP644R45F4VKQ9.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.1070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8PWP644R45F4VKQ9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "8PWP644R45F4VKQ9", + "effectiveDate" : "2016-06-30T23:59:59Z", + "priceDimensions" : { + "8PWP644R45F4VKQ9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "8PWP644R45F4VKQ9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "129534" + }, + "appliesTo" : [ ] + }, + "8PWP644R45F4VKQ9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "8PWP644R45F4VKQ9.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8PWP644R45F4VKQ9.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "8PWP644R45F4VKQ9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8PWP644R45F4VKQ9.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "8PWP644R45F4VKQ9.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "272317" + }, + "appliesTo" : [ ] + }, + "8PWP644R45F4VKQ9.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "8PWP644R45F4VKQ9.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8PWP644R45F4VKQ9.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "8PWP644R45F4VKQ9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8PWP644R45F4VKQ9.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "8PWP644R45F4VKQ9.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.8190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8PWP644R45F4VKQ9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "8PWP644R45F4VKQ9", + "effectiveDate" : "2016-06-30T23:59:59Z", + "priceDimensions" : { + "8PWP644R45F4VKQ9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "8PWP644R45F4VKQ9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "252808" + }, + "appliesTo" : [ ] + }, + "8PWP644R45F4VKQ9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "8PWP644R45F4VKQ9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "ZPYBCRBFCYN9APCP" : { + "ZPYBCRBFCYN9APCP.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ZPYBCRBFCYN9APCP", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "ZPYBCRBFCYN9APCP.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ZPYBCRBFCYN9APCP.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9484" + }, + "appliesTo" : [ ] + }, + "ZPYBCRBFCYN9APCP.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ZPYBCRBFCYN9APCP.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZPYBCRBFCYN9APCP.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ZPYBCRBFCYN9APCP", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "ZPYBCRBFCYN9APCP.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ZPYBCRBFCYN9APCP.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4861" + }, + "appliesTo" : [ ] + }, + "ZPYBCRBFCYN9APCP.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ZPYBCRBFCYN9APCP.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZPYBCRBFCYN9APCP.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ZPYBCRBFCYN9APCP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ZPYBCRBFCYN9APCP.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ZPYBCRBFCYN9APCP.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3431" + }, + "appliesTo" : [ ] + }, + "ZPYBCRBFCYN9APCP.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ZPYBCRBFCYN9APCP.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZPYBCRBFCYN9APCP.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ZPYBCRBFCYN9APCP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZPYBCRBFCYN9APCP.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ZPYBCRBFCYN9APCP.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZPYBCRBFCYN9APCP.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ZPYBCRBFCYN9APCP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZPYBCRBFCYN9APCP.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ZPYBCRBFCYN9APCP.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ZPYBCRBFCYN9APCP.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ZPYBCRBFCYN9APCP.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6432" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZPYBCRBFCYN9APCP.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ZPYBCRBFCYN9APCP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ZPYBCRBFCYN9APCP.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ZPYBCRBFCYN9APCP.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZPYBCRBFCYN9APCP.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ZPYBCRBFCYN9APCP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ZPYBCRBFCYN9APCP.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ZPYBCRBFCYN9APCP.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2040000000" + }, + "appliesTo" : [ ] + }, + "ZPYBCRBFCYN9APCP.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ZPYBCRBFCYN9APCP.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1850" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZPYBCRBFCYN9APCP.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ZPYBCRBFCYN9APCP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZPYBCRBFCYN9APCP.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ZPYBCRBFCYN9APCP.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ZPYBCRBFCYN9APCP.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ZPYBCRBFCYN9APCP.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4037" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZPYBCRBFCYN9APCP.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ZPYBCRBFCYN9APCP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ZPYBCRBFCYN9APCP.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ZPYBCRBFCYN9APCP.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ZPYBCRBFCYN9APCP.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ZPYBCRBFCYN9APCP.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3561" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZPYBCRBFCYN9APCP.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ZPYBCRBFCYN9APCP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZPYBCRBFCYN9APCP.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ZPYBCRBFCYN9APCP.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2088" + }, + "appliesTo" : [ ] + }, + "ZPYBCRBFCYN9APCP.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ZPYBCRBFCYN9APCP.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZPYBCRBFCYN9APCP.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ZPYBCRBFCYN9APCP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZPYBCRBFCYN9APCP.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ZPYBCRBFCYN9APCP.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "U7343ZA6ABZUXFZ9" : { + "U7343ZA6ABZUXFZ9.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "U7343ZA6ABZUXFZ9", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "U7343ZA6ABZUXFZ9.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "U7343ZA6ABZUXFZ9.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "U7343ZA6ABZUXFZ9.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "U7343ZA6ABZUXFZ9", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "U7343ZA6ABZUXFZ9.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "U7343ZA6ABZUXFZ9.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4066" + }, + "appliesTo" : [ ] + }, + "U7343ZA6ABZUXFZ9.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "U7343ZA6ABZUXFZ9.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "U7343ZA6ABZUXFZ9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "U7343ZA6ABZUXFZ9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "U7343ZA6ABZUXFZ9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "U7343ZA6ABZUXFZ9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5195" + }, + "appliesTo" : [ ] + }, + "U7343ZA6ABZUXFZ9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "U7343ZA6ABZUXFZ9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "U7343ZA6ABZUXFZ9.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "U7343ZA6ABZUXFZ9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U7343ZA6ABZUXFZ9.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "U7343ZA6ABZUXFZ9.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3406" + }, + "appliesTo" : [ ] + }, + "U7343ZA6ABZUXFZ9.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "U7343ZA6ABZUXFZ9.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "U7343ZA6ABZUXFZ9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "U7343ZA6ABZUXFZ9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "U7343ZA6ABZUXFZ9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "U7343ZA6ABZUXFZ9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2767" + }, + "appliesTo" : [ ] + }, + "U7343ZA6ABZUXFZ9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "U7343ZA6ABZUXFZ9.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "U7343ZA6ABZUXFZ9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "U7343ZA6ABZUXFZ9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "U7343ZA6ABZUXFZ9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "U7343ZA6ABZUXFZ9.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "U7343ZA6ABZUXFZ9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "U7343ZA6ABZUXFZ9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2952" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "U7343ZA6ABZUXFZ9.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "U7343ZA6ABZUXFZ9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U7343ZA6ABZUXFZ9.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "U7343ZA6ABZUXFZ9.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "U7343ZA6ABZUXFZ9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "U7343ZA6ABZUXFZ9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "U7343ZA6ABZUXFZ9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "U7343ZA6ABZUXFZ9.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "U7343ZA6ABZUXFZ9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "U7343ZA6ABZUXFZ9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "U7343ZA6ABZUXFZ9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "U7343ZA6ABZUXFZ9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1720000000" + }, + "appliesTo" : [ ] + }, + "U7343ZA6ABZUXFZ9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "U7343ZA6ABZUXFZ9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1506" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "U7343ZA6ABZUXFZ9.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "U7343ZA6ABZUXFZ9", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "U7343ZA6ABZUXFZ9.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "U7343ZA6ABZUXFZ9.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "U7343ZA6ABZUXFZ9.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "U7343ZA6ABZUXFZ9.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7970" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "U7343ZA6ABZUXFZ9.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "U7343ZA6ABZUXFZ9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U7343ZA6ABZUXFZ9.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "U7343ZA6ABZUXFZ9.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1738" + }, + "appliesTo" : [ ] + }, + "U7343ZA6ABZUXFZ9.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "U7343ZA6ABZUXFZ9.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "V8J7UTRH4P2HW8YW" : { + "V8J7UTRH4P2HW8YW.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "V8J7UTRH4P2HW8YW", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "V8J7UTRH4P2HW8YW.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "V8J7UTRH4P2HW8YW.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3075" + }, + "appliesTo" : [ ] + }, + "V8J7UTRH4P2HW8YW.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "V8J7UTRH4P2HW8YW.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "V8J7UTRH4P2HW8YW.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "V8J7UTRH4P2HW8YW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "V8J7UTRH4P2HW8YW.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "V8J7UTRH4P2HW8YW.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9713" + }, + "appliesTo" : [ ] + }, + "V8J7UTRH4P2HW8YW.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "V8J7UTRH4P2HW8YW.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "V8J7UTRH4P2HW8YW.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "V8J7UTRH4P2HW8YW", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "V8J7UTRH4P2HW8YW.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "V8J7UTRH4P2HW8YW.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2180000000" + }, + "appliesTo" : [ ] + }, + "V8J7UTRH4P2HW8YW.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "V8J7UTRH4P2HW8YW.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4151" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "V8J7UTRH4P2HW8YW.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "V8J7UTRH4P2HW8YW", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "V8J7UTRH4P2HW8YW.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "V8J7UTRH4P2HW8YW.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "V8J7UTRH4P2HW8YW.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "V8J7UTRH4P2HW8YW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V8J7UTRH4P2HW8YW.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "V8J7UTRH4P2HW8YW.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "V8J7UTRH4P2HW8YW.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "V8J7UTRH4P2HW8YW.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4614" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "V8J7UTRH4P2HW8YW.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "V8J7UTRH4P2HW8YW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V8J7UTRH4P2HW8YW.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "V8J7UTRH4P2HW8YW.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "V8J7UTRH4P2HW8YW.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "V8J7UTRH4P2HW8YW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "V8J7UTRH4P2HW8YW.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "V8J7UTRH4P2HW8YW.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3819000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "V8J7UTRH4P2HW8YW.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "V8J7UTRH4P2HW8YW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V8J7UTRH4P2HW8YW.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "V8J7UTRH4P2HW8YW.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1773" + }, + "appliesTo" : [ ] + }, + "V8J7UTRH4P2HW8YW.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "V8J7UTRH4P2HW8YW.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3324000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "V8J7UTRH4P2HW8YW.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "V8J7UTRH4P2HW8YW", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "V8J7UTRH4P2HW8YW.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "V8J7UTRH4P2HW8YW.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3539" + }, + "appliesTo" : [ ] + }, + "V8J7UTRH4P2HW8YW.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "V8J7UTRH4P2HW8YW.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "V8J7UTRH4P2HW8YW.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "V8J7UTRH4P2HW8YW", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "V8J7UTRH4P2HW8YW.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "V8J7UTRH4P2HW8YW.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1537" + }, + "appliesTo" : [ ] + }, + "V8J7UTRH4P2HW8YW.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "V8J7UTRH4P2HW8YW.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "V8J7UTRH4P2HW8YW.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "V8J7UTRH4P2HW8YW", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "V8J7UTRH4P2HW8YW.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "V8J7UTRH4P2HW8YW.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7357" + }, + "appliesTo" : [ ] + }, + "V8J7UTRH4P2HW8YW.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "V8J7UTRH4P2HW8YW.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "V8J7UTRH4P2HW8YW.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "V8J7UTRH4P2HW8YW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "V8J7UTRH4P2HW8YW.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "V8J7UTRH4P2HW8YW.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4196000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "GCU5MTJSYT27M7JU" : { + "GCU5MTJSYT27M7JU.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "GCU5MTJSYT27M7JU", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GCU5MTJSYT27M7JU.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "GCU5MTJSYT27M7JU.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1163" + }, + "appliesTo" : [ ] + }, + "GCU5MTJSYT27M7JU.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "GCU5MTJSYT27M7JU.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GCU5MTJSYT27M7JU.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "GCU5MTJSYT27M7JU", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "GCU5MTJSYT27M7JU.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "GCU5MTJSYT27M7JU.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "GCU5MTJSYT27M7JU.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "GCU5MTJSYT27M7JU.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1938" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GCU5MTJSYT27M7JU.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "GCU5MTJSYT27M7JU", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GCU5MTJSYT27M7JU.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "GCU5MTJSYT27M7JU.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GCU5MTJSYT27M7JU.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "GCU5MTJSYT27M7JU", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GCU5MTJSYT27M7JU.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "GCU5MTJSYT27M7JU.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1853" + }, + "appliesTo" : [ ] + }, + "GCU5MTJSYT27M7JU.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "GCU5MTJSYT27M7JU.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GCU5MTJSYT27M7JU.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "GCU5MTJSYT27M7JU", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GCU5MTJSYT27M7JU.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "GCU5MTJSYT27M7JU.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "GCU5MTJSYT27M7JU.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "GCU5MTJSYT27M7JU.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3668" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "42VGMPF8Y5PJ76X3" : { + "42VGMPF8Y5PJ76X3.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "42VGMPF8Y5PJ76X3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "42VGMPF8Y5PJ76X3.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "42VGMPF8Y5PJ76X3.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "42VGMPF8Y5PJ76X3.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "42VGMPF8Y5PJ76X3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "42VGMPF8Y5PJ76X3.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "42VGMPF8Y5PJ76X3.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1128" + }, + "appliesTo" : [ ] + }, + "42VGMPF8Y5PJ76X3.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "42VGMPF8Y5PJ76X3.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "42VGMPF8Y5PJ76X3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "42VGMPF8Y5PJ76X3", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "42VGMPF8Y5PJ76X3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "42VGMPF8Y5PJ76X3.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "42VGMPF8Y5PJ76X3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "42VGMPF8Y5PJ76X3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "42VGMPF8Y5PJ76X3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "42VGMPF8Y5PJ76X3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1677" + }, + "appliesTo" : [ ] + }, + "42VGMPF8Y5PJ76X3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "42VGMPF8Y5PJ76X3.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "42VGMPF8Y5PJ76X3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "42VGMPF8Y5PJ76X3", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "42VGMPF8Y5PJ76X3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "42VGMPF8Y5PJ76X3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1749" + }, + "appliesTo" : [ ] + }, + "42VGMPF8Y5PJ76X3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "42VGMPF8Y5PJ76X3.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "42VGMPF8Y5PJ76X3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "42VGMPF8Y5PJ76X3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "42VGMPF8Y5PJ76X3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "42VGMPF8Y5PJ76X3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3948" + }, + "appliesTo" : [ ] + }, + "42VGMPF8Y5PJ76X3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "42VGMPF8Y5PJ76X3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "42VGMPF8Y5PJ76X3.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "42VGMPF8Y5PJ76X3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "42VGMPF8Y5PJ76X3.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "42VGMPF8Y5PJ76X3.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2239" + }, + "appliesTo" : [ ] + }, + "42VGMPF8Y5PJ76X3.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "42VGMPF8Y5PJ76X3.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "42VGMPF8Y5PJ76X3.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "42VGMPF8Y5PJ76X3", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "42VGMPF8Y5PJ76X3.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "42VGMPF8Y5PJ76X3.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1200000000" + }, + "appliesTo" : [ ] + }, + "42VGMPF8Y5PJ76X3.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "42VGMPF8Y5PJ76X3.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2028" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "42VGMPF8Y5PJ76X3.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "42VGMPF8Y5PJ76X3", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "42VGMPF8Y5PJ76X3.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "42VGMPF8Y5PJ76X3.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "42VGMPF8Y5PJ76X3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "42VGMPF8Y5PJ76X3", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "42VGMPF8Y5PJ76X3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "42VGMPF8Y5PJ76X3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "718" + }, + "appliesTo" : [ ] + }, + "42VGMPF8Y5PJ76X3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "42VGMPF8Y5PJ76X3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "42VGMPF8Y5PJ76X3.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "42VGMPF8Y5PJ76X3", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "42VGMPF8Y5PJ76X3.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "42VGMPF8Y5PJ76X3.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5033" + }, + "appliesTo" : [ ] + }, + "42VGMPF8Y5PJ76X3.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "42VGMPF8Y5PJ76X3.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "MB9M33K6AWVAZT8U" : { + "MB9M33K6AWVAZT8U.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "MB9M33K6AWVAZT8U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MB9M33K6AWVAZT8U.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "MB9M33K6AWVAZT8U.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "MB9M33K6AWVAZT8U.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "MB9M33K6AWVAZT8U.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14240" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MB9M33K6AWVAZT8U.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "MB9M33K6AWVAZT8U", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "MB9M33K6AWVAZT8U.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "MB9M33K6AWVAZT8U.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MB9M33K6AWVAZT8U.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "MB9M33K6AWVAZT8U", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "MB9M33K6AWVAZT8U.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "MB9M33K6AWVAZT8U.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7973" + }, + "appliesTo" : [ ] + }, + "MB9M33K6AWVAZT8U.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "MB9M33K6AWVAZT8U.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MB9M33K6AWVAZT8U.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "MB9M33K6AWVAZT8U", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "MB9M33K6AWVAZT8U.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "MB9M33K6AWVAZT8U.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "MB9M33K6AWVAZT8U.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "MB9M33K6AWVAZT8U.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34035" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MB9M33K6AWVAZT8U.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "MB9M33K6AWVAZT8U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MB9M33K6AWVAZT8U.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "MB9M33K6AWVAZT8U.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MB9M33K6AWVAZT8U.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "MB9M33K6AWVAZT8U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MB9M33K6AWVAZT8U.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "MB9M33K6AWVAZT8U.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7200" + }, + "appliesTo" : [ ] + }, + "MB9M33K6AWVAZT8U.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "MB9M33K6AWVAZT8U.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MB9M33K6AWVAZT8U.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "MB9M33K6AWVAZT8U", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "MB9M33K6AWVAZT8U.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "MB9M33K6AWVAZT8U.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MB9M33K6AWVAZT8U.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "MB9M33K6AWVAZT8U", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "MB9M33K6AWVAZT8U.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "MB9M33K6AWVAZT8U.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16478" + }, + "appliesTo" : [ ] + }, + "MB9M33K6AWVAZT8U.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "MB9M33K6AWVAZT8U.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MB9M33K6AWVAZT8U.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "MB9M33K6AWVAZT8U", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "MB9M33K6AWVAZT8U.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "MB9M33K6AWVAZT8U.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25814" + }, + "appliesTo" : [ ] + }, + "MB9M33K6AWVAZT8U.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "MB9M33K6AWVAZT8U.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MB9M33K6AWVAZT8U.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "MB9M33K6AWVAZT8U", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "MB9M33K6AWVAZT8U.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "MB9M33K6AWVAZT8U.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22562" + }, + "appliesTo" : [ ] + }, + "MB9M33K6AWVAZT8U.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "MB9M33K6AWVAZT8U.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MB9M33K6AWVAZT8U.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "MB9M33K6AWVAZT8U", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "MB9M33K6AWVAZT8U.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "MB9M33K6AWVAZT8U.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12025" + }, + "appliesTo" : [ ] + }, + "MB9M33K6AWVAZT8U.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "MB9M33K6AWVAZT8U.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "8QZCKNB62EDMDT63" : { + "8QZCKNB62EDMDT63.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "8QZCKNB62EDMDT63", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "8QZCKNB62EDMDT63.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "8QZCKNB62EDMDT63.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "52166" + }, + "appliesTo" : [ ] + }, + "8QZCKNB62EDMDT63.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "8QZCKNB62EDMDT63.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8QZCKNB62EDMDT63.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "8QZCKNB62EDMDT63", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8QZCKNB62EDMDT63.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "8QZCKNB62EDMDT63.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "59990" + }, + "appliesTo" : [ ] + }, + "8QZCKNB62EDMDT63.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "8QZCKNB62EDMDT63.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8QZCKNB62EDMDT63.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "8QZCKNB62EDMDT63", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8QZCKNB62EDMDT63.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "8QZCKNB62EDMDT63.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8QZCKNB62EDMDT63.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "8QZCKNB62EDMDT63", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8QZCKNB62EDMDT63.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "8QZCKNB62EDMDT63.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "8QZCKNB62EDMDT63.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "8QZCKNB62EDMDT63.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "98072" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8QZCKNB62EDMDT63.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "8QZCKNB62EDMDT63", + "effectiveDate" : "2016-05-31T23:59:59Z", + "priceDimensions" : { + "8QZCKNB62EDMDT63.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "8QZCKNB62EDMDT63.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "67199" + }, + "appliesTo" : [ ] + }, + "8QZCKNB62EDMDT63.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "8QZCKNB62EDMDT63.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8QZCKNB62EDMDT63.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "8QZCKNB62EDMDT63", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "8QZCKNB62EDMDT63.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "8QZCKNB62EDMDT63.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34285" + }, + "appliesTo" : [ ] + }, + "8QZCKNB62EDMDT63.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "8QZCKNB62EDMDT63.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8QZCKNB62EDMDT63.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "8QZCKNB62EDMDT63", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8QZCKNB62EDMDT63.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "8QZCKNB62EDMDT63.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.4520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8QZCKNB62EDMDT63.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "8QZCKNB62EDMDT63", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8QZCKNB62EDMDT63.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "8QZCKNB62EDMDT63.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "77281" + }, + "appliesTo" : [ ] + }, + "8QZCKNB62EDMDT63.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "8QZCKNB62EDMDT63.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8QZCKNB62EDMDT63.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "8QZCKNB62EDMDT63", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8QZCKNB62EDMDT63.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "8QZCKNB62EDMDT63.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5010000000" + }, + "appliesTo" : [ ] + }, + "8QZCKNB62EDMDT63.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "8QZCKNB62EDMDT63.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39429" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8QZCKNB62EDMDT63.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "8QZCKNB62EDMDT63", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8QZCKNB62EDMDT63.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "8QZCKNB62EDMDT63.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.2190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8QZCKNB62EDMDT63.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "8QZCKNB62EDMDT63", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8QZCKNB62EDMDT63.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "8QZCKNB62EDMDT63.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8QZCKNB62EDMDT63.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "8QZCKNB62EDMDT63", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8QZCKNB62EDMDT63.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "8QZCKNB62EDMDT63.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "8QZCKNB62EDMDT63.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "8QZCKNB62EDMDT63.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "117581" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "J4T9ZF4AJ2DXE7SA" : { + "J4T9ZF4AJ2DXE7SA.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "J4T9ZF4AJ2DXE7SA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "J4T9ZF4AJ2DXE7SA.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "J4T9ZF4AJ2DXE7SA.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "J4T9ZF4AJ2DXE7SA.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "J4T9ZF4AJ2DXE7SA.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10130" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "J4T9ZF4AJ2DXE7SA.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "J4T9ZF4AJ2DXE7SA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "J4T9ZF4AJ2DXE7SA.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "J4T9ZF4AJ2DXE7SA.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9936000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "J4T9ZF4AJ2DXE7SA.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "J4T9ZF4AJ2DXE7SA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "J4T9ZF4AJ2DXE7SA.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "J4T9ZF4AJ2DXE7SA.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "J4T9ZF4AJ2DXE7SA.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "J4T9ZF4AJ2DXE7SA.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23694" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "J4T9ZF4AJ2DXE7SA.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "J4T9ZF4AJ2DXE7SA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "J4T9ZF4AJ2DXE7SA.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "J4T9ZF4AJ2DXE7SA.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "J4T9ZF4AJ2DXE7SA.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "J4T9ZF4AJ2DXE7SA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J4T9ZF4AJ2DXE7SA.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "J4T9ZF4AJ2DXE7SA.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11650" + }, + "appliesTo" : [ ] + }, + "J4T9ZF4AJ2DXE7SA.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "J4T9ZF4AJ2DXE7SA.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "J4T9ZF4AJ2DXE7SA.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "J4T9ZF4AJ2DXE7SA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "J4T9ZF4AJ2DXE7SA.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "J4T9ZF4AJ2DXE7SA.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5900000000" + }, + "appliesTo" : [ ] + }, + "J4T9ZF4AJ2DXE7SA.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "J4T9ZF4AJ2DXE7SA.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5168" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "J4T9ZF4AJ2DXE7SA.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "J4T9ZF4AJ2DXE7SA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "J4T9ZF4AJ2DXE7SA.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "J4T9ZF4AJ2DXE7SA.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "J4T9ZF4AJ2DXE7SA.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "J4T9ZF4AJ2DXE7SA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J4T9ZF4AJ2DXE7SA.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "J4T9ZF4AJ2DXE7SA.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5944" + }, + "appliesTo" : [ ] + }, + "J4T9ZF4AJ2DXE7SA.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "J4T9ZF4AJ2DXE7SA.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6785000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "J4T9ZF4AJ2DXE7SA.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "J4T9ZF4AJ2DXE7SA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J4T9ZF4AJ2DXE7SA.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "J4T9ZF4AJ2DXE7SA.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4249000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "J4T9ZF4AJ2DXE7SA.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "J4T9ZF4AJ2DXE7SA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "J4T9ZF4AJ2DXE7SA.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "J4T9ZF4AJ2DXE7SA.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19763" + }, + "appliesTo" : [ ] + }, + "J4T9ZF4AJ2DXE7SA.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "J4T9ZF4AJ2DXE7SA.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "J4T9ZF4AJ2DXE7SA.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "J4T9ZF4AJ2DXE7SA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "J4T9ZF4AJ2DXE7SA.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "J4T9ZF4AJ2DXE7SA.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12089" + }, + "appliesTo" : [ ] + }, + "J4T9ZF4AJ2DXE7SA.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "J4T9ZF4AJ2DXE7SA.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "J4T9ZF4AJ2DXE7SA.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "J4T9ZF4AJ2DXE7SA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "J4T9ZF4AJ2DXE7SA.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "J4T9ZF4AJ2DXE7SA.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10512" + }, + "appliesTo" : [ ] + }, + "J4T9ZF4AJ2DXE7SA.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "J4T9ZF4AJ2DXE7SA.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "63U4EHGD76K6MYA6" : { + "63U4EHGD76K6MYA6.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "63U4EHGD76K6MYA6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "63U4EHGD76K6MYA6.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "63U4EHGD76K6MYA6.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4070000000" + }, + "appliesTo" : [ ] + }, + "63U4EHGD76K6MYA6.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "63U4EHGD76K6MYA6.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3567" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "63U4EHGD76K6MYA6.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "63U4EHGD76K6MYA6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "63U4EHGD76K6MYA6.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "63U4EHGD76K6MYA6.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "63U4EHGD76K6MYA6.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "63U4EHGD76K6MYA6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "63U4EHGD76K6MYA6.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "63U4EHGD76K6MYA6.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "63U4EHGD76K6MYA6.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "63U4EHGD76K6MYA6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "63U4EHGD76K6MYA6.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "63U4EHGD76K6MYA6.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7036" + }, + "appliesTo" : [ ] + }, + "63U4EHGD76K6MYA6.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "63U4EHGD76K6MYA6.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "63U4EHGD76K6MYA6.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "63U4EHGD76K6MYA6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "63U4EHGD76K6MYA6.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "63U4EHGD76K6MYA6.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "63U4EHGD76K6MYA6.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "63U4EHGD76K6MYA6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "63U4EHGD76K6MYA6.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "63U4EHGD76K6MYA6.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13964" + }, + "appliesTo" : [ ] + }, + "63U4EHGD76K6MYA6.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "63U4EHGD76K6MYA6.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "63U4EHGD76K6MYA6.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "63U4EHGD76K6MYA6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "63U4EHGD76K6MYA6.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "63U4EHGD76K6MYA6.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "63U4EHGD76K6MYA6.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "63U4EHGD76K6MYA6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "63U4EHGD76K6MYA6.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "63U4EHGD76K6MYA6.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3246" + }, + "appliesTo" : [ ] + }, + "63U4EHGD76K6MYA6.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "63U4EHGD76K6MYA6.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "63U4EHGD76K6MYA6.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "63U4EHGD76K6MYA6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "63U4EHGD76K6MYA6.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "63U4EHGD76K6MYA6.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6406" + }, + "appliesTo" : [ ] + }, + "63U4EHGD76K6MYA6.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "63U4EHGD76K6MYA6.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "63U4EHGD76K6MYA6.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "63U4EHGD76K6MYA6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "63U4EHGD76K6MYA6.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "63U4EHGD76K6MYA6.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "63U4EHGD76K6MYA6.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "63U4EHGD76K6MYA6.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12744" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "63U4EHGD76K6MYA6.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "63U4EHGD76K6MYA6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "63U4EHGD76K6MYA6.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "63U4EHGD76K6MYA6.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7057" + }, + "appliesTo" : [ ] + }, + "63U4EHGD76K6MYA6.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "63U4EHGD76K6MYA6.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "63U4EHGD76K6MYA6.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "63U4EHGD76K6MYA6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "63U4EHGD76K6MYA6.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "63U4EHGD76K6MYA6.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2500000000" + }, + "appliesTo" : [ ] + }, + "63U4EHGD76K6MYA6.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "63U4EHGD76K6MYA6.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6568" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "K8NM7HNBAX7T4N5U" : { + "K8NM7HNBAX7T4N5U.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "K8NM7HNBAX7T4N5U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K8NM7HNBAX7T4N5U.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "K8NM7HNBAX7T4N5U.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "K8NM7HNBAX7T4N5U.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "K8NM7HNBAX7T4N5U.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9768" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "K8NM7HNBAX7T4N5U.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "K8NM7HNBAX7T4N5U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K8NM7HNBAX7T4N5U.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "K8NM7HNBAX7T4N5U.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10265" + }, + "appliesTo" : [ ] + }, + "K8NM7HNBAX7T4N5U.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "K8NM7HNBAX7T4N5U.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "K8NM7HNBAX7T4N5U.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "K8NM7HNBAX7T4N5U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K8NM7HNBAX7T4N5U.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "K8NM7HNBAX7T4N5U.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4407" + }, + "appliesTo" : [ ] + }, + "K8NM7HNBAX7T4N5U.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "K8NM7HNBAX7T4N5U.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "K8NM7HNBAX7T4N5U.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "K8NM7HNBAX7T4N5U", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "K8NM7HNBAX7T4N5U.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "K8NM7HNBAX7T4N5U.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9038" + }, + "appliesTo" : [ ] + }, + "K8NM7HNBAX7T4N5U.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "K8NM7HNBAX7T4N5U.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "K8NM7HNBAX7T4N5U.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "K8NM7HNBAX7T4N5U", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "K8NM7HNBAX7T4N5U.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "K8NM7HNBAX7T4N5U.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17023" + }, + "appliesTo" : [ ] + }, + "K8NM7HNBAX7T4N5U.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "K8NM7HNBAX7T4N5U.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "K8NM7HNBAX7T4N5U.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "K8NM7HNBAX7T4N5U", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "K8NM7HNBAX7T4N5U.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "K8NM7HNBAX7T4N5U.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8583" + }, + "appliesTo" : [ ] + }, + "K8NM7HNBAX7T4N5U.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "K8NM7HNBAX7T4N5U.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "K8NM7HNBAX7T4N5U.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "K8NM7HNBAX7T4N5U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K8NM7HNBAX7T4N5U.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "K8NM7HNBAX7T4N5U.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "K8NM7HNBAX7T4N5U.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "K8NM7HNBAX7T4N5U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K8NM7HNBAX7T4N5U.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "K8NM7HNBAX7T4N5U.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5012" + }, + "appliesTo" : [ ] + }, + "K8NM7HNBAX7T4N5U.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "K8NM7HNBAX7T4N5U.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "K8NM7HNBAX7T4N5U.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "K8NM7HNBAX7T4N5U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K8NM7HNBAX7T4N5U.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "K8NM7HNBAX7T4N5U.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "K8NM7HNBAX7T4N5U.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "K8NM7HNBAX7T4N5U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K8NM7HNBAX7T4N5U.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "K8NM7HNBAX7T4N5U.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "K8NM7HNBAX7T4N5U.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "K8NM7HNBAX7T4N5U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K8NM7HNBAX7T4N5U.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "K8NM7HNBAX7T4N5U.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20123" + }, + "appliesTo" : [ ] + }, + "K8NM7HNBAX7T4N5U.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "K8NM7HNBAX7T4N5U.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "K8NM7HNBAX7T4N5U.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "K8NM7HNBAX7T4N5U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K8NM7HNBAX7T4N5U.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "K8NM7HNBAX7T4N5U.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "V7SRDNUCBKDMKD3M" : { + "V7SRDNUCBKDMKD3M.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "V7SRDNUCBKDMKD3M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V7SRDNUCBKDMKD3M.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "V7SRDNUCBKDMKD3M.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7880" + }, + "appliesTo" : [ ] + }, + "V7SRDNUCBKDMKD3M.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "V7SRDNUCBKDMKD3M.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "V7SRDNUCBKDMKD3M.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "V7SRDNUCBKDMKD3M", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "V7SRDNUCBKDMKD3M.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "V7SRDNUCBKDMKD3M.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "V7SRDNUCBKDMKD3M.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "V7SRDNUCBKDMKD3M", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "V7SRDNUCBKDMKD3M.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "V7SRDNUCBKDMKD3M.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "V7SRDNUCBKDMKD3M.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "V7SRDNUCBKDMKD3M.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12214" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "V7SRDNUCBKDMKD3M.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "V7SRDNUCBKDMKD3M", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "V7SRDNUCBKDMKD3M.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "V7SRDNUCBKDMKD3M.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6860" + }, + "appliesTo" : [ ] + }, + "V7SRDNUCBKDMKD3M.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "V7SRDNUCBKDMKD3M.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "V7SRDNUCBKDMKD3M.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "V7SRDNUCBKDMKD3M", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "V7SRDNUCBKDMKD3M.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "V7SRDNUCBKDMKD3M.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18522" + }, + "appliesTo" : [ ] + }, + "V7SRDNUCBKDMKD3M.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "V7SRDNUCBKDMKD3M.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "V7SRDNUCBKDMKD3M.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "V7SRDNUCBKDMKD3M", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "V7SRDNUCBKDMKD3M.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "V7SRDNUCBKDMKD3M.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4004" + }, + "appliesTo" : [ ] + }, + "V7SRDNUCBKDMKD3M.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "V7SRDNUCBKDMKD3M.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "V7SRDNUCBKDMKD3M.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "V7SRDNUCBKDMKD3M", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "V7SRDNUCBKDMKD3M.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "V7SRDNUCBKDMKD3M.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "V7SRDNUCBKDMKD3M.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "V7SRDNUCBKDMKD3M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V7SRDNUCBKDMKD3M.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "V7SRDNUCBKDMKD3M.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4020" + }, + "appliesTo" : [ ] + }, + "V7SRDNUCBKDMKD3M.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "V7SRDNUCBKDMKD3M.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "V7SRDNUCBKDMKD3M.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "V7SRDNUCBKDMKD3M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V7SRDNUCBKDMKD3M.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "V7SRDNUCBKDMKD3M.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "V7SRDNUCBKDMKD3M.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "V7SRDNUCBKDMKD3M", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "V7SRDNUCBKDMKD3M.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "V7SRDNUCBKDMKD3M.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2650000000" + }, + "appliesTo" : [ ] + }, + "V7SRDNUCBKDMKD3M.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "V7SRDNUCBKDMKD3M.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6028" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "V7SRDNUCBKDMKD3M.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "V7SRDNUCBKDMKD3M", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "V7SRDNUCBKDMKD3M.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "V7SRDNUCBKDMKD3M.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10811" + }, + "appliesTo" : [ ] + }, + "V7SRDNUCBKDMKD3M.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "V7SRDNUCBKDMKD3M.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "2VHPXRTYGECESS2J" : { + "2VHPXRTYGECESS2J.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "2VHPXRTYGECESS2J", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2VHPXRTYGECESS2J.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "2VHPXRTYGECESS2J.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1954" + }, + "appliesTo" : [ ] + }, + "2VHPXRTYGECESS2J.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "2VHPXRTYGECESS2J.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0739000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2VHPXRTYGECESS2J.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "2VHPXRTYGECESS2J", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2VHPXRTYGECESS2J.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "2VHPXRTYGECESS2J.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1647000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2VHPXRTYGECESS2J.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "2VHPXRTYGECESS2J", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "2VHPXRTYGECESS2J.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "2VHPXRTYGECESS2J.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0660000000" + }, + "appliesTo" : [ ] + }, + "2VHPXRTYGECESS2J.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "2VHPXRTYGECESS2J.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1750" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2VHPXRTYGECESS2J.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "2VHPXRTYGECESS2J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2VHPXRTYGECESS2J.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "2VHPXRTYGECESS2J.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1870" + }, + "appliesTo" : [ ] + }, + "2VHPXRTYGECESS2J.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "2VHPXRTYGECESS2J.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2VHPXRTYGECESS2J.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "2VHPXRTYGECESS2J", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2VHPXRTYGECESS2J.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "2VHPXRTYGECESS2J.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3833" + }, + "appliesTo" : [ ] + }, + "2VHPXRTYGECESS2J.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "2VHPXRTYGECESS2J.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2VHPXRTYGECESS2J.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "2VHPXRTYGECESS2J", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "2VHPXRTYGECESS2J.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "2VHPXRTYGECESS2J.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "2VHPXRTYGECESS2J.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "2VHPXRTYGECESS2J.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3322" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2VHPXRTYGECESS2J.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "2VHPXRTYGECESS2J", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2VHPXRTYGECESS2J.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "2VHPXRTYGECESS2J.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1475000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2VHPXRTYGECESS2J.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "2VHPXRTYGECESS2J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2VHPXRTYGECESS2J.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "2VHPXRTYGECESS2J.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1050000000" + }, + "appliesTo" : [ ] + }, + "2VHPXRTYGECESS2J.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "2VHPXRTYGECESS2J.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "982" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2VHPXRTYGECESS2J.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "2VHPXRTYGECESS2J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2VHPXRTYGECESS2J.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "2VHPXRTYGECESS2J.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2262000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2VHPXRTYGECESS2J.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "2VHPXRTYGECESS2J", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "2VHPXRTYGECESS2J.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "2VHPXRTYGECESS2J.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1660" + }, + "appliesTo" : [ ] + }, + "2VHPXRTYGECESS2J.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "2VHPXRTYGECESS2J.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2VHPXRTYGECESS2J.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "2VHPXRTYGECESS2J", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2VHPXRTYGECESS2J.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "2VHPXRTYGECESS2J.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "875" + }, + "appliesTo" : [ ] + }, + "2VHPXRTYGECESS2J.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "2VHPXRTYGECESS2J.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2VHPXRTYGECESS2J.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "2VHPXRTYGECESS2J", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2VHPXRTYGECESS2J.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "2VHPXRTYGECESS2J.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "P47VRQMUV2K4MN5Z" : { + "P47VRQMUV2K4MN5Z.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "P47VRQMUV2K4MN5Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P47VRQMUV2K4MN5Z.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "P47VRQMUV2K4MN5Z.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2832" + }, + "appliesTo" : [ ] + }, + "P47VRQMUV2K4MN5Z.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "P47VRQMUV2K4MN5Z.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3233000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "P47VRQMUV2K4MN5Z.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "P47VRQMUV2K4MN5Z", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "P47VRQMUV2K4MN5Z.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "P47VRQMUV2K4MN5Z.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6401000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "P47VRQMUV2K4MN5Z.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "P47VRQMUV2K4MN5Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P47VRQMUV2K4MN5Z.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "P47VRQMUV2K4MN5Z.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6504000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "P47VRQMUV2K4MN5Z.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "P47VRQMUV2K4MN5Z", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "P47VRQMUV2K4MN5Z.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "P47VRQMUV2K4MN5Z.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3113000000" + }, + "appliesTo" : [ ] + }, + "P47VRQMUV2K4MN5Z.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "P47VRQMUV2K4MN5Z.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8181" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "P47VRQMUV2K4MN5Z.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "P47VRQMUV2K4MN5Z", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "P47VRQMUV2K4MN5Z.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "P47VRQMUV2K4MN5Z.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3080000000" + }, + "appliesTo" : [ ] + }, + "P47VRQMUV2K4MN5Z.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "P47VRQMUV2K4MN5Z.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8094" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "P47VRQMUV2K4MN5Z.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "P47VRQMUV2K4MN5Z", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "P47VRQMUV2K4MN5Z.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "P47VRQMUV2K4MN5Z.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2790" + }, + "appliesTo" : [ ] + }, + "P47VRQMUV2K4MN5Z.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "P47VRQMUV2K4MN5Z.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3185000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "P47VRQMUV2K4MN5Z.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "P47VRQMUV2K4MN5Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P47VRQMUV2K4MN5Z.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "P47VRQMUV2K4MN5Z.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "P47VRQMUV2K4MN5Z.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "P47VRQMUV2K4MN5Z.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5651" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "P47VRQMUV2K4MN5Z.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "P47VRQMUV2K4MN5Z", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "P47VRQMUV2K4MN5Z.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "P47VRQMUV2K4MN5Z.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6266000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "P47VRQMUV2K4MN5Z.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "P47VRQMUV2K4MN5Z", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "P47VRQMUV2K4MN5Z.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "P47VRQMUV2K4MN5Z.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5568" + }, + "appliesTo" : [ ] + }, + "P47VRQMUV2K4MN5Z.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "P47VRQMUV2K4MN5Z.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "P47VRQMUV2K4MN5Z.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "P47VRQMUV2K4MN5Z", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "P47VRQMUV2K4MN5Z.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "P47VRQMUV2K4MN5Z.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16119" + }, + "appliesTo" : [ ] + }, + "P47VRQMUV2K4MN5Z.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "P47VRQMUV2K4MN5Z.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "P47VRQMUV2K4MN5Z.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "P47VRQMUV2K4MN5Z", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "P47VRQMUV2K4MN5Z.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "P47VRQMUV2K4MN5Z.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6195000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "P47VRQMUV2K4MN5Z.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "P47VRQMUV2K4MN5Z", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "P47VRQMUV2K4MN5Z.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "P47VRQMUV2K4MN5Z.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16335" + }, + "appliesTo" : [ ] + }, + "P47VRQMUV2K4MN5Z.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "P47VRQMUV2K4MN5Z.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "X4DNEZ99CC6GXAKU" : { + "X4DNEZ99CC6GXAKU.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "X4DNEZ99CC6GXAKU", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "X4DNEZ99CC6GXAKU.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "X4DNEZ99CC6GXAKU.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1699" + }, + "appliesTo" : [ ] + }, + "X4DNEZ99CC6GXAKU.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "X4DNEZ99CC6GXAKU.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "X4DNEZ99CC6GXAKU.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "X4DNEZ99CC6GXAKU", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "X4DNEZ99CC6GXAKU.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "X4DNEZ99CC6GXAKU.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "X4DNEZ99CC6GXAKU.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "X4DNEZ99CC6GXAKU.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3371" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "X4DNEZ99CC6GXAKU.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "X4DNEZ99CC6GXAKU", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "X4DNEZ99CC6GXAKU.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "X4DNEZ99CC6GXAKU.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2159" + }, + "appliesTo" : [ ] + }, + "X4DNEZ99CC6GXAKU.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "X4DNEZ99CC6GXAKU.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "X4DNEZ99CC6GXAKU.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "X4DNEZ99CC6GXAKU", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "X4DNEZ99CC6GXAKU.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "X4DNEZ99CC6GXAKU.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3054" + }, + "appliesTo" : [ ] + }, + "X4DNEZ99CC6GXAKU.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "X4DNEZ99CC6GXAKU.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "X4DNEZ99CC6GXAKU.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "X4DNEZ99CC6GXAKU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X4DNEZ99CC6GXAKU.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "X4DNEZ99CC6GXAKU.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1130000000" + }, + "appliesTo" : [ ] + }, + "X4DNEZ99CC6GXAKU.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "X4DNEZ99CC6GXAKU.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "994" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "X4DNEZ99CC6GXAKU.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "X4DNEZ99CC6GXAKU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X4DNEZ99CC6GXAKU.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "X4DNEZ99CC6GXAKU.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "X4DNEZ99CC6GXAKU.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "X4DNEZ99CC6GXAKU", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "X4DNEZ99CC6GXAKU.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "X4DNEZ99CC6GXAKU.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "X4DNEZ99CC6GXAKU.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "X4DNEZ99CC6GXAKU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X4DNEZ99CC6GXAKU.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "X4DNEZ99CC6GXAKU.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "X4DNEZ99CC6GXAKU.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "X4DNEZ99CC6GXAKU.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1948" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "X4DNEZ99CC6GXAKU.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "X4DNEZ99CC6GXAKU", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "X4DNEZ99CC6GXAKU.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "X4DNEZ99CC6GXAKU.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4587" + }, + "appliesTo" : [ ] + }, + "X4DNEZ99CC6GXAKU.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "X4DNEZ99CC6GXAKU.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "X4DNEZ99CC6GXAKU.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "X4DNEZ99CC6GXAKU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "X4DNEZ99CC6GXAKU.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "X4DNEZ99CC6GXAKU.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "X4DNEZ99CC6GXAKU.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "X4DNEZ99CC6GXAKU", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "X4DNEZ99CC6GXAKU.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "X4DNEZ99CC6GXAKU.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1131" + }, + "appliesTo" : [ ] + }, + "X4DNEZ99CC6GXAKU.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "X4DNEZ99CC6GXAKU.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "NZFDNPR89WKZ6C5N" : { + "NZFDNPR89WKZ6C5N.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "NZFDNPR89WKZ6C5N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NZFDNPR89WKZ6C5N.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "NZFDNPR89WKZ6C5N.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "NZFDNPR89WKZ6C5N.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "NZFDNPR89WKZ6C5N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NZFDNPR89WKZ6C5N.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "NZFDNPR89WKZ6C5N.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1385" + }, + "appliesTo" : [ ] + }, + "NZFDNPR89WKZ6C5N.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "NZFDNPR89WKZ6C5N.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "NZFDNPR89WKZ6C5N.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "NZFDNPR89WKZ6C5N", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "NZFDNPR89WKZ6C5N.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "NZFDNPR89WKZ6C5N.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2368" + }, + "appliesTo" : [ ] + }, + "NZFDNPR89WKZ6C5N.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "NZFDNPR89WKZ6C5N.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "NZFDNPR89WKZ6C5N.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "NZFDNPR89WKZ6C5N", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "NZFDNPR89WKZ6C5N.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "NZFDNPR89WKZ6C5N.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2520" + }, + "appliesTo" : [ ] + }, + "NZFDNPR89WKZ6C5N.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "NZFDNPR89WKZ6C5N.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "NZFDNPR89WKZ6C5N.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "NZFDNPR89WKZ6C5N", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "NZFDNPR89WKZ6C5N.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "NZFDNPR89WKZ6C5N.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2830" + }, + "appliesTo" : [ ] + }, + "NZFDNPR89WKZ6C5N.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "NZFDNPR89WKZ6C5N.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "NZFDNPR89WKZ6C5N.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "NZFDNPR89WKZ6C5N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NZFDNPR89WKZ6C5N.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "NZFDNPR89WKZ6C5N.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "NZFDNPR89WKZ6C5N.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "NZFDNPR89WKZ6C5N.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2659" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "NZFDNPR89WKZ6C5N.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "NZFDNPR89WKZ6C5N", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "NZFDNPR89WKZ6C5N.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "NZFDNPR89WKZ6C5N.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "NZFDNPR89WKZ6C5N.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "NZFDNPR89WKZ6C5N", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "NZFDNPR89WKZ6C5N.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "NZFDNPR89WKZ6C5N.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4770" + }, + "appliesTo" : [ ] + }, + "NZFDNPR89WKZ6C5N.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "NZFDNPR89WKZ6C5N.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "NZFDNPR89WKZ6C5N.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "NZFDNPR89WKZ6C5N", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "NZFDNPR89WKZ6C5N.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "NZFDNPR89WKZ6C5N.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "NZFDNPR89WKZ6C5N.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "NZFDNPR89WKZ6C5N", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "NZFDNPR89WKZ6C5N.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "NZFDNPR89WKZ6C5N.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5551" + }, + "appliesTo" : [ ] + }, + "NZFDNPR89WKZ6C5N.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "NZFDNPR89WKZ6C5N.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "NZFDNPR89WKZ6C5N.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "NZFDNPR89WKZ6C5N", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "NZFDNPR89WKZ6C5N.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "NZFDNPR89WKZ6C5N.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "NZFDNPR89WKZ6C5N.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "NZFDNPR89WKZ6C5N", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "NZFDNPR89WKZ6C5N.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "NZFDNPR89WKZ6C5N.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1236" + }, + "appliesTo" : [ ] + }, + "NZFDNPR89WKZ6C5N.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "NZFDNPR89WKZ6C5N.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "K9GNYJBAEBJGBE3S" : { + "K9GNYJBAEBJGBE3S.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "K9GNYJBAEBJGBE3S", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "K9GNYJBAEBJGBE3S.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "K9GNYJBAEBJGBE3S.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "847" + }, + "appliesTo" : [ ] + }, + "K9GNYJBAEBJGBE3S.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "K9GNYJBAEBJGBE3S.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "K9GNYJBAEBJGBE3S.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "K9GNYJBAEBJGBE3S", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "K9GNYJBAEBJGBE3S.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "K9GNYJBAEBJGBE3S.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1676" + }, + "appliesTo" : [ ] + }, + "K9GNYJBAEBJGBE3S.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "K9GNYJBAEBJGBE3S.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "K9GNYJBAEBJGBE3S.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "K9GNYJBAEBJGBE3S", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K9GNYJBAEBJGBE3S.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "K9GNYJBAEBJGBE3S.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "K9GNYJBAEBJGBE3S.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "K9GNYJBAEBJGBE3S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K9GNYJBAEBJGBE3S.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "K9GNYJBAEBJGBE3S.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1813" + }, + "appliesTo" : [ ] + }, + "K9GNYJBAEBJGBE3S.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "K9GNYJBAEBJGBE3S.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "K9GNYJBAEBJGBE3S.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "K9GNYJBAEBJGBE3S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K9GNYJBAEBJGBE3S.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "K9GNYJBAEBJGBE3S.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "K9GNYJBAEBJGBE3S.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "K9GNYJBAEBJGBE3S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K9GNYJBAEBJGBE3S.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "K9GNYJBAEBJGBE3S.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "917" + }, + "appliesTo" : [ ] + }, + "K9GNYJBAEBJGBE3S.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "K9GNYJBAEBJGBE3S.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "K9GNYJBAEBJGBE3S.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "K9GNYJBAEBJGBE3S", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K9GNYJBAEBJGBE3S.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "K9GNYJBAEBJGBE3S.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4491" + }, + "appliesTo" : [ ] + }, + "K9GNYJBAEBJGBE3S.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "K9GNYJBAEBJGBE3S.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "K9GNYJBAEBJGBE3S.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "K9GNYJBAEBJGBE3S", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "K9GNYJBAEBJGBE3S.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "K9GNYJBAEBJGBE3S.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0810000000" + }, + "appliesTo" : [ ] + }, + "K9GNYJBAEBJGBE3S.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "K9GNYJBAEBJGBE3S.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2131" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "K9GNYJBAEBJGBE3S.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "K9GNYJBAEBJGBE3S", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K9GNYJBAEBJGBE3S.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "K9GNYJBAEBJGBE3S.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "K9GNYJBAEBJGBE3S.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "K9GNYJBAEBJGBE3S", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K9GNYJBAEBJGBE3S.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "K9GNYJBAEBJGBE3S.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "K9GNYJBAEBJGBE3S.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "K9GNYJBAEBJGBE3S", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K9GNYJBAEBJGBE3S.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "K9GNYJBAEBJGBE3S.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2267" + }, + "appliesTo" : [ ] + }, + "K9GNYJBAEBJGBE3S.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "K9GNYJBAEBJGBE3S.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "K9GNYJBAEBJGBE3S.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "K9GNYJBAEBJGBE3S", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "K9GNYJBAEBJGBE3S.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "K9GNYJBAEBJGBE3S.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4152" + }, + "appliesTo" : [ ] + }, + "K9GNYJBAEBJGBE3S.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "K9GNYJBAEBJGBE3S.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "6GASB9Z3J6ZHWKU5" : { + "6GASB9Z3J6ZHWKU5.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6GASB9Z3J6ZHWKU5", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "6GASB9Z3J6ZHWKU5.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6GASB9Z3J6ZHWKU5.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6GASB9Z3J6ZHWKU5.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6GASB9Z3J6ZHWKU5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6GASB9Z3J6ZHWKU5.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6GASB9Z3J6ZHWKU5.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7220" + }, + "appliesTo" : [ ] + }, + "6GASB9Z3J6ZHWKU5.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6GASB9Z3J6ZHWKU5.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6GASB9Z3J6ZHWKU5.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6GASB9Z3J6ZHWKU5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6GASB9Z3J6ZHWKU5.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6GASB9Z3J6ZHWKU5.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10880" + }, + "appliesTo" : [ ] + }, + "6GASB9Z3J6ZHWKU5.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6GASB9Z3J6ZHWKU5.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6GASB9Z3J6ZHWKU5.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6GASB9Z3J6ZHWKU5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6GASB9Z3J6ZHWKU5.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6GASB9Z3J6ZHWKU5.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15240" + }, + "appliesTo" : [ ] + }, + "6GASB9Z3J6ZHWKU5.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6GASB9Z3J6ZHWKU5.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6GASB9Z3J6ZHWKU5.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6GASB9Z3J6ZHWKU5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6GASB9Z3J6ZHWKU5.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6GASB9Z3J6ZHWKU5.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30509" + }, + "appliesTo" : [ ] + }, + "6GASB9Z3J6ZHWKU5.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6GASB9Z3J6ZHWKU5.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "32R9UMHRGUNFK9EM" : { + "32R9UMHRGUNFK9EM.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "32R9UMHRGUNFK9EM", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "32R9UMHRGUNFK9EM.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "32R9UMHRGUNFK9EM.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4866" + }, + "appliesTo" : [ ] + }, + "32R9UMHRGUNFK9EM.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "32R9UMHRGUNFK9EM.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "32R9UMHRGUNFK9EM.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "32R9UMHRGUNFK9EM", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "32R9UMHRGUNFK9EM.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "32R9UMHRGUNFK9EM.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "32R9UMHRGUNFK9EM.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "32R9UMHRGUNFK9EM.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3759" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "32R9UMHRGUNFK9EM.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "32R9UMHRGUNFK9EM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "32R9UMHRGUNFK9EM.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "32R9UMHRGUNFK9EM.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2061" + }, + "appliesTo" : [ ] + }, + "32R9UMHRGUNFK9EM.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "32R9UMHRGUNFK9EM.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "32R9UMHRGUNFK9EM.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "32R9UMHRGUNFK9EM", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "32R9UMHRGUNFK9EM.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "32R9UMHRGUNFK9EM.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0700000000" + }, + "appliesTo" : [ ] + }, + "32R9UMHRGUNFK9EM.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "32R9UMHRGUNFK9EM.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3128" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "32R9UMHRGUNFK9EM.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "32R9UMHRGUNFK9EM", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "32R9UMHRGUNFK9EM.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "32R9UMHRGUNFK9EM.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2315" + }, + "appliesTo" : [ ] + }, + "32R9UMHRGUNFK9EM.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "32R9UMHRGUNFK9EM.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "32R9UMHRGUNFK9EM.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "32R9UMHRGUNFK9EM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "32R9UMHRGUNFK9EM.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "32R9UMHRGUNFK9EM.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1160000000" + }, + "appliesTo" : [ ] + }, + "32R9UMHRGUNFK9EM.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "32R9UMHRGUNFK9EM.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1080" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "32R9UMHRGUNFK9EM.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "32R9UMHRGUNFK9EM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "32R9UMHRGUNFK9EM.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "32R9UMHRGUNFK9EM.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "32R9UMHRGUNFK9EM.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "32R9UMHRGUNFK9EM", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "32R9UMHRGUNFK9EM.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "32R9UMHRGUNFK9EM.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1835" + }, + "appliesTo" : [ ] + }, + "32R9UMHRGUNFK9EM.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "32R9UMHRGUNFK9EM.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "32R9UMHRGUNFK9EM.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "32R9UMHRGUNFK9EM", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "32R9UMHRGUNFK9EM.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "32R9UMHRGUNFK9EM.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1204" + }, + "appliesTo" : [ ] + }, + "32R9UMHRGUNFK9EM.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "32R9UMHRGUNFK9EM.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "32R9UMHRGUNFK9EM.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "32R9UMHRGUNFK9EM", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "32R9UMHRGUNFK9EM.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "32R9UMHRGUNFK9EM.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "32R9UMHRGUNFK9EM.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "32R9UMHRGUNFK9EM", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "32R9UMHRGUNFK9EM.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "32R9UMHRGUNFK9EM.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "XHB4DJDY65SW2BN6" : { + "XHB4DJDY65SW2BN6.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XHB4DJDY65SW2BN6", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XHB4DJDY65SW2BN6.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XHB4DJDY65SW2BN6.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "739" + }, + "appliesTo" : [ ] + }, + "XHB4DJDY65SW2BN6.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XHB4DJDY65SW2BN6.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XHB4DJDY65SW2BN6.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XHB4DJDY65SW2BN6", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XHB4DJDY65SW2BN6.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XHB4DJDY65SW2BN6.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3041" + }, + "appliesTo" : [ ] + }, + "XHB4DJDY65SW2BN6.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XHB4DJDY65SW2BN6.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XHB4DJDY65SW2BN6.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XHB4DJDY65SW2BN6", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XHB4DJDY65SW2BN6.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XHB4DJDY65SW2BN6.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XHB4DJDY65SW2BN6.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XHB4DJDY65SW2BN6", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XHB4DJDY65SW2BN6.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XHB4DJDY65SW2BN6.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "472" + }, + "appliesTo" : [ ] + }, + "XHB4DJDY65SW2BN6.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XHB4DJDY65SW2BN6.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XHB4DJDY65SW2BN6.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XHB4DJDY65SW2BN6", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XHB4DJDY65SW2BN6.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XHB4DJDY65SW2BN6.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1312" + }, + "appliesTo" : [ ] + }, + "XHB4DJDY65SW2BN6.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XHB4DJDY65SW2BN6.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "NEMESC9E58GMS89T" : { + "NEMESC9E58GMS89T.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "NEMESC9E58GMS89T", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "NEMESC9E58GMS89T.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "NEMESC9E58GMS89T.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "NEMESC9E58GMS89T.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "NEMESC9E58GMS89T.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4698" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "NEMESC9E58GMS89T.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "NEMESC9E58GMS89T", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "NEMESC9E58GMS89T.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "NEMESC9E58GMS89T.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "NEMESC9E58GMS89T.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "NEMESC9E58GMS89T", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "NEMESC9E58GMS89T.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "NEMESC9E58GMS89T.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4325" + }, + "appliesTo" : [ ] + }, + "NEMESC9E58GMS89T.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "NEMESC9E58GMS89T.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "NEMESC9E58GMS89T.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "NEMESC9E58GMS89T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NEMESC9E58GMS89T.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "NEMESC9E58GMS89T.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1914" + }, + "appliesTo" : [ ] + }, + "NEMESC9E58GMS89T.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "NEMESC9E58GMS89T.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "NEMESC9E58GMS89T.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "NEMESC9E58GMS89T", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "NEMESC9E58GMS89T.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "NEMESC9E58GMS89T.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2224" + }, + "appliesTo" : [ ] + }, + "NEMESC9E58GMS89T.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "NEMESC9E58GMS89T.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "NEMESC9E58GMS89T.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "NEMESC9E58GMS89T", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "NEMESC9E58GMS89T.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "NEMESC9E58GMS89T.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2372" + }, + "appliesTo" : [ ] + }, + "NEMESC9E58GMS89T.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "NEMESC9E58GMS89T.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "NEMESC9E58GMS89T.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "NEMESC9E58GMS89T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NEMESC9E58GMS89T.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "NEMESC9E58GMS89T.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "NEMESC9E58GMS89T.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "NEMESC9E58GMS89T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NEMESC9E58GMS89T.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "NEMESC9E58GMS89T.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "968" + }, + "appliesTo" : [ ] + }, + "NEMESC9E58GMS89T.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "NEMESC9E58GMS89T.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "NEMESC9E58GMS89T.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "NEMESC9E58GMS89T", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "NEMESC9E58GMS89T.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "NEMESC9E58GMS89T.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1020000000" + }, + "appliesTo" : [ ] + }, + "NEMESC9E58GMS89T.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "NEMESC9E58GMS89T.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "892" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "NEMESC9E58GMS89T.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "NEMESC9E58GMS89T", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "NEMESC9E58GMS89T.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "NEMESC9E58GMS89T.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "NEMESC9E58GMS89T.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "NEMESC9E58GMS89T", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "NEMESC9E58GMS89T.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "NEMESC9E58GMS89T.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1763" + }, + "appliesTo" : [ ] + }, + "NEMESC9E58GMS89T.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "NEMESC9E58GMS89T.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "NEMESC9E58GMS89T.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "NEMESC9E58GMS89T", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "NEMESC9E58GMS89T.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "NEMESC9E58GMS89T.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "7H6M5F6HHQ5YHT4V" : { + "7H6M5F6HHQ5YHT4V.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "7H6M5F6HHQ5YHT4V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7H6M5F6HHQ5YHT4V.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "7H6M5F6HHQ5YHT4V.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7H6M5F6HHQ5YHT4V.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "7H6M5F6HHQ5YHT4V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7H6M5F6HHQ5YHT4V.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "7H6M5F6HHQ5YHT4V.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15356" + }, + "appliesTo" : [ ] + }, + "7H6M5F6HHQ5YHT4V.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "7H6M5F6HHQ5YHT4V.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7H6M5F6HHQ5YHT4V.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "7H6M5F6HHQ5YHT4V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7H6M5F6HHQ5YHT4V.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "7H6M5F6HHQ5YHT4V.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17098" + }, + "appliesTo" : [ ] + }, + "7H6M5F6HHQ5YHT4V.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "7H6M5F6HHQ5YHT4V.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7H6M5F6HHQ5YHT4V.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "7H6M5F6HHQ5YHT4V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7H6M5F6HHQ5YHT4V.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "7H6M5F6HHQ5YHT4V.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25223" + }, + "appliesTo" : [ ] + }, + "7H6M5F6HHQ5YHT4V.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "7H6M5F6HHQ5YHT4V.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7H6M5F6HHQ5YHT4V.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "7H6M5F6HHQ5YHT4V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7H6M5F6HHQ5YHT4V.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "7H6M5F6HHQ5YHT4V.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30103" + }, + "appliesTo" : [ ] + }, + "7H6M5F6HHQ5YHT4V.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "7H6M5F6HHQ5YHT4V.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7H6M5F6HHQ5YHT4V.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "7H6M5F6HHQ5YHT4V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7H6M5F6HHQ5YHT4V.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "7H6M5F6HHQ5YHT4V.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5090000000" + }, + "appliesTo" : [ ] + }, + "7H6M5F6HHQ5YHT4V.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "7H6M5F6HHQ5YHT4V.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13399" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7H6M5F6HHQ5YHT4V.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "7H6M5F6HHQ5YHT4V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7H6M5F6HHQ5YHT4V.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "7H6M5F6HHQ5YHT4V.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7H6M5F6HHQ5YHT4V.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "7H6M5F6HHQ5YHT4V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7H6M5F6HHQ5YHT4V.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "7H6M5F6HHQ5YHT4V.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10038" + }, + "appliesTo" : [ ] + }, + "7H6M5F6HHQ5YHT4V.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "7H6M5F6HHQ5YHT4V.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7H6M5F6HHQ5YHT4V.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "7H6M5F6HHQ5YHT4V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7H6M5F6HHQ5YHT4V.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "7H6M5F6HHQ5YHT4V.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7H6M5F6HHQ5YHT4V.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "7H6M5F6HHQ5YHT4V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7H6M5F6HHQ5YHT4V.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "7H6M5F6HHQ5YHT4V.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7H6M5F6HHQ5YHT4V.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "7H6M5F6HHQ5YHT4V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7H6M5F6HHQ5YHT4V.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "7H6M5F6HHQ5YHT4V.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9920000000" + }, + "appliesTo" : [ ] + }, + "7H6M5F6HHQ5YHT4V.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "7H6M5F6HHQ5YHT4V.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8752" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7H6M5F6HHQ5YHT4V.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "7H6M5F6HHQ5YHT4V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7H6M5F6HHQ5YHT4V.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "7H6M5F6HHQ5YHT4V.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19619" + }, + "appliesTo" : [ ] + }, + "7H6M5F6HHQ5YHT4V.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "7H6M5F6HHQ5YHT4V.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "6N5AHFKQR9A49BXT" : { + "6N5AHFKQR9A49BXT.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6N5AHFKQR9A49BXT", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "6N5AHFKQR9A49BXT.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6N5AHFKQR9A49BXT.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "158192" + }, + "appliesTo" : [ ] + }, + "6N5AHFKQR9A49BXT.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6N5AHFKQR9A49BXT.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6N5AHFKQR9A49BXT.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6N5AHFKQR9A49BXT", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "6N5AHFKQR9A49BXT.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6N5AHFKQR9A49BXT.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "79506" + }, + "appliesTo" : [ ] + }, + "6N5AHFKQR9A49BXT.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6N5AHFKQR9A49BXT.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.0760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6N5AHFKQR9A49BXT.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "6N5AHFKQR9A49BXT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6N5AHFKQR9A49BXT.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "6N5AHFKQR9A49BXT.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "17.6950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6N5AHFKQR9A49BXT.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "6N5AHFKQR9A49BXT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6N5AHFKQR9A49BXT.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "6N5AHFKQR9A49BXT.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "228400" + }, + "appliesTo" : [ ] + }, + "6N5AHFKQR9A49BXT.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "6N5AHFKQR9A49BXT.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.6910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6N5AHFKQR9A49BXT.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6N5AHFKQR9A49BXT", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "6N5AHFKQR9A49BXT.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6N5AHFKQR9A49BXT.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "6N5AHFKQR9A49BXT.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6N5AHFKQR9A49BXT.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "438035" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6N5AHFKQR9A49BXT.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6N5AHFKQR9A49BXT", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "6N5AHFKQR9A49BXT.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6N5AHFKQR9A49BXT.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "221698" + }, + "appliesTo" : [ ] + }, + "6N5AHFKQR9A49BXT.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6N5AHFKQR9A49BXT.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.4360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6N5AHFKQR9A49BXT.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6N5AHFKQR9A49BXT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6N5AHFKQR9A49BXT.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6N5AHFKQR9A49BXT.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "18.3860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6N5AHFKQR9A49BXT.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "6N5AHFKQR9A49BXT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6N5AHFKQR9A49BXT.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "6N5AHFKQR9A49BXT.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "82581" + }, + "appliesTo" : [ ] + }, + "6N5AHFKQR9A49BXT.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "6N5AHFKQR9A49BXT.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.4270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6N5AHFKQR9A49BXT.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "6N5AHFKQR9A49BXT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6N5AHFKQR9A49BXT.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "6N5AHFKQR9A49BXT.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "19.1230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6N5AHFKQR9A49BXT.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "6N5AHFKQR9A49BXT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6N5AHFKQR9A49BXT.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "6N5AHFKQR9A49BXT.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "17.1440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6N5AHFKQR9A49BXT.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "6N5AHFKQR9A49BXT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6N5AHFKQR9A49BXT.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "6N5AHFKQR9A49BXT.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "454745" + }, + "appliesTo" : [ ] + }, + "6N5AHFKQR9A49BXT.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "6N5AHFKQR9A49BXT.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6N5AHFKQR9A49BXT.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "6N5AHFKQR9A49BXT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6N5AHFKQR9A49BXT.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "6N5AHFKQR9A49BXT.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "164218" + }, + "appliesTo" : [ ] + }, + "6N5AHFKQR9A49BXT.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "6N5AHFKQR9A49BXT.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "XV4ERE3TBNCX96M9" : { + "XV4ERE3TBNCX96M9.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "XV4ERE3TBNCX96M9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XV4ERE3TBNCX96M9.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "XV4ERE3TBNCX96M9.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "690" + }, + "appliesTo" : [ ] + }, + "XV4ERE3TBNCX96M9.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "XV4ERE3TBNCX96M9.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XV4ERE3TBNCX96M9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XV4ERE3TBNCX96M9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XV4ERE3TBNCX96M9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XV4ERE3TBNCX96M9.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XV4ERE3TBNCX96M9.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "XV4ERE3TBNCX96M9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XV4ERE3TBNCX96M9.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "XV4ERE3TBNCX96M9.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2651" + }, + "appliesTo" : [ ] + }, + "XV4ERE3TBNCX96M9.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "XV4ERE3TBNCX96M9.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XV4ERE3TBNCX96M9.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "XV4ERE3TBNCX96M9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XV4ERE3TBNCX96M9.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "XV4ERE3TBNCX96M9.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1351" + }, + "appliesTo" : [ ] + }, + "XV4ERE3TBNCX96M9.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "XV4ERE3TBNCX96M9.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XV4ERE3TBNCX96M9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XV4ERE3TBNCX96M9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XV4ERE3TBNCX96M9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XV4ERE3TBNCX96M9.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0460000000" + }, + "appliesTo" : [ ] + }, + "XV4ERE3TBNCX96M9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XV4ERE3TBNCX96M9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1219" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XV4ERE3TBNCX96M9.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "XV4ERE3TBNCX96M9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XV4ERE3TBNCX96M9.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "XV4ERE3TBNCX96M9.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XV4ERE3TBNCX96M9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XV4ERE3TBNCX96M9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XV4ERE3TBNCX96M9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XV4ERE3TBNCX96M9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "623" + }, + "appliesTo" : [ ] + }, + "XV4ERE3TBNCX96M9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XV4ERE3TBNCX96M9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XV4ERE3TBNCX96M9.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "XV4ERE3TBNCX96M9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XV4ERE3TBNCX96M9.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "XV4ERE3TBNCX96M9.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1297" + }, + "appliesTo" : [ ] + }, + "XV4ERE3TBNCX96M9.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "XV4ERE3TBNCX96M9.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XV4ERE3TBNCX96M9.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "XV4ERE3TBNCX96M9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XV4ERE3TBNCX96M9.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "XV4ERE3TBNCX96M9.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XV4ERE3TBNCX96M9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XV4ERE3TBNCX96M9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XV4ERE3TBNCX96M9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XV4ERE3TBNCX96M9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "XV4ERE3TBNCX96M9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XV4ERE3TBNCX96M9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2323" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XV4ERE3TBNCX96M9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XV4ERE3TBNCX96M9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XV4ERE3TBNCX96M9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XV4ERE3TBNCX96M9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1166" + }, + "appliesTo" : [ ] + }, + "XV4ERE3TBNCX96M9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XV4ERE3TBNCX96M9.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XV4ERE3TBNCX96M9.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "XV4ERE3TBNCX96M9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XV4ERE3TBNCX96M9.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "XV4ERE3TBNCX96M9.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "YD7GPEVXPWVDFDJ7" : { + "YD7GPEVXPWVDFDJ7.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "YD7GPEVXPWVDFDJ7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YD7GPEVXPWVDFDJ7.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "YD7GPEVXPWVDFDJ7.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6200000000" + }, + "appliesTo" : [ ] + }, + "YD7GPEVXPWVDFDJ7.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "YD7GPEVXPWVDFDJ7.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5435" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YD7GPEVXPWVDFDJ7.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YD7GPEVXPWVDFDJ7", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YD7GPEVXPWVDFDJ7.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YD7GPEVXPWVDFDJ7.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YD7GPEVXPWVDFDJ7.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "YD7GPEVXPWVDFDJ7", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "YD7GPEVXPWVDFDJ7.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "YD7GPEVXPWVDFDJ7.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YD7GPEVXPWVDFDJ7.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "YD7GPEVXPWVDFDJ7", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "YD7GPEVXPWVDFDJ7.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "YD7GPEVXPWVDFDJ7.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9947" + }, + "appliesTo" : [ ] + }, + "YD7GPEVXPWVDFDJ7.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "YD7GPEVXPWVDFDJ7.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YD7GPEVXPWVDFDJ7.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YD7GPEVXPWVDFDJ7", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "YD7GPEVXPWVDFDJ7.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YD7GPEVXPWVDFDJ7.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7147" + }, + "appliesTo" : [ ] + }, + "YD7GPEVXPWVDFDJ7.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YD7GPEVXPWVDFDJ7.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YD7GPEVXPWVDFDJ7.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YD7GPEVXPWVDFDJ7", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YD7GPEVXPWVDFDJ7.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YD7GPEVXPWVDFDJ7.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13303" + }, + "appliesTo" : [ ] + }, + "YD7GPEVXPWVDFDJ7.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YD7GPEVXPWVDFDJ7.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YD7GPEVXPWVDFDJ7.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YD7GPEVXPWVDFDJ7", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YD7GPEVXPWVDFDJ7.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YD7GPEVXPWVDFDJ7.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4160000000" + }, + "appliesTo" : [ ] + }, + "YD7GPEVXPWVDFDJ7.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YD7GPEVXPWVDFDJ7.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3647" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YD7GPEVXPWVDFDJ7.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "YD7GPEVXPWVDFDJ7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YD7GPEVXPWVDFDJ7.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "YD7GPEVXPWVDFDJ7.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YD7GPEVXPWVDFDJ7.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "YD7GPEVXPWVDFDJ7.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10717" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YD7GPEVXPWVDFDJ7.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "YD7GPEVXPWVDFDJ7", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "YD7GPEVXPWVDFDJ7.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "YD7GPEVXPWVDFDJ7.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YD7GPEVXPWVDFDJ7.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "YD7GPEVXPWVDFDJ7.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19493" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YD7GPEVXPWVDFDJ7.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YD7GPEVXPWVDFDJ7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YD7GPEVXPWVDFDJ7.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YD7GPEVXPWVDFDJ7.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7076" + }, + "appliesTo" : [ ] + }, + "YD7GPEVXPWVDFDJ7.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YD7GPEVXPWVDFDJ7.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YD7GPEVXPWVDFDJ7.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "YD7GPEVXPWVDFDJ7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YD7GPEVXPWVDFDJ7.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "YD7GPEVXPWVDFDJ7.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "S7XYZXB5D99A9Y8M" : { + "S7XYZXB5D99A9Y8M.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "S7XYZXB5D99A9Y8M", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "S7XYZXB5D99A9Y8M.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "S7XYZXB5D99A9Y8M.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "S7XYZXB5D99A9Y8M.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "S7XYZXB5D99A9Y8M", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "S7XYZXB5D99A9Y8M.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "S7XYZXB5D99A9Y8M.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4772" + }, + "appliesTo" : [ ] + }, + "S7XYZXB5D99A9Y8M.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "S7XYZXB5D99A9Y8M.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "S7XYZXB5D99A9Y8M.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "S7XYZXB5D99A9Y8M", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "S7XYZXB5D99A9Y8M.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "S7XYZXB5D99A9Y8M.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5452" + }, + "appliesTo" : [ ] + }, + "S7XYZXB5D99A9Y8M.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "S7XYZXB5D99A9Y8M.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "S7XYZXB5D99A9Y8M.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "S7XYZXB5D99A9Y8M", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "S7XYZXB5D99A9Y8M.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "S7XYZXB5D99A9Y8M.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "S7XYZXB5D99A9Y8M.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "S7XYZXB5D99A9Y8M.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4563" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "S7XYZXB5D99A9Y8M.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "S7XYZXB5D99A9Y8M", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "S7XYZXB5D99A9Y8M.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "S7XYZXB5D99A9Y8M.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8971" + }, + "appliesTo" : [ ] + }, + "S7XYZXB5D99A9Y8M.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "S7XYZXB5D99A9Y8M.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "S7XYZXB5D99A9Y8M.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "S7XYZXB5D99A9Y8M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "S7XYZXB5D99A9Y8M.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "S7XYZXB5D99A9Y8M.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2660" + }, + "appliesTo" : [ ] + }, + "S7XYZXB5D99A9Y8M.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "S7XYZXB5D99A9Y8M.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "S7XYZXB5D99A9Y8M.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "S7XYZXB5D99A9Y8M", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "S7XYZXB5D99A9Y8M.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "S7XYZXB5D99A9Y8M.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "S7XYZXB5D99A9Y8M.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "S7XYZXB5D99A9Y8M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "S7XYZXB5D99A9Y8M.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "S7XYZXB5D99A9Y8M.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "S7XYZXB5D99A9Y8M.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "S7XYZXB5D99A9Y8M", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "S7XYZXB5D99A9Y8M.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "S7XYZXB5D99A9Y8M.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "S7XYZXB5D99A9Y8M.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "S7XYZXB5D99A9Y8M.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10686" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "S7XYZXB5D99A9Y8M.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "S7XYZXB5D99A9Y8M", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "S7XYZXB5D99A9Y8M.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "S7XYZXB5D99A9Y8M.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2660000000" + }, + "appliesTo" : [ ] + }, + "S7XYZXB5D99A9Y8M.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "S7XYZXB5D99A9Y8M.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2328" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "S7XYZXB5D99A9Y8M.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "S7XYZXB5D99A9Y8M", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "S7XYZXB5D99A9Y8M.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "S7XYZXB5D99A9Y8M.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "S7XYZXB5D99A9Y8M.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "S7XYZXB5D99A9Y8M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "S7XYZXB5D99A9Y8M.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "S7XYZXB5D99A9Y8M.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5213" + }, + "appliesTo" : [ ] + }, + "S7XYZXB5D99A9Y8M.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "S7XYZXB5D99A9Y8M.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "S8J79EPAU2WP28Z5" : { + "S8J79EPAU2WP28Z5.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "S8J79EPAU2WP28Z5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "S8J79EPAU2WP28Z5.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "S8J79EPAU2WP28Z5.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3983" + }, + "appliesTo" : [ ] + }, + "S8J79EPAU2WP28Z5.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "S8J79EPAU2WP28Z5.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "S8J79EPAU2WP28Z5.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "S8J79EPAU2WP28Z5", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "S8J79EPAU2WP28Z5.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "S8J79EPAU2WP28Z5.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1620" + }, + "appliesTo" : [ ] + }, + "S8J79EPAU2WP28Z5.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "S8J79EPAU2WP28Z5.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "S8J79EPAU2WP28Z5.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "S8J79EPAU2WP28Z5", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "S8J79EPAU2WP28Z5.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "S8J79EPAU2WP28Z5.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10743" + }, + "appliesTo" : [ ] + }, + "S8J79EPAU2WP28Z5.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "S8J79EPAU2WP28Z5.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "S8J79EPAU2WP28Z5.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "S8J79EPAU2WP28Z5", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "S8J79EPAU2WP28Z5.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "S8J79EPAU2WP28Z5.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "S8J79EPAU2WP28Z5.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "S8J79EPAU2WP28Z5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "S8J79EPAU2WP28Z5.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "S8J79EPAU2WP28Z5.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4570" + }, + "appliesTo" : [ ] + }, + "S8J79EPAU2WP28Z5.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "S8J79EPAU2WP28Z5.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "YDP6AWC4ZPX5AANZ" : { + "YDP6AWC4ZPX5AANZ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "YDP6AWC4ZPX5AANZ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YDP6AWC4ZPX5AANZ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "YDP6AWC4ZPX5AANZ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8484" + }, + "appliesTo" : [ ] + }, + "YDP6AWC4ZPX5AANZ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "YDP6AWC4ZPX5AANZ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YDP6AWC4ZPX5AANZ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YDP6AWC4ZPX5AANZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YDP6AWC4ZPX5AANZ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YDP6AWC4ZPX5AANZ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11042" + }, + "appliesTo" : [ ] + }, + "YDP6AWC4ZPX5AANZ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YDP6AWC4ZPX5AANZ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YDP6AWC4ZPX5AANZ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "YDP6AWC4ZPX5AANZ", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "YDP6AWC4ZPX5AANZ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "YDP6AWC4ZPX5AANZ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YDP6AWC4ZPX5AANZ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YDP6AWC4ZPX5AANZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YDP6AWC4ZPX5AANZ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YDP6AWC4ZPX5AANZ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5886" + }, + "appliesTo" : [ ] + }, + "YDP6AWC4ZPX5AANZ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YDP6AWC4ZPX5AANZ.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YDP6AWC4ZPX5AANZ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "YDP6AWC4ZPX5AANZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YDP6AWC4ZPX5AANZ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "YDP6AWC4ZPX5AANZ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7102" + }, + "appliesTo" : [ ] + }, + "YDP6AWC4ZPX5AANZ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "YDP6AWC4ZPX5AANZ.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YDP6AWC4ZPX5AANZ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "YDP6AWC4ZPX5AANZ", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "YDP6AWC4ZPX5AANZ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "YDP6AWC4ZPX5AANZ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16593" + }, + "appliesTo" : [ ] + }, + "YDP6AWC4ZPX5AANZ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "YDP6AWC4ZPX5AANZ.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YDP6AWC4ZPX5AANZ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YDP6AWC4ZPX5AANZ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "YDP6AWC4ZPX5AANZ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YDP6AWC4ZPX5AANZ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3188" + }, + "appliesTo" : [ ] + }, + "YDP6AWC4ZPX5AANZ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YDP6AWC4ZPX5AANZ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YDP6AWC4ZPX5AANZ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YDP6AWC4ZPX5AANZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YDP6AWC4ZPX5AANZ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YDP6AWC4ZPX5AANZ.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YDP6AWC4ZPX5AANZ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YDP6AWC4ZPX5AANZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YDP6AWC4ZPX5AANZ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YDP6AWC4ZPX5AANZ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YDP6AWC4ZPX5AANZ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YDP6AWC4ZPX5AANZ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6189" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YDP6AWC4ZPX5AANZ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "YDP6AWC4ZPX5AANZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YDP6AWC4ZPX5AANZ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "YDP6AWC4ZPX5AANZ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3652" + }, + "appliesTo" : [ ] + }, + "YDP6AWC4ZPX5AANZ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "YDP6AWC4ZPX5AANZ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YDP6AWC4ZPX5AANZ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "YDP6AWC4ZPX5AANZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YDP6AWC4ZPX5AANZ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "YDP6AWC4ZPX5AANZ.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "SDXF3BRYZZTH5K7Q" : { + "SDXF3BRYZZTH5K7Q.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "SDXF3BRYZZTH5K7Q", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SDXF3BRYZZTH5K7Q.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "SDXF3BRYZZTH5K7Q.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SDXF3BRYZZTH5K7Q.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "SDXF3BRYZZTH5K7Q.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "340766" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SDXF3BRYZZTH5K7Q.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SDXF3BRYZZTH5K7Q", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "SDXF3BRYZZTH5K7Q.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SDXF3BRYZZTH5K7Q.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "754629" + }, + "appliesTo" : [ ] + }, + "SDXF3BRYZZTH5K7Q.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SDXF3BRYZZTH5K7Q.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SDXF3BRYZZTH5K7Q.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "SDXF3BRYZZTH5K7Q", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "SDXF3BRYZZTH5K7Q.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "SDXF3BRYZZTH5K7Q.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "29.8270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SDXF3BRYZZTH5K7Q.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SDXF3BRYZZTH5K7Q", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "SDXF3BRYZZTH5K7Q.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SDXF3BRYZZTH5K7Q.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "320597" + }, + "appliesTo" : [ ] + }, + "SDXF3BRYZZTH5K7Q.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SDXF3BRYZZTH5K7Q.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SDXF3BRYZZTH5K7Q.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "SDXF3BRYZZTH5K7Q", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "SDXF3BRYZZTH5K7Q.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "SDXF3BRYZZTH5K7Q.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "399234" + }, + "appliesTo" : [ ] + }, + "SDXF3BRYZZTH5K7Q.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "SDXF3BRYZZTH5K7Q.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.1920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SDXF3BRYZZTH5K7Q.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "SDXF3BRYZZTH5K7Q", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SDXF3BRYZZTH5K7Q.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "SDXF3BRYZZTH5K7Q.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "40.1610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SDXF3BRYZZTH5K7Q.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "SDXF3BRYZZTH5K7Q", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SDXF3BRYZZTH5K7Q.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "SDXF3BRYZZTH5K7Q.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "171961" + }, + "appliesTo" : [ ] + }, + "SDXF3BRYZZTH5K7Q.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "SDXF3BRYZZTH5K7Q.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "19.6300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SDXF3BRYZZTH5K7Q.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "SDXF3BRYZZTH5K7Q", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "SDXF3BRYZZTH5K7Q.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "SDXF3BRYZZTH5K7Q.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "793667" + }, + "appliesTo" : [ ] + }, + "SDXF3BRYZZTH5K7Q.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "SDXF3BRYZZTH5K7Q.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SDXF3BRYZZTH5K7Q.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SDXF3BRYZZTH5K7Q", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "SDXF3BRYZZTH5K7Q.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SDXF3BRYZZTH5K7Q.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "161670" + }, + "appliesTo" : [ ] + }, + "SDXF3BRYZZTH5K7Q.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SDXF3BRYZZTH5K7Q.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "18.4560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SDXF3BRYZZTH5K7Q.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SDXF3BRYZZTH5K7Q", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "SDXF3BRYZZTH5K7Q.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SDXF3BRYZZTH5K7Q.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "37.6940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "X8HSBS99N48YZKF3" : { + "X8HSBS99N48YZKF3.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "X8HSBS99N48YZKF3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X8HSBS99N48YZKF3.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "X8HSBS99N48YZKF3.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "X8HSBS99N48YZKF3.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "X8HSBS99N48YZKF3.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1807" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "X8HSBS99N48YZKF3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "X8HSBS99N48YZKF3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X8HSBS99N48YZKF3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "X8HSBS99N48YZKF3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "852" + }, + "appliesTo" : [ ] + }, + "X8HSBS99N48YZKF3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "X8HSBS99N48YZKF3.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "X8HSBS99N48YZKF3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "X8HSBS99N48YZKF3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X8HSBS99N48YZKF3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "X8HSBS99N48YZKF3.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "X8HSBS99N48YZKF3.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "X8HSBS99N48YZKF3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X8HSBS99N48YZKF3.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "X8HSBS99N48YZKF3.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "918" + }, + "appliesTo" : [ ] + }, + "X8HSBS99N48YZKF3.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "X8HSBS99N48YZKF3.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "X8HSBS99N48YZKF3.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "X8HSBS99N48YZKF3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X8HSBS99N48YZKF3.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "X8HSBS99N48YZKF3.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "X8HSBS99N48YZKF3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "X8HSBS99N48YZKF3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X8HSBS99N48YZKF3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "X8HSBS99N48YZKF3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1643" + }, + "appliesTo" : [ ] + }, + "X8HSBS99N48YZKF3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "X8HSBS99N48YZKF3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "X8HSBS99N48YZKF3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "X8HSBS99N48YZKF3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X8HSBS99N48YZKF3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "X8HSBS99N48YZKF3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "773" + }, + "appliesTo" : [ ] + }, + "X8HSBS99N48YZKF3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "X8HSBS99N48YZKF3.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "X8HSBS99N48YZKF3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "X8HSBS99N48YZKF3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X8HSBS99N48YZKF3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "X8HSBS99N48YZKF3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "422" + }, + "appliesTo" : [ ] + }, + "X8HSBS99N48YZKF3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "X8HSBS99N48YZKF3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "X8HSBS99N48YZKF3.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "X8HSBS99N48YZKF3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X8HSBS99N48YZKF3.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "X8HSBS99N48YZKF3.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "X8HSBS99N48YZKF3.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "X8HSBS99N48YZKF3.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "838" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "X8HSBS99N48YZKF3.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "X8HSBS99N48YZKF3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X8HSBS99N48YZKF3.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "X8HSBS99N48YZKF3.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "X8HSBS99N48YZKF3.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "X8HSBS99N48YZKF3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X8HSBS99N48YZKF3.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "X8HSBS99N48YZKF3.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "455" + }, + "appliesTo" : [ ] + }, + "X8HSBS99N48YZKF3.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "X8HSBS99N48YZKF3.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "X8HSBS99N48YZKF3.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "X8HSBS99N48YZKF3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X8HSBS99N48YZKF3.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "X8HSBS99N48YZKF3.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "7AGDS8PY7CBCQ8E4" : { + "7AGDS8PY7CBCQ8E4.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "7AGDS8PY7CBCQ8E4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7AGDS8PY7CBCQ8E4.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "7AGDS8PY7CBCQ8E4.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "872" + }, + "appliesTo" : [ ] + }, + "7AGDS8PY7CBCQ8E4.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "7AGDS8PY7CBCQ8E4.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7AGDS8PY7CBCQ8E4.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "7AGDS8PY7CBCQ8E4", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "7AGDS8PY7CBCQ8E4.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "7AGDS8PY7CBCQ8E4.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7AGDS8PY7CBCQ8E4.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "7AGDS8PY7CBCQ8E4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7AGDS8PY7CBCQ8E4.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "7AGDS8PY7CBCQ8E4.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7AGDS8PY7CBCQ8E4.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "7AGDS8PY7CBCQ8E4", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "7AGDS8PY7CBCQ8E4.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "7AGDS8PY7CBCQ8E4.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "7AGDS8PY7CBCQ8E4.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "7AGDS8PY7CBCQ8E4.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5200" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7AGDS8PY7CBCQ8E4.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "7AGDS8PY7CBCQ8E4", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7AGDS8PY7CBCQ8E4.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "7AGDS8PY7CBCQ8E4.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1240000000" + }, + "appliesTo" : [ ] + }, + "7AGDS8PY7CBCQ8E4.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "7AGDS8PY7CBCQ8E4.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "725" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7AGDS8PY7CBCQ8E4.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "7AGDS8PY7CBCQ8E4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7AGDS8PY7CBCQ8E4.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "7AGDS8PY7CBCQ8E4.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1735" + }, + "appliesTo" : [ ] + }, + "7AGDS8PY7CBCQ8E4.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "7AGDS8PY7CBCQ8E4.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7AGDS8PY7CBCQ8E4.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "7AGDS8PY7CBCQ8E4", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7AGDS8PY7CBCQ8E4.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "7AGDS8PY7CBCQ8E4.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7AGDS8PY7CBCQ8E4.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "7AGDS8PY7CBCQ8E4", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7AGDS8PY7CBCQ8E4.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "7AGDS8PY7CBCQ8E4.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1904" + }, + "appliesTo" : [ ] + }, + "7AGDS8PY7CBCQ8E4.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "7AGDS8PY7CBCQ8E4.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7AGDS8PY7CBCQ8E4.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "7AGDS8PY7CBCQ8E4", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "7AGDS8PY7CBCQ8E4.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "7AGDS8PY7CBCQ8E4.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1772" + }, + "appliesTo" : [ ] + }, + "7AGDS8PY7CBCQ8E4.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "7AGDS8PY7CBCQ8E4.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7AGDS8PY7CBCQ8E4.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "7AGDS8PY7CBCQ8E4", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "7AGDS8PY7CBCQ8E4.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "7AGDS8PY7CBCQ8E4.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2105" + }, + "appliesTo" : [ ] + }, + "7AGDS8PY7CBCQ8E4.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "7AGDS8PY7CBCQ8E4.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7AGDS8PY7CBCQ8E4.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "7AGDS8PY7CBCQ8E4", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7AGDS8PY7CBCQ8E4.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "7AGDS8PY7CBCQ8E4.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4480" + }, + "appliesTo" : [ ] + }, + "7AGDS8PY7CBCQ8E4.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "7AGDS8PY7CBCQ8E4.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "4VV6V3MAZZGV47MU" : { + "4VV6V3MAZZGV47MU.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "4VV6V3MAZZGV47MU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4VV6V3MAZZGV47MU.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "4VV6V3MAZZGV47MU.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5900" + }, + "appliesTo" : [ ] + }, + "4VV6V3MAZZGV47MU.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "4VV6V3MAZZGV47MU.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4VV6V3MAZZGV47MU.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "4VV6V3MAZZGV47MU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4VV6V3MAZZGV47MU.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "4VV6V3MAZZGV47MU.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12888" + }, + "appliesTo" : [ ] + }, + "4VV6V3MAZZGV47MU.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "4VV6V3MAZZGV47MU.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4VV6V3MAZZGV47MU.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "4VV6V3MAZZGV47MU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4VV6V3MAZZGV47MU.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "4VV6V3MAZZGV47MU.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "4VV6V3MAZZGV47MU.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "4VV6V3MAZZGV47MU.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21936" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4VV6V3MAZZGV47MU.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "4VV6V3MAZZGV47MU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4VV6V3MAZZGV47MU.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "4VV6V3MAZZGV47MU.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "4VV6V3MAZZGV47MU.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "4VV6V3MAZZGV47MU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4VV6V3MAZZGV47MU.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "4VV6V3MAZZGV47MU.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11628" + }, + "appliesTo" : [ ] + }, + "4VV6V3MAZZGV47MU.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "4VV6V3MAZZGV47MU.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4VV6V3MAZZGV47MU.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "4VV6V3MAZZGV47MU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4VV6V3MAZZGV47MU.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "4VV6V3MAZZGV47MU.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "4VV6V3MAZZGV47MU.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "4VV6V3MAZZGV47MU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4VV6V3MAZZGV47MU.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "4VV6V3MAZZGV47MU.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6543" + }, + "appliesTo" : [ ] + }, + "4VV6V3MAZZGV47MU.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "4VV6V3MAZZGV47MU.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4VV6V3MAZZGV47MU.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "4VV6V3MAZZGV47MU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4VV6V3MAZZGV47MU.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "4VV6V3MAZZGV47MU.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "4VV6V3MAZZGV47MU.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "4VV6V3MAZZGV47MU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4VV6V3MAZZGV47MU.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "4VV6V3MAZZGV47MU.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24375" + }, + "appliesTo" : [ ] + }, + "4VV6V3MAZZGV47MU.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "4VV6V3MAZZGV47MU.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4VV6V3MAZZGV47MU.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "4VV6V3MAZZGV47MU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4VV6V3MAZZGV47MU.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "4VV6V3MAZZGV47MU.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12338" + }, + "appliesTo" : [ ] + }, + "4VV6V3MAZZGV47MU.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "4VV6V3MAZZGV47MU.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4VV6V3MAZZGV47MU.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "4VV6V3MAZZGV47MU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4VV6V3MAZZGV47MU.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "4VV6V3MAZZGV47MU.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4320000000" + }, + "appliesTo" : [ ] + }, + "4VV6V3MAZZGV47MU.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "4VV6V3MAZZGV47MU.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11359" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4VV6V3MAZZGV47MU.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "4VV6V3MAZZGV47MU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4VV6V3MAZZGV47MU.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "4VV6V3MAZZGV47MU.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "RGKA4HJHM5TUYE4N" : { + "RGKA4HJHM5TUYE4N.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "RGKA4HJHM5TUYE4N", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RGKA4HJHM5TUYE4N.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "RGKA4HJHM5TUYE4N.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2038" + }, + "appliesTo" : [ ] + }, + "RGKA4HJHM5TUYE4N.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "RGKA4HJHM5TUYE4N.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RGKA4HJHM5TUYE4N.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "RGKA4HJHM5TUYE4N", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "RGKA4HJHM5TUYE4N.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "RGKA4HJHM5TUYE4N.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4034" + }, + "appliesTo" : [ ] + }, + "RGKA4HJHM5TUYE4N.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "RGKA4HJHM5TUYE4N.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RGKA4HJHM5TUYE4N.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "RGKA4HJHM5TUYE4N", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RGKA4HJHM5TUYE4N.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "RGKA4HJHM5TUYE4N.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "RGKA4HJHM5TUYE4N.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "RGKA4HJHM5TUYE4N.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2131" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RGKA4HJHM5TUYE4N.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "RGKA4HJHM5TUYE4N", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "RGKA4HJHM5TUYE4N.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "RGKA4HJHM5TUYE4N.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1020000000" + }, + "appliesTo" : [ ] + }, + "RGKA4HJHM5TUYE4N.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "RGKA4HJHM5TUYE4N.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1279" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RGKA4HJHM5TUYE4N.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "RGKA4HJHM5TUYE4N", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "RGKA4HJHM5TUYE4N.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "RGKA4HJHM5TUYE4N.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "ZXVGNAHUW5AY3DYX" : { + "ZXVGNAHUW5AY3DYX.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ZXVGNAHUW5AY3DYX", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "ZXVGNAHUW5AY3DYX.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ZXVGNAHUW5AY3DYX.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ZXVGNAHUW5AY3DYX.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ZXVGNAHUW5AY3DYX.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5819" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZXVGNAHUW5AY3DYX.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ZXVGNAHUW5AY3DYX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ZXVGNAHUW5AY3DYX.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ZXVGNAHUW5AY3DYX.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2372" + }, + "appliesTo" : [ ] + }, + "ZXVGNAHUW5AY3DYX.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ZXVGNAHUW5AY3DYX.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZXVGNAHUW5AY3DYX.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ZXVGNAHUW5AY3DYX", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "ZXVGNAHUW5AY3DYX.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ZXVGNAHUW5AY3DYX.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ZXVGNAHUW5AY3DYX.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ZXVGNAHUW5AY3DYX.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13587" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZXVGNAHUW5AY3DYX.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ZXVGNAHUW5AY3DYX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ZXVGNAHUW5AY3DYX.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ZXVGNAHUW5AY3DYX.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZXVGNAHUW5AY3DYX.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ZXVGNAHUW5AY3DYX", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "ZXVGNAHUW5AY3DYX.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ZXVGNAHUW5AY3DYX.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3300000000" + }, + "appliesTo" : [ ] + }, + "ZXVGNAHUW5AY3DYX.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ZXVGNAHUW5AY3DYX.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5782" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "VECSNYXG6RJ6YNH2" : { + "VECSNYXG6RJ6YNH2.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "VECSNYXG6RJ6YNH2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VECSNYXG6RJ6YNH2.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "VECSNYXG6RJ6YNH2.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1229" + }, + "appliesTo" : [ ] + }, + "VECSNYXG6RJ6YNH2.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "VECSNYXG6RJ6YNH2.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VECSNYXG6RJ6YNH2.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "VECSNYXG6RJ6YNH2", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "VECSNYXG6RJ6YNH2.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "VECSNYXG6RJ6YNH2.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VECSNYXG6RJ6YNH2.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "VECSNYXG6RJ6YNH2", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "VECSNYXG6RJ6YNH2.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "VECSNYXG6RJ6YNH2.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1071" + }, + "appliesTo" : [ ] + }, + "VECSNYXG6RJ6YNH2.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "VECSNYXG6RJ6YNH2.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VECSNYXG6RJ6YNH2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "VECSNYXG6RJ6YNH2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "VECSNYXG6RJ6YNH2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "VECSNYXG6RJ6YNH2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "882" + }, + "appliesTo" : [ ] + }, + "VECSNYXG6RJ6YNH2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "VECSNYXG6RJ6YNH2.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VECSNYXG6RJ6YNH2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "VECSNYXG6RJ6YNH2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "VECSNYXG6RJ6YNH2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "VECSNYXG6RJ6YNH2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2064" + }, + "appliesTo" : [ ] + }, + "VECSNYXG6RJ6YNH2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "VECSNYXG6RJ6YNH2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VECSNYXG6RJ6YNH2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "VECSNYXG6RJ6YNH2", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "VECSNYXG6RJ6YNH2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "VECSNYXG6RJ6YNH2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "927" + }, + "appliesTo" : [ ] + }, + "VECSNYXG6RJ6YNH2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "VECSNYXG6RJ6YNH2.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VECSNYXG6RJ6YNH2.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "VECSNYXG6RJ6YNH2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VECSNYXG6RJ6YNH2.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "VECSNYXG6RJ6YNH2.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VECSNYXG6RJ6YNH2.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "VECSNYXG6RJ6YNH2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VECSNYXG6RJ6YNH2.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "VECSNYXG6RJ6YNH2.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "619" + }, + "appliesTo" : [ ] + }, + "VECSNYXG6RJ6YNH2.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "VECSNYXG6RJ6YNH2.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VECSNYXG6RJ6YNH2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "VECSNYXG6RJ6YNH2", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "VECSNYXG6RJ6YNH2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "VECSNYXG6RJ6YNH2.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VECSNYXG6RJ6YNH2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "VECSNYXG6RJ6YNH2", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "VECSNYXG6RJ6YNH2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "VECSNYXG6RJ6YNH2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0650000000" + }, + "appliesTo" : [ ] + }, + "VECSNYXG6RJ6YNH2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "VECSNYXG6RJ6YNH2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "378" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VECSNYXG6RJ6YNH2.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "VECSNYXG6RJ6YNH2", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "VECSNYXG6RJ6YNH2.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "VECSNYXG6RJ6YNH2.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "VECSNYXG6RJ6YNH2.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "VECSNYXG6RJ6YNH2.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2675" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "C8WRJP4N7N5CN6HS" : { + "C8WRJP4N7N5CN6HS.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "C8WRJP4N7N5CN6HS", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "C8WRJP4N7N5CN6HS.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "C8WRJP4N7N5CN6HS.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "C8WRJP4N7N5CN6HS.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "C8WRJP4N7N5CN6HS", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "C8WRJP4N7N5CN6HS.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "C8WRJP4N7N5CN6HS.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "855" + }, + "appliesTo" : [ ] + }, + "C8WRJP4N7N5CN6HS.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "C8WRJP4N7N5CN6HS.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "C8WRJP4N7N5CN6HS.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "C8WRJP4N7N5CN6HS", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "C8WRJP4N7N5CN6HS.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "C8WRJP4N7N5CN6HS.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4683" + }, + "appliesTo" : [ ] + }, + "C8WRJP4N7N5CN6HS.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "C8WRJP4N7N5CN6HS.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "C8WRJP4N7N5CN6HS.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "C8WRJP4N7N5CN6HS", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "C8WRJP4N7N5CN6HS.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "C8WRJP4N7N5CN6HS.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1986" + }, + "appliesTo" : [ ] + }, + "C8WRJP4N7N5CN6HS.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "C8WRJP4N7N5CN6HS.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "C8WRJP4N7N5CN6HS.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "C8WRJP4N7N5CN6HS", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "C8WRJP4N7N5CN6HS.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "C8WRJP4N7N5CN6HS.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2083" + }, + "appliesTo" : [ ] + }, + "C8WRJP4N7N5CN6HS.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "C8WRJP4N7N5CN6HS.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "NN2CMDZPNDJ4GWGU" : { + "NN2CMDZPNDJ4GWGU.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "NN2CMDZPNDJ4GWGU", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "NN2CMDZPNDJ4GWGU.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "NN2CMDZPNDJ4GWGU.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16602" + }, + "appliesTo" : [ ] + }, + "NN2CMDZPNDJ4GWGU.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "NN2CMDZPNDJ4GWGU.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "NN2CMDZPNDJ4GWGU.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "NN2CMDZPNDJ4GWGU", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "NN2CMDZPNDJ4GWGU.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "NN2CMDZPNDJ4GWGU.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6292000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "NN2CMDZPNDJ4GWGU.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "NN2CMDZPNDJ4GWGU", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "NN2CMDZPNDJ4GWGU.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "NN2CMDZPNDJ4GWGU.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "NN2CMDZPNDJ4GWGU.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "NN2CMDZPNDJ4GWGU.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16341" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "NN2CMDZPNDJ4GWGU.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "NN2CMDZPNDJ4GWGU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NN2CMDZPNDJ4GWGU.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "NN2CMDZPNDJ4GWGU.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5801" + }, + "appliesTo" : [ ] + }, + "NN2CMDZPNDJ4GWGU.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "NN2CMDZPNDJ4GWGU.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "NN2CMDZPNDJ4GWGU.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "NN2CMDZPNDJ4GWGU", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "NN2CMDZPNDJ4GWGU.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "NN2CMDZPNDJ4GWGU.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8213" + }, + "appliesTo" : [ ] + }, + "NN2CMDZPNDJ4GWGU.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "NN2CMDZPNDJ4GWGU.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3125000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "NN2CMDZPNDJ4GWGU.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "NN2CMDZPNDJ4GWGU", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "NN2CMDZPNDJ4GWGU.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "NN2CMDZPNDJ4GWGU.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8317" + }, + "appliesTo" : [ ] + }, + "NN2CMDZPNDJ4GWGU.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "NN2CMDZPNDJ4GWGU.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3165000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "NN2CMDZPNDJ4GWGU.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "NN2CMDZPNDJ4GWGU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NN2CMDZPNDJ4GWGU.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "NN2CMDZPNDJ4GWGU.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3320000000" + }, + "appliesTo" : [ ] + }, + "NN2CMDZPNDJ4GWGU.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "NN2CMDZPNDJ4GWGU.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2908" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "NN2CMDZPNDJ4GWGU.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "NN2CMDZPNDJ4GWGU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NN2CMDZPNDJ4GWGU.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "NN2CMDZPNDJ4GWGU.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6686000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "NN2CMDZPNDJ4GWGU.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "NN2CMDZPNDJ4GWGU", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "NN2CMDZPNDJ4GWGU.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "NN2CMDZPNDJ4GWGU.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2856" + }, + "appliesTo" : [ ] + }, + "NN2CMDZPNDJ4GWGU.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "NN2CMDZPNDJ4GWGU.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "NN2CMDZPNDJ4GWGU.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "NN2CMDZPNDJ4GWGU", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "NN2CMDZPNDJ4GWGU.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "NN2CMDZPNDJ4GWGU.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "NN2CMDZPNDJ4GWGU.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "NN2CMDZPNDJ4GWGU", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "NN2CMDZPNDJ4GWGU.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "NN2CMDZPNDJ4GWGU.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5697" + }, + "appliesTo" : [ ] + }, + "NN2CMDZPNDJ4GWGU.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "NN2CMDZPNDJ4GWGU.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "NN2CMDZPNDJ4GWGU.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "NN2CMDZPNDJ4GWGU", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "NN2CMDZPNDJ4GWGU.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "NN2CMDZPNDJ4GWGU.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6378000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "QNQNFXEZD4JV6K7J" : { + "QNQNFXEZD4JV6K7J.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QNQNFXEZD4JV6K7J", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "QNQNFXEZD4JV6K7J.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QNQNFXEZD4JV6K7J.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QNQNFXEZD4JV6K7J.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QNQNFXEZD4JV6K7J", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QNQNFXEZD4JV6K7J.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QNQNFXEZD4JV6K7J.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16924" + }, + "appliesTo" : [ ] + }, + "QNQNFXEZD4JV6K7J.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QNQNFXEZD4JV6K7J.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QNQNFXEZD4JV6K7J.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QNQNFXEZD4JV6K7J", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QNQNFXEZD4JV6K7J.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QNQNFXEZD4JV6K7J.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11213" + }, + "appliesTo" : [ ] + }, + "QNQNFXEZD4JV6K7J.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QNQNFXEZD4JV6K7J.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QNQNFXEZD4JV6K7J.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QNQNFXEZD4JV6K7J", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QNQNFXEZD4JV6K7J.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QNQNFXEZD4JV6K7J.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37153" + }, + "appliesTo" : [ ] + }, + "QNQNFXEZD4JV6K7J.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QNQNFXEZD4JV6K7J.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QNQNFXEZD4JV6K7J.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QNQNFXEZD4JV6K7J", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "QNQNFXEZD4JV6K7J.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QNQNFXEZD4JV6K7J.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19745" + }, + "appliesTo" : [ ] + }, + "QNQNFXEZD4JV6K7J.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QNQNFXEZD4JV6K7J.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "34JBU9PXRB8RPKYX" : { + "34JBU9PXRB8RPKYX.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "34JBU9PXRB8RPKYX", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "34JBU9PXRB8RPKYX.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "34JBU9PXRB8RPKYX.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0365000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "34JBU9PXRB8RPKYX.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "34JBU9PXRB8RPKYX", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "34JBU9PXRB8RPKYX.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "34JBU9PXRB8RPKYX.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "34JBU9PXRB8RPKYX.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "34JBU9PXRB8RPKYX.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "901" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "34JBU9PXRB8RPKYX.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "34JBU9PXRB8RPKYX", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "34JBU9PXRB8RPKYX.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "34JBU9PXRB8RPKYX.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "612" + }, + "appliesTo" : [ ] + }, + "34JBU9PXRB8RPKYX.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "34JBU9PXRB8RPKYX.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "34JBU9PXRB8RPKYX.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "34JBU9PXRB8RPKYX", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "34JBU9PXRB8RPKYX.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "34JBU9PXRB8RPKYX.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "34JBU9PXRB8RPKYX.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "34JBU9PXRB8RPKYX", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "34JBU9PXRB8RPKYX.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "34JBU9PXRB8RPKYX.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0180000000" + }, + "appliesTo" : [ ] + }, + "34JBU9PXRB8RPKYX.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "34JBU9PXRB8RPKYX.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "486" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "34JBU9PXRB8RPKYX.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "34JBU9PXRB8RPKYX", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "34JBU9PXRB8RPKYX.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "34JBU9PXRB8RPKYX.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "34JBU9PXRB8RPKYX.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "34JBU9PXRB8RPKYX.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "342" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "34JBU9PXRB8RPKYX.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "34JBU9PXRB8RPKYX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "34JBU9PXRB8RPKYX.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "34JBU9PXRB8RPKYX.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0413000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "34JBU9PXRB8RPKYX.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "34JBU9PXRB8RPKYX", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "34JBU9PXRB8RPKYX.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "34JBU9PXRB8RPKYX.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "209" + }, + "appliesTo" : [ ] + }, + "34JBU9PXRB8RPKYX.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "34JBU9PXRB8RPKYX.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "34JBU9PXRB8RPKYX.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "34JBU9PXRB8RPKYX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "34JBU9PXRB8RPKYX.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "34JBU9PXRB8RPKYX.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0205000000" + }, + "appliesTo" : [ ] + }, + "34JBU9PXRB8RPKYX.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "34JBU9PXRB8RPKYX.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "179" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "34JBU9PXRB8RPKYX.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "34JBU9PXRB8RPKYX", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "34JBU9PXRB8RPKYX.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "34JBU9PXRB8RPKYX.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "34JBU9PXRB8RPKYX.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "34JBU9PXRB8RPKYX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "34JBU9PXRB8RPKYX.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "34JBU9PXRB8RPKYX.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "357" + }, + "appliesTo" : [ ] + }, + "34JBU9PXRB8RPKYX.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "34JBU9PXRB8RPKYX.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "34JBU9PXRB8RPKYX.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "34JBU9PXRB8RPKYX", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "34JBU9PXRB8RPKYX.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "34JBU9PXRB8RPKYX.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1004" + }, + "appliesTo" : [ ] + }, + "34JBU9PXRB8RPKYX.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "34JBU9PXRB8RPKYX.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "H9ZN7EUEHC2S7YH5" : { + "H9ZN7EUEHC2S7YH5.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "H9ZN7EUEHC2S7YH5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H9ZN7EUEHC2S7YH5.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "H9ZN7EUEHC2S7YH5.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "H9ZN7EUEHC2S7YH5.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "H9ZN7EUEHC2S7YH5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H9ZN7EUEHC2S7YH5.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "H9ZN7EUEHC2S7YH5.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1170000000" + }, + "appliesTo" : [ ] + }, + "H9ZN7EUEHC2S7YH5.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "H9ZN7EUEHC2S7YH5.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1028" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "H9ZN7EUEHC2S7YH5.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "H9ZN7EUEHC2S7YH5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H9ZN7EUEHC2S7YH5.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "H9ZN7EUEHC2S7YH5.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1751" + }, + "appliesTo" : [ ] + }, + "H9ZN7EUEHC2S7YH5.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "H9ZN7EUEHC2S7YH5.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "H9ZN7EUEHC2S7YH5.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "H9ZN7EUEHC2S7YH5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H9ZN7EUEHC2S7YH5.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "H9ZN7EUEHC2S7YH5.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1733" + }, + "appliesTo" : [ ] + }, + "H9ZN7EUEHC2S7YH5.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "H9ZN7EUEHC2S7YH5.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "H9ZN7EUEHC2S7YH5.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "H9ZN7EUEHC2S7YH5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H9ZN7EUEHC2S7YH5.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "H9ZN7EUEHC2S7YH5.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3259" + }, + "appliesTo" : [ ] + }, + "H9ZN7EUEHC2S7YH5.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "H9ZN7EUEHC2S7YH5.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "H9ZN7EUEHC2S7YH5.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "H9ZN7EUEHC2S7YH5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H9ZN7EUEHC2S7YH5.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "H9ZN7EUEHC2S7YH5.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1997" + }, + "appliesTo" : [ ] + }, + "H9ZN7EUEHC2S7YH5.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "H9ZN7EUEHC2S7YH5.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "H9ZN7EUEHC2S7YH5.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "H9ZN7EUEHC2S7YH5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H9ZN7EUEHC2S7YH5.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "H9ZN7EUEHC2S7YH5.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "H9ZN7EUEHC2S7YH5.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "H9ZN7EUEHC2S7YH5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H9ZN7EUEHC2S7YH5.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "H9ZN7EUEHC2S7YH5.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "H9ZN7EUEHC2S7YH5.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "H9ZN7EUEHC2S7YH5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H9ZN7EUEHC2S7YH5.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "H9ZN7EUEHC2S7YH5.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2014" + }, + "appliesTo" : [ ] + }, + "H9ZN7EUEHC2S7YH5.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "H9ZN7EUEHC2S7YH5.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "H9ZN7EUEHC2S7YH5.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "H9ZN7EUEHC2S7YH5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H9ZN7EUEHC2S7YH5.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "H9ZN7EUEHC2S7YH5.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "H9ZN7EUEHC2S7YH5.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "H9ZN7EUEHC2S7YH5.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3914" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "H9ZN7EUEHC2S7YH5.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "H9ZN7EUEHC2S7YH5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H9ZN7EUEHC2S7YH5.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "H9ZN7EUEHC2S7YH5.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1020000000" + }, + "appliesTo" : [ ] + }, + "H9ZN7EUEHC2S7YH5.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "H9ZN7EUEHC2S7YH5.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "894" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "H9ZN7EUEHC2S7YH5.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "H9ZN7EUEHC2S7YH5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H9ZN7EUEHC2S7YH5.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "H9ZN7EUEHC2S7YH5.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "5YBKCYT5H6J77KYT" : { + "5YBKCYT5H6J77KYT.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "5YBKCYT5H6J77KYT", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "5YBKCYT5H6J77KYT.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "5YBKCYT5H6J77KYT.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3762" + }, + "appliesTo" : [ ] + }, + "5YBKCYT5H6J77KYT.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "5YBKCYT5H6J77KYT.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5YBKCYT5H6J77KYT.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "5YBKCYT5H6J77KYT", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "5YBKCYT5H6J77KYT.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "5YBKCYT5H6J77KYT.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8847" + }, + "appliesTo" : [ ] + }, + "5YBKCYT5H6J77KYT.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "5YBKCYT5H6J77KYT.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5YBKCYT5H6J77KYT.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "5YBKCYT5H6J77KYT", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "5YBKCYT5H6J77KYT.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "5YBKCYT5H6J77KYT.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3988" + }, + "appliesTo" : [ ] + }, + "5YBKCYT5H6J77KYT.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "5YBKCYT5H6J77KYT.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5YBKCYT5H6J77KYT.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "5YBKCYT5H6J77KYT", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "5YBKCYT5H6J77KYT.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "5YBKCYT5H6J77KYT.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1634" + }, + "appliesTo" : [ ] + }, + "5YBKCYT5H6J77KYT.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "5YBKCYT5H6J77KYT.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5YBKCYT5H6J77KYT.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "5YBKCYT5H6J77KYT", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "5YBKCYT5H6J77KYT.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "5YBKCYT5H6J77KYT.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "AA7ZX8UEQ6R54FN8" : { + "AA7ZX8UEQ6R54FN8.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "AA7ZX8UEQ6R54FN8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AA7ZX8UEQ6R54FN8.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "AA7ZX8UEQ6R54FN8.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "AA7ZX8UEQ6R54FN8.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "AA7ZX8UEQ6R54FN8.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2606" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "AA7ZX8UEQ6R54FN8.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "AA7ZX8UEQ6R54FN8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AA7ZX8UEQ6R54FN8.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "AA7ZX8UEQ6R54FN8.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1166" + }, + "appliesTo" : [ ] + }, + "AA7ZX8UEQ6R54FN8.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "AA7ZX8UEQ6R54FN8.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AA7ZX8UEQ6R54FN8.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "AA7ZX8UEQ6R54FN8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AA7ZX8UEQ6R54FN8.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "AA7ZX8UEQ6R54FN8.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2726" + }, + "appliesTo" : [ ] + }, + "AA7ZX8UEQ6R54FN8.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "AA7ZX8UEQ6R54FN8.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "AA7ZX8UEQ6R54FN8.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "AA7ZX8UEQ6R54FN8", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "AA7ZX8UEQ6R54FN8.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "AA7ZX8UEQ6R54FN8.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2386" + }, + "appliesTo" : [ ] + }, + "AA7ZX8UEQ6R54FN8.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "AA7ZX8UEQ6R54FN8.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AA7ZX8UEQ6R54FN8.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "AA7ZX8UEQ6R54FN8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AA7ZX8UEQ6R54FN8.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "AA7ZX8UEQ6R54FN8.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "AA7ZX8UEQ6R54FN8.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "AA7ZX8UEQ6R54FN8", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "AA7ZX8UEQ6R54FN8.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "AA7ZX8UEQ6R54FN8.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2286" + }, + "appliesTo" : [ ] + }, + "AA7ZX8UEQ6R54FN8.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "AA7ZX8UEQ6R54FN8.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AA7ZX8UEQ6R54FN8.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "AA7ZX8UEQ6R54FN8", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "AA7ZX8UEQ6R54FN8.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "AA7ZX8UEQ6R54FN8.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4486" + }, + "appliesTo" : [ ] + }, + "AA7ZX8UEQ6R54FN8.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "AA7ZX8UEQ6R54FN8.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AA7ZX8UEQ6R54FN8.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "AA7ZX8UEQ6R54FN8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AA7ZX8UEQ6R54FN8.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "AA7ZX8UEQ6R54FN8.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1330" + }, + "appliesTo" : [ ] + }, + "AA7ZX8UEQ6R54FN8.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "AA7ZX8UEQ6R54FN8.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "AA7ZX8UEQ6R54FN8.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "AA7ZX8UEQ6R54FN8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AA7ZX8UEQ6R54FN8.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "AA7ZX8UEQ6R54FN8.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "AA7ZX8UEQ6R54FN8.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "AA7ZX8UEQ6R54FN8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AA7ZX8UEQ6R54FN8.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "AA7ZX8UEQ6R54FN8.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "AA7ZX8UEQ6R54FN8.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "AA7ZX8UEQ6R54FN8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AA7ZX8UEQ6R54FN8.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "AA7ZX8UEQ6R54FN8.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5343" + }, + "appliesTo" : [ ] + }, + "AA7ZX8UEQ6R54FN8.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "AA7ZX8UEQ6R54FN8.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "AA7ZX8UEQ6R54FN8.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "AA7ZX8UEQ6R54FN8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AA7ZX8UEQ6R54FN8.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "AA7ZX8UEQ6R54FN8.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "GS3NHNTTTS84KQSP" : { + "GS3NHNTTTS84KQSP.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "GS3NHNTTTS84KQSP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GS3NHNTTTS84KQSP.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "GS3NHNTTTS84KQSP.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "51934" + }, + "appliesTo" : [ ] + }, + "GS3NHNTTTS84KQSP.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "GS3NHNTTTS84KQSP.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.9290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GS3NHNTTTS84KQSP.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "GS3NHNTTTS84KQSP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GS3NHNTTTS84KQSP.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "GS3NHNTTTS84KQSP.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "102496" + }, + "appliesTo" : [ ] + }, + "GS3NHNTTTS84KQSP.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "GS3NHNTTTS84KQSP.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GS3NHNTTTS84KQSP.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "GS3NHNTTTS84KQSP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GS3NHNTTTS84KQSP.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "GS3NHNTTTS84KQSP.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.3150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GS3NHNTTTS84KQSP.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "GS3NHNTTTS84KQSP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GS3NHNTTTS84KQSP.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "GS3NHNTTTS84KQSP.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.2490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GS3NHNTTTS84KQSP.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "GS3NHNTTTS84KQSP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GS3NHNTTTS84KQSP.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "GS3NHNTTTS84KQSP.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "223427" + }, + "appliesTo" : [ ] + }, + "GS3NHNTTTS84KQSP.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "GS3NHNTTTS84KQSP.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "GS3NHNTTTS84KQSP.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "GS3NHNTTTS84KQSP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GS3NHNTTTS84KQSP.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "GS3NHNTTTS84KQSP.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "GS3NHNTTTS84KQSP.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "GS3NHNTTTS84KQSP.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "112581" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "GS3NHNTTTS84KQSP.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "GS3NHNTTTS84KQSP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GS3NHNTTTS84KQSP.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "GS3NHNTTTS84KQSP.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "57080" + }, + "appliesTo" : [ ] + }, + "GS3NHNTTTS84KQSP.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "GS3NHNTTTS84KQSP.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.5160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GS3NHNTTTS84KQSP.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "GS3NHNTTTS84KQSP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GS3NHNTTTS84KQSP.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "GS3NHNTTTS84KQSP.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.4820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "GS3NHNTTTS84KQSP.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "GS3NHNTTTS84KQSP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GS3NHNTTTS84KQSP.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "GS3NHNTTTS84KQSP.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.9590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "GS3NHNTTTS84KQSP.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "GS3NHNTTTS84KQSP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GS3NHNTTTS84KQSP.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "GS3NHNTTTS84KQSP.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "203909" + }, + "appliesTo" : [ ] + }, + "GS3NHNTTTS84KQSP.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "GS3NHNTTTS84KQSP.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GS3NHNTTTS84KQSP.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "GS3NHNTTTS84KQSP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GS3NHNTTTS84KQSP.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "GS3NHNTTTS84KQSP.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "112914" + }, + "appliesTo" : [ ] + }, + "GS3NHNTTTS84KQSP.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "GS3NHNTTTS84KQSP.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GS3NHNTTTS84KQSP.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "GS3NHNTTTS84KQSP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GS3NHNTTTS84KQSP.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "GS3NHNTTTS84KQSP.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "105086" + }, + "appliesTo" : [ ] + }, + "GS3NHNTTTS84KQSP.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "GS3NHNTTTS84KQSP.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "D2UN9TFKVYBF6AUM" : { + "D2UN9TFKVYBF6AUM.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "D2UN9TFKVYBF6AUM", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "D2UN9TFKVYBF6AUM.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "D2UN9TFKVYBF6AUM.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9411" + }, + "appliesTo" : [ ] + }, + "D2UN9TFKVYBF6AUM.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "D2UN9TFKVYBF6AUM.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "D2UN9TFKVYBF6AUM.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "D2UN9TFKVYBF6AUM", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "D2UN9TFKVYBF6AUM.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "D2UN9TFKVYBF6AUM.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4830" + }, + "appliesTo" : [ ] + }, + "D2UN9TFKVYBF6AUM.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "D2UN9TFKVYBF6AUM.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "D2UN9TFKVYBF6AUM.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "D2UN9TFKVYBF6AUM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "D2UN9TFKVYBF6AUM.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "D2UN9TFKVYBF6AUM.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "D2UN9TFKVYBF6AUM.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "D2UN9TFKVYBF6AUM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "D2UN9TFKVYBF6AUM.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "D2UN9TFKVYBF6AUM.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "D2UN9TFKVYBF6AUM.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "D2UN9TFKVYBF6AUM.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10779" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "D2UN9TFKVYBF6AUM.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "D2UN9TFKVYBF6AUM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "D2UN9TFKVYBF6AUM.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "D2UN9TFKVYBF6AUM.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8565000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "D2UN9TFKVYBF6AUM.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "D2UN9TFKVYBF6AUM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "D2UN9TFKVYBF6AUM.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "D2UN9TFKVYBF6AUM.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6239000000" + }, + "appliesTo" : [ ] + }, + "D2UN9TFKVYBF6AUM.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "D2UN9TFKVYBF6AUM.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5528" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "D2UN9TFKVYBF6AUM.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "D2UN9TFKVYBF6AUM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "D2UN9TFKVYBF6AUM.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "D2UN9TFKVYBF6AUM.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "D2UN9TFKVYBF6AUM.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "D2UN9TFKVYBF6AUM.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23277" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "D2UN9TFKVYBF6AUM.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "D2UN9TFKVYBF6AUM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "D2UN9TFKVYBF6AUM.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "D2UN9TFKVYBF6AUM.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11874" + }, + "appliesTo" : [ ] + }, + "D2UN9TFKVYBF6AUM.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "D2UN9TFKVYBF6AUM.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4514000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "D2UN9TFKVYBF6AUM.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "D2UN9TFKVYBF6AUM", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "D2UN9TFKVYBF6AUM.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "D2UN9TFKVYBF6AUM.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "D2UN9TFKVYBF6AUM.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "D2UN9TFKVYBF6AUM", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "D2UN9TFKVYBF6AUM.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "D2UN9TFKVYBF6AUM.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10371" + }, + "appliesTo" : [ ] + }, + "D2UN9TFKVYBF6AUM.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "D2UN9TFKVYBF6AUM.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "D2UN9TFKVYBF6AUM.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "D2UN9TFKVYBF6AUM", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "D2UN9TFKVYBF6AUM.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "D2UN9TFKVYBF6AUM.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "D2UN9TFKVYBF6AUM.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "D2UN9TFKVYBF6AUM.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19530" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "D2UN9TFKVYBF6AUM.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "D2UN9TFKVYBF6AUM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "D2UN9TFKVYBF6AUM.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "D2UN9TFKVYBF6AUM.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "FTHQYJFCP3DPSYCY" : { + "FTHQYJFCP3DPSYCY.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "FTHQYJFCP3DPSYCY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FTHQYJFCP3DPSYCY.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "FTHQYJFCP3DPSYCY.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6752000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FTHQYJFCP3DPSYCY.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "FTHQYJFCP3DPSYCY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FTHQYJFCP3DPSYCY.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "FTHQYJFCP3DPSYCY.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3896000000" + }, + "appliesTo" : [ ] + }, + "FTHQYJFCP3DPSYCY.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "FTHQYJFCP3DPSYCY.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2274" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FTHQYJFCP3DPSYCY.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "FTHQYJFCP3DPSYCY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FTHQYJFCP3DPSYCY.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "FTHQYJFCP3DPSYCY.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7569000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FTHQYJFCP3DPSYCY.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "FTHQYJFCP3DPSYCY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FTHQYJFCP3DPSYCY.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "FTHQYJFCP3DPSYCY.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2615" + }, + "appliesTo" : [ ] + }, + "FTHQYJFCP3DPSYCY.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "FTHQYJFCP3DPSYCY.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4285000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FTHQYJFCP3DPSYCY.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "FTHQYJFCP3DPSYCY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FTHQYJFCP3DPSYCY.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "FTHQYJFCP3DPSYCY.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5102000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FTHQYJFCP3DPSYCY.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "FTHQYJFCP3DPSYCY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FTHQYJFCP3DPSYCY.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "FTHQYJFCP3DPSYCY.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12112" + }, + "appliesTo" : [ ] + }, + "FTHQYJFCP3DPSYCY.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "FTHQYJFCP3DPSYCY.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FTHQYJFCP3DPSYCY.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "FTHQYJFCP3DPSYCY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FTHQYJFCP3DPSYCY.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "FTHQYJFCP3DPSYCY.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5319" + }, + "appliesTo" : [ ] + }, + "FTHQYJFCP3DPSYCY.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "FTHQYJFCP3DPSYCY.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3324000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FTHQYJFCP3DPSYCY.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "FTHQYJFCP3DPSYCY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FTHQYJFCP3DPSYCY.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "FTHQYJFCP3DPSYCY.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "FTHQYJFCP3DPSYCY.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "FTHQYJFCP3DPSYCY.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13842" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FTHQYJFCP3DPSYCY.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "FTHQYJFCP3DPSYCY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FTHQYJFCP3DPSYCY.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "FTHQYJFCP3DPSYCY.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6265" + }, + "appliesTo" : [ ] + }, + "FTHQYJFCP3DPSYCY.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "FTHQYJFCP3DPSYCY.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FTHQYJFCP3DPSYCY.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "FTHQYJFCP3DPSYCY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FTHQYJFCP3DPSYCY.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "FTHQYJFCP3DPSYCY.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4625" + }, + "appliesTo" : [ ] + }, + "FTHQYJFCP3DPSYCY.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "FTHQYJFCP3DPSYCY.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FTHQYJFCP3DPSYCY.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "FTHQYJFCP3DPSYCY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FTHQYJFCP3DPSYCY.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "FTHQYJFCP3DPSYCY.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5596" + }, + "appliesTo" : [ ] + }, + "FTHQYJFCP3DPSYCY.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "FTHQYJFCP3DPSYCY.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FTHQYJFCP3DPSYCY.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "FTHQYJFCP3DPSYCY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FTHQYJFCP3DPSYCY.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "FTHQYJFCP3DPSYCY.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5672000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "BD398TEHQSUMAUDS" : { + "BD398TEHQSUMAUDS.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "BD398TEHQSUMAUDS", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BD398TEHQSUMAUDS.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "BD398TEHQSUMAUDS.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2490000000" + }, + "appliesTo" : [ ] + }, + "BD398TEHQSUMAUDS.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "BD398TEHQSUMAUDS.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4050" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BD398TEHQSUMAUDS.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "BD398TEHQSUMAUDS", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "BD398TEHQSUMAUDS.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "BD398TEHQSUMAUDS.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BD398TEHQSUMAUDS.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "BD398TEHQSUMAUDS", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BD398TEHQSUMAUDS.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "BD398TEHQSUMAUDS.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "BD398TEHQSUMAUDS.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "BD398TEHQSUMAUDS.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6109" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BD398TEHQSUMAUDS.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "BD398TEHQSUMAUDS", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BD398TEHQSUMAUDS.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "BD398TEHQSUMAUDS.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BD398TEHQSUMAUDS.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "BD398TEHQSUMAUDS", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BD398TEHQSUMAUDS.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "BD398TEHQSUMAUDS.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "BD398TEHQSUMAUDS.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "BD398TEHQSUMAUDS.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18095" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BD398TEHQSUMAUDS.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "BD398TEHQSUMAUDS", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "BD398TEHQSUMAUDS.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "BD398TEHQSUMAUDS.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15729" + }, + "appliesTo" : [ ] + }, + "BD398TEHQSUMAUDS.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "BD398TEHQSUMAUDS.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BD398TEHQSUMAUDS.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "BD398TEHQSUMAUDS", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "BD398TEHQSUMAUDS.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "BD398TEHQSUMAUDS.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10880" + }, + "appliesTo" : [ ] + }, + "BD398TEHQSUMAUDS.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "BD398TEHQSUMAUDS.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BD398TEHQSUMAUDS.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "BD398TEHQSUMAUDS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BD398TEHQSUMAUDS.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "BD398TEHQSUMAUDS.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6331" + }, + "appliesTo" : [ ] + }, + "BD398TEHQSUMAUDS.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "BD398TEHQSUMAUDS.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BD398TEHQSUMAUDS.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "BD398TEHQSUMAUDS", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "BD398TEHQSUMAUDS.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "BD398TEHQSUMAUDS.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11996" + }, + "appliesTo" : [ ] + }, + "BD398TEHQSUMAUDS.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "BD398TEHQSUMAUDS.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BD398TEHQSUMAUDS.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "BD398TEHQSUMAUDS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BD398TEHQSUMAUDS.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "BD398TEHQSUMAUDS.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3175" + }, + "appliesTo" : [ ] + }, + "BD398TEHQSUMAUDS.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "BD398TEHQSUMAUDS.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BD398TEHQSUMAUDS.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "BD398TEHQSUMAUDS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BD398TEHQSUMAUDS.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "BD398TEHQSUMAUDS.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "ZJXKCMNRMSTSZTE8" : { + "ZJXKCMNRMSTSZTE8.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ZJXKCMNRMSTSZTE8", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "ZJXKCMNRMSTSZTE8.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ZJXKCMNRMSTSZTE8.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23061" + }, + "appliesTo" : [ ] + }, + "ZJXKCMNRMSTSZTE8.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ZJXKCMNRMSTSZTE8.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZJXKCMNRMSTSZTE8.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "ZJXKCMNRMSTSZTE8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZJXKCMNRMSTSZTE8.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "ZJXKCMNRMSTSZTE8.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9617000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZJXKCMNRMSTSZTE8.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ZJXKCMNRMSTSZTE8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZJXKCMNRMSTSZTE8.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ZJXKCMNRMSTSZTE8.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "53648" + }, + "appliesTo" : [ ] + }, + "ZJXKCMNRMSTSZTE8.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ZJXKCMNRMSTSZTE8.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZJXKCMNRMSTSZTE8.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ZJXKCMNRMSTSZTE8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZJXKCMNRMSTSZTE8.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ZJXKCMNRMSTSZTE8.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZJXKCMNRMSTSZTE8.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ZJXKCMNRMSTSZTE8", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "ZJXKCMNRMSTSZTE8.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ZJXKCMNRMSTSZTE8.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11185" + }, + "appliesTo" : [ ] + }, + "ZJXKCMNRMSTSZTE8.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ZJXKCMNRMSTSZTE8.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZJXKCMNRMSTSZTE8.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ZJXKCMNRMSTSZTE8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZJXKCMNRMSTSZTE8.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ZJXKCMNRMSTSZTE8.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26412" + }, + "appliesTo" : [ ] + }, + "ZJXKCMNRMSTSZTE8.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ZJXKCMNRMSTSZTE8.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZJXKCMNRMSTSZTE8.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ZJXKCMNRMSTSZTE8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZJXKCMNRMSTSZTE8.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ZJXKCMNRMSTSZTE8.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12895" + }, + "appliesTo" : [ ] + }, + "ZJXKCMNRMSTSZTE8.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ZJXKCMNRMSTSZTE8.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZJXKCMNRMSTSZTE8.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ZJXKCMNRMSTSZTE8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZJXKCMNRMSTSZTE8.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ZJXKCMNRMSTSZTE8.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2212000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZJXKCMNRMSTSZTE8.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ZJXKCMNRMSTSZTE8", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "ZJXKCMNRMSTSZTE8.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ZJXKCMNRMSTSZTE8.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ZJXKCMNRMSTSZTE8.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ZJXKCMNRMSTSZTE8.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "45471" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZJXKCMNRMSTSZTE8.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ZJXKCMNRMSTSZTE8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZJXKCMNRMSTSZTE8.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ZJXKCMNRMSTSZTE8.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2364000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZJXKCMNRMSTSZTE8.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ZJXKCMNRMSTSZTE8", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "ZJXKCMNRMSTSZTE8.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ZJXKCMNRMSTSZTE8.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9810000000" + }, + "appliesTo" : [ ] + }, + "ZJXKCMNRMSTSZTE8.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ZJXKCMNRMSTSZTE8.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22370" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZJXKCMNRMSTSZTE8.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ZJXKCMNRMSTSZTE8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZJXKCMNRMSTSZTE8.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ZJXKCMNRMSTSZTE8.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25628" + }, + "appliesTo" : [ ] + }, + "ZJXKCMNRMSTSZTE8.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ZJXKCMNRMSTSZTE8.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1052000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "U5PMX34FM7A6Y7VW" : { + "U5PMX34FM7A6Y7VW.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "U5PMX34FM7A6Y7VW", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "U5PMX34FM7A6Y7VW.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "U5PMX34FM7A6Y7VW.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8104" + }, + "appliesTo" : [ ] + }, + "U5PMX34FM7A6Y7VW.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "U5PMX34FM7A6Y7VW.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "U5PMX34FM7A6Y7VW.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "U5PMX34FM7A6Y7VW", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "U5PMX34FM7A6Y7VW.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "U5PMX34FM7A6Y7VW.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16179" + }, + "appliesTo" : [ ] + }, + "U5PMX34FM7A6Y7VW.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "U5PMX34FM7A6Y7VW.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "U5PMX34FM7A6Y7VW.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "U5PMX34FM7A6Y7VW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U5PMX34FM7A6Y7VW.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "U5PMX34FM7A6Y7VW.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "U5PMX34FM7A6Y7VW.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "U5PMX34FM7A6Y7VW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U5PMX34FM7A6Y7VW.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "U5PMX34FM7A6Y7VW.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8204" + }, + "appliesTo" : [ ] + }, + "U5PMX34FM7A6Y7VW.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "U5PMX34FM7A6Y7VW.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "U5PMX34FM7A6Y7VW.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "U5PMX34FM7A6Y7VW", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "U5PMX34FM7A6Y7VW.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "U5PMX34FM7A6Y7VW.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23589" + }, + "appliesTo" : [ ] + }, + "U5PMX34FM7A6Y7VW.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "U5PMX34FM7A6Y7VW.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "U5PMX34FM7A6Y7VW.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "U5PMX34FM7A6Y7VW", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "U5PMX34FM7A6Y7VW.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "U5PMX34FM7A6Y7VW.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24093" + }, + "appliesTo" : [ ] + }, + "U5PMX34FM7A6Y7VW.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "U5PMX34FM7A6Y7VW.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "U5PMX34FM7A6Y7VW.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "U5PMX34FM7A6Y7VW", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "U5PMX34FM7A6Y7VW.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "U5PMX34FM7A6Y7VW.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "U5PMX34FM7A6Y7VW.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "U5PMX34FM7A6Y7VW.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47003" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "U5PMX34FM7A6Y7VW.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "U5PMX34FM7A6Y7VW", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "U5PMX34FM7A6Y7VW.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "U5PMX34FM7A6Y7VW.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "48108" + }, + "appliesTo" : [ ] + }, + "U5PMX34FM7A6Y7VW.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "U5PMX34FM7A6Y7VW.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "U5PMX34FM7A6Y7VW.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "U5PMX34FM7A6Y7VW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U5PMX34FM7A6Y7VW.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "U5PMX34FM7A6Y7VW.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16375" + }, + "appliesTo" : [ ] + }, + "U5PMX34FM7A6Y7VW.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "U5PMX34FM7A6Y7VW.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "U5PMX34FM7A6Y7VW.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "U5PMX34FM7A6Y7VW", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "U5PMX34FM7A6Y7VW.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "U5PMX34FM7A6Y7VW.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "U5PMX34FM7A6Y7VW.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "U5PMX34FM7A6Y7VW", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "U5PMX34FM7A6Y7VW.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "U5PMX34FM7A6Y7VW.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "N8CRYUBTUE378VHJ" : { + "N8CRYUBTUE378VHJ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "N8CRYUBTUE378VHJ", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "N8CRYUBTUE378VHJ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "N8CRYUBTUE378VHJ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3516" + }, + "appliesTo" : [ ] + }, + "N8CRYUBTUE378VHJ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "N8CRYUBTUE378VHJ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "N8CRYUBTUE378VHJ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "N8CRYUBTUE378VHJ", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "N8CRYUBTUE378VHJ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "N8CRYUBTUE378VHJ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "N8CRYUBTUE378VHJ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "N8CRYUBTUE378VHJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N8CRYUBTUE378VHJ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "N8CRYUBTUE378VHJ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "N8CRYUBTUE378VHJ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "N8CRYUBTUE378VHJ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3857" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "N8CRYUBTUE378VHJ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "N8CRYUBTUE378VHJ", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "N8CRYUBTUE378VHJ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "N8CRYUBTUE378VHJ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1433" + }, + "appliesTo" : [ ] + }, + "N8CRYUBTUE378VHJ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "N8CRYUBTUE378VHJ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "N8CRYUBTUE378VHJ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "N8CRYUBTUE378VHJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "N8CRYUBTUE378VHJ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "N8CRYUBTUE378VHJ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3353" + }, + "appliesTo" : [ ] + }, + "N8CRYUBTUE378VHJ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "N8CRYUBTUE378VHJ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "N8CRYUBTUE378VHJ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "N8CRYUBTUE378VHJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "N8CRYUBTUE378VHJ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "N8CRYUBTUE378VHJ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10120" + }, + "appliesTo" : [ ] + }, + "N8CRYUBTUE378VHJ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "N8CRYUBTUE378VHJ.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "N8CRYUBTUE378VHJ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "N8CRYUBTUE378VHJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "N8CRYUBTUE378VHJ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "N8CRYUBTUE378VHJ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7870" + }, + "appliesTo" : [ ] + }, + "N8CRYUBTUE378VHJ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "N8CRYUBTUE378VHJ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "N8CRYUBTUE378VHJ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "N8CRYUBTUE378VHJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "N8CRYUBTUE378VHJ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "N8CRYUBTUE378VHJ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "N8CRYUBTUE378VHJ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "N8CRYUBTUE378VHJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N8CRYUBTUE378VHJ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "N8CRYUBTUE378VHJ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1945" + }, + "appliesTo" : [ ] + }, + "N8CRYUBTUE378VHJ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "N8CRYUBTUE378VHJ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "N8CRYUBTUE378VHJ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "N8CRYUBTUE378VHJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N8CRYUBTUE378VHJ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "N8CRYUBTUE378VHJ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "N8CRYUBTUE378VHJ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "N8CRYUBTUE378VHJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "N8CRYUBTUE378VHJ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "N8CRYUBTUE378VHJ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4046" + }, + "appliesTo" : [ ] + }, + "N8CRYUBTUE378VHJ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "N8CRYUBTUE378VHJ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "FMZ94AJH8354XRME" : { + "FMZ94AJH8354XRME.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "FMZ94AJH8354XRME", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FMZ94AJH8354XRME.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "FMZ94AJH8354XRME.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FMZ94AJH8354XRME.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "FMZ94AJH8354XRME", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FMZ94AJH8354XRME.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "FMZ94AJH8354XRME.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2580000000" + }, + "appliesTo" : [ ] + }, + "FMZ94AJH8354XRME.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "FMZ94AJH8354XRME.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1738" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FMZ94AJH8354XRME.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "FMZ94AJH8354XRME", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "FMZ94AJH8354XRME.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "FMZ94AJH8354XRME.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "FMZ94AJH8354XRME.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "FMZ94AJH8354XRME.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3468" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FMZ94AJH8354XRME.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "FMZ94AJH8354XRME", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "FMZ94AJH8354XRME.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "FMZ94AJH8354XRME.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2767" + }, + "appliesTo" : [ ] + }, + "FMZ94AJH8354XRME.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "FMZ94AJH8354XRME.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FMZ94AJH8354XRME.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "FMZ94AJH8354XRME", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "FMZ94AJH8354XRME.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "FMZ94AJH8354XRME.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4066" + }, + "appliesTo" : [ ] + }, + "FMZ94AJH8354XRME.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "FMZ94AJH8354XRME.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FMZ94AJH8354XRME.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "FMZ94AJH8354XRME", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FMZ94AJH8354XRME.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "FMZ94AJH8354XRME.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "FMZ94AJH8354XRME.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "FMZ94AJH8354XRME.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3932" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FMZ94AJH8354XRME.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "FMZ94AJH8354XRME", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "FMZ94AJH8354XRME.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "FMZ94AJH8354XRME.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6677" + }, + "appliesTo" : [ ] + }, + "FMZ94AJH8354XRME.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "FMZ94AJH8354XRME.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FMZ94AJH8354XRME.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "FMZ94AJH8354XRME", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FMZ94AJH8354XRME.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "FMZ94AJH8354XRME.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FMZ94AJH8354XRME.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "FMZ94AJH8354XRME", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "FMZ94AJH8354XRME.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "FMZ94AJH8354XRME.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9518" + }, + "appliesTo" : [ ] + }, + "FMZ94AJH8354XRME.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "FMZ94AJH8354XRME.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FMZ94AJH8354XRME.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "FMZ94AJH8354XRME", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "FMZ94AJH8354XRME.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "FMZ94AJH8354XRME.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FMZ94AJH8354XRME.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "FMZ94AJH8354XRME", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "FMZ94AJH8354XRME.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "FMZ94AJH8354XRME.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1506" + }, + "appliesTo" : [ ] + }, + "FMZ94AJH8354XRME.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "FMZ94AJH8354XRME.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "8U8GT7P4FU5ABATQ" : { + "8U8GT7P4FU5ABATQ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "8U8GT7P4FU5ABATQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8U8GT7P4FU5ABATQ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "8U8GT7P4FU5ABATQ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14352" + }, + "appliesTo" : [ ] + }, + "8U8GT7P4FU5ABATQ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "8U8GT7P4FU5ABATQ.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8U8GT7P4FU5ABATQ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "8U8GT7P4FU5ABATQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8U8GT7P4FU5ABATQ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "8U8GT7P4FU5ABATQ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8U8GT7P4FU5ABATQ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "8U8GT7P4FU5ABATQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8U8GT7P4FU5ABATQ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "8U8GT7P4FU5ABATQ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7580000000" + }, + "appliesTo" : [ ] + }, + "8U8GT7P4FU5ABATQ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "8U8GT7P4FU5ABATQ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16505" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8U8GT7P4FU5ABATQ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "8U8GT7P4FU5ABATQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8U8GT7P4FU5ABATQ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "8U8GT7P4FU5ABATQ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8U8GT7P4FU5ABATQ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "8U8GT7P4FU5ABATQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8U8GT7P4FU5ABATQ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "8U8GT7P4FU5ABATQ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30398" + }, + "appliesTo" : [ ] + }, + "8U8GT7P4FU5ABATQ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "8U8GT7P4FU5ABATQ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8U8GT7P4FU5ABATQ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "8U8GT7P4FU5ABATQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8U8GT7P4FU5ABATQ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "8U8GT7P4FU5ABATQ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19628" + }, + "appliesTo" : [ ] + }, + "8U8GT7P4FU5ABATQ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "8U8GT7P4FU5ABATQ.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8U8GT7P4FU5ABATQ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "8U8GT7P4FU5ABATQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8U8GT7P4FU5ABATQ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "8U8GT7P4FU5ABATQ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9433" + }, + "appliesTo" : [ ] + }, + "8U8GT7P4FU5ABATQ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "8U8GT7P4FU5ABATQ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8U8GT7P4FU5ABATQ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "8U8GT7P4FU5ABATQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8U8GT7P4FU5ABATQ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "8U8GT7P4FU5ABATQ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8U8GT7P4FU5ABATQ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "8U8GT7P4FU5ABATQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8U8GT7P4FU5ABATQ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "8U8GT7P4FU5ABATQ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22401" + }, + "appliesTo" : [ ] + }, + "8U8GT7P4FU5ABATQ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "8U8GT7P4FU5ABATQ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8U8GT7P4FU5ABATQ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "8U8GT7P4FU5ABATQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8U8GT7P4FU5ABATQ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "8U8GT7P4FU5ABATQ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10848" + }, + "appliesTo" : [ ] + }, + "8U8GT7P4FU5ABATQ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "8U8GT7P4FU5ABATQ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8U8GT7P4FU5ABATQ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "8U8GT7P4FU5ABATQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8U8GT7P4FU5ABATQ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "8U8GT7P4FU5ABATQ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35766" + }, + "appliesTo" : [ ] + }, + "8U8GT7P4FU5ABATQ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "8U8GT7P4FU5ABATQ.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8U8GT7P4FU5ABATQ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "8U8GT7P4FU5ABATQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8U8GT7P4FU5ABATQ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "8U8GT7P4FU5ABATQ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "DJEXMYSZ7CJSUDPF" : { + "DJEXMYSZ7CJSUDPF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "DJEXMYSZ7CJSUDPF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "DJEXMYSZ7CJSUDPF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "DJEXMYSZ7CJSUDPF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "61" + }, + "appliesTo" : [ ] + }, + "DJEXMYSZ7CJSUDPF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "DJEXMYSZ7CJSUDPF.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0023000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DJEXMYSZ7CJSUDPF.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "DJEXMYSZ7CJSUDPF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "DJEXMYSZ7CJSUDPF.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "DJEXMYSZ7CJSUDPF.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0072000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DJEXMYSZ7CJSUDPF.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "DJEXMYSZ7CJSUDPF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "DJEXMYSZ7CJSUDPF.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "DJEXMYSZ7CJSUDPF.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DJEXMYSZ7CJSUDPF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "DJEXMYSZ7CJSUDPF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "DJEXMYSZ7CJSUDPF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "DJEXMYSZ7CJSUDPF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30" + }, + "appliesTo" : [ ] + }, + "DJEXMYSZ7CJSUDPF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "DJEXMYSZ7CJSUDPF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0034000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DJEXMYSZ7CJSUDPF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "DJEXMYSZ7CJSUDPF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "DJEXMYSZ7CJSUDPF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "DJEXMYSZ7CJSUDPF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "59" + }, + "appliesTo" : [ ] + }, + "DJEXMYSZ7CJSUDPF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "DJEXMYSZ7CJSUDPF.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DJEXMYSZ7CJSUDPF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "DJEXMYSZ7CJSUDPF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "DJEXMYSZ7CJSUDPF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "DJEXMYSZ7CJSUDPF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "115" + }, + "appliesTo" : [ ] + }, + "DJEXMYSZ7CJSUDPF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "DJEXMYSZ7CJSUDPF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "RW6CPEJMXU8H79H3" : { + "RW6CPEJMXU8H79H3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "RW6CPEJMXU8H79H3", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "RW6CPEJMXU8H79H3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "RW6CPEJMXU8H79H3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2230000000" + }, + "appliesTo" : [ ] + }, + "RW6CPEJMXU8H79H3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "RW6CPEJMXU8H79H3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1954" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RW6CPEJMXU8H79H3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "RW6CPEJMXU8H79H3", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "RW6CPEJMXU8H79H3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "RW6CPEJMXU8H79H3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3830" + }, + "appliesTo" : [ ] + }, + "RW6CPEJMXU8H79H3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "RW6CPEJMXU8H79H3.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RW6CPEJMXU8H79H3.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "RW6CPEJMXU8H79H3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RW6CPEJMXU8H79H3.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "RW6CPEJMXU8H79H3.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4431" + }, + "appliesTo" : [ ] + }, + "RW6CPEJMXU8H79H3.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "RW6CPEJMXU8H79H3.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RW6CPEJMXU8H79H3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "RW6CPEJMXU8H79H3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RW6CPEJMXU8H79H3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "RW6CPEJMXU8H79H3.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RW6CPEJMXU8H79H3.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "RW6CPEJMXU8H79H3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RW6CPEJMXU8H79H3.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "RW6CPEJMXU8H79H3.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RW6CPEJMXU8H79H3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "RW6CPEJMXU8H79H3", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "RW6CPEJMXU8H79H3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "RW6CPEJMXU8H79H3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4059" + }, + "appliesTo" : [ ] + }, + "RW6CPEJMXU8H79H3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "RW6CPEJMXU8H79H3.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RW6CPEJMXU8H79H3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "RW6CPEJMXU8H79H3", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "RW6CPEJMXU8H79H3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "RW6CPEJMXU8H79H3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7609" + }, + "appliesTo" : [ ] + }, + "RW6CPEJMXU8H79H3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "RW6CPEJMXU8H79H3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RW6CPEJMXU8H79H3.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "RW6CPEJMXU8H79H3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RW6CPEJMXU8H79H3.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "RW6CPEJMXU8H79H3.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9122" + }, + "appliesTo" : [ ] + }, + "RW6CPEJMXU8H79H3.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "RW6CPEJMXU8H79H3.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RW6CPEJMXU8H79H3.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "RW6CPEJMXU8H79H3", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "RW6CPEJMXU8H79H3.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "RW6CPEJMXU8H79H3.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RW6CPEJMXU8H79H3.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "RW6CPEJMXU8H79H3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RW6CPEJMXU8H79H3.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "RW6CPEJMXU8H79H3.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RW6CPEJMXU8H79H3.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "RW6CPEJMXU8H79H3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RW6CPEJMXU8H79H3.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "RW6CPEJMXU8H79H3.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2261" + }, + "appliesTo" : [ ] + }, + "RW6CPEJMXU8H79H3.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "RW6CPEJMXU8H79H3.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RW6CPEJMXU8H79H3.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "RW6CPEJMXU8H79H3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RW6CPEJMXU8H79H3.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "RW6CPEJMXU8H79H3.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4654" + }, + "appliesTo" : [ ] + }, + "RW6CPEJMXU8H79H3.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "RW6CPEJMXU8H79H3.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "JCAJXA8C736VK6KZ" : { + "JCAJXA8C736VK6KZ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "JCAJXA8C736VK6KZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JCAJXA8C736VK6KZ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "JCAJXA8C736VK6KZ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0690000000" + }, + "appliesTo" : [ ] + }, + "JCAJXA8C736VK6KZ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "JCAJXA8C736VK6KZ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9424" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "JCAJXA8C736VK6KZ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "JCAJXA8C736VK6KZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JCAJXA8C736VK6KZ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "JCAJXA8C736VK6KZ.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "JCAJXA8C736VK6KZ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "JCAJXA8C736VK6KZ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35921" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "JCAJXA8C736VK6KZ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "JCAJXA8C736VK6KZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JCAJXA8C736VK6KZ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "JCAJXA8C736VK6KZ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30024" + }, + "appliesTo" : [ ] + }, + "JCAJXA8C736VK6KZ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "JCAJXA8C736VK6KZ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JCAJXA8C736VK6KZ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "JCAJXA8C736VK6KZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JCAJXA8C736VK6KZ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "JCAJXA8C736VK6KZ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18325" + }, + "appliesTo" : [ ] + }, + "JCAJXA8C736VK6KZ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "JCAJXA8C736VK6KZ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "JCAJXA8C736VK6KZ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "JCAJXA8C736VK6KZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JCAJXA8C736VK6KZ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "JCAJXA8C736VK6KZ.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "JCAJXA8C736VK6KZ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "JCAJXA8C736VK6KZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JCAJXA8C736VK6KZ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "JCAJXA8C736VK6KZ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15953" + }, + "appliesTo" : [ ] + }, + "JCAJXA8C736VK6KZ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "JCAJXA8C736VK6KZ.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "JCAJXA8C736VK6KZ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "JCAJXA8C736VK6KZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JCAJXA8C736VK6KZ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "JCAJXA8C736VK6KZ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8218" + }, + "appliesTo" : [ ] + }, + "JCAJXA8C736VK6KZ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "JCAJXA8C736VK6KZ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "JCAJXA8C736VK6KZ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "JCAJXA8C736VK6KZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JCAJXA8C736VK6KZ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "JCAJXA8C736VK6KZ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16052" + }, + "appliesTo" : [ ] + }, + "JCAJXA8C736VK6KZ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "JCAJXA8C736VK6KZ.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JCAJXA8C736VK6KZ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "JCAJXA8C736VK6KZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JCAJXA8C736VK6KZ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "JCAJXA8C736VK6KZ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "JCAJXA8C736VK6KZ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "JCAJXA8C736VK6KZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JCAJXA8C736VK6KZ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "JCAJXA8C736VK6KZ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "JCAJXA8C736VK6KZ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "JCAJXA8C736VK6KZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JCAJXA8C736VK6KZ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "JCAJXA8C736VK6KZ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18416" + }, + "appliesTo" : [ ] + }, + "JCAJXA8C736VK6KZ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "JCAJXA8C736VK6KZ.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "JCAJXA8C736VK6KZ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "JCAJXA8C736VK6KZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JCAJXA8C736VK6KZ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "JCAJXA8C736VK6KZ.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "FZXWWWKE7AQGFDHX" : { + "FZXWWWKE7AQGFDHX.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "FZXWWWKE7AQGFDHX", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "FZXWWWKE7AQGFDHX.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "FZXWWWKE7AQGFDHX.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8409" + }, + "appliesTo" : [ ] + }, + "FZXWWWKE7AQGFDHX.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "FZXWWWKE7AQGFDHX.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FZXWWWKE7AQGFDHX.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "FZXWWWKE7AQGFDHX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "FZXWWWKE7AQGFDHX.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "FZXWWWKE7AQGFDHX.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1455" + }, + "appliesTo" : [ ] + }, + "FZXWWWKE7AQGFDHX.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "FZXWWWKE7AQGFDHX.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FZXWWWKE7AQGFDHX.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "FZXWWWKE7AQGFDHX", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "FZXWWWKE7AQGFDHX.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "FZXWWWKE7AQGFDHX.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2298" + }, + "appliesTo" : [ ] + }, + "FZXWWWKE7AQGFDHX.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "FZXWWWKE7AQGFDHX.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FZXWWWKE7AQGFDHX.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "FZXWWWKE7AQGFDHX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "FZXWWWKE7AQGFDHX.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "FZXWWWKE7AQGFDHX.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FZXWWWKE7AQGFDHX.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "FZXWWWKE7AQGFDHX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "FZXWWWKE7AQGFDHX.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "FZXWWWKE7AQGFDHX.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "FZXWWWKE7AQGFDHX.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "FZXWWWKE7AQGFDHX.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3748" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "KTZYT2QK3KRKX3XT" : { + "KTZYT2QK3KRKX3XT.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "KTZYT2QK3KRKX3XT", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "KTZYT2QK3KRKX3XT.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "KTZYT2QK3KRKX3XT.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "81195" + }, + "appliesTo" : [ ] + }, + "KTZYT2QK3KRKX3XT.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "KTZYT2QK3KRKX3XT.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KTZYT2QK3KRKX3XT.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "KTZYT2QK3KRKX3XT", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "KTZYT2QK3KRKX3XT.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "KTZYT2QK3KRKX3XT.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.6500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KTZYT2QK3KRKX3XT.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "KTZYT2QK3KRKX3XT", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "KTZYT2QK3KRKX3XT.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "KTZYT2QK3KRKX3XT.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "KTZYT2QK3KRKX3XT.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "KTZYT2QK3KRKX3XT.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "160538" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KTZYT2QK3KRKX3XT.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "KTZYT2QK3KRKX3XT", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "KTZYT2QK3KRKX3XT.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "KTZYT2QK3KRKX3XT.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.0590000000" + }, + "appliesTo" : [ ] + }, + "KTZYT2QK3KRKX3XT.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "KTZYT2QK3KRKX3XT.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "106675" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KTZYT2QK3KRKX3XT.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "KTZYT2QK3KRKX3XT", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "KTZYT2QK3KRKX3XT.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "KTZYT2QK3KRKX3XT.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2020000000" + }, + "appliesTo" : [ ] + }, + "KTZYT2QK3KRKX3XT.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "KTZYT2QK3KRKX3XT.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "84158" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KTZYT2QK3KRKX3XT.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "KTZYT2QK3KRKX3XT", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "KTZYT2QK3KRKX3XT.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "KTZYT2QK3KRKX3XT.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.8260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KTZYT2QK3KRKX3XT.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "KTZYT2QK3KRKX3XT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KTZYT2QK3KRKX3XT.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "KTZYT2QK3KRKX3XT.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "11.0850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KTZYT2QK3KRKX3XT.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "KTZYT2QK3KRKX3XT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KTZYT2QK3KRKX3XT.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "KTZYT2QK3KRKX3XT.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46549" + }, + "appliesTo" : [ ] + }, + "KTZYT2QK3KRKX3XT.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "KTZYT2QK3KRKX3XT.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.3140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KTZYT2QK3KRKX3XT.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "KTZYT2QK3KRKX3XT", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "KTZYT2QK3KRKX3XT.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "KTZYT2QK3KRKX3XT.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.7990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KTZYT2QK3KRKX3XT.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "KTZYT2QK3KRKX3XT", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "KTZYT2QK3KRKX3XT.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "KTZYT2QK3KRKX3XT.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "209856" + }, + "appliesTo" : [ ] + }, + "KTZYT2QK3KRKX3XT.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "KTZYT2QK3KRKX3XT.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KTZYT2QK3KRKX3XT.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "KTZYT2QK3KRKX3XT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KTZYT2QK3KRKX3XT.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "KTZYT2QK3KRKX3XT.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "91493" + }, + "appliesTo" : [ ] + }, + "KTZYT2QK3KRKX3XT.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "KTZYT2QK3KRKX3XT.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KTZYT2QK3KRKX3XT.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "KTZYT2QK3KRKX3XT", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "KTZYT2QK3KRKX3XT.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "KTZYT2QK3KRKX3XT.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "41295" + }, + "appliesTo" : [ ] + }, + "KTZYT2QK3KRKX3XT.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "KTZYT2QK3KRKX3XT.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.7140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "X2XXBVJKW4AFD4PA" : { + "X2XXBVJKW4AFD4PA.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "X2XXBVJKW4AFD4PA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "X2XXBVJKW4AFD4PA.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "X2XXBVJKW4AFD4PA.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "X2XXBVJKW4AFD4PA.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "X2XXBVJKW4AFD4PA", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "X2XXBVJKW4AFD4PA.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "X2XXBVJKW4AFD4PA.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10378" + }, + "appliesTo" : [ ] + }, + "X2XXBVJKW4AFD4PA.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "X2XXBVJKW4AFD4PA.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "X2XXBVJKW4AFD4PA.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "X2XXBVJKW4AFD4PA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "X2XXBVJKW4AFD4PA.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "X2XXBVJKW4AFD4PA.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "X2XXBVJKW4AFD4PA.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "X2XXBVJKW4AFD4PA", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "X2XXBVJKW4AFD4PA.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "X2XXBVJKW4AFD4PA.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20313" + }, + "appliesTo" : [ ] + }, + "X2XXBVJKW4AFD4PA.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "X2XXBVJKW4AFD4PA.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "X2XXBVJKW4AFD4PA.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "X2XXBVJKW4AFD4PA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "X2XXBVJKW4AFD4PA.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "X2XXBVJKW4AFD4PA.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10919" + }, + "appliesTo" : [ ] + }, + "X2XXBVJKW4AFD4PA.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "X2XXBVJKW4AFD4PA.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "X2XXBVJKW4AFD4PA.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "X2XXBVJKW4AFD4PA", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "X2XXBVJKW4AFD4PA.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "X2XXBVJKW4AFD4PA.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7941" + }, + "appliesTo" : [ ] + }, + "X2XXBVJKW4AFD4PA.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "X2XXBVJKW4AFD4PA.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "X2XXBVJKW4AFD4PA.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "X2XXBVJKW4AFD4PA", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "X2XXBVJKW4AFD4PA.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "X2XXBVJKW4AFD4PA.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4570000000" + }, + "appliesTo" : [ ] + }, + "X2XXBVJKW4AFD4PA.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "X2XXBVJKW4AFD4PA.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4006" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "X2XXBVJKW4AFD4PA.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "X2XXBVJKW4AFD4PA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "X2XXBVJKW4AFD4PA.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "X2XXBVJKW4AFD4PA.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "X2XXBVJKW4AFD4PA.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "X2XXBVJKW4AFD4PA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X2XXBVJKW4AFD4PA.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "X2XXBVJKW4AFD4PA.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "X2XXBVJKW4AFD4PA.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "X2XXBVJKW4AFD4PA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X2XXBVJKW4AFD4PA.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "X2XXBVJKW4AFD4PA.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "X2XXBVJKW4AFD4PA.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "X2XXBVJKW4AFD4PA.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8487" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "X2XXBVJKW4AFD4PA.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "X2XXBVJKW4AFD4PA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "X2XXBVJKW4AFD4PA.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "X2XXBVJKW4AFD4PA.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "X2XXBVJKW4AFD4PA.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "X2XXBVJKW4AFD4PA.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21670" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "X2XXBVJKW4AFD4PA.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "X2XXBVJKW4AFD4PA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X2XXBVJKW4AFD4PA.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "X2XXBVJKW4AFD4PA.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4890000000" + }, + "appliesTo" : [ ] + }, + "X2XXBVJKW4AFD4PA.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "X2XXBVJKW4AFD4PA.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4285" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "3DKA632YPCBQAV5W" : { + "3DKA632YPCBQAV5W.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "3DKA632YPCBQAV5W", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "3DKA632YPCBQAV5W.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "3DKA632YPCBQAV5W.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14594" + }, + "appliesTo" : [ ] + }, + "3DKA632YPCBQAV5W.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "3DKA632YPCBQAV5W.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3DKA632YPCBQAV5W.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "3DKA632YPCBQAV5W", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "3DKA632YPCBQAV5W.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "3DKA632YPCBQAV5W.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9680" + }, + "appliesTo" : [ ] + }, + "3DKA632YPCBQAV5W.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "3DKA632YPCBQAV5W.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3DKA632YPCBQAV5W.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "3DKA632YPCBQAV5W", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "3DKA632YPCBQAV5W.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "3DKA632YPCBQAV5W.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3DKA632YPCBQAV5W.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "3DKA632YPCBQAV5W", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3DKA632YPCBQAV5W.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "3DKA632YPCBQAV5W.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27064" + }, + "appliesTo" : [ ] + }, + "3DKA632YPCBQAV5W.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "3DKA632YPCBQAV5W.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3DKA632YPCBQAV5W.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "3DKA632YPCBQAV5W", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "3DKA632YPCBQAV5W.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "3DKA632YPCBQAV5W.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "3DKA632YPCBQAV5W.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "3DKA632YPCBQAV5W.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "40073" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3DKA632YPCBQAV5W.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "3DKA632YPCBQAV5W", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "3DKA632YPCBQAV5W.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "3DKA632YPCBQAV5W.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3DKA632YPCBQAV5W.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "3DKA632YPCBQAV5W", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3DKA632YPCBQAV5W.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "3DKA632YPCBQAV5W.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3DKA632YPCBQAV5W.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "3DKA632YPCBQAV5W", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3DKA632YPCBQAV5W.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "3DKA632YPCBQAV5W.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5610000000" + }, + "appliesTo" : [ ] + }, + "3DKA632YPCBQAV5W.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "3DKA632YPCBQAV5W.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13676" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3DKA632YPCBQAV5W.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "3DKA632YPCBQAV5W", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "3DKA632YPCBQAV5W.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "3DKA632YPCBQAV5W.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26573" + }, + "appliesTo" : [ ] + }, + "3DKA632YPCBQAV5W.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "3DKA632YPCBQAV5W.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3DKA632YPCBQAV5W.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "3DKA632YPCBQAV5W", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "3DKA632YPCBQAV5W.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "3DKA632YPCBQAV5W.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30385" + }, + "appliesTo" : [ ] + }, + "3DKA632YPCBQAV5W.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "3DKA632YPCBQAV5W.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3DKA632YPCBQAV5W.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "3DKA632YPCBQAV5W", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "3DKA632YPCBQAV5W.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "3DKA632YPCBQAV5W.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19395" + }, + "appliesTo" : [ ] + }, + "3DKA632YPCBQAV5W.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "3DKA632YPCBQAV5W.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "5Q9H4XMF36Y7R6TM" : { + "5Q9H4XMF36Y7R6TM.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "5Q9H4XMF36Y7R6TM", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "5Q9H4XMF36Y7R6TM.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "5Q9H4XMF36Y7R6TM.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "5Q9H4XMF36Y7R6TM.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "5Q9H4XMF36Y7R6TM.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "387438" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "5Q9H4XMF36Y7R6TM.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "5Q9H4XMF36Y7R6TM", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "5Q9H4XMF36Y7R6TM.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "5Q9H4XMF36Y7R6TM.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "190064" + }, + "appliesTo" : [ ] + }, + "5Q9H4XMF36Y7R6TM.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "5Q9H4XMF36Y7R6TM.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.2320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5Q9H4XMF36Y7R6TM.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "5Q9H4XMF36Y7R6TM", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "5Q9H4XMF36Y7R6TM.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "5Q9H4XMF36Y7R6TM.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.9890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "5Q9H4XMF36Y7R6TM.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "5Q9H4XMF36Y7R6TM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5Q9H4XMF36Y7R6TM.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "5Q9H4XMF36Y7R6TM.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "66236" + }, + "appliesTo" : [ ] + }, + "5Q9H4XMF36Y7R6TM.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "5Q9H4XMF36Y7R6TM.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "5Q9H4XMF36Y7R6TM.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "5Q9H4XMF36Y7R6TM", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "5Q9H4XMF36Y7R6TM.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "5Q9H4XMF36Y7R6TM.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.1580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "5Q9H4XMF36Y7R6TM.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "5Q9H4XMF36Y7R6TM", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "5Q9H4XMF36Y7R6TM.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "5Q9H4XMF36Y7R6TM.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4560000000" + }, + "appliesTo" : [ ] + }, + "5Q9H4XMF36Y7R6TM.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "5Q9H4XMF36Y7R6TM.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "65318" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5Q9H4XMF36Y7R6TM.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "5Q9H4XMF36Y7R6TM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5Q9H4XMF36Y7R6TM.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "5Q9H4XMF36Y7R6TM.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "132184" + }, + "appliesTo" : [ ] + }, + "5Q9H4XMF36Y7R6TM.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "5Q9H4XMF36Y7R6TM.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "5Q9H4XMF36Y7R6TM.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "5Q9H4XMF36Y7R6TM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5Q9H4XMF36Y7R6TM.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "5Q9H4XMF36Y7R6TM.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.2050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "5Q9H4XMF36Y7R6TM.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "5Q9H4XMF36Y7R6TM", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "5Q9H4XMF36Y7R6TM.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "5Q9H4XMF36Y7R6TM.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "194060" + }, + "appliesTo" : [ ] + }, + "5Q9H4XMF36Y7R6TM.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "5Q9H4XMF36Y7R6TM.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "5Q9H4XMF36Y7R6TM.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "5Q9H4XMF36Y7R6TM", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "5Q9H4XMF36Y7R6TM.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "5Q9H4XMF36Y7R6TM.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "130383" + }, + "appliesTo" : [ ] + }, + "5Q9H4XMF36Y7R6TM.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "5Q9H4XMF36Y7R6TM.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5Q9H4XMF36Y7R6TM.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "5Q9H4XMF36Y7R6TM", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "5Q9H4XMF36Y7R6TM.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "5Q9H4XMF36Y7R6TM.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "378562" + }, + "appliesTo" : [ ] + }, + "5Q9H4XMF36Y7R6TM.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "5Q9H4XMF36Y7R6TM.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "9YBEBPDN4MSDTQMG" : { + "9YBEBPDN4MSDTQMG.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "9YBEBPDN4MSDTQMG", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "9YBEBPDN4MSDTQMG.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "9YBEBPDN4MSDTQMG.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3251" + }, + "appliesTo" : [ ] + }, + "9YBEBPDN4MSDTQMG.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "9YBEBPDN4MSDTQMG.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9YBEBPDN4MSDTQMG.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "9YBEBPDN4MSDTQMG", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "9YBEBPDN4MSDTQMG.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "9YBEBPDN4MSDTQMG.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6317" + }, + "appliesTo" : [ ] + }, + "9YBEBPDN4MSDTQMG.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "9YBEBPDN4MSDTQMG.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9YBEBPDN4MSDTQMG.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "9YBEBPDN4MSDTQMG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9YBEBPDN4MSDTQMG.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "9YBEBPDN4MSDTQMG.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7722000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9YBEBPDN4MSDTQMG.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "9YBEBPDN4MSDTQMG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9YBEBPDN4MSDTQMG.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "9YBEBPDN4MSDTQMG.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6123000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9YBEBPDN4MSDTQMG.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "9YBEBPDN4MSDTQMG", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "9YBEBPDN4MSDTQMG.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "9YBEBPDN4MSDTQMG.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6502" + }, + "appliesTo" : [ ] + }, + "9YBEBPDN4MSDTQMG.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "9YBEBPDN4MSDTQMG.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9YBEBPDN4MSDTQMG.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "9YBEBPDN4MSDTQMG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9YBEBPDN4MSDTQMG.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "9YBEBPDN4MSDTQMG.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2812000000" + }, + "appliesTo" : [ ] + }, + "9YBEBPDN4MSDTQMG.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "9YBEBPDN4MSDTQMG.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7400" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9YBEBPDN4MSDTQMG.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "9YBEBPDN4MSDTQMG", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "9YBEBPDN4MSDTQMG.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "9YBEBPDN4MSDTQMG.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12255" + }, + "appliesTo" : [ ] + }, + "9YBEBPDN4MSDTQMG.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "9YBEBPDN4MSDTQMG.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9YBEBPDN4MSDTQMG.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "9YBEBPDN4MSDTQMG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9YBEBPDN4MSDTQMG.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "9YBEBPDN4MSDTQMG.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5367000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9YBEBPDN4MSDTQMG.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "9YBEBPDN4MSDTQMG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9YBEBPDN4MSDTQMG.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "9YBEBPDN4MSDTQMG.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14508" + }, + "appliesTo" : [ ] + }, + "9YBEBPDN4MSDTQMG.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "9YBEBPDN4MSDTQMG.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9YBEBPDN4MSDTQMG.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "9YBEBPDN4MSDTQMG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9YBEBPDN4MSDTQMG.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "9YBEBPDN4MSDTQMG.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7240" + }, + "appliesTo" : [ ] + }, + "9YBEBPDN4MSDTQMG.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "9YBEBPDN4MSDTQMG.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9YBEBPDN4MSDTQMG.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "9YBEBPDN4MSDTQMG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9YBEBPDN4MSDTQMG.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "9YBEBPDN4MSDTQMG.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8831000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9YBEBPDN4MSDTQMG.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "9YBEBPDN4MSDTQMG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9YBEBPDN4MSDTQMG.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "9YBEBPDN4MSDTQMG.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3722" + }, + "appliesTo" : [ ] + }, + "9YBEBPDN4MSDTQMG.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "9YBEBPDN4MSDTQMG.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4178000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "AB34GJVVFDYBBGDJ" : { + "AB34GJVVFDYBBGDJ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "AB34GJVVFDYBBGDJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "AB34GJVVFDYBBGDJ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "AB34GJVVFDYBBGDJ.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2200000000" + }, + "appliesTo" : [ ] + }, + "AB34GJVVFDYBBGDJ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "AB34GJVVFDYBBGDJ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2031" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AB34GJVVFDYBBGDJ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "AB34GJVVFDYBBGDJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "AB34GJVVFDYBBGDJ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "AB34GJVVFDYBBGDJ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9207" + }, + "appliesTo" : [ ] + }, + "AB34GJVVFDYBBGDJ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "AB34GJVVFDYBBGDJ.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "AB34GJVVFDYBBGDJ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "AB34GJVVFDYBBGDJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "AB34GJVVFDYBBGDJ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "AB34GJVVFDYBBGDJ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "AB34GJVVFDYBBGDJ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "AB34GJVVFDYBBGDJ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7343" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AB34GJVVFDYBBGDJ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "AB34GJVVFDYBBGDJ", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "AB34GJVVFDYBBGDJ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "AB34GJVVFDYBBGDJ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "AB34GJVVFDYBBGDJ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "AB34GJVVFDYBBGDJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "AB34GJVVFDYBBGDJ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "AB34GJVVFDYBBGDJ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "AB34GJVVFDYBBGDJ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "AB34GJVVFDYBBGDJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AB34GJVVFDYBBGDJ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "AB34GJVVFDYBBGDJ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3635" + }, + "appliesTo" : [ ] + }, + "AB34GJVVFDYBBGDJ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "AB34GJVVFDYBBGDJ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "AB34GJVVFDYBBGDJ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "AB34GJVVFDYBBGDJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "AB34GJVVFDYBBGDJ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "AB34GJVVFDYBBGDJ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1304" + }, + "appliesTo" : [ ] + }, + "AB34GJVVFDYBBGDJ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "AB34GJVVFDYBBGDJ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AB34GJVVFDYBBGDJ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "AB34GJVVFDYBBGDJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "AB34GJVVFDYBBGDJ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "AB34GJVVFDYBBGDJ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3286" + }, + "appliesTo" : [ ] + }, + "AB34GJVVFDYBBGDJ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "AB34GJVVFDYBBGDJ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AB34GJVVFDYBBGDJ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "AB34GJVVFDYBBGDJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AB34GJVVFDYBBGDJ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "AB34GJVVFDYBBGDJ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2750000000" + }, + "appliesTo" : [ ] + }, + "AB34GJVVFDYBBGDJ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "AB34GJVVFDYBBGDJ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1273" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "AB34GJVVFDYBBGDJ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "AB34GJVVFDYBBGDJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AB34GJVVFDYBBGDJ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "AB34GJVVFDYBBGDJ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "AB34GJVVFDYBBGDJ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "AB34GJVVFDYBBGDJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "AB34GJVVFDYBBGDJ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "AB34GJVVFDYBBGDJ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3521" + }, + "appliesTo" : [ ] + }, + "AB34GJVVFDYBBGDJ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "AB34GJVVFDYBBGDJ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "WMZMV9VFMDY39S43" : { + "WMZMV9VFMDY39S43.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "WMZMV9VFMDY39S43", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "WMZMV9VFMDY39S43.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "WMZMV9VFMDY39S43.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "WMZMV9VFMDY39S43.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "WMZMV9VFMDY39S43.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "245350" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WMZMV9VFMDY39S43.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "WMZMV9VFMDY39S43", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "WMZMV9VFMDY39S43.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "WMZMV9VFMDY39S43.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "141440" + }, + "appliesTo" : [ ] + }, + "WMZMV9VFMDY39S43.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "WMZMV9VFMDY39S43.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.3820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WMZMV9VFMDY39S43.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "WMZMV9VFMDY39S43", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "WMZMV9VFMDY39S43.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "WMZMV9VFMDY39S43.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.2880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "WMZMV9VFMDY39S43.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "WMZMV9VFMDY39S43", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "WMZMV9VFMDY39S43.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "WMZMV9VFMDY39S43.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "11.3900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WMZMV9VFMDY39S43.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "WMZMV9VFMDY39S43", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WMZMV9VFMDY39S43.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "WMZMV9VFMDY39S43.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "118196" + }, + "appliesTo" : [ ] + }, + "WMZMV9VFMDY39S43.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "WMZMV9VFMDY39S43.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WMZMV9VFMDY39S43.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "WMZMV9VFMDY39S43", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "WMZMV9VFMDY39S43.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "WMZMV9VFMDY39S43.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "278769" + }, + "appliesTo" : [ ] + }, + "WMZMV9VFMDY39S43.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "WMZMV9VFMDY39S43.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WMZMV9VFMDY39S43.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "WMZMV9VFMDY39S43", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "WMZMV9VFMDY39S43.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "WMZMV9VFMDY39S43.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.1520000000" + }, + "appliesTo" : [ ] + }, + "WMZMV9VFMDY39S43.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "WMZMV9VFMDY39S43.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "53892" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WMZMV9VFMDY39S43.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "WMZMV9VFMDY39S43", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "WMZMV9VFMDY39S43.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "WMZMV9VFMDY39S43.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.7720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "WMZMV9VFMDY39S43.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "WMZMV9VFMDY39S43", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WMZMV9VFMDY39S43.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "WMZMV9VFMDY39S43.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.2460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WMZMV9VFMDY39S43.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "WMZMV9VFMDY39S43", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WMZMV9VFMDY39S43.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "WMZMV9VFMDY39S43.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.8540000000" + }, + "appliesTo" : [ ] + }, + "WMZMV9VFMDY39S43.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "WMZMV9VFMDY39S43.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "60041" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WMZMV9VFMDY39S43.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "WMZMV9VFMDY39S43", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "WMZMV9VFMDY39S43.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "WMZMV9VFMDY39S43.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "106143" + }, + "appliesTo" : [ ] + }, + "WMZMV9VFMDY39S43.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "WMZMV9VFMDY39S43.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WMZMV9VFMDY39S43.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "WMZMV9VFMDY39S43", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "WMZMV9VFMDY39S43.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "WMZMV9VFMDY39S43.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.8720000000" + }, + "appliesTo" : [ ] + }, + "WMZMV9VFMDY39S43.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "WMZMV9VFMDY39S43.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "128036" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "H8WYYS7YF6HH44J2" : { + "H8WYYS7YF6HH44J2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "H8WYYS7YF6HH44J2", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "H8WYYS7YF6HH44J2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "H8WYYS7YF6HH44J2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "761" + }, + "appliesTo" : [ ] + }, + "H8WYYS7YF6HH44J2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "H8WYYS7YF6HH44J2.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "H8WYYS7YF6HH44J2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "H8WYYS7YF6HH44J2", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "H8WYYS7YF6HH44J2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "H8WYYS7YF6HH44J2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "120" + }, + "appliesTo" : [ ] + }, + "H8WYYS7YF6HH44J2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "H8WYYS7YF6HH44J2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0737000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "H8WYYS7YF6HH44J2.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "H8WYYS7YF6HH44J2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H8WYYS7YF6HH44J2.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "H8WYYS7YF6HH44J2.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "796" + }, + "appliesTo" : [ ] + }, + "H8WYYS7YF6HH44J2.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "H8WYYS7YF6HH44J2.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "H8WYYS7YF6HH44J2.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "H8WYYS7YF6HH44J2", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "H8WYYS7YF6HH44J2.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "H8WYYS7YF6HH44J2.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "280" + }, + "appliesTo" : [ ] + }, + "H8WYYS7YF6HH44J2.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "H8WYYS7YF6HH44J2.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0707000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "H8WYYS7YF6HH44J2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "H8WYYS7YF6HH44J2", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "H8WYYS7YF6HH44J2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "H8WYYS7YF6HH44J2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2035" + }, + "appliesTo" : [ ] + }, + "H8WYYS7YF6HH44J2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "H8WYYS7YF6HH44J2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "H8WYYS7YF6HH44J2.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "H8WYYS7YF6HH44J2", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "H8WYYS7YF6HH44J2.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "H8WYYS7YF6HH44J2.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0831000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "H8WYYS7YF6HH44J2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "H8WYYS7YF6HH44J2", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "H8WYYS7YF6HH44J2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "H8WYYS7YF6HH44J2.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0887000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "H8WYYS7YF6HH44J2.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "H8WYYS7YF6HH44J2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H8WYYS7YF6HH44J2.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "H8WYYS7YF6HH44J2.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "138" + }, + "appliesTo" : [ ] + }, + "H8WYYS7YF6HH44J2.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "H8WYYS7YF6HH44J2.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0757000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "H8WYYS7YF6HH44J2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "H8WYYS7YF6HH44J2", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "H8WYYS7YF6HH44J2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "H8WYYS7YF6HH44J2.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0693000000" + }, + "appliesTo" : [ ] + }, + "H8WYYS7YF6HH44J2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "H8WYYS7YF6HH44J2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "244" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "H8WYYS7YF6HH44J2.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "H8WYYS7YF6HH44J2", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "H8WYYS7YF6HH44J2.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "H8WYYS7YF6HH44J2.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2127" + }, + "appliesTo" : [ ] + }, + "H8WYYS7YF6HH44J2.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "H8WYYS7YF6HH44J2.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "H8WYYS7YF6HH44J2.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "H8WYYS7YF6HH44J2", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "H8WYYS7YF6HH44J2.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "H8WYYS7YF6HH44J2.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "H8WYYS7YF6HH44J2.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "H8WYYS7YF6HH44J2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H8WYYS7YF6HH44J2.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "H8WYYS7YF6HH44J2.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0931000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "4Q997J8DQYG2634Z" : { + "4Q997J8DQYG2634Z.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "4Q997J8DQYG2634Z", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "4Q997J8DQYG2634Z.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "4Q997J8DQYG2634Z.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15484" + }, + "appliesTo" : [ ] + }, + "4Q997J8DQYG2634Z.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "4Q997J8DQYG2634Z.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4Q997J8DQYG2634Z.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "4Q997J8DQYG2634Z", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "4Q997J8DQYG2634Z.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "4Q997J8DQYG2634Z.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "4Q997J8DQYG2634Z.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "4Q997J8DQYG2634Z", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "4Q997J8DQYG2634Z.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "4Q997J8DQYG2634Z.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "36402" + }, + "appliesTo" : [ ] + }, + "4Q997J8DQYG2634Z.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "4Q997J8DQYG2634Z.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4Q997J8DQYG2634Z.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "4Q997J8DQYG2634Z", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "4Q997J8DQYG2634Z.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "4Q997J8DQYG2634Z.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15233" + }, + "appliesTo" : [ ] + }, + "4Q997J8DQYG2634Z.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "4Q997J8DQYG2634Z.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4Q997J8DQYG2634Z.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "4Q997J8DQYG2634Z", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "4Q997J8DQYG2634Z.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "4Q997J8DQYG2634Z.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6217" + }, + "appliesTo" : [ ] + }, + "4Q997J8DQYG2634Z.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "4Q997J8DQYG2634Z.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "D35U33PKHD4MZRB5" : { + "D35U33PKHD4MZRB5.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "D35U33PKHD4MZRB5", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "D35U33PKHD4MZRB5.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "D35U33PKHD4MZRB5.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "D35U33PKHD4MZRB5.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "D35U33PKHD4MZRB5", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "D35U33PKHD4MZRB5.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "D35U33PKHD4MZRB5.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0940000000" + }, + "appliesTo" : [ ] + }, + "D35U33PKHD4MZRB5.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "D35U33PKHD4MZRB5.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2468" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "D35U33PKHD4MZRB5.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "D35U33PKHD4MZRB5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "D35U33PKHD4MZRB5.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "D35U33PKHD4MZRB5.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2304" + }, + "appliesTo" : [ ] + }, + "D35U33PKHD4MZRB5.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "D35U33PKHD4MZRB5.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "D35U33PKHD4MZRB5.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "D35U33PKHD4MZRB5", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "D35U33PKHD4MZRB5.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "D35U33PKHD4MZRB5.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4840" + }, + "appliesTo" : [ ] + }, + "D35U33PKHD4MZRB5.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "D35U33PKHD4MZRB5.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "D35U33PKHD4MZRB5.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "D35U33PKHD4MZRB5", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "D35U33PKHD4MZRB5.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "D35U33PKHD4MZRB5.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "D35U33PKHD4MZRB5.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "D35U33PKHD4MZRB5", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "D35U33PKHD4MZRB5.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "D35U33PKHD4MZRB5.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4162" + }, + "appliesTo" : [ ] + }, + "D35U33PKHD4MZRB5.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "D35U33PKHD4MZRB5.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "D35U33PKHD4MZRB5.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "D35U33PKHD4MZRB5", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "D35U33PKHD4MZRB5.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "D35U33PKHD4MZRB5.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2031" + }, + "appliesTo" : [ ] + }, + "D35U33PKHD4MZRB5.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "D35U33PKHD4MZRB5.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "D35U33PKHD4MZRB5.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "D35U33PKHD4MZRB5", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "D35U33PKHD4MZRB5.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "D35U33PKHD4MZRB5.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2197" + }, + "appliesTo" : [ ] + }, + "D35U33PKHD4MZRB5.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "D35U33PKHD4MZRB5.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "D35U33PKHD4MZRB5.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "D35U33PKHD4MZRB5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "D35U33PKHD4MZRB5.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "D35U33PKHD4MZRB5.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "D35U33PKHD4MZRB5.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "D35U33PKHD4MZRB5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "D35U33PKHD4MZRB5.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "D35U33PKHD4MZRB5.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1204" + }, + "appliesTo" : [ ] + }, + "D35U33PKHD4MZRB5.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "D35U33PKHD4MZRB5.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "D35U33PKHD4MZRB5.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "D35U33PKHD4MZRB5", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "D35U33PKHD4MZRB5.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "D35U33PKHD4MZRB5.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1064" + }, + "appliesTo" : [ ] + }, + "D35U33PKHD4MZRB5.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "D35U33PKHD4MZRB5.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "D35U33PKHD4MZRB5.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "D35U33PKHD4MZRB5", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "D35U33PKHD4MZRB5.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "D35U33PKHD4MZRB5.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "8X7RVDXN67YREJTH" : { + "8X7RVDXN67YREJTH.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "8X7RVDXN67YREJTH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8X7RVDXN67YREJTH.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "8X7RVDXN67YREJTH.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8X7RVDXN67YREJTH.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "8X7RVDXN67YREJTH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8X7RVDXN67YREJTH.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "8X7RVDXN67YREJTH.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1897" + }, + "appliesTo" : [ ] + }, + "8X7RVDXN67YREJTH.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "8X7RVDXN67YREJTH.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8X7RVDXN67YREJTH.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "8X7RVDXN67YREJTH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8X7RVDXN67YREJTH.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "8X7RVDXN67YREJTH.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2225" + }, + "appliesTo" : [ ] + }, + "8X7RVDXN67YREJTH.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "8X7RVDXN67YREJTH.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8X7RVDXN67YREJTH.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "8X7RVDXN67YREJTH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8X7RVDXN67YREJTH.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "8X7RVDXN67YREJTH.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8X7RVDXN67YREJTH.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "8X7RVDXN67YREJTH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8X7RVDXN67YREJTH.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "8X7RVDXN67YREJTH.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "965" + }, + "appliesTo" : [ ] + }, + "8X7RVDXN67YREJTH.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "8X7RVDXN67YREJTH.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8X7RVDXN67YREJTH.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "8X7RVDXN67YREJTH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8X7RVDXN67YREJTH.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "8X7RVDXN67YREJTH.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0380000000" + }, + "appliesTo" : [ ] + }, + "8X7RVDXN67YREJTH.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "8X7RVDXN67YREJTH.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1001" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8X7RVDXN67YREJTH.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "8X7RVDXN67YREJTH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8X7RVDXN67YREJTH.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "8X7RVDXN67YREJTH.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1133" + }, + "appliesTo" : [ ] + }, + "8X7RVDXN67YREJTH.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "8X7RVDXN67YREJTH.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8X7RVDXN67YREJTH.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "8X7RVDXN67YREJTH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8X7RVDXN67YREJTH.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "8X7RVDXN67YREJTH.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8X7RVDXN67YREJTH.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "8X7RVDXN67YREJTH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8X7RVDXN67YREJTH.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "8X7RVDXN67YREJTH.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "558" + }, + "appliesTo" : [ ] + }, + "8X7RVDXN67YREJTH.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "8X7RVDXN67YREJTH.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8X7RVDXN67YREJTH.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "8X7RVDXN67YREJTH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8X7RVDXN67YREJTH.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "8X7RVDXN67YREJTH.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8X7RVDXN67YREJTH.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "8X7RVDXN67YREJTH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8X7RVDXN67YREJTH.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "8X7RVDXN67YREJTH.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1096" + }, + "appliesTo" : [ ] + }, + "8X7RVDXN67YREJTH.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "8X7RVDXN67YREJTH.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8X7RVDXN67YREJTH.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "8X7RVDXN67YREJTH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8X7RVDXN67YREJTH.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "8X7RVDXN67YREJTH.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "491" + }, + "appliesTo" : [ ] + }, + "8X7RVDXN67YREJTH.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "8X7RVDXN67YREJTH.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "CMNW6M9D7DPHUTDD" : { + "CMNW6M9D7DPHUTDD.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "CMNW6M9D7DPHUTDD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CMNW6M9D7DPHUTDD.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "CMNW6M9D7DPHUTDD.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CMNW6M9D7DPHUTDD.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "CMNW6M9D7DPHUTDD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CMNW6M9D7DPHUTDD.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "CMNW6M9D7DPHUTDD.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1788" + }, + "appliesTo" : [ ] + }, + "CMNW6M9D7DPHUTDD.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "CMNW6M9D7DPHUTDD.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CMNW6M9D7DPHUTDD.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "CMNW6M9D7DPHUTDD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CMNW6M9D7DPHUTDD.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "CMNW6M9D7DPHUTDD.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6973" + }, + "appliesTo" : [ ] + }, + "CMNW6M9D7DPHUTDD.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "CMNW6M9D7DPHUTDD.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CMNW6M9D7DPHUTDD.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "CMNW6M9D7DPHUTDD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CMNW6M9D7DPHUTDD.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "CMNW6M9D7DPHUTDD.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2963000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CMNW6M9D7DPHUTDD.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "CMNW6M9D7DPHUTDD", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "CMNW6M9D7DPHUTDD.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "CMNW6M9D7DPHUTDD.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1574" + }, + "appliesTo" : [ ] + }, + "CMNW6M9D7DPHUTDD.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "CMNW6M9D7DPHUTDD.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CMNW6M9D7DPHUTDD.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "CMNW6M9D7DPHUTDD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CMNW6M9D7DPHUTDD.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "CMNW6M9D7DPHUTDD.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3449" + }, + "appliesTo" : [ ] + }, + "CMNW6M9D7DPHUTDD.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "CMNW6M9D7DPHUTDD.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CMNW6M9D7DPHUTDD.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "CMNW6M9D7DPHUTDD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CMNW6M9D7DPHUTDD.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "CMNW6M9D7DPHUTDD.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CMNW6M9D7DPHUTDD.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "CMNW6M9D7DPHUTDD", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "CMNW6M9D7DPHUTDD.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "CMNW6M9D7DPHUTDD.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5951" + }, + "appliesTo" : [ ] + }, + "CMNW6M9D7DPHUTDD.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "CMNW6M9D7DPHUTDD.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CMNW6M9D7DPHUTDD.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "CMNW6M9D7DPHUTDD", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "CMNW6M9D7DPHUTDD.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "CMNW6M9D7DPHUTDD.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3030" + }, + "appliesTo" : [ ] + }, + "CMNW6M9D7DPHUTDD.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "CMNW6M9D7DPHUTDD.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CMNW6M9D7DPHUTDD.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "CMNW6M9D7DPHUTDD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CMNW6M9D7DPHUTDD.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "CMNW6M9D7DPHUTDD.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1349000000" + }, + "appliesTo" : [ ] + }, + "CMNW6M9D7DPHUTDD.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "CMNW6M9D7DPHUTDD.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3556" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CMNW6M9D7DPHUTDD.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "CMNW6M9D7DPHUTDD", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "CMNW6M9D7DPHUTDD.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "CMNW6M9D7DPHUTDD.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3148" + }, + "appliesTo" : [ ] + }, + "CMNW6M9D7DPHUTDD.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "CMNW6M9D7DPHUTDD.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CMNW6M9D7DPHUTDD.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "CMNW6M9D7DPHUTDD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CMNW6M9D7DPHUTDD.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "CMNW6M9D7DPHUTDD.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4194000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "J6U6GMEFVH686HBN" : { + "J6U6GMEFVH686HBN.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "J6U6GMEFVH686HBN", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "J6U6GMEFVH686HBN.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "J6U6GMEFVH686HBN.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1466" + }, + "appliesTo" : [ ] + }, + "J6U6GMEFVH686HBN.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "J6U6GMEFVH686HBN.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "J6U6GMEFVH686HBN.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "J6U6GMEFVH686HBN", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "J6U6GMEFVH686HBN.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "J6U6GMEFVH686HBN.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "815" + }, + "appliesTo" : [ ] + }, + "J6U6GMEFVH686HBN.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "J6U6GMEFVH686HBN.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "J6U6GMEFVH686HBN.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "J6U6GMEFVH686HBN", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "J6U6GMEFVH686HBN.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "J6U6GMEFVH686HBN.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "719" + }, + "appliesTo" : [ ] + }, + "J6U6GMEFVH686HBN.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "J6U6GMEFVH686HBN.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "J6U6GMEFVH686HBN.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "J6U6GMEFVH686HBN", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "J6U6GMEFVH686HBN.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "J6U6GMEFVH686HBN.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "J6U6GMEFVH686HBN.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "J6U6GMEFVH686HBN", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "J6U6GMEFVH686HBN.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "J6U6GMEFVH686HBN.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0410000000" + }, + "appliesTo" : [ ] + }, + "J6U6GMEFVH686HBN.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "J6U6GMEFVH686HBN.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "473" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "YT5JTCAUXT587YW7" : { + "YT5JTCAUXT587YW7.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YT5JTCAUXT587YW7", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "YT5JTCAUXT587YW7.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YT5JTCAUXT587YW7.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1050000000" + }, + "appliesTo" : [ ] + }, + "YT5JTCAUXT587YW7.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YT5JTCAUXT587YW7.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "463" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YT5JTCAUXT587YW7.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YT5JTCAUXT587YW7", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YT5JTCAUXT587YW7.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YT5JTCAUXT587YW7.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1363" + }, + "appliesTo" : [ ] + }, + "YT5JTCAUXT587YW7.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YT5JTCAUXT587YW7.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YT5JTCAUXT587YW7.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YT5JTCAUXT587YW7", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YT5JTCAUXT587YW7.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YT5JTCAUXT587YW7.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YT5JTCAUXT587YW7.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "YT5JTCAUXT587YW7", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YT5JTCAUXT587YW7.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "YT5JTCAUXT587YW7.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YT5JTCAUXT587YW7.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YT5JTCAUXT587YW7", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YT5JTCAUXT587YW7.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YT5JTCAUXT587YW7.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "740" + }, + "appliesTo" : [ ] + }, + "YT5JTCAUXT587YW7.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YT5JTCAUXT587YW7.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YT5JTCAUXT587YW7.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "YT5JTCAUXT587YW7", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "YT5JTCAUXT587YW7.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "YT5JTCAUXT587YW7.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3854" + }, + "appliesTo" : [ ] + }, + "YT5JTCAUXT587YW7.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "YT5JTCAUXT587YW7.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YT5JTCAUXT587YW7.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YT5JTCAUXT587YW7", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YT5JTCAUXT587YW7.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YT5JTCAUXT587YW7.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3140" + }, + "appliesTo" : [ ] + }, + "YT5JTCAUXT587YW7.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YT5JTCAUXT587YW7.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YT5JTCAUXT587YW7.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "YT5JTCAUXT587YW7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YT5JTCAUXT587YW7.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "YT5JTCAUXT587YW7.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1418" + }, + "appliesTo" : [ ] + }, + "YT5JTCAUXT587YW7.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "YT5JTCAUXT587YW7.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YT5JTCAUXT587YW7.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "YT5JTCAUXT587YW7", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "YT5JTCAUXT587YW7.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "YT5JTCAUXT587YW7.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1010000000" + }, + "appliesTo" : [ ] + }, + "YT5JTCAUXT587YW7.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "YT5JTCAUXT587YW7.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1250" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YT5JTCAUXT587YW7.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "YT5JTCAUXT587YW7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YT5JTCAUXT587YW7.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "YT5JTCAUXT587YW7.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "455" + }, + "appliesTo" : [ ] + }, + "YT5JTCAUXT587YW7.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "YT5JTCAUXT587YW7.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YT5JTCAUXT587YW7.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "YT5JTCAUXT587YW7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YT5JTCAUXT587YW7.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "YT5JTCAUXT587YW7.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "7GGEQ9QF87XSSGPH" : { + "7GGEQ9QF87XSSGPH.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "7GGEQ9QF87XSSGPH", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7GGEQ9QF87XSSGPH.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "7GGEQ9QF87XSSGPH.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7GGEQ9QF87XSSGPH.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "7GGEQ9QF87XSSGPH", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7GGEQ9QF87XSSGPH.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "7GGEQ9QF87XSSGPH.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0620000000" + }, + "appliesTo" : [ ] + }, + "7GGEQ9QF87XSSGPH.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "7GGEQ9QF87XSSGPH.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1505" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7GGEQ9QF87XSSGPH.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "7GGEQ9QF87XSSGPH", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7GGEQ9QF87XSSGPH.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "7GGEQ9QF87XSSGPH.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3908" + }, + "appliesTo" : [ ] + }, + "7GGEQ9QF87XSSGPH.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "7GGEQ9QF87XSSGPH.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7GGEQ9QF87XSSGPH.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "7GGEQ9QF87XSSGPH", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7GGEQ9QF87XSSGPH.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "7GGEQ9QF87XSSGPH.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7GGEQ9QF87XSSGPH.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "7GGEQ9QF87XSSGPH", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7GGEQ9QF87XSSGPH.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "7GGEQ9QF87XSSGPH.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2935" + }, + "appliesTo" : [ ] + }, + "7GGEQ9QF87XSSGPH.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "7GGEQ9QF87XSSGPH.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7GGEQ9QF87XSSGPH.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "7GGEQ9QF87XSSGPH", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7GGEQ9QF87XSSGPH.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "7GGEQ9QF87XSSGPH.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "911" + }, + "appliesTo" : [ ] + }, + "7GGEQ9QF87XSSGPH.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "7GGEQ9QF87XSSGPH.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7GGEQ9QF87XSSGPH.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "7GGEQ9QF87XSSGPH", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7GGEQ9QF87XSSGPH.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "7GGEQ9QF87XSSGPH.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1496" + }, + "appliesTo" : [ ] + }, + "7GGEQ9QF87XSSGPH.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "7GGEQ9QF87XSSGPH.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7GGEQ9QF87XSSGPH.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "7GGEQ9QF87XSSGPH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7GGEQ9QF87XSSGPH.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "7GGEQ9QF87XSSGPH.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "7GGEQ9QF87XSSGPH.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "7GGEQ9QF87XSSGPH.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1663" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7GGEQ9QF87XSSGPH.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "7GGEQ9QF87XSSGPH", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7GGEQ9QF87XSSGPH.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "7GGEQ9QF87XSSGPH.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2323" + }, + "appliesTo" : [ ] + }, + "7GGEQ9QF87XSSGPH.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "7GGEQ9QF87XSSGPH.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7GGEQ9QF87XSSGPH.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "7GGEQ9QF87XSSGPH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7GGEQ9QF87XSSGPH.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "7GGEQ9QF87XSSGPH.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "876" + }, + "appliesTo" : [ ] + }, + "7GGEQ9QF87XSSGPH.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "7GGEQ9QF87XSSGPH.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7GGEQ9QF87XSSGPH.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "7GGEQ9QF87XSSGPH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7GGEQ9QF87XSSGPH.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "7GGEQ9QF87XSSGPH.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "KQTYTC2BEFA3UQD7" : { + "KQTYTC2BEFA3UQD7.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "KQTYTC2BEFA3UQD7", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "KQTYTC2BEFA3UQD7.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "KQTYTC2BEFA3UQD7.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1777" + }, + "appliesTo" : [ ] + }, + "KQTYTC2BEFA3UQD7.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "KQTYTC2BEFA3UQD7.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KQTYTC2BEFA3UQD7.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "KQTYTC2BEFA3UQD7", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "KQTYTC2BEFA3UQD7.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "KQTYTC2BEFA3UQD7.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3482" + }, + "appliesTo" : [ ] + }, + "KQTYTC2BEFA3UQD7.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "KQTYTC2BEFA3UQD7.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KQTYTC2BEFA3UQD7.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "KQTYTC2BEFA3UQD7", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "KQTYTC2BEFA3UQD7.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "KQTYTC2BEFA3UQD7.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KQTYTC2BEFA3UQD7.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "KQTYTC2BEFA3UQD7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "KQTYTC2BEFA3UQD7.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "KQTYTC2BEFA3UQD7.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KQTYTC2BEFA3UQD7.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "KQTYTC2BEFA3UQD7", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "KQTYTC2BEFA3UQD7.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "KQTYTC2BEFA3UQD7.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3690" + }, + "appliesTo" : [ ] + }, + "KQTYTC2BEFA3UQD7.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "KQTYTC2BEFA3UQD7.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KQTYTC2BEFA3UQD7.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "KQTYTC2BEFA3UQD7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "KQTYTC2BEFA3UQD7.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "KQTYTC2BEFA3UQD7.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KQTYTC2BEFA3UQD7.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "KQTYTC2BEFA3UQD7", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "KQTYTC2BEFA3UQD7.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "KQTYTC2BEFA3UQD7.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6937" + }, + "appliesTo" : [ ] + }, + "KQTYTC2BEFA3UQD7.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "KQTYTC2BEFA3UQD7.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KQTYTC2BEFA3UQD7.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "KQTYTC2BEFA3UQD7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "KQTYTC2BEFA3UQD7.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "KQTYTC2BEFA3UQD7.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1610000000" + }, + "appliesTo" : [ ] + }, + "KQTYTC2BEFA3UQD7.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "KQTYTC2BEFA3UQD7.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4231" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KQTYTC2BEFA3UQD7.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "KQTYTC2BEFA3UQD7", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "KQTYTC2BEFA3UQD7.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "KQTYTC2BEFA3UQD7.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4028" + }, + "appliesTo" : [ ] + }, + "KQTYTC2BEFA3UQD7.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "KQTYTC2BEFA3UQD7.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KQTYTC2BEFA3UQD7.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "KQTYTC2BEFA3UQD7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "KQTYTC2BEFA3UQD7.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "KQTYTC2BEFA3UQD7.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8293" + }, + "appliesTo" : [ ] + }, + "KQTYTC2BEFA3UQD7.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "KQTYTC2BEFA3UQD7.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KQTYTC2BEFA3UQD7.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "KQTYTC2BEFA3UQD7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KQTYTC2BEFA3UQD7.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "KQTYTC2BEFA3UQD7.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2055" + }, + "appliesTo" : [ ] + }, + "KQTYTC2BEFA3UQD7.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "KQTYTC2BEFA3UQD7.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KQTYTC2BEFA3UQD7.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "KQTYTC2BEFA3UQD7", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "KQTYTC2BEFA3UQD7.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "KQTYTC2BEFA3UQD7.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "2CJFZEAKYQD4ZCJU" : { + "2CJFZEAKYQD4ZCJU.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "2CJFZEAKYQD4ZCJU", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "2CJFZEAKYQD4ZCJU.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "2CJFZEAKYQD4ZCJU.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1896" + }, + "appliesTo" : [ ] + }, + "2CJFZEAKYQD4ZCJU.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "2CJFZEAKYQD4ZCJU.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2CJFZEAKYQD4ZCJU.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "2CJFZEAKYQD4ZCJU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "2CJFZEAKYQD4ZCJU.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "2CJFZEAKYQD4ZCJU.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "844" + }, + "appliesTo" : [ ] + }, + "2CJFZEAKYQD4ZCJU.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "2CJFZEAKYQD4ZCJU.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2CJFZEAKYQD4ZCJU.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "2CJFZEAKYQD4ZCJU", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "2CJFZEAKYQD4ZCJU.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "2CJFZEAKYQD4ZCJU.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "519" + }, + "appliesTo" : [ ] + }, + "2CJFZEAKYQD4ZCJU.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "2CJFZEAKYQD4ZCJU.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2CJFZEAKYQD4ZCJU.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "2CJFZEAKYQD4ZCJU", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "2CJFZEAKYQD4ZCJU.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "2CJFZEAKYQD4ZCJU.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2CJFZEAKYQD4ZCJU.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "2CJFZEAKYQD4ZCJU", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "2CJFZEAKYQD4ZCJU.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "2CJFZEAKYQD4ZCJU.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "327" + }, + "appliesTo" : [ ] + }, + "2CJFZEAKYQD4ZCJU.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "2CJFZEAKYQD4ZCJU.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "RCQDAE4337AGCJV8" : { + "RCQDAE4337AGCJV8.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "RCQDAE4337AGCJV8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RCQDAE4337AGCJV8.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "RCQDAE4337AGCJV8.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.6840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RCQDAE4337AGCJV8.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "RCQDAE4337AGCJV8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RCQDAE4337AGCJV8.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "RCQDAE4337AGCJV8.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23749" + }, + "appliesTo" : [ ] + }, + "RCQDAE4337AGCJV8.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "RCQDAE4337AGCJV8.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RCQDAE4337AGCJV8.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "RCQDAE4337AGCJV8", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "RCQDAE4337AGCJV8.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "RCQDAE4337AGCJV8.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20674" + }, + "appliesTo" : [ ] + }, + "RCQDAE4337AGCJV8.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "RCQDAE4337AGCJV8.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RCQDAE4337AGCJV8.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "RCQDAE4337AGCJV8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RCQDAE4337AGCJV8.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "RCQDAE4337AGCJV8.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RCQDAE4337AGCJV8.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "RCQDAE4337AGCJV8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RCQDAE4337AGCJV8.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "RCQDAE4337AGCJV8.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46493" + }, + "appliesTo" : [ ] + }, + "RCQDAE4337AGCJV8.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "RCQDAE4337AGCJV8.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RCQDAE4337AGCJV8.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "RCQDAE4337AGCJV8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RCQDAE4337AGCJV8.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "RCQDAE4337AGCJV8.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "51730" + }, + "appliesTo" : [ ] + }, + "RCQDAE4337AGCJV8.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "RCQDAE4337AGCJV8.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RCQDAE4337AGCJV8.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "RCQDAE4337AGCJV8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RCQDAE4337AGCJV8.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "RCQDAE4337AGCJV8.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RCQDAE4337AGCJV8.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "RCQDAE4337AGCJV8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RCQDAE4337AGCJV8.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "RCQDAE4337AGCJV8.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "101395" + }, + "appliesTo" : [ ] + }, + "RCQDAE4337AGCJV8.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "RCQDAE4337AGCJV8.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RCQDAE4337AGCJV8.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "RCQDAE4337AGCJV8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RCQDAE4337AGCJV8.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "RCQDAE4337AGCJV8.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "84685" + }, + "appliesTo" : [ ] + }, + "RCQDAE4337AGCJV8.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "RCQDAE4337AGCJV8.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RCQDAE4337AGCJV8.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "RCQDAE4337AGCJV8", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "RCQDAE4337AGCJV8.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "RCQDAE4337AGCJV8.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "40467" + }, + "appliesTo" : [ ] + }, + "RCQDAE4337AGCJV8.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "RCQDAE4337AGCJV8.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RCQDAE4337AGCJV8.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "RCQDAE4337AGCJV8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RCQDAE4337AGCJV8.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "RCQDAE4337AGCJV8.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RCQDAE4337AGCJV8.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "RCQDAE4337AGCJV8", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "RCQDAE4337AGCJV8.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "RCQDAE4337AGCJV8.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "45028" + }, + "appliesTo" : [ ] + }, + "RCQDAE4337AGCJV8.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "RCQDAE4337AGCJV8.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "SQ37ZQ2CZ2H95VDC" : { + "SQ37ZQ2CZ2H95VDC.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "SQ37ZQ2CZ2H95VDC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SQ37ZQ2CZ2H95VDC.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "SQ37ZQ2CZ2H95VDC.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8948000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SQ37ZQ2CZ2H95VDC.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SQ37ZQ2CZ2H95VDC", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "SQ37ZQ2CZ2H95VDC.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SQ37ZQ2CZ2H95VDC.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7781000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SQ37ZQ2CZ2H95VDC.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SQ37ZQ2CZ2H95VDC", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "SQ37ZQ2CZ2H95VDC.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SQ37ZQ2CZ2H95VDC.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7069" + }, + "appliesTo" : [ ] + }, + "SQ37ZQ2CZ2H95VDC.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SQ37ZQ2CZ2H95VDC.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SQ37ZQ2CZ2H95VDC.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SQ37ZQ2CZ2H95VDC", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "SQ37ZQ2CZ2H95VDC.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SQ37ZQ2CZ2H95VDC.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6361" + }, + "appliesTo" : [ ] + }, + "SQ37ZQ2CZ2H95VDC.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SQ37ZQ2CZ2H95VDC.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SQ37ZQ2CZ2H95VDC.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SQ37ZQ2CZ2H95VDC", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "SQ37ZQ2CZ2H95VDC.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SQ37ZQ2CZ2H95VDC.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SQ37ZQ2CZ2H95VDC.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SQ37ZQ2CZ2H95VDC.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13289" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SQ37ZQ2CZ2H95VDC.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "SQ37ZQ2CZ2H95VDC", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "SQ37ZQ2CZ2H95VDC.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "SQ37ZQ2CZ2H95VDC.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6682000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SQ37ZQ2CZ2H95VDC.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "SQ37ZQ2CZ2H95VDC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SQ37ZQ2CZ2H95VDC.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "SQ37ZQ2CZ2H95VDC.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7316" + }, + "appliesTo" : [ ] + }, + "SQ37ZQ2CZ2H95VDC.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "SQ37ZQ2CZ2H95VDC.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SQ37ZQ2CZ2H95VDC.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SQ37ZQ2CZ2H95VDC", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "SQ37ZQ2CZ2H95VDC.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SQ37ZQ2CZ2H95VDC.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3246" + }, + "appliesTo" : [ ] + }, + "SQ37ZQ2CZ2H95VDC.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SQ37ZQ2CZ2H95VDC.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3705000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SQ37ZQ2CZ2H95VDC.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "SQ37ZQ2CZ2H95VDC", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "SQ37ZQ2CZ2H95VDC.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "SQ37ZQ2CZ2H95VDC.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8129" + }, + "appliesTo" : [ ] + }, + "SQ37ZQ2CZ2H95VDC.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "SQ37ZQ2CZ2H95VDC.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3093000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SQ37ZQ2CZ2H95VDC.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "SQ37ZQ2CZ2H95VDC", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "SQ37ZQ2CZ2H95VDC.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "SQ37ZQ2CZ2H95VDC.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15934" + }, + "appliesTo" : [ ] + }, + "SQ37ZQ2CZ2H95VDC.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "SQ37ZQ2CZ2H95VDC.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SQ37ZQ2CZ2H95VDC.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "SQ37ZQ2CZ2H95VDC", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "SQ37ZQ2CZ2H95VDC.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "SQ37ZQ2CZ2H95VDC.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SQ37ZQ2CZ2H95VDC.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "SQ37ZQ2CZ2H95VDC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SQ37ZQ2CZ2H95VDC.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "SQ37ZQ2CZ2H95VDC.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3732" + }, + "appliesTo" : [ ] + }, + "SQ37ZQ2CZ2H95VDC.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "SQ37ZQ2CZ2H95VDC.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4261000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "599NS97NVDVBQMHV" : { + "599NS97NVDVBQMHV.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "599NS97NVDVBQMHV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "599NS97NVDVBQMHV.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "599NS97NVDVBQMHV.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "599NS97NVDVBQMHV.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "599NS97NVDVBQMHV.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "387216" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "599NS97NVDVBQMHV.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "599NS97NVDVBQMHV", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "599NS97NVDVBQMHV.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "599NS97NVDVBQMHV.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "191781" + }, + "appliesTo" : [ ] + }, + "599NS97NVDVBQMHV.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "599NS97NVDVBQMHV.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.2980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "599NS97NVDVBQMHV.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "599NS97NVDVBQMHV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "599NS97NVDVBQMHV.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "599NS97NVDVBQMHV.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.8630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "599NS97NVDVBQMHV.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "599NS97NVDVBQMHV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "599NS97NVDVBQMHV.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "599NS97NVDVBQMHV.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "193947" + }, + "appliesTo" : [ ] + }, + "599NS97NVDVBQMHV.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "599NS97NVDVBQMHV.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "599NS97NVDVBQMHV.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "599NS97NVDVBQMHV", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "599NS97NVDVBQMHV.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "599NS97NVDVBQMHV.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "381791" + }, + "appliesTo" : [ ] + }, + "599NS97NVDVBQMHV.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "599NS97NVDVBQMHV.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "599NS97NVDVBQMHV.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "599NS97NVDVBQMHV", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "599NS97NVDVBQMHV.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "599NS97NVDVBQMHV.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "131943" + }, + "appliesTo" : [ ] + }, + "599NS97NVDVBQMHV.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "599NS97NVDVBQMHV.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "599NS97NVDVBQMHV.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "599NS97NVDVBQMHV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "599NS97NVDVBQMHV.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "599NS97NVDVBQMHV.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.4430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "599NS97NVDVBQMHV.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "599NS97NVDVBQMHV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "599NS97NVDVBQMHV.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "599NS97NVDVBQMHV.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "67228" + }, + "appliesTo" : [ ] + }, + "599NS97NVDVBQMHV.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "599NS97NVDVBQMHV.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.6740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "599NS97NVDVBQMHV.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "599NS97NVDVBQMHV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "599NS97NVDVBQMHV.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "599NS97NVDVBQMHV.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.1860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "599NS97NVDVBQMHV.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "599NS97NVDVBQMHV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "599NS97NVDVBQMHV.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "599NS97NVDVBQMHV.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5470000000" + }, + "appliesTo" : [ ] + }, + "599NS97NVDVBQMHV.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "599NS97NVDVBQMHV.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "66113" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "599NS97NVDVBQMHV.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "599NS97NVDVBQMHV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "599NS97NVDVBQMHV.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "599NS97NVDVBQMHV.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.6820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "599NS97NVDVBQMHV.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "599NS97NVDVBQMHV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "599NS97NVDVBQMHV.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "599NS97NVDVBQMHV.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "134127" + }, + "appliesTo" : [ ] + }, + "599NS97NVDVBQMHV.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "599NS97NVDVBQMHV.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "482YDSG5GBVK93D9" : { + "482YDSG5GBVK93D9.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "482YDSG5GBVK93D9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "482YDSG5GBVK93D9.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "482YDSG5GBVK93D9.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "482YDSG5GBVK93D9.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "482YDSG5GBVK93D9.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "131707" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "482YDSG5GBVK93D9.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "482YDSG5GBVK93D9", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "482YDSG5GBVK93D9.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "482YDSG5GBVK93D9.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.7680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "482YDSG5GBVK93D9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "482YDSG5GBVK93D9", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "482YDSG5GBVK93D9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "482YDSG5GBVK93D9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "328235" + }, + "appliesTo" : [ ] + }, + "482YDSG5GBVK93D9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "482YDSG5GBVK93D9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "482YDSG5GBVK93D9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "482YDSG5GBVK93D9", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "482YDSG5GBVK93D9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "482YDSG5GBVK93D9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.2690000000" + }, + "appliesTo" : [ ] + }, + "482YDSG5GBVK93D9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "482YDSG5GBVK93D9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "63676" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "482YDSG5GBVK93D9.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "482YDSG5GBVK93D9", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "482YDSG5GBVK93D9.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "482YDSG5GBVK93D9.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "169594" + }, + "appliesTo" : [ ] + }, + "482YDSG5GBVK93D9.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "482YDSG5GBVK93D9.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.4530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "482YDSG5GBVK93D9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "482YDSG5GBVK93D9", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "482YDSG5GBVK93D9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "482YDSG5GBVK93D9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "165683" + }, + "appliesTo" : [ ] + }, + "482YDSG5GBVK93D9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "482YDSG5GBVK93D9.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.3050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "482YDSG5GBVK93D9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "482YDSG5GBVK93D9", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "482YDSG5GBVK93D9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "482YDSG5GBVK93D9.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "482YDSG5GBVK93D9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "482YDSG5GBVK93D9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "126667" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "482YDSG5GBVK93D9.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "482YDSG5GBVK93D9", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "482YDSG5GBVK93D9.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "482YDSG5GBVK93D9.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.0890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "482YDSG5GBVK93D9.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "482YDSG5GBVK93D9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "482YDSG5GBVK93D9.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "482YDSG5GBVK93D9.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.3500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "482YDSG5GBVK93D9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "482YDSG5GBVK93D9", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "482YDSG5GBVK93D9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "482YDSG5GBVK93D9.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.7340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "482YDSG5GBVK93D9.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "482YDSG5GBVK93D9", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "482YDSG5GBVK93D9.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "482YDSG5GBVK93D9.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "337989" + }, + "appliesTo" : [ ] + }, + "482YDSG5GBVK93D9.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "482YDSG5GBVK93D9.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "482YDSG5GBVK93D9.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "482YDSG5GBVK93D9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "482YDSG5GBVK93D9.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "482YDSG5GBVK93D9.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "66248" + }, + "appliesTo" : [ ] + }, + "482YDSG5GBVK93D9.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "482YDSG5GBVK93D9.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "D6N7KTJH42VTNPFJ" : { + "D6N7KTJH42VTNPFJ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "D6N7KTJH42VTNPFJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "D6N7KTJH42VTNPFJ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "D6N7KTJH42VTNPFJ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1898" + }, + "appliesTo" : [ ] + }, + "D6N7KTJH42VTNPFJ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "D6N7KTJH42VTNPFJ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "D6N7KTJH42VTNPFJ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "D6N7KTJH42VTNPFJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "D6N7KTJH42VTNPFJ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "D6N7KTJH42VTNPFJ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1123" + }, + "appliesTo" : [ ] + }, + "D6N7KTJH42VTNPFJ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "D6N7KTJH42VTNPFJ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "D6N7KTJH42VTNPFJ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "D6N7KTJH42VTNPFJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "D6N7KTJH42VTNPFJ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "D6N7KTJH42VTNPFJ.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "D6N7KTJH42VTNPFJ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "D6N7KTJH42VTNPFJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "D6N7KTJH42VTNPFJ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "D6N7KTJH42VTNPFJ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "D6N7KTJH42VTNPFJ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "D6N7KTJH42VTNPFJ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3535" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "D6N7KTJH42VTNPFJ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "D6N7KTJH42VTNPFJ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "D6N7KTJH42VTNPFJ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "D6N7KTJH42VTNPFJ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1790" + }, + "appliesTo" : [ ] + }, + "D6N7KTJH42VTNPFJ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "D6N7KTJH42VTNPFJ.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "PRQPEPABCB4GFVSC" : { + "PRQPEPABCB4GFVSC.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "PRQPEPABCB4GFVSC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "PRQPEPABCB4GFVSC.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "PRQPEPABCB4GFVSC.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9663" + }, + "appliesTo" : [ ] + }, + "PRQPEPABCB4GFVSC.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "PRQPEPABCB4GFVSC.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PRQPEPABCB4GFVSC.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "PRQPEPABCB4GFVSC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PRQPEPABCB4GFVSC.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "PRQPEPABCB4GFVSC.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5770" + }, + "appliesTo" : [ ] + }, + "PRQPEPABCB4GFVSC.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "PRQPEPABCB4GFVSC.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PRQPEPABCB4GFVSC.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "PRQPEPABCB4GFVSC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PRQPEPABCB4GFVSC.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "PRQPEPABCB4GFVSC.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "PRQPEPABCB4GFVSC.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "PRQPEPABCB4GFVSC", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "PRQPEPABCB4GFVSC.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "PRQPEPABCB4GFVSC.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27684" + }, + "appliesTo" : [ ] + }, + "PRQPEPABCB4GFVSC.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "PRQPEPABCB4GFVSC.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PRQPEPABCB4GFVSC.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "PRQPEPABCB4GFVSC", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "PRQPEPABCB4GFVSC.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "PRQPEPABCB4GFVSC.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9640" + }, + "appliesTo" : [ ] + }, + "PRQPEPABCB4GFVSC.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "PRQPEPABCB4GFVSC.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PRQPEPABCB4GFVSC.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "PRQPEPABCB4GFVSC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "PRQPEPABCB4GFVSC.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "PRQPEPABCB4GFVSC.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5561" + }, + "appliesTo" : [ ] + }, + "PRQPEPABCB4GFVSC.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "PRQPEPABCB4GFVSC.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PRQPEPABCB4GFVSC.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "PRQPEPABCB4GFVSC", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "PRQPEPABCB4GFVSC.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "PRQPEPABCB4GFVSC.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "PRQPEPABCB4GFVSC.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "PRQPEPABCB4GFVSC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "PRQPEPABCB4GFVSC.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "PRQPEPABCB4GFVSC.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22964" + }, + "appliesTo" : [ ] + }, + "PRQPEPABCB4GFVSC.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "PRQPEPABCB4GFVSC.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PRQPEPABCB4GFVSC.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "PRQPEPABCB4GFVSC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "PRQPEPABCB4GFVSC.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "PRQPEPABCB4GFVSC.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "PRQPEPABCB4GFVSC.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "PRQPEPABCB4GFVSC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "PRQPEPABCB4GFVSC.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "PRQPEPABCB4GFVSC.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7290000000" + }, + "appliesTo" : [ ] + }, + "PRQPEPABCB4GFVSC.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "PRQPEPABCB4GFVSC.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3474" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PRQPEPABCB4GFVSC.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "PRQPEPABCB4GFVSC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PRQPEPABCB4GFVSC.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "PRQPEPABCB4GFVSC.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "PRQPEPABCB4GFVSC.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "PRQPEPABCB4GFVSC.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11439" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "86FEVXHAJVJ75D5R" : { + "86FEVXHAJVJ75D5R.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "86FEVXHAJVJ75D5R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "86FEVXHAJVJ75D5R.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "86FEVXHAJVJ75D5R.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3220000000" + }, + "appliesTo" : [ ] + }, + "86FEVXHAJVJ75D5R.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "86FEVXHAJVJ75D5R.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2821" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "86FEVXHAJVJ75D5R.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "86FEVXHAJVJ75D5R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "86FEVXHAJVJ75D5R.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "86FEVXHAJVJ75D5R.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "86FEVXHAJVJ75D5R.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "86FEVXHAJVJ75D5R", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "86FEVXHAJVJ75D5R.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "86FEVXHAJVJ75D5R.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5076" + }, + "appliesTo" : [ ] + }, + "86FEVXHAJVJ75D5R.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "86FEVXHAJVJ75D5R.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "86FEVXHAJVJ75D5R.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "86FEVXHAJVJ75D5R", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "86FEVXHAJVJ75D5R.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "86FEVXHAJVJ75D5R.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6314" + }, + "appliesTo" : [ ] + }, + "86FEVXHAJVJ75D5R.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "86FEVXHAJVJ75D5R.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "86FEVXHAJVJ75D5R.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "86FEVXHAJVJ75D5R", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "86FEVXHAJVJ75D5R.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "86FEVXHAJVJ75D5R.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7314" + }, + "appliesTo" : [ ] + }, + "86FEVXHAJVJ75D5R.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "86FEVXHAJVJ75D5R.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "86FEVXHAJVJ75D5R.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "86FEVXHAJVJ75D5R", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "86FEVXHAJVJ75D5R.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "86FEVXHAJVJ75D5R.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "86FEVXHAJVJ75D5R.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "86FEVXHAJVJ75D5R", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "86FEVXHAJVJ75D5R.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "86FEVXHAJVJ75D5R.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "86FEVXHAJVJ75D5R.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "86FEVXHAJVJ75D5R", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "86FEVXHAJVJ75D5R.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "86FEVXHAJVJ75D5R.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "86FEVXHAJVJ75D5R.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "86FEVXHAJVJ75D5R.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11863" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "86FEVXHAJVJ75D5R.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "86FEVXHAJVJ75D5R", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "86FEVXHAJVJ75D5R.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "86FEVXHAJVJ75D5R.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "86FEVXHAJVJ75D5R.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "86FEVXHAJVJ75D5R", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "86FEVXHAJVJ75D5R.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "86FEVXHAJVJ75D5R.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "86FEVXHAJVJ75D5R.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "86FEVXHAJVJ75D5R.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14537" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "86FEVXHAJVJ75D5R.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "86FEVXHAJVJ75D5R", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "86FEVXHAJVJ75D5R.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "86FEVXHAJVJ75D5R.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2590" + }, + "appliesTo" : [ ] + }, + "86FEVXHAJVJ75D5R.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "86FEVXHAJVJ75D5R.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "86FEVXHAJVJ75D5R.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "86FEVXHAJVJ75D5R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "86FEVXHAJVJ75D5R.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "86FEVXHAJVJ75D5R.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5593" + }, + "appliesTo" : [ ] + }, + "86FEVXHAJVJ75D5R.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "86FEVXHAJVJ75D5R.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "CHD28PNGD4WRFZDU" : { + "CHD28PNGD4WRFZDU.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "CHD28PNGD4WRFZDU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CHD28PNGD4WRFZDU.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "CHD28PNGD4WRFZDU.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "158335" + }, + "appliesTo" : [ ] + }, + "CHD28PNGD4WRFZDU.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "CHD28PNGD4WRFZDU.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CHD28PNGD4WRFZDU.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "CHD28PNGD4WRFZDU", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CHD28PNGD4WRFZDU.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "CHD28PNGD4WRFZDU.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.4860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CHD28PNGD4WRFZDU.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "CHD28PNGD4WRFZDU", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CHD28PNGD4WRFZDU.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "CHD28PNGD4WRFZDU.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.7760000000" + }, + "appliesTo" : [ ] + }, + "CHD28PNGD4WRFZDU.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "CHD28PNGD4WRFZDU.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "174665" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CHD28PNGD4WRFZDU.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "CHD28PNGD4WRFZDU", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CHD28PNGD4WRFZDU.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "CHD28PNGD4WRFZDU.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "69695" + }, + "appliesTo" : [ ] + }, + "CHD28PNGD4WRFZDU.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "CHD28PNGD4WRFZDU.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.0860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CHD28PNGD4WRFZDU.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "CHD28PNGD4WRFZDU", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CHD28PNGD4WRFZDU.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "CHD28PNGD4WRFZDU.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "CHD28PNGD4WRFZDU.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "CHD28PNGD4WRFZDU.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "345760" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CHD28PNGD4WRFZDU.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "CHD28PNGD4WRFZDU", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CHD28PNGD4WRFZDU.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "CHD28PNGD4WRFZDU.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.7850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CHD28PNGD4WRFZDU.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "CHD28PNGD4WRFZDU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CHD28PNGD4WRFZDU.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "CHD28PNGD4WRFZDU.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "19.3570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CHD28PNGD4WRFZDU.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "CHD28PNGD4WRFZDU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CHD28PNGD4WRFZDU.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "CHD28PNGD4WRFZDU.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "80202" + }, + "appliesTo" : [ ] + }, + "CHD28PNGD4WRFZDU.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "CHD28PNGD4WRFZDU.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.2860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CHD28PNGD4WRFZDU.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "CHD28PNGD4WRFZDU", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CHD28PNGD4WRFZDU.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "CHD28PNGD4WRFZDU.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.8380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CHD28PNGD4WRFZDU.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "CHD28PNGD4WRFZDU", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CHD28PNGD4WRFZDU.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "CHD28PNGD4WRFZDU.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "129632" + }, + "appliesTo" : [ ] + }, + "CHD28PNGD4WRFZDU.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "CHD28PNGD4WRFZDU.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.0630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CHD28PNGD4WRFZDU.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "CHD28PNGD4WRFZDU", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CHD28PNGD4WRFZDU.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "CHD28PNGD4WRFZDU.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "247124" + }, + "appliesTo" : [ ] + }, + "CHD28PNGD4WRFZDU.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "CHD28PNGD4WRFZDU.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CHD28PNGD4WRFZDU.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "CHD28PNGD4WRFZDU", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CHD28PNGD4WRFZDU.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "CHD28PNGD4WRFZDU.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "137740" + }, + "appliesTo" : [ ] + }, + "CHD28PNGD4WRFZDU.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "CHD28PNGD4WRFZDU.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "W8TS7DJMAYZW9FYR" : { + "W8TS7DJMAYZW9FYR.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "W8TS7DJMAYZW9FYR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W8TS7DJMAYZW9FYR.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "W8TS7DJMAYZW9FYR.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16112" + }, + "appliesTo" : [ ] + }, + "W8TS7DJMAYZW9FYR.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "W8TS7DJMAYZW9FYR.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "W8TS7DJMAYZW9FYR.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "W8TS7DJMAYZW9FYR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "W8TS7DJMAYZW9FYR.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "W8TS7DJMAYZW9FYR.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "W8TS7DJMAYZW9FYR.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "W8TS7DJMAYZW9FYR", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "W8TS7DJMAYZW9FYR.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "W8TS7DJMAYZW9FYR.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "W8TS7DJMAYZW9FYR.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "W8TS7DJMAYZW9FYR.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27747" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "W8TS7DJMAYZW9FYR.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "W8TS7DJMAYZW9FYR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "W8TS7DJMAYZW9FYR.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "W8TS7DJMAYZW9FYR.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14759" + }, + "appliesTo" : [ ] + }, + "W8TS7DJMAYZW9FYR.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "W8TS7DJMAYZW9FYR.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "W8TS7DJMAYZW9FYR.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "W8TS7DJMAYZW9FYR", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "W8TS7DJMAYZW9FYR.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "W8TS7DJMAYZW9FYR.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8110000000" + }, + "appliesTo" : [ ] + }, + "W8TS7DJMAYZW9FYR.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "W8TS7DJMAYZW9FYR.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7106" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "W8TS7DJMAYZW9FYR.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "W8TS7DJMAYZW9FYR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "W8TS7DJMAYZW9FYR.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "W8TS7DJMAYZW9FYR.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16924" + }, + "appliesTo" : [ ] + }, + "W8TS7DJMAYZW9FYR.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "W8TS7DJMAYZW9FYR.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "W8TS7DJMAYZW9FYR.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "W8TS7DJMAYZW9FYR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "W8TS7DJMAYZW9FYR.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "W8TS7DJMAYZW9FYR.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33172" + }, + "appliesTo" : [ ] + }, + "W8TS7DJMAYZW9FYR.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "W8TS7DJMAYZW9FYR.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "W8TS7DJMAYZW9FYR.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "W8TS7DJMAYZW9FYR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W8TS7DJMAYZW9FYR.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "W8TS7DJMAYZW9FYR.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8220" + }, + "appliesTo" : [ ] + }, + "W8TS7DJMAYZW9FYR.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "W8TS7DJMAYZW9FYR.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "W8TS7DJMAYZW9FYR.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "W8TS7DJMAYZW9FYR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W8TS7DJMAYZW9FYR.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "W8TS7DJMAYZW9FYR.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "W8TS7DJMAYZW9FYR.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "W8TS7DJMAYZW9FYR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "W8TS7DJMAYZW9FYR.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "W8TS7DJMAYZW9FYR.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "W8TS7DJMAYZW9FYR.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "W8TS7DJMAYZW9FYR", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "W8TS7DJMAYZW9FYR.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "W8TS7DJMAYZW9FYR.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "W8TS7DJMAYZW9FYR.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "W8TS7DJMAYZW9FYR.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13928" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "W8TS7DJMAYZW9FYR.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "W8TS7DJMAYZW9FYR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "W8TS7DJMAYZW9FYR.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "W8TS7DJMAYZW9FYR.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "U55BDVR9QF3VHRGZ" : { + "U55BDVR9QF3VHRGZ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "U55BDVR9QF3VHRGZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "U55BDVR9QF3VHRGZ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "U55BDVR9QF3VHRGZ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "U55BDVR9QF3VHRGZ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "U55BDVR9QF3VHRGZ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15763" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "U55BDVR9QF3VHRGZ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "U55BDVR9QF3VHRGZ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "U55BDVR9QF3VHRGZ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "U55BDVR9QF3VHRGZ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4490000000" + }, + "appliesTo" : [ ] + }, + "U55BDVR9QF3VHRGZ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "U55BDVR9QF3VHRGZ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4969" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "U55BDVR9QF3VHRGZ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "U55BDVR9QF3VHRGZ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "U55BDVR9QF3VHRGZ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "U55BDVR9QF3VHRGZ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7272" + }, + "appliesTo" : [ ] + }, + "U55BDVR9QF3VHRGZ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "U55BDVR9QF3VHRGZ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "U55BDVR9QF3VHRGZ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "U55BDVR9QF3VHRGZ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "U55BDVR9QF3VHRGZ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "U55BDVR9QF3VHRGZ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "U55BDVR9QF3VHRGZ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "U55BDVR9QF3VHRGZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "U55BDVR9QF3VHRGZ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "U55BDVR9QF3VHRGZ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3172" + }, + "appliesTo" : [ ] + }, + "U55BDVR9QF3VHRGZ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "U55BDVR9QF3VHRGZ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "JH77489982R9B75M" : { + "JH77489982R9B75M.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "JH77489982R9B75M", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "JH77489982R9B75M.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "JH77489982R9B75M.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9824000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "JH77489982R9B75M.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "JH77489982R9B75M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JH77489982R9B75M.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "JH77489982R9B75M.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9510" + }, + "appliesTo" : [ ] + }, + "JH77489982R9B75M.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "JH77489982R9B75M.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0856000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "JH77489982R9B75M.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "JH77489982R9B75M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JH77489982R9B75M.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "JH77489982R9B75M.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2798000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "JH77489982R9B75M.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "JH77489982R9B75M", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "JH77489982R9B75M.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "JH77489982R9B75M.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "JH77489982R9B75M.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "JH77489982R9B75M.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37910" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "JH77489982R9B75M.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "JH77489982R9B75M", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "JH77489982R9B75M.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "JH77489982R9B75M.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3824000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "JH77489982R9B75M.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "JH77489982R9B75M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JH77489982R9B75M.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "JH77489982R9B75M.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18639" + }, + "appliesTo" : [ ] + }, + "JH77489982R9B75M.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "JH77489982R9B75M.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "JH77489982R9B75M.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "JH77489982R9B75M", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "JH77489982R9B75M.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "JH77489982R9B75M.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8269" + }, + "appliesTo" : [ ] + }, + "JH77489982R9B75M.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "JH77489982R9B75M.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "JH77489982R9B75M.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "JH77489982R9B75M", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "JH77489982R9B75M.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "JH77489982R9B75M.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16208" + }, + "appliesTo" : [ ] + }, + "JH77489982R9B75M.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "JH77489982R9B75M.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JH77489982R9B75M.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "JH77489982R9B75M", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "JH77489982R9B75M.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "JH77489982R9B75M.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5898000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "JH77489982R9B75M.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "JH77489982R9B75M", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "JH77489982R9B75M.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "JH77489982R9B75M.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "JH77489982R9B75M.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "JH77489982R9B75M.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31620" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JH77489982R9B75M.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "JH77489982R9B75M", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "JH77489982R9B75M.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "JH77489982R9B75M.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19342" + }, + "appliesTo" : [ ] + }, + "JH77489982R9B75M.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "JH77489982R9B75M.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "JH77489982R9B75M.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "JH77489982R9B75M", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "JH77489982R9B75M.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "JH77489982R9B75M.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16819" + }, + "appliesTo" : [ ] + }, + "JH77489982R9B75M.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "JH77489982R9B75M.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "8MH9R5J8CSVZTVPD" : { + "8MH9R5J8CSVZTVPD.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "8MH9R5J8CSVZTVPD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8MH9R5J8CSVZTVPD.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "8MH9R5J8CSVZTVPD.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8MH9R5J8CSVZTVPD.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "8MH9R5J8CSVZTVPD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8MH9R5J8CSVZTVPD.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "8MH9R5J8CSVZTVPD.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3508" + }, + "appliesTo" : [ ] + }, + "8MH9R5J8CSVZTVPD.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "8MH9R5J8CSVZTVPD.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8MH9R5J8CSVZTVPD.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "8MH9R5J8CSVZTVPD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8MH9R5J8CSVZTVPD.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "8MH9R5J8CSVZTVPD.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0800000000" + }, + "appliesTo" : [ ] + }, + "8MH9R5J8CSVZTVPD.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "8MH9R5J8CSVZTVPD.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2089" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8MH9R5J8CSVZTVPD.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "8MH9R5J8CSVZTVPD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8MH9R5J8CSVZTVPD.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "8MH9R5J8CSVZTVPD.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8MH9R5J8CSVZTVPD.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "8MH9R5J8CSVZTVPD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8MH9R5J8CSVZTVPD.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "8MH9R5J8CSVZTVPD.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0710000000" + }, + "appliesTo" : [ ] + }, + "8MH9R5J8CSVZTVPD.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "8MH9R5J8CSVZTVPD.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1866" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8MH9R5J8CSVZTVPD.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "8MH9R5J8CSVZTVPD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8MH9R5J8CSVZTVPD.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "8MH9R5J8CSVZTVPD.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1425" + }, + "appliesTo" : [ ] + }, + "8MH9R5J8CSVZTVPD.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "8MH9R5J8CSVZTVPD.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8MH9R5J8CSVZTVPD.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "8MH9R5J8CSVZTVPD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8MH9R5J8CSVZTVPD.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "8MH9R5J8CSVZTVPD.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2342000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8MH9R5J8CSVZTVPD.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "8MH9R5J8CSVZTVPD", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "8MH9R5J8CSVZTVPD.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "8MH9R5J8CSVZTVPD.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "727" + }, + "appliesTo" : [ ] + }, + "8MH9R5J8CSVZTVPD.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "8MH9R5J8CSVZTVPD.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8MH9R5J8CSVZTVPD.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "8MH9R5J8CSVZTVPD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8MH9R5J8CSVZTVPD.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "8MH9R5J8CSVZTVPD.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1011" + }, + "appliesTo" : [ ] + }, + "8MH9R5J8CSVZTVPD.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "8MH9R5J8CSVZTVPD.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1154000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8MH9R5J8CSVZTVPD.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "8MH9R5J8CSVZTVPD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8MH9R5J8CSVZTVPD.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "8MH9R5J8CSVZTVPD.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8MH9R5J8CSVZTVPD.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "8MH9R5J8CSVZTVPD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8MH9R5J8CSVZTVPD.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "8MH9R5J8CSVZTVPD.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2010" + }, + "appliesTo" : [ ] + }, + "8MH9R5J8CSVZTVPD.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "8MH9R5J8CSVZTVPD.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8MH9R5J8CSVZTVPD.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "8MH9R5J8CSVZTVPD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8MH9R5J8CSVZTVPD.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "8MH9R5J8CSVZTVPD.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4094" + }, + "appliesTo" : [ ] + }, + "8MH9R5J8CSVZTVPD.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "8MH9R5J8CSVZTVPD.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "R86DSK536TMRVK4T" : { + "R86DSK536TMRVK4T.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "R86DSK536TMRVK4T", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "R86DSK536TMRVK4T.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "R86DSK536TMRVK4T.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5710000000" + }, + "appliesTo" : [ ] + }, + "R86DSK536TMRVK4T.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "R86DSK536TMRVK4T.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "R86DSK536TMRVK4T.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "R86DSK536TMRVK4T", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "R86DSK536TMRVK4T.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "R86DSK536TMRVK4T.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "R86DSK536TMRVK4T.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "R86DSK536TMRVK4T", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "R86DSK536TMRVK4T.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "R86DSK536TMRVK4T.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "R86DSK536TMRVK4T.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "R86DSK536TMRVK4T.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9802" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "R86DSK536TMRVK4T.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "R86DSK536TMRVK4T", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "R86DSK536TMRVK4T.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "R86DSK536TMRVK4T.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21315" + }, + "appliesTo" : [ ] + }, + "R86DSK536TMRVK4T.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "R86DSK536TMRVK4T.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "R86DSK536TMRVK4T.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "R86DSK536TMRVK4T", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "R86DSK536TMRVK4T.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "R86DSK536TMRVK4T.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7670" + }, + "appliesTo" : [ ] + }, + "R86DSK536TMRVK4T.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "R86DSK536TMRVK4T.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "QP7VG66RCTU7M632" : { + "QP7VG66RCTU7M632.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QP7VG66RCTU7M632", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QP7VG66RCTU7M632.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QP7VG66RCTU7M632.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "123" + }, + "appliesTo" : [ ] + }, + "QP7VG66RCTU7M632.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QP7VG66RCTU7M632.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QP7VG66RCTU7M632.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QP7VG66RCTU7M632", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QP7VG66RCTU7M632.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QP7VG66RCTU7M632.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "721" + }, + "appliesTo" : [ ] + }, + "QP7VG66RCTU7M632.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QP7VG66RCTU7M632.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QP7VG66RCTU7M632.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QP7VG66RCTU7M632", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QP7VG66RCTU7M632.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QP7VG66RCTU7M632.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QP7VG66RCTU7M632.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QP7VG66RCTU7M632", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QP7VG66RCTU7M632.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QP7VG66RCTU7M632.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "188" + }, + "appliesTo" : [ ] + }, + "QP7VG66RCTU7M632.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QP7VG66RCTU7M632.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QP7VG66RCTU7M632.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QP7VG66RCTU7M632", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QP7VG66RCTU7M632.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QP7VG66RCTU7M632.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QP7VG66RCTU7M632.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QP7VG66RCTU7M632.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1881" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "SVMA6TVRGD4B8MMP" : { + "SVMA6TVRGD4B8MMP.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SVMA6TVRGD4B8MMP", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "SVMA6TVRGD4B8MMP.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SVMA6TVRGD4B8MMP.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46424" + }, + "appliesTo" : [ ] + }, + "SVMA6TVRGD4B8MMP.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SVMA6TVRGD4B8MMP.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SVMA6TVRGD4B8MMP.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "SVMA6TVRGD4B8MMP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SVMA6TVRGD4B8MMP.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "SVMA6TVRGD4B8MMP.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "93368" + }, + "appliesTo" : [ ] + }, + "SVMA6TVRGD4B8MMP.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "SVMA6TVRGD4B8MMP.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SVMA6TVRGD4B8MMP.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SVMA6TVRGD4B8MMP", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "SVMA6TVRGD4B8MMP.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SVMA6TVRGD4B8MMP.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "92587" + }, + "appliesTo" : [ ] + }, + "SVMA6TVRGD4B8MMP.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SVMA6TVRGD4B8MMP.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SVMA6TVRGD4B8MMP.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "SVMA6TVRGD4B8MMP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SVMA6TVRGD4B8MMP.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "SVMA6TVRGD4B8MMP.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SVMA6TVRGD4B8MMP.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "SVMA6TVRGD4B8MMP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SVMA6TVRGD4B8MMP.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "SVMA6TVRGD4B8MMP.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7780000000" + }, + "appliesTo" : [ ] + }, + "SVMA6TVRGD4B8MMP.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "SVMA6TVRGD4B8MMP.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46734" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SVMA6TVRGD4B8MMP.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "SVMA6TVRGD4B8MMP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SVMA6TVRGD4B8MMP.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "SVMA6TVRGD4B8MMP.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31873" + }, + "appliesTo" : [ ] + }, + "SVMA6TVRGD4B8MMP.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "SVMA6TVRGD4B8MMP.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SVMA6TVRGD4B8MMP.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "SVMA6TVRGD4B8MMP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SVMA6TVRGD4B8MMP.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "SVMA6TVRGD4B8MMP.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15961" + }, + "appliesTo" : [ ] + }, + "SVMA6TVRGD4B8MMP.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "SVMA6TVRGD4B8MMP.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SVMA6TVRGD4B8MMP.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "SVMA6TVRGD4B8MMP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SVMA6TVRGD4B8MMP.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "SVMA6TVRGD4B8MMP.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SVMA6TVRGD4B8MMP.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SVMA6TVRGD4B8MMP", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "SVMA6TVRGD4B8MMP.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SVMA6TVRGD4B8MMP.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SVMA6TVRGD4B8MMP.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SVMA6TVRGD4B8MMP.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31693" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SVMA6TVRGD4B8MMP.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SVMA6TVRGD4B8MMP", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "SVMA6TVRGD4B8MMP.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SVMA6TVRGD4B8MMP.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15869" + }, + "appliesTo" : [ ] + }, + "SVMA6TVRGD4B8MMP.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SVMA6TVRGD4B8MMP.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SVMA6TVRGD4B8MMP.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SVMA6TVRGD4B8MMP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SVMA6TVRGD4B8MMP.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SVMA6TVRGD4B8MMP.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SVMA6TVRGD4B8MMP.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "SVMA6TVRGD4B8MMP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SVMA6TVRGD4B8MMP.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "SVMA6TVRGD4B8MMP.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "SU7X27GC72VJG45S" : { + "SU7X27GC72VJG45S.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "SU7X27GC72VJG45S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SU7X27GC72VJG45S.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "SU7X27GC72VJG45S.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SU7X27GC72VJG45S.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "SU7X27GC72VJG45S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SU7X27GC72VJG45S.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "SU7X27GC72VJG45S.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7036" + }, + "appliesTo" : [ ] + }, + "SU7X27GC72VJG45S.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "SU7X27GC72VJG45S.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SU7X27GC72VJG45S.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SU7X27GC72VJG45S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SU7X27GC72VJG45S.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SU7X27GC72VJG45S.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12012" + }, + "appliesTo" : [ ] + }, + "SU7X27GC72VJG45S.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SU7X27GC72VJG45S.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SU7X27GC72VJG45S.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "SU7X27GC72VJG45S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SU7X27GC72VJG45S.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "SU7X27GC72VJG45S.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13855" + }, + "appliesTo" : [ ] + }, + "SU7X27GC72VJG45S.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "SU7X27GC72VJG45S.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SU7X27GC72VJG45S.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "SU7X27GC72VJG45S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SU7X27GC72VJG45S.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "SU7X27GC72VJG45S.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SU7X27GC72VJG45S.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "SU7X27GC72VJG45S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SU7X27GC72VJG45S.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "SU7X27GC72VJG45S.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13088" + }, + "appliesTo" : [ ] + }, + "SU7X27GC72VJG45S.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "SU7X27GC72VJG45S.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SU7X27GC72VJG45S.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SU7X27GC72VJG45S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SU7X27GC72VJG45S.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SU7X27GC72VJG45S.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SU7X27GC72VJG45S.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SU7X27GC72VJG45S.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12468" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SU7X27GC72VJG45S.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "SU7X27GC72VJG45S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SU7X27GC72VJG45S.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "SU7X27GC72VJG45S.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25846" + }, + "appliesTo" : [ ] + }, + "SU7X27GC72VJG45S.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "SU7X27GC72VJG45S.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SU7X27GC72VJG45S.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SU7X27GC72VJG45S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SU7X27GC72VJG45S.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SU7X27GC72VJG45S.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23162" + }, + "appliesTo" : [ ] + }, + "SU7X27GC72VJG45S.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SU7X27GC72VJG45S.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SU7X27GC72VJG45S.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "SU7X27GC72VJG45S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SU7X27GC72VJG45S.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "SU7X27GC72VJG45S.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SU7X27GC72VJG45S.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SU7X27GC72VJG45S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SU7X27GC72VJG45S.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SU7X27GC72VJG45S.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7220000000" + }, + "appliesTo" : [ ] + }, + "SU7X27GC72VJG45S.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SU7X27GC72VJG45S.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6328" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SU7X27GC72VJG45S.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SU7X27GC72VJG45S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SU7X27GC72VJG45S.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SU7X27GC72VJG45S.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "AC2NWG73MEX4BBX3" : { + "AC2NWG73MEX4BBX3.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "AC2NWG73MEX4BBX3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AC2NWG73MEX4BBX3.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "AC2NWG73MEX4BBX3.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30347" + }, + "appliesTo" : [ ] + }, + "AC2NWG73MEX4BBX3.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "AC2NWG73MEX4BBX3.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "AC2NWG73MEX4BBX3.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "AC2NWG73MEX4BBX3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AC2NWG73MEX4BBX3.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "AC2NWG73MEX4BBX3.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "AC2NWG73MEX4BBX3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "AC2NWG73MEX4BBX3", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "AC2NWG73MEX4BBX3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "AC2NWG73MEX4BBX3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "49730" + }, + "appliesTo" : [ ] + }, + "AC2NWG73MEX4BBX3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "AC2NWG73MEX4BBX3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AC2NWG73MEX4BBX3.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "AC2NWG73MEX4BBX3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AC2NWG73MEX4BBX3.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "AC2NWG73MEX4BBX3.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "AC2NWG73MEX4BBX3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "AC2NWG73MEX4BBX3", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "AC2NWG73MEX4BBX3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "AC2NWG73MEX4BBX3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33891" + }, + "appliesTo" : [ ] + }, + "AC2NWG73MEX4BBX3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "AC2NWG73MEX4BBX3.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AC2NWG73MEX4BBX3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "AC2NWG73MEX4BBX3", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "AC2NWG73MEX4BBX3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "AC2NWG73MEX4BBX3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26435" + }, + "appliesTo" : [ ] + }, + "AC2NWG73MEX4BBX3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "AC2NWG73MEX4BBX3.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AC2NWG73MEX4BBX3.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "AC2NWG73MEX4BBX3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AC2NWG73MEX4BBX3.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "AC2NWG73MEX4BBX3.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19891" + }, + "appliesTo" : [ ] + }, + "AC2NWG73MEX4BBX3.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "AC2NWG73MEX4BBX3.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "AC2NWG73MEX4BBX3.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "AC2NWG73MEX4BBX3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AC2NWG73MEX4BBX3.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "AC2NWG73MEX4BBX3.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.7590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "AC2NWG73MEX4BBX3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "AC2NWG73MEX4BBX3", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "AC2NWG73MEX4BBX3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "AC2NWG73MEX4BBX3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17319" + }, + "appliesTo" : [ ] + }, + "AC2NWG73MEX4BBX3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "AC2NWG73MEX4BBX3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AC2NWG73MEX4BBX3.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "AC2NWG73MEX4BBX3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AC2NWG73MEX4BBX3.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "AC2NWG73MEX4BBX3.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "59484" + }, + "appliesTo" : [ ] + }, + "AC2NWG73MEX4BBX3.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "AC2NWG73MEX4BBX3.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "AC2NWG73MEX4BBX3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "AC2NWG73MEX4BBX3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AC2NWG73MEX4BBX3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "AC2NWG73MEX4BBX3.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.1430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "AC2NWG73MEX4BBX3.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "AC2NWG73MEX4BBX3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AC2NWG73MEX4BBX3.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "AC2NWG73MEX4BBX3.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38931" + }, + "appliesTo" : [ ] + }, + "AC2NWG73MEX4BBX3.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "AC2NWG73MEX4BBX3.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "3KAFWJNHJ6VKA77T" : { + "3KAFWJNHJ6VKA77T.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "3KAFWJNHJ6VKA77T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3KAFWJNHJ6VKA77T.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "3KAFWJNHJ6VKA77T.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3135000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3KAFWJNHJ6VKA77T.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "3KAFWJNHJ6VKA77T", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3KAFWJNHJ6VKA77T.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "3KAFWJNHJ6VKA77T.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "3KAFWJNHJ6VKA77T.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "3KAFWJNHJ6VKA77T.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2229" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3KAFWJNHJ6VKA77T.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "3KAFWJNHJ6VKA77T", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3KAFWJNHJ6VKA77T.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "3KAFWJNHJ6VKA77T.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4348" + }, + "appliesTo" : [ ] + }, + "3KAFWJNHJ6VKA77T.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "3KAFWJNHJ6VKA77T.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3KAFWJNHJ6VKA77T.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "3KAFWJNHJ6VKA77T", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3KAFWJNHJ6VKA77T.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "3KAFWJNHJ6VKA77T.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1012000000" + }, + "appliesTo" : [ ] + }, + "3KAFWJNHJ6VKA77T.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "3KAFWJNHJ6VKA77T.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2660" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3KAFWJNHJ6VKA77T.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "3KAFWJNHJ6VKA77T", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3KAFWJNHJ6VKA77T.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "3KAFWJNHJ6VKA77T.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2313" + }, + "appliesTo" : [ ] + }, + "3KAFWJNHJ6VKA77T.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "3KAFWJNHJ6VKA77T.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3KAFWJNHJ6VKA77T.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "3KAFWJNHJ6VKA77T", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3KAFWJNHJ6VKA77T.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "3KAFWJNHJ6VKA77T.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5213" + }, + "appliesTo" : [ ] + }, + "3KAFWJNHJ6VKA77T.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "3KAFWJNHJ6VKA77T.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3KAFWJNHJ6VKA77T.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "3KAFWJNHJ6VKA77T", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3KAFWJNHJ6VKA77T.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "3KAFWJNHJ6VKA77T.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2186000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3KAFWJNHJ6VKA77T.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "3KAFWJNHJ6VKA77T", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3KAFWJNHJ6VKA77T.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "3KAFWJNHJ6VKA77T.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2726000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3KAFWJNHJ6VKA77T.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "3KAFWJNHJ6VKA77T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3KAFWJNHJ6VKA77T.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "3KAFWJNHJ6VKA77T.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1308" + }, + "appliesTo" : [ ] + }, + "3KAFWJNHJ6VKA77T.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "3KAFWJNHJ6VKA77T.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1493000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3KAFWJNHJ6VKA77T.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "3KAFWJNHJ6VKA77T", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3KAFWJNHJ6VKA77T.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "3KAFWJNHJ6VKA77T.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1901000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3KAFWJNHJ6VKA77T.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "3KAFWJNHJ6VKA77T", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3KAFWJNHJ6VKA77T.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "3KAFWJNHJ6VKA77T.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1298000000" + }, + "appliesTo" : [ ] + }, + "3KAFWJNHJ6VKA77T.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "3KAFWJNHJ6VKA77T.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1137" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3KAFWJNHJ6VKA77T.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "3KAFWJNHJ6VKA77T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3KAFWJNHJ6VKA77T.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "3KAFWJNHJ6VKA77T.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2563" + }, + "appliesTo" : [ ] + }, + "3KAFWJNHJ6VKA77T.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "3KAFWJNHJ6VKA77T.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "FFWF55NY7SRTUYUX" : { + "FFWF55NY7SRTUYUX.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "FFWF55NY7SRTUYUX", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "FFWF55NY7SRTUYUX.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "FFWF55NY7SRTUYUX.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5216" + }, + "appliesTo" : [ ] + }, + "FFWF55NY7SRTUYUX.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "FFWF55NY7SRTUYUX.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FFWF55NY7SRTUYUX.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "FFWF55NY7SRTUYUX", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "FFWF55NY7SRTUYUX.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "FFWF55NY7SRTUYUX.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14083" + }, + "appliesTo" : [ ] + }, + "FFWF55NY7SRTUYUX.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "FFWF55NY7SRTUYUX.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FFWF55NY7SRTUYUX.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "FFWF55NY7SRTUYUX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "FFWF55NY7SRTUYUX.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "FFWF55NY7SRTUYUX.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19718" + }, + "appliesTo" : [ ] + }, + "FFWF55NY7SRTUYUX.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "FFWF55NY7SRTUYUX.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FFWF55NY7SRTUYUX.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "FFWF55NY7SRTUYUX", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "FFWF55NY7SRTUYUX.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "FFWF55NY7SRTUYUX.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FFWF55NY7SRTUYUX.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "FFWF55NY7SRTUYUX", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "FFWF55NY7SRTUYUX.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "FFWF55NY7SRTUYUX.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4890000000" + }, + "appliesTo" : [ ] + }, + "FFWF55NY7SRTUYUX.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "FFWF55NY7SRTUYUX.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8126" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FFWF55NY7SRTUYUX.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "FFWF55NY7SRTUYUX", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "FFWF55NY7SRTUYUX.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "FFWF55NY7SRTUYUX.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9807" + }, + "appliesTo" : [ ] + }, + "FFWF55NY7SRTUYUX.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "FFWF55NY7SRTUYUX.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FFWF55NY7SRTUYUX.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "FFWF55NY7SRTUYUX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "FFWF55NY7SRTUYUX.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "FFWF55NY7SRTUYUX.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FFWF55NY7SRTUYUX.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "FFWF55NY7SRTUYUX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FFWF55NY7SRTUYUX.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "FFWF55NY7SRTUYUX.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5093" + }, + "appliesTo" : [ ] + }, + "FFWF55NY7SRTUYUX.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "FFWF55NY7SRTUYUX.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FFWF55NY7SRTUYUX.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "FFWF55NY7SRTUYUX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FFWF55NY7SRTUYUX.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "FFWF55NY7SRTUYUX.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FFWF55NY7SRTUYUX.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "FFWF55NY7SRTUYUX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FFWF55NY7SRTUYUX.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "FFWF55NY7SRTUYUX.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "FFWF55NY7SRTUYUX.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "FFWF55NY7SRTUYUX.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11122" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FFWF55NY7SRTUYUX.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "FFWF55NY7SRTUYUX", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "FFWF55NY7SRTUYUX.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "FFWF55NY7SRTUYUX.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26814" + }, + "appliesTo" : [ ] + }, + "FFWF55NY7SRTUYUX.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "FFWF55NY7SRTUYUX.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "6TGXJKCAZTAFTYB9" : { + "6TGXJKCAZTAFTYB9.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "6TGXJKCAZTAFTYB9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6TGXJKCAZTAFTYB9.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "6TGXJKCAZTAFTYB9.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "78622" + }, + "appliesTo" : [ ] + }, + "6TGXJKCAZTAFTYB9.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "6TGXJKCAZTAFTYB9.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6TGXJKCAZTAFTYB9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6TGXJKCAZTAFTYB9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6TGXJKCAZTAFTYB9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6TGXJKCAZTAFTYB9.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6TGXJKCAZTAFTYB9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6TGXJKCAZTAFTYB9", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "6TGXJKCAZTAFTYB9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6TGXJKCAZTAFTYB9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37938" + }, + "appliesTo" : [ ] + }, + "6TGXJKCAZTAFTYB9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6TGXJKCAZTAFTYB9.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6TGXJKCAZTAFTYB9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6TGXJKCAZTAFTYB9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6TGXJKCAZTAFTYB9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6TGXJKCAZTAFTYB9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "74533" + }, + "appliesTo" : [ ] + }, + "6TGXJKCAZTAFTYB9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6TGXJKCAZTAFTYB9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6TGXJKCAZTAFTYB9.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "6TGXJKCAZTAFTYB9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6TGXJKCAZTAFTYB9.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "6TGXJKCAZTAFTYB9.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0892000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6TGXJKCAZTAFTYB9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6TGXJKCAZTAFTYB9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6TGXJKCAZTAFTYB9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6TGXJKCAZTAFTYB9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14510" + }, + "appliesTo" : [ ] + }, + "6TGXJKCAZTAFTYB9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6TGXJKCAZTAFTYB9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6TGXJKCAZTAFTYB9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6TGXJKCAZTAFTYB9", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "6TGXJKCAZTAFTYB9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6TGXJKCAZTAFTYB9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28796" + }, + "appliesTo" : [ ] + }, + "6TGXJKCAZTAFTYB9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6TGXJKCAZTAFTYB9.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6TGXJKCAZTAFTYB9.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "6TGXJKCAZTAFTYB9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6TGXJKCAZTAFTYB9.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "6TGXJKCAZTAFTYB9.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30472" + }, + "appliesTo" : [ ] + }, + "6TGXJKCAZTAFTYB9.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "6TGXJKCAZTAFTYB9.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6TGXJKCAZTAFTYB9.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "6TGXJKCAZTAFTYB9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6TGXJKCAZTAFTYB9.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "6TGXJKCAZTAFTYB9.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39567" + }, + "appliesTo" : [ ] + }, + "6TGXJKCAZTAFTYB9.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "6TGXJKCAZTAFTYB9.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5056000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6TGXJKCAZTAFTYB9.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "6TGXJKCAZTAFTYB9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6TGXJKCAZTAFTYB9.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "6TGXJKCAZTAFTYB9.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9518000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6TGXJKCAZTAFTYB9.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "6TGXJKCAZTAFTYB9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6TGXJKCAZTAFTYB9.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "6TGXJKCAZTAFTYB9.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15365" + }, + "appliesTo" : [ ] + }, + "6TGXJKCAZTAFTYB9.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "6TGXJKCAZTAFTYB9.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6TGXJKCAZTAFTYB9.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "6TGXJKCAZTAFTYB9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6TGXJKCAZTAFTYB9.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "6TGXJKCAZTAFTYB9.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5816000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "6SNHPAN3YKSWBAJB" : { + "6SNHPAN3YKSWBAJB.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6SNHPAN3YKSWBAJB", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "6SNHPAN3YKSWBAJB.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6SNHPAN3YKSWBAJB.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7632" + }, + "appliesTo" : [ ] + }, + "6SNHPAN3YKSWBAJB.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6SNHPAN3YKSWBAJB.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6SNHPAN3YKSWBAJB.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "6SNHPAN3YKSWBAJB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6SNHPAN3YKSWBAJB.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "6SNHPAN3YKSWBAJB.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6313000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6SNHPAN3YKSWBAJB.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6SNHPAN3YKSWBAJB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6SNHPAN3YKSWBAJB.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6SNHPAN3YKSWBAJB.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "6SNHPAN3YKSWBAJB.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6SNHPAN3YKSWBAJB.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5964" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6SNHPAN3YKSWBAJB.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6SNHPAN3YKSWBAJB", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "6SNHPAN3YKSWBAJB.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6SNHPAN3YKSWBAJB.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14928" + }, + "appliesTo" : [ ] + }, + "6SNHPAN3YKSWBAJB.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6SNHPAN3YKSWBAJB.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6SNHPAN3YKSWBAJB.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "6SNHPAN3YKSWBAJB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6SNHPAN3YKSWBAJB.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "6SNHPAN3YKSWBAJB.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8039" + }, + "appliesTo" : [ ] + }, + "6SNHPAN3YKSWBAJB.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "6SNHPAN3YKSWBAJB.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3059000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6SNHPAN3YKSWBAJB.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "6SNHPAN3YKSWBAJB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6SNHPAN3YKSWBAJB.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "6SNHPAN3YKSWBAJB.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7544000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6SNHPAN3YKSWBAJB.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "6SNHPAN3YKSWBAJB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6SNHPAN3YKSWBAJB.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "6SNHPAN3YKSWBAJB.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3224" + }, + "appliesTo" : [ ] + }, + "6SNHPAN3YKSWBAJB.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "6SNHPAN3YKSWBAJB.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6SNHPAN3YKSWBAJB.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6SNHPAN3YKSWBAJB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6SNHPAN3YKSWBAJB.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6SNHPAN3YKSWBAJB.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6SNHPAN3YKSWBAJB.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6SNHPAN3YKSWBAJB", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "6SNHPAN3YKSWBAJB.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6SNHPAN3YKSWBAJB.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3440000000" + }, + "appliesTo" : [ ] + }, + "6SNHPAN3YKSWBAJB.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6SNHPAN3YKSWBAJB.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3010" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6SNHPAN3YKSWBAJB.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "6SNHPAN3YKSWBAJB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6SNHPAN3YKSWBAJB.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "6SNHPAN3YKSWBAJB.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6SNHPAN3YKSWBAJB.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "6SNHPAN3YKSWBAJB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6SNHPAN3YKSWBAJB.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "6SNHPAN3YKSWBAJB.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15950" + }, + "appliesTo" : [ ] + }, + "6SNHPAN3YKSWBAJB.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "6SNHPAN3YKSWBAJB.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6SNHPAN3YKSWBAJB.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "6SNHPAN3YKSWBAJB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6SNHPAN3YKSWBAJB.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "6SNHPAN3YKSWBAJB.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6383" + }, + "appliesTo" : [ ] + }, + "6SNHPAN3YKSWBAJB.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "6SNHPAN3YKSWBAJB.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "6VG367TBGT66TM4N" : { + "6VG367TBGT66TM4N.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6VG367TBGT66TM4N", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "6VG367TBGT66TM4N.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6VG367TBGT66TM4N.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1230" + }, + "appliesTo" : [ ] + }, + "6VG367TBGT66TM4N.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6VG367TBGT66TM4N.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6VG367TBGT66TM4N.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6VG367TBGT66TM4N", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "6VG367TBGT66TM4N.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6VG367TBGT66TM4N.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6VG367TBGT66TM4N.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6VG367TBGT66TM4N", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "6VG367TBGT66TM4N.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6VG367TBGT66TM4N.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "656" + }, + "appliesTo" : [ ] + }, + "6VG367TBGT66TM4N.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6VG367TBGT66TM4N.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0678000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6VG367TBGT66TM4N.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "6VG367TBGT66TM4N", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "6VG367TBGT66TM4N.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "6VG367TBGT66TM4N.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2893" + }, + "appliesTo" : [ ] + }, + "6VG367TBGT66TM4N.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "6VG367TBGT66TM4N.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6VG367TBGT66TM4N.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "6VG367TBGT66TM4N", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "6VG367TBGT66TM4N.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "6VG367TBGT66TM4N.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1474" + }, + "appliesTo" : [ ] + }, + "6VG367TBGT66TM4N.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "6VG367TBGT66TM4N.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0557000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6VG367TBGT66TM4N.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "6VG367TBGT66TM4N", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "6VG367TBGT66TM4N.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "6VG367TBGT66TM4N.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1252000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6VG367TBGT66TM4N.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6VG367TBGT66TM4N", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "6VG367TBGT66TM4N.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6VG367TBGT66TM4N.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1328" + }, + "appliesTo" : [ ] + }, + "6VG367TBGT66TM4N.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6VG367TBGT66TM4N.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0501000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6VG367TBGT66TM4N.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "6VG367TBGT66TM4N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6VG367TBGT66TM4N.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "6VG367TBGT66TM4N.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "6VG367TBGT66TM4N.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "6VG367TBGT66TM4N.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1371" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6VG367TBGT66TM4N.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6VG367TBGT66TM4N", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "6VG367TBGT66TM4N.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6VG367TBGT66TM4N.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2528" + }, + "appliesTo" : [ ] + }, + "6VG367TBGT66TM4N.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6VG367TBGT66TM4N.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6VG367TBGT66TM4N.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "6VG367TBGT66TM4N", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "6VG367TBGT66TM4N.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "6VG367TBGT66TM4N.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1132000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6VG367TBGT66TM4N.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "6VG367TBGT66TM4N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6VG367TBGT66TM4N.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "6VG367TBGT66TM4N.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "728" + }, + "appliesTo" : [ ] + }, + "6VG367TBGT66TM4N.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "6VG367TBGT66TM4N.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6VG367TBGT66TM4N.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "6VG367TBGT66TM4N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6VG367TBGT66TM4N.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "6VG367TBGT66TM4N.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1652000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "T2A8DS9QR9R22WZ2" : { + "T2A8DS9QR9R22WZ2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "T2A8DS9QR9R22WZ2", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "T2A8DS9QR9R22WZ2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "T2A8DS9QR9R22WZ2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3530000000" + }, + "appliesTo" : [ ] + }, + "T2A8DS9QR9R22WZ2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "T2A8DS9QR9R22WZ2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1954" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "T2A8DS9QR9R22WZ2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "T2A8DS9QR9R22WZ2", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "T2A8DS9QR9R22WZ2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "T2A8DS9QR9R22WZ2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4969" + }, + "appliesTo" : [ ] + }, + "T2A8DS9QR9R22WZ2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "T2A8DS9QR9R22WZ2.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "T2A8DS9QR9R22WZ2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "T2A8DS9QR9R22WZ2", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "T2A8DS9QR9R22WZ2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "T2A8DS9QR9R22WZ2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11047" + }, + "appliesTo" : [ ] + }, + "T2A8DS9QR9R22WZ2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "T2A8DS9QR9R22WZ2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "T2A8DS9QR9R22WZ2.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "T2A8DS9QR9R22WZ2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "T2A8DS9QR9R22WZ2.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "T2A8DS9QR9R22WZ2.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4654" + }, + "appliesTo" : [ ] + }, + "T2A8DS9QR9R22WZ2.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "T2A8DS9QR9R22WZ2.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "T2A8DS9QR9R22WZ2.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "T2A8DS9QR9R22WZ2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "T2A8DS9QR9R22WZ2.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "T2A8DS9QR9R22WZ2.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "T2A8DS9QR9R22WZ2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "T2A8DS9QR9R22WZ2", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "T2A8DS9QR9R22WZ2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "T2A8DS9QR9R22WZ2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4059" + }, + "appliesTo" : [ ] + }, + "T2A8DS9QR9R22WZ2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "T2A8DS9QR9R22WZ2.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "T2A8DS9QR9R22WZ2.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "T2A8DS9QR9R22WZ2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "T2A8DS9QR9R22WZ2.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "T2A8DS9QR9R22WZ2.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2261" + }, + "appliesTo" : [ ] + }, + "T2A8DS9QR9R22WZ2.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "T2A8DS9QR9R22WZ2.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "T2A8DS9QR9R22WZ2.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "T2A8DS9QR9R22WZ2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "T2A8DS9QR9R22WZ2.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "T2A8DS9QR9R22WZ2.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "T2A8DS9QR9R22WZ2.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "T2A8DS9QR9R22WZ2.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12539" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "T2A8DS9QR9R22WZ2.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "T2A8DS9QR9R22WZ2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "T2A8DS9QR9R22WZ2.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "T2A8DS9QR9R22WZ2.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "T2A8DS9QR9R22WZ2.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "T2A8DS9QR9R22WZ2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "T2A8DS9QR9R22WZ2.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "T2A8DS9QR9R22WZ2.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "T2A8DS9QR9R22WZ2.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "T2A8DS9QR9R22WZ2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "T2A8DS9QR9R22WZ2.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "T2A8DS9QR9R22WZ2.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5570" + }, + "appliesTo" : [ ] + }, + "T2A8DS9QR9R22WZ2.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "T2A8DS9QR9R22WZ2.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "T2A8DS9QR9R22WZ2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "T2A8DS9QR9R22WZ2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "T2A8DS9QR9R22WZ2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "T2A8DS9QR9R22WZ2.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "SXC4GWK8KEDB7F93" : { + "SXC4GWK8KEDB7F93.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SXC4GWK8KEDB7F93", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SXC4GWK8KEDB7F93.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SXC4GWK8KEDB7F93.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4084" + }, + "appliesTo" : [ ] + }, + "SXC4GWK8KEDB7F93.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SXC4GWK8KEDB7F93.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SXC4GWK8KEDB7F93.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SXC4GWK8KEDB7F93", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SXC4GWK8KEDB7F93.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SXC4GWK8KEDB7F93.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SXC4GWK8KEDB7F93.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SXC4GWK8KEDB7F93", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "SXC4GWK8KEDB7F93.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SXC4GWK8KEDB7F93.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7950" + }, + "appliesTo" : [ ] + }, + "SXC4GWK8KEDB7F93.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SXC4GWK8KEDB7F93.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SXC4GWK8KEDB7F93.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "SXC4GWK8KEDB7F93", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SXC4GWK8KEDB7F93.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "SXC4GWK8KEDB7F93.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SXC4GWK8KEDB7F93.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "SXC4GWK8KEDB7F93", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SXC4GWK8KEDB7F93.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "SXC4GWK8KEDB7F93.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SXC4GWK8KEDB7F93.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "SXC4GWK8KEDB7F93", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SXC4GWK8KEDB7F93.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "SXC4GWK8KEDB7F93.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18939" + }, + "appliesTo" : [ ] + }, + "SXC4GWK8KEDB7F93.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "SXC4GWK8KEDB7F93.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SXC4GWK8KEDB7F93.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SXC4GWK8KEDB7F93", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "SXC4GWK8KEDB7F93.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SXC4GWK8KEDB7F93.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15955" + }, + "appliesTo" : [ ] + }, + "SXC4GWK8KEDB7F93.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SXC4GWK8KEDB7F93.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SXC4GWK8KEDB7F93.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "SXC4GWK8KEDB7F93", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SXC4GWK8KEDB7F93.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "SXC4GWK8KEDB7F93.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9152" + }, + "appliesTo" : [ ] + }, + "SXC4GWK8KEDB7F93.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "SXC4GWK8KEDB7F93.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SXC4GWK8KEDB7F93.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SXC4GWK8KEDB7F93", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "SXC4GWK8KEDB7F93.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SXC4GWK8KEDB7F93.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8469" + }, + "appliesTo" : [ ] + }, + "SXC4GWK8KEDB7F93.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SXC4GWK8KEDB7F93.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SXC4GWK8KEDB7F93.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "SXC4GWK8KEDB7F93", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SXC4GWK8KEDB7F93.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "SXC4GWK8KEDB7F93.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3670000000" + }, + "appliesTo" : [ ] + }, + "SXC4GWK8KEDB7F93.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "SXC4GWK8KEDB7F93.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9660" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SXC4GWK8KEDB7F93.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "SXC4GWK8KEDB7F93", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SXC4GWK8KEDB7F93.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "SXC4GWK8KEDB7F93.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SXC4GWK8KEDB7F93.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "SXC4GWK8KEDB7F93", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SXC4GWK8KEDB7F93.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "SXC4GWK8KEDB7F93.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4697" + }, + "appliesTo" : [ ] + }, + "SXC4GWK8KEDB7F93.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "SXC4GWK8KEDB7F93.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "W5JCPDDZFQ9MFMCP" : { + "W5JCPDDZFQ9MFMCP.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "W5JCPDDZFQ9MFMCP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W5JCPDDZFQ9MFMCP.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "W5JCPDDZFQ9MFMCP.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "314924" + }, + "appliesTo" : [ ] + }, + "W5JCPDDZFQ9MFMCP.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "W5JCPDDZFQ9MFMCP.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "35.9500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "W5JCPDDZFQ9MFMCP.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "W5JCPDDZFQ9MFMCP", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "W5JCPDDZFQ9MFMCP.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "W5JCPDDZFQ9MFMCP.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "70.3340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "W5JCPDDZFQ9MFMCP.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "W5JCPDDZFQ9MFMCP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W5JCPDDZFQ9MFMCP.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "W5JCPDDZFQ9MFMCP.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "72.8010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "W5JCPDDZFQ9MFMCP.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "W5JCPDDZFQ9MFMCP", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "W5JCPDDZFQ9MFMCP.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "W5JCPDDZFQ9MFMCP.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "812467" + }, + "appliesTo" : [ ] + }, + "W5JCPDDZFQ9MFMCP.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "W5JCPDDZFQ9MFMCP.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "30.9160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "W5JCPDDZFQ9MFMCP.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "W5JCPDDZFQ9MFMCP", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "W5JCPDDZFQ9MFMCP.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "W5JCPDDZFQ9MFMCP.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1612408" + }, + "appliesTo" : [ ] + }, + "W5JCPDDZFQ9MFMCP.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "W5JCPDDZFQ9MFMCP.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "W5JCPDDZFQ9MFMCP.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "W5JCPDDZFQ9MFMCP", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "W5JCPDDZFQ9MFMCP.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "W5JCPDDZFQ9MFMCP.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "31.5120000000" + }, + "appliesTo" : [ ] + }, + "W5JCPDDZFQ9MFMCP.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "W5JCPDDZFQ9MFMCP.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "828124" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "W5JCPDDZFQ9MFMCP.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "W5JCPDDZFQ9MFMCP", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "W5JCPDDZFQ9MFMCP.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "W5JCPDDZFQ9MFMCP.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "606523" + }, + "appliesTo" : [ ] + }, + "W5JCPDDZFQ9MFMCP.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "W5JCPDDZFQ9MFMCP.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "W5JCPDDZFQ9MFMCP.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "W5JCPDDZFQ9MFMCP", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "W5JCPDDZFQ9MFMCP.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "W5JCPDDZFQ9MFMCP.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "63.7540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "W5JCPDDZFQ9MFMCP.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "W5JCPDDZFQ9MFMCP", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "W5JCPDDZFQ9MFMCP.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "W5JCPDDZFQ9MFMCP.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1651446" + }, + "appliesTo" : [ ] + }, + "W5JCPDDZFQ9MFMCP.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "W5JCPDDZFQ9MFMCP.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "W5JCPDDZFQ9MFMCP.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "W5JCPDDZFQ9MFMCP", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "W5JCPDDZFQ9MFMCP.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "W5JCPDDZFQ9MFMCP.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "62.4670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "W5JCPDDZFQ9MFMCP.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "W5JCPDDZFQ9MFMCP", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "W5JCPDDZFQ9MFMCP.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "W5JCPDDZFQ9MFMCP.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "304634" + }, + "appliesTo" : [ ] + }, + "W5JCPDDZFQ9MFMCP.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "W5JCPDDZFQ9MFMCP.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "34.7760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "W5JCPDDZFQ9MFMCP.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "W5JCPDDZFQ9MFMCP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W5JCPDDZFQ9MFMCP.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "W5JCPDDZFQ9MFMCP.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "W5JCPDDZFQ9MFMCP.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "W5JCPDDZFQ9MFMCP.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "626693" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "CYF7KMJTP6KF6443" : { + "CYF7KMJTP6KF6443.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "CYF7KMJTP6KF6443", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CYF7KMJTP6KF6443.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "CYF7KMJTP6KF6443.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8712" + }, + "appliesTo" : [ ] + }, + "CYF7KMJTP6KF6443.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "CYF7KMJTP6KF6443.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CYF7KMJTP6KF6443.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "CYF7KMJTP6KF6443", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CYF7KMJTP6KF6443.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "CYF7KMJTP6KF6443.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CYF7KMJTP6KF6443.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "CYF7KMJTP6KF6443", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CYF7KMJTP6KF6443.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "CYF7KMJTP6KF6443.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30463" + }, + "appliesTo" : [ ] + }, + "CYF7KMJTP6KF6443.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "CYF7KMJTP6KF6443.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CYF7KMJTP6KF6443.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "CYF7KMJTP6KF6443", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CYF7KMJTP6KF6443.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "CYF7KMJTP6KF6443.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "CYF7KMJTP6KF6443.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "CYF7KMJTP6KF6443.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17075" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CYF7KMJTP6KF6443.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "CYF7KMJTP6KF6443", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CYF7KMJTP6KF6443.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "CYF7KMJTP6KF6443.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16204" + }, + "appliesTo" : [ ] + }, + "CYF7KMJTP6KF6443.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "CYF7KMJTP6KF6443.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CYF7KMJTP6KF6443.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "CYF7KMJTP6KF6443", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CYF7KMJTP6KF6443.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "CYF7KMJTP6KF6443.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "TBC4ECWPWM5TJCUA" : { + "TBC4ECWPWM5TJCUA.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "TBC4ECWPWM5TJCUA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TBC4ECWPWM5TJCUA.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "TBC4ECWPWM5TJCUA.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2304" + }, + "appliesTo" : [ ] + }, + "TBC4ECWPWM5TJCUA.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "TBC4ECWPWM5TJCUA.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TBC4ECWPWM5TJCUA.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "TBC4ECWPWM5TJCUA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TBC4ECWPWM5TJCUA.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "TBC4ECWPWM5TJCUA.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2349" + }, + "appliesTo" : [ ] + }, + "TBC4ECWPWM5TJCUA.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "TBC4ECWPWM5TJCUA.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TBC4ECWPWM5TJCUA.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "TBC4ECWPWM5TJCUA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TBC4ECWPWM5TJCUA.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "TBC4ECWPWM5TJCUA.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TBC4ECWPWM5TJCUA.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TBC4ECWPWM5TJCUA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TBC4ECWPWM5TJCUA.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TBC4ECWPWM5TJCUA.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2085" + }, + "appliesTo" : [ ] + }, + "TBC4ECWPWM5TJCUA.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TBC4ECWPWM5TJCUA.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TBC4ECWPWM5TJCUA.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TBC4ECWPWM5TJCUA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TBC4ECWPWM5TJCUA.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TBC4ECWPWM5TJCUA.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TBC4ECWPWM5TJCUA.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TBC4ECWPWM5TJCUA.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3953" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TBC4ECWPWM5TJCUA.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TBC4ECWPWM5TJCUA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TBC4ECWPWM5TJCUA.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TBC4ECWPWM5TJCUA.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2041" + }, + "appliesTo" : [ ] + }, + "TBC4ECWPWM5TJCUA.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TBC4ECWPWM5TJCUA.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TBC4ECWPWM5TJCUA.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "TBC4ECWPWM5TJCUA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TBC4ECWPWM5TJCUA.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "TBC4ECWPWM5TJCUA.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TBC4ECWPWM5TJCUA.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "TBC4ECWPWM5TJCUA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TBC4ECWPWM5TJCUA.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "TBC4ECWPWM5TJCUA.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1204" + }, + "appliesTo" : [ ] + }, + "TBC4ECWPWM5TJCUA.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "TBC4ECWPWM5TJCUA.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TBC4ECWPWM5TJCUA.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TBC4ECWPWM5TJCUA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TBC4ECWPWM5TJCUA.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TBC4ECWPWM5TJCUA.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TBC4ECWPWM5TJCUA.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TBC4ECWPWM5TJCUA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TBC4ECWPWM5TJCUA.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TBC4ECWPWM5TJCUA.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1070" + }, + "appliesTo" : [ ] + }, + "TBC4ECWPWM5TJCUA.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TBC4ECWPWM5TJCUA.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TBC4ECWPWM5TJCUA.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "TBC4ECWPWM5TJCUA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TBC4ECWPWM5TJCUA.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "TBC4ECWPWM5TJCUA.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TBC4ECWPWM5TJCUA.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "TBC4ECWPWM5TJCUA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TBC4ECWPWM5TJCUA.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "TBC4ECWPWM5TJCUA.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4608" + }, + "appliesTo" : [ ] + }, + "TBC4ECWPWM5TJCUA.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "TBC4ECWPWM5TJCUA.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "F2Q73ZKZWDKZ25TB" : { + "F2Q73ZKZWDKZ25TB.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "F2Q73ZKZWDKZ25TB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "F2Q73ZKZWDKZ25TB.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "F2Q73ZKZWDKZ25TB.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "F2Q73ZKZWDKZ25TB.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "F2Q73ZKZWDKZ25TB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "F2Q73ZKZWDKZ25TB.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "F2Q73ZKZWDKZ25TB.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "665" + }, + "appliesTo" : [ ] + }, + "F2Q73ZKZWDKZ25TB.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "F2Q73ZKZWDKZ25TB.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "F2Q73ZKZWDKZ25TB.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "F2Q73ZKZWDKZ25TB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "F2Q73ZKZWDKZ25TB.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "F2Q73ZKZWDKZ25TB.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "F2Q73ZKZWDKZ25TB.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "F2Q73ZKZWDKZ25TB", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "F2Q73ZKZWDKZ25TB.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "F2Q73ZKZWDKZ25TB.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1200" + }, + "appliesTo" : [ ] + }, + "F2Q73ZKZWDKZ25TB.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "F2Q73ZKZWDKZ25TB.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "F2Q73ZKZWDKZ25TB.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "F2Q73ZKZWDKZ25TB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "F2Q73ZKZWDKZ25TB.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "F2Q73ZKZWDKZ25TB.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1363" + }, + "appliesTo" : [ ] + }, + "F2Q73ZKZWDKZ25TB.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "F2Q73ZKZWDKZ25TB.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "F2Q73ZKZWDKZ25TB.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "F2Q73ZKZWDKZ25TB", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "F2Q73ZKZWDKZ25TB.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "F2Q73ZKZWDKZ25TB.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "583" + }, + "appliesTo" : [ ] + }, + "F2Q73ZKZWDKZ25TB.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "F2Q73ZKZWDKZ25TB.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "F2Q73ZKZWDKZ25TB.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "F2Q73ZKZWDKZ25TB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "F2Q73ZKZWDKZ25TB.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "F2Q73ZKZWDKZ25TB.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1829" + }, + "appliesTo" : [ ] + }, + "F2Q73ZKZWDKZ25TB.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "F2Q73ZKZWDKZ25TB.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "F2Q73ZKZWDKZ25TB.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "F2Q73ZKZWDKZ25TB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "F2Q73ZKZWDKZ25TB.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "F2Q73ZKZWDKZ25TB.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "F2Q73ZKZWDKZ25TB.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "F2Q73ZKZWDKZ25TB", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "F2Q73ZKZWDKZ25TB.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "F2Q73ZKZWDKZ25TB.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3833" + }, + "appliesTo" : [ ] + }, + "F2Q73ZKZWDKZ25TB.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "F2Q73ZKZWDKZ25TB.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "F2Q73ZKZWDKZ25TB.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "F2Q73ZKZWDKZ25TB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "F2Q73ZKZWDKZ25TB.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "F2Q73ZKZWDKZ25TB.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1669" + }, + "appliesTo" : [ ] + }, + "F2Q73ZKZWDKZ25TB.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "F2Q73ZKZWDKZ25TB.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "F2Q73ZKZWDKZ25TB.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "F2Q73ZKZWDKZ25TB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "F2Q73ZKZWDKZ25TB.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "F2Q73ZKZWDKZ25TB.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "F2Q73ZKZWDKZ25TB.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "F2Q73ZKZWDKZ25TB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "F2Q73ZKZWDKZ25TB.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "F2Q73ZKZWDKZ25TB.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4248" + }, + "appliesTo" : [ ] + }, + "F2Q73ZKZWDKZ25TB.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "F2Q73ZKZWDKZ25TB.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "9MZCJAF77KSVMAC2" : { + "9MZCJAF77KSVMAC2.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "9MZCJAF77KSVMAC2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9MZCJAF77KSVMAC2.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "9MZCJAF77KSVMAC2.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "31.2340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9MZCJAF77KSVMAC2.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "9MZCJAF77KSVMAC2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9MZCJAF77KSVMAC2.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "9MZCJAF77KSVMAC2.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "414062" + }, + "appliesTo" : [ ] + }, + "9MZCJAF77KSVMAC2.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "9MZCJAF77KSVMAC2.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.7560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9MZCJAF77KSVMAC2.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "9MZCJAF77KSVMAC2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9MZCJAF77KSVMAC2.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "9MZCJAF77KSVMAC2.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "31.8770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9MZCJAF77KSVMAC2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "9MZCJAF77KSVMAC2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9MZCJAF77KSVMAC2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "9MZCJAF77KSVMAC2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "806204" + }, + "appliesTo" : [ ] + }, + "9MZCJAF77KSVMAC2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "9MZCJAF77KSVMAC2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9MZCJAF77KSVMAC2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "9MZCJAF77KSVMAC2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9MZCJAF77KSVMAC2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "9MZCJAF77KSVMAC2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "406233" + }, + "appliesTo" : [ ] + }, + "9MZCJAF77KSVMAC2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "9MZCJAF77KSVMAC2.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.4580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9MZCJAF77KSVMAC2.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "9MZCJAF77KSVMAC2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9MZCJAF77KSVMAC2.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "9MZCJAF77KSVMAC2.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "825723" + }, + "appliesTo" : [ ] + }, + "9MZCJAF77KSVMAC2.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "9MZCJAF77KSVMAC2.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9MZCJAF77KSVMAC2.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "9MZCJAF77KSVMAC2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9MZCJAF77KSVMAC2.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "9MZCJAF77KSVMAC2.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "9MZCJAF77KSVMAC2.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "9MZCJAF77KSVMAC2.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "313346" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9MZCJAF77KSVMAC2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "9MZCJAF77KSVMAC2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9MZCJAF77KSVMAC2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "9MZCJAF77KSVMAC2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "303261" + }, + "appliesTo" : [ ] + }, + "9MZCJAF77KSVMAC2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "9MZCJAF77KSVMAC2.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9MZCJAF77KSVMAC2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "9MZCJAF77KSVMAC2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9MZCJAF77KSVMAC2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "9MZCJAF77KSVMAC2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "152317" + }, + "appliesTo" : [ ] + }, + "9MZCJAF77KSVMAC2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "9MZCJAF77KSVMAC2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "17.3880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9MZCJAF77KSVMAC2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "9MZCJAF77KSVMAC2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9MZCJAF77KSVMAC2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "9MZCJAF77KSVMAC2.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "35.1670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9MZCJAF77KSVMAC2.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "9MZCJAF77KSVMAC2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9MZCJAF77KSVMAC2.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "9MZCJAF77KSVMAC2.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "157462" + }, + "appliesTo" : [ ] + }, + "9MZCJAF77KSVMAC2.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "9MZCJAF77KSVMAC2.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "17.9750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9MZCJAF77KSVMAC2.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "9MZCJAF77KSVMAC2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9MZCJAF77KSVMAC2.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "9MZCJAF77KSVMAC2.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "36.4010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "32XCE2AVYT82WZYJ" : { + "32XCE2AVYT82WZYJ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "32XCE2AVYT82WZYJ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "32XCE2AVYT82WZYJ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "32XCE2AVYT82WZYJ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "132227" + }, + "appliesTo" : [ ] + }, + "32XCE2AVYT82WZYJ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "32XCE2AVYT82WZYJ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.0940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "32XCE2AVYT82WZYJ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "32XCE2AVYT82WZYJ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "32XCE2AVYT82WZYJ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "32XCE2AVYT82WZYJ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "263885" + }, + "appliesTo" : [ ] + }, + "32XCE2AVYT82WZYJ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "32XCE2AVYT82WZYJ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "32XCE2AVYT82WZYJ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "32XCE2AVYT82WZYJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "32XCE2AVYT82WZYJ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "32XCE2AVYT82WZYJ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "29.7260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "32XCE2AVYT82WZYJ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "32XCE2AVYT82WZYJ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "32XCE2AVYT82WZYJ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "32XCE2AVYT82WZYJ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "763582" + }, + "appliesTo" : [ ] + }, + "32XCE2AVYT82WZYJ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "32XCE2AVYT82WZYJ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "32XCE2AVYT82WZYJ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "32XCE2AVYT82WZYJ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "32XCE2AVYT82WZYJ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "32XCE2AVYT82WZYJ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "383562" + }, + "appliesTo" : [ ] + }, + "32XCE2AVYT82WZYJ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "32XCE2AVYT82WZYJ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.5950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "32XCE2AVYT82WZYJ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "32XCE2AVYT82WZYJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "32XCE2AVYT82WZYJ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "32XCE2AVYT82WZYJ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "774432" + }, + "appliesTo" : [ ] + }, + "32XCE2AVYT82WZYJ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "32XCE2AVYT82WZYJ.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "32XCE2AVYT82WZYJ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "32XCE2AVYT82WZYJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "32XCE2AVYT82WZYJ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "32XCE2AVYT82WZYJ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "387893" + }, + "appliesTo" : [ ] + }, + "32XCE2AVYT82WZYJ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "32XCE2AVYT82WZYJ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.7600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "32XCE2AVYT82WZYJ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "32XCE2AVYT82WZYJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "32XCE2AVYT82WZYJ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "32XCE2AVYT82WZYJ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "30.3710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "32XCE2AVYT82WZYJ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "32XCE2AVYT82WZYJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "32XCE2AVYT82WZYJ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "32XCE2AVYT82WZYJ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "30.8850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "32XCE2AVYT82WZYJ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "32XCE2AVYT82WZYJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "32XCE2AVYT82WZYJ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "32XCE2AVYT82WZYJ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "32XCE2AVYT82WZYJ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "32XCE2AVYT82WZYJ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "268254" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "32XCE2AVYT82WZYJ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "32XCE2AVYT82WZYJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "32XCE2AVYT82WZYJ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "32XCE2AVYT82WZYJ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "29.3630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "32XCE2AVYT82WZYJ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "32XCE2AVYT82WZYJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "32XCE2AVYT82WZYJ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "32XCE2AVYT82WZYJ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "134456" + }, + "appliesTo" : [ ] + }, + "32XCE2AVYT82WZYJ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "32XCE2AVYT82WZYJ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.3490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "H4SWC23NZ6GQ2RR9" : { + "H4SWC23NZ6GQ2RR9.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "H4SWC23NZ6GQ2RR9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H4SWC23NZ6GQ2RR9.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "H4SWC23NZ6GQ2RR9.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "H4SWC23NZ6GQ2RR9.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "H4SWC23NZ6GQ2RR9.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2105" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "H4SWC23NZ6GQ2RR9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "H4SWC23NZ6GQ2RR9", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "H4SWC23NZ6GQ2RR9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "H4SWC23NZ6GQ2RR9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "699" + }, + "appliesTo" : [ ] + }, + "H4SWC23NZ6GQ2RR9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "H4SWC23NZ6GQ2RR9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "H4SWC23NZ6GQ2RR9.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "H4SWC23NZ6GQ2RR9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "H4SWC23NZ6GQ2RR9.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "H4SWC23NZ6GQ2RR9.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1602" + }, + "appliesTo" : [ ] + }, + "H4SWC23NZ6GQ2RR9.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "H4SWC23NZ6GQ2RR9.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1209000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "H4SWC23NZ6GQ2RR9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "H4SWC23NZ6GQ2RR9", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "H4SWC23NZ6GQ2RR9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "H4SWC23NZ6GQ2RR9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1398" + }, + "appliesTo" : [ ] + }, + "H4SWC23NZ6GQ2RR9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "H4SWC23NZ6GQ2RR9.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "H4SWC23NZ6GQ2RR9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "H4SWC23NZ6GQ2RR9", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "H4SWC23NZ6GQ2RR9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "H4SWC23NZ6GQ2RR9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1896" + }, + "appliesTo" : [ ] + }, + "H4SWC23NZ6GQ2RR9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "H4SWC23NZ6GQ2RR9.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "H4SWC23NZ6GQ2RR9.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "H4SWC23NZ6GQ2RR9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "H4SWC23NZ6GQ2RR9.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "H4SWC23NZ6GQ2RR9.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1917000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "H4SWC23NZ6GQ2RR9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "H4SWC23NZ6GQ2RR9", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "H4SWC23NZ6GQ2RR9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "H4SWC23NZ6GQ2RR9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4205" + }, + "appliesTo" : [ ] + }, + "H4SWC23NZ6GQ2RR9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "H4SWC23NZ6GQ2RR9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "H4SWC23NZ6GQ2RR9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "H4SWC23NZ6GQ2RR9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "H4SWC23NZ6GQ2RR9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "H4SWC23NZ6GQ2RR9.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "H4SWC23NZ6GQ2RR9.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "H4SWC23NZ6GQ2RR9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H4SWC23NZ6GQ2RR9.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "H4SWC23NZ6GQ2RR9.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "806" + }, + "appliesTo" : [ ] + }, + "H4SWC23NZ6GQ2RR9.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "H4SWC23NZ6GQ2RR9.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "H4SWC23NZ6GQ2RR9.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "H4SWC23NZ6GQ2RR9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H4SWC23NZ6GQ2RR9.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "H4SWC23NZ6GQ2RR9.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2532000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "H4SWC23NZ6GQ2RR9.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "H4SWC23NZ6GQ2RR9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "H4SWC23NZ6GQ2RR9.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "H4SWC23NZ6GQ2RR9.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4716" + }, + "appliesTo" : [ ] + }, + "H4SWC23NZ6GQ2RR9.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "H4SWC23NZ6GQ2RR9.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "H4SWC23NZ6GQ2RR9.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "H4SWC23NZ6GQ2RR9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "H4SWC23NZ6GQ2RR9.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "H4SWC23NZ6GQ2RR9.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1745000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "EM4WENQDQTCE6CHN" : { + "EM4WENQDQTCE6CHN.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "EM4WENQDQTCE6CHN", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "EM4WENQDQTCE6CHN.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "EM4WENQDQTCE6CHN.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21622" + }, + "appliesTo" : [ ] + }, + "EM4WENQDQTCE6CHN.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "EM4WENQDQTCE6CHN.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "EM4WENQDQTCE6CHN.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "EM4WENQDQTCE6CHN", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "EM4WENQDQTCE6CHN.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "EM4WENQDQTCE6CHN.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "EM4WENQDQTCE6CHN.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "EM4WENQDQTCE6CHN", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "EM4WENQDQTCE6CHN.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "EM4WENQDQTCE6CHN.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5960000000" + }, + "appliesTo" : [ ] + }, + "EM4WENQDQTCE6CHN.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "EM4WENQDQTCE6CHN.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12056" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EM4WENQDQTCE6CHN.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "EM4WENQDQTCE6CHN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EM4WENQDQTCE6CHN.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "EM4WENQDQTCE6CHN.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16899" + }, + "appliesTo" : [ ] + }, + "EM4WENQDQTCE6CHN.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "EM4WENQDQTCE6CHN.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "EM4WENQDQTCE6CHN.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "EM4WENQDQTCE6CHN", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "EM4WENQDQTCE6CHN.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "EM4WENQDQTCE6CHN.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38721" + }, + "appliesTo" : [ ] + }, + "EM4WENQDQTCE6CHN.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "EM4WENQDQTCE6CHN.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "EM4WENQDQTCE6CHN.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "EM4WENQDQTCE6CHN", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "EM4WENQDQTCE6CHN.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "EM4WENQDQTCE6CHN.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "EM4WENQDQTCE6CHN.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "EM4WENQDQTCE6CHN.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26060" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EM4WENQDQTCE6CHN.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "EM4WENQDQTCE6CHN", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "EM4WENQDQTCE6CHN.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "EM4WENQDQTCE6CHN.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8008" + }, + "appliesTo" : [ ] + }, + "EM4WENQDQTCE6CHN.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "EM4WENQDQTCE6CHN.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EM4WENQDQTCE6CHN.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "EM4WENQDQTCE6CHN", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "EM4WENQDQTCE6CHN.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "EM4WENQDQTCE6CHN.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "EM4WENQDQTCE6CHN.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "EM4WENQDQTCE6CHN", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "EM4WENQDQTCE6CHN.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "EM4WENQDQTCE6CHN.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14278" + }, + "appliesTo" : [ ] + }, + "EM4WENQDQTCE6CHN.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "EM4WENQDQTCE6CHN.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EM4WENQDQTCE6CHN.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "EM4WENQDQTCE6CHN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EM4WENQDQTCE6CHN.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "EM4WENQDQTCE6CHN.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8041" + }, + "appliesTo" : [ ] + }, + "EM4WENQDQTCE6CHN.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "EM4WENQDQTCE6CHN.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "EM4WENQDQTCE6CHN.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "EM4WENQDQTCE6CHN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EM4WENQDQTCE6CHN.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "EM4WENQDQTCE6CHN.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "UGAW5CN698QFXJS9" : { + "UGAW5CN698QFXJS9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "UGAW5CN698QFXJS9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "UGAW5CN698QFXJS9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "UGAW5CN698QFXJS9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11272" + }, + "appliesTo" : [ ] + }, + "UGAW5CN698QFXJS9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "UGAW5CN698QFXJS9.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "UGAW5CN698QFXJS9.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "UGAW5CN698QFXJS9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UGAW5CN698QFXJS9.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "UGAW5CN698QFXJS9.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12301" + }, + "appliesTo" : [ ] + }, + "UGAW5CN698QFXJS9.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "UGAW5CN698QFXJS9.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "UGAW5CN698QFXJS9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "UGAW5CN698QFXJS9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "UGAW5CN698QFXJS9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "UGAW5CN698QFXJS9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4599" + }, + "appliesTo" : [ ] + }, + "UGAW5CN698QFXJS9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "UGAW5CN698QFXJS9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "UGAW5CN698QFXJS9.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "UGAW5CN698QFXJS9", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "UGAW5CN698QFXJS9.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "UGAW5CN698QFXJS9.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12705" + }, + "appliesTo" : [ ] + }, + "UGAW5CN698QFXJS9.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "UGAW5CN698QFXJS9.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "UGAW5CN698QFXJS9.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "UGAW5CN698QFXJS9", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "UGAW5CN698QFXJS9.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "UGAW5CN698QFXJS9.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "UGAW5CN698QFXJS9.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "UGAW5CN698QFXJS9.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31945" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "UGAW5CN698QFXJS9.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "UGAW5CN698QFXJS9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UGAW5CN698QFXJS9.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "UGAW5CN698QFXJS9.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "UGAW5CN698QFXJS9.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "UGAW5CN698QFXJS9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UGAW5CN698QFXJS9.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "UGAW5CN698QFXJS9.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6224" + }, + "appliesTo" : [ ] + }, + "UGAW5CN698QFXJS9.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "UGAW5CN698QFXJS9.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "UGAW5CN698QFXJS9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "UGAW5CN698QFXJS9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "UGAW5CN698QFXJS9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "UGAW5CN698QFXJS9.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "UGAW5CN698QFXJS9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "UGAW5CN698QFXJS9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "UGAW5CN698QFXJS9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "UGAW5CN698QFXJS9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10886" + }, + "appliesTo" : [ ] + }, + "UGAW5CN698QFXJS9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "UGAW5CN698QFXJS9.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "UGAW5CN698QFXJS9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "UGAW5CN698QFXJS9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "UGAW5CN698QFXJS9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "UGAW5CN698QFXJS9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25598" + }, + "appliesTo" : [ ] + }, + "UGAW5CN698QFXJS9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "UGAW5CN698QFXJS9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "UGAW5CN698QFXJS9.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "UGAW5CN698QFXJS9", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "UGAW5CN698QFXJS9.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "UGAW5CN698QFXJS9.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "J5HSGUZ5Y3QZKRJT" : { + "J5HSGUZ5Y3QZKRJT.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "J5HSGUZ5Y3QZKRJT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J5HSGUZ5Y3QZKRJT.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "J5HSGUZ5Y3QZKRJT.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "73334" + }, + "appliesTo" : [ ] + }, + "J5HSGUZ5Y3QZKRJT.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "J5HSGUZ5Y3QZKRJT.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "J5HSGUZ5Y3QZKRJT.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "J5HSGUZ5Y3QZKRJT", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "J5HSGUZ5Y3QZKRJT.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "J5HSGUZ5Y3QZKRJT.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "199230" + }, + "appliesTo" : [ ] + }, + "J5HSGUZ5Y3QZKRJT.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "J5HSGUZ5Y3QZKRJT.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "J5HSGUZ5Y3QZKRJT.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "J5HSGUZ5Y3QZKRJT", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "J5HSGUZ5Y3QZKRJT.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "J5HSGUZ5Y3QZKRJT.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.0940000000" + }, + "appliesTo" : [ ] + }, + "J5HSGUZ5Y3QZKRJT.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "J5HSGUZ5Y3QZKRJT.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35864" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "J5HSGUZ5Y3QZKRJT.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "J5HSGUZ5Y3QZKRJT", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "J5HSGUZ5Y3QZKRJT.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "J5HSGUZ5Y3QZKRJT.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "105684" + }, + "appliesTo" : [ ] + }, + "J5HSGUZ5Y3QZKRJT.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "J5HSGUZ5Y3QZKRJT.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.0210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "J5HSGUZ5Y3QZKRJT.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "J5HSGUZ5Y3QZKRJT", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "J5HSGUZ5Y3QZKRJT.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "J5HSGUZ5Y3QZKRJT.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "100324" + }, + "appliesTo" : [ ] + }, + "J5HSGUZ5Y3QZKRJT.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "J5HSGUZ5Y3QZKRJT.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "J5HSGUZ5Y3QZKRJT.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "J5HSGUZ5Y3QZKRJT", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "J5HSGUZ5Y3QZKRJT.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "J5HSGUZ5Y3QZKRJT.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "210680" + }, + "appliesTo" : [ ] + }, + "J5HSGUZ5Y3QZKRJT.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "J5HSGUZ5Y3QZKRJT.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "J5HSGUZ5Y3QZKRJT.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "J5HSGUZ5Y3QZKRJT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J5HSGUZ5Y3QZKRJT.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "J5HSGUZ5Y3QZKRJT.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2020000000" + }, + "appliesTo" : [ ] + }, + "J5HSGUZ5Y3QZKRJT.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "J5HSGUZ5Y3QZKRJT.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "36813" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "J5HSGUZ5Y3QZKRJT.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "J5HSGUZ5Y3QZKRJT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J5HSGUZ5Y3QZKRJT.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "J5HSGUZ5Y3QZKRJT.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.4880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "J5HSGUZ5Y3QZKRJT.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "J5HSGUZ5Y3QZKRJT", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "J5HSGUZ5Y3QZKRJT.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "J5HSGUZ5Y3QZKRJT.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.4350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "J5HSGUZ5Y3QZKRJT.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "J5HSGUZ5Y3QZKRJT", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "J5HSGUZ5Y3QZKRJT.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "J5HSGUZ5Y3QZKRJT.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "J5HSGUZ5Y3QZKRJT.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "J5HSGUZ5Y3QZKRJT.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "71473" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "J5HSGUZ5Y3QZKRJT.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "J5HSGUZ5Y3QZKRJT", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "J5HSGUZ5Y3QZKRJT.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "J5HSGUZ5Y3QZKRJT.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.2650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "5CT452VS74WXW77W" : { + "5CT452VS74WXW77W.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "5CT452VS74WXW77W", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5CT452VS74WXW77W.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "5CT452VS74WXW77W.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "5CT452VS74WXW77W.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "5CT452VS74WXW77W", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5CT452VS74WXW77W.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "5CT452VS74WXW77W.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7872" + }, + "appliesTo" : [ ] + }, + "5CT452VS74WXW77W.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "5CT452VS74WXW77W.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "5CT452VS74WXW77W.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "5CT452VS74WXW77W", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "5CT452VS74WXW77W.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "5CT452VS74WXW77W.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15136" + }, + "appliesTo" : [ ] + }, + "5CT452VS74WXW77W.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "5CT452VS74WXW77W.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5CT452VS74WXW77W.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "5CT452VS74WXW77W", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "5CT452VS74WXW77W.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "5CT452VS74WXW77W.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21129" + }, + "appliesTo" : [ ] + }, + "5CT452VS74WXW77W.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "5CT452VS74WXW77W.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5CT452VS74WXW77W.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "5CT452VS74WXW77W", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "5CT452VS74WXW77W.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "5CT452VS74WXW77W.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "5CT452VS74WXW77W.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "5CT452VS74WXW77W", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "5CT452VS74WXW77W.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "5CT452VS74WXW77W.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "5CT452VS74WXW77W.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "5CT452VS74WXW77W", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "5CT452VS74WXW77W.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "5CT452VS74WXW77W.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "41817" + }, + "appliesTo" : [ ] + }, + "5CT452VS74WXW77W.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "5CT452VS74WXW77W.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5CT452VS74WXW77W.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "5CT452VS74WXW77W", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "5CT452VS74WXW77W.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "5CT452VS74WXW77W.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8250000000" + }, + "appliesTo" : [ ] + }, + "5CT452VS74WXW77W.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "5CT452VS74WXW77W.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21681" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "5CT452VS74WXW77W.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "5CT452VS74WXW77W", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5CT452VS74WXW77W.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "5CT452VS74WXW77W.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15661" + }, + "appliesTo" : [ ] + }, + "5CT452VS74WXW77W.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "5CT452VS74WXW77W.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "5CT452VS74WXW77W.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "5CT452VS74WXW77W", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "5CT452VS74WXW77W.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "5CT452VS74WXW77W.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "5CT452VS74WXW77W.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "5CT452VS74WXW77W.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "43193" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "5CT452VS74WXW77W.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "5CT452VS74WXW77W", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "5CT452VS74WXW77W.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "5CT452VS74WXW77W.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7604" + }, + "appliesTo" : [ ] + }, + "5CT452VS74WXW77W.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "5CT452VS74WXW77W.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5CT452VS74WXW77W.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "5CT452VS74WXW77W", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "5CT452VS74WXW77W.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "5CT452VS74WXW77W.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "J8FC8SEVZRJMDMBB" : { + "J8FC8SEVZRJMDMBB.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "J8FC8SEVZRJMDMBB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J8FC8SEVZRJMDMBB.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "J8FC8SEVZRJMDMBB.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "80285" + }, + "appliesTo" : [ ] + }, + "J8FC8SEVZRJMDMBB.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "J8FC8SEVZRJMDMBB.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.1650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "J8FC8SEVZRJMDMBB.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "J8FC8SEVZRJMDMBB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "J8FC8SEVZRJMDMBB.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "J8FC8SEVZRJMDMBB.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "18.0530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "J8FC8SEVZRJMDMBB.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "J8FC8SEVZRJMDMBB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J8FC8SEVZRJMDMBB.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "J8FC8SEVZRJMDMBB.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "18.4890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "J8FC8SEVZRJMDMBB.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "J8FC8SEVZRJMDMBB", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "J8FC8SEVZRJMDMBB.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "J8FC8SEVZRJMDMBB.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "439858" + }, + "appliesTo" : [ ] + }, + "J8FC8SEVZRJMDMBB.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "J8FC8SEVZRJMDMBB.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "J8FC8SEVZRJMDMBB.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "J8FC8SEVZRJMDMBB", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "J8FC8SEVZRJMDMBB.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "J8FC8SEVZRJMDMBB.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "221255" + }, + "appliesTo" : [ ] + }, + "J8FC8SEVZRJMDMBB.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "J8FC8SEVZRJMDMBB.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.4190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "J8FC8SEVZRJMDMBB.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "J8FC8SEVZRJMDMBB", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "J8FC8SEVZRJMDMBB.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "J8FC8SEVZRJMDMBB.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "231687" + }, + "appliesTo" : [ ] + }, + "J8FC8SEVZRJMDMBB.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "J8FC8SEVZRJMDMBB.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.8160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "J8FC8SEVZRJMDMBB.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "J8FC8SEVZRJMDMBB", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "J8FC8SEVZRJMDMBB.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "J8FC8SEVZRJMDMBB.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "J8FC8SEVZRJMDMBB.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "J8FC8SEVZRJMDMBB.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "156386" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "J8FC8SEVZRJMDMBB.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "J8FC8SEVZRJMDMBB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J8FC8SEVZRJMDMBB.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "J8FC8SEVZRJMDMBB.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "J8FC8SEVZRJMDMBB.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "J8FC8SEVZRJMDMBB.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "160015" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "J8FC8SEVZRJMDMBB.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "J8FC8SEVZRJMDMBB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "J8FC8SEVZRJMDMBB.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "J8FC8SEVZRJMDMBB.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "462072" + }, + "appliesTo" : [ ] + }, + "J8FC8SEVZRJMDMBB.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "J8FC8SEVZRJMDMBB.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "J8FC8SEVZRJMDMBB.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "J8FC8SEVZRJMDMBB", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "J8FC8SEVZRJMDMBB.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "J8FC8SEVZRJMDMBB.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "18.3750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "J8FC8SEVZRJMDMBB.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "J8FC8SEVZRJMDMBB", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "J8FC8SEVZRJMDMBB.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "J8FC8SEVZRJMDMBB.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "78434" + }, + "appliesTo" : [ ] + }, + "J8FC8SEVZRJMDMBB.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "J8FC8SEVZRJMDMBB.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.9540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "YU6MR6S9Z249VF2X" : { + "YU6MR6S9Z249VF2X.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YU6MR6S9Z249VF2X", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YU6MR6S9Z249VF2X.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YU6MR6S9Z249VF2X.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22488" + }, + "appliesTo" : [ ] + }, + "YU6MR6S9Z249VF2X.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YU6MR6S9Z249VF2X.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YU6MR6S9Z249VF2X.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "YU6MR6S9Z249VF2X", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YU6MR6S9Z249VF2X.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "YU6MR6S9Z249VF2X.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YU6MR6S9Z249VF2X.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "YU6MR6S9Z249VF2X.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "64414" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YU6MR6S9Z249VF2X.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YU6MR6S9Z249VF2X", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YU6MR6S9Z249VF2X.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YU6MR6S9Z249VF2X.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "42211" + }, + "appliesTo" : [ ] + }, + "YU6MR6S9Z249VF2X.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YU6MR6S9Z249VF2X.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YU6MR6S9Z249VF2X.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "YU6MR6S9Z249VF2X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YU6MR6S9Z249VF2X.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "YU6MR6S9Z249VF2X.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YU6MR6S9Z249VF2X.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "YU6MR6S9Z249VF2X.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27538" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YU6MR6S9Z249VF2X.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "YU6MR6S9Z249VF2X", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "YU6MR6S9Z249VF2X.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "YU6MR6S9Z249VF2X.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YU6MR6S9Z249VF2X.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YU6MR6S9Z249VF2X", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YU6MR6S9Z249VF2X.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YU6MR6S9Z249VF2X.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YU6MR6S9Z249VF2X.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YU6MR6S9Z249VF2X", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YU6MR6S9Z249VF2X.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YU6MR6S9Z249VF2X.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12224" + }, + "appliesTo" : [ ] + }, + "YU6MR6S9Z249VF2X.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YU6MR6S9Z249VF2X.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YU6MR6S9Z249VF2X.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YU6MR6S9Z249VF2X", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YU6MR6S9Z249VF2X.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YU6MR6S9Z249VF2X.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23904" + }, + "appliesTo" : [ ] + }, + "YU6MR6S9Z249VF2X.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YU6MR6S9Z249VF2X.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YU6MR6S9Z249VF2X.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "YU6MR6S9Z249VF2X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YU6MR6S9Z249VF2X.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "YU6MR6S9Z249VF2X.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YU6MR6S9Z249VF2X.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "YU6MR6S9Z249VF2X", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YU6MR6S9Z249VF2X.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "YU6MR6S9Z249VF2X.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32882" + }, + "appliesTo" : [ ] + }, + "YU6MR6S9Z249VF2X.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "YU6MR6S9Z249VF2X.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YU6MR6S9Z249VF2X.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "YU6MR6S9Z249VF2X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YU6MR6S9Z249VF2X.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "YU6MR6S9Z249VF2X.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14078" + }, + "appliesTo" : [ ] + }, + "YU6MR6S9Z249VF2X.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "YU6MR6S9Z249VF2X.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "4J62B76AXGGMHG57" : { + "4J62B76AXGGMHG57.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "4J62B76AXGGMHG57", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4J62B76AXGGMHG57.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "4J62B76AXGGMHG57.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1185" + }, + "appliesTo" : [ ] + }, + "4J62B76AXGGMHG57.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "4J62B76AXGGMHG57.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4J62B76AXGGMHG57.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "4J62B76AXGGMHG57", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4J62B76AXGGMHG57.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "4J62B76AXGGMHG57.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "4J62B76AXGGMHG57.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "4J62B76AXGGMHG57", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "4J62B76AXGGMHG57.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "4J62B76AXGGMHG57.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1091" + }, + "appliesTo" : [ ] + }, + "4J62B76AXGGMHG57.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "4J62B76AXGGMHG57.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4J62B76AXGGMHG57.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "4J62B76AXGGMHG57", + "effectiveDate" : "2017-01-31T23:59:59Z", + "priceDimensions" : { + "4J62B76AXGGMHG57.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "4J62B76AXGGMHG57.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1039" + }, + "appliesTo" : [ ] + }, + "4J62B76AXGGMHG57.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "4J62B76AXGGMHG57.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4J62B76AXGGMHG57.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "4J62B76AXGGMHG57", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "4J62B76AXGGMHG57.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "4J62B76AXGGMHG57.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2050" + }, + "appliesTo" : [ ] + }, + "4J62B76AXGGMHG57.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "4J62B76AXGGMHG57.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4J62B76AXGGMHG57.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "4J62B76AXGGMHG57", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4J62B76AXGGMHG57.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "4J62B76AXGGMHG57.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0470000000" + }, + "appliesTo" : [ ] + }, + "4J62B76AXGGMHG57.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "4J62B76AXGGMHG57.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1239" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4J62B76AXGGMHG57.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "4J62B76AXGGMHG57", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4J62B76AXGGMHG57.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "4J62B76AXGGMHG57.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "4J62B76AXGGMHG57.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "4J62B76AXGGMHG57", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4J62B76AXGGMHG57.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "4J62B76AXGGMHG57.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "604" + }, + "appliesTo" : [ ] + }, + "4J62B76AXGGMHG57.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "4J62B76AXGGMHG57.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4J62B76AXGGMHG57.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "4J62B76AXGGMHG57", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4J62B76AXGGMHG57.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "4J62B76AXGGMHG57.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "4J62B76AXGGMHG57.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "4J62B76AXGGMHG57", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4J62B76AXGGMHG57.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "4J62B76AXGGMHG57.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "4J62B76AXGGMHG57.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "4J62B76AXGGMHG57", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "4J62B76AXGGMHG57.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "4J62B76AXGGMHG57.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "530" + }, + "appliesTo" : [ ] + }, + "4J62B76AXGGMHG57.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "4J62B76AXGGMHG57.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4J62B76AXGGMHG57.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "4J62B76AXGGMHG57", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4J62B76AXGGMHG57.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "4J62B76AXGGMHG57.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2429" + }, + "appliesTo" : [ ] + }, + "4J62B76AXGGMHG57.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "4J62B76AXGGMHG57.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "CE5UXUUUXVX4BZXY" : { + "CE5UXUUUXVX4BZXY.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "CE5UXUUUXVX4BZXY", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CE5UXUUUXVX4BZXY.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "CE5UXUUUXVX4BZXY.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2676" + }, + "appliesTo" : [ ] + }, + "CE5UXUUUXVX4BZXY.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "CE5UXUUUXVX4BZXY.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CE5UXUUUXVX4BZXY.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "CE5UXUUUXVX4BZXY", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CE5UXUUUXVX4BZXY.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "CE5UXUUUXVX4BZXY.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0786000000" + }, + "appliesTo" : [ ] + }, + "CE5UXUUUXVX4BZXY.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "CE5UXUUUXVX4BZXY.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "488" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CE5UXUUUXVX4BZXY.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "CE5UXUUUXVX4BZXY", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CE5UXUUUXVX4BZXY.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "CE5UXUUUXVX4BZXY.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1061000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CE5UXUUUXVX4BZXY.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "CE5UXUUUXVX4BZXY", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CE5UXUUUXVX4BZXY.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "CE5UXUUUXVX4BZXY.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2494" + }, + "appliesTo" : [ ] + }, + "CE5UXUUUXVX4BZXY.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "CE5UXUUUXVX4BZXY.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CE5UXUUUXVX4BZXY.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "CE5UXUUUXVX4BZXY", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CE5UXUUUXVX4BZXY.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "CE5UXUUUXVX4BZXY.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "996" + }, + "appliesTo" : [ ] + }, + "CE5UXUUUXVX4BZXY.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "CE5UXUUUXVX4BZXY.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CE5UXUUUXVX4BZXY.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "CE5UXUUUXVX4BZXY", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CE5UXUUUXVX4BZXY.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "CE5UXUUUXVX4BZXY.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "561" + }, + "appliesTo" : [ ] + }, + "CE5UXUUUXVX4BZXY.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "CE5UXUUUXVX4BZXY.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0813000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CE5UXUUUXVX4BZXY.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "CE5UXUUUXVX4BZXY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CE5UXUUUXVX4BZXY.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "CE5UXUUUXVX4BZXY.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1261000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CE5UXUUUXVX4BZXY.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "CE5UXUUUXVX4BZXY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CE5UXUUUXVX4BZXY.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "CE5UXUUUXVX4BZXY.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0915000000" + }, + "appliesTo" : [ ] + }, + "CE5UXUUUXVX4BZXY.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "CE5UXUUUXVX4BZXY.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "276" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CE5UXUUUXVX4BZXY.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "CE5UXUUUXVX4BZXY", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CE5UXUUUXVX4BZXY.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "CE5UXUUUXVX4BZXY.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1175000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CE5UXUUUXVX4BZXY.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "CE5UXUUUXVX4BZXY", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CE5UXUUUXVX4BZXY.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "CE5UXUUUXVX4BZXY.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "240" + }, + "appliesTo" : [ ] + }, + "CE5UXUUUXVX4BZXY.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "CE5UXUUUXVX4BZXY.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0874000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CE5UXUUUXVX4BZXY.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "CE5UXUUUXVX4BZXY", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CE5UXUUUXVX4BZXY.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "CE5UXUUUXVX4BZXY.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1001000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CE5UXUUUXVX4BZXY.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "CE5UXUUUXVX4BZXY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CE5UXUUUXVX4BZXY.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "CE5UXUUUXVX4BZXY.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1066" + }, + "appliesTo" : [ ] + }, + "CE5UXUUUXVX4BZXY.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "CE5UXUUUXVX4BZXY.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "BN987XH7R93S9FFN" : { + "BN987XH7R93S9FFN.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "BN987XH7R93S9FFN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BN987XH7R93S9FFN.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "BN987XH7R93S9FFN.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2759" + }, + "appliesTo" : [ ] + }, + "BN987XH7R93S9FFN.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "BN987XH7R93S9FFN.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BN987XH7R93S9FFN.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "BN987XH7R93S9FFN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BN987XH7R93S9FFN.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "BN987XH7R93S9FFN.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BN987XH7R93S9FFN.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "BN987XH7R93S9FFN", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "BN987XH7R93S9FFN.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "BN987XH7R93S9FFN.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13655" + }, + "appliesTo" : [ ] + }, + "BN987XH7R93S9FFN.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "BN987XH7R93S9FFN.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BN987XH7R93S9FFN.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "BN987XH7R93S9FFN", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BN987XH7R93S9FFN.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "BN987XH7R93S9FFN.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BN987XH7R93S9FFN.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "BN987XH7R93S9FFN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BN987XH7R93S9FFN.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "BN987XH7R93S9FFN.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "BN987XH7R93S9FFN.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "BN987XH7R93S9FFN.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5428" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BN987XH7R93S9FFN.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "BN987XH7R93S9FFN", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BN987XH7R93S9FFN.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "BN987XH7R93S9FFN.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3271" + }, + "appliesTo" : [ ] + }, + "BN987XH7R93S9FFN.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "BN987XH7R93S9FFN.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BN987XH7R93S9FFN.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "BN987XH7R93S9FFN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "BN987XH7R93S9FFN.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "BN987XH7R93S9FFN.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4934" + }, + "appliesTo" : [ ] + }, + "BN987XH7R93S9FFN.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "BN987XH7R93S9FFN.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BN987XH7R93S9FFN.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "BN987XH7R93S9FFN", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BN987XH7R93S9FFN.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "BN987XH7R93S9FFN.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9052" + }, + "appliesTo" : [ ] + }, + "BN987XH7R93S9FFN.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "BN987XH7R93S9FFN.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BN987XH7R93S9FFN.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "BN987XH7R93S9FFN", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "BN987XH7R93S9FFN.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "BN987XH7R93S9FFN.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BN987XH7R93S9FFN.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "BN987XH7R93S9FFN", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BN987XH7R93S9FFN.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "BN987XH7R93S9FFN.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11341" + }, + "appliesTo" : [ ] + }, + "BN987XH7R93S9FFN.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "BN987XH7R93S9FFN.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BN987XH7R93S9FFN.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "BN987XH7R93S9FFN", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BN987XH7R93S9FFN.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "BN987XH7R93S9FFN.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1610000000" + }, + "appliesTo" : [ ] + }, + "BN987XH7R93S9FFN.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "BN987XH7R93S9FFN.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7844" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "5YU9U4CS2QFKY4UW" : { + "5YU9U4CS2QFKY4UW.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "5YU9U4CS2QFKY4UW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5YU9U4CS2QFKY4UW.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "5YU9U4CS2QFKY4UW.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15108" + }, + "appliesTo" : [ ] + }, + "5YU9U4CS2QFKY4UW.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "5YU9U4CS2QFKY4UW.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "5YU9U4CS2QFKY4UW.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "5YU9U4CS2QFKY4UW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "5YU9U4CS2QFKY4UW.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "5YU9U4CS2QFKY4UW.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6176000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "5YU9U4CS2QFKY4UW.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "5YU9U4CS2QFKY4UW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "5YU9U4CS2QFKY4UW.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "5YU9U4CS2QFKY4UW.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20301" + }, + "appliesTo" : [ ] + }, + "5YU9U4CS2QFKY4UW.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "5YU9U4CS2QFKY4UW.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5YU9U4CS2QFKY4UW.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "5YU9U4CS2QFKY4UW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "5YU9U4CS2QFKY4UW.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "5YU9U4CS2QFKY4UW.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7981000000" + }, + "appliesTo" : [ ] + }, + "5YU9U4CS2QFKY4UW.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "5YU9U4CS2QFKY4UW.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20974" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "5YU9U4CS2QFKY4UW.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "5YU9U4CS2QFKY4UW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "5YU9U4CS2QFKY4UW.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "5YU9U4CS2QFKY4UW.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14498" + }, + "appliesTo" : [ ] + }, + "5YU9U4CS2QFKY4UW.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "5YU9U4CS2QFKY4UW.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5YU9U4CS2QFKY4UW.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "5YU9U4CS2QFKY4UW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "5YU9U4CS2QFKY4UW.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "5YU9U4CS2QFKY4UW.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "40234" + }, + "appliesTo" : [ ] + }, + "5YU9U4CS2QFKY4UW.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "5YU9U4CS2QFKY4UW.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5YU9U4CS2QFKY4UW.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "5YU9U4CS2QFKY4UW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5YU9U4CS2QFKY4UW.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "5YU9U4CS2QFKY4UW.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "5YU9U4CS2QFKY4UW.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "5YU9U4CS2QFKY4UW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5YU9U4CS2QFKY4UW.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "5YU9U4CS2QFKY4UW.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7590" + }, + "appliesTo" : [ ] + }, + "5YU9U4CS2QFKY4UW.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "5YU9U4CS2QFKY4UW.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8664000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "5YU9U4CS2QFKY4UW.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "5YU9U4CS2QFKY4UW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "5YU9U4CS2QFKY4UW.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "5YU9U4CS2QFKY4UW.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6976000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "5YU9U4CS2QFKY4UW.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "5YU9U4CS2QFKY4UW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "5YU9U4CS2QFKY4UW.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "5YU9U4CS2QFKY4UW.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7280" + }, + "appliesTo" : [ ] + }, + "5YU9U4CS2QFKY4UW.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "5YU9U4CS2QFKY4UW.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5YU9U4CS2QFKY4UW.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "5YU9U4CS2QFKY4UW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "5YU9U4CS2QFKY4UW.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "5YU9U4CS2QFKY4UW.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "41807" + }, + "appliesTo" : [ ] + }, + "5YU9U4CS2QFKY4UW.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "5YU9U4CS2QFKY4UW.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "5YU9U4CS2QFKY4UW.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "5YU9U4CS2QFKY4UW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "5YU9U4CS2QFKY4UW.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "5YU9U4CS2QFKY4UW.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "MCVQU48QPHRDXMRT" : { + "MCVQU48QPHRDXMRT.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "MCVQU48QPHRDXMRT", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "MCVQU48QPHRDXMRT.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "MCVQU48QPHRDXMRT.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "80354" + }, + "appliesTo" : [ ] + }, + "MCVQU48QPHRDXMRT.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "MCVQU48QPHRDXMRT.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MCVQU48QPHRDXMRT.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "MCVQU48QPHRDXMRT", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "MCVQU48QPHRDXMRT.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "MCVQU48QPHRDXMRT.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "40997" + }, + "appliesTo" : [ ] + }, + "MCVQU48QPHRDXMRT.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "MCVQU48QPHRDXMRT.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.6800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MCVQU48QPHRDXMRT.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "MCVQU48QPHRDXMRT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MCVQU48QPHRDXMRT.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "MCVQU48QPHRDXMRT.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MCVQU48QPHRDXMRT.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "MCVQU48QPHRDXMRT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MCVQU48QPHRDXMRT.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "MCVQU48QPHRDXMRT.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "92407" + }, + "appliesTo" : [ ] + }, + "MCVQU48QPHRDXMRT.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "MCVQU48QPHRDXMRT.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MCVQU48QPHRDXMRT.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "MCVQU48QPHRDXMRT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MCVQU48QPHRDXMRT.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "MCVQU48QPHRDXMRT.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "11.3020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MCVQU48QPHRDXMRT.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "MCVQU48QPHRDXMRT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MCVQU48QPHRDXMRT.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "MCVQU48QPHRDXMRT.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "201401" + }, + "appliesTo" : [ ] + }, + "MCVQU48QPHRDXMRT.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "MCVQU48QPHRDXMRT.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MCVQU48QPHRDXMRT.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "MCVQU48QPHRDXMRT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MCVQU48QPHRDXMRT.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "MCVQU48QPHRDXMRT.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47146" + }, + "appliesTo" : [ ] + }, + "MCVQU48QPHRDXMRT.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "MCVQU48QPHRDXMRT.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.3820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MCVQU48QPHRDXMRT.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "MCVQU48QPHRDXMRT", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "MCVQU48QPHRDXMRT.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "MCVQU48QPHRDXMRT.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4000000000" + }, + "appliesTo" : [ ] + }, + "MCVQU48QPHRDXMRT.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "MCVQU48QPHRDXMRT.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "89352" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MCVQU48QPHRDXMRT.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "MCVQU48QPHRDXMRT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MCVQU48QPHRDXMRT.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "MCVQU48QPHRDXMRT.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.8280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MCVQU48QPHRDXMRT.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "MCVQU48QPHRDXMRT", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "MCVQU48QPHRDXMRT.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "MCVQU48QPHRDXMRT.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "167982" + }, + "appliesTo" : [ ] + }, + "MCVQU48QPHRDXMRT.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "MCVQU48QPHRDXMRT.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MCVQU48QPHRDXMRT.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "MCVQU48QPHRDXMRT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MCVQU48QPHRDXMRT.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "MCVQU48QPHRDXMRT.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.4460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MCVQU48QPHRDXMRT.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "MCVQU48QPHRDXMRT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MCVQU48QPHRDXMRT.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "MCVQU48QPHRDXMRT.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9100000000" + }, + "appliesTo" : [ ] + }, + "MCVQU48QPHRDXMRT.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "MCVQU48QPHRDXMRT.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "102756" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "2GCTBU78G22TGEXZ" : { + "2GCTBU78G22TGEXZ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "2GCTBU78G22TGEXZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "2GCTBU78G22TGEXZ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "2GCTBU78G22TGEXZ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "399" + }, + "appliesTo" : [ ] + }, + "2GCTBU78G22TGEXZ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "2GCTBU78G22TGEXZ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2GCTBU78G22TGEXZ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "2GCTBU78G22TGEXZ", + "effectiveDate" : "2017-01-31T23:59:59Z", + "priceDimensions" : { + "2GCTBU78G22TGEXZ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "2GCTBU78G22TGEXZ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "188" + }, + "appliesTo" : [ ] + }, + "2GCTBU78G22TGEXZ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "2GCTBU78G22TGEXZ.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2GCTBU78G22TGEXZ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "2GCTBU78G22TGEXZ", + "effectiveDate" : "2017-01-31T23:59:59Z", + "priceDimensions" : { + "2GCTBU78G22TGEXZ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "2GCTBU78G22TGEXZ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "123" + }, + "appliesTo" : [ ] + }, + "2GCTBU78G22TGEXZ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "2GCTBU78G22TGEXZ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2GCTBU78G22TGEXZ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "2GCTBU78G22TGEXZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "2GCTBU78G22TGEXZ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "2GCTBU78G22TGEXZ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "206" + }, + "appliesTo" : [ ] + }, + "2GCTBU78G22TGEXZ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "2GCTBU78G22TGEXZ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2GCTBU78G22TGEXZ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "2GCTBU78G22TGEXZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "2GCTBU78G22TGEXZ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "2GCTBU78G22TGEXZ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "M57UMFD3S77UZWZ3" : { + "M57UMFD3S77UZWZ3.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "M57UMFD3S77UZWZ3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M57UMFD3S77UZWZ3.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "M57UMFD3S77UZWZ3.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.2710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "M57UMFD3S77UZWZ3.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "M57UMFD3S77UZWZ3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M57UMFD3S77UZWZ3.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "M57UMFD3S77UZWZ3.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39521" + }, + "appliesTo" : [ ] + }, + "M57UMFD3S77UZWZ3.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "M57UMFD3S77UZWZ3.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "M57UMFD3S77UZWZ3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "M57UMFD3S77UZWZ3", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "M57UMFD3S77UZWZ3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "M57UMFD3S77UZWZ3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "74375" + }, + "appliesTo" : [ ] + }, + "M57UMFD3S77UZWZ3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "M57UMFD3S77UZWZ3.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "M57UMFD3S77UZWZ3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "M57UMFD3S77UZWZ3", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "M57UMFD3S77UZWZ3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "M57UMFD3S77UZWZ3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "84813" + }, + "appliesTo" : [ ] + }, + "M57UMFD3S77UZWZ3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "M57UMFD3S77UZWZ3.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "M57UMFD3S77UZWZ3.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "M57UMFD3S77UZWZ3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M57UMFD3S77UZWZ3.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "M57UMFD3S77UZWZ3.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.7380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "M57UMFD3S77UZWZ3.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "M57UMFD3S77UZWZ3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M57UMFD3S77UZWZ3.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "M57UMFD3S77UZWZ3.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "85896" + }, + "appliesTo" : [ ] + }, + "M57UMFD3S77UZWZ3.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "M57UMFD3S77UZWZ3.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "M57UMFD3S77UZWZ3.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "M57UMFD3S77UZWZ3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M57UMFD3S77UZWZ3.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "M57UMFD3S77UZWZ3.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.3840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "M57UMFD3S77UZWZ3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "M57UMFD3S77UZWZ3", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "M57UMFD3S77UZWZ3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "M57UMFD3S77UZWZ3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "166182" + }, + "appliesTo" : [ ] + }, + "M57UMFD3S77UZWZ3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "M57UMFD3S77UZWZ3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "M57UMFD3S77UZWZ3.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "M57UMFD3S77UZWZ3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M57UMFD3S77UZWZ3.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "M57UMFD3S77UZWZ3.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "78176" + }, + "appliesTo" : [ ] + }, + "M57UMFD3S77UZWZ3.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "M57UMFD3S77UZWZ3.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "M57UMFD3S77UZWZ3.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "M57UMFD3S77UZWZ3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M57UMFD3S77UZWZ3.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "M57UMFD3S77UZWZ3.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "170473" + }, + "appliesTo" : [ ] + }, + "M57UMFD3S77UZWZ3.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "M57UMFD3S77UZWZ3.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "M57UMFD3S77UZWZ3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "M57UMFD3S77UZWZ3", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "M57UMFD3S77UZWZ3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "M57UMFD3S77UZWZ3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37565" + }, + "appliesTo" : [ ] + }, + "M57UMFD3S77UZWZ3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "M57UMFD3S77UZWZ3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "M57UMFD3S77UZWZ3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "M57UMFD3S77UZWZ3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M57UMFD3S77UZWZ3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "M57UMFD3S77UZWZ3.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.5470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "MK9AMH7NU69KFAYJ" : { + "MK9AMH7NU69KFAYJ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "MK9AMH7NU69KFAYJ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "MK9AMH7NU69KFAYJ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "MK9AMH7NU69KFAYJ.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "MK9AMH7NU69KFAYJ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "MK9AMH7NU69KFAYJ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35054" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MK9AMH7NU69KFAYJ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "MK9AMH7NU69KFAYJ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "MK9AMH7NU69KFAYJ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "MK9AMH7NU69KFAYJ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MK9AMH7NU69KFAYJ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "MK9AMH7NU69KFAYJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MK9AMH7NU69KFAYJ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "MK9AMH7NU69KFAYJ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8211" + }, + "appliesTo" : [ ] + }, + "MK9AMH7NU69KFAYJ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "MK9AMH7NU69KFAYJ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9374000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MK9AMH7NU69KFAYJ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "MK9AMH7NU69KFAYJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MK9AMH7NU69KFAYJ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "MK9AMH7NU69KFAYJ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "MK9AMH7NU69KFAYJ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "MK9AMH7NU69KFAYJ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16094" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MK9AMH7NU69KFAYJ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "MK9AMH7NU69KFAYJ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "MK9AMH7NU69KFAYJ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "MK9AMH7NU69KFAYJ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2782000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MK9AMH7NU69KFAYJ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "MK9AMH7NU69KFAYJ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "MK9AMH7NU69KFAYJ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "MK9AMH7NU69KFAYJ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7117000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MK9AMH7NU69KFAYJ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "MK9AMH7NU69KFAYJ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "MK9AMH7NU69KFAYJ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "MK9AMH7NU69KFAYJ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7140" + }, + "appliesTo" : [ ] + }, + "MK9AMH7NU69KFAYJ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "MK9AMH7NU69KFAYJ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8151000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MK9AMH7NU69KFAYJ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "MK9AMH7NU69KFAYJ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "MK9AMH7NU69KFAYJ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "MK9AMH7NU69KFAYJ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13995" + }, + "appliesTo" : [ ] + }, + "MK9AMH7NU69KFAYJ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "MK9AMH7NU69KFAYJ.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MK9AMH7NU69KFAYJ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "MK9AMH7NU69KFAYJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MK9AMH7NU69KFAYJ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "MK9AMH7NU69KFAYJ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9685000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MK9AMH7NU69KFAYJ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "MK9AMH7NU69KFAYJ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "MK9AMH7NU69KFAYJ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "MK9AMH7NU69KFAYJ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29237" + }, + "appliesTo" : [ ] + }, + "MK9AMH7NU69KFAYJ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "MK9AMH7NU69KFAYJ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MK9AMH7NU69KFAYJ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "MK9AMH7NU69KFAYJ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "MK9AMH7NU69KFAYJ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "MK9AMH7NU69KFAYJ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15552" + }, + "appliesTo" : [ ] + }, + "MK9AMH7NU69KFAYJ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "MK9AMH7NU69KFAYJ.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5918000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MK9AMH7NU69KFAYJ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "MK9AMH7NU69KFAYJ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "MK9AMH7NU69KFAYJ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "MK9AMH7NU69KFAYJ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17885" + }, + "appliesTo" : [ ] + }, + "MK9AMH7NU69KFAYJ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "MK9AMH7NU69KFAYJ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6805000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "SJGHN3P4PMXPP9SA" : { + "SJGHN3P4PMXPP9SA.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SJGHN3P4PMXPP9SA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SJGHN3P4PMXPP9SA.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SJGHN3P4PMXPP9SA.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SJGHN3P4PMXPP9SA.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SJGHN3P4PMXPP9SA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SJGHN3P4PMXPP9SA.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SJGHN3P4PMXPP9SA.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38903" + }, + "appliesTo" : [ ] + }, + "SJGHN3P4PMXPP9SA.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SJGHN3P4PMXPP9SA.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SJGHN3P4PMXPP9SA.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "SJGHN3P4PMXPP9SA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SJGHN3P4PMXPP9SA.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "SJGHN3P4PMXPP9SA.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "78700" + }, + "appliesTo" : [ ] + }, + "SJGHN3P4PMXPP9SA.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "SJGHN3P4PMXPP9SA.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SJGHN3P4PMXPP9SA.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "SJGHN3P4PMXPP9SA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SJGHN3P4PMXPP9SA.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "SJGHN3P4PMXPP9SA.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SJGHN3P4PMXPP9SA.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "SJGHN3P4PMXPP9SA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SJGHN3P4PMXPP9SA.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "SJGHN3P4PMXPP9SA.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39430" + }, + "appliesTo" : [ ] + }, + "SJGHN3P4PMXPP9SA.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "SJGHN3P4PMXPP9SA.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SJGHN3P4PMXPP9SA.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "SJGHN3P4PMXPP9SA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SJGHN3P4PMXPP9SA.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "SJGHN3P4PMXPP9SA.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5830000000" + }, + "appliesTo" : [ ] + }, + "SJGHN3P4PMXPP9SA.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "SJGHN3P4PMXPP9SA.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13867" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SJGHN3P4PMXPP9SA.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "SJGHN3P4PMXPP9SA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SJGHN3P4PMXPP9SA.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "SJGHN3P4PMXPP9SA.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SJGHN3P4PMXPP9SA.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SJGHN3P4PMXPP9SA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SJGHN3P4PMXPP9SA.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SJGHN3P4PMXPP9SA.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SJGHN3P4PMXPP9SA.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SJGHN3P4PMXPP9SA.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27127" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SJGHN3P4PMXPP9SA.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SJGHN3P4PMXPP9SA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SJGHN3P4PMXPP9SA.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SJGHN3P4PMXPP9SA.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13599" + }, + "appliesTo" : [ ] + }, + "SJGHN3P4PMXPP9SA.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SJGHN3P4PMXPP9SA.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SJGHN3P4PMXPP9SA.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "SJGHN3P4PMXPP9SA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SJGHN3P4PMXPP9SA.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "SJGHN3P4PMXPP9SA.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SJGHN3P4PMXPP9SA.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "SJGHN3P4PMXPP9SA.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27652" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SJGHN3P4PMXPP9SA.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SJGHN3P4PMXPP9SA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SJGHN3P4PMXPP9SA.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SJGHN3P4PMXPP9SA.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "77390" + }, + "appliesTo" : [ ] + }, + "SJGHN3P4PMXPP9SA.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SJGHN3P4PMXPP9SA.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SJGHN3P4PMXPP9SA.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "SJGHN3P4PMXPP9SA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SJGHN3P4PMXPP9SA.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "SJGHN3P4PMXPP9SA.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "DXSPZRZ93HBNNHCJ" : { + "DXSPZRZ93HBNNHCJ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "DXSPZRZ93HBNNHCJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DXSPZRZ93HBNNHCJ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "DXSPZRZ93HBNNHCJ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16125" + }, + "appliesTo" : [ ] + }, + "DXSPZRZ93HBNNHCJ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "DXSPZRZ93HBNNHCJ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DXSPZRZ93HBNNHCJ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "DXSPZRZ93HBNNHCJ", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "DXSPZRZ93HBNNHCJ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "DXSPZRZ93HBNNHCJ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DXSPZRZ93HBNNHCJ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "DXSPZRZ93HBNNHCJ", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "DXSPZRZ93HBNNHCJ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "DXSPZRZ93HBNNHCJ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9120000000" + }, + "appliesTo" : [ ] + }, + "DXSPZRZ93HBNNHCJ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "DXSPZRZ93HBNNHCJ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7990" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DXSPZRZ93HBNNHCJ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "DXSPZRZ93HBNNHCJ", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "DXSPZRZ93HBNNHCJ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "DXSPZRZ93HBNNHCJ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46530" + }, + "appliesTo" : [ ] + }, + "DXSPZRZ93HBNNHCJ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "DXSPZRZ93HBNNHCJ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DXSPZRZ93HBNNHCJ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "DXSPZRZ93HBNNHCJ", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "DXSPZRZ93HBNNHCJ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "DXSPZRZ93HBNNHCJ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23785" + }, + "appliesTo" : [ ] + }, + "DXSPZRZ93HBNNHCJ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "DXSPZRZ93HBNNHCJ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DXSPZRZ93HBNNHCJ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "DXSPZRZ93HBNNHCJ", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "DXSPZRZ93HBNNHCJ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "DXSPZRZ93HBNNHCJ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "DXSPZRZ93HBNNHCJ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "DXSPZRZ93HBNNHCJ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15955" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DXSPZRZ93HBNNHCJ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "DXSPZRZ93HBNNHCJ", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "DXSPZRZ93HBNNHCJ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "DXSPZRZ93HBNNHCJ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47504" + }, + "appliesTo" : [ ] + }, + "DXSPZRZ93HBNNHCJ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "DXSPZRZ93HBNNHCJ.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DXSPZRZ93HBNNHCJ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "DXSPZRZ93HBNNHCJ", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "DXSPZRZ93HBNNHCJ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "DXSPZRZ93HBNNHCJ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23338" + }, + "appliesTo" : [ ] + }, + "DXSPZRZ93HBNNHCJ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "DXSPZRZ93HBNNHCJ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DXSPZRZ93HBNNHCJ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "DXSPZRZ93HBNNHCJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DXSPZRZ93HBNNHCJ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "DXSPZRZ93HBNNHCJ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DXSPZRZ93HBNNHCJ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "DXSPZRZ93HBNNHCJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DXSPZRZ93HBNNHCJ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "DXSPZRZ93HBNNHCJ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8076" + }, + "appliesTo" : [ ] + }, + "DXSPZRZ93HBNNHCJ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "DXSPZRZ93HBNNHCJ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DXSPZRZ93HBNNHCJ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "DXSPZRZ93HBNNHCJ", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "DXSPZRZ93HBNNHCJ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "DXSPZRZ93HBNNHCJ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "B5C2VWZ3WKXH29GV" : { + "B5C2VWZ3WKXH29GV.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "B5C2VWZ3WKXH29GV", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "B5C2VWZ3WKXH29GV.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "B5C2VWZ3WKXH29GV.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3187" + }, + "appliesTo" : [ ] + }, + "B5C2VWZ3WKXH29GV.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "B5C2VWZ3WKXH29GV.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "B5C2VWZ3WKXH29GV.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "B5C2VWZ3WKXH29GV", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "B5C2VWZ3WKXH29GV.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "B5C2VWZ3WKXH29GV.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "B5C2VWZ3WKXH29GV.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "B5C2VWZ3WKXH29GV", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "B5C2VWZ3WKXH29GV.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "B5C2VWZ3WKXH29GV.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12959" + }, + "appliesTo" : [ ] + }, + "B5C2VWZ3WKXH29GV.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "B5C2VWZ3WKXH29GV.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "B5C2VWZ3WKXH29GV.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "B5C2VWZ3WKXH29GV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "B5C2VWZ3WKXH29GV.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "B5C2VWZ3WKXH29GV.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "B5C2VWZ3WKXH29GV.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "B5C2VWZ3WKXH29GV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "B5C2VWZ3WKXH29GV.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "B5C2VWZ3WKXH29GV.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3127" + }, + "appliesTo" : [ ] + }, + "B5C2VWZ3WKXH29GV.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "B5C2VWZ3WKXH29GV.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "B5C2VWZ3WKXH29GV.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "B5C2VWZ3WKXH29GV", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "B5C2VWZ3WKXH29GV.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "B5C2VWZ3WKXH29GV.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3160000000" + }, + "appliesTo" : [ ] + }, + "B5C2VWZ3WKXH29GV.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "B5C2VWZ3WKXH29GV.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1999" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "B5C2VWZ3WKXH29GV.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "B5C2VWZ3WKXH29GV", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "B5C2VWZ3WKXH29GV.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "B5C2VWZ3WKXH29GV.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "B5C2VWZ3WKXH29GV.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "B5C2VWZ3WKXH29GV.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4662" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "B5C2VWZ3WKXH29GV.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "B5C2VWZ3WKXH29GV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "B5C2VWZ3WKXH29GV.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "B5C2VWZ3WKXH29GV.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6174" + }, + "appliesTo" : [ ] + }, + "B5C2VWZ3WKXH29GV.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "B5C2VWZ3WKXH29GV.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "B5C2VWZ3WKXH29GV.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "B5C2VWZ3WKXH29GV", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "B5C2VWZ3WKXH29GV.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "B5C2VWZ3WKXH29GV.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "B5C2VWZ3WKXH29GV.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "B5C2VWZ3WKXH29GV", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "B5C2VWZ3WKXH29GV.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "B5C2VWZ3WKXH29GV.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9652" + }, + "appliesTo" : [ ] + }, + "B5C2VWZ3WKXH29GV.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "B5C2VWZ3WKXH29GV.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "B5C2VWZ3WKXH29GV.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "B5C2VWZ3WKXH29GV", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "B5C2VWZ3WKXH29GV.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "B5C2VWZ3WKXH29GV.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2990000000" + }, + "appliesTo" : [ ] + }, + "B5C2VWZ3WKXH29GV.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "B5C2VWZ3WKXH29GV.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5396" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "TRJZT878WSTAV924" : { + "TRJZT878WSTAV924.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TRJZT878WSTAV924", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "TRJZT878WSTAV924.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TRJZT878WSTAV924.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2504" + }, + "appliesTo" : [ ] + }, + "TRJZT878WSTAV924.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TRJZT878WSTAV924.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TRJZT878WSTAV924.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "TRJZT878WSTAV924", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TRJZT878WSTAV924.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "TRJZT878WSTAV924.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2836" + }, + "appliesTo" : [ ] + }, + "TRJZT878WSTAV924.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "TRJZT878WSTAV924.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TRJZT878WSTAV924.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "TRJZT878WSTAV924", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TRJZT878WSTAV924.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "TRJZT878WSTAV924.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TRJZT878WSTAV924.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "TRJZT878WSTAV924.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5503" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TRJZT878WSTAV924.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "TRJZT878WSTAV924", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TRJZT878WSTAV924.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "TRJZT878WSTAV924.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TRJZT878WSTAV924.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "TRJZT878WSTAV924", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TRJZT878WSTAV924.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "TRJZT878WSTAV924.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TRJZT878WSTAV924.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TRJZT878WSTAV924", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TRJZT878WSTAV924.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TRJZT878WSTAV924.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5124" + }, + "appliesTo" : [ ] + }, + "TRJZT878WSTAV924.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TRJZT878WSTAV924.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TRJZT878WSTAV924.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "TRJZT878WSTAV924", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TRJZT878WSTAV924.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "TRJZT878WSTAV924.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TRJZT878WSTAV924.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "TRJZT878WSTAV924.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11380" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TRJZT878WSTAV924.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "TRJZT878WSTAV924", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TRJZT878WSTAV924.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "TRJZT878WSTAV924.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5804" + }, + "appliesTo" : [ ] + }, + "TRJZT878WSTAV924.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "TRJZT878WSTAV924.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TRJZT878WSTAV924.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TRJZT878WSTAV924", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TRJZT878WSTAV924.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TRJZT878WSTAV924.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TRJZT878WSTAV924.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TRJZT878WSTAV924", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "TRJZT878WSTAV924.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TRJZT878WSTAV924.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4853" + }, + "appliesTo" : [ ] + }, + "TRJZT878WSTAV924.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TRJZT878WSTAV924.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TRJZT878WSTAV924.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "TRJZT878WSTAV924", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TRJZT878WSTAV924.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "TRJZT878WSTAV924.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TRJZT878WSTAV924.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TRJZT878WSTAV924", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TRJZT878WSTAV924.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TRJZT878WSTAV924.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9665" + }, + "appliesTo" : [ ] + }, + "TRJZT878WSTAV924.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TRJZT878WSTAV924.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "QEN4NKBP2QQKVJGV" : { + "QEN4NKBP2QQKVJGV.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "QEN4NKBP2QQKVJGV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QEN4NKBP2QQKVJGV.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "QEN4NKBP2QQKVJGV.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QEN4NKBP2QQKVJGV.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QEN4NKBP2QQKVJGV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QEN4NKBP2QQKVJGV.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QEN4NKBP2QQKVJGV.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8576" + }, + "appliesTo" : [ ] + }, + "QEN4NKBP2QQKVJGV.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QEN4NKBP2QQKVJGV.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QEN4NKBP2QQKVJGV.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "QEN4NKBP2QQKVJGV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QEN4NKBP2QQKVJGV.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "QEN4NKBP2QQKVJGV.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9862" + }, + "appliesTo" : [ ] + }, + "QEN4NKBP2QQKVJGV.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "QEN4NKBP2QQKVJGV.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QEN4NKBP2QQKVJGV.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QEN4NKBP2QQKVJGV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QEN4NKBP2QQKVJGV.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QEN4NKBP2QQKVJGV.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QEN4NKBP2QQKVJGV.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "QEN4NKBP2QQKVJGV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QEN4NKBP2QQKVJGV.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "QEN4NKBP2QQKVJGV.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QEN4NKBP2QQKVJGV.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "QEN4NKBP2QQKVJGV.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20468" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QEN4NKBP2QQKVJGV.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "QEN4NKBP2QQKVJGV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QEN4NKBP2QQKVJGV.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "QEN4NKBP2QQKVJGV.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QEN4NKBP2QQKVJGV.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "QEN4NKBP2QQKVJGV.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32825" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QEN4NKBP2QQKVJGV.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "QEN4NKBP2QQKVJGV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QEN4NKBP2QQKVJGV.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "QEN4NKBP2QQKVJGV.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QEN4NKBP2QQKVJGV.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QEN4NKBP2QQKVJGV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QEN4NKBP2QQKVJGV.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QEN4NKBP2QQKVJGV.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13047" + }, + "appliesTo" : [ ] + }, + "QEN4NKBP2QQKVJGV.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QEN4NKBP2QQKVJGV.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QEN4NKBP2QQKVJGV.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "QEN4NKBP2QQKVJGV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QEN4NKBP2QQKVJGV.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "QEN4NKBP2QQKVJGV.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QEN4NKBP2QQKVJGV.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "QEN4NKBP2QQKVJGV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QEN4NKBP2QQKVJGV.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "QEN4NKBP2QQKVJGV.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15004" + }, + "appliesTo" : [ ] + }, + "QEN4NKBP2QQKVJGV.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "QEN4NKBP2QQKVJGV.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QEN4NKBP2QQKVJGV.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QEN4NKBP2QQKVJGV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QEN4NKBP2QQKVJGV.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QEN4NKBP2QQKVJGV.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27945" + }, + "appliesTo" : [ ] + }, + "QEN4NKBP2QQKVJGV.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QEN4NKBP2QQKVJGV.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QEN4NKBP2QQKVJGV.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QEN4NKBP2QQKVJGV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QEN4NKBP2QQKVJGV.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QEN4NKBP2QQKVJGV.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17947" + }, + "appliesTo" : [ ] + }, + "QEN4NKBP2QQKVJGV.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QEN4NKBP2QQKVJGV.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "BMW624PB2S9DK3CT" : { + "BMW624PB2S9DK3CT.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "BMW624PB2S9DK3CT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BMW624PB2S9DK3CT.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "BMW624PB2S9DK3CT.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "BMW624PB2S9DK3CT.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "BMW624PB2S9DK3CT.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31027" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BMW624PB2S9DK3CT.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "BMW624PB2S9DK3CT", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BMW624PB2S9DK3CT.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "BMW624PB2S9DK3CT.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19662" + }, + "appliesTo" : [ ] + }, + "BMW624PB2S9DK3CT.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "BMW624PB2S9DK3CT.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BMW624PB2S9DK3CT.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "BMW624PB2S9DK3CT", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "BMW624PB2S9DK3CT.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "BMW624PB2S9DK3CT.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "57752" + }, + "appliesTo" : [ ] + }, + "BMW624PB2S9DK3CT.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "BMW624PB2S9DK3CT.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BMW624PB2S9DK3CT.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "BMW624PB2S9DK3CT", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BMW624PB2S9DK3CT.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "BMW624PB2S9DK3CT.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "87083" + }, + "appliesTo" : [ ] + }, + "BMW624PB2S9DK3CT.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "BMW624PB2S9DK3CT.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BMW624PB2S9DK3CT.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "BMW624PB2S9DK3CT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BMW624PB2S9DK3CT.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "BMW624PB2S9DK3CT.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7790000000" + }, + "appliesTo" : [ ] + }, + "BMW624PB2S9DK3CT.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "BMW624PB2S9DK3CT.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15586" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BMW624PB2S9DK3CT.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "BMW624PB2S9DK3CT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BMW624PB2S9DK3CT.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "BMW624PB2S9DK3CT.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BMW624PB2S9DK3CT.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "BMW624PB2S9DK3CT", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "BMW624PB2S9DK3CT.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "BMW624PB2S9DK3CT.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.0410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BMW624PB2S9DK3CT.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "BMW624PB2S9DK3CT", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "BMW624PB2S9DK3CT.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "BMW624PB2S9DK3CT.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "52866" + }, + "appliesTo" : [ ] + }, + "BMW624PB2S9DK3CT.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "BMW624PB2S9DK3CT.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BMW624PB2S9DK3CT.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "BMW624PB2S9DK3CT", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "BMW624PB2S9DK3CT.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "BMW624PB2S9DK3CT.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "BMW624PB2S9DK3CT.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "BMW624PB2S9DK3CT.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29646" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BMW624PB2S9DK3CT.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "BMW624PB2S9DK3CT", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BMW624PB2S9DK3CT.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "BMW624PB2S9DK3CT.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BMW624PB2S9DK3CT.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "BMW624PB2S9DK3CT", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BMW624PB2S9DK3CT.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "BMW624PB2S9DK3CT.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "BMW624PB2S9DK3CT.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "BMW624PB2S9DK3CT.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "76413" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "VZ59SXRTT8GCK9N3" : { + "VZ59SXRTT8GCK9N3.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "VZ59SXRTT8GCK9N3", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "VZ59SXRTT8GCK9N3.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "VZ59SXRTT8GCK9N3.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VZ59SXRTT8GCK9N3.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "VZ59SXRTT8GCK9N3", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "VZ59SXRTT8GCK9N3.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "VZ59SXRTT8GCK9N3.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4998" + }, + "appliesTo" : [ ] + }, + "VZ59SXRTT8GCK9N3.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "VZ59SXRTT8GCK9N3.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VZ59SXRTT8GCK9N3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "VZ59SXRTT8GCK9N3", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "VZ59SXRTT8GCK9N3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "VZ59SXRTT8GCK9N3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9575" + }, + "appliesTo" : [ ] + }, + "VZ59SXRTT8GCK9N3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "VZ59SXRTT8GCK9N3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VZ59SXRTT8GCK9N3.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "VZ59SXRTT8GCK9N3", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "VZ59SXRTT8GCK9N3.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "VZ59SXRTT8GCK9N3.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "VZ59SXRTT8GCK9N3.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "VZ59SXRTT8GCK9N3.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12194" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VZ59SXRTT8GCK9N3.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "VZ59SXRTT8GCK9N3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VZ59SXRTT8GCK9N3.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "VZ59SXRTT8GCK9N3.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4709" + }, + "appliesTo" : [ ] + }, + "VZ59SXRTT8GCK9N3.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "VZ59SXRTT8GCK9N3.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VZ59SXRTT8GCK9N3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "VZ59SXRTT8GCK9N3", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "VZ59SXRTT8GCK9N3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "VZ59SXRTT8GCK9N3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4377" + }, + "appliesTo" : [ ] + }, + "VZ59SXRTT8GCK9N3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "VZ59SXRTT8GCK9N3.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VZ59SXRTT8GCK9N3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "VZ59SXRTT8GCK9N3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "VZ59SXRTT8GCK9N3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "VZ59SXRTT8GCK9N3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2960" + }, + "appliesTo" : [ ] + }, + "VZ59SXRTT8GCK9N3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "VZ59SXRTT8GCK9N3.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VZ59SXRTT8GCK9N3.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "VZ59SXRTT8GCK9N3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VZ59SXRTT8GCK9N3.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "VZ59SXRTT8GCK9N3.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VZ59SXRTT8GCK9N3.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "VZ59SXRTT8GCK9N3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VZ59SXRTT8GCK9N3.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "VZ59SXRTT8GCK9N3.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1822" + }, + "appliesTo" : [ ] + }, + "VZ59SXRTT8GCK9N3.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "VZ59SXRTT8GCK9N3.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VZ59SXRTT8GCK9N3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "VZ59SXRTT8GCK9N3", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "VZ59SXRTT8GCK9N3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "VZ59SXRTT8GCK9N3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1851" + }, + "appliesTo" : [ ] + }, + "VZ59SXRTT8GCK9N3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "VZ59SXRTT8GCK9N3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VZ59SXRTT8GCK9N3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "VZ59SXRTT8GCK9N3", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "VZ59SXRTT8GCK9N3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "VZ59SXRTT8GCK9N3.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "3EADMJNNJS3U42HF" : { + "3EADMJNNJS3U42HF.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "3EADMJNNJS3U42HF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3EADMJNNJS3U42HF.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "3EADMJNNJS3U42HF.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3EADMJNNJS3U42HF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "3EADMJNNJS3U42HF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3EADMJNNJS3U42HF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "3EADMJNNJS3U42HF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "894" + }, + "appliesTo" : [ ] + }, + "3EADMJNNJS3U42HF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "3EADMJNNJS3U42HF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3EADMJNNJS3U42HF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "3EADMJNNJS3U42HF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3EADMJNNJS3U42HF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "3EADMJNNJS3U42HF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3259" + }, + "appliesTo" : [ ] + }, + "3EADMJNNJS3U42HF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "3EADMJNNJS3U42HF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3EADMJNNJS3U42HF.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "3EADMJNNJS3U42HF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3EADMJNNJS3U42HF.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "3EADMJNNJS3U42HF.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3EADMJNNJS3U42HF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "3EADMJNNJS3U42HF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3EADMJNNJS3U42HF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "3EADMJNNJS3U42HF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1751" + }, + "appliesTo" : [ ] + }, + "3EADMJNNJS3U42HF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "3EADMJNNJS3U42HF.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3EADMJNNJS3U42HF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "3EADMJNNJS3U42HF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3EADMJNNJS3U42HF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "3EADMJNNJS3U42HF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1733" + }, + "appliesTo" : [ ] + }, + "3EADMJNNJS3U42HF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "3EADMJNNJS3U42HF.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "JEUDBWRRVYWVAQ8W" : { + "JEUDBWRRVYWVAQ8W.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "JEUDBWRRVYWVAQ8W", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "JEUDBWRRVYWVAQ8W.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "JEUDBWRRVYWVAQ8W.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "793" + }, + "appliesTo" : [ ] + }, + "JEUDBWRRVYWVAQ8W.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "JEUDBWRRVYWVAQ8W.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JEUDBWRRVYWVAQ8W.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "JEUDBWRRVYWVAQ8W", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JEUDBWRRVYWVAQ8W.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "JEUDBWRRVYWVAQ8W.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "135" + }, + "appliesTo" : [ ] + }, + "JEUDBWRRVYWVAQ8W.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "JEUDBWRRVYWVAQ8W.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "JEUDBWRRVYWVAQ8W.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "JEUDBWRRVYWVAQ8W", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JEUDBWRRVYWVAQ8W.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "JEUDBWRRVYWVAQ8W.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2069" + }, + "appliesTo" : [ ] + }, + "JEUDBWRRVYWVAQ8W.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "JEUDBWRRVYWVAQ8W.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JEUDBWRRVYWVAQ8W.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "JEUDBWRRVYWVAQ8W", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JEUDBWRRVYWVAQ8W.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "JEUDBWRRVYWVAQ8W.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "207" + }, + "appliesTo" : [ ] + }, + "JEUDBWRRVYWVAQ8W.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "JEUDBWRRVYWVAQ8W.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "JEUDBWRRVYWVAQ8W.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "JEUDBWRRVYWVAQ8W", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "JEUDBWRRVYWVAQ8W.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "JEUDBWRRVYWVAQ8W.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "B6SAEPP6NFMFCUU3" : { + "B6SAEPP6NFMFCUU3.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "B6SAEPP6NFMFCUU3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "B6SAEPP6NFMFCUU3.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "B6SAEPP6NFMFCUU3.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "B6SAEPP6NFMFCUU3.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "B6SAEPP6NFMFCUU3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "B6SAEPP6NFMFCUU3.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "B6SAEPP6NFMFCUU3.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "B6SAEPP6NFMFCUU3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "B6SAEPP6NFMFCUU3", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "B6SAEPP6NFMFCUU3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "B6SAEPP6NFMFCUU3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0670000000" + }, + "appliesTo" : [ ] + }, + "B6SAEPP6NFMFCUU3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "B6SAEPP6NFMFCUU3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "583" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "B6SAEPP6NFMFCUU3.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "B6SAEPP6NFMFCUU3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "B6SAEPP6NFMFCUU3.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "B6SAEPP6NFMFCUU3.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "B6SAEPP6NFMFCUU3.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "B6SAEPP6NFMFCUU3.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2672" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "B6SAEPP6NFMFCUU3.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "B6SAEPP6NFMFCUU3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "B6SAEPP6NFMFCUU3.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "B6SAEPP6NFMFCUU3.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1303" + }, + "appliesTo" : [ ] + }, + "B6SAEPP6NFMFCUU3.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "B6SAEPP6NFMFCUU3.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "B6SAEPP6NFMFCUU3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "B6SAEPP6NFMFCUU3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "B6SAEPP6NFMFCUU3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "B6SAEPP6NFMFCUU3.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "B6SAEPP6NFMFCUU3.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "B6SAEPP6NFMFCUU3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "B6SAEPP6NFMFCUU3.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "B6SAEPP6NFMFCUU3.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "665" + }, + "appliesTo" : [ ] + }, + "B6SAEPP6NFMFCUU3.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "B6SAEPP6NFMFCUU3.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "B6SAEPP6NFMFCUU3.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "B6SAEPP6NFMFCUU3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "B6SAEPP6NFMFCUU3.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "B6SAEPP6NFMFCUU3.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "B6SAEPP6NFMFCUU3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "B6SAEPP6NFMFCUU3", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "B6SAEPP6NFMFCUU3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "B6SAEPP6NFMFCUU3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1200" + }, + "appliesTo" : [ ] + }, + "B6SAEPP6NFMFCUU3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "B6SAEPP6NFMFCUU3.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "B6SAEPP6NFMFCUU3.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "B6SAEPP6NFMFCUU3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "B6SAEPP6NFMFCUU3.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "B6SAEPP6NFMFCUU3.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1363" + }, + "appliesTo" : [ ] + }, + "B6SAEPP6NFMFCUU3.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "B6SAEPP6NFMFCUU3.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "B6SAEPP6NFMFCUU3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "B6SAEPP6NFMFCUU3", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "B6SAEPP6NFMFCUU3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "B6SAEPP6NFMFCUU3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2256" + }, + "appliesTo" : [ ] + }, + "B6SAEPP6NFMFCUU3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "B6SAEPP6NFMFCUU3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "B6SAEPP6NFMFCUU3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "B6SAEPP6NFMFCUU3", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "B6SAEPP6NFMFCUU3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "B6SAEPP6NFMFCUU3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1143" + }, + "appliesTo" : [ ] + }, + "B6SAEPP6NFMFCUU3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "B6SAEPP6NFMFCUU3.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "6A98KYSNMAGXRPPR" : { + "6A98KYSNMAGXRPPR.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6A98KYSNMAGXRPPR", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6A98KYSNMAGXRPPR.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6A98KYSNMAGXRPPR.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6A98KYSNMAGXRPPR.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6A98KYSNMAGXRPPR", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6A98KYSNMAGXRPPR.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6A98KYSNMAGXRPPR.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2979" + }, + "appliesTo" : [ ] + }, + "6A98KYSNMAGXRPPR.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6A98KYSNMAGXRPPR.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6A98KYSNMAGXRPPR.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6A98KYSNMAGXRPPR", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6A98KYSNMAGXRPPR.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6A98KYSNMAGXRPPR.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7702" + }, + "appliesTo" : [ ] + }, + "6A98KYSNMAGXRPPR.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6A98KYSNMAGXRPPR.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6A98KYSNMAGXRPPR.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6A98KYSNMAGXRPPR", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "6A98KYSNMAGXRPPR.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6A98KYSNMAGXRPPR.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7310" + }, + "appliesTo" : [ ] + }, + "6A98KYSNMAGXRPPR.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6A98KYSNMAGXRPPR.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6A98KYSNMAGXRPPR.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6A98KYSNMAGXRPPR", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "6A98KYSNMAGXRPPR.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6A98KYSNMAGXRPPR.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18109" + }, + "appliesTo" : [ ] + }, + "6A98KYSNMAGXRPPR.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6A98KYSNMAGXRPPR.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "SR2X29MBY6K3S2UM" : { + "SR2X29MBY6K3S2UM.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SR2X29MBY6K3S2UM", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "SR2X29MBY6K3S2UM.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SR2X29MBY6K3S2UM.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "770" + }, + "appliesTo" : [ ] + }, + "SR2X29MBY6K3S2UM.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SR2X29MBY6K3S2UM.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SR2X29MBY6K3S2UM.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "SR2X29MBY6K3S2UM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SR2X29MBY6K3S2UM.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "SR2X29MBY6K3S2UM.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2263" + }, + "appliesTo" : [ ] + }, + "SR2X29MBY6K3S2UM.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "SR2X29MBY6K3S2UM.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SR2X29MBY6K3S2UM.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "SR2X29MBY6K3S2UM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SR2X29MBY6K3S2UM.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "SR2X29MBY6K3S2UM.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1859000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SR2X29MBY6K3S2UM.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SR2X29MBY6K3S2UM", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "SR2X29MBY6K3S2UM.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SR2X29MBY6K3S2UM.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SR2X29MBY6K3S2UM.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SR2X29MBY6K3S2UM.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4472" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SR2X29MBY6K3S2UM.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SR2X29MBY6K3S2UM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SR2X29MBY6K3S2UM.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SR2X29MBY6K3S2UM.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2035" + }, + "appliesTo" : [ ] + }, + "SR2X29MBY6K3S2UM.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SR2X29MBY6K3S2UM.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SR2X29MBY6K3S2UM.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "SR2X29MBY6K3S2UM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SR2X29MBY6K3S2UM.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "SR2X29MBY6K3S2UM.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2048000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SR2X29MBY6K3S2UM.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SR2X29MBY6K3S2UM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SR2X29MBY6K3S2UM.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SR2X29MBY6K3S2UM.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2448000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SR2X29MBY6K3S2UM.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "SR2X29MBY6K3S2UM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SR2X29MBY6K3S2UM.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "SR2X29MBY6K3S2UM.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "887" + }, + "appliesTo" : [ ] + }, + "SR2X29MBY6K3S2UM.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "SR2X29MBY6K3S2UM.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1612000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SR2X29MBY6K3S2UM.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "SR2X29MBY6K3S2UM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SR2X29MBY6K3S2UM.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "SR2X29MBY6K3S2UM.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5030" + }, + "appliesTo" : [ ] + }, + "SR2X29MBY6K3S2UM.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "SR2X29MBY6K3S2UM.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SR2X29MBY6K3S2UM.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SR2X29MBY6K3S2UM", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "SR2X29MBY6K3S2UM.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SR2X29MBY6K3S2UM.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1190000000" + }, + "appliesTo" : [ ] + }, + "SR2X29MBY6K3S2UM.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SR2X29MBY6K3S2UM.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1540" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SR2X29MBY6K3S2UM.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "SR2X29MBY6K3S2UM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SR2X29MBY6K3S2UM.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "SR2X29MBY6K3S2UM.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1270000000" + }, + "appliesTo" : [ ] + }, + "SR2X29MBY6K3S2UM.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "SR2X29MBY6K3S2UM.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1762" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SR2X29MBY6K3S2UM.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "SR2X29MBY6K3S2UM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SR2X29MBY6K3S2UM.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "SR2X29MBY6K3S2UM.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2725000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "AYPJKSTN4WJQRZAK" : { + "AYPJKSTN4WJQRZAK.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "AYPJKSTN4WJQRZAK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AYPJKSTN4WJQRZAK.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "AYPJKSTN4WJQRZAK.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "99" + }, + "appliesTo" : [ ] + }, + "AYPJKSTN4WJQRZAK.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "AYPJKSTN4WJQRZAK.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AYPJKSTN4WJQRZAK.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "AYPJKSTN4WJQRZAK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AYPJKSTN4WJQRZAK.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "AYPJKSTN4WJQRZAK.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0057000000" + }, + "appliesTo" : [ ] + }, + "AYPJKSTN4WJQRZAK.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "AYPJKSTN4WJQRZAK.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "50" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AYPJKSTN4WJQRZAK.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "AYPJKSTN4WJQRZAK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AYPJKSTN4WJQRZAK.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "AYPJKSTN4WJQRZAK.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "234" + }, + "appliesTo" : [ ] + }, + "AYPJKSTN4WJQRZAK.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "AYPJKSTN4WJQRZAK.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AYPJKSTN4WJQRZAK.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "AYPJKSTN4WJQRZAK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AYPJKSTN4WJQRZAK.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "AYPJKSTN4WJQRZAK.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0129000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "AYPJKSTN4WJQRZAK.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "AYPJKSTN4WJQRZAK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AYPJKSTN4WJQRZAK.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "AYPJKSTN4WJQRZAK.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "131" + }, + "appliesTo" : [ ] + }, + "AYPJKSTN4WJQRZAK.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "AYPJKSTN4WJQRZAK.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "AYPJKSTN4WJQRZAK.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "AYPJKSTN4WJQRZAK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AYPJKSTN4WJQRZAK.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "AYPJKSTN4WJQRZAK.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "121" + }, + "appliesTo" : [ ] + }, + "AYPJKSTN4WJQRZAK.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "AYPJKSTN4WJQRZAK.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0046000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AYPJKSTN4WJQRZAK.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "AYPJKSTN4WJQRZAK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AYPJKSTN4WJQRZAK.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "AYPJKSTN4WJQRZAK.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "258" + }, + "appliesTo" : [ ] + }, + "AYPJKSTN4WJQRZAK.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "AYPJKSTN4WJQRZAK.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "AYPJKSTN4WJQRZAK.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "AYPJKSTN4WJQRZAK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AYPJKSTN4WJQRZAK.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "AYPJKSTN4WJQRZAK.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "55" + }, + "appliesTo" : [ ] + }, + "AYPJKSTN4WJQRZAK.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "AYPJKSTN4WJQRZAK.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0062000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "AYPJKSTN4WJQRZAK.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "AYPJKSTN4WJQRZAK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AYPJKSTN4WJQRZAK.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "AYPJKSTN4WJQRZAK.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0104000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "AYPJKSTN4WJQRZAK.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "AYPJKSTN4WJQRZAK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AYPJKSTN4WJQRZAK.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "AYPJKSTN4WJQRZAK.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0096000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "AYPJKSTN4WJQRZAK.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "AYPJKSTN4WJQRZAK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AYPJKSTN4WJQRZAK.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "AYPJKSTN4WJQRZAK.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "108" + }, + "appliesTo" : [ ] + }, + "AYPJKSTN4WJQRZAK.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "AYPJKSTN4WJQRZAK.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "AYPJKSTN4WJQRZAK.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "AYPJKSTN4WJQRZAK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AYPJKSTN4WJQRZAK.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "AYPJKSTN4WJQRZAK.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0118000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "V6MQGHYV9HMHTNFE" : { + "V6MQGHYV9HMHTNFE.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "V6MQGHYV9HMHTNFE", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "V6MQGHYV9HMHTNFE.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "V6MQGHYV9HMHTNFE.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1463" + }, + "appliesTo" : [ ] + }, + "V6MQGHYV9HMHTNFE.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "V6MQGHYV9HMHTNFE.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "V6MQGHYV9HMHTNFE.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "V6MQGHYV9HMHTNFE", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "V6MQGHYV9HMHTNFE.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "V6MQGHYV9HMHTNFE.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "520" + }, + "appliesTo" : [ ] + }, + "V6MQGHYV9HMHTNFE.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "V6MQGHYV9HMHTNFE.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "V6MQGHYV9HMHTNFE.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "V6MQGHYV9HMHTNFE", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "V6MQGHYV9HMHTNFE.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "V6MQGHYV9HMHTNFE.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3242" + }, + "appliesTo" : [ ] + }, + "V6MQGHYV9HMHTNFE.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "V6MQGHYV9HMHTNFE.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "V6MQGHYV9HMHTNFE.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "V6MQGHYV9HMHTNFE", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "V6MQGHYV9HMHTNFE.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "V6MQGHYV9HMHTNFE.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "791" + }, + "appliesTo" : [ ] + }, + "V6MQGHYV9HMHTNFE.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "V6MQGHYV9HMHTNFE.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "V6MQGHYV9HMHTNFE.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "V6MQGHYV9HMHTNFE", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "V6MQGHYV9HMHTNFE.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "V6MQGHYV9HMHTNFE.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "Y2TP2WYH8ZP2ZSNP" : { + "Y2TP2WYH8ZP2ZSNP.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "Y2TP2WYH8ZP2ZSNP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Y2TP2WYH8ZP2ZSNP.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "Y2TP2WYH8ZP2ZSNP.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Y2TP2WYH8ZP2ZSNP.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Y2TP2WYH8ZP2ZSNP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Y2TP2WYH8ZP2ZSNP.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Y2TP2WYH8ZP2ZSNP.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Y2TP2WYH8ZP2ZSNP.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Y2TP2WYH8ZP2ZSNP", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "Y2TP2WYH8ZP2ZSNP.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Y2TP2WYH8ZP2ZSNP.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7937" + }, + "appliesTo" : [ ] + }, + "Y2TP2WYH8ZP2ZSNP.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Y2TP2WYH8ZP2ZSNP.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y2TP2WYH8ZP2ZSNP.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "Y2TP2WYH8ZP2ZSNP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Y2TP2WYH8ZP2ZSNP.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "Y2TP2WYH8ZP2ZSNP.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7980" + }, + "appliesTo" : [ ] + }, + "Y2TP2WYH8ZP2ZSNP.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "Y2TP2WYH8ZP2ZSNP.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y2TP2WYH8ZP2ZSNP.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "Y2TP2WYH8ZP2ZSNP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Y2TP2WYH8ZP2ZSNP.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "Y2TP2WYH8ZP2ZSNP.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "Y2TP2WYH8ZP2ZSNP.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "Y2TP2WYH8ZP2ZSNP.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46684" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Y2TP2WYH8ZP2ZSNP.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "Y2TP2WYH8ZP2ZSNP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Y2TP2WYH8ZP2ZSNP.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "Y2TP2WYH8ZP2ZSNP.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Y2TP2WYH8ZP2ZSNP.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Y2TP2WYH8ZP2ZSNP", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "Y2TP2WYH8ZP2ZSNP.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Y2TP2WYH8ZP2ZSNP.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46306" + }, + "appliesTo" : [ ] + }, + "Y2TP2WYH8ZP2ZSNP.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Y2TP2WYH8ZP2ZSNP.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Y2TP2WYH8ZP2ZSNP.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "Y2TP2WYH8ZP2ZSNP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Y2TP2WYH8ZP2ZSNP.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "Y2TP2WYH8ZP2ZSNP.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Y2TP2WYH8ZP2ZSNP.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "Y2TP2WYH8ZP2ZSNP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Y2TP2WYH8ZP2ZSNP.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "Y2TP2WYH8ZP2ZSNP.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23367" + }, + "appliesTo" : [ ] + }, + "Y2TP2WYH8ZP2ZSNP.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "Y2TP2WYH8ZP2ZSNP.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y2TP2WYH8ZP2ZSNP.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "Y2TP2WYH8ZP2ZSNP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Y2TP2WYH8ZP2ZSNP.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "Y2TP2WYH8ZP2ZSNP.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15937" + }, + "appliesTo" : [ ] + }, + "Y2TP2WYH8ZP2ZSNP.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "Y2TP2WYH8ZP2ZSNP.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Y2TP2WYH8ZP2ZSNP.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Y2TP2WYH8ZP2ZSNP", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "Y2TP2WYH8ZP2ZSNP.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Y2TP2WYH8ZP2ZSNP.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23218" + }, + "appliesTo" : [ ] + }, + "Y2TP2WYH8ZP2ZSNP.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Y2TP2WYH8ZP2ZSNP.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y2TP2WYH8ZP2ZSNP.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Y2TP2WYH8ZP2ZSNP", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "Y2TP2WYH8ZP2ZSNP.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Y2TP2WYH8ZP2ZSNP.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15851" + }, + "appliesTo" : [ ] + }, + "Y2TP2WYH8ZP2ZSNP.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Y2TP2WYH8ZP2ZSNP.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "XJF7B8BASZ9KBAC4" : { + "XJF7B8BASZ9KBAC4.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XJF7B8BASZ9KBAC4", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "XJF7B8BASZ9KBAC4.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XJF7B8BASZ9KBAC4.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "132227" + }, + "appliesTo" : [ ] + }, + "XJF7B8BASZ9KBAC4.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XJF7B8BASZ9KBAC4.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.0940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XJF7B8BASZ9KBAC4.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XJF7B8BASZ9KBAC4", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "XJF7B8BASZ9KBAC4.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XJF7B8BASZ9KBAC4.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "XJF7B8BASZ9KBAC4.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XJF7B8BASZ9KBAC4.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "263885" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XJF7B8BASZ9KBAC4.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "XJF7B8BASZ9KBAC4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XJF7B8BASZ9KBAC4.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "XJF7B8BASZ9KBAC4.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "268254" + }, + "appliesTo" : [ ] + }, + "XJF7B8BASZ9KBAC4.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "XJF7B8BASZ9KBAC4.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XJF7B8BASZ9KBAC4.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "XJF7B8BASZ9KBAC4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XJF7B8BASZ9KBAC4.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "XJF7B8BASZ9KBAC4.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "29.3630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XJF7B8BASZ9KBAC4.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "XJF7B8BASZ9KBAC4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XJF7B8BASZ9KBAC4.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "XJF7B8BASZ9KBAC4.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "387893" + }, + "appliesTo" : [ ] + }, + "XJF7B8BASZ9KBAC4.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "XJF7B8BASZ9KBAC4.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.7600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XJF7B8BASZ9KBAC4.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "XJF7B8BASZ9KBAC4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XJF7B8BASZ9KBAC4.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "XJF7B8BASZ9KBAC4.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.3490000000" + }, + "appliesTo" : [ ] + }, + "XJF7B8BASZ9KBAC4.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "XJF7B8BASZ9KBAC4.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "134456" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XJF7B8BASZ9KBAC4.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "XJF7B8BASZ9KBAC4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XJF7B8BASZ9KBAC4.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "XJF7B8BASZ9KBAC4.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "30.8850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XJF7B8BASZ9KBAC4.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XJF7B8BASZ9KBAC4", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "XJF7B8BASZ9KBAC4.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XJF7B8BASZ9KBAC4.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.5950000000" + }, + "appliesTo" : [ ] + }, + "XJF7B8BASZ9KBAC4.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XJF7B8BASZ9KBAC4.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "383562" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XJF7B8BASZ9KBAC4.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "XJF7B8BASZ9KBAC4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XJF7B8BASZ9KBAC4.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "XJF7B8BASZ9KBAC4.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "774432" + }, + "appliesTo" : [ ] + }, + "XJF7B8BASZ9KBAC4.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "XJF7B8BASZ9KBAC4.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XJF7B8BASZ9KBAC4.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XJF7B8BASZ9KBAC4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XJF7B8BASZ9KBAC4.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XJF7B8BASZ9KBAC4.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "30.3710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XJF7B8BASZ9KBAC4.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "XJF7B8BASZ9KBAC4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XJF7B8BASZ9KBAC4.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "XJF7B8BASZ9KBAC4.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "29.7260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XJF7B8BASZ9KBAC4.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XJF7B8BASZ9KBAC4", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "XJF7B8BASZ9KBAC4.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XJF7B8BASZ9KBAC4.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "763582" + }, + "appliesTo" : [ ] + }, + "XJF7B8BASZ9KBAC4.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XJF7B8BASZ9KBAC4.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "E9BJT9V6S2SW8D9F" : { + "E9BJT9V6S2SW8D9F.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "E9BJT9V6S2SW8D9F", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "E9BJT9V6S2SW8D9F.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "E9BJT9V6S2SW8D9F.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5286000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "E9BJT9V6S2SW8D9F.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "E9BJT9V6S2SW8D9F", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "E9BJT9V6S2SW8D9F.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "E9BJT9V6S2SW8D9F.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2553" + }, + "appliesTo" : [ ] + }, + "E9BJT9V6S2SW8D9F.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "E9BJT9V6S2SW8D9F.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2844000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "E9BJT9V6S2SW8D9F.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "E9BJT9V6S2SW8D9F", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "E9BJT9V6S2SW8D9F.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "E9BJT9V6S2SW8D9F.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "E9BJT9V6S2SW8D9F.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "E9BJT9V6S2SW8D9F.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10172" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "E9BJT9V6S2SW8D9F.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "E9BJT9V6S2SW8D9F", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "E9BJT9V6S2SW8D9F.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "E9BJT9V6S2SW8D9F.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5188" + }, + "appliesTo" : [ ] + }, + "E9BJT9V6S2SW8D9F.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "E9BJT9V6S2SW8D9F.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "E9BJT9V6S2SW8D9F.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "E9BJT9V6S2SW8D9F", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "E9BJT9V6S2SW8D9F.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "E9BJT9V6S2SW8D9F.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4557" + }, + "appliesTo" : [ ] + }, + "E9BJT9V6S2SW8D9F.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "E9BJT9V6S2SW8D9F.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "E9BJT9V6S2SW8D9F.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "E9BJT9V6S2SW8D9F", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "E9BJT9V6S2SW8D9F.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "E9BJT9V6S2SW8D9F.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6029000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "E9BJT9V6S2SW8D9F.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "E9BJT9V6S2SW8D9F", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "E9BJT9V6S2SW8D9F.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "E9BJT9V6S2SW8D9F.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2243" + }, + "appliesTo" : [ ] + }, + "E9BJT9V6S2SW8D9F.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "E9BJT9V6S2SW8D9F.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "E9BJT9V6S2SW8D9F.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "E9BJT9V6S2SW8D9F", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "E9BJT9V6S2SW8D9F.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "E9BJT9V6S2SW8D9F.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "E9BJT9V6S2SW8D9F.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "E9BJT9V6S2SW8D9F.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4950" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "E9BJT9V6S2SW8D9F.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "E9BJT9V6S2SW8D9F", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "E9BJT9V6S2SW8D9F.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "E9BJT9V6S2SW8D9F.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3786000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "E9BJT9V6S2SW8D9F.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "E9BJT9V6S2SW8D9F", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "E9BJT9V6S2SW8D9F.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "E9BJT9V6S2SW8D9F.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4342" + }, + "appliesTo" : [ ] + }, + "E9BJT9V6S2SW8D9F.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "E9BJT9V6S2SW8D9F.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "E9BJT9V6S2SW8D9F.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "E9BJT9V6S2SW8D9F", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "E9BJT9V6S2SW8D9F.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "E9BJT9V6S2SW8D9F.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8599" + }, + "appliesTo" : [ ] + }, + "E9BJT9V6S2SW8D9F.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "E9BJT9V6S2SW8D9F.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "E9BJT9V6S2SW8D9F.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "E9BJT9V6S2SW8D9F", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "E9BJT9V6S2SW8D9F.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "E9BJT9V6S2SW8D9F.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4304000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "URQPKMKKWVYXRDR3" : { + "URQPKMKKWVYXRDR3.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "URQPKMKKWVYXRDR3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "URQPKMKKWVYXRDR3.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "URQPKMKKWVYXRDR3.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1897000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "URQPKMKKWVYXRDR3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "URQPKMKKWVYXRDR3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "URQPKMKKWVYXRDR3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "URQPKMKKWVYXRDR3.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1693000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "URQPKMKKWVYXRDR3.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "URQPKMKKWVYXRDR3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "URQPKMKKWVYXRDR3.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "URQPKMKKWVYXRDR3.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3300" + }, + "appliesTo" : [ ] + }, + "URQPKMKKWVYXRDR3.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "URQPKMKKWVYXRDR3.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "URQPKMKKWVYXRDR3.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "URQPKMKKWVYXRDR3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "URQPKMKKWVYXRDR3.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "URQPKMKKWVYXRDR3.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0876000000" + }, + "appliesTo" : [ ] + }, + "URQPKMKKWVYXRDR3.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "URQPKMKKWVYXRDR3.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "830" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "URQPKMKKWVYXRDR3.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "URQPKMKKWVYXRDR3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "URQPKMKKWVYXRDR3.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "URQPKMKKWVYXRDR3.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1571" + }, + "appliesTo" : [ ] + }, + "URQPKMKKWVYXRDR3.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "URQPKMKKWVYXRDR3.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "URQPKMKKWVYXRDR3.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "URQPKMKKWVYXRDR3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "URQPKMKKWVYXRDR3.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "URQPKMKKWVYXRDR3.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "URQPKMKKWVYXRDR3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "URQPKMKKWVYXRDR3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "URQPKMKKWVYXRDR3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "URQPKMKKWVYXRDR3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "URQPKMKKWVYXRDR3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "URQPKMKKWVYXRDR3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2868" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "URQPKMKKWVYXRDR3.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "URQPKMKKWVYXRDR3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "URQPKMKKWVYXRDR3.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "URQPKMKKWVYXRDR3.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1682" + }, + "appliesTo" : [ ] + }, + "URQPKMKKWVYXRDR3.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "URQPKMKKWVYXRDR3.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0636000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "URQPKMKKWVYXRDR3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "URQPKMKKWVYXRDR3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "URQPKMKKWVYXRDR3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "URQPKMKKWVYXRDR3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "745" + }, + "appliesTo" : [ ] + }, + "URQPKMKKWVYXRDR3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "URQPKMKKWVYXRDR3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0779000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "URQPKMKKWVYXRDR3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "URQPKMKKWVYXRDR3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "URQPKMKKWVYXRDR3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "URQPKMKKWVYXRDR3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1508" + }, + "appliesTo" : [ ] + }, + "URQPKMKKWVYXRDR3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "URQPKMKKWVYXRDR3.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "URQPKMKKWVYXRDR3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "URQPKMKKWVYXRDR3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "URQPKMKKWVYXRDR3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "URQPKMKKWVYXRDR3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1404" + }, + "appliesTo" : [ ] + }, + "URQPKMKKWVYXRDR3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "URQPKMKKWVYXRDR3.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "URQPKMKKWVYXRDR3.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "URQPKMKKWVYXRDR3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "URQPKMKKWVYXRDR3.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "URQPKMKKWVYXRDR3.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1423000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "GTVQFYE9FHRN6U2Z" : { + "GTVQFYE9FHRN6U2Z.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "GTVQFYE9FHRN6U2Z", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "GTVQFYE9FHRN6U2Z.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "GTVQFYE9FHRN6U2Z.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7902" + }, + "appliesTo" : [ ] + }, + "GTVQFYE9FHRN6U2Z.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "GTVQFYE9FHRN6U2Z.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GTVQFYE9FHRN6U2Z.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "GTVQFYE9FHRN6U2Z", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GTVQFYE9FHRN6U2Z.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "GTVQFYE9FHRN6U2Z.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GTVQFYE9FHRN6U2Z.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "GTVQFYE9FHRN6U2Z", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GTVQFYE9FHRN6U2Z.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "GTVQFYE9FHRN6U2Z.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2726" + }, + "appliesTo" : [ ] + }, + "GTVQFYE9FHRN6U2Z.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "GTVQFYE9FHRN6U2Z.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GTVQFYE9FHRN6U2Z.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "GTVQFYE9FHRN6U2Z", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GTVQFYE9FHRN6U2Z.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "GTVQFYE9FHRN6U2Z.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "GTVQFYE9FHRN6U2Z.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "GTVQFYE9FHRN6U2Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GTVQFYE9FHRN6U2Z.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "GTVQFYE9FHRN6U2Z.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "GTVQFYE9FHRN6U2Z.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "GTVQFYE9FHRN6U2Z.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3745" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "GTVQFYE9FHRN6U2Z.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "GTVQFYE9FHRN6U2Z", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "GTVQFYE9FHRN6U2Z.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "GTVQFYE9FHRN6U2Z.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2386" + }, + "appliesTo" : [ ] + }, + "GTVQFYE9FHRN6U2Z.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "GTVQFYE9FHRN6U2Z.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GTVQFYE9FHRN6U2Z.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "GTVQFYE9FHRN6U2Z", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "GTVQFYE9FHRN6U2Z.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "GTVQFYE9FHRN6U2Z.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1166" + }, + "appliesTo" : [ ] + }, + "GTVQFYE9FHRN6U2Z.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "GTVQFYE9FHRN6U2Z.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GTVQFYE9FHRN6U2Z.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "GTVQFYE9FHRN6U2Z", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GTVQFYE9FHRN6U2Z.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "GTVQFYE9FHRN6U2Z.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "GTVQFYE9FHRN6U2Z.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "GTVQFYE9FHRN6U2Z.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8759" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "GTVQFYE9FHRN6U2Z.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "GTVQFYE9FHRN6U2Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GTVQFYE9FHRN6U2Z.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "GTVQFYE9FHRN6U2Z.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1330" + }, + "appliesTo" : [ ] + }, + "GTVQFYE9FHRN6U2Z.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "GTVQFYE9FHRN6U2Z.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GTVQFYE9FHRN6U2Z.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "GTVQFYE9FHRN6U2Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GTVQFYE9FHRN6U2Z.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "GTVQFYE9FHRN6U2Z.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "GTVQFYE9FHRN6U2Z.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "GTVQFYE9FHRN6U2Z", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GTVQFYE9FHRN6U2Z.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "GTVQFYE9FHRN6U2Z.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GTVQFYE9FHRN6U2Z.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "GTVQFYE9FHRN6U2Z", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GTVQFYE9FHRN6U2Z.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "GTVQFYE9FHRN6U2Z.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3425" + }, + "appliesTo" : [ ] + }, + "GTVQFYE9FHRN6U2Z.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "GTVQFYE9FHRN6U2Z.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "T2S6PU6V3NXVX7X2" : { + "T2S6PU6V3NXVX7X2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "T2S6PU6V3NXVX7X2", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "T2S6PU6V3NXVX7X2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "T2S6PU6V3NXVX7X2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5816" + }, + "appliesTo" : [ ] + }, + "T2S6PU6V3NXVX7X2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "T2S6PU6V3NXVX7X2.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "T2S6PU6V3NXVX7X2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "T2S6PU6V3NXVX7X2", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "T2S6PU6V3NXVX7X2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "T2S6PU6V3NXVX7X2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2339" + }, + "appliesTo" : [ ] + }, + "T2S6PU6V3NXVX7X2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "T2S6PU6V3NXVX7X2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "T2S6PU6V3NXVX7X2.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "T2S6PU6V3NXVX7X2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "T2S6PU6V3NXVX7X2.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "T2S6PU6V3NXVX7X2.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3268" + }, + "appliesTo" : [ ] + }, + "T2S6PU6V3NXVX7X2.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "T2S6PU6V3NXVX7X2.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "T2S6PU6V3NXVX7X2.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "T2S6PU6V3NXVX7X2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "T2S6PU6V3NXVX7X2.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "T2S6PU6V3NXVX7X2.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "T2S6PU6V3NXVX7X2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "T2S6PU6V3NXVX7X2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "T2S6PU6V3NXVX7X2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "T2S6PU6V3NXVX7X2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3814" + }, + "appliesTo" : [ ] + }, + "T2S6PU6V3NXVX7X2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "T2S6PU6V3NXVX7X2.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "T2S6PU6V3NXVX7X2.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "T2S6PU6V3NXVX7X2", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "T2S6PU6V3NXVX7X2.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "T2S6PU6V3NXVX7X2.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "T2S6PU6V3NXVX7X2.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "T2S6PU6V3NXVX7X2.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16596" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "T2S6PU6V3NXVX7X2.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "T2S6PU6V3NXVX7X2", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "T2S6PU6V3NXVX7X2.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "T2S6PU6V3NXVX7X2.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6512" + }, + "appliesTo" : [ ] + }, + "T2S6PU6V3NXVX7X2.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "T2S6PU6V3NXVX7X2.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "T2S6PU6V3NXVX7X2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "T2S6PU6V3NXVX7X2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "T2S6PU6V3NXVX7X2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "T2S6PU6V3NXVX7X2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13417" + }, + "appliesTo" : [ ] + }, + "T2S6PU6V3NXVX7X2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "T2S6PU6V3NXVX7X2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "T2S6PU6V3NXVX7X2.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "T2S6PU6V3NXVX7X2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "T2S6PU6V3NXVX7X2.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "T2S6PU6V3NXVX7X2.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "T2S6PU6V3NXVX7X2.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "T2S6PU6V3NXVX7X2.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6470" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "T2S6PU6V3NXVX7X2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "T2S6PU6V3NXVX7X2", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "T2S6PU6V3NXVX7X2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "T2S6PU6V3NXVX7X2.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "T2S6PU6V3NXVX7X2.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "T2S6PU6V3NXVX7X2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "T2S6PU6V3NXVX7X2.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "T2S6PU6V3NXVX7X2.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "2YXG22APZA6TC2QW" : { + "2YXG22APZA6TC2QW.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "2YXG22APZA6TC2QW", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "2YXG22APZA6TC2QW.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "2YXG22APZA6TC2QW.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2YXG22APZA6TC2QW.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "2YXG22APZA6TC2QW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2YXG22APZA6TC2QW.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "2YXG22APZA6TC2QW.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6738" + }, + "appliesTo" : [ ] + }, + "2YXG22APZA6TC2QW.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "2YXG22APZA6TC2QW.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2YXG22APZA6TC2QW.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "2YXG22APZA6TC2QW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2YXG22APZA6TC2QW.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "2YXG22APZA6TC2QW.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2724000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2YXG22APZA6TC2QW.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "2YXG22APZA6TC2QW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2YXG22APZA6TC2QW.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "2YXG22APZA6TC2QW.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7987" + }, + "appliesTo" : [ ] + }, + "2YXG22APZA6TC2QW.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "2YXG22APZA6TC2QW.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2YXG22APZA6TC2QW.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "2YXG22APZA6TC2QW", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "2YXG22APZA6TC2QW.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "2YXG22APZA6TC2QW.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4075" + }, + "appliesTo" : [ ] + }, + "2YXG22APZA6TC2QW.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "2YXG22APZA6TC2QW.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2YXG22APZA6TC2QW.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "2YXG22APZA6TC2QW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2YXG22APZA6TC2QW.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "2YXG22APZA6TC2QW.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "2YXG22APZA6TC2QW.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "2YXG22APZA6TC2QW.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3515" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2YXG22APZA6TC2QW.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "2YXG22APZA6TC2QW", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "2YXG22APZA6TC2QW.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "2YXG22APZA6TC2QW.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3585" + }, + "appliesTo" : [ ] + }, + "2YXG22APZA6TC2QW.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "2YXG22APZA6TC2QW.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2YXG22APZA6TC2QW.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "2YXG22APZA6TC2QW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2YXG22APZA6TC2QW.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "2YXG22APZA6TC2QW.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1426" + }, + "appliesTo" : [ ] + }, + "2YXG22APZA6TC2QW.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "2YXG22APZA6TC2QW.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2YXG22APZA6TC2QW.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "2YXG22APZA6TC2QW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2YXG22APZA6TC2QW.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "2YXG22APZA6TC2QW.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2795" + }, + "appliesTo" : [ ] + }, + "2YXG22APZA6TC2QW.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "2YXG22APZA6TC2QW.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2YXG22APZA6TC2QW.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "2YXG22APZA6TC2QW", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "2YXG22APZA6TC2QW.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "2YXG22APZA6TC2QW.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2YXG22APZA6TC2QW.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "2YXG22APZA6TC2QW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2YXG22APZA6TC2QW.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "2YXG22APZA6TC2QW.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1771" + }, + "appliesTo" : [ ] + }, + "2YXG22APZA6TC2QW.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "2YXG22APZA6TC2QW.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2021000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2YXG22APZA6TC2QW.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "2YXG22APZA6TC2QW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2YXG22APZA6TC2QW.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "2YXG22APZA6TC2QW.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4117000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "8VCNEHQMSCQS4P39" : { + "8VCNEHQMSCQS4P39.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "8VCNEHQMSCQS4P39", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8VCNEHQMSCQS4P39.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "8VCNEHQMSCQS4P39.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "8VCNEHQMSCQS4P39.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "8VCNEHQMSCQS4P39.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "507" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8VCNEHQMSCQS4P39.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "8VCNEHQMSCQS4P39", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8VCNEHQMSCQS4P39.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "8VCNEHQMSCQS4P39.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "258" + }, + "appliesTo" : [ ] + }, + "8VCNEHQMSCQS4P39.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "8VCNEHQMSCQS4P39.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0295000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8VCNEHQMSCQS4P39.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "8VCNEHQMSCQS4P39", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8VCNEHQMSCQS4P39.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "8VCNEHQMSCQS4P39.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0432000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8VCNEHQMSCQS4P39.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "8VCNEHQMSCQS4P39", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8VCNEHQMSCQS4P39.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "8VCNEHQMSCQS4P39.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0497000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8VCNEHQMSCQS4P39.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "8VCNEHQMSCQS4P39", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8VCNEHQMSCQS4P39.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "8VCNEHQMSCQS4P39.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "582" + }, + "appliesTo" : [ ] + }, + "8VCNEHQMSCQS4P39.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "8VCNEHQMSCQS4P39.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8VCNEHQMSCQS4P39.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "8VCNEHQMSCQS4P39", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8VCNEHQMSCQS4P39.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "8VCNEHQMSCQS4P39.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8VCNEHQMSCQS4P39.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "8VCNEHQMSCQS4P39", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8VCNEHQMSCQS4P39.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "8VCNEHQMSCQS4P39.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "297" + }, + "appliesTo" : [ ] + }, + "8VCNEHQMSCQS4P39.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "8VCNEHQMSCQS4P39.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0339000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8VCNEHQMSCQS4P39.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "8VCNEHQMSCQS4P39", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8VCNEHQMSCQS4P39.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "8VCNEHQMSCQS4P39.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1185" + }, + "appliesTo" : [ ] + }, + "8VCNEHQMSCQS4P39.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "8VCNEHQMSCQS4P39.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8VCNEHQMSCQS4P39.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "8VCNEHQMSCQS4P39", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8VCNEHQMSCQS4P39.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "8VCNEHQMSCQS4P39.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "988" + }, + "appliesTo" : [ ] + }, + "8VCNEHQMSCQS4P39.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "8VCNEHQMSCQS4P39.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8VCNEHQMSCQS4P39.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "8VCNEHQMSCQS4P39", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8VCNEHQMSCQS4P39.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "8VCNEHQMSCQS4P39.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0230000000" + }, + "appliesTo" : [ ] + }, + "8VCNEHQMSCQS4P39.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "8VCNEHQMSCQS4P39.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "604" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8VCNEHQMSCQS4P39.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "8VCNEHQMSCQS4P39", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8VCNEHQMSCQS4P39.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "8VCNEHQMSCQS4P39.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0712000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8VCNEHQMSCQS4P39.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "8VCNEHQMSCQS4P39", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8VCNEHQMSCQS4P39.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "8VCNEHQMSCQS4P39.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "526" + }, + "appliesTo" : [ ] + }, + "8VCNEHQMSCQS4P39.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "8VCNEHQMSCQS4P39.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "YUXKRQ5SQSHVKD58" : { + "YUXKRQ5SQSHVKD58.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YUXKRQ5SQSHVKD58", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YUXKRQ5SQSHVKD58.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YUXKRQ5SQSHVKD58.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YUXKRQ5SQSHVKD58.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YUXKRQ5SQSHVKD58", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "YUXKRQ5SQSHVKD58.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YUXKRQ5SQSHVKD58.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "247" + }, + "appliesTo" : [ ] + }, + "YUXKRQ5SQSHVKD58.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YUXKRQ5SQSHVKD58.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YUXKRQ5SQSHVKD58.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YUXKRQ5SQSHVKD58", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YUXKRQ5SQSHVKD58.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YUXKRQ5SQSHVKD58.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "375" + }, + "appliesTo" : [ ] + }, + "YUXKRQ5SQSHVKD58.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YUXKRQ5SQSHVKD58.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YUXKRQ5SQSHVKD58.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YUXKRQ5SQSHVKD58", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YUXKRQ5SQSHVKD58.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YUXKRQ5SQSHVKD58.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YUXKRQ5SQSHVKD58.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YUXKRQ5SQSHVKD58.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "772" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YUXKRQ5SQSHVKD58.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YUXKRQ5SQSHVKD58", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YUXKRQ5SQSHVKD58.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YUXKRQ5SQSHVKD58.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "413" + }, + "appliesTo" : [ ] + }, + "YUXKRQ5SQSHVKD58.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YUXKRQ5SQSHVKD58.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "MBDEK77AM97QDASM" : { + "MBDEK77AM97QDASM.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "MBDEK77AM97QDASM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MBDEK77AM97QDASM.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "MBDEK77AM97QDASM.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7392000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MBDEK77AM97QDASM.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "MBDEK77AM97QDASM", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "MBDEK77AM97QDASM.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "MBDEK77AM97QDASM.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2340000000" + }, + "appliesTo" : [ ] + }, + "MBDEK77AM97QDASM.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "MBDEK77AM97QDASM.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6150" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MBDEK77AM97QDASM.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "MBDEK77AM97QDASM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MBDEK77AM97QDASM.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "MBDEK77AM97QDASM.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13814" + }, + "appliesTo" : [ ] + }, + "MBDEK77AM97QDASM.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "MBDEK77AM97QDASM.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MBDEK77AM97QDASM.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "MBDEK77AM97QDASM", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "MBDEK77AM97QDASM.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "MBDEK77AM97QDASM.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11561" + }, + "appliesTo" : [ ] + }, + "MBDEK77AM97QDASM.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "MBDEK77AM97QDASM.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MBDEK77AM97QDASM.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "MBDEK77AM97QDASM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MBDEK77AM97QDASM.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "MBDEK77AM97QDASM.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5793000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MBDEK77AM97QDASM.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "MBDEK77AM97QDASM", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "MBDEK77AM97QDASM.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "MBDEK77AM97QDASM.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3075" + }, + "appliesTo" : [ ] + }, + "MBDEK77AM97QDASM.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "MBDEK77AM97QDASM.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MBDEK77AM97QDASM.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "MBDEK77AM97QDASM", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "MBDEK77AM97QDASM.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "MBDEK77AM97QDASM.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6027" + }, + "appliesTo" : [ ] + }, + "MBDEK77AM97QDASM.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "MBDEK77AM97QDASM.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MBDEK77AM97QDASM.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "MBDEK77AM97QDASM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MBDEK77AM97QDASM.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "MBDEK77AM97QDASM.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "MBDEK77AM97QDASM.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "MBDEK77AM97QDASM.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6950" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MBDEK77AM97QDASM.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "MBDEK77AM97QDASM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MBDEK77AM97QDASM.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "MBDEK77AM97QDASM.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5037000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MBDEK77AM97QDASM.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "MBDEK77AM97QDASM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MBDEK77AM97QDASM.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "MBDEK77AM97QDASM.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2682000000" + }, + "appliesTo" : [ ] + }, + "MBDEK77AM97QDASM.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "MBDEK77AM97QDASM.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7048" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MBDEK77AM97QDASM.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "MBDEK77AM97QDASM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MBDEK77AM97QDASM.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "MBDEK77AM97QDASM.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3546" + }, + "appliesTo" : [ ] + }, + "MBDEK77AM97QDASM.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "MBDEK77AM97QDASM.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4048000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MBDEK77AM97QDASM.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "MBDEK77AM97QDASM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MBDEK77AM97QDASM.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "MBDEK77AM97QDASM.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8501000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "6898Z5WFTX5GEKYT" : { + "6898Z5WFTX5GEKYT.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6898Z5WFTX5GEKYT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6898Z5WFTX5GEKYT.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6898Z5WFTX5GEKYT.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22718" + }, + "appliesTo" : [ ] + }, + "6898Z5WFTX5GEKYT.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6898Z5WFTX5GEKYT.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6898Z5WFTX5GEKYT.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6898Z5WFTX5GEKYT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6898Z5WFTX5GEKYT.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6898Z5WFTX5GEKYT.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6898Z5WFTX5GEKYT.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "6898Z5WFTX5GEKYT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6898Z5WFTX5GEKYT.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "6898Z5WFTX5GEKYT.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9390000000" + }, + "appliesTo" : [ ] + }, + "6898Z5WFTX5GEKYT.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "6898Z5WFTX5GEKYT.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24675" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6898Z5WFTX5GEKYT.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6898Z5WFTX5GEKYT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6898Z5WFTX5GEKYT.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6898Z5WFTX5GEKYT.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "43871" + }, + "appliesTo" : [ ] + }, + "6898Z5WFTX5GEKYT.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6898Z5WFTX5GEKYT.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6898Z5WFTX5GEKYT.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "6898Z5WFTX5GEKYT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6898Z5WFTX5GEKYT.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "6898Z5WFTX5GEKYT.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6898Z5WFTX5GEKYT.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6898Z5WFTX5GEKYT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6898Z5WFTX5GEKYT.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6898Z5WFTX5GEKYT.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11799" + }, + "appliesTo" : [ ] + }, + "6898Z5WFTX5GEKYT.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6898Z5WFTX5GEKYT.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6898Z5WFTX5GEKYT.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6898Z5WFTX5GEKYT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6898Z5WFTX5GEKYT.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6898Z5WFTX5GEKYT.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23255" + }, + "appliesTo" : [ ] + }, + "6898Z5WFTX5GEKYT.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6898Z5WFTX5GEKYT.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6898Z5WFTX5GEKYT.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "6898Z5WFTX5GEKYT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6898Z5WFTX5GEKYT.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "6898Z5WFTX5GEKYT.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6898Z5WFTX5GEKYT.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "6898Z5WFTX5GEKYT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6898Z5WFTX5GEKYT.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "6898Z5WFTX5GEKYT.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6898Z5WFTX5GEKYT.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "6898Z5WFTX5GEKYT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6898Z5WFTX5GEKYT.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "6898Z5WFTX5GEKYT.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "6898Z5WFTX5GEKYT.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "6898Z5WFTX5GEKYT.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25777" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6898Z5WFTX5GEKYT.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "6898Z5WFTX5GEKYT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6898Z5WFTX5GEKYT.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "6898Z5WFTX5GEKYT.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13086" + }, + "appliesTo" : [ ] + }, + "6898Z5WFTX5GEKYT.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "6898Z5WFTX5GEKYT.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6898Z5WFTX5GEKYT.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "6898Z5WFTX5GEKYT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6898Z5WFTX5GEKYT.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "6898Z5WFTX5GEKYT.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "6898Z5WFTX5GEKYT.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "6898Z5WFTX5GEKYT.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "48751" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "RKUUP7AYRVCXF3ZJ" : { + "RKUUP7AYRVCXF3ZJ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "RKUUP7AYRVCXF3ZJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RKUUP7AYRVCXF3ZJ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "RKUUP7AYRVCXF3ZJ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1052" + }, + "appliesTo" : [ ] + }, + "RKUUP7AYRVCXF3ZJ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "RKUUP7AYRVCXF3ZJ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RKUUP7AYRVCXF3ZJ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "RKUUP7AYRVCXF3ZJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RKUUP7AYRVCXF3ZJ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "RKUUP7AYRVCXF3ZJ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RKUUP7AYRVCXF3ZJ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "RKUUP7AYRVCXF3ZJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RKUUP7AYRVCXF3ZJ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "RKUUP7AYRVCXF3ZJ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "660" + }, + "appliesTo" : [ ] + }, + "RKUUP7AYRVCXF3ZJ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "RKUUP7AYRVCXF3ZJ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RKUUP7AYRVCXF3ZJ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "RKUUP7AYRVCXF3ZJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RKUUP7AYRVCXF3ZJ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "RKUUP7AYRVCXF3ZJ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3854" + }, + "appliesTo" : [ ] + }, + "RKUUP7AYRVCXF3ZJ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "RKUUP7AYRVCXF3ZJ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RKUUP7AYRVCXF3ZJ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "RKUUP7AYRVCXF3ZJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "RKUUP7AYRVCXF3ZJ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "RKUUP7AYRVCXF3ZJ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1703" + }, + "appliesTo" : [ ] + }, + "RKUUP7AYRVCXF3ZJ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "RKUUP7AYRVCXF3ZJ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "U7RB8YXJ8WGXHNK3" : { + "U7RB8YXJ8WGXHNK3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "U7RB8YXJ8WGXHNK3", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "U7RB8YXJ8WGXHNK3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "U7RB8YXJ8WGXHNK3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "U7RB8YXJ8WGXHNK3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "U7RB8YXJ8WGXHNK3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5573" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "U7RB8YXJ8WGXHNK3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "U7RB8YXJ8WGXHNK3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "U7RB8YXJ8WGXHNK3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "U7RB8YXJ8WGXHNK3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2374" + }, + "appliesTo" : [ ] + }, + "U7RB8YXJ8WGXHNK3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "U7RB8YXJ8WGXHNK3.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "U7RB8YXJ8WGXHNK3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "U7RB8YXJ8WGXHNK3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "U7RB8YXJ8WGXHNK3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "U7RB8YXJ8WGXHNK3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2610" + }, + "appliesTo" : [ ] + }, + "U7RB8YXJ8WGXHNK3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "U7RB8YXJ8WGXHNK3.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "U7RB8YXJ8WGXHNK3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "U7RB8YXJ8WGXHNK3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "U7RB8YXJ8WGXHNK3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "U7RB8YXJ8WGXHNK3.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "U7RB8YXJ8WGXHNK3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "U7RB8YXJ8WGXHNK3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "U7RB8YXJ8WGXHNK3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "U7RB8YXJ8WGXHNK3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1064" + }, + "appliesTo" : [ ] + }, + "U7RB8YXJ8WGXHNK3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "U7RB8YXJ8WGXHNK3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "HMNJVFAEBVXVF64D" : { + "HMNJVFAEBVXVF64D.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "HMNJVFAEBVXVF64D", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "HMNJVFAEBVXVF64D.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "HMNJVFAEBVXVF64D.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "717" + }, + "appliesTo" : [ ] + }, + "HMNJVFAEBVXVF64D.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "HMNJVFAEBVXVF64D.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HMNJVFAEBVXVF64D.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "HMNJVFAEBVXVF64D", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "HMNJVFAEBVXVF64D.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "HMNJVFAEBVXVF64D.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1936" + }, + "appliesTo" : [ ] + }, + "HMNJVFAEBVXVF64D.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "HMNJVFAEBVXVF64D.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HMNJVFAEBVXVF64D.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "HMNJVFAEBVXVF64D", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "HMNJVFAEBVXVF64D.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "HMNJVFAEBVXVF64D.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1160000000" + }, + "appliesTo" : [ ] + }, + "HMNJVFAEBVXVF64D.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "HMNJVFAEBVXVF64D.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1118" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HMNJVFAEBVXVF64D.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "HMNJVFAEBVXVF64D", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "HMNJVFAEBVXVF64D.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "HMNJVFAEBVXVF64D.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "HMNJVFAEBVXVF64D.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "HMNJVFAEBVXVF64D", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "HMNJVFAEBVXVF64D.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "HMNJVFAEBVXVF64D.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "HMNJVFAEBVXVF64D.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "HMNJVFAEBVXVF64D.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3902" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HMNJVFAEBVXVF64D.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "HMNJVFAEBVXVF64D", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "HMNJVFAEBVXVF64D.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "HMNJVFAEBVXVF64D.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1769" + }, + "appliesTo" : [ ] + }, + "HMNJVFAEBVXVF64D.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "HMNJVFAEBVXVF64D.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HMNJVFAEBVXVF64D.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "HMNJVFAEBVXVF64D", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "HMNJVFAEBVXVF64D.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "HMNJVFAEBVXVF64D.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "HMNJVFAEBVXVF64D.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "HMNJVFAEBVXVF64D", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HMNJVFAEBVXVF64D.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "HMNJVFAEBVXVF64D.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1400000000" + }, + "appliesTo" : [ ] + }, + "HMNJVFAEBVXVF64D.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "HMNJVFAEBVXVF64D.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "700" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HMNJVFAEBVXVF64D.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "HMNJVFAEBVXVF64D", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HMNJVFAEBVXVF64D.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "HMNJVFAEBVXVF64D.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "HMNJVFAEBVXVF64D.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "HMNJVFAEBVXVF64D", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HMNJVFAEBVXVF64D.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "HMNJVFAEBVXVF64D.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1898" + }, + "appliesTo" : [ ] + }, + "HMNJVFAEBVXVF64D.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "HMNJVFAEBVXVF64D.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "HMNJVFAEBVXVF64D.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "HMNJVFAEBVXVF64D", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "HMNJVFAEBVXVF64D.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "HMNJVFAEBVXVF64D.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4946" + }, + "appliesTo" : [ ] + }, + "HMNJVFAEBVXVF64D.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "HMNJVFAEBVXVF64D.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "BVA53SP54488TUC8" : { + "BVA53SP54488TUC8.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "BVA53SP54488TUC8", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "BVA53SP54488TUC8.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "BVA53SP54488TUC8.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1291" + }, + "appliesTo" : [ ] + }, + "BVA53SP54488TUC8.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "BVA53SP54488TUC8.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BVA53SP54488TUC8.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "BVA53SP54488TUC8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BVA53SP54488TUC8.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "BVA53SP54488TUC8.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "BVA53SP54488TUC8.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "BVA53SP54488TUC8.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2797" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BVA53SP54488TUC8.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "BVA53SP54488TUC8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "BVA53SP54488TUC8.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "BVA53SP54488TUC8.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BVA53SP54488TUC8.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "BVA53SP54488TUC8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "BVA53SP54488TUC8.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "BVA53SP54488TUC8.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7242" + }, + "appliesTo" : [ ] + }, + "BVA53SP54488TUC8.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "BVA53SP54488TUC8.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BVA53SP54488TUC8.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "BVA53SP54488TUC8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BVA53SP54488TUC8.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "BVA53SP54488TUC8.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1410" + }, + "appliesTo" : [ ] + }, + "BVA53SP54488TUC8.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "BVA53SP54488TUC8.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BVA53SP54488TUC8.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "BVA53SP54488TUC8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "BVA53SP54488TUC8.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "BVA53SP54488TUC8.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BVA53SP54488TUC8.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "BVA53SP54488TUC8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BVA53SP54488TUC8.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "BVA53SP54488TUC8.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BVA53SP54488TUC8.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "BVA53SP54488TUC8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "BVA53SP54488TUC8.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "BVA53SP54488TUC8.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3657" + }, + "appliesTo" : [ ] + }, + "BVA53SP54488TUC8.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "BVA53SP54488TUC8.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BVA53SP54488TUC8.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "BVA53SP54488TUC8", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "BVA53SP54488TUC8.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "BVA53SP54488TUC8.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3164" + }, + "appliesTo" : [ ] + }, + "BVA53SP54488TUC8.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "BVA53SP54488TUC8.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BVA53SP54488TUC8.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "BVA53SP54488TUC8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "BVA53SP54488TUC8.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "BVA53SP54488TUC8.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BVA53SP54488TUC8.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "BVA53SP54488TUC8", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "BVA53SP54488TUC8.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "BVA53SP54488TUC8.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2529" + }, + "appliesTo" : [ ] + }, + "BVA53SP54488TUC8.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "BVA53SP54488TUC8.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BVA53SP54488TUC8.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "BVA53SP54488TUC8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "BVA53SP54488TUC8.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "BVA53SP54488TUC8.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5939" + }, + "appliesTo" : [ ] + }, + "BVA53SP54488TUC8.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "BVA53SP54488TUC8.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "3XXEP5YX5DYFE8HD" : { + "3XXEP5YX5DYFE8HD.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "3XXEP5YX5DYFE8HD", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "3XXEP5YX5DYFE8HD.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "3XXEP5YX5DYFE8HD.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4042" + }, + "appliesTo" : [ ] + }, + "3XXEP5YX5DYFE8HD.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "3XXEP5YX5DYFE8HD.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3XXEP5YX5DYFE8HD.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "3XXEP5YX5DYFE8HD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3XXEP5YX5DYFE8HD.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "3XXEP5YX5DYFE8HD.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4583" + }, + "appliesTo" : [ ] + }, + "3XXEP5YX5DYFE8HD.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "3XXEP5YX5DYFE8HD.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3XXEP5YX5DYFE8HD.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "3XXEP5YX5DYFE8HD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3XXEP5YX5DYFE8HD.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "3XXEP5YX5DYFE8HD.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3XXEP5YX5DYFE8HD.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "3XXEP5YX5DYFE8HD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3XXEP5YX5DYFE8HD.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "3XXEP5YX5DYFE8HD.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "3XXEP5YX5DYFE8HD.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "3XXEP5YX5DYFE8HD.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3772" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3XXEP5YX5DYFE8HD.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "3XXEP5YX5DYFE8HD", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "3XXEP5YX5DYFE8HD.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "3XXEP5YX5DYFE8HD.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "3XXEP5YX5DYFE8HD.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "3XXEP5YX5DYFE8HD.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7631" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3XXEP5YX5DYFE8HD.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "3XXEP5YX5DYFE8HD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3XXEP5YX5DYFE8HD.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "3XXEP5YX5DYFE8HD.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3XXEP5YX5DYFE8HD.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "3XXEP5YX5DYFE8HD", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "3XXEP5YX5DYFE8HD.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "3XXEP5YX5DYFE8HD.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1953" + }, + "appliesTo" : [ ] + }, + "3XXEP5YX5DYFE8HD.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "3XXEP5YX5DYFE8HD.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3XXEP5YX5DYFE8HD.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "3XXEP5YX5DYFE8HD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3XXEP5YX5DYFE8HD.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "3XXEP5YX5DYFE8HD.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2480000000" + }, + "appliesTo" : [ ] + }, + "3XXEP5YX5DYFE8HD.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "3XXEP5YX5DYFE8HD.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2231" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3XXEP5YX5DYFE8HD.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "3XXEP5YX5DYFE8HD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3XXEP5YX5DYFE8HD.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "3XXEP5YX5DYFE8HD.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3XXEP5YX5DYFE8HD.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "3XXEP5YX5DYFE8HD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3XXEP5YX5DYFE8HD.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "3XXEP5YX5DYFE8HD.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "3XXEP5YX5DYFE8HD.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "3XXEP5YX5DYFE8HD.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4318" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3XXEP5YX5DYFE8HD.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "3XXEP5YX5DYFE8HD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3XXEP5YX5DYFE8HD.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "3XXEP5YX5DYFE8HD.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "3XXEP5YX5DYFE8HD.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "3XXEP5YX5DYFE8HD.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8987" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3XXEP5YX5DYFE8HD.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "3XXEP5YX5DYFE8HD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3XXEP5YX5DYFE8HD.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "3XXEP5YX5DYFE8HD.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "KWYNFA3ZNTZ3FWQA" : { + "KWYNFA3ZNTZ3FWQA.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "KWYNFA3ZNTZ3FWQA", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "KWYNFA3ZNTZ3FWQA.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "KWYNFA3ZNTZ3FWQA.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "KWYNFA3ZNTZ3FWQA.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "KWYNFA3ZNTZ3FWQA.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3689" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KWYNFA3ZNTZ3FWQA.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "KWYNFA3ZNTZ3FWQA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KWYNFA3ZNTZ3FWQA.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "KWYNFA3ZNTZ3FWQA.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4186" + }, + "appliesTo" : [ ] + }, + "KWYNFA3ZNTZ3FWQA.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "KWYNFA3ZNTZ3FWQA.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KWYNFA3ZNTZ3FWQA.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "KWYNFA3ZNTZ3FWQA", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "KWYNFA3ZNTZ3FWQA.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "KWYNFA3ZNTZ3FWQA.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2437" + }, + "appliesTo" : [ ] + }, + "KWYNFA3ZNTZ3FWQA.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "KWYNFA3ZNTZ3FWQA.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KWYNFA3ZNTZ3FWQA.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "KWYNFA3ZNTZ3FWQA", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "KWYNFA3ZNTZ3FWQA.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "KWYNFA3ZNTZ3FWQA.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KWYNFA3ZNTZ3FWQA.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "KWYNFA3ZNTZ3FWQA", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "KWYNFA3ZNTZ3FWQA.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "KWYNFA3ZNTZ3FWQA.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1210000000" + }, + "appliesTo" : [ ] + }, + "KWYNFA3ZNTZ3FWQA.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "KWYNFA3ZNTZ3FWQA.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4670" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KWYNFA3ZNTZ3FWQA.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "KWYNFA3ZNTZ3FWQA", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "KWYNFA3ZNTZ3FWQA.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "KWYNFA3ZNTZ3FWQA.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9871" + }, + "appliesTo" : [ ] + }, + "KWYNFA3ZNTZ3FWQA.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "KWYNFA3ZNTZ3FWQA.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KWYNFA3ZNTZ3FWQA.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "KWYNFA3ZNTZ3FWQA", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "KWYNFA3ZNTZ3FWQA.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "KWYNFA3ZNTZ3FWQA.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KWYNFA3ZNTZ3FWQA.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "KWYNFA3ZNTZ3FWQA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KWYNFA3ZNTZ3FWQA.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "KWYNFA3ZNTZ3FWQA.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2400000000" + }, + "appliesTo" : [ ] + }, + "KWYNFA3ZNTZ3FWQA.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "KWYNFA3ZNTZ3FWQA.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2164" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KWYNFA3ZNTZ3FWQA.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "KWYNFA3ZNTZ3FWQA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KWYNFA3ZNTZ3FWQA.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "KWYNFA3ZNTZ3FWQA.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KWYNFA3ZNTZ3FWQA.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "KWYNFA3ZNTZ3FWQA", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "KWYNFA3ZNTZ3FWQA.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "KWYNFA3ZNTZ3FWQA.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "KWYNFA3ZNTZ3FWQA.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "KWYNFA3ZNTZ3FWQA.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7437" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KWYNFA3ZNTZ3FWQA.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "KWYNFA3ZNTZ3FWQA", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "KWYNFA3ZNTZ3FWQA.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "KWYNFA3ZNTZ3FWQA.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6457" + }, + "appliesTo" : [ ] + }, + "KWYNFA3ZNTZ3FWQA.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "KWYNFA3ZNTZ3FWQA.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "QHEP8CAE9HJS33WN" : { + "QHEP8CAE9HJS33WN.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "QHEP8CAE9HJS33WN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QHEP8CAE9HJS33WN.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "QHEP8CAE9HJS33WN.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QHEP8CAE9HJS33WN.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QHEP8CAE9HJS33WN", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "QHEP8CAE9HJS33WN.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QHEP8CAE9HJS33WN.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QHEP8CAE9HJS33WN.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "QHEP8CAE9HJS33WN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QHEP8CAE9HJS33WN.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "QHEP8CAE9HJS33WN.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2421" + }, + "appliesTo" : [ ] + }, + "QHEP8CAE9HJS33WN.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "QHEP8CAE9HJS33WN.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QHEP8CAE9HJS33WN.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QHEP8CAE9HJS33WN", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QHEP8CAE9HJS33WN.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QHEP8CAE9HJS33WN.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1690000000" + }, + "appliesTo" : [ ] + }, + "QHEP8CAE9HJS33WN.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QHEP8CAE9HJS33WN.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2730" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QHEP8CAE9HJS33WN.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "QHEP8CAE9HJS33WN", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "QHEP8CAE9HJS33WN.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "QHEP8CAE9HJS33WN.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QHEP8CAE9HJS33WN.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "QHEP8CAE9HJS33WN.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11018" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QHEP8CAE9HJS33WN.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "QHEP8CAE9HJS33WN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QHEP8CAE9HJS33WN.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "QHEP8CAE9HJS33WN.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4690" + }, + "appliesTo" : [ ] + }, + "QHEP8CAE9HJS33WN.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "QHEP8CAE9HJS33WN.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QHEP8CAE9HJS33WN.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "QHEP8CAE9HJS33WN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QHEP8CAE9HJS33WN.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "QHEP8CAE9HJS33WN.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QHEP8CAE9HJS33WN.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QHEP8CAE9HJS33WN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QHEP8CAE9HJS33WN.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QHEP8CAE9HJS33WN.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7325" + }, + "appliesTo" : [ ] + }, + "QHEP8CAE9HJS33WN.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QHEP8CAE9HJS33WN.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QHEP8CAE9HJS33WN.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "QHEP8CAE9HJS33WN", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "QHEP8CAE9HJS33WN.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "QHEP8CAE9HJS33WN.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7237" + }, + "appliesTo" : [ ] + }, + "QHEP8CAE9HJS33WN.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "QHEP8CAE9HJS33WN.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QHEP8CAE9HJS33WN.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QHEP8CAE9HJS33WN", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QHEP8CAE9HJS33WN.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QHEP8CAE9HJS33WN.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8841" + }, + "appliesTo" : [ ] + }, + "QHEP8CAE9HJS33WN.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QHEP8CAE9HJS33WN.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QHEP8CAE9HJS33WN.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QHEP8CAE9HJS33WN", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "QHEP8CAE9HJS33WN.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QHEP8CAE9HJS33WN.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QHEP8CAE9HJS33WN.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QHEP8CAE9HJS33WN.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4129" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "SQ7KCWAADJKDQN9W" : { + "SQ7KCWAADJKDQN9W.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "SQ7KCWAADJKDQN9W", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SQ7KCWAADJKDQN9W.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "SQ7KCWAADJKDQN9W.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9090000000" + }, + "appliesTo" : [ ] + }, + "SQ7KCWAADJKDQN9W.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "SQ7KCWAADJKDQN9W.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23890" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SQ7KCWAADJKDQN9W.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "SQ7KCWAADJKDQN9W", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SQ7KCWAADJKDQN9W.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "SQ7KCWAADJKDQN9W.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8288000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SQ7KCWAADJKDQN9W.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SQ7KCWAADJKDQN9W", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "SQ7KCWAADJKDQN9W.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SQ7KCWAADJKDQN9W.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47151" + }, + "appliesTo" : [ ] + }, + "SQ7KCWAADJKDQN9W.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SQ7KCWAADJKDQN9W.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SQ7KCWAADJKDQN9W.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "SQ7KCWAADJKDQN9W", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SQ7KCWAADJKDQN9W.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "SQ7KCWAADJKDQN9W.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8099000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SQ7KCWAADJKDQN9W.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "SQ7KCWAADJKDQN9W", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SQ7KCWAADJKDQN9W.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "SQ7KCWAADJKDQN9W.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SQ7KCWAADJKDQN9W.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "SQ7KCWAADJKDQN9W.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16489" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SQ7KCWAADJKDQN9W.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SQ7KCWAADJKDQN9W", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SQ7KCWAADJKDQN9W.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SQ7KCWAADJKDQN9W.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23668" + }, + "appliesTo" : [ ] + }, + "SQ7KCWAADJKDQN9W.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SQ7KCWAADJKDQN9W.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SQ7KCWAADJKDQN9W.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SQ7KCWAADJKDQN9W", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "SQ7KCWAADJKDQN9W.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SQ7KCWAADJKDQN9W.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16261" + }, + "appliesTo" : [ ] + }, + "SQ7KCWAADJKDQN9W.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SQ7KCWAADJKDQN9W.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SQ7KCWAADJKDQN9W.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "SQ7KCWAADJKDQN9W", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SQ7KCWAADJKDQN9W.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "SQ7KCWAADJKDQN9W.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8965000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SQ7KCWAADJKDQN9W.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SQ7KCWAADJKDQN9W", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SQ7KCWAADJKDQN9W.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SQ7KCWAADJKDQN9W.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8688000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SQ7KCWAADJKDQN9W.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SQ7KCWAADJKDQN9W", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "SQ7KCWAADJKDQN9W.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SQ7KCWAADJKDQN9W.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8146" + }, + "appliesTo" : [ ] + }, + "SQ7KCWAADJKDQN9W.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SQ7KCWAADJKDQN9W.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SQ7KCWAADJKDQN9W.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "SQ7KCWAADJKDQN9W", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SQ7KCWAADJKDQN9W.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "SQ7KCWAADJKDQN9W.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8262" + }, + "appliesTo" : [ ] + }, + "SQ7KCWAADJKDQN9W.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "SQ7KCWAADJKDQN9W.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9432000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SQ7KCWAADJKDQN9W.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "SQ7KCWAADJKDQN9W", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SQ7KCWAADJKDQN9W.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "SQ7KCWAADJKDQN9W.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47709" + }, + "appliesTo" : [ ] + }, + "SQ7KCWAADJKDQN9W.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "SQ7KCWAADJKDQN9W.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "YUPSNN9JFU6UZYAS" : { + "YUPSNN9JFU6UZYAS.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "YUPSNN9JFU6UZYAS", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YUPSNN9JFU6UZYAS.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "YUPSNN9JFU6UZYAS.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YUPSNN9JFU6UZYAS.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "YUPSNN9JFU6UZYAS", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YUPSNN9JFU6UZYAS.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "YUPSNN9JFU6UZYAS.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2500" + }, + "appliesTo" : [ ] + }, + "YUPSNN9JFU6UZYAS.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "YUPSNN9JFU6UZYAS.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YUPSNN9JFU6UZYAS.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YUPSNN9JFU6UZYAS", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YUPSNN9JFU6UZYAS.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YUPSNN9JFU6UZYAS.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YUPSNN9JFU6UZYAS.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YUPSNN9JFU6UZYAS.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3020" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YUPSNN9JFU6UZYAS.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "YUPSNN9JFU6UZYAS", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YUPSNN9JFU6UZYAS.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "YUPSNN9JFU6UZYAS.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4242" + }, + "appliesTo" : [ ] + }, + "YUPSNN9JFU6UZYAS.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "YUPSNN9JFU6UZYAS.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YUPSNN9JFU6UZYAS.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YUPSNN9JFU6UZYAS", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YUPSNN9JFU6UZYAS.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YUPSNN9JFU6UZYAS.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0660000000" + }, + "appliesTo" : [ ] + }, + "YUPSNN9JFU6UZYAS.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YUPSNN9JFU6UZYAS.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1480" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YUPSNN9JFU6UZYAS.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "YUPSNN9JFU6UZYAS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YUPSNN9JFU6UZYAS.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "YUPSNN9JFU6UZYAS.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1785" + }, + "appliesTo" : [ ] + }, + "YUPSNN9JFU6UZYAS.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "YUPSNN9JFU6UZYAS.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YUPSNN9JFU6UZYAS.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YUPSNN9JFU6UZYAS", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "YUPSNN9JFU6UZYAS.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YUPSNN9JFU6UZYAS.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1571" + }, + "appliesTo" : [ ] + }, + "YUPSNN9JFU6UZYAS.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YUPSNN9JFU6UZYAS.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YUPSNN9JFU6UZYAS.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YUPSNN9JFU6UZYAS", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "YUPSNN9JFU6UZYAS.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YUPSNN9JFU6UZYAS.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "926" + }, + "appliesTo" : [ ] + }, + "YUPSNN9JFU6UZYAS.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YUPSNN9JFU6UZYAS.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YUPSNN9JFU6UZYAS.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YUPSNN9JFU6UZYAS", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "YUPSNN9JFU6UZYAS.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YUPSNN9JFU6UZYAS.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YUPSNN9JFU6UZYAS.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "YUPSNN9JFU6UZYAS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YUPSNN9JFU6UZYAS.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "YUPSNN9JFU6UZYAS.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1040000000" + }, + "appliesTo" : [ ] + }, + "YUPSNN9JFU6UZYAS.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "YUPSNN9JFU6UZYAS.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "911" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YUPSNN9JFU6UZYAS.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "YUPSNN9JFU6UZYAS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YUPSNN9JFU6UZYAS.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "YUPSNN9JFU6UZYAS.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "XU7GMTDRK2VMN7K9" : { + "XU7GMTDRK2VMN7K9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XU7GMTDRK2VMN7K9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XU7GMTDRK2VMN7K9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XU7GMTDRK2VMN7K9.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XU7GMTDRK2VMN7K9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XU7GMTDRK2VMN7K9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XU7GMTDRK2VMN7K9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XU7GMTDRK2VMN7K9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7396" + }, + "appliesTo" : [ ] + }, + "XU7GMTDRK2VMN7K9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XU7GMTDRK2VMN7K9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XU7GMTDRK2VMN7K9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XU7GMTDRK2VMN7K9", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "XU7GMTDRK2VMN7K9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XU7GMTDRK2VMN7K9.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "XU7GMTDRK2VMN7K9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XU7GMTDRK2VMN7K9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12673" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XU7GMTDRK2VMN7K9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XU7GMTDRK2VMN7K9", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "XU7GMTDRK2VMN7K9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XU7GMTDRK2VMN7K9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "XU7GMTDRK2VMN7K9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XU7GMTDRK2VMN7K9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22959" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XU7GMTDRK2VMN7K9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XU7GMTDRK2VMN7K9", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "XU7GMTDRK2VMN7K9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XU7GMTDRK2VMN7K9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11232" + }, + "appliesTo" : [ ] + }, + "XU7GMTDRK2VMN7K9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XU7GMTDRK2VMN7K9.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "XHTGRKAAUAXJEMXS" : { + "XHTGRKAAUAXJEMXS.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "XHTGRKAAUAXJEMXS", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "XHTGRKAAUAXJEMXS.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "XHTGRKAAUAXJEMXS.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XHTGRKAAUAXJEMXS.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "XHTGRKAAUAXJEMXS", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "XHTGRKAAUAXJEMXS.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "XHTGRKAAUAXJEMXS.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32530" + }, + "appliesTo" : [ ] + }, + "XHTGRKAAUAXJEMXS.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "XHTGRKAAUAXJEMXS.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XHTGRKAAUAXJEMXS.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XHTGRKAAUAXJEMXS", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "XHTGRKAAUAXJEMXS.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XHTGRKAAUAXJEMXS.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "XHTGRKAAUAXJEMXS.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XHTGRKAAUAXJEMXS.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "44770" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XHTGRKAAUAXJEMXS.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XHTGRKAAUAXJEMXS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XHTGRKAAUAXJEMXS.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XHTGRKAAUAXJEMXS.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12048" + }, + "appliesTo" : [ ] + }, + "XHTGRKAAUAXJEMXS.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XHTGRKAAUAXJEMXS.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XHTGRKAAUAXJEMXS.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XHTGRKAAUAXJEMXS", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XHTGRKAAUAXJEMXS.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XHTGRKAAUAXJEMXS.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XHTGRKAAUAXJEMXS.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "XHTGRKAAUAXJEMXS", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "XHTGRKAAUAXJEMXS.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "XHTGRKAAUAXJEMXS.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "67123" + }, + "appliesTo" : [ ] + }, + "XHTGRKAAUAXJEMXS.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "XHTGRKAAUAXJEMXS.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XHTGRKAAUAXJEMXS.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "XHTGRKAAUAXJEMXS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XHTGRKAAUAXJEMXS.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "XHTGRKAAUAXJEMXS.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28387" + }, + "appliesTo" : [ ] + }, + "XHTGRKAAUAXJEMXS.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "XHTGRKAAUAXJEMXS.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XHTGRKAAUAXJEMXS.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "XHTGRKAAUAXJEMXS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XHTGRKAAUAXJEMXS.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "XHTGRKAAUAXJEMXS.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7170000000" + }, + "appliesTo" : [ ] + }, + "XHTGRKAAUAXJEMXS.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "XHTGRKAAUAXJEMXS.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13902" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XHTGRKAAUAXJEMXS.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "XHTGRKAAUAXJEMXS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XHTGRKAAUAXJEMXS.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "XHTGRKAAUAXJEMXS.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XHTGRKAAUAXJEMXS.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XHTGRKAAUAXJEMXS", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "XHTGRKAAUAXJEMXS.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XHTGRKAAUAXJEMXS.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "XHTGRKAAUAXJEMXS.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XHTGRKAAUAXJEMXS.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24736" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XHTGRKAAUAXJEMXS.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XHTGRKAAUAXJEMXS", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "XHTGRKAAUAXJEMXS.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XHTGRKAAUAXJEMXS.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22136" + }, + "appliesTo" : [ ] + }, + "XHTGRKAAUAXJEMXS.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XHTGRKAAUAXJEMXS.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "XK8PATGXFTCH3726" : { + "XK8PATGXFTCH3726.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XK8PATGXFTCH3726", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "XK8PATGXFTCH3726.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XK8PATGXFTCH3726.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "61674" + }, + "appliesTo" : [ ] + }, + "XK8PATGXFTCH3726.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XK8PATGXFTCH3726.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XK8PATGXFTCH3726.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XK8PATGXFTCH3726", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "XK8PATGXFTCH3726.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XK8PATGXFTCH3726.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31464" + }, + "appliesTo" : [ ] + }, + "XK8PATGXFTCH3726.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XK8PATGXFTCH3726.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XK8PATGXFTCH3726.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "XK8PATGXFTCH3726", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XK8PATGXFTCH3726.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "XK8PATGXFTCH3726.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XK8PATGXFTCH3726.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "XK8PATGXFTCH3726", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XK8PATGXFTCH3726.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "XK8PATGXFTCH3726.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "63945" + }, + "appliesTo" : [ ] + }, + "XK8PATGXFTCH3726.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "XK8PATGXFTCH3726.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XK8PATGXFTCH3726.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "XK8PATGXFTCH3726", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XK8PATGXFTCH3726.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "XK8PATGXFTCH3726.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "XK8PATGXFTCH3726.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "XK8PATGXFTCH3726.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "182258" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XK8PATGXFTCH3726.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "XK8PATGXFTCH3726", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XK8PATGXFTCH3726.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "XK8PATGXFTCH3726.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XK8PATGXFTCH3726.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "XK8PATGXFTCH3726", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XK8PATGXFTCH3726.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "XK8PATGXFTCH3726.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32069" + }, + "appliesTo" : [ ] + }, + "XK8PATGXFTCH3726.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "XK8PATGXFTCH3726.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XK8PATGXFTCH3726.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XK8PATGXFTCH3726", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "XK8PATGXFTCH3726.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XK8PATGXFTCH3726.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "80154" + }, + "appliesTo" : [ ] + }, + "XK8PATGXFTCH3726.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XK8PATGXFTCH3726.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XK8PATGXFTCH3726.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XK8PATGXFTCH3726", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "XK8PATGXFTCH3726.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XK8PATGXFTCH3726.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.4070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XK8PATGXFTCH3726.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XK8PATGXFTCH3726", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "XK8PATGXFTCH3726.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XK8PATGXFTCH3726.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "150681" + }, + "appliesTo" : [ ] + }, + "XK8PATGXFTCH3726.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XK8PATGXFTCH3726.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XK8PATGXFTCH3726.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "XK8PATGXFTCH3726", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "XK8PATGXFTCH3726.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "XK8PATGXFTCH3726.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.2830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XK8PATGXFTCH3726.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "XK8PATGXFTCH3726", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "XK8PATGXFTCH3726.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "XK8PATGXFTCH3726.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "92975" + }, + "appliesTo" : [ ] + }, + "XK8PATGXFTCH3726.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "XK8PATGXFTCH3726.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "WHYQJ8ZPHXUK6SXM" : { + "WHYQJ8ZPHXUK6SXM.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "WHYQJ8ZPHXUK6SXM", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "WHYQJ8ZPHXUK6SXM.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "WHYQJ8ZPHXUK6SXM.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1794" + }, + "appliesTo" : [ ] + }, + "WHYQJ8ZPHXUK6SXM.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "WHYQJ8ZPHXUK6SXM.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WHYQJ8ZPHXUK6SXM.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "WHYQJ8ZPHXUK6SXM", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "WHYQJ8ZPHXUK6SXM.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "WHYQJ8ZPHXUK6SXM.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WHYQJ8ZPHXUK6SXM.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "WHYQJ8ZPHXUK6SXM", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "WHYQJ8ZPHXUK6SXM.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "WHYQJ8ZPHXUK6SXM.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3626" + }, + "appliesTo" : [ ] + }, + "WHYQJ8ZPHXUK6SXM.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "WHYQJ8ZPHXUK6SXM.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WHYQJ8ZPHXUK6SXM.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "WHYQJ8ZPHXUK6SXM", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "WHYQJ8ZPHXUK6SXM.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "WHYQJ8ZPHXUK6SXM.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "634" + }, + "appliesTo" : [ ] + }, + "WHYQJ8ZPHXUK6SXM.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "WHYQJ8ZPHXUK6SXM.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WHYQJ8ZPHXUK6SXM.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "WHYQJ8ZPHXUK6SXM", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "WHYQJ8ZPHXUK6SXM.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "WHYQJ8ZPHXUK6SXM.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "WHYQJ8ZPHXUK6SXM.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "WHYQJ8ZPHXUK6SXM", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "WHYQJ8ZPHXUK6SXM.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "WHYQJ8ZPHXUK6SXM.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4459" + }, + "appliesTo" : [ ] + }, + "WHYQJ8ZPHXUK6SXM.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "WHYQJ8ZPHXUK6SXM.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WHYQJ8ZPHXUK6SXM.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "WHYQJ8ZPHXUK6SXM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WHYQJ8ZPHXUK6SXM.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "WHYQJ8ZPHXUK6SXM.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2114" + }, + "appliesTo" : [ ] + }, + "WHYQJ8ZPHXUK6SXM.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "WHYQJ8ZPHXUK6SXM.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WHYQJ8ZPHXUK6SXM.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "WHYQJ8ZPHXUK6SXM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WHYQJ8ZPHXUK6SXM.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "WHYQJ8ZPHXUK6SXM.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1064" + }, + "appliesTo" : [ ] + }, + "WHYQJ8ZPHXUK6SXM.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "WHYQJ8ZPHXUK6SXM.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WHYQJ8ZPHXUK6SXM.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "WHYQJ8ZPHXUK6SXM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WHYQJ8ZPHXUK6SXM.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "WHYQJ8ZPHXUK6SXM.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WHYQJ8ZPHXUK6SXM.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "WHYQJ8ZPHXUK6SXM", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "WHYQJ8ZPHXUK6SXM.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "WHYQJ8ZPHXUK6SXM.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "WHYQJ8ZPHXUK6SXM.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "WHYQJ8ZPHXUK6SXM.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1546" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WHYQJ8ZPHXUK6SXM.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "WHYQJ8ZPHXUK6SXM", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "WHYQJ8ZPHXUK6SXM.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "WHYQJ8ZPHXUK6SXM.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1546" + }, + "appliesTo" : [ ] + }, + "WHYQJ8ZPHXUK6SXM.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "WHYQJ8ZPHXUK6SXM.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "K2UX3Q9DEX25YU7R" : { + "K2UX3Q9DEX25YU7R.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "K2UX3Q9DEX25YU7R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K2UX3Q9DEX25YU7R.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "K2UX3Q9DEX25YU7R.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7728000000" + }, + "appliesTo" : [ ] + }, + "K2UX3Q9DEX25YU7R.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "K2UX3Q9DEX25YU7R.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6770" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "K2UX3Q9DEX25YU7R.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "K2UX3Q9DEX25YU7R", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K2UX3Q9DEX25YU7R.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "K2UX3Q9DEX25YU7R.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4752000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "K2UX3Q9DEX25YU7R.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "K2UX3Q9DEX25YU7R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K2UX3Q9DEX25YU7R.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "K2UX3Q9DEX25YU7R.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5861000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "K2UX3Q9DEX25YU7R.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "K2UX3Q9DEX25YU7R", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K2UX3Q9DEX25YU7R.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "K2UX3Q9DEX25YU7R.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "K2UX3Q9DEX25YU7R.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "K2UX3Q9DEX25YU7R.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33156" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "K2UX3Q9DEX25YU7R.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "K2UX3Q9DEX25YU7R", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K2UX3Q9DEX25YU7R.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "K2UX3Q9DEX25YU7R.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2397000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "K2UX3Q9DEX25YU7R.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "K2UX3Q9DEX25YU7R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K2UX3Q9DEX25YU7R.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "K2UX3Q9DEX25YU7R.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "K2UX3Q9DEX25YU7R.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "K2UX3Q9DEX25YU7R.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13398" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "K2UX3Q9DEX25YU7R.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "K2UX3Q9DEX25YU7R", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "K2UX3Q9DEX25YU7R.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "K2UX3Q9DEX25YU7R.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6298" + }, + "appliesTo" : [ ] + }, + "K2UX3Q9DEX25YU7R.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "K2UX3Q9DEX25YU7R.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "K2UX3Q9DEX25YU7R.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "K2UX3Q9DEX25YU7R", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K2UX3Q9DEX25YU7R.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "K2UX3Q9DEX25YU7R.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12474" + }, + "appliesTo" : [ ] + }, + "K2UX3Q9DEX25YU7R.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "K2UX3Q9DEX25YU7R.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "K2UX3Q9DEX25YU7R.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "K2UX3Q9DEX25YU7R", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K2UX3Q9DEX25YU7R.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "K2UX3Q9DEX25YU7R.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3153000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "K2UX3Q9DEX25YU7R.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "K2UX3Q9DEX25YU7R", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "K2UX3Q9DEX25YU7R.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "K2UX3Q9DEX25YU7R.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30903" + }, + "appliesTo" : [ ] + }, + "K2UX3Q9DEX25YU7R.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "K2UX3Q9DEX25YU7R.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "K2UX3Q9DEX25YU7R.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "K2UX3Q9DEX25YU7R", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "K2UX3Q9DEX25YU7R.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "K2UX3Q9DEX25YU7R.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15821" + }, + "appliesTo" : [ ] + }, + "K2UX3Q9DEX25YU7R.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "K2UX3Q9DEX25YU7R.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "K2UX3Q9DEX25YU7R.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "K2UX3Q9DEX25YU7R", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K2UX3Q9DEX25YU7R.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "K2UX3Q9DEX25YU7R.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16719" + }, + "appliesTo" : [ ] + }, + "K2UX3Q9DEX25YU7R.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "K2UX3Q9DEX25YU7R.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6362000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "2NBCH8MGXY3QQ5ZH" : { + "2NBCH8MGXY3QQ5ZH.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "2NBCH8MGXY3QQ5ZH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2NBCH8MGXY3QQ5ZH.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "2NBCH8MGXY3QQ5ZH.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2NBCH8MGXY3QQ5ZH.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "2NBCH8MGXY3QQ5ZH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2NBCH8MGXY3QQ5ZH.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "2NBCH8MGXY3QQ5ZH.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13688" + }, + "appliesTo" : [ ] + }, + "2NBCH8MGXY3QQ5ZH.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "2NBCH8MGXY3QQ5ZH.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2NBCH8MGXY3QQ5ZH.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "2NBCH8MGXY3QQ5ZH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2NBCH8MGXY3QQ5ZH.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "2NBCH8MGXY3QQ5ZH.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2NBCH8MGXY3QQ5ZH.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "2NBCH8MGXY3QQ5ZH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2NBCH8MGXY3QQ5ZH.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "2NBCH8MGXY3QQ5ZH.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2NBCH8MGXY3QQ5ZH.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "2NBCH8MGXY3QQ5ZH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2NBCH8MGXY3QQ5ZH.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "2NBCH8MGXY3QQ5ZH.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13420" + }, + "appliesTo" : [ ] + }, + "2NBCH8MGXY3QQ5ZH.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "2NBCH8MGXY3QQ5ZH.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2NBCH8MGXY3QQ5ZH.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "2NBCH8MGXY3QQ5ZH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2NBCH8MGXY3QQ5ZH.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "2NBCH8MGXY3QQ5ZH.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "77628" + }, + "appliesTo" : [ ] + }, + "2NBCH8MGXY3QQ5ZH.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "2NBCH8MGXY3QQ5ZH.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2NBCH8MGXY3QQ5ZH.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "2NBCH8MGXY3QQ5ZH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2NBCH8MGXY3QQ5ZH.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "2NBCH8MGXY3QQ5ZH.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27295" + }, + "appliesTo" : [ ] + }, + "2NBCH8MGXY3QQ5ZH.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "2NBCH8MGXY3QQ5ZH.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2NBCH8MGXY3QQ5ZH.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "2NBCH8MGXY3QQ5ZH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2NBCH8MGXY3QQ5ZH.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "2NBCH8MGXY3QQ5ZH.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2NBCH8MGXY3QQ5ZH.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "2NBCH8MGXY3QQ5ZH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2NBCH8MGXY3QQ5ZH.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "2NBCH8MGXY3QQ5ZH.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38367" + }, + "appliesTo" : [ ] + }, + "2NBCH8MGXY3QQ5ZH.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "2NBCH8MGXY3QQ5ZH.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2NBCH8MGXY3QQ5ZH.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "2NBCH8MGXY3QQ5ZH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2NBCH8MGXY3QQ5ZH.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "2NBCH8MGXY3QQ5ZH.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "2NBCH8MGXY3QQ5ZH.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "2NBCH8MGXY3QQ5ZH.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "76317" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2NBCH8MGXY3QQ5ZH.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "2NBCH8MGXY3QQ5ZH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2NBCH8MGXY3QQ5ZH.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "2NBCH8MGXY3QQ5ZH.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38894" + }, + "appliesTo" : [ ] + }, + "2NBCH8MGXY3QQ5ZH.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "2NBCH8MGXY3QQ5ZH.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2NBCH8MGXY3QQ5ZH.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "2NBCH8MGXY3QQ5ZH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2NBCH8MGXY3QQ5ZH.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "2NBCH8MGXY3QQ5ZH.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26769" + }, + "appliesTo" : [ ] + }, + "2NBCH8MGXY3QQ5ZH.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "2NBCH8MGXY3QQ5ZH.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "7DZ2ZNK9ZVM2D8RJ" : { + "7DZ2ZNK9ZVM2D8RJ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "7DZ2ZNK9ZVM2D8RJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7DZ2ZNK9ZVM2D8RJ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "7DZ2ZNK9ZVM2D8RJ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7106" + }, + "appliesTo" : [ ] + }, + "7DZ2ZNK9ZVM2D8RJ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "7DZ2ZNK9ZVM2D8RJ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7DZ2ZNK9ZVM2D8RJ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "7DZ2ZNK9ZVM2D8RJ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "7DZ2ZNK9ZVM2D8RJ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "7DZ2ZNK9ZVM2D8RJ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15067" + }, + "appliesTo" : [ ] + }, + "7DZ2ZNK9ZVM2D8RJ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "7DZ2ZNK9ZVM2D8RJ.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7DZ2ZNK9ZVM2D8RJ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "7DZ2ZNK9ZVM2D8RJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7DZ2ZNK9ZVM2D8RJ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "7DZ2ZNK9ZVM2D8RJ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7DZ2ZNK9ZVM2D8RJ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "7DZ2ZNK9ZVM2D8RJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7DZ2ZNK9ZVM2D8RJ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "7DZ2ZNK9ZVM2D8RJ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7DZ2ZNK9ZVM2D8RJ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "7DZ2ZNK9ZVM2D8RJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7DZ2ZNK9ZVM2D8RJ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "7DZ2ZNK9ZVM2D8RJ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "36588" + }, + "appliesTo" : [ ] + }, + "7DZ2ZNK9ZVM2D8RJ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "7DZ2ZNK9ZVM2D8RJ.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7DZ2ZNK9ZVM2D8RJ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "7DZ2ZNK9ZVM2D8RJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7DZ2ZNK9ZVM2D8RJ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "7DZ2ZNK9ZVM2D8RJ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17251" + }, + "appliesTo" : [ ] + }, + "7DZ2ZNK9ZVM2D8RJ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "7DZ2ZNK9ZVM2D8RJ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7DZ2ZNK9ZVM2D8RJ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "7DZ2ZNK9ZVM2D8RJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7DZ2ZNK9ZVM2D8RJ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "7DZ2ZNK9ZVM2D8RJ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7DZ2ZNK9ZVM2D8RJ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "7DZ2ZNK9ZVM2D8RJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7DZ2ZNK9ZVM2D8RJ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "7DZ2ZNK9ZVM2D8RJ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7DZ2ZNK9ZVM2D8RJ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "7DZ2ZNK9ZVM2D8RJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7DZ2ZNK9ZVM2D8RJ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "7DZ2ZNK9ZVM2D8RJ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8220" + }, + "appliesTo" : [ ] + }, + "7DZ2ZNK9ZVM2D8RJ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "7DZ2ZNK9ZVM2D8RJ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7DZ2ZNK9ZVM2D8RJ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "7DZ2ZNK9ZVM2D8RJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7DZ2ZNK9ZVM2D8RJ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "7DZ2ZNK9ZVM2D8RJ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7740000000" + }, + "appliesTo" : [ ] + }, + "7DZ2ZNK9ZVM2D8RJ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "7DZ2ZNK9ZVM2D8RJ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16924" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7DZ2ZNK9ZVM2D8RJ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "7DZ2ZNK9ZVM2D8RJ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "7DZ2ZNK9ZVM2D8RJ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "7DZ2ZNK9ZVM2D8RJ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31163" + }, + "appliesTo" : [ ] + }, + "7DZ2ZNK9ZVM2D8RJ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "7DZ2ZNK9ZVM2D8RJ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7DZ2ZNK9ZVM2D8RJ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "7DZ2ZNK9ZVM2D8RJ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "7DZ2ZNK9ZVM2D8RJ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "7DZ2ZNK9ZVM2D8RJ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14759" + }, + "appliesTo" : [ ] + }, + "7DZ2ZNK9ZVM2D8RJ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "7DZ2ZNK9ZVM2D8RJ.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "PHZYKS4DKKZQTHE2" : { + "PHZYKS4DKKZQTHE2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "PHZYKS4DKKZQTHE2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PHZYKS4DKKZQTHE2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "PHZYKS4DKKZQTHE2.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.4050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "PHZYKS4DKKZQTHE2.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "PHZYKS4DKKZQTHE2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PHZYKS4DKKZQTHE2.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "PHZYKS4DKKZQTHE2.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25930" + }, + "appliesTo" : [ ] + }, + "PHZYKS4DKKZQTHE2.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "PHZYKS4DKKZQTHE2.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PHZYKS4DKKZQTHE2.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "PHZYKS4DKKZQTHE2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PHZYKS4DKKZQTHE2.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "PHZYKS4DKKZQTHE2.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.2160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "PHZYKS4DKKZQTHE2.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "PHZYKS4DKKZQTHE2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PHZYKS4DKKZQTHE2.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "PHZYKS4DKKZQTHE2.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "PHZYKS4DKKZQTHE2.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "PHZYKS4DKKZQTHE2.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "50824" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PHZYKS4DKKZQTHE2.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "PHZYKS4DKKZQTHE2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PHZYKS4DKKZQTHE2.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "PHZYKS4DKKZQTHE2.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "110771" + }, + "appliesTo" : [ ] + }, + "PHZYKS4DKKZQTHE2.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "PHZYKS4DKKZQTHE2.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PHZYKS4DKKZQTHE2.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "PHZYKS4DKKZQTHE2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PHZYKS4DKKZQTHE2.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "PHZYKS4DKKZQTHE2.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.0390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "PHZYKS4DKKZQTHE2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "PHZYKS4DKKZQTHE2", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "PHZYKS4DKKZQTHE2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "PHZYKS4DKKZQTHE2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22548" + }, + "appliesTo" : [ ] + }, + "PHZYKS4DKKZQTHE2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "PHZYKS4DKKZQTHE2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PHZYKS4DKKZQTHE2.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "PHZYKS4DKKZQTHE2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PHZYKS4DKKZQTHE2.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "PHZYKS4DKKZQTHE2.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "56516" + }, + "appliesTo" : [ ] + }, + "PHZYKS4DKKZQTHE2.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "PHZYKS4DKKZQTHE2.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PHZYKS4DKKZQTHE2.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "PHZYKS4DKKZQTHE2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PHZYKS4DKKZQTHE2.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "PHZYKS4DKKZQTHE2.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.6450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "PHZYKS4DKKZQTHE2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "PHZYKS4DKKZQTHE2", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "PHZYKS4DKKZQTHE2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "PHZYKS4DKKZQTHE2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "49144" + }, + "appliesTo" : [ ] + }, + "PHZYKS4DKKZQTHE2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "PHZYKS4DKKZQTHE2.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PHZYKS4DKKZQTHE2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "PHZYKS4DKKZQTHE2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "PHZYKS4DKKZQTHE2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "PHZYKS4DKKZQTHE2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "92390" + }, + "appliesTo" : [ ] + }, + "PHZYKS4DKKZQTHE2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "PHZYKS4DKKZQTHE2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PHZYKS4DKKZQTHE2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "PHZYKS4DKKZQTHE2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "PHZYKS4DKKZQTHE2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "PHZYKS4DKKZQTHE2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "44195" + }, + "appliesTo" : [ ] + }, + "PHZYKS4DKKZQTHE2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "PHZYKS4DKKZQTHE2.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "ECM8RSBXMC7F4WAS" : { + "ECM8RSBXMC7F4WAS.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ECM8RSBXMC7F4WAS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ECM8RSBXMC7F4WAS.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ECM8RSBXMC7F4WAS.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2798000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ECM8RSBXMC7F4WAS.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ECM8RSBXMC7F4WAS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ECM8RSBXMC7F4WAS.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ECM8RSBXMC7F4WAS.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9510" + }, + "appliesTo" : [ ] + }, + "ECM8RSBXMC7F4WAS.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ECM8RSBXMC7F4WAS.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0856000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ECM8RSBXMC7F4WAS.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ECM8RSBXMC7F4WAS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ECM8RSBXMC7F4WAS.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ECM8RSBXMC7F4WAS.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8269" + }, + "appliesTo" : [ ] + }, + "ECM8RSBXMC7F4WAS.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ECM8RSBXMC7F4WAS.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ECM8RSBXMC7F4WAS.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ECM8RSBXMC7F4WAS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ECM8RSBXMC7F4WAS.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ECM8RSBXMC7F4WAS.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9824000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ECM8RSBXMC7F4WAS.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ECM8RSBXMC7F4WAS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ECM8RSBXMC7F4WAS.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ECM8RSBXMC7F4WAS.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18639" + }, + "appliesTo" : [ ] + }, + "ECM8RSBXMC7F4WAS.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ECM8RSBXMC7F4WAS.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ECM8RSBXMC7F4WAS.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ECM8RSBXMC7F4WAS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ECM8RSBXMC7F4WAS.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ECM8RSBXMC7F4WAS.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7360000000" + }, + "appliesTo" : [ ] + }, + "ECM8RSBXMC7F4WAS.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ECM8RSBXMC7F4WAS.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19342" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ECM8RSBXMC7F4WAS.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ECM8RSBXMC7F4WAS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ECM8RSBXMC7F4WAS.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ECM8RSBXMC7F4WAS.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5898000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ECM8RSBXMC7F4WAS.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ECM8RSBXMC7F4WAS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ECM8RSBXMC7F4WAS.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ECM8RSBXMC7F4WAS.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37910" + }, + "appliesTo" : [ ] + }, + "ECM8RSBXMC7F4WAS.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ECM8RSBXMC7F4WAS.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ECM8RSBXMC7F4WAS.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ECM8RSBXMC7F4WAS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ECM8RSBXMC7F4WAS.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ECM8RSBXMC7F4WAS.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31620" + }, + "appliesTo" : [ ] + }, + "ECM8RSBXMC7F4WAS.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ECM8RSBXMC7F4WAS.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ECM8RSBXMC7F4WAS.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "ECM8RSBXMC7F4WAS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ECM8RSBXMC7F4WAS.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "ECM8RSBXMC7F4WAS.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3824000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ECM8RSBXMC7F4WAS.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ECM8RSBXMC7F4WAS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ECM8RSBXMC7F4WAS.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ECM8RSBXMC7F4WAS.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16208" + }, + "appliesTo" : [ ] + }, + "ECM8RSBXMC7F4WAS.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ECM8RSBXMC7F4WAS.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ECM8RSBXMC7F4WAS.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ECM8RSBXMC7F4WAS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ECM8RSBXMC7F4WAS.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ECM8RSBXMC7F4WAS.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6400000000" + }, + "appliesTo" : [ ] + }, + "ECM8RSBXMC7F4WAS.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ECM8RSBXMC7F4WAS.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16819" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "6A5H8V2W7HVVXSB7" : { + "6A5H8V2W7HVVXSB7.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6A5H8V2W7HVVXSB7", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "6A5H8V2W7HVVXSB7.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6A5H8V2W7HVVXSB7.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "64816" + }, + "appliesTo" : [ ] + }, + "6A5H8V2W7HVVXSB7.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6A5H8V2W7HVVXSB7.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6A5H8V2W7HVVXSB7.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6A5H8V2W7HVVXSB7", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "6A5H8V2W7HVVXSB7.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6A5H8V2W7HVVXSB7.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "6A5H8V2W7HVVXSB7.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6A5H8V2W7HVVXSB7.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "68301" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6A5H8V2W7HVVXSB7.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6A5H8V2W7HVVXSB7", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "6A5H8V2W7HVVXSB7.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6A5H8V2W7HVVXSB7.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "121854" + }, + "appliesTo" : [ ] + }, + "6A5H8V2W7HVVXSB7.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6A5H8V2W7HVVXSB7.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6A5H8V2W7HVVXSB7.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6A5H8V2W7HVVXSB7", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "6A5H8V2W7HVVXSB7.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6A5H8V2W7HVVXSB7.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.3540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6A5H8V2W7HVVXSB7.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "6A5H8V2W7HVVXSB7", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "6A5H8V2W7HVVXSB7.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "6A5H8V2W7HVVXSB7.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.3270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6A5H8V2W7HVVXSB7.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6A5H8V2W7HVVXSB7", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "6A5H8V2W7HVVXSB7.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6A5H8V2W7HVVXSB7.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9780000000" + }, + "appliesTo" : [ ] + }, + "6A5H8V2W7HVVXSB7.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6A5H8V2W7HVVXSB7.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34847" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "9HUMJZVBNYX2RZS7" : { + "9HUMJZVBNYX2RZS7.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "9HUMJZVBNYX2RZS7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9HUMJZVBNYX2RZS7.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "9HUMJZVBNYX2RZS7.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9HUMJZVBNYX2RZS7.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "9HUMJZVBNYX2RZS7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9HUMJZVBNYX2RZS7.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "9HUMJZVBNYX2RZS7.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9244" + }, + "appliesTo" : [ ] + }, + "9HUMJZVBNYX2RZS7.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "9HUMJZVBNYX2RZS7.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9HUMJZVBNYX2RZS7.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "9HUMJZVBNYX2RZS7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9HUMJZVBNYX2RZS7.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "9HUMJZVBNYX2RZS7.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9HUMJZVBNYX2RZS7.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "9HUMJZVBNYX2RZS7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9HUMJZVBNYX2RZS7.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "9HUMJZVBNYX2RZS7.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13491" + }, + "appliesTo" : [ ] + }, + "9HUMJZVBNYX2RZS7.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "9HUMJZVBNYX2RZS7.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9HUMJZVBNYX2RZS7.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "9HUMJZVBNYX2RZS7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9HUMJZVBNYX2RZS7.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "9HUMJZVBNYX2RZS7.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7176" + }, + "appliesTo" : [ ] + }, + "9HUMJZVBNYX2RZS7.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "9HUMJZVBNYX2RZS7.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9HUMJZVBNYX2RZS7.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "9HUMJZVBNYX2RZS7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9HUMJZVBNYX2RZS7.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "9HUMJZVBNYX2RZS7.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4717" + }, + "appliesTo" : [ ] + }, + "9HUMJZVBNYX2RZS7.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "9HUMJZVBNYX2RZS7.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "7GZHH8G9CD4XD8TM" : { + "7GZHH8G9CD4XD8TM.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "7GZHH8G9CD4XD8TM", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7GZHH8G9CD4XD8TM.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "7GZHH8G9CD4XD8TM.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2430000000" + }, + "appliesTo" : [ ] + }, + "7GZHH8G9CD4XD8TM.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "7GZHH8G9CD4XD8TM.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21772" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7GZHH8G9CD4XD8TM.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "7GZHH8G9CD4XD8TM", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7GZHH8G9CD4XD8TM.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "7GZHH8G9CD4XD8TM.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7GZHH8G9CD4XD8TM.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "7GZHH8G9CD4XD8TM", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7GZHH8G9CD4XD8TM.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "7GZHH8G9CD4XD8TM.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25407" + }, + "appliesTo" : [ ] + }, + "7GZHH8G9CD4XD8TM.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "7GZHH8G9CD4XD8TM.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7GZHH8G9CD4XD8TM.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "7GZHH8G9CD4XD8TM", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7GZHH8G9CD4XD8TM.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "7GZHH8G9CD4XD8TM.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "7GZHH8G9CD4XD8TM.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "7GZHH8G9CD4XD8TM.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "51172" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7GZHH8G9CD4XD8TM.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "7GZHH8G9CD4XD8TM", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7GZHH8G9CD4XD8TM.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "7GZHH8G9CD4XD8TM.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7GZHH8G9CD4XD8TM.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "7GZHH8G9CD4XD8TM", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7GZHH8G9CD4XD8TM.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "7GZHH8G9CD4XD8TM.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9197" + }, + "appliesTo" : [ ] + }, + "7GZHH8G9CD4XD8TM.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "7GZHH8G9CD4XD8TM.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7GZHH8G9CD4XD8TM.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "7GZHH8G9CD4XD8TM", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7GZHH8G9CD4XD8TM.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "7GZHH8G9CD4XD8TM.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22534" + }, + "appliesTo" : [ ] + }, + "7GZHH8G9CD4XD8TM.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "7GZHH8G9CD4XD8TM.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7GZHH8G9CD4XD8TM.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "7GZHH8G9CD4XD8TM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7GZHH8G9CD4XD8TM.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "7GZHH8G9CD4XD8TM.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24601" + }, + "appliesTo" : [ ] + }, + "7GZHH8G9CD4XD8TM.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "7GZHH8G9CD4XD8TM.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7GZHH8G9CD4XD8TM.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "7GZHH8G9CD4XD8TM", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7GZHH8G9CD4XD8TM.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "7GZHH8G9CD4XD8TM.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "63863" + }, + "appliesTo" : [ ] + }, + "7GZHH8G9CD4XD8TM.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "7GZHH8G9CD4XD8TM.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7GZHH8G9CD4XD8TM.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "7GZHH8G9CD4XD8TM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7GZHH8G9CD4XD8TM.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "7GZHH8G9CD4XD8TM.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7GZHH8G9CD4XD8TM.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "7GZHH8G9CD4XD8TM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7GZHH8G9CD4XD8TM.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "7GZHH8G9CD4XD8TM.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4210000000" + }, + "appliesTo" : [ ] + }, + "7GZHH8G9CD4XD8TM.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "7GZHH8G9CD4XD8TM.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12447" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "M3EYMWB8284E38CQ" : { + "M3EYMWB8284E38CQ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "M3EYMWB8284E38CQ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M3EYMWB8284E38CQ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "M3EYMWB8284E38CQ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "66107" + }, + "appliesTo" : [ ] + }, + "M3EYMWB8284E38CQ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "M3EYMWB8284E38CQ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "M3EYMWB8284E38CQ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "M3EYMWB8284E38CQ", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "M3EYMWB8284E38CQ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "M3EYMWB8284E38CQ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.3690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "M3EYMWB8284E38CQ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "M3EYMWB8284E38CQ", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "M3EYMWB8284E38CQ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "M3EYMWB8284E38CQ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "131931" + }, + "appliesTo" : [ ] + }, + "M3EYMWB8284E38CQ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "M3EYMWB8284E38CQ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "M3EYMWB8284E38CQ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "M3EYMWB8284E38CQ", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "M3EYMWB8284E38CQ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "M3EYMWB8284E38CQ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.1790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "M3EYMWB8284E38CQ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "M3EYMWB8284E38CQ", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "M3EYMWB8284E38CQ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "M3EYMWB8284E38CQ.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "M3EYMWB8284E38CQ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "M3EYMWB8284E38CQ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "391617" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "M3EYMWB8284E38CQ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "M3EYMWB8284E38CQ", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "M3EYMWB8284E38CQ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "M3EYMWB8284E38CQ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "383688" + }, + "appliesTo" : [ ] + }, + "M3EYMWB8284E38CQ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "M3EYMWB8284E38CQ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "M3EYMWB8284E38CQ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "M3EYMWB8284E38CQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M3EYMWB8284E38CQ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "M3EYMWB8284E38CQ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "134016" + }, + "appliesTo" : [ ] + }, + "M3EYMWB8284E38CQ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "M3EYMWB8284E38CQ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "M3EYMWB8284E38CQ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "M3EYMWB8284E38CQ", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "M3EYMWB8284E38CQ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "M3EYMWB8284E38CQ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4650000000" + }, + "appliesTo" : [ ] + }, + "M3EYMWB8284E38CQ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "M3EYMWB8284E38CQ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "196192" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "M3EYMWB8284E38CQ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "M3EYMWB8284E38CQ", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "M3EYMWB8284E38CQ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "M3EYMWB8284E38CQ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "192790" + }, + "appliesTo" : [ ] + }, + "M3EYMWB8284E38CQ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "M3EYMWB8284E38CQ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "M3EYMWB8284E38CQ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "M3EYMWB8284E38CQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M3EYMWB8284E38CQ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "M3EYMWB8284E38CQ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.4290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "M3EYMWB8284E38CQ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "M3EYMWB8284E38CQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M3EYMWB8284E38CQ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "M3EYMWB8284E38CQ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "67171" + }, + "appliesTo" : [ ] + }, + "M3EYMWB8284E38CQ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "M3EYMWB8284E38CQ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.6680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "9HPUN6CF83QX5EC3" : { + "9HPUN6CF83QX5EC3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "9HPUN6CF83QX5EC3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9HPUN6CF83QX5EC3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "9HPUN6CF83QX5EC3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2708" + }, + "appliesTo" : [ ] + }, + "9HPUN6CF83QX5EC3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "9HPUN6CF83QX5EC3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9HPUN6CF83QX5EC3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "9HPUN6CF83QX5EC3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9HPUN6CF83QX5EC3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "9HPUN6CF83QX5EC3.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9HPUN6CF83QX5EC3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "9HPUN6CF83QX5EC3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9HPUN6CF83QX5EC3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "9HPUN6CF83QX5EC3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "9HPUN6CF83QX5EC3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "9HPUN6CF83QX5EC3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16463" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9HPUN6CF83QX5EC3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "9HPUN6CF83QX5EC3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9HPUN6CF83QX5EC3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "9HPUN6CF83QX5EC3.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "9HPUN6CF83QX5EC3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "9HPUN6CF83QX5EC3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6646" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9HPUN6CF83QX5EC3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "9HPUN6CF83QX5EC3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9HPUN6CF83QX5EC3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "9HPUN6CF83QX5EC3.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4000000000" + }, + "appliesTo" : [ ] + }, + "9HPUN6CF83QX5EC3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "9HPUN6CF83QX5EC3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7002" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "96GP335H4PPFX6P2" : { + "96GP335H4PPFX6P2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "96GP335H4PPFX6P2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "96GP335H4PPFX6P2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "96GP335H4PPFX6P2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11420" + }, + "appliesTo" : [ ] + }, + "96GP335H4PPFX6P2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "96GP335H4PPFX6P2.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "96GP335H4PPFX6P2.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "96GP335H4PPFX6P2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "96GP335H4PPFX6P2.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "96GP335H4PPFX6P2.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "96GP335H4PPFX6P2.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "96GP335H4PPFX6P2.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32533" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "96GP335H4PPFX6P2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "96GP335H4PPFX6P2", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "96GP335H4PPFX6P2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "96GP335H4PPFX6P2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "96GP335H4PPFX6P2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "96GP335H4PPFX6P2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21431" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "96GP335H4PPFX6P2.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "96GP335H4PPFX6P2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "96GP335H4PPFX6P2.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "96GP335H4PPFX6P2.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "96GP335H4PPFX6P2.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "96GP335H4PPFX6P2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "96GP335H4PPFX6P2.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "96GP335H4PPFX6P2.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8070000000" + }, + "appliesTo" : [ ] + }, + "96GP335H4PPFX6P2.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "96GP335H4PPFX6P2.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7127" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "96GP335H4PPFX6P2.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "96GP335H4PPFX6P2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "96GP335H4PPFX6P2.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "96GP335H4PPFX6P2.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "96GP335H4PPFX6P2.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "96GP335H4PPFX6P2", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "96GP335H4PPFX6P2.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "96GP335H4PPFX6P2.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16617" + }, + "appliesTo" : [ ] + }, + "96GP335H4PPFX6P2.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "96GP335H4PPFX6P2.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "96GP335H4PPFX6P2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "96GP335H4PPFX6P2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "96GP335H4PPFX6P2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "96GP335H4PPFX6P2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12094" + }, + "appliesTo" : [ ] + }, + "96GP335H4PPFX6P2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "96GP335H4PPFX6P2.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "96GP335H4PPFX6P2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "96GP335H4PPFX6P2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "96GP335H4PPFX6P2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "96GP335H4PPFX6P2.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "96GP335H4PPFX6P2.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "96GP335H4PPFX6P2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "96GP335H4PPFX6P2.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "96GP335H4PPFX6P2.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13914" + }, + "appliesTo" : [ ] + }, + "96GP335H4PPFX6P2.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "96GP335H4PPFX6P2.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "96GP335H4PPFX6P2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "96GP335H4PPFX6P2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "96GP335H4PPFX6P2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "96GP335H4PPFX6P2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6200" + }, + "appliesTo" : [ ] + }, + "96GP335H4PPFX6P2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "96GP335H4PPFX6P2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "N4AWRPYC2F4YT3WW" : { + "N4AWRPYC2F4YT3WW.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "N4AWRPYC2F4YT3WW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "N4AWRPYC2F4YT3WW.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "N4AWRPYC2F4YT3WW.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10880" + }, + "appliesTo" : [ ] + }, + "N4AWRPYC2F4YT3WW.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "N4AWRPYC2F4YT3WW.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "N4AWRPYC2F4YT3WW.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "N4AWRPYC2F4YT3WW", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "N4AWRPYC2F4YT3WW.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "N4AWRPYC2F4YT3WW.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25543" + }, + "appliesTo" : [ ] + }, + "N4AWRPYC2F4YT3WW.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "N4AWRPYC2F4YT3WW.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "N4AWRPYC2F4YT3WW.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "N4AWRPYC2F4YT3WW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "N4AWRPYC2F4YT3WW.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "N4AWRPYC2F4YT3WW.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7500000000" + }, + "appliesTo" : [ ] + }, + "N4AWRPYC2F4YT3WW.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "N4AWRPYC2F4YT3WW.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7220" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "N4AWRPYC2F4YT3WW.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "N4AWRPYC2F4YT3WW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "N4AWRPYC2F4YT3WW.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "N4AWRPYC2F4YT3WW.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13514" + }, + "appliesTo" : [ ] + }, + "N4AWRPYC2F4YT3WW.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "N4AWRPYC2F4YT3WW.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "N4AWRPYC2F4YT3WW.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "N4AWRPYC2F4YT3WW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "N4AWRPYC2F4YT3WW.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "N4AWRPYC2F4YT3WW.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "YP5VZWVE6N228WH8" : { + "YP5VZWVE6N228WH8.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YP5VZWVE6N228WH8", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "YP5VZWVE6N228WH8.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YP5VZWVE6N228WH8.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YP5VZWVE6N228WH8.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YP5VZWVE6N228WH8.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "253334" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YP5VZWVE6N228WH8.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YP5VZWVE6N228WH8", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "YP5VZWVE6N228WH8.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YP5VZWVE6N228WH8.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "127353" + }, + "appliesTo" : [ ] + }, + "YP5VZWVE6N228WH8.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YP5VZWVE6N228WH8.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.5380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YP5VZWVE6N228WH8.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YP5VZWVE6N228WH8", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "YP5VZWVE6N228WH8.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YP5VZWVE6N228WH8.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "29.4670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YP5VZWVE6N228WH8.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "YP5VZWVE6N228WH8", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "YP5VZWVE6N228WH8.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "YP5VZWVE6N228WH8.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "25.5360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YP5VZWVE6N228WH8.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YP5VZWVE6N228WH8", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "YP5VZWVE6N228WH8.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YP5VZWVE6N228WH8.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YP5VZWVE6N228WH8.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YP5VZWVE6N228WH8.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "656471" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YP5VZWVE6N228WH8.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "YP5VZWVE6N228WH8", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "YP5VZWVE6N228WH8.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "YP5VZWVE6N228WH8.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "26.1790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YP5VZWVE6N228WH8.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "YP5VZWVE6N228WH8", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "YP5VZWVE6N228WH8.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "YP5VZWVE6N228WH8.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "339189" + }, + "appliesTo" : [ ] + }, + "YP5VZWVE6N228WH8.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "YP5VZWVE6N228WH8.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.9070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YP5VZWVE6N228WH8.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "YP5VZWVE6N228WH8", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "YP5VZWVE6N228WH8.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "YP5VZWVE6N228WH8.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "675978" + }, + "appliesTo" : [ ] + }, + "YP5VZWVE6N228WH8.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "YP5VZWVE6N228WH8.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YP5VZWVE6N228WH8.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YP5VZWVE6N228WH8", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "YP5VZWVE6N228WH8.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YP5VZWVE6N228WH8.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "331365" + }, + "appliesTo" : [ ] + }, + "YP5VZWVE6N228WH8.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YP5VZWVE6N228WH8.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.6090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YP5VZWVE6N228WH8.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "YP5VZWVE6N228WH8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YP5VZWVE6N228WH8.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "YP5VZWVE6N228WH8.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "263414" + }, + "appliesTo" : [ ] + }, + "YP5VZWVE6N228WH8.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "YP5VZWVE6N228WH8.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YP5VZWVE6N228WH8.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "YP5VZWVE6N228WH8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YP5VZWVE6N228WH8.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "YP5VZWVE6N228WH8.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "132496" + }, + "appliesTo" : [ ] + }, + "YP5VZWVE6N228WH8.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "YP5VZWVE6N228WH8.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.1250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YP5VZWVE6N228WH8.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "YP5VZWVE6N228WH8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YP5VZWVE6N228WH8.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "YP5VZWVE6N228WH8.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "30.7000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "CNM382ND78XDQQAK" : { + "CNM382ND78XDQQAK.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "CNM382ND78XDQQAK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CNM382ND78XDQQAK.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "CNM382ND78XDQQAK.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14619" + }, + "appliesTo" : [ ] + }, + "CNM382ND78XDQQAK.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "CNM382ND78XDQQAK.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CNM382ND78XDQQAK.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "CNM382ND78XDQQAK", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "CNM382ND78XDQQAK.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "CNM382ND78XDQQAK.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CNM382ND78XDQQAK.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "CNM382ND78XDQQAK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CNM382ND78XDQQAK.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "CNM382ND78XDQQAK.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CNM382ND78XDQQAK.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "CNM382ND78XDQQAK", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "CNM382ND78XDQQAK.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "CNM382ND78XDQQAK.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "67314" + }, + "appliesTo" : [ ] + }, + "CNM382ND78XDQQAK.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "CNM382ND78XDQQAK.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CNM382ND78XDQQAK.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "CNM382ND78XDQQAK", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "CNM382ND78XDQQAK.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "CNM382ND78XDQQAK.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2420000000" + }, + "appliesTo" : [ ] + }, + "CNM382ND78XDQQAK.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "CNM382ND78XDQQAK.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14560" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CNM382ND78XDQQAK.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "CNM382ND78XDQQAK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CNM382ND78XDQQAK.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "CNM382ND78XDQQAK.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28654" + }, + "appliesTo" : [ ] + }, + "CNM382ND78XDQQAK.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "CNM382ND78XDQQAK.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CNM382ND78XDQQAK.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "CNM382ND78XDQQAK", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "CNM382ND78XDQQAK.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "CNM382ND78XDQQAK.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CNM382ND78XDQQAK.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "CNM382ND78XDQQAK", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "CNM382ND78XDQQAK.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "CNM382ND78XDQQAK.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21920" + }, + "appliesTo" : [ ] + }, + "CNM382ND78XDQQAK.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "CNM382ND78XDQQAK.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CNM382ND78XDQQAK.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "CNM382ND78XDQQAK", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "CNM382ND78XDQQAK.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "CNM382ND78XDQQAK.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "44418" + }, + "appliesTo" : [ ] + }, + "CNM382ND78XDQQAK.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "CNM382ND78XDQQAK.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CNM382ND78XDQQAK.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "CNM382ND78XDQQAK", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "CNM382ND78XDQQAK.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "CNM382ND78XDQQAK.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24931" + }, + "appliesTo" : [ ] + }, + "CNM382ND78XDQQAK.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "CNM382ND78XDQQAK.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CNM382ND78XDQQAK.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "CNM382ND78XDQQAK", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "CNM382ND78XDQQAK.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "CNM382ND78XDQQAK.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39312" + }, + "appliesTo" : [ ] + }, + "CNM382ND78XDQQAK.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "CNM382ND78XDQQAK.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "VV5A7BNXRSZQJ6MG" : { + "VV5A7BNXRSZQJ6MG.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "VV5A7BNXRSZQJ6MG", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "VV5A7BNXRSZQJ6MG.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "VV5A7BNXRSZQJ6MG.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "VV5A7BNXRSZQJ6MG.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "VV5A7BNXRSZQJ6MG.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1491" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VV5A7BNXRSZQJ6MG.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "VV5A7BNXRSZQJ6MG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VV5A7BNXRSZQJ6MG.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "VV5A7BNXRSZQJ6MG.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "806" + }, + "appliesTo" : [ ] + }, + "VV5A7BNXRSZQJ6MG.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "VV5A7BNXRSZQJ6MG.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VV5A7BNXRSZQJ6MG.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "VV5A7BNXRSZQJ6MG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VV5A7BNXRSZQJ6MG.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "VV5A7BNXRSZQJ6MG.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1886000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VV5A7BNXRSZQJ6MG.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "VV5A7BNXRSZQJ6MG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VV5A7BNXRSZQJ6MG.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "VV5A7BNXRSZQJ6MG.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2010" + }, + "appliesTo" : [ ] + }, + "VV5A7BNXRSZQJ6MG.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "VV5A7BNXRSZQJ6MG.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0765000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VV5A7BNXRSZQJ6MG.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "VV5A7BNXRSZQJ6MG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VV5A7BNXRSZQJ6MG.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "VV5A7BNXRSZQJ6MG.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3987" + }, + "appliesTo" : [ ] + }, + "VV5A7BNXRSZQJ6MG.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "VV5A7BNXRSZQJ6MG.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VV5A7BNXRSZQJ6MG.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "VV5A7BNXRSZQJ6MG", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "VV5A7BNXRSZQJ6MG.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "VV5A7BNXRSZQJ6MG.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1908" + }, + "appliesTo" : [ ] + }, + "VV5A7BNXRSZQJ6MG.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "VV5A7BNXRSZQJ6MG.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VV5A7BNXRSZQJ6MG.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "VV5A7BNXRSZQJ6MG", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "VV5A7BNXRSZQJ6MG.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "VV5A7BNXRSZQJ6MG.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3732" + }, + "appliesTo" : [ ] + }, + "VV5A7BNXRSZQJ6MG.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "VV5A7BNXRSZQJ6MG.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VV5A7BNXRSZQJ6MG.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "VV5A7BNXRSZQJ6MG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VV5A7BNXRSZQJ6MG.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "VV5A7BNXRSZQJ6MG.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1492000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VV5A7BNXRSZQJ6MG.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "VV5A7BNXRSZQJ6MG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VV5A7BNXRSZQJ6MG.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "VV5A7BNXRSZQJ6MG.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1578000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VV5A7BNXRSZQJ6MG.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "VV5A7BNXRSZQJ6MG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VV5A7BNXRSZQJ6MG.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "VV5A7BNXRSZQJ6MG.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1596" + }, + "appliesTo" : [ ] + }, + "VV5A7BNXRSZQJ6MG.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "VV5A7BNXRSZQJ6MG.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VV5A7BNXRSZQJ6MG.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "VV5A7BNXRSZQJ6MG", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "VV5A7BNXRSZQJ6MG.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "VV5A7BNXRSZQJ6MG.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0860000000" + }, + "appliesTo" : [ ] + }, + "VV5A7BNXRSZQJ6MG.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "VV5A7BNXRSZQJ6MG.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "752" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VV5A7BNXRSZQJ6MG.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "VV5A7BNXRSZQJ6MG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VV5A7BNXRSZQJ6MG.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "VV5A7BNXRSZQJ6MG.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "XERQGANK8Y3TXRRY" : { + "XERQGANK8Y3TXRRY.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XERQGANK8Y3TXRRY", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "XERQGANK8Y3TXRRY.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XERQGANK8Y3TXRRY.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "298" + }, + "appliesTo" : [ ] + }, + "XERQGANK8Y3TXRRY.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XERQGANK8Y3TXRRY.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0176000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XERQGANK8Y3TXRRY.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XERQGANK8Y3TXRRY", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "XERQGANK8Y3TXRRY.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XERQGANK8Y3TXRRY.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XERQGANK8Y3TXRRY.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "XERQGANK8Y3TXRRY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XERQGANK8Y3TXRRY.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "XERQGANK8Y3TXRRY.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "337" + }, + "appliesTo" : [ ] + }, + "XERQGANK8Y3TXRRY.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "XERQGANK8Y3TXRRY.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XERQGANK8Y3TXRRY.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "XERQGANK8Y3TXRRY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XERQGANK8Y3TXRRY.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "XERQGANK8Y3TXRRY.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0395000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XERQGANK8Y3TXRRY.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "XERQGANK8Y3TXRRY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XERQGANK8Y3TXRRY.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "XERQGANK8Y3TXRRY.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "157" + }, + "appliesTo" : [ ] + }, + "XERQGANK8Y3TXRRY.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "XERQGANK8Y3TXRRY.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0209000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XERQGANK8Y3TXRRY.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "XERQGANK8Y3TXRRY", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "XERQGANK8Y3TXRRY.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "XERQGANK8Y3TXRRY.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "XERQGANK8Y3TXRRY.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "XERQGANK8Y3TXRRY.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "793" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XERQGANK8Y3TXRRY.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "XERQGANK8Y3TXRRY", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "XERQGANK8Y3TXRRY.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "XERQGANK8Y3TXRRY.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XERQGANK8Y3TXRRY.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XERQGANK8Y3TXRRY", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "XERQGANK8Y3TXRRY.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XERQGANK8Y3TXRRY.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "148" + }, + "appliesTo" : [ ] + }, + "XERQGANK8Y3TXRRY.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XERQGANK8Y3TXRRY.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0198000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XERQGANK8Y3TXRRY.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "XERQGANK8Y3TXRRY", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "XERQGANK8Y3TXRRY.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "XERQGANK8Y3TXRRY.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0194000000" + }, + "appliesTo" : [ ] + }, + "XERQGANK8Y3TXRRY.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "XERQGANK8Y3TXRRY.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "257" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XERQGANK8Y3TXRRY.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "XERQGANK8Y3TXRRY", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "XERQGANK8Y3TXRRY.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "XERQGANK8Y3TXRRY.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XERQGANK8Y3TXRRY.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XERQGANK8Y3TXRRY", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "XERQGANK8Y3TXRRY.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XERQGANK8Y3TXRRY.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "320" + }, + "appliesTo" : [ ] + }, + "XERQGANK8Y3TXRRY.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XERQGANK8Y3TXRRY.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XERQGANK8Y3TXRRY.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XERQGANK8Y3TXRRY", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "XERQGANK8Y3TXRRY.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XERQGANK8Y3TXRRY.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "747" + }, + "appliesTo" : [ ] + }, + "XERQGANK8Y3TXRRY.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XERQGANK8Y3TXRRY.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "9SSB4RSRXFF8HK42" : { + "9SSB4RSRXFF8HK42.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "9SSB4RSRXFF8HK42", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9SSB4RSRXFF8HK42.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "9SSB4RSRXFF8HK42.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4616" + }, + "appliesTo" : [ ] + }, + "9SSB4RSRXFF8HK42.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "9SSB4RSRXFF8HK42.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9SSB4RSRXFF8HK42.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "9SSB4RSRXFF8HK42", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9SSB4RSRXFF8HK42.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "9SSB4RSRXFF8HK42.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2723" + }, + "appliesTo" : [ ] + }, + "9SSB4RSRXFF8HK42.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "9SSB4RSRXFF8HK42.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9SSB4RSRXFF8HK42.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "9SSB4RSRXFF8HK42", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9SSB4RSRXFF8HK42.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "9SSB4RSRXFF8HK42.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9SSB4RSRXFF8HK42.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "9SSB4RSRXFF8HK42", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "9SSB4RSRXFF8HK42.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "9SSB4RSRXFF8HK42.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7394" + }, + "appliesTo" : [ ] + }, + "9SSB4RSRXFF8HK42.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "9SSB4RSRXFF8HK42.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9SSB4RSRXFF8HK42.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "9SSB4RSRXFF8HK42", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9SSB4RSRXFF8HK42.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "9SSB4RSRXFF8HK42.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4415" + }, + "appliesTo" : [ ] + }, + "9SSB4RSRXFF8HK42.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "9SSB4RSRXFF8HK42.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9SSB4RSRXFF8HK42.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "9SSB4RSRXFF8HK42", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "9SSB4RSRXFF8HK42.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "9SSB4RSRXFF8HK42.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9SSB4RSRXFF8HK42.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "9SSB4RSRXFF8HK42", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9SSB4RSRXFF8HK42.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "9SSB4RSRXFF8HK42.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "9SSB4RSRXFF8HK42.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "9SSB4RSRXFF8HK42.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5282" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9SSB4RSRXFF8HK42.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "9SSB4RSRXFF8HK42", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9SSB4RSRXFF8HK42.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "9SSB4RSRXFF8HK42.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8868" + }, + "appliesTo" : [ ] + }, + "9SSB4RSRXFF8HK42.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "9SSB4RSRXFF8HK42.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9SSB4RSRXFF8HK42.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "9SSB4RSRXFF8HK42", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "9SSB4RSRXFF8HK42.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "9SSB4RSRXFF8HK42.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12348" + }, + "appliesTo" : [ ] + }, + "9SSB4RSRXFF8HK42.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "9SSB4RSRXFF8HK42.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9SSB4RSRXFF8HK42.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "9SSB4RSRXFF8HK42", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9SSB4RSRXFF8HK42.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "9SSB4RSRXFF8HK42.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2784" + }, + "appliesTo" : [ ] + }, + "9SSB4RSRXFF8HK42.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "9SSB4RSRXFF8HK42.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9SSB4RSRXFF8HK42.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "9SSB4RSRXFF8HK42", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9SSB4RSRXFF8HK42.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "9SSB4RSRXFF8HK42.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "9HGFJGGDXTRDQUED" : { + "9HGFJGGDXTRDQUED.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "9HGFJGGDXTRDQUED", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9HGFJGGDXTRDQUED.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "9HGFJGGDXTRDQUED.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6794" + }, + "appliesTo" : [ ] + }, + "9HGFJGGDXTRDQUED.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "9HGFJGGDXTRDQUED.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9HGFJGGDXTRDQUED.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "9HGFJGGDXTRDQUED", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9HGFJGGDXTRDQUED.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "9HGFJGGDXTRDQUED.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14758" + }, + "appliesTo" : [ ] + }, + "9HGFJGGDXTRDQUED.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "9HGFJGGDXTRDQUED.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9HGFJGGDXTRDQUED.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "9HGFJGGDXTRDQUED", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "9HGFJGGDXTRDQUED.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "9HGFJGGDXTRDQUED.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9HGFJGGDXTRDQUED.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "9HGFJGGDXTRDQUED", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "9HGFJGGDXTRDQUED.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "9HGFJGGDXTRDQUED.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6398" + }, + "appliesTo" : [ ] + }, + "9HGFJGGDXTRDQUED.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "9HGFJGGDXTRDQUED.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9HGFJGGDXTRDQUED.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "9HGFJGGDXTRDQUED", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9HGFJGGDXTRDQUED.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "9HGFJGGDXTRDQUED.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4195" + }, + "appliesTo" : [ ] + }, + "9HGFJGGDXTRDQUED.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "9HGFJGGDXTRDQUED.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9HGFJGGDXTRDQUED.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "9HGFJGGDXTRDQUED", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "9HGFJGGDXTRDQUED.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "9HGFJGGDXTRDQUED.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7164" + }, + "appliesTo" : [ ] + }, + "9HGFJGGDXTRDQUED.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "9HGFJGGDXTRDQUED.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9HGFJGGDXTRDQUED.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "9HGFJGGDXTRDQUED", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9HGFJGGDXTRDQUED.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "9HGFJGGDXTRDQUED.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9HGFJGGDXTRDQUED.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "9HGFJGGDXTRDQUED", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9HGFJGGDXTRDQUED.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "9HGFJGGDXTRDQUED.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3434" + }, + "appliesTo" : [ ] + }, + "9HGFJGGDXTRDQUED.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "9HGFJGGDXTRDQUED.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9HGFJGGDXTRDQUED.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "9HGFJGGDXTRDQUED", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "9HGFJGGDXTRDQUED.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "9HGFJGGDXTRDQUED.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18257" + }, + "appliesTo" : [ ] + }, + "9HGFJGGDXTRDQUED.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "9HGFJGGDXTRDQUED.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9HGFJGGDXTRDQUED.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "9HGFJGGDXTRDQUED", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "9HGFJGGDXTRDQUED.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "9HGFJGGDXTRDQUED.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2573" + }, + "appliesTo" : [ ] + }, + "9HGFJGGDXTRDQUED.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "9HGFJGGDXTRDQUED.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9HGFJGGDXTRDQUED.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "9HGFJGGDXTRDQUED", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "9HGFJGGDXTRDQUED.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "9HGFJGGDXTRDQUED.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "TTPFUQFE3Y5ZHJQU" : { + "TTPFUQFE3Y5ZHJQU.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "TTPFUQFE3Y5ZHJQU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TTPFUQFE3Y5ZHJQU.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "TTPFUQFE3Y5ZHJQU.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24952" + }, + "appliesTo" : [ ] + }, + "TTPFUQFE3Y5ZHJQU.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "TTPFUQFE3Y5ZHJQU.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TTPFUQFE3Y5ZHJQU.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "TTPFUQFE3Y5ZHJQU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TTPFUQFE3Y5ZHJQU.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "TTPFUQFE3Y5ZHJQU.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TTPFUQFE3Y5ZHJQU.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "TTPFUQFE3Y5ZHJQU.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "49604" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TTPFUQFE3Y5ZHJQU.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "TTPFUQFE3Y5ZHJQU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TTPFUQFE3Y5ZHJQU.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "TTPFUQFE3Y5ZHJQU.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TTPFUQFE3Y5ZHJQU.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TTPFUQFE3Y5ZHJQU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TTPFUQFE3Y5ZHJQU.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TTPFUQFE3Y5ZHJQU.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47164" + }, + "appliesTo" : [ ] + }, + "TTPFUQFE3Y5ZHJQU.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TTPFUQFE3Y5ZHJQU.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TTPFUQFE3Y5ZHJQU.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "TTPFUQFE3Y5ZHJQU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TTPFUQFE3Y5ZHJQU.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "TTPFUQFE3Y5ZHJQU.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TTPFUQFE3Y5ZHJQU.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TTPFUQFE3Y5ZHJQU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TTPFUQFE3Y5ZHJQU.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TTPFUQFE3Y5ZHJQU.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20037" + }, + "appliesTo" : [ ] + }, + "TTPFUQFE3Y5ZHJQU.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TTPFUQFE3Y5ZHJQU.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TTPFUQFE3Y5ZHJQU.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TTPFUQFE3Y5ZHJQU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TTPFUQFE3Y5ZHJQU.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TTPFUQFE3Y5ZHJQU.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23974" + }, + "appliesTo" : [ ] + }, + "TTPFUQFE3Y5ZHJQU.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TTPFUQFE3Y5ZHJQU.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TTPFUQFE3Y5ZHJQU.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "TTPFUQFE3Y5ZHJQU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TTPFUQFE3Y5ZHJQU.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "TTPFUQFE3Y5ZHJQU.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TTPFUQFE3Y5ZHJQU.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "TTPFUQFE3Y5ZHJQU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TTPFUQFE3Y5ZHJQU.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "TTPFUQFE3Y5ZHJQU.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2270000000" + }, + "appliesTo" : [ ] + }, + "TTPFUQFE3Y5ZHJQU.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "TTPFUQFE3Y5ZHJQU.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10748" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TTPFUQFE3Y5ZHJQU.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "TTPFUQFE3Y5ZHJQU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TTPFUQFE3Y5ZHJQU.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "TTPFUQFE3Y5ZHJQU.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21298" + }, + "appliesTo" : [ ] + }, + "TTPFUQFE3Y5ZHJQU.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "TTPFUQFE3Y5ZHJQU.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TTPFUQFE3Y5ZHJQU.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TTPFUQFE3Y5ZHJQU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TTPFUQFE3Y5ZHJQU.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TTPFUQFE3Y5ZHJQU.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10104" + }, + "appliesTo" : [ ] + }, + "TTPFUQFE3Y5ZHJQU.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TTPFUQFE3Y5ZHJQU.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TTPFUQFE3Y5ZHJQU.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TTPFUQFE3Y5ZHJQU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TTPFUQFE3Y5ZHJQU.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TTPFUQFE3Y5ZHJQU.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "84S2KXJ69JV6DQFX" : { + "84S2KXJ69JV6DQFX.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "84S2KXJ69JV6DQFX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "84S2KXJ69JV6DQFX.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "84S2KXJ69JV6DQFX.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1242000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "84S2KXJ69JV6DQFX.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "84S2KXJ69JV6DQFX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "84S2KXJ69JV6DQFX.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "84S2KXJ69JV6DQFX.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "84S2KXJ69JV6DQFX.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "84S2KXJ69JV6DQFX", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "84S2KXJ69JV6DQFX.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "84S2KXJ69JV6DQFX.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22212" + }, + "appliesTo" : [ ] + }, + "84S2KXJ69JV6DQFX.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "84S2KXJ69JV6DQFX.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "84S2KXJ69JV6DQFX.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "84S2KXJ69JV6DQFX", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "84S2KXJ69JV6DQFX.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "84S2KXJ69JV6DQFX.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22722" + }, + "appliesTo" : [ ] + }, + "84S2KXJ69JV6DQFX.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "84S2KXJ69JV6DQFX.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "84S2KXJ69JV6DQFX.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "84S2KXJ69JV6DQFX", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "84S2KXJ69JV6DQFX.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "84S2KXJ69JV6DQFX.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "42749" + }, + "appliesTo" : [ ] + }, + "84S2KXJ69JV6DQFX.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "84S2KXJ69JV6DQFX.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "84S2KXJ69JV6DQFX.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "84S2KXJ69JV6DQFX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "84S2KXJ69JV6DQFX.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "84S2KXJ69JV6DQFX.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1394000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "84S2KXJ69JV6DQFX.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "84S2KXJ69JV6DQFX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "84S2KXJ69JV6DQFX.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "84S2KXJ69JV6DQFX.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25563" + }, + "appliesTo" : [ ] + }, + "84S2KXJ69JV6DQFX.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "84S2KXJ69JV6DQFX.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "84S2KXJ69JV6DQFX.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "84S2KXJ69JV6DQFX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "84S2KXJ69JV6DQFX.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "84S2KXJ69JV6DQFX.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9882000000" + }, + "appliesTo" : [ ] + }, + "84S2KXJ69JV6DQFX.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "84S2KXJ69JV6DQFX.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25980" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "84S2KXJ69JV6DQFX.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "84S2KXJ69JV6DQFX", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "84S2KXJ69JV6DQFX.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "84S2KXJ69JV6DQFX.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11361" + }, + "appliesTo" : [ ] + }, + "84S2KXJ69JV6DQFX.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "84S2KXJ69JV6DQFX.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "84S2KXJ69JV6DQFX.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "84S2KXJ69JV6DQFX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "84S2KXJ69JV6DQFX.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "84S2KXJ69JV6DQFX.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "50925" + }, + "appliesTo" : [ ] + }, + "84S2KXJ69JV6DQFX.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "84S2KXJ69JV6DQFX.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "84S2KXJ69JV6DQFX.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "84S2KXJ69JV6DQFX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "84S2KXJ69JV6DQFX.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "84S2KXJ69JV6DQFX.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13071" + }, + "appliesTo" : [ ] + }, + "84S2KXJ69JV6DQFX.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "84S2KXJ69JV6DQFX.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "84S2KXJ69JV6DQFX.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "84S2KXJ69JV6DQFX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "84S2KXJ69JV6DQFX.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "84S2KXJ69JV6DQFX.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8647000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "D5JBSPHEHDXDUWJR" : { + "D5JBSPHEHDXDUWJR.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "D5JBSPHEHDXDUWJR", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "D5JBSPHEHDXDUWJR.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "D5JBSPHEHDXDUWJR.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8343" + }, + "appliesTo" : [ ] + }, + "D5JBSPHEHDXDUWJR.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "D5JBSPHEHDXDUWJR.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "D5JBSPHEHDXDUWJR.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "D5JBSPHEHDXDUWJR", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "D5JBSPHEHDXDUWJR.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "D5JBSPHEHDXDUWJR.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5551" + }, + "appliesTo" : [ ] + }, + "D5JBSPHEHDXDUWJR.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "D5JBSPHEHDXDUWJR.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "D5JBSPHEHDXDUWJR.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "D5JBSPHEHDXDUWJR", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "D5JBSPHEHDXDUWJR.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "D5JBSPHEHDXDUWJR.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0990000000" + }, + "appliesTo" : [ ] + }, + "D5JBSPHEHDXDUWJR.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "D5JBSPHEHDXDUWJR.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3925" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "D5JBSPHEHDXDUWJR.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "D5JBSPHEHDXDUWJR", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "D5JBSPHEHDXDUWJR.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "D5JBSPHEHDXDUWJR.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "D5JBSPHEHDXDUWJR.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "D5JBSPHEHDXDUWJR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "D5JBSPHEHDXDUWJR.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "D5JBSPHEHDXDUWJR.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "D5JBSPHEHDXDUWJR.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "D5JBSPHEHDXDUWJR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "D5JBSPHEHDXDUWJR.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "D5JBSPHEHDXDUWJR.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3542" + }, + "appliesTo" : [ ] + }, + "D5JBSPHEHDXDUWJR.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "D5JBSPHEHDXDUWJR.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "D5JBSPHEHDXDUWJR.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "D5JBSPHEHDXDUWJR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "D5JBSPHEHDXDUWJR.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "D5JBSPHEHDXDUWJR.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2060000000" + }, + "appliesTo" : [ ] + }, + "D5JBSPHEHDXDUWJR.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "D5JBSPHEHDXDUWJR.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1807" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "D5JBSPHEHDXDUWJR.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "D5JBSPHEHDXDUWJR", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "D5JBSPHEHDXDUWJR.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "D5JBSPHEHDXDUWJR.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "D5JBSPHEHDXDUWJR.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "D5JBSPHEHDXDUWJR.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3090" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "D5JBSPHEHDXDUWJR.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "D5JBSPHEHDXDUWJR", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "D5JBSPHEHDXDUWJR.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "D5JBSPHEHDXDUWJR.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2056" + }, + "appliesTo" : [ ] + }, + "D5JBSPHEHDXDUWJR.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "D5JBSPHEHDXDUWJR.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "D5JBSPHEHDXDUWJR.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "D5JBSPHEHDXDUWJR", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "D5JBSPHEHDXDUWJR.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "D5JBSPHEHDXDUWJR.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "D5JBSPHEHDXDUWJR.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "D5JBSPHEHDXDUWJR.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6130" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "D5JBSPHEHDXDUWJR.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "D5JBSPHEHDXDUWJR", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "D5JBSPHEHDXDUWJR.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "D5JBSPHEHDXDUWJR.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "Y2UXNGAEK992YZMH" : { + "Y2UXNGAEK992YZMH.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "Y2UXNGAEK992YZMH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Y2UXNGAEK992YZMH.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "Y2UXNGAEK992YZMH.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32305" + }, + "appliesTo" : [ ] + }, + "Y2UXNGAEK992YZMH.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "Y2UXNGAEK992YZMH.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y2UXNGAEK992YZMH.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Y2UXNGAEK992YZMH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "Y2UXNGAEK992YZMH.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Y2UXNGAEK992YZMH.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Y2UXNGAEK992YZMH.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "Y2UXNGAEK992YZMH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Y2UXNGAEK992YZMH.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "Y2UXNGAEK992YZMH.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Y2UXNGAEK992YZMH.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Y2UXNGAEK992YZMH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "Y2UXNGAEK992YZMH.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Y2UXNGAEK992YZMH.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "93347" + }, + "appliesTo" : [ ] + }, + "Y2UXNGAEK992YZMH.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Y2UXNGAEK992YZMH.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y2UXNGAEK992YZMH.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Y2UXNGAEK992YZMH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "Y2UXNGAEK992YZMH.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Y2UXNGAEK992YZMH.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "63792" + }, + "appliesTo" : [ ] + }, + "Y2UXNGAEK992YZMH.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Y2UXNGAEK992YZMH.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Y2UXNGAEK992YZMH.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Y2UXNGAEK992YZMH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "Y2UXNGAEK992YZMH.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Y2UXNGAEK992YZMH.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "186114" + }, + "appliesTo" : [ ] + }, + "Y2UXNGAEK992YZMH.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Y2UXNGAEK992YZMH.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Y2UXNGAEK992YZMH.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "Y2UXNGAEK992YZMH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "Y2UXNGAEK992YZMH.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "Y2UXNGAEK992YZMH.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "95102" + }, + "appliesTo" : [ ] + }, + "Y2UXNGAEK992YZMH.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "Y2UXNGAEK992YZMH.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y2UXNGAEK992YZMH.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "Y2UXNGAEK992YZMH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "Y2UXNGAEK992YZMH.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "Y2UXNGAEK992YZMH.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Y2UXNGAEK992YZMH.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "Y2UXNGAEK992YZMH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "Y2UXNGAEK992YZMH.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "Y2UXNGAEK992YZMH.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "189941" + }, + "appliesTo" : [ ] + }, + "Y2UXNGAEK992YZMH.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "Y2UXNGAEK992YZMH.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Y2UXNGAEK992YZMH.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Y2UXNGAEK992YZMH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "Y2UXNGAEK992YZMH.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Y2UXNGAEK992YZMH.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6470000000" + }, + "appliesTo" : [ ] + }, + "Y2UXNGAEK992YZMH.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Y2UXNGAEK992YZMH.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31945" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y2UXNGAEK992YZMH.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "Y2UXNGAEK992YZMH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Y2UXNGAEK992YZMH.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "Y2UXNGAEK992YZMH.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "64498" + }, + "appliesTo" : [ ] + }, + "Y2UXNGAEK992YZMH.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "Y2UXNGAEK992YZMH.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "WCAVWCRVUD56G7JJ" : { + "WCAVWCRVUD56G7JJ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "WCAVWCRVUD56G7JJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "WCAVWCRVUD56G7JJ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "WCAVWCRVUD56G7JJ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "WCAVWCRVUD56G7JJ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "WCAVWCRVUD56G7JJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "WCAVWCRVUD56G7JJ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "WCAVWCRVUD56G7JJ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "689" + }, + "appliesTo" : [ ] + }, + "WCAVWCRVUD56G7JJ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "WCAVWCRVUD56G7JJ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WCAVWCRVUD56G7JJ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "WCAVWCRVUD56G7JJ", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "WCAVWCRVUD56G7JJ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "WCAVWCRVUD56G7JJ.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "WCAVWCRVUD56G7JJ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "WCAVWCRVUD56G7JJ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3461" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WCAVWCRVUD56G7JJ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "WCAVWCRVUD56G7JJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "WCAVWCRVUD56G7JJ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "WCAVWCRVUD56G7JJ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2846" + }, + "appliesTo" : [ ] + }, + "WCAVWCRVUD56G7JJ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "WCAVWCRVUD56G7JJ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WCAVWCRVUD56G7JJ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "WCAVWCRVUD56G7JJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "WCAVWCRVUD56G7JJ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "WCAVWCRVUD56G7JJ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WCAVWCRVUD56G7JJ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "WCAVWCRVUD56G7JJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "WCAVWCRVUD56G7JJ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "WCAVWCRVUD56G7JJ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "WCAVWCRVUD56G7JJ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "WCAVWCRVUD56G7JJ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1208" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WCAVWCRVUD56G7JJ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "WCAVWCRVUD56G7JJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "WCAVWCRVUD56G7JJ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "WCAVWCRVUD56G7JJ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "435" + }, + "appliesTo" : [ ] + }, + "WCAVWCRVUD56G7JJ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "WCAVWCRVUD56G7JJ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WCAVWCRVUD56G7JJ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "WCAVWCRVUD56G7JJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WCAVWCRVUD56G7JJ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "WCAVWCRVUD56G7JJ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "WCAVWCRVUD56G7JJ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "WCAVWCRVUD56G7JJ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1430" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WCAVWCRVUD56G7JJ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "WCAVWCRVUD56G7JJ", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "WCAVWCRVUD56G7JJ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "WCAVWCRVUD56G7JJ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1207" + }, + "appliesTo" : [ ] + }, + "WCAVWCRVUD56G7JJ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "WCAVWCRVUD56G7JJ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WCAVWCRVUD56G7JJ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "WCAVWCRVUD56G7JJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WCAVWCRVUD56G7JJ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "WCAVWCRVUD56G7JJ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0820000000" + }, + "appliesTo" : [ ] + }, + "WCAVWCRVUD56G7JJ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "WCAVWCRVUD56G7JJ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "721" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WCAVWCRVUD56G7JJ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "WCAVWCRVUD56G7JJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WCAVWCRVUD56G7JJ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "WCAVWCRVUD56G7JJ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "EEJY25ZRYKB8MXQ7" : { + "EEJY25ZRYKB8MXQ7.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "EEJY25ZRYKB8MXQ7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EEJY25ZRYKB8MXQ7.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "EEJY25ZRYKB8MXQ7.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "EEJY25ZRYKB8MXQ7.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "EEJY25ZRYKB8MXQ7.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "58405" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "EEJY25ZRYKB8MXQ7.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "EEJY25ZRYKB8MXQ7", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "EEJY25ZRYKB8MXQ7.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "EEJY25ZRYKB8MXQ7.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "108395" + }, + "appliesTo" : [ ] + }, + "EEJY25ZRYKB8MXQ7.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "EEJY25ZRYKB8MXQ7.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "EEJY25ZRYKB8MXQ7.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "EEJY25ZRYKB8MXQ7", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "EEJY25ZRYKB8MXQ7.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "EEJY25ZRYKB8MXQ7.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "36954" + }, + "appliesTo" : [ ] + }, + "EEJY25ZRYKB8MXQ7.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "EEJY25ZRYKB8MXQ7.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EEJY25ZRYKB8MXQ7.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "EEJY25ZRYKB8MXQ7", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "EEJY25ZRYKB8MXQ7.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "EEJY25ZRYKB8MXQ7.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "163439" + }, + "appliesTo" : [ ] + }, + "EEJY25ZRYKB8MXQ7.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "EEJY25ZRYKB8MXQ7.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "EEJY25ZRYKB8MXQ7.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "EEJY25ZRYKB8MXQ7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EEJY25ZRYKB8MXQ7.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "EEJY25ZRYKB8MXQ7.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29347" + }, + "appliesTo" : [ ] + }, + "EEJY25ZRYKB8MXQ7.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "EEJY25ZRYKB8MXQ7.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "EEJY25ZRYKB8MXQ7.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "EEJY25ZRYKB8MXQ7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EEJY25ZRYKB8MXQ7.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "EEJY25ZRYKB8MXQ7.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.7830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "EEJY25ZRYKB8MXQ7.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "EEJY25ZRYKB8MXQ7", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "EEJY25ZRYKB8MXQ7.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "EEJY25ZRYKB8MXQ7.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "EEJY25ZRYKB8MXQ7.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "EEJY25ZRYKB8MXQ7", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "EEJY25ZRYKB8MXQ7.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "EEJY25ZRYKB8MXQ7.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "99377" + }, + "appliesTo" : [ ] + }, + "EEJY25ZRYKB8MXQ7.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "EEJY25ZRYKB8MXQ7.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EEJY25ZRYKB8MXQ7.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "EEJY25ZRYKB8MXQ7", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "EEJY25ZRYKB8MXQ7.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "EEJY25ZRYKB8MXQ7.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "EEJY25ZRYKB8MXQ7.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "EEJY25ZRYKB8MXQ7", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "EEJY25ZRYKB8MXQ7.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "EEJY25ZRYKB8MXQ7.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "EEJY25ZRYKB8MXQ7.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "EEJY25ZRYKB8MXQ7.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "55716" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EEJY25ZRYKB8MXQ7.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "EEJY25ZRYKB8MXQ7", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "EEJY25ZRYKB8MXQ7.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "EEJY25ZRYKB8MXQ7.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "143615" + }, + "appliesTo" : [ ] + }, + "EEJY25ZRYKB8MXQ7.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "EEJY25ZRYKB8MXQ7.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "DJEY5GTEWFQSU2H3" : { + "DJEY5GTEWFQSU2H3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "DJEY5GTEWFQSU2H3", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "DJEY5GTEWFQSU2H3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "DJEY5GTEWFQSU2H3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46884" + }, + "appliesTo" : [ ] + }, + "DJEY5GTEWFQSU2H3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "DJEY5GTEWFQSU2H3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DJEY5GTEWFQSU2H3.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "DJEY5GTEWFQSU2H3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DJEY5GTEWFQSU2H3.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "DJEY5GTEWFQSU2H3.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7985000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DJEY5GTEWFQSU2H3.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "DJEY5GTEWFQSU2H3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DJEY5GTEWFQSU2H3.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "DJEY5GTEWFQSU2H3.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47395" + }, + "appliesTo" : [ ] + }, + "DJEY5GTEWFQSU2H3.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "DJEY5GTEWFQSU2H3.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DJEY5GTEWFQSU2H3.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "DJEY5GTEWFQSU2H3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DJEY5GTEWFQSU2H3.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "DJEY5GTEWFQSU2H3.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8157000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DJEY5GTEWFQSU2H3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "DJEY5GTEWFQSU2H3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DJEY5GTEWFQSU2H3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "DJEY5GTEWFQSU2H3.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DJEY5GTEWFQSU2H3.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "DJEY5GTEWFQSU2H3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DJEY5GTEWFQSU2H3.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "DJEY5GTEWFQSU2H3.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16331" + }, + "appliesTo" : [ ] + }, + "DJEY5GTEWFQSU2H3.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "DJEY5GTEWFQSU2H3.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DJEY5GTEWFQSU2H3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "DJEY5GTEWFQSU2H3", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "DJEY5GTEWFQSU2H3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "DJEY5GTEWFQSU2H3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8075" + }, + "appliesTo" : [ ] + }, + "DJEY5GTEWFQSU2H3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "DJEY5GTEWFQSU2H3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DJEY5GTEWFQSU2H3.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "DJEY5GTEWFQSU2H3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DJEY5GTEWFQSU2H3.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "DJEY5GTEWFQSU2H3.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8772000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DJEY5GTEWFQSU2H3.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "DJEY5GTEWFQSU2H3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DJEY5GTEWFQSU2H3.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "DJEY5GTEWFQSU2H3.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8182" + }, + "appliesTo" : [ ] + }, + "DJEY5GTEWFQSU2H3.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "DJEY5GTEWFQSU2H3.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DJEY5GTEWFQSU2H3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "DJEY5GTEWFQSU2H3", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "DJEY5GTEWFQSU2H3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "DJEY5GTEWFQSU2H3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16122" + }, + "appliesTo" : [ ] + }, + "DJEY5GTEWFQSU2H3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "DJEY5GTEWFQSU2H3.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DJEY5GTEWFQSU2H3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "DJEY5GTEWFQSU2H3", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "DJEY5GTEWFQSU2H3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "DJEY5GTEWFQSU2H3.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8950000000" + }, + "appliesTo" : [ ] + }, + "DJEY5GTEWFQSU2H3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "DJEY5GTEWFQSU2H3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23526" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DJEY5GTEWFQSU2H3.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "DJEY5GTEWFQSU2H3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DJEY5GTEWFQSU2H3.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "DJEY5GTEWFQSU2H3.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23730" + }, + "appliesTo" : [ ] + }, + "DJEY5GTEWFQSU2H3.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "DJEY5GTEWFQSU2H3.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9029000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "R663DPH9T8Q89W88" : { + "R663DPH9T8Q89W88.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "R663DPH9T8Q89W88", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "R663DPH9T8Q89W88.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "R663DPH9T8Q89W88.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18244" + }, + "appliesTo" : [ ] + }, + "R663DPH9T8Q89W88.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "R663DPH9T8Q89W88.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "R663DPH9T8Q89W88.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "R663DPH9T8Q89W88", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R663DPH9T8Q89W88.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "R663DPH9T8Q89W88.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "R663DPH9T8Q89W88.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "R663DPH9T8Q89W88", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "R663DPH9T8Q89W88.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "R663DPH9T8Q89W88.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37473" + }, + "appliesTo" : [ ] + }, + "R663DPH9T8Q89W88.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "R663DPH9T8Q89W88.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "R663DPH9T8Q89W88.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "R663DPH9T8Q89W88", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "R663DPH9T8Q89W88.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "R663DPH9T8Q89W88.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12056" + }, + "appliesTo" : [ ] + }, + "R663DPH9T8Q89W88.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "R663DPH9T8Q89W88.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "R663DPH9T8Q89W88.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "R663DPH9T8Q89W88", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "R663DPH9T8Q89W88.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "R663DPH9T8Q89W88.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21622" + }, + "appliesTo" : [ ] + }, + "R663DPH9T8Q89W88.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "R663DPH9T8Q89W88.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "R663DPH9T8Q89W88.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "R663DPH9T8Q89W88", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "R663DPH9T8Q89W88.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "R663DPH9T8Q89W88.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "50619" + }, + "appliesTo" : [ ] + }, + "R663DPH9T8Q89W88.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "R663DPH9T8Q89W88.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "R663DPH9T8Q89W88.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "R663DPH9T8Q89W88", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R663DPH9T8Q89W88.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "R663DPH9T8Q89W88.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11264" + }, + "appliesTo" : [ ] + }, + "R663DPH9T8Q89W88.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "R663DPH9T8Q89W88.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "R663DPH9T8Q89W88.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "R663DPH9T8Q89W88", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "R663DPH9T8Q89W88.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "R663DPH9T8Q89W88.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "R663DPH9T8Q89W88.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "R663DPH9T8Q89W88", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R663DPH9T8Q89W88.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "R663DPH9T8Q89W88.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22207" + }, + "appliesTo" : [ ] + }, + "R663DPH9T8Q89W88.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "R663DPH9T8Q89W88.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "R663DPH9T8Q89W88.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "R663DPH9T8Q89W88", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "R663DPH9T8Q89W88.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "R663DPH9T8Q89W88.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "R663DPH9T8Q89W88.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "R663DPH9T8Q89W88", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "R663DPH9T8Q89W88.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "R663DPH9T8Q89W88.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8008" + }, + "appliesTo" : [ ] + }, + "R663DPH9T8Q89W88.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "R663DPH9T8Q89W88.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "QHXEDKXAPRFFF59N" : { + "QHXEDKXAPRFFF59N.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "QHXEDKXAPRFFF59N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QHXEDKXAPRFFF59N.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "QHXEDKXAPRFFF59N.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QHXEDKXAPRFFF59N.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "QHXEDKXAPRFFF59N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QHXEDKXAPRFFF59N.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "QHXEDKXAPRFFF59N.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3630" + }, + "appliesTo" : [ ] + }, + "QHXEDKXAPRFFF59N.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "QHXEDKXAPRFFF59N.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QHXEDKXAPRFFF59N.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QHXEDKXAPRFFF59N", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QHXEDKXAPRFFF59N.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QHXEDKXAPRFFF59N.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4360000000" + }, + "appliesTo" : [ ] + }, + "QHXEDKXAPRFFF59N.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QHXEDKXAPRFFF59N.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2536" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QHXEDKXAPRFFF59N.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "QHXEDKXAPRFFF59N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QHXEDKXAPRFFF59N.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "QHXEDKXAPRFFF59N.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7204" + }, + "appliesTo" : [ ] + }, + "QHXEDKXAPRFFF59N.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "QHXEDKXAPRFFF59N.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QHXEDKXAPRFFF59N.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QHXEDKXAPRFFF59N", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QHXEDKXAPRFFF59N.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QHXEDKXAPRFFF59N.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QHXEDKXAPRFFF59N.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QHXEDKXAPRFFF59N", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QHXEDKXAPRFFF59N.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QHXEDKXAPRFFF59N.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14532" + }, + "appliesTo" : [ ] + }, + "QHXEDKXAPRFFF59N.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QHXEDKXAPRFFF59N.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QHXEDKXAPRFFF59N.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "QHXEDKXAPRFFF59N", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "QHXEDKXAPRFFF59N.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "QHXEDKXAPRFFF59N.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7178" + }, + "appliesTo" : [ ] + }, + "QHXEDKXAPRFFF59N.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "QHXEDKXAPRFFF59N.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QHXEDKXAPRFFF59N.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "QHXEDKXAPRFFF59N", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "QHXEDKXAPRFFF59N.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "QHXEDKXAPRFFF59N.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QHXEDKXAPRFFF59N.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "QHXEDKXAPRFFF59N.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17953" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QHXEDKXAPRFFF59N.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "QHXEDKXAPRFFF59N", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "QHXEDKXAPRFFF59N.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "QHXEDKXAPRFFF59N.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QHXEDKXAPRFFF59N.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QHXEDKXAPRFFF59N", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QHXEDKXAPRFFF59N.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QHXEDKXAPRFFF59N.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QHXEDKXAPRFFF59N.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QHXEDKXAPRFFF59N.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6223" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QHXEDKXAPRFFF59N.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QHXEDKXAPRFFF59N", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QHXEDKXAPRFFF59N.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QHXEDKXAPRFFF59N.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6180" + }, + "appliesTo" : [ ] + }, + "QHXEDKXAPRFFF59N.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QHXEDKXAPRFFF59N.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "AQ4BJM4AR87GBQDX" : { + "AQ4BJM4AR87GBQDX.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "AQ4BJM4AR87GBQDX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AQ4BJM4AR87GBQDX.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "AQ4BJM4AR87GBQDX.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5641" + }, + "appliesTo" : [ ] + }, + "AQ4BJM4AR87GBQDX.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "AQ4BJM4AR87GBQDX.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "AQ4BJM4AR87GBQDX.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "AQ4BJM4AR87GBQDX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AQ4BJM4AR87GBQDX.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "AQ4BJM4AR87GBQDX.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "AQ4BJM4AR87GBQDX.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "AQ4BJM4AR87GBQDX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AQ4BJM4AR87GBQDX.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "AQ4BJM4AR87GBQDX.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11186" + }, + "appliesTo" : [ ] + }, + "AQ4BJM4AR87GBQDX.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "AQ4BJM4AR87GBQDX.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "AQ4BJM4AR87GBQDX.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "AQ4BJM4AR87GBQDX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AQ4BJM4AR87GBQDX.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "AQ4BJM4AR87GBQDX.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "AQ4BJM4AR87GBQDX.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "AQ4BJM4AR87GBQDX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AQ4BJM4AR87GBQDX.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "AQ4BJM4AR87GBQDX.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "AQ4BJM4AR87GBQDX.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "AQ4BJM4AR87GBQDX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AQ4BJM4AR87GBQDX.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "AQ4BJM4AR87GBQDX.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29057" + }, + "appliesTo" : [ ] + }, + "AQ4BJM4AR87GBQDX.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "AQ4BJM4AR87GBQDX.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "AQ4BJM4AR87GBQDX.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "AQ4BJM4AR87GBQDX", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "AQ4BJM4AR87GBQDX.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "AQ4BJM4AR87GBQDX.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5186" + }, + "appliesTo" : [ ] + }, + "AQ4BJM4AR87GBQDX.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "AQ4BJM4AR87GBQDX.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AQ4BJM4AR87GBQDX.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "AQ4BJM4AR87GBQDX", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "AQ4BJM4AR87GBQDX.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "AQ4BJM4AR87GBQDX.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10160" + }, + "appliesTo" : [ ] + }, + "AQ4BJM4AR87GBQDX.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "AQ4BJM4AR87GBQDX.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AQ4BJM4AR87GBQDX.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "AQ4BJM4AR87GBQDX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AQ4BJM4AR87GBQDX.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "AQ4BJM4AR87GBQDX.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "AQ4BJM4AR87GBQDX.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "AQ4BJM4AR87GBQDX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AQ4BJM4AR87GBQDX.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "AQ4BJM4AR87GBQDX.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23723" + }, + "appliesTo" : [ ] + }, + "AQ4BJM4AR87GBQDX.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "AQ4BJM4AR87GBQDX.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AQ4BJM4AR87GBQDX.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "AQ4BJM4AR87GBQDX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AQ4BJM4AR87GBQDX.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "AQ4BJM4AR87GBQDX.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4800000000" + }, + "appliesTo" : [ ] + }, + "AQ4BJM4AR87GBQDX.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "AQ4BJM4AR87GBQDX.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12624" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AQ4BJM4AR87GBQDX.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "AQ4BJM4AR87GBQDX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AQ4BJM4AR87GBQDX.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "AQ4BJM4AR87GBQDX.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14627" + }, + "appliesTo" : [ ] + }, + "AQ4BJM4AR87GBQDX.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "AQ4BJM4AR87GBQDX.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "3DX9M63484ZSZFJV" : { + "3DX9M63484ZSZFJV.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "3DX9M63484ZSZFJV", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "3DX9M63484ZSZFJV.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "3DX9M63484ZSZFJV.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5000" + }, + "appliesTo" : [ ] + }, + "3DX9M63484ZSZFJV.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "3DX9M63484ZSZFJV.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3DX9M63484ZSZFJV.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "3DX9M63484ZSZFJV", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3DX9M63484ZSZFJV.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "3DX9M63484ZSZFJV.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7999" + }, + "appliesTo" : [ ] + }, + "3DX9M63484ZSZFJV.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "3DX9M63484ZSZFJV.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3DX9M63484ZSZFJV.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "3DX9M63484ZSZFJV", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3DX9M63484ZSZFJV.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "3DX9M63484ZSZFJV.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "3DX9M63484ZSZFJV.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "3DX9M63484ZSZFJV.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16127" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3DX9M63484ZSZFJV.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "3DX9M63484ZSZFJV", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3DX9M63484ZSZFJV.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "3DX9M63484ZSZFJV.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3610000000" + }, + "appliesTo" : [ ] + }, + "3DX9M63484ZSZFJV.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "3DX9M63484ZSZFJV.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7670" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3DX9M63484ZSZFJV.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "3DX9M63484ZSZFJV", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3DX9M63484ZSZFJV.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "3DX9M63484ZSZFJV.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "FWCGRGHA7B5TAJDH" : { + "FWCGRGHA7B5TAJDH.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "FWCGRGHA7B5TAJDH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FWCGRGHA7B5TAJDH.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "FWCGRGHA7B5TAJDH.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9042" + }, + "appliesTo" : [ ] + }, + "FWCGRGHA7B5TAJDH.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "FWCGRGHA7B5TAJDH.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FWCGRGHA7B5TAJDH.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "FWCGRGHA7B5TAJDH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FWCGRGHA7B5TAJDH.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "FWCGRGHA7B5TAJDH.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FWCGRGHA7B5TAJDH.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "FWCGRGHA7B5TAJDH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FWCGRGHA7B5TAJDH.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "FWCGRGHA7B5TAJDH.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FWCGRGHA7B5TAJDH.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "FWCGRGHA7B5TAJDH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FWCGRGHA7B5TAJDH.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "FWCGRGHA7B5TAJDH.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FWCGRGHA7B5TAJDH.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "FWCGRGHA7B5TAJDH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FWCGRGHA7B5TAJDH.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "FWCGRGHA7B5TAJDH.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18617" + }, + "appliesTo" : [ ] + }, + "FWCGRGHA7B5TAJDH.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "FWCGRGHA7B5TAJDH.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FWCGRGHA7B5TAJDH.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "FWCGRGHA7B5TAJDH", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "FWCGRGHA7B5TAJDH.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "FWCGRGHA7B5TAJDH.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15321" + }, + "appliesTo" : [ ] + }, + "FWCGRGHA7B5TAJDH.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "FWCGRGHA7B5TAJDH.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FWCGRGHA7B5TAJDH.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "FWCGRGHA7B5TAJDH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FWCGRGHA7B5TAJDH.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "FWCGRGHA7B5TAJDH.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8920000000" + }, + "appliesTo" : [ ] + }, + "FWCGRGHA7B5TAJDH.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "FWCGRGHA7B5TAJDH.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7817" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FWCGRGHA7B5TAJDH.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "FWCGRGHA7B5TAJDH", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "FWCGRGHA7B5TAJDH.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "FWCGRGHA7B5TAJDH.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30434" + }, + "appliesTo" : [ ] + }, + "FWCGRGHA7B5TAJDH.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "FWCGRGHA7B5TAJDH.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FWCGRGHA7B5TAJDH.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "FWCGRGHA7B5TAJDH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FWCGRGHA7B5TAJDH.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "FWCGRGHA7B5TAJDH.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17723" + }, + "appliesTo" : [ ] + }, + "FWCGRGHA7B5TAJDH.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "FWCGRGHA7B5TAJDH.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FWCGRGHA7B5TAJDH.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "FWCGRGHA7B5TAJDH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FWCGRGHA7B5TAJDH.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "FWCGRGHA7B5TAJDH.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "36489" + }, + "appliesTo" : [ ] + }, + "FWCGRGHA7B5TAJDH.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "FWCGRGHA7B5TAJDH.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FWCGRGHA7B5TAJDH.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "FWCGRGHA7B5TAJDH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FWCGRGHA7B5TAJDH.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "FWCGRGHA7B5TAJDH.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16235" + }, + "appliesTo" : [ ] + }, + "FWCGRGHA7B5TAJDH.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "FWCGRGHA7B5TAJDH.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FWCGRGHA7B5TAJDH.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "FWCGRGHA7B5TAJDH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FWCGRGHA7B5TAJDH.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "FWCGRGHA7B5TAJDH.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "YNFV4A5QUAMVDGKX" : { + "YNFV4A5QUAMVDGKX.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "YNFV4A5QUAMVDGKX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YNFV4A5QUAMVDGKX.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "YNFV4A5QUAMVDGKX.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.7260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YNFV4A5QUAMVDGKX.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YNFV4A5QUAMVDGKX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YNFV4A5QUAMVDGKX.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YNFV4A5QUAMVDGKX.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.1100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YNFV4A5QUAMVDGKX.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YNFV4A5QUAMVDGKX", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "YNFV4A5QUAMVDGKX.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YNFV4A5QUAMVDGKX.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YNFV4A5QUAMVDGKX.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YNFV4A5QUAMVDGKX.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33601" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YNFV4A5QUAMVDGKX.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "YNFV4A5QUAMVDGKX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YNFV4A5QUAMVDGKX.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "YNFV4A5QUAMVDGKX.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YNFV4A5QUAMVDGKX.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "YNFV4A5QUAMVDGKX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YNFV4A5QUAMVDGKX.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "YNFV4A5QUAMVDGKX.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38641" + }, + "appliesTo" : [ ] + }, + "YNFV4A5QUAMVDGKX.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "YNFV4A5QUAMVDGKX.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YNFV4A5QUAMVDGKX.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "YNFV4A5QUAMVDGKX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YNFV4A5QUAMVDGKX.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "YNFV4A5QUAMVDGKX.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YNFV4A5QUAMVDGKX.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YNFV4A5QUAMVDGKX", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "YNFV4A5QUAMVDGKX.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YNFV4A5QUAMVDGKX.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YNFV4A5QUAMVDGKX.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YNFV4A5QUAMVDGKX.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "49036" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YNFV4A5QUAMVDGKX.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YNFV4A5QUAMVDGKX", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YNFV4A5QUAMVDGKX.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YNFV4A5QUAMVDGKX.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26083" + }, + "appliesTo" : [ ] + }, + "YNFV4A5QUAMVDGKX.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YNFV4A5QUAMVDGKX.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YNFV4A5QUAMVDGKX.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YNFV4A5QUAMVDGKX", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "YNFV4A5QUAMVDGKX.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YNFV4A5QUAMVDGKX.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9570000000" + }, + "appliesTo" : [ ] + }, + "YNFV4A5QUAMVDGKX.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YNFV4A5QUAMVDGKX.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17143" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YNFV4A5QUAMVDGKX.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "YNFV4A5QUAMVDGKX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YNFV4A5QUAMVDGKX.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "YNFV4A5QUAMVDGKX.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29995" + }, + "appliesTo" : [ ] + }, + "YNFV4A5QUAMVDGKX.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "YNFV4A5QUAMVDGKX.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YNFV4A5QUAMVDGKX.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "YNFV4A5QUAMVDGKX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YNFV4A5QUAMVDGKX.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "YNFV4A5QUAMVDGKX.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "58790" + }, + "appliesTo" : [ ] + }, + "YNFV4A5QUAMVDGKX.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "YNFV4A5QUAMVDGKX.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YNFV4A5QUAMVDGKX.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "YNFV4A5QUAMVDGKX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YNFV4A5QUAMVDGKX.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "YNFV4A5QUAMVDGKX.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2510000000" + }, + "appliesTo" : [ ] + }, + "YNFV4A5QUAMVDGKX.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "YNFV4A5QUAMVDGKX.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19715" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "KV8S83TSUZZQ2X2K" : { + "KV8S83TSUZZQ2X2K.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "KV8S83TSUZZQ2X2K", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KV8S83TSUZZQ2X2K.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "KV8S83TSUZZQ2X2K.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "514" + }, + "appliesTo" : [ ] + }, + "KV8S83TSUZZQ2X2K.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "KV8S83TSUZZQ2X2K.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KV8S83TSUZZQ2X2K.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "KV8S83TSUZZQ2X2K", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "KV8S83TSUZZQ2X2K.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "KV8S83TSUZZQ2X2K.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KV8S83TSUZZQ2X2K.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "KV8S83TSUZZQ2X2K", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KV8S83TSUZZQ2X2K.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "KV8S83TSUZZQ2X2K.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KV8S83TSUZZQ2X2K.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "KV8S83TSUZZQ2X2K", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "KV8S83TSUZZQ2X2K.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "KV8S83TSUZZQ2X2K.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "KV8S83TSUZZQ2X2K.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "KV8S83TSUZZQ2X2K.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3311" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KV8S83TSUZZQ2X2K.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "KV8S83TSUZZQ2X2K", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "KV8S83TSUZZQ2X2K.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "KV8S83TSUZZQ2X2K.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "922" + }, + "appliesTo" : [ ] + }, + "KV8S83TSUZZQ2X2K.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "KV8S83TSUZZQ2X2K.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KV8S83TSUZZQ2X2K.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "KV8S83TSUZZQ2X2K", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "KV8S83TSUZZQ2X2K.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "KV8S83TSUZZQ2X2K.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1058" + }, + "appliesTo" : [ ] + }, + "KV8S83TSUZZQ2X2K.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "KV8S83TSUZZQ2X2K.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KV8S83TSUZZQ2X2K.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "KV8S83TSUZZQ2X2K", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "KV8S83TSUZZQ2X2K.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "KV8S83TSUZZQ2X2K.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1396" + }, + "appliesTo" : [ ] + }, + "KV8S83TSUZZQ2X2K.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "KV8S83TSUZZQ2X2K.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KV8S83TSUZZQ2X2K.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "KV8S83TSUZZQ2X2K", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "KV8S83TSUZZQ2X2K.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "KV8S83TSUZZQ2X2K.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KV8S83TSUZZQ2X2K.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "KV8S83TSUZZQ2X2K", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "KV8S83TSUZZQ2X2K.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "KV8S83TSUZZQ2X2K.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3650" + }, + "appliesTo" : [ ] + }, + "KV8S83TSUZZQ2X2K.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "KV8S83TSUZZQ2X2K.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KV8S83TSUZZQ2X2K.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "KV8S83TSUZZQ2X2K", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "KV8S83TSUZZQ2X2K.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "KV8S83TSUZZQ2X2K.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KV8S83TSUZZQ2X2K.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "KV8S83TSUZZQ2X2K", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KV8S83TSUZZQ2X2K.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "KV8S83TSUZZQ2X2K.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1533" + }, + "appliesTo" : [ ] + }, + "KV8S83TSUZZQ2X2K.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "KV8S83TSUZZQ2X2K.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KV8S83TSUZZQ2X2K.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "KV8S83TSUZZQ2X2K", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "KV8S83TSUZZQ2X2K.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "KV8S83TSUZZQ2X2K.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "444" + }, + "appliesTo" : [ ] + }, + "KV8S83TSUZZQ2X2K.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "KV8S83TSUZZQ2X2K.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "GMGKK582WT2TW2KT" : { + "GMGKK582WT2TW2KT.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "GMGKK582WT2TW2KT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GMGKK582WT2TW2KT.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "GMGKK582WT2TW2KT.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.1120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GMGKK582WT2TW2KT.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "GMGKK582WT2TW2KT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GMGKK582WT2TW2KT.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "GMGKK582WT2TW2KT.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17151" + }, + "appliesTo" : [ ] + }, + "GMGKK582WT2TW2KT.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "GMGKK582WT2TW2KT.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GMGKK582WT2TW2KT.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "GMGKK582WT2TW2KT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GMGKK582WT2TW2KT.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "GMGKK582WT2TW2KT.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33616" + }, + "appliesTo" : [ ] + }, + "GMGKK582WT2TW2KT.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "GMGKK582WT2TW2KT.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GMGKK582WT2TW2KT.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "GMGKK582WT2TW2KT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GMGKK582WT2TW2KT.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "GMGKK582WT2TW2KT.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "49058" + }, + "appliesTo" : [ ] + }, + "GMGKK582WT2TW2KT.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "GMGKK582WT2TW2KT.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GMGKK582WT2TW2KT.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "GMGKK582WT2TW2KT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GMGKK582WT2TW2KT.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "GMGKK582WT2TW2KT.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GMGKK582WT2TW2KT.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "GMGKK582WT2TW2KT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GMGKK582WT2TW2KT.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "GMGKK582WT2TW2KT.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26095" + }, + "appliesTo" : [ ] + }, + "GMGKK582WT2TW2KT.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "GMGKK582WT2TW2KT.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "Z65ZPSYYEJ69PVAM" : { + "Z65ZPSYYEJ69PVAM.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Z65ZPSYYEJ69PVAM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z65ZPSYYEJ69PVAM.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Z65ZPSYYEJ69PVAM.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26095" + }, + "appliesTo" : [ ] + }, + "Z65ZPSYYEJ69PVAM.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Z65ZPSYYEJ69PVAM.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z65ZPSYYEJ69PVAM.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "Z65ZPSYYEJ69PVAM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z65ZPSYYEJ69PVAM.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "Z65ZPSYYEJ69PVAM.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39797" + }, + "appliesTo" : [ ] + }, + "Z65ZPSYYEJ69PVAM.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "Z65ZPSYYEJ69PVAM.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Z65ZPSYYEJ69PVAM.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "Z65ZPSYYEJ69PVAM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z65ZPSYYEJ69PVAM.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "Z65ZPSYYEJ69PVAM.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.8580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Z65ZPSYYEJ69PVAM.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "Z65ZPSYYEJ69PVAM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z65ZPSYYEJ69PVAM.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "Z65ZPSYYEJ69PVAM.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19724" + }, + "appliesTo" : [ ] + }, + "Z65ZPSYYEJ69PVAM.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "Z65ZPSYYEJ69PVAM.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z65ZPSYYEJ69PVAM.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Z65ZPSYYEJ69PVAM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z65ZPSYYEJ69PVAM.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Z65ZPSYYEJ69PVAM.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Z65ZPSYYEJ69PVAM.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "Z65ZPSYYEJ69PVAM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z65ZPSYYEJ69PVAM.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "Z65ZPSYYEJ69PVAM.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "Z65ZPSYYEJ69PVAM.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "Z65ZPSYYEJ69PVAM.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "62234" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Z65ZPSYYEJ69PVAM.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "Z65ZPSYYEJ69PVAM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z65ZPSYYEJ69PVAM.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "Z65ZPSYYEJ69PVAM.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Z65ZPSYYEJ69PVAM.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Z65ZPSYYEJ69PVAM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z65ZPSYYEJ69PVAM.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Z65ZPSYYEJ69PVAM.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0880000000" + }, + "appliesTo" : [ ] + }, + "Z65ZPSYYEJ69PVAM.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Z65ZPSYYEJ69PVAM.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17151" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z65ZPSYYEJ69PVAM.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "Z65ZPSYYEJ69PVAM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z65ZPSYYEJ69PVAM.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "Z65ZPSYYEJ69PVAM.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30009" + }, + "appliesTo" : [ ] + }, + "Z65ZPSYYEJ69PVAM.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "Z65ZPSYYEJ69PVAM.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z65ZPSYYEJ69PVAM.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "Z65ZPSYYEJ69PVAM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z65ZPSYYEJ69PVAM.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "Z65ZPSYYEJ69PVAM.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Z65ZPSYYEJ69PVAM.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Z65ZPSYYEJ69PVAM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z65ZPSYYEJ69PVAM.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Z65ZPSYYEJ69PVAM.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "52474" + }, + "appliesTo" : [ ] + }, + "Z65ZPSYYEJ69PVAM.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Z65ZPSYYEJ69PVAM.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Z65ZPSYYEJ69PVAM.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Z65ZPSYYEJ69PVAM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z65ZPSYYEJ69PVAM.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Z65ZPSYYEJ69PVAM.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34755" + }, + "appliesTo" : [ ] + }, + "Z65ZPSYYEJ69PVAM.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Z65ZPSYYEJ69PVAM.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "TNE6USZS8RUFQW28" : { + "TNE6USZS8RUFQW28.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TNE6USZS8RUFQW28", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "TNE6USZS8RUFQW28.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TNE6USZS8RUFQW28.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TNE6USZS8RUFQW28.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "TNE6USZS8RUFQW28", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TNE6USZS8RUFQW28.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "TNE6USZS8RUFQW28.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2420000000" + }, + "appliesTo" : [ ] + }, + "TNE6USZS8RUFQW28.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "TNE6USZS8RUFQW28.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2186" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TNE6USZS8RUFQW28.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "TNE6USZS8RUFQW28", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TNE6USZS8RUFQW28.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "TNE6USZS8RUFQW28.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TNE6USZS8RUFQW28.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "TNE6USZS8RUFQW28", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "TNE6USZS8RUFQW28.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "TNE6USZS8RUFQW28.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9939" + }, + "appliesTo" : [ ] + }, + "TNE6USZS8RUFQW28.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "TNE6USZS8RUFQW28.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TNE6USZS8RUFQW28.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "TNE6USZS8RUFQW28", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "TNE6USZS8RUFQW28.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "TNE6USZS8RUFQW28.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TNE6USZS8RUFQW28.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "TNE6USZS8RUFQW28", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TNE6USZS8RUFQW28.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "TNE6USZS8RUFQW28.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4230" + }, + "appliesTo" : [ ] + }, + "TNE6USZS8RUFQW28.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "TNE6USZS8RUFQW28.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TNE6USZS8RUFQW28.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TNE6USZS8RUFQW28", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "TNE6USZS8RUFQW28.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TNE6USZS8RUFQW28.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2196" + }, + "appliesTo" : [ ] + }, + "TNE6USZS8RUFQW28.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TNE6USZS8RUFQW28.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TNE6USZS8RUFQW28.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TNE6USZS8RUFQW28", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "TNE6USZS8RUFQW28.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TNE6USZS8RUFQW28.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6811" + }, + "appliesTo" : [ ] + }, + "TNE6USZS8RUFQW28.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TNE6USZS8RUFQW28.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TNE6USZS8RUFQW28.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TNE6USZS8RUFQW28", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "TNE6USZS8RUFQW28.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TNE6USZS8RUFQW28.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TNE6USZS8RUFQW28.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TNE6USZS8RUFQW28.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3727" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TNE6USZS8RUFQW28.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "TNE6USZS8RUFQW28", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "TNE6USZS8RUFQW28.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "TNE6USZS8RUFQW28.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5792" + }, + "appliesTo" : [ ] + }, + "TNE6USZS8RUFQW28.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "TNE6USZS8RUFQW28.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TNE6USZS8RUFQW28.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TNE6USZS8RUFQW28", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "TNE6USZS8RUFQW28.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TNE6USZS8RUFQW28.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3401" + }, + "appliesTo" : [ ] + }, + "TNE6USZS8RUFQW28.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TNE6USZS8RUFQW28.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "GVNK6UKCGGH82WUC" : { + "GVNK6UKCGGH82WUC.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "GVNK6UKCGGH82WUC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GVNK6UKCGGH82WUC.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "GVNK6UKCGGH82WUC.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "69816" + }, + "appliesTo" : [ ] + }, + "GVNK6UKCGGH82WUC.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "GVNK6UKCGGH82WUC.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "GVNK6UKCGGH82WUC.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "GVNK6UKCGGH82WUC", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "GVNK6UKCGGH82WUC.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "GVNK6UKCGGH82WUC.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "99338" + }, + "appliesTo" : [ ] + }, + "GVNK6UKCGGH82WUC.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "GVNK6UKCGGH82WUC.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GVNK6UKCGGH82WUC.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "GVNK6UKCGGH82WUC", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "GVNK6UKCGGH82WUC.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "GVNK6UKCGGH82WUC.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.6336000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "GVNK6UKCGGH82WUC.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "GVNK6UKCGGH82WUC", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "GVNK6UKCGGH82WUC.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "GVNK6UKCGGH82WUC.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "198193" + }, + "appliesTo" : [ ] + }, + "GVNK6UKCGGH82WUC.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "GVNK6UKCGGH82WUC.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "GVNK6UKCGGH82WUC.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "GVNK6UKCGGH82WUC", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "GVNK6UKCGGH82WUC.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "GVNK6UKCGGH82WUC.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GVNK6UKCGGH82WUC.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "GVNK6UKCGGH82WUC", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "GVNK6UKCGGH82WUC.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "GVNK6UKCGGH82WUC.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "68296" + }, + "appliesTo" : [ ] + }, + "GVNK6UKCGGH82WUC.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "GVNK6UKCGGH82WUC.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GVNK6UKCGGH82WUC.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "GVNK6UKCGGH82WUC", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "GVNK6UKCGGH82WUC.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "GVNK6UKCGGH82WUC.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "GVNK6UKCGGH82WUC.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "GVNK6UKCGGH82WUC.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "191647" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GVNK6UKCGGH82WUC.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "GVNK6UKCGGH82WUC", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "GVNK6UKCGGH82WUC.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "GVNK6UKCGGH82WUC.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34252" + }, + "appliesTo" : [ ] + }, + "GVNK6UKCGGH82WUC.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "GVNK6UKCGGH82WUC.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GVNK6UKCGGH82WUC.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "GVNK6UKCGGH82WUC", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "GVNK6UKCGGH82WUC.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "GVNK6UKCGGH82WUC.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.8790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GVNK6UKCGGH82WUC.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "GVNK6UKCGGH82WUC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GVNK6UKCGGH82WUC.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "GVNK6UKCGGH82WUC.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.0649000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "GVNK6UKCGGH82WUC.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "GVNK6UKCGGH82WUC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GVNK6UKCGGH82WUC.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "GVNK6UKCGGH82WUC.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9985000000" + }, + "appliesTo" : [ ] + }, + "GVNK6UKCGGH82WUC.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "GVNK6UKCGGH82WUC.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35027" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GVNK6UKCGGH82WUC.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "GVNK6UKCGGH82WUC", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "GVNK6UKCGGH82WUC.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "GVNK6UKCGGH82WUC.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7200000000" + }, + "appliesTo" : [ ] + }, + "GVNK6UKCGGH82WUC.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "GVNK6UKCGGH82WUC.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "97762" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "RWRSW4Q7WCASA2W9" : { + "RWRSW4Q7WCASA2W9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "RWRSW4Q7WCASA2W9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RWRSW4Q7WCASA2W9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "RWRSW4Q7WCASA2W9.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "RWRSW4Q7WCASA2W9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "RWRSW4Q7WCASA2W9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6220" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RWRSW4Q7WCASA2W9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "RWRSW4Q7WCASA2W9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RWRSW4Q7WCASA2W9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "RWRSW4Q7WCASA2W9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4350000000" + }, + "appliesTo" : [ ] + }, + "RWRSW4Q7WCASA2W9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "RWRSW4Q7WCASA2W9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2541" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RWRSW4Q7WCASA2W9.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "RWRSW4Q7WCASA2W9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RWRSW4Q7WCASA2W9.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "RWRSW4Q7WCASA2W9.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6027" + }, + "appliesTo" : [ ] + }, + "RWRSW4Q7WCASA2W9.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "RWRSW4Q7WCASA2W9.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RWRSW4Q7WCASA2W9.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "RWRSW4Q7WCASA2W9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RWRSW4Q7WCASA2W9.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "RWRSW4Q7WCASA2W9.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RWRSW4Q7WCASA2W9.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "RWRSW4Q7WCASA2W9", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "RWRSW4Q7WCASA2W9.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "RWRSW4Q7WCASA2W9.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18299" + }, + "appliesTo" : [ ] + }, + "RWRSW4Q7WCASA2W9.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "RWRSW4Q7WCASA2W9.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RWRSW4Q7WCASA2W9.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "RWRSW4Q7WCASA2W9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RWRSW4Q7WCASA2W9.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "RWRSW4Q7WCASA2W9.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3027" + }, + "appliesTo" : [ ] + }, + "RWRSW4Q7WCASA2W9.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "RWRSW4Q7WCASA2W9.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RWRSW4Q7WCASA2W9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "RWRSW4Q7WCASA2W9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RWRSW4Q7WCASA2W9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "RWRSW4Q7WCASA2W9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6879" + }, + "appliesTo" : [ ] + }, + "RWRSW4Q7WCASA2W9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "RWRSW4Q7WCASA2W9.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RWRSW4Q7WCASA2W9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "RWRSW4Q7WCASA2W9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RWRSW4Q7WCASA2W9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "RWRSW4Q7WCASA2W9.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RWRSW4Q7WCASA2W9.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "RWRSW4Q7WCASA2W9", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "RWRSW4Q7WCASA2W9.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "RWRSW4Q7WCASA2W9.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7408" + }, + "appliesTo" : [ ] + }, + "RWRSW4Q7WCASA2W9.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "RWRSW4Q7WCASA2W9.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RWRSW4Q7WCASA2W9.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "RWRSW4Q7WCASA2W9", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "RWRSW4Q7WCASA2W9.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "RWRSW4Q7WCASA2W9.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RWRSW4Q7WCASA2W9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "RWRSW4Q7WCASA2W9", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "RWRSW4Q7WCASA2W9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "RWRSW4Q7WCASA2W9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16167" + }, + "appliesTo" : [ ] + }, + "RWRSW4Q7WCASA2W9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "RWRSW4Q7WCASA2W9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "QT2HSTX3NZ4XCM9E" : { + "QT2HSTX3NZ4XCM9E.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QT2HSTX3NZ4XCM9E", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QT2HSTX3NZ4XCM9E.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QT2HSTX3NZ4XCM9E.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "797" + }, + "appliesTo" : [ ] + }, + "QT2HSTX3NZ4XCM9E.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QT2HSTX3NZ4XCM9E.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QT2HSTX3NZ4XCM9E.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QT2HSTX3NZ4XCM9E", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QT2HSTX3NZ4XCM9E.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QT2HSTX3NZ4XCM9E.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QT2HSTX3NZ4XCM9E.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QT2HSTX3NZ4XCM9E", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QT2HSTX3NZ4XCM9E.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QT2HSTX3NZ4XCM9E.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "434" + }, + "appliesTo" : [ ] + }, + "QT2HSTX3NZ4XCM9E.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QT2HSTX3NZ4XCM9E.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0425000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QT2HSTX3NZ4XCM9E.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "QT2HSTX3NZ4XCM9E", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QT2HSTX3NZ4XCM9E.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "QT2HSTX3NZ4XCM9E.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "956" + }, + "appliesTo" : [ ] + }, + "QT2HSTX3NZ4XCM9E.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "QT2HSTX3NZ4XCM9E.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QT2HSTX3NZ4XCM9E.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "QT2HSTX3NZ4XCM9E", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QT2HSTX3NZ4XCM9E.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "QT2HSTX3NZ4XCM9E.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0827000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QT2HSTX3NZ4XCM9E.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QT2HSTX3NZ4XCM9E", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QT2HSTX3NZ4XCM9E.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QT2HSTX3NZ4XCM9E.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "878" + }, + "appliesTo" : [ ] + }, + "QT2HSTX3NZ4XCM9E.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QT2HSTX3NZ4XCM9E.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QT2HSTX3NZ4XCM9E.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "QT2HSTX3NZ4XCM9E", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QT2HSTX3NZ4XCM9E.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "QT2HSTX3NZ4XCM9E.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QT2HSTX3NZ4XCM9E.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "QT2HSTX3NZ4XCM9E.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "872" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QT2HSTX3NZ4XCM9E.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QT2HSTX3NZ4XCM9E", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QT2HSTX3NZ4XCM9E.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QT2HSTX3NZ4XCM9E.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1682" + }, + "appliesTo" : [ ] + }, + "QT2HSTX3NZ4XCM9E.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QT2HSTX3NZ4XCM9E.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QT2HSTX3NZ4XCM9E.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "QT2HSTX3NZ4XCM9E", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QT2HSTX3NZ4XCM9E.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "QT2HSTX3NZ4XCM9E.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QT2HSTX3NZ4XCM9E.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "QT2HSTX3NZ4XCM9E.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1879" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QT2HSTX3NZ4XCM9E.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "QT2HSTX3NZ4XCM9E", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QT2HSTX3NZ4XCM9E.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "QT2HSTX3NZ4XCM9E.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QT2HSTX3NZ4XCM9E.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "QT2HSTX3NZ4XCM9E", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QT2HSTX3NZ4XCM9E.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "QT2HSTX3NZ4XCM9E.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "473" + }, + "appliesTo" : [ ] + }, + "QT2HSTX3NZ4XCM9E.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "QT2HSTX3NZ4XCM9E.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0469000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QT2HSTX3NZ4XCM9E.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "QT2HSTX3NZ4XCM9E", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QT2HSTX3NZ4XCM9E.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "QT2HSTX3NZ4XCM9E.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1042000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "49KSPMGA5DCV6VC6" : { + "49KSPMGA5DCV6VC6.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "49KSPMGA5DCV6VC6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "49KSPMGA5DCV6VC6.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "49KSPMGA5DCV6VC6.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3340000000" + }, + "appliesTo" : [ ] + }, + "49KSPMGA5DCV6VC6.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "49KSPMGA5DCV6VC6.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1787" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "49KSPMGA5DCV6VC6.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "49KSPMGA5DCV6VC6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "49KSPMGA5DCV6VC6.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "49KSPMGA5DCV6VC6.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2055" + }, + "appliesTo" : [ ] + }, + "49KSPMGA5DCV6VC6.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "49KSPMGA5DCV6VC6.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "49KSPMGA5DCV6VC6.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "49KSPMGA5DCV6VC6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "49KSPMGA5DCV6VC6.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "49KSPMGA5DCV6VC6.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "49KSPMGA5DCV6VC6.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "49KSPMGA5DCV6VC6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "49KSPMGA5DCV6VC6.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "49KSPMGA5DCV6VC6.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5167" + }, + "appliesTo" : [ ] + }, + "49KSPMGA5DCV6VC6.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "49KSPMGA5DCV6VC6.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "49KSPMGA5DCV6VC6.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "49KSPMGA5DCV6VC6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "49KSPMGA5DCV6VC6.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "49KSPMGA5DCV6VC6.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "49KSPMGA5DCV6VC6.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "49KSPMGA5DCV6VC6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "49KSPMGA5DCV6VC6.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "49KSPMGA5DCV6VC6.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "49KSPMGA5DCV6VC6.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "49KSPMGA5DCV6VC6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "49KSPMGA5DCV6VC6.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "49KSPMGA5DCV6VC6.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11245" + }, + "appliesTo" : [ ] + }, + "49KSPMGA5DCV6VC6.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "49KSPMGA5DCV6VC6.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "49KSPMGA5DCV6VC6.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "49KSPMGA5DCV6VC6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "49KSPMGA5DCV6VC6.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "49KSPMGA5DCV6VC6.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3467" + }, + "appliesTo" : [ ] + }, + "49KSPMGA5DCV6VC6.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "49KSPMGA5DCV6VC6.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "49KSPMGA5DCV6VC6.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "49KSPMGA5DCV6VC6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "49KSPMGA5DCV6VC6.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "49KSPMGA5DCV6VC6.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3994" + }, + "appliesTo" : [ ] + }, + "49KSPMGA5DCV6VC6.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "49KSPMGA5DCV6VC6.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "49KSPMGA5DCV6VC6.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "49KSPMGA5DCV6VC6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "49KSPMGA5DCV6VC6.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "49KSPMGA5DCV6VC6.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "49KSPMGA5DCV6VC6.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "49KSPMGA5DCV6VC6.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4641" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "49KSPMGA5DCV6VC6.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "49KSPMGA5DCV6VC6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "49KSPMGA5DCV6VC6.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "49KSPMGA5DCV6VC6.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9934" + }, + "appliesTo" : [ ] + }, + "49KSPMGA5DCV6VC6.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "49KSPMGA5DCV6VC6.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "49KSPMGA5DCV6VC6.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "49KSPMGA5DCV6VC6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "49KSPMGA5DCV6VC6.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "49KSPMGA5DCV6VC6.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "RBSDAQVUVBS5AAS2" : { + "RBSDAQVUVBS5AAS2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "RBSDAQVUVBS5AAS2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RBSDAQVUVBS5AAS2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "RBSDAQVUVBS5AAS2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "RBSDAQVUVBS5AAS2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "RBSDAQVUVBS5AAS2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22484" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RBSDAQVUVBS5AAS2.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "RBSDAQVUVBS5AAS2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RBSDAQVUVBS5AAS2.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "RBSDAQVUVBS5AAS2.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RBSDAQVUVBS5AAS2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "RBSDAQVUVBS5AAS2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RBSDAQVUVBS5AAS2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "RBSDAQVUVBS5AAS2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6328" + }, + "appliesTo" : [ ] + }, + "RBSDAQVUVBS5AAS2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "RBSDAQVUVBS5AAS2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RBSDAQVUVBS5AAS2.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "RBSDAQVUVBS5AAS2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "RBSDAQVUVBS5AAS2.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "RBSDAQVUVBS5AAS2.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33664" + }, + "appliesTo" : [ ] + }, + "RBSDAQVUVBS5AAS2.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "RBSDAQVUVBS5AAS2.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RBSDAQVUVBS5AAS2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "RBSDAQVUVBS5AAS2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "RBSDAQVUVBS5AAS2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "RBSDAQVUVBS5AAS2.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RBSDAQVUVBS5AAS2.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "RBSDAQVUVBS5AAS2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RBSDAQVUVBS5AAS2.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "RBSDAQVUVBS5AAS2.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20071" + }, + "appliesTo" : [ ] + }, + "RBSDAQVUVBS5AAS2.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "RBSDAQVUVBS5AAS2.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RBSDAQVUVBS5AAS2.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "RBSDAQVUVBS5AAS2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RBSDAQVUVBS5AAS2.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "RBSDAQVUVBS5AAS2.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1620000000" + }, + "appliesTo" : [ ] + }, + "RBSDAQVUVBS5AAS2.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "RBSDAQVUVBS5AAS2.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10175" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RBSDAQVUVBS5AAS2.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "RBSDAQVUVBS5AAS2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RBSDAQVUVBS5AAS2.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "RBSDAQVUVBS5AAS2.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RBSDAQVUVBS5AAS2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "RBSDAQVUVBS5AAS2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RBSDAQVUVBS5AAS2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "RBSDAQVUVBS5AAS2.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "RBSDAQVUVBS5AAS2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "RBSDAQVUVBS5AAS2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12402" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RBSDAQVUVBS5AAS2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "RBSDAQVUVBS5AAS2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RBSDAQVUVBS5AAS2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "RBSDAQVUVBS5AAS2.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4550000000" + }, + "appliesTo" : [ ] + }, + "RBSDAQVUVBS5AAS2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "RBSDAQVUVBS5AAS2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11959" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RBSDAQVUVBS5AAS2.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "RBSDAQVUVBS5AAS2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RBSDAQVUVBS5AAS2.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "RBSDAQVUVBS5AAS2.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6530000000" + }, + "appliesTo" : [ ] + }, + "RBSDAQVUVBS5AAS2.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "RBSDAQVUVBS5AAS2.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17177" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "7MYCC33ZAHEJPS24" : { + "7MYCC33ZAHEJPS24.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "7MYCC33ZAHEJPS24", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7MYCC33ZAHEJPS24.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "7MYCC33ZAHEJPS24.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3868" + }, + "appliesTo" : [ ] + }, + "7MYCC33ZAHEJPS24.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "7MYCC33ZAHEJPS24.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7MYCC33ZAHEJPS24.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "7MYCC33ZAHEJPS24", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7MYCC33ZAHEJPS24.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "7MYCC33ZAHEJPS24.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7MYCC33ZAHEJPS24.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "7MYCC33ZAHEJPS24", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7MYCC33ZAHEJPS24.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "7MYCC33ZAHEJPS24.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8657" + }, + "appliesTo" : [ ] + }, + "7MYCC33ZAHEJPS24.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "7MYCC33ZAHEJPS24.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7MYCC33ZAHEJPS24.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "7MYCC33ZAHEJPS24", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7MYCC33ZAHEJPS24.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "7MYCC33ZAHEJPS24.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4450" + }, + "appliesTo" : [ ] + }, + "7MYCC33ZAHEJPS24.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "7MYCC33ZAHEJPS24.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7MYCC33ZAHEJPS24.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "7MYCC33ZAHEJPS24", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7MYCC33ZAHEJPS24.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "7MYCC33ZAHEJPS24.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3688" + }, + "appliesTo" : [ ] + }, + "7MYCC33ZAHEJPS24.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "7MYCC33ZAHEJPS24.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7MYCC33ZAHEJPS24.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "7MYCC33ZAHEJPS24", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7MYCC33ZAHEJPS24.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "7MYCC33ZAHEJPS24.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7MYCC33ZAHEJPS24.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "7MYCC33ZAHEJPS24", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7MYCC33ZAHEJPS24.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "7MYCC33ZAHEJPS24.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2028" + }, + "appliesTo" : [ ] + }, + "7MYCC33ZAHEJPS24.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "7MYCC33ZAHEJPS24.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7MYCC33ZAHEJPS24.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "7MYCC33ZAHEJPS24", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7MYCC33ZAHEJPS24.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "7MYCC33ZAHEJPS24.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11133" + }, + "appliesTo" : [ ] + }, + "7MYCC33ZAHEJPS24.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "7MYCC33ZAHEJPS24.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7MYCC33ZAHEJPS24.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "7MYCC33ZAHEJPS24", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7MYCC33ZAHEJPS24.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "7MYCC33ZAHEJPS24.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4019" + }, + "appliesTo" : [ ] + }, + "7MYCC33ZAHEJPS24.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "7MYCC33ZAHEJPS24.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7MYCC33ZAHEJPS24.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "7MYCC33ZAHEJPS24", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "7MYCC33ZAHEJPS24.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "7MYCC33ZAHEJPS24.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2710000000" + }, + "appliesTo" : [ ] + }, + "7MYCC33ZAHEJPS24.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "7MYCC33ZAHEJPS24.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1576" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7MYCC33ZAHEJPS24.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "7MYCC33ZAHEJPS24", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7MYCC33ZAHEJPS24.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "7MYCC33ZAHEJPS24.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "6NHJBAA5ZJ25DJVN" : { + "6NHJBAA5ZJ25DJVN.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6NHJBAA5ZJ25DJVN", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "6NHJBAA5ZJ25DJVN.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6NHJBAA5ZJ25DJVN.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "94647" + }, + "appliesTo" : [ ] + }, + "6NHJBAA5ZJ25DJVN.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6NHJBAA5ZJ25DJVN.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6NHJBAA5ZJ25DJVN.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "6NHJBAA5ZJ25DJVN", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "6NHJBAA5ZJ25DJVN.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "6NHJBAA5ZJ25DJVN.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8460000000" + }, + "appliesTo" : [ ] + }, + "6NHJBAA5ZJ25DJVN.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "6NHJBAA5ZJ25DJVN.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "48509" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6NHJBAA5ZJ25DJVN.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "6NHJBAA5ZJ25DJVN", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "6NHJBAA5ZJ25DJVN.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "6NHJBAA5ZJ25DJVN.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6NHJBAA5ZJ25DJVN.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "6NHJBAA5ZJ25DJVN", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "6NHJBAA5ZJ25DJVN.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "6NHJBAA5ZJ25DJVN.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "96849" + }, + "appliesTo" : [ ] + }, + "6NHJBAA5ZJ25DJVN.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "6NHJBAA5ZJ25DJVN.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6NHJBAA5ZJ25DJVN.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "6NHJBAA5ZJ25DJVN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6NHJBAA5ZJ25DJVN.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "6NHJBAA5ZJ25DJVN.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33046" + }, + "appliesTo" : [ ] + }, + "6NHJBAA5ZJ25DJVN.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "6NHJBAA5ZJ25DJVN.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6NHJBAA5ZJ25DJVN.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6NHJBAA5ZJ25DJVN", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "6NHJBAA5ZJ25DJVN.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6NHJBAA5ZJ25DJVN.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16327" + }, + "appliesTo" : [ ] + }, + "6NHJBAA5ZJ25DJVN.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6NHJBAA5ZJ25DJVN.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6NHJBAA5ZJ25DJVN.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6NHJBAA5ZJ25DJVN", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "6NHJBAA5ZJ25DJVN.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6NHJBAA5ZJ25DJVN.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6NHJBAA5ZJ25DJVN.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "6NHJBAA5ZJ25DJVN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6NHJBAA5ZJ25DJVN.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "6NHJBAA5ZJ25DJVN.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6NHJBAA5ZJ25DJVN.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "6NHJBAA5ZJ25DJVN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6NHJBAA5ZJ25DJVN.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "6NHJBAA5ZJ25DJVN.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16559" + }, + "appliesTo" : [ ] + }, + "6NHJBAA5ZJ25DJVN.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "6NHJBAA5ZJ25DJVN.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6NHJBAA5ZJ25DJVN.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6NHJBAA5ZJ25DJVN", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "6NHJBAA5ZJ25DJVN.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6NHJBAA5ZJ25DJVN.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32592" + }, + "appliesTo" : [ ] + }, + "6NHJBAA5ZJ25DJVN.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6NHJBAA5ZJ25DJVN.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6NHJBAA5ZJ25DJVN.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6NHJBAA5ZJ25DJVN", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "6NHJBAA5ZJ25DJVN.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6NHJBAA5ZJ25DJVN.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47519" + }, + "appliesTo" : [ ] + }, + "6NHJBAA5ZJ25DJVN.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6NHJBAA5ZJ25DJVN.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "6S9GKQW48P8VUTJ9" : { + "6S9GKQW48P8VUTJ9.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "6S9GKQW48P8VUTJ9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6S9GKQW48P8VUTJ9.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "6S9GKQW48P8VUTJ9.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "63718" + }, + "appliesTo" : [ ] + }, + "6S9GKQW48P8VUTJ9.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "6S9GKQW48P8VUTJ9.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6S9GKQW48P8VUTJ9.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "6S9GKQW48P8VUTJ9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6S9GKQW48P8VUTJ9.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "6S9GKQW48P8VUTJ9.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "75858" + }, + "appliesTo" : [ ] + }, + "6S9GKQW48P8VUTJ9.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "6S9GKQW48P8VUTJ9.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6S9GKQW48P8VUTJ9.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "6S9GKQW48P8VUTJ9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6S9GKQW48P8VUTJ9.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "6S9GKQW48P8VUTJ9.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.1170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6S9GKQW48P8VUTJ9.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "6S9GKQW48P8VUTJ9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6S9GKQW48P8VUTJ9.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "6S9GKQW48P8VUTJ9.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "149455" + }, + "appliesTo" : [ ] + }, + "6S9GKQW48P8VUTJ9.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "6S9GKQW48P8VUTJ9.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6S9GKQW48P8VUTJ9.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "6S9GKQW48P8VUTJ9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6S9GKQW48P8VUTJ9.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "6S9GKQW48P8VUTJ9.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.5110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6S9GKQW48P8VUTJ9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6S9GKQW48P8VUTJ9", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "6S9GKQW48P8VUTJ9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6S9GKQW48P8VUTJ9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "131074" + }, + "appliesTo" : [ ] + }, + "6S9GKQW48P8VUTJ9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6S9GKQW48P8VUTJ9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6S9GKQW48P8VUTJ9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6S9GKQW48P8VUTJ9", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "6S9GKQW48P8VUTJ9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6S9GKQW48P8VUTJ9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "57089" + }, + "appliesTo" : [ ] + }, + "6S9GKQW48P8VUTJ9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6S9GKQW48P8VUTJ9.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6S9GKQW48P8VUTJ9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6S9GKQW48P8VUTJ9", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "6S9GKQW48P8VUTJ9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6S9GKQW48P8VUTJ9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "68486" + }, + "appliesTo" : [ ] + }, + "6S9GKQW48P8VUTJ9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6S9GKQW48P8VUTJ9.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6S9GKQW48P8VUTJ9.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "6S9GKQW48P8VUTJ9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6S9GKQW48P8VUTJ9.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "6S9GKQW48P8VUTJ9.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.6880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6S9GKQW48P8VUTJ9.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "6S9GKQW48P8VUTJ9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6S9GKQW48P8VUTJ9.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "6S9GKQW48P8VUTJ9.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32378" + }, + "appliesTo" : [ ] + }, + "6S9GKQW48P8VUTJ9.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "6S9GKQW48P8VUTJ9.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6S9GKQW48P8VUTJ9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6S9GKQW48P8VUTJ9", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "6S9GKQW48P8VUTJ9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6S9GKQW48P8VUTJ9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28996" + }, + "appliesTo" : [ ] + }, + "6S9GKQW48P8VUTJ9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6S9GKQW48P8VUTJ9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6S9GKQW48P8VUTJ9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6S9GKQW48P8VUTJ9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6S9GKQW48P8VUTJ9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6S9GKQW48P8VUTJ9.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.8770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "MGQXS8Z3TAKPMGUM" : { + "MGQXS8Z3TAKPMGUM.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "MGQXS8Z3TAKPMGUM", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "MGQXS8Z3TAKPMGUM.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "MGQXS8Z3TAKPMGUM.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5481" + }, + "appliesTo" : [ ] + }, + "MGQXS8Z3TAKPMGUM.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "MGQXS8Z3TAKPMGUM.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MGQXS8Z3TAKPMGUM.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "MGQXS8Z3TAKPMGUM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MGQXS8Z3TAKPMGUM.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "MGQXS8Z3TAKPMGUM.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4579000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MGQXS8Z3TAKPMGUM.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "MGQXS8Z3TAKPMGUM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MGQXS8Z3TAKPMGUM.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "MGQXS8Z3TAKPMGUM.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12558" + }, + "appliesTo" : [ ] + }, + "MGQXS8Z3TAKPMGUM.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "MGQXS8Z3TAKPMGUM.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MGQXS8Z3TAKPMGUM.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "MGQXS8Z3TAKPMGUM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MGQXS8Z3TAKPMGUM.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "MGQXS8Z3TAKPMGUM.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MGQXS8Z3TAKPMGUM.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "MGQXS8Z3TAKPMGUM", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "MGQXS8Z3TAKPMGUM.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "MGQXS8Z3TAKPMGUM.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2796" + }, + "appliesTo" : [ ] + }, + "MGQXS8Z3TAKPMGUM.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "MGQXS8Z3TAKPMGUM.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MGQXS8Z3TAKPMGUM.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "MGQXS8Z3TAKPMGUM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MGQXS8Z3TAKPMGUM.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "MGQXS8Z3TAKPMGUM.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "MGQXS8Z3TAKPMGUM.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "MGQXS8Z3TAKPMGUM.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6318" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MGQXS8Z3TAKPMGUM.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "MGQXS8Z3TAKPMGUM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MGQXS8Z3TAKPMGUM.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "MGQXS8Z3TAKPMGUM.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3224" + }, + "appliesTo" : [ ] + }, + "MGQXS8Z3TAKPMGUM.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "MGQXS8Z3TAKPMGUM.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MGQXS8Z3TAKPMGUM.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "MGQXS8Z3TAKPMGUM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MGQXS8Z3TAKPMGUM.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "MGQXS8Z3TAKPMGUM.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7728000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MGQXS8Z3TAKPMGUM.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "MGQXS8Z3TAKPMGUM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MGQXS8Z3TAKPMGUM.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "MGQXS8Z3TAKPMGUM.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5266000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MGQXS8Z3TAKPMGUM.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "MGQXS8Z3TAKPMGUM", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "MGQXS8Z3TAKPMGUM.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "MGQXS8Z3TAKPMGUM.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10514" + }, + "appliesTo" : [ ] + }, + "MGQXS8Z3TAKPMGUM.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "MGQXS8Z3TAKPMGUM.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MGQXS8Z3TAKPMGUM.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "MGQXS8Z3TAKPMGUM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MGQXS8Z3TAKPMGUM.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "MGQXS8Z3TAKPMGUM.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6407" + }, + "appliesTo" : [ ] + }, + "MGQXS8Z3TAKPMGUM.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "MGQXS8Z3TAKPMGUM.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2438000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MGQXS8Z3TAKPMGUM.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "MGQXS8Z3TAKPMGUM", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "MGQXS8Z3TAKPMGUM.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "MGQXS8Z3TAKPMGUM.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2130000000" + }, + "appliesTo" : [ ] + }, + "MGQXS8Z3TAKPMGUM.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "MGQXS8Z3TAKPMGUM.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5592" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "PG7N32NDHXVN79SC" : { + "PG7N32NDHXVN79SC.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "PG7N32NDHXVN79SC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PG7N32NDHXVN79SC.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "PG7N32NDHXVN79SC.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.0190000000" + }, + "appliesTo" : [ ] + }, + "PG7N32NDHXVN79SC.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "PG7N32NDHXVN79SC.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "79071" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PG7N32NDHXVN79SC.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "PG7N32NDHXVN79SC", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "PG7N32NDHXVN79SC.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "PG7N32NDHXVN79SC.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.4790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "PG7N32NDHXVN79SC.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "PG7N32NDHXVN79SC", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "PG7N32NDHXVN79SC.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "PG7N32NDHXVN79SC.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "235963" + }, + "appliesTo" : [ ] + }, + "PG7N32NDHXVN79SC.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "PG7N32NDHXVN79SC.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PG7N32NDHXVN79SC.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "PG7N32NDHXVN79SC", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "PG7N32NDHXVN79SC.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "PG7N32NDHXVN79SC.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "120387" + }, + "appliesTo" : [ ] + }, + "PG7N32NDHXVN79SC.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "PG7N32NDHXVN79SC.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PG7N32NDHXVN79SC.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "PG7N32NDHXVN79SC", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "PG7N32NDHXVN79SC.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "PG7N32NDHXVN79SC.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.6120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "PG7N32NDHXVN79SC.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "PG7N32NDHXVN79SC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PG7N32NDHXVN79SC.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "PG7N32NDHXVN79SC.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "18.9460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "PG7N32NDHXVN79SC.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "PG7N32NDHXVN79SC", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "PG7N32NDHXVN79SC.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "PG7N32NDHXVN79SC.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "68780" + }, + "appliesTo" : [ ] + }, + "PG7N32NDHXVN79SC.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "PG7N32NDHXVN79SC.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.8450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PG7N32NDHXVN79SC.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "PG7N32NDHXVN79SC", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "PG7N32NDHXVN79SC.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "PG7N32NDHXVN79SC.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "PG7N32NDHXVN79SC.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "PG7N32NDHXVN79SC.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "134754" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PG7N32NDHXVN79SC.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "PG7N32NDHXVN79SC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PG7N32NDHXVN79SC.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "PG7N32NDHXVN79SC.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "154924" + }, + "appliesTo" : [ ] + }, + "PG7N32NDHXVN79SC.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "PG7N32NDHXVN79SC.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PG7N32NDHXVN79SC.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "PG7N32NDHXVN79SC", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "PG7N32NDHXVN79SC.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "PG7N32NDHXVN79SC.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "PG7N32NDHXVN79SC.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "PG7N32NDHXVN79SC.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "196926" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PG7N32NDHXVN79SC.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "PG7N32NDHXVN79SC", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "PG7N32NDHXVN79SC.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "PG7N32NDHXVN79SC.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.8990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "SKBEBKWYFZHQHM9H" : { + "SKBEBKWYFZHQHM9H.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SKBEBKWYFZHQHM9H", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SKBEBKWYFZHQHM9H.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SKBEBKWYFZHQHM9H.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.2520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SKBEBKWYFZHQHM9H.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "SKBEBKWYFZHQHM9H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SKBEBKWYFZHQHM9H.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "SKBEBKWYFZHQHM9H.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39605" + }, + "appliesTo" : [ ] + }, + "SKBEBKWYFZHQHM9H.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "SKBEBKWYFZHQHM9H.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SKBEBKWYFZHQHM9H.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "SKBEBKWYFZHQHM9H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SKBEBKWYFZHQHM9H.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "SKBEBKWYFZHQHM9H.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.4850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SKBEBKWYFZHQHM9H.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "SKBEBKWYFZHQHM9H", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SKBEBKWYFZHQHM9H.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "SKBEBKWYFZHQHM9H.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.3210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SKBEBKWYFZHQHM9H.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "SKBEBKWYFZHQHM9H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SKBEBKWYFZHQHM9H.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "SKBEBKWYFZHQHM9H.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SKBEBKWYFZHQHM9H.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "SKBEBKWYFZHQHM9H.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "77571" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SKBEBKWYFZHQHM9H.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "SKBEBKWYFZHQHM9H", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SKBEBKWYFZHQHM9H.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "SKBEBKWYFZHQHM9H.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "118275" + }, + "appliesTo" : [ ] + }, + "SKBEBKWYFZHQHM9H.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "SKBEBKWYFZHQHM9H.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SKBEBKWYFZHQHM9H.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SKBEBKWYFZHQHM9H", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "SKBEBKWYFZHQHM9H.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SKBEBKWYFZHQHM9H.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34461" + }, + "appliesTo" : [ ] + }, + "SKBEBKWYFZHQHM9H.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SKBEBKWYFZHQHM9H.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SKBEBKWYFZHQHM9H.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SKBEBKWYFZHQHM9H", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "SKBEBKWYFZHQHM9H.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SKBEBKWYFZHQHM9H.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "67489" + }, + "appliesTo" : [ ] + }, + "SKBEBKWYFZHQHM9H.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SKBEBKWYFZHQHM9H.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SKBEBKWYFZHQHM9H.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "SKBEBKWYFZHQHM9H", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SKBEBKWYFZHQHM9H.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "SKBEBKWYFZHQHM9H.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "60342" + }, + "appliesTo" : [ ] + }, + "SKBEBKWYFZHQHM9H.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "SKBEBKWYFZHQHM9H.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SKBEBKWYFZHQHM9H.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "SKBEBKWYFZHQHM9H", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SKBEBKWYFZHQHM9H.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "SKBEBKWYFZHQHM9H.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SKBEBKWYFZHQHM9H.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SKBEBKWYFZHQHM9H", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SKBEBKWYFZHQHM9H.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SKBEBKWYFZHQHM9H.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "98766" + }, + "appliesTo" : [ ] + }, + "SKBEBKWYFZHQHM9H.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SKBEBKWYFZHQHM9H.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SKBEBKWYFZHQHM9H.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SKBEBKWYFZHQHM9H", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "SKBEBKWYFZHQHM9H.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SKBEBKWYFZHQHM9H.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "52518" + }, + "appliesTo" : [ ] + }, + "SKBEBKWYFZHQHM9H.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SKBEBKWYFZHQHM9H.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "SDH7JHR69GKRHZE7" : { + "SDH7JHR69GKRHZE7.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SDH7JHR69GKRHZE7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SDH7JHR69GKRHZE7.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SDH7JHR69GKRHZE7.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3262" + }, + "appliesTo" : [ ] + }, + "SDH7JHR69GKRHZE7.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SDH7JHR69GKRHZE7.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SDH7JHR69GKRHZE7.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "SDH7JHR69GKRHZE7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SDH7JHR69GKRHZE7.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "SDH7JHR69GKRHZE7.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7352" + }, + "appliesTo" : [ ] + }, + "SDH7JHR69GKRHZE7.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "SDH7JHR69GKRHZE7.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SDH7JHR69GKRHZE7.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SDH7JHR69GKRHZE7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SDH7JHR69GKRHZE7.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SDH7JHR69GKRHZE7.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SDH7JHR69GKRHZE7.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SDH7JHR69GKRHZE7.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6132" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SDH7JHR69GKRHZE7.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "SDH7JHR69GKRHZE7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SDH7JHR69GKRHZE7.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "SDH7JHR69GKRHZE7.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SDH7JHR69GKRHZE7.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "SDH7JHR69GKRHZE7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SDH7JHR69GKRHZE7.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "SDH7JHR69GKRHZE7.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SDH7JHR69GKRHZE7.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "SDH7JHR69GKRHZE7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SDH7JHR69GKRHZE7.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "SDH7JHR69GKRHZE7.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2465" + }, + "appliesTo" : [ ] + }, + "SDH7JHR69GKRHZE7.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "SDH7JHR69GKRHZE7.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SDH7JHR69GKRHZE7.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "SDH7JHR69GKRHZE7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SDH7JHR69GKRHZE7.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "SDH7JHR69GKRHZE7.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SDH7JHR69GKRHZE7.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "SDH7JHR69GKRHZE7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SDH7JHR69GKRHZE7.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "SDH7JHR69GKRHZE7.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3751" + }, + "appliesTo" : [ ] + }, + "SDH7JHR69GKRHZE7.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "SDH7JHR69GKRHZE7.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SDH7JHR69GKRHZE7.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SDH7JHR69GKRHZE7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SDH7JHR69GKRHZE7.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SDH7JHR69GKRHZE7.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4202" + }, + "appliesTo" : [ ] + }, + "SDH7JHR69GKRHZE7.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SDH7JHR69GKRHZE7.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SDH7JHR69GKRHZE7.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SDH7JHR69GKRHZE7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SDH7JHR69GKRHZE7.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SDH7JHR69GKRHZE7.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SDH7JHR69GKRHZE7.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "SDH7JHR69GKRHZE7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SDH7JHR69GKRHZE7.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "SDH7JHR69GKRHZE7.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4832" + }, + "appliesTo" : [ ] + }, + "SDH7JHR69GKRHZE7.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "SDH7JHR69GKRHZE7.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SDH7JHR69GKRHZE7.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SDH7JHR69GKRHZE7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SDH7JHR69GKRHZE7.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SDH7JHR69GKRHZE7.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2144" + }, + "appliesTo" : [ ] + }, + "SDH7JHR69GKRHZE7.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SDH7JHR69GKRHZE7.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "VMVVV7NDFCNYYB5X" : { + "VMVVV7NDFCNYYB5X.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "VMVVV7NDFCNYYB5X", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "VMVVV7NDFCNYYB5X.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "VMVVV7NDFCNYYB5X.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "758" + }, + "appliesTo" : [ ] + }, + "VMVVV7NDFCNYYB5X.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "VMVVV7NDFCNYYB5X.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VMVVV7NDFCNYYB5X.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "VMVVV7NDFCNYYB5X", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "VMVVV7NDFCNYYB5X.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "VMVVV7NDFCNYYB5X.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VMVVV7NDFCNYYB5X.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "VMVVV7NDFCNYYB5X", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "VMVVV7NDFCNYYB5X.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "VMVVV7NDFCNYYB5X.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VMVVV7NDFCNYYB5X.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "VMVVV7NDFCNYYB5X", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "VMVVV7NDFCNYYB5X.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "VMVVV7NDFCNYYB5X.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0290000000" + }, + "appliesTo" : [ ] + }, + "VMVVV7NDFCNYYB5X.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "VMVVV7NDFCNYYB5X.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1013" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VMVVV7NDFCNYYB5X.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "VMVVV7NDFCNYYB5X", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "VMVVV7NDFCNYYB5X.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "VMVVV7NDFCNYYB5X.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "701" + }, + "appliesTo" : [ ] + }, + "VMVVV7NDFCNYYB5X.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "VMVVV7NDFCNYYB5X.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VMVVV7NDFCNYYB5X.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "VMVVV7NDFCNYYB5X", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "VMVVV7NDFCNYYB5X.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "VMVVV7NDFCNYYB5X.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1417" + }, + "appliesTo" : [ ] + }, + "VMVVV7NDFCNYYB5X.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "VMVVV7NDFCNYYB5X.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VMVVV7NDFCNYYB5X.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "VMVVV7NDFCNYYB5X", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "VMVVV7NDFCNYYB5X.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "VMVVV7NDFCNYYB5X.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "438" + }, + "appliesTo" : [ ] + }, + "VMVVV7NDFCNYYB5X.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "VMVVV7NDFCNYYB5X.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VMVVV7NDFCNYYB5X.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "VMVVV7NDFCNYYB5X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VMVVV7NDFCNYYB5X.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "VMVVV7NDFCNYYB5X.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "736" + }, + "appliesTo" : [ ] + }, + "VMVVV7NDFCNYYB5X.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "VMVVV7NDFCNYYB5X.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VMVVV7NDFCNYYB5X.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "VMVVV7NDFCNYYB5X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VMVVV7NDFCNYYB5X.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "VMVVV7NDFCNYYB5X.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VMVVV7NDFCNYYB5X.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "VMVVV7NDFCNYYB5X", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "VMVVV7NDFCNYYB5X.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "VMVVV7NDFCNYYB5X.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1710" + }, + "appliesTo" : [ ] + }, + "VMVVV7NDFCNYYB5X.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "VMVVV7NDFCNYYB5X.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VMVVV7NDFCNYYB5X.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "VMVVV7NDFCNYYB5X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VMVVV7NDFCNYYB5X.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "VMVVV7NDFCNYYB5X.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "404" + }, + "appliesTo" : [ ] + }, + "VMVVV7NDFCNYYB5X.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "VMVVV7NDFCNYYB5X.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "Q7DXWWF6MF8PNEWR" : { + "Q7DXWWF6MF8PNEWR.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "Q7DXWWF6MF8PNEWR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q7DXWWF6MF8PNEWR.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "Q7DXWWF6MF8PNEWR.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "Q7DXWWF6MF8PNEWR.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "Q7DXWWF6MF8PNEWR.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3571" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Q7DXWWF6MF8PNEWR.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "Q7DXWWF6MF8PNEWR", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "Q7DXWWF6MF8PNEWR.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "Q7DXWWF6MF8PNEWR.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Q7DXWWF6MF8PNEWR.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Q7DXWWF6MF8PNEWR", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "Q7DXWWF6MF8PNEWR.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Q7DXWWF6MF8PNEWR.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6042" + }, + "appliesTo" : [ ] + }, + "Q7DXWWF6MF8PNEWR.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Q7DXWWF6MF8PNEWR.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Q7DXWWF6MF8PNEWR.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Q7DXWWF6MF8PNEWR", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "Q7DXWWF6MF8PNEWR.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Q7DXWWF6MF8PNEWR.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "Q7DXWWF6MF8PNEWR.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Q7DXWWF6MF8PNEWR.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3124" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Q7DXWWF6MF8PNEWR.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "Q7DXWWF6MF8PNEWR", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "Q7DXWWF6MF8PNEWR.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "Q7DXWWF6MF8PNEWR.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8435" + }, + "appliesTo" : [ ] + }, + "Q7DXWWF6MF8PNEWR.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "Q7DXWWF6MF8PNEWR.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Q7DXWWF6MF8PNEWR.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Q7DXWWF6MF8PNEWR", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "Q7DXWWF6MF8PNEWR.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Q7DXWWF6MF8PNEWR.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1851" + }, + "appliesTo" : [ ] + }, + "Q7DXWWF6MF8PNEWR.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Q7DXWWF6MF8PNEWR.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q7DXWWF6MF8PNEWR.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Q7DXWWF6MF8PNEWR", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "Q7DXWWF6MF8PNEWR.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Q7DXWWF6MF8PNEWR.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Q7DXWWF6MF8PNEWR.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "Q7DXWWF6MF8PNEWR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q7DXWWF6MF8PNEWR.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "Q7DXWWF6MF8PNEWR.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Q7DXWWF6MF8PNEWR.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "Q7DXWWF6MF8PNEWR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q7DXWWF6MF8PNEWR.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "Q7DXWWF6MF8PNEWR.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2080000000" + }, + "appliesTo" : [ ] + }, + "Q7DXWWF6MF8PNEWR.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "Q7DXWWF6MF8PNEWR.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1822" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q7DXWWF6MF8PNEWR.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Q7DXWWF6MF8PNEWR", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "Q7DXWWF6MF8PNEWR.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Q7DXWWF6MF8PNEWR.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2960" + }, + "appliesTo" : [ ] + }, + "Q7DXWWF6MF8PNEWR.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Q7DXWWF6MF8PNEWR.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q7DXWWF6MF8PNEWR.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "Q7DXWWF6MF8PNEWR", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "Q7DXWWF6MF8PNEWR.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "Q7DXWWF6MF8PNEWR.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4998" + }, + "appliesTo" : [ ] + }, + "Q7DXWWF6MF8PNEWR.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "Q7DXWWF6MF8PNEWR.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "JNRAY8EMZWNC3JNN" : { + "JNRAY8EMZWNC3JNN.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "JNRAY8EMZWNC3JNN", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JNRAY8EMZWNC3JNN.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "JNRAY8EMZWNC3JNN.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1894" + }, + "appliesTo" : [ ] + }, + "JNRAY8EMZWNC3JNN.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "JNRAY8EMZWNC3JNN.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "JNRAY8EMZWNC3JNN.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "JNRAY8EMZWNC3JNN", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "JNRAY8EMZWNC3JNN.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "JNRAY8EMZWNC3JNN.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "JNRAY8EMZWNC3JNN.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "JNRAY8EMZWNC3JNN", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JNRAY8EMZWNC3JNN.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "JNRAY8EMZWNC3JNN.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2875" + }, + "appliesTo" : [ ] + }, + "JNRAY8EMZWNC3JNN.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "JNRAY8EMZWNC3JNN.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "JNRAY8EMZWNC3JNN.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "JNRAY8EMZWNC3JNN", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JNRAY8EMZWNC3JNN.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "JNRAY8EMZWNC3JNN.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9051" + }, + "appliesTo" : [ ] + }, + "JNRAY8EMZWNC3JNN.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "JNRAY8EMZWNC3JNN.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JNRAY8EMZWNC3JNN.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "JNRAY8EMZWNC3JNN", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JNRAY8EMZWNC3JNN.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "JNRAY8EMZWNC3JNN.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4371" + }, + "appliesTo" : [ ] + }, + "JNRAY8EMZWNC3JNN.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "JNRAY8EMZWNC3JNN.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "AS5YFH475AAXG3U6" : { + "AS5YFH475AAXG3U6.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "AS5YFH475AAXG3U6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AS5YFH475AAXG3U6.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "AS5YFH475AAXG3U6.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3333000000" + }, + "appliesTo" : [ ] + }, + "AS5YFH475AAXG3U6.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "AS5YFH475AAXG3U6.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2919" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "AS5YFH475AAXG3U6.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "AS5YFH475AAXG3U6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AS5YFH475AAXG3U6.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "AS5YFH475AAXG3U6.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6406000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "AS5YFH475AAXG3U6.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "AS5YFH475AAXG3U6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AS5YFH475AAXG3U6.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "AS5YFH475AAXG3U6.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6815000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "AS5YFH475AAXG3U6.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "AS5YFH475AAXG3U6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AS5YFH475AAXG3U6.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "AS5YFH475AAXG3U6.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2720000000" + }, + "appliesTo" : [ ] + }, + "AS5YFH475AAXG3U6.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "AS5YFH475AAXG3U6.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7148" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AS5YFH475AAXG3U6.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "AS5YFH475AAXG3U6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AS5YFH475AAXG3U6.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "AS5YFH475AAXG3U6.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5452" + }, + "appliesTo" : [ ] + }, + "AS5YFH475AAXG3U6.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "AS5YFH475AAXG3U6.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AS5YFH475AAXG3U6.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "AS5YFH475AAXG3U6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AS5YFH475AAXG3U6.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "AS5YFH475AAXG3U6.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5866000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "AS5YFH475AAXG3U6.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "AS5YFH475AAXG3U6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AS5YFH475AAXG3U6.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "AS5YFH475AAXG3U6.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "AS5YFH475AAXG3U6.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "AS5YFH475AAXG3U6.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14019" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AS5YFH475AAXG3U6.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "AS5YFH475AAXG3U6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AS5YFH475AAXG3U6.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "AS5YFH475AAXG3U6.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5787" + }, + "appliesTo" : [ ] + }, + "AS5YFH475AAXG3U6.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "AS5YFH475AAXG3U6.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "AS5YFH475AAXG3U6.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "AS5YFH475AAXG3U6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AS5YFH475AAXG3U6.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "AS5YFH475AAXG3U6.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2749" + }, + "appliesTo" : [ ] + }, + "AS5YFH475AAXG3U6.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "AS5YFH475AAXG3U6.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3138000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AS5YFH475AAXG3U6.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "AS5YFH475AAXG3U6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AS5YFH475AAXG3U6.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "AS5YFH475AAXG3U6.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7495" + }, + "appliesTo" : [ ] + }, + "AS5YFH475AAXG3U6.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "AS5YFH475AAXG3U6.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2852000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "AS5YFH475AAXG3U6.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "AS5YFH475AAXG3U6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AS5YFH475AAXG3U6.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "AS5YFH475AAXG3U6.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14884" + }, + "appliesTo" : [ ] + }, + "AS5YFH475AAXG3U6.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "AS5YFH475AAXG3U6.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "AS5YFH475AAXG3U6.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "AS5YFH475AAXG3U6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AS5YFH475AAXG3U6.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "AS5YFH475AAXG3U6.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5581000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "K97AXAD4GAYGE99Y" : { + "K97AXAD4GAYGE99Y.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "K97AXAD4GAYGE99Y", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "K97AXAD4GAYGE99Y.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "K97AXAD4GAYGE99Y.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "80506" + }, + "appliesTo" : [ ] + }, + "K97AXAD4GAYGE99Y.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "K97AXAD4GAYGE99Y.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "K97AXAD4GAYGE99Y.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "K97AXAD4GAYGE99Y", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K97AXAD4GAYGE99Y.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "K97AXAD4GAYGE99Y.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "K97AXAD4GAYGE99Y.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "K97AXAD4GAYGE99Y.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "181358" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "K97AXAD4GAYGE99Y.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "K97AXAD4GAYGE99Y", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K97AXAD4GAYGE99Y.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "K97AXAD4GAYGE99Y.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5204000000" + }, + "appliesTo" : [ ] + }, + "K97AXAD4GAYGE99Y.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "K97AXAD4GAYGE99Y.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "92527" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "K97AXAD4GAYGE99Y.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "K97AXAD4GAYGE99Y", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "K97AXAD4GAYGE99Y.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "K97AXAD4GAYGE99Y.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.9580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "K97AXAD4GAYGE99Y.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "K97AXAD4GAYGE99Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K97AXAD4GAYGE99Y.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "K97AXAD4GAYGE99Y.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "K97AXAD4GAYGE99Y.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "K97AXAD4GAYGE99Y.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "84205" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "K97AXAD4GAYGE99Y.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "K97AXAD4GAYGE99Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K97AXAD4GAYGE99Y.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "K97AXAD4GAYGE99Y.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.2966000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "K97AXAD4GAYGE99Y.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "K97AXAD4GAYGE99Y", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K97AXAD4GAYGE99Y.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "K97AXAD4GAYGE99Y.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.6210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "K97AXAD4GAYGE99Y.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "K97AXAD4GAYGE99Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K97AXAD4GAYGE99Y.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "K97AXAD4GAYGE99Y.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "42990" + }, + "appliesTo" : [ ] + }, + "K97AXAD4GAYGE99Y.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "K97AXAD4GAYGE99Y.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9004000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "K97AXAD4GAYGE99Y.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "K97AXAD4GAYGE99Y", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "K97AXAD4GAYGE99Y.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "K97AXAD4GAYGE99Y.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "73261" + }, + "appliesTo" : [ ] + }, + "K97AXAD4GAYGE99Y.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "K97AXAD4GAYGE99Y.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "K97AXAD4GAYGE99Y.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "K97AXAD4GAYGE99Y", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "K97AXAD4GAYGE99Y.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "K97AXAD4GAYGE99Y.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37406" + }, + "appliesTo" : [ ] + }, + "K97AXAD4GAYGE99Y.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "K97AXAD4GAYGE99Y.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "K97AXAD4GAYGE99Y.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "K97AXAD4GAYGE99Y", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "K97AXAD4GAYGE99Y.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "K97AXAD4GAYGE99Y.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "151384" + }, + "appliesTo" : [ ] + }, + "K97AXAD4GAYGE99Y.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "K97AXAD4GAYGE99Y.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "K97AXAD4GAYGE99Y.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "K97AXAD4GAYGE99Y", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K97AXAD4GAYGE99Y.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "K97AXAD4GAYGE99Y.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.6091000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "8QAR2NUMVX46Z9J5" : { + "8QAR2NUMVX46Z9J5.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "8QAR2NUMVX46Z9J5", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "8QAR2NUMVX46Z9J5.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "8QAR2NUMVX46Z9J5.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22358" + }, + "appliesTo" : [ ] + }, + "8QAR2NUMVX46Z9J5.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "8QAR2NUMVX46Z9J5.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8QAR2NUMVX46Z9J5.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "8QAR2NUMVX46Z9J5", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "8QAR2NUMVX46Z9J5.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "8QAR2NUMVX46Z9J5.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "8QAR2NUMVX46Z9J5.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "8QAR2NUMVX46Z9J5.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29728" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8QAR2NUMVX46Z9J5.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "8QAR2NUMVX46Z9J5", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "8QAR2NUMVX46Z9J5.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "8QAR2NUMVX46Z9J5.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33725" + }, + "appliesTo" : [ ] + }, + "8QAR2NUMVX46Z9J5.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "8QAR2NUMVX46Z9J5.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8QAR2NUMVX46Z9J5.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "8QAR2NUMVX46Z9J5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8QAR2NUMVX46Z9J5.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "8QAR2NUMVX46Z9J5.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16002" + }, + "appliesTo" : [ ] + }, + "8QAR2NUMVX46Z9J5.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "8QAR2NUMVX46Z9J5.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8QAR2NUMVX46Z9J5.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "8QAR2NUMVX46Z9J5", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "8QAR2NUMVX46Z9J5.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "8QAR2NUMVX46Z9J5.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20598" + }, + "appliesTo" : [ ] + }, + "8QAR2NUMVX46Z9J5.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "8QAR2NUMVX46Z9J5.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8QAR2NUMVX46Z9J5.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "8QAR2NUMVX46Z9J5", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "8QAR2NUMVX46Z9J5.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "8QAR2NUMVX46Z9J5.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7864" + }, + "appliesTo" : [ ] + }, + "8QAR2NUMVX46Z9J5.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "8QAR2NUMVX46Z9J5.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8QAR2NUMVX46Z9J5.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "8QAR2NUMVX46Z9J5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8QAR2NUMVX46Z9J5.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "8QAR2NUMVX46Z9J5.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8QAR2NUMVX46Z9J5.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "8QAR2NUMVX46Z9J5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8QAR2NUMVX46Z9J5.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "8QAR2NUMVX46Z9J5.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8073" + }, + "appliesTo" : [ ] + }, + "8QAR2NUMVX46Z9J5.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "8QAR2NUMVX46Z9J5.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8QAR2NUMVX46Z9J5.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "8QAR2NUMVX46Z9J5", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "8QAR2NUMVX46Z9J5.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "8QAR2NUMVX46Z9J5.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8QAR2NUMVX46Z9J5.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "8QAR2NUMVX46Z9J5", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "8QAR2NUMVX46Z9J5.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "8QAR2NUMVX46Z9J5.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11860" + }, + "appliesTo" : [ ] + }, + "8QAR2NUMVX46Z9J5.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "8QAR2NUMVX46Z9J5.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8QAR2NUMVX46Z9J5.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "8QAR2NUMVX46Z9J5", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "8QAR2NUMVX46Z9J5.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "8QAR2NUMVX46Z9J5.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "TB387UEUFCNJQBC7" : { + "TB387UEUFCNJQBC7.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TB387UEUFCNJQBC7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TB387UEUFCNJQBC7.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TB387UEUFCNJQBC7.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TB387UEUFCNJQBC7.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "TB387UEUFCNJQBC7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TB387UEUFCNJQBC7.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "TB387UEUFCNJQBC7.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7490000000" + }, + "appliesTo" : [ ] + }, + "TB387UEUFCNJQBC7.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "TB387UEUFCNJQBC7.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6623" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TB387UEUFCNJQBC7.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "TB387UEUFCNJQBC7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TB387UEUFCNJQBC7.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "TB387UEUFCNJQBC7.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5786000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TB387UEUFCNJQBC7.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "TB387UEUFCNJQBC7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TB387UEUFCNJQBC7.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "TB387UEUFCNJQBC7.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9488000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TB387UEUFCNJQBC7.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "TB387UEUFCNJQBC7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TB387UEUFCNJQBC7.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "TB387UEUFCNJQBC7.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TB387UEUFCNJQBC7.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "TB387UEUFCNJQBC7.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25810" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TB387UEUFCNJQBC7.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "TB387UEUFCNJQBC7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TB387UEUFCNJQBC7.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "TB387UEUFCNJQBC7.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12927" + }, + "appliesTo" : [ ] + }, + "TB387UEUFCNJQBC7.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "TB387UEUFCNJQBC7.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TB387UEUFCNJQBC7.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TB387UEUFCNJQBC7", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "TB387UEUFCNJQBC7.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TB387UEUFCNJQBC7.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11251" + }, + "appliesTo" : [ ] + }, + "TB387UEUFCNJQBC7.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TB387UEUFCNJQBC7.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TB387UEUFCNJQBC7.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TB387UEUFCNJQBC7", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "TB387UEUFCNJQBC7.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TB387UEUFCNJQBC7.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5768" + }, + "appliesTo" : [ ] + }, + "TB387UEUFCNJQBC7.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TB387UEUFCNJQBC7.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TB387UEUFCNJQBC7.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TB387UEUFCNJQBC7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TB387UEUFCNJQBC7.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TB387UEUFCNJQBC7.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TB387UEUFCNJQBC7.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TB387UEUFCNJQBC7.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21721" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TB387UEUFCNJQBC7.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "TB387UEUFCNJQBC7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TB387UEUFCNJQBC7.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "TB387UEUFCNJQBC7.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0862000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TB387UEUFCNJQBC7.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "TB387UEUFCNJQBC7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TB387UEUFCNJQBC7.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "TB387UEUFCNJQBC7.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13166" + }, + "appliesTo" : [ ] + }, + "TB387UEUFCNJQBC7.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "TB387UEUFCNJQBC7.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5006000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TB387UEUFCNJQBC7.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TB387UEUFCNJQBC7", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "TB387UEUFCNJQBC7.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TB387UEUFCNJQBC7.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11537" + }, + "appliesTo" : [ ] + }, + "TB387UEUFCNJQBC7.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TB387UEUFCNJQBC7.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "TF7VKDXQVWSCQYBK" : { + "TF7VKDXQVWSCQYBK.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TF7VKDXQVWSCQYBK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "TF7VKDXQVWSCQYBK.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TF7VKDXQVWSCQYBK.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "104" + }, + "appliesTo" : [ ] + }, + "TF7VKDXQVWSCQYBK.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TF7VKDXQVWSCQYBK.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TF7VKDXQVWSCQYBK.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TF7VKDXQVWSCQYBK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "TF7VKDXQVWSCQYBK.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TF7VKDXQVWSCQYBK.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37" + }, + "appliesTo" : [ ] + }, + "TF7VKDXQVWSCQYBK.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TF7VKDXQVWSCQYBK.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0077000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TF7VKDXQVWSCQYBK.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "TF7VKDXQVWSCQYBK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TF7VKDXQVWSCQYBK.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "TF7VKDXQVWSCQYBK.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "109" + }, + "appliesTo" : [ ] + }, + "TF7VKDXQVWSCQYBK.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "TF7VKDXQVWSCQYBK.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TF7VKDXQVWSCQYBK.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "TF7VKDXQVWSCQYBK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "TF7VKDXQVWSCQYBK.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "TF7VKDXQVWSCQYBK.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0119000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TF7VKDXQVWSCQYBK.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TF7VKDXQVWSCQYBK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "TF7VKDXQVWSCQYBK.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TF7VKDXQVWSCQYBK.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TF7VKDXQVWSCQYBK.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TF7VKDXQVWSCQYBK.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "259" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TF7VKDXQVWSCQYBK.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "TF7VKDXQVWSCQYBK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "TF7VKDXQVWSCQYBK.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "TF7VKDXQVWSCQYBK.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "271" + }, + "appliesTo" : [ ] + }, + "TF7VKDXQVWSCQYBK.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "TF7VKDXQVWSCQYBK.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TF7VKDXQVWSCQYBK.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TF7VKDXQVWSCQYBK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "TF7VKDXQVWSCQYBK.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TF7VKDXQVWSCQYBK.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0126000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TF7VKDXQVWSCQYBK.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TF7VKDXQVWSCQYBK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "TF7VKDXQVWSCQYBK.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TF7VKDXQVWSCQYBK.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0072000000" + }, + "appliesTo" : [ ] + }, + "TF7VKDXQVWSCQYBK.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TF7VKDXQVWSCQYBK.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "74" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TF7VKDXQVWSCQYBK.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "TF7VKDXQVWSCQYBK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "TF7VKDXQVWSCQYBK.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "TF7VKDXQVWSCQYBK.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "79" + }, + "appliesTo" : [ ] + }, + "TF7VKDXQVWSCQYBK.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "TF7VKDXQVWSCQYBK.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0073000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TF7VKDXQVWSCQYBK.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "TF7VKDXQVWSCQYBK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "TF7VKDXQVWSCQYBK.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "TF7VKDXQVWSCQYBK.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0115000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TF7VKDXQVWSCQYBK.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "TF7VKDXQVWSCQYBK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TF7VKDXQVWSCQYBK.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "TF7VKDXQVWSCQYBK.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39" + }, + "appliesTo" : [ ] + }, + "TF7VKDXQVWSCQYBK.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "TF7VKDXQVWSCQYBK.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TF7VKDXQVWSCQYBK.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "TF7VKDXQVWSCQYBK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TF7VKDXQVWSCQYBK.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "TF7VKDXQVWSCQYBK.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0131000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "WWNXU2QJU9XYEM5Z" : { + "WWNXU2QJU9XYEM5Z.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "WWNXU2QJU9XYEM5Z", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "WWNXU2QJU9XYEM5Z.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "WWNXU2QJU9XYEM5Z.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1299" + }, + "appliesTo" : [ ] + }, + "WWNXU2QJU9XYEM5Z.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "WWNXU2QJU9XYEM5Z.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WWNXU2QJU9XYEM5Z.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "WWNXU2QJU9XYEM5Z", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "WWNXU2QJU9XYEM5Z.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "WWNXU2QJU9XYEM5Z.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "659" + }, + "appliesTo" : [ ] + }, + "WWNXU2QJU9XYEM5Z.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "WWNXU2QJU9XYEM5Z.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0753000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WWNXU2QJU9XYEM5Z.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "WWNXU2QJU9XYEM5Z", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "WWNXU2QJU9XYEM5Z.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "WWNXU2QJU9XYEM5Z.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1212000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "WWNXU2QJU9XYEM5Z.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "WWNXU2QJU9XYEM5Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WWNXU2QJU9XYEM5Z.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "WWNXU2QJU9XYEM5Z.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1440" + }, + "appliesTo" : [ ] + }, + "WWNXU2QJU9XYEM5Z.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "WWNXU2QJU9XYEM5Z.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WWNXU2QJU9XYEM5Z.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "WWNXU2QJU9XYEM5Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WWNXU2QJU9XYEM5Z.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "WWNXU2QJU9XYEM5Z.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1732000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WWNXU2QJU9XYEM5Z.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "WWNXU2QJU9XYEM5Z", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "WWNXU2QJU9XYEM5Z.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "WWNXU2QJU9XYEM5Z.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3276" + }, + "appliesTo" : [ ] + }, + "WWNXU2QJU9XYEM5Z.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "WWNXU2QJU9XYEM5Z.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WWNXU2QJU9XYEM5Z.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "WWNXU2QJU9XYEM5Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WWNXU2QJU9XYEM5Z.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "WWNXU2QJU9XYEM5Z.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0835000000" + }, + "appliesTo" : [ ] + }, + "WWNXU2QJU9XYEM5Z.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "WWNXU2QJU9XYEM5Z.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "731" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WWNXU2QJU9XYEM5Z.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "WWNXU2QJU9XYEM5Z", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "WWNXU2QJU9XYEM5Z.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "WWNXU2QJU9XYEM5Z.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0576000000" + }, + "appliesTo" : [ ] + }, + "WWNXU2QJU9XYEM5Z.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "WWNXU2QJU9XYEM5Z.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1514" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WWNXU2QJU9XYEM5Z.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "WWNXU2QJU9XYEM5Z", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "WWNXU2QJU9XYEM5Z.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "WWNXU2QJU9XYEM5Z.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "WWNXU2QJU9XYEM5Z.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "WWNXU2QJU9XYEM5Z", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "WWNXU2QJU9XYEM5Z.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "WWNXU2QJU9XYEM5Z.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1332000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WWNXU2QJU9XYEM5Z.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "WWNXU2QJU9XYEM5Z", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "WWNXU2QJU9XYEM5Z.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "WWNXU2QJU9XYEM5Z.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1661" + }, + "appliesTo" : [ ] + }, + "WWNXU2QJU9XYEM5Z.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "WWNXU2QJU9XYEM5Z.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0632000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WWNXU2QJU9XYEM5Z.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "WWNXU2QJU9XYEM5Z", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "WWNXU2QJU9XYEM5Z.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "WWNXU2QJU9XYEM5Z.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2911" + }, + "appliesTo" : [ ] + }, + "WWNXU2QJU9XYEM5Z.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "WWNXU2QJU9XYEM5Z.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "27HV9GJNZPAQHPXQ" : { + "27HV9GJNZPAQHPXQ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "27HV9GJNZPAQHPXQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "27HV9GJNZPAQHPXQ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "27HV9GJNZPAQHPXQ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "30.7000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "27HV9GJNZPAQHPXQ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "27HV9GJNZPAQHPXQ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "27HV9GJNZPAQHPXQ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "27HV9GJNZPAQHPXQ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "29.4670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "27HV9GJNZPAQHPXQ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "27HV9GJNZPAQHPXQ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "27HV9GJNZPAQHPXQ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "27HV9GJNZPAQHPXQ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "253334" + }, + "appliesTo" : [ ] + }, + "27HV9GJNZPAQHPXQ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "27HV9GJNZPAQHPXQ.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "27HV9GJNZPAQHPXQ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "27HV9GJNZPAQHPXQ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "27HV9GJNZPAQHPXQ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "27HV9GJNZPAQHPXQ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "27HV9GJNZPAQHPXQ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "27HV9GJNZPAQHPXQ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "656471" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "27HV9GJNZPAQHPXQ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "27HV9GJNZPAQHPXQ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "27HV9GJNZPAQHPXQ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "27HV9GJNZPAQHPXQ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "25.5360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "27HV9GJNZPAQHPXQ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "27HV9GJNZPAQHPXQ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "27HV9GJNZPAQHPXQ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "27HV9GJNZPAQHPXQ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "339189" + }, + "appliesTo" : [ ] + }, + "27HV9GJNZPAQHPXQ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "27HV9GJNZPAQHPXQ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.9070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "27HV9GJNZPAQHPXQ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "27HV9GJNZPAQHPXQ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "27HV9GJNZPAQHPXQ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "27HV9GJNZPAQHPXQ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "26.1790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "27HV9GJNZPAQHPXQ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "27HV9GJNZPAQHPXQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "27HV9GJNZPAQHPXQ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "27HV9GJNZPAQHPXQ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "263414" + }, + "appliesTo" : [ ] + }, + "27HV9GJNZPAQHPXQ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "27HV9GJNZPAQHPXQ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "27HV9GJNZPAQHPXQ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "27HV9GJNZPAQHPXQ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "27HV9GJNZPAQHPXQ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "27HV9GJNZPAQHPXQ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "331365" + }, + "appliesTo" : [ ] + }, + "27HV9GJNZPAQHPXQ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "27HV9GJNZPAQHPXQ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.6090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "27HV9GJNZPAQHPXQ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "27HV9GJNZPAQHPXQ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "27HV9GJNZPAQHPXQ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "27HV9GJNZPAQHPXQ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "127353" + }, + "appliesTo" : [ ] + }, + "27HV9GJNZPAQHPXQ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "27HV9GJNZPAQHPXQ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.5380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "27HV9GJNZPAQHPXQ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "27HV9GJNZPAQHPXQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "27HV9GJNZPAQHPXQ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "27HV9GJNZPAQHPXQ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "132496" + }, + "appliesTo" : [ ] + }, + "27HV9GJNZPAQHPXQ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "27HV9GJNZPAQHPXQ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.1250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "27HV9GJNZPAQHPXQ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "27HV9GJNZPAQHPXQ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "27HV9GJNZPAQHPXQ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "27HV9GJNZPAQHPXQ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "675978" + }, + "appliesTo" : [ ] + }, + "27HV9GJNZPAQHPXQ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "27HV9GJNZPAQHPXQ.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "FQFTKTSPGMBGY47W" : { + "FQFTKTSPGMBGY47W.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "FQFTKTSPGMBGY47W", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FQFTKTSPGMBGY47W.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "FQFTKTSPGMBGY47W.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "40567" + }, + "appliesTo" : [ ] + }, + "FQFTKTSPGMBGY47W.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "FQFTKTSPGMBGY47W.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FQFTKTSPGMBGY47W.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "FQFTKTSPGMBGY47W", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FQFTKTSPGMBGY47W.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "FQFTKTSPGMBGY47W.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20424" + }, + "appliesTo" : [ ] + }, + "FQFTKTSPGMBGY47W.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "FQFTKTSPGMBGY47W.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7772000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FQFTKTSPGMBGY47W.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "FQFTKTSPGMBGY47W", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "FQFTKTSPGMBGY47W.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "FQFTKTSPGMBGY47W.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19526" + }, + "appliesTo" : [ ] + }, + "FQFTKTSPGMBGY47W.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "FQFTKTSPGMBGY47W.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FQFTKTSPGMBGY47W.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "FQFTKTSPGMBGY47W", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FQFTKTSPGMBGY47W.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "FQFTKTSPGMBGY47W.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7572000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FQFTKTSPGMBGY47W.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "FQFTKTSPGMBGY47W", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FQFTKTSPGMBGY47W.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "FQFTKTSPGMBGY47W.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8681000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FQFTKTSPGMBGY47W.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "FQFTKTSPGMBGY47W", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FQFTKTSPGMBGY47W.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "FQFTKTSPGMBGY47W.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15868" + }, + "appliesTo" : [ ] + }, + "FQFTKTSPGMBGY47W.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "FQFTKTSPGMBGY47W.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FQFTKTSPGMBGY47W.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "FQFTKTSPGMBGY47W", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FQFTKTSPGMBGY47W.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "FQFTKTSPGMBGY47W.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5217000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FQFTKTSPGMBGY47W.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "FQFTKTSPGMBGY47W", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FQFTKTSPGMBGY47W.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "FQFTKTSPGMBGY47W.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8005" + }, + "appliesTo" : [ ] + }, + "FQFTKTSPGMBGY47W.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "FQFTKTSPGMBGY47W.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9138000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FQFTKTSPGMBGY47W.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "FQFTKTSPGMBGY47W", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "FQFTKTSPGMBGY47W.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "FQFTKTSPGMBGY47W.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "FQFTKTSPGMBGY47W.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "FQFTKTSPGMBGY47W.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14944" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FQFTKTSPGMBGY47W.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "FQFTKTSPGMBGY47W", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "FQFTKTSPGMBGY47W.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "FQFTKTSPGMBGY47W.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7534" + }, + "appliesTo" : [ ] + }, + "FQFTKTSPGMBGY47W.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "FQFTKTSPGMBGY47W.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FQFTKTSPGMBGY47W.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "FQFTKTSPGMBGY47W", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "FQFTKTSPGMBGY47W.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "FQFTKTSPGMBGY47W.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38314" + }, + "appliesTo" : [ ] + }, + "FQFTKTSPGMBGY47W.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "FQFTKTSPGMBGY47W.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FQFTKTSPGMBGY47W.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "FQFTKTSPGMBGY47W", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FQFTKTSPGMBGY47W.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "FQFTKTSPGMBGY47W.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5973000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "48VURD6MVAZ3M5JX" : { + "48VURD6MVAZ3M5JX.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "48VURD6MVAZ3M5JX", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "48VURD6MVAZ3M5JX.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "48VURD6MVAZ3M5JX.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7410" + }, + "appliesTo" : [ ] + }, + "48VURD6MVAZ3M5JX.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "48VURD6MVAZ3M5JX.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "48VURD6MVAZ3M5JX.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "48VURD6MVAZ3M5JX", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "48VURD6MVAZ3M5JX.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "48VURD6MVAZ3M5JX.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6226" + }, + "appliesTo" : [ ] + }, + "48VURD6MVAZ3M5JX.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "48VURD6MVAZ3M5JX.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "48VURD6MVAZ3M5JX.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "48VURD6MVAZ3M5JX", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "48VURD6MVAZ3M5JX.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "48VURD6MVAZ3M5JX.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "48VURD6MVAZ3M5JX.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "48VURD6MVAZ3M5JX", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "48VURD6MVAZ3M5JX.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "48VURD6MVAZ3M5JX.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9391" + }, + "appliesTo" : [ ] + }, + "48VURD6MVAZ3M5JX.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "48VURD6MVAZ3M5JX.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "48VURD6MVAZ3M5JX.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "48VURD6MVAZ3M5JX", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "48VURD6MVAZ3M5JX.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "48VURD6MVAZ3M5JX.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1420000000" + }, + "appliesTo" : [ ] + }, + "48VURD6MVAZ3M5JX.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "48VURD6MVAZ3M5JX.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2306" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "48VURD6MVAZ3M5JX.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "48VURD6MVAZ3M5JX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "48VURD6MVAZ3M5JX.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "48VURD6MVAZ3M5JX.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4000" + }, + "appliesTo" : [ ] + }, + "48VURD6MVAZ3M5JX.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "48VURD6MVAZ3M5JX.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "48VURD6MVAZ3M5JX.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "48VURD6MVAZ3M5JX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "48VURD6MVAZ3M5JX.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "48VURD6MVAZ3M5JX.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "48VURD6MVAZ3M5JX.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "48VURD6MVAZ3M5JX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "48VURD6MVAZ3M5JX.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "48VURD6MVAZ3M5JX.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "48VURD6MVAZ3M5JX.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "48VURD6MVAZ3M5JX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "48VURD6MVAZ3M5JX.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "48VURD6MVAZ3M5JX.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2041" + }, + "appliesTo" : [ ] + }, + "48VURD6MVAZ3M5JX.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "48VURD6MVAZ3M5JX.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "48VURD6MVAZ3M5JX.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "48VURD6MVAZ3M5JX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "48VURD6MVAZ3M5JX.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "48VURD6MVAZ3M5JX.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "48VURD6MVAZ3M5JX.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "48VURD6MVAZ3M5JX.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3478" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "48VURD6MVAZ3M5JX.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "48VURD6MVAZ3M5JX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "48VURD6MVAZ3M5JX.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "48VURD6MVAZ3M5JX.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6307" + }, + "appliesTo" : [ ] + }, + "48VURD6MVAZ3M5JX.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "48VURD6MVAZ3M5JX.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "RHMYCN6PD6GHSQUU" : { + "RHMYCN6PD6GHSQUU.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "RHMYCN6PD6GHSQUU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RHMYCN6PD6GHSQUU.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "RHMYCN6PD6GHSQUU.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13846" + }, + "appliesTo" : [ ] + }, + "RHMYCN6PD6GHSQUU.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "RHMYCN6PD6GHSQUU.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RHMYCN6PD6GHSQUU.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "RHMYCN6PD6GHSQUU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "RHMYCN6PD6GHSQUU.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "RHMYCN6PD6GHSQUU.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11549" + }, + "appliesTo" : [ ] + }, + "RHMYCN6PD6GHSQUU.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "RHMYCN6PD6GHSQUU.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RHMYCN6PD6GHSQUU.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "RHMYCN6PD6GHSQUU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RHMYCN6PD6GHSQUU.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "RHMYCN6PD6GHSQUU.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RHMYCN6PD6GHSQUU.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "RHMYCN6PD6GHSQUU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RHMYCN6PD6GHSQUU.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "RHMYCN6PD6GHSQUU.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "RHMYCN6PD6GHSQUU.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "RHMYCN6PD6GHSQUU.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6353" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RHMYCN6PD6GHSQUU.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "RHMYCN6PD6GHSQUU", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "RHMYCN6PD6GHSQUU.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "RHMYCN6PD6GHSQUU.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6143" + }, + "appliesTo" : [ ] + }, + "RHMYCN6PD6GHSQUU.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "RHMYCN6PD6GHSQUU.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RHMYCN6PD6GHSQUU.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "RHMYCN6PD6GHSQUU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RHMYCN6PD6GHSQUU.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "RHMYCN6PD6GHSQUU.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2690000000" + }, + "appliesTo" : [ ] + }, + "RHMYCN6PD6GHSQUU.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "RHMYCN6PD6GHSQUU.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7064" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RHMYCN6PD6GHSQUU.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "RHMYCN6PD6GHSQUU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RHMYCN6PD6GHSQUU.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "RHMYCN6PD6GHSQUU.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RHMYCN6PD6GHSQUU.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "RHMYCN6PD6GHSQUU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "RHMYCN6PD6GHSQUU.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "RHMYCN6PD6GHSQUU.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5524" + }, + "appliesTo" : [ ] + }, + "RHMYCN6PD6GHSQUU.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "RHMYCN6PD6GHSQUU.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RHMYCN6PD6GHSQUU.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "RHMYCN6PD6GHSQUU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RHMYCN6PD6GHSQUU.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "RHMYCN6PD6GHSQUU.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RHMYCN6PD6GHSQUU.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "RHMYCN6PD6GHSQUU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "RHMYCN6PD6GHSQUU.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "RHMYCN6PD6GHSQUU.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2819" + }, + "appliesTo" : [ ] + }, + "RHMYCN6PD6GHSQUU.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "RHMYCN6PD6GHSQUU.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RHMYCN6PD6GHSQUU.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "RHMYCN6PD6GHSQUU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RHMYCN6PD6GHSQUU.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "RHMYCN6PD6GHSQUU.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RHMYCN6PD6GHSQUU.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "RHMYCN6PD6GHSQUU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RHMYCN6PD6GHSQUU.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "RHMYCN6PD6GHSQUU.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3241" + }, + "appliesTo" : [ ] + }, + "RHMYCN6PD6GHSQUU.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "RHMYCN6PD6GHSQUU.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "FUJ2WGMJU3VK73ZN" : { + "FUJ2WGMJU3VK73ZN.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "FUJ2WGMJU3VK73ZN", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "FUJ2WGMJU3VK73ZN.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "FUJ2WGMJU3VK73ZN.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FUJ2WGMJU3VK73ZN.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "FUJ2WGMJU3VK73ZN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FUJ2WGMJU3VK73ZN.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "FUJ2WGMJU3VK73ZN.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4490000000" + }, + "appliesTo" : [ ] + }, + "FUJ2WGMJU3VK73ZN.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "FUJ2WGMJU3VK73ZN.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3999" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FUJ2WGMJU3VK73ZN.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "FUJ2WGMJU3VK73ZN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FUJ2WGMJU3VK73ZN.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "FUJ2WGMJU3VK73ZN.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FUJ2WGMJU3VK73ZN.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "FUJ2WGMJU3VK73ZN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FUJ2WGMJU3VK73ZN.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "FUJ2WGMJU3VK73ZN.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7783" + }, + "appliesTo" : [ ] + }, + "FUJ2WGMJU3VK73ZN.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "FUJ2WGMJU3VK73ZN.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FUJ2WGMJU3VK73ZN.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "FUJ2WGMJU3VK73ZN", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "FUJ2WGMJU3VK73ZN.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "FUJ2WGMJU3VK73ZN.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18251" + }, + "appliesTo" : [ ] + }, + "FUJ2WGMJU3VK73ZN.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "FUJ2WGMJU3VK73ZN.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FUJ2WGMJU3VK73ZN.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "FUJ2WGMJU3VK73ZN", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "FUJ2WGMJU3VK73ZN.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "FUJ2WGMJU3VK73ZN.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3507" + }, + "appliesTo" : [ ] + }, + "FUJ2WGMJU3VK73ZN.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "FUJ2WGMJU3VK73ZN.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FUJ2WGMJU3VK73ZN.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "FUJ2WGMJU3VK73ZN", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "FUJ2WGMJU3VK73ZN.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "FUJ2WGMJU3VK73ZN.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FUJ2WGMJU3VK73ZN.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "FUJ2WGMJU3VK73ZN", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "FUJ2WGMJU3VK73ZN.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "FUJ2WGMJU3VK73ZN.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9333" + }, + "appliesTo" : [ ] + }, + "FUJ2WGMJU3VK73ZN.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "FUJ2WGMJU3VK73ZN.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FUJ2WGMJU3VK73ZN.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "FUJ2WGMJU3VK73ZN", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "FUJ2WGMJU3VK73ZN.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "FUJ2WGMJU3VK73ZN.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "FUJ2WGMJU3VK73ZN.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "FUJ2WGMJU3VK73ZN.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12146" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FUJ2WGMJU3VK73ZN.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "FUJ2WGMJU3VK73ZN", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "FUJ2WGMJU3VK73ZN.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "FUJ2WGMJU3VK73ZN.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6475" + }, + "appliesTo" : [ ] + }, + "FUJ2WGMJU3VK73ZN.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "FUJ2WGMJU3VK73ZN.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FUJ2WGMJU3VK73ZN.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "FUJ2WGMJU3VK73ZN", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "FUJ2WGMJU3VK73ZN.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "FUJ2WGMJU3VK73ZN.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "FUJ2WGMJU3VK73ZN.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "FUJ2WGMJU3VK73ZN.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6808" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "57XGZG7W7W67682J" : { + "57XGZG7W7W67682J.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "57XGZG7W7W67682J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "57XGZG7W7W67682J.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "57XGZG7W7W67682J.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1166" + }, + "appliesTo" : [ ] + }, + "57XGZG7W7W67682J.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "57XGZG7W7W67682J.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "57XGZG7W7W67682J.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "57XGZG7W7W67682J", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "57XGZG7W7W67682J.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "57XGZG7W7W67682J.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2664" + }, + "appliesTo" : [ ] + }, + "57XGZG7W7W67682J.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "57XGZG7W7W67682J.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "57XGZG7W7W67682J.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "57XGZG7W7W67682J", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "57XGZG7W7W67682J.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "57XGZG7W7W67682J.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "57XGZG7W7W67682J.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "57XGZG7W7W67682J.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1083" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "57XGZG7W7W67682J.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "57XGZG7W7W67682J", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "57XGZG7W7W67682J.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "57XGZG7W7W67682J.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1146000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "57XGZG7W7W67682J.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "57XGZG7W7W67682J", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "57XGZG7W7W67682J.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "57XGZG7W7W67682J.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1075000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "57XGZG7W7W67682J.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "57XGZG7W7W67682J", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "57XGZG7W7W67682J.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "57XGZG7W7W67682J.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "578" + }, + "appliesTo" : [ ] + }, + "57XGZG7W7W67682J.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "57XGZG7W7W67682J.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "57XGZG7W7W67682J.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "57XGZG7W7W67682J", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "57XGZG7W7W67682J.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "57XGZG7W7W67682J.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "665" + }, + "appliesTo" : [ ] + }, + "57XGZG7W7W67682J.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "57XGZG7W7W67682J.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0853000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "57XGZG7W7W67682J.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "57XGZG7W7W67682J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "57XGZG7W7W67682J.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "57XGZG7W7W67682J.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1384000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "57XGZG7W7W67682J.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "57XGZG7W7W67682J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "57XGZG7W7W67682J.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "57XGZG7W7W67682J.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "327" + }, + "appliesTo" : [ ] + }, + "57XGZG7W7W67682J.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "57XGZG7W7W67682J.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0973000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "57XGZG7W7W67682J.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "57XGZG7W7W67682J", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "57XGZG7W7W67682J.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "57XGZG7W7W67682J.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2880" + }, + "appliesTo" : [ ] + }, + "57XGZG7W7W67682J.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "57XGZG7W7W67682J.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "57XGZG7W7W67682J.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "57XGZG7W7W67682J", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "57XGZG7W7W67682J.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "57XGZG7W7W67682J.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "284" + }, + "appliesTo" : [ ] + }, + "57XGZG7W7W67682J.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "57XGZG7W7W67682J.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0925000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "57XGZG7W7W67682J.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "57XGZG7W7W67682J", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "57XGZG7W7W67682J.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "57XGZG7W7W67682J.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1281000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "KZTDUURKCC3R7F95" : { + "KZTDUURKCC3R7F95.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "KZTDUURKCC3R7F95", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KZTDUURKCC3R7F95.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "KZTDUURKCC3R7F95.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17754" + }, + "appliesTo" : [ ] + }, + "KZTDUURKCC3R7F95.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "KZTDUURKCC3R7F95.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KZTDUURKCC3R7F95.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "KZTDUURKCC3R7F95", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KZTDUURKCC3R7F95.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "KZTDUURKCC3R7F95.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34038" + }, + "appliesTo" : [ ] + }, + "KZTDUURKCC3R7F95.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "KZTDUURKCC3R7F95.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KZTDUURKCC3R7F95.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "KZTDUURKCC3R7F95", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KZTDUURKCC3R7F95.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "KZTDUURKCC3R7F95.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12676" + }, + "appliesTo" : [ ] + }, + "KZTDUURKCC3R7F95.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "KZTDUURKCC3R7F95.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KZTDUURKCC3R7F95.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "KZTDUURKCC3R7F95", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KZTDUURKCC3R7F95.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "KZTDUURKCC3R7F95.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6374" + }, + "appliesTo" : [ ] + }, + "KZTDUURKCC3R7F95.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "KZTDUURKCC3R7F95.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KZTDUURKCC3R7F95.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "KZTDUURKCC3R7F95", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KZTDUURKCC3R7F95.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "KZTDUURKCC3R7F95.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KZTDUURKCC3R7F95.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "KZTDUURKCC3R7F95", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KZTDUURKCC3R7F95.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "KZTDUURKCC3R7F95.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13201" + }, + "appliesTo" : [ ] + }, + "KZTDUURKCC3R7F95.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "KZTDUURKCC3R7F95.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KZTDUURKCC3R7F95.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "KZTDUURKCC3R7F95", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KZTDUURKCC3R7F95.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "KZTDUURKCC3R7F95.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35349" + }, + "appliesTo" : [ ] + }, + "KZTDUURKCC3R7F95.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "KZTDUURKCC3R7F95.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KZTDUURKCC3R7F95.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "KZTDUURKCC3R7F95", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KZTDUURKCC3R7F95.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "KZTDUURKCC3R7F95.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6560000000" + }, + "appliesTo" : [ ] + }, + "KZTDUURKCC3R7F95.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "KZTDUURKCC3R7F95.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17227" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KZTDUURKCC3R7F95.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "KZTDUURKCC3R7F95", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KZTDUURKCC3R7F95.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "KZTDUURKCC3R7F95.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KZTDUURKCC3R7F95.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "KZTDUURKCC3R7F95", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KZTDUURKCC3R7F95.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "KZTDUURKCC3R7F95.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6642" + }, + "appliesTo" : [ ] + }, + "KZTDUURKCC3R7F95.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "KZTDUURKCC3R7F95.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KZTDUURKCC3R7F95.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "KZTDUURKCC3R7F95", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KZTDUURKCC3R7F95.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "KZTDUURKCC3R7F95.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KZTDUURKCC3R7F95.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "KZTDUURKCC3R7F95", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KZTDUURKCC3R7F95.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "KZTDUURKCC3R7F95.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "QY3YSEST3C6FQNQH" : { + "QY3YSEST3C6FQNQH.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "QY3YSEST3C6FQNQH", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QY3YSEST3C6FQNQH.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "QY3YSEST3C6FQNQH.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0231000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QY3YSEST3C6FQNQH.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QY3YSEST3C6FQNQH", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QY3YSEST3C6FQNQH.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QY3YSEST3C6FQNQH.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "458" + }, + "appliesTo" : [ ] + }, + "QY3YSEST3C6FQNQH.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QY3YSEST3C6FQNQH.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QY3YSEST3C6FQNQH.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "QY3YSEST3C6FQNQH", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QY3YSEST3C6FQNQH.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "QY3YSEST3C6FQNQH.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QY3YSEST3C6FQNQH.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "QY3YSEST3C6FQNQH", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QY3YSEST3C6FQNQH.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "QY3YSEST3C6FQNQH.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "550" + }, + "appliesTo" : [ ] + }, + "QY3YSEST3C6FQNQH.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "QY3YSEST3C6FQNQH.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QY3YSEST3C6FQNQH.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QY3YSEST3C6FQNQH", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QY3YSEST3C6FQNQH.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QY3YSEST3C6FQNQH.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0287000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QY3YSEST3C6FQNQH.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "QY3YSEST3C6FQNQH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QY3YSEST3C6FQNQH.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "QY3YSEST3C6FQNQH.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QY3YSEST3C6FQNQH.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "QY3YSEST3C6FQNQH.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "270" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QY3YSEST3C6FQNQH.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QY3YSEST3C6FQNQH", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QY3YSEST3C6FQNQH.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QY3YSEST3C6FQNQH.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "120" + }, + "appliesTo" : [ ] + }, + "QY3YSEST3C6FQNQH.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QY3YSEST3C6FQNQH.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0137000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QY3YSEST3C6FQNQH.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "QY3YSEST3C6FQNQH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QY3YSEST3C6FQNQH.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "QY3YSEST3C6FQNQH.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0157000000" + }, + "appliesTo" : [ ] + }, + "QY3YSEST3C6FQNQH.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "QY3YSEST3C6FQNQH.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "138" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QY3YSEST3C6FQNQH.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "QY3YSEST3C6FQNQH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QY3YSEST3C6FQNQH.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "QY3YSEST3C6FQNQH.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0331000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QY3YSEST3C6FQNQH.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QY3YSEST3C6FQNQH", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QY3YSEST3C6FQNQH.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QY3YSEST3C6FQNQH.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QY3YSEST3C6FQNQH.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QY3YSEST3C6FQNQH.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "235" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QY3YSEST3C6FQNQH.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QY3YSEST3C6FQNQH", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QY3YSEST3C6FQNQH.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QY3YSEST3C6FQNQH.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "244" + }, + "appliesTo" : [ ] + }, + "QY3YSEST3C6FQNQH.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QY3YSEST3C6FQNQH.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0093000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QY3YSEST3C6FQNQH.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "QY3YSEST3C6FQNQH", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QY3YSEST3C6FQNQH.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "QY3YSEST3C6FQNQH.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "280" + }, + "appliesTo" : [ ] + }, + "QY3YSEST3C6FQNQH.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "QY3YSEST3C6FQNQH.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0107000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "JRRHF5CXWN8M3MCY" : { + "JRRHF5CXWN8M3MCY.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "JRRHF5CXWN8M3MCY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JRRHF5CXWN8M3MCY.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "JRRHF5CXWN8M3MCY.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15276" + }, + "appliesTo" : [ ] + }, + "JRRHF5CXWN8M3MCY.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "JRRHF5CXWN8M3MCY.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "JRRHF5CXWN8M3MCY.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "JRRHF5CXWN8M3MCY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "JRRHF5CXWN8M3MCY.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "JRRHF5CXWN8M3MCY.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "JRRHF5CXWN8M3MCY.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "JRRHF5CXWN8M3MCY", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "JRRHF5CXWN8M3MCY.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "JRRHF5CXWN8M3MCY.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6950000000" + }, + "appliesTo" : [ ] + }, + "JRRHF5CXWN8M3MCY.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "JRRHF5CXWN8M3MCY.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18277" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "JRRHF5CXWN8M3MCY.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "JRRHF5CXWN8M3MCY", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JRRHF5CXWN8M3MCY.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "JRRHF5CXWN8M3MCY.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23574" + }, + "appliesTo" : [ ] + }, + "JRRHF5CXWN8M3MCY.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "JRRHF5CXWN8M3MCY.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JRRHF5CXWN8M3MCY.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "JRRHF5CXWN8M3MCY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "JRRHF5CXWN8M3MCY.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "JRRHF5CXWN8M3MCY.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35786" + }, + "appliesTo" : [ ] + }, + "JRRHF5CXWN8M3MCY.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "JRRHF5CXWN8M3MCY.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "JRRHF5CXWN8M3MCY.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "JRRHF5CXWN8M3MCY", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JRRHF5CXWN8M3MCY.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "JRRHF5CXWN8M3MCY.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13303" + }, + "appliesTo" : [ ] + }, + "JRRHF5CXWN8M3MCY.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "JRRHF5CXWN8M3MCY.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JRRHF5CXWN8M3MCY.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "JRRHF5CXWN8M3MCY", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "JRRHF5CXWN8M3MCY.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "JRRHF5CXWN8M3MCY.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6820" + }, + "appliesTo" : [ ] + }, + "JRRHF5CXWN8M3MCY.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "JRRHF5CXWN8M3MCY.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "JRRHF5CXWN8M3MCY.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "JRRHF5CXWN8M3MCY", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JRRHF5CXWN8M3MCY.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "JRRHF5CXWN8M3MCY.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "JRRHF5CXWN8M3MCY.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "JRRHF5CXWN8M3MCY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JRRHF5CXWN8M3MCY.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "JRRHF5CXWN8M3MCY.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "JRRHF5CXWN8M3MCY.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "JRRHF5CXWN8M3MCY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JRRHF5CXWN8M3MCY.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "JRRHF5CXWN8M3MCY.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7822" + }, + "appliesTo" : [ ] + }, + "JRRHF5CXWN8M3MCY.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "JRRHF5CXWN8M3MCY.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "JRRHF5CXWN8M3MCY.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "JRRHF5CXWN8M3MCY", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JRRHF5CXWN8M3MCY.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "JRRHF5CXWN8M3MCY.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12562" + }, + "appliesTo" : [ ] + }, + "JRRHF5CXWN8M3MCY.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "JRRHF5CXWN8M3MCY.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "9CHFMGVK3AF7D8KU" : { + "9CHFMGVK3AF7D8KU.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "9CHFMGVK3AF7D8KU", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "9CHFMGVK3AF7D8KU.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "9CHFMGVK3AF7D8KU.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3313" + }, + "appliesTo" : [ ] + }, + "9CHFMGVK3AF7D8KU.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "9CHFMGVK3AF7D8KU.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9CHFMGVK3AF7D8KU.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "9CHFMGVK3AF7D8KU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "9CHFMGVK3AF7D8KU.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "9CHFMGVK3AF7D8KU.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7723" + }, + "appliesTo" : [ ] + }, + "9CHFMGVK3AF7D8KU.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "9CHFMGVK3AF7D8KU.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9CHFMGVK3AF7D8KU.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "9CHFMGVK3AF7D8KU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9CHFMGVK3AF7D8KU.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "9CHFMGVK3AF7D8KU.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8632" + }, + "appliesTo" : [ ] + }, + "9CHFMGVK3AF7D8KU.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "9CHFMGVK3AF7D8KU.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9CHFMGVK3AF7D8KU.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "9CHFMGVK3AF7D8KU", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9CHFMGVK3AF7D8KU.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "9CHFMGVK3AF7D8KU.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9CHFMGVK3AF7D8KU.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "9CHFMGVK3AF7D8KU", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "9CHFMGVK3AF7D8KU.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "9CHFMGVK3AF7D8KU.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9CHFMGVK3AF7D8KU.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "9CHFMGVK3AF7D8KU", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "9CHFMGVK3AF7D8KU.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "9CHFMGVK3AF7D8KU.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6087" + }, + "appliesTo" : [ ] + }, + "9CHFMGVK3AF7D8KU.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "9CHFMGVK3AF7D8KU.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9CHFMGVK3AF7D8KU.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "9CHFMGVK3AF7D8KU", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9CHFMGVK3AF7D8KU.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "9CHFMGVK3AF7D8KU.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14961" + }, + "appliesTo" : [ ] + }, + "9CHFMGVK3AF7D8KU.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "9CHFMGVK3AF7D8KU.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9CHFMGVK3AF7D8KU.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "9CHFMGVK3AF7D8KU", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "9CHFMGVK3AF7D8KU.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "9CHFMGVK3AF7D8KU.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4830000000" + }, + "appliesTo" : [ ] + }, + "9CHFMGVK3AF7D8KU.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "9CHFMGVK3AF7D8KU.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8945" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9CHFMGVK3AF7D8KU.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "9CHFMGVK3AF7D8KU", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "9CHFMGVK3AF7D8KU.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "9CHFMGVK3AF7D8KU.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21221" + }, + "appliesTo" : [ ] + }, + "9CHFMGVK3AF7D8KU.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "9CHFMGVK3AF7D8KU.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9CHFMGVK3AF7D8KU.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "9CHFMGVK3AF7D8KU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9CHFMGVK3AF7D8KU.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "9CHFMGVK3AF7D8KU.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9CHFMGVK3AF7D8KU.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "9CHFMGVK3AF7D8KU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9CHFMGVK3AF7D8KU.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "9CHFMGVK3AF7D8KU.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3823" + }, + "appliesTo" : [ ] + }, + "9CHFMGVK3AF7D8KU.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "9CHFMGVK3AF7D8KU.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "9YXTC4KPBJSYNVNU" : { + "9YXTC4KPBJSYNVNU.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "9YXTC4KPBJSYNVNU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9YXTC4KPBJSYNVNU.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "9YXTC4KPBJSYNVNU.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "141452" + }, + "appliesTo" : [ ] + }, + "9YXTC4KPBJSYNVNU.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "9YXTC4KPBJSYNVNU.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9YXTC4KPBJSYNVNU.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "9YXTC4KPBJSYNVNU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9YXTC4KPBJSYNVNU.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "9YXTC4KPBJSYNVNU.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "70806" + }, + "appliesTo" : [ ] + }, + "9YXTC4KPBJSYNVNU.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "9YXTC4KPBJSYNVNU.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.0830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9YXTC4KPBJSYNVNU.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "9YXTC4KPBJSYNVNU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9YXTC4KPBJSYNVNU.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "9YXTC4KPBJSYNVNU.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "209343" + }, + "appliesTo" : [ ] + }, + "9YXTC4KPBJSYNVNU.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "9YXTC4KPBJSYNVNU.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.9660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9YXTC4KPBJSYNVNU.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "9YXTC4KPBJSYNVNU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9YXTC4KPBJSYNVNU.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "9YXTC4KPBJSYNVNU.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.9860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9YXTC4KPBJSYNVNU.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "9YXTC4KPBJSYNVNU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9YXTC4KPBJSYNVNU.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "9YXTC4KPBJSYNVNU.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "9YXTC4KPBJSYNVNU.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "9YXTC4KPBJSYNVNU.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "415377" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9YXTC4KPBJSYNVNU.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "9YXTC4KPBJSYNVNU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9YXTC4KPBJSYNVNU.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "9YXTC4KPBJSYNVNU.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "208157" + }, + "appliesTo" : [ ] + }, + "9YXTC4KPBJSYNVNU.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "9YXTC4KPBJSYNVNU.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.9210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9YXTC4KPBJSYNVNU.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "9YXTC4KPBJSYNVNU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9YXTC4KPBJSYNVNU.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "9YXTC4KPBJSYNVNU.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.1520000000" + }, + "appliesTo" : [ ] + }, + "9YXTC4KPBJSYNVNU.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "9YXTC4KPBJSYNVNU.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "71409" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9YXTC4KPBJSYNVNU.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "9YXTC4KPBJSYNVNU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9YXTC4KPBJSYNVNU.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "9YXTC4KPBJSYNVNU.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.2120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9YXTC4KPBJSYNVNU.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "9YXTC4KPBJSYNVNU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9YXTC4KPBJSYNVNU.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "9YXTC4KPBJSYNVNU.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.3560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9YXTC4KPBJSYNVNU.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "9YXTC4KPBJSYNVNU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9YXTC4KPBJSYNVNU.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "9YXTC4KPBJSYNVNU.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.8890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9YXTC4KPBJSYNVNU.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "9YXTC4KPBJSYNVNU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9YXTC4KPBJSYNVNU.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "9YXTC4KPBJSYNVNU.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "142634" + }, + "appliesTo" : [ ] + }, + "9YXTC4KPBJSYNVNU.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "9YXTC4KPBJSYNVNU.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9YXTC4KPBJSYNVNU.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "9YXTC4KPBJSYNVNU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9YXTC4KPBJSYNVNU.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "9YXTC4KPBJSYNVNU.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "418326" + }, + "appliesTo" : [ ] + }, + "9YXTC4KPBJSYNVNU.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "9YXTC4KPBJSYNVNU.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "VCP5S8DX28AZ8RR2" : { + "VCP5S8DX28AZ8RR2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "VCP5S8DX28AZ8RR2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VCP5S8DX28AZ8RR2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "VCP5S8DX28AZ8RR2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6040000000" + }, + "appliesTo" : [ ] + }, + "VCP5S8DX28AZ8RR2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "VCP5S8DX28AZ8RR2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31571" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VCP5S8DX28AZ8RR2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "VCP5S8DX28AZ8RR2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VCP5S8DX28AZ8RR2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "VCP5S8DX28AZ8RR2.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.2316000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VCP5S8DX28AZ8RR2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "VCP5S8DX28AZ8RR2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VCP5S8DX28AZ8RR2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "VCP5S8DX28AZ8RR2.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "VCP5S8DX28AZ8RR2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "VCP5S8DX28AZ8RR2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "63059" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VCP5S8DX28AZ8RR2.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "VCP5S8DX28AZ8RR2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VCP5S8DX28AZ8RR2.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "VCP5S8DX28AZ8RR2.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.1334000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VCP5S8DX28AZ8RR2.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "VCP5S8DX28AZ8RR2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VCP5S8DX28AZ8RR2.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "VCP5S8DX28AZ8RR2.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "186500" + }, + "appliesTo" : [ ] + }, + "VCP5S8DX28AZ8RR2.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "VCP5S8DX28AZ8RR2.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VCP5S8DX28AZ8RR2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "VCP5S8DX28AZ8RR2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VCP5S8DX28AZ8RR2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "VCP5S8DX28AZ8RR2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "184927" + }, + "appliesTo" : [ ] + }, + "VCP5S8DX28AZ8RR2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "VCP5S8DX28AZ8RR2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VCP5S8DX28AZ8RR2.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "VCP5S8DX28AZ8RR2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VCP5S8DX28AZ8RR2.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "VCP5S8DX28AZ8RR2.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.0816000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VCP5S8DX28AZ8RR2.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "VCP5S8DX28AZ8RR2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VCP5S8DX28AZ8RR2.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "VCP5S8DX28AZ8RR2.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "63667" + }, + "appliesTo" : [ ] + }, + "VCP5S8DX28AZ8RR2.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "VCP5S8DX28AZ8RR2.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VCP5S8DX28AZ8RR2.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "VCP5S8DX28AZ8RR2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VCP5S8DX28AZ8RR2.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "VCP5S8DX28AZ8RR2.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "93347" + }, + "appliesTo" : [ ] + }, + "VCP5S8DX28AZ8RR2.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "VCP5S8DX28AZ8RR2.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VCP5S8DX28AZ8RR2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "VCP5S8DX28AZ8RR2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VCP5S8DX28AZ8RR2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "VCP5S8DX28AZ8RR2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "92716" + }, + "appliesTo" : [ ] + }, + "VCP5S8DX28AZ8RR2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "VCP5S8DX28AZ8RR2.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VCP5S8DX28AZ8RR2.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "VCP5S8DX28AZ8RR2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VCP5S8DX28AZ8RR2.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "VCP5S8DX28AZ8RR2.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31881" + }, + "appliesTo" : [ ] + }, + "VCP5S8DX28AZ8RR2.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "VCP5S8DX28AZ8RR2.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6394000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VCP5S8DX28AZ8RR2.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "VCP5S8DX28AZ8RR2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VCP5S8DX28AZ8RR2.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "VCP5S8DX28AZ8RR2.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3059000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "DPPVX7QQ3SGX3TED" : { + "DPPVX7QQ3SGX3TED.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "DPPVX7QQ3SGX3TED", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DPPVX7QQ3SGX3TED.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "DPPVX7QQ3SGX3TED.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9195000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DPPVX7QQ3SGX3TED.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "DPPVX7QQ3SGX3TED", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DPPVX7QQ3SGX3TED.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "DPPVX7QQ3SGX3TED.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7465" + }, + "appliesTo" : [ ] + }, + "DPPVX7QQ3SGX3TED.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "DPPVX7QQ3SGX3TED.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9822000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DPPVX7QQ3SGX3TED.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "DPPVX7QQ3SGX3TED", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "DPPVX7QQ3SGX3TED.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "DPPVX7QQ3SGX3TED.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6491" + }, + "appliesTo" : [ ] + }, + "DPPVX7QQ3SGX3TED.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "DPPVX7QQ3SGX3TED.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DPPVX7QQ3SGX3TED.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "DPPVX7QQ3SGX3TED", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "DPPVX7QQ3SGX3TED.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "DPPVX7QQ3SGX3TED.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6861000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DPPVX7QQ3SGX3TED.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "DPPVX7QQ3SGX3TED", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "DPPVX7QQ3SGX3TED.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "DPPVX7QQ3SGX3TED.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29995" + }, + "appliesTo" : [ ] + }, + "DPPVX7QQ3SGX3TED.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "DPPVX7QQ3SGX3TED.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DPPVX7QQ3SGX3TED.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "DPPVX7QQ3SGX3TED", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "DPPVX7QQ3SGX3TED.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "DPPVX7QQ3SGX3TED.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DPPVX7QQ3SGX3TED.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "DPPVX7QQ3SGX3TED", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "DPPVX7QQ3SGX3TED.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "DPPVX7QQ3SGX3TED.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4663000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DPPVX7QQ3SGX3TED.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "DPPVX7QQ3SGX3TED", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "DPPVX7QQ3SGX3TED.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "DPPVX7QQ3SGX3TED.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16259" + }, + "appliesTo" : [ ] + }, + "DPPVX7QQ3SGX3TED.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "DPPVX7QQ3SGX3TED.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7487000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DPPVX7QQ3SGX3TED.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "DPPVX7QQ3SGX3TED", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DPPVX7QQ3SGX3TED.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "DPPVX7QQ3SGX3TED.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15770" + }, + "appliesTo" : [ ] + }, + "DPPVX7QQ3SGX3TED.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "DPPVX7QQ3SGX3TED.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DPPVX7QQ3SGX3TED.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "DPPVX7QQ3SGX3TED", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "DPPVX7QQ3SGX3TED.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "DPPVX7QQ3SGX3TED.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35284" + }, + "appliesTo" : [ ] + }, + "DPPVX7QQ3SGX3TED.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "DPPVX7QQ3SGX3TED.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DPPVX7QQ3SGX3TED.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "DPPVX7QQ3SGX3TED", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "DPPVX7QQ3SGX3TED.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "DPPVX7QQ3SGX3TED.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13861" + }, + "appliesTo" : [ ] + }, + "DPPVX7QQ3SGX3TED.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "DPPVX7QQ3SGX3TED.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DPPVX7QQ3SGX3TED.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "DPPVX7QQ3SGX3TED", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "DPPVX7QQ3SGX3TED.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "DPPVX7QQ3SGX3TED.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6680000000" + }, + "appliesTo" : [ ] + }, + "DPPVX7QQ3SGX3TED.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "DPPVX7QQ3SGX3TED.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14138" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "PSF39FBPC6PFD9W3" : { + "PSF39FBPC6PFD9W3.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "PSF39FBPC6PFD9W3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PSF39FBPC6PFD9W3.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "PSF39FBPC6PFD9W3.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31737" + }, + "appliesTo" : [ ] + }, + "PSF39FBPC6PFD9W3.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "PSF39FBPC6PFD9W3.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PSF39FBPC6PFD9W3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "PSF39FBPC6PFD9W3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PSF39FBPC6PFD9W3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "PSF39FBPC6PFD9W3.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.2050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "PSF39FBPC6PFD9W3.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "PSF39FBPC6PFD9W3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PSF39FBPC6PFD9W3.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "PSF39FBPC6PFD9W3.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.2690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "PSF39FBPC6PFD9W3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "PSF39FBPC6PFD9W3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PSF39FBPC6PFD9W3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "PSF39FBPC6PFD9W3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "92514" + }, + "appliesTo" : [ ] + }, + "PSF39FBPC6PFD9W3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "PSF39FBPC6PFD9W3.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PSF39FBPC6PFD9W3.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "PSF39FBPC6PFD9W3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PSF39FBPC6PFD9W3.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "PSF39FBPC6PFD9W3.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "93041" + }, + "appliesTo" : [ ] + }, + "PSF39FBPC6PFD9W3.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "PSF39FBPC6PFD9W3.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PSF39FBPC6PFD9W3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "PSF39FBPC6PFD9W3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PSF39FBPC6PFD9W3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "PSF39FBPC6PFD9W3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31469" + }, + "appliesTo" : [ ] + }, + "PSF39FBPC6PFD9W3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "PSF39FBPC6PFD9W3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PSF39FBPC6PFD9W3.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "PSF39FBPC6PFD9W3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PSF39FBPC6PFD9W3.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "PSF39FBPC6PFD9W3.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "63393" + }, + "appliesTo" : [ ] + }, + "PSF39FBPC6PFD9W3.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "PSF39FBPC6PFD9W3.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PSF39FBPC6PFD9W3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "PSF39FBPC6PFD9W3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PSF39FBPC6PFD9W3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "PSF39FBPC6PFD9W3.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "PSF39FBPC6PFD9W3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "PSF39FBPC6PFD9W3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "62867" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PSF39FBPC6PFD9W3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "PSF39FBPC6PFD9W3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PSF39FBPC6PFD9W3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "PSF39FBPC6PFD9W3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "184612" + }, + "appliesTo" : [ ] + }, + "PSF39FBPC6PFD9W3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "PSF39FBPC6PFD9W3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PSF39FBPC6PFD9W3.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "PSF39FBPC6PFD9W3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PSF39FBPC6PFD9W3.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "PSF39FBPC6PFD9W3.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.0620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "PSF39FBPC6PFD9W3.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "PSF39FBPC6PFD9W3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PSF39FBPC6PFD9W3.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "PSF39FBPC6PFD9W3.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "185923" + }, + "appliesTo" : [ ] + }, + "PSF39FBPC6PFD9W3.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "PSF39FBPC6PFD9W3.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PSF39FBPC6PFD9W3.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "PSF39FBPC6PFD9W3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PSF39FBPC6PFD9W3.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "PSF39FBPC6PFD9W3.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.1050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "Z7CW8886929Z9X5V" : { + "Z7CW8886929Z9X5V.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "Z7CW8886929Z9X5V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z7CW8886929Z9X5V.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "Z7CW8886929Z9X5V.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5126" + }, + "appliesTo" : [ ] + }, + "Z7CW8886929Z9X5V.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "Z7CW8886929Z9X5V.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Z7CW8886929Z9X5V.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "Z7CW8886929Z9X5V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z7CW8886929Z9X5V.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "Z7CW8886929Z9X5V.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3802000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Z7CW8886929Z9X5V.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Z7CW8886929Z9X5V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z7CW8886929Z9X5V.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Z7CW8886929Z9X5V.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8696" + }, + "appliesTo" : [ ] + }, + "Z7CW8886929Z9X5V.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Z7CW8886929Z9X5V.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Z7CW8886929Z9X5V.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "Z7CW8886929Z9X5V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z7CW8886929Z9X5V.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "Z7CW8886929Z9X5V.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4372000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Z7CW8886929Z9X5V.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Z7CW8886929Z9X5V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z7CW8886929Z9X5V.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Z7CW8886929Z9X5V.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4457" + }, + "appliesTo" : [ ] + }, + "Z7CW8886929Z9X5V.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Z7CW8886929Z9X5V.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Z7CW8886929Z9X5V.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "Z7CW8886929Z9X5V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z7CW8886929Z9X5V.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "Z7CW8886929Z9X5V.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5319" + }, + "appliesTo" : [ ] + }, + "Z7CW8886929Z9X5V.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "Z7CW8886929Z9X5V.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2024000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z7CW8886929Z9X5V.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Z7CW8886929Z9X5V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z7CW8886929Z9X5V.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Z7CW8886929Z9X5V.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4625" + }, + "appliesTo" : [ ] + }, + "Z7CW8886929Z9X5V.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Z7CW8886929Z9X5V.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z7CW8886929Z9X5V.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "Z7CW8886929Z9X5V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z7CW8886929Z9X5V.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "Z7CW8886929Z9X5V.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6269000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Z7CW8886929Z9X5V.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "Z7CW8886929Z9X5V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z7CW8886929Z9X5V.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "Z7CW8886929Z9X5V.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2615" + }, + "appliesTo" : [ ] + }, + "Z7CW8886929Z9X5V.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "Z7CW8886929Z9X5V.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2985000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z7CW8886929Z9X5V.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "Z7CW8886929Z9X5V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z7CW8886929Z9X5V.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "Z7CW8886929Z9X5V.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10425" + }, + "appliesTo" : [ ] + }, + "Z7CW8886929Z9X5V.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "Z7CW8886929Z9X5V.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Z7CW8886929Z9X5V.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Z7CW8886929Z9X5V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z7CW8886929Z9X5V.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Z7CW8886929Z9X5V.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5452000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Z7CW8886929Z9X5V.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Z7CW8886929Z9X5V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z7CW8886929Z9X5V.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Z7CW8886929Z9X5V.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2274" + }, + "appliesTo" : [ ] + }, + "Z7CW8886929Z9X5V.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Z7CW8886929Z9X5V.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2596000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "MGFVS9REN5EG5F65" : { + "MGFVS9REN5EG5F65.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "MGFVS9REN5EG5F65", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MGFVS9REN5EG5F65.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "MGFVS9REN5EG5F65.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MGFVS9REN5EG5F65.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "MGFVS9REN5EG5F65", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MGFVS9REN5EG5F65.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "MGFVS9REN5EG5F65.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1117" + }, + "appliesTo" : [ ] + }, + "MGFVS9REN5EG5F65.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "MGFVS9REN5EG5F65.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MGFVS9REN5EG5F65.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "MGFVS9REN5EG5F65", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MGFVS9REN5EG5F65.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "MGFVS9REN5EG5F65.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MGFVS9REN5EG5F65.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "MGFVS9REN5EG5F65", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MGFVS9REN5EG5F65.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "MGFVS9REN5EG5F65.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2001" + }, + "appliesTo" : [ ] + }, + "MGFVS9REN5EG5F65.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "MGFVS9REN5EG5F65.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MGFVS9REN5EG5F65.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "MGFVS9REN5EG5F65", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MGFVS9REN5EG5F65.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "MGFVS9REN5EG5F65.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7211" + }, + "appliesTo" : [ ] + }, + "MGFVS9REN5EG5F65.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "MGFVS9REN5EG5F65.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MGFVS9REN5EG5F65.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "MGFVS9REN5EG5F65", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MGFVS9REN5EG5F65.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "MGFVS9REN5EG5F65.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3069" + }, + "appliesTo" : [ ] + }, + "MGFVS9REN5EG5F65.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "MGFVS9REN5EG5F65.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MGFVS9REN5EG5F65.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "MGFVS9REN5EG5F65", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MGFVS9REN5EG5F65.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "MGFVS9REN5EG5F65.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "MGFVS9REN5EG5F65.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "MGFVS9REN5EG5F65.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3331" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MGFVS9REN5EG5F65.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "MGFVS9REN5EG5F65", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MGFVS9REN5EG5F65.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "MGFVS9REN5EG5F65.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2265" + }, + "appliesTo" : [ ] + }, + "MGFVS9REN5EG5F65.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "MGFVS9REN5EG5F65.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MGFVS9REN5EG5F65.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "MGFVS9REN5EG5F65", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MGFVS9REN5EG5F65.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "MGFVS9REN5EG5F65.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MGFVS9REN5EG5F65.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "MGFVS9REN5EG5F65", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MGFVS9REN5EG5F65.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "MGFVS9REN5EG5F65.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "983" + }, + "appliesTo" : [ ] + }, + "MGFVS9REN5EG5F65.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "MGFVS9REN5EG5F65.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MGFVS9REN5EG5F65.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "MGFVS9REN5EG5F65", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MGFVS9REN5EG5F65.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "MGFVS9REN5EG5F65.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "MGFVS9REN5EG5F65.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "MGFVS9REN5EG5F65.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7867" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MGFVS9REN5EG5F65.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "MGFVS9REN5EG5F65", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MGFVS9REN5EG5F65.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "MGFVS9REN5EG5F65.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "XFJWBADTXUKBRGTC" : { + "XFJWBADTXUKBRGTC.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XFJWBADTXUKBRGTC", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XFJWBADTXUKBRGTC.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XFJWBADTXUKBRGTC.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XFJWBADTXUKBRGTC.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XFJWBADTXUKBRGTC", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "XFJWBADTXUKBRGTC.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XFJWBADTXUKBRGTC.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34210" + }, + "appliesTo" : [ ] + }, + "XFJWBADTXUKBRGTC.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XFJWBADTXUKBRGTC.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XFJWBADTXUKBRGTC.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "XFJWBADTXUKBRGTC", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XFJWBADTXUKBRGTC.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "XFJWBADTXUKBRGTC.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8336000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XFJWBADTXUKBRGTC.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XFJWBADTXUKBRGTC", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XFJWBADTXUKBRGTC.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XFJWBADTXUKBRGTC.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "64315" + }, + "appliesTo" : [ ] + }, + "XFJWBADTXUKBRGTC.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XFJWBADTXUKBRGTC.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XFJWBADTXUKBRGTC.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "XFJWBADTXUKBRGTC", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XFJWBADTXUKBRGTC.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "XFJWBADTXUKBRGTC.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3800000000" + }, + "appliesTo" : [ ] + }, + "XFJWBADTXUKBRGTC.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "XFJWBADTXUKBRGTC.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "36266" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XFJWBADTXUKBRGTC.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XFJWBADTXUKBRGTC", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XFJWBADTXUKBRGTC.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XFJWBADTXUKBRGTC.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13228" + }, + "appliesTo" : [ ] + }, + "XFJWBADTXUKBRGTC.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XFJWBADTXUKBRGTC.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XFJWBADTXUKBRGTC.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XFJWBADTXUKBRGTC", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XFJWBADTXUKBRGTC.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XFJWBADTXUKBRGTC.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "XFJWBADTXUKBRGTC.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XFJWBADTXUKBRGTC.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26248" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XFJWBADTXUKBRGTC.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "XFJWBADTXUKBRGTC", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XFJWBADTXUKBRGTC.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "XFJWBADTXUKBRGTC.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XFJWBADTXUKBRGTC.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "XFJWBADTXUKBRGTC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XFJWBADTXUKBRGTC.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "XFJWBADTXUKBRGTC.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27768" + }, + "appliesTo" : [ ] + }, + "XFJWBADTXUKBRGTC.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "XFJWBADTXUKBRGTC.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XFJWBADTXUKBRGTC.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "XFJWBADTXUKBRGTC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XFJWBADTXUKBRGTC.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "XFJWBADTXUKBRGTC.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2649000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XFJWBADTXUKBRGTC.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "XFJWBADTXUKBRGTC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XFJWBADTXUKBRGTC.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "XFJWBADTXUKBRGTC.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14003" + }, + "appliesTo" : [ ] + }, + "XFJWBADTXUKBRGTC.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "XFJWBADTXUKBRGTC.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5985000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XFJWBADTXUKBRGTC.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "XFJWBADTXUKBRGTC", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XFJWBADTXUKBRGTC.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "XFJWBADTXUKBRGTC.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "72049" + }, + "appliesTo" : [ ] + }, + "XFJWBADTXUKBRGTC.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "XFJWBADTXUKBRGTC.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "CS26JSU2ZC88WXHJ" : { + "CS26JSU2ZC88WXHJ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "CS26JSU2ZC88WXHJ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "CS26JSU2ZC88WXHJ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "CS26JSU2ZC88WXHJ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "928" + }, + "appliesTo" : [ ] + }, + "CS26JSU2ZC88WXHJ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "CS26JSU2ZC88WXHJ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CS26JSU2ZC88WXHJ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "CS26JSU2ZC88WXHJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "CS26JSU2ZC88WXHJ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "CS26JSU2ZC88WXHJ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0800000000" + }, + "appliesTo" : [ ] + }, + "CS26JSU2ZC88WXHJ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "CS26JSU2ZC88WXHJ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "247" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CS26JSU2ZC88WXHJ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "CS26JSU2ZC88WXHJ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "CS26JSU2ZC88WXHJ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "CS26JSU2ZC88WXHJ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2254" + }, + "appliesTo" : [ ] + }, + "CS26JSU2ZC88WXHJ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "CS26JSU2ZC88WXHJ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CS26JSU2ZC88WXHJ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "CS26JSU2ZC88WXHJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "CS26JSU2ZC88WXHJ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "CS26JSU2ZC88WXHJ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CS26JSU2ZC88WXHJ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "CS26JSU2ZC88WXHJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "CS26JSU2ZC88WXHJ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "CS26JSU2ZC88WXHJ.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0770000000" + }, + "appliesTo" : [ ] + }, + "CS26JSU2ZC88WXHJ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "CS26JSU2ZC88WXHJ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "375" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "YSGQ6AZH4GU6W9TM" : { + "YSGQ6AZH4GU6W9TM.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "YSGQ6AZH4GU6W9TM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YSGQ6AZH4GU6W9TM.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "YSGQ6AZH4GU6W9TM.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YSGQ6AZH4GU6W9TM.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "YSGQ6AZH4GU6W9TM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YSGQ6AZH4GU6W9TM.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "YSGQ6AZH4GU6W9TM.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YSGQ6AZH4GU6W9TM.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YSGQ6AZH4GU6W9TM", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "YSGQ6AZH4GU6W9TM.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YSGQ6AZH4GU6W9TM.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9120000000" + }, + "appliesTo" : [ ] + }, + "YSGQ6AZH4GU6W9TM.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YSGQ6AZH4GU6W9TM.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7993" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YSGQ6AZH4GU6W9TM.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "YSGQ6AZH4GU6W9TM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YSGQ6AZH4GU6W9TM.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "YSGQ6AZH4GU6W9TM.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YSGQ6AZH4GU6W9TM.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "YSGQ6AZH4GU6W9TM.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46927" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YSGQ6AZH4GU6W9TM.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "YSGQ6AZH4GU6W9TM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YSGQ6AZH4GU6W9TM.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "YSGQ6AZH4GU6W9TM.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16055" + }, + "appliesTo" : [ ] + }, + "YSGQ6AZH4GU6W9TM.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "YSGQ6AZH4GU6W9TM.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YSGQ6AZH4GU6W9TM.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "YSGQ6AZH4GU6W9TM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YSGQ6AZH4GU6W9TM.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "YSGQ6AZH4GU6W9TM.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YSGQ6AZH4GU6W9TM.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "YSGQ6AZH4GU6W9TM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YSGQ6AZH4GU6W9TM.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "YSGQ6AZH4GU6W9TM.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8041" + }, + "appliesTo" : [ ] + }, + "YSGQ6AZH4GU6W9TM.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "YSGQ6AZH4GU6W9TM.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YSGQ6AZH4GU6W9TM.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YSGQ6AZH4GU6W9TM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YSGQ6AZH4GU6W9TM.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YSGQ6AZH4GU6W9TM.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YSGQ6AZH4GU6W9TM.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YSGQ6AZH4GU6W9TM", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "YSGQ6AZH4GU6W9TM.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YSGQ6AZH4GU6W9TM.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23328" + }, + "appliesTo" : [ ] + }, + "YSGQ6AZH4GU6W9TM.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YSGQ6AZH4GU6W9TM.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YSGQ6AZH4GU6W9TM.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "YSGQ6AZH4GU6W9TM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YSGQ6AZH4GU6W9TM.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "YSGQ6AZH4GU6W9TM.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23491" + }, + "appliesTo" : [ ] + }, + "YSGQ6AZH4GU6W9TM.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "YSGQ6AZH4GU6W9TM.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YSGQ6AZH4GU6W9TM.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YSGQ6AZH4GU6W9TM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YSGQ6AZH4GU6W9TM.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YSGQ6AZH4GU6W9TM.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YSGQ6AZH4GU6W9TM.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YSGQ6AZH4GU6W9TM.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15961" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YSGQ6AZH4GU6W9TM.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YSGQ6AZH4GU6W9TM", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "YSGQ6AZH4GU6W9TM.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YSGQ6AZH4GU6W9TM.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46512" + }, + "appliesTo" : [ ] + }, + "YSGQ6AZH4GU6W9TM.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YSGQ6AZH4GU6W9TM.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "2Y3RARMUM73VYH92" : { + "2Y3RARMUM73VYH92.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "2Y3RARMUM73VYH92", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "2Y3RARMUM73VYH92.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "2Y3RARMUM73VYH92.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2Y3RARMUM73VYH92.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "2Y3RARMUM73VYH92", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "2Y3RARMUM73VYH92.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "2Y3RARMUM73VYH92.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "2Y3RARMUM73VYH92.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "2Y3RARMUM73VYH92.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25260" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2Y3RARMUM73VYH92.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "2Y3RARMUM73VYH92", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "2Y3RARMUM73VYH92.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "2Y3RARMUM73VYH92.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10602" + }, + "appliesTo" : [ ] + }, + "2Y3RARMUM73VYH92.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "2Y3RARMUM73VYH92.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2Y3RARMUM73VYH92.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "2Y3RARMUM73VYH92", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2Y3RARMUM73VYH92.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "2Y3RARMUM73VYH92.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11938" + }, + "appliesTo" : [ ] + }, + "2Y3RARMUM73VYH92.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "2Y3RARMUM73VYH92.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2Y3RARMUM73VYH92.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "2Y3RARMUM73VYH92", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "2Y3RARMUM73VYH92.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "2Y3RARMUM73VYH92.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6117" + }, + "appliesTo" : [ ] + }, + "2Y3RARMUM73VYH92.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "2Y3RARMUM73VYH92.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2Y3RARMUM73VYH92.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "2Y3RARMUM73VYH92", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "2Y3RARMUM73VYH92.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "2Y3RARMUM73VYH92.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3821" + }, + "appliesTo" : [ ] + }, + "2Y3RARMUM73VYH92.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "2Y3RARMUM73VYH92.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2Y3RARMUM73VYH92.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "2Y3RARMUM73VYH92", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2Y3RARMUM73VYH92.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "2Y3RARMUM73VYH92.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6025" + }, + "appliesTo" : [ ] + }, + "2Y3RARMUM73VYH92.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "2Y3RARMUM73VYH92.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2Y3RARMUM73VYH92.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "2Y3RARMUM73VYH92", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "2Y3RARMUM73VYH92.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "2Y3RARMUM73VYH92.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30452" + }, + "appliesTo" : [ ] + }, + "2Y3RARMUM73VYH92.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "2Y3RARMUM73VYH92.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2Y3RARMUM73VYH92.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "2Y3RARMUM73VYH92", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2Y3RARMUM73VYH92.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "2Y3RARMUM73VYH92.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2Y3RARMUM73VYH92.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "2Y3RARMUM73VYH92", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "2Y3RARMUM73VYH92.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "2Y3RARMUM73VYH92.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2Y3RARMUM73VYH92.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "2Y3RARMUM73VYH92", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "2Y3RARMUM73VYH92.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "2Y3RARMUM73VYH92.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10629" + }, + "appliesTo" : [ ] + }, + "2Y3RARMUM73VYH92.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "2Y3RARMUM73VYH92.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "7ATPZU2G6QRQFTXN" : { + "7ATPZU2G6QRQFTXN.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "7ATPZU2G6QRQFTXN", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "7ATPZU2G6QRQFTXN.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "7ATPZU2G6QRQFTXN.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28995" + }, + "appliesTo" : [ ] + }, + "7ATPZU2G6QRQFTXN.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "7ATPZU2G6QRQFTXN.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7ATPZU2G6QRQFTXN.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "7ATPZU2G6QRQFTXN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7ATPZU2G6QRQFTXN.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "7ATPZU2G6QRQFTXN.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7ATPZU2G6QRQFTXN.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "7ATPZU2G6QRQFTXN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7ATPZU2G6QRQFTXN.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "7ATPZU2G6QRQFTXN.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7ATPZU2G6QRQFTXN.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "7ATPZU2G6QRQFTXN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7ATPZU2G6QRQFTXN.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "7ATPZU2G6QRQFTXN.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "69760" + }, + "appliesTo" : [ ] + }, + "7ATPZU2G6QRQFTXN.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "7ATPZU2G6QRQFTXN.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7ATPZU2G6QRQFTXN.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "7ATPZU2G6QRQFTXN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7ATPZU2G6QRQFTXN.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "7ATPZU2G6QRQFTXN.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33363" + }, + "appliesTo" : [ ] + }, + "7ATPZU2G6QRQFTXN.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "7ATPZU2G6QRQFTXN.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7ATPZU2G6QRQFTXN.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "7ATPZU2G6QRQFTXN", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "7ATPZU2G6QRQFTXN.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "7ATPZU2G6QRQFTXN.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14212" + }, + "appliesTo" : [ ] + }, + "7ATPZU2G6QRQFTXN.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "7ATPZU2G6QRQFTXN.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7ATPZU2G6QRQFTXN.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "7ATPZU2G6QRQFTXN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7ATPZU2G6QRQFTXN.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "7ATPZU2G6QRQFTXN.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7ATPZU2G6QRQFTXN.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "7ATPZU2G6QRQFTXN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7ATPZU2G6QRQFTXN.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "7ATPZU2G6QRQFTXN.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.0710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7ATPZU2G6QRQFTXN.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "7ATPZU2G6QRQFTXN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7ATPZU2G6QRQFTXN.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "7ATPZU2G6QRQFTXN.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16441" + }, + "appliesTo" : [ ] + }, + "7ATPZU2G6QRQFTXN.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "7ATPZU2G6QRQFTXN.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7ATPZU2G6QRQFTXN.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "7ATPZU2G6QRQFTXN", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "7ATPZU2G6QRQFTXN.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "7ATPZU2G6QRQFTXN.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "58910" + }, + "appliesTo" : [ ] + }, + "7ATPZU2G6QRQFTXN.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "7ATPZU2G6QRQFTXN.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7ATPZU2G6QRQFTXN.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "7ATPZU2G6QRQFTXN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7ATPZU2G6QRQFTXN.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "7ATPZU2G6QRQFTXN.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4180000000" + }, + "appliesTo" : [ ] + }, + "7ATPZU2G6QRQFTXN.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "7ATPZU2G6QRQFTXN.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33849" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7ATPZU2G6QRQFTXN.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "7ATPZU2G6QRQFTXN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7ATPZU2G6QRQFTXN.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "7ATPZU2G6QRQFTXN.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29518" + }, + "appliesTo" : [ ] + }, + "7ATPZU2G6QRQFTXN.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "7ATPZU2G6QRQFTXN.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "DFF53P772NKJNMUW" : { + "DFF53P772NKJNMUW.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "DFF53P772NKJNMUW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "DFF53P772NKJNMUW.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "DFF53P772NKJNMUW.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.8790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DFF53P772NKJNMUW.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "DFF53P772NKJNMUW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "DFF53P772NKJNMUW.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "DFF53P772NKJNMUW.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "97762" + }, + "appliesTo" : [ ] + }, + "DFF53P772NKJNMUW.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "DFF53P772NKJNMUW.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DFF53P772NKJNMUW.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "DFF53P772NKJNMUW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "DFF53P772NKJNMUW.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "DFF53P772NKJNMUW.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "191647" + }, + "appliesTo" : [ ] + }, + "DFF53P772NKJNMUW.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "DFF53P772NKJNMUW.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DFF53P772NKJNMUW.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "DFF53P772NKJNMUW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "DFF53P772NKJNMUW.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "DFF53P772NKJNMUW.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.6336000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DFF53P772NKJNMUW.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "DFF53P772NKJNMUW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "DFF53P772NKJNMUW.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "DFF53P772NKJNMUW.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "68296" + }, + "appliesTo" : [ ] + }, + "DFF53P772NKJNMUW.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "DFF53P772NKJNMUW.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DFF53P772NKJNMUW.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "DFF53P772NKJNMUW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DFF53P772NKJNMUW.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "DFF53P772NKJNMUW.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "69816" + }, + "appliesTo" : [ ] + }, + "DFF53P772NKJNMUW.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "DFF53P772NKJNMUW.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DFF53P772NKJNMUW.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "DFF53P772NKJNMUW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "DFF53P772NKJNMUW.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "DFF53P772NKJNMUW.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34252" + }, + "appliesTo" : [ ] + }, + "DFF53P772NKJNMUW.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "DFF53P772NKJNMUW.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DFF53P772NKJNMUW.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "DFF53P772NKJNMUW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "DFF53P772NKJNMUW.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "DFF53P772NKJNMUW.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "99338" + }, + "appliesTo" : [ ] + }, + "DFF53P772NKJNMUW.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "DFF53P772NKJNMUW.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DFF53P772NKJNMUW.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "DFF53P772NKJNMUW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "DFF53P772NKJNMUW.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "DFF53P772NKJNMUW.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "198193" + }, + "appliesTo" : [ ] + }, + "DFF53P772NKJNMUW.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "DFF53P772NKJNMUW.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DFF53P772NKJNMUW.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "DFF53P772NKJNMUW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "DFF53P772NKJNMUW.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "DFF53P772NKJNMUW.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DFF53P772NKJNMUW.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "DFF53P772NKJNMUW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DFF53P772NKJNMUW.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "DFF53P772NKJNMUW.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.0649000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DFF53P772NKJNMUW.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "DFF53P772NKJNMUW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DFF53P772NKJNMUW.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "DFF53P772NKJNMUW.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35027" + }, + "appliesTo" : [ ] + }, + "DFF53P772NKJNMUW.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "DFF53P772NKJNMUW.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9985000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "BJ9999E62JPQN34Q" : { + "BJ9999E62JPQN34Q.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "BJ9999E62JPQN34Q", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BJ9999E62JPQN34Q.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "BJ9999E62JPQN34Q.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2274000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BJ9999E62JPQN34Q.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "BJ9999E62JPQN34Q", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BJ9999E62JPQN34Q.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "BJ9999E62JPQN34Q.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1925" + }, + "appliesTo" : [ ] + }, + "BJ9999E62JPQN34Q.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "BJ9999E62JPQN34Q.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BJ9999E62JPQN34Q.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "BJ9999E62JPQN34Q", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BJ9999E62JPQN34Q.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "BJ9999E62JPQN34Q.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0989000000" + }, + "appliesTo" : [ ] + }, + "BJ9999E62JPQN34Q.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "BJ9999E62JPQN34Q.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2599" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BJ9999E62JPQN34Q.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "BJ9999E62JPQN34Q", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BJ9999E62JPQN34Q.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "BJ9999E62JPQN34Q.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1926000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BJ9999E62JPQN34Q.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "BJ9999E62JPQN34Q", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BJ9999E62JPQN34Q.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "BJ9999E62JPQN34Q.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2046000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BJ9999E62JPQN34Q.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "BJ9999E62JPQN34Q", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BJ9999E62JPQN34Q.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "BJ9999E62JPQN34Q.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4788" + }, + "appliesTo" : [ ] + }, + "BJ9999E62JPQN34Q.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "BJ9999E62JPQN34Q.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BJ9999E62JPQN34Q.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "BJ9999E62JPQN34Q", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BJ9999E62JPQN34Q.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "BJ9999E62JPQN34Q.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "BJ9999E62JPQN34Q.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "BJ9999E62JPQN34Q.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5153" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BJ9999E62JPQN34Q.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "BJ9999E62JPQN34Q", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BJ9999E62JPQN34Q.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "BJ9999E62JPQN34Q.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "BJ9999E62JPQN34Q.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "BJ9999E62JPQN34Q.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2066" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BJ9999E62JPQN34Q.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "BJ9999E62JPQN34Q", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BJ9999E62JPQN34Q.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "BJ9999E62JPQN34Q.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2452" + }, + "appliesTo" : [ ] + }, + "BJ9999E62JPQN34Q.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "BJ9999E62JPQN34Q.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0933000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BJ9999E62JPQN34Q.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "BJ9999E62JPQN34Q", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BJ9999E62JPQN34Q.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "BJ9999E62JPQN34Q.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "972" + }, + "appliesTo" : [ ] + }, + "BJ9999E62JPQN34Q.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "BJ9999E62JPQN34Q.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BJ9999E62JPQN34Q.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "BJ9999E62JPQN34Q", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BJ9999E62JPQN34Q.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "BJ9999E62JPQN34Q.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2446000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BJ9999E62JPQN34Q.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "BJ9999E62JPQN34Q", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BJ9999E62JPQN34Q.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "BJ9999E62JPQN34Q.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1044" + }, + "appliesTo" : [ ] + }, + "BJ9999E62JPQN34Q.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "BJ9999E62JPQN34Q.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1192000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "FJ3G5WT7J4G7GT23" : { + "FJ3G5WT7J4G7GT23.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "FJ3G5WT7J4G7GT23", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "FJ3G5WT7J4G7GT23.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "FJ3G5WT7J4G7GT23.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FJ3G5WT7J4G7GT23.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "FJ3G5WT7J4G7GT23", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "FJ3G5WT7J4G7GT23.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "FJ3G5WT7J4G7GT23.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7970000000" + }, + "appliesTo" : [ ] + }, + "FJ3G5WT7J4G7GT23.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "FJ3G5WT7J4G7GT23.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17129" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FJ3G5WT7J4G7GT23.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "FJ3G5WT7J4G7GT23", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "FJ3G5WT7J4G7GT23.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "FJ3G5WT7J4G7GT23.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9942" + }, + "appliesTo" : [ ] + }, + "FJ3G5WT7J4G7GT23.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "FJ3G5WT7J4G7GT23.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FJ3G5WT7J4G7GT23.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "FJ3G5WT7J4G7GT23", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "FJ3G5WT7J4G7GT23.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "FJ3G5WT7J4G7GT23.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17075" + }, + "appliesTo" : [ ] + }, + "FJ3G5WT7J4G7GT23.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "FJ3G5WT7J4G7GT23.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FJ3G5WT7J4G7GT23.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "FJ3G5WT7J4G7GT23", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "FJ3G5WT7J4G7GT23.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "FJ3G5WT7J4G7GT23.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "FJ3G5WT7J4G7GT23.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "FJ3G5WT7J4G7GT23.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35790" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "KNDB73D8XZCD246T" : { + "KNDB73D8XZCD246T.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "KNDB73D8XZCD246T", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "KNDB73D8XZCD246T.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "KNDB73D8XZCD246T.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KNDB73D8XZCD246T.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "KNDB73D8XZCD246T", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "KNDB73D8XZCD246T.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "KNDB73D8XZCD246T.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7038" + }, + "appliesTo" : [ ] + }, + "KNDB73D8XZCD246T.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "KNDB73D8XZCD246T.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KNDB73D8XZCD246T.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "KNDB73D8XZCD246T", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "KNDB73D8XZCD246T.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "KNDB73D8XZCD246T.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6925" + }, + "appliesTo" : [ ] + }, + "KNDB73D8XZCD246T.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "KNDB73D8XZCD246T.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KNDB73D8XZCD246T.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "KNDB73D8XZCD246T", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "KNDB73D8XZCD246T.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "KNDB73D8XZCD246T.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16522" + }, + "appliesTo" : [ ] + }, + "KNDB73D8XZCD246T.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "KNDB73D8XZCD246T.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KNDB73D8XZCD246T.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "KNDB73D8XZCD246T", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "KNDB73D8XZCD246T.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "KNDB73D8XZCD246T.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2826" + }, + "appliesTo" : [ ] + }, + "KNDB73D8XZCD246T.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "KNDB73D8XZCD246T.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "6B92TZ937DKQEP93" : { + "6B92TZ937DKQEP93.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "6B92TZ937DKQEP93", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6B92TZ937DKQEP93.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "6B92TZ937DKQEP93.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3422" + }, + "appliesTo" : [ ] + }, + "6B92TZ937DKQEP93.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "6B92TZ937DKQEP93.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6B92TZ937DKQEP93.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6B92TZ937DKQEP93", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6B92TZ937DKQEP93.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6B92TZ937DKQEP93.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6B92TZ937DKQEP93.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6B92TZ937DKQEP93", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6B92TZ937DKQEP93.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6B92TZ937DKQEP93.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9592" + }, + "appliesTo" : [ ] + }, + "6B92TZ937DKQEP93.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6B92TZ937DKQEP93.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6B92TZ937DKQEP93.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "6B92TZ937DKQEP93", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6B92TZ937DKQEP93.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "6B92TZ937DKQEP93.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19407" + }, + "appliesTo" : [ ] + }, + "6B92TZ937DKQEP93.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "6B92TZ937DKQEP93.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6B92TZ937DKQEP93.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "6B92TZ937DKQEP93", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6B92TZ937DKQEP93.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "6B92TZ937DKQEP93.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6B92TZ937DKQEP93.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "6B92TZ937DKQEP93", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6B92TZ937DKQEP93.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "6B92TZ937DKQEP93.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9723" + }, + "appliesTo" : [ ] + }, + "6B92TZ937DKQEP93.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "6B92TZ937DKQEP93.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6B92TZ937DKQEP93.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "6B92TZ937DKQEP93", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6B92TZ937DKQEP93.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "6B92TZ937DKQEP93.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6B92TZ937DKQEP93.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6B92TZ937DKQEP93", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6B92TZ937DKQEP93.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6B92TZ937DKQEP93.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6692" + }, + "appliesTo" : [ ] + }, + "6B92TZ937DKQEP93.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6B92TZ937DKQEP93.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6B92TZ937DKQEP93.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6B92TZ937DKQEP93", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6B92TZ937DKQEP93.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6B92TZ937DKQEP93.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3355" + }, + "appliesTo" : [ ] + }, + "6B92TZ937DKQEP93.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6B92TZ937DKQEP93.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6B92TZ937DKQEP93.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "6B92TZ937DKQEP93", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6B92TZ937DKQEP93.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "6B92TZ937DKQEP93.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6824" + }, + "appliesTo" : [ ] + }, + "6B92TZ937DKQEP93.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "6B92TZ937DKQEP93.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6B92TZ937DKQEP93.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "6B92TZ937DKQEP93", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6B92TZ937DKQEP93.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "6B92TZ937DKQEP93.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6B92TZ937DKQEP93.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6B92TZ937DKQEP93", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6B92TZ937DKQEP93.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6B92TZ937DKQEP93.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19079" + }, + "appliesTo" : [ ] + }, + "6B92TZ937DKQEP93.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6B92TZ937DKQEP93.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "69HHGBJ3N8F7N3PN" : { + "69HHGBJ3N8F7N3PN.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "69HHGBJ3N8F7N3PN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "69HHGBJ3N8F7N3PN.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "69HHGBJ3N8F7N3PN.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4405000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "69HHGBJ3N8F7N3PN.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "69HHGBJ3N8F7N3PN", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "69HHGBJ3N8F7N3PN.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "69HHGBJ3N8F7N3PN.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34894" + }, + "appliesTo" : [ ] + }, + "69HHGBJ3N8F7N3PN.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "69HHGBJ3N8F7N3PN.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3278000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "69HHGBJ3N8F7N3PN.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "69HHGBJ3N8F7N3PN", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "69HHGBJ3N8F7N3PN.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "69HHGBJ3N8F7N3PN.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26890" + }, + "appliesTo" : [ ] + }, + "69HHGBJ3N8F7N3PN.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "69HHGBJ3N8F7N3PN.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "69HHGBJ3N8F7N3PN.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "69HHGBJ3N8F7N3PN", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "69HHGBJ3N8F7N3PN.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "69HHGBJ3N8F7N3PN.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7502000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "69HHGBJ3N8F7N3PN.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "69HHGBJ3N8F7N3PN", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "69HHGBJ3N8F7N3PN.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "69HHGBJ3N8F7N3PN.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "69HHGBJ3N8F7N3PN.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "69HHGBJ3N8F7N3PN", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "69HHGBJ3N8F7N3PN.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "69HHGBJ3N8F7N3PN.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "67921" + }, + "appliesTo" : [ ] + }, + "69HHGBJ3N8F7N3PN.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "69HHGBJ3N8F7N3PN.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "69HHGBJ3N8F7N3PN.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "69HHGBJ3N8F7N3PN", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "69HHGBJ3N8F7N3PN.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "69HHGBJ3N8F7N3PN.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37227" + }, + "appliesTo" : [ ] + }, + "69HHGBJ3N8F7N3PN.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "69HHGBJ3N8F7N3PN.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4165000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "69HHGBJ3N8F7N3PN.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "69HHGBJ3N8F7N3PN", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "69HHGBJ3N8F7N3PN.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "69HHGBJ3N8F7N3PN.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13588" + }, + "appliesTo" : [ ] + }, + "69HHGBJ3N8F7N3PN.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "69HHGBJ3N8F7N3PN.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5511000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "69HHGBJ3N8F7N3PN.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "69HHGBJ3N8F7N3PN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "69HHGBJ3N8F7N3PN.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "69HHGBJ3N8F7N3PN.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14659" + }, + "appliesTo" : [ ] + }, + "69HHGBJ3N8F7N3PN.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "69HHGBJ3N8F7N3PN.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6734000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "69HHGBJ3N8F7N3PN.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "69HHGBJ3N8F7N3PN", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "69HHGBJ3N8F7N3PN.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "69HHGBJ3N8F7N3PN.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1837000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "69HHGBJ3N8F7N3PN.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "69HHGBJ3N8F7N3PN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "69HHGBJ3N8F7N3PN.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "69HHGBJ3N8F7N3PN.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "69HHGBJ3N8F7N3PN.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "69HHGBJ3N8F7N3PN.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28989" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "69HHGBJ3N8F7N3PN.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "69HHGBJ3N8F7N3PN", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "69HHGBJ3N8F7N3PN.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "69HHGBJ3N8F7N3PN.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "73738" + }, + "appliesTo" : [ ] + }, + "69HHGBJ3N8F7N3PN.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "69HHGBJ3N8F7N3PN.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "J28DJ6QCZ8VU7DZQ" : { + "J28DJ6QCZ8VU7DZQ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "J28DJ6QCZ8VU7DZQ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "J28DJ6QCZ8VU7DZQ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "J28DJ6QCZ8VU7DZQ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "J28DJ6QCZ8VU7DZQ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "J28DJ6QCZ8VU7DZQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J28DJ6QCZ8VU7DZQ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "J28DJ6QCZ8VU7DZQ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21155" + }, + "appliesTo" : [ ] + }, + "J28DJ6QCZ8VU7DZQ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "J28DJ6QCZ8VU7DZQ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "J28DJ6QCZ8VU7DZQ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "J28DJ6QCZ8VU7DZQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J28DJ6QCZ8VU7DZQ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "J28DJ6QCZ8VU7DZQ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "J28DJ6QCZ8VU7DZQ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "J28DJ6QCZ8VU7DZQ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "J28DJ6QCZ8VU7DZQ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "J28DJ6QCZ8VU7DZQ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23012" + }, + "appliesTo" : [ ] + }, + "J28DJ6QCZ8VU7DZQ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "J28DJ6QCZ8VU7DZQ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "J28DJ6QCZ8VU7DZQ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "J28DJ6QCZ8VU7DZQ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "J28DJ6QCZ8VU7DZQ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "J28DJ6QCZ8VU7DZQ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "J28DJ6QCZ8VU7DZQ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "J28DJ6QCZ8VU7DZQ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "J28DJ6QCZ8VU7DZQ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "J28DJ6QCZ8VU7DZQ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33445" + }, + "appliesTo" : [ ] + }, + "J28DJ6QCZ8VU7DZQ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "J28DJ6QCZ8VU7DZQ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "J28DJ6QCZ8VU7DZQ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "J28DJ6QCZ8VU7DZQ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "J28DJ6QCZ8VU7DZQ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "J28DJ6QCZ8VU7DZQ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24212" + }, + "appliesTo" : [ ] + }, + "J28DJ6QCZ8VU7DZQ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "J28DJ6QCZ8VU7DZQ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "J28DJ6QCZ8VU7DZQ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "J28DJ6QCZ8VU7DZQ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "J28DJ6QCZ8VU7DZQ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "J28DJ6QCZ8VU7DZQ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "43263" + }, + "appliesTo" : [ ] + }, + "J28DJ6QCZ8VU7DZQ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "J28DJ6QCZ8VU7DZQ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "J28DJ6QCZ8VU7DZQ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "J28DJ6QCZ8VU7DZQ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "J28DJ6QCZ8VU7DZQ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "J28DJ6QCZ8VU7DZQ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12353" + }, + "appliesTo" : [ ] + }, + "J28DJ6QCZ8VU7DZQ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "J28DJ6QCZ8VU7DZQ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "J28DJ6QCZ8VU7DZQ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "J28DJ6QCZ8VU7DZQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J28DJ6QCZ8VU7DZQ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "J28DJ6QCZ8VU7DZQ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "J28DJ6QCZ8VU7DZQ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "J28DJ6QCZ8VU7DZQ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "41755" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "J28DJ6QCZ8VU7DZQ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "J28DJ6QCZ8VU7DZQ", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "J28DJ6QCZ8VU7DZQ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "J28DJ6QCZ8VU7DZQ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "65551" + }, + "appliesTo" : [ ] + }, + "J28DJ6QCZ8VU7DZQ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "J28DJ6QCZ8VU7DZQ.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "C4ADNNGW2WA5AJWY" : { + "C4ADNNGW2WA5AJWY.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "C4ADNNGW2WA5AJWY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "C4ADNNGW2WA5AJWY.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "C4ADNNGW2WA5AJWY.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9790000000" + }, + "appliesTo" : [ ] + }, + "C4ADNNGW2WA5AJWY.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "C4ADNNGW2WA5AJWY.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8576" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "C4ADNNGW2WA5AJWY.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "C4ADNNGW2WA5AJWY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "C4ADNNGW2WA5AJWY.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "C4ADNNGW2WA5AJWY.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16808" + }, + "appliesTo" : [ ] + }, + "C4ADNNGW2WA5AJWY.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "C4ADNNGW2WA5AJWY.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "C4ADNNGW2WA5AJWY.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "C4ADNNGW2WA5AJWY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "C4ADNNGW2WA5AJWY.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "C4ADNNGW2WA5AJWY.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24529" + }, + "appliesTo" : [ ] + }, + "C4ADNNGW2WA5AJWY.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "C4ADNNGW2WA5AJWY.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "C4ADNNGW2WA5AJWY.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "C4ADNNGW2WA5AJWY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "C4ADNNGW2WA5AJWY.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "C4ADNNGW2WA5AJWY.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13047" + }, + "appliesTo" : [ ] + }, + "C4ADNNGW2WA5AJWY.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "C4ADNNGW2WA5AJWY.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "C4ADNNGW2WA5AJWY.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "C4ADNNGW2WA5AJWY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "C4ADNNGW2WA5AJWY.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "C4ADNNGW2WA5AJWY.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "C4ADNNGW2WA5AJWY.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "C4ADNNGW2WA5AJWY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "C4ADNNGW2WA5AJWY.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "C4ADNNGW2WA5AJWY.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "UC54XWQVHQPRYB9K" : { + "UC54XWQVHQPRYB9K.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "UC54XWQVHQPRYB9K", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UC54XWQVHQPRYB9K.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "UC54XWQVHQPRYB9K.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38658" + }, + "appliesTo" : [ ] + }, + "UC54XWQVHQPRYB9K.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "UC54XWQVHQPRYB9K.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "UC54XWQVHQPRYB9K.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "UC54XWQVHQPRYB9K", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UC54XWQVHQPRYB9K.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "UC54XWQVHQPRYB9K.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9580000000" + }, + "appliesTo" : [ ] + }, + "UC54XWQVHQPRYB9K.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "UC54XWQVHQPRYB9K.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17151" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "UC54XWQVHQPRYB9K.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "UC54XWQVHQPRYB9K", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UC54XWQVHQPRYB9K.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "UC54XWQVHQPRYB9K.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30009" + }, + "appliesTo" : [ ] + }, + "UC54XWQVHQPRYB9K.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "UC54XWQVHQPRYB9K.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "UC54XWQVHQPRYB9K.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "UC54XWQVHQPRYB9K", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UC54XWQVHQPRYB9K.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "UC54XWQVHQPRYB9K.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26095" + }, + "appliesTo" : [ ] + }, + "UC54XWQVHQPRYB9K.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "UC54XWQVHQPRYB9K.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "UC54XWQVHQPRYB9K.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "UC54XWQVHQPRYB9K", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UC54XWQVHQPRYB9K.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "UC54XWQVHQPRYB9K.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "UC54XWQVHQPRYB9K.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "UC54XWQVHQPRYB9K", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UC54XWQVHQPRYB9K.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "UC54XWQVHQPRYB9K.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "UC54XWQVHQPRYB9K.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "UC54XWQVHQPRYB9K.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "49058" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "UC54XWQVHQPRYB9K.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "UC54XWQVHQPRYB9K", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UC54XWQVHQPRYB9K.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "UC54XWQVHQPRYB9K.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "UC54XWQVHQPRYB9K.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "UC54XWQVHQPRYB9K.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33616" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "UC54XWQVHQPRYB9K.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "UC54XWQVHQPRYB9K", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UC54XWQVHQPRYB9K.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "UC54XWQVHQPRYB9K.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19724" + }, + "appliesTo" : [ ] + }, + "UC54XWQVHQPRYB9K.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "UC54XWQVHQPRYB9K.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "UC54XWQVHQPRYB9K.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "UC54XWQVHQPRYB9K", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UC54XWQVHQPRYB9K.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "UC54XWQVHQPRYB9K.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.7280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "UC54XWQVHQPRYB9K.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "UC54XWQVHQPRYB9K", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UC54XWQVHQPRYB9K.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "UC54XWQVHQPRYB9K.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.1120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "UC54XWQVHQPRYB9K.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "UC54XWQVHQPRYB9K", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UC54XWQVHQPRYB9K.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "UC54XWQVHQPRYB9K.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "58817" + }, + "appliesTo" : [ ] + }, + "UC54XWQVHQPRYB9K.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "UC54XWQVHQPRYB9K.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "UC54XWQVHQPRYB9K.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "UC54XWQVHQPRYB9K", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UC54XWQVHQPRYB9K.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "UC54XWQVHQPRYB9K.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "TNZVJ6TD58FTD557" : { + "TNZVJ6TD58FTD557.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TNZVJ6TD58FTD557", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TNZVJ6TD58FTD557.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TNZVJ6TD58FTD557.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TNZVJ6TD58FTD557.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TNZVJ6TD58FTD557", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TNZVJ6TD58FTD557.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TNZVJ6TD58FTD557.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14352" + }, + "appliesTo" : [ ] + }, + "TNZVJ6TD58FTD557.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TNZVJ6TD58FTD557.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TNZVJ6TD58FTD557.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TNZVJ6TD58FTD557", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TNZVJ6TD58FTD557.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TNZVJ6TD58FTD557.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26982" + }, + "appliesTo" : [ ] + }, + "TNZVJ6TD58FTD557.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TNZVJ6TD58FTD557.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TNZVJ6TD58FTD557.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TNZVJ6TD58FTD557", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TNZVJ6TD58FTD557.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TNZVJ6TD58FTD557.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9433" + }, + "appliesTo" : [ ] + }, + "TNZVJ6TD58FTD557.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TNZVJ6TD58FTD557.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TNZVJ6TD58FTD557.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "TNZVJ6TD58FTD557", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TNZVJ6TD58FTD557.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "TNZVJ6TD58FTD557.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TNZVJ6TD58FTD557.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TNZVJ6TD58FTD557", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TNZVJ6TD58FTD557.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TNZVJ6TD58FTD557.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18489" + }, + "appliesTo" : [ ] + }, + "TNZVJ6TD58FTD557.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TNZVJ6TD58FTD557.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "3RTZAQ64564SNQ7T" : { + "3RTZAQ64564SNQ7T.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "3RTZAQ64564SNQ7T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3RTZAQ64564SNQ7T.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "3RTZAQ64564SNQ7T.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9867" + }, + "appliesTo" : [ ] + }, + "3RTZAQ64564SNQ7T.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "3RTZAQ64564SNQ7T.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3RTZAQ64564SNQ7T.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "3RTZAQ64564SNQ7T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3RTZAQ64564SNQ7T.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "3RTZAQ64564SNQ7T.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5050000000" + }, + "appliesTo" : [ ] + }, + "3RTZAQ64564SNQ7T.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "3RTZAQ64564SNQ7T.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4423" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3RTZAQ64564SNQ7T.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "3RTZAQ64564SNQ7T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3RTZAQ64564SNQ7T.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "3RTZAQ64564SNQ7T.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10193" + }, + "appliesTo" : [ ] + }, + "3RTZAQ64564SNQ7T.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "3RTZAQ64564SNQ7T.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3RTZAQ64564SNQ7T.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "3RTZAQ64564SNQ7T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3RTZAQ64564SNQ7T.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "3RTZAQ64564SNQ7T.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20026" + }, + "appliesTo" : [ ] + }, + "3RTZAQ64564SNQ7T.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "3RTZAQ64564SNQ7T.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3RTZAQ64564SNQ7T.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "3RTZAQ64564SNQ7T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3RTZAQ64564SNQ7T.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "3RTZAQ64564SNQ7T.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3RTZAQ64564SNQ7T.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "3RTZAQ64564SNQ7T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3RTZAQ64564SNQ7T.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "3RTZAQ64564SNQ7T.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5740000000" + }, + "appliesTo" : [ ] + }, + "3RTZAQ64564SNQ7T.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "3RTZAQ64564SNQ7T.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5026" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3RTZAQ64564SNQ7T.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "3RTZAQ64564SNQ7T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3RTZAQ64564SNQ7T.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "3RTZAQ64564SNQ7T.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3RTZAQ64564SNQ7T.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "3RTZAQ64564SNQ7T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3RTZAQ64564SNQ7T.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "3RTZAQ64564SNQ7T.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3RTZAQ64564SNQ7T.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "3RTZAQ64564SNQ7T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3RTZAQ64564SNQ7T.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "3RTZAQ64564SNQ7T.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9007" + }, + "appliesTo" : [ ] + }, + "3RTZAQ64564SNQ7T.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "3RTZAQ64564SNQ7T.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3RTZAQ64564SNQ7T.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "3RTZAQ64564SNQ7T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3RTZAQ64564SNQ7T.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "3RTZAQ64564SNQ7T.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "3RTZAQ64564SNQ7T.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "3RTZAQ64564SNQ7T.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17077" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3RTZAQ64564SNQ7T.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "3RTZAQ64564SNQ7T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3RTZAQ64564SNQ7T.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "3RTZAQ64564SNQ7T.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3RTZAQ64564SNQ7T.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "3RTZAQ64564SNQ7T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3RTZAQ64564SNQ7T.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "3RTZAQ64564SNQ7T.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "3RTZAQ64564SNQ7T.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "3RTZAQ64564SNQ7T.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8685" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "ES3XAJX5E6SRUWY5" : { + "ES3XAJX5E6SRUWY5.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ES3XAJX5E6SRUWY5", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "ES3XAJX5E6SRUWY5.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ES3XAJX5E6SRUWY5.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ES3XAJX5E6SRUWY5.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ES3XAJX5E6SRUWY5.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8614" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ES3XAJX5E6SRUWY5.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ES3XAJX5E6SRUWY5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ES3XAJX5E6SRUWY5.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ES3XAJX5E6SRUWY5.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5672" + }, + "appliesTo" : [ ] + }, + "ES3XAJX5E6SRUWY5.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ES3XAJX5E6SRUWY5.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ES3XAJX5E6SRUWY5.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ES3XAJX5E6SRUWY5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ES3XAJX5E6SRUWY5.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ES3XAJX5E6SRUWY5.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ES3XAJX5E6SRUWY5.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ES3XAJX5E6SRUWY5", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "ES3XAJX5E6SRUWY5.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ES3XAJX5E6SRUWY5.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13091" + }, + "appliesTo" : [ ] + }, + "ES3XAJX5E6SRUWY5.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ES3XAJX5E6SRUWY5.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ES3XAJX5E6SRUWY5.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ES3XAJX5E6SRUWY5", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "ES3XAJX5E6SRUWY5.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ES3XAJX5E6SRUWY5.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10023" + }, + "appliesTo" : [ ] + }, + "ES3XAJX5E6SRUWY5.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ES3XAJX5E6SRUWY5.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ES3XAJX5E6SRUWY5.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ES3XAJX5E6SRUWY5", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "ES3XAJX5E6SRUWY5.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ES3XAJX5E6SRUWY5.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ES3XAJX5E6SRUWY5.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ES3XAJX5E6SRUWY5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ES3XAJX5E6SRUWY5.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ES3XAJX5E6SRUWY5.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ES3XAJX5E6SRUWY5.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ES3XAJX5E6SRUWY5.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11330" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ES3XAJX5E6SRUWY5.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ES3XAJX5E6SRUWY5", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "ES3XAJX5E6SRUWY5.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ES3XAJX5E6SRUWY5.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18847" + }, + "appliesTo" : [ ] + }, + "ES3XAJX5E6SRUWY5.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ES3XAJX5E6SRUWY5.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ES3XAJX5E6SRUWY5.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "ES3XAJX5E6SRUWY5", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ES3XAJX5E6SRUWY5.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "ES3XAJX5E6SRUWY5.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ES3XAJX5E6SRUWY5.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ES3XAJX5E6SRUWY5", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ES3XAJX5E6SRUWY5.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ES3XAJX5E6SRUWY5.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25652" + }, + "appliesTo" : [ ] + }, + "ES3XAJX5E6SRUWY5.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ES3XAJX5E6SRUWY5.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ES3XAJX5E6SRUWY5.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ES3XAJX5E6SRUWY5", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "ES3XAJX5E6SRUWY5.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ES3XAJX5E6SRUWY5.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ES3XAJX5E6SRUWY5.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ES3XAJX5E6SRUWY5", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "ES3XAJX5E6SRUWY5.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ES3XAJX5E6SRUWY5.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5020000000" + }, + "appliesTo" : [ ] + }, + "ES3XAJX5E6SRUWY5.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ES3XAJX5E6SRUWY5.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4396" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "Y4XD9NA45RXPDXY7" : { + "Y4XD9NA45RXPDXY7.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Y4XD9NA45RXPDXY7", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "Y4XD9NA45RXPDXY7.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Y4XD9NA45RXPDXY7.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3754" + }, + "appliesTo" : [ ] + }, + "Y4XD9NA45RXPDXY7.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Y4XD9NA45RXPDXY7.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Y4XD9NA45RXPDXY7.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "Y4XD9NA45RXPDXY7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Y4XD9NA45RXPDXY7.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "Y4XD9NA45RXPDXY7.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "Y4XD9NA45RXPDXY7.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "Y4XD9NA45RXPDXY7.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4290" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Y4XD9NA45RXPDXY7.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Y4XD9NA45RXPDXY7", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "Y4XD9NA45RXPDXY7.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Y4XD9NA45RXPDXY7.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2482" + }, + "appliesTo" : [ ] + }, + "Y4XD9NA45RXPDXY7.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Y4XD9NA45RXPDXY7.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y4XD9NA45RXPDXY7.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "Y4XD9NA45RXPDXY7", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "Y4XD9NA45RXPDXY7.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "Y4XD9NA45RXPDXY7.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1400000000" + }, + "appliesTo" : [ ] + }, + "Y4XD9NA45RXPDXY7.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "Y4XD9NA45RXPDXY7.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6578" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y4XD9NA45RXPDXY7.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Y4XD9NA45RXPDXY7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Y4XD9NA45RXPDXY7.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Y4XD9NA45RXPDXY7.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8038" + }, + "appliesTo" : [ ] + }, + "Y4XD9NA45RXPDXY7.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Y4XD9NA45RXPDXY7.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Y4XD9NA45RXPDXY7.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "Y4XD9NA45RXPDXY7", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "Y4XD9NA45RXPDXY7.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "Y4XD9NA45RXPDXY7.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Y4XD9NA45RXPDXY7.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Y4XD9NA45RXPDXY7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Y4XD9NA45RXPDXY7.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Y4XD9NA45RXPDXY7.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Y4XD9NA45RXPDXY7.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "Y4XD9NA45RXPDXY7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Y4XD9NA45RXPDXY7.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "Y4XD9NA45RXPDXY7.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2217" + }, + "appliesTo" : [ ] + }, + "Y4XD9NA45RXPDXY7.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "Y4XD9NA45RXPDXY7.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y4XD9NA45RXPDXY7.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Y4XD9NA45RXPDXY7", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "Y4XD9NA45RXPDXY7.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Y4XD9NA45RXPDXY7.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6659" + }, + "appliesTo" : [ ] + }, + "Y4XD9NA45RXPDXY7.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Y4XD9NA45RXPDXY7.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y4XD9NA45RXPDXY7.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "Y4XD9NA45RXPDXY7", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "Y4XD9NA45RXPDXY7.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "Y4XD9NA45RXPDXY7.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10019" + }, + "appliesTo" : [ ] + }, + "Y4XD9NA45RXPDXY7.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "Y4XD9NA45RXPDXY7.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Y4XD9NA45RXPDXY7.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "Y4XD9NA45RXPDXY7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Y4XD9NA45RXPDXY7.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "Y4XD9NA45RXPDXY7.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "ZV6FCW29ACDSB8CF" : { + "ZV6FCW29ACDSB8CF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ZV6FCW29ACDSB8CF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZV6FCW29ACDSB8CF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ZV6FCW29ACDSB8CF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "157648" + }, + "appliesTo" : [ ] + }, + "ZV6FCW29ACDSB8CF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ZV6FCW29ACDSB8CF.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZV6FCW29ACDSB8CF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ZV6FCW29ACDSB8CF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZV6FCW29ACDSB8CF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ZV6FCW29ACDSB8CF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "78928" + }, + "appliesTo" : [ ] + }, + "ZV6FCW29ACDSB8CF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ZV6FCW29ACDSB8CF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.0100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZV6FCW29ACDSB8CF.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ZV6FCW29ACDSB8CF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZV6FCW29ACDSB8CF.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ZV6FCW29ACDSB8CF.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "159168" + }, + "appliesTo" : [ ] + }, + "ZV6FCW29ACDSB8CF.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ZV6FCW29ACDSB8CF.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZV6FCW29ACDSB8CF.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ZV6FCW29ACDSB8CF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZV6FCW29ACDSB8CF.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ZV6FCW29ACDSB8CF.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "233366" + }, + "appliesTo" : [ ] + }, + "ZV6FCW29ACDSB8CF.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ZV6FCW29ACDSB8CF.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.8800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZV6FCW29ACDSB8CF.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "ZV6FCW29ACDSB8CF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZV6FCW29ACDSB8CF.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "ZV6FCW29ACDSB8CF.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "17.7040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZV6FCW29ACDSB8CF.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ZV6FCW29ACDSB8CF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZV6FCW29ACDSB8CF.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ZV6FCW29ACDSB8CF.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "18.2649000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZV6FCW29ACDSB8CF.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ZV6FCW29ACDSB8CF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZV6FCW29ACDSB8CF.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ZV6FCW29ACDSB8CF.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "18.0790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZV6FCW29ACDSB8CF.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ZV6FCW29ACDSB8CF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZV6FCW29ACDSB8CF.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ZV6FCW29ACDSB8CF.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "79703" + }, + "appliesTo" : [ ] + }, + "ZV6FCW29ACDSB8CF.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ZV6FCW29ACDSB8CF.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.0985000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZV6FCW29ACDSB8CF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ZV6FCW29ACDSB8CF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZV6FCW29ACDSB8CF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ZV6FCW29ACDSB8CF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "231790" + }, + "appliesTo" : [ ] + }, + "ZV6FCW29ACDSB8CF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ZV6FCW29ACDSB8CF.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.8200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZV6FCW29ACDSB8CF.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ZV6FCW29ACDSB8CF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZV6FCW29ACDSB8CF.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ZV6FCW29ACDSB8CF.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "466249" + }, + "appliesTo" : [ ] + }, + "ZV6FCW29ACDSB8CF.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ZV6FCW29ACDSB8CF.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZV6FCW29ACDSB8CF.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ZV6FCW29ACDSB8CF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZV6FCW29ACDSB8CF.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ZV6FCW29ACDSB8CF.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "17.8336000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZV6FCW29ACDSB8CF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ZV6FCW29ACDSB8CF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZV6FCW29ACDSB8CF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ZV6FCW29ACDSB8CF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "462318" + }, + "appliesTo" : [ ] + }, + "ZV6FCW29ACDSB8CF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ZV6FCW29ACDSB8CF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "EVFZ5VDSHTZYPX89" : { + "EVFZ5VDSHTZYPX89.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "EVFZ5VDSHTZYPX89", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "EVFZ5VDSHTZYPX89.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "EVFZ5VDSHTZYPX89.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2277" + }, + "appliesTo" : [ ] + }, + "EVFZ5VDSHTZYPX89.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "EVFZ5VDSHTZYPX89.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EVFZ5VDSHTZYPX89.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "EVFZ5VDSHTZYPX89", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "EVFZ5VDSHTZYPX89.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "EVFZ5VDSHTZYPX89.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "EVFZ5VDSHTZYPX89.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "EVFZ5VDSHTZYPX89", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "EVFZ5VDSHTZYPX89.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "EVFZ5VDSHTZYPX89.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7086" + }, + "appliesTo" : [ ] + }, + "EVFZ5VDSHTZYPX89.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "EVFZ5VDSHTZYPX89.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EVFZ5VDSHTZYPX89.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "EVFZ5VDSHTZYPX89", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "EVFZ5VDSHTZYPX89.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "EVFZ5VDSHTZYPX89.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3874" + }, + "appliesTo" : [ ] + }, + "EVFZ5VDSHTZYPX89.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "EVFZ5VDSHTZYPX89.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EVFZ5VDSHTZYPX89.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "EVFZ5VDSHTZYPX89", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "EVFZ5VDSHTZYPX89.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "EVFZ5VDSHTZYPX89.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1520000000" + }, + "appliesTo" : [ ] + }, + "EVFZ5VDSHTZYPX89.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "EVFZ5VDSHTZYPX89.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3550" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "WXU9QBE38YNQDZE3" : { + "WXU9QBE38YNQDZE3.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "WXU9QBE38YNQDZE3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WXU9QBE38YNQDZE3.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "WXU9QBE38YNQDZE3.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WXU9QBE38YNQDZE3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "WXU9QBE38YNQDZE3", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "WXU9QBE38YNQDZE3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "WXU9QBE38YNQDZE3.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "WXU9QBE38YNQDZE3.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "WXU9QBE38YNQDZE3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WXU9QBE38YNQDZE3.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "WXU9QBE38YNQDZE3.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0980000000" + }, + "appliesTo" : [ ] + }, + "WXU9QBE38YNQDZE3.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "WXU9QBE38YNQDZE3.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "858" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WXU9QBE38YNQDZE3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "WXU9QBE38YNQDZE3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "WXU9QBE38YNQDZE3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "WXU9QBE38YNQDZE3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1049" + }, + "appliesTo" : [ ] + }, + "WXU9QBE38YNQDZE3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "WXU9QBE38YNQDZE3.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WXU9QBE38YNQDZE3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "WXU9QBE38YNQDZE3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "WXU9QBE38YNQDZE3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "WXU9QBE38YNQDZE3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "WXU9QBE38YNQDZE3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "WXU9QBE38YNQDZE3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3676" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WXU9QBE38YNQDZE3.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "WXU9QBE38YNQDZE3", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "WXU9QBE38YNQDZE3.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "WXU9QBE38YNQDZE3.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1802" + }, + "appliesTo" : [ ] + }, + "WXU9QBE38YNQDZE3.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "WXU9QBE38YNQDZE3.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WXU9QBE38YNQDZE3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "WXU9QBE38YNQDZE3", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "WXU9QBE38YNQDZE3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "WXU9QBE38YNQDZE3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1606" + }, + "appliesTo" : [ ] + }, + "WXU9QBE38YNQDZE3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "WXU9QBE38YNQDZE3.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WXU9QBE38YNQDZE3.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "WXU9QBE38YNQDZE3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WXU9QBE38YNQDZE3.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "WXU9QBE38YNQDZE3.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1699" + }, + "appliesTo" : [ ] + }, + "WXU9QBE38YNQDZE3.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "WXU9QBE38YNQDZE3.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WXU9QBE38YNQDZE3.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "WXU9QBE38YNQDZE3", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "WXU9QBE38YNQDZE3.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "WXU9QBE38YNQDZE3.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WXU9QBE38YNQDZE3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "WXU9QBE38YNQDZE3", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "WXU9QBE38YNQDZE3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "WXU9QBE38YNQDZE3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "647" + }, + "appliesTo" : [ ] + }, + "WXU9QBE38YNQDZE3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "WXU9QBE38YNQDZE3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WXU9QBE38YNQDZE3.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "WXU9QBE38YNQDZE3", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "WXU9QBE38YNQDZE3.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "WXU9QBE38YNQDZE3.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "WXU9QBE38YNQDZE3.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "WXU9QBE38YNQDZE3.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4583" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "SJ2H8X62JZ6P6N48" : { + "SJ2H8X62JZ6P6N48.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SJ2H8X62JZ6P6N48", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "SJ2H8X62JZ6P6N48.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SJ2H8X62JZ6P6N48.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9432" + }, + "appliesTo" : [ ] + }, + "SJ2H8X62JZ6P6N48.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SJ2H8X62JZ6P6N48.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SJ2H8X62JZ6P6N48.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "SJ2H8X62JZ6P6N48", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SJ2H8X62JZ6P6N48.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "SJ2H8X62JZ6P6N48.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SJ2H8X62JZ6P6N48.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SJ2H8X62JZ6P6N48", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SJ2H8X62JZ6P6N48.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SJ2H8X62JZ6P6N48.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19745" + }, + "appliesTo" : [ ] + }, + "SJ2H8X62JZ6P6N48.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SJ2H8X62JZ6P6N48.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SJ2H8X62JZ6P6N48.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "SJ2H8X62JZ6P6N48", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SJ2H8X62JZ6P6N48.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "SJ2H8X62JZ6P6N48.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9913" + }, + "appliesTo" : [ ] + }, + "SJ2H8X62JZ6P6N48.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "SJ2H8X62JZ6P6N48.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SJ2H8X62JZ6P6N48.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SJ2H8X62JZ6P6N48", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "SJ2H8X62JZ6P6N48.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SJ2H8X62JZ6P6N48.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4610000000" + }, + "appliesTo" : [ ] + }, + "SJ2H8X62JZ6P6N48.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SJ2H8X62JZ6P6N48.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8686" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SJ2H8X62JZ6P6N48.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "SJ2H8X62JZ6P6N48", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SJ2H8X62JZ6P6N48.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "SJ2H8X62JZ6P6N48.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22846" + }, + "appliesTo" : [ ] + }, + "SJ2H8X62JZ6P6N48.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "SJ2H8X62JZ6P6N48.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SJ2H8X62JZ6P6N48.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "SJ2H8X62JZ6P6N48", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SJ2H8X62JZ6P6N48.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "SJ2H8X62JZ6P6N48.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SJ2H8X62JZ6P6N48.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "SJ2H8X62JZ6P6N48", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SJ2H8X62JZ6P6N48.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "SJ2H8X62JZ6P6N48.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4836" + }, + "appliesTo" : [ ] + }, + "SJ2H8X62JZ6P6N48.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "SJ2H8X62JZ6P6N48.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SJ2H8X62JZ6P6N48.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "SJ2H8X62JZ6P6N48", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SJ2H8X62JZ6P6N48.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "SJ2H8X62JZ6P6N48.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10616" + }, + "appliesTo" : [ ] + }, + "SJ2H8X62JZ6P6N48.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "SJ2H8X62JZ6P6N48.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SJ2H8X62JZ6P6N48.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "SJ2H8X62JZ6P6N48", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SJ2H8X62JZ6P6N48.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "SJ2H8X62JZ6P6N48.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SJ2H8X62JZ6P6N48.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SJ2H8X62JZ6P6N48", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SJ2H8X62JZ6P6N48.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SJ2H8X62JZ6P6N48.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SJ2H8X62JZ6P6N48.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SJ2H8X62JZ6P6N48", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "SJ2H8X62JZ6P6N48.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SJ2H8X62JZ6P6N48.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4231" + }, + "appliesTo" : [ ] + }, + "SJ2H8X62JZ6P6N48.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SJ2H8X62JZ6P6N48.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "ZC3Y45SUG7K4RB8W" : { + "ZC3Y45SUG7K4RB8W.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ZC3Y45SUG7K4RB8W", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ZC3Y45SUG7K4RB8W.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ZC3Y45SUG7K4RB8W.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1443" + }, + "appliesTo" : [ ] + }, + "ZC3Y45SUG7K4RB8W.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ZC3Y45SUG7K4RB8W.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZC3Y45SUG7K4RB8W.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ZC3Y45SUG7K4RB8W", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "ZC3Y45SUG7K4RB8W.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ZC3Y45SUG7K4RB8W.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3345" + }, + "appliesTo" : [ ] + }, + "ZC3Y45SUG7K4RB8W.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ZC3Y45SUG7K4RB8W.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZC3Y45SUG7K4RB8W.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ZC3Y45SUG7K4RB8W", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "ZC3Y45SUG7K4RB8W.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ZC3Y45SUG7K4RB8W.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "813" + }, + "appliesTo" : [ ] + }, + "ZC3Y45SUG7K4RB8W.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ZC3Y45SUG7K4RB8W.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZC3Y45SUG7K4RB8W.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ZC3Y45SUG7K4RB8W", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ZC3Y45SUG7K4RB8W.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ZC3Y45SUG7K4RB8W.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "519" + }, + "appliesTo" : [ ] + }, + "ZC3Y45SUG7K4RB8W.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ZC3Y45SUG7K4RB8W.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZC3Y45SUG7K4RB8W.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ZC3Y45SUG7K4RB8W", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "ZC3Y45SUG7K4RB8W.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ZC3Y45SUG7K4RB8W.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "U35UAX5SUJURKCT4" : { + "U35UAX5SUJURKCT4.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "U35UAX5SUJURKCT4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U35UAX5SUJURKCT4.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "U35UAX5SUJURKCT4.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8710000000" + }, + "appliesTo" : [ ] + }, + "U35UAX5SUJURKCT4.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "U35UAX5SUJURKCT4.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7628" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "U35UAX5SUJURKCT4.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "U35UAX5SUJURKCT4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U35UAX5SUJURKCT4.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "U35UAX5SUJURKCT4.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "U35UAX5SUJURKCT4.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "U35UAX5SUJURKCT4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U35UAX5SUJURKCT4.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "U35UAX5SUJURKCT4.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "U35UAX5SUJURKCT4.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "U35UAX5SUJURKCT4.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13652" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "U35UAX5SUJURKCT4.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "U35UAX5SUJURKCT4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U35UAX5SUJURKCT4.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "U35UAX5SUJURKCT4.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5250000000" + }, + "appliesTo" : [ ] + }, + "U35UAX5SUJURKCT4.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "U35UAX5SUJURKCT4.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13788" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "U35UAX5SUJURKCT4.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "U35UAX5SUJURKCT4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U35UAX5SUJURKCT4.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "U35UAX5SUJURKCT4.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "U35UAX5SUJURKCT4.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "U35UAX5SUJURKCT4.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26715" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "U35UAX5SUJURKCT4.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "U35UAX5SUJURKCT4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U35UAX5SUJURKCT4.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "U35UAX5SUJURKCT4.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14864" + }, + "appliesTo" : [ ] + }, + "U35UAX5SUJURKCT4.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "U35UAX5SUJURKCT4.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "U35UAX5SUJURKCT4.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "U35UAX5SUJURKCT4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U35UAX5SUJURKCT4.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "U35UAX5SUJURKCT4.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "U35UAX5SUJURKCT4.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "U35UAX5SUJURKCT4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U35UAX5SUJURKCT4.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "U35UAX5SUJURKCT4.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "U35UAX5SUJURKCT4.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "U35UAX5SUJURKCT4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U35UAX5SUJURKCT4.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "U35UAX5SUJURKCT4.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6921" + }, + "appliesTo" : [ ] + }, + "U35UAX5SUJURKCT4.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "U35UAX5SUJURKCT4.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "U35UAX5SUJURKCT4.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "U35UAX5SUJURKCT4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U35UAX5SUJURKCT4.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "U35UAX5SUJURKCT4.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29399" + }, + "appliesTo" : [ ] + }, + "U35UAX5SUJURKCT4.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "U35UAX5SUJURKCT4.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "U35UAX5SUJURKCT4.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "U35UAX5SUJURKCT4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U35UAX5SUJURKCT4.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "U35UAX5SUJURKCT4.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "U35UAX5SUJURKCT4.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "U35UAX5SUJURKCT4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U35UAX5SUJURKCT4.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "U35UAX5SUJURKCT4.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15039" + }, + "appliesTo" : [ ] + }, + "U35UAX5SUJURKCT4.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "U35UAX5SUJURKCT4.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "C7UZ38M4P93WMCBP" : { + "C7UZ38M4P93WMCBP.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "C7UZ38M4P93WMCBP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "C7UZ38M4P93WMCBP.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "C7UZ38M4P93WMCBP.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.2490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "C7UZ38M4P93WMCBP.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "C7UZ38M4P93WMCBP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "C7UZ38M4P93WMCBP.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "C7UZ38M4P93WMCBP.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26106" + }, + "appliesTo" : [ ] + }, + "C7UZ38M4P93WMCBP.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "C7UZ38M4P93WMCBP.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "C7UZ38M4P93WMCBP.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "C7UZ38M4P93WMCBP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "C7UZ38M4P93WMCBP.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "C7UZ38M4P93WMCBP.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "44485" + }, + "appliesTo" : [ ] + }, + "C7UZ38M4P93WMCBP.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "C7UZ38M4P93WMCBP.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "C7UZ38M4P93WMCBP.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "C7UZ38M4P93WMCBP", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "C7UZ38M4P93WMCBP.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "C7UZ38M4P93WMCBP.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8830000000" + }, + "appliesTo" : [ ] + }, + "C7UZ38M4P93WMCBP.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "C7UZ38M4P93WMCBP.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "49496" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "C7UZ38M4P93WMCBP.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "C7UZ38M4P93WMCBP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "C7UZ38M4P93WMCBP.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "C7UZ38M4P93WMCBP.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "56868" + }, + "appliesTo" : [ ] + }, + "C7UZ38M4P93WMCBP.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "C7UZ38M4P93WMCBP.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "C7UZ38M4P93WMCBP.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "C7UZ38M4P93WMCBP", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "C7UZ38M4P93WMCBP.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "C7UZ38M4P93WMCBP.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "93084" + }, + "appliesTo" : [ ] + }, + "C7UZ38M4P93WMCBP.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "C7UZ38M4P93WMCBP.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "C7UZ38M4P93WMCBP.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "C7UZ38M4P93WMCBP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "C7UZ38M4P93WMCBP.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "C7UZ38M4P93WMCBP.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.0720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "C7UZ38M4P93WMCBP.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "C7UZ38M4P93WMCBP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "C7UZ38M4P93WMCBP.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "C7UZ38M4P93WMCBP.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "111465" + }, + "appliesTo" : [ ] + }, + "C7UZ38M4P93WMCBP.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "C7UZ38M4P93WMCBP.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "C7UZ38M4P93WMCBP.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "C7UZ38M4P93WMCBP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "C7UZ38M4P93WMCBP.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "C7UZ38M4P93WMCBP.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.6780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "C7UZ38M4P93WMCBP.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "C7UZ38M4P93WMCBP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "C7UZ38M4P93WMCBP.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "C7UZ38M4P93WMCBP.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.4380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "C7UZ38M4P93WMCBP.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "C7UZ38M4P93WMCBP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "C7UZ38M4P93WMCBP.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "C7UZ38M4P93WMCBP.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "51114" + }, + "appliesTo" : [ ] + }, + "C7UZ38M4P93WMCBP.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "C7UZ38M4P93WMCBP.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "C7UZ38M4P93WMCBP.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "C7UZ38M4P93WMCBP", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "C7UZ38M4P93WMCBP.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "C7UZ38M4P93WMCBP.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22724" + }, + "appliesTo" : [ ] + }, + "C7UZ38M4P93WMCBP.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "C7UZ38M4P93WMCBP.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "V7ZPECCN7AX2ME3K" : { + "V7ZPECCN7AX2ME3K.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "V7ZPECCN7AX2ME3K", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "V7ZPECCN7AX2ME3K.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "V7ZPECCN7AX2ME3K.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0236000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "V7ZPECCN7AX2ME3K.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "V7ZPECCN7AX2ME3K", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "V7ZPECCN7AX2ME3K.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "V7ZPECCN7AX2ME3K.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "100" + }, + "appliesTo" : [ ] + }, + "V7ZPECCN7AX2ME3K.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "V7ZPECCN7AX2ME3K.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0114000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "V7ZPECCN7AX2ME3K.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "V7ZPECCN7AX2ME3K", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "V7ZPECCN7AX2ME3K.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "V7ZPECCN7AX2ME3K.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "198" + }, + "appliesTo" : [ ] + }, + "V7ZPECCN7AX2ME3K.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "V7ZPECCN7AX2ME3K.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "V7ZPECCN7AX2ME3K.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "V7ZPECCN7AX2ME3K", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "V7ZPECCN7AX2ME3K.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "V7ZPECCN7AX2ME3K.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0207000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "V7ZPECCN7AX2ME3K.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "V7ZPECCN7AX2ME3K", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "V7ZPECCN7AX2ME3K.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "V7ZPECCN7AX2ME3K.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0192000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "V7ZPECCN7AX2ME3K.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "V7ZPECCN7AX2ME3K", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "V7ZPECCN7AX2ME3K.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "V7ZPECCN7AX2ME3K.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "517" + }, + "appliesTo" : [ ] + }, + "V7ZPECCN7AX2ME3K.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "V7ZPECCN7AX2ME3K.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "V7ZPECCN7AX2ME3K.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "V7ZPECCN7AX2ME3K", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "V7ZPECCN7AX2ME3K.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "V7ZPECCN7AX2ME3K.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "430" + }, + "appliesTo" : [ ] + }, + "V7ZPECCN7AX2ME3K.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "V7ZPECCN7AX2ME3K.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "V7ZPECCN7AX2ME3K.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "V7ZPECCN7AX2ME3K", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V7ZPECCN7AX2ME3K.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "V7ZPECCN7AX2ME3K.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "216" + }, + "appliesTo" : [ ] + }, + "V7ZPECCN7AX2ME3K.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "V7ZPECCN7AX2ME3K.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "V7ZPECCN7AX2ME3K.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "V7ZPECCN7AX2ME3K", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "V7ZPECCN7AX2ME3K.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "V7ZPECCN7AX2ME3K.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "221" + }, + "appliesTo" : [ ] + }, + "V7ZPECCN7AX2ME3K.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "V7ZPECCN7AX2ME3K.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "V7ZPECCN7AX2ME3K.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "V7ZPECCN7AX2ME3K", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "V7ZPECCN7AX2ME3K.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "V7ZPECCN7AX2ME3K.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0099000000" + }, + "appliesTo" : [ ] + }, + "V7ZPECCN7AX2ME3K.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "V7ZPECCN7AX2ME3K.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "261" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "V7ZPECCN7AX2ME3K.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "V7ZPECCN7AX2ME3K", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V7ZPECCN7AX2ME3K.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "V7ZPECCN7AX2ME3K.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0257000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "V7ZPECCN7AX2ME3K.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "V7ZPECCN7AX2ME3K", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V7ZPECCN7AX2ME3K.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "V7ZPECCN7AX2ME3K.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "109" + }, + "appliesTo" : [ ] + }, + "V7ZPECCN7AX2ME3K.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "V7ZPECCN7AX2ME3K.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0125000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "H6JT2V67UAFS4Z2Y" : { + "H6JT2V67UAFS4Z2Y.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "H6JT2V67UAFS4Z2Y", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "H6JT2V67UAFS4Z2Y.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "H6JT2V67UAFS4Z2Y.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10543" + }, + "appliesTo" : [ ] + }, + "H6JT2V67UAFS4Z2Y.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "H6JT2V67UAFS4Z2Y.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "H6JT2V67UAFS4Z2Y.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "H6JT2V67UAFS4Z2Y", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "H6JT2V67UAFS4Z2Y.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "H6JT2V67UAFS4Z2Y.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5380" + }, + "appliesTo" : [ ] + }, + "H6JT2V67UAFS4Z2Y.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "H6JT2V67UAFS4Z2Y.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "H6JT2V67UAFS4Z2Y.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "H6JT2V67UAFS4Z2Y", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "H6JT2V67UAFS4Z2Y.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "H6JT2V67UAFS4Z2Y.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "H6JT2V67UAFS4Z2Y.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "H6JT2V67UAFS4Z2Y", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "H6JT2V67UAFS4Z2Y.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "H6JT2V67UAFS4Z2Y.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "H6JT2V67UAFS4Z2Y.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "H6JT2V67UAFS4Z2Y.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23456" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "H6JT2V67UAFS4Z2Y.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "H6JT2V67UAFS4Z2Y", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "H6JT2V67UAFS4Z2Y.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "H6JT2V67UAFS4Z2Y.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4750000000" + }, + "appliesTo" : [ ] + }, + "H6JT2V67UAFS4Z2Y.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "H6JT2V67UAFS4Z2Y.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12470" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "DFZPYYVFYF45BSQ3" : { + "DFZPYYVFYF45BSQ3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "DFZPYYVFYF45BSQ3", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "DFZPYYVFYF45BSQ3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "DFZPYYVFYF45BSQ3.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DFZPYYVFYF45BSQ3.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "DFZPYYVFYF45BSQ3", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "DFZPYYVFYF45BSQ3.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "DFZPYYVFYF45BSQ3.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47126" + }, + "appliesTo" : [ ] + }, + "DFZPYYVFYF45BSQ3.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "DFZPYYVFYF45BSQ3.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DFZPYYVFYF45BSQ3.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "DFZPYYVFYF45BSQ3", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "DFZPYYVFYF45BSQ3.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "DFZPYYVFYF45BSQ3.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0840000000" + }, + "appliesTo" : [ ] + }, + "DFZPYYVFYF45BSQ3.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "DFZPYYVFYF45BSQ3.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19623" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DFZPYYVFYF45BSQ3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "DFZPYYVFYF45BSQ3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "DFZPYYVFYF45BSQ3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "DFZPYYVFYF45BSQ3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11587" + }, + "appliesTo" : [ ] + }, + "DFZPYYVFYF45BSQ3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "DFZPYYVFYF45BSQ3.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DFZPYYVFYF45BSQ3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "DFZPYYVFYF45BSQ3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "DFZPYYVFYF45BSQ3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "DFZPYYVFYF45BSQ3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35126" + }, + "appliesTo" : [ ] + }, + "DFZPYYVFYF45BSQ3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "DFZPYYVFYF45BSQ3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DFZPYYVFYF45BSQ3.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "DFZPYYVFYF45BSQ3", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "DFZPYYVFYF45BSQ3.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "DFZPYYVFYF45BSQ3.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DFZPYYVFYF45BSQ3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "DFZPYYVFYF45BSQ3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "DFZPYYVFYF45BSQ3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "DFZPYYVFYF45BSQ3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16955" + }, + "appliesTo" : [ ] + }, + "DFZPYYVFYF45BSQ3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "DFZPYYVFYF45BSQ3.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DFZPYYVFYF45BSQ3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "DFZPYYVFYF45BSQ3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "DFZPYYVFYF45BSQ3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "DFZPYYVFYF45BSQ3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7269" + }, + "appliesTo" : [ ] + }, + "DFZPYYVFYF45BSQ3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "DFZPYYVFYF45BSQ3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DFZPYYVFYF45BSQ3.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "DFZPYYVFYF45BSQ3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DFZPYYVFYF45BSQ3.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "DFZPYYVFYF45BSQ3.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "DFZPYYVFYF45BSQ3.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "DFZPYYVFYF45BSQ3.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23245" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DFZPYYVFYF45BSQ3.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "DFZPYYVFYF45BSQ3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DFZPYYVFYF45BSQ3.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "DFZPYYVFYF45BSQ3.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11769" + }, + "appliesTo" : [ ] + }, + "DFZPYYVFYF45BSQ3.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "DFZPYYVFYF45BSQ3.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DFZPYYVFYF45BSQ3.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "DFZPYYVFYF45BSQ3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DFZPYYVFYF45BSQ3.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "DFZPYYVFYF45BSQ3.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "DE3QV5WMKKGZRFHG" : { + "DE3QV5WMKKGZRFHG.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "DE3QV5WMKKGZRFHG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DE3QV5WMKKGZRFHG.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "DE3QV5WMKKGZRFHG.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.1640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DE3QV5WMKKGZRFHG.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "DE3QV5WMKKGZRFHG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DE3QV5WMKKGZRFHG.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "DE3QV5WMKKGZRFHG.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "71219" + }, + "appliesTo" : [ ] + }, + "DE3QV5WMKKGZRFHG.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "DE3QV5WMKKGZRFHG.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.1300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DE3QV5WMKKGZRFHG.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "DE3QV5WMKKGZRFHG", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "DE3QV5WMKKGZRFHG.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "DE3QV5WMKKGZRFHG.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "207835" + }, + "appliesTo" : [ ] + }, + "DE3QV5WMKKGZRFHG.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "DE3QV5WMKKGZRFHG.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.9080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DE3QV5WMKKGZRFHG.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "DE3QV5WMKKGZRFHG", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "DE3QV5WMKKGZRFHG.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "DE3QV5WMKKGZRFHG.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "414628" + }, + "appliesTo" : [ ] + }, + "DE3QV5WMKKGZRFHG.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "DE3QV5WMKKGZRFHG.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DE3QV5WMKKGZRFHG.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "DE3QV5WMKKGZRFHG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DE3QV5WMKKGZRFHG.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "DE3QV5WMKKGZRFHG.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.9710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DE3QV5WMKKGZRFHG.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "DE3QV5WMKKGZRFHG", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "DE3QV5WMKKGZRFHG.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "DE3QV5WMKKGZRFHG.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "DE3QV5WMKKGZRFHG.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "DE3QV5WMKKGZRFHG.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "141514" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DE3QV5WMKKGZRFHG.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "DE3QV5WMKKGZRFHG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DE3QV5WMKKGZRFHG.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "DE3QV5WMKKGZRFHG.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "209063" + }, + "appliesTo" : [ ] + }, + "DE3QV5WMKKGZRFHG.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "DE3QV5WMKKGZRFHG.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.9550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DE3QV5WMKKGZRFHG.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "DE3QV5WMKKGZRFHG", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "DE3QV5WMKKGZRFHG.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "DE3QV5WMKKGZRFHG.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.0870000000" + }, + "appliesTo" : [ ] + }, + "DE3QV5WMKKGZRFHG.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "DE3QV5WMKKGZRFHG.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "70846" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DE3QV5WMKKGZRFHG.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "DE3QV5WMKKGZRFHG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DE3QV5WMKKGZRFHG.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "DE3QV5WMKKGZRFHG.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "142244" + }, + "appliesTo" : [ ] + }, + "DE3QV5WMKKGZRFHG.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "DE3QV5WMKKGZRFHG.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DE3QV5WMKKGZRFHG.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "DE3QV5WMKKGZRFHG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DE3QV5WMKKGZRFHG.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "DE3QV5WMKKGZRFHG.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "DE3QV5WMKKGZRFHG.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "DE3QV5WMKKGZRFHG.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "417729" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DE3QV5WMKKGZRFHG.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "DE3QV5WMKKGZRFHG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DE3QV5WMKKGZRFHG.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "DE3QV5WMKKGZRFHG.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.8640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DE3QV5WMKKGZRFHG.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "DE3QV5WMKKGZRFHG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DE3QV5WMKKGZRFHG.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "DE3QV5WMKKGZRFHG.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.3150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "Y9WDY7HG6S2NXFSP" : { + "Y9WDY7HG6S2NXFSP.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "Y9WDY7HG6S2NXFSP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Y9WDY7HG6S2NXFSP.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "Y9WDY7HG6S2NXFSP.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Y9WDY7HG6S2NXFSP.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Y9WDY7HG6S2NXFSP", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "Y9WDY7HG6S2NXFSP.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Y9WDY7HG6S2NXFSP.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8027" + }, + "appliesTo" : [ ] + }, + "Y9WDY7HG6S2NXFSP.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Y9WDY7HG6S2NXFSP.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Y9WDY7HG6S2NXFSP.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "Y9WDY7HG6S2NXFSP", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "Y9WDY7HG6S2NXFSP.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "Y9WDY7HG6S2NXFSP.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3910000000" + }, + "appliesTo" : [ ] + }, + "Y9WDY7HG6S2NXFSP.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "Y9WDY7HG6S2NXFSP.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12212" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y9WDY7HG6S2NXFSP.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Y9WDY7HG6S2NXFSP", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "Y9WDY7HG6S2NXFSP.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Y9WDY7HG6S2NXFSP.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8636" + }, + "appliesTo" : [ ] + }, + "Y9WDY7HG6S2NXFSP.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Y9WDY7HG6S2NXFSP.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y9WDY7HG6S2NXFSP.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "Y9WDY7HG6S2NXFSP", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "Y9WDY7HG6S2NXFSP.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "Y9WDY7HG6S2NXFSP.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22041" + }, + "appliesTo" : [ ] + }, + "Y9WDY7HG6S2NXFSP.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "Y9WDY7HG6S2NXFSP.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Y9WDY7HG6S2NXFSP.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Y9WDY7HG6S2NXFSP", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "Y9WDY7HG6S2NXFSP.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Y9WDY7HG6S2NXFSP.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17018" + }, + "appliesTo" : [ ] + }, + "Y9WDY7HG6S2NXFSP.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Y9WDY7HG6S2NXFSP.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Y9WDY7HG6S2NXFSP.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "Y9WDY7HG6S2NXFSP", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "Y9WDY7HG6S2NXFSP.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "Y9WDY7HG6S2NXFSP.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Y9WDY7HG6S2NXFSP.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "Y9WDY7HG6S2NXFSP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Y9WDY7HG6S2NXFSP.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "Y9WDY7HG6S2NXFSP.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3976" + }, + "appliesTo" : [ ] + }, + "Y9WDY7HG6S2NXFSP.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "Y9WDY7HG6S2NXFSP.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y9WDY7HG6S2NXFSP.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Y9WDY7HG6S2NXFSP", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "Y9WDY7HG6S2NXFSP.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Y9WDY7HG6S2NXFSP.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Y9WDY7HG6S2NXFSP.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "Y9WDY7HG6S2NXFSP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Y9WDY7HG6S2NXFSP.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "Y9WDY7HG6S2NXFSP.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8932" + }, + "appliesTo" : [ ] + }, + "Y9WDY7HG6S2NXFSP.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "Y9WDY7HG6S2NXFSP.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Y9WDY7HG6S2NXFSP.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Y9WDY7HG6S2NXFSP", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "Y9WDY7HG6S2NXFSP.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Y9WDY7HG6S2NXFSP.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4523" + }, + "appliesTo" : [ ] + }, + "Y9WDY7HG6S2NXFSP.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Y9WDY7HG6S2NXFSP.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "BHX8HR3SKNMTY2Z6" : { + "BHX8HR3SKNMTY2Z6.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "BHX8HR3SKNMTY2Z6", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BHX8HR3SKNMTY2Z6.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "BHX8HR3SKNMTY2Z6.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1734" + }, + "appliesTo" : [ ] + }, + "BHX8HR3SKNMTY2Z6.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "BHX8HR3SKNMTY2Z6.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BHX8HR3SKNMTY2Z6.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "BHX8HR3SKNMTY2Z6", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BHX8HR3SKNMTY2Z6.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "BHX8HR3SKNMTY2Z6.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3590000000" + }, + "appliesTo" : [ ] + }, + "BHX8HR3SKNMTY2Z6.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "BHX8HR3SKNMTY2Z6.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2784" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BHX8HR3SKNMTY2Z6.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "BHX8HR3SKNMTY2Z6", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BHX8HR3SKNMTY2Z6.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "BHX8HR3SKNMTY2Z6.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BHX8HR3SKNMTY2Z6.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "BHX8HR3SKNMTY2Z6", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BHX8HR3SKNMTY2Z6.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "BHX8HR3SKNMTY2Z6.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4811" + }, + "appliesTo" : [ ] + }, + "BHX8HR3SKNMTY2Z6.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "BHX8HR3SKNMTY2Z6.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BHX8HR3SKNMTY2Z6.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "BHX8HR3SKNMTY2Z6", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BHX8HR3SKNMTY2Z6.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "BHX8HR3SKNMTY2Z6.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "BHX8HR3SKNMTY2Z6.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "BHX8HR3SKNMTY2Z6.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11485" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BHX8HR3SKNMTY2Z6.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "BHX8HR3SKNMTY2Z6", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BHX8HR3SKNMTY2Z6.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "BHX8HR3SKNMTY2Z6.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4824" + }, + "appliesTo" : [ ] + }, + "BHX8HR3SKNMTY2Z6.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "BHX8HR3SKNMTY2Z6.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BHX8HR3SKNMTY2Z6.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "BHX8HR3SKNMTY2Z6", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BHX8HR3SKNMTY2Z6.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "BHX8HR3SKNMTY2Z6.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BHX8HR3SKNMTY2Z6.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "BHX8HR3SKNMTY2Z6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BHX8HR3SKNMTY2Z6.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "BHX8HR3SKNMTY2Z6.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2885" + }, + "appliesTo" : [ ] + }, + "BHX8HR3SKNMTY2Z6.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "BHX8HR3SKNMTY2Z6.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BHX8HR3SKNMTY2Z6.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "BHX8HR3SKNMTY2Z6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BHX8HR3SKNMTY2Z6.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "BHX8HR3SKNMTY2Z6.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BHX8HR3SKNMTY2Z6.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "BHX8HR3SKNMTY2Z6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BHX8HR3SKNMTY2Z6.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "BHX8HR3SKNMTY2Z6.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5719" + }, + "appliesTo" : [ ] + }, + "BHX8HR3SKNMTY2Z6.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "BHX8HR3SKNMTY2Z6.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BHX8HR3SKNMTY2Z6.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "BHX8HR3SKNMTY2Z6", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "BHX8HR3SKNMTY2Z6.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "BHX8HR3SKNMTY2Z6.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13821" + }, + "appliesTo" : [ ] + }, + "BHX8HR3SKNMTY2Z6.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "BHX8HR3SKNMTY2Z6.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "XCMMYCWQYMYT84XG" : { + "XCMMYCWQYMYT84XG.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "XCMMYCWQYMYT84XG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XCMMYCWQYMYT84XG.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "XCMMYCWQYMYT84XG.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "48487" + }, + "appliesTo" : [ ] + }, + "XCMMYCWQYMYT84XG.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "XCMMYCWQYMYT84XG.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XCMMYCWQYMYT84XG.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "XCMMYCWQYMYT84XG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XCMMYCWQYMYT84XG.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "XCMMYCWQYMYT84XG.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XCMMYCWQYMYT84XG.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "XCMMYCWQYMYT84XG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XCMMYCWQYMYT84XG.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "XCMMYCWQYMYT84XG.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XCMMYCWQYMYT84XG.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XCMMYCWQYMYT84XG", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "XCMMYCWQYMYT84XG.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XCMMYCWQYMYT84XG.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "95448" + }, + "appliesTo" : [ ] + }, + "XCMMYCWQYMYT84XG.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XCMMYCWQYMYT84XG.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XCMMYCWQYMYT84XG.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XCMMYCWQYMYT84XG", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "XCMMYCWQYMYT84XG.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XCMMYCWQYMYT84XG.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32986" + }, + "appliesTo" : [ ] + }, + "XCMMYCWQYMYT84XG.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XCMMYCWQYMYT84XG.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XCMMYCWQYMYT84XG.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XCMMYCWQYMYT84XG", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "XCMMYCWQYMYT84XG.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XCMMYCWQYMYT84XG.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8240000000" + }, + "appliesTo" : [ ] + }, + "XCMMYCWQYMYT84XG.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XCMMYCWQYMYT84XG.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47945" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XCMMYCWQYMYT84XG.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "XCMMYCWQYMYT84XG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XCMMYCWQYMYT84XG.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "XCMMYCWQYMYT84XG.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16807" + }, + "appliesTo" : [ ] + }, + "XCMMYCWQYMYT84XG.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "XCMMYCWQYMYT84XG.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XCMMYCWQYMYT84XG.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "XCMMYCWQYMYT84XG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XCMMYCWQYMYT84XG.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "XCMMYCWQYMYT84XG.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XCMMYCWQYMYT84XG.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XCMMYCWQYMYT84XG", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "XCMMYCWQYMYT84XG.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XCMMYCWQYMYT84XG.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16528" + }, + "appliesTo" : [ ] + }, + "XCMMYCWQYMYT84XG.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XCMMYCWQYMYT84XG.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XCMMYCWQYMYT84XG.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XCMMYCWQYMYT84XG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XCMMYCWQYMYT84XG.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XCMMYCWQYMYT84XG.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XCMMYCWQYMYT84XG.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "XCMMYCWQYMYT84XG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XCMMYCWQYMYT84XG.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "XCMMYCWQYMYT84XG.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "96804" + }, + "appliesTo" : [ ] + }, + "XCMMYCWQYMYT84XG.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "XCMMYCWQYMYT84XG.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XCMMYCWQYMYT84XG.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "XCMMYCWQYMYT84XG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XCMMYCWQYMYT84XG.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "XCMMYCWQYMYT84XG.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "XCMMYCWQYMYT84XG.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "XCMMYCWQYMYT84XG.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33532" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "YAPU23CHKA23RRR7" : { + "YAPU23CHKA23RRR7.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YAPU23CHKA23RRR7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YAPU23CHKA23RRR7.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YAPU23CHKA23RRR7.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1569000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YAPU23CHKA23RRR7.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "YAPU23CHKA23RRR7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YAPU23CHKA23RRR7.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "YAPU23CHKA23RRR7.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "770" + }, + "appliesTo" : [ ] + }, + "YAPU23CHKA23RRR7.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "YAPU23CHKA23RRR7.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0809000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YAPU23CHKA23RRR7.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "YAPU23CHKA23RRR7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YAPU23CHKA23RRR7.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "YAPU23CHKA23RRR7.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1755000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YAPU23CHKA23RRR7.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YAPU23CHKA23RRR7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YAPU23CHKA23RRR7.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YAPU23CHKA23RRR7.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YAPU23CHKA23RRR7.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YAPU23CHKA23RRR7.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2670" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YAPU23CHKA23RRR7.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "YAPU23CHKA23RRR7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YAPU23CHKA23RRR7.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "YAPU23CHKA23RRR7.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1194000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YAPU23CHKA23RRR7.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "YAPU23CHKA23RRR7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YAPU23CHKA23RRR7.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "YAPU23CHKA23RRR7.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1324000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YAPU23CHKA23RRR7.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YAPU23CHKA23RRR7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YAPU23CHKA23RRR7.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YAPU23CHKA23RRR7.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0530000000" + }, + "appliesTo" : [ ] + }, + "YAPU23CHKA23RRR7.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YAPU23CHKA23RRR7.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1403" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YAPU23CHKA23RRR7.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "YAPU23CHKA23RRR7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YAPU23CHKA23RRR7.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "YAPU23CHKA23RRR7.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3063" + }, + "appliesTo" : [ ] + }, + "YAPU23CHKA23RRR7.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "YAPU23CHKA23RRR7.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YAPU23CHKA23RRR7.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "YAPU23CHKA23RRR7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YAPU23CHKA23RRR7.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "YAPU23CHKA23RRR7.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1455" + }, + "appliesTo" : [ ] + }, + "YAPU23CHKA23RRR7.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "YAPU23CHKA23RRR7.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YAPU23CHKA23RRR7.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "YAPU23CHKA23RRR7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YAPU23CHKA23RRR7.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "YAPU23CHKA23RRR7.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1561" + }, + "appliesTo" : [ ] + }, + "YAPU23CHKA23RRR7.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "YAPU23CHKA23RRR7.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YAPU23CHKA23RRR7.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YAPU23CHKA23RRR7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YAPU23CHKA23RRR7.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YAPU23CHKA23RRR7.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1303" + }, + "appliesTo" : [ ] + }, + "YAPU23CHKA23RRR7.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YAPU23CHKA23RRR7.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YAPU23CHKA23RRR7.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YAPU23CHKA23RRR7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YAPU23CHKA23RRR7.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YAPU23CHKA23RRR7.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "693" + }, + "appliesTo" : [ ] + }, + "YAPU23CHKA23RRR7.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YAPU23CHKA23RRR7.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "R6T5AVAY3H4NQFQ4" : { + "R6T5AVAY3H4NQFQ4.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "R6T5AVAY3H4NQFQ4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "R6T5AVAY3H4NQFQ4.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "R6T5AVAY3H4NQFQ4.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16578" + }, + "appliesTo" : [ ] + }, + "R6T5AVAY3H4NQFQ4.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "R6T5AVAY3H4NQFQ4.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "R6T5AVAY3H4NQFQ4.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "R6T5AVAY3H4NQFQ4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "R6T5AVAY3H4NQFQ4.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "R6T5AVAY3H4NQFQ4.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3010000000" + }, + "appliesTo" : [ ] + }, + "R6T5AVAY3H4NQFQ4.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "R6T5AVAY3H4NQFQ4.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7910" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "R6T5AVAY3H4NQFQ4.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "R6T5AVAY3H4NQFQ4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "R6T5AVAY3H4NQFQ4.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "R6T5AVAY3H4NQFQ4.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8359" + }, + "appliesTo" : [ ] + }, + "R6T5AVAY3H4NQFQ4.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "R6T5AVAY3H4NQFQ4.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3181000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "R6T5AVAY3H4NQFQ4.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "R6T5AVAY3H4NQFQ4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "R6T5AVAY3H4NQFQ4.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "R6T5AVAY3H4NQFQ4.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7376000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "R6T5AVAY3H4NQFQ4.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "R6T5AVAY3H4NQFQ4", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "R6T5AVAY3H4NQFQ4.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "R6T5AVAY3H4NQFQ4.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15452" + }, + "appliesTo" : [ ] + }, + "R6T5AVAY3H4NQFQ4.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "R6T5AVAY3H4NQFQ4.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "R6T5AVAY3H4NQFQ4.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "R6T5AVAY3H4NQFQ4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "R6T5AVAY3H4NQFQ4.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "R6T5AVAY3H4NQFQ4.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6576000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "R6T5AVAY3H4NQFQ4.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "R6T5AVAY3H4NQFQ4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "R6T5AVAY3H4NQFQ4.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "R6T5AVAY3H4NQFQ4.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "R6T5AVAY3H4NQFQ4.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "R6T5AVAY3H4NQFQ4.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6237" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "R6T5AVAY3H4NQFQ4.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "R6T5AVAY3H4NQFQ4", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "R6T5AVAY3H4NQFQ4.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "R6T5AVAY3H4NQFQ4.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3590000000" + }, + "appliesTo" : [ ] + }, + "R6T5AVAY3H4NQFQ4.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "R6T5AVAY3H4NQFQ4.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3149" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "R6T5AVAY3H4NQFQ4.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "R6T5AVAY3H4NQFQ4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R6T5AVAY3H4NQFQ4.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "R6T5AVAY3H4NQFQ4.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3864000000" + }, + "appliesTo" : [ ] + }, + "R6T5AVAY3H4NQFQ4.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "R6T5AVAY3H4NQFQ4.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3385" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "R6T5AVAY3H4NQFQ4.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "R6T5AVAY3H4NQFQ4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R6T5AVAY3H4NQFQ4.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "R6T5AVAY3H4NQFQ4.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6699" + }, + "appliesTo" : [ ] + }, + "R6T5AVAY3H4NQFQ4.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "R6T5AVAY3H4NQFQ4.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "R6T5AVAY3H4NQFQ4.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "R6T5AVAY3H4NQFQ4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R6T5AVAY3H4NQFQ4.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "R6T5AVAY3H4NQFQ4.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "R6T5AVAY3H4NQFQ4.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "R6T5AVAY3H4NQFQ4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "R6T5AVAY3H4NQFQ4.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "R6T5AVAY3H4NQFQ4.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6199000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "GY7YBGWY6UY9H8G3" : { + "GY7YBGWY6UY9H8G3.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "GY7YBGWY6UY9H8G3", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "GY7YBGWY6UY9H8G3.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "GY7YBGWY6UY9H8G3.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0780000000" + }, + "appliesTo" : [ ] + }, + "GY7YBGWY6UY9H8G3.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "GY7YBGWY6UY9H8G3.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3812" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GY7YBGWY6UY9H8G3.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "GY7YBGWY6UY9H8G3", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "GY7YBGWY6UY9H8G3.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "GY7YBGWY6UY9H8G3.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "GY7YBGWY6UY9H8G3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "GY7YBGWY6UY9H8G3", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "GY7YBGWY6UY9H8G3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "GY7YBGWY6UY9H8G3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4990" + }, + "appliesTo" : [ ] + }, + "GY7YBGWY6UY9H8G3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "GY7YBGWY6UY9H8G3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GY7YBGWY6UY9H8G3.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "GY7YBGWY6UY9H8G3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GY7YBGWY6UY9H8G3.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "GY7YBGWY6UY9H8G3.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2313" + }, + "appliesTo" : [ ] + }, + "GY7YBGWY6UY9H8G3.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "GY7YBGWY6UY9H8G3.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "GY7YBGWY6UY9H8G3.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "GY7YBGWY6UY9H8G3", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "GY7YBGWY6UY9H8G3.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "GY7YBGWY6UY9H8G3.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5750" + }, + "appliesTo" : [ ] + }, + "GY7YBGWY6UY9H8G3.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "GY7YBGWY6UY9H8G3.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "GY7YBGWY6UY9H8G3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "GY7YBGWY6UY9H8G3", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "GY7YBGWY6UY9H8G3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "GY7YBGWY6UY9H8G3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0810000000" + }, + "appliesTo" : [ ] + }, + "GY7YBGWY6UY9H8G3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "GY7YBGWY6UY9H8G3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1322" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GY7YBGWY6UY9H8G3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "GY7YBGWY6UY9H8G3", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "GY7YBGWY6UY9H8G3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "GY7YBGWY6UY9H8G3.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GY7YBGWY6UY9H8G3.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "GY7YBGWY6UY9H8G3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GY7YBGWY6UY9H8G3.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "GY7YBGWY6UY9H8G3.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "GY7YBGWY6UY9H8G3.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "GY7YBGWY6UY9H8G3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GY7YBGWY6UY9H8G3.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "GY7YBGWY6UY9H8G3.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1166" + }, + "appliesTo" : [ ] + }, + "GY7YBGWY6UY9H8G3.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "GY7YBGWY6UY9H8G3.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GY7YBGWY6UY9H8G3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "GY7YBGWY6UY9H8G3", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "GY7YBGWY6UY9H8G3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "GY7YBGWY6UY9H8G3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1994" + }, + "appliesTo" : [ ] + }, + "GY7YBGWY6UY9H8G3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "GY7YBGWY6UY9H8G3.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GY7YBGWY6UY9H8G3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "GY7YBGWY6UY9H8G3", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "GY7YBGWY6UY9H8G3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "GY7YBGWY6UY9H8G3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3450" + }, + "appliesTo" : [ ] + }, + "GY7YBGWY6UY9H8G3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "GY7YBGWY6UY9H8G3.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "HZC9FAP4F9Y8JW67" : { + "HZC9FAP4F9Y8JW67.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "HZC9FAP4F9Y8JW67", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "HZC9FAP4F9Y8JW67.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "HZC9FAP4F9Y8JW67.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "137" + }, + "appliesTo" : [ ] + }, + "HZC9FAP4F9Y8JW67.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "HZC9FAP4F9Y8JW67.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "HZC9FAP4F9Y8JW67.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "HZC9FAP4F9Y8JW67", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "HZC9FAP4F9Y8JW67.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "HZC9FAP4F9Y8JW67.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0058000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "HZC9FAP4F9Y8JW67.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "HZC9FAP4F9Y8JW67", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HZC9FAP4F9Y8JW67.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "HZC9FAP4F9Y8JW67.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34" + }, + "appliesTo" : [ ] + }, + "HZC9FAP4F9Y8JW67.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "HZC9FAP4F9Y8JW67.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0039000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HZC9FAP4F9Y8JW67.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "HZC9FAP4F9Y8JW67", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HZC9FAP4F9Y8JW67.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "HZC9FAP4F9Y8JW67.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "HZC9FAP4F9Y8JW67.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "HZC9FAP4F9Y8JW67.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "68" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "HZC9FAP4F9Y8JW67.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "HZC9FAP4F9Y8JW67", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "HZC9FAP4F9Y8JW67.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "HZC9FAP4F9Y8JW67.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "HZC9FAP4F9Y8JW67.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "HZC9FAP4F9Y8JW67", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "HZC9FAP4F9Y8JW67.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "HZC9FAP4F9Y8JW67.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0072000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "HZC9FAP4F9Y8JW67.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "HZC9FAP4F9Y8JW67", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "HZC9FAP4F9Y8JW67.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "HZC9FAP4F9Y8JW67.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30" + }, + "appliesTo" : [ ] + }, + "HZC9FAP4F9Y8JW67.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "HZC9FAP4F9Y8JW67.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0034000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HZC9FAP4F9Y8JW67.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "HZC9FAP4F9Y8JW67", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "HZC9FAP4F9Y8JW67.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "HZC9FAP4F9Y8JW67.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "59" + }, + "appliesTo" : [ ] + }, + "HZC9FAP4F9Y8JW67.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "HZC9FAP4F9Y8JW67.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HZC9FAP4F9Y8JW67.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "HZC9FAP4F9Y8JW67", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HZC9FAP4F9Y8JW67.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "HZC9FAP4F9Y8JW67.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0083000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "HZC9FAP4F9Y8JW67.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "HZC9FAP4F9Y8JW67", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "HZC9FAP4F9Y8JW67.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "HZC9FAP4F9Y8JW67.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "115" + }, + "appliesTo" : [ ] + }, + "HZC9FAP4F9Y8JW67.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "HZC9FAP4F9Y8JW67.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HZC9FAP4F9Y8JW67.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "HZC9FAP4F9Y8JW67", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "HZC9FAP4F9Y8JW67.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "HZC9FAP4F9Y8JW67.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "70" + }, + "appliesTo" : [ ] + }, + "HZC9FAP4F9Y8JW67.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "HZC9FAP4F9Y8JW67.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0027000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HZC9FAP4F9Y8JW67.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "HZC9FAP4F9Y8JW67", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "HZC9FAP4F9Y8JW67.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "HZC9FAP4F9Y8JW67.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0020000000" + }, + "appliesTo" : [ ] + }, + "HZC9FAP4F9Y8JW67.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "HZC9FAP4F9Y8JW67.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "66" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "9XSHJSECKR9ATRQG" : { + "9XSHJSECKR9ATRQG.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "9XSHJSECKR9ATRQG", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "9XSHJSECKR9ATRQG.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "9XSHJSECKR9ATRQG.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10033" + }, + "appliesTo" : [ ] + }, + "9XSHJSECKR9ATRQG.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "9XSHJSECKR9ATRQG.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9XSHJSECKR9ATRQG.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "9XSHJSECKR9ATRQG", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "9XSHJSECKR9ATRQG.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "9XSHJSECKR9ATRQG.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5119" + }, + "appliesTo" : [ ] + }, + "9XSHJSECKR9ATRQG.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "9XSHJSECKR9ATRQG.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9XSHJSECKR9ATRQG.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "9XSHJSECKR9ATRQG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9XSHJSECKR9ATRQG.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "9XSHJSECKR9ATRQG.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0417000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9XSHJSECKR9ATRQG.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "9XSHJSECKR9ATRQG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9XSHJSECKR9ATRQG.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "9XSHJSECKR9ATRQG.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4823000000" + }, + "appliesTo" : [ ] + }, + "9XSHJSECKR9ATRQG.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "9XSHJSECKR9ATRQG.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12674" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9XSHJSECKR9ATRQG.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "9XSHJSECKR9ATRQG", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "9XSHJSECKR9ATRQG.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "9XSHJSECKR9ATRQG.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20720" + }, + "appliesTo" : [ ] + }, + "9XSHJSECKR9ATRQG.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "9XSHJSECKR9ATRQG.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9XSHJSECKR9ATRQG.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "9XSHJSECKR9ATRQG", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "9XSHJSECKR9ATRQG.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "9XSHJSECKR9ATRQG.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11021" + }, + "appliesTo" : [ ] + }, + "9XSHJSECKR9ATRQG.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "9XSHJSECKR9ATRQG.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9XSHJSECKR9ATRQG.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "9XSHJSECKR9ATRQG", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "9XSHJSECKR9ATRQG.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "9XSHJSECKR9ATRQG.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9XSHJSECKR9ATRQG.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "9XSHJSECKR9ATRQG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9XSHJSECKR9ATRQG.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "9XSHJSECKR9ATRQG.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11538" + }, + "appliesTo" : [ ] + }, + "9XSHJSECKR9ATRQG.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "9XSHJSECKR9ATRQG.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9XSHJSECKR9ATRQG.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "9XSHJSECKR9ATRQG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9XSHJSECKR9ATRQG.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "9XSHJSECKR9ATRQG.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4112000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9XSHJSECKR9ATRQG.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "9XSHJSECKR9ATRQG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9XSHJSECKR9ATRQG.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "9XSHJSECKR9ATRQG.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5887" + }, + "appliesTo" : [ ] + }, + "9XSHJSECKR9ATRQG.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "9XSHJSECKR9ATRQG.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9XSHJSECKR9ATRQG.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "9XSHJSECKR9ATRQG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9XSHJSECKR9ATRQG.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "9XSHJSECKR9ATRQG.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "9XSHJSECKR9ATRQG.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "9XSHJSECKR9ATRQG.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24841" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9XSHJSECKR9ATRQG.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "9XSHJSECKR9ATRQG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9XSHJSECKR9ATRQG.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "9XSHJSECKR9ATRQG.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9058000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "ENS9X5UYSE8HHJGX" : { + "ENS9X5UYSE8HHJGX.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ENS9X5UYSE8HHJGX", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "ENS9X5UYSE8HHJGX.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ENS9X5UYSE8HHJGX.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ENS9X5UYSE8HHJGX.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ENS9X5UYSE8HHJGX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ENS9X5UYSE8HHJGX.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ENS9X5UYSE8HHJGX.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3210000000" + }, + "appliesTo" : [ ] + }, + "ENS9X5UYSE8HHJGX.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ENS9X5UYSE8HHJGX.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5618" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ENS9X5UYSE8HHJGX.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ENS9X5UYSE8HHJGX", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "ENS9X5UYSE8HHJGX.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ENS9X5UYSE8HHJGX.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6524" + }, + "appliesTo" : [ ] + }, + "ENS9X5UYSE8HHJGX.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ENS9X5UYSE8HHJGX.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ENS9X5UYSE8HHJGX.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ENS9X5UYSE8HHJGX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ENS9X5UYSE8HHJGX.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ENS9X5UYSE8HHJGX.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ENS9X5UYSE8HHJGX.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ENS9X5UYSE8HHJGX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ENS9X5UYSE8HHJGX.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ENS9X5UYSE8HHJGX.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3503" + }, + "appliesTo" : [ ] + }, + "ENS9X5UYSE8HHJGX.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ENS9X5UYSE8HHJGX.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ENS9X5UYSE8HHJGX.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ENS9X5UYSE8HHJGX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ENS9X5UYSE8HHJGX.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ENS9X5UYSE8HHJGX.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2305" + }, + "appliesTo" : [ ] + }, + "ENS9X5UYSE8HHJGX.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ENS9X5UYSE8HHJGX.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ENS9X5UYSE8HHJGX.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ENS9X5UYSE8HHJGX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ENS9X5UYSE8HHJGX.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ENS9X5UYSE8HHJGX.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6955" + }, + "appliesTo" : [ ] + }, + "ENS9X5UYSE8HHJGX.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ENS9X5UYSE8HHJGX.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ENS9X5UYSE8HHJGX.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ENS9X5UYSE8HHJGX", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "ENS9X5UYSE8HHJGX.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ENS9X5UYSE8HHJGX.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16323" + }, + "appliesTo" : [ ] + }, + "ENS9X5UYSE8HHJGX.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ENS9X5UYSE8HHJGX.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ENS9X5UYSE8HHJGX.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ENS9X5UYSE8HHJGX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ENS9X5UYSE8HHJGX.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ENS9X5UYSE8HHJGX.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ENS9X5UYSE8HHJGX.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ENS9X5UYSE8HHJGX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ENS9X5UYSE8HHJGX.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ENS9X5UYSE8HHJGX.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ENS9X5UYSE8HHJGX.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ENS9X5UYSE8HHJGX.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13211" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ENS9X5UYSE8HHJGX.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ENS9X5UYSE8HHJGX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ENS9X5UYSE8HHJGX.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ENS9X5UYSE8HHJGX.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5658" + }, + "appliesTo" : [ ] + }, + "ENS9X5UYSE8HHJGX.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ENS9X5UYSE8HHJGX.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "QWZW5Y8P4TX97TGS" : { + "QWZW5Y8P4TX97TGS.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QWZW5Y8P4TX97TGS", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "QWZW5Y8P4TX97TGS.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QWZW5Y8P4TX97TGS.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4110000000" + }, + "appliesTo" : [ ] + }, + "QWZW5Y8P4TX97TGS.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QWZW5Y8P4TX97TGS.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7379" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QWZW5Y8P4TX97TGS.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "QWZW5Y8P4TX97TGS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QWZW5Y8P4TX97TGS.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "QWZW5Y8P4TX97TGS.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20002" + }, + "appliesTo" : [ ] + }, + "QWZW5Y8P4TX97TGS.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "QWZW5Y8P4TX97TGS.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QWZW5Y8P4TX97TGS.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "QWZW5Y8P4TX97TGS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QWZW5Y8P4TX97TGS.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "QWZW5Y8P4TX97TGS.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8462" + }, + "appliesTo" : [ ] + }, + "QWZW5Y8P4TX97TGS.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "QWZW5Y8P4TX97TGS.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QWZW5Y8P4TX97TGS.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QWZW5Y8P4TX97TGS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QWZW5Y8P4TX97TGS.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QWZW5Y8P4TX97TGS.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QWZW5Y8P4TX97TGS.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QWZW5Y8P4TX97TGS", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "QWZW5Y8P4TX97TGS.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QWZW5Y8P4TX97TGS.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QWZW5Y8P4TX97TGS.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QWZW5Y8P4TX97TGS.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8103" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QWZW5Y8P4TX97TGS.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QWZW5Y8P4TX97TGS", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "QWZW5Y8P4TX97TGS.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QWZW5Y8P4TX97TGS.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QWZW5Y8P4TX97TGS.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QWZW5Y8P4TX97TGS.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17290" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QWZW5Y8P4TX97TGS.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "QWZW5Y8P4TX97TGS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QWZW5Y8P4TX97TGS.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "QWZW5Y8P4TX97TGS.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QWZW5Y8P4TX97TGS.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QWZW5Y8P4TX97TGS", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "QWZW5Y8P4TX97TGS.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QWZW5Y8P4TX97TGS.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3553" + }, + "appliesTo" : [ ] + }, + "QWZW5Y8P4TX97TGS.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QWZW5Y8P4TX97TGS.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QWZW5Y8P4TX97TGS.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "QWZW5Y8P4TX97TGS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QWZW5Y8P4TX97TGS.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "QWZW5Y8P4TX97TGS.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QWZW5Y8P4TX97TGS.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "QWZW5Y8P4TX97TGS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QWZW5Y8P4TX97TGS.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "QWZW5Y8P4TX97TGS.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9195" + }, + "appliesTo" : [ ] + }, + "QWZW5Y8P4TX97TGS.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "QWZW5Y8P4TX97TGS.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QWZW5Y8P4TX97TGS.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "QWZW5Y8P4TX97TGS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QWZW5Y8P4TX97TGS.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "QWZW5Y8P4TX97TGS.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QWZW5Y8P4TX97TGS.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "QWZW5Y8P4TX97TGS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QWZW5Y8P4TX97TGS.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "QWZW5Y8P4TX97TGS.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5990000000" + }, + "appliesTo" : [ ] + }, + "QWZW5Y8P4TX97TGS.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "QWZW5Y8P4TX97TGS.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4110" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "JABV4QCJFZRBR8JA" : { + "JABV4QCJFZRBR8JA.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "JABV4QCJFZRBR8JA", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "JABV4QCJFZRBR8JA.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "JABV4QCJFZRBR8JA.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.1850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "JABV4QCJFZRBR8JA.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "JABV4QCJFZRBR8JA", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "JABV4QCJFZRBR8JA.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "JABV4QCJFZRBR8JA.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "197802" + }, + "appliesTo" : [ ] + }, + "JABV4QCJFZRBR8JA.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "JABV4QCJFZRBR8JA.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JABV4QCJFZRBR8JA.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "JABV4QCJFZRBR8JA", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "JABV4QCJFZRBR8JA.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "JABV4QCJFZRBR8JA.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "70817" + }, + "appliesTo" : [ ] + }, + "JABV4QCJFZRBR8JA.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "JABV4QCJFZRBR8JA.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JABV4QCJFZRBR8JA.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "JABV4QCJFZRBR8JA", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "JABV4QCJFZRBR8JA.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "JABV4QCJFZRBR8JA.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "99564" + }, + "appliesTo" : [ ] + }, + "JABV4QCJFZRBR8JA.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "JABV4QCJFZRBR8JA.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "JABV4QCJFZRBR8JA.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "JABV4QCJFZRBR8JA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "JABV4QCJFZRBR8JA.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "JABV4QCJFZRBR8JA.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9870000000" + }, + "appliesTo" : [ ] + }, + "JABV4QCJFZRBR8JA.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "JABV4QCJFZRBR8JA.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "104780" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "JABV4QCJFZRBR8JA.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "JABV4QCJFZRBR8JA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JABV4QCJFZRBR8JA.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "JABV4QCJFZRBR8JA.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "36455" + }, + "appliesTo" : [ ] + }, + "JABV4QCJFZRBR8JA.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "JABV4QCJFZRBR8JA.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.1620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "JABV4QCJFZRBR8JA.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "JABV4QCJFZRBR8JA", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "JABV4QCJFZRBR8JA.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "JABV4QCJFZRBR8JA.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.3460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "JABV4QCJFZRBR8JA.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "JABV4QCJFZRBR8JA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JABV4QCJFZRBR8JA.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "JABV4QCJFZRBR8JA.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.4020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "JABV4QCJFZRBR8JA.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "JABV4QCJFZRBR8JA", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "JABV4QCJFZRBR8JA.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "JABV4QCJFZRBR8JA.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "208909" + }, + "appliesTo" : [ ] + }, + "JABV4QCJFZRBR8JA.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "JABV4QCJFZRBR8JA.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "JABV4QCJFZRBR8JA.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "JABV4QCJFZRBR8JA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JABV4QCJFZRBR8JA.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "JABV4QCJFZRBR8JA.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "72631" + }, + "appliesTo" : [ ] + }, + "JABV4QCJFZRBR8JA.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "JABV4QCJFZRBR8JA.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "JABV4QCJFZRBR8JA.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "JABV4QCJFZRBR8JA", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "JABV4QCJFZRBR8JA.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "JABV4QCJFZRBR8JA.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.0560000000" + }, + "appliesTo" : [ ] + }, + "JABV4QCJFZRBR8JA.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "JABV4QCJFZRBR8JA.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35529" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "TA7UVX8V5EKCNAFA" : { + "TA7UVX8V5EKCNAFA.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TA7UVX8V5EKCNAFA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TA7UVX8V5EKCNAFA.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TA7UVX8V5EKCNAFA.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8042" + }, + "appliesTo" : [ ] + }, + "TA7UVX8V5EKCNAFA.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TA7UVX8V5EKCNAFA.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TA7UVX8V5EKCNAFA.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TA7UVX8V5EKCNAFA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TA7UVX8V5EKCNAFA.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TA7UVX8V5EKCNAFA.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29330" + }, + "appliesTo" : [ ] + }, + "TA7UVX8V5EKCNAFA.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TA7UVX8V5EKCNAFA.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TA7UVX8V5EKCNAFA.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TA7UVX8V5EKCNAFA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TA7UVX8V5EKCNAFA.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TA7UVX8V5EKCNAFA.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15762" + }, + "appliesTo" : [ ] + }, + "TA7UVX8V5EKCNAFA.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TA7UVX8V5EKCNAFA.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TA7UVX8V5EKCNAFA.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "TA7UVX8V5EKCNAFA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TA7UVX8V5EKCNAFA.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "TA7UVX8V5EKCNAFA.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TA7UVX8V5EKCNAFA.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TA7UVX8V5EKCNAFA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TA7UVX8V5EKCNAFA.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TA7UVX8V5EKCNAFA.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5940000000" + }, + "appliesTo" : [ ] + }, + "TA7UVX8V5EKCNAFA.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TA7UVX8V5EKCNAFA.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15601" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TA7UVX8V5EKCNAFA.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TA7UVX8V5EKCNAFA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TA7UVX8V5EKCNAFA.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TA7UVX8V5EKCNAFA.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "SH6G48SE9H3R9TQT" : { + "SH6G48SE9H3R9TQT.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SH6G48SE9H3R9TQT", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "SH6G48SE9H3R9TQT.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SH6G48SE9H3R9TQT.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SH6G48SE9H3R9TQT.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SH6G48SE9H3R9TQT", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "SH6G48SE9H3R9TQT.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SH6G48SE9H3R9TQT.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2600000000" + }, + "appliesTo" : [ ] + }, + "SH6G48SE9H3R9TQT.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SH6G48SE9H3R9TQT.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1620" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SH6G48SE9H3R9TQT.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SH6G48SE9H3R9TQT", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "SH6G48SE9H3R9TQT.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SH6G48SE9H3R9TQT.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8350" + }, + "appliesTo" : [ ] + }, + "SH6G48SE9H3R9TQT.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SH6G48SE9H3R9TQT.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SH6G48SE9H3R9TQT.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SH6G48SE9H3R9TQT", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "SH6G48SE9H3R9TQT.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SH6G48SE9H3R9TQT.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2524" + }, + "appliesTo" : [ ] + }, + "SH6G48SE9H3R9TQT.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SH6G48SE9H3R9TQT.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SH6G48SE9H3R9TQT.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SH6G48SE9H3R9TQT", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "SH6G48SE9H3R9TQT.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SH6G48SE9H3R9TQT.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3819" + }, + "appliesTo" : [ ] + }, + "SH6G48SE9H3R9TQT.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SH6G48SE9H3R9TQT.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "25T439HS4WV9KRN4" : { + "25T439HS4WV9KRN4.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "25T439HS4WV9KRN4", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "25T439HS4WV9KRN4.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "25T439HS4WV9KRN4.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "25T439HS4WV9KRN4.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "25T439HS4WV9KRN4", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "25T439HS4WV9KRN4.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "25T439HS4WV9KRN4.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11968" + }, + "appliesTo" : [ ] + }, + "25T439HS4WV9KRN4.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "25T439HS4WV9KRN4.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "25T439HS4WV9KRN4.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "25T439HS4WV9KRN4", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "25T439HS4WV9KRN4.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "25T439HS4WV9KRN4.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13196" + }, + "appliesTo" : [ ] + }, + "25T439HS4WV9KRN4.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "25T439HS4WV9KRN4.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "25T439HS4WV9KRN4.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "25T439HS4WV9KRN4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "25T439HS4WV9KRN4.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "25T439HS4WV9KRN4.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "25T439HS4WV9KRN4.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "25T439HS4WV9KRN4.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6420" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "25T439HS4WV9KRN4.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "25T439HS4WV9KRN4", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "25T439HS4WV9KRN4.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "25T439HS4WV9KRN4.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19905" + }, + "appliesTo" : [ ] + }, + "25T439HS4WV9KRN4.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "25T439HS4WV9KRN4.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "25T439HS4WV9KRN4.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "25T439HS4WV9KRN4", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "25T439HS4WV9KRN4.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "25T439HS4WV9KRN4.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17302" + }, + "appliesTo" : [ ] + }, + "25T439HS4WV9KRN4.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "25T439HS4WV9KRN4.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "25T439HS4WV9KRN4.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "25T439HS4WV9KRN4", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "25T439HS4WV9KRN4.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "25T439HS4WV9KRN4.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "25T439HS4WV9KRN4.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "25T439HS4WV9KRN4", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "25T439HS4WV9KRN4.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "25T439HS4WV9KRN4.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4455" + }, + "appliesTo" : [ ] + }, + "25T439HS4WV9KRN4.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "25T439HS4WV9KRN4.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "25T439HS4WV9KRN4.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "25T439HS4WV9KRN4", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "25T439HS4WV9KRN4.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "25T439HS4WV9KRN4.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6720" + }, + "appliesTo" : [ ] + }, + "25T439HS4WV9KRN4.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "25T439HS4WV9KRN4.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "25T439HS4WV9KRN4.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "25T439HS4WV9KRN4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "25T439HS4WV9KRN4.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "25T439HS4WV9KRN4.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3220" + }, + "appliesTo" : [ ] + }, + "25T439HS4WV9KRN4.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "25T439HS4WV9KRN4.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "25T439HS4WV9KRN4.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "25T439HS4WV9KRN4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "25T439HS4WV9KRN4.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "25T439HS4WV9KRN4.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "KYPREJHGNMP6GVSA" : { + "KYPREJHGNMP6GVSA.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "KYPREJHGNMP6GVSA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KYPREJHGNMP6GVSA.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "KYPREJHGNMP6GVSA.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KYPREJHGNMP6GVSA.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "KYPREJHGNMP6GVSA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KYPREJHGNMP6GVSA.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "KYPREJHGNMP6GVSA.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "753" + }, + "appliesTo" : [ ] + }, + "KYPREJHGNMP6GVSA.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "KYPREJHGNMP6GVSA.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KYPREJHGNMP6GVSA.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "KYPREJHGNMP6GVSA", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "KYPREJHGNMP6GVSA.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "KYPREJHGNMP6GVSA.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1328" + }, + "appliesTo" : [ ] + }, + "KYPREJHGNMP6GVSA.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "KYPREJHGNMP6GVSA.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KYPREJHGNMP6GVSA.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "KYPREJHGNMP6GVSA", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "KYPREJHGNMP6GVSA.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "KYPREJHGNMP6GVSA.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "758" + }, + "appliesTo" : [ ] + }, + "KYPREJHGNMP6GVSA.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "KYPREJHGNMP6GVSA.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KYPREJHGNMP6GVSA.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "KYPREJHGNMP6GVSA", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "KYPREJHGNMP6GVSA.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "KYPREJHGNMP6GVSA.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KYPREJHGNMP6GVSA.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "KYPREJHGNMP6GVSA", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "KYPREJHGNMP6GVSA.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "KYPREJHGNMP6GVSA.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3130" + }, + "appliesTo" : [ ] + }, + "KYPREJHGNMP6GVSA.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "KYPREJHGNMP6GVSA.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KYPREJHGNMP6GVSA.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "KYPREJHGNMP6GVSA", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "KYPREJHGNMP6GVSA.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "KYPREJHGNMP6GVSA.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0970000000" + }, + "appliesTo" : [ ] + }, + "KYPREJHGNMP6GVSA.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "KYPREJHGNMP6GVSA.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1329" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KYPREJHGNMP6GVSA.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "KYPREJHGNMP6GVSA", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "KYPREJHGNMP6GVSA.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "KYPREJHGNMP6GVSA.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3805" + }, + "appliesTo" : [ ] + }, + "KYPREJHGNMP6GVSA.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "KYPREJHGNMP6GVSA.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KYPREJHGNMP6GVSA.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "KYPREJHGNMP6GVSA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KYPREJHGNMP6GVSA.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "KYPREJHGNMP6GVSA.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "KYPREJHGNMP6GVSA.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "KYPREJHGNMP6GVSA.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1492" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KYPREJHGNMP6GVSA.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "KYPREJHGNMP6GVSA", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "KYPREJHGNMP6GVSA.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "KYPREJHGNMP6GVSA.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "479" + }, + "appliesTo" : [ ] + }, + "KYPREJHGNMP6GVSA.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "KYPREJHGNMP6GVSA.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KYPREJHGNMP6GVSA.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "KYPREJHGNMP6GVSA", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "KYPREJHGNMP6GVSA.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "KYPREJHGNMP6GVSA.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "V8EJ2P6F3B8BQ4JZ" : { + "V8EJ2P6F3B8BQ4JZ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "V8EJ2P6F3B8BQ4JZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V8EJ2P6F3B8BQ4JZ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "V8EJ2P6F3B8BQ4JZ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15179" + }, + "appliesTo" : [ ] + }, + "V8EJ2P6F3B8BQ4JZ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "V8EJ2P6F3B8BQ4JZ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7328000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "V8EJ2P6F3B8BQ4JZ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "V8EJ2P6F3B8BQ4JZ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "V8EJ2P6F3B8BQ4JZ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "V8EJ2P6F3B8BQ4JZ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3952000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "V8EJ2P6F3B8BQ4JZ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "V8EJ2P6F3B8BQ4JZ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "V8EJ2P6F3B8BQ4JZ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "V8EJ2P6F3B8BQ4JZ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "41028" + }, + "appliesTo" : [ ] + }, + "V8EJ2P6F3B8BQ4JZ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "V8EJ2P6F3B8BQ4JZ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5612000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "V8EJ2P6F3B8BQ4JZ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "V8EJ2P6F3B8BQ4JZ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "V8EJ2P6F3B8BQ4JZ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "V8EJ2P6F3B8BQ4JZ.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "V8EJ2P6F3B8BQ4JZ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "V8EJ2P6F3B8BQ4JZ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "83613" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "V8EJ2P6F3B8BQ4JZ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "V8EJ2P6F3B8BQ4JZ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "V8EJ2P6F3B8BQ4JZ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "V8EJ2P6F3B8BQ4JZ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "81321" + }, + "appliesTo" : [ ] + }, + "V8EJ2P6F3B8BQ4JZ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "V8EJ2P6F3B8BQ4JZ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "V8EJ2P6F3B8BQ4JZ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "V8EJ2P6F3B8BQ4JZ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "V8EJ2P6F3B8BQ4JZ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "V8EJ2P6F3B8BQ4JZ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2353000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "V8EJ2P6F3B8BQ4JZ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "V8EJ2P6F3B8BQ4JZ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "V8EJ2P6F3B8BQ4JZ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "V8EJ2P6F3B8BQ4JZ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29310" + }, + "appliesTo" : [ ] + }, + "V8EJ2P6F3B8BQ4JZ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "V8EJ2P6F3B8BQ4JZ.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "V8EJ2P6F3B8BQ4JZ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "V8EJ2P6F3B8BQ4JZ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "V8EJ2P6F3B8BQ4JZ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "V8EJ2P6F3B8BQ4JZ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14717" + }, + "appliesTo" : [ ] + }, + "V8EJ2P6F3B8BQ4JZ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "V8EJ2P6F3B8BQ4JZ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "V8EJ2P6F3B8BQ4JZ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "V8EJ2P6F3B8BQ4JZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V8EJ2P6F3B8BQ4JZ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "V8EJ2P6F3B8BQ4JZ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "V8EJ2P6F3B8BQ4JZ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "V8EJ2P6F3B8BQ4JZ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30217" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "V8EJ2P6F3B8BQ4JZ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "V8EJ2P6F3B8BQ4JZ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "V8EJ2P6F3B8BQ4JZ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "V8EJ2P6F3B8BQ4JZ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "41948" + }, + "appliesTo" : [ ] + }, + "V8EJ2P6F3B8BQ4JZ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "V8EJ2P6F3B8BQ4JZ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5962000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "V8EJ2P6F3B8BQ4JZ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "V8EJ2P6F3B8BQ4JZ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "V8EJ2P6F3B8BQ4JZ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "V8EJ2P6F3B8BQ4JZ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1597000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "V8EJ2P6F3B8BQ4JZ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "V8EJ2P6F3B8BQ4JZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V8EJ2P6F3B8BQ4JZ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "V8EJ2P6F3B8BQ4JZ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5061000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "7YFC8DX6JB9UEFUF" : { + "7YFC8DX6JB9UEFUF.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "7YFC8DX6JB9UEFUF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7YFC8DX6JB9UEFUF.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "7YFC8DX6JB9UEFUF.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "154634" + }, + "appliesTo" : [ ] + }, + "7YFC8DX6JB9UEFUF.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "7YFC8DX6JB9UEFUF.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7YFC8DX6JB9UEFUF.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "7YFC8DX6JB9UEFUF", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "7YFC8DX6JB9UEFUF.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "7YFC8DX6JB9UEFUF.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "120035" + }, + "appliesTo" : [ ] + }, + "7YFC8DX6JB9UEFUF.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "7YFC8DX6JB9UEFUF.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7YFC8DX6JB9UEFUF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "7YFC8DX6JB9UEFUF", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "7YFC8DX6JB9UEFUF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "7YFC8DX6JB9UEFUF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "68604" + }, + "appliesTo" : [ ] + }, + "7YFC8DX6JB9UEFUF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "7YFC8DX6JB9UEFUF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.8320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7YFC8DX6JB9UEFUF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "7YFC8DX6JB9UEFUF", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "7YFC8DX6JB9UEFUF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "7YFC8DX6JB9UEFUF.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9720000000" + }, + "appliesTo" : [ ] + }, + "7YFC8DX6JB9UEFUF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "7YFC8DX6JB9UEFUF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "104379" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7YFC8DX6JB9UEFUF.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "7YFC8DX6JB9UEFUF", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "7YFC8DX6JB9UEFUF.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "7YFC8DX6JB9UEFUF.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.8660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7YFC8DX6JB9UEFUF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "7YFC8DX6JB9UEFUF", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "7YFC8DX6JB9UEFUF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "7YFC8DX6JB9UEFUF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "134464" + }, + "appliesTo" : [ ] + }, + "7YFC8DX6JB9UEFUF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "7YFC8DX6JB9UEFUF.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7YFC8DX6JB9UEFUF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "7YFC8DX6JB9UEFUF", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "7YFC8DX6JB9UEFUF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "7YFC8DX6JB9UEFUF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "7YFC8DX6JB9UEFUF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "7YFC8DX6JB9UEFUF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "196232" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7YFC8DX6JB9UEFUF.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "7YFC8DX6JB9UEFUF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7YFC8DX6JB9UEFUF.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "7YFC8DX6JB9UEFUF.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "78895" + }, + "appliesTo" : [ ] + }, + "7YFC8DX6JB9UEFUF.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "7YFC8DX6JB9UEFUF.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.0060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7YFC8DX6JB9UEFUF.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "7YFC8DX6JB9UEFUF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7YFC8DX6JB9UEFUF.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "7YFC8DX6JB9UEFUF.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "18.9130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7YFC8DX6JB9UEFUF.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "7YFC8DX6JB9UEFUF", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "7YFC8DX6JB9UEFUF.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "7YFC8DX6JB9UEFUF.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "235269" + }, + "appliesTo" : [ ] + }, + "7YFC8DX6JB9UEFUF.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "7YFC8DX6JB9UEFUF.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7YFC8DX6JB9UEFUF.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "7YFC8DX6JB9UEFUF", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "7YFC8DX6JB9UEFUF.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "7YFC8DX6JB9UEFUF.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.5790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "FENJBKVQ4CNCQN3M" : { + "FENJBKVQ4CNCQN3M.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "FENJBKVQ4CNCQN3M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FENJBKVQ4CNCQN3M.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "FENJBKVQ4CNCQN3M.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "55364" + }, + "appliesTo" : [ ] + }, + "FENJBKVQ4CNCQN3M.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "FENJBKVQ4CNCQN3M.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.3200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FENJBKVQ4CNCQN3M.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "FENJBKVQ4CNCQN3M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FENJBKVQ4CNCQN3M.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "FENJBKVQ4CNCQN3M.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "120313" + }, + "appliesTo" : [ ] + }, + "FENJBKVQ4CNCQN3M.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "FENJBKVQ4CNCQN3M.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FENJBKVQ4CNCQN3M.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "FENJBKVQ4CNCQN3M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FENJBKVQ4CNCQN3M.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "FENJBKVQ4CNCQN3M.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.4280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FENJBKVQ4CNCQN3M.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "FENJBKVQ4CNCQN3M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FENJBKVQ4CNCQN3M.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "FENJBKVQ4CNCQN3M.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.9660000000" + }, + "appliesTo" : [ ] + }, + "FENJBKVQ4CNCQN3M.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "FENJBKVQ4CNCQN3M.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "61024" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FENJBKVQ4CNCQN3M.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "FENJBKVQ4CNCQN3M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FENJBKVQ4CNCQN3M.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "FENJBKVQ4CNCQN3M.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.0710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FENJBKVQ4CNCQN3M.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "FENJBKVQ4CNCQN3M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FENJBKVQ4CNCQN3M.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "FENJBKVQ4CNCQN3M.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.7440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FENJBKVQ4CNCQN3M.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "FENJBKVQ4CNCQN3M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FENJBKVQ4CNCQN3M.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "FENJBKVQ4CNCQN3M.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "235191" + }, + "appliesTo" : [ ] + }, + "FENJBKVQ4CNCQN3M.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "FENJBKVQ4CNCQN3M.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FENJBKVQ4CNCQN3M.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "FENJBKVQ4CNCQN3M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FENJBKVQ4CNCQN3M.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "FENJBKVQ4CNCQN3M.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.1970000000" + }, + "appliesTo" : [ ] + }, + "FENJBKVQ4CNCQN3M.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "FENJBKVQ4CNCQN3M.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "110305" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FENJBKVQ4CNCQN3M.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "FENJBKVQ4CNCQN3M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FENJBKVQ4CNCQN3M.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "FENJBKVQ4CNCQN3M.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5250000000" + }, + "appliesTo" : [ ] + }, + "FENJBKVQ4CNCQN3M.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "FENJBKVQ4CNCQN3M.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "118916" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FENJBKVQ4CNCQN3M.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "FENJBKVQ4CNCQN3M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FENJBKVQ4CNCQN3M.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "FENJBKVQ4CNCQN3M.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.4520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FENJBKVQ4CNCQN3M.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "FENJBKVQ4CNCQN3M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FENJBKVQ4CNCQN3M.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "FENJBKVQ4CNCQN3M.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "213720" + }, + "appliesTo" : [ ] + }, + "FENJBKVQ4CNCQN3M.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "FENJBKVQ4CNCQN3M.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FENJBKVQ4CNCQN3M.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "FENJBKVQ4CNCQN3M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FENJBKVQ4CNCQN3M.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "FENJBKVQ4CNCQN3M.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "109220" + }, + "appliesTo" : [ ] + }, + "FENJBKVQ4CNCQN3M.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "FENJBKVQ4CNCQN3M.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "BFTE24AMMM45YVGQ" : { + "BFTE24AMMM45YVGQ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "BFTE24AMMM45YVGQ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BFTE24AMMM45YVGQ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "BFTE24AMMM45YVGQ.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1980000000" + }, + "appliesTo" : [ ] + }, + "BFTE24AMMM45YVGQ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "BFTE24AMMM45YVGQ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4469" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BFTE24AMMM45YVGQ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "BFTE24AMMM45YVGQ", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "BFTE24AMMM45YVGQ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "BFTE24AMMM45YVGQ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12920" + }, + "appliesTo" : [ ] + }, + "BFTE24AMMM45YVGQ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "BFTE24AMMM45YVGQ.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BFTE24AMMM45YVGQ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "BFTE24AMMM45YVGQ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BFTE24AMMM45YVGQ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "BFTE24AMMM45YVGQ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BFTE24AMMM45YVGQ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "BFTE24AMMM45YVGQ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BFTE24AMMM45YVGQ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "BFTE24AMMM45YVGQ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "BFTE24AMMM45YVGQ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "BFTE24AMMM45YVGQ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9091" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BFTE24AMMM45YVGQ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "BFTE24AMMM45YVGQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BFTE24AMMM45YVGQ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "BFTE24AMMM45YVGQ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3200000000" + }, + "appliesTo" : [ ] + }, + "BFTE24AMMM45YVGQ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "BFTE24AMMM45YVGQ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2801" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BFTE24AMMM45YVGQ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "BFTE24AMMM45YVGQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BFTE24AMMM45YVGQ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "BFTE24AMMM45YVGQ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BFTE24AMMM45YVGQ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "BFTE24AMMM45YVGQ", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "BFTE24AMMM45YVGQ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "BFTE24AMMM45YVGQ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7746" + }, + "appliesTo" : [ ] + }, + "BFTE24AMMM45YVGQ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "BFTE24AMMM45YVGQ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BFTE24AMMM45YVGQ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "BFTE24AMMM45YVGQ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BFTE24AMMM45YVGQ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "BFTE24AMMM45YVGQ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "BFTE24AMMM45YVGQ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "BFTE24AMMM45YVGQ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4785" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BFTE24AMMM45YVGQ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "BFTE24AMMM45YVGQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BFTE24AMMM45YVGQ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "BFTE24AMMM45YVGQ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5491" + }, + "appliesTo" : [ ] + }, + "BFTE24AMMM45YVGQ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "BFTE24AMMM45YVGQ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BFTE24AMMM45YVGQ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "BFTE24AMMM45YVGQ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BFTE24AMMM45YVGQ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "BFTE24AMMM45YVGQ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2869" + }, + "appliesTo" : [ ] + }, + "BFTE24AMMM45YVGQ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "BFTE24AMMM45YVGQ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BFTE24AMMM45YVGQ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "BFTE24AMMM45YVGQ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BFTE24AMMM45YVGQ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "BFTE24AMMM45YVGQ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "S73ZA9CU68E57ZAH" : { + "S73ZA9CU68E57ZAH.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "S73ZA9CU68E57ZAH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "S73ZA9CU68E57ZAH.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "S73ZA9CU68E57ZAH.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18692" + }, + "appliesTo" : [ ] + }, + "S73ZA9CU68E57ZAH.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "S73ZA9CU68E57ZAH.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "S73ZA9CU68E57ZAH.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "S73ZA9CU68E57ZAH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "S73ZA9CU68E57ZAH.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "S73ZA9CU68E57ZAH.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "50376" + }, + "appliesTo" : [ ] + }, + "S73ZA9CU68E57ZAH.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "S73ZA9CU68E57ZAH.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "S73ZA9CU68E57ZAH.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "S73ZA9CU68E57ZAH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "S73ZA9CU68E57ZAH.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "S73ZA9CU68E57ZAH.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "S73ZA9CU68E57ZAH.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "S73ZA9CU68E57ZAH.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18177" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "S73ZA9CU68E57ZAH.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "S73ZA9CU68E57ZAH", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "S73ZA9CU68E57ZAH.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "S73ZA9CU68E57ZAH.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "S73ZA9CU68E57ZAH.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "S73ZA9CU68E57ZAH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "S73ZA9CU68E57ZAH.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "S73ZA9CU68E57ZAH.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25383" + }, + "appliesTo" : [ ] + }, + "S73ZA9CU68E57ZAH.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "S73ZA9CU68E57ZAH.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "S73ZA9CU68E57ZAH.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "S73ZA9CU68E57ZAH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "S73ZA9CU68E57ZAH.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "S73ZA9CU68E57ZAH.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26846" + }, + "appliesTo" : [ ] + }, + "S73ZA9CU68E57ZAH.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "S73ZA9CU68E57ZAH.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "S73ZA9CU68E57ZAH.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "S73ZA9CU68E57ZAH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "S73ZA9CU68E57ZAH.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "S73ZA9CU68E57ZAH.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9386" + }, + "appliesTo" : [ ] + }, + "S73ZA9CU68E57ZAH.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "S73ZA9CU68E57ZAH.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "S73ZA9CU68E57ZAH.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "S73ZA9CU68E57ZAH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "S73ZA9CU68E57ZAH.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "S73ZA9CU68E57ZAH.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "S73ZA9CU68E57ZAH.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "S73ZA9CU68E57ZAH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "S73ZA9CU68E57ZAH.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "S73ZA9CU68E57ZAH.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "53503" + }, + "appliesTo" : [ ] + }, + "S73ZA9CU68E57ZAH.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "S73ZA9CU68E57ZAH.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "S73ZA9CU68E57ZAH.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "S73ZA9CU68E57ZAH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "S73ZA9CU68E57ZAH.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "S73ZA9CU68E57ZAH.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9123" + }, + "appliesTo" : [ ] + }, + "S73ZA9CU68E57ZAH.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "S73ZA9CU68E57ZAH.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "S73ZA9CU68E57ZAH.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "S73ZA9CU68E57ZAH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "S73ZA9CU68E57ZAH.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "S73ZA9CU68E57ZAH.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "783XD5AJCNJSV3H7" : { + "783XD5AJCNJSV3H7.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "783XD5AJCNJSV3H7", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "783XD5AJCNJSV3H7.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "783XD5AJCNJSV3H7.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "783XD5AJCNJSV3H7.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "783XD5AJCNJSV3H7", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "783XD5AJCNJSV3H7.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "783XD5AJCNJSV3H7.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9510000000" + }, + "appliesTo" : [ ] + }, + "783XD5AJCNJSV3H7.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "783XD5AJCNJSV3H7.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7220" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "783XD5AJCNJSV3H7.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "783XD5AJCNJSV3H7", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "783XD5AJCNJSV3H7.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "783XD5AJCNJSV3H7.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30509" + }, + "appliesTo" : [ ] + }, + "783XD5AJCNJSV3H7.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "783XD5AJCNJSV3H7.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "783XD5AJCNJSV3H7.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "783XD5AJCNJSV3H7", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "783XD5AJCNJSV3H7.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "783XD5AJCNJSV3H7.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10880" + }, + "appliesTo" : [ ] + }, + "783XD5AJCNJSV3H7.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "783XD5AJCNJSV3H7.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "783XD5AJCNJSV3H7.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "783XD5AJCNJSV3H7", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "783XD5AJCNJSV3H7.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "783XD5AJCNJSV3H7.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15240" + }, + "appliesTo" : [ ] + }, + "783XD5AJCNJSV3H7.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "783XD5AJCNJSV3H7.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "7GUHNB4GSSZNUVY2" : { + "7GUHNB4GSSZNUVY2.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "7GUHNB4GSSZNUVY2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7GUHNB4GSSZNUVY2.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "7GUHNB4GSSZNUVY2.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7GUHNB4GSSZNUVY2.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "7GUHNB4GSSZNUVY2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7GUHNB4GSSZNUVY2.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "7GUHNB4GSSZNUVY2.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4051" + }, + "appliesTo" : [ ] + }, + "7GUHNB4GSSZNUVY2.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "7GUHNB4GSSZNUVY2.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7GUHNB4GSSZNUVY2.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "7GUHNB4GSSZNUVY2", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "7GUHNB4GSSZNUVY2.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "7GUHNB4GSSZNUVY2.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7GUHNB4GSSZNUVY2.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "7GUHNB4GSSZNUVY2", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "7GUHNB4GSSZNUVY2.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "7GUHNB4GSSZNUVY2.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22247" + }, + "appliesTo" : [ ] + }, + "7GUHNB4GSSZNUVY2.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "7GUHNB4GSSZNUVY2.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7GUHNB4GSSZNUVY2.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "7GUHNB4GSSZNUVY2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7GUHNB4GSSZNUVY2.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "7GUHNB4GSSZNUVY2.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8030" + }, + "appliesTo" : [ ] + }, + "7GUHNB4GSSZNUVY2.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "7GUHNB4GSSZNUVY2.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7GUHNB4GSSZNUVY2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "7GUHNB4GSSZNUVY2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7GUHNB4GSSZNUVY2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "7GUHNB4GSSZNUVY2.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7GUHNB4GSSZNUVY2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "7GUHNB4GSSZNUVY2", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "7GUHNB4GSSZNUVY2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "7GUHNB4GSSZNUVY2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3154" + }, + "appliesTo" : [ ] + }, + "7GUHNB4GSSZNUVY2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "7GUHNB4GSSZNUVY2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7GUHNB4GSSZNUVY2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "7GUHNB4GSSZNUVY2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7GUHNB4GSSZNUVY2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "7GUHNB4GSSZNUVY2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7728" + }, + "appliesTo" : [ ] + }, + "7GUHNB4GSSZNUVY2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "7GUHNB4GSSZNUVY2.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7GUHNB4GSSZNUVY2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "7GUHNB4GSSZNUVY2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7GUHNB4GSSZNUVY2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "7GUHNB4GSSZNUVY2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17340" + }, + "appliesTo" : [ ] + }, + "7GUHNB4GSSZNUVY2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "7GUHNB4GSSZNUVY2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7GUHNB4GSSZNUVY2.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "7GUHNB4GSSZNUVY2", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "7GUHNB4GSSZNUVY2.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "7GUHNB4GSSZNUVY2.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5240000000" + }, + "appliesTo" : [ ] + }, + "7GUHNB4GSSZNUVY2.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "7GUHNB4GSSZNUVY2.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8907" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7GUHNB4GSSZNUVY2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "7GUHNB4GSSZNUVY2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7GUHNB4GSSZNUVY2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "7GUHNB4GSSZNUVY2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7376" + }, + "appliesTo" : [ ] + }, + "7GUHNB4GSSZNUVY2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "7GUHNB4GSSZNUVY2.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "YKZXQZPGPVZNNRHA" : { + "YKZXQZPGPVZNNRHA.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YKZXQZPGPVZNNRHA", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "YKZXQZPGPVZNNRHA.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YKZXQZPGPVZNNRHA.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YKZXQZPGPVZNNRHA.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YKZXQZPGPVZNNRHA", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YKZXQZPGPVZNNRHA.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YKZXQZPGPVZNNRHA.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "520" + }, + "appliesTo" : [ ] + }, + "YKZXQZPGPVZNNRHA.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YKZXQZPGPVZNNRHA.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YKZXQZPGPVZNNRHA.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YKZXQZPGPVZNNRHA", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YKZXQZPGPVZNNRHA.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YKZXQZPGPVZNNRHA.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "791" + }, + "appliesTo" : [ ] + }, + "YKZXQZPGPVZNNRHA.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YKZXQZPGPVZNNRHA.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YKZXQZPGPVZNNRHA.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YKZXQZPGPVZNNRHA", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YKZXQZPGPVZNNRHA.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YKZXQZPGPVZNNRHA.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "896" + }, + "appliesTo" : [ ] + }, + "YKZXQZPGPVZNNRHA.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YKZXQZPGPVZNNRHA.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YKZXQZPGPVZNNRHA.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YKZXQZPGPVZNNRHA", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YKZXQZPGPVZNNRHA.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YKZXQZPGPVZNNRHA.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1612" + }, + "appliesTo" : [ ] + }, + "YKZXQZPGPVZNNRHA.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YKZXQZPGPVZNNRHA.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "MQ6M7PWCD7PJTKHD" : { + "MQ6M7PWCD7PJTKHD.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "MQ6M7PWCD7PJTKHD", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "MQ6M7PWCD7PJTKHD.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "MQ6M7PWCD7PJTKHD.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "80644" + }, + "appliesTo" : [ ] + }, + "MQ6M7PWCD7PJTKHD.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "MQ6M7PWCD7PJTKHD.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MQ6M7PWCD7PJTKHD.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "MQ6M7PWCD7PJTKHD", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "MQ6M7PWCD7PJTKHD.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "MQ6M7PWCD7PJTKHD.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "41173" + }, + "appliesTo" : [ ] + }, + "MQ6M7PWCD7PJTKHD.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "MQ6M7PWCD7PJTKHD.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.6930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MQ6M7PWCD7PJTKHD.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "MQ6M7PWCD7PJTKHD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MQ6M7PWCD7PJTKHD.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "MQ6M7PWCD7PJTKHD.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47322" + }, + "appliesTo" : [ ] + }, + "MQ6M7PWCD7PJTKHD.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "MQ6M7PWCD7PJTKHD.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.3950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MQ6M7PWCD7PJTKHD.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "MQ6M7PWCD7PJTKHD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MQ6M7PWCD7PJTKHD.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "MQ6M7PWCD7PJTKHD.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "11.3350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MQ6M7PWCD7PJTKHD.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "MQ6M7PWCD7PJTKHD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MQ6M7PWCD7PJTKHD.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "MQ6M7PWCD7PJTKHD.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "202095" + }, + "appliesTo" : [ ] + }, + "MQ6M7PWCD7PJTKHD.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "MQ6M7PWCD7PJTKHD.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MQ6M7PWCD7PJTKHD.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "MQ6M7PWCD7PJTKHD", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "MQ6M7PWCD7PJTKHD.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "MQ6M7PWCD7PJTKHD.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "89704" + }, + "appliesTo" : [ ] + }, + "MQ6M7PWCD7PJTKHD.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "MQ6M7PWCD7PJTKHD.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MQ6M7PWCD7PJTKHD.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "MQ6M7PWCD7PJTKHD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MQ6M7PWCD7PJTKHD.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "MQ6M7PWCD7PJTKHD.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9230000000" + }, + "appliesTo" : [ ] + }, + "MQ6M7PWCD7PJTKHD.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "MQ6M7PWCD7PJTKHD.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "103108" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MQ6M7PWCD7PJTKHD.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "MQ6M7PWCD7PJTKHD", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "MQ6M7PWCD7PJTKHD.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "MQ6M7PWCD7PJTKHD.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "168676" + }, + "appliesTo" : [ ] + }, + "MQ6M7PWCD7PJTKHD.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "MQ6M7PWCD7PJTKHD.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MQ6M7PWCD7PJTKHD.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "MQ6M7PWCD7PJTKHD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MQ6M7PWCD7PJTKHD.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "MQ6M7PWCD7PJTKHD.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MQ6M7PWCD7PJTKHD.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "MQ6M7PWCD7PJTKHD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MQ6M7PWCD7PJTKHD.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "MQ6M7PWCD7PJTKHD.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "MQ6M7PWCD7PJTKHD.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "MQ6M7PWCD7PJTKHD.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "92697" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MQ6M7PWCD7PJTKHD.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "MQ6M7PWCD7PJTKHD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MQ6M7PWCD7PJTKHD.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "MQ6M7PWCD7PJTKHD.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.8610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MQ6M7PWCD7PJTKHD.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "MQ6M7PWCD7PJTKHD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MQ6M7PWCD7PJTKHD.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "MQ6M7PWCD7PJTKHD.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.4790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "KE8V44XRQ8CWNHEV" : { + "KE8V44XRQ8CWNHEV.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "KE8V44XRQ8CWNHEV", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "KE8V44XRQ8CWNHEV.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "KE8V44XRQ8CWNHEV.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KE8V44XRQ8CWNHEV.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "KE8V44XRQ8CWNHEV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KE8V44XRQ8CWNHEV.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "KE8V44XRQ8CWNHEV.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KE8V44XRQ8CWNHEV.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "KE8V44XRQ8CWNHEV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KE8V44XRQ8CWNHEV.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "KE8V44XRQ8CWNHEV.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1807" + }, + "appliesTo" : [ ] + }, + "KE8V44XRQ8CWNHEV.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "KE8V44XRQ8CWNHEV.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KE8V44XRQ8CWNHEV.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "KE8V44XRQ8CWNHEV", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "KE8V44XRQ8CWNHEV.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "KE8V44XRQ8CWNHEV.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11760" + }, + "appliesTo" : [ ] + }, + "KE8V44XRQ8CWNHEV.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "KE8V44XRQ8CWNHEV.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KE8V44XRQ8CWNHEV.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "KE8V44XRQ8CWNHEV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KE8V44XRQ8CWNHEV.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "KE8V44XRQ8CWNHEV.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4681" + }, + "appliesTo" : [ ] + }, + "KE8V44XRQ8CWNHEV.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "KE8V44XRQ8CWNHEV.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KE8V44XRQ8CWNHEV.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "KE8V44XRQ8CWNHEV", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "KE8V44XRQ8CWNHEV.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "KE8V44XRQ8CWNHEV.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2550000000" + }, + "appliesTo" : [ ] + }, + "KE8V44XRQ8CWNHEV.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "KE8V44XRQ8CWNHEV.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2056" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KE8V44XRQ8CWNHEV.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "KE8V44XRQ8CWNHEV", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "KE8V44XRQ8CWNHEV.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "KE8V44XRQ8CWNHEV.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4229" + }, + "appliesTo" : [ ] + }, + "KE8V44XRQ8CWNHEV.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "KE8V44XRQ8CWNHEV.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KE8V44XRQ8CWNHEV.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "KE8V44XRQ8CWNHEV", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "KE8V44XRQ8CWNHEV.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "KE8V44XRQ8CWNHEV.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KE8V44XRQ8CWNHEV.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "KE8V44XRQ8CWNHEV", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "KE8V44XRQ8CWNHEV.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "KE8V44XRQ8CWNHEV.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9547" + }, + "appliesTo" : [ ] + }, + "KE8V44XRQ8CWNHEV.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "KE8V44XRQ8CWNHEV.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KE8V44XRQ8CWNHEV.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "KE8V44XRQ8CWNHEV", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "KE8V44XRQ8CWNHEV.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "KE8V44XRQ8CWNHEV.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3925" + }, + "appliesTo" : [ ] + }, + "KE8V44XRQ8CWNHEV.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "KE8V44XRQ8CWNHEV.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KE8V44XRQ8CWNHEV.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "KE8V44XRQ8CWNHEV", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "KE8V44XRQ8CWNHEV.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "KE8V44XRQ8CWNHEV.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5551" + }, + "appliesTo" : [ ] + }, + "KE8V44XRQ8CWNHEV.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "KE8V44XRQ8CWNHEV.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "YXVKN9CCKCPCSTST" : { + "YXVKN9CCKCPCSTST.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "YXVKN9CCKCPCSTST", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YXVKN9CCKCPCSTST.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "YXVKN9CCKCPCSTST.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.4820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YXVKN9CCKCPCSTST.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YXVKN9CCKCPCSTST", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YXVKN9CCKCPCSTST.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YXVKN9CCKCPCSTST.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.1700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YXVKN9CCKCPCSTST.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "YXVKN9CCKCPCSTST", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YXVKN9CCKCPCSTST.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "YXVKN9CCKCPCSTST.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23755" + }, + "appliesTo" : [ ] + }, + "YXVKN9CCKCPCSTST.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "YXVKN9CCKCPCSTST.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YXVKN9CCKCPCSTST.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YXVKN9CCKCPCSTST", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YXVKN9CCKCPCSTST.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YXVKN9CCKCPCSTST.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "50028" + }, + "appliesTo" : [ ] + }, + "YXVKN9CCKCPCSTST.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YXVKN9CCKCPCSTST.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YXVKN9CCKCPCSTST.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YXVKN9CCKCPCSTST", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YXVKN9CCKCPCSTST.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YXVKN9CCKCPCSTST.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "45269" + }, + "appliesTo" : [ ] + }, + "YXVKN9CCKCPCSTST.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YXVKN9CCKCPCSTST.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YXVKN9CCKCPCSTST.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YXVKN9CCKCPCSTST", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YXVKN9CCKCPCSTST.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YXVKN9CCKCPCSTST.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YXVKN9CCKCPCSTST.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YXVKN9CCKCPCSTST.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "117579" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YXVKN9CCKCPCSTST.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "YXVKN9CCKCPCSTST", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YXVKN9CCKCPCSTST.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "YXVKN9CCKCPCSTST.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47307" + }, + "appliesTo" : [ ] + }, + "YXVKN9CCKCPCSTST.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "YXVKN9CCKCPCSTST.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YXVKN9CCKCPCSTST.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "YXVKN9CCKCPCSTST", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YXVKN9CCKCPCSTST.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "YXVKN9CCKCPCSTST.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.0530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YXVKN9CCKCPCSTST.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "YXVKN9CCKCPCSTST", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YXVKN9CCKCPCSTST.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "YXVKN9CCKCPCSTST.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "53890" + }, + "appliesTo" : [ ] + }, + "YXVKN9CCKCPCSTST.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "YXVKN9CCKCPCSTST.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YXVKN9CCKCPCSTST.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YXVKN9CCKCPCSTST", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YXVKN9CCKCPCSTST.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YXVKN9CCKCPCSTST.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18485" + }, + "appliesTo" : [ ] + }, + "YXVKN9CCKCPCSTST.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YXVKN9CCKCPCSTST.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YXVKN9CCKCPCSTST.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "YXVKN9CCKCPCSTST", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YXVKN9CCKCPCSTST.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "YXVKN9CCKCPCSTST.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "133200" + }, + "appliesTo" : [ ] + }, + "YXVKN9CCKCPCSTST.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "YXVKN9CCKCPCSTST.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "TJTQVWS5KE6W7NKV" : { + "TJTQVWS5KE6W7NKV.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "TJTQVWS5KE6W7NKV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TJTQVWS5KE6W7NKV.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "TJTQVWS5KE6W7NKV.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "157487" + }, + "appliesTo" : [ ] + }, + "TJTQVWS5KE6W7NKV.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "TJTQVWS5KE6W7NKV.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TJTQVWS5KE6W7NKV.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TJTQVWS5KE6W7NKV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "TJTQVWS5KE6W7NKV.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TJTQVWS5KE6W7NKV.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "69871" + }, + "appliesTo" : [ ] + }, + "TJTQVWS5KE6W7NKV.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TJTQVWS5KE6W7NKV.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.9690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TJTQVWS5KE6W7NKV.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "TJTQVWS5KE6W7NKV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "TJTQVWS5KE6W7NKV.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "TJTQVWS5KE6W7NKV.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "175017" + }, + "appliesTo" : [ ] + }, + "TJTQVWS5KE6W7NKV.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "TJTQVWS5KE6W7NKV.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.6590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TJTQVWS5KE6W7NKV.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "TJTQVWS5KE6W7NKV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "TJTQVWS5KE6W7NKV.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "TJTQVWS5KE6W7NKV.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "343038" + }, + "appliesTo" : [ ] + }, + "TJTQVWS5KE6W7NKV.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "TJTQVWS5KE6W7NKV.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TJTQVWS5KE6W7NKV.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "TJTQVWS5KE6W7NKV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "TJTQVWS5KE6W7NKV.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "TJTQVWS5KE6W7NKV.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.6880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TJTQVWS5KE6W7NKV.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "TJTQVWS5KE6W7NKV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TJTQVWS5KE6W7NKV.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "TJTQVWS5KE6W7NKV.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.1690000000" + }, + "appliesTo" : [ ] + }, + "TJTQVWS5KE6W7NKV.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "TJTQVWS5KE6W7NKV.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "80378" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TJTQVWS5KE6W7NKV.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "TJTQVWS5KE6W7NKV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TJTQVWS5KE6W7NKV.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "TJTQVWS5KE6W7NKV.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "19.2600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TJTQVWS5KE6W7NKV.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TJTQVWS5KE6W7NKV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "TJTQVWS5KE6W7NKV.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TJTQVWS5KE6W7NKV.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.7410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TJTQVWS5KE6W7NKV.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TJTQVWS5KE6W7NKV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "TJTQVWS5KE6W7NKV.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TJTQVWS5KE6W7NKV.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9460000000" + }, + "appliesTo" : [ ] + }, + "TJTQVWS5KE6W7NKV.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TJTQVWS5KE6W7NKV.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "129984" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TJTQVWS5KE6W7NKV.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "TJTQVWS5KE6W7NKV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "TJTQVWS5KE6W7NKV.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "TJTQVWS5KE6W7NKV.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.3890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TJTQVWS5KE6W7NKV.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TJTQVWS5KE6W7NKV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "TJTQVWS5KE6W7NKV.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TJTQVWS5KE6W7NKV.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TJTQVWS5KE6W7NKV.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TJTQVWS5KE6W7NKV.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "244402" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TJTQVWS5KE6W7NKV.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TJTQVWS5KE6W7NKV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "TJTQVWS5KE6W7NKV.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TJTQVWS5KE6W7NKV.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TJTQVWS5KE6W7NKV.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TJTQVWS5KE6W7NKV.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "136891" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "SSTT3HA4W7HHVR38" : { + "SSTT3HA4W7HHVR38.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SSTT3HA4W7HHVR38", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "SSTT3HA4W7HHVR38.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SSTT3HA4W7HHVR38.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1230000000" + }, + "appliesTo" : [ ] + }, + "SSTT3HA4W7HHVR38.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SSTT3HA4W7HHVR38.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29530" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SSTT3HA4W7HHVR38.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SSTT3HA4W7HHVR38", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "SSTT3HA4W7HHVR38.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SSTT3HA4W7HHVR38.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21690" + }, + "appliesTo" : [ ] + }, + "SSTT3HA4W7HHVR38.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SSTT3HA4W7HHVR38.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SSTT3HA4W7HHVR38.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SSTT3HA4W7HHVR38", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "SSTT3HA4W7HHVR38.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SSTT3HA4W7HHVR38.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SSTT3HA4W7HHVR38.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SSTT3HA4W7HHVR38.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "55500" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SSTT3HA4W7HHVR38.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SSTT3HA4W7HHVR38", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "SSTT3HA4W7HHVR38.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SSTT3HA4W7HHVR38.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SSTT3HA4W7HHVR38.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SSTT3HA4W7HHVR38", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "SSTT3HA4W7HHVR38.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SSTT3HA4W7HHVR38.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11060" + }, + "appliesTo" : [ ] + }, + "SSTT3HA4W7HHVR38.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SSTT3HA4W7HHVR38.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "VJVE25YH42K8TGEJ" : { + "VJVE25YH42K8TGEJ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "VJVE25YH42K8TGEJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VJVE25YH42K8TGEJ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "VJVE25YH42K8TGEJ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.8500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VJVE25YH42K8TGEJ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "VJVE25YH42K8TGEJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VJVE25YH42K8TGEJ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "VJVE25YH42K8TGEJ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24893" + }, + "appliesTo" : [ ] + }, + "VJVE25YH42K8TGEJ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "VJVE25YH42K8TGEJ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VJVE25YH42K8TGEJ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "VJVE25YH42K8TGEJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "VJVE25YH42K8TGEJ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "VJVE25YH42K8TGEJ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.1420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VJVE25YH42K8TGEJ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "VJVE25YH42K8TGEJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "VJVE25YH42K8TGEJ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "VJVE25YH42K8TGEJ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18394" + }, + "appliesTo" : [ ] + }, + "VJVE25YH42K8TGEJ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "VJVE25YH42K8TGEJ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VJVE25YH42K8TGEJ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "VJVE25YH42K8TGEJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "VJVE25YH42K8TGEJ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "VJVE25YH42K8TGEJ.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "VJVE25YH42K8TGEJ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "VJVE25YH42K8TGEJ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "127725" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VJVE25YH42K8TGEJ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "VJVE25YH42K8TGEJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VJVE25YH42K8TGEJ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "VJVE25YH42K8TGEJ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "VJVE25YH42K8TGEJ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "VJVE25YH42K8TGEJ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "49202" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VJVE25YH42K8TGEJ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "VJVE25YH42K8TGEJ", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "VJVE25YH42K8TGEJ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "VJVE25YH42K8TGEJ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "50814" + }, + "appliesTo" : [ ] + }, + "VJVE25YH42K8TGEJ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "VJVE25YH42K8TGEJ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VJVE25YH42K8TGEJ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "VJVE25YH42K8TGEJ", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "VJVE25YH42K8TGEJ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "VJVE25YH42K8TGEJ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.8030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VJVE25YH42K8TGEJ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "VJVE25YH42K8TGEJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "VJVE25YH42K8TGEJ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "VJVE25YH42K8TGEJ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "43544" + }, + "appliesTo" : [ ] + }, + "VJVE25YH42K8TGEJ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "VJVE25YH42K8TGEJ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VJVE25YH42K8TGEJ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "VJVE25YH42K8TGEJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "VJVE25YH42K8TGEJ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "VJVE25YH42K8TGEJ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "102344" + }, + "appliesTo" : [ ] + }, + "VJVE25YH42K8TGEJ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "VJVE25YH42K8TGEJ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VJVE25YH42K8TGEJ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "VJVE25YH42K8TGEJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "VJVE25YH42K8TGEJ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "VJVE25YH42K8TGEJ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "45068" + }, + "appliesTo" : [ ] + }, + "VJVE25YH42K8TGEJ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "VJVE25YH42K8TGEJ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "BVX3DU7JUBDMJ5TW" : { + "BVX3DU7JUBDMJ5TW.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "BVX3DU7JUBDMJ5TW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BVX3DU7JUBDMJ5TW.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "BVX3DU7JUBDMJ5TW.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3466" + }, + "appliesTo" : [ ] + }, + "BVX3DU7JUBDMJ5TW.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "BVX3DU7JUBDMJ5TW.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BVX3DU7JUBDMJ5TW.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "BVX3DU7JUBDMJ5TW", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "BVX3DU7JUBDMJ5TW.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "BVX3DU7JUBDMJ5TW.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BVX3DU7JUBDMJ5TW.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "BVX3DU7JUBDMJ5TW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "BVX3DU7JUBDMJ5TW.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "BVX3DU7JUBDMJ5TW.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6685" + }, + "appliesTo" : [ ] + }, + "BVX3DU7JUBDMJ5TW.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "BVX3DU7JUBDMJ5TW.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BVX3DU7JUBDMJ5TW.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "BVX3DU7JUBDMJ5TW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BVX3DU7JUBDMJ5TW.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "BVX3DU7JUBDMJ5TW.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3556" + }, + "appliesTo" : [ ] + }, + "BVX3DU7JUBDMJ5TW.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "BVX3DU7JUBDMJ5TW.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BVX3DU7JUBDMJ5TW.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "BVX3DU7JUBDMJ5TW", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BVX3DU7JUBDMJ5TW.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "BVX3DU7JUBDMJ5TW.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4852" + }, + "appliesTo" : [ ] + }, + "BVX3DU7JUBDMJ5TW.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "BVX3DU7JUBDMJ5TW.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BVX3DU7JUBDMJ5TW.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "BVX3DU7JUBDMJ5TW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BVX3DU7JUBDMJ5TW.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "BVX3DU7JUBDMJ5TW.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2544" + }, + "appliesTo" : [ ] + }, + "BVX3DU7JUBDMJ5TW.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "BVX3DU7JUBDMJ5TW.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BVX3DU7JUBDMJ5TW.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "BVX3DU7JUBDMJ5TW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BVX3DU7JUBDMJ5TW.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "BVX3DU7JUBDMJ5TW.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BVX3DU7JUBDMJ5TW.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "BVX3DU7JUBDMJ5TW", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BVX3DU7JUBDMJ5TW.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "BVX3DU7JUBDMJ5TW.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9512" + }, + "appliesTo" : [ ] + }, + "BVX3DU7JUBDMJ5TW.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "BVX3DU7JUBDMJ5TW.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BVX3DU7JUBDMJ5TW.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "BVX3DU7JUBDMJ5TW", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BVX3DU7JUBDMJ5TW.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "BVX3DU7JUBDMJ5TW.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BVX3DU7JUBDMJ5TW.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "BVX3DU7JUBDMJ5TW", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "BVX3DU7JUBDMJ5TW.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "BVX3DU7JUBDMJ5TW.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2020000000" + }, + "appliesTo" : [ ] + }, + "BVX3DU7JUBDMJ5TW.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "BVX3DU7JUBDMJ5TW.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1768" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BVX3DU7JUBDMJ5TW.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "BVX3DU7JUBDMJ5TW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BVX3DU7JUBDMJ5TW.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "BVX3DU7JUBDMJ5TW.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "BVX3DU7JUBDMJ5TW.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "BVX3DU7JUBDMJ5TW.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5018" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "C92P55KXZZVQPVRT" : { + "C92P55KXZZVQPVRT.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "C92P55KXZZVQPVRT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "C92P55KXZZVQPVRT.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "C92P55KXZZVQPVRT.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.8350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "C92P55KXZZVQPVRT.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "C92P55KXZZVQPVRT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "C92P55KXZZVQPVRT.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "C92P55KXZZVQPVRT.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.5130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "C92P55KXZZVQPVRT.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "C92P55KXZZVQPVRT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "C92P55KXZZVQPVRT.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "C92P55KXZZVQPVRT.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "44963" + }, + "appliesTo" : [ ] + }, + "C92P55KXZZVQPVRT.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "C92P55KXZZVQPVRT.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.1330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "C92P55KXZZVQPVRT.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "C92P55KXZZVQPVRT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "C92P55KXZZVQPVRT.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "C92P55KXZZVQPVRT.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "193563" + }, + "appliesTo" : [ ] + }, + "C92P55KXZZVQPVRT.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "C92P55KXZZVQPVRT.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "C92P55KXZZVQPVRT.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "C92P55KXZZVQPVRT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "C92P55KXZZVQPVRT.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "C92P55KXZZVQPVRT.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "98504" + }, + "appliesTo" : [ ] + }, + "C92P55KXZZVQPVRT.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "C92P55KXZZVQPVRT.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "C92P55KXZZVQPVRT.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "C92P55KXZZVQPVRT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "C92P55KXZZVQPVRT.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "C92P55KXZZVQPVRT.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9120000000" + }, + "appliesTo" : [ ] + }, + "C92P55KXZZVQPVRT.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "C92P55KXZZVQPVRT.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "102809" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "C92P55KXZZVQPVRT.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "C92P55KXZZVQPVRT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "C92P55KXZZVQPVRT.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "C92P55KXZZVQPVRT.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "C92P55KXZZVQPVRT.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "C92P55KXZZVQPVRT.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "83511" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "C92P55KXZZVQPVRT.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "C92P55KXZZVQPVRT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "C92P55KXZZVQPVRT.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "C92P55KXZZVQPVRT.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.0250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "C92P55KXZZVQPVRT.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "C92P55KXZZVQPVRT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "C92P55KXZZVQPVRT.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "C92P55KXZZVQPVRT.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.6710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "C92P55KXZZVQPVRT.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "C92P55KXZZVQPVRT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "C92P55KXZZVQPVRT.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "C92P55KXZZVQPVRT.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "204298" + }, + "appliesTo" : [ ] + }, + "C92P55KXZZVQPVRT.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "C92P55KXZZVQPVRT.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "C92P55KXZZVQPVRT.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "C92P55KXZZVQPVRT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "C92P55KXZZVQPVRT.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "C92P55KXZZVQPVRT.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "89057" + }, + "appliesTo" : [ ] + }, + "C92P55KXZZVQPVRT.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "C92P55KXZZVQPVRT.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "C92P55KXZZVQPVRT.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "C92P55KXZZVQPVRT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "C92P55KXZZVQPVRT.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "C92P55KXZZVQPVRT.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "42133" + }, + "appliesTo" : [ ] + }, + "C92P55KXZZVQPVRT.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "C92P55KXZZVQPVRT.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.8100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "U3KDJRF6FGANNG5Z" : { + "U3KDJRF6FGANNG5Z.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "U3KDJRF6FGANNG5Z", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "U3KDJRF6FGANNG5Z.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "U3KDJRF6FGANNG5Z.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "514" + }, + "appliesTo" : [ ] + }, + "U3KDJRF6FGANNG5Z.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "U3KDJRF6FGANNG5Z.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "U3KDJRF6FGANNG5Z.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "U3KDJRF6FGANNG5Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U3KDJRF6FGANNG5Z.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "U3KDJRF6FGANNG5Z.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "886" + }, + "appliesTo" : [ ] + }, + "U3KDJRF6FGANNG5Z.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "U3KDJRF6FGANNG5Z.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "U3KDJRF6FGANNG5Z.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "U3KDJRF6FGANNG5Z", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "U3KDJRF6FGANNG5Z.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "U3KDJRF6FGANNG5Z.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2084" + }, + "appliesTo" : [ ] + }, + "U3KDJRF6FGANNG5Z.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "U3KDJRF6FGANNG5Z.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "U3KDJRF6FGANNG5Z.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "U3KDJRF6FGANNG5Z", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "U3KDJRF6FGANNG5Z.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "U3KDJRF6FGANNG5Z.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "U3KDJRF6FGANNG5Z.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "U3KDJRF6FGANNG5Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U3KDJRF6FGANNG5Z.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "U3KDJRF6FGANNG5Z.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0520000000" + }, + "appliesTo" : [ ] + }, + "U3KDJRF6FGANNG5Z.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "U3KDJRF6FGANNG5Z.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "452" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "U3KDJRF6FGANNG5Z.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "U3KDJRF6FGANNG5Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U3KDJRF6FGANNG5Z.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "U3KDJRF6FGANNG5Z.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "U3KDJRF6FGANNG5Z.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "U3KDJRF6FGANNG5Z", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "U3KDJRF6FGANNG5Z.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "U3KDJRF6FGANNG5Z.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "U3KDJRF6FGANNG5Z.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "U3KDJRF6FGANNG5Z", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "U3KDJRF6FGANNG5Z.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "U3KDJRF6FGANNG5Z.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0250000000" + }, + "appliesTo" : [ ] + }, + "U3KDJRF6FGANNG5Z.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "U3KDJRF6FGANNG5Z.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "981" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "U3KDJRF6FGANNG5Z.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "U3KDJRF6FGANNG5Z", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "U3KDJRF6FGANNG5Z.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "U3KDJRF6FGANNG5Z.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1388" + }, + "appliesTo" : [ ] + }, + "U3KDJRF6FGANNG5Z.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "U3KDJRF6FGANNG5Z.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "U3KDJRF6FGANNG5Z.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "U3KDJRF6FGANNG5Z", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "U3KDJRF6FGANNG5Z.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "U3KDJRF6FGANNG5Z.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "U3KDJRF6FGANNG5Z.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "U3KDJRF6FGANNG5Z.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1532" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "U3KDJRF6FGANNG5Z.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "U3KDJRF6FGANNG5Z", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "U3KDJRF6FGANNG5Z.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "U3KDJRF6FGANNG5Z.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "U3KDJRF6FGANNG5Z.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "U3KDJRF6FGANNG5Z.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "772" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "KDHC3D74WA7UFHUU" : { + "KDHC3D74WA7UFHUU.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "KDHC3D74WA7UFHUU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KDHC3D74WA7UFHUU.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "KDHC3D74WA7UFHUU.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "447" + }, + "appliesTo" : [ ] + }, + "KDHC3D74WA7UFHUU.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "KDHC3D74WA7UFHUU.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KDHC3D74WA7UFHUU.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "KDHC3D74WA7UFHUU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KDHC3D74WA7UFHUU.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "KDHC3D74WA7UFHUU.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1401" + }, + "appliesTo" : [ ] + }, + "KDHC3D74WA7UFHUU.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "KDHC3D74WA7UFHUU.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KDHC3D74WA7UFHUU.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "KDHC3D74WA7UFHUU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KDHC3D74WA7UFHUU.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "KDHC3D74WA7UFHUU.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1533" + }, + "appliesTo" : [ ] + }, + "KDHC3D74WA7UFHUU.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "KDHC3D74WA7UFHUU.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KDHC3D74WA7UFHUU.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "KDHC3D74WA7UFHUU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KDHC3D74WA7UFHUU.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "KDHC3D74WA7UFHUU.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KDHC3D74WA7UFHUU.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "KDHC3D74WA7UFHUU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KDHC3D74WA7UFHUU.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "KDHC3D74WA7UFHUU.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KDHC3D74WA7UFHUU.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "KDHC3D74WA7UFHUU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KDHC3D74WA7UFHUU.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "KDHC3D74WA7UFHUU.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "867" + }, + "appliesTo" : [ ] + }, + "KDHC3D74WA7UFHUU.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "KDHC3D74WA7UFHUU.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KDHC3D74WA7UFHUU.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "KDHC3D74WA7UFHUU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KDHC3D74WA7UFHUU.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "KDHC3D74WA7UFHUU.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "KDHC3D74WA7UFHUU.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "KDHC3D74WA7UFHUU.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3534" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KDHC3D74WA7UFHUU.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "KDHC3D74WA7UFHUU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KDHC3D74WA7UFHUU.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "KDHC3D74WA7UFHUU.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KDHC3D74WA7UFHUU.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "KDHC3D74WA7UFHUU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KDHC3D74WA7UFHUU.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "KDHC3D74WA7UFHUU.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "KDHC3D74WA7UFHUU.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "KDHC3D74WA7UFHUU.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3206" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KDHC3D74WA7UFHUU.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "KDHC3D74WA7UFHUU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KDHC3D74WA7UFHUU.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "KDHC3D74WA7UFHUU.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KDHC3D74WA7UFHUU.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "KDHC3D74WA7UFHUU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KDHC3D74WA7UFHUU.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "KDHC3D74WA7UFHUU.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "514" + }, + "appliesTo" : [ ] + }, + "KDHC3D74WA7UFHUU.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "KDHC3D74WA7UFHUU.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KDHC3D74WA7UFHUU.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "KDHC3D74WA7UFHUU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KDHC3D74WA7UFHUU.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "KDHC3D74WA7UFHUU.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "999" + }, + "appliesTo" : [ ] + }, + "KDHC3D74WA7UFHUU.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "KDHC3D74WA7UFHUU.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "FMGXVRPJP5ZBNB2U" : { + "FMGXVRPJP5ZBNB2U.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "FMGXVRPJP5ZBNB2U", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "FMGXVRPJP5ZBNB2U.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "FMGXVRPJP5ZBNB2U.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FMGXVRPJP5ZBNB2U.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "FMGXVRPJP5ZBNB2U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FMGXVRPJP5ZBNB2U.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "FMGXVRPJP5ZBNB2U.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5870000000" + }, + "appliesTo" : [ ] + }, + "FMGXVRPJP5ZBNB2U.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "FMGXVRPJP5ZBNB2U.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13902" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FMGXVRPJP5ZBNB2U.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "FMGXVRPJP5ZBNB2U", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "FMGXVRPJP5ZBNB2U.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "FMGXVRPJP5ZBNB2U.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FMGXVRPJP5ZBNB2U.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "FMGXVRPJP5ZBNB2U", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "FMGXVRPJP5ZBNB2U.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "FMGXVRPJP5ZBNB2U.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32530" + }, + "appliesTo" : [ ] + }, + "FMGXVRPJP5ZBNB2U.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "FMGXVRPJP5ZBNB2U.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FMGXVRPJP5ZBNB2U.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "FMGXVRPJP5ZBNB2U", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "FMGXVRPJP5ZBNB2U.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "FMGXVRPJP5ZBNB2U.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "41560" + }, + "appliesTo" : [ ] + }, + "FMGXVRPJP5ZBNB2U.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "FMGXVRPJP5ZBNB2U.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FMGXVRPJP5ZBNB2U.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "FMGXVRPJP5ZBNB2U", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "FMGXVRPJP5ZBNB2U.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "FMGXVRPJP5ZBNB2U.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23616" + }, + "appliesTo" : [ ] + }, + "FMGXVRPJP5ZBNB2U.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "FMGXVRPJP5ZBNB2U.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FMGXVRPJP5ZBNB2U.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "FMGXVRPJP5ZBNB2U", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "FMGXVRPJP5ZBNB2U.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "FMGXVRPJP5ZBNB2U.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12048" + }, + "appliesTo" : [ ] + }, + "FMGXVRPJP5ZBNB2U.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "FMGXVRPJP5ZBNB2U.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FMGXVRPJP5ZBNB2U.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "FMGXVRPJP5ZBNB2U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FMGXVRPJP5ZBNB2U.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "FMGXVRPJP5ZBNB2U.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27248" + }, + "appliesTo" : [ ] + }, + "FMGXVRPJP5ZBNB2U.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "FMGXVRPJP5ZBNB2U.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FMGXVRPJP5ZBNB2U.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "FMGXVRPJP5ZBNB2U", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "FMGXVRPJP5ZBNB2U.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "FMGXVRPJP5ZBNB2U.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22136" + }, + "appliesTo" : [ ] + }, + "FMGXVRPJP5ZBNB2U.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "FMGXVRPJP5ZBNB2U.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FMGXVRPJP5ZBNB2U.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "FMGXVRPJP5ZBNB2U", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "FMGXVRPJP5ZBNB2U.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "FMGXVRPJP5ZBNB2U.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "FMGXVRPJP5ZBNB2U.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "FMGXVRPJP5ZBNB2U.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "63763" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FMGXVRPJP5ZBNB2U.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "FMGXVRPJP5ZBNB2U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FMGXVRPJP5ZBNB2U.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "FMGXVRPJP5ZBNB2U.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "PH52NYAMKMVT6ARR" : { + "PH52NYAMKMVT6ARR.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "PH52NYAMKMVT6ARR", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "PH52NYAMKMVT6ARR.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "PH52NYAMKMVT6ARR.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "446434" + }, + "appliesTo" : [ ] + }, + "PH52NYAMKMVT6ARR.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "PH52NYAMKMVT6ARR.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PH52NYAMKMVT6ARR.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "PH52NYAMKMVT6ARR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PH52NYAMKMVT6ARR.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "PH52NYAMKMVT6ARR.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "233538" + }, + "appliesTo" : [ ] + }, + "PH52NYAMKMVT6ARR.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "PH52NYAMKMVT6ARR.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.8870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PH52NYAMKMVT6ARR.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "PH52NYAMKMVT6ARR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PH52NYAMKMVT6ARR.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "PH52NYAMKMVT6ARR.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "17.5110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "PH52NYAMKMVT6ARR.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "PH52NYAMKMVT6ARR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PH52NYAMKMVT6ARR.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "PH52NYAMKMVT6ARR.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "18.1170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "PH52NYAMKMVT6ARR.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "PH52NYAMKMVT6ARR", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "PH52NYAMKMVT6ARR.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "PH52NYAMKMVT6ARR.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "226166" + }, + "appliesTo" : [ ] + }, + "PH52NYAMKMVT6ARR.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "PH52NYAMKMVT6ARR.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.6060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PH52NYAMKMVT6ARR.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "PH52NYAMKMVT6ARR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PH52NYAMKMVT6ARR.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "PH52NYAMKMVT6ARR.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "PH52NYAMKMVT6ARR.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "PH52NYAMKMVT6ARR.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "168838" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PH52NYAMKMVT6ARR.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "PH52NYAMKMVT6ARR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PH52NYAMKMVT6ARR.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "PH52NYAMKMVT6ARR.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "PH52NYAMKMVT6ARR.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "PH52NYAMKMVT6ARR.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "464815" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PH52NYAMKMVT6ARR.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "PH52NYAMKMVT6ARR", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "PH52NYAMKMVT6ARR.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "PH52NYAMKMVT6ARR.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "81556" + }, + "appliesTo" : [ ] + }, + "PH52NYAMKMVT6ARR.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "PH52NYAMKMVT6ARR.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.3100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PH52NYAMKMVT6ARR.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "PH52NYAMKMVT6ARR", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "PH52NYAMKMVT6ARR.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "PH52NYAMKMVT6ARR.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "162209" + }, + "appliesTo" : [ ] + }, + "PH52NYAMKMVT6ARR.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "PH52NYAMKMVT6ARR.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PH52NYAMKMVT6ARR.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "PH52NYAMKMVT6ARR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PH52NYAMKMVT6ARR.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "PH52NYAMKMVT6ARR.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "18.8770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "PH52NYAMKMVT6ARR.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "PH52NYAMKMVT6ARR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PH52NYAMKMVT6ARR.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "PH52NYAMKMVT6ARR.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "84938" + }, + "appliesTo" : [ ] + }, + "PH52NYAMKMVT6ARR.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "PH52NYAMKMVT6ARR.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.6960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PH52NYAMKMVT6ARR.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "PH52NYAMKMVT6ARR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PH52NYAMKMVT6ARR.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "PH52NYAMKMVT6ARR.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "19.6880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "RSMWKBGGTAAEV4RH" : { + "RSMWKBGGTAAEV4RH.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "RSMWKBGGTAAEV4RH", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "RSMWKBGGTAAEV4RH.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "RSMWKBGGTAAEV4RH.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16259" + }, + "appliesTo" : [ ] + }, + "RSMWKBGGTAAEV4RH.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "RSMWKBGGTAAEV4RH.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6187000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RSMWKBGGTAAEV4RH.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "RSMWKBGGTAAEV4RH", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "RSMWKBGGTAAEV4RH.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "RSMWKBGGTAAEV4RH.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14138" + }, + "appliesTo" : [ ] + }, + "RSMWKBGGTAAEV4RH.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "RSMWKBGGTAAEV4RH.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RSMWKBGGTAAEV4RH.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "RSMWKBGGTAAEV4RH", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "RSMWKBGGTAAEV4RH.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "RSMWKBGGTAAEV4RH.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3363000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RSMWKBGGTAAEV4RH.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "RSMWKBGGTAAEV4RH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RSMWKBGGTAAEV4RH.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "RSMWKBGGTAAEV4RH.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "RSMWKBGGTAAEV4RH.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "RSMWKBGGTAAEV4RH.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14631" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RSMWKBGGTAAEV4RH.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "RSMWKBGGTAAEV4RH", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "RSMWKBGGTAAEV4RH.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "RSMWKBGGTAAEV4RH.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RSMWKBGGTAAEV4RH.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "RSMWKBGGTAAEV4RH", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "RSMWKBGGTAAEV4RH.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "RSMWKBGGTAAEV4RH.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31867" + }, + "appliesTo" : [ ] + }, + "RSMWKBGGTAAEV4RH.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "RSMWKBGGTAAEV4RH.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RSMWKBGGTAAEV4RH.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "RSMWKBGGTAAEV4RH", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "RSMWKBGGTAAEV4RH.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "RSMWKBGGTAAEV4RH.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26579" + }, + "appliesTo" : [ ] + }, + "RSMWKBGGTAAEV4RH.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "RSMWKBGGTAAEV4RH.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RSMWKBGGTAAEV4RH.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "RSMWKBGGTAAEV4RH", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "RSMWKBGGTAAEV4RH.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "RSMWKBGGTAAEV4RH.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5561000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RSMWKBGGTAAEV4RH.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "RSMWKBGGTAAEV4RH", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "RSMWKBGGTAAEV4RH.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "RSMWKBGGTAAEV4RH.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6491" + }, + "appliesTo" : [ ] + }, + "RSMWKBGGTAAEV4RH.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "RSMWKBGGTAAEV4RH.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RSMWKBGGTAAEV4RH.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "RSMWKBGGTAAEV4RH", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "RSMWKBGGTAAEV4RH.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "RSMWKBGGTAAEV4RH.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12723" + }, + "appliesTo" : [ ] + }, + "RSMWKBGGTAAEV4RH.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "RSMWKBGGTAAEV4RH.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RSMWKBGGTAAEV4RH.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "RSMWKBGGTAAEV4RH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RSMWKBGGTAAEV4RH.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "RSMWKBGGTAAEV4RH.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7465" + }, + "appliesTo" : [ ] + }, + "RSMWKBGGTAAEV4RH.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "RSMWKBGGTAAEV4RH.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8522000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RSMWKBGGTAAEV4RH.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "RSMWKBGGTAAEV4RH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RSMWKBGGTAAEV4RH.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "RSMWKBGGTAAEV4RH.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7895000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "8QXEMJ9C47K755H8" : { + "8QXEMJ9C47K755H8.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "8QXEMJ9C47K755H8", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "8QXEMJ9C47K755H8.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "8QXEMJ9C47K755H8.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35691" + }, + "appliesTo" : [ ] + }, + "8QXEMJ9C47K755H8.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "8QXEMJ9C47K755H8.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8QXEMJ9C47K755H8.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "8QXEMJ9C47K755H8", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "8QXEMJ9C47K755H8.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "8QXEMJ9C47K755H8.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8QXEMJ9C47K755H8.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "8QXEMJ9C47K755H8", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "8QXEMJ9C47K755H8.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "8QXEMJ9C47K755H8.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18818" + }, + "appliesTo" : [ ] + }, + "8QXEMJ9C47K755H8.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "8QXEMJ9C47K755H8.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8QXEMJ9C47K755H8.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "8QXEMJ9C47K755H8", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "8QXEMJ9C47K755H8.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "8QXEMJ9C47K755H8.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0940000000" + }, + "appliesTo" : [ ] + }, + "8QXEMJ9C47K755H8.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "8QXEMJ9C47K755H8.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9583" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8QXEMJ9C47K755H8.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "8QXEMJ9C47K755H8", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "8QXEMJ9C47K755H8.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "8QXEMJ9C47K755H8.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8QXEMJ9C47K755H8.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "8QXEMJ9C47K755H8", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "8QXEMJ9C47K755H8.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "8QXEMJ9C47K755H8.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18818" + }, + "appliesTo" : [ ] + }, + "8QXEMJ9C47K755H8.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "8QXEMJ9C47K755H8.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "VHC3YWSZ6ZFZPJN4" : { + "VHC3YWSZ6ZFZPJN4.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "VHC3YWSZ6ZFZPJN4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VHC3YWSZ6ZFZPJN4.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "VHC3YWSZ6ZFZPJN4.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VHC3YWSZ6ZFZPJN4.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "VHC3YWSZ6ZFZPJN4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VHC3YWSZ6ZFZPJN4.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "VHC3YWSZ6ZFZPJN4.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2478000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VHC3YWSZ6ZFZPJN4.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "VHC3YWSZ6ZFZPJN4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VHC3YWSZ6ZFZPJN4.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "VHC3YWSZ6ZFZPJN4.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4739" + }, + "appliesTo" : [ ] + }, + "VHC3YWSZ6ZFZPJN4.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "VHC3YWSZ6ZFZPJN4.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VHC3YWSZ6ZFZPJN4.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "VHC3YWSZ6ZFZPJN4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VHC3YWSZ6ZFZPJN4.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "VHC3YWSZ6ZFZPJN4.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1357000000" + }, + "appliesTo" : [ ] + }, + "VHC3YWSZ6ZFZPJN4.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "VHC3YWSZ6ZFZPJN4.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1189" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VHC3YWSZ6ZFZPJN4.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "VHC3YWSZ6ZFZPJN4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VHC3YWSZ6ZFZPJN4.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "VHC3YWSZ6ZFZPJN4.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2330" + }, + "appliesTo" : [ ] + }, + "VHC3YWSZ6ZFZPJN4.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "VHC3YWSZ6ZFZPJN4.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VHC3YWSZ6ZFZPJN4.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "VHC3YWSZ6ZFZPJN4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VHC3YWSZ6ZFZPJN4.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "VHC3YWSZ6ZFZPJN4.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1728000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VHC3YWSZ6ZFZPJN4.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "VHC3YWSZ6ZFZPJN4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VHC3YWSZ6ZFZPJN4.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "VHC3YWSZ6ZFZPJN4.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "VHC3YWSZ6ZFZPJN4.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "VHC3YWSZ6ZFZPJN4.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3953" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VHC3YWSZ6ZFZPJN4.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "VHC3YWSZ6ZFZPJN4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VHC3YWSZ6ZFZPJN4.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "VHC3YWSZ6ZFZPJN4.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1034" + }, + "appliesTo" : [ ] + }, + "VHC3YWSZ6ZFZPJN4.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "VHC3YWSZ6ZFZPJN4.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VHC3YWSZ6ZFZPJN4.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "VHC3YWSZ6ZFZPJN4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VHC3YWSZ6ZFZPJN4.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "VHC3YWSZ6ZFZPJN4.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0800000000" + }, + "appliesTo" : [ ] + }, + "VHC3YWSZ6ZFZPJN4.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "VHC3YWSZ6ZFZPJN4.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2102" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VHC3YWSZ6ZFZPJN4.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "VHC3YWSZ6ZFZPJN4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VHC3YWSZ6ZFZPJN4.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "VHC3YWSZ6ZFZPJN4.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2418" + }, + "appliesTo" : [ ] + }, + "VHC3YWSZ6ZFZPJN4.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "VHC3YWSZ6ZFZPJN4.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VHC3YWSZ6ZFZPJN4.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "VHC3YWSZ6ZFZPJN4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VHC3YWSZ6ZFZPJN4.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "VHC3YWSZ6ZFZPJN4.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2026" + }, + "appliesTo" : [ ] + }, + "VHC3YWSZ6ZFZPJN4.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "VHC3YWSZ6ZFZPJN4.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VHC3YWSZ6ZFZPJN4.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "VHC3YWSZ6ZFZPJN4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VHC3YWSZ6ZFZPJN4.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "VHC3YWSZ6ZFZPJN4.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1987000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "EN85M9PMPVGK77TA" : { + "EN85M9PMPVGK77TA.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "EN85M9PMPVGK77TA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EN85M9PMPVGK77TA.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "EN85M9PMPVGK77TA.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.2636000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "EN85M9PMPVGK77TA.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "EN85M9PMPVGK77TA", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "EN85M9PMPVGK77TA.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "EN85M9PMPVGK77TA.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "EN85M9PMPVGK77TA.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "EN85M9PMPVGK77TA.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "150690" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EN85M9PMPVGK77TA.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "EN85M9PMPVGK77TA", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "EN85M9PMPVGK77TA.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "EN85M9PMPVGK77TA.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "72971" + }, + "appliesTo" : [ ] + }, + "EN85M9PMPVGK77TA.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "EN85M9PMPVGK77TA.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EN85M9PMPVGK77TA.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "EN85M9PMPVGK77TA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EN85M9PMPVGK77TA.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "EN85M9PMPVGK77TA.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5074000000" + }, + "appliesTo" : [ ] + }, + "EN85M9PMPVGK77TA.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "EN85M9PMPVGK77TA.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "92175" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "EN85M9PMPVGK77TA.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "EN85M9PMPVGK77TA", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "EN85M9PMPVGK77TA.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "EN85M9PMPVGK77TA.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0500000000" + }, + "appliesTo" : [ ] + }, + "EN85M9PMPVGK77TA.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "EN85M9PMPVGK77TA.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "80154" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EN85M9PMPVGK77TA.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "EN85M9PMPVGK77TA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EN85M9PMPVGK77TA.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "EN85M9PMPVGK77TA.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "180664" + }, + "appliesTo" : [ ] + }, + "EN85M9PMPVGK77TA.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "EN85M9PMPVGK77TA.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "EN85M9PMPVGK77TA.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "EN85M9PMPVGK77TA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EN85M9PMPVGK77TA.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "EN85M9PMPVGK77TA.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5761000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "EN85M9PMPVGK77TA.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "EN85M9PMPVGK77TA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EN85M9PMPVGK77TA.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "EN85M9PMPVGK77TA.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "42814" + }, + "appliesTo" : [ ] + }, + "EN85M9PMPVGK77TA.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "EN85M9PMPVGK77TA.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.8874000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "EN85M9PMPVGK77TA.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "EN85M9PMPVGK77TA", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "EN85M9PMPVGK77TA.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "EN85M9PMPVGK77TA.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.9250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "EN85M9PMPVGK77TA.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "EN85M9PMPVGK77TA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EN85M9PMPVGK77TA.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "EN85M9PMPVGK77TA.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.5880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "EN85M9PMPVGK77TA.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "EN85M9PMPVGK77TA", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "EN85M9PMPVGK77TA.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "EN85M9PMPVGK77TA.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37230" + }, + "appliesTo" : [ ] + }, + "EN85M9PMPVGK77TA.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "EN85M9PMPVGK77TA.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EN85M9PMPVGK77TA.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "EN85M9PMPVGK77TA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EN85M9PMPVGK77TA.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "EN85M9PMPVGK77TA.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "83915" + }, + "appliesTo" : [ ] + }, + "EN85M9PMPVGK77TA.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "EN85M9PMPVGK77TA.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "R85D93TFFU8AU7WZ" : { + "R85D93TFFU8AU7WZ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "R85D93TFFU8AU7WZ", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "R85D93TFFU8AU7WZ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "R85D93TFFU8AU7WZ.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "R85D93TFFU8AU7WZ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "R85D93TFFU8AU7WZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R85D93TFFU8AU7WZ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "R85D93TFFU8AU7WZ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10201" + }, + "appliesTo" : [ ] + }, + "R85D93TFFU8AU7WZ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "R85D93TFFU8AU7WZ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "R85D93TFFU8AU7WZ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "R85D93TFFU8AU7WZ", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "R85D93TFFU8AU7WZ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "R85D93TFFU8AU7WZ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16556" + }, + "appliesTo" : [ ] + }, + "R85D93TFFU8AU7WZ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "R85D93TFFU8AU7WZ.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "R85D93TFFU8AU7WZ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "R85D93TFFU8AU7WZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R85D93TFFU8AU7WZ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "R85D93TFFU8AU7WZ.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "R85D93TFFU8AU7WZ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "R85D93TFFU8AU7WZ", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "R85D93TFFU8AU7WZ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "R85D93TFFU8AU7WZ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31157" + }, + "appliesTo" : [ ] + }, + "R85D93TFFU8AU7WZ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "R85D93TFFU8AU7WZ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "R85D93TFFU8AU7WZ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "R85D93TFFU8AU7WZ", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "R85D93TFFU8AU7WZ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "R85D93TFFU8AU7WZ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "R85D93TFFU8AU7WZ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "R85D93TFFU8AU7WZ", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "R85D93TFFU8AU7WZ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "R85D93TFFU8AU7WZ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8440000000" + }, + "appliesTo" : [ ] + }, + "R85D93TFFU8AU7WZ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "R85D93TFFU8AU7WZ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22185" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "R85D93TFFU8AU7WZ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "R85D93TFFU8AU7WZ", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "R85D93TFFU8AU7WZ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "R85D93TFFU8AU7WZ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8888" + }, + "appliesTo" : [ ] + }, + "R85D93TFFU8AU7WZ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "R85D93TFFU8AU7WZ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "R85D93TFFU8AU7WZ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "R85D93TFFU8AU7WZ", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "R85D93TFFU8AU7WZ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "R85D93TFFU8AU7WZ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17365" + }, + "appliesTo" : [ ] + }, + "R85D93TFFU8AU7WZ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "R85D93TFFU8AU7WZ.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "R85D93TFFU8AU7WZ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "R85D93TFFU8AU7WZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R85D93TFFU8AU7WZ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "R85D93TFFU8AU7WZ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19940" + }, + "appliesTo" : [ ] + }, + "R85D93TFFU8AU7WZ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "R85D93TFFU8AU7WZ.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "R85D93TFFU8AU7WZ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "R85D93TFFU8AU7WZ", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "R85D93TFFU8AU7WZ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "R85D93TFFU8AU7WZ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "43487" + }, + "appliesTo" : [ ] + }, + "R85D93TFFU8AU7WZ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "R85D93TFFU8AU7WZ.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "R85D93TFFU8AU7WZ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "R85D93TFFU8AU7WZ", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "R85D93TFFU8AU7WZ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "R85D93TFFU8AU7WZ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "RV7P78K2Q4CXVVP3" : { + "RV7P78K2Q4CXVVP3.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "RV7P78K2Q4CXVVP3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RV7P78K2Q4CXVVP3.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "RV7P78K2Q4CXVVP3.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RV7P78K2Q4CXVVP3.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "RV7P78K2Q4CXVVP3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RV7P78K2Q4CXVVP3.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "RV7P78K2Q4CXVVP3.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5202" + }, + "appliesTo" : [ ] + }, + "RV7P78K2Q4CXVVP3.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "RV7P78K2Q4CXVVP3.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RV7P78K2Q4CXVVP3.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "RV7P78K2Q4CXVVP3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RV7P78K2Q4CXVVP3.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "RV7P78K2Q4CXVVP3.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RV7P78K2Q4CXVVP3.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "RV7P78K2Q4CXVVP3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RV7P78K2Q4CXVVP3.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "RV7P78K2Q4CXVVP3.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RV7P78K2Q4CXVVP3.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "RV7P78K2Q4CXVVP3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RV7P78K2Q4CXVVP3.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "RV7P78K2Q4CXVVP3.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "RV7P78K2Q4CXVVP3.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "RV7P78K2Q4CXVVP3.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20720" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RV7P78K2Q4CXVVP3.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "RV7P78K2Q4CXVVP3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RV7P78K2Q4CXVVP3.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "RV7P78K2Q4CXVVP3.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10157" + }, + "appliesTo" : [ ] + }, + "RV7P78K2Q4CXVVP3.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "RV7P78K2Q4CXVVP3.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RV7P78K2Q4CXVVP3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "RV7P78K2Q4CXVVP3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RV7P78K2Q4CXVVP3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "RV7P78K2Q4CXVVP3.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RV7P78K2Q4CXVVP3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "RV7P78K2Q4CXVVP3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RV7P78K2Q4CXVVP3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "RV7P78K2Q4CXVVP3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5180000000" + }, + "appliesTo" : [ ] + }, + "RV7P78K2Q4CXVVP3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "RV7P78K2Q4CXVVP3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4599" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RV7P78K2Q4CXVVP3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "RV7P78K2Q4CXVVP3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RV7P78K2Q4CXVVP3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "RV7P78K2Q4CXVVP3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8975" + }, + "appliesTo" : [ ] + }, + "RV7P78K2Q4CXVVP3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "RV7P78K2Q4CXVVP3.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RV7P78K2Q4CXVVP3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "RV7P78K2Q4CXVVP3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RV7P78K2Q4CXVVP3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "RV7P78K2Q4CXVVP3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17771" + }, + "appliesTo" : [ ] + }, + "RV7P78K2Q4CXVVP3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "RV7P78K2Q4CXVVP3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RV7P78K2Q4CXVVP3.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "RV7P78K2Q4CXVVP3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RV7P78K2Q4CXVVP3.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "RV7P78K2Q4CXVVP3.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10545" + }, + "appliesTo" : [ ] + }, + "RV7P78K2Q4CXVVP3.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "RV7P78K2Q4CXVVP3.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RV7P78K2Q4CXVVP3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "RV7P78K2Q4CXVVP3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RV7P78K2Q4CXVVP3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "RV7P78K2Q4CXVVP3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9359" + }, + "appliesTo" : [ ] + }, + "RV7P78K2Q4CXVVP3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "RV7P78K2Q4CXVVP3.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "FB2SHXY4CT6MW3FX" : { + "FB2SHXY4CT6MW3FX.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "FB2SHXY4CT6MW3FX", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "FB2SHXY4CT6MW3FX.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "FB2SHXY4CT6MW3FX.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18895" + }, + "appliesTo" : [ ] + }, + "FB2SHXY4CT6MW3FX.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "FB2SHXY4CT6MW3FX.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FB2SHXY4CT6MW3FX.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "FB2SHXY4CT6MW3FX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FB2SHXY4CT6MW3FX.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "FB2SHXY4CT6MW3FX.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21434" + }, + "appliesTo" : [ ] + }, + "FB2SHXY4CT6MW3FX.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "FB2SHXY4CT6MW3FX.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FB2SHXY4CT6MW3FX.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "FB2SHXY4CT6MW3FX", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "FB2SHXY4CT6MW3FX.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "FB2SHXY4CT6MW3FX.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FB2SHXY4CT6MW3FX.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "FB2SHXY4CT6MW3FX", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "FB2SHXY4CT6MW3FX.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "FB2SHXY4CT6MW3FX.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37029" + }, + "appliesTo" : [ ] + }, + "FB2SHXY4CT6MW3FX.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "FB2SHXY4CT6MW3FX.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FB2SHXY4CT6MW3FX.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "FB2SHXY4CT6MW3FX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "FB2SHXY4CT6MW3FX.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "FB2SHXY4CT6MW3FX.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24732" + }, + "appliesTo" : [ ] + }, + "FB2SHXY4CT6MW3FX.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "FB2SHXY4CT6MW3FX.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FB2SHXY4CT6MW3FX.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "FB2SHXY4CT6MW3FX", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "FB2SHXY4CT6MW3FX.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "FB2SHXY4CT6MW3FX.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6961" + }, + "appliesTo" : [ ] + }, + "FB2SHXY4CT6MW3FX.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "FB2SHXY4CT6MW3FX.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FB2SHXY4CT6MW3FX.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "FB2SHXY4CT6MW3FX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "FB2SHXY4CT6MW3FX.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "FB2SHXY4CT6MW3FX.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FB2SHXY4CT6MW3FX.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "FB2SHXY4CT6MW3FX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FB2SHXY4CT6MW3FX.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "FB2SHXY4CT6MW3FX.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FB2SHXY4CT6MW3FX.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "FB2SHXY4CT6MW3FX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FB2SHXY4CT6MW3FX.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "FB2SHXY4CT6MW3FX.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10870" + }, + "appliesTo" : [ ] + }, + "FB2SHXY4CT6MW3FX.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "FB2SHXY4CT6MW3FX.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FB2SHXY4CT6MW3FX.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "FB2SHXY4CT6MW3FX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "FB2SHXY4CT6MW3FX.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "FB2SHXY4CT6MW3FX.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13642" + }, + "appliesTo" : [ ] + }, + "FB2SHXY4CT6MW3FX.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "FB2SHXY4CT6MW3FX.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FB2SHXY4CT6MW3FX.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "FB2SHXY4CT6MW3FX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FB2SHXY4CT6MW3FX.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "FB2SHXY4CT6MW3FX.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13155" + }, + "appliesTo" : [ ] + }, + "FB2SHXY4CT6MW3FX.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "FB2SHXY4CT6MW3FX.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "ASB6HFGHT3SUVED9" : { + "ASB6HFGHT3SUVED9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ASB6HFGHT3SUVED9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ASB6HFGHT3SUVED9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ASB6HFGHT3SUVED9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8958" + }, + "appliesTo" : [ ] + }, + "ASB6HFGHT3SUVED9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ASB6HFGHT3SUVED9.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ASB6HFGHT3SUVED9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ASB6HFGHT3SUVED9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ASB6HFGHT3SUVED9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ASB6HFGHT3SUVED9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5392" + }, + "appliesTo" : [ ] + }, + "ASB6HFGHT3SUVED9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ASB6HFGHT3SUVED9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ASB6HFGHT3SUVED9.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ASB6HFGHT3SUVED9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ASB6HFGHT3SUVED9.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ASB6HFGHT3SUVED9.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10273" + }, + "appliesTo" : [ ] + }, + "ASB6HFGHT3SUVED9.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ASB6HFGHT3SUVED9.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ASB6HFGHT3SUVED9.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ASB6HFGHT3SUVED9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ASB6HFGHT3SUVED9.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ASB6HFGHT3SUVED9.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ASB6HFGHT3SUVED9.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ASB6HFGHT3SUVED9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ASB6HFGHT3SUVED9.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ASB6HFGHT3SUVED9.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5940000000" + }, + "appliesTo" : [ ] + }, + "ASB6HFGHT3SUVED9.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ASB6HFGHT3SUVED9.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5269" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ASB6HFGHT3SUVED9.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ASB6HFGHT3SUVED9", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "ASB6HFGHT3SUVED9.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ASB6HFGHT3SUVED9.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24069" + }, + "appliesTo" : [ ] + }, + "ASB6HFGHT3SUVED9.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ASB6HFGHT3SUVED9.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ASB6HFGHT3SUVED9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ASB6HFGHT3SUVED9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ASB6HFGHT3SUVED9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ASB6HFGHT3SUVED9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8478" + }, + "appliesTo" : [ ] + }, + "ASB6HFGHT3SUVED9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ASB6HFGHT3SUVED9.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ASB6HFGHT3SUVED9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ASB6HFGHT3SUVED9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ASB6HFGHT3SUVED9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ASB6HFGHT3SUVED9.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ASB6HFGHT3SUVED9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ASB6HFGHT3SUVED9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ASB6HFGHT3SUVED9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ASB6HFGHT3SUVED9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17109" + }, + "appliesTo" : [ ] + }, + "ASB6HFGHT3SUVED9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ASB6HFGHT3SUVED9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ASB6HFGHT3SUVED9.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ASB6HFGHT3SUVED9", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "ASB6HFGHT3SUVED9.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ASB6HFGHT3SUVED9.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14435" + }, + "appliesTo" : [ ] + }, + "ASB6HFGHT3SUVED9.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ASB6HFGHT3SUVED9.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ASB6HFGHT3SUVED9.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ASB6HFGHT3SUVED9", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "ASB6HFGHT3SUVED9.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ASB6HFGHT3SUVED9.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "68SDFG84HR8PCZY5" : { + "68SDFG84HR8PCZY5.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "68SDFG84HR8PCZY5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "68SDFG84HR8PCZY5.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "68SDFG84HR8PCZY5.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "945" + }, + "appliesTo" : [ ] + }, + "68SDFG84HR8PCZY5.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "68SDFG84HR8PCZY5.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "68SDFG84HR8PCZY5.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "68SDFG84HR8PCZY5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "68SDFG84HR8PCZY5.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "68SDFG84HR8PCZY5.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1946" + }, + "appliesTo" : [ ] + }, + "68SDFG84HR8PCZY5.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "68SDFG84HR8PCZY5.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "68SDFG84HR8PCZY5.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "68SDFG84HR8PCZY5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "68SDFG84HR8PCZY5.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "68SDFG84HR8PCZY5.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "68SDFG84HR8PCZY5.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "68SDFG84HR8PCZY5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "68SDFG84HR8PCZY5.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "68SDFG84HR8PCZY5.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1881" + }, + "appliesTo" : [ ] + }, + "68SDFG84HR8PCZY5.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "68SDFG84HR8PCZY5.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "68SDFG84HR8PCZY5.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "68SDFG84HR8PCZY5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "68SDFG84HR8PCZY5.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "68SDFG84HR8PCZY5.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "68SDFG84HR8PCZY5.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "68SDFG84HR8PCZY5.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5143" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "68SDFG84HR8PCZY5.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "68SDFG84HR8PCZY5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "68SDFG84HR8PCZY5.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "68SDFG84HR8PCZY5.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5307" + }, + "appliesTo" : [ ] + }, + "68SDFG84HR8PCZY5.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "68SDFG84HR8PCZY5.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "68SDFG84HR8PCZY5.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "68SDFG84HR8PCZY5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "68SDFG84HR8PCZY5.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "68SDFG84HR8PCZY5.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "68SDFG84HR8PCZY5.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "68SDFG84HR8PCZY5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "68SDFG84HR8PCZY5.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "68SDFG84HR8PCZY5.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "68SDFG84HR8PCZY5.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "68SDFG84HR8PCZY5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "68SDFG84HR8PCZY5.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "68SDFG84HR8PCZY5.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1120000000" + }, + "appliesTo" : [ ] + }, + "68SDFG84HR8PCZY5.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "68SDFG84HR8PCZY5.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "978" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "68SDFG84HR8PCZY5.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "68SDFG84HR8PCZY5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "68SDFG84HR8PCZY5.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "68SDFG84HR8PCZY5.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2663" + }, + "appliesTo" : [ ] + }, + "68SDFG84HR8PCZY5.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "68SDFG84HR8PCZY5.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "68SDFG84HR8PCZY5.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "68SDFG84HR8PCZY5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "68SDFG84HR8PCZY5.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "68SDFG84HR8PCZY5.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0990000000" + }, + "appliesTo" : [ ] + }, + "68SDFG84HR8PCZY5.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "68SDFG84HR8PCZY5.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2598" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "68SDFG84HR8PCZY5.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "68SDFG84HR8PCZY5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "68SDFG84HR8PCZY5.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "68SDFG84HR8PCZY5.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "A3CMMJ5XHG8YDXAU" : { + "A3CMMJ5XHG8YDXAU.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "A3CMMJ5XHG8YDXAU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "A3CMMJ5XHG8YDXAU.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "A3CMMJ5XHG8YDXAU.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "A3CMMJ5XHG8YDXAU.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "A3CMMJ5XHG8YDXAU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "A3CMMJ5XHG8YDXAU.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "A3CMMJ5XHG8YDXAU.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17703" + }, + "appliesTo" : [ ] + }, + "A3CMMJ5XHG8YDXAU.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "A3CMMJ5XHG8YDXAU.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "A3CMMJ5XHG8YDXAU.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "A3CMMJ5XHG8YDXAU", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "A3CMMJ5XHG8YDXAU.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "A3CMMJ5XHG8YDXAU.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4120" + }, + "appliesTo" : [ ] + }, + "A3CMMJ5XHG8YDXAU.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "A3CMMJ5XHG8YDXAU.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "A3CMMJ5XHG8YDXAU.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "A3CMMJ5XHG8YDXAU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A3CMMJ5XHG8YDXAU.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "A3CMMJ5XHG8YDXAU.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6766" + }, + "appliesTo" : [ ] + }, + "A3CMMJ5XHG8YDXAU.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "A3CMMJ5XHG8YDXAU.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "A3CMMJ5XHG8YDXAU.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "A3CMMJ5XHG8YDXAU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A3CMMJ5XHG8YDXAU.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "A3CMMJ5XHG8YDXAU.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3900000000" + }, + "appliesTo" : [ ] + }, + "A3CMMJ5XHG8YDXAU.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "A3CMMJ5XHG8YDXAU.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3419" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "A3CMMJ5XHG8YDXAU.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "A3CMMJ5XHG8YDXAU", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "A3CMMJ5XHG8YDXAU.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "A3CMMJ5XHG8YDXAU.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "A3CMMJ5XHG8YDXAU.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "A3CMMJ5XHG8YDXAU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A3CMMJ5XHG8YDXAU.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "A3CMMJ5XHG8YDXAU.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "A3CMMJ5XHG8YDXAU.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "A3CMMJ5XHG8YDXAU", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "A3CMMJ5XHG8YDXAU.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "A3CMMJ5XHG8YDXAU.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8515" + }, + "appliesTo" : [ ] + }, + "A3CMMJ5XHG8YDXAU.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "A3CMMJ5XHG8YDXAU.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "A3CMMJ5XHG8YDXAU.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "A3CMMJ5XHG8YDXAU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "A3CMMJ5XHG8YDXAU.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "A3CMMJ5XHG8YDXAU.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2410000000" + }, + "appliesTo" : [ ] + }, + "A3CMMJ5XHG8YDXAU.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "A3CMMJ5XHG8YDXAU.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11743" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "A3CMMJ5XHG8YDXAU.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "A3CMMJ5XHG8YDXAU", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "A3CMMJ5XHG8YDXAU.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "A3CMMJ5XHG8YDXAU.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6210" + }, + "appliesTo" : [ ] + }, + "A3CMMJ5XHG8YDXAU.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "A3CMMJ5XHG8YDXAU.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "A3CMMJ5XHG8YDXAU.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "A3CMMJ5XHG8YDXAU", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "A3CMMJ5XHG8YDXAU.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "A3CMMJ5XHG8YDXAU.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "A3CMMJ5XHG8YDXAU.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "A3CMMJ5XHG8YDXAU.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13340" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "9RK78KZK2N3R66EZ" : { + "9RK78KZK2N3R66EZ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "9RK78KZK2N3R66EZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9RK78KZK2N3R66EZ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "9RK78KZK2N3R66EZ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4239" + }, + "appliesTo" : [ ] + }, + "9RK78KZK2N3R66EZ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "9RK78KZK2N3R66EZ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9RK78KZK2N3R66EZ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "9RK78KZK2N3R66EZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9RK78KZK2N3R66EZ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "9RK78KZK2N3R66EZ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "9RK78KZK2N3R66EZ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "9RK78KZK2N3R66EZ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1873" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9RK78KZK2N3R66EZ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "9RK78KZK2N3R66EZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9RK78KZK2N3R66EZ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "9RK78KZK2N3R66EZ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1157" + }, + "appliesTo" : [ ] + }, + "9RK78KZK2N3R66EZ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "9RK78KZK2N3R66EZ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9RK78KZK2N3R66EZ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "9RK78KZK2N3R66EZ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "9RK78KZK2N3R66EZ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "9RK78KZK2N3R66EZ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9RK78KZK2N3R66EZ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "9RK78KZK2N3R66EZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9RK78KZK2N3R66EZ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "9RK78KZK2N3R66EZ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "726" + }, + "appliesTo" : [ ] + }, + "9RK78KZK2N3R66EZ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "9RK78KZK2N3R66EZ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "SVFBAAERCQTFD96J" : { + "SVFBAAERCQTFD96J.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "SVFBAAERCQTFD96J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SVFBAAERCQTFD96J.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "SVFBAAERCQTFD96J.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SVFBAAERCQTFD96J.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "SVFBAAERCQTFD96J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SVFBAAERCQTFD96J.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "SVFBAAERCQTFD96J.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8120000000" + }, + "appliesTo" : [ ] + }, + "SVFBAAERCQTFD96J.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "SVFBAAERCQTFD96J.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15869" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SVFBAAERCQTFD96J.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SVFBAAERCQTFD96J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SVFBAAERCQTFD96J.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SVFBAAERCQTFD96J.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SVFBAAERCQTFD96J.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SVFBAAERCQTFD96J.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31434" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SVFBAAERCQTFD96J.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SVFBAAERCQTFD96J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SVFBAAERCQTFD96J.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SVFBAAERCQTFD96J.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7600000000" + }, + "appliesTo" : [ ] + }, + "SVFBAAERCQTFD96J.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SVFBAAERCQTFD96J.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46257" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SVFBAAERCQTFD96J.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "SVFBAAERCQTFD96J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SVFBAAERCQTFD96J.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "SVFBAAERCQTFD96J.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46521" + }, + "appliesTo" : [ ] + }, + "SVFBAAERCQTFD96J.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "SVFBAAERCQTFD96J.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SVFBAAERCQTFD96J.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "SVFBAAERCQTFD96J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SVFBAAERCQTFD96J.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "SVFBAAERCQTFD96J.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31696" + }, + "appliesTo" : [ ] + }, + "SVFBAAERCQTFD96J.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "SVFBAAERCQTFD96J.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SVFBAAERCQTFD96J.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SVFBAAERCQTFD96J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SVFBAAERCQTFD96J.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SVFBAAERCQTFD96J.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SVFBAAERCQTFD96J.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SVFBAAERCQTFD96J.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "92306" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SVFBAAERCQTFD96J.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "SVFBAAERCQTFD96J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SVFBAAERCQTFD96J.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "SVFBAAERCQTFD96J.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SVFBAAERCQTFD96J.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "SVFBAAERCQTFD96J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SVFBAAERCQTFD96J.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "SVFBAAERCQTFD96J.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SVFBAAERCQTFD96J.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "SVFBAAERCQTFD96J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SVFBAAERCQTFD96J.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "SVFBAAERCQTFD96J.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "92961" + }, + "appliesTo" : [ ] + }, + "SVFBAAERCQTFD96J.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "SVFBAAERCQTFD96J.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SVFBAAERCQTFD96J.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SVFBAAERCQTFD96J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SVFBAAERCQTFD96J.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SVFBAAERCQTFD96J.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SVFBAAERCQTFD96J.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SVFBAAERCQTFD96J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SVFBAAERCQTFD96J.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SVFBAAERCQTFD96J.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15735" + }, + "appliesTo" : [ ] + }, + "SVFBAAERCQTFD96J.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SVFBAAERCQTFD96J.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "FMHPC62WVZ9EB44Z" : { + "FMHPC62WVZ9EB44Z.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "FMHPC62WVZ9EB44Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FMHPC62WVZ9EB44Z.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "FMHPC62WVZ9EB44Z.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "FMHPC62WVZ9EB44Z.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "FMHPC62WVZ9EB44Z.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "99745" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FMHPC62WVZ9EB44Z.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "FMHPC62WVZ9EB44Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FMHPC62WVZ9EB44Z.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "FMHPC62WVZ9EB44Z.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.3460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FMHPC62WVZ9EB44Z.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "FMHPC62WVZ9EB44Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FMHPC62WVZ9EB44Z.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "FMHPC62WVZ9EB44Z.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "185296" + }, + "appliesTo" : [ ] + }, + "FMHPC62WVZ9EB44Z.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "FMHPC62WVZ9EB44Z.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FMHPC62WVZ9EB44Z.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "FMHPC62WVZ9EB44Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FMHPC62WVZ9EB44Z.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "FMHPC62WVZ9EB44Z.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "96092" + }, + "appliesTo" : [ ] + }, + "FMHPC62WVZ9EB44Z.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "FMHPC62WVZ9EB44Z.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FMHPC62WVZ9EB44Z.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "FMHPC62WVZ9EB44Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FMHPC62WVZ9EB44Z.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "FMHPC62WVZ9EB44Z.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "104704" + }, + "appliesTo" : [ ] + }, + "FMHPC62WVZ9EB44Z.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "FMHPC62WVZ9EB44Z.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FMHPC62WVZ9EB44Z.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "FMHPC62WVZ9EB44Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FMHPC62WVZ9EB44Z.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "FMHPC62WVZ9EB44Z.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "56287" + }, + "appliesTo" : [ ] + }, + "FMHPC62WVZ9EB44Z.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "FMHPC62WVZ9EB44Z.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.4250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FMHPC62WVZ9EB44Z.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "FMHPC62WVZ9EB44Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FMHPC62WVZ9EB44Z.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "FMHPC62WVZ9EB44Z.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.3700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FMHPC62WVZ9EB44Z.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "FMHPC62WVZ9EB44Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FMHPC62WVZ9EB44Z.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "FMHPC62WVZ9EB44Z.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "FMHPC62WVZ9EB44Z.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "FMHPC62WVZ9EB44Z.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "110838" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FMHPC62WVZ9EB44Z.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "FMHPC62WVZ9EB44Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FMHPC62WVZ9EB44Z.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "FMHPC62WVZ9EB44Z.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.6620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FMHPC62WVZ9EB44Z.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "FMHPC62WVZ9EB44Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FMHPC62WVZ9EB44Z.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "FMHPC62WVZ9EB44Z.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "206766" + }, + "appliesTo" : [ ] + }, + "FMHPC62WVZ9EB44Z.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "FMHPC62WVZ9EB44Z.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FMHPC62WVZ9EB44Z.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "FMHPC62WVZ9EB44Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FMHPC62WVZ9EB44Z.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "FMHPC62WVZ9EB44Z.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "11.9890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FMHPC62WVZ9EB44Z.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "FMHPC62WVZ9EB44Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FMHPC62WVZ9EB44Z.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "FMHPC62WVZ9EB44Z.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "50627" + }, + "appliesTo" : [ ] + }, + "FMHPC62WVZ9EB44Z.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "FMHPC62WVZ9EB44Z.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.7790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "ZBVHTEDA4X8G6DPB" : { + "ZBVHTEDA4X8G6DPB.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ZBVHTEDA4X8G6DPB", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "ZBVHTEDA4X8G6DPB.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ZBVHTEDA4X8G6DPB.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5725" + }, + "appliesTo" : [ ] + }, + "ZBVHTEDA4X8G6DPB.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ZBVHTEDA4X8G6DPB.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZBVHTEDA4X8G6DPB.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ZBVHTEDA4X8G6DPB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZBVHTEDA4X8G6DPB.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ZBVHTEDA4X8G6DPB.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ZBVHTEDA4X8G6DPB.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ZBVHTEDA4X8G6DPB.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8355" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZBVHTEDA4X8G6DPB.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ZBVHTEDA4X8G6DPB", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "ZBVHTEDA4X8G6DPB.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ZBVHTEDA4X8G6DPB.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24858" + }, + "appliesTo" : [ ] + }, + "ZBVHTEDA4X8G6DPB.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ZBVHTEDA4X8G6DPB.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZBVHTEDA4X8G6DPB.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ZBVHTEDA4X8G6DPB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZBVHTEDA4X8G6DPB.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ZBVHTEDA4X8G6DPB.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4217" + }, + "appliesTo" : [ ] + }, + "ZBVHTEDA4X8G6DPB.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ZBVHTEDA4X8G6DPB.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZBVHTEDA4X8G6DPB.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ZBVHTEDA4X8G6DPB", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "ZBVHTEDA4X8G6DPB.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ZBVHTEDA4X8G6DPB.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZBVHTEDA4X8G6DPB.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ZBVHTEDA4X8G6DPB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZBVHTEDA4X8G6DPB.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ZBVHTEDA4X8G6DPB.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZBVHTEDA4X8G6DPB.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ZBVHTEDA4X8G6DPB", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "ZBVHTEDA4X8G6DPB.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ZBVHTEDA4X8G6DPB.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14974" + }, + "appliesTo" : [ ] + }, + "ZBVHTEDA4X8G6DPB.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ZBVHTEDA4X8G6DPB.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZBVHTEDA4X8G6DPB.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ZBVHTEDA4X8G6DPB", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "ZBVHTEDA4X8G6DPB.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ZBVHTEDA4X8G6DPB.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16497" + }, + "appliesTo" : [ ] + }, + "ZBVHTEDA4X8G6DPB.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ZBVHTEDA4X8G6DPB.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZBVHTEDA4X8G6DPB.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ZBVHTEDA4X8G6DPB", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "ZBVHTEDA4X8G6DPB.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ZBVHTEDA4X8G6DPB.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21624" + }, + "appliesTo" : [ ] + }, + "ZBVHTEDA4X8G6DPB.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ZBVHTEDA4X8G6DPB.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZBVHTEDA4X8G6DPB.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ZBVHTEDA4X8G6DPB", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "ZBVHTEDA4X8G6DPB.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ZBVHTEDA4X8G6DPB.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZBVHTEDA4X8G6DPB.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ZBVHTEDA4X8G6DPB", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "ZBVHTEDA4X8G6DPB.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ZBVHTEDA4X8G6DPB.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8626" + }, + "appliesTo" : [ ] + }, + "ZBVHTEDA4X8G6DPB.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ZBVHTEDA4X8G6DPB.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "3D264ECCWU44GADE" : { + "3D264ECCWU44GADE.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "3D264ECCWU44GADE", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3D264ECCWU44GADE.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "3D264ECCWU44GADE.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "3D264ECCWU44GADE.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "3D264ECCWU44GADE.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13464" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3D264ECCWU44GADE.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "3D264ECCWU44GADE", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3D264ECCWU44GADE.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "3D264ECCWU44GADE.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2180" + }, + "appliesTo" : [ ] + }, + "3D264ECCWU44GADE.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "3D264ECCWU44GADE.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3D264ECCWU44GADE.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "3D264ECCWU44GADE", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "3D264ECCWU44GADE.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "3D264ECCWU44GADE.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5730" + }, + "appliesTo" : [ ] + }, + "3D264ECCWU44GADE.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "3D264ECCWU44GADE.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3D264ECCWU44GADE.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "3D264ECCWU44GADE", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3D264ECCWU44GADE.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "3D264ECCWU44GADE.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "3D264ECCWU44GADE.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "3D264ECCWU44GADE.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5339" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3D264ECCWU44GADE.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "3D264ECCWU44GADE", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3D264ECCWU44GADE.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "3D264ECCWU44GADE.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "NR96G3WS4WXEXUW4" : { + "NR96G3WS4WXEXUW4.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "NR96G3WS4WXEXUW4", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "NR96G3WS4WXEXUW4.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "NR96G3WS4WXEXUW4.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22605" + }, + "appliesTo" : [ ] + }, + "NR96G3WS4WXEXUW4.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "NR96G3WS4WXEXUW4.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "NR96G3WS4WXEXUW4.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "NR96G3WS4WXEXUW4", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "NR96G3WS4WXEXUW4.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "NR96G3WS4WXEXUW4.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "NR96G3WS4WXEXUW4.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "NR96G3WS4WXEXUW4", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "NR96G3WS4WXEXUW4.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "NR96G3WS4WXEXUW4.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "65208" + }, + "appliesTo" : [ ] + }, + "NR96G3WS4WXEXUW4.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "NR96G3WS4WXEXUW4.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "NR96G3WS4WXEXUW4.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "NR96G3WS4WXEXUW4", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "NR96G3WS4WXEXUW4.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "NR96G3WS4WXEXUW4.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9217" + }, + "appliesTo" : [ ] + }, + "NR96G3WS4WXEXUW4.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "NR96G3WS4WXEXUW4.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "NR96G3WS4WXEXUW4.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "NR96G3WS4WXEXUW4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NR96G3WS4WXEXUW4.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "NR96G3WS4WXEXUW4.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27818" + }, + "appliesTo" : [ ] + }, + "NR96G3WS4WXEXUW4.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "NR96G3WS4WXEXUW4.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "NR96G3WS4WXEXUW4.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "NR96G3WS4WXEXUW4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NR96G3WS4WXEXUW4.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "NR96G3WS4WXEXUW4.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14011" + }, + "appliesTo" : [ ] + }, + "NR96G3WS4WXEXUW4.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "NR96G3WS4WXEXUW4.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "NR96G3WS4WXEXUW4.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "NR96G3WS4WXEXUW4", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "NR96G3WS4WXEXUW4.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "NR96G3WS4WXEXUW4.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "NR96G3WS4WXEXUW4.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "NR96G3WS4WXEXUW4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NR96G3WS4WXEXUW4.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "NR96G3WS4WXEXUW4.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "NR96G3WS4WXEXUW4.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "NR96G3WS4WXEXUW4", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "NR96G3WS4WXEXUW4.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "NR96G3WS4WXEXUW4.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "NR96G3WS4WXEXUW4.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "NR96G3WS4WXEXUW4.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "52818" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "NR96G3WS4WXEXUW4.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "NR96G3WS4WXEXUW4", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "NR96G3WS4WXEXUW4.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "NR96G3WS4WXEXUW4.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26086" + }, + "appliesTo" : [ ] + }, + "NR96G3WS4WXEXUW4.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "NR96G3WS4WXEXUW4.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "NR96G3WS4WXEXUW4.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "NR96G3WS4WXEXUW4", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "NR96G3WS4WXEXUW4.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "NR96G3WS4WXEXUW4.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2830000000" + }, + "appliesTo" : [ ] + }, + "NR96G3WS4WXEXUW4.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "NR96G3WS4WXEXUW4.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22472" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "6SZSU4SPSN4VNV6H" : { + "6SZSU4SPSN4VNV6H.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6SZSU4SPSN4VNV6H", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "6SZSU4SPSN4VNV6H.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6SZSU4SPSN4VNV6H.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25088" + }, + "appliesTo" : [ ] + }, + "6SZSU4SPSN4VNV6H.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6SZSU4SPSN4VNV6H.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6SZSU4SPSN4VNV6H.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "6SZSU4SPSN4VNV6H", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "6SZSU4SPSN4VNV6H.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "6SZSU4SPSN4VNV6H.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6SZSU4SPSN4VNV6H.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "6SZSU4SPSN4VNV6H", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "6SZSU4SPSN4VNV6H.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "6SZSU4SPSN4VNV6H.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26418" + }, + "appliesTo" : [ ] + }, + "6SZSU4SPSN4VNV6H.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "6SZSU4SPSN4VNV6H.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6SZSU4SPSN4VNV6H.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6SZSU4SPSN4VNV6H", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "6SZSU4SPSN4VNV6H.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6SZSU4SPSN4VNV6H.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "49821" + }, + "appliesTo" : [ ] + }, + "6SZSU4SPSN4VNV6H.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6SZSU4SPSN4VNV6H.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6SZSU4SPSN4VNV6H.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6SZSU4SPSN4VNV6H", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "6SZSU4SPSN4VNV6H.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6SZSU4SPSN4VNV6H.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17866" + }, + "appliesTo" : [ ] + }, + "6SZSU4SPSN4VNV6H.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6SZSU4SPSN4VNV6H.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6SZSU4SPSN4VNV6H.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "6SZSU4SPSN4VNV6H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6SZSU4SPSN4VNV6H.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "6SZSU4SPSN4VNV6H.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6SZSU4SPSN4VNV6H.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6SZSU4SPSN4VNV6H", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "6SZSU4SPSN4VNV6H.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6SZSU4SPSN4VNV6H.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6SZSU4SPSN4VNV6H.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "6SZSU4SPSN4VNV6H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6SZSU4SPSN4VNV6H.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "6SZSU4SPSN4VNV6H.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9203" + }, + "appliesTo" : [ ] + }, + "6SZSU4SPSN4VNV6H.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "6SZSU4SPSN4VNV6H.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6SZSU4SPSN4VNV6H.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6SZSU4SPSN4VNV6H", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "6SZSU4SPSN4VNV6H.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6SZSU4SPSN4VNV6H.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8965" + }, + "appliesTo" : [ ] + }, + "6SZSU4SPSN4VNV6H.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6SZSU4SPSN4VNV6H.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6SZSU4SPSN4VNV6H.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "6SZSU4SPSN4VNV6H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6SZSU4SPSN4VNV6H.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "6SZSU4SPSN4VNV6H.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "6SZSU4SPSN4VNV6H.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "6SZSU4SPSN4VNV6H.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18334" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6SZSU4SPSN4VNV6H.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "6SZSU4SPSN4VNV6H", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "6SZSU4SPSN4VNV6H.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "6SZSU4SPSN4VNV6H.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "6SZSU4SPSN4VNV6H.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "6SZSU4SPSN4VNV6H.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "52665" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "5NPY8GZN5BFUPMDZ" : { + "5NPY8GZN5BFUPMDZ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "5NPY8GZN5BFUPMDZ", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "5NPY8GZN5BFUPMDZ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "5NPY8GZN5BFUPMDZ.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "5NPY8GZN5BFUPMDZ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "5NPY8GZN5BFUPMDZ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2311" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "5NPY8GZN5BFUPMDZ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "5NPY8GZN5BFUPMDZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "5NPY8GZN5BFUPMDZ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "5NPY8GZN5BFUPMDZ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1852" + }, + "appliesTo" : [ ] + }, + "5NPY8GZN5BFUPMDZ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "5NPY8GZN5BFUPMDZ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5NPY8GZN5BFUPMDZ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "5NPY8GZN5BFUPMDZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5NPY8GZN5BFUPMDZ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "5NPY8GZN5BFUPMDZ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "849" + }, + "appliesTo" : [ ] + }, + "5NPY8GZN5BFUPMDZ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "5NPY8GZN5BFUPMDZ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "5NPY8GZN5BFUPMDZ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "5NPY8GZN5BFUPMDZ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "5NPY8GZN5BFUPMDZ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "5NPY8GZN5BFUPMDZ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "525" + }, + "appliesTo" : [ ] + }, + "5NPY8GZN5BFUPMDZ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "5NPY8GZN5BFUPMDZ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5NPY8GZN5BFUPMDZ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "5NPY8GZN5BFUPMDZ", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "5NPY8GZN5BFUPMDZ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "5NPY8GZN5BFUPMDZ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "893" + }, + "appliesTo" : [ ] + }, + "5NPY8GZN5BFUPMDZ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "5NPY8GZN5BFUPMDZ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "5NPY8GZN5BFUPMDZ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "5NPY8GZN5BFUPMDZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5NPY8GZN5BFUPMDZ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "5NPY8GZN5BFUPMDZ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "5NPY8GZN5BFUPMDZ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "5NPY8GZN5BFUPMDZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5NPY8GZN5BFUPMDZ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "5NPY8GZN5BFUPMDZ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "429" + }, + "appliesTo" : [ ] + }, + "5NPY8GZN5BFUPMDZ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "5NPY8GZN5BFUPMDZ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "5NPY8GZN5BFUPMDZ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "5NPY8GZN5BFUPMDZ", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "5NPY8GZN5BFUPMDZ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "5NPY8GZN5BFUPMDZ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "5NPY8GZN5BFUPMDZ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "5NPY8GZN5BFUPMDZ", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "5NPY8GZN5BFUPMDZ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "5NPY8GZN5BFUPMDZ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0560000000" + }, + "appliesTo" : [ ] + }, + "5NPY8GZN5BFUPMDZ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "5NPY8GZN5BFUPMDZ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "321" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5NPY8GZN5BFUPMDZ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "5NPY8GZN5BFUPMDZ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "5NPY8GZN5BFUPMDZ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "5NPY8GZN5BFUPMDZ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "5NPY8GZN5BFUPMDZ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "5NPY8GZN5BFUPMDZ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "809" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5NPY8GZN5BFUPMDZ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "5NPY8GZN5BFUPMDZ", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "5NPY8GZN5BFUPMDZ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "5NPY8GZN5BFUPMDZ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "QFJGATXWKZNECDMG" : { + "QFJGATXWKZNECDMG.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QFJGATXWKZNECDMG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QFJGATXWKZNECDMG.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QFJGATXWKZNECDMG.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1966" + }, + "appliesTo" : [ ] + }, + "QFJGATXWKZNECDMG.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QFJGATXWKZNECDMG.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QFJGATXWKZNECDMG.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QFJGATXWKZNECDMG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QFJGATXWKZNECDMG.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QFJGATXWKZNECDMG.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QFJGATXWKZNECDMG.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QFJGATXWKZNECDMG.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3860" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QFJGATXWKZNECDMG.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "QFJGATXWKZNECDMG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QFJGATXWKZNECDMG.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "QFJGATXWKZNECDMG.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QFJGATXWKZNECDMG.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QFJGATXWKZNECDMG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QFJGATXWKZNECDMG.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QFJGATXWKZNECDMG.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QFJGATXWKZNECDMG.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QFJGATXWKZNECDMG.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7590" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QFJGATXWKZNECDMG.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QFJGATXWKZNECDMG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QFJGATXWKZNECDMG.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QFJGATXWKZNECDMG.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QFJGATXWKZNECDMG.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QFJGATXWKZNECDMG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QFJGATXWKZNECDMG.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QFJGATXWKZNECDMG.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1520000000" + }, + "appliesTo" : [ ] + }, + "QFJGATXWKZNECDMG.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QFJGATXWKZNECDMG.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4003" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "TFQ5DSSKH395ATXV" : { + "TFQ5DSSKH395ATXV.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TFQ5DSSKH395ATXV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TFQ5DSSKH395ATXV.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TFQ5DSSKH395ATXV.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6800" + }, + "appliesTo" : [ ] + }, + "TFQ5DSSKH395ATXV.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TFQ5DSSKH395ATXV.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TFQ5DSSKH395ATXV.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TFQ5DSSKH395ATXV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TFQ5DSSKH395ATXV.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TFQ5DSSKH395ATXV.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13563" + }, + "appliesTo" : [ ] + }, + "TFQ5DSSKH395ATXV.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TFQ5DSSKH395ATXV.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TFQ5DSSKH395ATXV.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "TFQ5DSSKH395ATXV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TFQ5DSSKH395ATXV.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "TFQ5DSSKH395ATXV.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TFQ5DSSKH395ATXV.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "TFQ5DSSKH395ATXV.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13826" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TFQ5DSSKH395ATXV.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TFQ5DSSKH395ATXV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TFQ5DSSKH395ATXV.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TFQ5DSSKH395ATXV.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38695" + }, + "appliesTo" : [ ] + }, + "TFQ5DSSKH395ATXV.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TFQ5DSSKH395ATXV.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TFQ5DSSKH395ATXV.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "TFQ5DSSKH395ATXV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TFQ5DSSKH395ATXV.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "TFQ5DSSKH395ATXV.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TFQ5DSSKH395ATXV.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TFQ5DSSKH395ATXV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TFQ5DSSKH395ATXV.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TFQ5DSSKH395ATXV.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TFQ5DSSKH395ATXV.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "TFQ5DSSKH395ATXV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TFQ5DSSKH395ATXV.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "TFQ5DSSKH395ATXV.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6934" + }, + "appliesTo" : [ ] + }, + "TFQ5DSSKH395ATXV.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "TFQ5DSSKH395ATXV.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TFQ5DSSKH395ATXV.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TFQ5DSSKH395ATXV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TFQ5DSSKH395ATXV.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TFQ5DSSKH395ATXV.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19451" + }, + "appliesTo" : [ ] + }, + "TFQ5DSSKH395ATXV.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TFQ5DSSKH395ATXV.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TFQ5DSSKH395ATXV.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "TFQ5DSSKH395ATXV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TFQ5DSSKH395ATXV.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "TFQ5DSSKH395ATXV.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TFQ5DSSKH395ATXV.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "TFQ5DSSKH395ATXV.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39350" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TFQ5DSSKH395ATXV.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "TFQ5DSSKH395ATXV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TFQ5DSSKH395ATXV.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "TFQ5DSSKH395ATXV.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TFQ5DSSKH395ATXV.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "TFQ5DSSKH395ATXV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TFQ5DSSKH395ATXV.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "TFQ5DSSKH395ATXV.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7500000000" + }, + "appliesTo" : [ ] + }, + "TFQ5DSSKH395ATXV.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "TFQ5DSSKH395ATXV.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19715" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TFQ5DSSKH395ATXV.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "TFQ5DSSKH395ATXV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TFQ5DSSKH395ATXV.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "TFQ5DSSKH395ATXV.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "6R5GC45858YD7JK6" : { + "6R5GC45858YD7JK6.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6R5GC45858YD7JK6", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "6R5GC45858YD7JK6.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6R5GC45858YD7JK6.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "460" + }, + "appliesTo" : [ ] + }, + "6R5GC45858YD7JK6.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6R5GC45858YD7JK6.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6R5GC45858YD7JK6.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6R5GC45858YD7JK6", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "6R5GC45858YD7JK6.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6R5GC45858YD7JK6.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1056" + }, + "appliesTo" : [ ] + }, + "6R5GC45858YD7JK6.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6R5GC45858YD7JK6.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6R5GC45858YD7JK6.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6R5GC45858YD7JK6", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6R5GC45858YD7JK6.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6R5GC45858YD7JK6.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "285" + }, + "appliesTo" : [ ] + }, + "6R5GC45858YD7JK6.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6R5GC45858YD7JK6.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6R5GC45858YD7JK6.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6R5GC45858YD7JK6", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6R5GC45858YD7JK6.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6R5GC45858YD7JK6.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6R5GC45858YD7JK6.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6R5GC45858YD7JK6", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6R5GC45858YD7JK6.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6R5GC45858YD7JK6.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "182" + }, + "appliesTo" : [ ] + }, + "6R5GC45858YD7JK6.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6R5GC45858YD7JK6.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "H9KMFFHRW3R5NVSJ" : { + "H9KMFFHRW3R5NVSJ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "H9KMFFHRW3R5NVSJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H9KMFFHRW3R5NVSJ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "H9KMFFHRW3R5NVSJ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "205726" + }, + "appliesTo" : [ ] + }, + "H9KMFFHRW3R5NVSJ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "H9KMFFHRW3R5NVSJ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.8280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "H9KMFFHRW3R5NVSJ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "H9KMFFHRW3R5NVSJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H9KMFFHRW3R5NVSJ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "H9KMFFHRW3R5NVSJ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "418743" + }, + "appliesTo" : [ ] + }, + "H9KMFFHRW3R5NVSJ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "H9KMFFHRW3R5NVSJ.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "H9KMFFHRW3R5NVSJ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "H9KMFFHRW3R5NVSJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H9KMFFHRW3R5NVSJ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "H9KMFFHRW3R5NVSJ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "408008" + }, + "appliesTo" : [ ] + }, + "H9KMFFHRW3R5NVSJ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "H9KMFFHRW3R5NVSJ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "H9KMFFHRW3R5NVSJ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "H9KMFFHRW3R5NVSJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H9KMFFHRW3R5NVSJ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "H9KMFFHRW3R5NVSJ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.1850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "H9KMFFHRW3R5NVSJ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "H9KMFFHRW3R5NVSJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H9KMFFHRW3R5NVSJ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "H9KMFFHRW3R5NVSJ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.8310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "H9KMFFHRW3R5NVSJ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "H9KMFFHRW3R5NVSJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H9KMFFHRW3R5NVSJ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "H9KMFFHRW3R5NVSJ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "80703" + }, + "appliesTo" : [ ] + }, + "H9KMFFHRW3R5NVSJ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "H9KMFFHRW3R5NVSJ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.2130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "H9KMFFHRW3R5NVSJ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "H9KMFFHRW3R5NVSJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H9KMFFHRW3R5NVSJ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "H9KMFFHRW3R5NVSJ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "18.6730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "H9KMFFHRW3R5NVSJ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "H9KMFFHRW3R5NVSJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H9KMFFHRW3R5NVSJ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "H9KMFFHRW3R5NVSJ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "210032" + }, + "appliesTo" : [ ] + }, + "H9KMFFHRW3R5NVSJ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "H9KMFFHRW3R5NVSJ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.9920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "H9KMFFHRW3R5NVSJ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "H9KMFFHRW3R5NVSJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H9KMFFHRW3R5NVSJ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "H9KMFFHRW3R5NVSJ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "154992" + }, + "appliesTo" : [ ] + }, + "H9KMFFHRW3R5NVSJ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "H9KMFFHRW3R5NVSJ.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "H9KMFFHRW3R5NVSJ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "H9KMFFHRW3R5NVSJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H9KMFFHRW3R5NVSJ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "H9KMFFHRW3R5NVSJ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "H9KMFFHRW3R5NVSJ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "H9KMFFHRW3R5NVSJ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "160539" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "H9KMFFHRW3R5NVSJ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "H9KMFFHRW3R5NVSJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H9KMFFHRW3R5NVSJ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "H9KMFFHRW3R5NVSJ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "77873" + }, + "appliesTo" : [ ] + }, + "H9KMFFHRW3R5NVSJ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "H9KMFFHRW3R5NVSJ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.8900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "H9KMFFHRW3R5NVSJ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "H9KMFFHRW3R5NVSJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H9KMFFHRW3R5NVSJ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "H9KMFFHRW3R5NVSJ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "17.9950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "W7AKAG7V86UE38RF" : { + "W7AKAG7V86UE38RF.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "W7AKAG7V86UE38RF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "W7AKAG7V86UE38RF.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "W7AKAG7V86UE38RF.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "W7AKAG7V86UE38RF.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "W7AKAG7V86UE38RF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W7AKAG7V86UE38RF.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "W7AKAG7V86UE38RF.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14011" + }, + "appliesTo" : [ ] + }, + "W7AKAG7V86UE38RF.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "W7AKAG7V86UE38RF.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "W7AKAG7V86UE38RF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "W7AKAG7V86UE38RF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "W7AKAG7V86UE38RF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "W7AKAG7V86UE38RF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22472" + }, + "appliesTo" : [ ] + }, + "W7AKAG7V86UE38RF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "W7AKAG7V86UE38RF.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "W7AKAG7V86UE38RF.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "W7AKAG7V86UE38RF", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "W7AKAG7V86UE38RF.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "W7AKAG7V86UE38RF.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "65208" + }, + "appliesTo" : [ ] + }, + "W7AKAG7V86UE38RF.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "W7AKAG7V86UE38RF.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "W7AKAG7V86UE38RF.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "W7AKAG7V86UE38RF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W7AKAG7V86UE38RF.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "W7AKAG7V86UE38RF.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "W7AKAG7V86UE38RF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "W7AKAG7V86UE38RF", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "W7AKAG7V86UE38RF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "W7AKAG7V86UE38RF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22605" + }, + "appliesTo" : [ ] + }, + "W7AKAG7V86UE38RF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "W7AKAG7V86UE38RF.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "W7AKAG7V86UE38RF.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "W7AKAG7V86UE38RF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W7AKAG7V86UE38RF.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "W7AKAG7V86UE38RF.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27818" + }, + "appliesTo" : [ ] + }, + "W7AKAG7V86UE38RF.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "W7AKAG7V86UE38RF.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "W7AKAG7V86UE38RF.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "W7AKAG7V86UE38RF", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "W7AKAG7V86UE38RF.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "W7AKAG7V86UE38RF.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26086" + }, + "appliesTo" : [ ] + }, + "W7AKAG7V86UE38RF.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "W7AKAG7V86UE38RF.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "W7AKAG7V86UE38RF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "W7AKAG7V86UE38RF", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "W7AKAG7V86UE38RF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "W7AKAG7V86UE38RF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5810000000" + }, + "appliesTo" : [ ] + }, + "W7AKAG7V86UE38RF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "W7AKAG7V86UE38RF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9217" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "W7AKAG7V86UE38RF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "W7AKAG7V86UE38RF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "W7AKAG7V86UE38RF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "W7AKAG7V86UE38RF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "52818" + }, + "appliesTo" : [ ] + }, + "W7AKAG7V86UE38RF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "W7AKAG7V86UE38RF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "W7AKAG7V86UE38RF.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "W7AKAG7V86UE38RF", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "W7AKAG7V86UE38RF.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "W7AKAG7V86UE38RF.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "6FWXGNKA63Z8BMCH" : { + "6FWXGNKA63Z8BMCH.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6FWXGNKA63Z8BMCH", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "6FWXGNKA63Z8BMCH.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6FWXGNKA63Z8BMCH.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9115" + }, + "appliesTo" : [ ] + }, + "6FWXGNKA63Z8BMCH.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6FWXGNKA63Z8BMCH.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6FWXGNKA63Z8BMCH.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6FWXGNKA63Z8BMCH", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6FWXGNKA63Z8BMCH.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6FWXGNKA63Z8BMCH.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5000" + }, + "appliesTo" : [ ] + }, + "6FWXGNKA63Z8BMCH.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6FWXGNKA63Z8BMCH.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6FWXGNKA63Z8BMCH.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6FWXGNKA63Z8BMCH", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6FWXGNKA63Z8BMCH.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6FWXGNKA63Z8BMCH.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6FWXGNKA63Z8BMCH.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6FWXGNKA63Z8BMCH", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6FWXGNKA63Z8BMCH.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6FWXGNKA63Z8BMCH.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4910000000" + }, + "appliesTo" : [ ] + }, + "6FWXGNKA63Z8BMCH.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6FWXGNKA63Z8BMCH.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7670" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6FWXGNKA63Z8BMCH.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6FWXGNKA63Z8BMCH", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6FWXGNKA63Z8BMCH.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6FWXGNKA63Z8BMCH.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19339" + }, + "appliesTo" : [ ] + }, + "6FWXGNKA63Z8BMCH.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6FWXGNKA63Z8BMCH.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "M6T9NG7HTENPGTMK" : { + "M6T9NG7HTENPGTMK.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "M6T9NG7HTENPGTMK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M6T9NG7HTENPGTMK.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "M6T9NG7HTENPGTMK.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.4190000000" + }, + "appliesTo" : [ ] + }, + "M6T9NG7HTENPGTMK.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "M6T9NG7HTENPGTMK.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "221255" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "M6T9NG7HTENPGTMK.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "M6T9NG7HTENPGTMK", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "M6T9NG7HTENPGTMK.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "M6T9NG7HTENPGTMK.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "18.3750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "M6T9NG7HTENPGTMK.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "M6T9NG7HTENPGTMK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M6T9NG7HTENPGTMK.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "M6T9NG7HTENPGTMK.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "160015" + }, + "appliesTo" : [ ] + }, + "M6T9NG7HTENPGTMK.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "M6T9NG7HTENPGTMK.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "M6T9NG7HTENPGTMK.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "M6T9NG7HTENPGTMK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M6T9NG7HTENPGTMK.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "M6T9NG7HTENPGTMK.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "18.4890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "M6T9NG7HTENPGTMK.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "M6T9NG7HTENPGTMK", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "M6T9NG7HTENPGTMK.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "M6T9NG7HTENPGTMK.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "462072" + }, + "appliesTo" : [ ] + }, + "M6T9NG7HTENPGTMK.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "M6T9NG7HTENPGTMK.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "M6T9NG7HTENPGTMK.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "M6T9NG7HTENPGTMK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M6T9NG7HTENPGTMK.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "M6T9NG7HTENPGTMK.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.1650000000" + }, + "appliesTo" : [ ] + }, + "M6T9NG7HTENPGTMK.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "M6T9NG7HTENPGTMK.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "80285" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "M6T9NG7HTENPGTMK.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "M6T9NG7HTENPGTMK", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "M6T9NG7HTENPGTMK.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "M6T9NG7HTENPGTMK.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "78434" + }, + "appliesTo" : [ ] + }, + "M6T9NG7HTENPGTMK.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "M6T9NG7HTENPGTMK.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.9540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "M6T9NG7HTENPGTMK.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "M6T9NG7HTENPGTMK", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "M6T9NG7HTENPGTMK.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "M6T9NG7HTENPGTMK.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "156386" + }, + "appliesTo" : [ ] + }, + "M6T9NG7HTENPGTMK.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "M6T9NG7HTENPGTMK.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "M6T9NG7HTENPGTMK.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "M6T9NG7HTENPGTMK", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "M6T9NG7HTENPGTMK.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "M6T9NG7HTENPGTMK.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "231687" + }, + "appliesTo" : [ ] + }, + "M6T9NG7HTENPGTMK.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "M6T9NG7HTENPGTMK.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.8160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "M6T9NG7HTENPGTMK.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "M6T9NG7HTENPGTMK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M6T9NG7HTENPGTMK.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "M6T9NG7HTENPGTMK.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "M6T9NG7HTENPGTMK.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "M6T9NG7HTENPGTMK.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "439858" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "M6T9NG7HTENPGTMK.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "M6T9NG7HTENPGTMK", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "M6T9NG7HTENPGTMK.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "M6T9NG7HTENPGTMK.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "18.0530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "62G57MU6KCQ2AQS8" : { + "62G57MU6KCQ2AQS8.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "62G57MU6KCQ2AQS8", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "62G57MU6KCQ2AQS8.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "62G57MU6KCQ2AQS8.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t1.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "62G57MU6KCQ2AQS8.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "62G57MU6KCQ2AQS8", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "62G57MU6KCQ2AQS8.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "62G57MU6KCQ2AQS8.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1699" + }, + "appliesTo" : [ ] + }, + "62G57MU6KCQ2AQS8.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "62G57MU6KCQ2AQS8.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), t1.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "62G57MU6KCQ2AQS8.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "62G57MU6KCQ2AQS8", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "62G57MU6KCQ2AQS8.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "62G57MU6KCQ2AQS8.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "100" + }, + "appliesTo" : [ ] + }, + "62G57MU6KCQ2AQS8.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "62G57MU6KCQ2AQS8.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t1.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "62G57MU6KCQ2AQS8.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "62G57MU6KCQ2AQS8", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "62G57MU6KCQ2AQS8.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "62G57MU6KCQ2AQS8.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), t1.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "62G57MU6KCQ2AQS8.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "62G57MU6KCQ2AQS8.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "618" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "62G57MU6KCQ2AQS8.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "62G57MU6KCQ2AQS8", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "62G57MU6KCQ2AQS8.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "62G57MU6KCQ2AQS8.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t1.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0650000000" + }, + "appliesTo" : [ ] + }, + "62G57MU6KCQ2AQS8.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "62G57MU6KCQ2AQS8.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "62" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "6NDY9AE4VQNGEMV4" : { + "6NDY9AE4VQNGEMV4.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6NDY9AE4VQNGEMV4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6NDY9AE4VQNGEMV4.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6NDY9AE4VQNGEMV4.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "281295" + }, + "appliesTo" : [ ] + }, + "6NDY9AE4VQNGEMV4.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6NDY9AE4VQNGEMV4.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6NDY9AE4VQNGEMV4.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6NDY9AE4VQNGEMV4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6NDY9AE4VQNGEMV4.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6NDY9AE4VQNGEMV4.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.0740000000" + }, + "appliesTo" : [ ] + }, + "6NDY9AE4VQNGEMV4.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6NDY9AE4VQNGEMV4.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "140808" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6NDY9AE4VQNGEMV4.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "6NDY9AE4VQNGEMV4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6NDY9AE4VQNGEMV4.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "6NDY9AE4VQNGEMV4.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "283659" + }, + "appliesTo" : [ ] + }, + "6NDY9AE4VQNGEMV4.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "6NDY9AE4VQNGEMV4.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6NDY9AE4VQNGEMV4.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "6NDY9AE4VQNGEMV4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6NDY9AE4VQNGEMV4.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "6NDY9AE4VQNGEMV4.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "416273" + }, + "appliesTo" : [ ] + }, + "6NDY9AE4VQNGEMV4.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "6NDY9AE4VQNGEMV4.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.8400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6NDY9AE4VQNGEMV4.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6NDY9AE4VQNGEMV4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6NDY9AE4VQNGEMV4.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6NDY9AE4VQNGEMV4.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "825929" + }, + "appliesTo" : [ ] + }, + "6NDY9AE4VQNGEMV4.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6NDY9AE4VQNGEMV4.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6NDY9AE4VQNGEMV4.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "6NDY9AE4VQNGEMV4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6NDY9AE4VQNGEMV4.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "6NDY9AE4VQNGEMV4.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "31.7890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6NDY9AE4VQNGEMV4.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6NDY9AE4VQNGEMV4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6NDY9AE4VQNGEMV4.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6NDY9AE4VQNGEMV4.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "32.2400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6NDY9AE4VQNGEMV4.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "6NDY9AE4VQNGEMV4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6NDY9AE4VQNGEMV4.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "6NDY9AE4VQNGEMV4.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "142014" + }, + "appliesTo" : [ ] + }, + "6NDY9AE4VQNGEMV4.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "6NDY9AE4VQNGEMV4.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.2120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6NDY9AE4VQNGEMV4.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6NDY9AE4VQNGEMV4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6NDY9AE4VQNGEMV4.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6NDY9AE4VQNGEMV4.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "413901" + }, + "appliesTo" : [ ] + }, + "6NDY9AE4VQNGEMV4.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6NDY9AE4VQNGEMV4.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.7500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6NDY9AE4VQNGEMV4.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "6NDY9AE4VQNGEMV4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6NDY9AE4VQNGEMV4.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "6NDY9AE4VQNGEMV4.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "831827" + }, + "appliesTo" : [ ] + }, + "6NDY9AE4VQNGEMV4.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "6NDY9AE4VQNGEMV4.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6NDY9AE4VQNGEMV4.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "6NDY9AE4VQNGEMV4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6NDY9AE4VQNGEMV4.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "6NDY9AE4VQNGEMV4.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "31.5940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6NDY9AE4VQNGEMV4.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "6NDY9AE4VQNGEMV4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6NDY9AE4VQNGEMV4.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "6NDY9AE4VQNGEMV4.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "32.5290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "P63NKZQXED5H7HUK" : { + "P63NKZQXED5H7HUK.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "P63NKZQXED5H7HUK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P63NKZQXED5H7HUK.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "P63NKZQXED5H7HUK.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6812" + }, + "appliesTo" : [ ] + }, + "P63NKZQXED5H7HUK.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "P63NKZQXED5H7HUK.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "P63NKZQXED5H7HUK.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "P63NKZQXED5H7HUK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "P63NKZQXED5H7HUK.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "P63NKZQXED5H7HUK.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "P63NKZQXED5H7HUK.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "P63NKZQXED5H7HUK", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "P63NKZQXED5H7HUK.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "P63NKZQXED5H7HUK.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8132" + }, + "appliesTo" : [ ] + }, + "P63NKZQXED5H7HUK.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "P63NKZQXED5H7HUK.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "P63NKZQXED5H7HUK.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "P63NKZQXED5H7HUK", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "P63NKZQXED5H7HUK.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "P63NKZQXED5H7HUK.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5534" + }, + "appliesTo" : [ ] + }, + "P63NKZQXED5H7HUK.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "P63NKZQXED5H7HUK.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "P63NKZQXED5H7HUK.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "P63NKZQXED5H7HUK", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "P63NKZQXED5H7HUK.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "P63NKZQXED5H7HUK.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10390" + }, + "appliesTo" : [ ] + }, + "P63NKZQXED5H7HUK.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "P63NKZQXED5H7HUK.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "P63NKZQXED5H7HUK.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "P63NKZQXED5H7HUK", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "P63NKZQXED5H7HUK.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "P63NKZQXED5H7HUK.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "P63NKZQXED5H7HUK.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "P63NKZQXED5H7HUK.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5904" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "P63NKZQXED5H7HUK.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "P63NKZQXED5H7HUK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P63NKZQXED5H7HUK.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "P63NKZQXED5H7HUK.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "P63NKZQXED5H7HUK.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "P63NKZQXED5H7HUK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P63NKZQXED5H7HUK.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "P63NKZQXED5H7HUK.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3476" + }, + "appliesTo" : [ ] + }, + "P63NKZQXED5H7HUK.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "P63NKZQXED5H7HUK.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "P63NKZQXED5H7HUK.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "P63NKZQXED5H7HUK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "P63NKZQXED5H7HUK.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "P63NKZQXED5H7HUK.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "P63NKZQXED5H7HUK.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "P63NKZQXED5H7HUK", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "P63NKZQXED5H7HUK.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "P63NKZQXED5H7HUK.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3440000000" + }, + "appliesTo" : [ ] + }, + "P63NKZQXED5H7HUK.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "P63NKZQXED5H7HUK.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3012" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "P63NKZQXED5H7HUK.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "P63NKZQXED5H7HUK", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "P63NKZQXED5H7HUK.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "P63NKZQXED5H7HUK.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "P63NKZQXED5H7HUK.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "P63NKZQXED5H7HUK.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15941" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "TT84KWCJTYXTFX54" : { + "TT84KWCJTYXTFX54.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TT84KWCJTYXTFX54", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TT84KWCJTYXTFX54.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TT84KWCJTYXTFX54.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4307" + }, + "appliesTo" : [ ] + }, + "TT84KWCJTYXTFX54.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TT84KWCJTYXTFX54.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TT84KWCJTYXTFX54.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "TT84KWCJTYXTFX54", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TT84KWCJTYXTFX54.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "TT84KWCJTYXTFX54.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TT84KWCJTYXTFX54.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "TT84KWCJTYXTFX54", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TT84KWCJTYXTFX54.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "TT84KWCJTYXTFX54.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4439" + }, + "appliesTo" : [ ] + }, + "TT84KWCJTYXTFX54.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "TT84KWCJTYXTFX54.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TT84KWCJTYXTFX54.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TT84KWCJTYXTFX54", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TT84KWCJTYXTFX54.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TT84KWCJTYXTFX54.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TT84KWCJTYXTFX54.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TT84KWCJTYXTFX54.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3169" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TT84KWCJTYXTFX54.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TT84KWCJTYXTFX54", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TT84KWCJTYXTFX54.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TT84KWCJTYXTFX54.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8510" + }, + "appliesTo" : [ ] + }, + "TT84KWCJTYXTFX54.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TT84KWCJTYXTFX54.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TT84KWCJTYXTFX54.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "TT84KWCJTYXTFX54", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TT84KWCJTYXTFX54.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "TT84KWCJTYXTFX54.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TT84KWCJTYXTFX54.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TT84KWCJTYXTFX54", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TT84KWCJTYXTFX54.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TT84KWCJTYXTFX54.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TT84KWCJTYXTFX54.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "TT84KWCJTYXTFX54", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TT84KWCJTYXTFX54.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "TT84KWCJTYXTFX54.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1660" + }, + "appliesTo" : [ ] + }, + "TT84KWCJTYXTFX54.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "TT84KWCJTYXTFX54.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TT84KWCJTYXTFX54.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TT84KWCJTYXTFX54", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TT84KWCJTYXTFX54.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TT84KWCJTYXTFX54.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1593" + }, + "appliesTo" : [ ] + }, + "TT84KWCJTYXTFX54.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TT84KWCJTYXTFX54.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TT84KWCJTYXTFX54.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "TT84KWCJTYXTFX54", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TT84KWCJTYXTFX54.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "TT84KWCJTYXTFX54.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3300" + }, + "appliesTo" : [ ] + }, + "TT84KWCJTYXTFX54.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "TT84KWCJTYXTFX54.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TT84KWCJTYXTFX54.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "TT84KWCJTYXTFX54", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TT84KWCJTYXTFX54.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "TT84KWCJTYXTFX54.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TT84KWCJTYXTFX54.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "TT84KWCJTYXTFX54", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TT84KWCJTYXTFX54.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "TT84KWCJTYXTFX54.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8837" + }, + "appliesTo" : [ ] + }, + "TT84KWCJTYXTFX54.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "TT84KWCJTYXTFX54.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "RKCQDTMY5DZS4JWT" : { + "RKCQDTMY5DZS4JWT.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "RKCQDTMY5DZS4JWT", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RKCQDTMY5DZS4JWT.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "RKCQDTMY5DZS4JWT.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RKCQDTMY5DZS4JWT.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "RKCQDTMY5DZS4JWT", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RKCQDTMY5DZS4JWT.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "RKCQDTMY5DZS4JWT.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2875" + }, + "appliesTo" : [ ] + }, + "RKCQDTMY5DZS4JWT.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "RKCQDTMY5DZS4JWT.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RKCQDTMY5DZS4JWT.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "RKCQDTMY5DZS4JWT", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RKCQDTMY5DZS4JWT.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "RKCQDTMY5DZS4JWT.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5839" + }, + "appliesTo" : [ ] + }, + "RKCQDTMY5DZS4JWT.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "RKCQDTMY5DZS4JWT.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RKCQDTMY5DZS4JWT.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "RKCQDTMY5DZS4JWT", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RKCQDTMY5DZS4JWT.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "RKCQDTMY5DZS4JWT.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "RKCQDTMY5DZS4JWT.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "RKCQDTMY5DZS4JWT.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3255" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RKCQDTMY5DZS4JWT.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "RKCQDTMY5DZS4JWT", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RKCQDTMY5DZS4JWT.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "RKCQDTMY5DZS4JWT.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1894" + }, + "appliesTo" : [ ] + }, + "RKCQDTMY5DZS4JWT.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "RKCQDTMY5DZS4JWT.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "5P8A9S7FHZ9Q44SE" : { + "5P8A9S7FHZ9Q44SE.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "5P8A9S7FHZ9Q44SE", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "5P8A9S7FHZ9Q44SE.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "5P8A9S7FHZ9Q44SE.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.7080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "5P8A9S7FHZ9Q44SE.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "5P8A9S7FHZ9Q44SE", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "5P8A9S7FHZ9Q44SE.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "5P8A9S7FHZ9Q44SE.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "69695" + }, + "appliesTo" : [ ] + }, + "5P8A9S7FHZ9Q44SE.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "5P8A9S7FHZ9Q44SE.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.9560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5P8A9S7FHZ9Q44SE.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "5P8A9S7FHZ9Q44SE", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "5P8A9S7FHZ9Q44SE.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "5P8A9S7FHZ9Q44SE.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.6550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "5P8A9S7FHZ9Q44SE.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "5P8A9S7FHZ9Q44SE", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "5P8A9S7FHZ9Q44SE.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "5P8A9S7FHZ9Q44SE.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "5P8A9S7FHZ9Q44SE.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "5P8A9S7FHZ9Q44SE.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "243708" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5P8A9S7FHZ9Q44SE.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "5P8A9S7FHZ9Q44SE", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "5P8A9S7FHZ9Q44SE.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "5P8A9S7FHZ9Q44SE.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "136601" + }, + "appliesTo" : [ ] + }, + "5P8A9S7FHZ9Q44SE.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "5P8A9S7FHZ9Q44SE.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5P8A9S7FHZ9Q44SE.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "5P8A9S7FHZ9Q44SE", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "5P8A9S7FHZ9Q44SE.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "5P8A9S7FHZ9Q44SE.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9330000000" + }, + "appliesTo" : [ ] + }, + "5P8A9S7FHZ9Q44SE.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "5P8A9S7FHZ9Q44SE.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "129632" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "2WVXMQUWAFQDPJNS" : { + "2WVXMQUWAFQDPJNS.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "2WVXMQUWAFQDPJNS", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "2WVXMQUWAFQDPJNS.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "2WVXMQUWAFQDPJNS.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4975" + }, + "appliesTo" : [ ] + }, + "2WVXMQUWAFQDPJNS.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "2WVXMQUWAFQDPJNS.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2WVXMQUWAFQDPJNS.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "2WVXMQUWAFQDPJNS", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "2WVXMQUWAFQDPJNS.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "2WVXMQUWAFQDPJNS.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12185" + }, + "appliesTo" : [ ] + }, + "2WVXMQUWAFQDPJNS.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "2WVXMQUWAFQDPJNS.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2WVXMQUWAFQDPJNS.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "2WVXMQUWAFQDPJNS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2WVXMQUWAFQDPJNS.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "2WVXMQUWAFQDPJNS.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12784" + }, + "appliesTo" : [ ] + }, + "2WVXMQUWAFQDPJNS.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "2WVXMQUWAFQDPJNS.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2WVXMQUWAFQDPJNS.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "2WVXMQUWAFQDPJNS", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "2WVXMQUWAFQDPJNS.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "2WVXMQUWAFQDPJNS.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2WVXMQUWAFQDPJNS.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "2WVXMQUWAFQDPJNS", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "2WVXMQUWAFQDPJNS.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "2WVXMQUWAFQDPJNS.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2WVXMQUWAFQDPJNS.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "2WVXMQUWAFQDPJNS", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "2WVXMQUWAFQDPJNS.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "2WVXMQUWAFQDPJNS.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12940" + }, + "appliesTo" : [ ] + }, + "2WVXMQUWAFQDPJNS.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "2WVXMQUWAFQDPJNS.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2WVXMQUWAFQDPJNS.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "2WVXMQUWAFQDPJNS", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "2WVXMQUWAFQDPJNS.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "2WVXMQUWAFQDPJNS.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8380000000" + }, + "appliesTo" : [ ] + }, + "2WVXMQUWAFQDPJNS.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "2WVXMQUWAFQDPJNS.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14420" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2WVXMQUWAFQDPJNS.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "2WVXMQUWAFQDPJNS", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "2WVXMQUWAFQDPJNS.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "2WVXMQUWAFQDPJNS.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35703" + }, + "appliesTo" : [ ] + }, + "2WVXMQUWAFQDPJNS.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "2WVXMQUWAFQDPJNS.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2WVXMQUWAFQDPJNS.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "2WVXMQUWAFQDPJNS", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "2WVXMQUWAFQDPJNS.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "2WVXMQUWAFQDPJNS.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30395" + }, + "appliesTo" : [ ] + }, + "2WVXMQUWAFQDPJNS.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "2WVXMQUWAFQDPJNS.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2WVXMQUWAFQDPJNS.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "2WVXMQUWAFQDPJNS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2WVXMQUWAFQDPJNS.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "2WVXMQUWAFQDPJNS.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2WVXMQUWAFQDPJNS.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "2WVXMQUWAFQDPJNS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2WVXMQUWAFQDPJNS.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "2WVXMQUWAFQDPJNS.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6425" + }, + "appliesTo" : [ ] + }, + "2WVXMQUWAFQDPJNS.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "2WVXMQUWAFQDPJNS.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "Q48JUPPFZD9KDMH3" : { + "Q48JUPPFZD9KDMH3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Q48JUPPFZD9KDMH3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q48JUPPFZD9KDMH3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Q48JUPPFZD9KDMH3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2220" + }, + "appliesTo" : [ ] + }, + "Q48JUPPFZD9KDMH3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Q48JUPPFZD9KDMH3.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Q48JUPPFZD9KDMH3.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "Q48JUPPFZD9KDMH3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q48JUPPFZD9KDMH3.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "Q48JUPPFZD9KDMH3.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2483" + }, + "appliesTo" : [ ] + }, + "Q48JUPPFZD9KDMH3.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "Q48JUPPFZD9KDMH3.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Q48JUPPFZD9KDMH3.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "Q48JUPPFZD9KDMH3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q48JUPPFZD9KDMH3.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "Q48JUPPFZD9KDMH3.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0990000000" + }, + "appliesTo" : [ ] + }, + "Q48JUPPFZD9KDMH3.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "Q48JUPPFZD9KDMH3.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2617" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q48JUPPFZD9KDMH3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Q48JUPPFZD9KDMH3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q48JUPPFZD9KDMH3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Q48JUPPFZD9KDMH3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1159" + }, + "appliesTo" : [ ] + }, + "Q48JUPPFZD9KDMH3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Q48JUPPFZD9KDMH3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q48JUPPFZD9KDMH3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Q48JUPPFZD9KDMH3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q48JUPPFZD9KDMH3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Q48JUPPFZD9KDMH3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4489" + }, + "appliesTo" : [ ] + }, + "Q48JUPPFZD9KDMH3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Q48JUPPFZD9KDMH3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Q48JUPPFZD9KDMH3.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "Q48JUPPFZD9KDMH3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q48JUPPFZD9KDMH3.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "Q48JUPPFZD9KDMH3.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Q48JUPPFZD9KDMH3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Q48JUPPFZD9KDMH3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q48JUPPFZD9KDMH3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Q48JUPPFZD9KDMH3.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Q48JUPPFZD9KDMH3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Q48JUPPFZD9KDMH3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q48JUPPFZD9KDMH3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Q48JUPPFZD9KDMH3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2353" + }, + "appliesTo" : [ ] + }, + "Q48JUPPFZD9KDMH3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Q48JUPPFZD9KDMH3.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q48JUPPFZD9KDMH3.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "Q48JUPPFZD9KDMH3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q48JUPPFZD9KDMH3.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "Q48JUPPFZD9KDMH3.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5144" + }, + "appliesTo" : [ ] + }, + "Q48JUPPFZD9KDMH3.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "Q48JUPPFZD9KDMH3.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Q48JUPPFZD9KDMH3.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "Q48JUPPFZD9KDMH3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q48JUPPFZD9KDMH3.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "Q48JUPPFZD9KDMH3.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Q48JUPPFZD9KDMH3.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "Q48JUPPFZD9KDMH3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q48JUPPFZD9KDMH3.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "Q48JUPPFZD9KDMH3.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Q48JUPPFZD9KDMH3.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "Q48JUPPFZD9KDMH3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q48JUPPFZD9KDMH3.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "Q48JUPPFZD9KDMH3.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1293" + }, + "appliesTo" : [ ] + }, + "Q48JUPPFZD9KDMH3.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "Q48JUPPFZD9KDMH3.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "W43N2ZPS868KHX7Y" : { + "W43N2ZPS868KHX7Y.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "W43N2ZPS868KHX7Y", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "W43N2ZPS868KHX7Y.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "W43N2ZPS868KHX7Y.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12741" + }, + "appliesTo" : [ ] + }, + "W43N2ZPS868KHX7Y.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "W43N2ZPS868KHX7Y.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "W43N2ZPS868KHX7Y.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "W43N2ZPS868KHX7Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W43N2ZPS868KHX7Y.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "W43N2ZPS868KHX7Y.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14617" + }, + "appliesTo" : [ ] + }, + "W43N2ZPS868KHX7Y.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "W43N2ZPS868KHX7Y.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "W43N2ZPS868KHX7Y.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "W43N2ZPS868KHX7Y", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "W43N2ZPS868KHX7Y.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "W43N2ZPS868KHX7Y.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7456" + }, + "appliesTo" : [ ] + }, + "W43N2ZPS868KHX7Y.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "W43N2ZPS868KHX7Y.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "W43N2ZPS868KHX7Y.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "W43N2ZPS868KHX7Y", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "W43N2ZPS868KHX7Y.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "W43N2ZPS868KHX7Y.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20008" + }, + "appliesTo" : [ ] + }, + "W43N2ZPS868KHX7Y.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "W43N2ZPS868KHX7Y.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "W43N2ZPS868KHX7Y.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "W43N2ZPS868KHX7Y", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "W43N2ZPS868KHX7Y.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "W43N2ZPS868KHX7Y.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22836" + }, + "appliesTo" : [ ] + }, + "W43N2ZPS868KHX7Y.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "W43N2ZPS868KHX7Y.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "W43N2ZPS868KHX7Y.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "W43N2ZPS868KHX7Y", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "W43N2ZPS868KHX7Y.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "W43N2ZPS868KHX7Y.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "W43N2ZPS868KHX7Y.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "W43N2ZPS868KHX7Y", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "W43N2ZPS868KHX7Y.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "W43N2ZPS868KHX7Y.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "W43N2ZPS868KHX7Y.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "W43N2ZPS868KHX7Y", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "W43N2ZPS868KHX7Y.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "W43N2ZPS868KHX7Y.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11312" + }, + "appliesTo" : [ ] + }, + "W43N2ZPS868KHX7Y.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "W43N2ZPS868KHX7Y.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "W43N2ZPS868KHX7Y.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "W43N2ZPS868KHX7Y", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "W43N2ZPS868KHX7Y.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "W43N2ZPS868KHX7Y.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34283" + }, + "appliesTo" : [ ] + }, + "W43N2ZPS868KHX7Y.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "W43N2ZPS868KHX7Y.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "W43N2ZPS868KHX7Y.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "W43N2ZPS868KHX7Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W43N2ZPS868KHX7Y.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "W43N2ZPS868KHX7Y.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "W43N2ZPS868KHX7Y.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "W43N2ZPS868KHX7Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W43N2ZPS868KHX7Y.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "W43N2ZPS868KHX7Y.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7486" + }, + "appliesTo" : [ ] + }, + "W43N2ZPS868KHX7Y.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "W43N2ZPS868KHX7Y.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "QG5G45WKDWDDHTFV" : { + "QG5G45WKDWDDHTFV.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "QG5G45WKDWDDHTFV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QG5G45WKDWDDHTFV.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "QG5G45WKDWDDHTFV.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0661000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QG5G45WKDWDDHTFV.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QG5G45WKDWDDHTFV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QG5G45WKDWDDHTFV.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QG5G45WKDWDDHTFV.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0575000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QG5G45WKDWDDHTFV.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QG5G45WKDWDDHTFV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QG5G45WKDWDDHTFV.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QG5G45WKDWDDHTFV.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "470" + }, + "appliesTo" : [ ] + }, + "QG5G45WKDWDDHTFV.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QG5G45WKDWDDHTFV.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QG5G45WKDWDDHTFV.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "QG5G45WKDWDDHTFV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QG5G45WKDWDDHTFV.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "QG5G45WKDWDDHTFV.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0401000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QG5G45WKDWDDHTFV.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QG5G45WKDWDDHTFV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QG5G45WKDWDDHTFV.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QG5G45WKDWDDHTFV.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "917" + }, + "appliesTo" : [ ] + }, + "QG5G45WKDWDDHTFV.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QG5G45WKDWDDHTFV.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QG5G45WKDWDDHTFV.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "QG5G45WKDWDDHTFV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QG5G45WKDWDDHTFV.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "QG5G45WKDWDDHTFV.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0461000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QG5G45WKDWDDHTFV.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "QG5G45WKDWDDHTFV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QG5G45WKDWDDHTFV.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "QG5G45WKDWDDHTFV.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0213000000" + }, + "appliesTo" : [ ] + }, + "QG5G45WKDWDDHTFV.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "QG5G45WKDWDDHTFV.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "561" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QG5G45WKDWDDHTFV.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "QG5G45WKDWDDHTFV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QG5G45WKDWDDHTFV.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "QG5G45WKDWDDHTFV.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "541" + }, + "appliesTo" : [ ] + }, + "QG5G45WKDWDDHTFV.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "QG5G45WKDWDDHTFV.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QG5G45WKDWDDHTFV.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QG5G45WKDWDDHTFV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QG5G45WKDWDDHTFV.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QG5G45WKDWDDHTFV.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "488" + }, + "appliesTo" : [ ] + }, + "QG5G45WKDWDDHTFV.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QG5G45WKDWDDHTFV.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0186000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QG5G45WKDWDDHTFV.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QG5G45WKDWDDHTFV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QG5G45WKDWDDHTFV.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QG5G45WKDWDDHTFV.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "240" + }, + "appliesTo" : [ ] + }, + "QG5G45WKDWDDHTFV.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QG5G45WKDWDDHTFV.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0274000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QG5G45WKDWDDHTFV.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "QG5G45WKDWDDHTFV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QG5G45WKDWDDHTFV.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "QG5G45WKDWDDHTFV.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QG5G45WKDWDDHTFV.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "QG5G45WKDWDDHTFV.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1099" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QG5G45WKDWDDHTFV.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "QG5G45WKDWDDHTFV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QG5G45WKDWDDHTFV.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "QG5G45WKDWDDHTFV.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "276" + }, + "appliesTo" : [ ] + }, + "QG5G45WKDWDDHTFV.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "QG5G45WKDWDDHTFV.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0315000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "TSQYYQMSKWVB64XU" : { + "TSQYYQMSKWVB64XU.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "TSQYYQMSKWVB64XU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "TSQYYQMSKWVB64XU.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "TSQYYQMSKWVB64XU.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6410000000" + }, + "appliesTo" : [ ] + }, + "TSQYYQMSKWVB64XU.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "TSQYYQMSKWVB64XU.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24905" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TSQYYQMSKWVB64XU.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TSQYYQMSKWVB64XU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "TSQYYQMSKWVB64XU.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TSQYYQMSKWVB64XU.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32851" + }, + "appliesTo" : [ ] + }, + "TSQYYQMSKWVB64XU.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TSQYYQMSKWVB64XU.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TSQYYQMSKWVB64XU.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "TSQYYQMSKWVB64XU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "TSQYYQMSKWVB64XU.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "TSQYYQMSKWVB64XU.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "40910" + }, + "appliesTo" : [ ] + }, + "TSQYYQMSKWVB64XU.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "TSQYYQMSKWVB64XU.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TSQYYQMSKWVB64XU.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "TSQYYQMSKWVB64XU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TSQYYQMSKWVB64XU.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "TSQYYQMSKWVB64XU.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TSQYYQMSKWVB64XU.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "TSQYYQMSKWVB64XU.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17140" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TSQYYQMSKWVB64XU.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TSQYYQMSKWVB64XU", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "TSQYYQMSKWVB64XU.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TSQYYQMSKWVB64XU.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25228" + }, + "appliesTo" : [ ] + }, + "TSQYYQMSKWVB64XU.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TSQYYQMSKWVB64XU.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TSQYYQMSKWVB64XU.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TSQYYQMSKWVB64XU", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "TSQYYQMSKWVB64XU.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TSQYYQMSKWVB64XU.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15028" + }, + "appliesTo" : [ ] + }, + "TSQYYQMSKWVB64XU.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TSQYYQMSKWVB64XU.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TSQYYQMSKWVB64XU.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "TSQYYQMSKWVB64XU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TSQYYQMSKWVB64XU.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "TSQYYQMSKWVB64XU.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TSQYYQMSKWVB64XU.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TSQYYQMSKWVB64XU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "TSQYYQMSKWVB64XU.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TSQYYQMSKWVB64XU.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9224" + }, + "appliesTo" : [ ] + }, + "TSQYYQMSKWVB64XU.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TSQYYQMSKWVB64XU.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TSQYYQMSKWVB64XU.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TSQYYQMSKWVB64XU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TSQYYQMSKWVB64XU.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TSQYYQMSKWVB64XU.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TSQYYQMSKWVB64XU.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "TSQYYQMSKWVB64XU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TSQYYQMSKWVB64XU.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "TSQYYQMSKWVB64XU.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TSQYYQMSKWVB64XU.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "TSQYYQMSKWVB64XU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TSQYYQMSKWVB64XU.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "TSQYYQMSKWVB64XU.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8164" + }, + "appliesTo" : [ ] + }, + "TSQYYQMSKWVB64XU.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "TSQYYQMSKWVB64XU.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "YP54Q9FFYE6AUN7A" : { + "YP54Q9FFYE6AUN7A.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "YP54Q9FFYE6AUN7A", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "YP54Q9FFYE6AUN7A.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "YP54Q9FFYE6AUN7A.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6444000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YP54Q9FFYE6AUN7A.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "YP54Q9FFYE6AUN7A", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "YP54Q9FFYE6AUN7A.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "YP54Q9FFYE6AUN7A.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3195000000" + }, + "appliesTo" : [ ] + }, + "YP54Q9FFYE6AUN7A.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "YP54Q9FFYE6AUN7A.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8397" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YP54Q9FFYE6AUN7A.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "YP54Q9FFYE6AUN7A", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "YP54Q9FFYE6AUN7A.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "YP54Q9FFYE6AUN7A.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YP54Q9FFYE6AUN7A.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YP54Q9FFYE6AUN7A", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "YP54Q9FFYE6AUN7A.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YP54Q9FFYE6AUN7A.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16472" + }, + "appliesTo" : [ ] + }, + "YP54Q9FFYE6AUN7A.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YP54Q9FFYE6AUN7A.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YP54Q9FFYE6AUN7A.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "YP54Q9FFYE6AUN7A", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "YP54Q9FFYE6AUN7A.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "YP54Q9FFYE6AUN7A.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16759" + }, + "appliesTo" : [ ] + }, + "YP54Q9FFYE6AUN7A.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "YP54Q9FFYE6AUN7A.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YP54Q9FFYE6AUN7A.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "YP54Q9FFYE6AUN7A", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YP54Q9FFYE6AUN7A.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "YP54Q9FFYE6AUN7A.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5879" + }, + "appliesTo" : [ ] + }, + "YP54Q9FFYE6AUN7A.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "YP54Q9FFYE6AUN7A.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YP54Q9FFYE6AUN7A.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YP54Q9FFYE6AUN7A", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "YP54Q9FFYE6AUN7A.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YP54Q9FFYE6AUN7A.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8282" + }, + "appliesTo" : [ ] + }, + "YP54Q9FFYE6AUN7A.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YP54Q9FFYE6AUN7A.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3152000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YP54Q9FFYE6AUN7A.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YP54Q9FFYE6AUN7A", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "YP54Q9FFYE6AUN7A.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YP54Q9FFYE6AUN7A.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5766" + }, + "appliesTo" : [ ] + }, + "YP54Q9FFYE6AUN7A.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YP54Q9FFYE6AUN7A.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YP54Q9FFYE6AUN7A.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YP54Q9FFYE6AUN7A", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "YP54Q9FFYE6AUN7A.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YP54Q9FFYE6AUN7A.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6644000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YP54Q9FFYE6AUN7A.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YP54Q9FFYE6AUN7A", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "YP54Q9FFYE6AUN7A.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YP54Q9FFYE6AUN7A.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2891" + }, + "appliesTo" : [ ] + }, + "YP54Q9FFYE6AUN7A.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YP54Q9FFYE6AUN7A.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YP54Q9FFYE6AUN7A.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "YP54Q9FFYE6AUN7A", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YP54Q9FFYE6AUN7A.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "YP54Q9FFYE6AUN7A.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6783000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YP54Q9FFYE6AUN7A.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "YP54Q9FFYE6AUN7A", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YP54Q9FFYE6AUN7A.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "YP54Q9FFYE6AUN7A.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2949" + }, + "appliesTo" : [ ] + }, + "YP54Q9FFYE6AUN7A.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "YP54Q9FFYE6AUN7A.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3366000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "46RTKB3PY2USZ3JU" : { + "46RTKB3PY2USZ3JU.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "46RTKB3PY2USZ3JU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "46RTKB3PY2USZ3JU.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "46RTKB3PY2USZ3JU.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2040000000" + }, + "appliesTo" : [ ] + }, + "46RTKB3PY2USZ3JU.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "46RTKB3PY2USZ3JU.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1787" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "46RTKB3PY2USZ3JU.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "46RTKB3PY2USZ3JU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "46RTKB3PY2USZ3JU.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "46RTKB3PY2USZ3JU.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "46RTKB3PY2USZ3JU.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "46RTKB3PY2USZ3JU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "46RTKB3PY2USZ3JU.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "46RTKB3PY2USZ3JU.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "46RTKB3PY2USZ3JU.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "46RTKB3PY2USZ3JU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "46RTKB3PY2USZ3JU.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "46RTKB3PY2USZ3JU.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3467" + }, + "appliesTo" : [ ] + }, + "46RTKB3PY2USZ3JU.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "46RTKB3PY2USZ3JU.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "46RTKB3PY2USZ3JU.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "46RTKB3PY2USZ3JU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "46RTKB3PY2USZ3JU.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "46RTKB3PY2USZ3JU.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "46RTKB3PY2USZ3JU.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "46RTKB3PY2USZ3JU.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3503" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "46RTKB3PY2USZ3JU.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "46RTKB3PY2USZ3JU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "46RTKB3PY2USZ3JU.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "46RTKB3PY2USZ3JU.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "46RTKB3PY2USZ3JU.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "46RTKB3PY2USZ3JU.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6518" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "UKDR4WHMWWJ5CSDR" : { + "UKDR4WHMWWJ5CSDR.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "UKDR4WHMWWJ5CSDR", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "UKDR4WHMWWJ5CSDR.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "UKDR4WHMWWJ5CSDR.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "488" + }, + "appliesTo" : [ ] + }, + "UKDR4WHMWWJ5CSDR.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "UKDR4WHMWWJ5CSDR.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0186000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "UKDR4WHMWWJ5CSDR.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "UKDR4WHMWWJ5CSDR", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "UKDR4WHMWWJ5CSDR.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "UKDR4WHMWWJ5CSDR.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0575000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "UKDR4WHMWWJ5CSDR.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "UKDR4WHMWWJ5CSDR", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "UKDR4WHMWWJ5CSDR.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "UKDR4WHMWWJ5CSDR.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "240" + }, + "appliesTo" : [ ] + }, + "UKDR4WHMWWJ5CSDR.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "UKDR4WHMWWJ5CSDR.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0274000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "UKDR4WHMWWJ5CSDR.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "UKDR4WHMWWJ5CSDR", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "UKDR4WHMWWJ5CSDR.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "UKDR4WHMWWJ5CSDR.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0401000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "UKDR4WHMWWJ5CSDR.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "UKDR4WHMWWJ5CSDR", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "UKDR4WHMWWJ5CSDR.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "UKDR4WHMWWJ5CSDR.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "UKDR4WHMWWJ5CSDR.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "UKDR4WHMWWJ5CSDR.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "470" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "UKDR4WHMWWJ5CSDR.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "UKDR4WHMWWJ5CSDR", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "UKDR4WHMWWJ5CSDR.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "UKDR4WHMWWJ5CSDR.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "UKDR4WHMWWJ5CSDR.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "UKDR4WHMWWJ5CSDR.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "917" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "5MJUCCSSP8MZ34U5" : { + "5MJUCCSSP8MZ34U5.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "5MJUCCSSP8MZ34U5", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "5MJUCCSSP8MZ34U5.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "5MJUCCSSP8MZ34U5.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "5MJUCCSSP8MZ34U5.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "5MJUCCSSP8MZ34U5", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "5MJUCCSSP8MZ34U5.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "5MJUCCSSP8MZ34U5.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "5MJUCCSSP8MZ34U5.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "5MJUCCSSP8MZ34U5.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2669" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5MJUCCSSP8MZ34U5.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "5MJUCCSSP8MZ34U5", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "5MJUCCSSP8MZ34U5.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "5MJUCCSSP8MZ34U5.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2112" + }, + "appliesTo" : [ ] + }, + "5MJUCCSSP8MZ34U5.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "5MJUCCSSP8MZ34U5.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "5MJUCCSSP8MZ34U5.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "5MJUCCSSP8MZ34U5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "5MJUCCSSP8MZ34U5.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "5MJUCCSSP8MZ34U5.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1360" + }, + "appliesTo" : [ ] + }, + "5MJUCCSSP8MZ34U5.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "5MJUCCSSP8MZ34U5.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5MJUCCSSP8MZ34U5.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "5MJUCCSSP8MZ34U5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "5MJUCCSSP8MZ34U5.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "5MJUCCSSP8MZ34U5.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0560000000" + }, + "appliesTo" : [ ] + }, + "5MJUCCSSP8MZ34U5.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "5MJUCCSSP8MZ34U5.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1368" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5MJUCCSSP8MZ34U5.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "5MJUCCSSP8MZ34U5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5MJUCCSSP8MZ34U5.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "5MJUCCSSP8MZ34U5.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "813" + }, + "appliesTo" : [ ] + }, + "5MJUCCSSP8MZ34U5.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "5MJUCCSSP8MZ34U5.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "5MJUCCSSP8MZ34U5.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "5MJUCCSSP8MZ34U5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5MJUCCSSP8MZ34U5.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "5MJUCCSSP8MZ34U5.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "5MJUCCSSP8MZ34U5.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "5MJUCCSSP8MZ34U5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "5MJUCCSSP8MZ34U5.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "5MJUCCSSP8MZ34U5.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "828" + }, + "appliesTo" : [ ] + }, + "5MJUCCSSP8MZ34U5.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "5MJUCCSSP8MZ34U5.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5MJUCCSSP8MZ34U5.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "5MJUCCSSP8MZ34U5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "5MJUCCSSP8MZ34U5.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "5MJUCCSSP8MZ34U5.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "5MJUCCSSP8MZ34U5.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "5MJUCCSSP8MZ34U5", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "5MJUCCSSP8MZ34U5.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "5MJUCCSSP8MZ34U5.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3554" + }, + "appliesTo" : [ ] + }, + "5MJUCCSSP8MZ34U5.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "5MJUCCSSP8MZ34U5.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "5MJUCCSSP8MZ34U5.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "5MJUCCSSP8MZ34U5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5MJUCCSSP8MZ34U5.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "5MJUCCSSP8MZ34U5.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1538" + }, + "appliesTo" : [ ] + }, + "5MJUCCSSP8MZ34U5.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "5MJUCCSSP8MZ34U5.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "M585HN87CC23QMVN" : { + "M585HN87CC23QMVN.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "M585HN87CC23QMVN", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "M585HN87CC23QMVN.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "M585HN87CC23QMVN.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3589" + }, + "appliesTo" : [ ] + }, + "M585HN87CC23QMVN.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "M585HN87CC23QMVN.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "M585HN87CC23QMVN.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "M585HN87CC23QMVN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M585HN87CC23QMVN.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "M585HN87CC23QMVN.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1589000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "M585HN87CC23QMVN.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "M585HN87CC23QMVN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M585HN87CC23QMVN.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "M585HN87CC23QMVN.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1778000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "M585HN87CC23QMVN.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "M585HN87CC23QMVN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M585HN87CC23QMVN.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "M585HN87CC23QMVN.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2114" + }, + "appliesTo" : [ ] + }, + "M585HN87CC23QMVN.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "M585HN87CC23QMVN.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "M585HN87CC23QMVN.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "M585HN87CC23QMVN", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "M585HN87CC23QMVN.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "M585HN87CC23QMVN.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1892" + }, + "appliesTo" : [ ] + }, + "M585HN87CC23QMVN.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "M585HN87CC23QMVN.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "M585HN87CC23QMVN.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "M585HN87CC23QMVN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M585HN87CC23QMVN.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "M585HN87CC23QMVN.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4147" + }, + "appliesTo" : [ ] + }, + "M585HN87CC23QMVN.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "M585HN87CC23QMVN.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "M585HN87CC23QMVN.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "M585HN87CC23QMVN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M585HN87CC23QMVN.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "M585HN87CC23QMVN.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "M585HN87CC23QMVN.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "M585HN87CC23QMVN.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2028" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "M585HN87CC23QMVN.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "M585HN87CC23QMVN", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "M585HN87CC23QMVN.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "M585HN87CC23QMVN.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1799" + }, + "appliesTo" : [ ] + }, + "M585HN87CC23QMVN.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "M585HN87CC23QMVN.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "M585HN87CC23QMVN.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "M585HN87CC23QMVN", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "M585HN87CC23QMVN.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "M585HN87CC23QMVN.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "946" + }, + "appliesTo" : [ ] + }, + "M585HN87CC23QMVN.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "M585HN87CC23QMVN.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "M585HN87CC23QMVN.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "M585HN87CC23QMVN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M585HN87CC23QMVN.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "M585HN87CC23QMVN.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2178000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "M585HN87CC23QMVN.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "M585HN87CC23QMVN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M585HN87CC23QMVN.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "M585HN87CC23QMVN.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1063" + }, + "appliesTo" : [ ] + }, + "M585HN87CC23QMVN.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "M585HN87CC23QMVN.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1142000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "M585HN87CC23QMVN.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "M585HN87CC23QMVN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M585HN87CC23QMVN.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "M585HN87CC23QMVN.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2455000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "Y44NT84DJSFFW437" : { + "Y44NT84DJSFFW437.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Y44NT84DJSFFW437", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Y44NT84DJSFFW437.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Y44NT84DJSFFW437.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1360000000" + }, + "appliesTo" : [ ] + }, + "Y44NT84DJSFFW437.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Y44NT84DJSFFW437.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3574" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y44NT84DJSFFW437.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "Y44NT84DJSFFW437", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Y44NT84DJSFFW437.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "Y44NT84DJSFFW437.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7442" + }, + "appliesTo" : [ ] + }, + "Y44NT84DJSFFW437.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "Y44NT84DJSFFW437.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Y44NT84DJSFFW437.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "Y44NT84DJSFFW437", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Y44NT84DJSFFW437.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "Y44NT84DJSFFW437.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Y44NT84DJSFFW437.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Y44NT84DJSFFW437", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Y44NT84DJSFFW437.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Y44NT84DJSFFW437.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "Y44NT84DJSFFW437.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Y44NT84DJSFFW437.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7009" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Y44NT84DJSFFW437.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "Y44NT84DJSFFW437", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Y44NT84DJSFFW437.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "Y44NT84DJSFFW437.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2933000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Y44NT84DJSFFW437.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "Y44NT84DJSFFW437", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Y44NT84DJSFFW437.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "Y44NT84DJSFFW437.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1666000000" + }, + "appliesTo" : [ ] + }, + "Y44NT84DJSFFW437.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "Y44NT84DJSFFW437.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1460" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y44NT84DJSFFW437.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "Y44NT84DJSFFW437", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Y44NT84DJSFFW437.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "Y44NT84DJSFFW437.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3407000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Y44NT84DJSFFW437.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "Y44NT84DJSFFW437", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Y44NT84DJSFFW437.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "Y44NT84DJSFFW437.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3748" + }, + "appliesTo" : [ ] + }, + "Y44NT84DJSFFW437.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "Y44NT84DJSFFW437.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1426000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y44NT84DJSFFW437.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Y44NT84DJSFFW437", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Y44NT84DJSFFW437.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Y44NT84DJSFFW437.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "Y44NT84DJSFFW437.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Y44NT84DJSFFW437.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2726" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Y44NT84DJSFFW437.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "Y44NT84DJSFFW437", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Y44NT84DJSFFW437.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "Y44NT84DJSFFW437.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2893" + }, + "appliesTo" : [ ] + }, + "Y44NT84DJSFFW437.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "Y44NT84DJSFFW437.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Y44NT84DJSFFW437.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Y44NT84DJSFFW437", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Y44NT84DJSFFW437.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Y44NT84DJSFFW437.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1374" + }, + "appliesTo" : [ ] + }, + "Y44NT84DJSFFW437.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Y44NT84DJSFFW437.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1569000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y44NT84DJSFFW437.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Y44NT84DJSFFW437", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Y44NT84DJSFFW437.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Y44NT84DJSFFW437.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3203000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "UA4QBJUCBNHDQX2B" : { + "UA4QBJUCBNHDQX2B.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "UA4QBJUCBNHDQX2B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UA4QBJUCBNHDQX2B.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "UA4QBJUCBNHDQX2B.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19683" + }, + "appliesTo" : [ ] + }, + "UA4QBJUCBNHDQX2B.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "UA4QBJUCBNHDQX2B.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "UA4QBJUCBNHDQX2B.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "UA4QBJUCBNHDQX2B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UA4QBJUCBNHDQX2B.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "UA4QBJUCBNHDQX2B.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.3960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "UA4QBJUCBNHDQX2B.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "UA4QBJUCBNHDQX2B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UA4QBJUCBNHDQX2B.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "UA4QBJUCBNHDQX2B.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "UA4QBJUCBNHDQX2B.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "UA4QBJUCBNHDQX2B.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "103215" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "UA4QBJUCBNHDQX2B.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "UA4QBJUCBNHDQX2B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UA4QBJUCBNHDQX2B.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "UA4QBJUCBNHDQX2B.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "50779" + }, + "appliesTo" : [ ] + }, + "UA4QBJUCBNHDQX2B.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "UA4QBJUCBNHDQX2B.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "UA4QBJUCBNHDQX2B.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "UA4QBJUCBNHDQX2B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UA4QBJUCBNHDQX2B.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "UA4QBJUCBNHDQX2B.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "UA4QBJUCBNHDQX2B.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "UA4QBJUCBNHDQX2B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UA4QBJUCBNHDQX2B.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "UA4QBJUCBNHDQX2B.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "UA4QBJUCBNHDQX2B.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "UA4QBJUCBNHDQX2B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UA4QBJUCBNHDQX2B.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "UA4QBJUCBNHDQX2B.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37908" + }, + "appliesTo" : [ ] + }, + "UA4QBJUCBNHDQX2B.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "UA4QBJUCBNHDQX2B.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "UA4QBJUCBNHDQX2B.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "UA4QBJUCBNHDQX2B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UA4QBJUCBNHDQX2B.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "UA4QBJUCBNHDQX2B.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "100776" + }, + "appliesTo" : [ ] + }, + "UA4QBJUCBNHDQX2B.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "UA4QBJUCBNHDQX2B.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "UA4QBJUCBNHDQX2B.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "UA4QBJUCBNHDQX2B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UA4QBJUCBNHDQX2B.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "UA4QBJUCBNHDQX2B.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1730000000" + }, + "appliesTo" : [ ] + }, + "UA4QBJUCBNHDQX2B.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "UA4QBJUCBNHDQX2B.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19040" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "UA4QBJUCBNHDQX2B.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "UA4QBJUCBNHDQX2B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UA4QBJUCBNHDQX2B.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "UA4QBJUCBNHDQX2B.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "51758" + }, + "appliesTo" : [ ] + }, + "UA4QBJUCBNHDQX2B.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "UA4QBJUCBNHDQX2B.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "UA4QBJUCBNHDQX2B.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "UA4QBJUCBNHDQX2B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UA4QBJUCBNHDQX2B.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "UA4QBJUCBNHDQX2B.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39168" + }, + "appliesTo" : [ ] + }, + "UA4QBJUCBNHDQX2B.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "UA4QBJUCBNHDQX2B.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "UA4QBJUCBNHDQX2B.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "UA4QBJUCBNHDQX2B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UA4QBJUCBNHDQX2B.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "UA4QBJUCBNHDQX2B.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "TUK52HKAU24AGZAB" : { + "TUK52HKAU24AGZAB.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TUK52HKAU24AGZAB", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "TUK52HKAU24AGZAB.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TUK52HKAU24AGZAB.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1945" + }, + "appliesTo" : [ ] + }, + "TUK52HKAU24AGZAB.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TUK52HKAU24AGZAB.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TUK52HKAU24AGZAB.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "TUK52HKAU24AGZAB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TUK52HKAU24AGZAB.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "TUK52HKAU24AGZAB.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TUK52HKAU24AGZAB.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "TUK52HKAU24AGZAB.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2020" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TUK52HKAU24AGZAB.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TUK52HKAU24AGZAB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TUK52HKAU24AGZAB.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TUK52HKAU24AGZAB.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "972" + }, + "appliesTo" : [ ] + }, + "TUK52HKAU24AGZAB.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TUK52HKAU24AGZAB.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TUK52HKAU24AGZAB.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TUK52HKAU24AGZAB", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "TUK52HKAU24AGZAB.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TUK52HKAU24AGZAB.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4880" + }, + "appliesTo" : [ ] + }, + "TUK52HKAU24AGZAB.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TUK52HKAU24AGZAB.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TUK52HKAU24AGZAB.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "TUK52HKAU24AGZAB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TUK52HKAU24AGZAB.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "TUK52HKAU24AGZAB.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TUK52HKAU24AGZAB.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TUK52HKAU24AGZAB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TUK52HKAU24AGZAB.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TUK52HKAU24AGZAB.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TUK52HKAU24AGZAB.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "TUK52HKAU24AGZAB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TUK52HKAU24AGZAB.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "TUK52HKAU24AGZAB.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TUK52HKAU24AGZAB.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "TUK52HKAU24AGZAB.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5498" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TUK52HKAU24AGZAB.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TUK52HKAU24AGZAB", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "TUK52HKAU24AGZAB.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TUK52HKAU24AGZAB.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2594" + }, + "appliesTo" : [ ] + }, + "TUK52HKAU24AGZAB.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TUK52HKAU24AGZAB.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TUK52HKAU24AGZAB.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "TUK52HKAU24AGZAB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TUK52HKAU24AGZAB.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "TUK52HKAU24AGZAB.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2761" + }, + "appliesTo" : [ ] + }, + "TUK52HKAU24AGZAB.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "TUK52HKAU24AGZAB.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TUK52HKAU24AGZAB.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "TUK52HKAU24AGZAB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TUK52HKAU24AGZAB.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "TUK52HKAU24AGZAB.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TUK52HKAU24AGZAB.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "TUK52HKAU24AGZAB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TUK52HKAU24AGZAB.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "TUK52HKAU24AGZAB.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1160000000" + }, + "appliesTo" : [ ] + }, + "TUK52HKAU24AGZAB.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "TUK52HKAU24AGZAB.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1016" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TUK52HKAU24AGZAB.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "TUK52HKAU24AGZAB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TUK52HKAU24AGZAB.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "TUK52HKAU24AGZAB.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "RRRPJJTQ9JB8YF5W" : { + "RRRPJJTQ9JB8YF5W.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "RRRPJJTQ9JB8YF5W", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "RRRPJJTQ9JB8YF5W.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "RRRPJJTQ9JB8YF5W.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1526" + }, + "appliesTo" : [ ] + }, + "RRRPJJTQ9JB8YF5W.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "RRRPJJTQ9JB8YF5W.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RRRPJJTQ9JB8YF5W.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "RRRPJJTQ9JB8YF5W", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "RRRPJJTQ9JB8YF5W.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "RRRPJJTQ9JB8YF5W.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RRRPJJTQ9JB8YF5W.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "RRRPJJTQ9JB8YF5W", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "RRRPJJTQ9JB8YF5W.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "RRRPJJTQ9JB8YF5W.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1079" + }, + "appliesTo" : [ ] + }, + "RRRPJJTQ9JB8YF5W.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "RRRPJJTQ9JB8YF5W.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RRRPJJTQ9JB8YF5W.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "RRRPJJTQ9JB8YF5W", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "RRRPJJTQ9JB8YF5W.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "RRRPJJTQ9JB8YF5W.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "RRRPJJTQ9JB8YF5W.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "RRRPJJTQ9JB8YF5W.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1415" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RRRPJJTQ9JB8YF5W.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "RRRPJJTQ9JB8YF5W", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "RRRPJJTQ9JB8YF5W.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "RRRPJJTQ9JB8YF5W.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3315" + }, + "appliesTo" : [ ] + }, + "RRRPJJTQ9JB8YF5W.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "RRRPJJTQ9JB8YF5W.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RRRPJJTQ9JB8YF5W.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "RRRPJJTQ9JB8YF5W", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RRRPJJTQ9JB8YF5W.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "RRRPJJTQ9JB8YF5W.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RRRPJJTQ9JB8YF5W.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "RRRPJJTQ9JB8YF5W", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "RRRPJJTQ9JB8YF5W.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "RRRPJJTQ9JB8YF5W.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RRRPJJTQ9JB8YF5W.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "RRRPJJTQ9JB8YF5W", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "RRRPJJTQ9JB8YF5W.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "RRRPJJTQ9JB8YF5W.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "565" + }, + "appliesTo" : [ ] + }, + "RRRPJJTQ9JB8YF5W.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "RRRPJJTQ9JB8YF5W.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RRRPJJTQ9JB8YF5W.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "RRRPJJTQ9JB8YF5W", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RRRPJJTQ9JB8YF5W.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "RRRPJJTQ9JB8YF5W.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1170000000" + }, + "appliesTo" : [ ] + }, + "RRRPJJTQ9JB8YF5W.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "RRRPJJTQ9JB8YF5W.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "497" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RRRPJJTQ9JB8YF5W.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "RRRPJJTQ9JB8YF5W", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RRRPJJTQ9JB8YF5W.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "RRRPJJTQ9JB8YF5W.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1500" + }, + "appliesTo" : [ ] + }, + "RRRPJJTQ9JB8YF5W.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "RRRPJJTQ9JB8YF5W.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RRRPJJTQ9JB8YF5W.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "RRRPJJTQ9JB8YF5W", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "RRRPJJTQ9JB8YF5W.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "RRRPJJTQ9JB8YF5W.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3990" + }, + "appliesTo" : [ ] + }, + "RRRPJJTQ9JB8YF5W.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "RRRPJJTQ9JB8YF5W.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "4CYRKREB7U8REQP5" : { + "4CYRKREB7U8REQP5.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "4CYRKREB7U8REQP5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4CYRKREB7U8REQP5.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "4CYRKREB7U8REQP5.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "4CYRKREB7U8REQP5.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "4CYRKREB7U8REQP5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4CYRKREB7U8REQP5.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "4CYRKREB7U8REQP5.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0400000000" + }, + "appliesTo" : [ ] + }, + "4CYRKREB7U8REQP5.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "4CYRKREB7U8REQP5.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9114" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4CYRKREB7U8REQP5.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "4CYRKREB7U8REQP5", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "4CYRKREB7U8REQP5.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "4CYRKREB7U8REQP5.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "4CYRKREB7U8REQP5.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "4CYRKREB7U8REQP5.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17704" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4CYRKREB7U8REQP5.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "4CYRKREB7U8REQP5", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "4CYRKREB7U8REQP5.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "4CYRKREB7U8REQP5.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9470000000" + }, + "appliesTo" : [ ] + }, + "4CYRKREB7U8REQP5.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "4CYRKREB7U8REQP5.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24891" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4CYRKREB7U8REQP5.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "4CYRKREB7U8REQP5", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "4CYRKREB7U8REQP5.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "4CYRKREB7U8REQP5.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26195" + }, + "appliesTo" : [ ] + }, + "4CYRKREB7U8REQP5.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "4CYRKREB7U8REQP5.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4CYRKREB7U8REQP5.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "4CYRKREB7U8REQP5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4CYRKREB7U8REQP5.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "4CYRKREB7U8REQP5.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18158" + }, + "appliesTo" : [ ] + }, + "4CYRKREB7U8REQP5.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "4CYRKREB7U8REQP5.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4CYRKREB7U8REQP5.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "4CYRKREB7U8REQP5", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "4CYRKREB7U8REQP5.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "4CYRKREB7U8REQP5.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "49451" + }, + "appliesTo" : [ ] + }, + "4CYRKREB7U8REQP5.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "4CYRKREB7U8REQP5.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4CYRKREB7U8REQP5.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "4CYRKREB7U8REQP5", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "4CYRKREB7U8REQP5.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "4CYRKREB7U8REQP5.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "4CYRKREB7U8REQP5.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "4CYRKREB7U8REQP5", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "4CYRKREB7U8REQP5.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "4CYRKREB7U8REQP5.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "52227" + }, + "appliesTo" : [ ] + }, + "4CYRKREB7U8REQP5.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "4CYRKREB7U8REQP5.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4CYRKREB7U8REQP5.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "4CYRKREB7U8REQP5", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "4CYRKREB7U8REQP5.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "4CYRKREB7U8REQP5.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "4CYRKREB7U8REQP5.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "4CYRKREB7U8REQP5", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "4CYRKREB7U8REQP5.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "4CYRKREB7U8REQP5.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8882" + }, + "appliesTo" : [ ] + }, + "4CYRKREB7U8REQP5.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "4CYRKREB7U8REQP5.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "KX42WEB78EWUHU8Q" : { + "KX42WEB78EWUHU8Q.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "KX42WEB78EWUHU8Q", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "KX42WEB78EWUHU8Q.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "KX42WEB78EWUHU8Q.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2450" + }, + "appliesTo" : [ ] + }, + "KX42WEB78EWUHU8Q.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "KX42WEB78EWUHU8Q.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2726000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KX42WEB78EWUHU8Q.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "KX42WEB78EWUHU8Q", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "KX42WEB78EWUHU8Q.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "KX42WEB78EWUHU8Q.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5671" + }, + "appliesTo" : [ ] + }, + "KX42WEB78EWUHU8Q.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "KX42WEB78EWUHU8Q.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2154000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KX42WEB78EWUHU8Q.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "KX42WEB78EWUHU8Q", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "KX42WEB78EWUHU8Q.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "KX42WEB78EWUHU8Q.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9390" + }, + "appliesTo" : [ ] + }, + "KX42WEB78EWUHU8Q.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "KX42WEB78EWUHU8Q.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KX42WEB78EWUHU8Q.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "KX42WEB78EWUHU8Q", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "KX42WEB78EWUHU8Q.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "KX42WEB78EWUHU8Q.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4702000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KX42WEB78EWUHU8Q.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "KX42WEB78EWUHU8Q", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "KX42WEB78EWUHU8Q.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "KX42WEB78EWUHU8Q.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1890000000" + }, + "appliesTo" : [ ] + }, + "KX42WEB78EWUHU8Q.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "KX42WEB78EWUHU8Q.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4977" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KX42WEB78EWUHU8Q.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "KX42WEB78EWUHU8Q", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "KX42WEB78EWUHU8Q.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "KX42WEB78EWUHU8Q.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4747" + }, + "appliesTo" : [ ] + }, + "KX42WEB78EWUHU8Q.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "KX42WEB78EWUHU8Q.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KX42WEB78EWUHU8Q.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "KX42WEB78EWUHU8Q", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KX42WEB78EWUHU8Q.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "KX42WEB78EWUHU8Q.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2791" + }, + "appliesTo" : [ ] + }, + "KX42WEB78EWUHU8Q.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "KX42WEB78EWUHU8Q.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3115000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KX42WEB78EWUHU8Q.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "KX42WEB78EWUHU8Q", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "KX42WEB78EWUHU8Q.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "KX42WEB78EWUHU8Q.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5782000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KX42WEB78EWUHU8Q.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "KX42WEB78EWUHU8Q", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KX42WEB78EWUHU8Q.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "KX42WEB78EWUHU8Q.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6599000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KX42WEB78EWUHU8Q.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "KX42WEB78EWUHU8Q", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "KX42WEB78EWUHU8Q.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "KX42WEB78EWUHU8Q.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4132000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KX42WEB78EWUHU8Q.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "KX42WEB78EWUHU8Q", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KX42WEB78EWUHU8Q.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "KX42WEB78EWUHU8Q.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5416" + }, + "appliesTo" : [ ] + }, + "KX42WEB78EWUHU8Q.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "KX42WEB78EWUHU8Q.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KX42WEB78EWUHU8Q.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "KX42WEB78EWUHU8Q", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "KX42WEB78EWUHU8Q.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "KX42WEB78EWUHU8Q.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11119" + }, + "appliesTo" : [ ] + }, + "KX42WEB78EWUHU8Q.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "KX42WEB78EWUHU8Q.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "7H3YAVFCE5P4TFBT" : { + "7H3YAVFCE5P4TFBT.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "7H3YAVFCE5P4TFBT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7H3YAVFCE5P4TFBT.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "7H3YAVFCE5P4TFBT.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "60391" + }, + "appliesTo" : [ ] + }, + "7H3YAVFCE5P4TFBT.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "7H3YAVFCE5P4TFBT.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.8940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7H3YAVFCE5P4TFBT.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "7H3YAVFCE5P4TFBT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7H3YAVFCE5P4TFBT.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "7H3YAVFCE5P4TFBT.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "7H3YAVFCE5P4TFBT.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "7H3YAVFCE5P4TFBT.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "120461" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7H3YAVFCE5P4TFBT.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "7H3YAVFCE5P4TFBT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7H3YAVFCE5P4TFBT.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "7H3YAVFCE5P4TFBT.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "122825" + }, + "appliesTo" : [ ] + }, + "7H3YAVFCE5P4TFBT.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "7H3YAVFCE5P4TFBT.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7H3YAVFCE5P4TFBT.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "7H3YAVFCE5P4TFBT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7H3YAVFCE5P4TFBT.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "7H3YAVFCE5P4TFBT.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.2340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7H3YAVFCE5P4TFBT.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "7H3YAVFCE5P4TFBT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7H3YAVFCE5P4TFBT.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "7H3YAVFCE5P4TFBT.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "175022" + }, + "appliesTo" : [ ] + }, + "7H3YAVFCE5P4TFBT.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "7H3YAVFCE5P4TFBT.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.6600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7H3YAVFCE5P4TFBT.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "7H3YAVFCE5P4TFBT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7H3YAVFCE5P4TFBT.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "7H3YAVFCE5P4TFBT.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.0320000000" + }, + "appliesTo" : [ ] + }, + "7H3YAVFCE5P4TFBT.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "7H3YAVFCE5P4TFBT.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "61598" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7H3YAVFCE5P4TFBT.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "7H3YAVFCE5P4TFBT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7H3YAVFCE5P4TFBT.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "7H3YAVFCE5P4TFBT.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.1690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7H3YAVFCE5P4TFBT.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "7H3YAVFCE5P4TFBT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7H3YAVFCE5P4TFBT.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "7H3YAVFCE5P4TFBT.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.8800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7H3YAVFCE5P4TFBT.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "7H3YAVFCE5P4TFBT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7H3YAVFCE5P4TFBT.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "7H3YAVFCE5P4TFBT.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "349326" + }, + "appliesTo" : [ ] + }, + "7H3YAVFCE5P4TFBT.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "7H3YAVFCE5P4TFBT.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7H3YAVFCE5P4TFBT.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "7H3YAVFCE5P4TFBT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7H3YAVFCE5P4TFBT.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "7H3YAVFCE5P4TFBT.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.5700000000" + }, + "appliesTo" : [ ] + }, + "7H3YAVFCE5P4TFBT.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "7H3YAVFCE5P4TFBT.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "172650" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7H3YAVFCE5P4TFBT.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "7H3YAVFCE5P4TFBT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7H3YAVFCE5P4TFBT.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "7H3YAVFCE5P4TFBT.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "343428" + }, + "appliesTo" : [ ] + }, + "7H3YAVFCE5P4TFBT.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "7H3YAVFCE5P4TFBT.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7H3YAVFCE5P4TFBT.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "7H3YAVFCE5P4TFBT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7H3YAVFCE5P4TFBT.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "7H3YAVFCE5P4TFBT.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.4290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "PYM3KA9YWBXZT4WT" : { + "PYM3KA9YWBXZT4WT.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "PYM3KA9YWBXZT4WT", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "PYM3KA9YWBXZT4WT.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "PYM3KA9YWBXZT4WT.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2232" + }, + "appliesTo" : [ ] + }, + "PYM3KA9YWBXZT4WT.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "PYM3KA9YWBXZT4WT.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PYM3KA9YWBXZT4WT.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "PYM3KA9YWBXZT4WT", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "PYM3KA9YWBXZT4WT.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "PYM3KA9YWBXZT4WT.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3380" + }, + "appliesTo" : [ ] + }, + "PYM3KA9YWBXZT4WT.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "PYM3KA9YWBXZT4WT.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PYM3KA9YWBXZT4WT.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "PYM3KA9YWBXZT4WT", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "PYM3KA9YWBXZT4WT.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "PYM3KA9YWBXZT4WT.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "PYM3KA9YWBXZT4WT.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "PYM3KA9YWBXZT4WT", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "PYM3KA9YWBXZT4WT.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "PYM3KA9YWBXZT4WT.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6824" + }, + "appliesTo" : [ ] + }, + "PYM3KA9YWBXZT4WT.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "PYM3KA9YWBXZT4WT.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PYM3KA9YWBXZT4WT.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "PYM3KA9YWBXZT4WT", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "PYM3KA9YWBXZT4WT.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "PYM3KA9YWBXZT4WT.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1260000000" + }, + "appliesTo" : [ ] + }, + "PYM3KA9YWBXZT4WT.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "PYM3KA9YWBXZT4WT.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5903" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PYM3KA9YWBXZT4WT.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "PYM3KA9YWBXZT4WT", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "PYM3KA9YWBXZT4WT.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "PYM3KA9YWBXZT4WT.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4277" + }, + "appliesTo" : [ ] + }, + "PYM3KA9YWBXZT4WT.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "PYM3KA9YWBXZT4WT.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PYM3KA9YWBXZT4WT.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "PYM3KA9YWBXZT4WT", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "PYM3KA9YWBXZT4WT.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "PYM3KA9YWBXZT4WT.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "PYM3KA9YWBXZT4WT.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "PYM3KA9YWBXZT4WT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PYM3KA9YWBXZT4WT.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "PYM3KA9YWBXZT4WT.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1983" + }, + "appliesTo" : [ ] + }, + "PYM3KA9YWBXZT4WT.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "PYM3KA9YWBXZT4WT.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PYM3KA9YWBXZT4WT.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "PYM3KA9YWBXZT4WT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PYM3KA9YWBXZT4WT.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "PYM3KA9YWBXZT4WT.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "PYM3KA9YWBXZT4WT.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "PYM3KA9YWBXZT4WT", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "PYM3KA9YWBXZT4WT.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "PYM3KA9YWBXZT4WT.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9037" + }, + "appliesTo" : [ ] + }, + "PYM3KA9YWBXZT4WT.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "PYM3KA9YWBXZT4WT.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PYM3KA9YWBXZT4WT.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "PYM3KA9YWBXZT4WT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PYM3KA9YWBXZT4WT.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "PYM3KA9YWBXZT4WT.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "PYM3KA9YWBXZT4WT.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "PYM3KA9YWBXZT4WT.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3832" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "38AX843AAXNB6F95" : { + "38AX843AAXNB6F95.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "38AX843AAXNB6F95", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "38AX843AAXNB6F95.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "38AX843AAXNB6F95.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20659" + }, + "appliesTo" : [ ] + }, + "38AX843AAXNB6F95.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "38AX843AAXNB6F95.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "38AX843AAXNB6F95.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "38AX843AAXNB6F95", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "38AX843AAXNB6F95.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "38AX843AAXNB6F95.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "40489" + }, + "appliesTo" : [ ] + }, + "38AX843AAXNB6F95.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "38AX843AAXNB6F95.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "38AX843AAXNB6F95.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "38AX843AAXNB6F95", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "38AX843AAXNB6F95.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "38AX843AAXNB6F95.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "54301" + }, + "appliesTo" : [ ] + }, + "38AX843AAXNB6F95.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "38AX843AAXNB6F95.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "38AX843AAXNB6F95.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "38AX843AAXNB6F95", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "38AX843AAXNB6F95.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "38AX843AAXNB6F95.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "97547" + }, + "appliesTo" : [ ] + }, + "38AX843AAXNB6F95.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "38AX843AAXNB6F95.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "38AX843AAXNB6F95.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "38AX843AAXNB6F95", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "38AX843AAXNB6F95.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "38AX843AAXNB6F95.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.2550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "38AX843AAXNB6F95.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "38AX843AAXNB6F95", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "38AX843AAXNB6F95.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "38AX843AAXNB6F95.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27341" + }, + "appliesTo" : [ ] + }, + "38AX843AAXNB6F95.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "38AX843AAXNB6F95.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1211000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "38AX843AAXNB6F95.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "38AX843AAXNB6F95", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "38AX843AAXNB6F95.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "38AX843AAXNB6F95.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.5180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "38AX843AAXNB6F95.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "38AX843AAXNB6F95", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "38AX843AAXNB6F95.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "38AX843AAXNB6F95.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9740000000" + }, + "appliesTo" : [ ] + }, + "38AX843AAXNB6F95.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "38AX843AAXNB6F95.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "51888" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "38AX843AAXNB6F95.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "38AX843AAXNB6F95", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "38AX843AAXNB6F95.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "38AX843AAXNB6F95.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "115685" + }, + "appliesTo" : [ ] + }, + "38AX843AAXNB6F95.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "38AX843AAXNB6F95.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "38AX843AAXNB6F95.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "38AX843AAXNB6F95", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "38AX843AAXNB6F95.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "38AX843AAXNB6F95.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "38AX843AAXNB6F95.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "38AX843AAXNB6F95", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "38AX843AAXNB6F95.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "38AX843AAXNB6F95.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "59021" + }, + "appliesTo" : [ ] + }, + "38AX843AAXNB6F95.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "38AX843AAXNB6F95.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "38AX843AAXNB6F95.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "38AX843AAXNB6F95", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "38AX843AAXNB6F95.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "38AX843AAXNB6F95.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.3508000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "BQZA2V9VZEE32ZTX" : { + "BQZA2V9VZEE32ZTX.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "BQZA2V9VZEE32ZTX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BQZA2V9VZEE32ZTX.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "BQZA2V9VZEE32ZTX.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "BQZA2V9VZEE32ZTX.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "BQZA2V9VZEE32ZTX.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4877" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BQZA2V9VZEE32ZTX.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "BQZA2V9VZEE32ZTX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BQZA2V9VZEE32ZTX.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "BQZA2V9VZEE32ZTX.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3410000000" + }, + "appliesTo" : [ ] + }, + "BQZA2V9VZEE32ZTX.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "BQZA2V9VZEE32ZTX.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1989" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BQZA2V9VZEE32ZTX.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "BQZA2V9VZEE32ZTX", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BQZA2V9VZEE32ZTX.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "BQZA2V9VZEE32ZTX.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BQZA2V9VZEE32ZTX.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "BQZA2V9VZEE32ZTX", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "BQZA2V9VZEE32ZTX.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "BQZA2V9VZEE32ZTX.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5400" + }, + "appliesTo" : [ ] + }, + "BQZA2V9VZEE32ZTX.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "BQZA2V9VZEE32ZTX.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BQZA2V9VZEE32ZTX.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "BQZA2V9VZEE32ZTX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BQZA2V9VZEE32ZTX.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "BQZA2V9VZEE32ZTX.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12685" + }, + "appliesTo" : [ ] + }, + "BQZA2V9VZEE32ZTX.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "BQZA2V9VZEE32ZTX.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "TDGFBAHXRZKBVVEK" : { + "TDGFBAHXRZKBVVEK.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TDGFBAHXRZKBVVEK", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "TDGFBAHXRZKBVVEK.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TDGFBAHXRZKBVVEK.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.3030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TDGFBAHXRZKBVVEK.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "TDGFBAHXRZKBVVEK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TDGFBAHXRZKBVVEK.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "TDGFBAHXRZKBVVEK.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1430000000" + }, + "appliesTo" : [ ] + }, + "TDGFBAHXRZKBVVEK.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "TDGFBAHXRZKBVVEK.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18772" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TDGFBAHXRZKBVVEK.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "TDGFBAHXRZKBVVEK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TDGFBAHXRZKBVVEK.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "TDGFBAHXRZKBVVEK.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.3320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TDGFBAHXRZKBVVEK.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "TDGFBAHXRZKBVVEK", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "TDGFBAHXRZKBVVEK.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "TDGFBAHXRZKBVVEK.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "53709" + }, + "appliesTo" : [ ] + }, + "TDGFBAHXRZKBVVEK.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "TDGFBAHXRZKBVVEK.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TDGFBAHXRZKBVVEK.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TDGFBAHXRZKBVVEK", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "TDGFBAHXRZKBVVEK.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TDGFBAHXRZKBVVEK.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "50754" + }, + "appliesTo" : [ ] + }, + "TDGFBAHXRZKBVVEK.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TDGFBAHXRZKBVVEK.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TDGFBAHXRZKBVVEK.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "TDGFBAHXRZKBVVEK", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "TDGFBAHXRZKBVVEK.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "TDGFBAHXRZKBVVEK.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TDGFBAHXRZKBVVEK.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TDGFBAHXRZKBVVEK", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "TDGFBAHXRZKBVVEK.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TDGFBAHXRZKBVVEK.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TDGFBAHXRZKBVVEK.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TDGFBAHXRZKBVVEK.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "100729" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TDGFBAHXRZKBVVEK.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TDGFBAHXRZKBVVEK", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "TDGFBAHXRZKBVVEK.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TDGFBAHXRZKBVVEK.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "36366" + }, + "appliesTo" : [ ] + }, + "TDGFBAHXRZKBVVEK.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TDGFBAHXRZKBVVEK.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TDGFBAHXRZKBVVEK.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TDGFBAHXRZKBVVEK", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "TDGFBAHXRZKBVVEK.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TDGFBAHXRZKBVVEK.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18253" + }, + "appliesTo" : [ ] + }, + "TDGFBAHXRZKBVVEK.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TDGFBAHXRZKBVVEK.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TDGFBAHXRZKBVVEK.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "TDGFBAHXRZKBVVEK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TDGFBAHXRZKBVVEK.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "TDGFBAHXRZKBVVEK.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37384" + }, + "appliesTo" : [ ] + }, + "TDGFBAHXRZKBVVEK.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "TDGFBAHXRZKBVVEK.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TDGFBAHXRZKBVVEK.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "TDGFBAHXRZKBVVEK", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "TDGFBAHXRZKBVVEK.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "TDGFBAHXRZKBVVEK.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "107039" + }, + "appliesTo" : [ ] + }, + "TDGFBAHXRZKBVVEK.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "TDGFBAHXRZKBVVEK.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "TRZ6E8JSBS5WZR6G" : { + "TRZ6E8JSBS5WZR6G.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TRZ6E8JSBS5WZR6G", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "TRZ6E8JSBS5WZR6G.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TRZ6E8JSBS5WZR6G.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18858" + }, + "appliesTo" : [ ] + }, + "TRZ6E8JSBS5WZR6G.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TRZ6E8JSBS5WZR6G.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TRZ6E8JSBS5WZR6G.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "TRZ6E8JSBS5WZR6G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TRZ6E8JSBS5WZR6G.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "TRZ6E8JSBS5WZR6G.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.3290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TRZ6E8JSBS5WZR6G.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "TRZ6E8JSBS5WZR6G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TRZ6E8JSBS5WZR6G.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "TRZ6E8JSBS5WZR6G.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "43644" + }, + "appliesTo" : [ ] + }, + "TRZ6E8JSBS5WZR6G.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "TRZ6E8JSBS5WZR6G.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TRZ6E8JSBS5WZR6G.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "TRZ6E8JSBS5WZR6G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TRZ6E8JSBS5WZR6G.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "TRZ6E8JSBS5WZR6G.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6060000000" + }, + "appliesTo" : [ ] + }, + "TRZ6E8JSBS5WZR6G.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "TRZ6E8JSBS5WZR6G.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21686" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TRZ6E8JSBS5WZR6G.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TRZ6E8JSBS5WZR6G", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TRZ6E8JSBS5WZR6G.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TRZ6E8JSBS5WZR6G.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.6510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TRZ6E8JSBS5WZR6G.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "TRZ6E8JSBS5WZR6G", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TRZ6E8JSBS5WZR6G.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "TRZ6E8JSBS5WZR6G.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TRZ6E8JSBS5WZR6G.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "TRZ6E8JSBS5WZR6G", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TRZ6E8JSBS5WZR6G.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "TRZ6E8JSBS5WZR6G.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TRZ6E8JSBS5WZR6G.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "TRZ6E8JSBS5WZR6G.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "68086" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TRZ6E8JSBS5WZR6G.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TRZ6E8JSBS5WZR6G", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "TRZ6E8JSBS5WZR6G.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TRZ6E8JSBS5WZR6G.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28692" + }, + "appliesTo" : [ ] + }, + "TRZ6E8JSBS5WZR6G.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TRZ6E8JSBS5WZR6G.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TRZ6E8JSBS5WZR6G.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "TRZ6E8JSBS5WZR6G", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TRZ6E8JSBS5WZR6G.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "TRZ6E8JSBS5WZR6G.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32995" + }, + "appliesTo" : [ ] + }, + "TRZ6E8JSBS5WZR6G.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "TRZ6E8JSBS5WZR6G.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TRZ6E8JSBS5WZR6G.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "TRZ6E8JSBS5WZR6G", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TRZ6E8JSBS5WZR6G.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "TRZ6E8JSBS5WZR6G.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TRZ6E8JSBS5WZR6G.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TRZ6E8JSBS5WZR6G", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TRZ6E8JSBS5WZR6G.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TRZ6E8JSBS5WZR6G.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "57357" + }, + "appliesTo" : [ ] + }, + "TRZ6E8JSBS5WZR6G.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TRZ6E8JSBS5WZR6G.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TRZ6E8JSBS5WZR6G.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TRZ6E8JSBS5WZR6G", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "TRZ6E8JSBS5WZR6G.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TRZ6E8JSBS5WZR6G.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38100" + }, + "appliesTo" : [ ] + }, + "TRZ6E8JSBS5WZR6G.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TRZ6E8JSBS5WZR6G.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "FUETJGKE44YRRDYN" : { + "FUETJGKE44YRRDYN.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "FUETJGKE44YRRDYN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FUETJGKE44YRRDYN.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "FUETJGKE44YRRDYN.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2639" + }, + "appliesTo" : [ ] + }, + "FUETJGKE44YRRDYN.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "FUETJGKE44YRRDYN.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FUETJGKE44YRRDYN.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "FUETJGKE44YRRDYN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FUETJGKE44YRRDYN.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "FUETJGKE44YRRDYN.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FUETJGKE44YRRDYN.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "FUETJGKE44YRRDYN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FUETJGKE44YRRDYN.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "FUETJGKE44YRRDYN.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4975" + }, + "appliesTo" : [ ] + }, + "FUETJGKE44YRRDYN.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "FUETJGKE44YRRDYN.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FUETJGKE44YRRDYN.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "FUETJGKE44YRRDYN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FUETJGKE44YRRDYN.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "FUETJGKE44YRRDYN.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2500000000" + }, + "appliesTo" : [ ] + }, + "FUETJGKE44YRRDYN.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "FUETJGKE44YRRDYN.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6569" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FUETJGKE44YRRDYN.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "FUETJGKE44YRRDYN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FUETJGKE44YRRDYN.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "FUETJGKE44YRRDYN.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6833" + }, + "appliesTo" : [ ] + }, + "FUETJGKE44YRRDYN.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "FUETJGKE44YRRDYN.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FUETJGKE44YRRDYN.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "FUETJGKE44YRRDYN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FUETJGKE44YRRDYN.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "FUETJGKE44YRRDYN.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FUETJGKE44YRRDYN.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "FUETJGKE44YRRDYN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FUETJGKE44YRRDYN.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "FUETJGKE44YRRDYN.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FUETJGKE44YRRDYN.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "FUETJGKE44YRRDYN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FUETJGKE44YRRDYN.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "FUETJGKE44YRRDYN.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "FUETJGKE44YRRDYN.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "FUETJGKE44YRRDYN.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12930" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FUETJGKE44YRRDYN.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "FUETJGKE44YRRDYN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FUETJGKE44YRRDYN.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "FUETJGKE44YRRDYN.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13585" + }, + "appliesTo" : [ ] + }, + "FUETJGKE44YRRDYN.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "FUETJGKE44YRRDYN.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FUETJGKE44YRRDYN.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "FUETJGKE44YRRDYN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FUETJGKE44YRRDYN.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "FUETJGKE44YRRDYN.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FUETJGKE44YRRDYN.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "FUETJGKE44YRRDYN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FUETJGKE44YRRDYN.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "FUETJGKE44YRRDYN.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5238" + }, + "appliesTo" : [ ] + }, + "FUETJGKE44YRRDYN.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "FUETJGKE44YRRDYN.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FUETJGKE44YRRDYN.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "FUETJGKE44YRRDYN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FUETJGKE44YRRDYN.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "FUETJGKE44YRRDYN.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2505" + }, + "appliesTo" : [ ] + }, + "FUETJGKE44YRRDYN.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "FUETJGKE44YRRDYN.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "UA3JWMHE5JCMQN3Z" : { + "UA3JWMHE5JCMQN3Z.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "UA3JWMHE5JCMQN3Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UA3JWMHE5JCMQN3Z.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "UA3JWMHE5JCMQN3Z.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "UA3JWMHE5JCMQN3Z.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "UA3JWMHE5JCMQN3Z", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "UA3JWMHE5JCMQN3Z.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "UA3JWMHE5JCMQN3Z.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "UA3JWMHE5JCMQN3Z.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "UA3JWMHE5JCMQN3Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UA3JWMHE5JCMQN3Z.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "UA3JWMHE5JCMQN3Z.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1506" + }, + "appliesTo" : [ ] + }, + "UA3JWMHE5JCMQN3Z.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "UA3JWMHE5JCMQN3Z.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "UA3JWMHE5JCMQN3Z.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "UA3JWMHE5JCMQN3Z", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "UA3JWMHE5JCMQN3Z.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "UA3JWMHE5JCMQN3Z.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1342" + }, + "appliesTo" : [ ] + }, + "UA3JWMHE5JCMQN3Z.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "UA3JWMHE5JCMQN3Z.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "UA3JWMHE5JCMQN3Z.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "UA3JWMHE5JCMQN3Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UA3JWMHE5JCMQN3Z.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "UA3JWMHE5JCMQN3Z.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2896" + }, + "appliesTo" : [ ] + }, + "UA3JWMHE5JCMQN3Z.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "UA3JWMHE5JCMQN3Z.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "UA3JWMHE5JCMQN3Z.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "UA3JWMHE5JCMQN3Z", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "UA3JWMHE5JCMQN3Z.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "UA3JWMHE5JCMQN3Z.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6037" + }, + "appliesTo" : [ ] + }, + "UA3JWMHE5JCMQN3Z.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "UA3JWMHE5JCMQN3Z.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "UA3JWMHE5JCMQN3Z.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "UA3JWMHE5JCMQN3Z", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "UA3JWMHE5JCMQN3Z.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "UA3JWMHE5JCMQN3Z.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "UA3JWMHE5JCMQN3Z.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "UA3JWMHE5JCMQN3Z", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "UA3JWMHE5JCMQN3Z.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "UA3JWMHE5JCMQN3Z.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "UA3JWMHE5JCMQN3Z.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "UA3JWMHE5JCMQN3Z", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "UA3JWMHE5JCMQN3Z.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "UA3JWMHE5JCMQN3Z.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1040000000" + }, + "appliesTo" : [ ] + }, + "UA3JWMHE5JCMQN3Z.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "UA3JWMHE5JCMQN3Z.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2738" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "UA3JWMHE5JCMQN3Z.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "UA3JWMHE5JCMQN3Z", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "UA3JWMHE5JCMQN3Z.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "UA3JWMHE5JCMQN3Z.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3078" + }, + "appliesTo" : [ ] + }, + "UA3JWMHE5JCMQN3Z.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "UA3JWMHE5JCMQN3Z.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "UA3JWMHE5JCMQN3Z.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "UA3JWMHE5JCMQN3Z", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "UA3JWMHE5JCMQN3Z.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "UA3JWMHE5JCMQN3Z.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2576" + }, + "appliesTo" : [ ] + }, + "UA3JWMHE5JCMQN3Z.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "UA3JWMHE5JCMQN3Z.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "UA3JWMHE5JCMQN3Z.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "UA3JWMHE5JCMQN3Z", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "UA3JWMHE5JCMQN3Z.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "UA3JWMHE5JCMQN3Z.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5180" + }, + "appliesTo" : [ ] + }, + "UA3JWMHE5JCMQN3Z.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "UA3JWMHE5JCMQN3Z.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "GN43Y4P6APPBFGM8" : { + "GN43Y4P6APPBFGM8.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "GN43Y4P6APPBFGM8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GN43Y4P6APPBFGM8.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "GN43Y4P6APPBFGM8.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.4820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "GN43Y4P6APPBFGM8.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "GN43Y4P6APPBFGM8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GN43Y4P6APPBFGM8.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "GN43Y4P6APPBFGM8.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23755" + }, + "appliesTo" : [ ] + }, + "GN43Y4P6APPBFGM8.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "GN43Y4P6APPBFGM8.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GN43Y4P6APPBFGM8.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "GN43Y4P6APPBFGM8", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GN43Y4P6APPBFGM8.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "GN43Y4P6APPBFGM8.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.1700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GN43Y4P6APPBFGM8.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "GN43Y4P6APPBFGM8", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GN43Y4P6APPBFGM8.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "GN43Y4P6APPBFGM8.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "50028" + }, + "appliesTo" : [ ] + }, + "GN43Y4P6APPBFGM8.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "GN43Y4P6APPBFGM8.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GN43Y4P6APPBFGM8.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "GN43Y4P6APPBFGM8", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GN43Y4P6APPBFGM8.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "GN43Y4P6APPBFGM8.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "117579" + }, + "appliesTo" : [ ] + }, + "GN43Y4P6APPBFGM8.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "GN43Y4P6APPBFGM8.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GN43Y4P6APPBFGM8.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "GN43Y4P6APPBFGM8", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GN43Y4P6APPBFGM8.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "GN43Y4P6APPBFGM8.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "45269" + }, + "appliesTo" : [ ] + }, + "GN43Y4P6APPBFGM8.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "GN43Y4P6APPBFGM8.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GN43Y4P6APPBFGM8.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "GN43Y4P6APPBFGM8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GN43Y4P6APPBFGM8.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "GN43Y4P6APPBFGM8.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47307" + }, + "appliesTo" : [ ] + }, + "GN43Y4P6APPBFGM8.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "GN43Y4P6APPBFGM8.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "GN43Y4P6APPBFGM8.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "GN43Y4P6APPBFGM8", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "GN43Y4P6APPBFGM8.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "GN43Y4P6APPBFGM8.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1210000000" + }, + "appliesTo" : [ ] + }, + "GN43Y4P6APPBFGM8.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "GN43Y4P6APPBFGM8.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "53890" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GN43Y4P6APPBFGM8.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "GN43Y4P6APPBFGM8", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "GN43Y4P6APPBFGM8.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "GN43Y4P6APPBFGM8.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.0530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "GN43Y4P6APPBFGM8.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "GN43Y4P6APPBFGM8", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GN43Y4P6APPBFGM8.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "GN43Y4P6APPBFGM8.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18485" + }, + "appliesTo" : [ ] + }, + "GN43Y4P6APPBFGM8.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "GN43Y4P6APPBFGM8.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GN43Y4P6APPBFGM8.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "GN43Y4P6APPBFGM8", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "GN43Y4P6APPBFGM8.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "GN43Y4P6APPBFGM8.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "133200" + }, + "appliesTo" : [ ] + }, + "GN43Y4P6APPBFGM8.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "GN43Y4P6APPBFGM8.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "7MVN3GT6EP25KDUJ" : { + "7MVN3GT6EP25KDUJ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "7MVN3GT6EP25KDUJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7MVN3GT6EP25KDUJ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "7MVN3GT6EP25KDUJ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16127" + }, + "appliesTo" : [ ] + }, + "7MVN3GT6EP25KDUJ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "7MVN3GT6EP25KDUJ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7MVN3GT6EP25KDUJ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "7MVN3GT6EP25KDUJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7MVN3GT6EP25KDUJ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "7MVN3GT6EP25KDUJ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7670" + }, + "appliesTo" : [ ] + }, + "7MVN3GT6EP25KDUJ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "7MVN3GT6EP25KDUJ.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7MVN3GT6EP25KDUJ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "7MVN3GT6EP25KDUJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7MVN3GT6EP25KDUJ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "7MVN3GT6EP25KDUJ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7999" + }, + "appliesTo" : [ ] + }, + "7MVN3GT6EP25KDUJ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "7MVN3GT6EP25KDUJ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7MVN3GT6EP25KDUJ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "7MVN3GT6EP25KDUJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7MVN3GT6EP25KDUJ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "7MVN3GT6EP25KDUJ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7MVN3GT6EP25KDUJ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "7MVN3GT6EP25KDUJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7MVN3GT6EP25KDUJ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "7MVN3GT6EP25KDUJ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5000" + }, + "appliesTo" : [ ] + }, + "7MVN3GT6EP25KDUJ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "7MVN3GT6EP25KDUJ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "9WGNK9JK96GFCM3E" : { + "9WGNK9JK96GFCM3E.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "9WGNK9JK96GFCM3E", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9WGNK9JK96GFCM3E.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "9WGNK9JK96GFCM3E.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12926" + }, + "appliesTo" : [ ] + }, + "9WGNK9JK96GFCM3E.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "9WGNK9JK96GFCM3E.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9WGNK9JK96GFCM3E.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "9WGNK9JK96GFCM3E", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "9WGNK9JK96GFCM3E.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "9WGNK9JK96GFCM3E.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9WGNK9JK96GFCM3E.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "9WGNK9JK96GFCM3E", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "9WGNK9JK96GFCM3E.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "9WGNK9JK96GFCM3E.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "9WGNK9JK96GFCM3E.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "9WGNK9JK96GFCM3E.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35236" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9WGNK9JK96GFCM3E.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "9WGNK9JK96GFCM3E", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9WGNK9JK96GFCM3E.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "9WGNK9JK96GFCM3E.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14763" + }, + "appliesTo" : [ ] + }, + "9WGNK9JK96GFCM3E.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "9WGNK9JK96GFCM3E.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9WGNK9JK96GFCM3E.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "9WGNK9JK96GFCM3E", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "9WGNK9JK96GFCM3E.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "9WGNK9JK96GFCM3E.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6024" + }, + "appliesTo" : [ ] + }, + "9WGNK9JK96GFCM3E.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "9WGNK9JK96GFCM3E.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9WGNK9JK96GFCM3E.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "9WGNK9JK96GFCM3E", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "9WGNK9JK96GFCM3E.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "9WGNK9JK96GFCM3E.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9WGNK9JK96GFCM3E.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "9WGNK9JK96GFCM3E", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9WGNK9JK96GFCM3E.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "9WGNK9JK96GFCM3E.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9WGNK9JK96GFCM3E.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "9WGNK9JK96GFCM3E", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9WGNK9JK96GFCM3E.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "9WGNK9JK96GFCM3E.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6951" + }, + "appliesTo" : [ ] + }, + "9WGNK9JK96GFCM3E.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "9WGNK9JK96GFCM3E.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9WGNK9JK96GFCM3E.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "9WGNK9JK96GFCM3E", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9WGNK9JK96GFCM3E.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "9WGNK9JK96GFCM3E.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23991" + }, + "appliesTo" : [ ] + }, + "9WGNK9JK96GFCM3E.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "9WGNK9JK96GFCM3E.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9WGNK9JK96GFCM3E.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "9WGNK9JK96GFCM3E", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "9WGNK9JK96GFCM3E.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "9WGNK9JK96GFCM3E.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16265" + }, + "appliesTo" : [ ] + }, + "9WGNK9JK96GFCM3E.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "9WGNK9JK96GFCM3E.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9WGNK9JK96GFCM3E.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "9WGNK9JK96GFCM3E", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9WGNK9JK96GFCM3E.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "9WGNK9JK96GFCM3E.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11068" + }, + "appliesTo" : [ ] + }, + "9WGNK9JK96GFCM3E.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "9WGNK9JK96GFCM3E.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "TQV69AZUDVU7GUKY" : { + "TQV69AZUDVU7GUKY.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TQV69AZUDVU7GUKY", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "TQV69AZUDVU7GUKY.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TQV69AZUDVU7GUKY.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3438" + }, + "appliesTo" : [ ] + }, + "TQV69AZUDVU7GUKY.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TQV69AZUDVU7GUKY.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TQV69AZUDVU7GUKY.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TQV69AZUDVU7GUKY", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "TQV69AZUDVU7GUKY.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TQV69AZUDVU7GUKY.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2045" + }, + "appliesTo" : [ ] + }, + "TQV69AZUDVU7GUKY.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TQV69AZUDVU7GUKY.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TQV69AZUDVU7GUKY.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "TQV69AZUDVU7GUKY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TQV69AZUDVU7GUKY.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "TQV69AZUDVU7GUKY.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1998" + }, + "appliesTo" : [ ] + }, + "TQV69AZUDVU7GUKY.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "TQV69AZUDVU7GUKY.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TQV69AZUDVU7GUKY.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "TQV69AZUDVU7GUKY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TQV69AZUDVU7GUKY.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "TQV69AZUDVU7GUKY.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TQV69AZUDVU7GUKY.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TQV69AZUDVU7GUKY", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "TQV69AZUDVU7GUKY.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TQV69AZUDVU7GUKY.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3347" + }, + "appliesTo" : [ ] + }, + "TQV69AZUDVU7GUKY.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TQV69AZUDVU7GUKY.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TQV69AZUDVU7GUKY.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "TQV69AZUDVU7GUKY", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "TQV69AZUDVU7GUKY.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "TQV69AZUDVU7GUKY.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9098" + }, + "appliesTo" : [ ] + }, + "TQV69AZUDVU7GUKY.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "TQV69AZUDVU7GUKY.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TQV69AZUDVU7GUKY.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TQV69AZUDVU7GUKY", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "TQV69AZUDVU7GUKY.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TQV69AZUDVU7GUKY.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6705" + }, + "appliesTo" : [ ] + }, + "TQV69AZUDVU7GUKY.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TQV69AZUDVU7GUKY.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TQV69AZUDVU7GUKY.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "TQV69AZUDVU7GUKY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TQV69AZUDVU7GUKY.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "TQV69AZUDVU7GUKY.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TQV69AZUDVU7GUKY.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "TQV69AZUDVU7GUKY.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3861" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TQV69AZUDVU7GUKY.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "TQV69AZUDVU7GUKY", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "TQV69AZUDVU7GUKY.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "TQV69AZUDVU7GUKY.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1500000000" + }, + "appliesTo" : [ ] + }, + "TQV69AZUDVU7GUKY.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "TQV69AZUDVU7GUKY.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5385" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TQV69AZUDVU7GUKY.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TQV69AZUDVU7GUKY", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "TQV69AZUDVU7GUKY.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TQV69AZUDVU7GUKY.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TQV69AZUDVU7GUKY.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "TQV69AZUDVU7GUKY", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "TQV69AZUDVU7GUKY.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "TQV69AZUDVU7GUKY.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "FSBXVV6Q3V6PKBSN" : { + "FSBXVV6Q3V6PKBSN.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "FSBXVV6Q3V6PKBSN", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "FSBXVV6Q3V6PKBSN.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "FSBXVV6Q3V6PKBSN.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9934" + }, + "appliesTo" : [ ] + }, + "FSBXVV6Q3V6PKBSN.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "FSBXVV6Q3V6PKBSN.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FSBXVV6Q3V6PKBSN.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "FSBXVV6Q3V6PKBSN", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "FSBXVV6Q3V6PKBSN.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "FSBXVV6Q3V6PKBSN.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19170" + }, + "appliesTo" : [ ] + }, + "FSBXVV6Q3V6PKBSN.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "FSBXVV6Q3V6PKBSN.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FSBXVV6Q3V6PKBSN.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "FSBXVV6Q3V6PKBSN", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "FSBXVV6Q3V6PKBSN.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "FSBXVV6Q3V6PKBSN.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7504000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FSBXVV6Q3V6PKBSN.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "FSBXVV6Q3V6PKBSN", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "FSBXVV6Q3V6PKBSN.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "FSBXVV6Q3V6PKBSN.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7634000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FSBXVV6Q3V6PKBSN.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "FSBXVV6Q3V6PKBSN", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "FSBXVV6Q3V6PKBSN.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "FSBXVV6Q3V6PKBSN.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3425" + }, + "appliesTo" : [ ] + }, + "FSBXVV6Q3V6PKBSN.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "FSBXVV6Q3V6PKBSN.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FSBXVV6Q3V6PKBSN.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "FSBXVV6Q3V6PKBSN", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "FSBXVV6Q3V6PKBSN.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "FSBXVV6Q3V6PKBSN.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7879000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FSBXVV6Q3V6PKBSN.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "FSBXVV6Q3V6PKBSN", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "FSBXVV6Q3V6PKBSN.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "FSBXVV6Q3V6PKBSN.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19819" + }, + "appliesTo" : [ ] + }, + "FSBXVV6Q3V6PKBSN.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "FSBXVV6Q3V6PKBSN.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FSBXVV6Q3V6PKBSN.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "FSBXVV6Q3V6PKBSN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FSBXVV6Q3V6PKBSN.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "FSBXVV6Q3V6PKBSN.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6982" + }, + "appliesTo" : [ ] + }, + "FSBXVV6Q3V6PKBSN.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "FSBXVV6Q3V6PKBSN.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FSBXVV6Q3V6PKBSN.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "FSBXVV6Q3V6PKBSN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FSBXVV6Q3V6PKBSN.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "FSBXVV6Q3V6PKBSN.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3999000000" + }, + "appliesTo" : [ ] + }, + "FSBXVV6Q3V6PKBSN.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "FSBXVV6Q3V6PKBSN.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3503" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FSBXVV6Q3V6PKBSN.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "FSBXVV6Q3V6PKBSN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FSBXVV6Q3V6PKBSN.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "FSBXVV6Q3V6PKBSN.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8065000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FSBXVV6Q3V6PKBSN.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "FSBXVV6Q3V6PKBSN", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "FSBXVV6Q3V6PKBSN.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "FSBXVV6Q3V6PKBSN.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "FSBXVV6Q3V6PKBSN.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "FSBXVV6Q3V6PKBSN.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6830" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FSBXVV6Q3V6PKBSN.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "FSBXVV6Q3V6PKBSN", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "FSBXVV6Q3V6PKBSN.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "FSBXVV6Q3V6PKBSN.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9776" + }, + "appliesTo" : [ ] + }, + "FSBXVV6Q3V6PKBSN.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "FSBXVV6Q3V6PKBSN.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "N9AQNRUTKCFEVCJ6" : { + "N9AQNRUTKCFEVCJ6.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "N9AQNRUTKCFEVCJ6", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "N9AQNRUTKCFEVCJ6.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "N9AQNRUTKCFEVCJ6.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2261" + }, + "appliesTo" : [ ] + }, + "N9AQNRUTKCFEVCJ6.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "N9AQNRUTKCFEVCJ6.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "N9AQNRUTKCFEVCJ6.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "N9AQNRUTKCFEVCJ6", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "N9AQNRUTKCFEVCJ6.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "N9AQNRUTKCFEVCJ6.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "N9AQNRUTKCFEVCJ6.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "N9AQNRUTKCFEVCJ6", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "N9AQNRUTKCFEVCJ6.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "N9AQNRUTKCFEVCJ6.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6105" + }, + "appliesTo" : [ ] + }, + "N9AQNRUTKCFEVCJ6.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "N9AQNRUTKCFEVCJ6.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "N9AQNRUTKCFEVCJ6.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "N9AQNRUTKCFEVCJ6", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "N9AQNRUTKCFEVCJ6.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "N9AQNRUTKCFEVCJ6.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3399" + }, + "appliesTo" : [ ] + }, + "N9AQNRUTKCFEVCJ6.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "N9AQNRUTKCFEVCJ6.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "N9AQNRUTKCFEVCJ6.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "N9AQNRUTKCFEVCJ6", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "N9AQNRUTKCFEVCJ6.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "N9AQNRUTKCFEVCJ6.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6743" + }, + "appliesTo" : [ ] + }, + "N9AQNRUTKCFEVCJ6.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "N9AQNRUTKCFEVCJ6.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "N9AQNRUTKCFEVCJ6.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "N9AQNRUTKCFEVCJ6", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "N9AQNRUTKCFEVCJ6.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "N9AQNRUTKCFEVCJ6.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4318" + }, + "appliesTo" : [ ] + }, + "N9AQNRUTKCFEVCJ6.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "N9AQNRUTKCFEVCJ6.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "N9AQNRUTKCFEVCJ6.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "N9AQNRUTKCFEVCJ6", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "N9AQNRUTKCFEVCJ6.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "N9AQNRUTKCFEVCJ6.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "N9AQNRUTKCFEVCJ6.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "N9AQNRUTKCFEVCJ6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N9AQNRUTKCFEVCJ6.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "N9AQNRUTKCFEVCJ6.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "N9AQNRUTKCFEVCJ6.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "N9AQNRUTKCFEVCJ6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N9AQNRUTKCFEVCJ6.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "N9AQNRUTKCFEVCJ6.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3896" + }, + "appliesTo" : [ ] + }, + "N9AQNRUTKCFEVCJ6.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "N9AQNRUTKCFEVCJ6.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "N9AQNRUTKCFEVCJ6.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "N9AQNRUTKCFEVCJ6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N9AQNRUTKCFEVCJ6.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "N9AQNRUTKCFEVCJ6.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1988" + }, + "appliesTo" : [ ] + }, + "N9AQNRUTKCFEVCJ6.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "N9AQNRUTKCFEVCJ6.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "N9AQNRUTKCFEVCJ6.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "N9AQNRUTKCFEVCJ6", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "N9AQNRUTKCFEVCJ6.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "N9AQNRUTKCFEVCJ6.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9177" + }, + "appliesTo" : [ ] + }, + "N9AQNRUTKCFEVCJ6.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "N9AQNRUTKCFEVCJ6.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "5U9FJ3JR532G32NE" : { + "5U9FJ3JR532G32NE.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "5U9FJ3JR532G32NE", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "5U9FJ3JR532G32NE.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "5U9FJ3JR532G32NE.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.9610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "5U9FJ3JR532G32NE.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "5U9FJ3JR532G32NE", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "5U9FJ3JR532G32NE.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "5U9FJ3JR532G32NE.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30324" + }, + "appliesTo" : [ ] + }, + "5U9FJ3JR532G32NE.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "5U9FJ3JR532G32NE.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5U9FJ3JR532G32NE.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "5U9FJ3JR532G32NE", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "5U9FJ3JR532G32NE.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "5U9FJ3JR532G32NE.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "51077" + }, + "appliesTo" : [ ] + }, + "5U9FJ3JR532G32NE.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "5U9FJ3JR532G32NE.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5U9FJ3JR532G32NE.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "5U9FJ3JR532G32NE", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "5U9FJ3JR532G32NE.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "5U9FJ3JR532G32NE.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "127326" + }, + "appliesTo" : [ ] + }, + "5U9FJ3JR532G32NE.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "5U9FJ3JR532G32NE.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5U9FJ3JR532G32NE.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "5U9FJ3JR532G32NE", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "5U9FJ3JR532G32NE.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "5U9FJ3JR532G32NE.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "70253" + }, + "appliesTo" : [ ] + }, + "5U9FJ3JR532G32NE.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "5U9FJ3JR532G32NE.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "F5ZPZV2EEY3FC3V9" : { + "F5ZPZV2EEY3FC3V9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "F5ZPZV2EEY3FC3V9", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "F5ZPZV2EEY3FC3V9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "F5ZPZV2EEY3FC3V9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4561" + }, + "appliesTo" : [ ] + }, + "F5ZPZV2EEY3FC3V9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "F5ZPZV2EEY3FC3V9.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "F5ZPZV2EEY3FC3V9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "F5ZPZV2EEY3FC3V9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "F5ZPZV2EEY3FC3V9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "F5ZPZV2EEY3FC3V9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3190000000" + }, + "appliesTo" : [ ] + }, + "F5ZPZV2EEY3FC3V9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "F5ZPZV2EEY3FC3V9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1860" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "F5ZPZV2EEY3FC3V9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "F5ZPZV2EEY3FC3V9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "F5ZPZV2EEY3FC3V9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "F5ZPZV2EEY3FC3V9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9635" + }, + "appliesTo" : [ ] + }, + "F5ZPZV2EEY3FC3V9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "F5ZPZV2EEY3FC3V9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "F5ZPZV2EEY3FC3V9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "F5ZPZV2EEY3FC3V9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "F5ZPZV2EEY3FC3V9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "F5ZPZV2EEY3FC3V9.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "F5ZPZV2EEY3FC3V9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "F5ZPZV2EEY3FC3V9", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "F5ZPZV2EEY3FC3V9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "F5ZPZV2EEY3FC3V9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4101" + }, + "appliesTo" : [ ] + }, + "F5ZPZV2EEY3FC3V9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "F5ZPZV2EEY3FC3V9.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "9Z7C9YEQ5U8P5GDZ" : { + "9Z7C9YEQ5U8P5GDZ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "9Z7C9YEQ5U8P5GDZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9Z7C9YEQ5U8P5GDZ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "9Z7C9YEQ5U8P5GDZ.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "9Z7C9YEQ5U8P5GDZ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "9Z7C9YEQ5U8P5GDZ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3793" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9Z7C9YEQ5U8P5GDZ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "9Z7C9YEQ5U8P5GDZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9Z7C9YEQ5U8P5GDZ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "9Z7C9YEQ5U8P5GDZ.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "9Z7C9YEQ5U8P5GDZ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "9Z7C9YEQ5U8P5GDZ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4318" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9Z7C9YEQ5U8P5GDZ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "9Z7C9YEQ5U8P5GDZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9Z7C9YEQ5U8P5GDZ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "9Z7C9YEQ5U8P5GDZ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1963" + }, + "appliesTo" : [ ] + }, + "9Z7C9YEQ5U8P5GDZ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "9Z7C9YEQ5U8P5GDZ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9Z7C9YEQ5U8P5GDZ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "9Z7C9YEQ5U8P5GDZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9Z7C9YEQ5U8P5GDZ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "9Z7C9YEQ5U8P5GDZ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9Z7C9YEQ5U8P5GDZ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "9Z7C9YEQ5U8P5GDZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9Z7C9YEQ5U8P5GDZ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "9Z7C9YEQ5U8P5GDZ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2480000000" + }, + "appliesTo" : [ ] + }, + "9Z7C9YEQ5U8P5GDZ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "9Z7C9YEQ5U8P5GDZ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2231" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9Z7C9YEQ5U8P5GDZ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "9Z7C9YEQ5U8P5GDZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9Z7C9YEQ5U8P5GDZ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "9Z7C9YEQ5U8P5GDZ.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9Z7C9YEQ5U8P5GDZ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "9Z7C9YEQ5U8P5GDZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9Z7C9YEQ5U8P5GDZ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "9Z7C9YEQ5U8P5GDZ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3819" + }, + "appliesTo" : [ ] + }, + "9Z7C9YEQ5U8P5GDZ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "9Z7C9YEQ5U8P5GDZ.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9Z7C9YEQ5U8P5GDZ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "9Z7C9YEQ5U8P5GDZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9Z7C9YEQ5U8P5GDZ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "9Z7C9YEQ5U8P5GDZ.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9Z7C9YEQ5U8P5GDZ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "9Z7C9YEQ5U8P5GDZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9Z7C9YEQ5U8P5GDZ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "9Z7C9YEQ5U8P5GDZ.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "9Z7C9YEQ5U8P5GDZ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "9Z7C9YEQ5U8P5GDZ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8522" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9Z7C9YEQ5U8P5GDZ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "9Z7C9YEQ5U8P5GDZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9Z7C9YEQ5U8P5GDZ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "9Z7C9YEQ5U8P5GDZ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4346" + }, + "appliesTo" : [ ] + }, + "9Z7C9YEQ5U8P5GDZ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "9Z7C9YEQ5U8P5GDZ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9Z7C9YEQ5U8P5GDZ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "9Z7C9YEQ5U8P5GDZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9Z7C9YEQ5U8P5GDZ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "9Z7C9YEQ5U8P5GDZ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9Z7C9YEQ5U8P5GDZ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "9Z7C9YEQ5U8P5GDZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9Z7C9YEQ5U8P5GDZ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "9Z7C9YEQ5U8P5GDZ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7212" + }, + "appliesTo" : [ ] + }, + "9Z7C9YEQ5U8P5GDZ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "9Z7C9YEQ5U8P5GDZ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "URGXD2SFFV6PJGW7" : { + "URGXD2SFFV6PJGW7.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "URGXD2SFFV6PJGW7", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "URGXD2SFFV6PJGW7.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "URGXD2SFFV6PJGW7.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3220000000" + }, + "appliesTo" : [ ] + }, + "URGXD2SFFV6PJGW7.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "URGXD2SFFV6PJGW7.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2083" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "URGXD2SFFV6PJGW7.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "URGXD2SFFV6PJGW7", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "URGXD2SFFV6PJGW7.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "URGXD2SFFV6PJGW7.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4808" + }, + "appliesTo" : [ ] + }, + "URGXD2SFFV6PJGW7.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "URGXD2SFFV6PJGW7.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "URGXD2SFFV6PJGW7.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "URGXD2SFFV6PJGW7", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "URGXD2SFFV6PJGW7.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "URGXD2SFFV6PJGW7.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9956" + }, + "appliesTo" : [ ] + }, + "URGXD2SFFV6PJGW7.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "URGXD2SFFV6PJGW7.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "URGXD2SFFV6PJGW7.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "URGXD2SFFV6PJGW7", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "URGXD2SFFV6PJGW7.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "URGXD2SFFV6PJGW7.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3163" + }, + "appliesTo" : [ ] + }, + "URGXD2SFFV6PJGW7.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "URGXD2SFFV6PJGW7.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "URGXD2SFFV6PJGW7.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "URGXD2SFFV6PJGW7", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "URGXD2SFFV6PJGW7.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "URGXD2SFFV6PJGW7.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "Z35WNPQJZZCRRJYH" : { + "Z35WNPQJZZCRRJYH.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Z35WNPQJZZCRRJYH", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "Z35WNPQJZZCRRJYH.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Z35WNPQJZZCRRJYH.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7901" + }, + "appliesTo" : [ ] + }, + "Z35WNPQJZZCRRJYH.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Z35WNPQJZZCRRJYH.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Z35WNPQJZZCRRJYH.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Z35WNPQJZZCRRJYH", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "Z35WNPQJZZCRRJYH.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Z35WNPQJZZCRRJYH.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2492" + }, + "appliesTo" : [ ] + }, + "Z35WNPQJZZCRRJYH.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Z35WNPQJZZCRRJYH.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z35WNPQJZZCRRJYH.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Z35WNPQJZZCRRJYH", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "Z35WNPQJZZCRRJYH.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Z35WNPQJZZCRRJYH.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1588" + }, + "appliesTo" : [ ] + }, + "Z35WNPQJZZCRRJYH.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Z35WNPQJZZCRRJYH.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z35WNPQJZZCRRJYH.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Z35WNPQJZZCRRJYH", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "Z35WNPQJZZCRRJYH.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Z35WNPQJZZCRRJYH.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Z35WNPQJZZCRRJYH.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Z35WNPQJZZCRRJYH", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "Z35WNPQJZZCRRJYH.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Z35WNPQJZZCRRJYH.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3642" + }, + "appliesTo" : [ ] + }, + "Z35WNPQJZZCRRJYH.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Z35WNPQJZZCRRJYH.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "CNQRJ2XRQ5WYZJQ3" : { + "CNQRJ2XRQ5WYZJQ3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "CNQRJ2XRQ5WYZJQ3", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "CNQRJ2XRQ5WYZJQ3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "CNQRJ2XRQ5WYZJQ3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6706" + }, + "appliesTo" : [ ] + }, + "CNQRJ2XRQ5WYZJQ3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "CNQRJ2XRQ5WYZJQ3.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CNQRJ2XRQ5WYZJQ3.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "CNQRJ2XRQ5WYZJQ3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CNQRJ2XRQ5WYZJQ3.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "CNQRJ2XRQ5WYZJQ3.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9067" + }, + "appliesTo" : [ ] + }, + "CNQRJ2XRQ5WYZJQ3.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "CNQRJ2XRQ5WYZJQ3.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CNQRJ2XRQ5WYZJQ3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "CNQRJ2XRQ5WYZJQ3", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "CNQRJ2XRQ5WYZJQ3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "CNQRJ2XRQ5WYZJQ3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16608" + }, + "appliesTo" : [ ] + }, + "CNQRJ2XRQ5WYZJQ3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "CNQRJ2XRQ5WYZJQ3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CNQRJ2XRQ5WYZJQ3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "CNQRJ2XRQ5WYZJQ3", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "CNQRJ2XRQ5WYZJQ3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "CNQRJ2XRQ5WYZJQ3.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3240000000" + }, + "appliesTo" : [ ] + }, + "CNQRJ2XRQ5WYZJQ3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "CNQRJ2XRQ5WYZJQ3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8525" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CNQRJ2XRQ5WYZJQ3.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "CNQRJ2XRQ5WYZJQ3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CNQRJ2XRQ5WYZJQ3.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "CNQRJ2XRQ5WYZJQ3.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CNQRJ2XRQ5WYZJQ3.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "CNQRJ2XRQ5WYZJQ3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CNQRJ2XRQ5WYZJQ3.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "CNQRJ2XRQ5WYZJQ3.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CNQRJ2XRQ5WYZJQ3.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "CNQRJ2XRQ5WYZJQ3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CNQRJ2XRQ5WYZJQ3.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "CNQRJ2XRQ5WYZJQ3.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3667" + }, + "appliesTo" : [ ] + }, + "CNQRJ2XRQ5WYZJQ3.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "CNQRJ2XRQ5WYZJQ3.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CNQRJ2XRQ5WYZJQ3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "CNQRJ2XRQ5WYZJQ3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CNQRJ2XRQ5WYZJQ3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "CNQRJ2XRQ5WYZJQ3.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CNQRJ2XRQ5WYZJQ3.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "CNQRJ2XRQ5WYZJQ3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CNQRJ2XRQ5WYZJQ3.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "CNQRJ2XRQ5WYZJQ3.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CNQRJ2XRQ5WYZJQ3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "CNQRJ2XRQ5WYZJQ3", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "CNQRJ2XRQ5WYZJQ3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "CNQRJ2XRQ5WYZJQ3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3388" + }, + "appliesTo" : [ ] + }, + "CNQRJ2XRQ5WYZJQ3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "CNQRJ2XRQ5WYZJQ3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CNQRJ2XRQ5WYZJQ3.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "CNQRJ2XRQ5WYZJQ3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CNQRJ2XRQ5WYZJQ3.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "CNQRJ2XRQ5WYZJQ3.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17964" + }, + "appliesTo" : [ ] + }, + "CNQRJ2XRQ5WYZJQ3.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "CNQRJ2XRQ5WYZJQ3.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CNQRJ2XRQ5WYZJQ3.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "CNQRJ2XRQ5WYZJQ3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CNQRJ2XRQ5WYZJQ3.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "CNQRJ2XRQ5WYZJQ3.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7252" + }, + "appliesTo" : [ ] + }, + "CNQRJ2XRQ5WYZJQ3.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "CNQRJ2XRQ5WYZJQ3.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "XCXYQ48G7HXYYHAC" : { + "XCXYQ48G7HXYYHAC.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "XCXYQ48G7HXYYHAC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XCXYQ48G7HXYYHAC.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "XCXYQ48G7HXYYHAC.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XCXYQ48G7HXYYHAC.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XCXYQ48G7HXYYHAC", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "XCXYQ48G7HXYYHAC.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XCXYQ48G7HXYYHAC.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2537" + }, + "appliesTo" : [ ] + }, + "XCXYQ48G7HXYYHAC.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XCXYQ48G7HXYYHAC.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XCXYQ48G7HXYYHAC.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "XCXYQ48G7HXYYHAC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XCXYQ48G7HXYYHAC.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "XCXYQ48G7HXYYHAC.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3860000000" + }, + "appliesTo" : [ ] + }, + "XCXYQ48G7HXYYHAC.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "XCXYQ48G7HXYYHAC.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2245" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XCXYQ48G7HXYYHAC.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XCXYQ48G7HXYYHAC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XCXYQ48G7HXYYHAC.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XCXYQ48G7HXYYHAC.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XCXYQ48G7HXYYHAC.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "XCXYQ48G7HXYYHAC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XCXYQ48G7HXYYHAC.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "XCXYQ48G7HXYYHAC.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5539" + }, + "appliesTo" : [ ] + }, + "XCXYQ48G7HXYYHAC.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "XCXYQ48G7HXYYHAC.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XCXYQ48G7HXYYHAC.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "XCXYQ48G7HXYYHAC", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "XCXYQ48G7HXYYHAC.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "XCXYQ48G7HXYYHAC.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14012" + }, + "appliesTo" : [ ] + }, + "XCXYQ48G7HXYYHAC.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "XCXYQ48G7HXYYHAC.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XCXYQ48G7HXYYHAC.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "XCXYQ48G7HXYYHAC", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "XCXYQ48G7HXYYHAC.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "XCXYQ48G7HXYYHAC.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6850" + }, + "appliesTo" : [ ] + }, + "XCXYQ48G7HXYYHAC.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "XCXYQ48G7HXYYHAC.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XCXYQ48G7HXYYHAC.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XCXYQ48G7HXYYHAC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XCXYQ48G7HXYYHAC.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XCXYQ48G7HXYYHAC.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11684" + }, + "appliesTo" : [ ] + }, + "XCXYQ48G7HXYYHAC.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XCXYQ48G7HXYYHAC.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XCXYQ48G7HXYYHAC.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "XCXYQ48G7HXYYHAC", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "XCXYQ48G7HXYYHAC.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "XCXYQ48G7HXYYHAC.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XCXYQ48G7HXYYHAC.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XCXYQ48G7HXYYHAC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XCXYQ48G7HXYYHAC.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XCXYQ48G7HXYYHAC.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2090000000" + }, + "appliesTo" : [ ] + }, + "XCXYQ48G7HXYYHAC.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XCXYQ48G7HXYYHAC.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6938" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XCXYQ48G7HXYYHAC.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XCXYQ48G7HXYYHAC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XCXYQ48G7HXYYHAC.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XCXYQ48G7HXYYHAC.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "XCXYQ48G7HXYYHAC.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XCXYQ48G7HXYYHAC.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5053" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "MTH9HCPYR8DT5RJ2" : { + "MTH9HCPYR8DT5RJ2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "MTH9HCPYR8DT5RJ2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MTH9HCPYR8DT5RJ2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "MTH9HCPYR8DT5RJ2.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MTH9HCPYR8DT5RJ2.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "MTH9HCPYR8DT5RJ2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MTH9HCPYR8DT5RJ2.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "MTH9HCPYR8DT5RJ2.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1720000000" + }, + "appliesTo" : [ ] + }, + "MTH9HCPYR8DT5RJ2.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "MTH9HCPYR8DT5RJ2.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1506" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MTH9HCPYR8DT5RJ2.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "MTH9HCPYR8DT5RJ2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MTH9HCPYR8DT5RJ2.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "MTH9HCPYR8DT5RJ2.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MTH9HCPYR8DT5RJ2.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "MTH9HCPYR8DT5RJ2", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "MTH9HCPYR8DT5RJ2.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "MTH9HCPYR8DT5RJ2.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7601" + }, + "appliesTo" : [ ] + }, + "MTH9HCPYR8DT5RJ2.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "MTH9HCPYR8DT5RJ2.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MTH9HCPYR8DT5RJ2.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "MTH9HCPYR8DT5RJ2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MTH9HCPYR8DT5RJ2.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "MTH9HCPYR8DT5RJ2.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2985" + }, + "appliesTo" : [ ] + }, + "MTH9HCPYR8DT5RJ2.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "MTH9HCPYR8DT5RJ2.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MTH9HCPYR8DT5RJ2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "MTH9HCPYR8DT5RJ2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MTH9HCPYR8DT5RJ2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "MTH9HCPYR8DT5RJ2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "955" + }, + "appliesTo" : [ ] + }, + "MTH9HCPYR8DT5RJ2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "MTH9HCPYR8DT5RJ2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MTH9HCPYR8DT5RJ2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "MTH9HCPYR8DT5RJ2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "MTH9HCPYR8DT5RJ2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "MTH9HCPYR8DT5RJ2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2654" + }, + "appliesTo" : [ ] + }, + "MTH9HCPYR8DT5RJ2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "MTH9HCPYR8DT5RJ2.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MTH9HCPYR8DT5RJ2.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "MTH9HCPYR8DT5RJ2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "MTH9HCPYR8DT5RJ2.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "MTH9HCPYR8DT5RJ2.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2650" + }, + "appliesTo" : [ ] + }, + "MTH9HCPYR8DT5RJ2.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "MTH9HCPYR8DT5RJ2.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MTH9HCPYR8DT5RJ2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "MTH9HCPYR8DT5RJ2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MTH9HCPYR8DT5RJ2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "MTH9HCPYR8DT5RJ2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "MTH9HCPYR8DT5RJ2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "MTH9HCPYR8DT5RJ2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6333" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MTH9HCPYR8DT5RJ2.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "MTH9HCPYR8DT5RJ2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "MTH9HCPYR8DT5RJ2.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "MTH9HCPYR8DT5RJ2.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MTH9HCPYR8DT5RJ2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "MTH9HCPYR8DT5RJ2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MTH9HCPYR8DT5RJ2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "MTH9HCPYR8DT5RJ2.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1980000000" + }, + "appliesTo" : [ ] + }, + "MTH9HCPYR8DT5RJ2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "MTH9HCPYR8DT5RJ2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1535" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "W58JQDZKEMS87E3Y" : { + "W58JQDZKEMS87E3Y.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "W58JQDZKEMS87E3Y", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "W58JQDZKEMS87E3Y.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "W58JQDZKEMS87E3Y.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "235269" + }, + "appliesTo" : [ ] + }, + "W58JQDZKEMS87E3Y.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "W58JQDZKEMS87E3Y.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "W58JQDZKEMS87E3Y.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "W58JQDZKEMS87E3Y", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "W58JQDZKEMS87E3Y.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "W58JQDZKEMS87E3Y.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9720000000" + }, + "appliesTo" : [ ] + }, + "W58JQDZKEMS87E3Y.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "W58JQDZKEMS87E3Y.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "104379" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "W58JQDZKEMS87E3Y.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "W58JQDZKEMS87E3Y", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "W58JQDZKEMS87E3Y.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "W58JQDZKEMS87E3Y.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "120035" + }, + "appliesTo" : [ ] + }, + "W58JQDZKEMS87E3Y.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "W58JQDZKEMS87E3Y.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "W58JQDZKEMS87E3Y.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "W58JQDZKEMS87E3Y", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "W58JQDZKEMS87E3Y.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "W58JQDZKEMS87E3Y.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.5790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "W58JQDZKEMS87E3Y.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "W58JQDZKEMS87E3Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W58JQDZKEMS87E3Y.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "W58JQDZKEMS87E3Y.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "78895" + }, + "appliesTo" : [ ] + }, + "W58JQDZKEMS87E3Y.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "W58JQDZKEMS87E3Y.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.0060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "W58JQDZKEMS87E3Y.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "W58JQDZKEMS87E3Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W58JQDZKEMS87E3Y.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "W58JQDZKEMS87E3Y.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "18.9130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "W58JQDZKEMS87E3Y.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "W58JQDZKEMS87E3Y", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "W58JQDZKEMS87E3Y.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "W58JQDZKEMS87E3Y.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "134464" + }, + "appliesTo" : [ ] + }, + "W58JQDZKEMS87E3Y.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "W58JQDZKEMS87E3Y.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "W58JQDZKEMS87E3Y.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "W58JQDZKEMS87E3Y", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "W58JQDZKEMS87E3Y.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "W58JQDZKEMS87E3Y.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "68604" + }, + "appliesTo" : [ ] + }, + "W58JQDZKEMS87E3Y.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "W58JQDZKEMS87E3Y.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.8320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "W58JQDZKEMS87E3Y.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "W58JQDZKEMS87E3Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W58JQDZKEMS87E3Y.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "W58JQDZKEMS87E3Y.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "154634" + }, + "appliesTo" : [ ] + }, + "W58JQDZKEMS87E3Y.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "W58JQDZKEMS87E3Y.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "W58JQDZKEMS87E3Y.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "W58JQDZKEMS87E3Y", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "W58JQDZKEMS87E3Y.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "W58JQDZKEMS87E3Y.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "W58JQDZKEMS87E3Y.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "W58JQDZKEMS87E3Y.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "196232" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "W58JQDZKEMS87E3Y.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "W58JQDZKEMS87E3Y", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "W58JQDZKEMS87E3Y.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "W58JQDZKEMS87E3Y.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.8660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "AMRJDA6P539Y5Q3X" : { + "AMRJDA6P539Y5Q3X.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "AMRJDA6P539Y5Q3X", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AMRJDA6P539Y5Q3X.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "AMRJDA6P539Y5Q3X.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1210" + }, + "appliesTo" : [ ] + }, + "AMRJDA6P539Y5Q3X.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "AMRJDA6P539Y5Q3X.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AMRJDA6P539Y5Q3X.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "AMRJDA6P539Y5Q3X", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AMRJDA6P539Y5Q3X.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "AMRJDA6P539Y5Q3X.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2316" + }, + "appliesTo" : [ ] + }, + "AMRJDA6P539Y5Q3X.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "AMRJDA6P539Y5Q3X.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AMRJDA6P539Y5Q3X.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "AMRJDA6P539Y5Q3X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AMRJDA6P539Y5Q3X.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "AMRJDA6P539Y5Q3X.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2620" + }, + "appliesTo" : [ ] + }, + "AMRJDA6P539Y5Q3X.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "AMRJDA6P539Y5Q3X.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "AMRJDA6P539Y5Q3X.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "AMRJDA6P539Y5Q3X", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AMRJDA6P539Y5Q3X.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "AMRJDA6P539Y5Q3X.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2058000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "AMRJDA6P539Y5Q3X.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "AMRJDA6P539Y5Q3X", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AMRJDA6P539Y5Q3X.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "AMRJDA6P539Y5Q3X.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "AMRJDA6P539Y5Q3X.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "AMRJDA6P539Y5Q3X.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5433" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "AMRJDA6P539Y5Q3X.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "AMRJDA6P539Y5Q3X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AMRJDA6P539Y5Q3X.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "AMRJDA6P539Y5Q3X.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "AMRJDA6P539Y5Q3X.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "AMRJDA6P539Y5Q3X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AMRJDA6P539Y5Q3X.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "AMRJDA6P539Y5Q3X.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1365" + }, + "appliesTo" : [ ] + }, + "AMRJDA6P539Y5Q3X.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "AMRJDA6P539Y5Q3X.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1487000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "AMRJDA6P539Y5Q3X.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "AMRJDA6P539Y5Q3X", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AMRJDA6P539Y5Q3X.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "AMRJDA6P539Y5Q3X.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2454" + }, + "appliesTo" : [ ] + }, + "AMRJDA6P539Y5Q3X.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "AMRJDA6P539Y5Q3X.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AMRJDA6P539Y5Q3X.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "AMRJDA6P539Y5Q3X", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AMRJDA6P539Y5Q3X.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "AMRJDA6P539Y5Q3X.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2808000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "AMRJDA6P539Y5Q3X.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "AMRJDA6P539Y5Q3X", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AMRJDA6P539Y5Q3X.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "AMRJDA6P539Y5Q3X.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2770" + }, + "appliesTo" : [ ] + }, + "AMRJDA6P539Y5Q3X.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "AMRJDA6P539Y5Q3X.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "AMRJDA6P539Y5Q3X.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "AMRJDA6P539Y5Q3X", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AMRJDA6P539Y5Q3X.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "AMRJDA6P539Y5Q3X.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4647" + }, + "appliesTo" : [ ] + }, + "AMRJDA6P539Y5Q3X.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "AMRJDA6P539Y5Q3X.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AMRJDA6P539Y5Q3X.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "AMRJDA6P539Y5Q3X", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AMRJDA6P539Y5Q3X.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "AMRJDA6P539Y5Q3X.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2317000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "DT3ZK6NDAD7ADBVZ" : { + "DT3ZK6NDAD7ADBVZ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "DT3ZK6NDAD7ADBVZ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DT3ZK6NDAD7ADBVZ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "DT3ZK6NDAD7ADBVZ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DT3ZK6NDAD7ADBVZ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "DT3ZK6NDAD7ADBVZ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "DT3ZK6NDAD7ADBVZ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "DT3ZK6NDAD7ADBVZ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "DT3ZK6NDAD7ADBVZ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "DT3ZK6NDAD7ADBVZ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "81253" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DT3ZK6NDAD7ADBVZ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "DT3ZK6NDAD7ADBVZ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DT3ZK6NDAD7ADBVZ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "DT3ZK6NDAD7ADBVZ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "43678" + }, + "appliesTo" : [ ] + }, + "DT3ZK6NDAD7ADBVZ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "DT3ZK6NDAD7ADBVZ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DT3ZK6NDAD7ADBVZ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "DT3ZK6NDAD7ADBVZ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DT3ZK6NDAD7ADBVZ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "DT3ZK6NDAD7ADBVZ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DT3ZK6NDAD7ADBVZ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "DT3ZK6NDAD7ADBVZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DT3ZK6NDAD7ADBVZ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "DT3ZK6NDAD7ADBVZ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33947" + }, + "appliesTo" : [ ] + }, + "DT3ZK6NDAD7ADBVZ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "DT3ZK6NDAD7ADBVZ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DT3ZK6NDAD7ADBVZ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "DT3ZK6NDAD7ADBVZ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DT3ZK6NDAD7ADBVZ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "DT3ZK6NDAD7ADBVZ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5800000000" + }, + "appliesTo" : [ ] + }, + "DT3ZK6NDAD7ADBVZ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "DT3ZK6NDAD7ADBVZ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "41512" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DT3ZK6NDAD7ADBVZ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "DT3ZK6NDAD7ADBVZ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DT3ZK6NDAD7ADBVZ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "DT3ZK6NDAD7ADBVZ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "86678" + }, + "appliesTo" : [ ] + }, + "DT3ZK6NDAD7ADBVZ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "DT3ZK6NDAD7ADBVZ.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DT3ZK6NDAD7ADBVZ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "DT3ZK6NDAD7ADBVZ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DT3ZK6NDAD7ADBVZ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "DT3ZK6NDAD7ADBVZ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16024" + }, + "appliesTo" : [ ] + }, + "DT3ZK6NDAD7ADBVZ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "DT3ZK6NDAD7ADBVZ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DT3ZK6NDAD7ADBVZ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "DT3ZK6NDAD7ADBVZ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DT3ZK6NDAD7ADBVZ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "DT3ZK6NDAD7ADBVZ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DT3ZK6NDAD7ADBVZ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "DT3ZK6NDAD7ADBVZ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "DT3ZK6NDAD7ADBVZ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "DT3ZK6NDAD7ADBVZ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31763" + }, + "appliesTo" : [ ] + }, + "DT3ZK6NDAD7ADBVZ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "DT3ZK6NDAD7ADBVZ.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DT3ZK6NDAD7ADBVZ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "DT3ZK6NDAD7ADBVZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DT3ZK6NDAD7ADBVZ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "DT3ZK6NDAD7ADBVZ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17138" + }, + "appliesTo" : [ ] + }, + "DT3ZK6NDAD7ADBVZ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "DT3ZK6NDAD7ADBVZ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DT3ZK6NDAD7ADBVZ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "DT3ZK6NDAD7ADBVZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DT3ZK6NDAD7ADBVZ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "DT3ZK6NDAD7ADBVZ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.0070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "M9HNUU75T45RPFC6" : { + "M9HNUU75T45RPFC6.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "M9HNUU75T45RPFC6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M9HNUU75T45RPFC6.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "M9HNUU75T45RPFC6.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "M9HNUU75T45RPFC6.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "M9HNUU75T45RPFC6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M9HNUU75T45RPFC6.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "M9HNUU75T45RPFC6.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "590" + }, + "appliesTo" : [ ] + }, + "M9HNUU75T45RPFC6.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "M9HNUU75T45RPFC6.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "M9HNUU75T45RPFC6.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "M9HNUU75T45RPFC6", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "M9HNUU75T45RPFC6.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "M9HNUU75T45RPFC6.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1025" + }, + "appliesTo" : [ ] + }, + "M9HNUU75T45RPFC6.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "M9HNUU75T45RPFC6.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "M9HNUU75T45RPFC6.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "M9HNUU75T45RPFC6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M9HNUU75T45RPFC6.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "M9HNUU75T45RPFC6.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1102" + }, + "appliesTo" : [ ] + }, + "M9HNUU75T45RPFC6.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "M9HNUU75T45RPFC6.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "M9HNUU75T45RPFC6.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "M9HNUU75T45RPFC6", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "M9HNUU75T45RPFC6.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "M9HNUU75T45RPFC6.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1489" + }, + "appliesTo" : [ ] + }, + "M9HNUU75T45RPFC6.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "M9HNUU75T45RPFC6.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "M9HNUU75T45RPFC6.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "M9HNUU75T45RPFC6", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "M9HNUU75T45RPFC6.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "M9HNUU75T45RPFC6.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "M9HNUU75T45RPFC6.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "M9HNUU75T45RPFC6", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "M9HNUU75T45RPFC6.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "M9HNUU75T45RPFC6.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2528" + }, + "appliesTo" : [ ] + }, + "M9HNUU75T45RPFC6.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "M9HNUU75T45RPFC6.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "M9HNUU75T45RPFC6.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "M9HNUU75T45RPFC6", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "M9HNUU75T45RPFC6.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "M9HNUU75T45RPFC6.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1976" + }, + "appliesTo" : [ ] + }, + "M9HNUU75T45RPFC6.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "M9HNUU75T45RPFC6.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "M9HNUU75T45RPFC6.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "M9HNUU75T45RPFC6", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "M9HNUU75T45RPFC6.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "M9HNUU75T45RPFC6.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "M9HNUU75T45RPFC6.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "M9HNUU75T45RPFC6.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "998" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "M9HNUU75T45RPFC6.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "M9HNUU75T45RPFC6", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "M9HNUU75T45RPFC6.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "M9HNUU75T45RPFC6.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0480000000" + }, + "appliesTo" : [ ] + }, + "M9HNUU75T45RPFC6.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "M9HNUU75T45RPFC6.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "597" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "M9HNUU75T45RPFC6.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "M9HNUU75T45RPFC6", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "M9HNUU75T45RPFC6.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "M9HNUU75T45RPFC6.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "VERRUXNQ656VFYCC" : { + "VERRUXNQ656VFYCC.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "VERRUXNQ656VFYCC", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "VERRUXNQ656VFYCC.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "VERRUXNQ656VFYCC.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2899" + }, + "appliesTo" : [ ] + }, + "VERRUXNQ656VFYCC.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "VERRUXNQ656VFYCC.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VERRUXNQ656VFYCC.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "VERRUXNQ656VFYCC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VERRUXNQ656VFYCC.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "VERRUXNQ656VFYCC.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "529" + }, + "appliesTo" : [ ] + }, + "VERRUXNQ656VFYCC.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "VERRUXNQ656VFYCC.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0604000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VERRUXNQ656VFYCC.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "VERRUXNQ656VFYCC", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "VERRUXNQ656VFYCC.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "VERRUXNQ656VFYCC.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1125000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VERRUXNQ656VFYCC.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "VERRUXNQ656VFYCC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VERRUXNQ656VFYCC.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "VERRUXNQ656VFYCC.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1053" + }, + "appliesTo" : [ ] + }, + "VERRUXNQ656VFYCC.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "VERRUXNQ656VFYCC.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VERRUXNQ656VFYCC.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "VERRUXNQ656VFYCC", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "VERRUXNQ656VFYCC.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "VERRUXNQ656VFYCC.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1094000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VERRUXNQ656VFYCC.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "VERRUXNQ656VFYCC", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "VERRUXNQ656VFYCC.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "VERRUXNQ656VFYCC.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1181000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VERRUXNQ656VFYCC.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "VERRUXNQ656VFYCC", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "VERRUXNQ656VFYCC.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "VERRUXNQ656VFYCC.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "511" + }, + "appliesTo" : [ ] + }, + "VERRUXNQ656VFYCC.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "VERRUXNQ656VFYCC.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0584000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VERRUXNQ656VFYCC.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "VERRUXNQ656VFYCC", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "VERRUXNQ656VFYCC.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "VERRUXNQ656VFYCC.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1018" + }, + "appliesTo" : [ ] + }, + "VERRUXNQ656VFYCC.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "VERRUXNQ656VFYCC.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VERRUXNQ656VFYCC.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "VERRUXNQ656VFYCC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VERRUXNQ656VFYCC.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "VERRUXNQ656VFYCC.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1225000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VERRUXNQ656VFYCC.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "VERRUXNQ656VFYCC", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "VERRUXNQ656VFYCC.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "VERRUXNQ656VFYCC.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "VERRUXNQ656VFYCC.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "VERRUXNQ656VFYCC.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2808" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VERRUXNQ656VFYCC.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "VERRUXNQ656VFYCC", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "VERRUXNQ656VFYCC.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "VERRUXNQ656VFYCC.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0540000000" + }, + "appliesTo" : [ ] + }, + "VERRUXNQ656VFYCC.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "VERRUXNQ656VFYCC.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1419" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VERRUXNQ656VFYCC.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "VERRUXNQ656VFYCC", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "VERRUXNQ656VFYCC.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "VERRUXNQ656VFYCC.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1455" + }, + "appliesTo" : [ ] + }, + "VERRUXNQ656VFYCC.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "VERRUXNQ656VFYCC.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0554000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "SCYNS2QNCRN89WMZ" : { + "SCYNS2QNCRN89WMZ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "SCYNS2QNCRN89WMZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SCYNS2QNCRN89WMZ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "SCYNS2QNCRN89WMZ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "552" + }, + "appliesTo" : [ ] + }, + "SCYNS2QNCRN89WMZ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "SCYNS2QNCRN89WMZ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SCYNS2QNCRN89WMZ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SCYNS2QNCRN89WMZ", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "SCYNS2QNCRN89WMZ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SCYNS2QNCRN89WMZ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SCYNS2QNCRN89WMZ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "SCYNS2QNCRN89WMZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SCYNS2QNCRN89WMZ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "SCYNS2QNCRN89WMZ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1922000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SCYNS2QNCRN89WMZ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SCYNS2QNCRN89WMZ", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "SCYNS2QNCRN89WMZ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SCYNS2QNCRN89WMZ.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0971000000" + }, + "appliesTo" : [ ] + }, + "SCYNS2QNCRN89WMZ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SCYNS2QNCRN89WMZ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "976" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SCYNS2QNCRN89WMZ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "SCYNS2QNCRN89WMZ", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "SCYNS2QNCRN89WMZ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "SCYNS2QNCRN89WMZ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1122" + }, + "appliesTo" : [ ] + }, + "SCYNS2QNCRN89WMZ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "SCYNS2QNCRN89WMZ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1027000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SCYNS2QNCRN89WMZ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "SCYNS2QNCRN89WMZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SCYNS2QNCRN89WMZ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "SCYNS2QNCRN89WMZ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1607" + }, + "appliesTo" : [ ] + }, + "SCYNS2QNCRN89WMZ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "SCYNS2QNCRN89WMZ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SCYNS2QNCRN89WMZ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "SCYNS2QNCRN89WMZ", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "SCYNS2QNCRN89WMZ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "SCYNS2QNCRN89WMZ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1522000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SCYNS2QNCRN89WMZ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SCYNS2QNCRN89WMZ", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "SCYNS2QNCRN89WMZ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SCYNS2QNCRN89WMZ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1466" + }, + "appliesTo" : [ ] + }, + "SCYNS2QNCRN89WMZ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SCYNS2QNCRN89WMZ.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SCYNS2QNCRN89WMZ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SCYNS2QNCRN89WMZ", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "SCYNS2QNCRN89WMZ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SCYNS2QNCRN89WMZ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3411" + }, + "appliesTo" : [ ] + }, + "SCYNS2QNCRN89WMZ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SCYNS2QNCRN89WMZ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SCYNS2QNCRN89WMZ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "SCYNS2QNCRN89WMZ", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "SCYNS2QNCRN89WMZ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "SCYNS2QNCRN89WMZ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1402000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SCYNS2QNCRN89WMZ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "SCYNS2QNCRN89WMZ", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "SCYNS2QNCRN89WMZ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "SCYNS2QNCRN89WMZ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3776" + }, + "appliesTo" : [ ] + }, + "SCYNS2QNCRN89WMZ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "SCYNS2QNCRN89WMZ.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SCYNS2QNCRN89WMZ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SCYNS2QNCRN89WMZ", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "SCYNS2QNCRN89WMZ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SCYNS2QNCRN89WMZ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "480" + }, + "appliesTo" : [ ] + }, + "SCYNS2QNCRN89WMZ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SCYNS2QNCRN89WMZ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1148000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "7WXY6Y9EMWKMGGWT" : { + "7WXY6Y9EMWKMGGWT.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "7WXY6Y9EMWKMGGWT", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7WXY6Y9EMWKMGGWT.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "7WXY6Y9EMWKMGGWT.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5281" + }, + "appliesTo" : [ ] + }, + "7WXY6Y9EMWKMGGWT.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "7WXY6Y9EMWKMGGWT.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7WXY6Y9EMWKMGGWT.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "7WXY6Y9EMWKMGGWT", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "7WXY6Y9EMWKMGGWT.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "7WXY6Y9EMWKMGGWT.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7WXY6Y9EMWKMGGWT.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "7WXY6Y9EMWKMGGWT", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7WXY6Y9EMWKMGGWT.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "7WXY6Y9EMWKMGGWT.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0750000000" + }, + "appliesTo" : [ ] + }, + "7WXY6Y9EMWKMGGWT.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "7WXY6Y9EMWKMGGWT.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3406" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7WXY6Y9EMWKMGGWT.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "7WXY6Y9EMWKMGGWT", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "7WXY6Y9EMWKMGGWT.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "7WXY6Y9EMWKMGGWT.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2511" + }, + "appliesTo" : [ ] + }, + "7WXY6Y9EMWKMGGWT.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "7WXY6Y9EMWKMGGWT.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7WXY6Y9EMWKMGGWT.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "7WXY6Y9EMWKMGGWT", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "7WXY6Y9EMWKMGGWT.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "7WXY6Y9EMWKMGGWT.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4065" + }, + "appliesTo" : [ ] + }, + "7WXY6Y9EMWKMGGWT.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "7WXY6Y9EMWKMGGWT.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7WXY6Y9EMWKMGGWT.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "7WXY6Y9EMWKMGGWT", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "7WXY6Y9EMWKMGGWT.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "7WXY6Y9EMWKMGGWT.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7WXY6Y9EMWKMGGWT.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "7WXY6Y9EMWKMGGWT", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "7WXY6Y9EMWKMGGWT.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "7WXY6Y9EMWKMGGWT.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1989" + }, + "appliesTo" : [ ] + }, + "7WXY6Y9EMWKMGGWT.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "7WXY6Y9EMWKMGGWT.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7WXY6Y9EMWKMGGWT.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "7WXY6Y9EMWKMGGWT", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "7WXY6Y9EMWKMGGWT.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "7WXY6Y9EMWKMGGWT.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1307" + }, + "appliesTo" : [ ] + }, + "7WXY6Y9EMWKMGGWT.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "7WXY6Y9EMWKMGGWT.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7WXY6Y9EMWKMGGWT.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "7WXY6Y9EMWKMGGWT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7WXY6Y9EMWKMGGWT.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "7WXY6Y9EMWKMGGWT.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7WXY6Y9EMWKMGGWT.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "7WXY6Y9EMWKMGGWT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7WXY6Y9EMWKMGGWT.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "7WXY6Y9EMWKMGGWT.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "7WXY6Y9EMWKMGGWT.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "7WXY6Y9EMWKMGGWT.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2238" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7WXY6Y9EMWKMGGWT.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "7WXY6Y9EMWKMGGWT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7WXY6Y9EMWKMGGWT.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "7WXY6Y9EMWKMGGWT.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1170" + }, + "appliesTo" : [ ] + }, + "7WXY6Y9EMWKMGGWT.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "7WXY6Y9EMWKMGGWT.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "6SB59AKPWK57QDT4" : { + "6SB59AKPWK57QDT4.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6SB59AKPWK57QDT4", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6SB59AKPWK57QDT4.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6SB59AKPWK57QDT4.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6SB59AKPWK57QDT4.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6SB59AKPWK57QDT4", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6SB59AKPWK57QDT4.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6SB59AKPWK57QDT4.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2741" + }, + "appliesTo" : [ ] + }, + "6SB59AKPWK57QDT4.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6SB59AKPWK57QDT4.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6SB59AKPWK57QDT4.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6SB59AKPWK57QDT4", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "6SB59AKPWK57QDT4.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6SB59AKPWK57QDT4.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8691" + }, + "appliesTo" : [ ] + }, + "6SB59AKPWK57QDT4.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6SB59AKPWK57QDT4.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6SB59AKPWK57QDT4.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6SB59AKPWK57QDT4", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "6SB59AKPWK57QDT4.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6SB59AKPWK57QDT4.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4006" + }, + "appliesTo" : [ ] + }, + "6SB59AKPWK57QDT4.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6SB59AKPWK57QDT4.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6SB59AKPWK57QDT4.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6SB59AKPWK57QDT4", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6SB59AKPWK57QDT4.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6SB59AKPWK57QDT4.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2670000000" + }, + "appliesTo" : [ ] + }, + "6SB59AKPWK57QDT4.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6SB59AKPWK57QDT4.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1747" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "SKGAAJVJUYA4XN4J" : { + "SKGAAJVJUYA4XN4J.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "SKGAAJVJUYA4XN4J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SKGAAJVJUYA4XN4J.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "SKGAAJVJUYA4XN4J.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9248" + }, + "appliesTo" : [ ] + }, + "SKGAAJVJUYA4XN4J.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "SKGAAJVJUYA4XN4J.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SKGAAJVJUYA4XN4J.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SKGAAJVJUYA4XN4J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SKGAAJVJUYA4XN4J.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SKGAAJVJUYA4XN4J.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SKGAAJVJUYA4XN4J.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "SKGAAJVJUYA4XN4J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SKGAAJVJUYA4XN4J.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "SKGAAJVJUYA4XN4J.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SKGAAJVJUYA4XN4J.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SKGAAJVJUYA4XN4J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SKGAAJVJUYA4XN4J.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SKGAAJVJUYA4XN4J.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29330" + }, + "appliesTo" : [ ] + }, + "SKGAAJVJUYA4XN4J.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SKGAAJVJUYA4XN4J.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SKGAAJVJUYA4XN4J.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SKGAAJVJUYA4XN4J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SKGAAJVJUYA4XN4J.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SKGAAJVJUYA4XN4J.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9180000000" + }, + "appliesTo" : [ ] + }, + "SKGAAJVJUYA4XN4J.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SKGAAJVJUYA4XN4J.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8042" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SKGAAJVJUYA4XN4J.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "SKGAAJVJUYA4XN4J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SKGAAJVJUYA4XN4J.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "SKGAAJVJUYA4XN4J.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17973" + }, + "appliesTo" : [ ] + }, + "SKGAAJVJUYA4XN4J.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "SKGAAJVJUYA4XN4J.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SKGAAJVJUYA4XN4J.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "SKGAAJVJUYA4XN4J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SKGAAJVJUYA4XN4J.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "SKGAAJVJUYA4XN4J.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SKGAAJVJUYA4XN4J.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SKGAAJVJUYA4XN4J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SKGAAJVJUYA4XN4J.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SKGAAJVJUYA4XN4J.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SKGAAJVJUYA4XN4J.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SKGAAJVJUYA4XN4J.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15762" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SKGAAJVJUYA4XN4J.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "SKGAAJVJUYA4XN4J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SKGAAJVJUYA4XN4J.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "SKGAAJVJUYA4XN4J.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18126" + }, + "appliesTo" : [ ] + }, + "SKGAAJVJUYA4XN4J.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "SKGAAJVJUYA4XN4J.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SKGAAJVJUYA4XN4J.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SKGAAJVJUYA4XN4J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SKGAAJVJUYA4XN4J.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SKGAAJVJUYA4XN4J.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15601" + }, + "appliesTo" : [ ] + }, + "SKGAAJVJUYA4XN4J.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SKGAAJVJUYA4XN4J.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SKGAAJVJUYA4XN4J.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "SKGAAJVJUYA4XN4J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SKGAAJVJUYA4XN4J.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "SKGAAJVJUYA4XN4J.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35227" + }, + "appliesTo" : [ ] + }, + "SKGAAJVJUYA4XN4J.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "SKGAAJVJUYA4XN4J.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SKGAAJVJUYA4XN4J.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "SKGAAJVJUYA4XN4J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SKGAAJVJUYA4XN4J.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "SKGAAJVJUYA4XN4J.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "6AHJNWJK7N3CKJ6D" : { + "6AHJNWJK7N3CKJ6D.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6AHJNWJK7N3CKJ6D", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6AHJNWJK7N3CKJ6D.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6AHJNWJK7N3CKJ6D.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13939" + }, + "appliesTo" : [ ] + }, + "6AHJNWJK7N3CKJ6D.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6AHJNWJK7N3CKJ6D.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6AHJNWJK7N3CKJ6D.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "6AHJNWJK7N3CKJ6D", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6AHJNWJK7N3CKJ6D.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "6AHJNWJK7N3CKJ6D.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28899" + }, + "appliesTo" : [ ] + }, + "6AHJNWJK7N3CKJ6D.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "6AHJNWJK7N3CKJ6D.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6AHJNWJK7N3CKJ6D.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "6AHJNWJK7N3CKJ6D", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6AHJNWJK7N3CKJ6D.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "6AHJNWJK7N3CKJ6D.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6AHJNWJK7N3CKJ6D.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "6AHJNWJK7N3CKJ6D", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6AHJNWJK7N3CKJ6D.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "6AHJNWJK7N3CKJ6D.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "77122" + }, + "appliesTo" : [ ] + }, + "6AHJNWJK7N3CKJ6D.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "6AHJNWJK7N3CKJ6D.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6AHJNWJK7N3CKJ6D.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6AHJNWJK7N3CKJ6D", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6AHJNWJK7N3CKJ6D.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6AHJNWJK7N3CKJ6D.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6AHJNWJK7N3CKJ6D.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "6AHJNWJK7N3CKJ6D", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6AHJNWJK7N3CKJ6D.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "6AHJNWJK7N3CKJ6D.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14542" + }, + "appliesTo" : [ ] + }, + "6AHJNWJK7N3CKJ6D.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "6AHJNWJK7N3CKJ6D.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6AHJNWJK7N3CKJ6D.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "6AHJNWJK7N3CKJ6D", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6AHJNWJK7N3CKJ6D.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "6AHJNWJK7N3CKJ6D.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6AHJNWJK7N3CKJ6D.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "6AHJNWJK7N3CKJ6D", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6AHJNWJK7N3CKJ6D.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "6AHJNWJK7N3CKJ6D.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38741" + }, + "appliesTo" : [ ] + }, + "6AHJNWJK7N3CKJ6D.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "6AHJNWJK7N3CKJ6D.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6AHJNWJK7N3CKJ6D.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "6AHJNWJK7N3CKJ6D", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6AHJNWJK7N3CKJ6D.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "6AHJNWJK7N3CKJ6D.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6AHJNWJK7N3CKJ6D.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6AHJNWJK7N3CKJ6D", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6AHJNWJK7N3CKJ6D.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6AHJNWJK7N3CKJ6D.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37555" + }, + "appliesTo" : [ ] + }, + "6AHJNWJK7N3CKJ6D.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6AHJNWJK7N3CKJ6D.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6AHJNWJK7N3CKJ6D.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6AHJNWJK7N3CKJ6D", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6AHJNWJK7N3CKJ6D.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6AHJNWJK7N3CKJ6D.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "6AHJNWJK7N3CKJ6D.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6AHJNWJK7N3CKJ6D.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "74173" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6AHJNWJK7N3CKJ6D.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6AHJNWJK7N3CKJ6D", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6AHJNWJK7N3CKJ6D.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6AHJNWJK7N3CKJ6D.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "6AHJNWJK7N3CKJ6D.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6AHJNWJK7N3CKJ6D.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27717" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "DUFUABZJFHZ5SWBJ" : { + "DUFUABZJFHZ5SWBJ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "DUFUABZJFHZ5SWBJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DUFUABZJFHZ5SWBJ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "DUFUABZJFHZ5SWBJ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DUFUABZJFHZ5SWBJ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "DUFUABZJFHZ5SWBJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DUFUABZJFHZ5SWBJ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "DUFUABZJFHZ5SWBJ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DUFUABZJFHZ5SWBJ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "DUFUABZJFHZ5SWBJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DUFUABZJFHZ5SWBJ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "DUFUABZJFHZ5SWBJ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1279" + }, + "appliesTo" : [ ] + }, + "DUFUABZJFHZ5SWBJ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "DUFUABZJFHZ5SWBJ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DUFUABZJFHZ5SWBJ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "DUFUABZJFHZ5SWBJ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "DUFUABZJFHZ5SWBJ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "DUFUABZJFHZ5SWBJ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1202" + }, + "appliesTo" : [ ] + }, + "DUFUABZJFHZ5SWBJ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "DUFUABZJFHZ5SWBJ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DUFUABZJFHZ5SWBJ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "DUFUABZJFHZ5SWBJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DUFUABZJFHZ5SWBJ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "DUFUABZJFHZ5SWBJ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DUFUABZJFHZ5SWBJ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "DUFUABZJFHZ5SWBJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DUFUABZJFHZ5SWBJ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "DUFUABZJFHZ5SWBJ.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "DUFUABZJFHZ5SWBJ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "DUFUABZJFHZ5SWBJ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6564" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DUFUABZJFHZ5SWBJ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "DUFUABZJFHZ5SWBJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DUFUABZJFHZ5SWBJ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "DUFUABZJFHZ5SWBJ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2536" + }, + "appliesTo" : [ ] + }, + "DUFUABZJFHZ5SWBJ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "DUFUABZJFHZ5SWBJ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DUFUABZJFHZ5SWBJ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "DUFUABZJFHZ5SWBJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DUFUABZJFHZ5SWBJ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "DUFUABZJFHZ5SWBJ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3156" + }, + "appliesTo" : [ ] + }, + "DUFUABZJFHZ5SWBJ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "DUFUABZJFHZ5SWBJ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DUFUABZJFHZ5SWBJ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "DUFUABZJFHZ5SWBJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DUFUABZJFHZ5SWBJ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "DUFUABZJFHZ5SWBJ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DUFUABZJFHZ5SWBJ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "DUFUABZJFHZ5SWBJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DUFUABZJFHZ5SWBJ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "DUFUABZJFHZ5SWBJ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3305" + }, + "appliesTo" : [ ] + }, + "DUFUABZJFHZ5SWBJ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "DUFUABZJFHZ5SWBJ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DUFUABZJFHZ5SWBJ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "DUFUABZJFHZ5SWBJ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "DUFUABZJFHZ5SWBJ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "DUFUABZJFHZ5SWBJ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6191" + }, + "appliesTo" : [ ] + }, + "DUFUABZJFHZ5SWBJ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "DUFUABZJFHZ5SWBJ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DUFUABZJFHZ5SWBJ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "DUFUABZJFHZ5SWBJ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "DUFUABZJFHZ5SWBJ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "DUFUABZJFHZ5SWBJ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2385" + }, + "appliesTo" : [ ] + }, + "DUFUABZJFHZ5SWBJ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "DUFUABZJFHZ5SWBJ.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "7MS6E9W2YWKJZRX5" : { + "7MS6E9W2YWKJZRX5.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "7MS6E9W2YWKJZRX5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7MS6E9W2YWKJZRX5.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "7MS6E9W2YWKJZRX5.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "7MS6E9W2YWKJZRX5.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "7MS6E9W2YWKJZRX5.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5758" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7MS6E9W2YWKJZRX5.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "7MS6E9W2YWKJZRX5", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7MS6E9W2YWKJZRX5.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "7MS6E9W2YWKJZRX5.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6911" + }, + "appliesTo" : [ ] + }, + "7MS6E9W2YWKJZRX5.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "7MS6E9W2YWKJZRX5.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7MS6E9W2YWKJZRX5.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "7MS6E9W2YWKJZRX5", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7MS6E9W2YWKJZRX5.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "7MS6E9W2YWKJZRX5.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7MS6E9W2YWKJZRX5.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "7MS6E9W2YWKJZRX5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7MS6E9W2YWKJZRX5.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "7MS6E9W2YWKJZRX5.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2413" + }, + "appliesTo" : [ ] + }, + "7MS6E9W2YWKJZRX5.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "7MS6E9W2YWKJZRX5.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7MS6E9W2YWKJZRX5.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "7MS6E9W2YWKJZRX5", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7MS6E9W2YWKJZRX5.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "7MS6E9W2YWKJZRX5.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2408" + }, + "appliesTo" : [ ] + }, + "7MS6E9W2YWKJZRX5.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "7MS6E9W2YWKJZRX5.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7MS6E9W2YWKJZRX5.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "7MS6E9W2YWKJZRX5", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7MS6E9W2YWKJZRX5.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "7MS6E9W2YWKJZRX5.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1800000000" + }, + "appliesTo" : [ ] + }, + "7MS6E9W2YWKJZRX5.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "7MS6E9W2YWKJZRX5.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1395" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7MS6E9W2YWKJZRX5.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "7MS6E9W2YWKJZRX5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7MS6E9W2YWKJZRX5.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "7MS6E9W2YWKJZRX5.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7MS6E9W2YWKJZRX5.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "7MS6E9W2YWKJZRX5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7MS6E9W2YWKJZRX5.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "7MS6E9W2YWKJZRX5.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1650000000" + }, + "appliesTo" : [ ] + }, + "7MS6E9W2YWKJZRX5.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "7MS6E9W2YWKJZRX5.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1443" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7MS6E9W2YWKJZRX5.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "7MS6E9W2YWKJZRX5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7MS6E9W2YWKJZRX5.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "7MS6E9W2YWKJZRX5.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7MS6E9W2YWKJZRX5.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "7MS6E9W2YWKJZRX5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7MS6E9W2YWKJZRX5.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "7MS6E9W2YWKJZRX5.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2860" + }, + "appliesTo" : [ ] + }, + "7MS6E9W2YWKJZRX5.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "7MS6E9W2YWKJZRX5.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7MS6E9W2YWKJZRX5.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "7MS6E9W2YWKJZRX5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7MS6E9W2YWKJZRX5.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "7MS6E9W2YWKJZRX5.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "868" + }, + "appliesTo" : [ ] + }, + "7MS6E9W2YWKJZRX5.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "7MS6E9W2YWKJZRX5.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "6FVWSFZ39BEVJUVW" : { + "6FVWSFZ39BEVJUVW.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "6FVWSFZ39BEVJUVW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6FVWSFZ39BEVJUVW.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "6FVWSFZ39BEVJUVW.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "619" + }, + "appliesTo" : [ ] + }, + "6FVWSFZ39BEVJUVW.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "6FVWSFZ39BEVJUVW.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0636000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6FVWSFZ39BEVJUVW.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6FVWSFZ39BEVJUVW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6FVWSFZ39BEVJUVW.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6FVWSFZ39BEVJUVW.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1254000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6FVWSFZ39BEVJUVW.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "6FVWSFZ39BEVJUVW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6FVWSFZ39BEVJUVW.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "6FVWSFZ39BEVJUVW.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1393000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6FVWSFZ39BEVJUVW.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6FVWSFZ39BEVJUVW", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "6FVWSFZ39BEVJUVW.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6FVWSFZ39BEVJUVW.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1119" + }, + "appliesTo" : [ ] + }, + "6FVWSFZ39BEVJUVW.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6FVWSFZ39BEVJUVW.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6FVWSFZ39BEVJUVW.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "6FVWSFZ39BEVJUVW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6FVWSFZ39BEVJUVW.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "6FVWSFZ39BEVJUVW.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1233" + }, + "appliesTo" : [ ] + }, + "6FVWSFZ39BEVJUVW.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "6FVWSFZ39BEVJUVW.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0465000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6FVWSFZ39BEVJUVW.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6FVWSFZ39BEVJUVW", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "6FVWSFZ39BEVJUVW.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6FVWSFZ39BEVJUVW.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "6FVWSFZ39BEVJUVW.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6FVWSFZ39BEVJUVW.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1042" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6FVWSFZ39BEVJUVW.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6FVWSFZ39BEVJUVW", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "6FVWSFZ39BEVJUVW.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6FVWSFZ39BEVJUVW.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "6FVWSFZ39BEVJUVW.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6FVWSFZ39BEVJUVW.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2137" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6FVWSFZ39BEVJUVW.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "6FVWSFZ39BEVJUVW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6FVWSFZ39BEVJUVW.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "6FVWSFZ39BEVJUVW.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1054000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6FVWSFZ39BEVJUVW.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6FVWSFZ39BEVJUVW", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "6FVWSFZ39BEVJUVW.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6FVWSFZ39BEVJUVW.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0570000000" + }, + "appliesTo" : [ ] + }, + "6FVWSFZ39BEVJUVW.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6FVWSFZ39BEVJUVW.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "560" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6FVWSFZ39BEVJUVW.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "6FVWSFZ39BEVJUVW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6FVWSFZ39BEVJUVW.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "6FVWSFZ39BEVJUVW.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1159" + }, + "appliesTo" : [ ] + }, + "6FVWSFZ39BEVJUVW.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "6FVWSFZ39BEVJUVW.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6FVWSFZ39BEVJUVW.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "6FVWSFZ39BEVJUVW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6FVWSFZ39BEVJUVW.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "6FVWSFZ39BEVJUVW.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2421" + }, + "appliesTo" : [ ] + }, + "6FVWSFZ39BEVJUVW.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "6FVWSFZ39BEVJUVW.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6FVWSFZ39BEVJUVW.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "6FVWSFZ39BEVJUVW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6FVWSFZ39BEVJUVW.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "6FVWSFZ39BEVJUVW.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "WWYHV89KB5YJVTSF" : { + "WWYHV89KB5YJVTSF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "WWYHV89KB5YJVTSF", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WWYHV89KB5YJVTSF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "WWYHV89KB5YJVTSF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3420000000" + }, + "appliesTo" : [ ] + }, + "WWYHV89KB5YJVTSF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "WWYHV89KB5YJVTSF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2997" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WWYHV89KB5YJVTSF.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "WWYHV89KB5YJVTSF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WWYHV89KB5YJVTSF.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "WWYHV89KB5YJVTSF.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WWYHV89KB5YJVTSF.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "WWYHV89KB5YJVTSF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WWYHV89KB5YJVTSF.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "WWYHV89KB5YJVTSF.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3071" + }, + "appliesTo" : [ ] + }, + "WWYHV89KB5YJVTSF.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "WWYHV89KB5YJVTSF.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WWYHV89KB5YJVTSF.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "WWYHV89KB5YJVTSF", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WWYHV89KB5YJVTSF.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "WWYHV89KB5YJVTSF.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "WWYHV89KB5YJVTSF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "WWYHV89KB5YJVTSF", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WWYHV89KB5YJVTSF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "WWYHV89KB5YJVTSF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16934" + }, + "appliesTo" : [ ] + }, + "WWYHV89KB5YJVTSF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "WWYHV89KB5YJVTSF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WWYHV89KB5YJVTSF.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "WWYHV89KB5YJVTSF", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WWYHV89KB5YJVTSF.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "WWYHV89KB5YJVTSF.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "WWYHV89KB5YJVTSF.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "WWYHV89KB5YJVTSF.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17313" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WWYHV89KB5YJVTSF.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "WWYHV89KB5YJVTSF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WWYHV89KB5YJVTSF.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "WWYHV89KB5YJVTSF.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "WWYHV89KB5YJVTSF.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "WWYHV89KB5YJVTSF.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6118" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WWYHV89KB5YJVTSF.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "WWYHV89KB5YJVTSF", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WWYHV89KB5YJVTSF.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "WWYHV89KB5YJVTSF.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8680" + }, + "appliesTo" : [ ] + }, + "WWYHV89KB5YJVTSF.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "WWYHV89KB5YJVTSF.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WWYHV89KB5YJVTSF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "WWYHV89KB5YJVTSF", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WWYHV89KB5YJVTSF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "WWYHV89KB5YJVTSF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8528" + }, + "appliesTo" : [ ] + }, + "WWYHV89KB5YJVTSF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "WWYHV89KB5YJVTSF.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WWYHV89KB5YJVTSF.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "WWYHV89KB5YJVTSF", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WWYHV89KB5YJVTSF.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "WWYHV89KB5YJVTSF.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "WWYHV89KB5YJVTSF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "WWYHV89KB5YJVTSF", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WWYHV89KB5YJVTSF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "WWYHV89KB5YJVTSF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5974" + }, + "appliesTo" : [ ] + }, + "WWYHV89KB5YJVTSF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "WWYHV89KB5YJVTSF.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WWYHV89KB5YJVTSF.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "WWYHV89KB5YJVTSF", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WWYHV89KB5YJVTSF.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "WWYHV89KB5YJVTSF.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "HCMUNBKMY8ZTDFFE" : { + "HCMUNBKMY8ZTDFFE.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "HCMUNBKMY8ZTDFFE", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "HCMUNBKMY8ZTDFFE.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "HCMUNBKMY8ZTDFFE.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "HCMUNBKMY8ZTDFFE.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "HCMUNBKMY8ZTDFFE", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "HCMUNBKMY8ZTDFFE.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "HCMUNBKMY8ZTDFFE.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "750" + }, + "appliesTo" : [ ] + }, + "HCMUNBKMY8ZTDFFE.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "HCMUNBKMY8ZTDFFE.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HCMUNBKMY8ZTDFFE.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "HCMUNBKMY8ZTDFFE", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "HCMUNBKMY8ZTDFFE.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "HCMUNBKMY8ZTDFFE.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "HCMUNBKMY8ZTDFFE.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "HCMUNBKMY8ZTDFFE.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3027" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HCMUNBKMY8ZTDFFE.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "HCMUNBKMY8ZTDFFE", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "HCMUNBKMY8ZTDFFE.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "HCMUNBKMY8ZTDFFE.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "HCMUNBKMY8ZTDFFE.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "HCMUNBKMY8ZTDFFE.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1350" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HCMUNBKMY8ZTDFFE.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "HCMUNBKMY8ZTDFFE", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "HCMUNBKMY8ZTDFFE.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "HCMUNBKMY8ZTDFFE.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "493" + }, + "appliesTo" : [ ] + }, + "HCMUNBKMY8ZTDFFE.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "HCMUNBKMY8ZTDFFE.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "979YHCUCHTSAM3HF" : { + "979YHCUCHTSAM3HF.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "979YHCUCHTSAM3HF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "979YHCUCHTSAM3HF.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "979YHCUCHTSAM3HF.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28944" + }, + "appliesTo" : [ ] + }, + "979YHCUCHTSAM3HF.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "979YHCUCHTSAM3HF.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "979YHCUCHTSAM3HF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "979YHCUCHTSAM3HF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "979YHCUCHTSAM3HF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "979YHCUCHTSAM3HF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "45046" + }, + "appliesTo" : [ ] + }, + "979YHCUCHTSAM3HF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "979YHCUCHTSAM3HF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "979YHCUCHTSAM3HF.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "979YHCUCHTSAM3HF", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "979YHCUCHTSAM3HF.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "979YHCUCHTSAM3HF.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "979YHCUCHTSAM3HF.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "979YHCUCHTSAM3HF", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "979YHCUCHTSAM3HF.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "979YHCUCHTSAM3HF.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "67942" + }, + "appliesTo" : [ ] + }, + "979YHCUCHTSAM3HF.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "979YHCUCHTSAM3HF.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "979YHCUCHTSAM3HF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "979YHCUCHTSAM3HF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "979YHCUCHTSAM3HF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "979YHCUCHTSAM3HF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14736" + }, + "appliesTo" : [ ] + }, + "979YHCUCHTSAM3HF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "979YHCUCHTSAM3HF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "979YHCUCHTSAM3HF.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "979YHCUCHTSAM3HF", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "979YHCUCHTSAM3HF.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "979YHCUCHTSAM3HF.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "979YHCUCHTSAM3HF.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "979YHCUCHTSAM3HF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "979YHCUCHTSAM3HF.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "979YHCUCHTSAM3HF.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "979YHCUCHTSAM3HF.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "979YHCUCHTSAM3HF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "979YHCUCHTSAM3HF.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "979YHCUCHTSAM3HF.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6820000000" + }, + "appliesTo" : [ ] + }, + "979YHCUCHTSAM3HF.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "979YHCUCHTSAM3HF.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14795" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "979YHCUCHTSAM3HF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "979YHCUCHTSAM3HF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "979YHCUCHTSAM3HF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "979YHCUCHTSAM3HF.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "979YHCUCHTSAM3HF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "979YHCUCHTSAM3HF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25206" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "979YHCUCHTSAM3HF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "979YHCUCHTSAM3HF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "979YHCUCHTSAM3HF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "979YHCUCHTSAM3HF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22272" + }, + "appliesTo" : [ ] + }, + "979YHCUCHTSAM3HF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "979YHCUCHTSAM3HF.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "979YHCUCHTSAM3HF.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "979YHCUCHTSAM3HF", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "979YHCUCHTSAM3HF.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "979YHCUCHTSAM3HF.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39664" + }, + "appliesTo" : [ ] + }, + "979YHCUCHTSAM3HF.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "979YHCUCHTSAM3HF.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "TJYZERFDZ38JVQQW" : { + "TJYZERFDZ38JVQQW.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TJYZERFDZ38JVQQW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "TJYZERFDZ38JVQQW.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TJYZERFDZ38JVQQW.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3991" + }, + "appliesTo" : [ ] + }, + "TJYZERFDZ38JVQQW.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TJYZERFDZ38JVQQW.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TJYZERFDZ38JVQQW.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TJYZERFDZ38JVQQW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "TJYZERFDZ38JVQQW.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TJYZERFDZ38JVQQW.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2002" + }, + "appliesTo" : [ ] + }, + "TJYZERFDZ38JVQQW.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TJYZERFDZ38JVQQW.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TJYZERFDZ38JVQQW.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "TJYZERFDZ38JVQQW", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "TJYZERFDZ38JVQQW.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "TJYZERFDZ38JVQQW.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2200000000" + }, + "appliesTo" : [ ] + }, + "TJYZERFDZ38JVQQW.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "TJYZERFDZ38JVQQW.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5405" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TJYZERFDZ38JVQQW.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TJYZERFDZ38JVQQW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "TJYZERFDZ38JVQQW.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TJYZERFDZ38JVQQW.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7750" + }, + "appliesTo" : [ ] + }, + "TJYZERFDZ38JVQQW.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TJYZERFDZ38JVQQW.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TJYZERFDZ38JVQQW.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "TJYZERFDZ38JVQQW", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "TJYZERFDZ38JVQQW.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "TJYZERFDZ38JVQQW.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TJYZERFDZ38JVQQW.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TJYZERFDZ38JVQQW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "TJYZERFDZ38JVQQW.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TJYZERFDZ38JVQQW.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3014" + }, + "appliesTo" : [ ] + }, + "TJYZERFDZ38JVQQW.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TJYZERFDZ38JVQQW.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TJYZERFDZ38JVQQW.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TJYZERFDZ38JVQQW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "TJYZERFDZ38JVQQW.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TJYZERFDZ38JVQQW.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TJYZERFDZ38JVQQW.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "TJYZERFDZ38JVQQW", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "TJYZERFDZ38JVQQW.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "TJYZERFDZ38JVQQW.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10946" + }, + "appliesTo" : [ ] + }, + "TJYZERFDZ38JVQQW.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "TJYZERFDZ38JVQQW.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TJYZERFDZ38JVQQW.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "TJYZERFDZ38JVQQW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TJYZERFDZ38JVQQW.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "TJYZERFDZ38JVQQW.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TJYZERFDZ38JVQQW.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "TJYZERFDZ38JVQQW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TJYZERFDZ38JVQQW.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "TJYZERFDZ38JVQQW.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4466" + }, + "appliesTo" : [ ] + }, + "TJYZERFDZ38JVQQW.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "TJYZERFDZ38JVQQW.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TJYZERFDZ38JVQQW.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "TJYZERFDZ38JVQQW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TJYZERFDZ38JVQQW.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "TJYZERFDZ38JVQQW.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2010" + }, + "appliesTo" : [ ] + }, + "TJYZERFDZ38JVQQW.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "TJYZERFDZ38JVQQW.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "AYSR4P45C3BGQFUC" : { + "AYSR4P45C3BGQFUC.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "AYSR4P45C3BGQFUC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AYSR4P45C3BGQFUC.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "AYSR4P45C3BGQFUC.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8980000000" + }, + "appliesTo" : [ ] + }, + "AYSR4P45C3BGQFUC.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "AYSR4P45C3BGQFUC.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7867" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AYSR4P45C3BGQFUC.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "AYSR4P45C3BGQFUC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AYSR4P45C3BGQFUC.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "AYSR4P45C3BGQFUC.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "AYSR4P45C3BGQFUC.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "AYSR4P45C3BGQFUC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AYSR4P45C3BGQFUC.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "AYSR4P45C3BGQFUC.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15717" + }, + "appliesTo" : [ ] + }, + "AYSR4P45C3BGQFUC.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "AYSR4P45C3BGQFUC.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AYSR4P45C3BGQFUC.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "AYSR4P45C3BGQFUC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AYSR4P45C3BGQFUC.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "AYSR4P45C3BGQFUC.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "AYSR4P45C3BGQFUC.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "AYSR4P45C3BGQFUC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AYSR4P45C3BGQFUC.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "AYSR4P45C3BGQFUC.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46153" + }, + "appliesTo" : [ ] + }, + "AYSR4P45C3BGQFUC.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "AYSR4P45C3BGQFUC.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AYSR4P45C3BGQFUC.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "AYSR4P45C3BGQFUC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AYSR4P45C3BGQFUC.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "AYSR4P45C3BGQFUC.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "AYSR4P45C3BGQFUC.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "AYSR4P45C3BGQFUC.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46481" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "AYSR4P45C3BGQFUC.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "AYSR4P45C3BGQFUC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AYSR4P45C3BGQFUC.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "AYSR4P45C3BGQFUC.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "AYSR4P45C3BGQFUC.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "AYSR4P45C3BGQFUC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AYSR4P45C3BGQFUC.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "AYSR4P45C3BGQFUC.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15848" + }, + "appliesTo" : [ ] + }, + "AYSR4P45C3BGQFUC.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "AYSR4P45C3BGQFUC.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "AYSR4P45C3BGQFUC.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "AYSR4P45C3BGQFUC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AYSR4P45C3BGQFUC.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "AYSR4P45C3BGQFUC.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23129" + }, + "appliesTo" : [ ] + }, + "AYSR4P45C3BGQFUC.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "AYSR4P45C3BGQFUC.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AYSR4P45C3BGQFUC.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "AYSR4P45C3BGQFUC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AYSR4P45C3BGQFUC.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "AYSR4P45C3BGQFUC.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23260" + }, + "appliesTo" : [ ] + }, + "AYSR4P45C3BGQFUC.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "AYSR4P45C3BGQFUC.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "AYSR4P45C3BGQFUC.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "AYSR4P45C3BGQFUC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AYSR4P45C3BGQFUC.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "AYSR4P45C3BGQFUC.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "AYSR4P45C3BGQFUC.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "AYSR4P45C3BGQFUC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AYSR4P45C3BGQFUC.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "AYSR4P45C3BGQFUC.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7934" + }, + "appliesTo" : [ ] + }, + "AYSR4P45C3BGQFUC.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "AYSR4P45C3BGQFUC.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "YJAJYU26JMTDCU86" : { + "YJAJYU26JMTDCU86.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YJAJYU26JMTDCU86", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YJAJYU26JMTDCU86.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YJAJYU26JMTDCU86.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YJAJYU26JMTDCU86.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "YJAJYU26JMTDCU86", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YJAJYU26JMTDCU86.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "YJAJYU26JMTDCU86.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8250000000" + }, + "appliesTo" : [ ] + }, + "YJAJYU26JMTDCU86.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "YJAJYU26JMTDCU86.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7230" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YJAJYU26JMTDCU86.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "YJAJYU26JMTDCU86", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YJAJYU26JMTDCU86.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "YJAJYU26JMTDCU86.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "42816" + }, + "appliesTo" : [ ] + }, + "YJAJYU26JMTDCU86.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "YJAJYU26JMTDCU86.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YJAJYU26JMTDCU86.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "YJAJYU26JMTDCU86", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YJAJYU26JMTDCU86.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "YJAJYU26JMTDCU86.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21418" + }, + "appliesTo" : [ ] + }, + "YJAJYU26JMTDCU86.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "YJAJYU26JMTDCU86.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YJAJYU26JMTDCU86.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YJAJYU26JMTDCU86", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YJAJYU26JMTDCU86.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YJAJYU26JMTDCU86.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21352" + }, + "appliesTo" : [ ] + }, + "YJAJYU26JMTDCU86.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YJAJYU26JMTDCU86.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YJAJYU26JMTDCU86.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "YJAJYU26JMTDCU86", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YJAJYU26JMTDCU86.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "YJAJYU26JMTDCU86.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YJAJYU26JMTDCU86.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YJAJYU26JMTDCU86", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YJAJYU26JMTDCU86.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YJAJYU26JMTDCU86.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7196" + }, + "appliesTo" : [ ] + }, + "YJAJYU26JMTDCU86.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YJAJYU26JMTDCU86.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YJAJYU26JMTDCU86.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "YJAJYU26JMTDCU86", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YJAJYU26JMTDCU86.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "YJAJYU26JMTDCU86.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14449" + }, + "appliesTo" : [ ] + }, + "YJAJYU26JMTDCU86.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "YJAJYU26JMTDCU86.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YJAJYU26JMTDCU86.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YJAJYU26JMTDCU86", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YJAJYU26JMTDCU86.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YJAJYU26JMTDCU86.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "42652" + }, + "appliesTo" : [ ] + }, + "YJAJYU26JMTDCU86.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YJAJYU26JMTDCU86.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YJAJYU26JMTDCU86.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "YJAJYU26JMTDCU86", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YJAJYU26JMTDCU86.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "YJAJYU26JMTDCU86.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YJAJYU26JMTDCU86.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YJAJYU26JMTDCU86", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YJAJYU26JMTDCU86.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YJAJYU26JMTDCU86.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YJAJYU26JMTDCU86.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YJAJYU26JMTDCU86.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14384" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YJAJYU26JMTDCU86.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "YJAJYU26JMTDCU86", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YJAJYU26JMTDCU86.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "YJAJYU26JMTDCU86.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "8EJJ843PNMRKMSZC" : { + "8EJJ843PNMRKMSZC.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "8EJJ843PNMRKMSZC", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "8EJJ843PNMRKMSZC.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "8EJJ843PNMRKMSZC.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "380" + }, + "appliesTo" : [ ] + }, + "8EJJ843PNMRKMSZC.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "8EJJ843PNMRKMSZC.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t1.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8EJJ843PNMRKMSZC.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "8EJJ843PNMRKMSZC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "8EJJ843PNMRKMSZC.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "8EJJ843PNMRKMSZC.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t1.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8EJJ843PNMRKMSZC.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "8EJJ843PNMRKMSZC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "8EJJ843PNMRKMSZC.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "8EJJ843PNMRKMSZC.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "343" + }, + "appliesTo" : [ ] + }, + "8EJJ843PNMRKMSZC.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "8EJJ843PNMRKMSZC.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), t1.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8EJJ843PNMRKMSZC.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "8EJJ843PNMRKMSZC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "8EJJ843PNMRKMSZC.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "8EJJ843PNMRKMSZC.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "140" + }, + "appliesTo" : [ ] + }, + "8EJJ843PNMRKMSZC.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "8EJJ843PNMRKMSZC.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t1.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8EJJ843PNMRKMSZC.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "8EJJ843PNMRKMSZC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "8EJJ843PNMRKMSZC.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "8EJJ843PNMRKMSZC.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "901" + }, + "appliesTo" : [ ] + }, + "8EJJ843PNMRKMSZC.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "8EJJ843PNMRKMSZC.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), t1.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "TX7H54J52X2GTX6C" : { + "TX7H54J52X2GTX6C.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TX7H54J52X2GTX6C", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "TX7H54J52X2GTX6C.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TX7H54J52X2GTX6C.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TX7H54J52X2GTX6C.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "TX7H54J52X2GTX6C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TX7H54J52X2GTX6C.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "TX7H54J52X2GTX6C.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "673" + }, + "appliesTo" : [ ] + }, + "TX7H54J52X2GTX6C.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "TX7H54J52X2GTX6C.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TX7H54J52X2GTX6C.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "TX7H54J52X2GTX6C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TX7H54J52X2GTX6C.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "TX7H54J52X2GTX6C.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TX7H54J52X2GTX6C.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "TX7H54J52X2GTX6C", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "TX7H54J52X2GTX6C.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "TX7H54J52X2GTX6C.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TX7H54J52X2GTX6C.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TX7H54J52X2GTX6C", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "TX7H54J52X2GTX6C.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TX7H54J52X2GTX6C.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1431" + }, + "appliesTo" : [ ] + }, + "TX7H54J52X2GTX6C.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TX7H54J52X2GTX6C.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TX7H54J52X2GTX6C.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "TX7H54J52X2GTX6C", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "TX7H54J52X2GTX6C.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "TX7H54J52X2GTX6C.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1878" + }, + "appliesTo" : [ ] + }, + "TX7H54J52X2GTX6C.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "TX7H54J52X2GTX6C.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TX7H54J52X2GTX6C.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TX7H54J52X2GTX6C", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "TX7H54J52X2GTX6C.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TX7H54J52X2GTX6C.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1139" + }, + "appliesTo" : [ ] + }, + "TX7H54J52X2GTX6C.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TX7H54J52X2GTX6C.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TX7H54J52X2GTX6C.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TX7H54J52X2GTX6C", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "TX7H54J52X2GTX6C.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TX7H54J52X2GTX6C.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2379" + }, + "appliesTo" : [ ] + }, + "TX7H54J52X2GTX6C.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TX7H54J52X2GTX6C.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TX7H54J52X2GTX6C.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TX7H54J52X2GTX6C", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "TX7H54J52X2GTX6C.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TX7H54J52X2GTX6C.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "741" + }, + "appliesTo" : [ ] + }, + "TX7H54J52X2GTX6C.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TX7H54J52X2GTX6C.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TX7H54J52X2GTX6C.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "TX7H54J52X2GTX6C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TX7H54J52X2GTX6C.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "TX7H54J52X2GTX6C.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TX7H54J52X2GTX6C.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "TX7H54J52X2GTX6C.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1264" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TX7H54J52X2GTX6C.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "TX7H54J52X2GTX6C", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "TX7H54J52X2GTX6C.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "TX7H54J52X2GTX6C.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TX7H54J52X2GTX6C.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "TX7H54J52X2GTX6C.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2986" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "SM2N6WCVK5EXAYJ9" : { + "SM2N6WCVK5EXAYJ9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SM2N6WCVK5EXAYJ9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "SM2N6WCVK5EXAYJ9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SM2N6WCVK5EXAYJ9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SM2N6WCVK5EXAYJ9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SM2N6WCVK5EXAYJ9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12221" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SM2N6WCVK5EXAYJ9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SM2N6WCVK5EXAYJ9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "SM2N6WCVK5EXAYJ9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SM2N6WCVK5EXAYJ9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3980000000" + }, + "appliesTo" : [ ] + }, + "SM2N6WCVK5EXAYJ9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SM2N6WCVK5EXAYJ9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1895" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SM2N6WCVK5EXAYJ9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SM2N6WCVK5EXAYJ9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "SM2N6WCVK5EXAYJ9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SM2N6WCVK5EXAYJ9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5274" + }, + "appliesTo" : [ ] + }, + "SM2N6WCVK5EXAYJ9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SM2N6WCVK5EXAYJ9.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SM2N6WCVK5EXAYJ9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SM2N6WCVK5EXAYJ9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "SM2N6WCVK5EXAYJ9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SM2N6WCVK5EXAYJ9.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SM2N6WCVK5EXAYJ9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SM2N6WCVK5EXAYJ9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "SM2N6WCVK5EXAYJ9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SM2N6WCVK5EXAYJ9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2962" + }, + "appliesTo" : [ ] + }, + "SM2N6WCVK5EXAYJ9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SM2N6WCVK5EXAYJ9.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "CGJXHFUSGE546RV6" : { + "CGJXHFUSGE546RV6.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "CGJXHFUSGE546RV6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CGJXHFUSGE546RV6.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "CGJXHFUSGE546RV6.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "801" + }, + "appliesTo" : [ ] + }, + "CGJXHFUSGE546RV6.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "CGJXHFUSGE546RV6.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0305000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CGJXHFUSGE546RV6.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "CGJXHFUSGE546RV6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CGJXHFUSGE546RV6.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "CGJXHFUSGE546RV6.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0270000000" + }, + "appliesTo" : [ ] + }, + "CGJXHFUSGE546RV6.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "CGJXHFUSGE546RV6.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "699" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CGJXHFUSGE546RV6.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "CGJXHFUSGE546RV6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CGJXHFUSGE546RV6.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "CGJXHFUSGE546RV6.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0658000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CGJXHFUSGE546RV6.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "CGJXHFUSGE546RV6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CGJXHFUSGE546RV6.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "CGJXHFUSGE546RV6.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "CGJXHFUSGE546RV6.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "CGJXHFUSGE546RV6.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "790" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CGJXHFUSGE546RV6.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "CGJXHFUSGE546RV6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CGJXHFUSGE546RV6.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "CGJXHFUSGE546RV6.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1570" + }, + "appliesTo" : [ ] + }, + "CGJXHFUSGE546RV6.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "CGJXHFUSGE546RV6.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CGJXHFUSGE546RV6.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "CGJXHFUSGE546RV6", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "CGJXHFUSGE546RV6.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "CGJXHFUSGE546RV6.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1314" + }, + "appliesTo" : [ ] + }, + "CGJXHFUSGE546RV6.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "CGJXHFUSGE546RV6.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CGJXHFUSGE546RV6.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "CGJXHFUSGE546RV6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CGJXHFUSGE546RV6.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "CGJXHFUSGE546RV6.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0572000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CGJXHFUSGE546RV6.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "CGJXHFUSGE546RV6", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "CGJXHFUSGE546RV6.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "CGJXHFUSGE546RV6.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "350" + }, + "appliesTo" : [ ] + }, + "CGJXHFUSGE546RV6.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "CGJXHFUSGE546RV6.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CGJXHFUSGE546RV6.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "CGJXHFUSGE546RV6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CGJXHFUSGE546RV6.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "CGJXHFUSGE546RV6.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CGJXHFUSGE546RV6.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "CGJXHFUSGE546RV6", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "CGJXHFUSGE546RV6.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "CGJXHFUSGE546RV6.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "685" + }, + "appliesTo" : [ ] + }, + "CGJXHFUSGE546RV6.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "CGJXHFUSGE546RV6.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CGJXHFUSGE546RV6.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "CGJXHFUSGE546RV6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CGJXHFUSGE546RV6.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "CGJXHFUSGE546RV6.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "403" + }, + "appliesTo" : [ ] + }, + "CGJXHFUSGE546RV6.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "CGJXHFUSGE546RV6.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CGJXHFUSGE546RV6.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "CGJXHFUSGE546RV6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CGJXHFUSGE546RV6.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "CGJXHFUSGE546RV6.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0966000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "K4QSF4H4QQGJSSK7" : { + "K4QSF4H4QQGJSSK7.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "K4QSF4H4QQGJSSK7", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "K4QSF4H4QQGJSSK7.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "K4QSF4H4QQGJSSK7.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.8100000000" + }, + "appliesTo" : [ ] + }, + "K4QSF4H4QQGJSSK7.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "K4QSF4H4QQGJSSK7.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "40997" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "K4QSF4H4QQGJSSK7.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "K4QSF4H4QQGJSSK7", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "K4QSF4H4QQGJSSK7.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "K4QSF4H4QQGJSSK7.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "81493" + }, + "appliesTo" : [ ] + }, + "K4QSF4H4QQGJSSK7.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "K4QSF4H4QQGJSSK7.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "K4QSF4H4QQGJSSK7.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "K4QSF4H4QQGJSSK7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K4QSF4H4QQGJSSK7.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "K4QSF4H4QQGJSSK7.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.9580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "K4QSF4H4QQGJSSK7.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "K4QSF4H4QQGJSSK7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K4QSF4H4QQGJSSK7.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "K4QSF4H4QQGJSSK7.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.5760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "K4QSF4H4QQGJSSK7.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "K4QSF4H4QQGJSSK7", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "K4QSF4H4QQGJSSK7.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "K4QSF4H4QQGJSSK7.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "89352" + }, + "appliesTo" : [ ] + }, + "K4QSF4H4QQGJSSK7.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "K4QSF4H4QQGJSSK7.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "K4QSF4H4QQGJSSK7.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "K4QSF4H4QQGJSSK7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K4QSF4H4QQGJSSK7.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "K4QSF4H4QQGJSSK7.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "204817" + }, + "appliesTo" : [ ] + }, + "K4QSF4H4QQGJSSK7.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "K4QSF4H4QQGJSSK7.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "K4QSF4H4QQGJSSK7.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "K4QSF4H4QQGJSSK7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K4QSF4H4QQGJSSK7.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "K4QSF4H4QQGJSSK7.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.0400000000" + }, + "appliesTo" : [ ] + }, + "K4QSF4H4QQGJSSK7.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "K4QSF4H4QQGJSSK7.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "102756" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "K4QSF4H4QQGJSSK7.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "K4QSF4H4QQGJSSK7", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "K4QSF4H4QQGJSSK7.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "K4QSF4H4QQGJSSK7.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "K4QSF4H4QQGJSSK7.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "K4QSF4H4QQGJSSK7.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "171398" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "K4QSF4H4QQGJSSK7.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "K4QSF4H4QQGJSSK7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K4QSF4H4QQGJSSK7.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "K4QSF4H4QQGJSSK7.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "K4QSF4H4QQGJSSK7.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "K4QSF4H4QQGJSSK7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K4QSF4H4QQGJSSK7.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "K4QSF4H4QQGJSSK7.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "93546" + }, + "appliesTo" : [ ] + }, + "K4QSF4H4QQGJSSK7.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "K4QSF4H4QQGJSSK7.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "K4QSF4H4QQGJSSK7.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "K4QSF4H4QQGJSSK7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K4QSF4H4QQGJSSK7.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "K4QSF4H4QQGJSSK7.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47146" + }, + "appliesTo" : [ ] + }, + "K4QSF4H4QQGJSSK7.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "K4QSF4H4QQGJSSK7.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.5120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "K4QSF4H4QQGJSSK7.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "K4QSF4H4QQGJSSK7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K4QSF4H4QQGJSSK7.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "K4QSF4H4QQGJSSK7.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "11.4320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "56836GB58CR7CVY9" : { + "56836GB58CR7CVY9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "56836GB58CR7CVY9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "56836GB58CR7CVY9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "56836GB58CR7CVY9.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.1070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "56836GB58CR7CVY9.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "56836GB58CR7CVY9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "56836GB58CR7CVY9.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "56836GB58CR7CVY9.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "65219" + }, + "appliesTo" : [ ] + }, + "56836GB58CR7CVY9.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "56836GB58CR7CVY9.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "56836GB58CR7CVY9.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "56836GB58CR7CVY9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "56836GB58CR7CVY9.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "56836GB58CR7CVY9.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.3400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "56836GB58CR7CVY9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "56836GB58CR7CVY9", + "effectiveDate" : "2016-06-30T23:59:59Z", + "priceDimensions" : { + "56836GB58CR7CVY9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "56836GB58CR7CVY9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "129534" + }, + "appliesTo" : [ ] + }, + "56836GB58CR7CVY9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "56836GB58CR7CVY9.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "56836GB58CR7CVY9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "56836GB58CR7CVY9", + "effectiveDate" : "2016-06-30T23:59:59Z", + "priceDimensions" : { + "56836GB58CR7CVY9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "56836GB58CR7CVY9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "56836GB58CR7CVY9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "56836GB58CR7CVY9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "252808" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "56836GB58CR7CVY9.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "56836GB58CR7CVY9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "56836GB58CR7CVY9.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "56836GB58CR7CVY9.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.8190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "56836GB58CR7CVY9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "56836GB58CR7CVY9", + "effectiveDate" : "2016-06-30T23:59:59Z", + "priceDimensions" : { + "56836GB58CR7CVY9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "56836GB58CR7CVY9.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "56836GB58CR7CVY9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "56836GB58CR7CVY9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "118778" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "56836GB58CR7CVY9.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "56836GB58CR7CVY9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "56836GB58CR7CVY9.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "56836GB58CR7CVY9.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "56836GB58CR7CVY9.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "56836GB58CR7CVY9.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "128860" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "56836GB58CR7CVY9.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "56836GB58CR7CVY9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "56836GB58CR7CVY9.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "56836GB58CR7CVY9.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "137359" + }, + "appliesTo" : [ ] + }, + "56836GB58CR7CVY9.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "56836GB58CR7CVY9.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.2270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "56836GB58CR7CVY9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "56836GB58CR7CVY9", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "56836GB58CR7CVY9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "56836GB58CR7CVY9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.8580000000" + }, + "appliesTo" : [ ] + }, + "56836GB58CR7CVY9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "56836GB58CR7CVY9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "60075" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "56836GB58CR7CVY9.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "56836GB58CR7CVY9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "56836GB58CR7CVY9.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "56836GB58CR7CVY9.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "272317" + }, + "appliesTo" : [ ] + }, + "56836GB58CR7CVY9.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "56836GB58CR7CVY9.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "56836GB58CR7CVY9.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "56836GB58CR7CVY9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "56836GB58CR7CVY9.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "56836GB58CR7CVY9.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.1760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "NUX3MUG87XRK86AD" : { + "NUX3MUG87XRK86AD.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "NUX3MUG87XRK86AD", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "NUX3MUG87XRK86AD.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "NUX3MUG87XRK86AD.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "NUX3MUG87XRK86AD.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "NUX3MUG87XRK86AD", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "NUX3MUG87XRK86AD.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "NUX3MUG87XRK86AD.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39246" + }, + "appliesTo" : [ ] + }, + "NUX3MUG87XRK86AD.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "NUX3MUG87XRK86AD.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "NUX3MUG87XRK86AD.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "NUX3MUG87XRK86AD", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "NUX3MUG87XRK86AD.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "NUX3MUG87XRK86AD.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "NUX3MUG87XRK86AD.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "NUX3MUG87XRK86AD.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "70251" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "NUX3MUG87XRK86AD.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "NUX3MUG87XRK86AD", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "NUX3MUG87XRK86AD.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "NUX3MUG87XRK86AD.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33919" + }, + "appliesTo" : [ ] + }, + "NUX3MUG87XRK86AD.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "NUX3MUG87XRK86AD.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "NUX3MUG87XRK86AD.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "NUX3MUG87XRK86AD", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "NUX3MUG87XRK86AD.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "NUX3MUG87XRK86AD.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9620000000" + }, + "appliesTo" : [ ] + }, + "NUX3MUG87XRK86AD.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "NUX3MUG87XRK86AD.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23174" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "NUX3MUG87XRK86AD.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "NUX3MUG87XRK86AD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NUX3MUG87XRK86AD.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "NUX3MUG87XRK86AD.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46489" + }, + "appliesTo" : [ ] + }, + "NUX3MUG87XRK86AD.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "NUX3MUG87XRK86AD.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "NUX3MUG87XRK86AD.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "NUX3MUG87XRK86AD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NUX3MUG87XRK86AD.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "NUX3MUG87XRK86AD.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.5410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "NUX3MUG87XRK86AD.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "NUX3MUG87XRK86AD", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "NUX3MUG87XRK86AD.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "NUX3MUG87XRK86AD.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.6230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "NUX3MUG87XRK86AD.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "NUX3MUG87XRK86AD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NUX3MUG87XRK86AD.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "NUX3MUG87XRK86AD.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6870000000" + }, + "appliesTo" : [ ] + }, + "NUX3MUG87XRK86AD.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "NUX3MUG87XRK86AD.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23537" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "NUX3MUG87XRK86AD.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "NUX3MUG87XRK86AD", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "NUX3MUG87XRK86AD.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "NUX3MUG87XRK86AD.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14538" + }, + "appliesTo" : [ ] + }, + "NUX3MUG87XRK86AD.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "NUX3MUG87XRK86AD.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "NUX3MUG87XRK86AD.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "NUX3MUG87XRK86AD", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "NUX3MUG87XRK86AD.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "NUX3MUG87XRK86AD.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "94278" + }, + "appliesTo" : [ ] + }, + "NUX3MUG87XRK86AD.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "NUX3MUG87XRK86AD.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "8DAD556FD5NBRFC3" : { + "8DAD556FD5NBRFC3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "8DAD556FD5NBRFC3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8DAD556FD5NBRFC3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "8DAD556FD5NBRFC3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "55434" + }, + "appliesTo" : [ ] + }, + "8DAD556FD5NBRFC3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "8DAD556FD5NBRFC3.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8DAD556FD5NBRFC3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "8DAD556FD5NBRFC3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8DAD556FD5NBRFC3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "8DAD556FD5NBRFC3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1820000000" + }, + "appliesTo" : [ ] + }, + "8DAD556FD5NBRFC3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "8DAD556FD5NBRFC3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27878" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8DAD556FD5NBRFC3.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "8DAD556FD5NBRFC3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8DAD556FD5NBRFC3.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "8DAD556FD5NBRFC3.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29084" + }, + "appliesTo" : [ ] + }, + "8DAD556FD5NBRFC3.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "8DAD556FD5NBRFC3.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8DAD556FD5NBRFC3.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "8DAD556FD5NBRFC3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8DAD556FD5NBRFC3.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "8DAD556FD5NBRFC3.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.7460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8DAD556FD5NBRFC3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "8DAD556FD5NBRFC3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8DAD556FD5NBRFC3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "8DAD556FD5NBRFC3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "75109" + }, + "appliesTo" : [ ] + }, + "8DAD556FD5NBRFC3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "8DAD556FD5NBRFC3.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8DAD556FD5NBRFC3.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "8DAD556FD5NBRFC3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8DAD556FD5NBRFC3.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "8DAD556FD5NBRFC3.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "154244" + }, + "appliesTo" : [ ] + }, + "8DAD556FD5NBRFC3.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "8DAD556FD5NBRFC3.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8DAD556FD5NBRFC3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "8DAD556FD5NBRFC3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8DAD556FD5NBRFC3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "8DAD556FD5NBRFC3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "148346" + }, + "appliesTo" : [ ] + }, + "8DAD556FD5NBRFC3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "8DAD556FD5NBRFC3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8DAD556FD5NBRFC3.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "8DAD556FD5NBRFC3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8DAD556FD5NBRFC3.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "8DAD556FD5NBRFC3.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9480000000" + }, + "appliesTo" : [ ] + }, + "8DAD556FD5NBRFC3.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "8DAD556FD5NBRFC3.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "77482" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8DAD556FD5NBRFC3.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "8DAD556FD5NBRFC3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8DAD556FD5NBRFC3.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "8DAD556FD5NBRFC3.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.8110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8DAD556FD5NBRFC3.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "8DAD556FD5NBRFC3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8DAD556FD5NBRFC3.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "8DAD556FD5NBRFC3.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "57798" + }, + "appliesTo" : [ ] + }, + "8DAD556FD5NBRFC3.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "8DAD556FD5NBRFC3.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8DAD556FD5NBRFC3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "8DAD556FD5NBRFC3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8DAD556FD5NBRFC3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "8DAD556FD5NBRFC3.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.4570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8DAD556FD5NBRFC3.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "8DAD556FD5NBRFC3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8DAD556FD5NBRFC3.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "8DAD556FD5NBRFC3.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.0060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "HZEF7XT3HAKD5NEZ" : { + "HZEF7XT3HAKD5NEZ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "HZEF7XT3HAKD5NEZ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "HZEF7XT3HAKD5NEZ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "HZEF7XT3HAKD5NEZ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0340000000" + }, + "appliesTo" : [ ] + }, + "HZEF7XT3HAKD5NEZ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "HZEF7XT3HAKD5NEZ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "565" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HZEF7XT3HAKD5NEZ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "HZEF7XT3HAKD5NEZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HZEF7XT3HAKD5NEZ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "HZEF7XT3HAKD5NEZ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "974" + }, + "appliesTo" : [ ] + }, + "HZEF7XT3HAKD5NEZ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "HZEF7XT3HAKD5NEZ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "HZEF7XT3HAKD5NEZ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "HZEF7XT3HAKD5NEZ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "HZEF7XT3HAKD5NEZ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "HZEF7XT3HAKD5NEZ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2292" + }, + "appliesTo" : [ ] + }, + "HZEF7XT3HAKD5NEZ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "HZEF7XT3HAKD5NEZ.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "HZEF7XT3HAKD5NEZ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "HZEF7XT3HAKD5NEZ", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "HZEF7XT3HAKD5NEZ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "HZEF7XT3HAKD5NEZ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "HZEF7XT3HAKD5NEZ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "HZEF7XT3HAKD5NEZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HZEF7XT3HAKD5NEZ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "HZEF7XT3HAKD5NEZ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "497" + }, + "appliesTo" : [ ] + }, + "HZEF7XT3HAKD5NEZ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "HZEF7XT3HAKD5NEZ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HZEF7XT3HAKD5NEZ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "HZEF7XT3HAKD5NEZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HZEF7XT3HAKD5NEZ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "HZEF7XT3HAKD5NEZ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "HZEF7XT3HAKD5NEZ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "HZEF7XT3HAKD5NEZ", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "HZEF7XT3HAKD5NEZ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "HZEF7XT3HAKD5NEZ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1079" + }, + "appliesTo" : [ ] + }, + "HZEF7XT3HAKD5NEZ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "HZEF7XT3HAKD5NEZ.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HZEF7XT3HAKD5NEZ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "HZEF7XT3HAKD5NEZ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "HZEF7XT3HAKD5NEZ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "HZEF7XT3HAKD5NEZ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1526" + }, + "appliesTo" : [ ] + }, + "HZEF7XT3HAKD5NEZ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "HZEF7XT3HAKD5NEZ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HZEF7XT3HAKD5NEZ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "HZEF7XT3HAKD5NEZ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "HZEF7XT3HAKD5NEZ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "HZEF7XT3HAKD5NEZ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "HZEF7XT3HAKD5NEZ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "HZEF7XT3HAKD5NEZ", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "HZEF7XT3HAKD5NEZ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "HZEF7XT3HAKD5NEZ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "HZEF7XT3HAKD5NEZ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "HZEF7XT3HAKD5NEZ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1685" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HZEF7XT3HAKD5NEZ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "HZEF7XT3HAKD5NEZ", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "HZEF7XT3HAKD5NEZ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "HZEF7XT3HAKD5NEZ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "HZEF7XT3HAKD5NEZ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "HZEF7XT3HAKD5NEZ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "849" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "FVBNJRJQXKTZMPVR" : { + "FVBNJRJQXKTZMPVR.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "FVBNJRJQXKTZMPVR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FVBNJRJQXKTZMPVR.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "FVBNJRJQXKTZMPVR.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "41755" + }, + "appliesTo" : [ ] + }, + "FVBNJRJQXKTZMPVR.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "FVBNJRJQXKTZMPVR.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FVBNJRJQXKTZMPVR.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "FVBNJRJQXKTZMPVR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FVBNJRJQXKTZMPVR.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "FVBNJRJQXKTZMPVR.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FVBNJRJQXKTZMPVR.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "FVBNJRJQXKTZMPVR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FVBNJRJQXKTZMPVR.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "FVBNJRJQXKTZMPVR.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21066" + }, + "appliesTo" : [ ] + }, + "FVBNJRJQXKTZMPVR.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "FVBNJRJQXKTZMPVR.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FVBNJRJQXKTZMPVR.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "FVBNJRJQXKTZMPVR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FVBNJRJQXKTZMPVR.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "FVBNJRJQXKTZMPVR.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "102149" + }, + "appliesTo" : [ ] + }, + "FVBNJRJQXKTZMPVR.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "FVBNJRJQXKTZMPVR.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FVBNJRJQXKTZMPVR.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "FVBNJRJQXKTZMPVR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FVBNJRJQXKTZMPVR.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "FVBNJRJQXKTZMPVR.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "49252" + }, + "appliesTo" : [ ] + }, + "FVBNJRJQXKTZMPVR.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "FVBNJRJQXKTZMPVR.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FVBNJRJQXKTZMPVR.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "FVBNJRJQXKTZMPVR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FVBNJRJQXKTZMPVR.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "FVBNJRJQXKTZMPVR.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.0130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FVBNJRJQXKTZMPVR.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "FVBNJRJQXKTZMPVR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FVBNJRJQXKTZMPVR.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "FVBNJRJQXKTZMPVR.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "51405" + }, + "appliesTo" : [ ] + }, + "FVBNJRJQXKTZMPVR.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "FVBNJRJQXKTZMPVR.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FVBNJRJQXKTZMPVR.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "FVBNJRJQXKTZMPVR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FVBNJRJQXKTZMPVR.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "FVBNJRJQXKTZMPVR.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "44529" + }, + "appliesTo" : [ ] + }, + "FVBNJRJQXKTZMPVR.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "FVBNJRJQXKTZMPVR.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FVBNJRJQXKTZMPVR.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "FVBNJRJQXKTZMPVR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FVBNJRJQXKTZMPVR.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "FVBNJRJQXKTZMPVR.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "96782" + }, + "appliesTo" : [ ] + }, + "FVBNJRJQXKTZMPVR.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "FVBNJRJQXKTZMPVR.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FVBNJRJQXKTZMPVR.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "FVBNJRJQXKTZMPVR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FVBNJRJQXKTZMPVR.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "FVBNJRJQXKTZMPVR.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FVBNJRJQXKTZMPVR.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "FVBNJRJQXKTZMPVR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FVBNJRJQXKTZMPVR.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "FVBNJRJQXKTZMPVR.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22481" + }, + "appliesTo" : [ ] + }, + "FVBNJRJQXKTZMPVR.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "FVBNJRJQXKTZMPVR.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FVBNJRJQXKTZMPVR.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "FVBNJRJQXKTZMPVR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FVBNJRJQXKTZMPVR.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "FVBNJRJQXKTZMPVR.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.2570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "JVT9JXEVPBRUMA3N" : { + "JVT9JXEVPBRUMA3N.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "JVT9JXEVPBRUMA3N", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "JVT9JXEVPBRUMA3N.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "JVT9JXEVPBRUMA3N.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "922" + }, + "appliesTo" : [ ] + }, + "JVT9JXEVPBRUMA3N.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "JVT9JXEVPBRUMA3N.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "JVT9JXEVPBRUMA3N.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "JVT9JXEVPBRUMA3N", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "JVT9JXEVPBRUMA3N.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "JVT9JXEVPBRUMA3N.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2073" + }, + "appliesTo" : [ ] + }, + "JVT9JXEVPBRUMA3N.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "JVT9JXEVPBRUMA3N.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "JVT9JXEVPBRUMA3N.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "JVT9JXEVPBRUMA3N", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "JVT9JXEVPBRUMA3N.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "JVT9JXEVPBRUMA3N.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "JVT9JXEVPBRUMA3N.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "JVT9JXEVPBRUMA3N", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "JVT9JXEVPBRUMA3N.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "JVT9JXEVPBRUMA3N.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1734" + }, + "appliesTo" : [ ] + }, + "JVT9JXEVPBRUMA3N.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "JVT9JXEVPBRUMA3N.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JVT9JXEVPBRUMA3N.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "JVT9JXEVPBRUMA3N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JVT9JXEVPBRUMA3N.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "JVT9JXEVPBRUMA3N.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1007" + }, + "appliesTo" : [ ] + }, + "JVT9JXEVPBRUMA3N.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "JVT9JXEVPBRUMA3N.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "JVT9JXEVPBRUMA3N.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "JVT9JXEVPBRUMA3N", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "JVT9JXEVPBRUMA3N.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "JVT9JXEVPBRUMA3N.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0400000000" + }, + "appliesTo" : [ ] + }, + "JVT9JXEVPBRUMA3N.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "JVT9JXEVPBRUMA3N.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1058" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "JVT9JXEVPBRUMA3N.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "JVT9JXEVPBRUMA3N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JVT9JXEVPBRUMA3N.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "JVT9JXEVPBRUMA3N.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "514" + }, + "appliesTo" : [ ] + }, + "JVT9JXEVPBRUMA3N.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "JVT9JXEVPBRUMA3N.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "JVT9JXEVPBRUMA3N.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "JVT9JXEVPBRUMA3N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JVT9JXEVPBRUMA3N.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "JVT9JXEVPBRUMA3N.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "JVT9JXEVPBRUMA3N.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "JVT9JXEVPBRUMA3N", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "JVT9JXEVPBRUMA3N.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "JVT9JXEVPBRUMA3N.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "JVT9JXEVPBRUMA3N.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "JVT9JXEVPBRUMA3N.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "870" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JVT9JXEVPBRUMA3N.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "JVT9JXEVPBRUMA3N", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "JVT9JXEVPBRUMA3N.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "JVT9JXEVPBRUMA3N.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0510000000" + }, + "appliesTo" : [ ] + }, + "JVT9JXEVPBRUMA3N.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "JVT9JXEVPBRUMA3N.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "444" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "JVT9JXEVPBRUMA3N.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "JVT9JXEVPBRUMA3N", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "JVT9JXEVPBRUMA3N.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "JVT9JXEVPBRUMA3N.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "JVT9JXEVPBRUMA3N.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "JVT9JXEVPBRUMA3N", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "JVT9JXEVPBRUMA3N.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "JVT9JXEVPBRUMA3N.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "266JF3S5TDUM4QX4" : { + "266JF3S5TDUM4QX4.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "266JF3S5TDUM4QX4", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "266JF3S5TDUM4QX4.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "266JF3S5TDUM4QX4.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4560000000" + }, + "appliesTo" : [ ] + }, + "266JF3S5TDUM4QX4.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "266JF3S5TDUM4QX4.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3996" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "266JF3S5TDUM4QX4.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "266JF3S5TDUM4QX4", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "266JF3S5TDUM4QX4.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "266JF3S5TDUM4QX4.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "266JF3S5TDUM4QX4.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "266JF3S5TDUM4QX4.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7831" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "266JF3S5TDUM4QX4.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "266JF3S5TDUM4QX4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "266JF3S5TDUM4QX4.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "266JF3S5TDUM4QX4.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5641" + }, + "appliesTo" : [ ] + }, + "266JF3S5TDUM4QX4.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "266JF3S5TDUM4QX4.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "266JF3S5TDUM4QX4.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "266JF3S5TDUM4QX4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "266JF3S5TDUM4QX4.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "266JF3S5TDUM4QX4.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "266JF3S5TDUM4QX4.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "266JF3S5TDUM4QX4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "266JF3S5TDUM4QX4.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "266JF3S5TDUM4QX4.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "266JF3S5TDUM4QX4.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "266JF3S5TDUM4QX4.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23320" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "266JF3S5TDUM4QX4.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "266JF3S5TDUM4QX4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "266JF3S5TDUM4QX4.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "266JF3S5TDUM4QX4.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9111" + }, + "appliesTo" : [ ] + }, + "266JF3S5TDUM4QX4.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "266JF3S5TDUM4QX4.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "266JF3S5TDUM4QX4.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "266JF3S5TDUM4QX4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "266JF3S5TDUM4QX4.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "266JF3S5TDUM4QX4.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "266JF3S5TDUM4QX4.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "266JF3S5TDUM4QX4", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "266JF3S5TDUM4QX4.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "266JF3S5TDUM4QX4.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17134" + }, + "appliesTo" : [ ] + }, + "266JF3S5TDUM4QX4.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "266JF3S5TDUM4QX4.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "266JF3S5TDUM4QX4.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "266JF3S5TDUM4QX4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "266JF3S5TDUM4QX4.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "266JF3S5TDUM4QX4.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11900" + }, + "appliesTo" : [ ] + }, + "266JF3S5TDUM4QX4.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "266JF3S5TDUM4QX4.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "266JF3S5TDUM4QX4.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "266JF3S5TDUM4QX4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "266JF3S5TDUM4QX4.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "266JF3S5TDUM4QX4.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11271" + }, + "appliesTo" : [ ] + }, + "266JF3S5TDUM4QX4.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "266JF3S5TDUM4QX4.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "266JF3S5TDUM4QX4.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "266JF3S5TDUM4QX4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "266JF3S5TDUM4QX4.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "266JF3S5TDUM4QX4.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "266JF3S5TDUM4QX4.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "266JF3S5TDUM4QX4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "266JF3S5TDUM4QX4.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "266JF3S5TDUM4QX4.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "D9S2YAG2HUF7C3PC" : { + "D9S2YAG2HUF7C3PC.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "D9S2YAG2HUF7C3PC", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "D9S2YAG2HUF7C3PC.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "D9S2YAG2HUF7C3PC.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "D9S2YAG2HUF7C3PC.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "D9S2YAG2HUF7C3PC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "D9S2YAG2HUF7C3PC.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "D9S2YAG2HUF7C3PC.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "371" + }, + "appliesTo" : [ ] + }, + "D9S2YAG2HUF7C3PC.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "D9S2YAG2HUF7C3PC.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "D9S2YAG2HUF7C3PC.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "D9S2YAG2HUF7C3PC", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "D9S2YAG2HUF7C3PC.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "D9S2YAG2HUF7C3PC.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "626" + }, + "appliesTo" : [ ] + }, + "D9S2YAG2HUF7C3PC.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "D9S2YAG2HUF7C3PC.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "D9S2YAG2HUF7C3PC.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "D9S2YAG2HUF7C3PC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "D9S2YAG2HUF7C3PC.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "D9S2YAG2HUF7C3PC.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "755" + }, + "appliesTo" : [ ] + }, + "D9S2YAG2HUF7C3PC.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "D9S2YAG2HUF7C3PC.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "D9S2YAG2HUF7C3PC.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "D9S2YAG2HUF7C3PC", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "D9S2YAG2HUF7C3PC.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "D9S2YAG2HUF7C3PC.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "388" + }, + "appliesTo" : [ ] + }, + "D9S2YAG2HUF7C3PC.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "D9S2YAG2HUF7C3PC.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "D9S2YAG2HUF7C3PC.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "D9S2YAG2HUF7C3PC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "D9S2YAG2HUF7C3PC.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "D9S2YAG2HUF7C3PC.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "D9S2YAG2HUF7C3PC.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "D9S2YAG2HUF7C3PC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "D9S2YAG2HUF7C3PC.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "D9S2YAG2HUF7C3PC.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "228" + }, + "appliesTo" : [ ] + }, + "D9S2YAG2HUF7C3PC.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "D9S2YAG2HUF7C3PC.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "D9S2YAG2HUF7C3PC.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "D9S2YAG2HUF7C3PC", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "D9S2YAG2HUF7C3PC.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "D9S2YAG2HUF7C3PC.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "D9S2YAG2HUF7C3PC.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "D9S2YAG2HUF7C3PC", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "D9S2YAG2HUF7C3PC.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "D9S2YAG2HUF7C3PC.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0190000000" + }, + "appliesTo" : [ ] + }, + "D9S2YAG2HUF7C3PC.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "D9S2YAG2HUF7C3PC.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "232" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "D9S2YAG2HUF7C3PC.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "D9S2YAG2HUF7C3PC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "D9S2YAG2HUF7C3PC.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "D9S2YAG2HUF7C3PC.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "446" + }, + "appliesTo" : [ ] + }, + "D9S2YAG2HUF7C3PC.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "D9S2YAG2HUF7C3PC.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "D9S2YAG2HUF7C3PC.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "D9S2YAG2HUF7C3PC", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "D9S2YAG2HUF7C3PC.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "D9S2YAG2HUF7C3PC.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1048" + }, + "appliesTo" : [ ] + }, + "D9S2YAG2HUF7C3PC.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "D9S2YAG2HUF7C3PC.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "5R3VUZC6A5EED78S" : { + "5R3VUZC6A5EED78S.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "5R3VUZC6A5EED78S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5R3VUZC6A5EED78S.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "5R3VUZC6A5EED78S.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25390" + }, + "appliesTo" : [ ] + }, + "5R3VUZC6A5EED78S.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "5R3VUZC6A5EED78S.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5R3VUZC6A5EED78S.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "5R3VUZC6A5EED78S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5R3VUZC6A5EED78S.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "5R3VUZC6A5EED78S.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "5R3VUZC6A5EED78S.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "5R3VUZC6A5EED78S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5R3VUZC6A5EED78S.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "5R3VUZC6A5EED78S.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25879" + }, + "appliesTo" : [ ] + }, + "5R3VUZC6A5EED78S.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "5R3VUZC6A5EED78S.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "5R3VUZC6A5EED78S.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "5R3VUZC6A5EED78S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5R3VUZC6A5EED78S.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "5R3VUZC6A5EED78S.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "5R3VUZC6A5EED78S.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "5R3VUZC6A5EED78S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5R3VUZC6A5EED78S.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "5R3VUZC6A5EED78S.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "50388" + }, + "appliesTo" : [ ] + }, + "5R3VUZC6A5EED78S.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "5R3VUZC6A5EED78S.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5R3VUZC6A5EED78S.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "5R3VUZC6A5EED78S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5R3VUZC6A5EED78S.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "5R3VUZC6A5EED78S.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0870000000" + }, + "appliesTo" : [ ] + }, + "5R3VUZC6A5EED78S.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "5R3VUZC6A5EED78S.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9520" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5R3VUZC6A5EED78S.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "5R3VUZC6A5EED78S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5R3VUZC6A5EED78S.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "5R3VUZC6A5EED78S.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18954" + }, + "appliesTo" : [ ] + }, + "5R3VUZC6A5EED78S.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "5R3VUZC6A5EED78S.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5R3VUZC6A5EED78S.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "5R3VUZC6A5EED78S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5R3VUZC6A5EED78S.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "5R3VUZC6A5EED78S.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "5R3VUZC6A5EED78S.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "5R3VUZC6A5EED78S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5R3VUZC6A5EED78S.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "5R3VUZC6A5EED78S.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19584" + }, + "appliesTo" : [ ] + }, + "5R3VUZC6A5EED78S.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "5R3VUZC6A5EED78S.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "5R3VUZC6A5EED78S.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "5R3VUZC6A5EED78S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5R3VUZC6A5EED78S.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "5R3VUZC6A5EED78S.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "5R3VUZC6A5EED78S.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "5R3VUZC6A5EED78S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5R3VUZC6A5EED78S.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "5R3VUZC6A5EED78S.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9841" + }, + "appliesTo" : [ ] + }, + "5R3VUZC6A5EED78S.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "5R3VUZC6A5EED78S.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "5R3VUZC6A5EED78S.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "5R3VUZC6A5EED78S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5R3VUZC6A5EED78S.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "5R3VUZC6A5EED78S.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "5R3VUZC6A5EED78S.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "5R3VUZC6A5EED78S.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "51608" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "HS3PUQUMX2MJTFJA" : { + "HS3PUQUMX2MJTFJA.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "HS3PUQUMX2MJTFJA", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "HS3PUQUMX2MJTFJA.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "HS3PUQUMX2MJTFJA.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "80154" + }, + "appliesTo" : [ ] + }, + "HS3PUQUMX2MJTFJA.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "HS3PUQUMX2MJTFJA.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HS3PUQUMX2MJTFJA.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "HS3PUQUMX2MJTFJA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HS3PUQUMX2MJTFJA.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "HS3PUQUMX2MJTFJA.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "184080" + }, + "appliesTo" : [ ] + }, + "HS3PUQUMX2MJTFJA.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "HS3PUQUMX2MJTFJA.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "HS3PUQUMX2MJTFJA.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "HS3PUQUMX2MJTFJA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HS3PUQUMX2MJTFJA.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "HS3PUQUMX2MJTFJA.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6374000000" + }, + "appliesTo" : [ ] + }, + "HS3PUQUMX2MJTFJA.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "HS3PUQUMX2MJTFJA.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "92175" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HS3PUQUMX2MJTFJA.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "HS3PUQUMX2MJTFJA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HS3PUQUMX2MJTFJA.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "HS3PUQUMX2MJTFJA.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.7180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "HS3PUQUMX2MJTFJA.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "HS3PUQUMX2MJTFJA", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "HS3PUQUMX2MJTFJA.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "HS3PUQUMX2MJTFJA.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "154106" + }, + "appliesTo" : [ ] + }, + "HS3PUQUMX2MJTFJA.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "HS3PUQUMX2MJTFJA.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HS3PUQUMX2MJTFJA.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "HS3PUQUMX2MJTFJA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HS3PUQUMX2MJTFJA.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "HS3PUQUMX2MJTFJA.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "85054" + }, + "appliesTo" : [ ] + }, + "HS3PUQUMX2MJTFJA.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "HS3PUQUMX2MJTFJA.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "HS3PUQUMX2MJTFJA.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "HS3PUQUMX2MJTFJA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HS3PUQUMX2MJTFJA.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "HS3PUQUMX2MJTFJA.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "42814" + }, + "appliesTo" : [ ] + }, + "HS3PUQUMX2MJTFJA.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "HS3PUQUMX2MJTFJA.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.0174000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HS3PUQUMX2MJTFJA.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "HS3PUQUMX2MJTFJA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HS3PUQUMX2MJTFJA.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "HS3PUQUMX2MJTFJA.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.3936000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "HS3PUQUMX2MJTFJA.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "HS3PUQUMX2MJTFJA", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "HS3PUQUMX2MJTFJA.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "HS3PUQUMX2MJTFJA.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37230" + }, + "appliesTo" : [ ] + }, + "HS3PUQUMX2MJTFJA.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "HS3PUQUMX2MJTFJA.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.3800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HS3PUQUMX2MJTFJA.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "HS3PUQUMX2MJTFJA", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "HS3PUQUMX2MJTFJA.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "HS3PUQUMX2MJTFJA.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "74110" + }, + "appliesTo" : [ ] + }, + "HS3PUQUMX2MJTFJA.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "HS3PUQUMX2MJTFJA.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HS3PUQUMX2MJTFJA.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "HS3PUQUMX2MJTFJA", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "HS3PUQUMX2MJTFJA.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "HS3PUQUMX2MJTFJA.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.0550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "HS3PUQUMX2MJTFJA.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "HS3PUQUMX2MJTFJA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HS3PUQUMX2MJTFJA.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "HS3PUQUMX2MJTFJA.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.7061000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "85VBBX5K6EY4TRRG" : { + "85VBBX5K6EY4TRRG.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "85VBBX5K6EY4TRRG", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "85VBBX5K6EY4TRRG.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "85VBBX5K6EY4TRRG.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17455" + }, + "appliesTo" : [ ] + }, + "85VBBX5K6EY4TRRG.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "85VBBX5K6EY4TRRG.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "85VBBX5K6EY4TRRG.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "85VBBX5K6EY4TRRG", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "85VBBX5K6EY4TRRG.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "85VBBX5K6EY4TRRG.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "85VBBX5K6EY4TRRG.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "85VBBX5K6EY4TRRG", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "85VBBX5K6EY4TRRG.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "85VBBX5K6EY4TRRG.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19140" + }, + "appliesTo" : [ ] + }, + "85VBBX5K6EY4TRRG.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "85VBBX5K6EY4TRRG.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "85VBBX5K6EY4TRRG.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "85VBBX5K6EY4TRRG", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "85VBBX5K6EY4TRRG.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "85VBBX5K6EY4TRRG.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25224" + }, + "appliesTo" : [ ] + }, + "85VBBX5K6EY4TRRG.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "85VBBX5K6EY4TRRG.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "85VBBX5K6EY4TRRG.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "85VBBX5K6EY4TRRG", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "85VBBX5K6EY4TRRG.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "85VBBX5K6EY4TRRG.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9787" + }, + "appliesTo" : [ ] + }, + "85VBBX5K6EY4TRRG.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "85VBBX5K6EY4TRRG.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "85VBBX5K6EY4TRRG.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "85VBBX5K6EY4TRRG", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "85VBBX5K6EY4TRRG.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "85VBBX5K6EY4TRRG.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6493" + }, + "appliesTo" : [ ] + }, + "85VBBX5K6EY4TRRG.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "85VBBX5K6EY4TRRG.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "85VBBX5K6EY4TRRG.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "85VBBX5K6EY4TRRG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "85VBBX5K6EY4TRRG.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "85VBBX5K6EY4TRRG.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9450" + }, + "appliesTo" : [ ] + }, + "85VBBX5K6EY4TRRG.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "85VBBX5K6EY4TRRG.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "85VBBX5K6EY4TRRG.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "85VBBX5K6EY4TRRG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "85VBBX5K6EY4TRRG.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "85VBBX5K6EY4TRRG.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "85VBBX5K6EY4TRRG.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "85VBBX5K6EY4TRRG", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "85VBBX5K6EY4TRRG.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "85VBBX5K6EY4TRRG.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "85VBBX5K6EY4TRRG.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "85VBBX5K6EY4TRRG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "85VBBX5K6EY4TRRG.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "85VBBX5K6EY4TRRG.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5420000000" + }, + "appliesTo" : [ ] + }, + "85VBBX5K6EY4TRRG.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "85VBBX5K6EY4TRRG.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4745" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "85VBBX5K6EY4TRRG.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "85VBBX5K6EY4TRRG", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "85VBBX5K6EY4TRRG.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "85VBBX5K6EY4TRRG.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28851" + }, + "appliesTo" : [ ] + }, + "85VBBX5K6EY4TRRG.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "85VBBX5K6EY4TRRG.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "Z4Y83SEHA9UDFDP2" : { + "Z4Y83SEHA9UDFDP2.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "Z4Y83SEHA9UDFDP2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z4Y83SEHA9UDFDP2.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "Z4Y83SEHA9UDFDP2.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8337" + }, + "appliesTo" : [ ] + }, + "Z4Y83SEHA9UDFDP2.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "Z4Y83SEHA9UDFDP2.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Z4Y83SEHA9UDFDP2.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "Z4Y83SEHA9UDFDP2", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Z4Y83SEHA9UDFDP2.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "Z4Y83SEHA9UDFDP2.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9294" + }, + "appliesTo" : [ ] + }, + "Z4Y83SEHA9UDFDP2.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "Z4Y83SEHA9UDFDP2.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3533000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z4Y83SEHA9UDFDP2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Z4Y83SEHA9UDFDP2", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Z4Y83SEHA9UDFDP2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Z4Y83SEHA9UDFDP2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3746" + }, + "appliesTo" : [ ] + }, + "Z4Y83SEHA9UDFDP2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Z4Y83SEHA9UDFDP2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4206000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z4Y83SEHA9UDFDP2.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "Z4Y83SEHA9UDFDP2", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Z4Y83SEHA9UDFDP2.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "Z4Y83SEHA9UDFDP2.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18221" + }, + "appliesTo" : [ ] + }, + "Z4Y83SEHA9UDFDP2.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "Z4Y83SEHA9UDFDP2.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Z4Y83SEHA9UDFDP2.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "Z4Y83SEHA9UDFDP2", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Z4Y83SEHA9UDFDP2.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "Z4Y83SEHA9UDFDP2.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6721000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Z4Y83SEHA9UDFDP2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Z4Y83SEHA9UDFDP2", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Z4Y83SEHA9UDFDP2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Z4Y83SEHA9UDFDP2.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8889000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Z4Y83SEHA9UDFDP2.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "Z4Y83SEHA9UDFDP2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z4Y83SEHA9UDFDP2.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "Z4Y83SEHA9UDFDP2.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4282" + }, + "appliesTo" : [ ] + }, + "Z4Y83SEHA9UDFDP2.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "Z4Y83SEHA9UDFDP2.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4817000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z4Y83SEHA9UDFDP2.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "Z4Y83SEHA9UDFDP2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z4Y83SEHA9UDFDP2.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "Z4Y83SEHA9UDFDP2.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0172000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Z4Y83SEHA9UDFDP2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Z4Y83SEHA9UDFDP2", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Z4Y83SEHA9UDFDP2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Z4Y83SEHA9UDFDP2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8128" + }, + "appliesTo" : [ ] + }, + "Z4Y83SEHA9UDFDP2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Z4Y83SEHA9UDFDP2.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3089000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z4Y83SEHA9UDFDP2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Z4Y83SEHA9UDFDP2", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Z4Y83SEHA9UDFDP2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Z4Y83SEHA9UDFDP2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7287" + }, + "appliesTo" : [ ] + }, + "Z4Y83SEHA9UDFDP2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Z4Y83SEHA9UDFDP2.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Z4Y83SEHA9UDFDP2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Z4Y83SEHA9UDFDP2", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Z4Y83SEHA9UDFDP2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Z4Y83SEHA9UDFDP2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15312" + }, + "appliesTo" : [ ] + }, + "Z4Y83SEHA9UDFDP2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Z4Y83SEHA9UDFDP2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Z4Y83SEHA9UDFDP2.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "Z4Y83SEHA9UDFDP2", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Z4Y83SEHA9UDFDP2.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "Z4Y83SEHA9UDFDP2.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "QYS4PZ8A9Q32ZPH2" : { + "QYS4PZ8A9Q32ZPH2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QYS4PZ8A9Q32ZPH2", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QYS4PZ8A9Q32ZPH2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QYS4PZ8A9Q32ZPH2.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.1490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QYS4PZ8A9Q32ZPH2.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "QYS4PZ8A9Q32ZPH2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QYS4PZ8A9Q32ZPH2.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "QYS4PZ8A9Q32ZPH2.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "43586" + }, + "appliesTo" : [ ] + }, + "QYS4PZ8A9Q32ZPH2.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "QYS4PZ8A9Q32ZPH2.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QYS4PZ8A9Q32ZPH2.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "QYS4PZ8A9Q32ZPH2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QYS4PZ8A9Q32ZPH2.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "QYS4PZ8A9Q32ZPH2.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.4090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QYS4PZ8A9Q32ZPH2.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "QYS4PZ8A9Q32ZPH2", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QYS4PZ8A9Q32ZPH2.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "QYS4PZ8A9Q32ZPH2.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "97787" + }, + "appliesTo" : [ ] + }, + "QYS4PZ8A9Q32ZPH2.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "QYS4PZ8A9Q32ZPH2.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QYS4PZ8A9Q32ZPH2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QYS4PZ8A9Q32ZPH2", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QYS4PZ8A9Q32ZPH2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QYS4PZ8A9Q32ZPH2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "75270" + }, + "appliesTo" : [ ] + }, + "QYS4PZ8A9Q32ZPH2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QYS4PZ8A9Q32ZPH2.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QYS4PZ8A9Q32ZPH2.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "QYS4PZ8A9Q32ZPH2", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QYS4PZ8A9Q32ZPH2.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "QYS4PZ8A9Q32ZPH2.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.9740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QYS4PZ8A9Q32ZPH2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QYS4PZ8A9Q32ZPH2", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QYS4PZ8A9Q32ZPH2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QYS4PZ8A9Q32ZPH2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "75270" + }, + "appliesTo" : [ ] + }, + "QYS4PZ8A9Q32ZPH2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QYS4PZ8A9Q32ZPH2.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QYS4PZ8A9Q32ZPH2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QYS4PZ8A9Q32ZPH2", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QYS4PZ8A9Q32ZPH2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QYS4PZ8A9Q32ZPH2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "142762" + }, + "appliesTo" : [ ] + }, + "QYS4PZ8A9Q32ZPH2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QYS4PZ8A9Q32ZPH2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QYS4PZ8A9Q32ZPH2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QYS4PZ8A9Q32ZPH2", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QYS4PZ8A9Q32ZPH2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QYS4PZ8A9Q32ZPH2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38332" + }, + "appliesTo" : [ ] + }, + "QYS4PZ8A9Q32ZPH2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QYS4PZ8A9Q32ZPH2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.3760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QYS4PZ8A9Q32ZPH2.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "QYS4PZ8A9Q32ZPH2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QYS4PZ8A9Q32ZPH2.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "QYS4PZ8A9Q32ZPH2.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QYS4PZ8A9Q32ZPH2.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "QYS4PZ8A9Q32ZPH2.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "85568" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QYS4PZ8A9Q32ZPH2.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "QYS4PZ8A9Q32ZPH2", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QYS4PZ8A9Q32ZPH2.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "QYS4PZ8A9Q32ZPH2.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "192080" + }, + "appliesTo" : [ ] + }, + "QYS4PZ8A9Q32ZPH2.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "QYS4PZ8A9Q32ZPH2.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QYS4PZ8A9Q32ZPH2.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "QYS4PZ8A9Q32ZPH2", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QYS4PZ8A9Q32ZPH2.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "QYS4PZ8A9Q32ZPH2.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.1230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "T55J69CYMKUV3MQC" : { + "T55J69CYMKUV3MQC.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "T55J69CYMKUV3MQC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "T55J69CYMKUV3MQC.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "T55J69CYMKUV3MQC.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "T55J69CYMKUV3MQC.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "T55J69CYMKUV3MQC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "T55J69CYMKUV3MQC.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "T55J69CYMKUV3MQC.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3600" + }, + "appliesTo" : [ ] + }, + "T55J69CYMKUV3MQC.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "T55J69CYMKUV3MQC.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "T55J69CYMKUV3MQC.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "T55J69CYMKUV3MQC", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "T55J69CYMKUV3MQC.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "T55J69CYMKUV3MQC.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2710000000" + }, + "appliesTo" : [ ] + }, + "T55J69CYMKUV3MQC.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "T55J69CYMKUV3MQC.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4413" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "T55J69CYMKUV3MQC.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "T55J69CYMKUV3MQC", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "T55J69CYMKUV3MQC.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "T55J69CYMKUV3MQC.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "T55J69CYMKUV3MQC.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "T55J69CYMKUV3MQC", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "T55J69CYMKUV3MQC.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "T55J69CYMKUV3MQC.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "T55J69CYMKUV3MQC.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "T55J69CYMKUV3MQC", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "T55J69CYMKUV3MQC.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "T55J69CYMKUV3MQC.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12561" + }, + "appliesTo" : [ ] + }, + "T55J69CYMKUV3MQC.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "T55J69CYMKUV3MQC.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "T55J69CYMKUV3MQC.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "T55J69CYMKUV3MQC", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "T55J69CYMKUV3MQC.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "T55J69CYMKUV3MQC.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14674" + }, + "appliesTo" : [ ] + }, + "T55J69CYMKUV3MQC.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "T55J69CYMKUV3MQC.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "T55J69CYMKUV3MQC.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "T55J69CYMKUV3MQC", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "T55J69CYMKUV3MQC.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "T55J69CYMKUV3MQC.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18936" + }, + "appliesTo" : [ ] + }, + "T55J69CYMKUV3MQC.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "T55J69CYMKUV3MQC.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "T55J69CYMKUV3MQC.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "T55J69CYMKUV3MQC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "T55J69CYMKUV3MQC.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "T55J69CYMKUV3MQC.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7120" + }, + "appliesTo" : [ ] + }, + "T55J69CYMKUV3MQC.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "T55J69CYMKUV3MQC.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "T55J69CYMKUV3MQC.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "T55J69CYMKUV3MQC", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "T55J69CYMKUV3MQC.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "T55J69CYMKUV3MQC.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6652" + }, + "appliesTo" : [ ] + }, + "T55J69CYMKUV3MQC.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "T55J69CYMKUV3MQC.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "T55J69CYMKUV3MQC.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "T55J69CYMKUV3MQC", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "T55J69CYMKUV3MQC.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "T55J69CYMKUV3MQC.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9367" + }, + "appliesTo" : [ ] + }, + "T55J69CYMKUV3MQC.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "T55J69CYMKUV3MQC.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "4EJ6YKYP3U22GDYZ" : { + "4EJ6YKYP3U22GDYZ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "4EJ6YKYP3U22GDYZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4EJ6YKYP3U22GDYZ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "4EJ6YKYP3U22GDYZ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "4EJ6YKYP3U22GDYZ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "4EJ6YKYP3U22GDYZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4EJ6YKYP3U22GDYZ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "4EJ6YKYP3U22GDYZ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14665" + }, + "appliesTo" : [ ] + }, + "4EJ6YKYP3U22GDYZ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "4EJ6YKYP3U22GDYZ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4EJ6YKYP3U22GDYZ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "4EJ6YKYP3U22GDYZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4EJ6YKYP3U22GDYZ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "4EJ6YKYP3U22GDYZ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17614" + }, + "appliesTo" : [ ] + }, + "4EJ6YKYP3U22GDYZ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "4EJ6YKYP3U22GDYZ.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4EJ6YKYP3U22GDYZ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "4EJ6YKYP3U22GDYZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4EJ6YKYP3U22GDYZ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "4EJ6YKYP3U22GDYZ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "4EJ6YKYP3U22GDYZ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "4EJ6YKYP3U22GDYZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4EJ6YKYP3U22GDYZ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "4EJ6YKYP3U22GDYZ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "4EJ6YKYP3U22GDYZ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "4EJ6YKYP3U22GDYZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4EJ6YKYP3U22GDYZ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "4EJ6YKYP3U22GDYZ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9063" + }, + "appliesTo" : [ ] + }, + "4EJ6YKYP3U22GDYZ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "4EJ6YKYP3U22GDYZ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4EJ6YKYP3U22GDYZ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "4EJ6YKYP3U22GDYZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4EJ6YKYP3U22GDYZ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "4EJ6YKYP3U22GDYZ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4021" + }, + "appliesTo" : [ ] + }, + "4EJ6YKYP3U22GDYZ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "4EJ6YKYP3U22GDYZ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4EJ6YKYP3U22GDYZ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "4EJ6YKYP3U22GDYZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4EJ6YKYP3U22GDYZ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "4EJ6YKYP3U22GDYZ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "4EJ6YKYP3U22GDYZ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "4EJ6YKYP3U22GDYZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4EJ6YKYP3U22GDYZ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "4EJ6YKYP3U22GDYZ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4624" + }, + "appliesTo" : [ ] + }, + "4EJ6YKYP3U22GDYZ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "4EJ6YKYP3U22GDYZ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4EJ6YKYP3U22GDYZ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "4EJ6YKYP3U22GDYZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4EJ6YKYP3U22GDYZ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "4EJ6YKYP3U22GDYZ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7881" + }, + "appliesTo" : [ ] + }, + "4EJ6YKYP3U22GDYZ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "4EJ6YKYP3U22GDYZ.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4EJ6YKYP3U22GDYZ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "4EJ6YKYP3U22GDYZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4EJ6YKYP3U22GDYZ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "4EJ6YKYP3U22GDYZ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8987" + }, + "appliesTo" : [ ] + }, + "4EJ6YKYP3U22GDYZ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "4EJ6YKYP3U22GDYZ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4EJ6YKYP3U22GDYZ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "4EJ6YKYP3U22GDYZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4EJ6YKYP3U22GDYZ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "4EJ6YKYP3U22GDYZ.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2970000000" + }, + "appliesTo" : [ ] + }, + "4EJ6YKYP3U22GDYZ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "4EJ6YKYP3U22GDYZ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7800" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "3XXW5XAES8B7AAAP" : { + "3XXW5XAES8B7AAAP.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "3XXW5XAES8B7AAAP", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "3XXW5XAES8B7AAAP.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "3XXW5XAES8B7AAAP.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12304" + }, + "appliesTo" : [ ] + }, + "3XXW5XAES8B7AAAP.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "3XXW5XAES8B7AAAP.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3XXW5XAES8B7AAAP.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "3XXW5XAES8B7AAAP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3XXW5XAES8B7AAAP.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "3XXW5XAES8B7AAAP.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "3XXW5XAES8B7AAAP.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "3XXW5XAES8B7AAAP.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27627" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3XXW5XAES8B7AAAP.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "3XXW5XAES8B7AAAP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3XXW5XAES8B7AAAP.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "3XXW5XAES8B7AAAP.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0074000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3XXW5XAES8B7AAAP.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "3XXW5XAES8B7AAAP", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "3XXW5XAES8B7AAAP.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "3XXW5XAES8B7AAAP.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23132" + }, + "appliesTo" : [ ] + }, + "3XXW5XAES8B7AAAP.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "3XXW5XAES8B7AAAP.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3XXW5XAES8B7AAAP.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "3XXW5XAES8B7AAAP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3XXW5XAES8B7AAAP.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "3XXW5XAES8B7AAAP.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14096" + }, + "appliesTo" : [ ] + }, + "3XXW5XAES8B7AAAP.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "3XXW5XAES8B7AAAP.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5364000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3XXW5XAES8B7AAAP.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "3XXW5XAES8B7AAAP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3XXW5XAES8B7AAAP.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "3XXW5XAES8B7AAAP.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "3XXW5XAES8B7AAAP.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "3XXW5XAES8B7AAAP.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13900" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3XXW5XAES8B7AAAP.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "3XXW5XAES8B7AAAP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3XXW5XAES8B7AAAP.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "3XXW5XAES8B7AAAP.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7092" + }, + "appliesTo" : [ ] + }, + "3XXW5XAES8B7AAAP.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "3XXW5XAES8B7AAAP.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8096000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3XXW5XAES8B7AAAP.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "3XXW5XAES8B7AAAP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3XXW5XAES8B7AAAP.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "3XXW5XAES8B7AAAP.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7001000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3XXW5XAES8B7AAAP.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "3XXW5XAES8B7AAAP", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "3XXW5XAES8B7AAAP.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "3XXW5XAES8B7AAAP.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12058" + }, + "appliesTo" : [ ] + }, + "3XXW5XAES8B7AAAP.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "3XXW5XAES8B7AAAP.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3XXW5XAES8B7AAAP.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "3XXW5XAES8B7AAAP", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "3XXW5XAES8B7AAAP.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "3XXW5XAES8B7AAAP.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6152" + }, + "appliesTo" : [ ] + }, + "3XXW5XAES8B7AAAP.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "3XXW5XAES8B7AAAP.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3XXW5XAES8B7AAAP.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "3XXW5XAES8B7AAAP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3XXW5XAES8B7AAAP.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "3XXW5XAES8B7AAAP.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4784000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3XXW5XAES8B7AAAP.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "3XXW5XAES8B7AAAP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3XXW5XAES8B7AAAP.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "3XXW5XAES8B7AAAP.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1585000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "R9EGFXUGURH2UNA2" : { + "R9EGFXUGURH2UNA2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "R9EGFXUGURH2UNA2", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "R9EGFXUGURH2UNA2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "R9EGFXUGURH2UNA2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20367" + }, + "appliesTo" : [ ] + }, + "R9EGFXUGURH2UNA2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "R9EGFXUGURH2UNA2.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "R9EGFXUGURH2UNA2.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "R9EGFXUGURH2UNA2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R9EGFXUGURH2UNA2.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "R9EGFXUGURH2UNA2.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25566" + }, + "appliesTo" : [ ] + }, + "R9EGFXUGURH2UNA2.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "R9EGFXUGURH2UNA2.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "R9EGFXUGURH2UNA2.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "R9EGFXUGURH2UNA2", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "R9EGFXUGURH2UNA2.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "R9EGFXUGURH2UNA2.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30789" + }, + "appliesTo" : [ ] + }, + "R9EGFXUGURH2UNA2.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "R9EGFXUGURH2UNA2.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "R9EGFXUGURH2UNA2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "R9EGFXUGURH2UNA2", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "R9EGFXUGURH2UNA2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "R9EGFXUGURH2UNA2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10393" + }, + "appliesTo" : [ ] + }, + "R9EGFXUGURH2UNA2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "R9EGFXUGURH2UNA2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "R9EGFXUGURH2UNA2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "R9EGFXUGURH2UNA2", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "R9EGFXUGURH2UNA2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "R9EGFXUGURH2UNA2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "44206" + }, + "appliesTo" : [ ] + }, + "R9EGFXUGURH2UNA2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "R9EGFXUGURH2UNA2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "R9EGFXUGURH2UNA2.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "R9EGFXUGURH2UNA2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "R9EGFXUGURH2UNA2.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "R9EGFXUGURH2UNA2.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "R9EGFXUGURH2UNA2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "R9EGFXUGURH2UNA2", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "R9EGFXUGURH2UNA2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "R9EGFXUGURH2UNA2.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "R9EGFXUGURH2UNA2.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "R9EGFXUGURH2UNA2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R9EGFXUGURH2UNA2.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "R9EGFXUGURH2UNA2.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12810" + }, + "appliesTo" : [ ] + }, + "R9EGFXUGURH2UNA2.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "R9EGFXUGURH2UNA2.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "R9EGFXUGURH2UNA2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "R9EGFXUGURH2UNA2", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "R9EGFXUGURH2UNA2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "R9EGFXUGURH2UNA2.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8950000000" + }, + "appliesTo" : [ ] + }, + "R9EGFXUGURH2UNA2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "R9EGFXUGURH2UNA2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23513" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "R9EGFXUGURH2UNA2.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "R9EGFXUGURH2UNA2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "R9EGFXUGURH2UNA2.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "R9EGFXUGURH2UNA2.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "60341" + }, + "appliesTo" : [ ] + }, + "R9EGFXUGURH2UNA2.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "R9EGFXUGURH2UNA2.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "R9EGFXUGURH2UNA2.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "R9EGFXUGURH2UNA2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "R9EGFXUGURH2UNA2.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "R9EGFXUGURH2UNA2.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "R9EGFXUGURH2UNA2.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "R9EGFXUGURH2UNA2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R9EGFXUGURH2UNA2.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "R9EGFXUGURH2UNA2.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "R9PWNAHCDMYRXNMW" : { + "R9PWNAHCDMYRXNMW.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "R9PWNAHCDMYRXNMW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "R9PWNAHCDMYRXNMW.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "R9PWNAHCDMYRXNMW.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6006000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "R9PWNAHCDMYRXNMW.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "R9PWNAHCDMYRXNMW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "R9PWNAHCDMYRXNMW.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "R9PWNAHCDMYRXNMW.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7520000000" + }, + "appliesTo" : [ ] + }, + "R9PWNAHCDMYRXNMW.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "R9PWNAHCDMYRXNMW.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19763" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "R9PWNAHCDMYRXNMW.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "R9PWNAHCDMYRXNMW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "R9PWNAHCDMYRXNMW.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "R9PWNAHCDMYRXNMW.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5181000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "R9PWNAHCDMYRXNMW.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "R9PWNAHCDMYRXNMW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R9PWNAHCDMYRXNMW.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "R9PWNAHCDMYRXNMW.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6415000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "R9PWNAHCDMYRXNMW.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "R9PWNAHCDMYRXNMW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R9PWNAHCDMYRXNMW.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "R9PWNAHCDMYRXNMW.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14196" + }, + "appliesTo" : [ ] + }, + "R9PWNAHCDMYRXNMW.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "R9PWNAHCDMYRXNMW.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "R9PWNAHCDMYRXNMW.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "R9PWNAHCDMYRXNMW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "R9PWNAHCDMYRXNMW.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "R9PWNAHCDMYRXNMW.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "40113" + }, + "appliesTo" : [ ] + }, + "R9PWNAHCDMYRXNMW.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "R9PWNAHCDMYRXNMW.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "R9PWNAHCDMYRXNMW.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "R9PWNAHCDMYRXNMW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R9PWNAHCDMYRXNMW.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "R9PWNAHCDMYRXNMW.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7124" + }, + "appliesTo" : [ ] + }, + "R9PWNAHCDMYRXNMW.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "R9PWNAHCDMYRXNMW.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8133000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "R9PWNAHCDMYRXNMW.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "R9PWNAHCDMYRXNMW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "R9PWNAHCDMYRXNMW.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "R9PWNAHCDMYRXNMW.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6954" + }, + "appliesTo" : [ ] + }, + "R9PWNAHCDMYRXNMW.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "R9PWNAHCDMYRXNMW.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7938000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "R9PWNAHCDMYRXNMW.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "R9PWNAHCDMYRXNMW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "R9PWNAHCDMYRXNMW.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "R9PWNAHCDMYRXNMW.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13862" + }, + "appliesTo" : [ ] + }, + "R9PWNAHCDMYRXNMW.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "R9PWNAHCDMYRXNMW.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "R9PWNAHCDMYRXNMW.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "R9PWNAHCDMYRXNMW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "R9PWNAHCDMYRXNMW.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "R9PWNAHCDMYRXNMW.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5466000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "R9PWNAHCDMYRXNMW.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "R9PWNAHCDMYRXNMW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "R9PWNAHCDMYRXNMW.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "R9PWNAHCDMYRXNMW.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20109" + }, + "appliesTo" : [ ] + }, + "R9PWNAHCDMYRXNMW.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "R9PWNAHCDMYRXNMW.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7652000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "R9PWNAHCDMYRXNMW.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "R9PWNAHCDMYRXNMW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "R9PWNAHCDMYRXNMW.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "R9PWNAHCDMYRXNMW.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39248" + }, + "appliesTo" : [ ] + }, + "R9PWNAHCDMYRXNMW.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "R9PWNAHCDMYRXNMW.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "ATA6MJZDUQ53CRMP" : { + "ATA6MJZDUQ53CRMP.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ATA6MJZDUQ53CRMP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ATA6MJZDUQ53CRMP.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ATA6MJZDUQ53CRMP.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "513" + }, + "appliesTo" : [ ] + }, + "ATA6MJZDUQ53CRMP.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ATA6MJZDUQ53CRMP.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ATA6MJZDUQ53CRMP.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ATA6MJZDUQ53CRMP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ATA6MJZDUQ53CRMP.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ATA6MJZDUQ53CRMP.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ATA6MJZDUQ53CRMP.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ATA6MJZDUQ53CRMP", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "ATA6MJZDUQ53CRMP.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ATA6MJZDUQ53CRMP.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1212" + }, + "appliesTo" : [ ] + }, + "ATA6MJZDUQ53CRMP.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ATA6MJZDUQ53CRMP.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ATA6MJZDUQ53CRMP.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ATA6MJZDUQ53CRMP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ATA6MJZDUQ53CRMP.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ATA6MJZDUQ53CRMP.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1248" + }, + "appliesTo" : [ ] + }, + "ATA6MJZDUQ53CRMP.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ATA6MJZDUQ53CRMP.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ATA6MJZDUQ53CRMP.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ATA6MJZDUQ53CRMP", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "ATA6MJZDUQ53CRMP.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ATA6MJZDUQ53CRMP.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ATA6MJZDUQ53CRMP.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ATA6MJZDUQ53CRMP.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2851" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "89WDVYSF7M632K4P" : { + "89WDVYSF7M632K4P.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "89WDVYSF7M632K4P", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "89WDVYSF7M632K4P.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "89WDVYSF7M632K4P.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25735" + }, + "appliesTo" : [ ] + }, + "89WDVYSF7M632K4P.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "89WDVYSF7M632K4P.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "89WDVYSF7M632K4P.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "89WDVYSF7M632K4P", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "89WDVYSF7M632K4P.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "89WDVYSF7M632K4P.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13158" + }, + "appliesTo" : [ ] + }, + "89WDVYSF7M632K4P.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "89WDVYSF7M632K4P.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "89WDVYSF7M632K4P.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "89WDVYSF7M632K4P", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "89WDVYSF7M632K4P.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "89WDVYSF7M632K4P.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "89WDVYSF7M632K4P.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "89WDVYSF7M632K4P", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "89WDVYSF7M632K4P.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "89WDVYSF7M632K4P.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7057000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "89WDVYSF7M632K4P.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "89WDVYSF7M632K4P", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "89WDVYSF7M632K4P.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "89WDVYSF7M632K4P.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "64429" + }, + "appliesTo" : [ ] + }, + "89WDVYSF7M632K4P.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "89WDVYSF7M632K4P.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "89WDVYSF7M632K4P.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "89WDVYSF7M632K4P", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "89WDVYSF7M632K4P.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "89WDVYSF7M632K4P.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29552" + }, + "appliesTo" : [ ] + }, + "89WDVYSF7M632K4P.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "89WDVYSF7M632K4P.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "89WDVYSF7M632K4P.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "89WDVYSF7M632K4P", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "89WDVYSF7M632K4P.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "89WDVYSF7M632K4P.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1452000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "89WDVYSF7M632K4P.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "89WDVYSF7M632K4P", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "89WDVYSF7M632K4P.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "89WDVYSF7M632K4P.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "89WDVYSF7M632K4P.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "89WDVYSF7M632K4P", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "89WDVYSF7M632K4P.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "89WDVYSF7M632K4P.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15106" + }, + "appliesTo" : [ ] + }, + "89WDVYSF7M632K4P.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "89WDVYSF7M632K4P.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7173000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "89WDVYSF7M632K4P.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "89WDVYSF7M632K4P", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "89WDVYSF7M632K4P.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "89WDVYSF7M632K4P.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "53852" + }, + "appliesTo" : [ ] + }, + "89WDVYSF7M632K4P.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "89WDVYSF7M632K4P.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "89WDVYSF7M632K4P.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "89WDVYSF7M632K4P", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "89WDVYSF7M632K4P.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "89WDVYSF7M632K4P.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2504000000" + }, + "appliesTo" : [ ] + }, + "89WDVYSF7M632K4P.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "89WDVYSF7M632K4P.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32870" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "89WDVYSF7M632K4P.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "89WDVYSF7M632K4P", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "89WDVYSF7M632K4P.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "89WDVYSF7M632K4P.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28627" + }, + "appliesTo" : [ ] + }, + "89WDVYSF7M632K4P.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "89WDVYSF7M632K4P.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0889000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "63ADXUYM8Q7RHXYU" : { + "63ADXUYM8Q7RHXYU.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "63ADXUYM8Q7RHXYU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "63ADXUYM8Q7RHXYU.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "63ADXUYM8Q7RHXYU.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12048" + }, + "appliesTo" : [ ] + }, + "63ADXUYM8Q7RHXYU.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "63ADXUYM8Q7RHXYU.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "63ADXUYM8Q7RHXYU.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "63ADXUYM8Q7RHXYU", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "63ADXUYM8Q7RHXYU.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "63ADXUYM8Q7RHXYU.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "63ADXUYM8Q7RHXYU.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "63ADXUYM8Q7RHXYU.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24736" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "63ADXUYM8Q7RHXYU.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "63ADXUYM8Q7RHXYU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "63ADXUYM8Q7RHXYU.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "63ADXUYM8Q7RHXYU.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "63ADXUYM8Q7RHXYU.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "63ADXUYM8Q7RHXYU.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28387" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "63ADXUYM8Q7RHXYU.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "63ADXUYM8Q7RHXYU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "63ADXUYM8Q7RHXYU.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "63ADXUYM8Q7RHXYU.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32530" + }, + "appliesTo" : [ ] + }, + "63ADXUYM8Q7RHXYU.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "63ADXUYM8Q7RHXYU.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "63ADXUYM8Q7RHXYU.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "63ADXUYM8Q7RHXYU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "63ADXUYM8Q7RHXYU.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "63ADXUYM8Q7RHXYU.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13902" + }, + "appliesTo" : [ ] + }, + "63ADXUYM8Q7RHXYU.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "63ADXUYM8Q7RHXYU.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "63ADXUYM8Q7RHXYU.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "63ADXUYM8Q7RHXYU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "63ADXUYM8Q7RHXYU.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "63ADXUYM8Q7RHXYU.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "63ADXUYM8Q7RHXYU.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "63ADXUYM8Q7RHXYU", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "63ADXUYM8Q7RHXYU.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "63ADXUYM8Q7RHXYU.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22136" + }, + "appliesTo" : [ ] + }, + "63ADXUYM8Q7RHXYU.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "63ADXUYM8Q7RHXYU.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "63ADXUYM8Q7RHXYU.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "63ADXUYM8Q7RHXYU", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "63ADXUYM8Q7RHXYU.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "63ADXUYM8Q7RHXYU.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "63ADXUYM8Q7RHXYU.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "63ADXUYM8Q7RHXYU", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "63ADXUYM8Q7RHXYU.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "63ADXUYM8Q7RHXYU.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "63ADXUYM8Q7RHXYU.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "63ADXUYM8Q7RHXYU.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "67123" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "63ADXUYM8Q7RHXYU.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "63ADXUYM8Q7RHXYU", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "63ADXUYM8Q7RHXYU.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "63ADXUYM8Q7RHXYU.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "63ADXUYM8Q7RHXYU.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "63ADXUYM8Q7RHXYU", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "63ADXUYM8Q7RHXYU.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "63ADXUYM8Q7RHXYU.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "44770" + }, + "appliesTo" : [ ] + }, + "63ADXUYM8Q7RHXYU.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "63ADXUYM8Q7RHXYU.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "P2X2N5M2PU9A9XS4" : { + "P2X2N5M2PU9A9XS4.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "P2X2N5M2PU9A9XS4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "P2X2N5M2PU9A9XS4.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "P2X2N5M2PU9A9XS4.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1657" + }, + "appliesTo" : [ ] + }, + "P2X2N5M2PU9A9XS4.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "P2X2N5M2PU9A9XS4.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "P2X2N5M2PU9A9XS4.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "P2X2N5M2PU9A9XS4", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "P2X2N5M2PU9A9XS4.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "P2X2N5M2PU9A9XS4.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "P2X2N5M2PU9A9XS4.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "P2X2N5M2PU9A9XS4", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "P2X2N5M2PU9A9XS4.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "P2X2N5M2PU9A9XS4.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3815" + }, + "appliesTo" : [ ] + }, + "P2X2N5M2PU9A9XS4.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "P2X2N5M2PU9A9XS4.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "P2X2N5M2PU9A9XS4.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "P2X2N5M2PU9A9XS4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "P2X2N5M2PU9A9XS4.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "P2X2N5M2PU9A9XS4.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7345" + }, + "appliesTo" : [ ] + }, + "P2X2N5M2PU9A9XS4.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "P2X2N5M2PU9A9XS4.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "P2X2N5M2PU9A9XS4.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "P2X2N5M2PU9A9XS4", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "P2X2N5M2PU9A9XS4.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "P2X2N5M2PU9A9XS4.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3044" + }, + "appliesTo" : [ ] + }, + "P2X2N5M2PU9A9XS4.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "P2X2N5M2PU9A9XS4.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "P2X2N5M2PU9A9XS4.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "P2X2N5M2PU9A9XS4", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "P2X2N5M2PU9A9XS4.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "P2X2N5M2PU9A9XS4.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10471" + }, + "appliesTo" : [ ] + }, + "P2X2N5M2PU9A9XS4.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "P2X2N5M2PU9A9XS4.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "P2X2N5M2PU9A9XS4.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "P2X2N5M2PU9A9XS4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "P2X2N5M2PU9A9XS4.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "P2X2N5M2PU9A9XS4.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4474" + }, + "appliesTo" : [ ] + }, + "P2X2N5M2PU9A9XS4.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "P2X2N5M2PU9A9XS4.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "P2X2N5M2PU9A9XS4.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "P2X2N5M2PU9A9XS4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P2X2N5M2PU9A9XS4.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "P2X2N5M2PU9A9XS4.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1912" + }, + "appliesTo" : [ ] + }, + "P2X2N5M2PU9A9XS4.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "P2X2N5M2PU9A9XS4.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "P2X2N5M2PU9A9XS4.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "P2X2N5M2PU9A9XS4", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "P2X2N5M2PU9A9XS4.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "P2X2N5M2PU9A9XS4.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "P2X2N5M2PU9A9XS4.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "P2X2N5M2PU9A9XS4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P2X2N5M2PU9A9XS4.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "P2X2N5M2PU9A9XS4.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "P2X2N5M2PU9A9XS4.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "P2X2N5M2PU9A9XS4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P2X2N5M2PU9A9XS4.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "P2X2N5M2PU9A9XS4.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4272" + }, + "appliesTo" : [ ] + }, + "P2X2N5M2PU9A9XS4.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "P2X2N5M2PU9A9XS4.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "YMRN5MTGT97CSMR5" : { + "YMRN5MTGT97CSMR5.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "YMRN5MTGT97CSMR5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YMRN5MTGT97CSMR5.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "YMRN5MTGT97CSMR5.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "383" + }, + "appliesTo" : [ ] + }, + "YMRN5MTGT97CSMR5.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "YMRN5MTGT97CSMR5.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YMRN5MTGT97CSMR5.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "YMRN5MTGT97CSMR5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YMRN5MTGT97CSMR5.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "YMRN5MTGT97CSMR5.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YMRN5MTGT97CSMR5.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YMRN5MTGT97CSMR5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YMRN5MTGT97CSMR5.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YMRN5MTGT97CSMR5.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "398" + }, + "appliesTo" : [ ] + }, + "YMRN5MTGT97CSMR5.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YMRN5MTGT97CSMR5.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YMRN5MTGT97CSMR5.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YMRN5MTGT97CSMR5", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YMRN5MTGT97CSMR5.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YMRN5MTGT97CSMR5.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YMRN5MTGT97CSMR5.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "YMRN5MTGT97CSMR5", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "YMRN5MTGT97CSMR5.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "YMRN5MTGT97CSMR5.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YMRN5MTGT97CSMR5.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "YMRN5MTGT97CSMR5.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1555" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YMRN5MTGT97CSMR5.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "YMRN5MTGT97CSMR5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YMRN5MTGT97CSMR5.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "YMRN5MTGT97CSMR5.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YMRN5MTGT97CSMR5.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "YMRN5MTGT97CSMR5.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "696" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YMRN5MTGT97CSMR5.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "YMRN5MTGT97CSMR5", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YMRN5MTGT97CSMR5.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "YMRN5MTGT97CSMR5.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YMRN5MTGT97CSMR5.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YMRN5MTGT97CSMR5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YMRN5MTGT97CSMR5.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YMRN5MTGT97CSMR5.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1289" + }, + "appliesTo" : [ ] + }, + "YMRN5MTGT97CSMR5.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YMRN5MTGT97CSMR5.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YMRN5MTGT97CSMR5.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "YMRN5MTGT97CSMR5", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YMRN5MTGT97CSMR5.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "YMRN5MTGT97CSMR5.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "922" + }, + "appliesTo" : [ ] + }, + "YMRN5MTGT97CSMR5.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "YMRN5MTGT97CSMR5.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YMRN5MTGT97CSMR5.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YMRN5MTGT97CSMR5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YMRN5MTGT97CSMR5.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YMRN5MTGT97CSMR5.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "638" + }, + "appliesTo" : [ ] + }, + "YMRN5MTGT97CSMR5.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YMRN5MTGT97CSMR5.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YMRN5MTGT97CSMR5.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YMRN5MTGT97CSMR5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YMRN5MTGT97CSMR5.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YMRN5MTGT97CSMR5.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "689" + }, + "appliesTo" : [ ] + }, + "YMRN5MTGT97CSMR5.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YMRN5MTGT97CSMR5.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "Z73XYJRRH5CMMR8R" : { + "Z73XYJRRH5CMMR8R.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "Z73XYJRRH5CMMR8R", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z73XYJRRH5CMMR8R.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "Z73XYJRRH5CMMR8R.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9373" + }, + "appliesTo" : [ ] + }, + "Z73XYJRRH5CMMR8R.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "Z73XYJRRH5CMMR8R.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Z73XYJRRH5CMMR8R.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Z73XYJRRH5CMMR8R", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z73XYJRRH5CMMR8R.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Z73XYJRRH5CMMR8R.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Z73XYJRRH5CMMR8R.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "Z73XYJRRH5CMMR8R", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z73XYJRRH5CMMR8R.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "Z73XYJRRH5CMMR8R.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4714" + }, + "appliesTo" : [ ] + }, + "Z73XYJRRH5CMMR8R.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "Z73XYJRRH5CMMR8R.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z73XYJRRH5CMMR8R.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Z73XYJRRH5CMMR8R", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z73XYJRRH5CMMR8R.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Z73XYJRRH5CMMR8R.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1730000000" + }, + "appliesTo" : [ ] + }, + "Z73XYJRRH5CMMR8R.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Z73XYJRRH5CMMR8R.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4546" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z73XYJRRH5CMMR8R.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "Z73XYJRRH5CMMR8R", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z73XYJRRH5CMMR8R.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "Z73XYJRRH5CMMR8R.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Z73XYJRRH5CMMR8R.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Z73XYJRRH5CMMR8R", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "Z73XYJRRH5CMMR8R.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Z73XYJRRH5CMMR8R.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "Z73XYJRRH5CMMR8R.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Z73XYJRRH5CMMR8R.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8961" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Z73XYJRRH5CMMR8R.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Z73XYJRRH5CMMR8R", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "Z73XYJRRH5CMMR8R.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Z73XYJRRH5CMMR8R.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3758" + }, + "appliesTo" : [ ] + }, + "Z73XYJRRH5CMMR8R.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Z73XYJRRH5CMMR8R.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Z73XYJRRH5CMMR8R.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Z73XYJRRH5CMMR8R", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "Z73XYJRRH5CMMR8R.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Z73XYJRRH5CMMR8R.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1918" + }, + "appliesTo" : [ ] + }, + "Z73XYJRRH5CMMR8R.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Z73XYJRRH5CMMR8R.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z73XYJRRH5CMMR8R.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "Z73XYJRRH5CMMR8R", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z73XYJRRH5CMMR8R.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "Z73XYJRRH5CMMR8R.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "V34YMXZ5WQ9WHREH" : { + "V34YMXZ5WQ9WHREH.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "V34YMXZ5WQ9WHREH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V34YMXZ5WQ9WHREH.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "V34YMXZ5WQ9WHREH.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "170383" + }, + "appliesTo" : [ ] + }, + "V34YMXZ5WQ9WHREH.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "V34YMXZ5WQ9WHREH.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "V34YMXZ5WQ9WHREH.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "V34YMXZ5WQ9WHREH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V34YMXZ5WQ9WHREH.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "V34YMXZ5WQ9WHREH.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "80835" + }, + "appliesTo" : [ ] + }, + "V34YMXZ5WQ9WHREH.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "V34YMXZ5WQ9WHREH.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.2280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "V34YMXZ5WQ9WHREH.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "V34YMXZ5WQ9WHREH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V34YMXZ5WQ9WHREH.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "V34YMXZ5WQ9WHREH.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "160298" + }, + "appliesTo" : [ ] + }, + "V34YMXZ5WQ9WHREH.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "V34YMXZ5WQ9WHREH.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "V34YMXZ5WQ9WHREH.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "V34YMXZ5WQ9WHREH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V34YMXZ5WQ9WHREH.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "V34YMXZ5WQ9WHREH.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.9140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "V34YMXZ5WQ9WHREH.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "V34YMXZ5WQ9WHREH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V34YMXZ5WQ9WHREH.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "V34YMXZ5WQ9WHREH.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "377315" + }, + "appliesTo" : [ ] + }, + "V34YMXZ5WQ9WHREH.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "V34YMXZ5WQ9WHREH.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "V34YMXZ5WQ9WHREH.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "V34YMXZ5WQ9WHREH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V34YMXZ5WQ9WHREH.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "V34YMXZ5WQ9WHREH.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "396833" + }, + "appliesTo" : [ ] + }, + "V34YMXZ5WQ9WHREH.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "V34YMXZ5WQ9WHREH.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "V34YMXZ5WQ9WHREH.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "V34YMXZ5WQ9WHREH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V34YMXZ5WQ9WHREH.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "V34YMXZ5WQ9WHREH.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.5570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "V34YMXZ5WQ9WHREH.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "V34YMXZ5WQ9WHREH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V34YMXZ5WQ9WHREH.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "V34YMXZ5WQ9WHREH.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "18.8470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "V34YMXZ5WQ9WHREH.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "V34YMXZ5WQ9WHREH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V34YMXZ5WQ9WHREH.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "V34YMXZ5WQ9WHREH.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "85980" + }, + "appliesTo" : [ ] + }, + "V34YMXZ5WQ9WHREH.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "V34YMXZ5WQ9WHREH.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.8150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "V34YMXZ5WQ9WHREH.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "V34YMXZ5WQ9WHREH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V34YMXZ5WQ9WHREH.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "V34YMXZ5WQ9WHREH.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "20.0810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "V34YMXZ5WQ9WHREH.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "V34YMXZ5WQ9WHREH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V34YMXZ5WQ9WHREH.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "V34YMXZ5WQ9WHREH.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "191789" + }, + "appliesTo" : [ ] + }, + "V34YMXZ5WQ9WHREH.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "V34YMXZ5WQ9WHREH.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.2980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "V34YMXZ5WQ9WHREH.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "V34YMXZ5WQ9WHREH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V34YMXZ5WQ9WHREH.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "V34YMXZ5WQ9WHREH.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "199617" + }, + "appliesTo" : [ ] + }, + "V34YMXZ5WQ9WHREH.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "V34YMXZ5WQ9WHREH.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "KG9YWSKMK27V6W6V" : { + "KG9YWSKMK27V6W6V.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "KG9YWSKMK27V6W6V", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "KG9YWSKMK27V6W6V.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "KG9YWSKMK27V6W6V.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "KG9YWSKMK27V6W6V.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "KG9YWSKMK27V6W6V.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1544" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KG9YWSKMK27V6W6V.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "KG9YWSKMK27V6W6V", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "KG9YWSKMK27V6W6V.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "KG9YWSKMK27V6W6V.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "KG9YWSKMK27V6W6V.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "KG9YWSKMK27V6W6V.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "835" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KG9YWSKMK27V6W6V.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "KG9YWSKMK27V6W6V", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "KG9YWSKMK27V6W6V.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "KG9YWSKMK27V6W6V.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "750" + }, + "appliesTo" : [ ] + }, + "KG9YWSKMK27V6W6V.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "KG9YWSKMK27V6W6V.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KG9YWSKMK27V6W6V.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "KG9YWSKMK27V6W6V", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "KG9YWSKMK27V6W6V.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "KG9YWSKMK27V6W6V.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KG9YWSKMK27V6W6V.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "KG9YWSKMK27V6W6V", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "KG9YWSKMK27V6W6V.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "KG9YWSKMK27V6W6V.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "493" + }, + "appliesTo" : [ ] + }, + "KG9YWSKMK27V6W6V.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "KG9YWSKMK27V6W6V.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "ZQ8ZP9Y9DGFD6M45" : { + "ZQ8ZP9Y9DGFD6M45.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ZQ8ZP9Y9DGFD6M45", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZQ8ZP9Y9DGFD6M45.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ZQ8ZP9Y9DGFD6M45.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5562" + }, + "appliesTo" : [ ] + }, + "ZQ8ZP9Y9DGFD6M45.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ZQ8ZP9Y9DGFD6M45.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZQ8ZP9Y9DGFD6M45.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "ZQ8ZP9Y9DGFD6M45", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZQ8ZP9Y9DGFD6M45.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "ZQ8ZP9Y9DGFD6M45.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5432000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZQ8ZP9Y9DGFD6M45.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ZQ8ZP9Y9DGFD6M45", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZQ8ZP9Y9DGFD6M45.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ZQ8ZP9Y9DGFD6M45.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15890" + }, + "appliesTo" : [ ] + }, + "ZQ8ZP9Y9DGFD6M45.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ZQ8ZP9Y9DGFD6M45.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZQ8ZP9Y9DGFD6M45.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ZQ8ZP9Y9DGFD6M45", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "ZQ8ZP9Y9DGFD6M45.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ZQ8ZP9Y9DGFD6M45.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZQ8ZP9Y9DGFD6M45.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ZQ8ZP9Y9DGFD6M45", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZQ8ZP9Y9DGFD6M45.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ZQ8ZP9Y9DGFD6M45.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7022" + }, + "appliesTo" : [ ] + }, + "ZQ8ZP9Y9DGFD6M45.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ZQ8ZP9Y9DGFD6M45.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZQ8ZP9Y9DGFD6M45.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ZQ8ZP9Y9DGFD6M45", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "ZQ8ZP9Y9DGFD6M45.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ZQ8ZP9Y9DGFD6M45.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2829" + }, + "appliesTo" : [ ] + }, + "ZQ8ZP9Y9DGFD6M45.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ZQ8ZP9Y9DGFD6M45.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZQ8ZP9Y9DGFD6M45.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ZQ8ZP9Y9DGFD6M45", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZQ8ZP9Y9DGFD6M45.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ZQ8ZP9Y9DGFD6M45.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4038000000" + }, + "appliesTo" : [ ] + }, + "ZQ8ZP9Y9DGFD6M45.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ZQ8ZP9Y9DGFD6M45.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3537" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZQ8ZP9Y9DGFD6M45.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ZQ8ZP9Y9DGFD6M45", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "ZQ8ZP9Y9DGFD6M45.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ZQ8ZP9Y9DGFD6M45.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZQ8ZP9Y9DGFD6M45.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ZQ8ZP9Y9DGFD6M45", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZQ8ZP9Y9DGFD6M45.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ZQ8ZP9Y9DGFD6M45.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8225000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZQ8ZP9Y9DGFD6M45.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ZQ8ZP9Y9DGFD6M45", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZQ8ZP9Y9DGFD6M45.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ZQ8ZP9Y9DGFD6M45.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ZQ8ZP9Y9DGFD6M45.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ZQ8ZP9Y9DGFD6M45.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13397" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZQ8ZP9Y9DGFD6M45.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ZQ8ZP9Y9DGFD6M45", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "ZQ8ZP9Y9DGFD6M45.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ZQ8ZP9Y9DGFD6M45.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8108" + }, + "appliesTo" : [ ] + }, + "ZQ8ZP9Y9DGFD6M45.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ZQ8ZP9Y9DGFD6M45.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZQ8ZP9Y9DGFD6M45.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ZQ8ZP9Y9DGFD6M45", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "ZQ8ZP9Y9DGFD6M45.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ZQ8ZP9Y9DGFD6M45.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2720000000" + }, + "appliesTo" : [ ] + }, + "ZQ8ZP9Y9DGFD6M45.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ZQ8ZP9Y9DGFD6M45.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7126" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "YHVCZK7UAVDZMX92" : { + "YHVCZK7UAVDZMX92.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YHVCZK7UAVDZMX92", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YHVCZK7UAVDZMX92.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YHVCZK7UAVDZMX92.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21690" + }, + "appliesTo" : [ ] + }, + "YHVCZK7UAVDZMX92.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YHVCZK7UAVDZMX92.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YHVCZK7UAVDZMX92.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YHVCZK7UAVDZMX92", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YHVCZK7UAVDZMX92.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YHVCZK7UAVDZMX92.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YHVCZK7UAVDZMX92.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YHVCZK7UAVDZMX92.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "55500" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YHVCZK7UAVDZMX92.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YHVCZK7UAVDZMX92", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YHVCZK7UAVDZMX92.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YHVCZK7UAVDZMX92.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29530" + }, + "appliesTo" : [ ] + }, + "YHVCZK7UAVDZMX92.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YHVCZK7UAVDZMX92.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YHVCZK7UAVDZMX92.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YHVCZK7UAVDZMX92", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YHVCZK7UAVDZMX92.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YHVCZK7UAVDZMX92.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11060" + }, + "appliesTo" : [ ] + }, + "YHVCZK7UAVDZMX92.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YHVCZK7UAVDZMX92.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YHVCZK7UAVDZMX92.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YHVCZK7UAVDZMX92", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YHVCZK7UAVDZMX92.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YHVCZK7UAVDZMX92.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "NW2F7XVYDCTPPGMJ" : { + "NW2F7XVYDCTPPGMJ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "NW2F7XVYDCTPPGMJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "NW2F7XVYDCTPPGMJ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "NW2F7XVYDCTPPGMJ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46625" + }, + "appliesTo" : [ ] + }, + "NW2F7XVYDCTPPGMJ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "NW2F7XVYDCTPPGMJ.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "NW2F7XVYDCTPPGMJ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "NW2F7XVYDCTPPGMJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "NW2F7XVYDCTPPGMJ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "NW2F7XVYDCTPPGMJ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7704000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "NW2F7XVYDCTPPGMJ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "NW2F7XVYDCTPPGMJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "NW2F7XVYDCTPPGMJ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "NW2F7XVYDCTPPGMJ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46232" + }, + "appliesTo" : [ ] + }, + "NW2F7XVYDCTPPGMJ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "NW2F7XVYDCTPPGMJ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "NW2F7XVYDCTPPGMJ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "NW2F7XVYDCTPPGMJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "NW2F7XVYDCTPPGMJ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "NW2F7XVYDCTPPGMJ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23337" + }, + "appliesTo" : [ ] + }, + "NW2F7XVYDCTPPGMJ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "NW2F7XVYDCTPPGMJ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "NW2F7XVYDCTPPGMJ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "NW2F7XVYDCTPPGMJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NW2F7XVYDCTPPGMJ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "NW2F7XVYDCTPPGMJ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15917" + }, + "appliesTo" : [ ] + }, + "NW2F7XVYDCTPPGMJ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "NW2F7XVYDCTPPGMJ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "NW2F7XVYDCTPPGMJ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "NW2F7XVYDCTPPGMJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "NW2F7XVYDCTPPGMJ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "NW2F7XVYDCTPPGMJ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23179" + }, + "appliesTo" : [ ] + }, + "NW2F7XVYDCTPPGMJ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "NW2F7XVYDCTPPGMJ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "NW2F7XVYDCTPPGMJ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "NW2F7XVYDCTPPGMJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "NW2F7XVYDCTPPGMJ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "NW2F7XVYDCTPPGMJ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8079000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "NW2F7XVYDCTPPGMJ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "NW2F7XVYDCTPPGMJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "NW2F7XVYDCTPPGMJ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "NW2F7XVYDCTPPGMJ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7834000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "NW2F7XVYDCTPPGMJ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "NW2F7XVYDCTPPGMJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "NW2F7XVYDCTPPGMJ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "NW2F7XVYDCTPPGMJ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15765" + }, + "appliesTo" : [ ] + }, + "NW2F7XVYDCTPPGMJ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "NW2F7XVYDCTPPGMJ.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "NW2F7XVYDCTPPGMJ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "NW2F7XVYDCTPPGMJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "NW2F7XVYDCTPPGMJ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "NW2F7XVYDCTPPGMJ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9010000000" + }, + "appliesTo" : [ ] + }, + "NW2F7XVYDCTPPGMJ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "NW2F7XVYDCTPPGMJ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7893" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "NW2F7XVYDCTPPGMJ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "NW2F7XVYDCTPPGMJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NW2F7XVYDCTPPGMJ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "NW2F7XVYDCTPPGMJ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7970" + }, + "appliesTo" : [ ] + }, + "NW2F7XVYDCTPPGMJ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "NW2F7XVYDCTPPGMJ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9099000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "NW2F7XVYDCTPPGMJ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "NW2F7XVYDCTPPGMJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NW2F7XVYDCTPPGMJ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "NW2F7XVYDCTPPGMJ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8265000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "FP9695TT873RFND7" : { + "FP9695TT873RFND7.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "FP9695TT873RFND7", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "FP9695TT873RFND7.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "FP9695TT873RFND7.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4231" + }, + "appliesTo" : [ ] + }, + "FP9695TT873RFND7.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "FP9695TT873RFND7.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FP9695TT873RFND7.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "FP9695TT873RFND7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FP9695TT873RFND7.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "FP9695TT873RFND7.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8293" + }, + "appliesTo" : [ ] + }, + "FP9695TT873RFND7.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "FP9695TT873RFND7.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FP9695TT873RFND7.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "FP9695TT873RFND7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FP9695TT873RFND7.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "FP9695TT873RFND7.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9478" + }, + "appliesTo" : [ ] + }, + "FP9695TT873RFND7.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "FP9695TT873RFND7.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FP9695TT873RFND7.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "FP9695TT873RFND7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FP9695TT873RFND7.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "FP9695TT873RFND7.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FP9695TT873RFND7.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "FP9695TT873RFND7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FP9695TT873RFND7.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "FP9695TT873RFND7.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FP9695TT873RFND7.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "FP9695TT873RFND7", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "FP9695TT873RFND7.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "FP9695TT873RFND7.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8686" + }, + "appliesTo" : [ ] + }, + "FP9695TT873RFND7.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "FP9695TT873RFND7.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FP9695TT873RFND7.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "FP9695TT873RFND7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FP9695TT873RFND7.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "FP9695TT873RFND7.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FP9695TT873RFND7.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "FP9695TT873RFND7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FP9695TT873RFND7.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "FP9695TT873RFND7.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "FP9695TT873RFND7.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "FP9695TT873RFND7.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19429" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FP9695TT873RFND7.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "FP9695TT873RFND7", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "FP9695TT873RFND7.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "FP9695TT873RFND7.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "FP9695TT873RFND7.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "FP9695TT873RFND7.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16329" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FP9695TT873RFND7.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "FP9695TT873RFND7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FP9695TT873RFND7.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "FP9695TT873RFND7.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FP9695TT873RFND7.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "FP9695TT873RFND7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FP9695TT873RFND7.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "FP9695TT873RFND7.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4836" + }, + "appliesTo" : [ ] + }, + "FP9695TT873RFND7.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "FP9695TT873RFND7.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FP9695TT873RFND7.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "FP9695TT873RFND7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FP9695TT873RFND7.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "FP9695TT873RFND7.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9913" + }, + "appliesTo" : [ ] + }, + "FP9695TT873RFND7.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "FP9695TT873RFND7.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "EBPZ7HKS449M43K4" : { + "EBPZ7HKS449M43K4.YKSHTEAGQM" : { + "offerTermCode" : "YKSHTEAGQM", + "sku" : "EBPZ7HKS449M43K4", + "effectiveDate" : "2017-09-01T12:23:43Z", + "priceDimensions" : { + "EBPZ7HKS449M43K4.YKSHTEAGQM.6YS6EN2CT7" : { + "rateCode" : "EBPZ7HKS449M43K4.YKSHTEAGQM.6YS6EN2CT7", + "description" : "C5 Dedicated Host Reservation hours used this month", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0100000000" + }, + "appliesTo" : [ ] + }, + "EBPZ7HKS449M43K4.YKSHTEAGQM.2TG2D8R56U" : { + "rateCode" : "EBPZ7HKS449M43K4.YKSHTEAGQM.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8846" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1 yr", + "OfferingClass" : "standard", + "PurchaseOption" : "PartialUpfront" + } + }, + "EBPZ7HKS449M43K4.3RJ4P9STGK" : { + "offerTermCode" : "3RJ4P9STGK", + "sku" : "EBPZ7HKS449M43K4", + "effectiveDate" : "2017-09-01T12:23:56Z", + "priceDimensions" : { + "EBPZ7HKS449M43K4.3RJ4P9STGK.2TG2D8R56U" : { + "rateCode" : "EBPZ7HKS449M43K4.3RJ4P9STGK.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17161" + }, + "appliesTo" : [ ] + }, + "EBPZ7HKS449M43K4.3RJ4P9STGK.6YS6EN2CT7" : { + "rateCode" : "EBPZ7HKS449M43K4.3RJ4P9STGK.6YS6EN2CT7", + "description" : "C5 Dedicated Host Reservation hours used this month", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3 yr", + "OfferingClass" : "standard", + "PurchaseOption" : "PartialUpfront" + } + }, + "EBPZ7HKS449M43K4.DXEJ4EGHUJ" : { + "offerTermCode" : "DXEJ4EGHUJ", + "sku" : "EBPZ7HKS449M43K4", + "effectiveDate" : "2017-09-01T12:22:55Z", + "priceDimensions" : { + "EBPZ7HKS449M43K4.DXEJ4EGHUJ.2TG2D8R56U" : { + "rateCode" : "EBPZ7HKS449M43K4.DXEJ4EGHUJ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17338" + }, + "appliesTo" : [ ] + }, + "EBPZ7HKS449M43K4.DXEJ4EGHUJ.6YS6EN2CT7" : { + "rateCode" : "EBPZ7HKS449M43K4.DXEJ4EGHUJ.6YS6EN2CT7", + "description" : "C5 Dedicated Host Reservation hours used this month", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1 yr", + "OfferingClass" : "standard", + "PurchaseOption" : "AllUpfront" + } + }, + "EBPZ7HKS449M43K4.CRSZ9MHARF" : { + "offerTermCode" : "CRSZ9MHARF", + "sku" : "EBPZ7HKS449M43K4", + "effectiveDate" : "2017-09-01T12:23:19Z", + "priceDimensions" : { + "EBPZ7HKS449M43K4.CRSZ9MHARF.6YS6EN2CT7" : { + "rateCode" : "EBPZ7HKS449M43K4.CRSZ9MHARF.6YS6EN2CT7", + "description" : "C5 Dedicated Host Reservation hours used this month", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1 yr", + "OfferingClass" : "standard", + "PurchaseOption" : "NoUpfront" + } + }, + "EBPZ7HKS449M43K4.CPPW92X9U4" : { + "offerTermCode" : "CPPW92X9U4", + "sku" : "EBPZ7HKS449M43K4", + "effectiveDate" : "2017-09-01T12:23:08Z", + "priceDimensions" : { + "EBPZ7HKS449M43K4.CPPW92X9U4.2TG2D8R56U" : { + "rateCode" : "EBPZ7HKS449M43K4.CPPW92X9U4.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32263" + }, + "appliesTo" : [ ] + }, + "EBPZ7HKS449M43K4.CPPW92X9U4.6YS6EN2CT7" : { + "rateCode" : "EBPZ7HKS449M43K4.CPPW92X9U4.6YS6EN2CT7", + "description" : "C5 Dedicated Host Reservation hours used this month", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3 yr", + "OfferingClass" : "standard", + "PurchaseOption" : "AllUpfront" + } + }, + "EBPZ7HKS449M43K4.UDM74VY9CQ" : { + "offerTermCode" : "UDM74VY9CQ", + "sku" : "EBPZ7HKS449M43K4", + "effectiveDate" : "2017-09-01T12:23:32Z", + "priceDimensions" : { + "EBPZ7HKS449M43K4.UDM74VY9CQ.6YS6EN2CT7" : { + "rateCode" : "EBPZ7HKS449M43K4.UDM74VY9CQ.6YS6EN2CT7", + "description" : "C5 Dedicated Host Reservation hours used this month", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3 yr", + "OfferingClass" : "standard", + "PurchaseOption" : "NoUpfront" + } + } + }, + "JDDEXQUM9ZCJ8RDR" : { + "JDDEXQUM9ZCJ8RDR.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "JDDEXQUM9ZCJ8RDR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JDDEXQUM9ZCJ8RDR.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "JDDEXQUM9ZCJ8RDR.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4288000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "JDDEXQUM9ZCJ8RDR.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "JDDEXQUM9ZCJ8RDR", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "JDDEXQUM9ZCJ8RDR.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "JDDEXQUM9ZCJ8RDR.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "JDDEXQUM9ZCJ8RDR.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "JDDEXQUM9ZCJ8RDR", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "JDDEXQUM9ZCJ8RDR.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "JDDEXQUM9ZCJ8RDR.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "40471" + }, + "appliesTo" : [ ] + }, + "JDDEXQUM9ZCJ8RDR.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "JDDEXQUM9ZCJ8RDR.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "JDDEXQUM9ZCJ8RDR.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "JDDEXQUM9ZCJ8RDR", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "JDDEXQUM9ZCJ8RDR.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "JDDEXQUM9ZCJ8RDR.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "80274" + }, + "appliesTo" : [ ] + }, + "JDDEXQUM9ZCJ8RDR.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "JDDEXQUM9ZCJ8RDR.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JDDEXQUM9ZCJ8RDR.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "JDDEXQUM9ZCJ8RDR", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "JDDEXQUM9ZCJ8RDR.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "JDDEXQUM9ZCJ8RDR.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28761" + }, + "appliesTo" : [ ] + }, + "JDDEXQUM9ZCJ8RDR.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "JDDEXQUM9ZCJ8RDR.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JDDEXQUM9ZCJ8RDR.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "JDDEXQUM9ZCJ8RDR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JDDEXQUM9ZCJ8RDR.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "JDDEXQUM9ZCJ8RDR.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29585" + }, + "appliesTo" : [ ] + }, + "JDDEXQUM9ZCJ8RDR.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "JDDEXQUM9ZCJ8RDR.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "JDDEXQUM9ZCJ8RDR.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "JDDEXQUM9ZCJ8RDR", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "JDDEXQUM9ZCJ8RDR.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "JDDEXQUM9ZCJ8RDR.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1826000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "JDDEXQUM9ZCJ8RDR.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "JDDEXQUM9ZCJ8RDR", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "JDDEXQUM9ZCJ8RDR.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "JDDEXQUM9ZCJ8RDR.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "41307" + }, + "appliesTo" : [ ] + }, + "JDDEXQUM9ZCJ8RDR.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "JDDEXQUM9ZCJ8RDR.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5718000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "JDDEXQUM9ZCJ8RDR.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "JDDEXQUM9ZCJ8RDR", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "JDDEXQUM9ZCJ8RDR.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "JDDEXQUM9ZCJ8RDR.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14436" + }, + "appliesTo" : [ ] + }, + "JDDEXQUM9ZCJ8RDR.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "JDDEXQUM9ZCJ8RDR.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "JDDEXQUM9ZCJ8RDR.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "JDDEXQUM9ZCJ8RDR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JDDEXQUM9ZCJ8RDR.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "JDDEXQUM9ZCJ8RDR.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14857" + }, + "appliesTo" : [ ] + }, + "JDDEXQUM9ZCJ8RDR.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "JDDEXQUM9ZCJ8RDR.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "JDDEXQUM9ZCJ8RDR.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "JDDEXQUM9ZCJ8RDR", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "JDDEXQUM9ZCJ8RDR.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "JDDEXQUM9ZCJ8RDR.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "JDDEXQUM9ZCJ8RDR.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "JDDEXQUM9ZCJ8RDR.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "82358" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "JDDEXQUM9ZCJ8RDR.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "JDDEXQUM9ZCJ8RDR", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "JDDEXQUM9ZCJ8RDR.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "JDDEXQUM9ZCJ8RDR.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1139000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "ZY733QB4MX5V3J68" : { + "ZY733QB4MX5V3J68.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ZY733QB4MX5V3J68", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "ZY733QB4MX5V3J68.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ZY733QB4MX5V3J68.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0672000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZY733QB4MX5V3J68.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ZY733QB4MX5V3J68", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "ZY733QB4MX5V3J68.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ZY733QB4MX5V3J68.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30" + }, + "appliesTo" : [ ] + }, + "ZY733QB4MX5V3J68.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ZY733QB4MX5V3J68.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0634000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZY733QB4MX5V3J68.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ZY733QB4MX5V3J68", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZY733QB4MX5V3J68.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ZY733QB4MX5V3J68.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0683000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZY733QB4MX5V3J68.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ZY733QB4MX5V3J68", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZY733QB4MX5V3J68.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ZY733QB4MX5V3J68.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34" + }, + "appliesTo" : [ ] + }, + "ZY733QB4MX5V3J68.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ZY733QB4MX5V3J68.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0639000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZY733QB4MX5V3J68.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ZY733QB4MX5V3J68", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "ZY733QB4MX5V3J68.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ZY733QB4MX5V3J68.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1634" + }, + "appliesTo" : [ ] + }, + "ZY733QB4MX5V3J68.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ZY733QB4MX5V3J68.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZY733QB4MX5V3J68.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ZY733QB4MX5V3J68", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "ZY733QB4MX5V3J68.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ZY733QB4MX5V3J68.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0627000000" + }, + "appliesTo" : [ ] + }, + "ZY733QB4MX5V3J68.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ZY733QB4MX5V3J68.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "70" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZY733QB4MX5V3J68.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "ZY733QB4MX5V3J68", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "ZY733QB4MX5V3J68.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "ZY733QB4MX5V3J68.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZY733QB4MX5V3J68.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ZY733QB4MX5V3J68", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "ZY733QB4MX5V3J68.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ZY733QB4MX5V3J68.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1714" + }, + "appliesTo" : [ ] + }, + "ZY733QB4MX5V3J68.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ZY733QB4MX5V3J68.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZY733QB4MX5V3J68.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ZY733QB4MX5V3J68", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZY733QB4MX5V3J68.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ZY733QB4MX5V3J68.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "593" + }, + "appliesTo" : [ ] + }, + "ZY733QB4MX5V3J68.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ZY733QB4MX5V3J68.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZY733QB4MX5V3J68.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ZY733QB4MX5V3J68", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "ZY733QB4MX5V3J68.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ZY733QB4MX5V3J68.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "66" + }, + "appliesTo" : [ ] + }, + "ZY733QB4MX5V3J68.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ZY733QB4MX5V3J68.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZY733QB4MX5V3J68.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ZY733QB4MX5V3J68", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "ZY733QB4MX5V3J68.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ZY733QB4MX5V3J68.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "584" + }, + "appliesTo" : [ ] + }, + "ZY733QB4MX5V3J68.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ZY733QB4MX5V3J68.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZY733QB4MX5V3J68.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ZY733QB4MX5V3J68", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "ZY733QB4MX5V3J68.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ZY733QB4MX5V3J68.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0658000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "9HFHK6RECZZ4W92B" : { + "9HFHK6RECZZ4W92B.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "9HFHK6RECZZ4W92B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9HFHK6RECZZ4W92B.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "9HFHK6RECZZ4W92B.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9HFHK6RECZZ4W92B.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "9HFHK6RECZZ4W92B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9HFHK6RECZZ4W92B.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "9HFHK6RECZZ4W92B.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9HFHK6RECZZ4W92B.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "9HFHK6RECZZ4W92B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9HFHK6RECZZ4W92B.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "9HFHK6RECZZ4W92B.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3271" + }, + "appliesTo" : [ ] + }, + "9HFHK6RECZZ4W92B.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "9HFHK6RECZZ4W92B.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9HFHK6RECZZ4W92B.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "9HFHK6RECZZ4W92B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9HFHK6RECZZ4W92B.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "9HFHK6RECZZ4W92B.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2950" + }, + "appliesTo" : [ ] + }, + "9HFHK6RECZZ4W92B.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "9HFHK6RECZZ4W92B.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9HFHK6RECZZ4W92B.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "9HFHK6RECZZ4W92B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9HFHK6RECZZ4W92B.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "9HFHK6RECZZ4W92B.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6444" + }, + "appliesTo" : [ ] + }, + "9HFHK6RECZZ4W92B.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "9HFHK6RECZZ4W92B.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9HFHK6RECZZ4W92B.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "9HFHK6RECZZ4W92B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9HFHK6RECZZ4W92B.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "9HFHK6RECZZ4W92B.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9HFHK6RECZZ4W92B.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "9HFHK6RECZZ4W92B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9HFHK6RECZZ4W92B.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "9HFHK6RECZZ4W92B.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6169" + }, + "appliesTo" : [ ] + }, + "9HFHK6RECZZ4W92B.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "9HFHK6RECZZ4W92B.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9HFHK6RECZZ4W92B.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "9HFHK6RECZZ4W92B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9HFHK6RECZZ4W92B.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "9HFHK6RECZZ4W92B.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10968" + }, + "appliesTo" : [ ] + }, + "9HFHK6RECZZ4W92B.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "9HFHK6RECZZ4W92B.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9HFHK6RECZZ4W92B.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "9HFHK6RECZZ4W92B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9HFHK6RECZZ4W92B.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "9HFHK6RECZZ4W92B.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9HFHK6RECZZ4W92B.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "9HFHK6RECZZ4W92B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9HFHK6RECZZ4W92B.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "9HFHK6RECZZ4W92B.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12188" + }, + "appliesTo" : [ ] + }, + "9HFHK6RECZZ4W92B.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "9HFHK6RECZZ4W92B.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9HFHK6RECZZ4W92B.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "9HFHK6RECZZ4W92B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9HFHK6RECZZ4W92B.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "9HFHK6RECZZ4W92B.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5814" + }, + "appliesTo" : [ ] + }, + "9HFHK6RECZZ4W92B.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "9HFHK6RECZZ4W92B.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9HFHK6RECZZ4W92B.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "9HFHK6RECZZ4W92B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9HFHK6RECZZ4W92B.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "9HFHK6RECZZ4W92B.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5680" + }, + "appliesTo" : [ ] + }, + "9HFHK6RECZZ4W92B.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "9HFHK6RECZZ4W92B.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "ZMYRWAJAX252Z8ZW" : { + "ZMYRWAJAX252Z8ZW.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ZMYRWAJAX252Z8ZW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ZMYRWAJAX252Z8ZW.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ZMYRWAJAX252Z8ZW.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2608" + }, + "appliesTo" : [ ] + }, + "ZMYRWAJAX252Z8ZW.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ZMYRWAJAX252Z8ZW.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZMYRWAJAX252Z8ZW.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ZMYRWAJAX252Z8ZW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ZMYRWAJAX252Z8ZW.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ZMYRWAJAX252Z8ZW.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5466" + }, + "appliesTo" : [ ] + }, + "ZMYRWAJAX252Z8ZW.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ZMYRWAJAX252Z8ZW.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZMYRWAJAX252Z8ZW.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ZMYRWAJAX252Z8ZW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ZMYRWAJAX252Z8ZW.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ZMYRWAJAX252Z8ZW.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11477" + }, + "appliesTo" : [ ] + }, + "ZMYRWAJAX252Z8ZW.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ZMYRWAJAX252Z8ZW.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZMYRWAJAX252Z8ZW.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ZMYRWAJAX252Z8ZW", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "ZMYRWAJAX252Z8ZW.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ZMYRWAJAX252Z8ZW.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7042" + }, + "appliesTo" : [ ] + }, + "ZMYRWAJAX252Z8ZW.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ZMYRWAJAX252Z8ZW.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZMYRWAJAX252Z8ZW.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ZMYRWAJAX252Z8ZW", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "ZMYRWAJAX252Z8ZW.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ZMYRWAJAX252Z8ZW.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZMYRWAJAX252Z8ZW.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ZMYRWAJAX252Z8ZW", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "ZMYRWAJAX252Z8ZW.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ZMYRWAJAX252Z8ZW.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3100000000" + }, + "appliesTo" : [ ] + }, + "ZMYRWAJAX252Z8ZW.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ZMYRWAJAX252Z8ZW.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4063" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZMYRWAJAX252Z8ZW.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ZMYRWAJAX252Z8ZW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ZMYRWAJAX252Z8ZW.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ZMYRWAJAX252Z8ZW.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZMYRWAJAX252Z8ZW.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ZMYRWAJAX252Z8ZW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZMYRWAJAX252Z8ZW.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ZMYRWAJAX252Z8ZW.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2547" + }, + "appliesTo" : [ ] + }, + "ZMYRWAJAX252Z8ZW.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ZMYRWAJAX252Z8ZW.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZMYRWAJAX252Z8ZW.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ZMYRWAJAX252Z8ZW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZMYRWAJAX252Z8ZW.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ZMYRWAJAX252Z8ZW.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZMYRWAJAX252Z8ZW.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ZMYRWAJAX252Z8ZW", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "ZMYRWAJAX252Z8ZW.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ZMYRWAJAX252Z8ZW.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15093" + }, + "appliesTo" : [ ] + }, + "ZMYRWAJAX252Z8ZW.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ZMYRWAJAX252Z8ZW.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZMYRWAJAX252Z8ZW.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ZMYRWAJAX252Z8ZW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZMYRWAJAX252Z8ZW.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ZMYRWAJAX252Z8ZW.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ZMYRWAJAX252Z8ZW.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ZMYRWAJAX252Z8ZW.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6130" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "MJKCR5ZSNFXJ35EA" : { + "MJKCR5ZSNFXJ35EA.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "MJKCR5ZSNFXJ35EA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MJKCR5ZSNFXJ35EA.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "MJKCR5ZSNFXJ35EA.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "MJKCR5ZSNFXJ35EA.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "MJKCR5ZSNFXJ35EA.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10833" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MJKCR5ZSNFXJ35EA.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "MJKCR5ZSNFXJ35EA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MJKCR5ZSNFXJ35EA.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "MJKCR5ZSNFXJ35EA.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10307" + }, + "appliesTo" : [ ] + }, + "MJKCR5ZSNFXJ35EA.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "MJKCR5ZSNFXJ35EA.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MJKCR5ZSNFXJ35EA.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "MJKCR5ZSNFXJ35EA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MJKCR5ZSNFXJ35EA.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "MJKCR5ZSNFXJ35EA.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MJKCR5ZSNFXJ35EA.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "MJKCR5ZSNFXJ35EA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MJKCR5ZSNFXJ35EA.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "MJKCR5ZSNFXJ35EA.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MJKCR5ZSNFXJ35EA.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "MJKCR5ZSNFXJ35EA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MJKCR5ZSNFXJ35EA.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "MJKCR5ZSNFXJ35EA.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26932" + }, + "appliesTo" : [ ] + }, + "MJKCR5ZSNFXJ35EA.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "MJKCR5ZSNFXJ35EA.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MJKCR5ZSNFXJ35EA.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "MJKCR5ZSNFXJ35EA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MJKCR5ZSNFXJ35EA.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "MJKCR5ZSNFXJ35EA.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5200000000" + }, + "appliesTo" : [ ] + }, + "MJKCR5ZSNFXJ35EA.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "MJKCR5ZSNFXJ35EA.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13674" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MJKCR5ZSNFXJ35EA.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "MJKCR5ZSNFXJ35EA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MJKCR5ZSNFXJ35EA.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "MJKCR5ZSNFXJ35EA.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14201" + }, + "appliesTo" : [ ] + }, + "MJKCR5ZSNFXJ35EA.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "MJKCR5ZSNFXJ35EA.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MJKCR5ZSNFXJ35EA.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "MJKCR5ZSNFXJ35EA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MJKCR5ZSNFXJ35EA.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "MJKCR5ZSNFXJ35EA.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5457" + }, + "appliesTo" : [ ] + }, + "MJKCR5ZSNFXJ35EA.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "MJKCR5ZSNFXJ35EA.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MJKCR5ZSNFXJ35EA.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "MJKCR5ZSNFXJ35EA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MJKCR5ZSNFXJ35EA.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "MJKCR5ZSNFXJ35EA.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MJKCR5ZSNFXJ35EA.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "MJKCR5ZSNFXJ35EA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MJKCR5ZSNFXJ35EA.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "MJKCR5ZSNFXJ35EA.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28243" + }, + "appliesTo" : [ ] + }, + "MJKCR5ZSNFXJ35EA.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "MJKCR5ZSNFXJ35EA.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MJKCR5ZSNFXJ35EA.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "MJKCR5ZSNFXJ35EA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MJKCR5ZSNFXJ35EA.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "MJKCR5ZSNFXJ35EA.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5189" + }, + "appliesTo" : [ ] + }, + "MJKCR5ZSNFXJ35EA.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "MJKCR5ZSNFXJ35EA.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MJKCR5ZSNFXJ35EA.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "MJKCR5ZSNFXJ35EA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MJKCR5ZSNFXJ35EA.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "MJKCR5ZSNFXJ35EA.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "NCQEUP5F7MP2C7VT" : { + "NCQEUP5F7MP2C7VT.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "NCQEUP5F7MP2C7VT", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "NCQEUP5F7MP2C7VT.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "NCQEUP5F7MP2C7VT.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21728" + }, + "appliesTo" : [ ] + }, + "NCQEUP5F7MP2C7VT.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "NCQEUP5F7MP2C7VT.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "NCQEUP5F7MP2C7VT.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "NCQEUP5F7MP2C7VT", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "NCQEUP5F7MP2C7VT.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "NCQEUP5F7MP2C7VT.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11213" + }, + "appliesTo" : [ ] + }, + "NCQEUP5F7MP2C7VT.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "NCQEUP5F7MP2C7VT.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "NCQEUP5F7MP2C7VT.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "NCQEUP5F7MP2C7VT", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "NCQEUP5F7MP2C7VT.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "NCQEUP5F7MP2C7VT.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "42860" + }, + "appliesTo" : [ ] + }, + "NCQEUP5F7MP2C7VT.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "NCQEUP5F7MP2C7VT.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "NCQEUP5F7MP2C7VT.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "NCQEUP5F7MP2C7VT", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "NCQEUP5F7MP2C7VT.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "NCQEUP5F7MP2C7VT.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16924" + }, + "appliesTo" : [ ] + }, + "NCQEUP5F7MP2C7VT.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "NCQEUP5F7MP2C7VT.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "NCQEUP5F7MP2C7VT.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "NCQEUP5F7MP2C7VT", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "NCQEUP5F7MP2C7VT.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "NCQEUP5F7MP2C7VT.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "PQQ53JZ8S758UUWS" : { + "PQQ53JZ8S758UUWS.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "PQQ53JZ8S758UUWS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PQQ53JZ8S758UUWS.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "PQQ53JZ8S758UUWS.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.5730000000" + }, + "appliesTo" : [ ] + }, + "PQQ53JZ8S758UUWS.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "PQQ53JZ8S758UUWS.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "75100" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PQQ53JZ8S758UUWS.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "PQQ53JZ8S758UUWS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PQQ53JZ8S758UUWS.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "PQQ53JZ8S758UUWS.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.2710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "PQQ53JZ8S758UUWS.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "PQQ53JZ8S758UUWS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PQQ53JZ8S758UUWS.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "PQQ53JZ8S758UUWS.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "17.5960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "PQQ53JZ8S758UUWS.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "PQQ53JZ8S758UUWS", + "effectiveDate" : "2016-06-30T23:59:59Z", + "priceDimensions" : { + "PQQ53JZ8S758UUWS.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "PQQ53JZ8S758UUWS.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.2560000000" + }, + "appliesTo" : [ ] + }, + "PQQ53JZ8S758UUWS.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "PQQ53JZ8S758UUWS.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "164408" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PQQ53JZ8S758UUWS.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "PQQ53JZ8S758UUWS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PQQ53JZ8S758UUWS.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "PQQ53JZ8S758UUWS.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "165793" + }, + "appliesTo" : [ ] + }, + "PQQ53JZ8S758UUWS.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "PQQ53JZ8S758UUWS.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.3090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PQQ53JZ8S758UUWS.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "PQQ53JZ8S758UUWS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PQQ53JZ8S758UUWS.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "PQQ53JZ8S758UUWS.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "148623" + }, + "appliesTo" : [ ] + }, + "PQQ53JZ8S758UUWS.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "PQQ53JZ8S758UUWS.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PQQ53JZ8S758UUWS.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "PQQ53JZ8S758UUWS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PQQ53JZ8S758UUWS.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "PQQ53JZ8S758UUWS.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.3400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "PQQ53JZ8S758UUWS.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "PQQ53JZ8S758UUWS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PQQ53JZ8S758UUWS.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "PQQ53JZ8S758UUWS.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.9830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "PQQ53JZ8S758UUWS.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "PQQ53JZ8S758UUWS", + "effectiveDate" : "2016-06-30T23:59:59Z", + "priceDimensions" : { + "PQQ53JZ8S758UUWS.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "PQQ53JZ8S758UUWS.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "PQQ53JZ8S758UUWS.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "PQQ53JZ8S758UUWS.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "142027" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PQQ53JZ8S758UUWS.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "PQQ53JZ8S758UUWS", + "effectiveDate" : "2016-06-30T23:59:59Z", + "priceDimensions" : { + "PQQ53JZ8S758UUWS.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "PQQ53JZ8S758UUWS.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "PQQ53JZ8S758UUWS.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "PQQ53JZ8S758UUWS.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "322555" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PQQ53JZ8S758UUWS.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "PQQ53JZ8S758UUWS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PQQ53JZ8S758UUWS.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "PQQ53JZ8S758UUWS.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "329187" + }, + "appliesTo" : [ ] + }, + "PQQ53JZ8S758UUWS.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "PQQ53JZ8S758UUWS.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PQQ53JZ8S758UUWS.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "PQQ53JZ8S758UUWS", + "effectiveDate" : "2016-06-30T23:59:59Z", + "priceDimensions" : { + "PQQ53JZ8S758UUWS.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "PQQ53JZ8S758UUWS.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "71699" + }, + "appliesTo" : [ ] + }, + "PQQ53JZ8S758UUWS.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "PQQ53JZ8S758UUWS.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.1850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "MZHHAF4YCR5JMQ9C" : { + "MZHHAF4YCR5JMQ9C.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "MZHHAF4YCR5JMQ9C", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "MZHHAF4YCR5JMQ9C.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "MZHHAF4YCR5JMQ9C.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2720000000" + }, + "appliesTo" : [ ] + }, + "MZHHAF4YCR5JMQ9C.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "MZHHAF4YCR5JMQ9C.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "36954" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MZHHAF4YCR5JMQ9C.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "MZHHAF4YCR5JMQ9C", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "MZHHAF4YCR5JMQ9C.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "MZHHAF4YCR5JMQ9C.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "MZHHAF4YCR5JMQ9C.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "MZHHAF4YCR5JMQ9C.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "55716" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MZHHAF4YCR5JMQ9C.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "MZHHAF4YCR5JMQ9C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MZHHAF4YCR5JMQ9C.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "MZHHAF4YCR5JMQ9C.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "58405" + }, + "appliesTo" : [ ] + }, + "MZHHAF4YCR5JMQ9C.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "MZHHAF4YCR5JMQ9C.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MZHHAF4YCR5JMQ9C.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "MZHHAF4YCR5JMQ9C", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "MZHHAF4YCR5JMQ9C.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "MZHHAF4YCR5JMQ9C.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "108395" + }, + "appliesTo" : [ ] + }, + "MZHHAF4YCR5JMQ9C.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "MZHHAF4YCR5JMQ9C.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MZHHAF4YCR5JMQ9C.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "MZHHAF4YCR5JMQ9C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MZHHAF4YCR5JMQ9C.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "MZHHAF4YCR5JMQ9C.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3500000000" + }, + "appliesTo" : [ ] + }, + "MZHHAF4YCR5JMQ9C.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "MZHHAF4YCR5JMQ9C.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29347" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MZHHAF4YCR5JMQ9C.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "MZHHAF4YCR5JMQ9C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MZHHAF4YCR5JMQ9C.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "MZHHAF4YCR5JMQ9C.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.7830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MZHHAF4YCR5JMQ9C.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "MZHHAF4YCR5JMQ9C", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "MZHHAF4YCR5JMQ9C.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "MZHHAF4YCR5JMQ9C.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MZHHAF4YCR5JMQ9C.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "MZHHAF4YCR5JMQ9C", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "MZHHAF4YCR5JMQ9C.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "MZHHAF4YCR5JMQ9C.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "99377" + }, + "appliesTo" : [ ] + }, + "MZHHAF4YCR5JMQ9C.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "MZHHAF4YCR5JMQ9C.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MZHHAF4YCR5JMQ9C.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "MZHHAF4YCR5JMQ9C", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "MZHHAF4YCR5JMQ9C.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "MZHHAF4YCR5JMQ9C.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "163439" + }, + "appliesTo" : [ ] + }, + "MZHHAF4YCR5JMQ9C.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "MZHHAF4YCR5JMQ9C.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MZHHAF4YCR5JMQ9C.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "MZHHAF4YCR5JMQ9C", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "MZHHAF4YCR5JMQ9C.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "MZHHAF4YCR5JMQ9C.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MZHHAF4YCR5JMQ9C.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "MZHHAF4YCR5JMQ9C", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "MZHHAF4YCR5JMQ9C.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "MZHHAF4YCR5JMQ9C.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "143615" + }, + "appliesTo" : [ ] + }, + "MZHHAF4YCR5JMQ9C.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "MZHHAF4YCR5JMQ9C.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "HD7DSDMNNNQAM7PK" : { + "HD7DSDMNNNQAM7PK.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "HD7DSDMNNNQAM7PK", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "HD7DSDMNNNQAM7PK.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "HD7DSDMNNNQAM7PK.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7490000000" + }, + "appliesTo" : [ ] + }, + "HD7DSDMNNNQAM7PK.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "HD7DSDMNNNQAM7PK.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24079" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HD7DSDMNNNQAM7PK.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "HD7DSDMNNNQAM7PK", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "HD7DSDMNNNQAM7PK.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "HD7DSDMNNNQAM7PK.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "HD7DSDMNNNQAM7PK.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "HD7DSDMNNNQAM7PK.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47712" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HD7DSDMNNNQAM7PK.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "HD7DSDMNNNQAM7PK", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "HD7DSDMNNNQAM7PK.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "HD7DSDMNNNQAM7PK.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "119423" + }, + "appliesTo" : [ ] + }, + "HD7DSDMNNNQAM7PK.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "HD7DSDMNNNQAM7PK.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HD7DSDMNNNQAM7PK.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "HD7DSDMNNNQAM7PK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HD7DSDMNNNQAM7PK.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "HD7DSDMNNNQAM7PK.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "64312" + }, + "appliesTo" : [ ] + }, + "HD7DSDMNNNQAM7PK.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "HD7DSDMNNNQAM7PK.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4472000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HD7DSDMNNNQAM7PK.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "HD7DSDMNNNQAM7PK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HD7DSDMNNNQAM7PK.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "HD7DSDMNNNQAM7PK.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "61054" + }, + "appliesTo" : [ ] + }, + "HD7DSDMNNNQAM7PK.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "HD7DSDMNNNQAM7PK.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HD7DSDMNNNQAM7PK.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "HD7DSDMNNNQAM7PK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HD7DSDMNNNQAM7PK.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "HD7DSDMNNNQAM7PK.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.0352000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "HD7DSDMNNNQAM7PK.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "HD7DSDMNNNQAM7PK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HD7DSDMNNNQAM7PK.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "HD7DSDMNNNQAM7PK.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25789" + }, + "appliesTo" : [ ] + }, + "HD7DSDMNNNQAM7PK.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "HD7DSDMNNNQAM7PK.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HD7DSDMNNNQAM7PK.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "HD7DSDMNNNQAM7PK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HD7DSDMNNNQAM7PK.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "HD7DSDMNNNQAM7PK.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.7757000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "HD7DSDMNNNQAM7PK.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "HD7DSDMNNNQAM7PK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HD7DSDMNNNQAM7PK.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "HD7DSDMNNNQAM7PK.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.0504000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "HD7DSDMNNNQAM7PK.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "HD7DSDMNNNQAM7PK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HD7DSDMNNNQAM7PK.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "HD7DSDMNNNQAM7PK.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "HD7DSDMNNNQAM7PK.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "HD7DSDMNNNQAM7PK.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "127600" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "HD7DSDMNNNQAM7PK.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "HD7DSDMNNNQAM7PK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HD7DSDMNNNQAM7PK.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "HD7DSDMNNNQAM7PK.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "51063" + }, + "appliesTo" : [ ] + }, + "HD7DSDMNNNQAM7PK.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "HD7DSDMNNNQAM7PK.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "HD7DSDMNNNQAM7PK.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "HD7DSDMNNNQAM7PK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HD7DSDMNNNQAM7PK.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "HD7DSDMNNNQAM7PK.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.6320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "9DK6BK45W6CJ9A5X" : { + "9DK6BK45W6CJ9A5X.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "9DK6BK45W6CJ9A5X", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9DK6BK45W6CJ9A5X.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "9DK6BK45W6CJ9A5X.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "326" + }, + "appliesTo" : [ ] + }, + "9DK6BK45W6CJ9A5X.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "9DK6BK45W6CJ9A5X.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9DK6BK45W6CJ9A5X.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "9DK6BK45W6CJ9A5X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9DK6BK45W6CJ9A5X.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "9DK6BK45W6CJ9A5X.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1150" + }, + "appliesTo" : [ ] + }, + "9DK6BK45W6CJ9A5X.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "9DK6BK45W6CJ9A5X.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9DK6BK45W6CJ9A5X.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "9DK6BK45W6CJ9A5X", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9DK6BK45W6CJ9A5X.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "9DK6BK45W6CJ9A5X.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "9DK6BK45W6CJ9A5X.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "9DK6BK45W6CJ9A5X.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1057" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9DK6BK45W6CJ9A5X.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "9DK6BK45W6CJ9A5X", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9DK6BK45W6CJ9A5X.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "9DK6BK45W6CJ9A5X.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "9DK6BK45W6CJ9A5X.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "9DK6BK45W6CJ9A5X.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2503" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9DK6BK45W6CJ9A5X.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "9DK6BK45W6CJ9A5X", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "9DK6BK45W6CJ9A5X.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "9DK6BK45W6CJ9A5X.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "880" + }, + "appliesTo" : [ ] + }, + "9DK6BK45W6CJ9A5X.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "9DK6BK45W6CJ9A5X.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9DK6BK45W6CJ9A5X.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "9DK6BK45W6CJ9A5X", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9DK6BK45W6CJ9A5X.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "9DK6BK45W6CJ9A5X.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "508" + }, + "appliesTo" : [ ] + }, + "9DK6BK45W6CJ9A5X.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "9DK6BK45W6CJ9A5X.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9DK6BK45W6CJ9A5X.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "9DK6BK45W6CJ9A5X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9DK6BK45W6CJ9A5X.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "9DK6BK45W6CJ9A5X.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9DK6BK45W6CJ9A5X.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "9DK6BK45W6CJ9A5X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9DK6BK45W6CJ9A5X.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "9DK6BK45W6CJ9A5X.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0960000000" + }, + "appliesTo" : [ ] + }, + "9DK6BK45W6CJ9A5X.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "9DK6BK45W6CJ9A5X.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "318" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9DK6BK45W6CJ9A5X.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "9DK6BK45W6CJ9A5X", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "9DK6BK45W6CJ9A5X.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "9DK6BK45W6CJ9A5X.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9DK6BK45W6CJ9A5X.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "9DK6BK45W6CJ9A5X", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "9DK6BK45W6CJ9A5X.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "9DK6BK45W6CJ9A5X.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "9DK6BK45W6CJ9A5X.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "9DK6BK45W6CJ9A5X.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3008" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9DK6BK45W6CJ9A5X.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "9DK6BK45W6CJ9A5X", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "9DK6BK45W6CJ9A5X.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "9DK6BK45W6CJ9A5X.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "U69YCUGUWRE45CVF" : { + "U69YCUGUWRE45CVF.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "U69YCUGUWRE45CVF", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "U69YCUGUWRE45CVF.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "U69YCUGUWRE45CVF.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "U69YCUGUWRE45CVF.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "U69YCUGUWRE45CVF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U69YCUGUWRE45CVF.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "U69YCUGUWRE45CVF.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2245" + }, + "appliesTo" : [ ] + }, + "U69YCUGUWRE45CVF.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "U69YCUGUWRE45CVF.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "U69YCUGUWRE45CVF.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "U69YCUGUWRE45CVF", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "U69YCUGUWRE45CVF.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "U69YCUGUWRE45CVF.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "U69YCUGUWRE45CVF.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "U69YCUGUWRE45CVF.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10328" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "U69YCUGUWRE45CVF.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "U69YCUGUWRE45CVF", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "U69YCUGUWRE45CVF.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "U69YCUGUWRE45CVF.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "U69YCUGUWRE45CVF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "U69YCUGUWRE45CVF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "U69YCUGUWRE45CVF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "U69YCUGUWRE45CVF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2537" + }, + "appliesTo" : [ ] + }, + "U69YCUGUWRE45CVF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "U69YCUGUWRE45CVF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "U69YCUGUWRE45CVF.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "U69YCUGUWRE45CVF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U69YCUGUWRE45CVF.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "U69YCUGUWRE45CVF.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "U69YCUGUWRE45CVF.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "U69YCUGUWRE45CVF.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4400" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "U69YCUGUWRE45CVF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "U69YCUGUWRE45CVF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "U69YCUGUWRE45CVF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "U69YCUGUWRE45CVF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8151" + }, + "appliesTo" : [ ] + }, + "U69YCUGUWRE45CVF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "U69YCUGUWRE45CVF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "U69YCUGUWRE45CVF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "U69YCUGUWRE45CVF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "U69YCUGUWRE45CVF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "U69YCUGUWRE45CVF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3825" + }, + "appliesTo" : [ ] + }, + "U69YCUGUWRE45CVF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "U69YCUGUWRE45CVF.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "U69YCUGUWRE45CVF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "U69YCUGUWRE45CVF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "U69YCUGUWRE45CVF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "U69YCUGUWRE45CVF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6938" + }, + "appliesTo" : [ ] + }, + "U69YCUGUWRE45CVF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "U69YCUGUWRE45CVF.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "U69YCUGUWRE45CVF.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "U69YCUGUWRE45CVF", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "U69YCUGUWRE45CVF.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "U69YCUGUWRE45CVF.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6850" + }, + "appliesTo" : [ ] + }, + "U69YCUGUWRE45CVF.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "U69YCUGUWRE45CVF.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "U69YCUGUWRE45CVF.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "U69YCUGUWRE45CVF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U69YCUGUWRE45CVF.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "U69YCUGUWRE45CVF.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "2EKFX2CKSTAYWT4G" : { + "2EKFX2CKSTAYWT4G.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "2EKFX2CKSTAYWT4G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2EKFX2CKSTAYWT4G.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "2EKFX2CKSTAYWT4G.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2EKFX2CKSTAYWT4G.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "2EKFX2CKSTAYWT4G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2EKFX2CKSTAYWT4G.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "2EKFX2CKSTAYWT4G.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9010000000" + }, + "appliesTo" : [ ] + }, + "2EKFX2CKSTAYWT4G.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "2EKFX2CKSTAYWT4G.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7890" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2EKFX2CKSTAYWT4G.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "2EKFX2CKSTAYWT4G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2EKFX2CKSTAYWT4G.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "2EKFX2CKSTAYWT4G.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46213" + }, + "appliesTo" : [ ] + }, + "2EKFX2CKSTAYWT4G.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "2EKFX2CKSTAYWT4G.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2EKFX2CKSTAYWT4G.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "2EKFX2CKSTAYWT4G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2EKFX2CKSTAYWT4G.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "2EKFX2CKSTAYWT4G.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2EKFX2CKSTAYWT4G.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "2EKFX2CKSTAYWT4G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2EKFX2CKSTAYWT4G.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "2EKFX2CKSTAYWT4G.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7823" + }, + "appliesTo" : [ ] + }, + "2EKFX2CKSTAYWT4G.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "2EKFX2CKSTAYWT4G.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2EKFX2CKSTAYWT4G.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "2EKFX2CKSTAYWT4G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2EKFX2CKSTAYWT4G.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "2EKFX2CKSTAYWT4G.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15759" + }, + "appliesTo" : [ ] + }, + "2EKFX2CKSTAYWT4G.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "2EKFX2CKSTAYWT4G.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2EKFX2CKSTAYWT4G.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "2EKFX2CKSTAYWT4G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2EKFX2CKSTAYWT4G.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "2EKFX2CKSTAYWT4G.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2EKFX2CKSTAYWT4G.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "2EKFX2CKSTAYWT4G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2EKFX2CKSTAYWT4G.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "2EKFX2CKSTAYWT4G.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "45885" + }, + "appliesTo" : [ ] + }, + "2EKFX2CKSTAYWT4G.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "2EKFX2CKSTAYWT4G.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2EKFX2CKSTAYWT4G.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "2EKFX2CKSTAYWT4G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2EKFX2CKSTAYWT4G.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "2EKFX2CKSTAYWT4G.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2EKFX2CKSTAYWT4G.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "2EKFX2CKSTAYWT4G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2EKFX2CKSTAYWT4G.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "2EKFX2CKSTAYWT4G.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "2EKFX2CKSTAYWT4G.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "2EKFX2CKSTAYWT4G.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15627" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2EKFX2CKSTAYWT4G.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "2EKFX2CKSTAYWT4G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2EKFX2CKSTAYWT4G.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "2EKFX2CKSTAYWT4G.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8750000000" + }, + "appliesTo" : [ ] + }, + "2EKFX2CKSTAYWT4G.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "2EKFX2CKSTAYWT4G.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22994" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2EKFX2CKSTAYWT4G.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "2EKFX2CKSTAYWT4G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2EKFX2CKSTAYWT4G.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "2EKFX2CKSTAYWT4G.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8800000000" + }, + "appliesTo" : [ ] + }, + "2EKFX2CKSTAYWT4G.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "2EKFX2CKSTAYWT4G.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23126" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "ZDQ8JPG9VUPFXHXJ" : { + "ZDQ8JPG9VUPFXHXJ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ZDQ8JPG9VUPFXHXJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZDQ8JPG9VUPFXHXJ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ZDQ8JPG9VUPFXHXJ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "67522" + }, + "appliesTo" : [ ] + }, + "ZDQ8JPG9VUPFXHXJ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ZDQ8JPG9VUPFXHXJ.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZDQ8JPG9VUPFXHXJ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ZDQ8JPG9VUPFXHXJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZDQ8JPG9VUPFXHXJ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ZDQ8JPG9VUPFXHXJ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZDQ8JPG9VUPFXHXJ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ZDQ8JPG9VUPFXHXJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZDQ8JPG9VUPFXHXJ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ZDQ8JPG9VUPFXHXJ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "98810" + }, + "appliesTo" : [ ] + }, + "ZDQ8JPG9VUPFXHXJ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ZDQ8JPG9VUPFXHXJ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZDQ8JPG9VUPFXHXJ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ZDQ8JPG9VUPFXHXJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZDQ8JPG9VUPFXHXJ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ZDQ8JPG9VUPFXHXJ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "52541" + }, + "appliesTo" : [ ] + }, + "ZDQ8JPG9VUPFXHXJ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ZDQ8JPG9VUPFXHXJ.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZDQ8JPG9VUPFXHXJ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ZDQ8JPG9VUPFXHXJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZDQ8JPG9VUPFXHXJ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ZDQ8JPG9VUPFXHXJ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "60370" + }, + "appliesTo" : [ ] + }, + "ZDQ8JPG9VUPFXHXJ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ZDQ8JPG9VUPFXHXJ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZDQ8JPG9VUPFXHXJ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ZDQ8JPG9VUPFXHXJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZDQ8JPG9VUPFXHXJ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ZDQ8JPG9VUPFXHXJ.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.2560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZDQ8JPG9VUPFXHXJ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ZDQ8JPG9VUPFXHXJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZDQ8JPG9VUPFXHXJ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ZDQ8JPG9VUPFXHXJ.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.4900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZDQ8JPG9VUPFXHXJ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ZDQ8JPG9VUPFXHXJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZDQ8JPG9VUPFXHXJ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ZDQ8JPG9VUPFXHXJ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39623" + }, + "appliesTo" : [ ] + }, + "ZDQ8JPG9VUPFXHXJ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ZDQ8JPG9VUPFXHXJ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZDQ8JPG9VUPFXHXJ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ZDQ8JPG9VUPFXHXJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZDQ8JPG9VUPFXHXJ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ZDQ8JPG9VUPFXHXJ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "118329" + }, + "appliesTo" : [ ] + }, + "ZDQ8JPG9VUPFXHXJ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ZDQ8JPG9VUPFXHXJ.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZDQ8JPG9VUPFXHXJ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "ZDQ8JPG9VUPFXHXJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZDQ8JPG9VUPFXHXJ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "ZDQ8JPG9VUPFXHXJ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.3230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZDQ8JPG9VUPFXHXJ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ZDQ8JPG9VUPFXHXJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZDQ8JPG9VUPFXHXJ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ZDQ8JPG9VUPFXHXJ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "77607" + }, + "appliesTo" : [ ] + }, + "ZDQ8JPG9VUPFXHXJ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ZDQ8JPG9VUPFXHXJ.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZDQ8JPG9VUPFXHXJ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ZDQ8JPG9VUPFXHXJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZDQ8JPG9VUPFXHXJ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ZDQ8JPG9VUPFXHXJ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9290000000" + }, + "appliesTo" : [ ] + }, + "ZDQ8JPG9VUPFXHXJ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ZDQ8JPG9VUPFXHXJ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34478" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "3A8W7GXJJKZB5V45" : { + "3A8W7GXJJKZB5V45.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "3A8W7GXJJKZB5V45", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "3A8W7GXJJKZB5V45.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "3A8W7GXJJKZB5V45.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1485" + }, + "appliesTo" : [ ] + }, + "3A8W7GXJJKZB5V45.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "3A8W7GXJJKZB5V45.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3A8W7GXJJKZB5V45.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "3A8W7GXJJKZB5V45", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "3A8W7GXJJKZB5V45.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "3A8W7GXJJKZB5V45.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1110000000" + }, + "appliesTo" : [ ] + }, + "3A8W7GXJJKZB5V45.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "3A8W7GXJJKZB5V45.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "542" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3A8W7GXJJKZB5V45.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "3A8W7GXJJKZB5V45", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3A8W7GXJJKZB5V45.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "3A8W7GXJJKZB5V45.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3329" + }, + "appliesTo" : [ ] + }, + "3A8W7GXJJKZB5V45.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "3A8W7GXJJKZB5V45.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3A8W7GXJJKZB5V45.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "3A8W7GXJJKZB5V45", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3A8W7GXJJKZB5V45.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "3A8W7GXJJKZB5V45.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "825" + }, + "appliesTo" : [ ] + }, + "3A8W7GXJJKZB5V45.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "3A8W7GXJJKZB5V45.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3A8W7GXJJKZB5V45.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "3A8W7GXJJKZB5V45", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3A8W7GXJJKZB5V45.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "3A8W7GXJJKZB5V45.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "9MCJXY6ZTFBSRNZB" : { + "9MCJXY6ZTFBSRNZB.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "9MCJXY6ZTFBSRNZB", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9MCJXY6ZTFBSRNZB.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "9MCJXY6ZTFBSRNZB.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "9MCJXY6ZTFBSRNZB.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "9MCJXY6ZTFBSRNZB.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19339" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9MCJXY6ZTFBSRNZB.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "9MCJXY6ZTFBSRNZB", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9MCJXY6ZTFBSRNZB.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "9MCJXY6ZTFBSRNZB.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5000" + }, + "appliesTo" : [ ] + }, + "9MCJXY6ZTFBSRNZB.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "9MCJXY6ZTFBSRNZB.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9MCJXY6ZTFBSRNZB.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "9MCJXY6ZTFBSRNZB", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "9MCJXY6ZTFBSRNZB.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "9MCJXY6ZTFBSRNZB.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4910000000" + }, + "appliesTo" : [ ] + }, + "9MCJXY6ZTFBSRNZB.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "9MCJXY6ZTFBSRNZB.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7670" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9MCJXY6ZTFBSRNZB.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "9MCJXY6ZTFBSRNZB", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9MCJXY6ZTFBSRNZB.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "9MCJXY6ZTFBSRNZB.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9115" + }, + "appliesTo" : [ ] + }, + "9MCJXY6ZTFBSRNZB.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "9MCJXY6ZTFBSRNZB.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9MCJXY6ZTFBSRNZB.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "9MCJXY6ZTFBSRNZB", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "9MCJXY6ZTFBSRNZB.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "9MCJXY6ZTFBSRNZB.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "CXWQTSDJMF3AP864" : { + "CXWQTSDJMF3AP864.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "CXWQTSDJMF3AP864", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "CXWQTSDJMF3AP864.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "CXWQTSDJMF3AP864.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5119" + }, + "appliesTo" : [ ] + }, + "CXWQTSDJMF3AP864.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "CXWQTSDJMF3AP864.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CXWQTSDJMF3AP864.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "CXWQTSDJMF3AP864", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CXWQTSDJMF3AP864.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "CXWQTSDJMF3AP864.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8020000000" + }, + "appliesTo" : [ ] + }, + "CXWQTSDJMF3AP864.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "CXWQTSDJMF3AP864.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5887" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CXWQTSDJMF3AP864.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "CXWQTSDJMF3AP864", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CXWQTSDJMF3AP864.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "CXWQTSDJMF3AP864.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5412000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CXWQTSDJMF3AP864.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "CXWQTSDJMF3AP864", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CXWQTSDJMF3AP864.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "CXWQTSDJMF3AP864.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12677" + }, + "appliesTo" : [ ] + }, + "CXWQTSDJMF3AP864.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "CXWQTSDJMF3AP864.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CXWQTSDJMF3AP864.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "CXWQTSDJMF3AP864", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CXWQTSDJMF3AP864.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "CXWQTSDJMF3AP864.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0358000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CXWQTSDJMF3AP864.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "CXWQTSDJMF3AP864", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "CXWQTSDJMF3AP864.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "CXWQTSDJMF3AP864.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5490000000" + }, + "appliesTo" : [ ] + }, + "CXWQTSDJMF3AP864.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "CXWQTSDJMF3AP864.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11021" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CXWQTSDJMF3AP864.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "CXWQTSDJMF3AP864", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CXWQTSDJMF3AP864.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "CXWQTSDJMF3AP864.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28258" + }, + "appliesTo" : [ ] + }, + "CXWQTSDJMF3AP864.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "CXWQTSDJMF3AP864.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CXWQTSDJMF3AP864.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "CXWQTSDJMF3AP864", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CXWQTSDJMF3AP864.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "CXWQTSDJMF3AP864.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12674" + }, + "appliesTo" : [ ] + }, + "CXWQTSDJMF3AP864.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "CXWQTSDJMF3AP864.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6123000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CXWQTSDJMF3AP864.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "CXWQTSDJMF3AP864", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "CXWQTSDJMF3AP864.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "CXWQTSDJMF3AP864.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CXWQTSDJMF3AP864.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "CXWQTSDJMF3AP864", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "CXWQTSDJMF3AP864.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "CXWQTSDJMF3AP864.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24136" + }, + "appliesTo" : [ ] + }, + "CXWQTSDJMF3AP864.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "CXWQTSDJMF3AP864.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CXWQTSDJMF3AP864.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "CXWQTSDJMF3AP864", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "CXWQTSDJMF3AP864.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "CXWQTSDJMF3AP864.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "CXWQTSDJMF3AP864.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "CXWQTSDJMF3AP864.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11172" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CXWQTSDJMF3AP864.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "CXWQTSDJMF3AP864", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CXWQTSDJMF3AP864.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "CXWQTSDJMF3AP864.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1717000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "MGX8XKF9UWBS8FMV" : { + "MGX8XKF9UWBS8FMV.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "MGX8XKF9UWBS8FMV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MGX8XKF9UWBS8FMV.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "MGX8XKF9UWBS8FMV.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3128000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MGX8XKF9UWBS8FMV.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "MGX8XKF9UWBS8FMV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MGX8XKF9UWBS8FMV.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "MGX8XKF9UWBS8FMV.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9686" + }, + "appliesTo" : [ ] + }, + "MGX8XKF9UWBS8FMV.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "MGX8XKF9UWBS8FMV.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0986000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MGX8XKF9UWBS8FMV.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "MGX8XKF9UWBS8FMV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MGX8XKF9UWBS8FMV.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "MGX8XKF9UWBS8FMV.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0154000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MGX8XKF9UWBS8FMV.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "MGX8XKF9UWBS8FMV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MGX8XKF9UWBS8FMV.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "MGX8XKF9UWBS8FMV.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18929" + }, + "appliesTo" : [ ] + }, + "MGX8XKF9UWBS8FMV.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "MGX8XKF9UWBS8FMV.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MGX8XKF9UWBS8FMV.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "MGX8XKF9UWBS8FMV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MGX8XKF9UWBS8FMV.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "MGX8XKF9UWBS8FMV.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8445" + }, + "appliesTo" : [ ] + }, + "MGX8XKF9UWBS8FMV.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "MGX8XKF9UWBS8FMV.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MGX8XKF9UWBS8FMV.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "MGX8XKF9UWBS8FMV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MGX8XKF9UWBS8FMV.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "MGX8XKF9UWBS8FMV.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38604" + }, + "appliesTo" : [ ] + }, + "MGX8XKF9UWBS8FMV.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "MGX8XKF9UWBS8FMV.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MGX8XKF9UWBS8FMV.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "MGX8XKF9UWBS8FMV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MGX8XKF9UWBS8FMV.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "MGX8XKF9UWBS8FMV.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4154000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MGX8XKF9UWBS8FMV.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "MGX8XKF9UWBS8FMV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MGX8XKF9UWBS8FMV.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "MGX8XKF9UWBS8FMV.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32314" + }, + "appliesTo" : [ ] + }, + "MGX8XKF9UWBS8FMV.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "MGX8XKF9UWBS8FMV.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MGX8XKF9UWBS8FMV.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "MGX8XKF9UWBS8FMV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MGX8XKF9UWBS8FMV.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "MGX8XKF9UWBS8FMV.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6228000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MGX8XKF9UWBS8FMV.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "MGX8XKF9UWBS8FMV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MGX8XKF9UWBS8FMV.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "MGX8XKF9UWBS8FMV.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16498" + }, + "appliesTo" : [ ] + }, + "MGX8XKF9UWBS8FMV.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "MGX8XKF9UWBS8FMV.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MGX8XKF9UWBS8FMV.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "MGX8XKF9UWBS8FMV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MGX8XKF9UWBS8FMV.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "MGX8XKF9UWBS8FMV.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17171" + }, + "appliesTo" : [ ] + }, + "MGX8XKF9UWBS8FMV.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "MGX8XKF9UWBS8FMV.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MGX8XKF9UWBS8FMV.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "MGX8XKF9UWBS8FMV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MGX8XKF9UWBS8FMV.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "MGX8XKF9UWBS8FMV.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7490000000" + }, + "appliesTo" : [ ] + }, + "MGX8XKF9UWBS8FMV.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "MGX8XKF9UWBS8FMV.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19694" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "RTF2UNENTQNKBZS3" : { + "RTF2UNENTQNKBZS3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "RTF2UNENTQNKBZS3", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "RTF2UNENTQNKBZS3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "RTF2UNENTQNKBZS3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8012" + }, + "appliesTo" : [ ] + }, + "RTF2UNENTQNKBZS3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "RTF2UNENTQNKBZS3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RTF2UNENTQNKBZS3.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "RTF2UNENTQNKBZS3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RTF2UNENTQNKBZS3.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "RTF2UNENTQNKBZS3.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RTF2UNENTQNKBZS3.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "RTF2UNENTQNKBZS3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RTF2UNENTQNKBZS3.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "RTF2UNENTQNKBZS3.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16974" + }, + "appliesTo" : [ ] + }, + "RTF2UNENTQNKBZS3.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "RTF2UNENTQNKBZS3.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RTF2UNENTQNKBZS3.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "RTF2UNENTQNKBZS3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RTF2UNENTQNKBZS3.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "RTF2UNENTQNKBZS3.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8569" + }, + "appliesTo" : [ ] + }, + "RTF2UNENTQNKBZS3.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "RTF2UNENTQNKBZS3.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RTF2UNENTQNKBZS3.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "RTF2UNENTQNKBZS3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RTF2UNENTQNKBZS3.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "RTF2UNENTQNKBZS3.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RTF2UNENTQNKBZS3.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "RTF2UNENTQNKBZS3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RTF2UNENTQNKBZS3.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "RTF2UNENTQNKBZS3.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "43339" + }, + "appliesTo" : [ ] + }, + "RTF2UNENTQNKBZS3.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "RTF2UNENTQNKBZS3.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RTF2UNENTQNKBZS3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "RTF2UNENTQNKBZS3", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "RTF2UNENTQNKBZS3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "RTF2UNENTQNKBZS3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20756" + }, + "appliesTo" : [ ] + }, + "RTF2UNENTQNKBZS3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "RTF2UNENTQNKBZS3.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RTF2UNENTQNKBZS3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "RTF2UNENTQNKBZS3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RTF2UNENTQNKBZS3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "RTF2UNENTQNKBZS3.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RTF2UNENTQNKBZS3.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "RTF2UNENTQNKBZS3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RTF2UNENTQNKBZS3.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "RTF2UNENTQNKBZS3.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RTF2UNENTQNKBZS3.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "RTF2UNENTQNKBZS3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RTF2UNENTQNKBZS3.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "RTF2UNENTQNKBZS3.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21839" + }, + "appliesTo" : [ ] + }, + "RTF2UNENTQNKBZS3.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "RTF2UNENTQNKBZS3.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RTF2UNENTQNKBZS3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "RTF2UNENTQNKBZS3", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "RTF2UNENTQNKBZS3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "RTF2UNENTQNKBZS3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "40626" + }, + "appliesTo" : [ ] + }, + "RTF2UNENTQNKBZS3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "RTF2UNENTQNKBZS3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RTF2UNENTQNKBZS3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "RTF2UNENTQNKBZS3", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "RTF2UNENTQNKBZS3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "RTF2UNENTQNKBZS3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15882" + }, + "appliesTo" : [ ] + }, + "RTF2UNENTQNKBZS3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "RTF2UNENTQNKBZS3.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "2RZ6RRUC3U8UVYP9" : { + "2RZ6RRUC3U8UVYP9.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "2RZ6RRUC3U8UVYP9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2RZ6RRUC3U8UVYP9.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "2RZ6RRUC3U8UVYP9.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8287" + }, + "appliesTo" : [ ] + }, + "2RZ6RRUC3U8UVYP9.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "2RZ6RRUC3U8UVYP9.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2RZ6RRUC3U8UVYP9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "2RZ6RRUC3U8UVYP9", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "2RZ6RRUC3U8UVYP9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "2RZ6RRUC3U8UVYP9.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2RZ6RRUC3U8UVYP9.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "2RZ6RRUC3U8UVYP9", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "2RZ6RRUC3U8UVYP9.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "2RZ6RRUC3U8UVYP9.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "48499" + }, + "appliesTo" : [ ] + }, + "2RZ6RRUC3U8UVYP9.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "2RZ6RRUC3U8UVYP9.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2RZ6RRUC3U8UVYP9.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "2RZ6RRUC3U8UVYP9", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "2RZ6RRUC3U8UVYP9.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "2RZ6RRUC3U8UVYP9.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24293" + }, + "appliesTo" : [ ] + }, + "2RZ6RRUC3U8UVYP9.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "2RZ6RRUC3U8UVYP9.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2RZ6RRUC3U8UVYP9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "2RZ6RRUC3U8UVYP9", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "2RZ6RRUC3U8UVYP9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "2RZ6RRUC3U8UVYP9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23737" + }, + "appliesTo" : [ ] + }, + "2RZ6RRUC3U8UVYP9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "2RZ6RRUC3U8UVYP9.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2RZ6RRUC3U8UVYP9.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "2RZ6RRUC3U8UVYP9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2RZ6RRUC3U8UVYP9.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "2RZ6RRUC3U8UVYP9.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2RZ6RRUC3U8UVYP9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "2RZ6RRUC3U8UVYP9", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "2RZ6RRUC3U8UVYP9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "2RZ6RRUC3U8UVYP9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8178" + }, + "appliesTo" : [ ] + }, + "2RZ6RRUC3U8UVYP9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "2RZ6RRUC3U8UVYP9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2RZ6RRUC3U8UVYP9.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "2RZ6RRUC3U8UVYP9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2RZ6RRUC3U8UVYP9.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "2RZ6RRUC3U8UVYP9.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "2RZ6RRUC3U8UVYP9.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "2RZ6RRUC3U8UVYP9.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16537" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2RZ6RRUC3U8UVYP9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "2RZ6RRUC3U8UVYP9", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "2RZ6RRUC3U8UVYP9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "2RZ6RRUC3U8UVYP9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16323" + }, + "appliesTo" : [ ] + }, + "2RZ6RRUC3U8UVYP9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "2RZ6RRUC3U8UVYP9.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2RZ6RRUC3U8UVYP9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "2RZ6RRUC3U8UVYP9", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "2RZ6RRUC3U8UVYP9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "2RZ6RRUC3U8UVYP9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47281" + }, + "appliesTo" : [ ] + }, + "2RZ6RRUC3U8UVYP9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "2RZ6RRUC3U8UVYP9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2RZ6RRUC3U8UVYP9.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "2RZ6RRUC3U8UVYP9", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "2RZ6RRUC3U8UVYP9.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "2RZ6RRUC3U8UVYP9.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "JRQSPKHTPKSDNFSM" : { + "JRQSPKHTPKSDNFSM.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "JRQSPKHTPKSDNFSM", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "JRQSPKHTPKSDNFSM.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "JRQSPKHTPKSDNFSM.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5120000000" + }, + "appliesTo" : [ ] + }, + "JRQSPKHTPKSDNFSM.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "JRQSPKHTPKSDNFSM.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39735" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "JRQSPKHTPKSDNFSM.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "JRQSPKHTPKSDNFSM", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "JRQSPKHTPKSDNFSM.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "JRQSPKHTPKSDNFSM.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0016000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "JRQSPKHTPKSDNFSM.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "JRQSPKHTPKSDNFSM", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "JRQSPKHTPKSDNFSM.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "JRQSPKHTPKSDNFSM.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "76679" + }, + "appliesTo" : [ ] + }, + "JRQSPKHTPKSDNFSM.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "JRQSPKHTPKSDNFSM.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JRQSPKHTPKSDNFSM.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "JRQSPKHTPKSDNFSM", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "JRQSPKHTPKSDNFSM.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "JRQSPKHTPKSDNFSM.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0534000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "JRQSPKHTPKSDNFSM.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "JRQSPKHTPKSDNFSM", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "JRQSPKHTPKSDNFSM.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "JRQSPKHTPKSDNFSM.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "79277" + }, + "appliesTo" : [ ] + }, + "JRQSPKHTPKSDNFSM.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "JRQSPKHTPKSDNFSM.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "JRQSPKHTPKSDNFSM.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "JRQSPKHTPKSDNFSM", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "JRQSPKHTPKSDNFSM.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "JRQSPKHTPKSDNFSM.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39105" + }, + "appliesTo" : [ ] + }, + "JRQSPKHTPKSDNFSM.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "JRQSPKHTPKSDNFSM.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "JRQSPKHTPKSDNFSM.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "JRQSPKHTPKSDNFSM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JRQSPKHTPKSDNFSM.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "JRQSPKHTPKSDNFSM.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27926" + }, + "appliesTo" : [ ] + }, + "JRQSPKHTPKSDNFSM.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "JRQSPKHTPKSDNFSM.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "JRQSPKHTPKSDNFSM.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "JRQSPKHTPKSDNFSM", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "JRQSPKHTPKSDNFSM.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "JRQSPKHTPKSDNFSM.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27319" + }, + "appliesTo" : [ ] + }, + "JRQSPKHTPKSDNFSM.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "JRQSPKHTPKSDNFSM.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JRQSPKHTPKSDNFSM.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "JRQSPKHTPKSDNFSM", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "JRQSPKHTPKSDNFSM.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "JRQSPKHTPKSDNFSM.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13701" + }, + "appliesTo" : [ ] + }, + "JRQSPKHTPKSDNFSM.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "JRQSPKHTPKSDNFSM.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "JRQSPKHTPKSDNFSM.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "JRQSPKHTPKSDNFSM", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "JRQSPKHTPKSDNFSM.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "JRQSPKHTPKSDNFSM.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1516000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "JRQSPKHTPKSDNFSM.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "JRQSPKHTPKSDNFSM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JRQSPKHTPKSDNFSM.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "JRQSPKHTPKSDNFSM.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14011" + }, + "appliesTo" : [ ] + }, + "JRQSPKHTPKSDNFSM.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "JRQSPKHTPKSDNFSM.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5994000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "JRQSPKHTPKSDNFSM.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "JRQSPKHTPKSDNFSM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JRQSPKHTPKSDNFSM.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "JRQSPKHTPKSDNFSM.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2259000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "X5T4377XTFNYDM3K" : { + "X5T4377XTFNYDM3K.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "X5T4377XTFNYDM3K", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "X5T4377XTFNYDM3K.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "X5T4377XTFNYDM3K.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23458" + }, + "appliesTo" : [ ] + }, + "X5T4377XTFNYDM3K.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "X5T4377XTFNYDM3K.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8926000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "X5T4377XTFNYDM3K.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "X5T4377XTFNYDM3K", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "X5T4377XTFNYDM3K.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "X5T4377XTFNYDM3K.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "X5T4377XTFNYDM3K.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "X5T4377XTFNYDM3K", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "X5T4377XTFNYDM3K.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "X5T4377XTFNYDM3K.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46429" + }, + "appliesTo" : [ ] + }, + "X5T4377XTFNYDM3K.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "X5T4377XTFNYDM3K.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "X5T4377XTFNYDM3K.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "X5T4377XTFNYDM3K", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "X5T4377XTFNYDM3K.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "X5T4377XTFNYDM3K.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7933000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "X5T4377XTFNYDM3K.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "X5T4377XTFNYDM3K", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X5T4377XTFNYDM3K.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "X5T4377XTFNYDM3K.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16033" + }, + "appliesTo" : [ ] + }, + "X5T4377XTFNYDM3K.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "X5T4377XTFNYDM3K.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "X5T4377XTFNYDM3K.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "X5T4377XTFNYDM3K", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "X5T4377XTFNYDM3K.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "X5T4377XTFNYDM3K.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46862" + }, + "appliesTo" : [ ] + }, + "X5T4377XTFNYDM3K.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "X5T4377XTFNYDM3K.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "X5T4377XTFNYDM3K.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "X5T4377XTFNYDM3K", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "X5T4377XTFNYDM3K.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "X5T4377XTFNYDM3K.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23284" + }, + "appliesTo" : [ ] + }, + "X5T4377XTFNYDM3K.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "X5T4377XTFNYDM3K.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "X5T4377XTFNYDM3K.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "X5T4377XTFNYDM3K", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "X5T4377XTFNYDM3K.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "X5T4377XTFNYDM3K.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "X5T4377XTFNYDM3K.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "X5T4377XTFNYDM3K.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15866" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "X5T4377XTFNYDM3K.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "X5T4377XTFNYDM3K", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "X5T4377XTFNYDM3K.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "X5T4377XTFNYDM3K.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8203000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "X5T4377XTFNYDM3K.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "X5T4377XTFNYDM3K", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "X5T4377XTFNYDM3K.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "X5T4377XTFNYDM3K.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9069000000" + }, + "appliesTo" : [ ] + }, + "X5T4377XTFNYDM3K.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "X5T4377XTFNYDM3K.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7944" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "X5T4377XTFNYDM3K.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "X5T4377XTFNYDM3K", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X5T4377XTFNYDM3K.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "X5T4377XTFNYDM3K.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8407000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "X5T4377XTFNYDM3K.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "X5T4377XTFNYDM3K", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X5T4377XTFNYDM3K.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "X5T4377XTFNYDM3K.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8030" + }, + "appliesTo" : [ ] + }, + "X5T4377XTFNYDM3K.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "X5T4377XTFNYDM3K.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9166000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "GSFCFZ283SFGMM8F" : { + "GSFCFZ283SFGMM8F.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "GSFCFZ283SFGMM8F", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GSFCFZ283SFGMM8F.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "GSFCFZ283SFGMM8F.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.2238000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "GSFCFZ283SFGMM8F.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "GSFCFZ283SFGMM8F", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GSFCFZ283SFGMM8F.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "GSFCFZ283SFGMM8F.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9264000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GSFCFZ283SFGMM8F.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "GSFCFZ283SFGMM8F", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GSFCFZ283SFGMM8F.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "GSFCFZ283SFGMM8F.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22405" + }, + "appliesTo" : [ ] + }, + "GSFCFZ283SFGMM8F.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "GSFCFZ283SFGMM8F.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5576000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GSFCFZ283SFGMM8F.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "GSFCFZ283SFGMM8F", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GSFCFZ283SFGMM8F.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "GSFCFZ283SFGMM8F.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "44429" + }, + "appliesTo" : [ ] + }, + "GSFCFZ283SFGMM8F.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "GSFCFZ283SFGMM8F.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "GSFCFZ283SFGMM8F.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "GSFCFZ283SFGMM8F", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GSFCFZ283SFGMM8F.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "GSFCFZ283SFGMM8F.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21164" + }, + "appliesTo" : [ ] + }, + "GSFCFZ283SFGMM8F.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "GSFCFZ283SFGMM8F.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GSFCFZ283SFGMM8F.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "GSFCFZ283SFGMM8F", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GSFCFZ283SFGMM8F.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "GSFCFZ283SFGMM8F.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "GSFCFZ283SFGMM8F.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "GSFCFZ283SFGMM8F.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "115279" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "GSFCFZ283SFGMM8F.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "GSFCFZ283SFGMM8F", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GSFCFZ283SFGMM8F.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "GSFCFZ283SFGMM8F.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.3264000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GSFCFZ283SFGMM8F.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "GSFCFZ283SFGMM8F", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GSFCFZ283SFGMM8F.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "GSFCFZ283SFGMM8F.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "102904" + }, + "appliesTo" : [ ] + }, + "GSFCFZ283SFGMM8F.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "GSFCFZ283SFGMM8F.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GSFCFZ283SFGMM8F.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "GSFCFZ283SFGMM8F", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GSFCFZ283SFGMM8F.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "GSFCFZ283SFGMM8F.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5338000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "GSFCFZ283SFGMM8F.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "GSFCFZ283SFGMM8F", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GSFCFZ283SFGMM8F.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "GSFCFZ283SFGMM8F.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "41998" + }, + "appliesTo" : [ ] + }, + "GSFCFZ283SFGMM8F.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "GSFCFZ283SFGMM8F.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GSFCFZ283SFGMM8F.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "GSFCFZ283SFGMM8F", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GSFCFZ283SFGMM8F.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "GSFCFZ283SFGMM8F.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "58026" + }, + "appliesTo" : [ ] + }, + "GSFCFZ283SFGMM8F.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "GSFCFZ283SFGMM8F.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GSFCFZ283SFGMM8F.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "GSFCFZ283SFGMM8F", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "GSFCFZ283SFGMM8F.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "GSFCFZ283SFGMM8F.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "54736" + }, + "appliesTo" : [ ] + }, + "GSFCFZ283SFGMM8F.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "GSFCFZ283SFGMM8F.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "KPX48D6YDFSDBE2Y" : { + "KPX48D6YDFSDBE2Y.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "KPX48D6YDFSDBE2Y", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "KPX48D6YDFSDBE2Y.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "KPX48D6YDFSDBE2Y.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "KPX48D6YDFSDBE2Y.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "KPX48D6YDFSDBE2Y.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1062" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KPX48D6YDFSDBE2Y.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "KPX48D6YDFSDBE2Y", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "KPX48D6YDFSDBE2Y.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "KPX48D6YDFSDBE2Y.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "690" + }, + "appliesTo" : [ ] + }, + "KPX48D6YDFSDBE2Y.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "KPX48D6YDFSDBE2Y.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KPX48D6YDFSDBE2Y.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "KPX48D6YDFSDBE2Y", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "KPX48D6YDFSDBE2Y.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "KPX48D6YDFSDBE2Y.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "KPX48D6YDFSDBE2Y.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "KPX48D6YDFSDBE2Y.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2215" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KPX48D6YDFSDBE2Y.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "KPX48D6YDFSDBE2Y", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "KPX48D6YDFSDBE2Y.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "KPX48D6YDFSDBE2Y.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KPX48D6YDFSDBE2Y.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "KPX48D6YDFSDBE2Y", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "KPX48D6YDFSDBE2Y.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "KPX48D6YDFSDBE2Y.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2767" + }, + "appliesTo" : [ ] + }, + "KPX48D6YDFSDBE2Y.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "KPX48D6YDFSDBE2Y.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KPX48D6YDFSDBE2Y.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "KPX48D6YDFSDBE2Y", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "KPX48D6YDFSDBE2Y.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "KPX48D6YDFSDBE2Y.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0370000000" + }, + "appliesTo" : [ ] + }, + "KPX48D6YDFSDBE2Y.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "KPX48D6YDFSDBE2Y.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1333" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KPX48D6YDFSDBE2Y.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "KPX48D6YDFSDBE2Y", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "KPX48D6YDFSDBE2Y.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "KPX48D6YDFSDBE2Y.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1740" + }, + "appliesTo" : [ ] + }, + "KPX48D6YDFSDBE2Y.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "KPX48D6YDFSDBE2Y.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KPX48D6YDFSDBE2Y.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "KPX48D6YDFSDBE2Y", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "KPX48D6YDFSDBE2Y.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "KPX48D6YDFSDBE2Y.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KPX48D6YDFSDBE2Y.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "KPX48D6YDFSDBE2Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KPX48D6YDFSDBE2Y.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "KPX48D6YDFSDBE2Y.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KPX48D6YDFSDBE2Y.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "KPX48D6YDFSDBE2Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KPX48D6YDFSDBE2Y.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "KPX48D6YDFSDBE2Y.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1176" + }, + "appliesTo" : [ ] + }, + "KPX48D6YDFSDBE2Y.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "KPX48D6YDFSDBE2Y.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KPX48D6YDFSDBE2Y.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "KPX48D6YDFSDBE2Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KPX48D6YDFSDBE2Y.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "KPX48D6YDFSDBE2Y.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0650000000" + }, + "appliesTo" : [ ] + }, + "KPX48D6YDFSDBE2Y.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "KPX48D6YDFSDBE2Y.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "628" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "X894WEFHKGGUVR52" : { + "X894WEFHKGGUVR52.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "X894WEFHKGGUVR52", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "X894WEFHKGGUVR52.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "X894WEFHKGGUVR52.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12364" + }, + "appliesTo" : [ ] + }, + "X894WEFHKGGUVR52.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "X894WEFHKGGUVR52.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "X894WEFHKGGUVR52.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "X894WEFHKGGUVR52", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "X894WEFHKGGUVR52.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "X894WEFHKGGUVR52.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8223" + }, + "appliesTo" : [ ] + }, + "X894WEFHKGGUVR52.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "X894WEFHKGGUVR52.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "X894WEFHKGGUVR52.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "X894WEFHKGGUVR52", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "X894WEFHKGGUVR52.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "X894WEFHKGGUVR52.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "X894WEFHKGGUVR52.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "X894WEFHKGGUVR52", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "X894WEFHKGGUVR52.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "X894WEFHKGGUVR52.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22202" + }, + "appliesTo" : [ ] + }, + "X894WEFHKGGUVR52.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "X894WEFHKGGUVR52.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "X894WEFHKGGUVR52.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "X894WEFHKGGUVR52", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "X894WEFHKGGUVR52.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "X894WEFHKGGUVR52.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24521" + }, + "appliesTo" : [ ] + }, + "X894WEFHKGGUVR52.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "X894WEFHKGGUVR52.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "X894WEFHKGGUVR52.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "X894WEFHKGGUVR52", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "X894WEFHKGGUVR52.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "X894WEFHKGGUVR52.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15702" + }, + "appliesTo" : [ ] + }, + "X894WEFHKGGUVR52.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "X894WEFHKGGUVR52.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "X894WEFHKGGUVR52.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "X894WEFHKGGUVR52", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "X894WEFHKGGUVR52.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "X894WEFHKGGUVR52.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "X894WEFHKGGUVR52.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "X894WEFHKGGUVR52", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X894WEFHKGGUVR52.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "X894WEFHKGGUVR52.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14169" + }, + "appliesTo" : [ ] + }, + "X894WEFHKGGUVR52.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "X894WEFHKGGUVR52.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "X894WEFHKGGUVR52.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "X894WEFHKGGUVR52", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X894WEFHKGGUVR52.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "X894WEFHKGGUVR52.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "X894WEFHKGGUVR52.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "X894WEFHKGGUVR52", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X894WEFHKGGUVR52.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "X894WEFHKGGUVR52.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7229" + }, + "appliesTo" : [ ] + }, + "X894WEFHKGGUVR52.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "X894WEFHKGGUVR52.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "X894WEFHKGGUVR52.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "X894WEFHKGGUVR52", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "X894WEFHKGGUVR52.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "X894WEFHKGGUVR52.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33383" + }, + "appliesTo" : [ ] + }, + "X894WEFHKGGUVR52.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "X894WEFHKGGUVR52.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "VMVDDQB5JVUS29SY" : { + "VMVDDQB5JVUS29SY.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "VMVDDQB5JVUS29SY", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "VMVDDQB5JVUS29SY.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "VMVDDQB5JVUS29SY.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "VMVDDQB5JVUS29SY.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "VMVDDQB5JVUS29SY.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28215" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VMVDDQB5JVUS29SY.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "VMVDDQB5JVUS29SY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VMVDDQB5JVUS29SY.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "VMVDDQB5JVUS29SY.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VMVDDQB5JVUS29SY.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "VMVDDQB5JVUS29SY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VMVDDQB5JVUS29SY.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "VMVDDQB5JVUS29SY.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VMVDDQB5JVUS29SY.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "VMVDDQB5JVUS29SY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VMVDDQB5JVUS29SY.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "VMVDDQB5JVUS29SY.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "VMVDDQB5JVUS29SY.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "VMVDDQB5JVUS29SY.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "75173" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VMVDDQB5JVUS29SY.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "VMVDDQB5JVUS29SY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VMVDDQB5JVUS29SY.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "VMVDDQB5JVUS29SY.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30618" + }, + "appliesTo" : [ ] + }, + "VMVDDQB5JVUS29SY.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "VMVDDQB5JVUS29SY.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VMVDDQB5JVUS29SY.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "VMVDDQB5JVUS29SY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VMVDDQB5JVUS29SY.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "VMVDDQB5JVUS29SY.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VMVDDQB5JVUS29SY.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "VMVDDQB5JVUS29SY", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "VMVDDQB5JVUS29SY.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "VMVDDQB5JVUS29SY.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6280000000" + }, + "appliesTo" : [ ] + }, + "VMVDDQB5JVUS29SY.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "VMVDDQB5JVUS29SY.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14264" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VMVDDQB5JVUS29SY.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "VMVDDQB5JVUS29SY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VMVDDQB5JVUS29SY.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "VMVDDQB5JVUS29SY.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VMVDDQB5JVUS29SY.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "VMVDDQB5JVUS29SY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VMVDDQB5JVUS29SY.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "VMVDDQB5JVUS29SY.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15490" + }, + "appliesTo" : [ ] + }, + "VMVDDQB5JVUS29SY.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "VMVDDQB5JVUS29SY.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VMVDDQB5JVUS29SY.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "VMVDDQB5JVUS29SY", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "VMVDDQB5JVUS29SY.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "VMVDDQB5JVUS29SY.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "69205" + }, + "appliesTo" : [ ] + }, + "VMVDDQB5JVUS29SY.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "VMVDDQB5JVUS29SY.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VMVDDQB5JVUS29SY.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "VMVDDQB5JVUS29SY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VMVDDQB5JVUS29SY.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "VMVDDQB5JVUS29SY.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37959" + }, + "appliesTo" : [ ] + }, + "VMVDDQB5JVUS29SY.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "VMVDDQB5JVUS29SY.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VMVDDQB5JVUS29SY.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "VMVDDQB5JVUS29SY", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "VMVDDQB5JVUS29SY.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "VMVDDQB5JVUS29SY.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35577" + }, + "appliesTo" : [ ] + }, + "VMVDDQB5JVUS29SY.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "VMVDDQB5JVUS29SY.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "PA99ECAE74DADX5J" : { + "PA99ECAE74DADX5J.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "PA99ECAE74DADX5J", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "PA99ECAE74DADX5J.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "PA99ECAE74DADX5J.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15646" + }, + "appliesTo" : [ ] + }, + "PA99ECAE74DADX5J.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "PA99ECAE74DADX5J.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PA99ECAE74DADX5J.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "PA99ECAE74DADX5J", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PA99ECAE74DADX5J.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "PA99ECAE74DADX5J.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "PA99ECAE74DADX5J.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "PA99ECAE74DADX5J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PA99ECAE74DADX5J.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "PA99ECAE74DADX5J.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14130" + }, + "appliesTo" : [ ] + }, + "PA99ECAE74DADX5J.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "PA99ECAE74DADX5J.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PA99ECAE74DADX5J.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "PA99ECAE74DADX5J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PA99ECAE74DADX5J.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "PA99ECAE74DADX5J.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "PA99ECAE74DADX5J.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "PA99ECAE74DADX5J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PA99ECAE74DADX5J.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "PA99ECAE74DADX5J.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7118" + }, + "appliesTo" : [ ] + }, + "PA99ECAE74DADX5J.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "PA99ECAE74DADX5J.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PA99ECAE74DADX5J.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "PA99ECAE74DADX5J", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PA99ECAE74DADX5J.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "PA99ECAE74DADX5J.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "PA99ECAE74DADX5J.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "PA99ECAE74DADX5J", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PA99ECAE74DADX5J.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "PA99ECAE74DADX5J.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "PA99ECAE74DADX5J.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "PA99ECAE74DADX5J.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37439" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PA99ECAE74DADX5J.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "PA99ECAE74DADX5J", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "PA99ECAE74DADX5J.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "PA99ECAE74DADX5J.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6789" + }, + "appliesTo" : [ ] + }, + "PA99ECAE74DADX5J.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "PA99ECAE74DADX5J.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PA99ECAE74DADX5J.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "PA99ECAE74DADX5J", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PA99ECAE74DADX5J.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "PA99ECAE74DADX5J.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "PA99ECAE74DADX5J.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "PA99ECAE74DADX5J", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PA99ECAE74DADX5J.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "PA99ECAE74DADX5J.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7160000000" + }, + "appliesTo" : [ ] + }, + "PA99ECAE74DADX5J.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "PA99ECAE74DADX5J.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18829" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PA99ECAE74DADX5J.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "PA99ECAE74DADX5J", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "PA99ECAE74DADX5J.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "PA99ECAE74DADX5J.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13366" + }, + "appliesTo" : [ ] + }, + "PA99ECAE74DADX5J.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "PA99ECAE74DADX5J.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PA99ECAE74DADX5J.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "PA99ECAE74DADX5J", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PA99ECAE74DADX5J.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "PA99ECAE74DADX5J.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29402" + }, + "appliesTo" : [ ] + }, + "PA99ECAE74DADX5J.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "PA99ECAE74DADX5J.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "6MAMZMQ6FM3UK7P6" : { + "6MAMZMQ6FM3UK7P6.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "6MAMZMQ6FM3UK7P6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6MAMZMQ6FM3UK7P6.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "6MAMZMQ6FM3UK7P6.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6756000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6MAMZMQ6FM3UK7P6.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "6MAMZMQ6FM3UK7P6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6MAMZMQ6FM3UK7P6.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "6MAMZMQ6FM3UK7P6.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6176000000" + }, + "appliesTo" : [ ] + }, + "6MAMZMQ6FM3UK7P6.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "6MAMZMQ6FM3UK7P6.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12814" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6MAMZMQ6FM3UK7P6.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6MAMZMQ6FM3UK7P6", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "6MAMZMQ6FM3UK7P6.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6MAMZMQ6FM3UK7P6.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24444" + }, + "appliesTo" : [ ] + }, + "6MAMZMQ6FM3UK7P6.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6MAMZMQ6FM3UK7P6.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6MAMZMQ6FM3UK7P6.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6MAMZMQ6FM3UK7P6", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "6MAMZMQ6FM3UK7P6.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6MAMZMQ6FM3UK7P6.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12100" + }, + "appliesTo" : [ ] + }, + "6MAMZMQ6FM3UK7P6.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6MAMZMQ6FM3UK7P6.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6MAMZMQ6FM3UK7P6.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6MAMZMQ6FM3UK7P6", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "6MAMZMQ6FM3UK7P6.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6MAMZMQ6FM3UK7P6.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11185" + }, + "appliesTo" : [ ] + }, + "6MAMZMQ6FM3UK7P6.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6MAMZMQ6FM3UK7P6.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6MAMZMQ6FM3UK7P6.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "6MAMZMQ6FM3UK7P6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6MAMZMQ6FM3UK7P6.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "6MAMZMQ6FM3UK7P6.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28532" + }, + "appliesTo" : [ ] + }, + "6MAMZMQ6FM3UK7P6.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "6MAMZMQ6FM3UK7P6.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6MAMZMQ6FM3UK7P6.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "6MAMZMQ6FM3UK7P6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6MAMZMQ6FM3UK7P6.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "6MAMZMQ6FM3UK7P6.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1832000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6MAMZMQ6FM3UK7P6.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "6MAMZMQ6FM3UK7P6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6MAMZMQ6FM3UK7P6.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "6MAMZMQ6FM3UK7P6.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6447" + }, + "appliesTo" : [ ] + }, + "6MAMZMQ6FM3UK7P6.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "6MAMZMQ6FM3UK7P6.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6MAMZMQ6FM3UK7P6.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6MAMZMQ6FM3UK7P6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6MAMZMQ6FM3UK7P6.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6MAMZMQ6FM3UK7P6.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6MAMZMQ6FM3UK7P6.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6MAMZMQ6FM3UK7P6", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "6MAMZMQ6FM3UK7P6.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6MAMZMQ6FM3UK7P6.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5592" + }, + "appliesTo" : [ ] + }, + "6MAMZMQ6FM3UK7P6.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6MAMZMQ6FM3UK7P6.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6MAMZMQ6FM3UK7P6.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "6MAMZMQ6FM3UK7P6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6MAMZMQ6FM3UK7P6.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "6MAMZMQ6FM3UK7P6.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0458000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6MAMZMQ6FM3UK7P6.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "6MAMZMQ6FM3UK7P6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6MAMZMQ6FM3UK7P6.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "6MAMZMQ6FM3UK7P6.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13776" + }, + "appliesTo" : [ ] + }, + "6MAMZMQ6FM3UK7P6.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "6MAMZMQ6FM3UK7P6.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "PFVCSMK3T7J3UAHB" : { + "PFVCSMK3T7J3UAHB.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "PFVCSMK3T7J3UAHB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PFVCSMK3T7J3UAHB.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "PFVCSMK3T7J3UAHB.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3296" + }, + "appliesTo" : [ ] + }, + "PFVCSMK3T7J3UAHB.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "PFVCSMK3T7J3UAHB.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PFVCSMK3T7J3UAHB.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "PFVCSMK3T7J3UAHB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PFVCSMK3T7J3UAHB.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "PFVCSMK3T7J3UAHB.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "PFVCSMK3T7J3UAHB.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "PFVCSMK3T7J3UAHB", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "PFVCSMK3T7J3UAHB.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "PFVCSMK3T7J3UAHB.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "PFVCSMK3T7J3UAHB.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "PFVCSMK3T7J3UAHB.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14078" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PFVCSMK3T7J3UAHB.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "PFVCSMK3T7J3UAHB", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "PFVCSMK3T7J3UAHB.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "PFVCSMK3T7J3UAHB.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "PFVCSMK3T7J3UAHB.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "PFVCSMK3T7J3UAHB", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "PFVCSMK3T7J3UAHB.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "PFVCSMK3T7J3UAHB.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6986" + }, + "appliesTo" : [ ] + }, + "PFVCSMK3T7J3UAHB.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "PFVCSMK3T7J3UAHB.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PFVCSMK3T7J3UAHB.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "PFVCSMK3T7J3UAHB", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "PFVCSMK3T7J3UAHB.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "PFVCSMK3T7J3UAHB.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3420000000" + }, + "appliesTo" : [ ] + }, + "PFVCSMK3T7J3UAHB.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "PFVCSMK3T7J3UAHB.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5987" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PFVCSMK3T7J3UAHB.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "PFVCSMK3T7J3UAHB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PFVCSMK3T7J3UAHB.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "PFVCSMK3T7J3UAHB.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6513" + }, + "appliesTo" : [ ] + }, + "PFVCSMK3T7J3UAHB.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "PFVCSMK3T7J3UAHB.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PFVCSMK3T7J3UAHB.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "PFVCSMK3T7J3UAHB", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "PFVCSMK3T7J3UAHB.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "PFVCSMK3T7J3UAHB.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17567" + }, + "appliesTo" : [ ] + }, + "PFVCSMK3T7J3UAHB.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "PFVCSMK3T7J3UAHB.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PFVCSMK3T7J3UAHB.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "PFVCSMK3T7J3UAHB", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "PFVCSMK3T7J3UAHB.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "PFVCSMK3T7J3UAHB.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2529" + }, + "appliesTo" : [ ] + }, + "PFVCSMK3T7J3UAHB.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "PFVCSMK3T7J3UAHB.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PFVCSMK3T7J3UAHB.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "PFVCSMK3T7J3UAHB", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "PFVCSMK3T7J3UAHB.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "PFVCSMK3T7J3UAHB.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6198" + }, + "appliesTo" : [ ] + }, + "PFVCSMK3T7J3UAHB.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "PFVCSMK3T7J3UAHB.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PFVCSMK3T7J3UAHB.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "PFVCSMK3T7J3UAHB", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "PFVCSMK3T7J3UAHB.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "PFVCSMK3T7J3UAHB.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "5TGRKMTBQMH42KUS" : { + "5TGRKMTBQMH42KUS.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "5TGRKMTBQMH42KUS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5TGRKMTBQMH42KUS.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "5TGRKMTBQMH42KUS.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "5TGRKMTBQMH42KUS.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "5TGRKMTBQMH42KUS", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "5TGRKMTBQMH42KUS.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "5TGRKMTBQMH42KUS.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3908" + }, + "appliesTo" : [ ] + }, + "5TGRKMTBQMH42KUS.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "5TGRKMTBQMH42KUS.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5TGRKMTBQMH42KUS.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "5TGRKMTBQMH42KUS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5TGRKMTBQMH42KUS.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "5TGRKMTBQMH42KUS.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "5TGRKMTBQMH42KUS.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "5TGRKMTBQMH42KUS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5TGRKMTBQMH42KUS.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "5TGRKMTBQMH42KUS.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4521" + }, + "appliesTo" : [ ] + }, + "5TGRKMTBQMH42KUS.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "5TGRKMTBQMH42KUS.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "5TGRKMTBQMH42KUS.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "5TGRKMTBQMH42KUS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5TGRKMTBQMH42KUS.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "5TGRKMTBQMH42KUS.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "5TGRKMTBQMH42KUS.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "5TGRKMTBQMH42KUS.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8862" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "5TGRKMTBQMH42KUS.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "5TGRKMTBQMH42KUS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5TGRKMTBQMH42KUS.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "5TGRKMTBQMH42KUS.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18245" + }, + "appliesTo" : [ ] + }, + "5TGRKMTBQMH42KUS.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "5TGRKMTBQMH42KUS.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "5TGRKMTBQMH42KUS.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "5TGRKMTBQMH42KUS", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "5TGRKMTBQMH42KUS.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "5TGRKMTBQMH42KUS.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15261" + }, + "appliesTo" : [ ] + }, + "5TGRKMTBQMH42KUS.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "5TGRKMTBQMH42KUS.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5TGRKMTBQMH42KUS.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "5TGRKMTBQMH42KUS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5TGRKMTBQMH42KUS.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "5TGRKMTBQMH42KUS.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "5TGRKMTBQMH42KUS.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "5TGRKMTBQMH42KUS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5TGRKMTBQMH42KUS.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "5TGRKMTBQMH42KUS.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9308" + }, + "appliesTo" : [ ] + }, + "5TGRKMTBQMH42KUS.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "5TGRKMTBQMH42KUS.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "5TGRKMTBQMH42KUS.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "5TGRKMTBQMH42KUS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5TGRKMTBQMH42KUS.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "5TGRKMTBQMH42KUS.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "5TGRKMTBQMH42KUS.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "5TGRKMTBQMH42KUS", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "5TGRKMTBQMH42KUS.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "5TGRKMTBQMH42KUS.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8117" + }, + "appliesTo" : [ ] + }, + "5TGRKMTBQMH42KUS.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "5TGRKMTBQMH42KUS.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5TGRKMTBQMH42KUS.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "5TGRKMTBQMH42KUS", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "5TGRKMTBQMH42KUS.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "5TGRKMTBQMH42KUS.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7660" + }, + "appliesTo" : [ ] + }, + "5TGRKMTBQMH42KUS.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "5TGRKMTBQMH42KUS.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "7APFVGHQXR9QGJ23" : { + "7APFVGHQXR9QGJ23.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "7APFVGHQXR9QGJ23", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7APFVGHQXR9QGJ23.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "7APFVGHQXR9QGJ23.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "22.1710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7APFVGHQXR9QGJ23.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "7APFVGHQXR9QGJ23", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "7APFVGHQXR9QGJ23.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "7APFVGHQXR9QGJ23.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "19.6520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7APFVGHQXR9QGJ23.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "7APFVGHQXR9QGJ23", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "7APFVGHQXR9QGJ23.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "7APFVGHQXR9QGJ23.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.4280000000" + }, + "appliesTo" : [ ] + }, + "7APFVGHQXR9QGJ23.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "7APFVGHQXR9QGJ23.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "82589" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7APFVGHQXR9QGJ23.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "7APFVGHQXR9QGJ23", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7APFVGHQXR9QGJ23.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "7APFVGHQXR9QGJ23.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "93097" + }, + "appliesTo" : [ ] + }, + "7APFVGHQXR9QGJ23.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "7APFVGHQXR9QGJ23.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.6280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7APFVGHQXR9QGJ23.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "7APFVGHQXR9QGJ23", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "7APFVGHQXR9QGJ23.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "7APFVGHQXR9QGJ23.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "7APFVGHQXR9QGJ23.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "7APFVGHQXR9QGJ23.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "419712" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7APFVGHQXR9QGJ23.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "7APFVGHQXR9QGJ23", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "7APFVGHQXR9QGJ23.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "7APFVGHQXR9QGJ23.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.5990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7APFVGHQXR9QGJ23.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "7APFVGHQXR9QGJ23", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7APFVGHQXR9QGJ23.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "7APFVGHQXR9QGJ23.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "182986" + }, + "appliesTo" : [ ] + }, + "7APFVGHQXR9QGJ23.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "7APFVGHQXR9QGJ23.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7APFVGHQXR9QGJ23.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "7APFVGHQXR9QGJ23", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "7APFVGHQXR9QGJ23.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "7APFVGHQXR9QGJ23.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "17.3000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7APFVGHQXR9QGJ23.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "7APFVGHQXR9QGJ23", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "7APFVGHQXR9QGJ23.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "7APFVGHQXR9QGJ23.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "213349" + }, + "appliesTo" : [ ] + }, + "7APFVGHQXR9QGJ23.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "7APFVGHQXR9QGJ23.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.1180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7APFVGHQXR9QGJ23.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "7APFVGHQXR9QGJ23", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "7APFVGHQXR9QGJ23.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "7APFVGHQXR9QGJ23.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "168316" + }, + "appliesTo" : [ ] + }, + "7APFVGHQXR9QGJ23.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "7APFVGHQXR9QGJ23.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.4050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7APFVGHQXR9QGJ23.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "7APFVGHQXR9QGJ23", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "7APFVGHQXR9QGJ23.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "7APFVGHQXR9QGJ23.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "321076" + }, + "appliesTo" : [ ] + }, + "7APFVGHQXR9QGJ23.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "7APFVGHQXR9QGJ23.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7APFVGHQXR9QGJ23.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "7APFVGHQXR9QGJ23", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "7APFVGHQXR9QGJ23.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "7APFVGHQXR9QGJ23.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "162391" + }, + "appliesTo" : [ ] + }, + "7APFVGHQXR9QGJ23.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "7APFVGHQXR9QGJ23.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "385FHNM4MG8P3KGR" : { + "385FHNM4MG8P3KGR.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "385FHNM4MG8P3KGR", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "385FHNM4MG8P3KGR.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "385FHNM4MG8P3KGR.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "214046" + }, + "appliesTo" : [ ] + }, + "385FHNM4MG8P3KGR.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "385FHNM4MG8P3KGR.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "385FHNM4MG8P3KGR.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "385FHNM4MG8P3KGR", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "385FHNM4MG8P3KGR.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "385FHNM4MG8P3KGR.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "101505" + }, + "appliesTo" : [ ] + }, + "385FHNM4MG8P3KGR.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "385FHNM4MG8P3KGR.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "385FHNM4MG8P3KGR.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "385FHNM4MG8P3KGR", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "385FHNM4MG8P3KGR.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "385FHNM4MG8P3KGR.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "201451" + }, + "appliesTo" : [ ] + }, + "385FHNM4MG8P3KGR.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "385FHNM4MG8P3KGR.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "385FHNM4MG8P3KGR.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "385FHNM4MG8P3KGR", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "385FHNM4MG8P3KGR.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "385FHNM4MG8P3KGR.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "107401" + }, + "appliesTo" : [ ] + }, + "385FHNM4MG8P3KGR.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "385FHNM4MG8P3KGR.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.0870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "385FHNM4MG8P3KGR.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "385FHNM4MG8P3KGR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "385FHNM4MG8P3KGR.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "385FHNM4MG8P3KGR.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "74767" + }, + "appliesTo" : [ ] + }, + "385FHNM4MG8P3KGR.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "385FHNM4MG8P3KGR.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "385FHNM4MG8P3KGR.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "385FHNM4MG8P3KGR", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "385FHNM4MG8P3KGR.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "385FHNM4MG8P3KGR.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.6050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "385FHNM4MG8P3KGR.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "385FHNM4MG8P3KGR", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "385FHNM4MG8P3KGR.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "385FHNM4MG8P3KGR.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.4180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "385FHNM4MG8P3KGR.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "385FHNM4MG8P3KGR", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "385FHNM4MG8P3KGR.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "385FHNM4MG8P3KGR.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "72720" + }, + "appliesTo" : [ ] + }, + "385FHNM4MG8P3KGR.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "385FHNM4MG8P3KGR.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "385FHNM4MG8P3KGR.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "385FHNM4MG8P3KGR", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "385FHNM4MG8P3KGR.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "385FHNM4MG8P3KGR.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.1670000000" + }, + "appliesTo" : [ ] + }, + "385FHNM4MG8P3KGR.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "385FHNM4MG8P3KGR.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "36500" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "385FHNM4MG8P3KGR.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "385FHNM4MG8P3KGR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "385FHNM4MG8P3KGR.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "385FHNM4MG8P3KGR.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37544" + }, + "appliesTo" : [ ] + }, + "385FHNM4MG8P3KGR.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "385FHNM4MG8P3KGR.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "385FHNM4MG8P3KGR.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "385FHNM4MG8P3KGR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "385FHNM4MG8P3KGR.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "385FHNM4MG8P3KGR.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.6640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "3YMR7VMVAJWZPJVQ" : { + "3YMR7VMVAJWZPJVQ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "3YMR7VMVAJWZPJVQ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "3YMR7VMVAJWZPJVQ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "3YMR7VMVAJWZPJVQ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6254" + }, + "appliesTo" : [ ] + }, + "3YMR7VMVAJWZPJVQ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "3YMR7VMVAJWZPJVQ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3YMR7VMVAJWZPJVQ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "3YMR7VMVAJWZPJVQ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3YMR7VMVAJWZPJVQ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "3YMR7VMVAJWZPJVQ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14698" + }, + "appliesTo" : [ ] + }, + "3YMR7VMVAJWZPJVQ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "3YMR7VMVAJWZPJVQ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3YMR7VMVAJWZPJVQ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "3YMR7VMVAJWZPJVQ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "3YMR7VMVAJWZPJVQ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "3YMR7VMVAJWZPJVQ.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "3YMR7VMVAJWZPJVQ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "3YMR7VMVAJWZPJVQ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16637" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3YMR7VMVAJWZPJVQ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "3YMR7VMVAJWZPJVQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3YMR7VMVAJWZPJVQ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "3YMR7VMVAJWZPJVQ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3YMR7VMVAJWZPJVQ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "3YMR7VMVAJWZPJVQ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "3YMR7VMVAJWZPJVQ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "3YMR7VMVAJWZPJVQ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6734" + }, + "appliesTo" : [ ] + }, + "3YMR7VMVAJWZPJVQ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "3YMR7VMVAJWZPJVQ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3YMR7VMVAJWZPJVQ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "3YMR7VMVAJWZPJVQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3YMR7VMVAJWZPJVQ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "3YMR7VMVAJWZPJVQ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2964" + }, + "appliesTo" : [ ] + }, + "3YMR7VMVAJWZPJVQ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "3YMR7VMVAJWZPJVQ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3YMR7VMVAJWZPJVQ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "3YMR7VMVAJWZPJVQ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3YMR7VMVAJWZPJVQ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "3YMR7VMVAJWZPJVQ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3950000000" + }, + "appliesTo" : [ ] + }, + "3YMR7VMVAJWZPJVQ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "3YMR7VMVAJWZPJVQ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2310" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3YMR7VMVAJWZPJVQ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "3YMR7VMVAJWZPJVQ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3YMR7VMVAJWZPJVQ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "3YMR7VMVAJWZPJVQ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5655" + }, + "appliesTo" : [ ] + }, + "3YMR7VMVAJWZPJVQ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "3YMR7VMVAJWZPJVQ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3YMR7VMVAJWZPJVQ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "3YMR7VMVAJWZPJVQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3YMR7VMVAJWZPJVQ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "3YMR7VMVAJWZPJVQ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5902" + }, + "appliesTo" : [ ] + }, + "3YMR7VMVAJWZPJVQ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "3YMR7VMVAJWZPJVQ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3YMR7VMVAJWZPJVQ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "3YMR7VMVAJWZPJVQ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "3YMR7VMVAJWZPJVQ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "3YMR7VMVAJWZPJVQ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3YMR7VMVAJWZPJVQ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "3YMR7VMVAJWZPJVQ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3YMR7VMVAJWZPJVQ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "3YMR7VMVAJWZPJVQ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "YN6S4KGMAE64PQR5" : { + "YN6S4KGMAE64PQR5.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YN6S4KGMAE64PQR5", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "YN6S4KGMAE64PQR5.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YN6S4KGMAE64PQR5.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YN6S4KGMAE64PQR5.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YN6S4KGMAE64PQR5.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "940" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YN6S4KGMAE64PQR5.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YN6S4KGMAE64PQR5", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "YN6S4KGMAE64PQR5.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YN6S4KGMAE64PQR5.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "976" + }, + "appliesTo" : [ ] + }, + "YN6S4KGMAE64PQR5.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YN6S4KGMAE64PQR5.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0371000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YN6S4KGMAE64PQR5.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YN6S4KGMAE64PQR5", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "YN6S4KGMAE64PQR5.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YN6S4KGMAE64PQR5.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1834" + }, + "appliesTo" : [ ] + }, + "YN6S4KGMAE64PQR5.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YN6S4KGMAE64PQR5.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YN6S4KGMAE64PQR5.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "YN6S4KGMAE64PQR5", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "YN6S4KGMAE64PQR5.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "YN6S4KGMAE64PQR5.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0802000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YN6S4KGMAE64PQR5.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YN6S4KGMAE64PQR5", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "YN6S4KGMAE64PQR5.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YN6S4KGMAE64PQR5.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "480" + }, + "appliesTo" : [ ] + }, + "YN6S4KGMAE64PQR5.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YN6S4KGMAE64PQR5.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0548000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YN6S4KGMAE64PQR5.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YN6S4KGMAE64PQR5", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "YN6S4KGMAE64PQR5.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YN6S4KGMAE64PQR5.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "MU4QGTJYWR6T73MZ" : { + "MU4QGTJYWR6T73MZ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "MU4QGTJYWR6T73MZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MU4QGTJYWR6T73MZ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "MU4QGTJYWR6T73MZ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3655" + }, + "appliesTo" : [ ] + }, + "MU4QGTJYWR6T73MZ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "MU4QGTJYWR6T73MZ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MU4QGTJYWR6T73MZ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "MU4QGTJYWR6T73MZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MU4QGTJYWR6T73MZ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "MU4QGTJYWR6T73MZ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MU4QGTJYWR6T73MZ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "MU4QGTJYWR6T73MZ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "MU4QGTJYWR6T73MZ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "MU4QGTJYWR6T73MZ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9828" + }, + "appliesTo" : [ ] + }, + "MU4QGTJYWR6T73MZ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "MU4QGTJYWR6T73MZ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MU4QGTJYWR6T73MZ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "MU4QGTJYWR6T73MZ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "MU4QGTJYWR6T73MZ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "MU4QGTJYWR6T73MZ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MU4QGTJYWR6T73MZ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "MU4QGTJYWR6T73MZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MU4QGTJYWR6T73MZ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "MU4QGTJYWR6T73MZ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11104" + }, + "appliesTo" : [ ] + }, + "MU4QGTJYWR6T73MZ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "MU4QGTJYWR6T73MZ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MU4QGTJYWR6T73MZ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "MU4QGTJYWR6T73MZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MU4QGTJYWR6T73MZ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "MU4QGTJYWR6T73MZ.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2410000000" + }, + "appliesTo" : [ ] + }, + "MU4QGTJYWR6T73MZ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "MU4QGTJYWR6T73MZ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5480" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MU4QGTJYWR6T73MZ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "MU4QGTJYWR6T73MZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MU4QGTJYWR6T73MZ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "MU4QGTJYWR6T73MZ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6237" + }, + "appliesTo" : [ ] + }, + "MU4QGTJYWR6T73MZ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "MU4QGTJYWR6T73MZ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MU4QGTJYWR6T73MZ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "MU4QGTJYWR6T73MZ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "MU4QGTJYWR6T73MZ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "MU4QGTJYWR6T73MZ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3640" + }, + "appliesTo" : [ ] + }, + "MU4QGTJYWR6T73MZ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "MU4QGTJYWR6T73MZ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MU4QGTJYWR6T73MZ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "MU4QGTJYWR6T73MZ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "MU4QGTJYWR6T73MZ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "MU4QGTJYWR6T73MZ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16840" + }, + "appliesTo" : [ ] + }, + "MU4QGTJYWR6T73MZ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "MU4QGTJYWR6T73MZ.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MU4QGTJYWR6T73MZ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "MU4QGTJYWR6T73MZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MU4QGTJYWR6T73MZ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "MU4QGTJYWR6T73MZ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MU4QGTJYWR6T73MZ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "MU4QGTJYWR6T73MZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MU4QGTJYWR6T73MZ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "MU4QGTJYWR6T73MZ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7164" + }, + "appliesTo" : [ ] + }, + "MU4QGTJYWR6T73MZ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "MU4QGTJYWR6T73MZ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "BUS2682V3FEX8NNV" : { + "BUS2682V3FEX8NNV.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "BUS2682V3FEX8NNV", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "BUS2682V3FEX8NNV.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "BUS2682V3FEX8NNV.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "BUS2682V3FEX8NNV.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "BUS2682V3FEX8NNV.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17999" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BUS2682V3FEX8NNV.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "BUS2682V3FEX8NNV", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "BUS2682V3FEX8NNV.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "BUS2682V3FEX8NNV.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BUS2682V3FEX8NNV.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "BUS2682V3FEX8NNV", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "BUS2682V3FEX8NNV.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "BUS2682V3FEX8NNV.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "BUS2682V3FEX8NNV.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "BUS2682V3FEX8NNV.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "53024" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BUS2682V3FEX8NNV.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "BUS2682V3FEX8NNV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BUS2682V3FEX8NNV.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "BUS2682V3FEX8NNV.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18498" + }, + "appliesTo" : [ ] + }, + "BUS2682V3FEX8NNV.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "BUS2682V3FEX8NNV.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BUS2682V3FEX8NNV.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "BUS2682V3FEX8NNV", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "BUS2682V3FEX8NNV.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "BUS2682V3FEX8NNV.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0310000000" + }, + "appliesTo" : [ ] + }, + "BUS2682V3FEX8NNV.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "BUS2682V3FEX8NNV.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9033" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BUS2682V3FEX8NNV.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "BUS2682V3FEX8NNV", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "BUS2682V3FEX8NNV.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "BUS2682V3FEX8NNV.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BUS2682V3FEX8NNV.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "BUS2682V3FEX8NNV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BUS2682V3FEX8NNV.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "BUS2682V3FEX8NNV.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BUS2682V3FEX8NNV.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "BUS2682V3FEX8NNV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BUS2682V3FEX8NNV.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "BUS2682V3FEX8NNV.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9287" + }, + "appliesTo" : [ ] + }, + "BUS2682V3FEX8NNV.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "BUS2682V3FEX8NNV.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BUS2682V3FEX8NNV.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "BUS2682V3FEX8NNV", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "BUS2682V3FEX8NNV.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "BUS2682V3FEX8NNV.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "49970" + }, + "appliesTo" : [ ] + }, + "BUS2682V3FEX8NNV.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "BUS2682V3FEX8NNV.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BUS2682V3FEX8NNV.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "BUS2682V3FEX8NNV", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "BUS2682V3FEX8NNV.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "BUS2682V3FEX8NNV.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25167" + }, + "appliesTo" : [ ] + }, + "BUS2682V3FEX8NNV.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "BUS2682V3FEX8NNV.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BUS2682V3FEX8NNV.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "BUS2682V3FEX8NNV", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "BUS2682V3FEX8NNV.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "BUS2682V3FEX8NNV.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26601" + }, + "appliesTo" : [ ] + }, + "BUS2682V3FEX8NNV.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "BUS2682V3FEX8NNV.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "S96SK9E6DW5X9ZCD" : { + "S96SK9E6DW5X9ZCD.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "S96SK9E6DW5X9ZCD", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "S96SK9E6DW5X9ZCD.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "S96SK9E6DW5X9ZCD.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3389" + }, + "appliesTo" : [ ] + }, + "S96SK9E6DW5X9ZCD.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "S96SK9E6DW5X9ZCD.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "S96SK9E6DW5X9ZCD.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "S96SK9E6DW5X9ZCD", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "S96SK9E6DW5X9ZCD.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "S96SK9E6DW5X9ZCD.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1670000000" + }, + "appliesTo" : [ ] + }, + "S96SK9E6DW5X9ZCD.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "S96SK9E6DW5X9ZCD.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1996" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "S96SK9E6DW5X9ZCD.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "S96SK9E6DW5X9ZCD", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "S96SK9E6DW5X9ZCD.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "S96SK9E6DW5X9ZCD.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5266" + }, + "appliesTo" : [ ] + }, + "S96SK9E6DW5X9ZCD.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "S96SK9E6DW5X9ZCD.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "S96SK9E6DW5X9ZCD.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "S96SK9E6DW5X9ZCD", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "S96SK9E6DW5X9ZCD.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "S96SK9E6DW5X9ZCD.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6192" + }, + "appliesTo" : [ ] + }, + "S96SK9E6DW5X9ZCD.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "S96SK9E6DW5X9ZCD.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "S96SK9E6DW5X9ZCD.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "S96SK9E6DW5X9ZCD", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "S96SK9E6DW5X9ZCD.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "S96SK9E6DW5X9ZCD.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "S96SK9E6DW5X9ZCD.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "S96SK9E6DW5X9ZCD.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9036" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "S96SK9E6DW5X9ZCD.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "S96SK9E6DW5X9ZCD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "S96SK9E6DW5X9ZCD.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "S96SK9E6DW5X9ZCD.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3872" + }, + "appliesTo" : [ ] + }, + "S96SK9E6DW5X9ZCD.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "S96SK9E6DW5X9ZCD.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "S96SK9E6DW5X9ZCD.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "S96SK9E6DW5X9ZCD", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "S96SK9E6DW5X9ZCD.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "S96SK9E6DW5X9ZCD.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3092" + }, + "appliesTo" : [ ] + }, + "S96SK9E6DW5X9ZCD.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "S96SK9E6DW5X9ZCD.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "S96SK9E6DW5X9ZCD.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "S96SK9E6DW5X9ZCD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "S96SK9E6DW5X9ZCD.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "S96SK9E6DW5X9ZCD.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "S96SK9E6DW5X9ZCD.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "S96SK9E6DW5X9ZCD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "S96SK9E6DW5X9ZCD.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "S96SK9E6DW5X9ZCD.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2003" + }, + "appliesTo" : [ ] + }, + "S96SK9E6DW5X9ZCD.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "S96SK9E6DW5X9ZCD.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "S96SK9E6DW5X9ZCD.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "S96SK9E6DW5X9ZCD", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "S96SK9E6DW5X9ZCD.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "S96SK9E6DW5X9ZCD.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "S96SK9E6DW5X9ZCD.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "S96SK9E6DW5X9ZCD", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "S96SK9E6DW5X9ZCD.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "S96SK9E6DW5X9ZCD.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "HVUDFQPHSTBP5QJC" : { + "HVUDFQPHSTBP5QJC.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "HVUDFQPHSTBP5QJC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HVUDFQPHSTBP5QJC.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "HVUDFQPHSTBP5QJC.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "413901" + }, + "appliesTo" : [ ] + }, + "HVUDFQPHSTBP5QJC.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "HVUDFQPHSTBP5QJC.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.7500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HVUDFQPHSTBP5QJC.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "HVUDFQPHSTBP5QJC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HVUDFQPHSTBP5QJC.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "HVUDFQPHSTBP5QJC.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "831827" + }, + "appliesTo" : [ ] + }, + "HVUDFQPHSTBP5QJC.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "HVUDFQPHSTBP5QJC.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "HVUDFQPHSTBP5QJC.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "HVUDFQPHSTBP5QJC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HVUDFQPHSTBP5QJC.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "HVUDFQPHSTBP5QJC.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "825929" + }, + "appliesTo" : [ ] + }, + "HVUDFQPHSTBP5QJC.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "HVUDFQPHSTBP5QJC.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HVUDFQPHSTBP5QJC.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "HVUDFQPHSTBP5QJC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HVUDFQPHSTBP5QJC.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "HVUDFQPHSTBP5QJC.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "31.5940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "HVUDFQPHSTBP5QJC.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "HVUDFQPHSTBP5QJC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HVUDFQPHSTBP5QJC.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "HVUDFQPHSTBP5QJC.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "32.5290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "HVUDFQPHSTBP5QJC.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "HVUDFQPHSTBP5QJC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HVUDFQPHSTBP5QJC.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "HVUDFQPHSTBP5QJC.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "142014" + }, + "appliesTo" : [ ] + }, + "HVUDFQPHSTBP5QJC.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "HVUDFQPHSTBP5QJC.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.2120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HVUDFQPHSTBP5QJC.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "HVUDFQPHSTBP5QJC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HVUDFQPHSTBP5QJC.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "HVUDFQPHSTBP5QJC.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "416273" + }, + "appliesTo" : [ ] + }, + "HVUDFQPHSTBP5QJC.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "HVUDFQPHSTBP5QJC.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.8400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HVUDFQPHSTBP5QJC.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "HVUDFQPHSTBP5QJC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HVUDFQPHSTBP5QJC.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "HVUDFQPHSTBP5QJC.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.0740000000" + }, + "appliesTo" : [ ] + }, + "HVUDFQPHSTBP5QJC.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "HVUDFQPHSTBP5QJC.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "140808" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HVUDFQPHSTBP5QJC.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "HVUDFQPHSTBP5QJC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HVUDFQPHSTBP5QJC.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "HVUDFQPHSTBP5QJC.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "281295" + }, + "appliesTo" : [ ] + }, + "HVUDFQPHSTBP5QJC.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "HVUDFQPHSTBP5QJC.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HVUDFQPHSTBP5QJC.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "HVUDFQPHSTBP5QJC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HVUDFQPHSTBP5QJC.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "HVUDFQPHSTBP5QJC.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "283659" + }, + "appliesTo" : [ ] + }, + "HVUDFQPHSTBP5QJC.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "HVUDFQPHSTBP5QJC.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "HVUDFQPHSTBP5QJC.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "HVUDFQPHSTBP5QJC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HVUDFQPHSTBP5QJC.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "HVUDFQPHSTBP5QJC.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "31.7890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "HVUDFQPHSTBP5QJC.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "HVUDFQPHSTBP5QJC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HVUDFQPHSTBP5QJC.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "HVUDFQPHSTBP5QJC.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "32.2400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "RUDWUCYJBCDYZNGV" : { + "RUDWUCYJBCDYZNGV.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "RUDWUCYJBCDYZNGV", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RUDWUCYJBCDYZNGV.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "RUDWUCYJBCDYZNGV.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2270" + }, + "appliesTo" : [ ] + }, + "RUDWUCYJBCDYZNGV.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "RUDWUCYJBCDYZNGV.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RUDWUCYJBCDYZNGV.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "RUDWUCYJBCDYZNGV", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "RUDWUCYJBCDYZNGV.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "RUDWUCYJBCDYZNGV.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1178" + }, + "appliesTo" : [ ] + }, + "RUDWUCYJBCDYZNGV.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "RUDWUCYJBCDYZNGV.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RUDWUCYJBCDYZNGV.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "RUDWUCYJBCDYZNGV", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "RUDWUCYJBCDYZNGV.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "RUDWUCYJBCDYZNGV.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1020" + }, + "appliesTo" : [ ] + }, + "RUDWUCYJBCDYZNGV.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "RUDWUCYJBCDYZNGV.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RUDWUCYJBCDYZNGV.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "RUDWUCYJBCDYZNGV", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RUDWUCYJBCDYZNGV.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "RUDWUCYJBCDYZNGV.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "970" + }, + "appliesTo" : [ ] + }, + "RUDWUCYJBCDYZNGV.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "RUDWUCYJBCDYZNGV.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RUDWUCYJBCDYZNGV.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "RUDWUCYJBCDYZNGV", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "RUDWUCYJBCDYZNGV.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "RUDWUCYJBCDYZNGV.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RUDWUCYJBCDYZNGV.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "RUDWUCYJBCDYZNGV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RUDWUCYJBCDYZNGV.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "RUDWUCYJBCDYZNGV.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RUDWUCYJBCDYZNGV.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "RUDWUCYJBCDYZNGV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RUDWUCYJBCDYZNGV.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "RUDWUCYJBCDYZNGV.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "639" + }, + "appliesTo" : [ ] + }, + "RUDWUCYJBCDYZNGV.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "RUDWUCYJBCDYZNGV.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RUDWUCYJBCDYZNGV.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "RUDWUCYJBCDYZNGV", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "RUDWUCYJBCDYZNGV.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "RUDWUCYJBCDYZNGV.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RUDWUCYJBCDYZNGV.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "RUDWUCYJBCDYZNGV", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "RUDWUCYJBCDYZNGV.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "RUDWUCYJBCDYZNGV.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0720000000" + }, + "appliesTo" : [ ] + }, + "RUDWUCYJBCDYZNGV.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "RUDWUCYJBCDYZNGV.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "416" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RUDWUCYJBCDYZNGV.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "RUDWUCYJBCDYZNGV", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "RUDWUCYJBCDYZNGV.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "RUDWUCYJBCDYZNGV.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2944" + }, + "appliesTo" : [ ] + }, + "RUDWUCYJBCDYZNGV.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "RUDWUCYJBCDYZNGV.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RUDWUCYJBCDYZNGV.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "RUDWUCYJBCDYZNGV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RUDWUCYJBCDYZNGV.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "RUDWUCYJBCDYZNGV.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1270" + }, + "appliesTo" : [ ] + }, + "RUDWUCYJBCDYZNGV.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "RUDWUCYJBCDYZNGV.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "8SPMKN7PWFUUUK25" : { + "8SPMKN7PWFUUUK25.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "8SPMKN7PWFUUUK25", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8SPMKN7PWFUUUK25.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "8SPMKN7PWFUUUK25.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "8SPMKN7PWFUUUK25.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "8SPMKN7PWFUUUK25.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5878" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8SPMKN7PWFUUUK25.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "8SPMKN7PWFUUUK25", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8SPMKN7PWFUUUK25.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "8SPMKN7PWFUUUK25.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4956" + }, + "appliesTo" : [ ] + }, + "8SPMKN7PWFUUUK25.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "8SPMKN7PWFUUUK25.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8SPMKN7PWFUUUK25.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "8SPMKN7PWFUUUK25", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8SPMKN7PWFUUUK25.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "8SPMKN7PWFUUUK25.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8SPMKN7PWFUUUK25.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "8SPMKN7PWFUUUK25", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "8SPMKN7PWFUUUK25.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "8SPMKN7PWFUUUK25.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2116" + }, + "appliesTo" : [ ] + }, + "8SPMKN7PWFUUUK25.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "8SPMKN7PWFUUUK25.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8SPMKN7PWFUUUK25.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "8SPMKN7PWFUUUK25", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8SPMKN7PWFUUUK25.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "8SPMKN7PWFUUUK25.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "8SPMKN7PWFUUUK25.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "8SPMKN7PWFUUUK25.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13131" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8SPMKN7PWFUUUK25.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "8SPMKN7PWFUUUK25", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8SPMKN7PWFUUUK25.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "8SPMKN7PWFUUUK25.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8SPMKN7PWFUUUK25.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "8SPMKN7PWFUUUK25", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8SPMKN7PWFUUUK25.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "8SPMKN7PWFUUUK25.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8SPMKN7PWFUUUK25.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "8SPMKN7PWFUUUK25", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8SPMKN7PWFUUUK25.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "8SPMKN7PWFUUUK25.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2418" + }, + "appliesTo" : [ ] + }, + "8SPMKN7PWFUUUK25.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "8SPMKN7PWFUUUK25.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8SPMKN7PWFUUUK25.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "8SPMKN7PWFUUUK25", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8SPMKN7PWFUUUK25.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "8SPMKN7PWFUUUK25.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8SPMKN7PWFUUUK25.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "8SPMKN7PWFUUUK25", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "8SPMKN7PWFUUUK25.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "8SPMKN7PWFUUUK25.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4336" + }, + "appliesTo" : [ ] + }, + "8SPMKN7PWFUUUK25.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "8SPMKN7PWFUUUK25.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8SPMKN7PWFUUUK25.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "8SPMKN7PWFUUUK25", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8SPMKN7PWFUUUK25.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "8SPMKN7PWFUUUK25.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5285" + }, + "appliesTo" : [ ] + }, + "8SPMKN7PWFUUUK25.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "8SPMKN7PWFUUUK25.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8SPMKN7PWFUUUK25.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "8SPMKN7PWFUUUK25", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "8SPMKN7PWFUUUK25.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "8SPMKN7PWFUUUK25.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11568" + }, + "appliesTo" : [ ] + }, + "8SPMKN7PWFUUUK25.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "8SPMKN7PWFUUUK25.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "UEHZ36662EWM4RGB" : { + "UEHZ36662EWM4RGB.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "UEHZ36662EWM4RGB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UEHZ36662EWM4RGB.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "UEHZ36662EWM4RGB.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "UEHZ36662EWM4RGB.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "UEHZ36662EWM4RGB.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "206213" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "UEHZ36662EWM4RGB.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "UEHZ36662EWM4RGB", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "UEHZ36662EWM4RGB.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "UEHZ36662EWM4RGB.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.4670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "UEHZ36662EWM4RGB.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "UEHZ36662EWM4RGB", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "UEHZ36662EWM4RGB.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "UEHZ36662EWM4RGB.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "350968" + }, + "appliesTo" : [ ] + }, + "UEHZ36662EWM4RGB.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "UEHZ36662EWM4RGB.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "UEHZ36662EWM4RGB.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "UEHZ36662EWM4RGB", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "UEHZ36662EWM4RGB.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "UEHZ36662EWM4RGB.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "390006" + }, + "appliesTo" : [ ] + }, + "UEHZ36662EWM4RGB.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "UEHZ36662EWM4RGB.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "UEHZ36662EWM4RGB.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "UEHZ36662EWM4RGB", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "UEHZ36662EWM4RGB.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "UEHZ36662EWM4RGB.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "181747" + }, + "appliesTo" : [ ] + }, + "UEHZ36662EWM4RGB.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "UEHZ36662EWM4RGB.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.9160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "UEHZ36662EWM4RGB.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "UEHZ36662EWM4RGB", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "UEHZ36662EWM4RGB.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "UEHZ36662EWM4RGB.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "94394" + }, + "appliesTo" : [ ] + }, + "UEHZ36662EWM4RGB.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "UEHZ36662EWM4RGB.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.7760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "UEHZ36662EWM4RGB.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "UEHZ36662EWM4RGB", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "UEHZ36662EWM4RGB.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "UEHZ36662EWM4RGB.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "197404" + }, + "appliesTo" : [ ] + }, + "UEHZ36662EWM4RGB.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "UEHZ36662EWM4RGB.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "UEHZ36662EWM4RGB.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "UEHZ36662EWM4RGB", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "UEHZ36662EWM4RGB.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "UEHZ36662EWM4RGB.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "186043" + }, + "appliesTo" : [ ] + }, + "UEHZ36662EWM4RGB.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "UEHZ36662EWM4RGB.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "UEHZ36662EWM4RGB.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "UEHZ36662EWM4RGB", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "UEHZ36662EWM4RGB.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "UEHZ36662EWM4RGB.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.7540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "UEHZ36662EWM4RGB.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "UEHZ36662EWM4RGB", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "UEHZ36662EWM4RGB.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "UEHZ36662EWM4RGB.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "22.3340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "UEHZ36662EWM4RGB.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "UEHZ36662EWM4RGB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UEHZ36662EWM4RGB.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "UEHZ36662EWM4RGB.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "104684" + }, + "appliesTo" : [ ] + }, + "UEHZ36662EWM4RGB.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "UEHZ36662EWM4RGB.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "11.9500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "UEHZ36662EWM4RGB.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "UEHZ36662EWM4RGB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UEHZ36662EWM4RGB.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "UEHZ36662EWM4RGB.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "24.8010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "FRR3BPV6Y433HGXY" : { + "FRR3BPV6Y433HGXY.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "FRR3BPV6Y433HGXY", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "FRR3BPV6Y433HGXY.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "FRR3BPV6Y433HGXY.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "43263" + }, + "appliesTo" : [ ] + }, + "FRR3BPV6Y433HGXY.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "FRR3BPV6Y433HGXY.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FRR3BPV6Y433HGXY.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "FRR3BPV6Y433HGXY", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "FRR3BPV6Y433HGXY.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "FRR3BPV6Y433HGXY.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FRR3BPV6Y433HGXY.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "FRR3BPV6Y433HGXY", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "FRR3BPV6Y433HGXY.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "FRR3BPV6Y433HGXY.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33445" + }, + "appliesTo" : [ ] + }, + "FRR3BPV6Y433HGXY.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "FRR3BPV6Y433HGXY.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FRR3BPV6Y433HGXY.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "FRR3BPV6Y433HGXY", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "FRR3BPV6Y433HGXY.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "FRR3BPV6Y433HGXY.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "65551" + }, + "appliesTo" : [ ] + }, + "FRR3BPV6Y433HGXY.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "FRR3BPV6Y433HGXY.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FRR3BPV6Y433HGXY.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "FRR3BPV6Y433HGXY", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "FRR3BPV6Y433HGXY.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "FRR3BPV6Y433HGXY.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4100000000" + }, + "appliesTo" : [ ] + }, + "FRR3BPV6Y433HGXY.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "FRR3BPV6Y433HGXY.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12353" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FRR3BPV6Y433HGXY.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "FRR3BPV6Y433HGXY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FRR3BPV6Y433HGXY.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "FRR3BPV6Y433HGXY.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "41755" + }, + "appliesTo" : [ ] + }, + "FRR3BPV6Y433HGXY.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "FRR3BPV6Y433HGXY.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FRR3BPV6Y433HGXY.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "FRR3BPV6Y433HGXY", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "FRR3BPV6Y433HGXY.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "FRR3BPV6Y433HGXY.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FRR3BPV6Y433HGXY.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "FRR3BPV6Y433HGXY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FRR3BPV6Y433HGXY.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "FRR3BPV6Y433HGXY.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FRR3BPV6Y433HGXY.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "FRR3BPV6Y433HGXY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FRR3BPV6Y433HGXY.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "FRR3BPV6Y433HGXY.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21155" + }, + "appliesTo" : [ ] + }, + "FRR3BPV6Y433HGXY.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "FRR3BPV6Y433HGXY.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FRR3BPV6Y433HGXY.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "FRR3BPV6Y433HGXY", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "FRR3BPV6Y433HGXY.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "FRR3BPV6Y433HGXY.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "FRR3BPV6Y433HGXY.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "FRR3BPV6Y433HGXY.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24212" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FRR3BPV6Y433HGXY.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "FRR3BPV6Y433HGXY", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "FRR3BPV6Y433HGXY.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "FRR3BPV6Y433HGXY.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23012" + }, + "appliesTo" : [ ] + }, + "FRR3BPV6Y433HGXY.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "FRR3BPV6Y433HGXY.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "298AWKD7RC822MQJ" : { + "298AWKD7RC822MQJ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "298AWKD7RC822MQJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "298AWKD7RC822MQJ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "298AWKD7RC822MQJ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "89352" + }, + "appliesTo" : [ ] + }, + "298AWKD7RC822MQJ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "298AWKD7RC822MQJ.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "298AWKD7RC822MQJ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "298AWKD7RC822MQJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "298AWKD7RC822MQJ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "298AWKD7RC822MQJ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.5760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "298AWKD7RC822MQJ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "298AWKD7RC822MQJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "298AWKD7RC822MQJ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "298AWKD7RC822MQJ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.9580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "298AWKD7RC822MQJ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "298AWKD7RC822MQJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "298AWKD7RC822MQJ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "298AWKD7RC822MQJ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47146" + }, + "appliesTo" : [ ] + }, + "298AWKD7RC822MQJ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "298AWKD7RC822MQJ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.5120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "298AWKD7RC822MQJ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "298AWKD7RC822MQJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "298AWKD7RC822MQJ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "298AWKD7RC822MQJ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "40997" + }, + "appliesTo" : [ ] + }, + "298AWKD7RC822MQJ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "298AWKD7RC822MQJ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.8100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "298AWKD7RC822MQJ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "298AWKD7RC822MQJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "298AWKD7RC822MQJ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "298AWKD7RC822MQJ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "298AWKD7RC822MQJ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "298AWKD7RC822MQJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "298AWKD7RC822MQJ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "298AWKD7RC822MQJ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "93546" + }, + "appliesTo" : [ ] + }, + "298AWKD7RC822MQJ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "298AWKD7RC822MQJ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "298AWKD7RC822MQJ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "298AWKD7RC822MQJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "298AWKD7RC822MQJ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "298AWKD7RC822MQJ.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "298AWKD7RC822MQJ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "298AWKD7RC822MQJ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "204817" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "298AWKD7RC822MQJ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "298AWKD7RC822MQJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "298AWKD7RC822MQJ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "298AWKD7RC822MQJ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "11.4320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "298AWKD7RC822MQJ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "298AWKD7RC822MQJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "298AWKD7RC822MQJ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "298AWKD7RC822MQJ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "102756" + }, + "appliesTo" : [ ] + }, + "298AWKD7RC822MQJ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "298AWKD7RC822MQJ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.0400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "298AWKD7RC822MQJ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "298AWKD7RC822MQJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "298AWKD7RC822MQJ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "298AWKD7RC822MQJ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "81493" + }, + "appliesTo" : [ ] + }, + "298AWKD7RC822MQJ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "298AWKD7RC822MQJ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "298AWKD7RC822MQJ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "298AWKD7RC822MQJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "298AWKD7RC822MQJ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "298AWKD7RC822MQJ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "171398" + }, + "appliesTo" : [ ] + }, + "298AWKD7RC822MQJ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "298AWKD7RC822MQJ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "F3HZNTTFXFDM68NR" : { + "F3HZNTTFXFDM68NR.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "F3HZNTTFXFDM68NR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "F3HZNTTFXFDM68NR.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "F3HZNTTFXFDM68NR.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "F3HZNTTFXFDM68NR.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "F3HZNTTFXFDM68NR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "F3HZNTTFXFDM68NR.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "F3HZNTTFXFDM68NR.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "734" + }, + "appliesTo" : [ ] + }, + "F3HZNTTFXFDM68NR.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "F3HZNTTFXFDM68NR.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "F3HZNTTFXFDM68NR.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "F3HZNTTFXFDM68NR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "F3HZNTTFXFDM68NR.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "F3HZNTTFXFDM68NR.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "F3HZNTTFXFDM68NR.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "F3HZNTTFXFDM68NR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "F3HZNTTFXFDM68NR.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "F3HZNTTFXFDM68NR.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1353" + }, + "appliesTo" : [ ] + }, + "F3HZNTTFXFDM68NR.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "F3HZNTTFXFDM68NR.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "F3HZNTTFXFDM68NR.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "F3HZNTTFXFDM68NR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "F3HZNTTFXFDM68NR.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "F3HZNTTFXFDM68NR.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1485" + }, + "appliesTo" : [ ] + }, + "F3HZNTTFXFDM68NR.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "F3HZNTTFXFDM68NR.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "F3HZNTTFXFDM68NR.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "F3HZNTTFXFDM68NR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "F3HZNTTFXFDM68NR.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "F3HZNTTFXFDM68NR.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2591" + }, + "appliesTo" : [ ] + }, + "F3HZNTTFXFDM68NR.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "F3HZNTTFXFDM68NR.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "F3HZNTTFXFDM68NR.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "F3HZNTTFXFDM68NR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "F3HZNTTFXFDM68NR.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "F3HZNTTFXFDM68NR.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1255" + }, + "appliesTo" : [ ] + }, + "F3HZNTTFXFDM68NR.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "F3HZNTTFXFDM68NR.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "F3HZNTTFXFDM68NR.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "F3HZNTTFXFDM68NR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "F3HZNTTFXFDM68NR.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "F3HZNTTFXFDM68NR.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1386" + }, + "appliesTo" : [ ] + }, + "F3HZNTTFXFDM68NR.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "F3HZNTTFXFDM68NR.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "F3HZNTTFXFDM68NR.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "F3HZNTTFXFDM68NR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "F3HZNTTFXFDM68NR.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "F3HZNTTFXFDM68NR.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "F3HZNTTFXFDM68NR.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "F3HZNTTFXFDM68NR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "F3HZNTTFXFDM68NR.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "F3HZNTTFXFDM68NR.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0690000000" + }, + "appliesTo" : [ ] + }, + "F3HZNTTFXFDM68NR.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "F3HZNTTFXFDM68NR.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "667" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "F3HZNTTFXFDM68NR.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "F3HZNTTFXFDM68NR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "F3HZNTTFXFDM68NR.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "F3HZNTTFXFDM68NR.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "F3HZNTTFXFDM68NR.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "F3HZNTTFXFDM68NR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "F3HZNTTFXFDM68NR.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "F3HZNTTFXFDM68NR.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2919" + }, + "appliesTo" : [ ] + }, + "F3HZNTTFXFDM68NR.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "F3HZNTTFXFDM68NR.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "SV6J8GK44ZN2FKNF" : { + "SV6J8GK44ZN2FKNF.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "SV6J8GK44ZN2FKNF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SV6J8GK44ZN2FKNF.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "SV6J8GK44ZN2FKNF.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9689000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SV6J8GK44ZN2FKNF.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "SV6J8GK44ZN2FKNF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SV6J8GK44ZN2FKNF.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "SV6J8GK44ZN2FKNF.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17086" + }, + "appliesTo" : [ ] + }, + "SV6J8GK44ZN2FKNF.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "SV6J8GK44ZN2FKNF.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9505000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SV6J8GK44ZN2FKNF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SV6J8GK44ZN2FKNF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SV6J8GK44ZN2FKNF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SV6J8GK44ZN2FKNF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25308" + }, + "appliesTo" : [ ] + }, + "SV6J8GK44ZN2FKNF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SV6J8GK44ZN2FKNF.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SV6J8GK44ZN2FKNF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SV6J8GK44ZN2FKNF", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "SV6J8GK44ZN2FKNF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SV6J8GK44ZN2FKNF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32430" + }, + "appliesTo" : [ ] + }, + "SV6J8GK44ZN2FKNF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SV6J8GK44ZN2FKNF.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SV6J8GK44ZN2FKNF.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "SV6J8GK44ZN2FKNF", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "SV6J8GK44ZN2FKNF.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "SV6J8GK44ZN2FKNF.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SV6J8GK44ZN2FKNF.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "SV6J8GK44ZN2FKNF", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "SV6J8GK44ZN2FKNF.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "SV6J8GK44ZN2FKNF.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "36889" + }, + "appliesTo" : [ ] + }, + "SV6J8GK44ZN2FKNF.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "SV6J8GK44ZN2FKNF.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SV6J8GK44ZN2FKNF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SV6J8GK44ZN2FKNF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SV6J8GK44ZN2FKNF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SV6J8GK44ZN2FKNF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "60967" + }, + "appliesTo" : [ ] + }, + "SV6J8GK44ZN2FKNF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SV6J8GK44ZN2FKNF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SV6J8GK44ZN2FKNF.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "SV6J8GK44ZN2FKNF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SV6J8GK44ZN2FKNF.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "SV6J8GK44ZN2FKNF.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SV6J8GK44ZN2FKNF.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "SV6J8GK44ZN2FKNF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SV6J8GK44ZN2FKNF.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "SV6J8GK44ZN2FKNF.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33935" + }, + "appliesTo" : [ ] + }, + "SV6J8GK44ZN2FKNF.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "SV6J8GK44ZN2FKNF.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SV6J8GK44ZN2FKNF.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "SV6J8GK44ZN2FKNF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SV6J8GK44ZN2FKNF.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "SV6J8GK44ZN2FKNF.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SV6J8GK44ZN2FKNF.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "SV6J8GK44ZN2FKNF.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "72303" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SV6J8GK44ZN2FKNF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SV6J8GK44ZN2FKNF", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "SV6J8GK44ZN2FKNF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SV6J8GK44ZN2FKNF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12912" + }, + "appliesTo" : [ ] + }, + "SV6J8GK44ZN2FKNF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SV6J8GK44ZN2FKNF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SV6J8GK44ZN2FKNF.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SV6J8GK44ZN2FKNF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SV6J8GK44ZN2FKNF.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SV6J8GK44ZN2FKNF.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "YQXXJJ49N744B7HM" : { + "YQXXJJ49N744B7HM.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YQXXJJ49N744B7HM", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "YQXXJJ49N744B7HM.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YQXXJJ49N744B7HM.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YQXXJJ49N744B7HM.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YQXXJJ49N744B7HM.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18818" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YQXXJJ49N744B7HM.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YQXXJJ49N744B7HM", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "YQXXJJ49N744B7HM.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YQXXJJ49N744B7HM.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0940000000" + }, + "appliesTo" : [ ] + }, + "YQXXJJ49N744B7HM.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YQXXJJ49N744B7HM.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9583" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YQXXJJ49N744B7HM.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "YQXXJJ49N744B7HM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YQXXJJ49N744B7HM.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "YQXXJJ49N744B7HM.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10896" + }, + "appliesTo" : [ ] + }, + "YQXXJJ49N744B7HM.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "YQXXJJ49N744B7HM.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YQXXJJ49N744B7HM.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "YQXXJJ49N744B7HM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YQXXJJ49N744B7HM.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "YQXXJJ49N744B7HM.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YQXXJJ49N744B7HM.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "YQXXJJ49N744B7HM", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "YQXXJJ49N744B7HM.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "YQXXJJ49N744B7HM.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YQXXJJ49N744B7HM.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "YQXXJJ49N744B7HM.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "48020" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YQXXJJ49N744B7HM.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YQXXJJ49N744B7HM", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "YQXXJJ49N744B7HM.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YQXXJJ49N744B7HM.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18818" + }, + "appliesTo" : [ ] + }, + "YQXXJJ49N744B7HM.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YQXXJJ49N744B7HM.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YQXXJJ49N744B7HM.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YQXXJJ49N744B7HM", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "YQXXJJ49N744B7HM.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YQXXJJ49N744B7HM.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35691" + }, + "appliesTo" : [ ] + }, + "YQXXJJ49N744B7HM.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YQXXJJ49N744B7HM.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YQXXJJ49N744B7HM.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "YQXXJJ49N744B7HM", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "YQXXJJ49N744B7HM.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "YQXXJJ49N744B7HM.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24447" + }, + "appliesTo" : [ ] + }, + "YQXXJJ49N744B7HM.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "YQXXJJ49N744B7HM.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YQXXJJ49N744B7HM.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "YQXXJJ49N744B7HM", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "YQXXJJ49N744B7HM.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "YQXXJJ49N744B7HM.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YQXXJJ49N744B7HM.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "YQXXJJ49N744B7HM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YQXXJJ49N744B7HM.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "YQXXJJ49N744B7HM.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21392" + }, + "appliesTo" : [ ] + }, + "YQXXJJ49N744B7HM.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "YQXXJJ49N744B7HM.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YQXXJJ49N744B7HM.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YQXXJJ49N744B7HM", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "YQXXJJ49N744B7HM.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YQXXJJ49N744B7HM.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YQXXJJ49N744B7HM.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "YQXXJJ49N744B7HM", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "YQXXJJ49N744B7HM.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "YQXXJJ49N744B7HM.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "5KPPP37EUJ6SDK38" : { + "5KPPP37EUJ6SDK38.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "5KPPP37EUJ6SDK38", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5KPPP37EUJ6SDK38.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "5KPPP37EUJ6SDK38.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31530" + }, + "appliesTo" : [ ] + }, + "5KPPP37EUJ6SDK38.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "5KPPP37EUJ6SDK38.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5KPPP37EUJ6SDK38.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "5KPPP37EUJ6SDK38", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5KPPP37EUJ6SDK38.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "5KPPP37EUJ6SDK38.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15786" + }, + "appliesTo" : [ ] + }, + "5KPPP37EUJ6SDK38.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "5KPPP37EUJ6SDK38.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5KPPP37EUJ6SDK38.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "5KPPP37EUJ6SDK38", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5KPPP37EUJ6SDK38.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "5KPPP37EUJ6SDK38.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "92464" + }, + "appliesTo" : [ ] + }, + "5KPPP37EUJ6SDK38.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "5KPPP37EUJ6SDK38.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5KPPP37EUJ6SDK38.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "5KPPP37EUJ6SDK38", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5KPPP37EUJ6SDK38.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "5KPPP37EUJ6SDK38.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5667000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "5KPPP37EUJ6SDK38.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "5KPPP37EUJ6SDK38", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5KPPP37EUJ6SDK38.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "5KPPP37EUJ6SDK38.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "93250" + }, + "appliesTo" : [ ] + }, + "5KPPP37EUJ6SDK38.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "5KPPP37EUJ6SDK38.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "5KPPP37EUJ6SDK38.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "5KPPP37EUJ6SDK38", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5KPPP37EUJ6SDK38.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "5KPPP37EUJ6SDK38.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6158000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "5KPPP37EUJ6SDK38.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "5KPPP37EUJ6SDK38", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5KPPP37EUJ6SDK38.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "5KPPP37EUJ6SDK38.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46673" + }, + "appliesTo" : [ ] + }, + "5KPPP37EUJ6SDK38.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "5KPPP37EUJ6SDK38.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "5KPPP37EUJ6SDK38.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "5KPPP37EUJ6SDK38", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5KPPP37EUJ6SDK38.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "5KPPP37EUJ6SDK38.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46358" + }, + "appliesTo" : [ ] + }, + "5KPPP37EUJ6SDK38.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "5KPPP37EUJ6SDK38.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5KPPP37EUJ6SDK38.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "5KPPP37EUJ6SDK38", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5KPPP37EUJ6SDK38.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "5KPPP37EUJ6SDK38.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "5KPPP37EUJ6SDK38.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "5KPPP37EUJ6SDK38", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5KPPP37EUJ6SDK38.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "5KPPP37EUJ6SDK38.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "5KPPP37EUJ6SDK38.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "5KPPP37EUJ6SDK38.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31834" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "5KPPP37EUJ6SDK38.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "5KPPP37EUJ6SDK38", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5KPPP37EUJ6SDK38.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "5KPPP37EUJ6SDK38.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5408000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "5KPPP37EUJ6SDK38.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "5KPPP37EUJ6SDK38", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5KPPP37EUJ6SDK38.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "5KPPP37EUJ6SDK38.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15941" + }, + "appliesTo" : [ ] + }, + "5KPPP37EUJ6SDK38.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "5KPPP37EUJ6SDK38.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8197000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "RXE37MRXKF33M9T8" : { + "RXE37MRXKF33M9T8.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "RXE37MRXKF33M9T8", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "RXE37MRXKF33M9T8.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "RXE37MRXKF33M9T8.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RXE37MRXKF33M9T8.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "RXE37MRXKF33M9T8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RXE37MRXKF33M9T8.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "RXE37MRXKF33M9T8.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3330000000" + }, + "appliesTo" : [ ] + }, + "RXE37MRXKF33M9T8.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "RXE37MRXKF33M9T8.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2977" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RXE37MRXKF33M9T8.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "RXE37MRXKF33M9T8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RXE37MRXKF33M9T8.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "RXE37MRXKF33M9T8.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RXE37MRXKF33M9T8.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "RXE37MRXKF33M9T8", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RXE37MRXKF33M9T8.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "RXE37MRXKF33M9T8.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "RXE37MRXKF33M9T8.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "RXE37MRXKF33M9T8.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9754" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RXE37MRXKF33M9T8.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "RXE37MRXKF33M9T8", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "RXE37MRXKF33M9T8.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "RXE37MRXKF33M9T8.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8134" + }, + "appliesTo" : [ ] + }, + "RXE37MRXKF33M9T8.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "RXE37MRXKF33M9T8.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RXE37MRXKF33M9T8.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "RXE37MRXKF33M9T8", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "RXE37MRXKF33M9T8.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "RXE37MRXKF33M9T8.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RXE37MRXKF33M9T8.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "RXE37MRXKF33M9T8", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RXE37MRXKF33M9T8.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "RXE37MRXKF33M9T8.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2100000000" + }, + "appliesTo" : [ ] + }, + "RXE37MRXKF33M9T8.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "RXE37MRXKF33M9T8.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4857" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RXE37MRXKF33M9T8.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "RXE37MRXKF33M9T8", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RXE37MRXKF33M9T8.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "RXE37MRXKF33M9T8.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5077" + }, + "appliesTo" : [ ] + }, + "RXE37MRXKF33M9T8.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "RXE37MRXKF33M9T8.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RXE37MRXKF33M9T8.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "RXE37MRXKF33M9T8", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "RXE37MRXKF33M9T8.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "RXE37MRXKF33M9T8.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3062" + }, + "appliesTo" : [ ] + }, + "RXE37MRXKF33M9T8.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "RXE37MRXKF33M9T8.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RXE37MRXKF33M9T8.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "RXE37MRXKF33M9T8", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "RXE37MRXKF33M9T8.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "RXE37MRXKF33M9T8.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13583" + }, + "appliesTo" : [ ] + }, + "RXE37MRXKF33M9T8.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "RXE37MRXKF33M9T8.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RXE37MRXKF33M9T8.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "RXE37MRXKF33M9T8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RXE37MRXKF33M9T8.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "RXE37MRXKF33M9T8.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5781" + }, + "appliesTo" : [ ] + }, + "RXE37MRXKF33M9T8.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "RXE37MRXKF33M9T8.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "QURFZDZRCJFUV9KZ" : { + "QURFZDZRCJFUV9KZ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QURFZDZRCJFUV9KZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QURFZDZRCJFUV9KZ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QURFZDZRCJFUV9KZ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5534" + }, + "appliesTo" : [ ] + }, + "QURFZDZRCJFUV9KZ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QURFZDZRCJFUV9KZ.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QURFZDZRCJFUV9KZ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QURFZDZRCJFUV9KZ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "QURFZDZRCJFUV9KZ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QURFZDZRCJFUV9KZ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QURFZDZRCJFUV9KZ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "QURFZDZRCJFUV9KZ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QURFZDZRCJFUV9KZ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "QURFZDZRCJFUV9KZ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4400000000" + }, + "appliesTo" : [ ] + }, + "QURFZDZRCJFUV9KZ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "QURFZDZRCJFUV9KZ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8132" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QURFZDZRCJFUV9KZ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "QURFZDZRCJFUV9KZ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "QURFZDZRCJFUV9KZ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "QURFZDZRCJFUV9KZ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QURFZDZRCJFUV9KZ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QURFZDZRCJFUV9KZ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "QURFZDZRCJFUV9KZ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QURFZDZRCJFUV9KZ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13601" + }, + "appliesTo" : [ ] + }, + "QURFZDZRCJFUV9KZ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QURFZDZRCJFUV9KZ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QURFZDZRCJFUV9KZ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QURFZDZRCJFUV9KZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QURFZDZRCJFUV9KZ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QURFZDZRCJFUV9KZ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3012" + }, + "appliesTo" : [ ] + }, + "QURFZDZRCJFUV9KZ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QURFZDZRCJFUV9KZ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QURFZDZRCJFUV9KZ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QURFZDZRCJFUV9KZ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "QURFZDZRCJFUV9KZ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QURFZDZRCJFUV9KZ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7021" + }, + "appliesTo" : [ ] + }, + "QURFZDZRCJFUV9KZ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QURFZDZRCJFUV9KZ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QURFZDZRCJFUV9KZ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "QURFZDZRCJFUV9KZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QURFZDZRCJFUV9KZ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "QURFZDZRCJFUV9KZ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7951" + }, + "appliesTo" : [ ] + }, + "QURFZDZRCJFUV9KZ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "QURFZDZRCJFUV9KZ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QURFZDZRCJFUV9KZ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "QURFZDZRCJFUV9KZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QURFZDZRCJFUV9KZ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "QURFZDZRCJFUV9KZ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QURFZDZRCJFUV9KZ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "QURFZDZRCJFUV9KZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QURFZDZRCJFUV9KZ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "QURFZDZRCJFUV9KZ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3476" + }, + "appliesTo" : [ ] + }, + "QURFZDZRCJFUV9KZ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "QURFZDZRCJFUV9KZ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QURFZDZRCJFUV9KZ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "QURFZDZRCJFUV9KZ", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "QURFZDZRCJFUV9KZ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "QURFZDZRCJFUV9KZ.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QURFZDZRCJFUV9KZ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "QURFZDZRCJFUV9KZ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19292" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "GEXPJU4GWZZ6DSTT" : { + "GEXPJU4GWZZ6DSTT.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "GEXPJU4GWZZ6DSTT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GEXPJU4GWZZ6DSTT.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "GEXPJU4GWZZ6DSTT.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "31.6700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "GEXPJU4GWZZ6DSTT.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "GEXPJU4GWZZ6DSTT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GEXPJU4GWZZ6DSTT.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "GEXPJU4GWZZ6DSTT.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "137729" + }, + "appliesTo" : [ ] + }, + "GEXPJU4GWZZ6DSTT.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "GEXPJU4GWZZ6DSTT.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.7230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GEXPJU4GWZZ6DSTT.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "GEXPJU4GWZZ6DSTT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GEXPJU4GWZZ6DSTT.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "GEXPJU4GWZZ6DSTT.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "135158" + }, + "appliesTo" : [ ] + }, + "GEXPJU4GWZZ6DSTT.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "GEXPJU4GWZZ6DSTT.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.4290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GEXPJU4GWZZ6DSTT.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "GEXPJU4GWZZ6DSTT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GEXPJU4GWZZ6DSTT.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "GEXPJU4GWZZ6DSTT.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "31.0540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GEXPJU4GWZZ6DSTT.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "GEXPJU4GWZZ6DSTT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GEXPJU4GWZZ6DSTT.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "GEXPJU4GWZZ6DSTT.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "29.0880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GEXPJU4GWZZ6DSTT.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "GEXPJU4GWZZ6DSTT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GEXPJU4GWZZ6DSTT.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "GEXPJU4GWZZ6DSTT.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "29.4090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "GEXPJU4GWZZ6DSTT.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "GEXPJU4GWZZ6DSTT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GEXPJU4GWZZ6DSTT.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "GEXPJU4GWZZ6DSTT.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.6130000000" + }, + "appliesTo" : [ ] + }, + "GEXPJU4GWZZ6DSTT.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "GEXPJU4GWZZ6DSTT.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "384039" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GEXPJU4GWZZ6DSTT.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "GEXPJU4GWZZ6DSTT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GEXPJU4GWZZ6DSTT.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "GEXPJU4GWZZ6DSTT.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "757124" + }, + "appliesTo" : [ ] + }, + "GEXPJU4GWZZ6DSTT.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "GEXPJU4GWZZ6DSTT.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GEXPJU4GWZZ6DSTT.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "GEXPJU4GWZZ6DSTT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GEXPJU4GWZZ6DSTT.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "GEXPJU4GWZZ6DSTT.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "274670" + }, + "appliesTo" : [ ] + }, + "GEXPJU4GWZZ6DSTT.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "GEXPJU4GWZZ6DSTT.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "GEXPJU4GWZZ6DSTT.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "GEXPJU4GWZZ6DSTT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GEXPJU4GWZZ6DSTT.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "GEXPJU4GWZZ6DSTT.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "766879" + }, + "appliesTo" : [ ] + }, + "GEXPJU4GWZZ6DSTT.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "GEXPJU4GWZZ6DSTT.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "GEXPJU4GWZZ6DSTT.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "GEXPJU4GWZZ6DSTT", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "GEXPJU4GWZZ6DSTT.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "GEXPJU4GWZZ6DSTT.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "269630" + }, + "appliesTo" : [ ] + }, + "GEXPJU4GWZZ6DSTT.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "GEXPJU4GWZZ6DSTT.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GEXPJU4GWZZ6DSTT.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "GEXPJU4GWZZ6DSTT", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "GEXPJU4GWZZ6DSTT.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "GEXPJU4GWZZ6DSTT.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "380127" + }, + "appliesTo" : [ ] + }, + "GEXPJU4GWZZ6DSTT.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "GEXPJU4GWZZ6DSTT.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.4650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "CW2JQMRMB2W7GWB3" : { + "CW2JQMRMB2W7GWB3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "CW2JQMRMB2W7GWB3", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "CW2JQMRMB2W7GWB3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "CW2JQMRMB2W7GWB3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7025" + }, + "appliesTo" : [ ] + }, + "CW2JQMRMB2W7GWB3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "CW2JQMRMB2W7GWB3.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CW2JQMRMB2W7GWB3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "CW2JQMRMB2W7GWB3", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "CW2JQMRMB2W7GWB3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "CW2JQMRMB2W7GWB3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2867" + }, + "appliesTo" : [ ] + }, + "CW2JQMRMB2W7GWB3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "CW2JQMRMB2W7GWB3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CW2JQMRMB2W7GWB3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "CW2JQMRMB2W7GWB3", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "CW2JQMRMB2W7GWB3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "CW2JQMRMB2W7GWB3.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CW2JQMRMB2W7GWB3.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "CW2JQMRMB2W7GWB3", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "CW2JQMRMB2W7GWB3.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "CW2JQMRMB2W7GWB3.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CW2JQMRMB2W7GWB3.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "CW2JQMRMB2W7GWB3", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "CW2JQMRMB2W7GWB3.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "CW2JQMRMB2W7GWB3.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20223" + }, + "appliesTo" : [ ] + }, + "CW2JQMRMB2W7GWB3.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "CW2JQMRMB2W7GWB3.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CW2JQMRMB2W7GWB3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "CW2JQMRMB2W7GWB3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "CW2JQMRMB2W7GWB3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "CW2JQMRMB2W7GWB3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15764" + }, + "appliesTo" : [ ] + }, + "CW2JQMRMB2W7GWB3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "CW2JQMRMB2W7GWB3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CW2JQMRMB2W7GWB3.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "CW2JQMRMB2W7GWB3", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "CW2JQMRMB2W7GWB3.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "CW2JQMRMB2W7GWB3.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4760000000" + }, + "appliesTo" : [ ] + }, + "CW2JQMRMB2W7GWB3.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "CW2JQMRMB2W7GWB3.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8096" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CW2JQMRMB2W7GWB3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "CW2JQMRMB2W7GWB3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "CW2JQMRMB2W7GWB3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "CW2JQMRMB2W7GWB3.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3830000000" + }, + "appliesTo" : [ ] + }, + "CW2JQMRMB2W7GWB3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "CW2JQMRMB2W7GWB3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6705" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CW2JQMRMB2W7GWB3.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "CW2JQMRMB2W7GWB3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CW2JQMRMB2W7GWB3.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "CW2JQMRMB2W7GWB3.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7705" + }, + "appliesTo" : [ ] + }, + "CW2JQMRMB2W7GWB3.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "CW2JQMRMB2W7GWB3.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CW2JQMRMB2W7GWB3.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "CW2JQMRMB2W7GWB3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CW2JQMRMB2W7GWB3.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "CW2JQMRMB2W7GWB3.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3886" + }, + "appliesTo" : [ ] + }, + "CW2JQMRMB2W7GWB3.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "CW2JQMRMB2W7GWB3.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CW2JQMRMB2W7GWB3.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "CW2JQMRMB2W7GWB3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CW2JQMRMB2W7GWB3.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "CW2JQMRMB2W7GWB3.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "PS8T955EH7FMVZUG" : { + "PS8T955EH7FMVZUG.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "PS8T955EH7FMVZUG", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "PS8T955EH7FMVZUG.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "PS8T955EH7FMVZUG.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6799" + }, + "appliesTo" : [ ] + }, + "PS8T955EH7FMVZUG.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "PS8T955EH7FMVZUG.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PS8T955EH7FMVZUG.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "PS8T955EH7FMVZUG", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "PS8T955EH7FMVZUG.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "PS8T955EH7FMVZUG.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4523" + }, + "appliesTo" : [ ] + }, + "PS8T955EH7FMVZUG.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "PS8T955EH7FMVZUG.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PS8T955EH7FMVZUG.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "PS8T955EH7FMVZUG", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "PS8T955EH7FMVZUG.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "PS8T955EH7FMVZUG.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12212" + }, + "appliesTo" : [ ] + }, + "PS8T955EH7FMVZUG.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "PS8T955EH7FMVZUG.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PS8T955EH7FMVZUG.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "PS8T955EH7FMVZUG", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "PS8T955EH7FMVZUG.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "PS8T955EH7FMVZUG.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13486" + }, + "appliesTo" : [ ] + }, + "PS8T955EH7FMVZUG.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "PS8T955EH7FMVZUG.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PS8T955EH7FMVZUG.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "PS8T955EH7FMVZUG", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "PS8T955EH7FMVZUG.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "PS8T955EH7FMVZUG.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "PS8T955EH7FMVZUG.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "PS8T955EH7FMVZUG", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "PS8T955EH7FMVZUG.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "PS8T955EH7FMVZUG.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8636" + }, + "appliesTo" : [ ] + }, + "PS8T955EH7FMVZUG.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "PS8T955EH7FMVZUG.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PS8T955EH7FMVZUG.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "PS8T955EH7FMVZUG", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "PS8T955EH7FMVZUG.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "PS8T955EH7FMVZUG.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "PS8T955EH7FMVZUG.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "PS8T955EH7FMVZUG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PS8T955EH7FMVZUG.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "PS8T955EH7FMVZUG.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3976" + }, + "appliesTo" : [ ] + }, + "PS8T955EH7FMVZUG.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "PS8T955EH7FMVZUG.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PS8T955EH7FMVZUG.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "PS8T955EH7FMVZUG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PS8T955EH7FMVZUG.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "PS8T955EH7FMVZUG.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "PS8T955EH7FMVZUG.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "PS8T955EH7FMVZUG", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "PS8T955EH7FMVZUG.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "PS8T955EH7FMVZUG.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18357" + }, + "appliesTo" : [ ] + }, + "PS8T955EH7FMVZUG.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "PS8T955EH7FMVZUG.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PS8T955EH7FMVZUG.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "PS8T955EH7FMVZUG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PS8T955EH7FMVZUG.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "PS8T955EH7FMVZUG.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "PS8T955EH7FMVZUG.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "PS8T955EH7FMVZUG.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7793" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "DNQP3UURB2QMZNV3" : { + "DNQP3UURB2QMZNV3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "DNQP3UURB2QMZNV3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "DNQP3UURB2QMZNV3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "DNQP3UURB2QMZNV3.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DNQP3UURB2QMZNV3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "DNQP3UURB2QMZNV3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "DNQP3UURB2QMZNV3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "DNQP3UURB2QMZNV3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1501" + }, + "appliesTo" : [ ] + }, + "DNQP3UURB2QMZNV3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "DNQP3UURB2QMZNV3.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DNQP3UURB2QMZNV3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "DNQP3UURB2QMZNV3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "DNQP3UURB2QMZNV3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "DNQP3UURB2QMZNV3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2186" + }, + "appliesTo" : [ ] + }, + "DNQP3UURB2QMZNV3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "DNQP3UURB2QMZNV3.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DNQP3UURB2QMZNV3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "DNQP3UURB2QMZNV3", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "DNQP3UURB2QMZNV3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "DNQP3UURB2QMZNV3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "987" + }, + "appliesTo" : [ ] + }, + "DNQP3UURB2QMZNV3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "DNQP3UURB2QMZNV3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DNQP3UURB2QMZNV3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "DNQP3UURB2QMZNV3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "DNQP3UURB2QMZNV3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "DNQP3UURB2QMZNV3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4548" + }, + "appliesTo" : [ ] + }, + "DNQP3UURB2QMZNV3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "DNQP3UURB2QMZNV3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "WAC5A9V7VNYMBPDR" : { + "WAC5A9V7VNYMBPDR.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "WAC5A9V7VNYMBPDR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WAC5A9V7VNYMBPDR.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "WAC5A9V7VNYMBPDR.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "WAC5A9V7VNYMBPDR.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "WAC5A9V7VNYMBPDR.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31323" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WAC5A9V7VNYMBPDR.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "WAC5A9V7VNYMBPDR", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WAC5A9V7VNYMBPDR.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "WAC5A9V7VNYMBPDR.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "WAC5A9V7VNYMBPDR.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "WAC5A9V7VNYMBPDR", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WAC5A9V7VNYMBPDR.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "WAC5A9V7VNYMBPDR.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "83634" + }, + "appliesTo" : [ ] + }, + "WAC5A9V7VNYMBPDR.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "WAC5A9V7VNYMBPDR.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WAC5A9V7VNYMBPDR.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "WAC5A9V7VNYMBPDR", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WAC5A9V7VNYMBPDR.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "WAC5A9V7VNYMBPDR.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WAC5A9V7VNYMBPDR.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "WAC5A9V7VNYMBPDR", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WAC5A9V7VNYMBPDR.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "WAC5A9V7VNYMBPDR.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "86386" + }, + "appliesTo" : [ ] + }, + "WAC5A9V7VNYMBPDR.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "WAC5A9V7VNYMBPDR.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WAC5A9V7VNYMBPDR.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "WAC5A9V7VNYMBPDR", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WAC5A9V7VNYMBPDR.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "WAC5A9V7VNYMBPDR.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "WAC5A9V7VNYMBPDR.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "WAC5A9V7VNYMBPDR", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WAC5A9V7VNYMBPDR.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "WAC5A9V7VNYMBPDR.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15207" + }, + "appliesTo" : [ ] + }, + "WAC5A9V7VNYMBPDR.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "WAC5A9V7VNYMBPDR.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WAC5A9V7VNYMBPDR.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "WAC5A9V7VNYMBPDR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WAC5A9V7VNYMBPDR.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "WAC5A9V7VNYMBPDR.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WAC5A9V7VNYMBPDR.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "WAC5A9V7VNYMBPDR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WAC5A9V7VNYMBPDR.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "WAC5A9V7VNYMBPDR.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15743" + }, + "appliesTo" : [ ] + }, + "WAC5A9V7VNYMBPDR.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "WAC5A9V7VNYMBPDR.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WAC5A9V7VNYMBPDR.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "WAC5A9V7VNYMBPDR", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WAC5A9V7VNYMBPDR.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "WAC5A9V7VNYMBPDR.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30272" + }, + "appliesTo" : [ ] + }, + "WAC5A9V7VNYMBPDR.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "WAC5A9V7VNYMBPDR.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WAC5A9V7VNYMBPDR.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "WAC5A9V7VNYMBPDR", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WAC5A9V7VNYMBPDR.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "WAC5A9V7VNYMBPDR.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "42258" + }, + "appliesTo" : [ ] + }, + "WAC5A9V7VNYMBPDR.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "WAC5A9V7VNYMBPDR.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WAC5A9V7VNYMBPDR.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "WAC5A9V7VNYMBPDR", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WAC5A9V7VNYMBPDR.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "WAC5A9V7VNYMBPDR.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "43362" + }, + "appliesTo" : [ ] + }, + "WAC5A9V7VNYMBPDR.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "WAC5A9V7VNYMBPDR.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "2G7QY8K5DB7ZC8PD" : { + "2G7QY8K5DB7ZC8PD.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "2G7QY8K5DB7ZC8PD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2G7QY8K5DB7ZC8PD.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "2G7QY8K5DB7ZC8PD.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31778" + }, + "appliesTo" : [ ] + }, + "2G7QY8K5DB7ZC8PD.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "2G7QY8K5DB7ZC8PD.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6276000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2G7QY8K5DB7ZC8PD.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "2G7QY8K5DB7ZC8PD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2G7QY8K5DB7ZC8PD.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "2G7QY8K5DB7ZC8PD.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "63465" + }, + "appliesTo" : [ ] + }, + "2G7QY8K5DB7ZC8PD.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "2G7QY8K5DB7ZC8PD.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2G7QY8K5DB7ZC8PD.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "2G7QY8K5DB7ZC8PD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2G7QY8K5DB7ZC8PD.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "2G7QY8K5DB7ZC8PD.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.1162000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2G7QY8K5DB7ZC8PD.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "2G7QY8K5DB7ZC8PD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2G7QY8K5DB7ZC8PD.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "2G7QY8K5DB7ZC8PD.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "64133" + }, + "appliesTo" : [ ] + }, + "2G7QY8K5DB7ZC8PD.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "2G7QY8K5DB7ZC8PD.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2G7QY8K5DB7ZC8PD.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "2G7QY8K5DB7ZC8PD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2G7QY8K5DB7ZC8PD.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "2G7QY8K5DB7ZC8PD.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3629000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2G7QY8K5DB7ZC8PD.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "2G7QY8K5DB7ZC8PD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2G7QY8K5DB7ZC8PD.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "2G7QY8K5DB7ZC8PD.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32119" + }, + "appliesTo" : [ ] + }, + "2G7QY8K5DB7ZC8PD.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "2G7QY8K5DB7ZC8PD.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6665000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2G7QY8K5DB7ZC8PD.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "2G7QY8K5DB7ZC8PD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2G7QY8K5DB7ZC8PD.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "2G7QY8K5DB7ZC8PD.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "187447" + }, + "appliesTo" : [ ] + }, + "2G7QY8K5DB7ZC8PD.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "2G7QY8K5DB7ZC8PD.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2G7QY8K5DB7ZC8PD.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "2G7QY8K5DB7ZC8PD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2G7QY8K5DB7ZC8PD.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "2G7QY8K5DB7ZC8PD.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "93136" + }, + "appliesTo" : [ ] + }, + "2G7QY8K5DB7ZC8PD.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "2G7QY8K5DB7ZC8PD.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2G7QY8K5DB7ZC8PD.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "2G7QY8K5DB7ZC8PD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2G7QY8K5DB7ZC8PD.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "2G7QY8K5DB7ZC8PD.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.2812000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2G7QY8K5DB7ZC8PD.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "2G7QY8K5DB7ZC8PD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2G7QY8K5DB7ZC8PD.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "2G7QY8K5DB7ZC8PD.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "185718" + }, + "appliesTo" : [ ] + }, + "2G7QY8K5DB7ZC8PD.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "2G7QY8K5DB7ZC8PD.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2G7QY8K5DB7ZC8PD.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "2G7QY8K5DB7ZC8PD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2G7QY8K5DB7ZC8PD.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "2G7QY8K5DB7ZC8PD.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5704000000" + }, + "appliesTo" : [ ] + }, + "2G7QY8K5DB7ZC8PD.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "2G7QY8K5DB7ZC8PD.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "93830" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2G7QY8K5DB7ZC8PD.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "2G7QY8K5DB7ZC8PD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "2G7QY8K5DB7ZC8PD.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "2G7QY8K5DB7ZC8PD.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.1732000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "QSNKQ8P78YXPTAH8" : { + "QSNKQ8P78YXPTAH8.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "QSNKQ8P78YXPTAH8", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "QSNKQ8P78YXPTAH8.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "QSNKQ8P78YXPTAH8.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7668" + }, + "appliesTo" : [ ] + }, + "QSNKQ8P78YXPTAH8.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "QSNKQ8P78YXPTAH8.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QSNKQ8P78YXPTAH8.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "QSNKQ8P78YXPTAH8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QSNKQ8P78YXPTAH8.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "QSNKQ8P78YXPTAH8.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1656" + }, + "appliesTo" : [ ] + }, + "QSNKQ8P78YXPTAH8.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "QSNKQ8P78YXPTAH8.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QSNKQ8P78YXPTAH8.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "QSNKQ8P78YXPTAH8", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "QSNKQ8P78YXPTAH8.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "QSNKQ8P78YXPTAH8.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QSNKQ8P78YXPTAH8.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "QSNKQ8P78YXPTAH8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QSNKQ8P78YXPTAH8.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "QSNKQ8P78YXPTAH8.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QSNKQ8P78YXPTAH8.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QSNKQ8P78YXPTAH8", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QSNKQ8P78YXPTAH8.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QSNKQ8P78YXPTAH8.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5493" + }, + "appliesTo" : [ ] + }, + "QSNKQ8P78YXPTAH8.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QSNKQ8P78YXPTAH8.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QSNKQ8P78YXPTAH8.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QSNKQ8P78YXPTAH8", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QSNKQ8P78YXPTAH8.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QSNKQ8P78YXPTAH8.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2691" + }, + "appliesTo" : [ ] + }, + "QSNKQ8P78YXPTAH8.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QSNKQ8P78YXPTAH8.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QSNKQ8P78YXPTAH8.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "QSNKQ8P78YXPTAH8", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "QSNKQ8P78YXPTAH8.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "QSNKQ8P78YXPTAH8.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4544" + }, + "appliesTo" : [ ] + }, + "QSNKQ8P78YXPTAH8.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "QSNKQ8P78YXPTAH8.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QSNKQ8P78YXPTAH8.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QSNKQ8P78YXPTAH8", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "QSNKQ8P78YXPTAH8.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QSNKQ8P78YXPTAH8.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2840" + }, + "appliesTo" : [ ] + }, + "QSNKQ8P78YXPTAH8.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QSNKQ8P78YXPTAH8.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QSNKQ8P78YXPTAH8.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "QSNKQ8P78YXPTAH8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QSNKQ8P78YXPTAH8.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "QSNKQ8P78YXPTAH8.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3246" + }, + "appliesTo" : [ ] + }, + "QSNKQ8P78YXPTAH8.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "QSNKQ8P78YXPTAH8.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QSNKQ8P78YXPTAH8.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QSNKQ8P78YXPTAH8", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "QSNKQ8P78YXPTAH8.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QSNKQ8P78YXPTAH8.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QSNKQ8P78YXPTAH8.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QSNKQ8P78YXPTAH8", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "QSNKQ8P78YXPTAH8.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QSNKQ8P78YXPTAH8.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1390000000" + }, + "appliesTo" : [ ] + }, + "QSNKQ8P78YXPTAH8.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QSNKQ8P78YXPTAH8.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1683" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "M27XKJYAEY2SPYUU" : { + "M27XKJYAEY2SPYUU.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "M27XKJYAEY2SPYUU", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "M27XKJYAEY2SPYUU.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "M27XKJYAEY2SPYUU.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3450" + }, + "appliesTo" : [ ] + }, + "M27XKJYAEY2SPYUU.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "M27XKJYAEY2SPYUU.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "M27XKJYAEY2SPYUU.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "M27XKJYAEY2SPYUU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M27XKJYAEY2SPYUU.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "M27XKJYAEY2SPYUU.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "M27XKJYAEY2SPYUU.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "M27XKJYAEY2SPYUU.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3560" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "M27XKJYAEY2SPYUU.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "M27XKJYAEY2SPYUU", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "M27XKJYAEY2SPYUU.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "M27XKJYAEY2SPYUU.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "M27XKJYAEY2SPYUU.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "M27XKJYAEY2SPYUU", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "M27XKJYAEY2SPYUU.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "M27XKJYAEY2SPYUU.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2291" + }, + "appliesTo" : [ ] + }, + "M27XKJYAEY2SPYUU.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "M27XKJYAEY2SPYUU.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "M27XKJYAEY2SPYUU.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "M27XKJYAEY2SPYUU", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "M27XKJYAEY2SPYUU.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "M27XKJYAEY2SPYUU.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9840" + }, + "appliesTo" : [ ] + }, + "M27XKJYAEY2SPYUU.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "M27XKJYAEY2SPYUU.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "M27XKJYAEY2SPYUU.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "M27XKJYAEY2SPYUU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M27XKJYAEY2SPYUU.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "M27XKJYAEY2SPYUU.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1800" + }, + "appliesTo" : [ ] + }, + "M27XKJYAEY2SPYUU.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "M27XKJYAEY2SPYUU.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "M27XKJYAEY2SPYUU.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "M27XKJYAEY2SPYUU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "M27XKJYAEY2SPYUU.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "M27XKJYAEY2SPYUU.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "M27XKJYAEY2SPYUU.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "M27XKJYAEY2SPYUU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M27XKJYAEY2SPYUU.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "M27XKJYAEY2SPYUU.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "M27XKJYAEY2SPYUU.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "M27XKJYAEY2SPYUU", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "M27XKJYAEY2SPYUU.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "M27XKJYAEY2SPYUU.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7608" + }, + "appliesTo" : [ ] + }, + "M27XKJYAEY2SPYUU.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "M27XKJYAEY2SPYUU.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "M27XKJYAEY2SPYUU.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "M27XKJYAEY2SPYUU", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "M27XKJYAEY2SPYUU.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "M27XKJYAEY2SPYUU.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4857" + }, + "appliesTo" : [ ] + }, + "M27XKJYAEY2SPYUU.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "M27XKJYAEY2SPYUU.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "M27XKJYAEY2SPYUU.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "M27XKJYAEY2SPYUU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "M27XKJYAEY2SPYUU.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "M27XKJYAEY2SPYUU.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6534" + }, + "appliesTo" : [ ] + }, + "M27XKJYAEY2SPYUU.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "M27XKJYAEY2SPYUU.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "TAUPPUG4Z5RWGJYB" : { + "TAUPPUG4Z5RWGJYB.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TAUPPUG4Z5RWGJYB", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "TAUPPUG4Z5RWGJYB.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TAUPPUG4Z5RWGJYB.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1963" + }, + "appliesTo" : [ ] + }, + "TAUPPUG4Z5RWGJYB.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TAUPPUG4Z5RWGJYB.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TAUPPUG4Z5RWGJYB.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TAUPPUG4Z5RWGJYB", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "TAUPPUG4Z5RWGJYB.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TAUPPUG4Z5RWGJYB.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TAUPPUG4Z5RWGJYB.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "TAUPPUG4Z5RWGJYB", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "TAUPPUG4Z5RWGJYB.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "TAUPPUG4Z5RWGJYB.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5747" + }, + "appliesTo" : [ ] + }, + "TAUPPUG4Z5RWGJYB.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "TAUPPUG4Z5RWGJYB.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TAUPPUG4Z5RWGJYB.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "TAUPPUG4Z5RWGJYB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TAUPPUG4Z5RWGJYB.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "TAUPPUG4Z5RWGJYB.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2297" + }, + "appliesTo" : [ ] + }, + "TAUPPUG4Z5RWGJYB.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "TAUPPUG4Z5RWGJYB.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TAUPPUG4Z5RWGJYB.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "TAUPPUG4Z5RWGJYB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TAUPPUG4Z5RWGJYB.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "TAUPPUG4Z5RWGJYB.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TAUPPUG4Z5RWGJYB.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "TAUPPUG4Z5RWGJYB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TAUPPUG4Z5RWGJYB.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "TAUPPUG4Z5RWGJYB.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "904" + }, + "appliesTo" : [ ] + }, + "TAUPPUG4Z5RWGJYB.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "TAUPPUG4Z5RWGJYB.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TAUPPUG4Z5RWGJYB.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TAUPPUG4Z5RWGJYB", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "TAUPPUG4Z5RWGJYB.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TAUPPUG4Z5RWGJYB.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2070" + }, + "appliesTo" : [ ] + }, + "TAUPPUG4Z5RWGJYB.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TAUPPUG4Z5RWGJYB.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TAUPPUG4Z5RWGJYB.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TAUPPUG4Z5RWGJYB", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "TAUPPUG4Z5RWGJYB.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TAUPPUG4Z5RWGJYB.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1028" + }, + "appliesTo" : [ ] + }, + "TAUPPUG4Z5RWGJYB.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TAUPPUG4Z5RWGJYB.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TAUPPUG4Z5RWGJYB.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TAUPPUG4Z5RWGJYB", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "TAUPPUG4Z5RWGJYB.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TAUPPUG4Z5RWGJYB.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4642" + }, + "appliesTo" : [ ] + }, + "TAUPPUG4Z5RWGJYB.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TAUPPUG4Z5RWGJYB.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TAUPPUG4Z5RWGJYB.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "TAUPPUG4Z5RWGJYB", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "TAUPPUG4Z5RWGJYB.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "TAUPPUG4Z5RWGJYB.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1170000000" + }, + "appliesTo" : [ ] + }, + "TAUPPUG4Z5RWGJYB.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "TAUPPUG4Z5RWGJYB.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2776" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TAUPPUG4Z5RWGJYB.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "TAUPPUG4Z5RWGJYB", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "TAUPPUG4Z5RWGJYB.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "TAUPPUG4Z5RWGJYB.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "YMR9864XJTF2JBSD" : { + "YMR9864XJTF2JBSD.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YMR9864XJTF2JBSD", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YMR9864XJTF2JBSD.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YMR9864XJTF2JBSD.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t1.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YMR9864XJTF2JBSD.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YMR9864XJTF2JBSD", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YMR9864XJTF2JBSD.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YMR9864XJTF2JBSD.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "62" + }, + "appliesTo" : [ ] + }, + "YMR9864XJTF2JBSD.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YMR9864XJTF2JBSD.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t1.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YMR9864XJTF2JBSD.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YMR9864XJTF2JBSD", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "YMR9864XJTF2JBSD.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YMR9864XJTF2JBSD.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "112" + }, + "appliesTo" : [ ] + }, + "YMR9864XJTF2JBSD.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YMR9864XJTF2JBSD.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), t1.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YMR9864XJTF2JBSD.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YMR9864XJTF2JBSD", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YMR9864XJTF2JBSD.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YMR9864XJTF2JBSD.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "267" + }, + "appliesTo" : [ ] + }, + "YMR9864XJTF2JBSD.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YMR9864XJTF2JBSD.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), t1.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YMR9864XJTF2JBSD.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YMR9864XJTF2JBSD", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YMR9864XJTF2JBSD.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YMR9864XJTF2JBSD.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "100" + }, + "appliesTo" : [ ] + }, + "YMR9864XJTF2JBSD.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YMR9864XJTF2JBSD.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t1.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "BZBTYKT6J87853AW" : { + "BZBTYKT6J87853AW.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "BZBTYKT6J87853AW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BZBTYKT6J87853AW.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "BZBTYKT6J87853AW.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1304" + }, + "appliesTo" : [ ] + }, + "BZBTYKT6J87853AW.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "BZBTYKT6J87853AW.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BZBTYKT6J87853AW.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "BZBTYKT6J87853AW", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "BZBTYKT6J87853AW.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "BZBTYKT6J87853AW.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "BZBTYKT6J87853AW.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "BZBTYKT6J87853AW.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3043" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BZBTYKT6J87853AW.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "BZBTYKT6J87853AW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BZBTYKT6J87853AW.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "BZBTYKT6J87853AW.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0970000000" + }, + "appliesTo" : [ ] + }, + "BZBTYKT6J87853AW.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "BZBTYKT6J87853AW.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "694" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BZBTYKT6J87853AW.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "BZBTYKT6J87853AW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BZBTYKT6J87853AW.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "BZBTYKT6J87853AW.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BZBTYKT6J87853AW.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "BZBTYKT6J87853AW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BZBTYKT6J87853AW.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "BZBTYKT6J87853AW.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "446" + }, + "appliesTo" : [ ] + }, + "BZBTYKT6J87853AW.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "BZBTYKT6J87853AW.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "4HTGDWXZE6KRTGSR" : { + "4HTGDWXZE6KRTGSR.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "4HTGDWXZE6KRTGSR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4HTGDWXZE6KRTGSR.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "4HTGDWXZE6KRTGSR.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "4HTGDWXZE6KRTGSR.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "4HTGDWXZE6KRTGSR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4HTGDWXZE6KRTGSR.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "4HTGDWXZE6KRTGSR.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "414" + }, + "appliesTo" : [ ] + }, + "4HTGDWXZE6KRTGSR.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "4HTGDWXZE6KRTGSR.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4HTGDWXZE6KRTGSR.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "4HTGDWXZE6KRTGSR", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "4HTGDWXZE6KRTGSR.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "4HTGDWXZE6KRTGSR.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1239" + }, + "appliesTo" : [ ] + }, + "4HTGDWXZE6KRTGSR.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "4HTGDWXZE6KRTGSR.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4HTGDWXZE6KRTGSR.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "4HTGDWXZE6KRTGSR", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "4HTGDWXZE6KRTGSR.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "4HTGDWXZE6KRTGSR.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "673" + }, + "appliesTo" : [ ] + }, + "4HTGDWXZE6KRTGSR.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "4HTGDWXZE6KRTGSR.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4HTGDWXZE6KRTGSR.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "4HTGDWXZE6KRTGSR", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "4HTGDWXZE6KRTGSR.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "4HTGDWXZE6KRTGSR.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2855" + }, + "appliesTo" : [ ] + }, + "4HTGDWXZE6KRTGSR.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "4HTGDWXZE6KRTGSR.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4HTGDWXZE6KRTGSR.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "4HTGDWXZE6KRTGSR", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "4HTGDWXZE6KRTGSR.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "4HTGDWXZE6KRTGSR.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "4HTGDWXZE6KRTGSR.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "4HTGDWXZE6KRTGSR", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "4HTGDWXZE6KRTGSR.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "4HTGDWXZE6KRTGSR.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0920000000" + }, + "appliesTo" : [ ] + }, + "4HTGDWXZE6KRTGSR.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "4HTGDWXZE6KRTGSR.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1137" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4HTGDWXZE6KRTGSR.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "4HTGDWXZE6KRTGSR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4HTGDWXZE6KRTGSR.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "4HTGDWXZE6KRTGSR.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1337" + }, + "appliesTo" : [ ] + }, + "4HTGDWXZE6KRTGSR.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "4HTGDWXZE6KRTGSR.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4HTGDWXZE6KRTGSR.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "4HTGDWXZE6KRTGSR", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "4HTGDWXZE6KRTGSR.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "4HTGDWXZE6KRTGSR.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3503" + }, + "appliesTo" : [ ] + }, + "4HTGDWXZE6KRTGSR.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "4HTGDWXZE6KRTGSR.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4HTGDWXZE6KRTGSR.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "4HTGDWXZE6KRTGSR", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "4HTGDWXZE6KRTGSR.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "4HTGDWXZE6KRTGSR.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "421" + }, + "appliesTo" : [ ] + }, + "4HTGDWXZE6KRTGSR.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "4HTGDWXZE6KRTGSR.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4HTGDWXZE6KRTGSR.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "4HTGDWXZE6KRTGSR", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "4HTGDWXZE6KRTGSR.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "4HTGDWXZE6KRTGSR.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "BWKDS9539ZWVQSVQ" : { + "BWKDS9539ZWVQSVQ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "BWKDS9539ZWVQSVQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BWKDS9539ZWVQSVQ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "BWKDS9539ZWVQSVQ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1029" + }, + "appliesTo" : [ ] + }, + "BWKDS9539ZWVQSVQ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "BWKDS9539ZWVQSVQ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BWKDS9539ZWVQSVQ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "BWKDS9539ZWVQSVQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BWKDS9539ZWVQSVQ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "BWKDS9539ZWVQSVQ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BWKDS9539ZWVQSVQ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "BWKDS9539ZWVQSVQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BWKDS9539ZWVQSVQ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "BWKDS9539ZWVQSVQ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "BWKDS9539ZWVQSVQ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "BWKDS9539ZWVQSVQ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2392" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BWKDS9539ZWVQSVQ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "BWKDS9539ZWVQSVQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BWKDS9539ZWVQSVQ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "BWKDS9539ZWVQSVQ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2555" + }, + "appliesTo" : [ ] + }, + "BWKDS9539ZWVQSVQ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "BWKDS9539ZWVQSVQ.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BWKDS9539ZWVQSVQ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "BWKDS9539ZWVQSVQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BWKDS9539ZWVQSVQ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "BWKDS9539ZWVQSVQ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "433" + }, + "appliesTo" : [ ] + }, + "BWKDS9539ZWVQSVQ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "BWKDS9539ZWVQSVQ.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BWKDS9539ZWVQSVQ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "BWKDS9539ZWVQSVQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BWKDS9539ZWVQSVQ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "BWKDS9539ZWVQSVQ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0860000000" + }, + "appliesTo" : [ ] + }, + "BWKDS9539ZWVQSVQ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "BWKDS9539ZWVQSVQ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "223" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BWKDS9539ZWVQSVQ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "BWKDS9539ZWVQSVQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BWKDS9539ZWVQSVQ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "BWKDS9539ZWVQSVQ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "499" + }, + "appliesTo" : [ ] + }, + "BWKDS9539ZWVQSVQ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "BWKDS9539ZWVQSVQ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BWKDS9539ZWVQSVQ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "BWKDS9539ZWVQSVQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BWKDS9539ZWVQSVQ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "BWKDS9539ZWVQSVQ.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "BWKDS9539ZWVQSVQ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "BWKDS9539ZWVQSVQ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "963" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BWKDS9539ZWVQSVQ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "BWKDS9539ZWVQSVQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BWKDS9539ZWVQSVQ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "BWKDS9539ZWVQSVQ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BWKDS9539ZWVQSVQ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "BWKDS9539ZWVQSVQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BWKDS9539ZWVQSVQ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "BWKDS9539ZWVQSVQ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BWKDS9539ZWVQSVQ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "BWKDS9539ZWVQSVQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BWKDS9539ZWVQSVQ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "BWKDS9539ZWVQSVQ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0890000000" + }, + "appliesTo" : [ ] + }, + "BWKDS9539ZWVQSVQ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "BWKDS9539ZWVQSVQ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "257" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BWKDS9539ZWVQSVQ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "BWKDS9539ZWVQSVQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BWKDS9539ZWVQSVQ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "BWKDS9539ZWVQSVQ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "Q65EXUN6VVKKRUQ6" : { + "Q65EXUN6VVKKRUQ6.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Q65EXUN6VVKKRUQ6", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Q65EXUN6VVKKRUQ6.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Q65EXUN6VVKKRUQ6.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6997" + }, + "appliesTo" : [ ] + }, + "Q65EXUN6VVKKRUQ6.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Q65EXUN6VVKKRUQ6.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Q65EXUN6VVKKRUQ6.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "Q65EXUN6VVKKRUQ6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q65EXUN6VVKKRUQ6.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "Q65EXUN6VVKKRUQ6.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8047" + }, + "appliesTo" : [ ] + }, + "Q65EXUN6VVKKRUQ6.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "Q65EXUN6VVKKRUQ6.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Q65EXUN6VVKKRUQ6.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "Q65EXUN6VVKKRUQ6", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Q65EXUN6VVKKRUQ6.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "Q65EXUN6VVKKRUQ6.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8942" + }, + "appliesTo" : [ ] + }, + "Q65EXUN6VVKKRUQ6.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "Q65EXUN6VVKKRUQ6.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3403000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q65EXUN6VVKKRUQ6.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Q65EXUN6VVKKRUQ6", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Q65EXUN6VVKKRUQ6.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Q65EXUN6VVKKRUQ6.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3570" + }, + "appliesTo" : [ ] + }, + "Q65EXUN6VVKKRUQ6.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Q65EXUN6VVKKRUQ6.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4076000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q65EXUN6VVKKRUQ6.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "Q65EXUN6VVKKRUQ6", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Q65EXUN6VVKKRUQ6.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "Q65EXUN6VVKKRUQ6.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17527" + }, + "appliesTo" : [ ] + }, + "Q65EXUN6VVKKRUQ6.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "Q65EXUN6VVKKRUQ6.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Q65EXUN6VVKKRUQ6.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "Q65EXUN6VVKKRUQ6", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Q65EXUN6VVKKRUQ6.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "Q65EXUN6VVKKRUQ6.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6391000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Q65EXUN6VVKKRUQ6.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "Q65EXUN6VVKKRUQ6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q65EXUN6VVKKRUQ6.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "Q65EXUN6VVKKRUQ6.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9842000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Q65EXUN6VVKKRUQ6.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "Q65EXUN6VVKKRUQ6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q65EXUN6VVKKRUQ6.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "Q65EXUN6VVKKRUQ6.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4106" + }, + "appliesTo" : [ ] + }, + "Q65EXUN6VVKKRUQ6.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "Q65EXUN6VVKKRUQ6.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4687000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q65EXUN6VVKKRUQ6.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Q65EXUN6VVKKRUQ6", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Q65EXUN6VVKKRUQ6.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Q65EXUN6VVKKRUQ6.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8559000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Q65EXUN6VVKKRUQ6.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Q65EXUN6VVKKRUQ6", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Q65EXUN6VVKKRUQ6.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Q65EXUN6VVKKRUQ6.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2959000000" + }, + "appliesTo" : [ ] + }, + "Q65EXUN6VVKKRUQ6.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Q65EXUN6VVKKRUQ6.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7776" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q65EXUN6VVKKRUQ6.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Q65EXUN6VVKKRUQ6", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Q65EXUN6VVKKRUQ6.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Q65EXUN6VVKKRUQ6.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "Q65EXUN6VVKKRUQ6.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Q65EXUN6VVKKRUQ6.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14618" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Q65EXUN6VVKKRUQ6.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "Q65EXUN6VVKKRUQ6", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Q65EXUN6VVKKRUQ6.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "Q65EXUN6VVKKRUQ6.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "NE4JZMMMGJZH869R" : { + "NE4JZMMMGJZH869R.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "NE4JZMMMGJZH869R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NE4JZMMMGJZH869R.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "NE4JZMMMGJZH869R.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "NE4JZMMMGJZH869R.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "NE4JZMMMGJZH869R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NE4JZMMMGJZH869R.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "NE4JZMMMGJZH869R.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0510000000" + }, + "appliesTo" : [ ] + }, + "NE4JZMMMGJZH869R.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "NE4JZMMMGJZH869R.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "447" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "NE4JZMMMGJZH869R.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "NE4JZMMMGJZH869R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NE4JZMMMGJZH869R.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "NE4JZMMMGJZH869R.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "NE4JZMMMGJZH869R.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "NE4JZMMMGJZH869R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NE4JZMMMGJZH869R.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "NE4JZMMMGJZH869R.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1629" + }, + "appliesTo" : [ ] + }, + "NE4JZMMMGJZH869R.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "NE4JZMMMGJZH869R.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "NE4JZMMMGJZH869R.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "NE4JZMMMGJZH869R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NE4JZMMMGJZH869R.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "NE4JZMMMGJZH869R.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "867" + }, + "appliesTo" : [ ] + }, + "NE4JZMMMGJZH869R.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "NE4JZMMMGJZH869R.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "NE4JZMMMGJZH869R.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "NE4JZMMMGJZH869R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NE4JZMMMGJZH869R.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "NE4JZMMMGJZH869R.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "876" + }, + "appliesTo" : [ ] + }, + "NE4JZMMMGJZH869R.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "NE4JZMMMGJZH869R.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "CNBCS3T6ZYW47Y8W" : { + "CNBCS3T6ZYW47Y8W.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "CNBCS3T6ZYW47Y8W", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CNBCS3T6ZYW47Y8W.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "CNBCS3T6ZYW47Y8W.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28146" + }, + "appliesTo" : [ ] + }, + "CNBCS3T6ZYW47Y8W.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "CNBCS3T6ZYW47Y8W.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CNBCS3T6ZYW47Y8W.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "CNBCS3T6ZYW47Y8W", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CNBCS3T6ZYW47Y8W.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "CNBCS3T6ZYW47Y8W.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "CNBCS3T6ZYW47Y8W.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "CNBCS3T6ZYW47Y8W.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32514" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CNBCS3T6ZYW47Y8W.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "CNBCS3T6ZYW47Y8W", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CNBCS3T6ZYW47Y8W.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "CNBCS3T6ZYW47Y8W.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CNBCS3T6ZYW47Y8W.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "CNBCS3T6ZYW47Y8W", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CNBCS3T6ZYW47Y8W.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "CNBCS3T6ZYW47Y8W.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "67038" + }, + "appliesTo" : [ ] + }, + "CNBCS3T6ZYW47Y8W.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "CNBCS3T6ZYW47Y8W.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CNBCS3T6ZYW47Y8W.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "CNBCS3T6ZYW47Y8W", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CNBCS3T6ZYW47Y8W.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "CNBCS3T6ZYW47Y8W.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CNBCS3T6ZYW47Y8W.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "CNBCS3T6ZYW47Y8W", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "CNBCS3T6ZYW47Y8W.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "CNBCS3T6ZYW47Y8W.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14388" + }, + "appliesTo" : [ ] + }, + "CNBCS3T6ZYW47Y8W.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "CNBCS3T6ZYW47Y8W.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CNBCS3T6ZYW47Y8W.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "CNBCS3T6ZYW47Y8W", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CNBCS3T6ZYW47Y8W.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "CNBCS3T6ZYW47Y8W.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16617" + }, + "appliesTo" : [ ] + }, + "CNBCS3T6ZYW47Y8W.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "CNBCS3T6ZYW47Y8W.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CNBCS3T6ZYW47Y8W.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "CNBCS3T6ZYW47Y8W", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CNBCS3T6ZYW47Y8W.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "CNBCS3T6ZYW47Y8W.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CNBCS3T6ZYW47Y8W.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "CNBCS3T6ZYW47Y8W", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CNBCS3T6ZYW47Y8W.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "CNBCS3T6ZYW47Y8W.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CNBCS3T6ZYW47Y8W.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "CNBCS3T6ZYW47Y8W", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CNBCS3T6ZYW47Y8W.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "CNBCS3T6ZYW47Y8W.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "56187" + }, + "appliesTo" : [ ] + }, + "CNBCS3T6ZYW47Y8W.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "CNBCS3T6ZYW47Y8W.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CNBCS3T6ZYW47Y8W.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "CNBCS3T6ZYW47Y8W", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CNBCS3T6ZYW47Y8W.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "CNBCS3T6ZYW47Y8W.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34201" + }, + "appliesTo" : [ ] + }, + "CNBCS3T6ZYW47Y8W.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "CNBCS3T6ZYW47Y8W.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CNBCS3T6ZYW47Y8W.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "CNBCS3T6ZYW47Y8W", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "CNBCS3T6ZYW47Y8W.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "CNBCS3T6ZYW47Y8W.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29870" + }, + "appliesTo" : [ ] + }, + "CNBCS3T6ZYW47Y8W.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "CNBCS3T6ZYW47Y8W.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "H48ZRU3X7FXGTGQM" : { + "H48ZRU3X7FXGTGQM.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "H48ZRU3X7FXGTGQM", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "H48ZRU3X7FXGTGQM.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "H48ZRU3X7FXGTGQM.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "542" + }, + "appliesTo" : [ ] + }, + "H48ZRU3X7FXGTGQM.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "H48ZRU3X7FXGTGQM.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "H48ZRU3X7FXGTGQM.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "H48ZRU3X7FXGTGQM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H48ZRU3X7FXGTGQM.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "H48ZRU3X7FXGTGQM.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "H48ZRU3X7FXGTGQM.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "H48ZRU3X7FXGTGQM.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "624" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "H48ZRU3X7FXGTGQM.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "H48ZRU3X7FXGTGQM", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "H48ZRU3X7FXGTGQM.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "H48ZRU3X7FXGTGQM.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1463" + }, + "appliesTo" : [ ] + }, + "H48ZRU3X7FXGTGQM.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "H48ZRU3X7FXGTGQM.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "H48ZRU3X7FXGTGQM.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "H48ZRU3X7FXGTGQM", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "H48ZRU3X7FXGTGQM.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "H48ZRU3X7FXGTGQM.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "H48ZRU3X7FXGTGQM.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "H48ZRU3X7FXGTGQM", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "H48ZRU3X7FXGTGQM.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "H48ZRU3X7FXGTGQM.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "326" + }, + "appliesTo" : [ ] + }, + "H48ZRU3X7FXGTGQM.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "H48ZRU3X7FXGTGQM.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "H48ZRU3X7FXGTGQM.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "H48ZRU3X7FXGTGQM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H48ZRU3X7FXGTGQM.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "H48ZRU3X7FXGTGQM.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "318" + }, + "appliesTo" : [ ] + }, + "H48ZRU3X7FXGTGQM.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "H48ZRU3X7FXGTGQM.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "H48ZRU3X7FXGTGQM.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "H48ZRU3X7FXGTGQM", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "H48ZRU3X7FXGTGQM.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "H48ZRU3X7FXGTGQM.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "H48ZRU3X7FXGTGQM.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "H48ZRU3X7FXGTGQM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H48ZRU3X7FXGTGQM.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "H48ZRU3X7FXGTGQM.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "H48ZRU3X7FXGTGQM.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "H48ZRU3X7FXGTGQM", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "H48ZRU3X7FXGTGQM.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "H48ZRU3X7FXGTGQM.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1020" + }, + "appliesTo" : [ ] + }, + "H48ZRU3X7FXGTGQM.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "H48ZRU3X7FXGTGQM.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "H48ZRU3X7FXGTGQM.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "H48ZRU3X7FXGTGQM", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "H48ZRU3X7FXGTGQM.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "H48ZRU3X7FXGTGQM.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "880" + }, + "appliesTo" : [ ] + }, + "H48ZRU3X7FXGTGQM.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "H48ZRU3X7FXGTGQM.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "H48ZRU3X7FXGTGQM.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "H48ZRU3X7FXGTGQM", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "H48ZRU3X7FXGTGQM.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "H48ZRU3X7FXGTGQM.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "508" + }, + "appliesTo" : [ ] + }, + "H48ZRU3X7FXGTGQM.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "H48ZRU3X7FXGTGQM.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "P4TPDGNQH5SAQPSP" : { + "P4TPDGNQH5SAQPSP.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "P4TPDGNQH5SAQPSP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P4TPDGNQH5SAQPSP.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "P4TPDGNQH5SAQPSP.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11107" + }, + "appliesTo" : [ ] + }, + "P4TPDGNQH5SAQPSP.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "P4TPDGNQH5SAQPSP.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "P4TPDGNQH5SAQPSP.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "P4TPDGNQH5SAQPSP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "P4TPDGNQH5SAQPSP.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "P4TPDGNQH5SAQPSP.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25725" + }, + "appliesTo" : [ ] + }, + "P4TPDGNQH5SAQPSP.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "P4TPDGNQH5SAQPSP.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "P4TPDGNQH5SAQPSP.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "P4TPDGNQH5SAQPSP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "P4TPDGNQH5SAQPSP.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "P4TPDGNQH5SAQPSP.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1334000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "P4TPDGNQH5SAQPSP.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "P4TPDGNQH5SAQPSP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "P4TPDGNQH5SAQPSP.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "P4TPDGNQH5SAQPSP.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10499" + }, + "appliesTo" : [ ] + }, + "P4TPDGNQH5SAQPSP.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "P4TPDGNQH5SAQPSP.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "P4TPDGNQH5SAQPSP.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "P4TPDGNQH5SAQPSP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "P4TPDGNQH5SAQPSP.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "P4TPDGNQH5SAQPSP.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0816000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "P4TPDGNQH5SAQPSP.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "P4TPDGNQH5SAQPSP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "P4TPDGNQH5SAQPSP.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "P4TPDGNQH5SAQPSP.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28820" + }, + "appliesTo" : [ ] + }, + "P4TPDGNQH5SAQPSP.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "P4TPDGNQH5SAQPSP.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "P4TPDGNQH5SAQPSP.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "P4TPDGNQH5SAQPSP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "P4TPDGNQH5SAQPSP.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "P4TPDGNQH5SAQPSP.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5291" + }, + "appliesTo" : [ ] + }, + "P4TPDGNQH5SAQPSP.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "P4TPDGNQH5SAQPSP.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "P4TPDGNQH5SAQPSP.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "P4TPDGNQH5SAQPSP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "P4TPDGNQH5SAQPSP.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "P4TPDGNQH5SAQPSP.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2316000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "P4TPDGNQH5SAQPSP.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "P4TPDGNQH5SAQPSP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P4TPDGNQH5SAQPSP.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "P4TPDGNQH5SAQPSP.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5601" + }, + "appliesTo" : [ ] + }, + "P4TPDGNQH5SAQPSP.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "P4TPDGNQH5SAQPSP.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6394000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "P4TPDGNQH5SAQPSP.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "P4TPDGNQH5SAQPSP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P4TPDGNQH5SAQPSP.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "P4TPDGNQH5SAQPSP.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3059000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "P4TPDGNQH5SAQPSP.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "P4TPDGNQH5SAQPSP", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "P4TPDGNQH5SAQPSP.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "P4TPDGNQH5SAQPSP.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5210000000" + }, + "appliesTo" : [ ] + }, + "P4TPDGNQH5SAQPSP.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "P4TPDGNQH5SAQPSP.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13684" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "P4TPDGNQH5SAQPSP.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "P4TPDGNQH5SAQPSP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "P4TPDGNQH5SAQPSP.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "P4TPDGNQH5SAQPSP.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14507" + }, + "appliesTo" : [ ] + }, + "P4TPDGNQH5SAQPSP.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "P4TPDGNQH5SAQPSP.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "JF9QHW5XYZ9MK42R" : { + "JF9QHW5XYZ9MK42R.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "JF9QHW5XYZ9MK42R", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "JF9QHW5XYZ9MK42R.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "JF9QHW5XYZ9MK42R.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "114975" + }, + "appliesTo" : [ ] + }, + "JF9QHW5XYZ9MK42R.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "JF9QHW5XYZ9MK42R.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JF9QHW5XYZ9MK42R.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "JF9QHW5XYZ9MK42R", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JF9QHW5XYZ9MK42R.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "JF9QHW5XYZ9MK42R.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "55037" + }, + "appliesTo" : [ ] + }, + "JF9QHW5XYZ9MK42R.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "JF9QHW5XYZ9MK42R.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "JF9QHW5XYZ9MK42R.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "JF9QHW5XYZ9MK42R", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JF9QHW5XYZ9MK42R.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "JF9QHW5XYZ9MK42R.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "44592" + }, + "appliesTo" : [ ] + }, + "JF9QHW5XYZ9MK42R.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "JF9QHW5XYZ9MK42R.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JF9QHW5XYZ9MK42R.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "JF9QHW5XYZ9MK42R", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "JF9QHW5XYZ9MK42R.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "JF9QHW5XYZ9MK42R.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25967" + }, + "appliesTo" : [ ] + }, + "JF9QHW5XYZ9MK42R.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "JF9QHW5XYZ9MK42R.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "JF9QHW5XYZ9MK42R.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "JF9QHW5XYZ9MK42R", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "JF9QHW5XYZ9MK42R.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "JF9QHW5XYZ9MK42R.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.0770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "5CS4EJVK2TSXGHNX" : { + "5CS4EJVK2TSXGHNX.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "5CS4EJVK2TSXGHNX", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "5CS4EJVK2TSXGHNX.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "5CS4EJVK2TSXGHNX.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34285" + }, + "appliesTo" : [ ] + }, + "5CS4EJVK2TSXGHNX.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "5CS4EJVK2TSXGHNX.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.0440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5CS4EJVK2TSXGHNX.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "5CS4EJVK2TSXGHNX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5CS4EJVK2TSXGHNX.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "5CS4EJVK2TSXGHNX.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "5CS4EJVK2TSXGHNX.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "5CS4EJVK2TSXGHNX.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "78420" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "5CS4EJVK2TSXGHNX.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "5CS4EJVK2TSXGHNX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5CS4EJVK2TSXGHNX.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "5CS4EJVK2TSXGHNX.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "120997" + }, + "appliesTo" : [ ] + }, + "5CS4EJVK2TSXGHNX.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "5CS4EJVK2TSXGHNX.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "5CS4EJVK2TSXGHNX.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "5CS4EJVK2TSXGHNX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5CS4EJVK2TSXGHNX.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "5CS4EJVK2TSXGHNX.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.4180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "5CS4EJVK2TSXGHNX.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "5CS4EJVK2TSXGHNX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5CS4EJVK2TSXGHNX.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "5CS4EJVK2TSXGHNX.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.3490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "5CS4EJVK2TSXGHNX.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "5CS4EJVK2TSXGHNX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5CS4EJVK2TSXGHNX.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "5CS4EJVK2TSXGHNX.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39429" + }, + "appliesTo" : [ ] + }, + "5CS4EJVK2TSXGHNX.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "5CS4EJVK2TSXGHNX.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.6310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "5CS4EJVK2TSXGHNX.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "5CS4EJVK2TSXGHNX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5CS4EJVK2TSXGHNX.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "5CS4EJVK2TSXGHNX.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.5820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "5CS4EJVK2TSXGHNX.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "5CS4EJVK2TSXGHNX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5CS4EJVK2TSXGHNX.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "5CS4EJVK2TSXGHNX.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.0610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "5CS4EJVK2TSXGHNX.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "5CS4EJVK2TSXGHNX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5CS4EJVK2TSXGHNX.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "5CS4EJVK2TSXGHNX.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "59990" + }, + "appliesTo" : [ ] + }, + "5CS4EJVK2TSXGHNX.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "5CS4EJVK2TSXGHNX.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "5CS4EJVK2TSXGHNX.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "5CS4EJVK2TSXGHNX", + "effectiveDate" : "2016-06-30T23:59:59Z", + "priceDimensions" : { + "5CS4EJVK2TSXGHNX.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "5CS4EJVK2TSXGHNX.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "52166" + }, + "appliesTo" : [ ] + }, + "5CS4EJVK2TSXGHNX.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "5CS4EJVK2TSXGHNX.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5CS4EJVK2TSXGHNX.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "5CS4EJVK2TSXGHNX", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "5CS4EJVK2TSXGHNX.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "5CS4EJVK2TSXGHNX.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "68338" + }, + "appliesTo" : [ ] + }, + "5CS4EJVK2TSXGHNX.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "5CS4EJVK2TSXGHNX.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5CS4EJVK2TSXGHNX.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "5CS4EJVK2TSXGHNX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5CS4EJVK2TSXGHNX.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "5CS4EJVK2TSXGHNX.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "101488" + }, + "appliesTo" : [ ] + }, + "5CS4EJVK2TSXGHNX.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "5CS4EJVK2TSXGHNX.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "MC5VZN6RJJJRB2CW" : { + "MC5VZN6RJJJRB2CW.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "MC5VZN6RJJJRB2CW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MC5VZN6RJJJRB2CW.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "MC5VZN6RJJJRB2CW.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "MC5VZN6RJJJRB2CW.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "MC5VZN6RJJJRB2CW.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8274" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MC5VZN6RJJJRB2CW.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "MC5VZN6RJJJRB2CW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MC5VZN6RJJJRB2CW.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "MC5VZN6RJJJRB2CW.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5176" + }, + "appliesTo" : [ ] + }, + "MC5VZN6RJJJRB2CW.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "MC5VZN6RJJJRB2CW.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MC5VZN6RJJJRB2CW.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "MC5VZN6RJJJRB2CW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MC5VZN6RJJJRB2CW.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "MC5VZN6RJJJRB2CW.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MC5VZN6RJJJRB2CW.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "MC5VZN6RJJJRB2CW", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "MC5VZN6RJJJRB2CW.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "MC5VZN6RJJJRB2CW.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "MC5VZN6RJJJRB2CW.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "MC5VZN6RJJJRB2CW.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16754" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MC5VZN6RJJJRB2CW.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "MC5VZN6RJJJRB2CW", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "MC5VZN6RJJJRB2CW.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "MC5VZN6RJJJRB2CW.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8022" + }, + "appliesTo" : [ ] + }, + "MC5VZN6RJJJRB2CW.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "MC5VZN6RJJJRB2CW.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "V7TY6J97RFNXWD8V" : { + "V7TY6J97RFNXWD8V.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "V7TY6J97RFNXWD8V", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "V7TY6J97RFNXWD8V.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "V7TY6J97RFNXWD8V.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8712" + }, + "appliesTo" : [ ] + }, + "V7TY6J97RFNXWD8V.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "V7TY6J97RFNXWD8V.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "V7TY6J97RFNXWD8V.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "V7TY6J97RFNXWD8V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V7TY6J97RFNXWD8V.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "V7TY6J97RFNXWD8V.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10025" + }, + "appliesTo" : [ ] + }, + "V7TY6J97RFNXWD8V.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "V7TY6J97RFNXWD8V.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "V7TY6J97RFNXWD8V.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "V7TY6J97RFNXWD8V", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "V7TY6J97RFNXWD8V.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "V7TY6J97RFNXWD8V.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "V7TY6J97RFNXWD8V.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "V7TY6J97RFNXWD8V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V7TY6J97RFNXWD8V.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "V7TY6J97RFNXWD8V.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "V7TY6J97RFNXWD8V.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "V7TY6J97RFNXWD8V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V7TY6J97RFNXWD8V.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "V7TY6J97RFNXWD8V.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "V7TY6J97RFNXWD8V.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "V7TY6J97RFNXWD8V.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20788" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "V7TY6J97RFNXWD8V.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "V7TY6J97RFNXWD8V", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "V7TY6J97RFNXWD8V.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "V7TY6J97RFNXWD8V.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "V7TY6J97RFNXWD8V.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "V7TY6J97RFNXWD8V", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "V7TY6J97RFNXWD8V.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "V7TY6J97RFNXWD8V.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16204" + }, + "appliesTo" : [ ] + }, + "V7TY6J97RFNXWD8V.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "V7TY6J97RFNXWD8V.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "V7TY6J97RFNXWD8V.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "V7TY6J97RFNXWD8V", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "V7TY6J97RFNXWD8V.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "V7TY6J97RFNXWD8V.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "V7TY6J97RFNXWD8V.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "V7TY6J97RFNXWD8V.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46209" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "V7TY6J97RFNXWD8V.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "V7TY6J97RFNXWD8V", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "V7TY6J97RFNXWD8V.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "V7TY6J97RFNXWD8V.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9610000000" + }, + "appliesTo" : [ ] + }, + "V7TY6J97RFNXWD8V.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "V7TY6J97RFNXWD8V.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21833" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "V7TY6J97RFNXWD8V.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "V7TY6J97RFNXWD8V", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "V7TY6J97RFNXWD8V.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "V7TY6J97RFNXWD8V.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18214" + }, + "appliesTo" : [ ] + }, + "V7TY6J97RFNXWD8V.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "V7TY6J97RFNXWD8V.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "V7TY6J97RFNXWD8V.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "V7TY6J97RFNXWD8V", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "V7TY6J97RFNXWD8V.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "V7TY6J97RFNXWD8V.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "V7TY6J97RFNXWD8V.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "V7TY6J97RFNXWD8V", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "V7TY6J97RFNXWD8V.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "V7TY6J97RFNXWD8V.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33880" + }, + "appliesTo" : [ ] + }, + "V7TY6J97RFNXWD8V.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "V7TY6J97RFNXWD8V.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "62VQZ6W2YK7P5N9B" : { + "62VQZ6W2YK7P5N9B.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "62VQZ6W2YK7P5N9B", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "62VQZ6W2YK7P5N9B.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "62VQZ6W2YK7P5N9B.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23130" + }, + "appliesTo" : [ ] + }, + "62VQZ6W2YK7P5N9B.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "62VQZ6W2YK7P5N9B.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "62VQZ6W2YK7P5N9B.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "62VQZ6W2YK7P5N9B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "62VQZ6W2YK7P5N9B.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "62VQZ6W2YK7P5N9B.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "62VQZ6W2YK7P5N9B.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "62VQZ6W2YK7P5N9B.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29538" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "62VQZ6W2YK7P5N9B.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "62VQZ6W2YK7P5N9B", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "62VQZ6W2YK7P5N9B.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "62VQZ6W2YK7P5N9B.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11799" + }, + "appliesTo" : [ ] + }, + "62VQZ6W2YK7P5N9B.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "62VQZ6W2YK7P5N9B.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "62VQZ6W2YK7P5N9B.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "62VQZ6W2YK7P5N9B", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "62VQZ6W2YK7P5N9B.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "62VQZ6W2YK7P5N9B.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "62VQZ6W2YK7P5N9B.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "62VQZ6W2YK7P5N9B", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "62VQZ6W2YK7P5N9B.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "62VQZ6W2YK7P5N9B.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28448" + }, + "appliesTo" : [ ] + }, + "62VQZ6W2YK7P5N9B.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "62VQZ6W2YK7P5N9B.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "62VQZ6W2YK7P5N9B.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "62VQZ6W2YK7P5N9B", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "62VQZ6W2YK7P5N9B.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "62VQZ6W2YK7P5N9B.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "62VQZ6W2YK7P5N9B.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "62VQZ6W2YK7P5N9B.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "66626" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "62VQZ6W2YK7P5N9B.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "62VQZ6W2YK7P5N9B", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "62VQZ6W2YK7P5N9B.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "62VQZ6W2YK7P5N9B.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "53485" + }, + "appliesTo" : [ ] + }, + "62VQZ6W2YK7P5N9B.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "62VQZ6W2YK7P5N9B.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "62VQZ6W2YK7P5N9B.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "62VQZ6W2YK7P5N9B", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "62VQZ6W2YK7P5N9B.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "62VQZ6W2YK7P5N9B.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "62VQZ6W2YK7P5N9B.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "62VQZ6W2YK7P5N9B", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "62VQZ6W2YK7P5N9B.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "62VQZ6W2YK7P5N9B.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "62VQZ6W2YK7P5N9B.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "62VQZ6W2YK7P5N9B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "62VQZ6W2YK7P5N9B.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "62VQZ6W2YK7P5N9B.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6970000000" + }, + "appliesTo" : [ ] + }, + "62VQZ6W2YK7P5N9B.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "62VQZ6W2YK7P5N9B.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14866" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "62VQZ6W2YK7P5N9B.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "62VQZ6W2YK7P5N9B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "62VQZ6W2YK7P5N9B.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "62VQZ6W2YK7P5N9B.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "62VQZ6W2YK7P5N9B.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "62VQZ6W2YK7P5N9B", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "62VQZ6W2YK7P5N9B.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "62VQZ6W2YK7P5N9B.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33980" + }, + "appliesTo" : [ ] + }, + "62VQZ6W2YK7P5N9B.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "62VQZ6W2YK7P5N9B.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "H9V234B3K9QAR4NJ" : { + "H9V234B3K9QAR4NJ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "H9V234B3K9QAR4NJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "H9V234B3K9QAR4NJ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "H9V234B3K9QAR4NJ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3624" + }, + "appliesTo" : [ ] + }, + "H9V234B3K9QAR4NJ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "H9V234B3K9QAR4NJ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "H9V234B3K9QAR4NJ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "H9V234B3K9QAR4NJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "H9V234B3K9QAR4NJ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "H9V234B3K9QAR4NJ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "H9V234B3K9QAR4NJ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "H9V234B3K9QAR4NJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H9V234B3K9QAR4NJ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "H9V234B3K9QAR4NJ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "H9V234B3K9QAR4NJ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "H9V234B3K9QAR4NJ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7965" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "H9V234B3K9QAR4NJ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "H9V234B3K9QAR4NJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "H9V234B3K9QAR4NJ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "H9V234B3K9QAR4NJ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18682" + }, + "appliesTo" : [ ] + }, + "H9V234B3K9QAR4NJ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "H9V234B3K9QAR4NJ.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "H9V234B3K9QAR4NJ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "H9V234B3K9QAR4NJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "H9V234B3K9QAR4NJ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "H9V234B3K9QAR4NJ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "H9V234B3K9QAR4NJ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "H9V234B3K9QAR4NJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H9V234B3K9QAR4NJ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "H9V234B3K9QAR4NJ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4047" + }, + "appliesTo" : [ ] + }, + "H9V234B3K9QAR4NJ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "H9V234B3K9QAR4NJ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "H9V234B3K9QAR4NJ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "H9V234B3K9QAR4NJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H9V234B3K9QAR4NJ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "H9V234B3K9QAR4NJ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "H9V234B3K9QAR4NJ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "H9V234B3K9QAR4NJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "H9V234B3K9QAR4NJ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "H9V234B3K9QAR4NJ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16384" + }, + "appliesTo" : [ ] + }, + "H9V234B3K9QAR4NJ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "H9V234B3K9QAR4NJ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "H9V234B3K9QAR4NJ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "H9V234B3K9QAR4NJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "H9V234B3K9QAR4NJ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "H9V234B3K9QAR4NJ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9482" + }, + "appliesTo" : [ ] + }, + "H9V234B3K9QAR4NJ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "H9V234B3K9QAR4NJ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "H9V234B3K9QAR4NJ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "H9V234B3K9QAR4NJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "H9V234B3K9QAR4NJ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "H9V234B3K9QAR4NJ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "H9V234B3K9QAR4NJ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "H9V234B3K9QAR4NJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "H9V234B3K9QAR4NJ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "H9V234B3K9QAR4NJ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8561" + }, + "appliesTo" : [ ] + }, + "H9V234B3K9QAR4NJ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "H9V234B3K9QAR4NJ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "H9V234B3K9QAR4NJ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "H9V234B3K9QAR4NJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "H9V234B3K9QAR4NJ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "H9V234B3K9QAR4NJ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7136" + }, + "appliesTo" : [ ] + }, + "H9V234B3K9QAR4NJ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "H9V234B3K9QAR4NJ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "AKXXTUNGEUFY2NYA" : { + "AKXXTUNGEUFY2NYA.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "AKXXTUNGEUFY2NYA", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "AKXXTUNGEUFY2NYA.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "AKXXTUNGEUFY2NYA.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3618" + }, + "appliesTo" : [ ] + }, + "AKXXTUNGEUFY2NYA.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "AKXXTUNGEUFY2NYA.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AKXXTUNGEUFY2NYA.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "AKXXTUNGEUFY2NYA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AKXXTUNGEUFY2NYA.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "AKXXTUNGEUFY2NYA.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "AKXXTUNGEUFY2NYA.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "AKXXTUNGEUFY2NYA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AKXXTUNGEUFY2NYA.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "AKXXTUNGEUFY2NYA.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18234" + }, + "appliesTo" : [ ] + }, + "AKXXTUNGEUFY2NYA.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "AKXXTUNGEUFY2NYA.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "AKXXTUNGEUFY2NYA.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "AKXXTUNGEUFY2NYA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AKXXTUNGEUFY2NYA.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "AKXXTUNGEUFY2NYA.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "AKXXTUNGEUFY2NYA.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "AKXXTUNGEUFY2NYA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AKXXTUNGEUFY2NYA.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "AKXXTUNGEUFY2NYA.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8856" + }, + "appliesTo" : [ ] + }, + "AKXXTUNGEUFY2NYA.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "AKXXTUNGEUFY2NYA.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AKXXTUNGEUFY2NYA.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "AKXXTUNGEUFY2NYA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AKXXTUNGEUFY2NYA.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "AKXXTUNGEUFY2NYA.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3490000000" + }, + "appliesTo" : [ ] + }, + "AKXXTUNGEUFY2NYA.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "AKXXTUNGEUFY2NYA.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9166" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "AKXXTUNGEUFY2NYA.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "AKXXTUNGEUFY2NYA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AKXXTUNGEUFY2NYA.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "AKXXTUNGEUFY2NYA.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "AKXXTUNGEUFY2NYA.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "AKXXTUNGEUFY2NYA", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "AKXXTUNGEUFY2NYA.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "AKXXTUNGEUFY2NYA.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17450" + }, + "appliesTo" : [ ] + }, + "AKXXTUNGEUFY2NYA.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "AKXXTUNGEUFY2NYA.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AKXXTUNGEUFY2NYA.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "AKXXTUNGEUFY2NYA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AKXXTUNGEUFY2NYA.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "AKXXTUNGEUFY2NYA.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7087" + }, + "appliesTo" : [ ] + }, + "AKXXTUNGEUFY2NYA.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "AKXXTUNGEUFY2NYA.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "STRFBQS9QNUUSSCD" : { + "STRFBQS9QNUUSSCD.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "STRFBQS9QNUUSSCD", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "STRFBQS9QNUUSSCD.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "STRFBQS9QNUUSSCD.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6360" + }, + "appliesTo" : [ ] + }, + "STRFBQS9QNUUSSCD.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "STRFBQS9QNUUSSCD.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "STRFBQS9QNUUSSCD.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "STRFBQS9QNUUSSCD", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "STRFBQS9QNUUSSCD.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "STRFBQS9QNUUSSCD.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14945" + }, + "appliesTo" : [ ] + }, + "STRFBQS9QNUUSSCD.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "STRFBQS9QNUUSSCD.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "STRFBQS9QNUUSSCD.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "STRFBQS9QNUUSSCD", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "STRFBQS9QNUUSSCD.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "STRFBQS9QNUUSSCD.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6400" + }, + "appliesTo" : [ ] + }, + "STRFBQS9QNUUSSCD.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "STRFBQS9QNUUSSCD.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "STRFBQS9QNUUSSCD.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "STRFBQS9QNUUSSCD", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "STRFBQS9QNUUSSCD.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "STRFBQS9QNUUSSCD.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "STRFBQS9QNUUSSCD.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "STRFBQS9QNUUSSCD", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "STRFBQS9QNUUSSCD.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "STRFBQS9QNUUSSCD.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4480000000" + }, + "appliesTo" : [ ] + }, + "STRFBQS9QNUUSSCD.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "STRFBQS9QNUUSSCD.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2609" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "SG2J8TRQ57JQYCRA" : { + "SG2J8TRQ57JQYCRA.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SG2J8TRQ57JQYCRA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SG2J8TRQ57JQYCRA.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SG2J8TRQ57JQYCRA.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SG2J8TRQ57JQYCRA.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "SG2J8TRQ57JQYCRA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SG2J8TRQ57JQYCRA.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "SG2J8TRQ57JQYCRA.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SG2J8TRQ57JQYCRA.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "SG2J8TRQ57JQYCRA.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9130" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SG2J8TRQ57JQYCRA.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SG2J8TRQ57JQYCRA", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "SG2J8TRQ57JQYCRA.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SG2J8TRQ57JQYCRA.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1743" + }, + "appliesTo" : [ ] + }, + "SG2J8TRQ57JQYCRA.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SG2J8TRQ57JQYCRA.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SG2J8TRQ57JQYCRA.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "SG2J8TRQ57JQYCRA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SG2J8TRQ57JQYCRA.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "SG2J8TRQ57JQYCRA.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SG2J8TRQ57JQYCRA.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SG2J8TRQ57JQYCRA", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "SG2J8TRQ57JQYCRA.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SG2J8TRQ57JQYCRA.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3425" + }, + "appliesTo" : [ ] + }, + "SG2J8TRQ57JQYCRA.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SG2J8TRQ57JQYCRA.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SG2J8TRQ57JQYCRA.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "SG2J8TRQ57JQYCRA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SG2J8TRQ57JQYCRA.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "SG2J8TRQ57JQYCRA.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SG2J8TRQ57JQYCRA.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SG2J8TRQ57JQYCRA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SG2J8TRQ57JQYCRA.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SG2J8TRQ57JQYCRA.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8751" + }, + "appliesTo" : [ ] + }, + "SG2J8TRQ57JQYCRA.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SG2J8TRQ57JQYCRA.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SG2J8TRQ57JQYCRA.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SG2J8TRQ57JQYCRA", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "SG2J8TRQ57JQYCRA.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SG2J8TRQ57JQYCRA.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4441" + }, + "appliesTo" : [ ] + }, + "SG2J8TRQ57JQYCRA.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SG2J8TRQ57JQYCRA.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SG2J8TRQ57JQYCRA.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "SG2J8TRQ57JQYCRA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SG2J8TRQ57JQYCRA.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "SG2J8TRQ57JQYCRA.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4590" + }, + "appliesTo" : [ ] + }, + "SG2J8TRQ57JQYCRA.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "SG2J8TRQ57JQYCRA.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "38G6R9HH2W74WD78" : { + "38G6R9HH2W74WD78.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "38G6R9HH2W74WD78", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "38G6R9HH2W74WD78.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "38G6R9HH2W74WD78.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "38G6R9HH2W74WD78.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "38G6R9HH2W74WD78", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "38G6R9HH2W74WD78.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "38G6R9HH2W74WD78.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "38G6R9HH2W74WD78.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "38G6R9HH2W74WD78.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8297" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "38G6R9HH2W74WD78.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "38G6R9HH2W74WD78", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "38G6R9HH2W74WD78.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "38G6R9HH2W74WD78.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3640" + }, + "appliesTo" : [ ] + }, + "38G6R9HH2W74WD78.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "38G6R9HH2W74WD78.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "38G6R9HH2W74WD78.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "38G6R9HH2W74WD78", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "38G6R9HH2W74WD78.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "38G6R9HH2W74WD78.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "38G6R9HH2W74WD78.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "38G6R9HH2W74WD78", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "38G6R9HH2W74WD78.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "38G6R9HH2W74WD78.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "38G6R9HH2W74WD78.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "38G6R9HH2W74WD78.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17033" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "38G6R9HH2W74WD78.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "38G6R9HH2W74WD78", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "38G6R9HH2W74WD78.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "38G6R9HH2W74WD78.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5480" + }, + "appliesTo" : [ ] + }, + "38G6R9HH2W74WD78.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "38G6R9HH2W74WD78.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "38G6R9HH2W74WD78.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "38G6R9HH2W74WD78", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "38G6R9HH2W74WD78.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "38G6R9HH2W74WD78.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23020" + }, + "appliesTo" : [ ] + }, + "38G6R9HH2W74WD78.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "38G6R9HH2W74WD78.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "38G6R9HH2W74WD78.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "38G6R9HH2W74WD78", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "38G6R9HH2W74WD78.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "38G6R9HH2W74WD78.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10387" + }, + "appliesTo" : [ ] + }, + "38G6R9HH2W74WD78.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "38G6R9HH2W74WD78.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "38G6R9HH2W74WD78.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "38G6R9HH2W74WD78", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "38G6R9HH2W74WD78.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "38G6R9HH2W74WD78.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9828" + }, + "appliesTo" : [ ] + }, + "38G6R9HH2W74WD78.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "38G6R9HH2W74WD78.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "38G6R9HH2W74WD78.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "38G6R9HH2W74WD78", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "38G6R9HH2W74WD78.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "38G6R9HH2W74WD78.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5267" + }, + "appliesTo" : [ ] + }, + "38G6R9HH2W74WD78.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "38G6R9HH2W74WD78.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "38G6R9HH2W74WD78.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "38G6R9HH2W74WD78", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "38G6R9HH2W74WD78.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "38G6R9HH2W74WD78.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "GPTGBM5JNED7SKZW" : { + "GPTGBM5JNED7SKZW.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "GPTGBM5JNED7SKZW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GPTGBM5JNED7SKZW.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "GPTGBM5JNED7SKZW.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GPTGBM5JNED7SKZW.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "GPTGBM5JNED7SKZW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GPTGBM5JNED7SKZW.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "GPTGBM5JNED7SKZW.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8980" + }, + "appliesTo" : [ ] + }, + "GPTGBM5JNED7SKZW.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "GPTGBM5JNED7SKZW.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GPTGBM5JNED7SKZW.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "GPTGBM5JNED7SKZW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GPTGBM5JNED7SKZW.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "GPTGBM5JNED7SKZW.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "GPTGBM5JNED7SKZW.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "GPTGBM5JNED7SKZW", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "GPTGBM5JNED7SKZW.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "GPTGBM5JNED7SKZW.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "GPTGBM5JNED7SKZW.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "GPTGBM5JNED7SKZW.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "42014" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GPTGBM5JNED7SKZW.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "GPTGBM5JNED7SKZW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GPTGBM5JNED7SKZW.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "GPTGBM5JNED7SKZW.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "GPTGBM5JNED7SKZW.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "GPTGBM5JNED7SKZW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GPTGBM5JNED7SKZW.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "GPTGBM5JNED7SKZW.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22685" + }, + "appliesTo" : [ ] + }, + "GPTGBM5JNED7SKZW.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "GPTGBM5JNED7SKZW.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GPTGBM5JNED7SKZW.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "GPTGBM5JNED7SKZW", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "GPTGBM5JNED7SKZW.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "GPTGBM5JNED7SKZW.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21494" + }, + "appliesTo" : [ ] + }, + "GPTGBM5JNED7SKZW.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "GPTGBM5JNED7SKZW.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GPTGBM5JNED7SKZW.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "GPTGBM5JNED7SKZW", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "GPTGBM5JNED7SKZW.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "GPTGBM5JNED7SKZW.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "GPTGBM5JNED7SKZW.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "GPTGBM5JNED7SKZW.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16578" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GPTGBM5JNED7SKZW.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "GPTGBM5JNED7SKZW", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "GPTGBM5JNED7SKZW.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "GPTGBM5JNED7SKZW.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8367" + }, + "appliesTo" : [ ] + }, + "GPTGBM5JNED7SKZW.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "GPTGBM5JNED7SKZW.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GPTGBM5JNED7SKZW.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "GPTGBM5JNED7SKZW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GPTGBM5JNED7SKZW.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "GPTGBM5JNED7SKZW.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GPTGBM5JNED7SKZW.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "GPTGBM5JNED7SKZW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GPTGBM5JNED7SKZW.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "GPTGBM5JNED7SKZW.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "44998" + }, + "appliesTo" : [ ] + }, + "GPTGBM5JNED7SKZW.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "GPTGBM5JNED7SKZW.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "GPTGBM5JNED7SKZW.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "GPTGBM5JNED7SKZW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GPTGBM5JNED7SKZW.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "GPTGBM5JNED7SKZW.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17779" + }, + "appliesTo" : [ ] + }, + "GPTGBM5JNED7SKZW.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "GPTGBM5JNED7SKZW.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "ASDZTDFMC5425T7P" : { + "ASDZTDFMC5425T7P.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ASDZTDFMC5425T7P", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ASDZTDFMC5425T7P.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ASDZTDFMC5425T7P.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ASDZTDFMC5425T7P.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ASDZTDFMC5425T7P.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "406" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ASDZTDFMC5425T7P.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ASDZTDFMC5425T7P", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "ASDZTDFMC5425T7P.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ASDZTDFMC5425T7P.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "211" + }, + "appliesTo" : [ ] + }, + "ASDZTDFMC5425T7P.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ASDZTDFMC5425T7P.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ASDZTDFMC5425T7P.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ASDZTDFMC5425T7P", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "ASDZTDFMC5425T7P.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ASDZTDFMC5425T7P.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "570" + }, + "appliesTo" : [ ] + }, + "ASDZTDFMC5425T7P.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ASDZTDFMC5425T7P.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ASDZTDFMC5425T7P.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ASDZTDFMC5425T7P", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ASDZTDFMC5425T7P.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ASDZTDFMC5425T7P.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "337" + }, + "appliesTo" : [ ] + }, + "ASDZTDFMC5425T7P.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ASDZTDFMC5425T7P.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ASDZTDFMC5425T7P.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ASDZTDFMC5425T7P", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ASDZTDFMC5425T7P.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ASDZTDFMC5425T7P.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "687" + }, + "appliesTo" : [ ] + }, + "ASDZTDFMC5425T7P.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ASDZTDFMC5425T7P.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ASDZTDFMC5425T7P.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ASDZTDFMC5425T7P", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "ASDZTDFMC5425T7P.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ASDZTDFMC5425T7P.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "353" + }, + "appliesTo" : [ ] + }, + "ASDZTDFMC5425T7P.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ASDZTDFMC5425T7P.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ASDZTDFMC5425T7P.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ASDZTDFMC5425T7P", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "ASDZTDFMC5425T7P.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ASDZTDFMC5425T7P.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ASDZTDFMC5425T7P.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ASDZTDFMC5425T7P", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ASDZTDFMC5425T7P.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ASDZTDFMC5425T7P.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0240000000" + }, + "appliesTo" : [ ] + }, + "ASDZTDFMC5425T7P.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ASDZTDFMC5425T7P.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "207" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ASDZTDFMC5425T7P.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ASDZTDFMC5425T7P", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ASDZTDFMC5425T7P.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ASDZTDFMC5425T7P.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ASDZTDFMC5425T7P.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ASDZTDFMC5425T7P", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "ASDZTDFMC5425T7P.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ASDZTDFMC5425T7P.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ASDZTDFMC5425T7P.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ASDZTDFMC5425T7P", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "ASDZTDFMC5425T7P.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ASDZTDFMC5425T7P.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "953" + }, + "appliesTo" : [ ] + }, + "ASDZTDFMC5425T7P.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ASDZTDFMC5425T7P.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "FMN62RHYUNCFD57B" : { + "FMN62RHYUNCFD57B.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "FMN62RHYUNCFD57B", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "FMN62RHYUNCFD57B.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "FMN62RHYUNCFD57B.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0036000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FMN62RHYUNCFD57B.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "FMN62RHYUNCFD57B", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "FMN62RHYUNCFD57B.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "FMN62RHYUNCFD57B.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0025000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FMN62RHYUNCFD57B.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "FMN62RHYUNCFD57B", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "FMN62RHYUNCFD57B.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "FMN62RHYUNCFD57B.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0017000000" + }, + "appliesTo" : [ ] + }, + "FMN62RHYUNCFD57B.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "FMN62RHYUNCFD57B.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FMN62RHYUNCFD57B.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "FMN62RHYUNCFD57B", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "FMN62RHYUNCFD57B.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "FMN62RHYUNCFD57B.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29" + }, + "appliesTo" : [ ] + }, + "FMN62RHYUNCFD57B.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "FMN62RHYUNCFD57B.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FMN62RHYUNCFD57B.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "FMN62RHYUNCFD57B", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "FMN62RHYUNCFD57B.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "FMN62RHYUNCFD57B.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "57" + }, + "appliesTo" : [ ] + }, + "FMN62RHYUNCFD57B.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "FMN62RHYUNCFD57B.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FMN62RHYUNCFD57B.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "FMN62RHYUNCFD57B", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "FMN62RHYUNCFD57B.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "FMN62RHYUNCFD57B.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30" + }, + "appliesTo" : [ ] + }, + "FMN62RHYUNCFD57B.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "FMN62RHYUNCFD57B.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0012000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "2Y6EVK4CR7GZUMHR" : { + "2Y6EVK4CR7GZUMHR.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "2Y6EVK4CR7GZUMHR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2Y6EVK4CR7GZUMHR.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "2Y6EVK4CR7GZUMHR.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1617" + }, + "appliesTo" : [ ] + }, + "2Y6EVK4CR7GZUMHR.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "2Y6EVK4CR7GZUMHR.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2Y6EVK4CR7GZUMHR.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "2Y6EVK4CR7GZUMHR", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "2Y6EVK4CR7GZUMHR.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "2Y6EVK4CR7GZUMHR.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2Y6EVK4CR7GZUMHR.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "2Y6EVK4CR7GZUMHR", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "2Y6EVK4CR7GZUMHR.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "2Y6EVK4CR7GZUMHR.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1000000000" + }, + "appliesTo" : [ ] + }, + "2Y6EVK4CR7GZUMHR.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "2Y6EVK4CR7GZUMHR.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1638" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2Y6EVK4CR7GZUMHR.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "2Y6EVK4CR7GZUMHR", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "2Y6EVK4CR7GZUMHR.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "2Y6EVK4CR7GZUMHR.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "588" + }, + "appliesTo" : [ ] + }, + "2Y6EVK4CR7GZUMHR.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "2Y6EVK4CR7GZUMHR.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2Y6EVK4CR7GZUMHR.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "2Y6EVK4CR7GZUMHR", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "2Y6EVK4CR7GZUMHR.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "2Y6EVK4CR7GZUMHR.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "2Y6EVK4CR7GZUMHR.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "2Y6EVK4CR7GZUMHR.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4166" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2Y6EVK4CR7GZUMHR.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "2Y6EVK4CR7GZUMHR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2Y6EVK4CR7GZUMHR.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "2Y6EVK4CR7GZUMHR.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2Y6EVK4CR7GZUMHR.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "2Y6EVK4CR7GZUMHR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2Y6EVK4CR7GZUMHR.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "2Y6EVK4CR7GZUMHR.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "817" + }, + "appliesTo" : [ ] + }, + "2Y6EVK4CR7GZUMHR.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "2Y6EVK4CR7GZUMHR.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2Y6EVK4CR7GZUMHR.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "2Y6EVK4CR7GZUMHR", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "2Y6EVK4CR7GZUMHR.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "2Y6EVK4CR7GZUMHR.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2Y6EVK4CR7GZUMHR.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "2Y6EVK4CR7GZUMHR", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "2Y6EVK4CR7GZUMHR.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "2Y6EVK4CR7GZUMHR.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "954" + }, + "appliesTo" : [ ] + }, + "2Y6EVK4CR7GZUMHR.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "2Y6EVK4CR7GZUMHR.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2Y6EVK4CR7GZUMHR.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "2Y6EVK4CR7GZUMHR", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "2Y6EVK4CR7GZUMHR.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "2Y6EVK4CR7GZUMHR.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3342" + }, + "appliesTo" : [ ] + }, + "2Y6EVK4CR7GZUMHR.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "2Y6EVK4CR7GZUMHR.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2Y6EVK4CR7GZUMHR.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "2Y6EVK4CR7GZUMHR", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "2Y6EVK4CR7GZUMHR.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "2Y6EVK4CR7GZUMHR.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1460" + }, + "appliesTo" : [ ] + }, + "2Y6EVK4CR7GZUMHR.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "2Y6EVK4CR7GZUMHR.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "332GEN3V5S3FTKZJ" : { + "332GEN3V5S3FTKZJ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "332GEN3V5S3FTKZJ", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "332GEN3V5S3FTKZJ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "332GEN3V5S3FTKZJ.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "332GEN3V5S3FTKZJ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "332GEN3V5S3FTKZJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "332GEN3V5S3FTKZJ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "332GEN3V5S3FTKZJ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1867" + }, + "appliesTo" : [ ] + }, + "332GEN3V5S3FTKZJ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "332GEN3V5S3FTKZJ.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "332GEN3V5S3FTKZJ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "332GEN3V5S3FTKZJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "332GEN3V5S3FTKZJ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "332GEN3V5S3FTKZJ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4905" + }, + "appliesTo" : [ ] + }, + "332GEN3V5S3FTKZJ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "332GEN3V5S3FTKZJ.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "332GEN3V5S3FTKZJ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "332GEN3V5S3FTKZJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "332GEN3V5S3FTKZJ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "332GEN3V5S3FTKZJ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3683" + }, + "appliesTo" : [ ] + }, + "332GEN3V5S3FTKZJ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "332GEN3V5S3FTKZJ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "332GEN3V5S3FTKZJ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "332GEN3V5S3FTKZJ", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "332GEN3V5S3FTKZJ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "332GEN3V5S3FTKZJ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "332GEN3V5S3FTKZJ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "332GEN3V5S3FTKZJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "332GEN3V5S3FTKZJ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "332GEN3V5S3FTKZJ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0910000000" + }, + "appliesTo" : [ ] + }, + "332GEN3V5S3FTKZJ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "332GEN3V5S3FTKZJ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1120" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "332GEN3V5S3FTKZJ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "332GEN3V5S3FTKZJ", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "332GEN3V5S3FTKZJ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "332GEN3V5S3FTKZJ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "332GEN3V5S3FTKZJ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "332GEN3V5S3FTKZJ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1884" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "332GEN3V5S3FTKZJ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "332GEN3V5S3FTKZJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "332GEN3V5S3FTKZJ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "332GEN3V5S3FTKZJ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2075" + }, + "appliesTo" : [ ] + }, + "332GEN3V5S3FTKZJ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "332GEN3V5S3FTKZJ.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "332GEN3V5S3FTKZJ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "332GEN3V5S3FTKZJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "332GEN3V5S3FTKZJ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "332GEN3V5S3FTKZJ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2887" + }, + "appliesTo" : [ ] + }, + "332GEN3V5S3FTKZJ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "332GEN3V5S3FTKZJ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "332GEN3V5S3FTKZJ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "332GEN3V5S3FTKZJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "332GEN3V5S3FTKZJ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "332GEN3V5S3FTKZJ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1170000000" + }, + "appliesTo" : [ ] + }, + "332GEN3V5S3FTKZJ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "332GEN3V5S3FTKZJ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1087" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "332GEN3V5S3FTKZJ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "332GEN3V5S3FTKZJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "332GEN3V5S3FTKZJ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "332GEN3V5S3FTKZJ.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "QYFXFTGTF3CQ3XKH" : { + "QYFXFTGTF3CQ3XKH.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QYFXFTGTF3CQ3XKH", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QYFXFTGTF3CQ3XKH.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QYFXFTGTF3CQ3XKH.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0059000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QYFXFTGTF3CQ3XKH.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QYFXFTGTF3CQ3XKH", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QYFXFTGTF3CQ3XKH.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QYFXFTGTF3CQ3XKH.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "61" + }, + "appliesTo" : [ ] + }, + "QYFXFTGTF3CQ3XKH.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QYFXFTGTF3CQ3XKH.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0023000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QYFXFTGTF3CQ3XKH.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "QYFXFTGTF3CQ3XKH", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QYFXFTGTF3CQ3XKH.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "QYFXFTGTF3CQ3XKH.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0052000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QYFXFTGTF3CQ3XKH.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QYFXFTGTF3CQ3XKH", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QYFXFTGTF3CQ3XKH.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QYFXFTGTF3CQ3XKH.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "118" + }, + "appliesTo" : [ ] + }, + "QYFXFTGTF3CQ3XKH.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QYFXFTGTF3CQ3XKH.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QYFXFTGTF3CQ3XKH.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "QYFXFTGTF3CQ3XKH", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QYFXFTGTF3CQ3XKH.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "QYFXFTGTF3CQ3XKH.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "65" + }, + "appliesTo" : [ ] + }, + "QYFXFTGTF3CQ3XKH.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "QYFXFTGTF3CQ3XKH.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0025000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QYFXFTGTF3CQ3XKH.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QYFXFTGTF3CQ3XKH", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QYFXFTGTF3CQ3XKH.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QYFXFTGTF3CQ3XKH.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QYFXFTGTF3CQ3XKH.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QYFXFTGTF3CQ3XKH.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "50" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QYFXFTGTF3CQ3XKH.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QYFXFTGTF3CQ3XKH", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QYFXFTGTF3CQ3XKH.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QYFXFTGTF3CQ3XKH.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0029000000" + }, + "appliesTo" : [ ] + }, + "QYFXFTGTF3CQ3XKH.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QYFXFTGTF3CQ3XKH.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QYFXFTGTF3CQ3XKH.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "QYFXFTGTF3CQ3XKH", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QYFXFTGTF3CQ3XKH.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "QYFXFTGTF3CQ3XKH.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0048000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QYFXFTGTF3CQ3XKH.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "QYFXFTGTF3CQ3XKH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QYFXFTGTF3CQ3XKH.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "QYFXFTGTF3CQ3XKH.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0064000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QYFXFTGTF3CQ3XKH.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "QYFXFTGTF3CQ3XKH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QYFXFTGTF3CQ3XKH.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "QYFXFTGTF3CQ3XKH.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "54" + }, + "appliesTo" : [ ] + }, + "QYFXFTGTF3CQ3XKH.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "QYFXFTGTF3CQ3XKH.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QYFXFTGTF3CQ3XKH.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "QYFXFTGTF3CQ3XKH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QYFXFTGTF3CQ3XKH.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "QYFXFTGTF3CQ3XKH.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27" + }, + "appliesTo" : [ ] + }, + "QYFXFTGTF3CQ3XKH.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "QYFXFTGTF3CQ3XKH.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0031000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QYFXFTGTF3CQ3XKH.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "QYFXFTGTF3CQ3XKH", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "QYFXFTGTF3CQ3XKH.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "QYFXFTGTF3CQ3XKH.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "129" + }, + "appliesTo" : [ ] + }, + "QYFXFTGTF3CQ3XKH.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "QYFXFTGTF3CQ3XKH.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "4WKDEBCNFZKFEKEZ" : { + "4WKDEBCNFZKFEKEZ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "4WKDEBCNFZKFEKEZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "4WKDEBCNFZKFEKEZ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "4WKDEBCNFZKFEKEZ.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2310000000" + }, + "appliesTo" : [ ] + }, + "4WKDEBCNFZKFEKEZ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "4WKDEBCNFZKFEKEZ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6087" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4WKDEBCNFZKFEKEZ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "4WKDEBCNFZKFEKEZ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4WKDEBCNFZKFEKEZ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "4WKDEBCNFZKFEKEZ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "4WKDEBCNFZKFEKEZ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "4WKDEBCNFZKFEKEZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4WKDEBCNFZKFEKEZ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "4WKDEBCNFZKFEKEZ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "4WKDEBCNFZKFEKEZ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "4WKDEBCNFZKFEKEZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4WKDEBCNFZKFEKEZ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "4WKDEBCNFZKFEKEZ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4360000000" + }, + "appliesTo" : [ ] + }, + "4WKDEBCNFZKFEKEZ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "4WKDEBCNFZKFEKEZ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3823" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4WKDEBCNFZKFEKEZ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "4WKDEBCNFZKFEKEZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "4WKDEBCNFZKFEKEZ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "4WKDEBCNFZKFEKEZ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "4WKDEBCNFZKFEKEZ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "4WKDEBCNFZKFEKEZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "4WKDEBCNFZKFEKEZ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "4WKDEBCNFZKFEKEZ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3780000000" + }, + "appliesTo" : [ ] + }, + "4WKDEBCNFZKFEKEZ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "4WKDEBCNFZKFEKEZ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3313" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4WKDEBCNFZKFEKEZ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "4WKDEBCNFZKFEKEZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4WKDEBCNFZKFEKEZ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "4WKDEBCNFZKFEKEZ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7493" + }, + "appliesTo" : [ ] + }, + "4WKDEBCNFZKFEKEZ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "4WKDEBCNFZKFEKEZ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4WKDEBCNFZKFEKEZ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "4WKDEBCNFZKFEKEZ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "4WKDEBCNFZKFEKEZ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "4WKDEBCNFZKFEKEZ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17534" + }, + "appliesTo" : [ ] + }, + "4WKDEBCNFZKFEKEZ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "4WKDEBCNFZKFEKEZ.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4WKDEBCNFZKFEKEZ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "4WKDEBCNFZKFEKEZ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "4WKDEBCNFZKFEKEZ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "4WKDEBCNFZKFEKEZ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8945" + }, + "appliesTo" : [ ] + }, + "4WKDEBCNFZKFEKEZ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "4WKDEBCNFZKFEKEZ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4WKDEBCNFZKFEKEZ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "4WKDEBCNFZKFEKEZ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4WKDEBCNFZKFEKEZ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "4WKDEBCNFZKFEKEZ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11429" + }, + "appliesTo" : [ ] + }, + "4WKDEBCNFZKFEKEZ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "4WKDEBCNFZKFEKEZ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4WKDEBCNFZKFEKEZ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "4WKDEBCNFZKFEKEZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "4WKDEBCNFZKFEKEZ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "4WKDEBCNFZKFEKEZ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6494" + }, + "appliesTo" : [ ] + }, + "4WKDEBCNFZKFEKEZ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "4WKDEBCNFZKFEKEZ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "VJAJFF3S48Y4ZK6H" : { + "VJAJFF3S48Y4ZK6H.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "VJAJFF3S48Y4ZK6H", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "VJAJFF3S48Y4ZK6H.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "VJAJFF3S48Y4ZK6H.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2680" + }, + "appliesTo" : [ ] + }, + "VJAJFF3S48Y4ZK6H.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "VJAJFF3S48Y4ZK6H.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VJAJFF3S48Y4ZK6H.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "VJAJFF3S48Y4ZK6H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VJAJFF3S48Y4ZK6H.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "VJAJFF3S48Y4ZK6H.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1577" + }, + "appliesTo" : [ ] + }, + "VJAJFF3S48Y4ZK6H.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "VJAJFF3S48Y4ZK6H.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VJAJFF3S48Y4ZK6H.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "VJAJFF3S48Y4ZK6H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VJAJFF3S48Y4ZK6H.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "VJAJFF3S48Y4ZK6H.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VJAJFF3S48Y4ZK6H.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "VJAJFF3S48Y4ZK6H", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "VJAJFF3S48Y4ZK6H.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "VJAJFF3S48Y4ZK6H.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7108" + }, + "appliesTo" : [ ] + }, + "VJAJFF3S48Y4ZK6H.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "VJAJFF3S48Y4ZK6H.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VJAJFF3S48Y4ZK6H.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "VJAJFF3S48Y4ZK6H", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "VJAJFF3S48Y4ZK6H.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "VJAJFF3S48Y4ZK6H.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2621" + }, + "appliesTo" : [ ] + }, + "VJAJFF3S48Y4ZK6H.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "VJAJFF3S48Y4ZK6H.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VJAJFF3S48Y4ZK6H.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "VJAJFF3S48Y4ZK6H", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "VJAJFF3S48Y4ZK6H.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "VJAJFF3S48Y4ZK6H.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VJAJFF3S48Y4ZK6H.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "VJAJFF3S48Y4ZK6H", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "VJAJFF3S48Y4ZK6H.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "VJAJFF3S48Y4ZK6H.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4259" + }, + "appliesTo" : [ ] + }, + "VJAJFF3S48Y4ZK6H.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "VJAJFF3S48Y4ZK6H.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VJAJFF3S48Y4ZK6H.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "VJAJFF3S48Y4ZK6H", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "VJAJFF3S48Y4ZK6H.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "VJAJFF3S48Y4ZK6H.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5208" + }, + "appliesTo" : [ ] + }, + "VJAJFF3S48Y4ZK6H.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "VJAJFF3S48Y4ZK6H.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VJAJFF3S48Y4ZK6H.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "VJAJFF3S48Y4ZK6H", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "VJAJFF3S48Y4ZK6H.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "VJAJFF3S48Y4ZK6H.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VJAJFF3S48Y4ZK6H.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "VJAJFF3S48Y4ZK6H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VJAJFF3S48Y4ZK6H.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "VJAJFF3S48Y4ZK6H.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "VJAJFF3S48Y4ZK6H.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "VJAJFF3S48Y4ZK6H.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3035" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VJAJFF3S48Y4ZK6H.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "VJAJFF3S48Y4ZK6H", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "VJAJFF3S48Y4ZK6H.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "VJAJFF3S48Y4ZK6H.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1628" + }, + "appliesTo" : [ ] + }, + "VJAJFF3S48Y4ZK6H.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "VJAJFF3S48Y4ZK6H.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "JKUR5KFWCTQXCJKH" : { + "JKUR5KFWCTQXCJKH.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "JKUR5KFWCTQXCJKH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "JKUR5KFWCTQXCJKH.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "JKUR5KFWCTQXCJKH.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16486" + }, + "appliesTo" : [ ] + }, + "JKUR5KFWCTQXCJKH.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "JKUR5KFWCTQXCJKH.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "JKUR5KFWCTQXCJKH.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "JKUR5KFWCTQXCJKH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JKUR5KFWCTQXCJKH.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "JKUR5KFWCTQXCJKH.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33400" + }, + "appliesTo" : [ ] + }, + "JKUR5KFWCTQXCJKH.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "JKUR5KFWCTQXCJKH.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "JKUR5KFWCTQXCJKH.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "JKUR5KFWCTQXCJKH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "JKUR5KFWCTQXCJKH.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "JKUR5KFWCTQXCJKH.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "JKUR5KFWCTQXCJKH.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "JKUR5KFWCTQXCJKH.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "95266" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JKUR5KFWCTQXCJKH.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "JKUR5KFWCTQXCJKH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "JKUR5KFWCTQXCJKH.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "JKUR5KFWCTQXCJKH.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "JKUR5KFWCTQXCJKH.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "JKUR5KFWCTQXCJKH.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32903" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JKUR5KFWCTQXCJKH.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "JKUR5KFWCTQXCJKH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "JKUR5KFWCTQXCJKH.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "JKUR5KFWCTQXCJKH.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "48938" + }, + "appliesTo" : [ ] + }, + "JKUR5KFWCTQXCJKH.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "JKUR5KFWCTQXCJKH.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "JKUR5KFWCTQXCJKH.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "JKUR5KFWCTQXCJKH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "JKUR5KFWCTQXCJKH.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "JKUR5KFWCTQXCJKH.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8210000000" + }, + "appliesTo" : [ ] + }, + "JKUR5KFWCTQXCJKH.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "JKUR5KFWCTQXCJKH.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47848" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "JKUR5KFWCTQXCJKH.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "JKUR5KFWCTQXCJKH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JKUR5KFWCTQXCJKH.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "JKUR5KFWCTQXCJKH.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9110000000" + }, + "appliesTo" : [ ] + }, + "JKUR5KFWCTQXCJKH.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "JKUR5KFWCTQXCJKH.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16740" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "JKUR5KFWCTQXCJKH.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "JKUR5KFWCTQXCJKH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "JKUR5KFWCTQXCJKH.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "JKUR5KFWCTQXCJKH.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "JKUR5KFWCTQXCJKH.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "JKUR5KFWCTQXCJKH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JKUR5KFWCTQXCJKH.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "JKUR5KFWCTQXCJKH.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "JKUR5KFWCTQXCJKH.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "JKUR5KFWCTQXCJKH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "JKUR5KFWCTQXCJKH.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "JKUR5KFWCTQXCJKH.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "97689" + }, + "appliesTo" : [ ] + }, + "JKUR5KFWCTQXCJKH.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "JKUR5KFWCTQXCJKH.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "JKUR5KFWCTQXCJKH.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "JKUR5KFWCTQXCJKH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "JKUR5KFWCTQXCJKH.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "JKUR5KFWCTQXCJKH.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "PSVDMQASMVK87NYB" : { + "PSVDMQASMVK87NYB.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "PSVDMQASMVK87NYB", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "PSVDMQASMVK87NYB.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "PSVDMQASMVK87NYB.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14212" + }, + "appliesTo" : [ ] + }, + "PSVDMQASMVK87NYB.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "PSVDMQASMVK87NYB.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PSVDMQASMVK87NYB.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "PSVDMQASMVK87NYB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PSVDMQASMVK87NYB.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "PSVDMQASMVK87NYB.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33363" + }, + "appliesTo" : [ ] + }, + "PSVDMQASMVK87NYB.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "PSVDMQASMVK87NYB.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PSVDMQASMVK87NYB.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "PSVDMQASMVK87NYB", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "PSVDMQASMVK87NYB.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "PSVDMQASMVK87NYB.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "PSVDMQASMVK87NYB.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "PSVDMQASMVK87NYB.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28995" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PSVDMQASMVK87NYB.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "PSVDMQASMVK87NYB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PSVDMQASMVK87NYB.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "PSVDMQASMVK87NYB.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "58910" + }, + "appliesTo" : [ ] + }, + "PSVDMQASMVK87NYB.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "PSVDMQASMVK87NYB.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PSVDMQASMVK87NYB.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "PSVDMQASMVK87NYB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PSVDMQASMVK87NYB.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "PSVDMQASMVK87NYB.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "PSVDMQASMVK87NYB.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "PSVDMQASMVK87NYB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PSVDMQASMVK87NYB.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "PSVDMQASMVK87NYB.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "PSVDMQASMVK87NYB.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "PSVDMQASMVK87NYB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PSVDMQASMVK87NYB.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "PSVDMQASMVK87NYB.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "PSVDMQASMVK87NYB.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "PSVDMQASMVK87NYB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PSVDMQASMVK87NYB.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "PSVDMQASMVK87NYB.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0070000000" + }, + "appliesTo" : [ ] + }, + "PSVDMQASMVK87NYB.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "PSVDMQASMVK87NYB.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16441" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PSVDMQASMVK87NYB.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "PSVDMQASMVK87NYB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PSVDMQASMVK87NYB.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "PSVDMQASMVK87NYB.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "69760" + }, + "appliesTo" : [ ] + }, + "PSVDMQASMVK87NYB.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "PSVDMQASMVK87NYB.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PSVDMQASMVK87NYB.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "PSVDMQASMVK87NYB", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "PSVDMQASMVK87NYB.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "PSVDMQASMVK87NYB.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29518" + }, + "appliesTo" : [ ] + }, + "PSVDMQASMVK87NYB.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "PSVDMQASMVK87NYB.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PSVDMQASMVK87NYB.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "PSVDMQASMVK87NYB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PSVDMQASMVK87NYB.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "PSVDMQASMVK87NYB.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33849" + }, + "appliesTo" : [ ] + }, + "PSVDMQASMVK87NYB.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "PSVDMQASMVK87NYB.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PSVDMQASMVK87NYB.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "PSVDMQASMVK87NYB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PSVDMQASMVK87NYB.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "PSVDMQASMVK87NYB.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.0710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "NVQ292F84D694PKT" : { + "NVQ292F84D694PKT.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "NVQ292F84D694PKT", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "NVQ292F84D694PKT.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "NVQ292F84D694PKT.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1298" + }, + "appliesTo" : [ ] + }, + "NVQ292F84D694PKT.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "NVQ292F84D694PKT.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "NVQ292F84D694PKT.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "NVQ292F84D694PKT", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "NVQ292F84D694PKT.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "NVQ292F84D694PKT.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "514" + }, + "appliesTo" : [ ] + }, + "NVQ292F84D694PKT.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "NVQ292F84D694PKT.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "NVQ292F84D694PKT.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "NVQ292F84D694PKT", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "NVQ292F84D694PKT.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "NVQ292F84D694PKT.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "NVQ292F84D694PKT.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "NVQ292F84D694PKT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NVQ292F84D694PKT.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "NVQ292F84D694PKT.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1411" + }, + "appliesTo" : [ ] + }, + "NVQ292F84D694PKT.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "NVQ292F84D694PKT.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "NVQ292F84D694PKT.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "NVQ292F84D694PKT", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "NVQ292F84D694PKT.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "NVQ292F84D694PKT.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "NVQ292F84D694PKT.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "NVQ292F84D694PKT", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "NVQ292F84D694PKT.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "NVQ292F84D694PKT.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "981" + }, + "appliesTo" : [ ] + }, + "NVQ292F84D694PKT.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "NVQ292F84D694PKT.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "NVQ292F84D694PKT.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "NVQ292F84D694PKT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NVQ292F84D694PKT.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "NVQ292F84D694PKT.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1120000000" + }, + "appliesTo" : [ ] + }, + "NVQ292F84D694PKT.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "NVQ292F84D694PKT.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "452" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "NVQ292F84D694PKT.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "NVQ292F84D694PKT", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "NVQ292F84D694PKT.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "NVQ292F84D694PKT.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "NVQ292F84D694PKT.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "NVQ292F84D694PKT.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3662" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "NVQ292F84D694PKT.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "NVQ292F84D694PKT", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "NVQ292F84D694PKT.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "NVQ292F84D694PKT.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "NVQ292F84D694PKT.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "NVQ292F84D694PKT.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3095" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "NVQ292F84D694PKT.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "NVQ292F84D694PKT", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "NVQ292F84D694PKT.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "NVQ292F84D694PKT.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1388" + }, + "appliesTo" : [ ] + }, + "NVQ292F84D694PKT.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "NVQ292F84D694PKT.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "NVQ292F84D694PKT.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "NVQ292F84D694PKT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NVQ292F84D694PKT.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "NVQ292F84D694PKT.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "SMTM4XWYH27FGA26" : { + "SMTM4XWYH27FGA26.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "SMTM4XWYH27FGA26", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "SMTM4XWYH27FGA26.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "SMTM4XWYH27FGA26.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1020000000" + }, + "appliesTo" : [ ] + }, + "SMTM4XWYH27FGA26.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "SMTM4XWYH27FGA26.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "36334" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SMTM4XWYH27FGA26.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "SMTM4XWYH27FGA26", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "SMTM4XWYH27FGA26.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "SMTM4XWYH27FGA26.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.0770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SMTM4XWYH27FGA26.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SMTM4XWYH27FGA26", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "SMTM4XWYH27FGA26.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SMTM4XWYH27FGA26.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30296" + }, + "appliesTo" : [ ] + }, + "SMTM4XWYH27FGA26.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SMTM4XWYH27FGA26.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SMTM4XWYH27FGA26.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SMTM4XWYH27FGA26", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "SMTM4XWYH27FGA26.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SMTM4XWYH27FGA26.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "41627" + }, + "appliesTo" : [ ] + }, + "SMTM4XWYH27FGA26.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SMTM4XWYH27FGA26.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SMTM4XWYH27FGA26.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SMTM4XWYH27FGA26", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "SMTM4XWYH27FGA26.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SMTM4XWYH27FGA26.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "78259" + }, + "appliesTo" : [ ] + }, + "SMTM4XWYH27FGA26.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SMTM4XWYH27FGA26.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SMTM4XWYH27FGA26.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SMTM4XWYH27FGA26", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "SMTM4XWYH27FGA26.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SMTM4XWYH27FGA26.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.1290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SMTM4XWYH27FGA26.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SMTM4XWYH27FGA26", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "SMTM4XWYH27FGA26.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SMTM4XWYH27FGA26.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12365" + }, + "appliesTo" : [ ] + }, + "SMTM4XWYH27FGA26.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SMTM4XWYH27FGA26.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SMTM4XWYH27FGA26.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "SMTM4XWYH27FGA26", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "SMTM4XWYH27FGA26.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "SMTM4XWYH27FGA26.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "89741" + }, + "appliesTo" : [ ] + }, + "SMTM4XWYH27FGA26.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "SMTM4XWYH27FGA26.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "BW6AXJST7E7P4GBA" : { + "BW6AXJST7E7P4GBA.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "BW6AXJST7E7P4GBA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BW6AXJST7E7P4GBA.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "BW6AXJST7E7P4GBA.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "75560" + }, + "appliesTo" : [ ] + }, + "BW6AXJST7E7P4GBA.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "BW6AXJST7E7P4GBA.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BW6AXJST7E7P4GBA.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "BW6AXJST7E7P4GBA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BW6AXJST7E7P4GBA.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "BW6AXJST7E7P4GBA.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38508" + }, + "appliesTo" : [ ] + }, + "BW6AXJST7E7P4GBA.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "BW6AXJST7E7P4GBA.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.3890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BW6AXJST7E7P4GBA.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "BW6AXJST7E7P4GBA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BW6AXJST7E7P4GBA.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "BW6AXJST7E7P4GBA.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.1820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BW6AXJST7E7P4GBA.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "BW6AXJST7E7P4GBA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BW6AXJST7E7P4GBA.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "BW6AXJST7E7P4GBA.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.0070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BW6AXJST7E7P4GBA.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "BW6AXJST7E7P4GBA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BW6AXJST7E7P4GBA.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "BW6AXJST7E7P4GBA.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "192774" + }, + "appliesTo" : [ ] + }, + "BW6AXJST7E7P4GBA.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "BW6AXJST7E7P4GBA.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BW6AXJST7E7P4GBA.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "BW6AXJST7E7P4GBA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BW6AXJST7E7P4GBA.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "BW6AXJST7E7P4GBA.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "143456" + }, + "appliesTo" : [ ] + }, + "BW6AXJST7E7P4GBA.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "BW6AXJST7E7P4GBA.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BW6AXJST7E7P4GBA.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "BW6AXJST7E7P4GBA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BW6AXJST7E7P4GBA.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "BW6AXJST7E7P4GBA.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.1560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BW6AXJST7E7P4GBA.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "BW6AXJST7E7P4GBA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BW6AXJST7E7P4GBA.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "BW6AXJST7E7P4GBA.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7340000000" + }, + "appliesTo" : [ ] + }, + "BW6AXJST7E7P4GBA.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "BW6AXJST7E7P4GBA.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "98139" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BW6AXJST7E7P4GBA.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "BW6AXJST7E7P4GBA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BW6AXJST7E7P4GBA.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "BW6AXJST7E7P4GBA.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "85858" + }, + "appliesTo" : [ ] + }, + "BW6AXJST7E7P4GBA.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "BW6AXJST7E7P4GBA.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BW6AXJST7E7P4GBA.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "BW6AXJST7E7P4GBA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BW6AXJST7E7P4GBA.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "BW6AXJST7E7P4GBA.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "75622" + }, + "appliesTo" : [ ] + }, + "BW6AXJST7E7P4GBA.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "BW6AXJST7E7P4GBA.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BW6AXJST7E7P4GBA.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "BW6AXJST7E7P4GBA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BW6AXJST7E7P4GBA.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "BW6AXJST7E7P4GBA.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "43762" + }, + "appliesTo" : [ ] + }, + "BW6AXJST7E7P4GBA.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "BW6AXJST7E7P4GBA.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BW6AXJST7E7P4GBA.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "BW6AXJST7E7P4GBA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BW6AXJST7E7P4GBA.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "BW6AXJST7E7P4GBA.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.4420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "3UP33R2RXCADSPSX" : { + "3UP33R2RXCADSPSX.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "3UP33R2RXCADSPSX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3UP33R2RXCADSPSX.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "3UP33R2RXCADSPSX.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4660" + }, + "appliesTo" : [ ] + }, + "3UP33R2RXCADSPSX.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "3UP33R2RXCADSPSX.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3UP33R2RXCADSPSX.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "3UP33R2RXCADSPSX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3UP33R2RXCADSPSX.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "3UP33R2RXCADSPSX.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3974000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3UP33R2RXCADSPSX.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "3UP33R2RXCADSPSX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3UP33R2RXCADSPSX.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "3UP33R2RXCADSPSX.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2067" + }, + "appliesTo" : [ ] + }, + "3UP33R2RXCADSPSX.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "3UP33R2RXCADSPSX.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3UP33R2RXCADSPSX.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "3UP33R2RXCADSPSX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3UP33R2RXCADSPSX.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "3UP33R2RXCADSPSX.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3456000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3UP33R2RXCADSPSX.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "3UP33R2RXCADSPSX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3UP33R2RXCADSPSX.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "3UP33R2RXCADSPSX.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9478" + }, + "appliesTo" : [ ] + }, + "3UP33R2RXCADSPSX.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "3UP33R2RXCADSPSX.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3UP33R2RXCADSPSX.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "3UP33R2RXCADSPSX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3UP33R2RXCADSPSX.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "3UP33R2RXCADSPSX.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5699000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3UP33R2RXCADSPSX.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "3UP33R2RXCADSPSX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3UP33R2RXCADSPSX.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "3UP33R2RXCADSPSX.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2377" + }, + "appliesTo" : [ ] + }, + "3UP33R2RXCADSPSX.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "3UP33R2RXCADSPSX.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2714000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3UP33R2RXCADSPSX.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "3UP33R2RXCADSPSX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3UP33R2RXCADSPSX.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "3UP33R2RXCADSPSX.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4956000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3UP33R2RXCADSPSX.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "3UP33R2RXCADSPSX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3UP33R2RXCADSPSX.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "3UP33R2RXCADSPSX.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4205" + }, + "appliesTo" : [ ] + }, + "3UP33R2RXCADSPSX.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "3UP33R2RXCADSPSX.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3UP33R2RXCADSPSX.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "3UP33R2RXCADSPSX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3UP33R2RXCADSPSX.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "3UP33R2RXCADSPSX.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1840000000" + }, + "appliesTo" : [ ] + }, + "3UP33R2RXCADSPSX.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "3UP33R2RXCADSPSX.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4836" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3UP33R2RXCADSPSX.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "3UP33R2RXCADSPSX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3UP33R2RXCADSPSX.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "3UP33R2RXCADSPSX.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4052" + }, + "appliesTo" : [ ] + }, + "3UP33R2RXCADSPSX.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "3UP33R2RXCADSPSX.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3UP33R2RXCADSPSX.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "3UP33R2RXCADSPSX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3UP33R2RXCADSPSX.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "3UP33R2RXCADSPSX.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7905" + }, + "appliesTo" : [ ] + }, + "3UP33R2RXCADSPSX.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "3UP33R2RXCADSPSX.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "M3V33TUCANWGSDGH" : { + "M3V33TUCANWGSDGH.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "M3V33TUCANWGSDGH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M3V33TUCANWGSDGH.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "M3V33TUCANWGSDGH.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "64101" + }, + "appliesTo" : [ ] + }, + "M3V33TUCANWGSDGH.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "M3V33TUCANWGSDGH.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "M3V33TUCANWGSDGH.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "M3V33TUCANWGSDGH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M3V33TUCANWGSDGH.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "M3V33TUCANWGSDGH.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.6930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "M3V33TUCANWGSDGH.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "M3V33TUCANWGSDGH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "M3V33TUCANWGSDGH.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "M3V33TUCANWGSDGH.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "377511" + }, + "appliesTo" : [ ] + }, + "M3V33TUCANWGSDGH.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "M3V33TUCANWGSDGH.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "M3V33TUCANWGSDGH.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "M3V33TUCANWGSDGH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "M3V33TUCANWGSDGH.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "M3V33TUCANWGSDGH.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "63442" + }, + "appliesTo" : [ ] + }, + "M3V33TUCANWGSDGH.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "M3V33TUCANWGSDGH.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.2420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "M3V33TUCANWGSDGH.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "M3V33TUCANWGSDGH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "M3V33TUCANWGSDGH.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "M3V33TUCANWGSDGH.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.6570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "M3V33TUCANWGSDGH.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "M3V33TUCANWGSDGH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M3V33TUCANWGSDGH.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "M3V33TUCANWGSDGH.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "127998" + }, + "appliesTo" : [ ] + }, + "M3V33TUCANWGSDGH.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "M3V33TUCANWGSDGH.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "M3V33TUCANWGSDGH.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "M3V33TUCANWGSDGH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "M3V33TUCANWGSDGH.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "M3V33TUCANWGSDGH.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "126706" + }, + "appliesTo" : [ ] + }, + "M3V33TUCANWGSDGH.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "M3V33TUCANWGSDGH.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "M3V33TUCANWGSDGH.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "M3V33TUCANWGSDGH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "M3V33TUCANWGSDGH.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "M3V33TUCANWGSDGH.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.5380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "M3V33TUCANWGSDGH.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "M3V33TUCANWGSDGH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "M3V33TUCANWGSDGH.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "M3V33TUCANWGSDGH.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "370551" + }, + "appliesTo" : [ ] + }, + "M3V33TUCANWGSDGH.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "M3V33TUCANWGSDGH.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "M3V33TUCANWGSDGH.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "M3V33TUCANWGSDGH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "M3V33TUCANWGSDGH.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "M3V33TUCANWGSDGH.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.0700000000" + }, + "appliesTo" : [ ] + }, + "M3V33TUCANWGSDGH.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "M3V33TUCANWGSDGH.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "185802" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "M3V33TUCANWGSDGH.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "M3V33TUCANWGSDGH", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "M3V33TUCANWGSDGH.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "M3V33TUCANWGSDGH.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "188995" + }, + "appliesTo" : [ ] + }, + "M3V33TUCANWGSDGH.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "M3V33TUCANWGSDGH.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.1920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "G9R9MZY25V8QGW6J" : { + "G9R9MZY25V8QGW6J.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "G9R9MZY25V8QGW6J", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "G9R9MZY25V8QGW6J.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "G9R9MZY25V8QGW6J.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5688" + }, + "appliesTo" : [ ] + }, + "G9R9MZY25V8QGW6J.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "G9R9MZY25V8QGW6J.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "G9R9MZY25V8QGW6J.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "G9R9MZY25V8QGW6J", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "G9R9MZY25V8QGW6J.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "G9R9MZY25V8QGW6J.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3483" + }, + "appliesTo" : [ ] + }, + "G9R9MZY25V8QGW6J.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "G9R9MZY25V8QGW6J.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "G9R9MZY25V8QGW6J.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "G9R9MZY25V8QGW6J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "G9R9MZY25V8QGW6J.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "G9R9MZY25V8QGW6J.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6255" + }, + "appliesTo" : [ ] + }, + "G9R9MZY25V8QGW6J.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "G9R9MZY25V8QGW6J.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "G9R9MZY25V8QGW6J.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "G9R9MZY25V8QGW6J", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "G9R9MZY25V8QGW6J.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "G9R9MZY25V8QGW6J.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "G9R9MZY25V8QGW6J.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "G9R9MZY25V8QGW6J.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12112" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "G9R9MZY25V8QGW6J.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "G9R9MZY25V8QGW6J", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "G9R9MZY25V8QGW6J.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "G9R9MZY25V8QGW6J.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "G9R9MZY25V8QGW6J.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "G9R9MZY25V8QGW6J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "G9R9MZY25V8QGW6J.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "G9R9MZY25V8QGW6J.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3620000000" + }, + "appliesTo" : [ ] + }, + "G9R9MZY25V8QGW6J.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "G9R9MZY25V8QGW6J.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3168" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "G9R9MZY25V8QGW6J.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "G9R9MZY25V8QGW6J", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "G9R9MZY25V8QGW6J.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "G9R9MZY25V8QGW6J.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "G9R9MZY25V8QGW6J.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "G9R9MZY25V8QGW6J", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "G9R9MZY25V8QGW6J.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "G9R9MZY25V8QGW6J.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1960000000" + }, + "appliesTo" : [ ] + }, + "G9R9MZY25V8QGW6J.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "G9R9MZY25V8QGW6J.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7734" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "G9R9MZY25V8QGW6J.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "G9R9MZY25V8QGW6J", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "G9R9MZY25V8QGW6J.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "G9R9MZY25V8QGW6J.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16021" + }, + "appliesTo" : [ ] + }, + "G9R9MZY25V8QGW6J.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "G9R9MZY25V8QGW6J.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "G9R9MZY25V8QGW6J.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "G9R9MZY25V8QGW6J", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "G9R9MZY25V8QGW6J.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "G9R9MZY25V8QGW6J.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9757" + }, + "appliesTo" : [ ] + }, + "G9R9MZY25V8QGW6J.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "G9R9MZY25V8QGW6J.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "G9R9MZY25V8QGW6J.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "G9R9MZY25V8QGW6J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "G9R9MZY25V8QGW6J.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "G9R9MZY25V8QGW6J.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "7EN7RS9DVKDM4WXZ" : { + "7EN7RS9DVKDM4WXZ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "7EN7RS9DVKDM4WXZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7EN7RS9DVKDM4WXZ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "7EN7RS9DVKDM4WXZ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5216" + }, + "appliesTo" : [ ] + }, + "7EN7RS9DVKDM4WXZ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "7EN7RS9DVKDM4WXZ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7EN7RS9DVKDM4WXZ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "7EN7RS9DVKDM4WXZ", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "7EN7RS9DVKDM4WXZ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "7EN7RS9DVKDM4WXZ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7EN7RS9DVKDM4WXZ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "7EN7RS9DVKDM4WXZ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7EN7RS9DVKDM4WXZ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "7EN7RS9DVKDM4WXZ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14083" + }, + "appliesTo" : [ ] + }, + "7EN7RS9DVKDM4WXZ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "7EN7RS9DVKDM4WXZ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7EN7RS9DVKDM4WXZ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "7EN7RS9DVKDM4WXZ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7EN7RS9DVKDM4WXZ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "7EN7RS9DVKDM4WXZ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8691" + }, + "appliesTo" : [ ] + }, + "7EN7RS9DVKDM4WXZ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "7EN7RS9DVKDM4WXZ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7EN7RS9DVKDM4WXZ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "7EN7RS9DVKDM4WXZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7EN7RS9DVKDM4WXZ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "7EN7RS9DVKDM4WXZ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16506" + }, + "appliesTo" : [ ] + }, + "7EN7RS9DVKDM4WXZ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "7EN7RS9DVKDM4WXZ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7EN7RS9DVKDM4WXZ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "7EN7RS9DVKDM4WXZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7EN7RS9DVKDM4WXZ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "7EN7RS9DVKDM4WXZ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8126" + }, + "appliesTo" : [ ] + }, + "7EN7RS9DVKDM4WXZ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "7EN7RS9DVKDM4WXZ.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7EN7RS9DVKDM4WXZ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "7EN7RS9DVKDM4WXZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7EN7RS9DVKDM4WXZ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "7EN7RS9DVKDM4WXZ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7EN7RS9DVKDM4WXZ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "7EN7RS9DVKDM4WXZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7EN7RS9DVKDM4WXZ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "7EN7RS9DVKDM4WXZ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9983" + }, + "appliesTo" : [ ] + }, + "7EN7RS9DVKDM4WXZ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "7EN7RS9DVKDM4WXZ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7EN7RS9DVKDM4WXZ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "7EN7RS9DVKDM4WXZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7EN7RS9DVKDM4WXZ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "7EN7RS9DVKDM4WXZ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7EN7RS9DVKDM4WXZ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "7EN7RS9DVKDM4WXZ", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "7EN7RS9DVKDM4WXZ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "7EN7RS9DVKDM4WXZ.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "7EN7RS9DVKDM4WXZ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "7EN7RS9DVKDM4WXZ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23466" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7EN7RS9DVKDM4WXZ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "7EN7RS9DVKDM4WXZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7EN7RS9DVKDM4WXZ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "7EN7RS9DVKDM4WXZ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5810000000" + }, + "appliesTo" : [ ] + }, + "7EN7RS9DVKDM4WXZ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "7EN7RS9DVKDM4WXZ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5093" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "H7FHBN6ZTC6EJQ2N" : { + "H7FHBN6ZTC6EJQ2N.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "H7FHBN6ZTC6EJQ2N", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "H7FHBN6ZTC6EJQ2N.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "H7FHBN6ZTC6EJQ2N.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9050000000" + }, + "appliesTo" : [ ] + }, + "H7FHBN6ZTC6EJQ2N.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "H7FHBN6ZTC6EJQ2N.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7993" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "H7FHBN6ZTC6EJQ2N.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "H7FHBN6ZTC6EJQ2N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H7FHBN6ZTC6EJQ2N.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "H7FHBN6ZTC6EJQ2N.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18013" + }, + "appliesTo" : [ ] + }, + "H7FHBN6ZTC6EJQ2N.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "H7FHBN6ZTC6EJQ2N.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "H7FHBN6ZTC6EJQ2N.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "H7FHBN6ZTC6EJQ2N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H7FHBN6ZTC6EJQ2N.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "H7FHBN6ZTC6EJQ2N.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "H7FHBN6ZTC6EJQ2N.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "H7FHBN6ZTC6EJQ2N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H7FHBN6ZTC6EJQ2N.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "H7FHBN6ZTC6EJQ2N.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9218" + }, + "appliesTo" : [ ] + }, + "H7FHBN6ZTC6EJQ2N.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "H7FHBN6ZTC6EJQ2N.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "H7FHBN6ZTC6EJQ2N.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "H7FHBN6ZTC6EJQ2N", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "H7FHBN6ZTC6EJQ2N.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "H7FHBN6ZTC6EJQ2N.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "H7FHBN6ZTC6EJQ2N.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "H7FHBN6ZTC6EJQ2N.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37183" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "H7FHBN6ZTC6EJQ2N.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "H7FHBN6ZTC6EJQ2N", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "H7FHBN6ZTC6EJQ2N.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "H7FHBN6ZTC6EJQ2N.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "H7FHBN6ZTC6EJQ2N.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "H7FHBN6ZTC6EJQ2N", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "H7FHBN6ZTC6EJQ2N.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "H7FHBN6ZTC6EJQ2N.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16587" + }, + "appliesTo" : [ ] + }, + "H7FHBN6ZTC6EJQ2N.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "H7FHBN6ZTC6EJQ2N.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "H7FHBN6ZTC6EJQ2N.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "H7FHBN6ZTC6EJQ2N", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "H7FHBN6ZTC6EJQ2N.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "H7FHBN6ZTC6EJQ2N.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "H7FHBN6ZTC6EJQ2N.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "H7FHBN6ZTC6EJQ2N", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "H7FHBN6ZTC6EJQ2N.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "H7FHBN6ZTC6EJQ2N.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18969" + }, + "appliesTo" : [ ] + }, + "H7FHBN6ZTC6EJQ2N.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "H7FHBN6ZTC6EJQ2N.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "H7FHBN6ZTC6EJQ2N.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "H7FHBN6ZTC6EJQ2N", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "H7FHBN6ZTC6EJQ2N.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "H7FHBN6ZTC6EJQ2N.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "H7FHBN6ZTC6EJQ2N.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "H7FHBN6ZTC6EJQ2N", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "H7FHBN6ZTC6EJQ2N.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "H7FHBN6ZTC6EJQ2N.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "H7FHBN6ZTC6EJQ2N.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "H7FHBN6ZTC6EJQ2N.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15611" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "H7FHBN6ZTC6EJQ2N.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "H7FHBN6ZTC6EJQ2N", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "H7FHBN6ZTC6EJQ2N.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "H7FHBN6ZTC6EJQ2N.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31215" + }, + "appliesTo" : [ ] + }, + "H7FHBN6ZTC6EJQ2N.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "H7FHBN6ZTC6EJQ2N.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "MC5Y8Q7EUMRZTRZE" : { + "MC5Y8Q7EUMRZTRZE.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "MC5Y8Q7EUMRZTRZE", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "MC5Y8Q7EUMRZTRZE.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "MC5Y8Q7EUMRZTRZE.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2160000000" + }, + "appliesTo" : [ ] + }, + "MC5Y8Q7EUMRZTRZE.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "MC5Y8Q7EUMRZTRZE.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "84517" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MC5Y8Q7EUMRZTRZE.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "MC5Y8Q7EUMRZTRZE", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "MC5Y8Q7EUMRZTRZE.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "MC5Y8Q7EUMRZTRZE.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.0260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MC5Y8Q7EUMRZTRZE.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "MC5Y8Q7EUMRZTRZE", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "MC5Y8Q7EUMRZTRZE.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "MC5Y8Q7EUMRZTRZE.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "86724" + }, + "appliesTo" : [ ] + }, + "MC5Y8Q7EUMRZTRZE.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "MC5Y8Q7EUMRZTRZE.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MC5Y8Q7EUMRZTRZE.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "MC5Y8Q7EUMRZTRZE", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "MC5Y8Q7EUMRZTRZE.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "MC5Y8Q7EUMRZTRZE.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "167267" + }, + "appliesTo" : [ ] + }, + "MC5Y8Q7EUMRZTRZE.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "MC5Y8Q7EUMRZTRZE.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MC5Y8Q7EUMRZTRZE.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "MC5Y8Q7EUMRZTRZE", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "MC5Y8Q7EUMRZTRZE.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "MC5Y8Q7EUMRZTRZE.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.7030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MC5Y8Q7EUMRZTRZE.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "MC5Y8Q7EUMRZTRZE", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "MC5Y8Q7EUMRZTRZE.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "MC5Y8Q7EUMRZTRZE.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30415" + }, + "appliesTo" : [ ] + }, + "MC5Y8Q7EUMRZTRZE.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "MC5Y8Q7EUMRZTRZE.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MC5Y8Q7EUMRZTRZE.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "MC5Y8Q7EUMRZTRZE", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "MC5Y8Q7EUMRZTRZE.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "MC5Y8Q7EUMRZTRZE.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "60544" + }, + "appliesTo" : [ ] + }, + "MC5Y8Q7EUMRZTRZE.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "MC5Y8Q7EUMRZTRZE.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MC5Y8Q7EUMRZTRZE.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "MC5Y8Q7EUMRZTRZE", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "MC5Y8Q7EUMRZTRZE.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "MC5Y8Q7EUMRZTRZE.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.5220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MC5Y8Q7EUMRZTRZE.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "MC5Y8Q7EUMRZTRZE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MC5Y8Q7EUMRZTRZE.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "MC5Y8Q7EUMRZTRZE.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.2830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MC5Y8Q7EUMRZTRZE.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "MC5Y8Q7EUMRZTRZE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MC5Y8Q7EUMRZTRZE.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "MC5Y8Q7EUMRZTRZE.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "62645" + }, + "appliesTo" : [ ] + }, + "MC5Y8Q7EUMRZTRZE.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "MC5Y8Q7EUMRZTRZE.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MC5Y8Q7EUMRZTRZE.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "MC5Y8Q7EUMRZTRZE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MC5Y8Q7EUMRZTRZE.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "MC5Y8Q7EUMRZTRZE.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31487" + }, + "appliesTo" : [ ] + }, + "MC5Y8Q7EUMRZTRZE.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "MC5Y8Q7EUMRZTRZE.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MC5Y8Q7EUMRZTRZE.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "MC5Y8Q7EUMRZTRZE", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "MC5Y8Q7EUMRZTRZE.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "MC5Y8Q7EUMRZTRZE.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "172771" + }, + "appliesTo" : [ ] + }, + "MC5Y8Q7EUMRZTRZE.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "MC5Y8Q7EUMRZTRZE.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "P2HREWU59F8JRCVB" : { + "P2HREWU59F8JRCVB.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "P2HREWU59F8JRCVB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "P2HREWU59F8JRCVB.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "P2HREWU59F8JRCVB.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "P2HREWU59F8JRCVB.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "P2HREWU59F8JRCVB", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "P2HREWU59F8JRCVB.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "P2HREWU59F8JRCVB.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22370" + }, + "appliesTo" : [ ] + }, + "P2HREWU59F8JRCVB.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "P2HREWU59F8JRCVB.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "P2HREWU59F8JRCVB.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "P2HREWU59F8JRCVB", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "P2HREWU59F8JRCVB.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "P2HREWU59F8JRCVB.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "45471" + }, + "appliesTo" : [ ] + }, + "P2HREWU59F8JRCVB.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "P2HREWU59F8JRCVB.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "P2HREWU59F8JRCVB.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "P2HREWU59F8JRCVB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "P2HREWU59F8JRCVB.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "P2HREWU59F8JRCVB.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2364000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "P2HREWU59F8JRCVB.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "P2HREWU59F8JRCVB", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "P2HREWU59F8JRCVB.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "P2HREWU59F8JRCVB.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23061" + }, + "appliesTo" : [ ] + }, + "P2HREWU59F8JRCVB.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "P2HREWU59F8JRCVB.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "P2HREWU59F8JRCVB.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "P2HREWU59F8JRCVB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P2HREWU59F8JRCVB.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "P2HREWU59F8JRCVB.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26412" + }, + "appliesTo" : [ ] + }, + "P2HREWU59F8JRCVB.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "P2HREWU59F8JRCVB.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "P2HREWU59F8JRCVB.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "P2HREWU59F8JRCVB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "P2HREWU59F8JRCVB.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "P2HREWU59F8JRCVB.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1052000000" + }, + "appliesTo" : [ ] + }, + "P2HREWU59F8JRCVB.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "P2HREWU59F8JRCVB.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25628" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "P2HREWU59F8JRCVB.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "P2HREWU59F8JRCVB", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "P2HREWU59F8JRCVB.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "P2HREWU59F8JRCVB.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11185" + }, + "appliesTo" : [ ] + }, + "P2HREWU59F8JRCVB.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "P2HREWU59F8JRCVB.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "P2HREWU59F8JRCVB.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "P2HREWU59F8JRCVB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "P2HREWU59F8JRCVB.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "P2HREWU59F8JRCVB.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9617000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "P2HREWU59F8JRCVB.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "P2HREWU59F8JRCVB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "P2HREWU59F8JRCVB.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "P2HREWU59F8JRCVB.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "53648" + }, + "appliesTo" : [ ] + }, + "P2HREWU59F8JRCVB.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "P2HREWU59F8JRCVB.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "P2HREWU59F8JRCVB.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "P2HREWU59F8JRCVB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P2HREWU59F8JRCVB.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "P2HREWU59F8JRCVB.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2212000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "P2HREWU59F8JRCVB.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "P2HREWU59F8JRCVB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P2HREWU59F8JRCVB.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "P2HREWU59F8JRCVB.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12895" + }, + "appliesTo" : [ ] + }, + "P2HREWU59F8JRCVB.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "P2HREWU59F8JRCVB.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "YAQ9JKWS8Q8NSPYJ" : { + "YAQ9JKWS8Q8NSPYJ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "YAQ9JKWS8Q8NSPYJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YAQ9JKWS8Q8NSPYJ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "YAQ9JKWS8Q8NSPYJ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1651000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YAQ9JKWS8Q8NSPYJ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YAQ9JKWS8Q8NSPYJ", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "YAQ9JKWS8Q8NSPYJ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YAQ9JKWS8Q8NSPYJ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1565000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YAQ9JKWS8Q8NSPYJ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "YAQ9JKWS8Q8NSPYJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YAQ9JKWS8Q8NSPYJ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "YAQ9JKWS8Q8NSPYJ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "709" + }, + "appliesTo" : [ ] + }, + "YAQ9JKWS8Q8NSPYJ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "YAQ9JKWS8Q8NSPYJ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YAQ9JKWS8Q8NSPYJ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "YAQ9JKWS8Q8NSPYJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YAQ9JKWS8Q8NSPYJ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "YAQ9JKWS8Q8NSPYJ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1408" + }, + "appliesTo" : [ ] + }, + "YAQ9JKWS8Q8NSPYJ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "YAQ9JKWS8Q8NSPYJ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YAQ9JKWS8Q8NSPYJ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YAQ9JKWS8Q8NSPYJ", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "YAQ9JKWS8Q8NSPYJ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YAQ9JKWS8Q8NSPYJ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0769000000" + }, + "appliesTo" : [ ] + }, + "YAQ9JKWS8Q8NSPYJ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YAQ9JKWS8Q8NSPYJ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "673" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YAQ9JKWS8Q8NSPYJ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "YAQ9JKWS8Q8NSPYJ", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "YAQ9JKWS8Q8NSPYJ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "YAQ9JKWS8Q8NSPYJ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3701" + }, + "appliesTo" : [ ] + }, + "YAQ9JKWS8Q8NSPYJ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "YAQ9JKWS8Q8NSPYJ.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YAQ9JKWS8Q8NSPYJ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YAQ9JKWS8Q8NSPYJ", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "YAQ9JKWS8Q8NSPYJ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YAQ9JKWS8Q8NSPYJ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3519" + }, + "appliesTo" : [ ] + }, + "YAQ9JKWS8Q8NSPYJ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YAQ9JKWS8Q8NSPYJ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YAQ9JKWS8Q8NSPYJ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "YAQ9JKWS8Q8NSPYJ", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "YAQ9JKWS8Q8NSPYJ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "YAQ9JKWS8Q8NSPYJ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1391000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YAQ9JKWS8Q8NSPYJ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "YAQ9JKWS8Q8NSPYJ", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "YAQ9JKWS8Q8NSPYJ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "YAQ9JKWS8Q8NSPYJ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1451000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YAQ9JKWS8Q8NSPYJ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YAQ9JKWS8Q8NSPYJ", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "YAQ9JKWS8Q8NSPYJ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YAQ9JKWS8Q8NSPYJ.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YAQ9JKWS8Q8NSPYJ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YAQ9JKWS8Q8NSPYJ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1337" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YAQ9JKWS8Q8NSPYJ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "YAQ9JKWS8Q8NSPYJ", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "YAQ9JKWS8Q8NSPYJ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "YAQ9JKWS8Q8NSPYJ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1862" + }, + "appliesTo" : [ ] + }, + "YAQ9JKWS8Q8NSPYJ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "YAQ9JKWS8Q8NSPYJ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0708000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YAQ9JKWS8Q8NSPYJ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YAQ9JKWS8Q8NSPYJ", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "YAQ9JKWS8Q8NSPYJ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YAQ9JKWS8Q8NSPYJ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1789" + }, + "appliesTo" : [ ] + }, + "YAQ9JKWS8Q8NSPYJ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YAQ9JKWS8Q8NSPYJ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0681000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "3GAF7GUVFB6WDJQR" : { + "3GAF7GUVFB6WDJQR.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "3GAF7GUVFB6WDJQR", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "3GAF7GUVFB6WDJQR.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "3GAF7GUVFB6WDJQR.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3GAF7GUVFB6WDJQR.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "3GAF7GUVFB6WDJQR", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "3GAF7GUVFB6WDJQR.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "3GAF7GUVFB6WDJQR.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13758" + }, + "appliesTo" : [ ] + }, + "3GAF7GUVFB6WDJQR.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "3GAF7GUVFB6WDJQR.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3GAF7GUVFB6WDJQR.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "3GAF7GUVFB6WDJQR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3GAF7GUVFB6WDJQR.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "3GAF7GUVFB6WDJQR.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12073" + }, + "appliesTo" : [ ] + }, + "3GAF7GUVFB6WDJQR.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "3GAF7GUVFB6WDJQR.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3GAF7GUVFB6WDJQR.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "3GAF7GUVFB6WDJQR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3GAF7GUVFB6WDJQR.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "3GAF7GUVFB6WDJQR.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3GAF7GUVFB6WDJQR.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "3GAF7GUVFB6WDJQR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3GAF7GUVFB6WDJQR.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "3GAF7GUVFB6WDJQR.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6064" + }, + "appliesTo" : [ ] + }, + "3GAF7GUVFB6WDJQR.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "3GAF7GUVFB6WDJQR.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3GAF7GUVFB6WDJQR.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "3GAF7GUVFB6WDJQR", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "3GAF7GUVFB6WDJQR.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "3GAF7GUVFB6WDJQR.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "3GAF7GUVFB6WDJQR.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "3GAF7GUVFB6WDJQR.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "36613" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3GAF7GUVFB6WDJQR.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "3GAF7GUVFB6WDJQR", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3GAF7GUVFB6WDJQR.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "3GAF7GUVFB6WDJQR.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5084" + }, + "appliesTo" : [ ] + }, + "3GAF7GUVFB6WDJQR.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "3GAF7GUVFB6WDJQR.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3GAF7GUVFB6WDJQR.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "3GAF7GUVFB6WDJQR", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3GAF7GUVFB6WDJQR.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "3GAF7GUVFB6WDJQR.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12443" + }, + "appliesTo" : [ ] + }, + "3GAF7GUVFB6WDJQR.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "3GAF7GUVFB6WDJQR.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3GAF7GUVFB6WDJQR.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "3GAF7GUVFB6WDJQR", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3GAF7GUVFB6WDJQR.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "3GAF7GUVFB6WDJQR.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32307" + }, + "appliesTo" : [ ] + }, + "3GAF7GUVFB6WDJQR.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "3GAF7GUVFB6WDJQR.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3GAF7GUVFB6WDJQR.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "3GAF7GUVFB6WDJQR", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "3GAF7GUVFB6WDJQR.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "3GAF7GUVFB6WDJQR.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3GAF7GUVFB6WDJQR.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "3GAF7GUVFB6WDJQR", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "3GAF7GUVFB6WDJQR.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "3GAF7GUVFB6WDJQR.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14822" + }, + "appliesTo" : [ ] + }, + "3GAF7GUVFB6WDJQR.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "3GAF7GUVFB6WDJQR.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "B7KQBWQQMASEJN3N" : { + "B7KQBWQQMASEJN3N.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "B7KQBWQQMASEJN3N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "B7KQBWQQMASEJN3N.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "B7KQBWQQMASEJN3N.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6877" + }, + "appliesTo" : [ ] + }, + "B7KQBWQQMASEJN3N.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "B7KQBWQQMASEJN3N.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "B7KQBWQQMASEJN3N.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "B7KQBWQQMASEJN3N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "B7KQBWQQMASEJN3N.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "B7KQBWQQMASEJN3N.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "B7KQBWQQMASEJN3N.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "B7KQBWQQMASEJN3N", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "B7KQBWQQMASEJN3N.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "B7KQBWQQMASEJN3N.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12152" + }, + "appliesTo" : [ ] + }, + "B7KQBWQQMASEJN3N.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "B7KQBWQQMASEJN3N.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "B7KQBWQQMASEJN3N.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "B7KQBWQQMASEJN3N", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "B7KQBWQQMASEJN3N.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "B7KQBWQQMASEJN3N.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17895" + }, + "appliesTo" : [ ] + }, + "B7KQBWQQMASEJN3N.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "B7KQBWQQMASEJN3N.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "B7KQBWQQMASEJN3N.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "B7KQBWQQMASEJN3N", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "B7KQBWQQMASEJN3N.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "B7KQBWQQMASEJN3N.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5410000000" + }, + "appliesTo" : [ ] + }, + "B7KQBWQQMASEJN3N.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "B7KQBWQQMASEJN3N.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14223" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "B7KQBWQQMASEJN3N.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "B7KQBWQQMASEJN3N", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "B7KQBWQQMASEJN3N.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "B7KQBWQQMASEJN3N.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "B7KQBWQQMASEJN3N.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "B7KQBWQQMASEJN3N", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "B7KQBWQQMASEJN3N.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "B7KQBWQQMASEJN3N.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26729" + }, + "appliesTo" : [ ] + }, + "B7KQBWQQMASEJN3N.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "B7KQBWQQMASEJN3N.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "B7KQBWQQMASEJN3N.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "B7KQBWQQMASEJN3N", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "B7KQBWQQMASEJN3N.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "B7KQBWQQMASEJN3N.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "B7KQBWQQMASEJN3N.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "B7KQBWQQMASEJN3N", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "B7KQBWQQMASEJN3N.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "B7KQBWQQMASEJN3N.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35074" + }, + "appliesTo" : [ ] + }, + "B7KQBWQQMASEJN3N.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "B7KQBWQQMASEJN3N.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "B7KQBWQQMASEJN3N.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "B7KQBWQQMASEJN3N", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "B7KQBWQQMASEJN3N.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "B7KQBWQQMASEJN3N.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "B7KQBWQQMASEJN3N.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "B7KQBWQQMASEJN3N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "B7KQBWQQMASEJN3N.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "B7KQBWQQMASEJN3N.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "B7KQBWQQMASEJN3N.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "B7KQBWQQMASEJN3N.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13656" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "B7KQBWQQMASEJN3N.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "B7KQBWQQMASEJN3N", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "B7KQBWQQMASEJN3N.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "B7KQBWQQMASEJN3N.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6201" + }, + "appliesTo" : [ ] + }, + "B7KQBWQQMASEJN3N.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "B7KQBWQQMASEJN3N.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "D8R4U4YGJ7FBAM9V" : { + "D8R4U4YGJ7FBAM9V.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "D8R4U4YGJ7FBAM9V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "D8R4U4YGJ7FBAM9V.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "D8R4U4YGJ7FBAM9V.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8430000000" + }, + "appliesTo" : [ ] + }, + "D8R4U4YGJ7FBAM9V.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "D8R4U4YGJ7FBAM9V.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16147" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "D8R4U4YGJ7FBAM9V.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "D8R4U4YGJ7FBAM9V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "D8R4U4YGJ7FBAM9V.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "D8R4U4YGJ7FBAM9V.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "D8R4U4YGJ7FBAM9V.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "D8R4U4YGJ7FBAM9V", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "D8R4U4YGJ7FBAM9V.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "D8R4U4YGJ7FBAM9V.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7060000000" + }, + "appliesTo" : [ ] + }, + "D8R4U4YGJ7FBAM9V.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "D8R4U4YGJ7FBAM9V.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34653" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "D8R4U4YGJ7FBAM9V.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "D8R4U4YGJ7FBAM9V", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "D8R4U4YGJ7FBAM9V.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "D8R4U4YGJ7FBAM9V.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37181" + }, + "appliesTo" : [ ] + }, + "D8R4U4YGJ7FBAM9V.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "D8R4U4YGJ7FBAM9V.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "D8R4U4YGJ7FBAM9V.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "D8R4U4YGJ7FBAM9V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "D8R4U4YGJ7FBAM9V.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "D8R4U4YGJ7FBAM9V.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32004" + }, + "appliesTo" : [ ] + }, + "D8R4U4YGJ7FBAM9V.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "D8R4U4YGJ7FBAM9V.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "D8R4U4YGJ7FBAM9V.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "D8R4U4YGJ7FBAM9V", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "D8R4U4YGJ7FBAM9V.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "D8R4U4YGJ7FBAM9V.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "D8R4U4YGJ7FBAM9V.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "D8R4U4YGJ7FBAM9V.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19928" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "D8R4U4YGJ7FBAM9V.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "D8R4U4YGJ7FBAM9V", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "D8R4U4YGJ7FBAM9V.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "D8R4U4YGJ7FBAM9V.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "D8R4U4YGJ7FBAM9V.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "D8R4U4YGJ7FBAM9V", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "D8R4U4YGJ7FBAM9V.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "D8R4U4YGJ7FBAM9V.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "D8R4U4YGJ7FBAM9V.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "D8R4U4YGJ7FBAM9V.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "50018" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "D8R4U4YGJ7FBAM9V.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "D8R4U4YGJ7FBAM9V", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "D8R4U4YGJ7FBAM9V.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "D8R4U4YGJ7FBAM9V.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "56075" + }, + "appliesTo" : [ ] + }, + "D8R4U4YGJ7FBAM9V.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "D8R4U4YGJ7FBAM9V.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "D8R4U4YGJ7FBAM9V.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "D8R4U4YGJ7FBAM9V", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "D8R4U4YGJ7FBAM9V.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "D8R4U4YGJ7FBAM9V.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13216" + }, + "appliesTo" : [ ] + }, + "D8R4U4YGJ7FBAM9V.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "D8R4U4YGJ7FBAM9V.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "D8R4U4YGJ7FBAM9V.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "D8R4U4YGJ7FBAM9V", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "D8R4U4YGJ7FBAM9V.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "D8R4U4YGJ7FBAM9V.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "SSME5U3BWQXEH2ES" : { + "SSME5U3BWQXEH2ES.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SSME5U3BWQXEH2ES", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "SSME5U3BWQXEH2ES.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SSME5U3BWQXEH2ES.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "400" + }, + "appliesTo" : [ ] + }, + "SSME5U3BWQXEH2ES.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SSME5U3BWQXEH2ES.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SSME5U3BWQXEH2ES.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SSME5U3BWQXEH2ES", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "SSME5U3BWQXEH2ES.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SSME5U3BWQXEH2ES.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SSME5U3BWQXEH2ES.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SSME5U3BWQXEH2ES", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "SSME5U3BWQXEH2ES.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SSME5U3BWQXEH2ES.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0230000000" + }, + "appliesTo" : [ ] + }, + "SSME5U3BWQXEH2ES.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SSME5U3BWQXEH2ES.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "232" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SSME5U3BWQXEH2ES.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SSME5U3BWQXEH2ES", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "SSME5U3BWQXEH2ES.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SSME5U3BWQXEH2ES.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "425" + }, + "appliesTo" : [ ] + }, + "SSME5U3BWQXEH2ES.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SSME5U3BWQXEH2ES.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SSME5U3BWQXEH2ES.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SSME5U3BWQXEH2ES", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "SSME5U3BWQXEH2ES.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SSME5U3BWQXEH2ES.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SSME5U3BWQXEH2ES.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SSME5U3BWQXEH2ES.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "919" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "VWMNXYV7FJNWU55C" : { + "VWMNXYV7FJNWU55C.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "VWMNXYV7FJNWU55C", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "VWMNXYV7FJNWU55C.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "VWMNXYV7FJNWU55C.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3267" + }, + "appliesTo" : [ ] + }, + "VWMNXYV7FJNWU55C.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "VWMNXYV7FJNWU55C.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VWMNXYV7FJNWU55C.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "VWMNXYV7FJNWU55C", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "VWMNXYV7FJNWU55C.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "VWMNXYV7FJNWU55C.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1350000000" + }, + "appliesTo" : [ ] + }, + "VWMNXYV7FJNWU55C.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "VWMNXYV7FJNWU55C.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3164" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VWMNXYV7FJNWU55C.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "VWMNXYV7FJNWU55C", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "VWMNXYV7FJNWU55C.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "VWMNXYV7FJNWU55C.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "VWMNXYV7FJNWU55C.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "VWMNXYV7FJNWU55C.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6315" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VWMNXYV7FJNWU55C.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "VWMNXYV7FJNWU55C", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "VWMNXYV7FJNWU55C.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "VWMNXYV7FJNWU55C.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1976" + }, + "appliesTo" : [ ] + }, + "VWMNXYV7FJNWU55C.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "VWMNXYV7FJNWU55C.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VWMNXYV7FJNWU55C.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "VWMNXYV7FJNWU55C", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "VWMNXYV7FJNWU55C.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "VWMNXYV7FJNWU55C.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "KR92PJED8B49G7EJ" : { + "KR92PJED8B49G7EJ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "KR92PJED8B49G7EJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KR92PJED8B49G7EJ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "KR92PJED8B49G7EJ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3170000000" + }, + "appliesTo" : [ ] + }, + "KR92PJED8B49G7EJ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "KR92PJED8B49G7EJ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11541" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KR92PJED8B49G7EJ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "KR92PJED8B49G7EJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KR92PJED8B49G7EJ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "KR92PJED8B49G7EJ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KR92PJED8B49G7EJ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "KR92PJED8B49G7EJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "KR92PJED8B49G7EJ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "KR92PJED8B49G7EJ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "KR92PJED8B49G7EJ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "KR92PJED8B49G7EJ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19307" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KR92PJED8B49G7EJ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "KR92PJED8B49G7EJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "KR92PJED8B49G7EJ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "KR92PJED8B49G7EJ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11116" + }, + "appliesTo" : [ ] + }, + "KR92PJED8B49G7EJ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "KR92PJED8B49G7EJ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KR92PJED8B49G7EJ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "KR92PJED8B49G7EJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "KR92PJED8B49G7EJ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "KR92PJED8B49G7EJ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "45873" + }, + "appliesTo" : [ ] + }, + "KR92PJED8B49G7EJ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "KR92PJED8B49G7EJ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KR92PJED8B49G7EJ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "KR92PJED8B49G7EJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "KR92PJED8B49G7EJ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "KR92PJED8B49G7EJ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19249" + }, + "appliesTo" : [ ] + }, + "KR92PJED8B49G7EJ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "KR92PJED8B49G7EJ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KR92PJED8B49G7EJ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "KR92PJED8B49G7EJ", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "KR92PJED8B49G7EJ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "KR92PJED8B49G7EJ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KR92PJED8B49G7EJ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "KR92PJED8B49G7EJ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "KR92PJED8B49G7EJ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "KR92PJED8B49G7EJ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6938" + }, + "appliesTo" : [ ] + }, + "KR92PJED8B49G7EJ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "KR92PJED8B49G7EJ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KR92PJED8B49G7EJ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "KR92PJED8B49G7EJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "KR92PJED8B49G7EJ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "KR92PJED8B49G7EJ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KR92PJED8B49G7EJ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "KR92PJED8B49G7EJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "KR92PJED8B49G7EJ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "KR92PJED8B49G7EJ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "55314" + }, + "appliesTo" : [ ] + }, + "KR92PJED8B49G7EJ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "KR92PJED8B49G7EJ.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KR92PJED8B49G7EJ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "KR92PJED8B49G7EJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KR92PJED8B49G7EJ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "KR92PJED8B49G7EJ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22878" + }, + "appliesTo" : [ ] + }, + "KR92PJED8B49G7EJ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "KR92PJED8B49G7EJ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "YJQ6VUEJFXP5T23D" : { + "YJQ6VUEJFXP5T23D.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "YJQ6VUEJFXP5T23D", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YJQ6VUEJFXP5T23D.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "YJQ6VUEJFXP5T23D.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YJQ6VUEJFXP5T23D.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "YJQ6VUEJFXP5T23D", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YJQ6VUEJFXP5T23D.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "YJQ6VUEJFXP5T23D.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4037" + }, + "appliesTo" : [ ] + }, + "YJQ6VUEJFXP5T23D.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "YJQ6VUEJFXP5T23D.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YJQ6VUEJFXP5T23D.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YJQ6VUEJFXP5T23D", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YJQ6VUEJFXP5T23D.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YJQ6VUEJFXP5T23D.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YJQ6VUEJFXP5T23D.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YJQ6VUEJFXP5T23D", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "YJQ6VUEJFXP5T23D.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YJQ6VUEJFXP5T23D.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5205" + }, + "appliesTo" : [ ] + }, + "YJQ6VUEJFXP5T23D.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YJQ6VUEJFXP5T23D.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YJQ6VUEJFXP5T23D.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "YJQ6VUEJFXP5T23D", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "YJQ6VUEJFXP5T23D.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "YJQ6VUEJFXP5T23D.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YJQ6VUEJFXP5T23D.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "YJQ6VUEJFXP5T23D.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22599" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YJQ6VUEJFXP5T23D.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "YJQ6VUEJFXP5T23D", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YJQ6VUEJFXP5T23D.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "YJQ6VUEJFXP5T23D.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YJQ6VUEJFXP5T23D.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "YJQ6VUEJFXP5T23D.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8001" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YJQ6VUEJFXP5T23D.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "YJQ6VUEJFXP5T23D", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "YJQ6VUEJFXP5T23D.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "YJQ6VUEJFXP5T23D.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14998" + }, + "appliesTo" : [ ] + }, + "YJQ6VUEJFXP5T23D.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "YJQ6VUEJFXP5T23D.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YJQ6VUEJFXP5T23D.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "YJQ6VUEJFXP5T23D", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "YJQ6VUEJFXP5T23D.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "YJQ6VUEJFXP5T23D.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YJQ6VUEJFXP5T23D.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YJQ6VUEJFXP5T23D", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "YJQ6VUEJFXP5T23D.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YJQ6VUEJFXP5T23D.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13612" + }, + "appliesTo" : [ ] + }, + "YJQ6VUEJFXP5T23D.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YJQ6VUEJFXP5T23D.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YJQ6VUEJFXP5T23D.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YJQ6VUEJFXP5T23D", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "YJQ6VUEJFXP5T23D.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YJQ6VUEJFXP5T23D.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7842" + }, + "appliesTo" : [ ] + }, + "YJQ6VUEJFXP5T23D.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YJQ6VUEJFXP5T23D.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YJQ6VUEJFXP5T23D.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YJQ6VUEJFXP5T23D", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YJQ6VUEJFXP5T23D.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YJQ6VUEJFXP5T23D.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19658" + }, + "appliesTo" : [ ] + }, + "YJQ6VUEJFXP5T23D.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YJQ6VUEJFXP5T23D.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "CAJNJQPQHHFV48TD" : { + "CAJNJQPQHHFV48TD.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "CAJNJQPQHHFV48TD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CAJNJQPQHHFV48TD.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "CAJNJQPQHHFV48TD.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6782" + }, + "appliesTo" : [ ] + }, + "CAJNJQPQHHFV48TD.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "CAJNJQPQHHFV48TD.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CAJNJQPQHHFV48TD.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "CAJNJQPQHHFV48TD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CAJNJQPQHHFV48TD.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "CAJNJQPQHHFV48TD.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6913" + }, + "appliesTo" : [ ] + }, + "CAJNJQPQHHFV48TD.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "CAJNJQPQHHFV48TD.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CAJNJQPQHHFV48TD.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "CAJNJQPQHHFV48TD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CAJNJQPQHHFV48TD.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "CAJNJQPQHHFV48TD.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3400" + }, + "appliesTo" : [ ] + }, + "CAJNJQPQHHFV48TD.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "CAJNJQPQHHFV48TD.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CAJNJQPQHHFV48TD.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "CAJNJQPQHHFV48TD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CAJNJQPQHHFV48TD.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "CAJNJQPQHHFV48TD.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3750000000" + }, + "appliesTo" : [ ] + }, + "CAJNJQPQHHFV48TD.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "CAJNJQPQHHFV48TD.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9857" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CAJNJQPQHHFV48TD.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "CAJNJQPQHHFV48TD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CAJNJQPQHHFV48TD.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "CAJNJQPQHHFV48TD.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19347" + }, + "appliesTo" : [ ] + }, + "CAJNJQPQHHFV48TD.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "CAJNJQPQHHFV48TD.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CAJNJQPQHHFV48TD.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "CAJNJQPQHHFV48TD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CAJNJQPQHHFV48TD.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "CAJNJQPQHHFV48TD.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CAJNJQPQHHFV48TD.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "CAJNJQPQHHFV48TD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CAJNJQPQHHFV48TD.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "CAJNJQPQHHFV48TD.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CAJNJQPQHHFV48TD.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "CAJNJQPQHHFV48TD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CAJNJQPQHHFV48TD.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "CAJNJQPQHHFV48TD.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9726" + }, + "appliesTo" : [ ] + }, + "CAJNJQPQHHFV48TD.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "CAJNJQPQHHFV48TD.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CAJNJQPQHHFV48TD.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "CAJNJQPQHHFV48TD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CAJNJQPQHHFV48TD.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "CAJNJQPQHHFV48TD.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CAJNJQPQHHFV48TD.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "CAJNJQPQHHFV48TD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CAJNJQPQHHFV48TD.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "CAJNJQPQHHFV48TD.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19675" + }, + "appliesTo" : [ ] + }, + "CAJNJQPQHHFV48TD.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "CAJNJQPQHHFV48TD.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CAJNJQPQHHFV48TD.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "CAJNJQPQHHFV48TD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CAJNJQPQHHFV48TD.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "CAJNJQPQHHFV48TD.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CAJNJQPQHHFV48TD.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "CAJNJQPQHHFV48TD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CAJNJQPQHHFV48TD.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "CAJNJQPQHHFV48TD.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3467" + }, + "appliesTo" : [ ] + }, + "CAJNJQPQHHFV48TD.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "CAJNJQPQHHFV48TD.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "VA8Q43DVPX4YV6NG" : { + "VA8Q43DVPX4YV6NG.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "VA8Q43DVPX4YV6NG", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "VA8Q43DVPX4YV6NG.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "VA8Q43DVPX4YV6NG.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "60" + }, + "appliesTo" : [ ] + }, + "VA8Q43DVPX4YV6NG.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "VA8Q43DVPX4YV6NG.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0068000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VA8Q43DVPX4YV6NG.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "VA8Q43DVPX4YV6NG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VA8Q43DVPX4YV6NG.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "VA8Q43DVPX4YV6NG.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "135" + }, + "appliesTo" : [ ] + }, + "VA8Q43DVPX4YV6NG.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "VA8Q43DVPX4YV6NG.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VA8Q43DVPX4YV6NG.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "VA8Q43DVPX4YV6NG", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "VA8Q43DVPX4YV6NG.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "VA8Q43DVPX4YV6NG.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "275" + }, + "appliesTo" : [ ] + }, + "VA8Q43DVPX4YV6NG.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "VA8Q43DVPX4YV6NG.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VA8Q43DVPX4YV6NG.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "VA8Q43DVPX4YV6NG", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "VA8Q43DVPX4YV6NG.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "VA8Q43DVPX4YV6NG.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VA8Q43DVPX4YV6NG.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "VA8Q43DVPX4YV6NG", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "VA8Q43DVPX4YV6NG.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "VA8Q43DVPX4YV6NG.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0144000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VA8Q43DVPX4YV6NG.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "VA8Q43DVPX4YV6NG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VA8Q43DVPX4YV6NG.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "VA8Q43DVPX4YV6NG.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0079000000" + }, + "appliesTo" : [ ] + }, + "VA8Q43DVPX4YV6NG.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "VA8Q43DVPX4YV6NG.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "69" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VA8Q43DVPX4YV6NG.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "VA8Q43DVPX4YV6NG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VA8Q43DVPX4YV6NG.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "VA8Q43DVPX4YV6NG.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0165000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VA8Q43DVPX4YV6NG.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "VA8Q43DVPX4YV6NG", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "VA8Q43DVPX4YV6NG.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "VA8Q43DVPX4YV6NG.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "140" + }, + "appliesTo" : [ ] + }, + "VA8Q43DVPX4YV6NG.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "VA8Q43DVPX4YV6NG.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0053000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VA8Q43DVPX4YV6NG.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "VA8Q43DVPX4YV6NG", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "VA8Q43DVPX4YV6NG.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "VA8Q43DVPX4YV6NG.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0115000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VA8Q43DVPX4YV6NG.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "VA8Q43DVPX4YV6NG", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "VA8Q43DVPX4YV6NG.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "VA8Q43DVPX4YV6NG.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0046000000" + }, + "appliesTo" : [ ] + }, + "VA8Q43DVPX4YV6NG.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "VA8Q43DVPX4YV6NG.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "122" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VA8Q43DVPX4YV6NG.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "VA8Q43DVPX4YV6NG", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "VA8Q43DVPX4YV6NG.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "VA8Q43DVPX4YV6NG.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "VA8Q43DVPX4YV6NG.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "VA8Q43DVPX4YV6NG.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "229" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VA8Q43DVPX4YV6NG.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "VA8Q43DVPX4YV6NG", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "VA8Q43DVPX4YV6NG.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "VA8Q43DVPX4YV6NG.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "VA8Q43DVPX4YV6NG.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "VA8Q43DVPX4YV6NG.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "118" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "AG87TQB4PQQPZXFK" : { + "AG87TQB4PQQPZXFK.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "AG87TQB4PQQPZXFK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AG87TQB4PQQPZXFK.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "AG87TQB4PQQPZXFK.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "122" + }, + "appliesTo" : [ ] + }, + "AG87TQB4PQQPZXFK.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "AG87TQB4PQQPZXFK.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0046000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AG87TQB4PQQPZXFK.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "AG87TQB4PQQPZXFK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AG87TQB4PQQPZXFK.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "AG87TQB4PQQPZXFK.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "229" + }, + "appliesTo" : [ ] + }, + "AG87TQB4PQQPZXFK.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "AG87TQB4PQQPZXFK.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AG87TQB4PQQPZXFK.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "AG87TQB4PQQPZXFK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AG87TQB4PQQPZXFK.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "AG87TQB4PQQPZXFK.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "AG87TQB4PQQPZXFK.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "AG87TQB4PQQPZXFK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AG87TQB4PQQPZXFK.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "AG87TQB4PQQPZXFK.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0144000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "AG87TQB4PQQPZXFK.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "AG87TQB4PQQPZXFK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AG87TQB4PQQPZXFK.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "AG87TQB4PQQPZXFK.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "60" + }, + "appliesTo" : [ ] + }, + "AG87TQB4PQQPZXFK.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "AG87TQB4PQQPZXFK.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0068000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AG87TQB4PQQPZXFK.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "AG87TQB4PQQPZXFK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AG87TQB4PQQPZXFK.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "AG87TQB4PQQPZXFK.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "118" + }, + "appliesTo" : [ ] + }, + "AG87TQB4PQQPZXFK.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "AG87TQB4PQQPZXFK.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "RHSXCZ3G6S7CMC36" : { + "RHSXCZ3G6S7CMC36.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "RHSXCZ3G6S7CMC36", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "RHSXCZ3G6S7CMC36.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "RHSXCZ3G6S7CMC36.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0740000000" + }, + "appliesTo" : [ ] + }, + "RHSXCZ3G6S7CMC36.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "RHSXCZ3G6S7CMC36.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "706" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RHSXCZ3G6S7CMC36.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "RHSXCZ3G6S7CMC36", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RHSXCZ3G6S7CMC36.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "RHSXCZ3G6S7CMC36.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RHSXCZ3G6S7CMC36.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "RHSXCZ3G6S7CMC36", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RHSXCZ3G6S7CMC36.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "RHSXCZ3G6S7CMC36.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "780" + }, + "appliesTo" : [ ] + }, + "RHSXCZ3G6S7CMC36.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "RHSXCZ3G6S7CMC36.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RHSXCZ3G6S7CMC36.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "RHSXCZ3G6S7CMC36", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RHSXCZ3G6S7CMC36.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "RHSXCZ3G6S7CMC36.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "RHSXCZ3G6S7CMC36.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "RHSXCZ3G6S7CMC36.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3123" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RHSXCZ3G6S7CMC36.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "RHSXCZ3G6S7CMC36", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RHSXCZ3G6S7CMC36.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "RHSXCZ3G6S7CMC36.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2744" + }, + "appliesTo" : [ ] + }, + "RHSXCZ3G6S7CMC36.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "RHSXCZ3G6S7CMC36.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RHSXCZ3G6S7CMC36.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "RHSXCZ3G6S7CMC36", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RHSXCZ3G6S7CMC36.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "RHSXCZ3G6S7CMC36.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RHSXCZ3G6S7CMC36.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "RHSXCZ3G6S7CMC36", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RHSXCZ3G6S7CMC36.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "RHSXCZ3G6S7CMC36.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1475" + }, + "appliesTo" : [ ] + }, + "RHSXCZ3G6S7CMC36.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "RHSXCZ3G6S7CMC36.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RHSXCZ3G6S7CMC36.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "RHSXCZ3G6S7CMC36", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RHSXCZ3G6S7CMC36.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "RHSXCZ3G6S7CMC36.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1591" + }, + "appliesTo" : [ ] + }, + "RHSXCZ3G6S7CMC36.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "RHSXCZ3G6S7CMC36.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RHSXCZ3G6S7CMC36.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "RHSXCZ3G6S7CMC36", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "RHSXCZ3G6S7CMC36.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "RHSXCZ3G6S7CMC36.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1443" + }, + "appliesTo" : [ ] + }, + "RHSXCZ3G6S7CMC36.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "RHSXCZ3G6S7CMC36.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RHSXCZ3G6S7CMC36.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "RHSXCZ3G6S7CMC36", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RHSXCZ3G6S7CMC36.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "RHSXCZ3G6S7CMC36.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RHSXCZ3G6S7CMC36.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "RHSXCZ3G6S7CMC36", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "RHSXCZ3G6S7CMC36.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "RHSXCZ3G6S7CMC36.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "RHSXCZ3G6S7CMC36.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "RHSXCZ3G6S7CMC36.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1329" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RHSXCZ3G6S7CMC36.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "RHSXCZ3G6S7CMC36", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RHSXCZ3G6S7CMC36.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "RHSXCZ3G6S7CMC36.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "QMCSUNX7MQVY9UVN" : { + "QMCSUNX7MQVY9UVN.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QMCSUNX7MQVY9UVN", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "QMCSUNX7MQVY9UVN.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QMCSUNX7MQVY9UVN.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0620000000" + }, + "appliesTo" : [ ] + }, + "QMCSUNX7MQVY9UVN.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QMCSUNX7MQVY9UVN.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2432" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QMCSUNX7MQVY9UVN.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "QMCSUNX7MQVY9UVN", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "QMCSUNX7MQVY9UVN.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "QMCSUNX7MQVY9UVN.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5003" + }, + "appliesTo" : [ ] + }, + "QMCSUNX7MQVY9UVN.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "QMCSUNX7MQVY9UVN.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QMCSUNX7MQVY9UVN.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QMCSUNX7MQVY9UVN", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "QMCSUNX7MQVY9UVN.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QMCSUNX7MQVY9UVN.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QMCSUNX7MQVY9UVN.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QMCSUNX7MQVY9UVN.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3829" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QMCSUNX7MQVY9UVN.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "QMCSUNX7MQVY9UVN", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "QMCSUNX7MQVY9UVN.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "QMCSUNX7MQVY9UVN.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QMCSUNX7MQVY9UVN.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QMCSUNX7MQVY9UVN", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "QMCSUNX7MQVY9UVN.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QMCSUNX7MQVY9UVN.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1156" + }, + "appliesTo" : [ ] + }, + "QMCSUNX7MQVY9UVN.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QMCSUNX7MQVY9UVN.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QMCSUNX7MQVY9UVN.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QMCSUNX7MQVY9UVN", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "QMCSUNX7MQVY9UVN.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QMCSUNX7MQVY9UVN.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QMCSUNX7MQVY9UVN.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QMCSUNX7MQVY9UVN", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "QMCSUNX7MQVY9UVN.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QMCSUNX7MQVY9UVN.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1745" + }, + "appliesTo" : [ ] + }, + "QMCSUNX7MQVY9UVN.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QMCSUNX7MQVY9UVN.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QMCSUNX7MQVY9UVN.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "QMCSUNX7MQVY9UVN", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "QMCSUNX7MQVY9UVN.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "QMCSUNX7MQVY9UVN.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3314" + }, + "appliesTo" : [ ] + }, + "QMCSUNX7MQVY9UVN.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "QMCSUNX7MQVY9UVN.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "HESKMZUVTYYVD46R" : { + "HESKMZUVTYYVD46R.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "HESKMZUVTYYVD46R", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "HESKMZUVTYYVD46R.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "HESKMZUVTYYVD46R.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25445" + }, + "appliesTo" : [ ] + }, + "HESKMZUVTYYVD46R.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "HESKMZUVTYYVD46R.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HESKMZUVTYYVD46R.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "HESKMZUVTYYVD46R", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "HESKMZUVTYYVD46R.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "HESKMZUVTYYVD46R.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12982" + }, + "appliesTo" : [ ] + }, + "HESKMZUVTYYVD46R.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "HESKMZUVTYYVD46R.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HESKMZUVTYYVD46R.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "HESKMZUVTYYVD46R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HESKMZUVTYYVD46R.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "HESKMZUVTYYVD46R.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "HESKMZUVTYYVD46R.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "HESKMZUVTYYVD46R.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29262" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "HESKMZUVTYYVD46R.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "HESKMZUVTYYVD46R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HESKMZUVTYYVD46R.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "HESKMZUVTYYVD46R.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "HESKMZUVTYYVD46R.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "HESKMZUVTYYVD46R", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "HESKMZUVTYYVD46R.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "HESKMZUVTYYVD46R.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "HESKMZUVTYYVD46R.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "HESKMZUVTYYVD46R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HESKMZUVTYYVD46R.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "HESKMZUVTYYVD46R.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14930" + }, + "appliesTo" : [ ] + }, + "HESKMZUVTYYVD46R.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "HESKMZUVTYYVD46R.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7043000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HESKMZUVTYYVD46R.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "HESKMZUVTYYVD46R", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "HESKMZUVTYYVD46R.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "HESKMZUVTYYVD46R.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "HESKMZUVTYYVD46R.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "HESKMZUVTYYVD46R.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "63735" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "HESKMZUVTYYVD46R.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "HESKMZUVTYYVD46R", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "HESKMZUVTYYVD46R.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "HESKMZUVTYYVD46R.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28275" + }, + "appliesTo" : [ ] + }, + "HESKMZUVTYYVD46R.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "HESKMZUVTYYVD46R.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0759000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HESKMZUVTYYVD46R.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "HESKMZUVTYYVD46R", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "HESKMZUVTYYVD46R.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "HESKMZUVTYYVD46R.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1122000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "HESKMZUVTYYVD46R.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "HESKMZUVTYYVD46R", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "HESKMZUVTYYVD46R.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "HESKMZUVTYYVD46R.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32518" + }, + "appliesTo" : [ ] + }, + "HESKMZUVTYYVD46R.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "HESKMZUVTYYVD46R.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2374000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HESKMZUVTYYVD46R.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "HESKMZUVTYYVD46R", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "HESKMZUVTYYVD46R.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "HESKMZUVTYYVD46R.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "53158" + }, + "appliesTo" : [ ] + }, + "HESKMZUVTYYVD46R.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "HESKMZUVTYYVD46R.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HESKMZUVTYYVD46R.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "HESKMZUVTYYVD46R", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "HESKMZUVTYYVD46R.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "HESKMZUVTYYVD46R.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6727000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "3TGYW692U4UVK8F4" : { + "3TGYW692U4UVK8F4.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "3TGYW692U4UVK8F4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3TGYW692U4UVK8F4.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "3TGYW692U4UVK8F4.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3TGYW692U4UVK8F4.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "3TGYW692U4UVK8F4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3TGYW692U4UVK8F4.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "3TGYW692U4UVK8F4.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2830000000" + }, + "appliesTo" : [ ] + }, + "3TGYW692U4UVK8F4.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "3TGYW692U4UVK8F4.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "59990" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3TGYW692U4UVK8F4.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "3TGYW692U4UVK8F4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3TGYW692U4UVK8F4.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "3TGYW692U4UVK8F4.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "77281" + }, + "appliesTo" : [ ] + }, + "3TGYW692U4UVK8F4.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "3TGYW692U4UVK8F4.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3TGYW692U4UVK8F4.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "3TGYW692U4UVK8F4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3TGYW692U4UVK8F4.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "3TGYW692U4UVK8F4.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "117581" + }, + "appliesTo" : [ ] + }, + "3TGYW692U4UVK8F4.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "3TGYW692U4UVK8F4.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3TGYW692U4UVK8F4.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "3TGYW692U4UVK8F4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3TGYW692U4UVK8F4.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "3TGYW692U4UVK8F4.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3TGYW692U4UVK8F4.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "3TGYW692U4UVK8F4", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "3TGYW692U4UVK8F4.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "3TGYW692U4UVK8F4.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "3TGYW692U4UVK8F4.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "3TGYW692U4UVK8F4.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "98072" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3TGYW692U4UVK8F4.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "3TGYW692U4UVK8F4", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "3TGYW692U4UVK8F4.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "3TGYW692U4UVK8F4.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34285" + }, + "appliesTo" : [ ] + }, + "3TGYW692U4UVK8F4.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "3TGYW692U4UVK8F4.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3TGYW692U4UVK8F4.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "3TGYW692U4UVK8F4", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3TGYW692U4UVK8F4.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "3TGYW692U4UVK8F4.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.2190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3TGYW692U4UVK8F4.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "3TGYW692U4UVK8F4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3TGYW692U4UVK8F4.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "3TGYW692U4UVK8F4.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.4520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3TGYW692U4UVK8F4.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "3TGYW692U4UVK8F4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3TGYW692U4UVK8F4.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "3TGYW692U4UVK8F4.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5010000000" + }, + "appliesTo" : [ ] + }, + "3TGYW692U4UVK8F4.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "3TGYW692U4UVK8F4.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39429" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3TGYW692U4UVK8F4.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "3TGYW692U4UVK8F4", + "effectiveDate" : "2016-06-30T23:59:59Z", + "priceDimensions" : { + "3TGYW692U4UVK8F4.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "3TGYW692U4UVK8F4.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "67199" + }, + "appliesTo" : [ ] + }, + "3TGYW692U4UVK8F4.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "3TGYW692U4UVK8F4.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3TGYW692U4UVK8F4.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "3TGYW692U4UVK8F4", + "effectiveDate" : "2016-06-30T23:59:59Z", + "priceDimensions" : { + "3TGYW692U4UVK8F4.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "3TGYW692U4UVK8F4.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9850000000" + }, + "appliesTo" : [ ] + }, + "3TGYW692U4UVK8F4.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "3TGYW692U4UVK8F4.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "52166" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "XBYJG3BUDTPN8NB9" : { + "XBYJG3BUDTPN8NB9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XBYJG3BUDTPN8NB9", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "XBYJG3BUDTPN8NB9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XBYJG3BUDTPN8NB9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21315" + }, + "appliesTo" : [ ] + }, + "XBYJG3BUDTPN8NB9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XBYJG3BUDTPN8NB9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XBYJG3BUDTPN8NB9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XBYJG3BUDTPN8NB9", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "XBYJG3BUDTPN8NB9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XBYJG3BUDTPN8NB9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5000" + }, + "appliesTo" : [ ] + }, + "XBYJG3BUDTPN8NB9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XBYJG3BUDTPN8NB9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XBYJG3BUDTPN8NB9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XBYJG3BUDTPN8NB9", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "XBYJG3BUDTPN8NB9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XBYJG3BUDTPN8NB9.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XBYJG3BUDTPN8NB9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XBYJG3BUDTPN8NB9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XBYJG3BUDTPN8NB9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XBYJG3BUDTPN8NB9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9802" + }, + "appliesTo" : [ ] + }, + "XBYJG3BUDTPN8NB9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XBYJG3BUDTPN8NB9.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XBYJG3BUDTPN8NB9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XBYJG3BUDTPN8NB9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XBYJG3BUDTPN8NB9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XBYJG3BUDTPN8NB9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7670" + }, + "appliesTo" : [ ] + }, + "XBYJG3BUDTPN8NB9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XBYJG3BUDTPN8NB9.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "9J54RV93FDP84TGG" : { + "9J54RV93FDP84TGG.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "9J54RV93FDP84TGG", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "9J54RV93FDP84TGG.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "9J54RV93FDP84TGG.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "106407" + }, + "appliesTo" : [ ] + }, + "9J54RV93FDP84TGG.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "9J54RV93FDP84TGG.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.0490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9J54RV93FDP84TGG.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "9J54RV93FDP84TGG", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "9J54RV93FDP84TGG.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "9J54RV93FDP84TGG.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.3290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9J54RV93FDP84TGG.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "9J54RV93FDP84TGG", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "9J54RV93FDP84TGG.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "9J54RV93FDP84TGG.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "9J54RV93FDP84TGG.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "9J54RV93FDP84TGG.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "199880" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9J54RV93FDP84TGG.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "9J54RV93FDP84TGG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9J54RV93FDP84TGG.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "9J54RV93FDP84TGG.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "73994" + }, + "appliesTo" : [ ] + }, + "9J54RV93FDP84TGG.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "9J54RV93FDP84TGG.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9J54RV93FDP84TGG.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "9J54RV93FDP84TGG", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "9J54RV93FDP84TGG.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "9J54RV93FDP84TGG.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "100670" + }, + "appliesTo" : [ ] + }, + "9J54RV93FDP84TGG.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "9J54RV93FDP84TGG.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9J54RV93FDP84TGG.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "9J54RV93FDP84TGG", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "9J54RV93FDP84TGG.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "9J54RV93FDP84TGG.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "36132" + }, + "appliesTo" : [ ] + }, + "9J54RV93FDP84TGG.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "9J54RV93FDP84TGG.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.1250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9J54RV93FDP84TGG.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "9J54RV93FDP84TGG", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "9J54RV93FDP84TGG.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "9J54RV93FDP84TGG.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "212098" + }, + "appliesTo" : [ ] + }, + "9J54RV93FDP84TGG.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "9J54RV93FDP84TGG.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9J54RV93FDP84TGG.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "9J54RV93FDP84TGG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9J54RV93FDP84TGG.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "9J54RV93FDP84TGG.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2410000000" + }, + "appliesTo" : [ ] + }, + "9J54RV93FDP84TGG.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "9J54RV93FDP84TGG.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37150" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9J54RV93FDP84TGG.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "9J54RV93FDP84TGG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9J54RV93FDP84TGG.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "9J54RV93FDP84TGG.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.5690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9J54RV93FDP84TGG.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "9J54RV93FDP84TGG", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "9J54RV93FDP84TGG.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "9J54RV93FDP84TGG.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.5070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9J54RV93FDP84TGG.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "9J54RV93FDP84TGG", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "9J54RV93FDP84TGG.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "9J54RV93FDP84TGG.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "71998" + }, + "appliesTo" : [ ] + }, + "9J54RV93FDP84TGG.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "9J54RV93FDP84TGG.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "3CAET66XVXDZHGQY" : { + "3CAET66XVXDZHGQY.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "3CAET66XVXDZHGQY", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3CAET66XVXDZHGQY.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "3CAET66XVXDZHGQY.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3743" + }, + "appliesTo" : [ ] + }, + "3CAET66XVXDZHGQY.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "3CAET66XVXDZHGQY.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3CAET66XVXDZHGQY.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "3CAET66XVXDZHGQY", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "3CAET66XVXDZHGQY.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "3CAET66XVXDZHGQY.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0910000000" + }, + "appliesTo" : [ ] + }, + "3CAET66XVXDZHGQY.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "3CAET66XVXDZHGQY.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1590" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3CAET66XVXDZHGQY.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "3CAET66XVXDZHGQY", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3CAET66XVXDZHGQY.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "3CAET66XVXDZHGQY.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1580" + }, + "appliesTo" : [ ] + }, + "3CAET66XVXDZHGQY.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "3CAET66XVXDZHGQY.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3CAET66XVXDZHGQY.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "3CAET66XVXDZHGQY", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "3CAET66XVXDZHGQY.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "3CAET66XVXDZHGQY.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "640" + }, + "appliesTo" : [ ] + }, + "3CAET66XVXDZHGQY.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "3CAET66XVXDZHGQY.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3CAET66XVXDZHGQY.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "3CAET66XVXDZHGQY", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3CAET66XVXDZHGQY.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "3CAET66XVXDZHGQY.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "QNBV9PBG5RAKHKFW" : { + "QNBV9PBG5RAKHKFW.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "QNBV9PBG5RAKHKFW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QNBV9PBG5RAKHKFW.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "QNBV9PBG5RAKHKFW.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QNBV9PBG5RAKHKFW.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "QNBV9PBG5RAKHKFW.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5799" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QNBV9PBG5RAKHKFW.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "QNBV9PBG5RAKHKFW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QNBV9PBG5RAKHKFW.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "QNBV9PBG5RAKHKFW.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4836" + }, + "appliesTo" : [ ] + }, + "QNBV9PBG5RAKHKFW.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "QNBV9PBG5RAKHKFW.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QNBV9PBG5RAKHKFW.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "QNBV9PBG5RAKHKFW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QNBV9PBG5RAKHKFW.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "QNBV9PBG5RAKHKFW.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5274000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QNBV9PBG5RAKHKFW.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QNBV9PBG5RAKHKFW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QNBV9PBG5RAKHKFW.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QNBV9PBG5RAKHKFW.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4205" + }, + "appliesTo" : [ ] + }, + "QNBV9PBG5RAKHKFW.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QNBV9PBG5RAKHKFW.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QNBV9PBG5RAKHKFW.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QNBV9PBG5RAKHKFW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QNBV9PBG5RAKHKFW.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QNBV9PBG5RAKHKFW.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11321" + }, + "appliesTo" : [ ] + }, + "QNBV9PBG5RAKHKFW.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QNBV9PBG5RAKHKFW.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QNBV9PBG5RAKHKFW.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QNBV9PBG5RAKHKFW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QNBV9PBG5RAKHKFW.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QNBV9PBG5RAKHKFW.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5191" + }, + "appliesTo" : [ ] + }, + "QNBV9PBG5RAKHKFW.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QNBV9PBG5RAKHKFW.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QNBV9PBG5RAKHKFW.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "QNBV9PBG5RAKHKFW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QNBV9PBG5RAKHKFW.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "QNBV9PBG5RAKHKFW.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6999000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QNBV9PBG5RAKHKFW.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QNBV9PBG5RAKHKFW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QNBV9PBG5RAKHKFW.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QNBV9PBG5RAKHKFW.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6256000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QNBV9PBG5RAKHKFW.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QNBV9PBG5RAKHKFW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QNBV9PBG5RAKHKFW.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QNBV9PBG5RAKHKFW.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2067" + }, + "appliesTo" : [ ] + }, + "QNBV9PBG5RAKHKFW.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QNBV9PBG5RAKHKFW.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QNBV9PBG5RAKHKFW.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "QNBV9PBG5RAKHKFW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QNBV9PBG5RAKHKFW.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "QNBV9PBG5RAKHKFW.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QNBV9PBG5RAKHKFW.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "QNBV9PBG5RAKHKFW.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12894" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QNBV9PBG5RAKHKFW.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "QNBV9PBG5RAKHKFW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QNBV9PBG5RAKHKFW.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "QNBV9PBG5RAKHKFW.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2377" + }, + "appliesTo" : [ ] + }, + "QNBV9PBG5RAKHKFW.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "QNBV9PBG5RAKHKFW.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4014000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QNBV9PBG5RAKHKFW.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "QNBV9PBG5RAKHKFW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QNBV9PBG5RAKHKFW.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "QNBV9PBG5RAKHKFW.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4756000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "RA5N9YR5B2CYJ8U7" : { + "RA5N9YR5B2CYJ8U7.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "RA5N9YR5B2CYJ8U7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RA5N9YR5B2CYJ8U7.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "RA5N9YR5B2CYJ8U7.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2001" + }, + "appliesTo" : [ ] + }, + "RA5N9YR5B2CYJ8U7.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "RA5N9YR5B2CYJ8U7.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RA5N9YR5B2CYJ8U7.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "RA5N9YR5B2CYJ8U7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RA5N9YR5B2CYJ8U7.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "RA5N9YR5B2CYJ8U7.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RA5N9YR5B2CYJ8U7.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "RA5N9YR5B2CYJ8U7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RA5N9YR5B2CYJ8U7.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "RA5N9YR5B2CYJ8U7.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3795" + }, + "appliesTo" : [ ] + }, + "RA5N9YR5B2CYJ8U7.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "RA5N9YR5B2CYJ8U7.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RA5N9YR5B2CYJ8U7.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "RA5N9YR5B2CYJ8U7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RA5N9YR5B2CYJ8U7.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "RA5N9YR5B2CYJ8U7.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "983" + }, + "appliesTo" : [ ] + }, + "RA5N9YR5B2CYJ8U7.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "RA5N9YR5B2CYJ8U7.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RA5N9YR5B2CYJ8U7.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "RA5N9YR5B2CYJ8U7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RA5N9YR5B2CYJ8U7.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "RA5N9YR5B2CYJ8U7.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "RA5N9YR5B2CYJ8U7.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "RA5N9YR5B2CYJ8U7.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1930" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RA5N9YR5B2CYJ8U7.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "RA5N9YR5B2CYJ8U7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RA5N9YR5B2CYJ8U7.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "RA5N9YR5B2CYJ8U7.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "BPK6ZJ9DW5BR885X" : { + "BPK6ZJ9DW5BR885X.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "BPK6ZJ9DW5BR885X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BPK6ZJ9DW5BR885X.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "BPK6ZJ9DW5BR885X.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5816" + }, + "appliesTo" : [ ] + }, + "BPK6ZJ9DW5BR885X.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "BPK6ZJ9DW5BR885X.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BPK6ZJ9DW5BR885X.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "BPK6ZJ9DW5BR885X", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BPK6ZJ9DW5BR885X.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "BPK6ZJ9DW5BR885X.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8775" + }, + "appliesTo" : [ ] + }, + "BPK6ZJ9DW5BR885X.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "BPK6ZJ9DW5BR885X.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BPK6ZJ9DW5BR885X.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "BPK6ZJ9DW5BR885X", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BPK6ZJ9DW5BR885X.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "BPK6ZJ9DW5BR885X.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BPK6ZJ9DW5BR885X.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "BPK6ZJ9DW5BR885X", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BPK6ZJ9DW5BR885X.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "BPK6ZJ9DW5BR885X.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11783" + }, + "appliesTo" : [ ] + }, + "BPK6ZJ9DW5BR885X.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "BPK6ZJ9DW5BR885X.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BPK6ZJ9DW5BR885X.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "BPK6ZJ9DW5BR885X", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BPK6ZJ9DW5BR885X.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "BPK6ZJ9DW5BR885X.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BPK6ZJ9DW5BR885X.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "BPK6ZJ9DW5BR885X", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BPK6ZJ9DW5BR885X.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "BPK6ZJ9DW5BR885X.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1817" + }, + "appliesTo" : [ ] + }, + "BPK6ZJ9DW5BR885X.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "BPK6ZJ9DW5BR885X.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BPK6ZJ9DW5BR885X.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "BPK6ZJ9DW5BR885X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BPK6ZJ9DW5BR885X.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "BPK6ZJ9DW5BR885X.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BPK6ZJ9DW5BR885X.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "BPK6ZJ9DW5BR885X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BPK6ZJ9DW5BR885X.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "BPK6ZJ9DW5BR885X.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2944" + }, + "appliesTo" : [ ] + }, + "BPK6ZJ9DW5BR885X.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "BPK6ZJ9DW5BR885X.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BPK6ZJ9DW5BR885X.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "BPK6ZJ9DW5BR885X", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BPK6ZJ9DW5BR885X.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "BPK6ZJ9DW5BR885X.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4239" + }, + "appliesTo" : [ ] + }, + "BPK6ZJ9DW5BR885X.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "BPK6ZJ9DW5BR885X.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BPK6ZJ9DW5BR885X.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "BPK6ZJ9DW5BR885X", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BPK6ZJ9DW5BR885X.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "BPK6ZJ9DW5BR885X.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2720000000" + }, + "appliesTo" : [ ] + }, + "BPK6ZJ9DW5BR885X.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "BPK6ZJ9DW5BR885X.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4905" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BPK6ZJ9DW5BR885X.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "BPK6ZJ9DW5BR885X", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BPK6ZJ9DW5BR885X.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "BPK6ZJ9DW5BR885X.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2450000000" + }, + "appliesTo" : [ ] + }, + "BPK6ZJ9DW5BR885X.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "BPK6ZJ9DW5BR885X.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2897" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "DFJU7MKX4S9ZU689" : { + "DFJU7MKX4S9ZU689.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "DFJU7MKX4S9ZU689", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DFJU7MKX4S9ZU689.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "DFJU7MKX4S9ZU689.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "19.0430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DFJU7MKX4S9ZU689.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "DFJU7MKX4S9ZU689", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DFJU7MKX4S9ZU689.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "DFJU7MKX4S9ZU689.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "78895" + }, + "appliesTo" : [ ] + }, + "DFJU7MKX4S9ZU689.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "DFJU7MKX4S9ZU689.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.1360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DFJU7MKX4S9ZU689.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "DFJU7MKX4S9ZU689", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "DFJU7MKX4S9ZU689.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "DFJU7MKX4S9ZU689.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.5760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DFJU7MKX4S9ZU689.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "DFJU7MKX4S9ZU689", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DFJU7MKX4S9ZU689.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "DFJU7MKX4S9ZU689.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "155773" + }, + "appliesTo" : [ ] + }, + "DFJU7MKX4S9ZU689.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "DFJU7MKX4S9ZU689.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DFJU7MKX4S9ZU689.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "DFJU7MKX4S9ZU689", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "DFJU7MKX4S9ZU689.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "DFJU7MKX4S9ZU689.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "68604" + }, + "appliesTo" : [ ] + }, + "DFJU7MKX4S9ZU689.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "DFJU7MKX4S9ZU689.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.9620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DFJU7MKX4S9ZU689.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "DFJU7MKX4S9ZU689", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "DFJU7MKX4S9ZU689.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "DFJU7MKX4S9ZU689.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.7090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DFJU7MKX4S9ZU689.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "DFJU7MKX4S9ZU689", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "DFJU7MKX4S9ZU689.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "DFJU7MKX4S9ZU689.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "199648" + }, + "appliesTo" : [ ] + }, + "DFJU7MKX4S9ZU689.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "DFJU7MKX4S9ZU689.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DFJU7MKX4S9ZU689.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "DFJU7MKX4S9ZU689", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "DFJU7MKX4S9ZU689.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "DFJU7MKX4S9ZU689.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "238686" + }, + "appliesTo" : [ ] + }, + "DFJU7MKX4S9ZU689.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "DFJU7MKX4S9ZU689.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DFJU7MKX4S9ZU689.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "DFJU7MKX4S9ZU689", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "DFJU7MKX4S9ZU689.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "DFJU7MKX4S9ZU689.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "135603" + }, + "appliesTo" : [ ] + }, + "DFJU7MKX4S9ZU689.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "DFJU7MKX4S9ZU689.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DFJU7MKX4S9ZU689.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "DFJU7MKX4S9ZU689", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "DFJU7MKX4S9ZU689.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "DFJU7MKX4S9ZU689.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "120035" + }, + "appliesTo" : [ ] + }, + "DFJU7MKX4S9ZU689.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "DFJU7MKX4S9ZU689.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.6980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DFJU7MKX4S9ZU689.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "DFJU7MKX4S9ZU689", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "DFJU7MKX4S9ZU689.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "DFJU7MKX4S9ZU689.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "104379" + }, + "appliesTo" : [ ] + }, + "DFJU7MKX4S9ZU689.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "DFJU7MKX4S9ZU689.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.1020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "F7MKSFT7MRGHJF5U" : { + "F7MKSFT7MRGHJF5U.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "F7MKSFT7MRGHJF5U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "F7MKSFT7MRGHJF5U.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "F7MKSFT7MRGHJF5U.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "18.1520000000" + }, + "appliesTo" : [ ] + }, + "F7MKSFT7MRGHJF5U.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "F7MKSFT7MRGHJF5U.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "159012" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "F7MKSFT7MRGHJF5U.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "F7MKSFT7MRGHJF5U", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "F7MKSFT7MRGHJF5U.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "F7MKSFT7MRGHJF5U.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "F7MKSFT7MRGHJF5U.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "F7MKSFT7MRGHJF5U.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "316383" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "F7MKSFT7MRGHJF5U.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "F7MKSFT7MRGHJF5U", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "F7MKSFT7MRGHJF5U.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "F7MKSFT7MRGHJF5U.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "F7MKSFT7MRGHJF5U.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "F7MKSFT7MRGHJF5U.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "876070" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "F7MKSFT7MRGHJF5U.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "F7MKSFT7MRGHJF5U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "F7MKSFT7MRGHJF5U.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "F7MKSFT7MRGHJF5U.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "456800" + }, + "appliesTo" : [ ] + }, + "F7MKSFT7MRGHJF5U.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "F7MKSFT7MRGHJF5U.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "17.3820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "F7MKSFT7MRGHJF5U.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "F7MKSFT7MRGHJF5U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "F7MKSFT7MRGHJF5U.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "F7MKSFT7MRGHJF5U.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "35.3900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "F7MKSFT7MRGHJF5U.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "F7MKSFT7MRGHJF5U", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "F7MKSFT7MRGHJF5U.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "F7MKSFT7MRGHJF5U.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.8720000000" + }, + "appliesTo" : [ ] + }, + "F7MKSFT7MRGHJF5U.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "F7MKSFT7MRGHJF5U.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "443396" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "F7MKSFT7MRGHJF5U.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "F7MKSFT7MRGHJF5U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "F7MKSFT7MRGHJF5U.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "F7MKSFT7MRGHJF5U.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "18.8540000000" + }, + "appliesTo" : [ ] + }, + "F7MKSFT7MRGHJF5U.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "F7MKSFT7MRGHJF5U.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "165161" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "F7MKSFT7MRGHJF5U.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "F7MKSFT7MRGHJF5U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "F7MKSFT7MRGHJF5U.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "F7MKSFT7MRGHJF5U.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "36.7720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "F7MKSFT7MRGHJF5U.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "F7MKSFT7MRGHJF5U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "F7MKSFT7MRGHJF5U.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "F7MKSFT7MRGHJF5U.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "38.2460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "F7MKSFT7MRGHJF5U.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "F7MKSFT7MRGHJF5U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "F7MKSFT7MRGHJF5U.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "F7MKSFT7MRGHJF5U.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "34.2880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "F7MKSFT7MRGHJF5U.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "F7MKSFT7MRGHJF5U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "F7MKSFT7MRGHJF5U.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "F7MKSFT7MRGHJF5U.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "328436" + }, + "appliesTo" : [ ] + }, + "F7MKSFT7MRGHJF5U.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "F7MKSFT7MRGHJF5U.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "F7MKSFT7MRGHJF5U.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "F7MKSFT7MRGHJF5U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "F7MKSFT7MRGHJF5U.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "F7MKSFT7MRGHJF5U.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "909489" + }, + "appliesTo" : [ ] + }, + "F7MKSFT7MRGHJF5U.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "F7MKSFT7MRGHJF5U.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "CDK4SMXRA7K87J58" : { + "CDK4SMXRA7K87J58.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "CDK4SMXRA7K87J58", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "CDK4SMXRA7K87J58.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "CDK4SMXRA7K87J58.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CDK4SMXRA7K87J58.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "CDK4SMXRA7K87J58", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CDK4SMXRA7K87J58.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "CDK4SMXRA7K87J58.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "455" + }, + "appliesTo" : [ ] + }, + "CDK4SMXRA7K87J58.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "CDK4SMXRA7K87J58.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CDK4SMXRA7K87J58.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "CDK4SMXRA7K87J58", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CDK4SMXRA7K87J58.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "CDK4SMXRA7K87J58.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CDK4SMXRA7K87J58.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "CDK4SMXRA7K87J58", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "CDK4SMXRA7K87J58.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "CDK4SMXRA7K87J58.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2117" + }, + "appliesTo" : [ ] + }, + "CDK4SMXRA7K87J58.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "CDK4SMXRA7K87J58.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CDK4SMXRA7K87J58.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "CDK4SMXRA7K87J58", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CDK4SMXRA7K87J58.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "CDK4SMXRA7K87J58.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "893" + }, + "appliesTo" : [ ] + }, + "CDK4SMXRA7K87J58.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "CDK4SMXRA7K87J58.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CDK4SMXRA7K87J58.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "CDK4SMXRA7K87J58", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "CDK4SMXRA7K87J58.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "CDK4SMXRA7K87J58.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "CDK4SMXRA7K87J58.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "CDK4SMXRA7K87J58.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "784" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CDK4SMXRA7K87J58.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "CDK4SMXRA7K87J58", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "CDK4SMXRA7K87J58.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "CDK4SMXRA7K87J58.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0390000000" + }, + "appliesTo" : [ ] + }, + "CDK4SMXRA7K87J58.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "CDK4SMXRA7K87J58.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "463" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CDK4SMXRA7K87J58.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "CDK4SMXRA7K87J58", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "CDK4SMXRA7K87J58.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "CDK4SMXRA7K87J58.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CDK4SMXRA7K87J58.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "CDK4SMXRA7K87J58", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "CDK4SMXRA7K87J58.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "CDK4SMXRA7K87J58.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1250" + }, + "appliesTo" : [ ] + }, + "CDK4SMXRA7K87J58.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "CDK4SMXRA7K87J58.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CDK4SMXRA7K87J58.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "CDK4SMXRA7K87J58", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "CDK4SMXRA7K87J58.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "CDK4SMXRA7K87J58.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1510" + }, + "appliesTo" : [ ] + }, + "CDK4SMXRA7K87J58.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "CDK4SMXRA7K87J58.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CDK4SMXRA7K87J58.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "CDK4SMXRA7K87J58", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "CDK4SMXRA7K87J58.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "CDK4SMXRA7K87J58.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "740" + }, + "appliesTo" : [ ] + }, + "CDK4SMXRA7K87J58.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "CDK4SMXRA7K87J58.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "WZM4T9SQXM7SF7ZF" : { + "WZM4T9SQXM7SF7ZF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "WZM4T9SQXM7SF7ZF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WZM4T9SQXM7SF7ZF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "WZM4T9SQXM7SF7ZF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6195" + }, + "appliesTo" : [ ] + }, + "WZM4T9SQXM7SF7ZF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "WZM4T9SQXM7SF7ZF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WZM4T9SQXM7SF7ZF.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "WZM4T9SQXM7SF7ZF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WZM4T9SQXM7SF7ZF.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "WZM4T9SQXM7SF7ZF.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "WZM4T9SQXM7SF7ZF.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "WZM4T9SQXM7SF7ZF.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12844" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WZM4T9SQXM7SF7ZF.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "WZM4T9SQXM7SF7ZF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WZM4T9SQXM7SF7ZF.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "WZM4T9SQXM7SF7ZF.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "WZM4T9SQXM7SF7ZF.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "WZM4T9SQXM7SF7ZF.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34276" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WZM4T9SQXM7SF7ZF.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "WZM4T9SQXM7SF7ZF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WZM4T9SQXM7SF7ZF.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "WZM4T9SQXM7SF7ZF.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "WZM4T9SQXM7SF7ZF.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "WZM4T9SQXM7SF7ZF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WZM4T9SQXM7SF7ZF.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "WZM4T9SQXM7SF7ZF.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "WZM4T9SQXM7SF7ZF.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "WZM4T9SQXM7SF7ZF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WZM4T9SQXM7SF7ZF.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "WZM4T9SQXM7SF7ZF.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6463" + }, + "appliesTo" : [ ] + }, + "WZM4T9SQXM7SF7ZF.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "WZM4T9SQXM7SF7ZF.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WZM4T9SQXM7SF7ZF.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "WZM4T9SQXM7SF7ZF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WZM4T9SQXM7SF7ZF.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "WZM4T9SQXM7SF7ZF.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WZM4T9SQXM7SF7ZF.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "WZM4T9SQXM7SF7ZF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WZM4T9SQXM7SF7ZF.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "WZM4T9SQXM7SF7ZF.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WZM4T9SQXM7SF7ZF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "WZM4T9SQXM7SF7ZF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WZM4T9SQXM7SF7ZF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "WZM4T9SQXM7SF7ZF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16691" + }, + "appliesTo" : [ ] + }, + "WZM4T9SQXM7SF7ZF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "WZM4T9SQXM7SF7ZF.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WZM4T9SQXM7SF7ZF.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "WZM4T9SQXM7SF7ZF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WZM4T9SQXM7SF7ZF.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "WZM4T9SQXM7SF7ZF.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17218" + }, + "appliesTo" : [ ] + }, + "WZM4T9SQXM7SF7ZF.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "WZM4T9SQXM7SF7ZF.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WZM4T9SQXM7SF7ZF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "WZM4T9SQXM7SF7ZF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WZM4T9SQXM7SF7ZF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "WZM4T9SQXM7SF7ZF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12319" + }, + "appliesTo" : [ ] + }, + "WZM4T9SQXM7SF7ZF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "WZM4T9SQXM7SF7ZF.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WZM4T9SQXM7SF7ZF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "WZM4T9SQXM7SF7ZF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WZM4T9SQXM7SF7ZF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "WZM4T9SQXM7SF7ZF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32966" + }, + "appliesTo" : [ ] + }, + "WZM4T9SQXM7SF7ZF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "WZM4T9SQXM7SF7ZF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "NUMNVV4X9PJW42JH" : { + "NUMNVV4X9PJW42JH.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "NUMNVV4X9PJW42JH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NUMNVV4X9PJW42JH.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "NUMNVV4X9PJW42JH.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10896" + }, + "appliesTo" : [ ] + }, + "NUMNVV4X9PJW42JH.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "NUMNVV4X9PJW42JH.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "NUMNVV4X9PJW42JH.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "NUMNVV4X9PJW42JH", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "NUMNVV4X9PJW42JH.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "NUMNVV4X9PJW42JH.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "NUMNVV4X9PJW42JH.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "NUMNVV4X9PJW42JH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NUMNVV4X9PJW42JH.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "NUMNVV4X9PJW42JH.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "NUMNVV4X9PJW42JH.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "NUMNVV4X9PJW42JH", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "NUMNVV4X9PJW42JH.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "NUMNVV4X9PJW42JH.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18818" + }, + "appliesTo" : [ ] + }, + "NUMNVV4X9PJW42JH.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "NUMNVV4X9PJW42JH.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "NUMNVV4X9PJW42JH.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "NUMNVV4X9PJW42JH", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "NUMNVV4X9PJW42JH.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "NUMNVV4X9PJW42JH.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19956" + }, + "appliesTo" : [ ] + }, + "NUMNVV4X9PJW42JH.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "NUMNVV4X9PJW42JH.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "NUMNVV4X9PJW42JH.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "NUMNVV4X9PJW42JH", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "NUMNVV4X9PJW42JH.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "NUMNVV4X9PJW42JH.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24447" + }, + "appliesTo" : [ ] + }, + "NUMNVV4X9PJW42JH.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "NUMNVV4X9PJW42JH.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "NUMNVV4X9PJW42JH.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "NUMNVV4X9PJW42JH", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "NUMNVV4X9PJW42JH.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "NUMNVV4X9PJW42JH.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39107" + }, + "appliesTo" : [ ] + }, + "NUMNVV4X9PJW42JH.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "NUMNVV4X9PJW42JH.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "NUMNVV4X9PJW42JH.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "NUMNVV4X9PJW42JH", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "NUMNVV4X9PJW42JH.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "NUMNVV4X9PJW42JH.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "NUMNVV4X9PJW42JH.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "NUMNVV4X9PJW42JH", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "NUMNVV4X9PJW42JH.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "NUMNVV4X9PJW42JH.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "NUMNVV4X9PJW42JH.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "NUMNVV4X9PJW42JH.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "51436" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "NUMNVV4X9PJW42JH.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "NUMNVV4X9PJW42JH", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "NUMNVV4X9PJW42JH.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "NUMNVV4X9PJW42JH.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2240000000" + }, + "appliesTo" : [ ] + }, + "NUMNVV4X9PJW42JH.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "NUMNVV4X9PJW42JH.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9583" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "NUMNVV4X9PJW42JH.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "NUMNVV4X9PJW42JH", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "NUMNVV4X9PJW42JH.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "NUMNVV4X9PJW42JH.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "NUMNVV4X9PJW42JH.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "NUMNVV4X9PJW42JH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NUMNVV4X9PJW42JH.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "NUMNVV4X9PJW42JH.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22531" + }, + "appliesTo" : [ ] + }, + "NUMNVV4X9PJW42JH.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "NUMNVV4X9PJW42JH.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "T8WDU2BB3QKC577Z" : { + "T8WDU2BB3QKC577Z.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "T8WDU2BB3QKC577Z", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "T8WDU2BB3QKC577Z.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "T8WDU2BB3QKC577Z.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "45046" + }, + "appliesTo" : [ ] + }, + "T8WDU2BB3QKC577Z.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "T8WDU2BB3QKC577Z.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "T8WDU2BB3QKC577Z.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "T8WDU2BB3QKC577Z", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "T8WDU2BB3QKC577Z.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "T8WDU2BB3QKC577Z.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39664" + }, + "appliesTo" : [ ] + }, + "T8WDU2BB3QKC577Z.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "T8WDU2BB3QKC577Z.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "T8WDU2BB3QKC577Z.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "T8WDU2BB3QKC577Z", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "T8WDU2BB3QKC577Z.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "T8WDU2BB3QKC577Z.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "T8WDU2BB3QKC577Z.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "T8WDU2BB3QKC577Z", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "T8WDU2BB3QKC577Z.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "T8WDU2BB3QKC577Z.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25206" + }, + "appliesTo" : [ ] + }, + "T8WDU2BB3QKC577Z.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "T8WDU2BB3QKC577Z.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "T8WDU2BB3QKC577Z.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "T8WDU2BB3QKC577Z", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "T8WDU2BB3QKC577Z.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "T8WDU2BB3QKC577Z.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22272" + }, + "appliesTo" : [ ] + }, + "T8WDU2BB3QKC577Z.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "T8WDU2BB3QKC577Z.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "T8WDU2BB3QKC577Z.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "T8WDU2BB3QKC577Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "T8WDU2BB3QKC577Z.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "T8WDU2BB3QKC577Z.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "T8WDU2BB3QKC577Z.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "T8WDU2BB3QKC577Z", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "T8WDU2BB3QKC577Z.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "T8WDU2BB3QKC577Z.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14736" + }, + "appliesTo" : [ ] + }, + "T8WDU2BB3QKC577Z.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "T8WDU2BB3QKC577Z.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "T8WDU2BB3QKC577Z.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "T8WDU2BB3QKC577Z", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "T8WDU2BB3QKC577Z.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "T8WDU2BB3QKC577Z.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "T8WDU2BB3QKC577Z.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "T8WDU2BB3QKC577Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "T8WDU2BB3QKC577Z.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "T8WDU2BB3QKC577Z.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14795" + }, + "appliesTo" : [ ] + }, + "T8WDU2BB3QKC577Z.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "T8WDU2BB3QKC577Z.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "T8WDU2BB3QKC577Z.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "T8WDU2BB3QKC577Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "T8WDU2BB3QKC577Z.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "T8WDU2BB3QKC577Z.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "T8WDU2BB3QKC577Z.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "T8WDU2BB3QKC577Z.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28944" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "T8WDU2BB3QKC577Z.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "T8WDU2BB3QKC577Z", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "T8WDU2BB3QKC577Z.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "T8WDU2BB3QKC577Z.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "67942" + }, + "appliesTo" : [ ] + }, + "T8WDU2BB3QKC577Z.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "T8WDU2BB3QKC577Z.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "MUSDPAYU48C7WCHN" : { + "MUSDPAYU48C7WCHN.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "MUSDPAYU48C7WCHN", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "MUSDPAYU48C7WCHN.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "MUSDPAYU48C7WCHN.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "446" + }, + "appliesTo" : [ ] + }, + "MUSDPAYU48C7WCHN.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "MUSDPAYU48C7WCHN.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MUSDPAYU48C7WCHN.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "MUSDPAYU48C7WCHN", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "MUSDPAYU48C7WCHN.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "MUSDPAYU48C7WCHN.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "738" + }, + "appliesTo" : [ ] + }, + "MUSDPAYU48C7WCHN.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "MUSDPAYU48C7WCHN.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MUSDPAYU48C7WCHN.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "MUSDPAYU48C7WCHN", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MUSDPAYU48C7WCHN.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "MUSDPAYU48C7WCHN.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "694" + }, + "appliesTo" : [ ] + }, + "MUSDPAYU48C7WCHN.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "MUSDPAYU48C7WCHN.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MUSDPAYU48C7WCHN.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "MUSDPAYU48C7WCHN", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MUSDPAYU48C7WCHN.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "MUSDPAYU48C7WCHN.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1412" + }, + "appliesTo" : [ ] + }, + "MUSDPAYU48C7WCHN.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "MUSDPAYU48C7WCHN.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MUSDPAYU48C7WCHN.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "MUSDPAYU48C7WCHN", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MUSDPAYU48C7WCHN.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "MUSDPAYU48C7WCHN.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "3GCSD3HHQWFGV39C" : { + "3GCSD3HHQWFGV39C.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "3GCSD3HHQWFGV39C", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3GCSD3HHQWFGV39C.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "3GCSD3HHQWFGV39C.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1782" + }, + "appliesTo" : [ ] + }, + "3GCSD3HHQWFGV39C.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "3GCSD3HHQWFGV39C.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3GCSD3HHQWFGV39C.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "3GCSD3HHQWFGV39C", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "3GCSD3HHQWFGV39C.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "3GCSD3HHQWFGV39C.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3GCSD3HHQWFGV39C.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "3GCSD3HHQWFGV39C", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3GCSD3HHQWFGV39C.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "3GCSD3HHQWFGV39C.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9185" + }, + "appliesTo" : [ ] + }, + "3GCSD3HHQWFGV39C.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "3GCSD3HHQWFGV39C.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3GCSD3HHQWFGV39C.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "3GCSD3HHQWFGV39C", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3GCSD3HHQWFGV39C.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "3GCSD3HHQWFGV39C.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "3GCSD3HHQWFGV39C.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "3GCSD3HHQWFGV39C.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4200" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3GCSD3HHQWFGV39C.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "3GCSD3HHQWFGV39C", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3GCSD3HHQWFGV39C.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "3GCSD3HHQWFGV39C.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2776" + }, + "appliesTo" : [ ] + }, + "3GCSD3HHQWFGV39C.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "3GCSD3HHQWFGV39C.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "V56C6ZGR7E55RDBN" : { + "V56C6ZGR7E55RDBN.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "V56C6ZGR7E55RDBN", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "V56C6ZGR7E55RDBN.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "V56C6ZGR7E55RDBN.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2168" + }, + "appliesTo" : [ ] + }, + "V56C6ZGR7E55RDBN.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "V56C6ZGR7E55RDBN.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "V56C6ZGR7E55RDBN.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "V56C6ZGR7E55RDBN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "V56C6ZGR7E55RDBN.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "V56C6ZGR7E55RDBN.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8274" + }, + "appliesTo" : [ ] + }, + "V56C6ZGR7E55RDBN.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "V56C6ZGR7E55RDBN.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "V56C6ZGR7E55RDBN.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "V56C6ZGR7E55RDBN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "V56C6ZGR7E55RDBN.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "V56C6ZGR7E55RDBN.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "V56C6ZGR7E55RDBN.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "V56C6ZGR7E55RDBN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "V56C6ZGR7E55RDBN.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "V56C6ZGR7E55RDBN.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "V56C6ZGR7E55RDBN.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "V56C6ZGR7E55RDBN", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "V56C6ZGR7E55RDBN.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "V56C6ZGR7E55RDBN.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7492" + }, + "appliesTo" : [ ] + }, + "V56C6ZGR7E55RDBN.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "V56C6ZGR7E55RDBN.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "V56C6ZGR7E55RDBN.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "V56C6ZGR7E55RDBN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V56C6ZGR7E55RDBN.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "V56C6ZGR7E55RDBN.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1209" + }, + "appliesTo" : [ ] + }, + "V56C6ZGR7E55RDBN.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "V56C6ZGR7E55RDBN.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "V56C6ZGR7E55RDBN.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "V56C6ZGR7E55RDBN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V56C6ZGR7E55RDBN.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "V56C6ZGR7E55RDBN.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3508" + }, + "appliesTo" : [ ] + }, + "V56C6ZGR7E55RDBN.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "V56C6ZGR7E55RDBN.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "V56C6ZGR7E55RDBN.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "V56C6ZGR7E55RDBN", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "V56C6ZGR7E55RDBN.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "V56C6ZGR7E55RDBN.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2510000000" + }, + "appliesTo" : [ ] + }, + "V56C6ZGR7E55RDBN.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "V56C6ZGR7E55RDBN.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1060" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "V56C6ZGR7E55RDBN.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "V56C6ZGR7E55RDBN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "V56C6ZGR7E55RDBN.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "V56C6ZGR7E55RDBN.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "V56C6ZGR7E55RDBN.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "V56C6ZGR7E55RDBN", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "V56C6ZGR7E55RDBN.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "V56C6ZGR7E55RDBN.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "V56C6ZGR7E55RDBN.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "V56C6ZGR7E55RDBN.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3216" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "V56C6ZGR7E55RDBN.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "V56C6ZGR7E55RDBN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V56C6ZGR7E55RDBN.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "V56C6ZGR7E55RDBN.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "V56C6ZGR7E55RDBN.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "V56C6ZGR7E55RDBN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "V56C6ZGR7E55RDBN.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "V56C6ZGR7E55RDBN.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2478" + }, + "appliesTo" : [ ] + }, + "V56C6ZGR7E55RDBN.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "V56C6ZGR7E55RDBN.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "EBPBHYCSY9TBSKNQ" : { + "EBPBHYCSY9TBSKNQ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "EBPBHYCSY9TBSKNQ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EBPBHYCSY9TBSKNQ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "EBPBHYCSY9TBSKNQ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "881" + }, + "appliesTo" : [ ] + }, + "EBPBHYCSY9TBSKNQ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "EBPBHYCSY9TBSKNQ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0335000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "EBPBHYCSY9TBSKNQ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "EBPBHYCSY9TBSKNQ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EBPBHYCSY9TBSKNQ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "EBPBHYCSY9TBSKNQ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "EBPBHYCSY9TBSKNQ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "EBPBHYCSY9TBSKNQ", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "EBPBHYCSY9TBSKNQ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "EBPBHYCSY9TBSKNQ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1443" + }, + "appliesTo" : [ ] + }, + "EBPBHYCSY9TBSKNQ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "EBPBHYCSY9TBSKNQ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EBPBHYCSY9TBSKNQ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "EBPBHYCSY9TBSKNQ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EBPBHYCSY9TBSKNQ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "EBPBHYCSY9TBSKNQ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0724000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "EBPBHYCSY9TBSKNQ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "EBPBHYCSY9TBSKNQ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "EBPBHYCSY9TBSKNQ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "EBPBHYCSY9TBSKNQ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "767" + }, + "appliesTo" : [ ] + }, + "EBPBHYCSY9TBSKNQ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "EBPBHYCSY9TBSKNQ.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EBPBHYCSY9TBSKNQ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "EBPBHYCSY9TBSKNQ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "EBPBHYCSY9TBSKNQ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "EBPBHYCSY9TBSKNQ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "752" + }, + "appliesTo" : [ ] + }, + "EBPBHYCSY9TBSKNQ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "EBPBHYCSY9TBSKNQ.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EBPBHYCSY9TBSKNQ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "EBPBHYCSY9TBSKNQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EBPBHYCSY9TBSKNQ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "EBPBHYCSY9TBSKNQ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1063000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "EBPBHYCSY9TBSKNQ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "EBPBHYCSY9TBSKNQ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EBPBHYCSY9TBSKNQ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "EBPBHYCSY9TBSKNQ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "384" + }, + "appliesTo" : [ ] + }, + "EBPBHYCSY9TBSKNQ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "EBPBHYCSY9TBSKNQ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EBPBHYCSY9TBSKNQ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "EBPBHYCSY9TBSKNQ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EBPBHYCSY9TBSKNQ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "EBPBHYCSY9TBSKNQ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0924000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "EBPBHYCSY9TBSKNQ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "EBPBHYCSY9TBSKNQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EBPBHYCSY9TBSKNQ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "EBPBHYCSY9TBSKNQ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0506000000" + }, + "appliesTo" : [ ] + }, + "EBPBHYCSY9TBSKNQ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "EBPBHYCSY9TBSKNQ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "443" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "EBPBHYCSY9TBSKNQ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "EBPBHYCSY9TBSKNQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EBPBHYCSY9TBSKNQ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "EBPBHYCSY9TBSKNQ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "EBPBHYCSY9TBSKNQ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "EBPBHYCSY9TBSKNQ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "869" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "EBPBHYCSY9TBSKNQ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "EBPBHYCSY9TBSKNQ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EBPBHYCSY9TBSKNQ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "EBPBHYCSY9TBSKNQ.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "EBPBHYCSY9TBSKNQ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "EBPBHYCSY9TBSKNQ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1727" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "MU4CDFJXM862BVJ3" : { + "MU4CDFJXM862BVJ3.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "MU4CDFJXM862BVJ3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MU4CDFJXM862BVJ3.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "MU4CDFJXM862BVJ3.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6927" + }, + "appliesTo" : [ ] + }, + "MU4CDFJXM862BVJ3.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "MU4CDFJXM862BVJ3.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MU4CDFJXM862BVJ3.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "MU4CDFJXM862BVJ3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MU4CDFJXM862BVJ3.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "MU4CDFJXM862BVJ3.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6544" + }, + "appliesTo" : [ ] + }, + "MU4CDFJXM862BVJ3.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "MU4CDFJXM862BVJ3.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MU4CDFJXM862BVJ3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "MU4CDFJXM862BVJ3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MU4CDFJXM862BVJ3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "MU4CDFJXM862BVJ3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3164" + }, + "appliesTo" : [ ] + }, + "MU4CDFJXM862BVJ3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "MU4CDFJXM862BVJ3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MU4CDFJXM862BVJ3.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "MU4CDFJXM862BVJ3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MU4CDFJXM862BVJ3.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "MU4CDFJXM862BVJ3.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12923" + }, + "appliesTo" : [ ] + }, + "MU4CDFJXM862BVJ3.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "MU4CDFJXM862BVJ3.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MU4CDFJXM862BVJ3.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "MU4CDFJXM862BVJ3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MU4CDFJXM862BVJ3.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "MU4CDFJXM862BVJ3.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MU4CDFJXM862BVJ3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "MU4CDFJXM862BVJ3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MU4CDFJXM862BVJ3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "MU4CDFJXM862BVJ3.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MU4CDFJXM862BVJ3.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "MU4CDFJXM862BVJ3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MU4CDFJXM862BVJ3.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "MU4CDFJXM862BVJ3.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3518" + }, + "appliesTo" : [ ] + }, + "MU4CDFJXM862BVJ3.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "MU4CDFJXM862BVJ3.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MU4CDFJXM862BVJ3.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "MU4CDFJXM862BVJ3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MU4CDFJXM862BVJ3.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "MU4CDFJXM862BVJ3.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MU4CDFJXM862BVJ3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "MU4CDFJXM862BVJ3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MU4CDFJXM862BVJ3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "MU4CDFJXM862BVJ3.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2290000000" + }, + "appliesTo" : [ ] + }, + "MU4CDFJXM862BVJ3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "MU4CDFJXM862BVJ3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6006" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MU4CDFJXM862BVJ3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "MU4CDFJXM862BVJ3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MU4CDFJXM862BVJ3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "MU4CDFJXM862BVJ3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "MU4CDFJXM862BVJ3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "MU4CDFJXM862BVJ3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11581" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MU4CDFJXM862BVJ3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "MU4CDFJXM862BVJ3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MU4CDFJXM862BVJ3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "MU4CDFJXM862BVJ3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6234" + }, + "appliesTo" : [ ] + }, + "MU4CDFJXM862BVJ3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "MU4CDFJXM862BVJ3.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MU4CDFJXM862BVJ3.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "MU4CDFJXM862BVJ3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MU4CDFJXM862BVJ3.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "MU4CDFJXM862BVJ3.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "2MS9BQ29TD8ZPX2B" : { + "2MS9BQ29TD8ZPX2B.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "2MS9BQ29TD8ZPX2B", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "2MS9BQ29TD8ZPX2B.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "2MS9BQ29TD8ZPX2B.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "2MS9BQ29TD8ZPX2B.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "2MS9BQ29TD8ZPX2B.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "186043" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2MS9BQ29TD8ZPX2B.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "2MS9BQ29TD8ZPX2B", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "2MS9BQ29TD8ZPX2B.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "2MS9BQ29TD8ZPX2B.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "94394" + }, + "appliesTo" : [ ] + }, + "2MS9BQ29TD8ZPX2B.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "2MS9BQ29TD8ZPX2B.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.7760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2MS9BQ29TD8ZPX2B.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "2MS9BQ29TD8ZPX2B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2MS9BQ29TD8ZPX2B.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "2MS9BQ29TD8ZPX2B.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "24.8010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2MS9BQ29TD8ZPX2B.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "2MS9BQ29TD8ZPX2B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2MS9BQ29TD8ZPX2B.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "2MS9BQ29TD8ZPX2B.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "206213" + }, + "appliesTo" : [ ] + }, + "2MS9BQ29TD8ZPX2B.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "2MS9BQ29TD8ZPX2B.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2MS9BQ29TD8ZPX2B.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "2MS9BQ29TD8ZPX2B", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "2MS9BQ29TD8ZPX2B.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "2MS9BQ29TD8ZPX2B.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.4670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2MS9BQ29TD8ZPX2B.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "2MS9BQ29TD8ZPX2B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2MS9BQ29TD8ZPX2B.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "2MS9BQ29TD8ZPX2B.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "11.9500000000" + }, + "appliesTo" : [ ] + }, + "2MS9BQ29TD8ZPX2B.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "2MS9BQ29TD8ZPX2B.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "104684" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2MS9BQ29TD8ZPX2B.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "2MS9BQ29TD8ZPX2B", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "2MS9BQ29TD8ZPX2B.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "2MS9BQ29TD8ZPX2B.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "390006" + }, + "appliesTo" : [ ] + }, + "2MS9BQ29TD8ZPX2B.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "2MS9BQ29TD8ZPX2B.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2MS9BQ29TD8ZPX2B.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "2MS9BQ29TD8ZPX2B", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "2MS9BQ29TD8ZPX2B.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "2MS9BQ29TD8ZPX2B.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "22.3340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2MS9BQ29TD8ZPX2B.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "2MS9BQ29TD8ZPX2B", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "2MS9BQ29TD8ZPX2B.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "2MS9BQ29TD8ZPX2B.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "181747" + }, + "appliesTo" : [ ] + }, + "2MS9BQ29TD8ZPX2B.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "2MS9BQ29TD8ZPX2B.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.9160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2MS9BQ29TD8ZPX2B.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "2MS9BQ29TD8ZPX2B", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "2MS9BQ29TD8ZPX2B.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "2MS9BQ29TD8ZPX2B.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "197404" + }, + "appliesTo" : [ ] + }, + "2MS9BQ29TD8ZPX2B.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "2MS9BQ29TD8ZPX2B.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2MS9BQ29TD8ZPX2B.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "2MS9BQ29TD8ZPX2B", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "2MS9BQ29TD8ZPX2B.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "2MS9BQ29TD8ZPX2B.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "350968" + }, + "appliesTo" : [ ] + }, + "2MS9BQ29TD8ZPX2B.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "2MS9BQ29TD8ZPX2B.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2MS9BQ29TD8ZPX2B.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "2MS9BQ29TD8ZPX2B", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "2MS9BQ29TD8ZPX2B.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "2MS9BQ29TD8ZPX2B.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.7540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "MJFVKRE8CR2DYKWF" : { + "MJFVKRE8CR2DYKWF.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "MJFVKRE8CR2DYKWF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MJFVKRE8CR2DYKWF.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "MJFVKRE8CR2DYKWF.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6720000000" + }, + "appliesTo" : [ ] + }, + "MJFVKRE8CR2DYKWF.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "MJFVKRE8CR2DYKWF.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5884" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MJFVKRE8CR2DYKWF.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "MJFVKRE8CR2DYKWF", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "MJFVKRE8CR2DYKWF.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "MJFVKRE8CR2DYKWF.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MJFVKRE8CR2DYKWF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "MJFVKRE8CR2DYKWF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MJFVKRE8CR2DYKWF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "MJFVKRE8CR2DYKWF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3635" + }, + "appliesTo" : [ ] + }, + "MJFVKRE8CR2DYKWF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "MJFVKRE8CR2DYKWF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MJFVKRE8CR2DYKWF.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "MJFVKRE8CR2DYKWF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MJFVKRE8CR2DYKWF.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "MJFVKRE8CR2DYKWF.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MJFVKRE8CR2DYKWF.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "MJFVKRE8CR2DYKWF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MJFVKRE8CR2DYKWF.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "MJFVKRE8CR2DYKWF.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11622" + }, + "appliesTo" : [ ] + }, + "MJFVKRE8CR2DYKWF.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "MJFVKRE8CR2DYKWF.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MJFVKRE8CR2DYKWF.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "MJFVKRE8CR2DYKWF", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "MJFVKRE8CR2DYKWF.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "MJFVKRE8CR2DYKWF.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23563" + }, + "appliesTo" : [ ] + }, + "MJFVKRE8CR2DYKWF.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "MJFVKRE8CR2DYKWF.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MJFVKRE8CR2DYKWF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "MJFVKRE8CR2DYKWF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MJFVKRE8CR2DYKWF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "MJFVKRE8CR2DYKWF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5794" + }, + "appliesTo" : [ ] + }, + "MJFVKRE8CR2DYKWF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "MJFVKRE8CR2DYKWF.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MJFVKRE8CR2DYKWF.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "MJFVKRE8CR2DYKWF", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "MJFVKRE8CR2DYKWF.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "MJFVKRE8CR2DYKWF.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MJFVKRE8CR2DYKWF.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "MJFVKRE8CR2DYKWF", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "MJFVKRE8CR2DYKWF.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "MJFVKRE8CR2DYKWF.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9813" + }, + "appliesTo" : [ ] + }, + "MJFVKRE8CR2DYKWF.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "MJFVKRE8CR2DYKWF.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MJFVKRE8CR2DYKWF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "MJFVKRE8CR2DYKWF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MJFVKRE8CR2DYKWF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "MJFVKRE8CR2DYKWF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17576" + }, + "appliesTo" : [ ] + }, + "MJFVKRE8CR2DYKWF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "MJFVKRE8CR2DYKWF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MJFVKRE8CR2DYKWF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "MJFVKRE8CR2DYKWF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MJFVKRE8CR2DYKWF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "MJFVKRE8CR2DYKWF.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "MJFVKRE8CR2DYKWF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "MJFVKRE8CR2DYKWF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8478" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "NARXYND9H74FTC7A" : { + "NARXYND9H74FTC7A.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "NARXYND9H74FTC7A", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "NARXYND9H74FTC7A.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "NARXYND9H74FTC7A.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "67314" + }, + "appliesTo" : [ ] + }, + "NARXYND9H74FTC7A.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "NARXYND9H74FTC7A.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "NARXYND9H74FTC7A.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "NARXYND9H74FTC7A", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "NARXYND9H74FTC7A.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "NARXYND9H74FTC7A.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21920" + }, + "appliesTo" : [ ] + }, + "NARXYND9H74FTC7A.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "NARXYND9H74FTC7A.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "NARXYND9H74FTC7A.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "NARXYND9H74FTC7A", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "NARXYND9H74FTC7A.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "NARXYND9H74FTC7A.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39312" + }, + "appliesTo" : [ ] + }, + "NARXYND9H74FTC7A.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "NARXYND9H74FTC7A.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "NARXYND9H74FTC7A.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "NARXYND9H74FTC7A", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "NARXYND9H74FTC7A.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "NARXYND9H74FTC7A.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "NARXYND9H74FTC7A.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "NARXYND9H74FTC7A", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NARXYND9H74FTC7A.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "NARXYND9H74FTC7A.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14619" + }, + "appliesTo" : [ ] + }, + "NARXYND9H74FTC7A.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "NARXYND9H74FTC7A.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "NARXYND9H74FTC7A.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "NARXYND9H74FTC7A", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NARXYND9H74FTC7A.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "NARXYND9H74FTC7A.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28654" + }, + "appliesTo" : [ ] + }, + "NARXYND9H74FTC7A.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "NARXYND9H74FTC7A.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "NARXYND9H74FTC7A.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "NARXYND9H74FTC7A", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NARXYND9H74FTC7A.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "NARXYND9H74FTC7A.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "NARXYND9H74FTC7A.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "NARXYND9H74FTC7A", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "NARXYND9H74FTC7A.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "NARXYND9H74FTC7A.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14560" + }, + "appliesTo" : [ ] + }, + "NARXYND9H74FTC7A.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "NARXYND9H74FTC7A.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "NARXYND9H74FTC7A.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "NARXYND9H74FTC7A", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "NARXYND9H74FTC7A.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "NARXYND9H74FTC7A.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "NARXYND9H74FTC7A.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "NARXYND9H74FTC7A", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "NARXYND9H74FTC7A.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "NARXYND9H74FTC7A.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "NARXYND9H74FTC7A.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "NARXYND9H74FTC7A.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24931" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "NARXYND9H74FTC7A.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "NARXYND9H74FTC7A", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "NARXYND9H74FTC7A.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "NARXYND9H74FTC7A.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "44418" + }, + "appliesTo" : [ ] + }, + "NARXYND9H74FTC7A.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "NARXYND9H74FTC7A.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "XTNCFY9Y77D7WC9Y" : { + "XTNCFY9Y77D7WC9Y.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XTNCFY9Y77D7WC9Y", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XTNCFY9Y77D7WC9Y.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XTNCFY9Y77D7WC9Y.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "XTNCFY9Y77D7WC9Y.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XTNCFY9Y77D7WC9Y.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1114" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XTNCFY9Y77D7WC9Y.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "XTNCFY9Y77D7WC9Y", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XTNCFY9Y77D7WC9Y.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "XTNCFY9Y77D7WC9Y.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XTNCFY9Y77D7WC9Y.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "XTNCFY9Y77D7WC9Y", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XTNCFY9Y77D7WC9Y.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "XTNCFY9Y77D7WC9Y.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2606" + }, + "appliesTo" : [ ] + }, + "XTNCFY9Y77D7WC9Y.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "XTNCFY9Y77D7WC9Y.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XTNCFY9Y77D7WC9Y.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XTNCFY9Y77D7WC9Y", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XTNCFY9Y77D7WC9Y.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XTNCFY9Y77D7WC9Y.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1363000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XTNCFY9Y77D7WC9Y.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XTNCFY9Y77D7WC9Y", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XTNCFY9Y77D7WC9Y.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XTNCFY9Y77D7WC9Y.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "569" + }, + "appliesTo" : [ ] + }, + "XTNCFY9Y77D7WC9Y.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XTNCFY9Y77D7WC9Y.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0649000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XTNCFY9Y77D7WC9Y.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "XTNCFY9Y77D7WC9Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XTNCFY9Y77D7WC9Y.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "XTNCFY9Y77D7WC9Y.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1281" + }, + "appliesTo" : [ ] + }, + "XTNCFY9Y77D7WC9Y.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "XTNCFY9Y77D7WC9Y.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XTNCFY9Y77D7WC9Y.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "XTNCFY9Y77D7WC9Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XTNCFY9Y77D7WC9Y.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "XTNCFY9Y77D7WC9Y.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0746000000" + }, + "appliesTo" : [ ] + }, + "XTNCFY9Y77D7WC9Y.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "XTNCFY9Y77D7WC9Y.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "654" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XTNCFY9Y77D7WC9Y.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "XTNCFY9Y77D7WC9Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XTNCFY9Y77D7WC9Y.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "XTNCFY9Y77D7WC9Y.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1567000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XTNCFY9Y77D7WC9Y.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XTNCFY9Y77D7WC9Y", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XTNCFY9Y77D7WC9Y.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XTNCFY9Y77D7WC9Y.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "XTNCFY9Y77D7WC9Y.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XTNCFY9Y77D7WC9Y.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2174" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XTNCFY9Y77D7WC9Y.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "XTNCFY9Y77D7WC9Y", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XTNCFY9Y77D7WC9Y.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "XTNCFY9Y77D7WC9Y.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1093000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XTNCFY9Y77D7WC9Y.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XTNCFY9Y77D7WC9Y", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XTNCFY9Y77D7WC9Y.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XTNCFY9Y77D7WC9Y.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0440000000" + }, + "appliesTo" : [ ] + }, + "XTNCFY9Y77D7WC9Y.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XTNCFY9Y77D7WC9Y.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1156" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XTNCFY9Y77D7WC9Y.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "XTNCFY9Y77D7WC9Y", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XTNCFY9Y77D7WC9Y.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "XTNCFY9Y77D7WC9Y.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1330" + }, + "appliesTo" : [ ] + }, + "XTNCFY9Y77D7WC9Y.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "XTNCFY9Y77D7WC9Y.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0506000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "3XZGHRZ6YE3HHENC" : { + "3XZGHRZ6YE3HHENC.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "3XZGHRZ6YE3HHENC", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "3XZGHRZ6YE3HHENC.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "3XZGHRZ6YE3HHENC.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "161670" + }, + "appliesTo" : [ ] + }, + "3XZGHRZ6YE3HHENC.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "3XZGHRZ6YE3HHENC.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "18.4560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3XZGHRZ6YE3HHENC.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "3XZGHRZ6YE3HHENC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3XZGHRZ6YE3HHENC.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "3XZGHRZ6YE3HHENC.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "3XZGHRZ6YE3HHENC.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "3XZGHRZ6YE3HHENC.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "340766" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3XZGHRZ6YE3HHENC.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "3XZGHRZ6YE3HHENC", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "3XZGHRZ6YE3HHENC.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "3XZGHRZ6YE3HHENC.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "29.8270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3XZGHRZ6YE3HHENC.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "3XZGHRZ6YE3HHENC", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "3XZGHRZ6YE3HHENC.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "3XZGHRZ6YE3HHENC.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "793667" + }, + "appliesTo" : [ ] + }, + "3XZGHRZ6YE3HHENC.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "3XZGHRZ6YE3HHENC.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3XZGHRZ6YE3HHENC.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "3XZGHRZ6YE3HHENC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3XZGHRZ6YE3HHENC.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "3XZGHRZ6YE3HHENC.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "171961" + }, + "appliesTo" : [ ] + }, + "3XZGHRZ6YE3HHENC.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "3XZGHRZ6YE3HHENC.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "19.6300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3XZGHRZ6YE3HHENC.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "3XZGHRZ6YE3HHENC", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "3XZGHRZ6YE3HHENC.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "3XZGHRZ6YE3HHENC.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "37.6940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3XZGHRZ6YE3HHENC.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "3XZGHRZ6YE3HHENC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3XZGHRZ6YE3HHENC.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "3XZGHRZ6YE3HHENC.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "40.1610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3XZGHRZ6YE3HHENC.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "3XZGHRZ6YE3HHENC", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "3XZGHRZ6YE3HHENC.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "3XZGHRZ6YE3HHENC.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "399234" + }, + "appliesTo" : [ ] + }, + "3XZGHRZ6YE3HHENC.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "3XZGHRZ6YE3HHENC.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.1920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3XZGHRZ6YE3HHENC.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "3XZGHRZ6YE3HHENC", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "3XZGHRZ6YE3HHENC.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "3XZGHRZ6YE3HHENC.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "383577" + }, + "appliesTo" : [ ] + }, + "3XZGHRZ6YE3HHENC.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "3XZGHRZ6YE3HHENC.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.5960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3XZGHRZ6YE3HHENC.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "3XZGHRZ6YE3HHENC", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "3XZGHRZ6YE3HHENC.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "3XZGHRZ6YE3HHENC.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "320597" + }, + "appliesTo" : [ ] + }, + "3XZGHRZ6YE3HHENC.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "3XZGHRZ6YE3HHENC.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3XZGHRZ6YE3HHENC.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "3XZGHRZ6YE3HHENC", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "3XZGHRZ6YE3HHENC.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "3XZGHRZ6YE3HHENC.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "754629" + }, + "appliesTo" : [ ] + }, + "3XZGHRZ6YE3HHENC.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "3XZGHRZ6YE3HHENC.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "GNAPQZPVUSZ36KUU" : { + "GNAPQZPVUSZ36KUU.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "GNAPQZPVUSZ36KUU", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "GNAPQZPVUSZ36KUU.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "GNAPQZPVUSZ36KUU.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "GNAPQZPVUSZ36KUU.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "GNAPQZPVUSZ36KUU.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39386" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "GNAPQZPVUSZ36KUU.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "GNAPQZPVUSZ36KUU", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "GNAPQZPVUSZ36KUU.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "GNAPQZPVUSZ36KUU.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "GNAPQZPVUSZ36KUU.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "GNAPQZPVUSZ36KUU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "GNAPQZPVUSZ36KUU.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "GNAPQZPVUSZ36KUU.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26132" + }, + "appliesTo" : [ ] + }, + "GNAPQZPVUSZ36KUU.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "GNAPQZPVUSZ36KUU.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GNAPQZPVUSZ36KUU.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "GNAPQZPVUSZ36KUU", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GNAPQZPVUSZ36KUU.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "GNAPQZPVUSZ36KUU.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26722" + }, + "appliesTo" : [ ] + }, + "GNAPQZPVUSZ36KUU.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "GNAPQZPVUSZ36KUU.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GNAPQZPVUSZ36KUU.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "GNAPQZPVUSZ36KUU", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GNAPQZPVUSZ36KUU.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "GNAPQZPVUSZ36KUU.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14520" + }, + "appliesTo" : [ ] + }, + "GNAPQZPVUSZ36KUU.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "GNAPQZPVUSZ36KUU.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GNAPQZPVUSZ36KUU.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "GNAPQZPVUSZ36KUU", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GNAPQZPVUSZ36KUU.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "GNAPQZPVUSZ36KUU.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31379" + }, + "appliesTo" : [ ] + }, + "GNAPQZPVUSZ36KUU.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "GNAPQZPVUSZ36KUU.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GNAPQZPVUSZ36KUU.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "GNAPQZPVUSZ36KUU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GNAPQZPVUSZ36KUU.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "GNAPQZPVUSZ36KUU.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "GNAPQZPVUSZ36KUU.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "GNAPQZPVUSZ36KUU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "GNAPQZPVUSZ36KUU.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "GNAPQZPVUSZ36KUU.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GNAPQZPVUSZ36KUU.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "GNAPQZPVUSZ36KUU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GNAPQZPVUSZ36KUU.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "GNAPQZPVUSZ36KUU.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8474" + }, + "appliesTo" : [ ] + }, + "GNAPQZPVUSZ36KUU.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "GNAPQZPVUSZ36KUU.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GNAPQZPVUSZ36KUU.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "GNAPQZPVUSZ36KUU", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GNAPQZPVUSZ36KUU.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "GNAPQZPVUSZ36KUU.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9633" + }, + "appliesTo" : [ ] + }, + "GNAPQZPVUSZ36KUU.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "GNAPQZPVUSZ36KUU.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GNAPQZPVUSZ36KUU.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "GNAPQZPVUSZ36KUU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GNAPQZPVUSZ36KUU.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "GNAPQZPVUSZ36KUU.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "GNAPQZPVUSZ36KUU.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "GNAPQZPVUSZ36KUU.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16621" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "YM5RNCFKGBB4T3QM" : { + "YM5RNCFKGBB4T3QM.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YM5RNCFKGBB4T3QM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YM5RNCFKGBB4T3QM.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YM5RNCFKGBB4T3QM.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "40075" + }, + "appliesTo" : [ ] + }, + "YM5RNCFKGBB4T3QM.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YM5RNCFKGBB4T3QM.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YM5RNCFKGBB4T3QM.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YM5RNCFKGBB4T3QM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YM5RNCFKGBB4T3QM.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YM5RNCFKGBB4T3QM.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20209" + }, + "appliesTo" : [ ] + }, + "YM5RNCFKGBB4T3QM.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YM5RNCFKGBB4T3QM.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YM5RNCFKGBB4T3QM.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "YM5RNCFKGBB4T3QM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YM5RNCFKGBB4T3QM.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "YM5RNCFKGBB4T3QM.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YM5RNCFKGBB4T3QM.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "YM5RNCFKGBB4T3QM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YM5RNCFKGBB4T3QM.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "YM5RNCFKGBB4T3QM.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "99208" + }, + "appliesTo" : [ ] + }, + "YM5RNCFKGBB4T3QM.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "YM5RNCFKGBB4T3QM.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YM5RNCFKGBB4T3QM.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "YM5RNCFKGBB4T3QM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YM5RNCFKGBB4T3QM.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "YM5RNCFKGBB4T3QM.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YM5RNCFKGBB4T3QM.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "YM5RNCFKGBB4T3QM.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "42596" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YM5RNCFKGBB4T3QM.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "YM5RNCFKGBB4T3QM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YM5RNCFKGBB4T3QM.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "YM5RNCFKGBB4T3QM.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21495" + }, + "appliesTo" : [ ] + }, + "YM5RNCFKGBB4T3QM.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "YM5RNCFKGBB4T3QM.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YM5RNCFKGBB4T3QM.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YM5RNCFKGBB4T3QM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YM5RNCFKGBB4T3QM.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YM5RNCFKGBB4T3QM.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.7120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YM5RNCFKGBB4T3QM.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "YM5RNCFKGBB4T3QM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YM5RNCFKGBB4T3QM.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "YM5RNCFKGBB4T3QM.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.0200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YM5RNCFKGBB4T3QM.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YM5RNCFKGBB4T3QM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YM5RNCFKGBB4T3QM.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YM5RNCFKGBB4T3QM.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "94329" + }, + "appliesTo" : [ ] + }, + "YM5RNCFKGBB4T3QM.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YM5RNCFKGBB4T3QM.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YM5RNCFKGBB4T3QM.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "YM5RNCFKGBB4T3QM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YM5RNCFKGBB4T3QM.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "YM5RNCFKGBB4T3QM.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "49904" + }, + "appliesTo" : [ ] + }, + "YM5RNCFKGBB4T3QM.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "YM5RNCFKGBB4T3QM.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YM5RNCFKGBB4T3QM.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "YM5RNCFKGBB4T3QM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YM5RNCFKGBB4T3QM.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "YM5RNCFKGBB4T3QM.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YM5RNCFKGBB4T3QM.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YM5RNCFKGBB4T3QM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YM5RNCFKGBB4T3QM.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YM5RNCFKGBB4T3QM.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47947" + }, + "appliesTo" : [ ] + }, + "YM5RNCFKGBB4T3QM.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YM5RNCFKGBB4T3QM.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "RSN2RZ8JSX98HFVM" : { + "RSN2RZ8JSX98HFVM.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "RSN2RZ8JSX98HFVM", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "RSN2RZ8JSX98HFVM.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "RSN2RZ8JSX98HFVM.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7851" + }, + "appliesTo" : [ ] + }, + "RSN2RZ8JSX98HFVM.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "RSN2RZ8JSX98HFVM.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RSN2RZ8JSX98HFVM.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "RSN2RZ8JSX98HFVM", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "RSN2RZ8JSX98HFVM.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "RSN2RZ8JSX98HFVM.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12261" + }, + "appliesTo" : [ ] + }, + "RSN2RZ8JSX98HFVM.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "RSN2RZ8JSX98HFVM.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RSN2RZ8JSX98HFVM.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "RSN2RZ8JSX98HFVM", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "RSN2RZ8JSX98HFVM.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "RSN2RZ8JSX98HFVM.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16691" + }, + "appliesTo" : [ ] + }, + "RSN2RZ8JSX98HFVM.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "RSN2RZ8JSX98HFVM.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RSN2RZ8JSX98HFVM.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "RSN2RZ8JSX98HFVM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RSN2RZ8JSX98HFVM.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "RSN2RZ8JSX98HFVM.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7085" + }, + "appliesTo" : [ ] + }, + "RSN2RZ8JSX98HFVM.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "RSN2RZ8JSX98HFVM.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RSN2RZ8JSX98HFVM.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "RSN2RZ8JSX98HFVM", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "RSN2RZ8JSX98HFVM.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "RSN2RZ8JSX98HFVM.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RSN2RZ8JSX98HFVM.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "RSN2RZ8JSX98HFVM", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "RSN2RZ8JSX98HFVM.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "RSN2RZ8JSX98HFVM.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RSN2RZ8JSX98HFVM.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "RSN2RZ8JSX98HFVM", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "RSN2RZ8JSX98HFVM.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "RSN2RZ8JSX98HFVM.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4112" + }, + "appliesTo" : [ ] + }, + "RSN2RZ8JSX98HFVM.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "RSN2RZ8JSX98HFVM.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RSN2RZ8JSX98HFVM.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "RSN2RZ8JSX98HFVM", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "RSN2RZ8JSX98HFVM.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "RSN2RZ8JSX98HFVM.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6182" + }, + "appliesTo" : [ ] + }, + "RSN2RZ8JSX98HFVM.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "RSN2RZ8JSX98HFVM.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RSN2RZ8JSX98HFVM.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "RSN2RZ8JSX98HFVM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RSN2RZ8JSX98HFVM.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "RSN2RZ8JSX98HFVM.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RSN2RZ8JSX98HFVM.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "RSN2RZ8JSX98HFVM", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "RSN2RZ8JSX98HFVM.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "RSN2RZ8JSX98HFVM.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11102" + }, + "appliesTo" : [ ] + }, + "RSN2RZ8JSX98HFVM.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "RSN2RZ8JSX98HFVM.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RSN2RZ8JSX98HFVM.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "RSN2RZ8JSX98HFVM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RSN2RZ8JSX98HFVM.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "RSN2RZ8JSX98HFVM.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3615" + }, + "appliesTo" : [ ] + }, + "RSN2RZ8JSX98HFVM.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "RSN2RZ8JSX98HFVM.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "KCYHZ77Q583MP6ET" : { + "KCYHZ77Q583MP6ET.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "KCYHZ77Q583MP6ET", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KCYHZ77Q583MP6ET.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "KCYHZ77Q583MP6ET.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "76158" + }, + "appliesTo" : [ ] + }, + "KCYHZ77Q583MP6ET.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "KCYHZ77Q583MP6ET.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.6940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KCYHZ77Q583MP6ET.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "KCYHZ77Q583MP6ET", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KCYHZ77Q583MP6ET.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "KCYHZ77Q583MP6ET.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "151631" + }, + "appliesTo" : [ ] + }, + "KCYHZ77Q583MP6ET.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "KCYHZ77Q583MP6ET.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KCYHZ77Q583MP6ET.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "KCYHZ77Q583MP6ET", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KCYHZ77Q583MP6ET.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "KCYHZ77Q583MP6ET.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "18.2000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KCYHZ77Q583MP6ET.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "KCYHZ77Q583MP6ET", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KCYHZ77Q583MP6ET.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "KCYHZ77Q583MP6ET.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.8780000000" + }, + "appliesTo" : [ ] + }, + "KCYHZ77Q583MP6ET.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "KCYHZ77Q583MP6ET.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "207031" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KCYHZ77Q583MP6ET.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "KCYHZ77Q583MP6ET", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KCYHZ77Q583MP6ET.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "KCYHZ77Q583MP6ET.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "203117" + }, + "appliesTo" : [ ] + }, + "KCYHZ77Q583MP6ET.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "KCYHZ77Q583MP6ET.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.7290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KCYHZ77Q583MP6ET.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "KCYHZ77Q583MP6ET", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KCYHZ77Q583MP6ET.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "KCYHZ77Q583MP6ET.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "78731" + }, + "appliesTo" : [ ] + }, + "KCYHZ77Q583MP6ET.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "KCYHZ77Q583MP6ET.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.9880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KCYHZ77Q583MP6ET.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "KCYHZ77Q583MP6ET", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KCYHZ77Q583MP6ET.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "KCYHZ77Q583MP6ET.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "412861" + }, + "appliesTo" : [ ] + }, + "KCYHZ77Q583MP6ET.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "KCYHZ77Q583MP6ET.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KCYHZ77Q583MP6ET.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "KCYHZ77Q583MP6ET", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KCYHZ77Q583MP6ET.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "KCYHZ77Q583MP6ET.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.6170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KCYHZ77Q583MP6ET.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "KCYHZ77Q583MP6ET", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KCYHZ77Q583MP6ET.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "KCYHZ77Q583MP6ET.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "403102" + }, + "appliesTo" : [ ] + }, + "KCYHZ77Q583MP6ET.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "KCYHZ77Q583MP6ET.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KCYHZ77Q583MP6ET.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "KCYHZ77Q583MP6ET", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KCYHZ77Q583MP6ET.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "KCYHZ77Q583MP6ET.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "156673" + }, + "appliesTo" : [ ] + }, + "KCYHZ77Q583MP6ET.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "KCYHZ77Q583MP6ET.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KCYHZ77Q583MP6ET.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "KCYHZ77Q583MP6ET", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KCYHZ77Q583MP6ET.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "KCYHZ77Q583MP6ET.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.9380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KCYHZ77Q583MP6ET.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "KCYHZ77Q583MP6ET", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KCYHZ77Q583MP6ET.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "KCYHZ77Q583MP6ET.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "17.5840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "ARPJFM962U4P5HAT" : { + "ARPJFM962U4P5HAT.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ARPJFM962U4P5HAT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ARPJFM962U4P5HAT.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ARPJFM962U4P5HAT.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ARPJFM962U4P5HAT.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ARPJFM962U4P5HAT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ARPJFM962U4P5HAT.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ARPJFM962U4P5HAT.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ARPJFM962U4P5HAT.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ARPJFM962U4P5HAT.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9715" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ARPJFM962U4P5HAT.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "ARPJFM962U4P5HAT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ARPJFM962U4P5HAT.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "ARPJFM962U4P5HAT.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ARPJFM962U4P5HAT.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ARPJFM962U4P5HAT", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "ARPJFM962U4P5HAT.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ARPJFM962U4P5HAT.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2420000000" + }, + "appliesTo" : [ ] + }, + "ARPJFM962U4P5HAT.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ARPJFM962U4P5HAT.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2116" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ARPJFM962U4P5HAT.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ARPJFM962U4P5HAT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ARPJFM962U4P5HAT.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ARPJFM962U4P5HAT.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4739" + }, + "appliesTo" : [ ] + }, + "ARPJFM962U4P5HAT.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ARPJFM962U4P5HAT.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ARPJFM962U4P5HAT.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ARPJFM962U4P5HAT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ARPJFM962U4P5HAT.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ARPJFM962U4P5HAT.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2418" + }, + "appliesTo" : [ ] + }, + "ARPJFM962U4P5HAT.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ARPJFM962U4P5HAT.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ARPJFM962U4P5HAT.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ARPJFM962U4P5HAT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ARPJFM962U4P5HAT.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ARPJFM962U4P5HAT.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ARPJFM962U4P5HAT.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ARPJFM962U4P5HAT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ARPJFM962U4P5HAT.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ARPJFM962U4P5HAT.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ARPJFM962U4P5HAT.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ARPJFM962U4P5HAT", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "ARPJFM962U4P5HAT.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ARPJFM962U4P5HAT.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4336" + }, + "appliesTo" : [ ] + }, + "ARPJFM962U4P5HAT.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ARPJFM962U4P5HAT.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ARPJFM962U4P5HAT.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ARPJFM962U4P5HAT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ARPJFM962U4P5HAT.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ARPJFM962U4P5HAT.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4956" + }, + "appliesTo" : [ ] + }, + "ARPJFM962U4P5HAT.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ARPJFM962U4P5HAT.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ARPJFM962U4P5HAT.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ARPJFM962U4P5HAT", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "ARPJFM962U4P5HAT.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ARPJFM962U4P5HAT.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8152" + }, + "appliesTo" : [ ] + }, + "ARPJFM962U4P5HAT.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ARPJFM962U4P5HAT.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ARPJFM962U4P5HAT.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ARPJFM962U4P5HAT", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "ARPJFM962U4P5HAT.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ARPJFM962U4P5HAT.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ARPJFM962U4P5HAT.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ARPJFM962U4P5HAT.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4146" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "EEY67C7D4RJ9CHR3" : { + "EEY67C7D4RJ9CHR3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "EEY67C7D4RJ9CHR3", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "EEY67C7D4RJ9CHR3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "EEY67C7D4RJ9CHR3.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1110000000" + }, + "appliesTo" : [ ] + }, + "EEY67C7D4RJ9CHR3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "EEY67C7D4RJ9CHR3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2909" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EEY67C7D4RJ9CHR3.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "EEY67C7D4RJ9CHR3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EEY67C7D4RJ9CHR3.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "EEY67C7D4RJ9CHR3.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6010" + }, + "appliesTo" : [ ] + }, + "EEY67C7D4RJ9CHR3.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "EEY67C7D4RJ9CHR3.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "EEY67C7D4RJ9CHR3.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "EEY67C7D4RJ9CHR3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EEY67C7D4RJ9CHR3.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "EEY67C7D4RJ9CHR3.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3023" + }, + "appliesTo" : [ ] + }, + "EEY67C7D4RJ9CHR3.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "EEY67C7D4RJ9CHR3.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "EEY67C7D4RJ9CHR3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "EEY67C7D4RJ9CHR3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EEY67C7D4RJ9CHR3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "EEY67C7D4RJ9CHR3.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2554000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "EEY67C7D4RJ9CHR3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "EEY67C7D4RJ9CHR3", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "EEY67C7D4RJ9CHR3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "EEY67C7D4RJ9CHR3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2180" + }, + "appliesTo" : [ ] + }, + "EEY67C7D4RJ9CHR3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "EEY67C7D4RJ9CHR3.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EEY67C7D4RJ9CHR3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "EEY67C7D4RJ9CHR3", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "EEY67C7D4RJ9CHR3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "EEY67C7D4RJ9CHR3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5726" + }, + "appliesTo" : [ ] + }, + "EEY67C7D4RJ9CHR3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "EEY67C7D4RJ9CHR3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EEY67C7D4RJ9CHR3.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "EEY67C7D4RJ9CHR3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EEY67C7D4RJ9CHR3.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "EEY67C7D4RJ9CHR3.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2354000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "EEY67C7D4RJ9CHR3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "EEY67C7D4RJ9CHR3", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "EEY67C7D4RJ9CHR3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "EEY67C7D4RJ9CHR3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1098" + }, + "appliesTo" : [ ] + }, + "EEY67C7D4RJ9CHR3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "EEY67C7D4RJ9CHR3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EEY67C7D4RJ9CHR3.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "EEY67C7D4RJ9CHR3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EEY67C7D4RJ9CHR3.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "EEY67C7D4RJ9CHR3.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2693000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "EEY67C7D4RJ9CHR3.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "EEY67C7D4RJ9CHR3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EEY67C7D4RJ9CHR3.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "EEY67C7D4RJ9CHR3.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "EEY67C7D4RJ9CHR3.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "EEY67C7D4RJ9CHR3.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2297" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "EEY67C7D4RJ9CHR3.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "EEY67C7D4RJ9CHR3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EEY67C7D4RJ9CHR3.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "EEY67C7D4RJ9CHR3.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "EEY67C7D4RJ9CHR3.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "EEY67C7D4RJ9CHR3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EEY67C7D4RJ9CHR3.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "EEY67C7D4RJ9CHR3.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1157" + }, + "appliesTo" : [ ] + }, + "EEY67C7D4RJ9CHR3.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "EEY67C7D4RJ9CHR3.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1321000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "ABGVRF96RZJ9FHTF" : { + "ABGVRF96RZJ9FHTF.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ABGVRF96RZJ9FHTF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ABGVRF96RZJ9FHTF.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ABGVRF96RZJ9FHTF.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5110000000" + }, + "appliesTo" : [ ] + }, + "ABGVRF96RZJ9FHTF.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ABGVRF96RZJ9FHTF.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4474" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ABGVRF96RZJ9FHTF.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ABGVRF96RZJ9FHTF", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "ABGVRF96RZJ9FHTF.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ABGVRF96RZJ9FHTF.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2760000000" + }, + "appliesTo" : [ ] + }, + "ABGVRF96RZJ9FHTF.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ABGVRF96RZJ9FHTF.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10732" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ABGVRF96RZJ9FHTF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ABGVRF96RZJ9FHTF", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "ABGVRF96RZJ9FHTF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ABGVRF96RZJ9FHTF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ABGVRF96RZJ9FHTF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ABGVRF96RZJ9FHTF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13323" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ABGVRF96RZJ9FHTF.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ABGVRF96RZJ9FHTF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ABGVRF96RZJ9FHTF.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ABGVRF96RZJ9FHTF.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ABGVRF96RZJ9FHTF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ABGVRF96RZJ9FHTF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ABGVRF96RZJ9FHTF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ABGVRF96RZJ9FHTF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8507" + }, + "appliesTo" : [ ] + }, + "ABGVRF96RZJ9FHTF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ABGVRF96RZJ9FHTF.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ABGVRF96RZJ9FHTF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ABGVRF96RZJ9FHTF", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "ABGVRF96RZJ9FHTF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ABGVRF96RZJ9FHTF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3831" + }, + "appliesTo" : [ ] + }, + "ABGVRF96RZJ9FHTF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ABGVRF96RZJ9FHTF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ABGVRF96RZJ9FHTF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ABGVRF96RZJ9FHTF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ABGVRF96RZJ9FHTF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ABGVRF96RZJ9FHTF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6256" + }, + "appliesTo" : [ ] + }, + "ABGVRF96RZJ9FHTF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ABGVRF96RZJ9FHTF.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ABGVRF96RZJ9FHTF.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ABGVRF96RZJ9FHTF", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "ABGVRF96RZJ9FHTF.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ABGVRF96RZJ9FHTF.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ABGVRF96RZJ9FHTF.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ABGVRF96RZJ9FHTF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ABGVRF96RZJ9FHTF.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ABGVRF96RZJ9FHTF.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8859" + }, + "appliesTo" : [ ] + }, + "ABGVRF96RZJ9FHTF.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ABGVRF96RZJ9FHTF.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ABGVRF96RZJ9FHTF.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ABGVRF96RZJ9FHTF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ABGVRF96RZJ9FHTF.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ABGVRF96RZJ9FHTF.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17621" + }, + "appliesTo" : [ ] + }, + "ABGVRF96RZJ9FHTF.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ABGVRF96RZJ9FHTF.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ABGVRF96RZJ9FHTF.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ABGVRF96RZJ9FHTF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ABGVRF96RZJ9FHTF.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ABGVRF96RZJ9FHTF.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "8KGH3T8ZZRGT8BQF" : { + "8KGH3T8ZZRGT8BQF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "8KGH3T8ZZRGT8BQF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "8KGH3T8ZZRGT8BQF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "8KGH3T8ZZRGT8BQF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9243" + }, + "appliesTo" : [ ] + }, + "8KGH3T8ZZRGT8BQF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "8KGH3T8ZZRGT8BQF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8KGH3T8ZZRGT8BQF.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "8KGH3T8ZZRGT8BQF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8KGH3T8ZZRGT8BQF.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "8KGH3T8ZZRGT8BQF.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "8KGH3T8ZZRGT8BQF.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "8KGH3T8ZZRGT8BQF.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23645" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8KGH3T8ZZRGT8BQF.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "8KGH3T8ZZRGT8BQF", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "8KGH3T8ZZRGT8BQF.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "8KGH3T8ZZRGT8BQF.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "66588" + }, + "appliesTo" : [ ] + }, + "8KGH3T8ZZRGT8BQF.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "8KGH3T8ZZRGT8BQF.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8KGH3T8ZZRGT8BQF.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "8KGH3T8ZZRGT8BQF", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "8KGH3T8ZZRGT8BQF.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "8KGH3T8ZZRGT8BQF.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8KGH3T8ZZRGT8BQF.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "8KGH3T8ZZRGT8BQF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8KGH3T8ZZRGT8BQF.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "8KGH3T8ZZRGT8BQF.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11874" + }, + "appliesTo" : [ ] + }, + "8KGH3T8ZZRGT8BQF.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "8KGH3T8ZZRGT8BQF.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8KGH3T8ZZRGT8BQF.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "8KGH3T8ZZRGT8BQF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8KGH3T8ZZRGT8BQF.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "8KGH3T8ZZRGT8BQF.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8KGH3T8ZZRGT8BQF.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "8KGH3T8ZZRGT8BQF", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "8KGH3T8ZZRGT8BQF.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "8KGH3T8ZZRGT8BQF.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8KGH3T8ZZRGT8BQF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "8KGH3T8ZZRGT8BQF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "8KGH3T8ZZRGT8BQF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "8KGH3T8ZZRGT8BQF.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4280000000" + }, + "appliesTo" : [ ] + }, + "8KGH3T8ZZRGT8BQF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "8KGH3T8ZZRGT8BQF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25014" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8KGH3T8ZZRGT8BQF.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "8KGH3T8ZZRGT8BQF", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "8KGH3T8ZZRGT8BQF.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "8KGH3T8ZZRGT8BQF.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26947" + }, + "appliesTo" : [ ] + }, + "8KGH3T8ZZRGT8BQF.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "8KGH3T8ZZRGT8BQF.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8KGH3T8ZZRGT8BQF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "8KGH3T8ZZRGT8BQF", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "8KGH3T8ZZRGT8BQF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "8KGH3T8ZZRGT8BQF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22631" + }, + "appliesTo" : [ ] + }, + "8KGH3T8ZZRGT8BQF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "8KGH3T8ZZRGT8BQF.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8KGH3T8ZZRGT8BQF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "8KGH3T8ZZRGT8BQF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "8KGH3T8ZZRGT8BQF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "8KGH3T8ZZRGT8BQF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "58789" + }, + "appliesTo" : [ ] + }, + "8KGH3T8ZZRGT8BQF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "8KGH3T8ZZRGT8BQF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "TBEWTV892NWKQS69" : { + "TBEWTV892NWKQS69.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TBEWTV892NWKQS69", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "TBEWTV892NWKQS69.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TBEWTV892NWKQS69.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TBEWTV892NWKQS69.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "TBEWTV892NWKQS69", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TBEWTV892NWKQS69.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "TBEWTV892NWKQS69.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TBEWTV892NWKQS69.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "TBEWTV892NWKQS69", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TBEWTV892NWKQS69.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "TBEWTV892NWKQS69.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9441" + }, + "appliesTo" : [ ] + }, + "TBEWTV892NWKQS69.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "TBEWTV892NWKQS69.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TBEWTV892NWKQS69.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "TBEWTV892NWKQS69", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "TBEWTV892NWKQS69.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "TBEWTV892NWKQS69.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "57387" + }, + "appliesTo" : [ ] + }, + "TBEWTV892NWKQS69.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "TBEWTV892NWKQS69.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TBEWTV892NWKQS69.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "TBEWTV892NWKQS69", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TBEWTV892NWKQS69.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "TBEWTV892NWKQS69.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18802" + }, + "appliesTo" : [ ] + }, + "TBEWTV892NWKQS69.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "TBEWTV892NWKQS69.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TBEWTV892NWKQS69.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TBEWTV892NWKQS69", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "TBEWTV892NWKQS69.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TBEWTV892NWKQS69.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12915" + }, + "appliesTo" : [ ] + }, + "TBEWTV892NWKQS69.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TBEWTV892NWKQS69.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TBEWTV892NWKQS69.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TBEWTV892NWKQS69", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "TBEWTV892NWKQS69.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TBEWTV892NWKQS69.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19469" + }, + "appliesTo" : [ ] + }, + "TBEWTV892NWKQS69.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TBEWTV892NWKQS69.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TBEWTV892NWKQS69.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "TBEWTV892NWKQS69", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "TBEWTV892NWKQS69.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "TBEWTV892NWKQS69.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TBEWTV892NWKQS69.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TBEWTV892NWKQS69", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "TBEWTV892NWKQS69.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TBEWTV892NWKQS69.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TBEWTV892NWKQS69.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TBEWTV892NWKQS69.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "50169" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TBEWTV892NWKQS69.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TBEWTV892NWKQS69", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "TBEWTV892NWKQS69.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TBEWTV892NWKQS69.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7100000000" + }, + "appliesTo" : [ ] + }, + "TBEWTV892NWKQS69.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TBEWTV892NWKQS69.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34704" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TBEWTV892NWKQS69.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "TBEWTV892NWKQS69", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "TBEWTV892NWKQS69.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "TBEWTV892NWKQS69.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7800000000" + }, + "appliesTo" : [ ] + }, + "TBEWTV892NWKQS69.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "TBEWTV892NWKQS69.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38067" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "DM52VSGUXWMC72XW" : { + "DM52VSGUXWMC72XW.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "DM52VSGUXWMC72XW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "DM52VSGUXWMC72XW.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "DM52VSGUXWMC72XW.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2740" + }, + "appliesTo" : [ ] + }, + "DM52VSGUXWMC72XW.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "DM52VSGUXWMC72XW.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DM52VSGUXWMC72XW.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "DM52VSGUXWMC72XW", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "DM52VSGUXWMC72XW.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "DM52VSGUXWMC72XW.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "DM52VSGUXWMC72XW.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "DM52VSGUXWMC72XW.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9953" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DM52VSGUXWMC72XW.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "DM52VSGUXWMC72XW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "DM52VSGUXWMC72XW.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "DM52VSGUXWMC72XW.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7046" + }, + "appliesTo" : [ ] + }, + "DM52VSGUXWMC72XW.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "DM52VSGUXWMC72XW.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DM52VSGUXWMC72XW.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "DM52VSGUXWMC72XW", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "DM52VSGUXWMC72XW.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "DM52VSGUXWMC72XW.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4914" + }, + "appliesTo" : [ ] + }, + "DM52VSGUXWMC72XW.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "DM52VSGUXWMC72XW.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DM52VSGUXWMC72XW.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "DM52VSGUXWMC72XW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DM52VSGUXWMC72XW.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "DM52VSGUXWMC72XW.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4107" + }, + "appliesTo" : [ ] + }, + "DM52VSGUXWMC72XW.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "DM52VSGUXWMC72XW.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DM52VSGUXWMC72XW.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "DM52VSGUXWMC72XW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "DM52VSGUXWMC72XW.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "DM52VSGUXWMC72XW.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DM52VSGUXWMC72XW.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "DM52VSGUXWMC72XW", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "DM52VSGUXWMC72XW.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "DM52VSGUXWMC72XW.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DM52VSGUXWMC72XW.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "DM52VSGUXWMC72XW", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "DM52VSGUXWMC72XW.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "DM52VSGUXWMC72XW.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2150000000" + }, + "appliesTo" : [ ] + }, + "DM52VSGUXWMC72XW.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "DM52VSGUXWMC72XW.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1820" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DM52VSGUXWMC72XW.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "DM52VSGUXWMC72XW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "DM52VSGUXWMC72XW.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "DM52VSGUXWMC72XW.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3629" + }, + "appliesTo" : [ ] + }, + "DM52VSGUXWMC72XW.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "DM52VSGUXWMC72XW.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DM52VSGUXWMC72XW.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "DM52VSGUXWMC72XW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DM52VSGUXWMC72XW.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "DM52VSGUXWMC72XW.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1827" + }, + "appliesTo" : [ ] + }, + "DM52VSGUXWMC72XW.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "DM52VSGUXWMC72XW.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DM52VSGUXWMC72XW.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "DM52VSGUXWMC72XW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DM52VSGUXWMC72XW.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "DM52VSGUXWMC72XW.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "75XER897G2X2ZNFP" : { + "75XER897G2X2ZNFP.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "75XER897G2X2ZNFP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "75XER897G2X2ZNFP.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "75XER897G2X2ZNFP.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "58014" + }, + "appliesTo" : [ ] + }, + "75XER897G2X2ZNFP.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "75XER897G2X2ZNFP.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "75XER897G2X2ZNFP.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "75XER897G2X2ZNFP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "75XER897G2X2ZNFP.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "75XER897G2X2ZNFP.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.7260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "75XER897G2X2ZNFP.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "75XER897G2X2ZNFP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "75XER897G2X2ZNFP.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "75XER897G2X2ZNFP.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7600000000" + }, + "appliesTo" : [ ] + }, + "75XER897G2X2ZNFP.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "75XER897G2X2ZNFP.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "72533" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "75XER897G2X2ZNFP.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "75XER897G2X2ZNFP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "75XER897G2X2ZNFP.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "75XER897G2X2ZNFP.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "143712" + }, + "appliesTo" : [ ] + }, + "75XER897G2X2ZNFP.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "75XER897G2X2ZNFP.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "75XER897G2X2ZNFP.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "75XER897G2X2ZNFP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "75XER897G2X2ZNFP.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "75XER897G2X2ZNFP.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.3630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "75XER897G2X2ZNFP.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "75XER897G2X2ZNFP", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "75XER897G2X2ZNFP.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "75XER897G2X2ZNFP.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "53645" + }, + "appliesTo" : [ ] + }, + "75XER897G2X2ZNFP.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "75XER897G2X2ZNFP.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "75XER897G2X2ZNFP.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "75XER897G2X2ZNFP", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "75XER897G2X2ZNFP.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "75XER897G2X2ZNFP.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "132862" + }, + "appliesTo" : [ ] + }, + "75XER897G2X2ZNFP.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "75XER897G2X2ZNFP.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "75XER897G2X2ZNFP.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "75XER897G2X2ZNFP", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "75XER897G2X2ZNFP.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "75XER897G2X2ZNFP.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "68202" + }, + "appliesTo" : [ ] + }, + "75XER897G2X2ZNFP.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "75XER897G2X2ZNFP.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "75XER897G2X2ZNFP.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "75XER897G2X2ZNFP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "75XER897G2X2ZNFP.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "75XER897G2X2ZNFP.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.8850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "75XER897G2X2ZNFP.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "75XER897G2X2ZNFP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "75XER897G2X2ZNFP.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "75XER897G2X2ZNFP.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29336" + }, + "appliesTo" : [ ] + }, + "75XER897G2X2ZNFP.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "75XER897G2X2ZNFP.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "75XER897G2X2ZNFP.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "75XER897G2X2ZNFP", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "75XER897G2X2ZNFP.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "75XER897G2X2ZNFP.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27107" + }, + "appliesTo" : [ ] + }, + "75XER897G2X2ZNFP.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "75XER897G2X2ZNFP.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "75XER897G2X2ZNFP.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "75XER897G2X2ZNFP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "75XER897G2X2ZNFP.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "75XER897G2X2ZNFP.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.3710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "SUXHXAPA9KC5QKGF" : { + "SUXHXAPA9KC5QKGF.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "SUXHXAPA9KC5QKGF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SUXHXAPA9KC5QKGF.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "SUXHXAPA9KC5QKGF.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2641" + }, + "appliesTo" : [ ] + }, + "SUXHXAPA9KC5QKGF.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "SUXHXAPA9KC5QKGF.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SUXHXAPA9KC5QKGF.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "SUXHXAPA9KC5QKGF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SUXHXAPA9KC5QKGF.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "SUXHXAPA9KC5QKGF.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SUXHXAPA9KC5QKGF.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "SUXHXAPA9KC5QKGF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SUXHXAPA9KC5QKGF.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "SUXHXAPA9KC5QKGF.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8046" + }, + "appliesTo" : [ ] + }, + "SUXHXAPA9KC5QKGF.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "SUXHXAPA9KC5QKGF.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SUXHXAPA9KC5QKGF.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SUXHXAPA9KC5QKGF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SUXHXAPA9KC5QKGF.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SUXHXAPA9KC5QKGF.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SUXHXAPA9KC5QKGF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SUXHXAPA9KC5QKGF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SUXHXAPA9KC5QKGF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SUXHXAPA9KC5QKGF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2320" + }, + "appliesTo" : [ ] + }, + "SUXHXAPA9KC5QKGF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SUXHXAPA9KC5QKGF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SUXHXAPA9KC5QKGF.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "SUXHXAPA9KC5QKGF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SUXHXAPA9KC5QKGF.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "SUXHXAPA9KC5QKGF.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5122" + }, + "appliesTo" : [ ] + }, + "SUXHXAPA9KC5QKGF.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "SUXHXAPA9KC5QKGF.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SUXHXAPA9KC5QKGF.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "SUXHXAPA9KC5QKGF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SUXHXAPA9KC5QKGF.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "SUXHXAPA9KC5QKGF.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SUXHXAPA9KC5QKGF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SUXHXAPA9KC5QKGF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SUXHXAPA9KC5QKGF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SUXHXAPA9KC5QKGF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6826" + }, + "appliesTo" : [ ] + }, + "SUXHXAPA9KC5QKGF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SUXHXAPA9KC5QKGF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SUXHXAPA9KC5QKGF.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "SUXHXAPA9KC5QKGF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SUXHXAPA9KC5QKGF.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "SUXHXAPA9KC5QKGF.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SUXHXAPA9KC5QKGF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SUXHXAPA9KC5QKGF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SUXHXAPA9KC5QKGF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SUXHXAPA9KC5QKGF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4492" + }, + "appliesTo" : [ ] + }, + "SUXHXAPA9KC5QKGF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SUXHXAPA9KC5QKGF.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SUXHXAPA9KC5QKGF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SUXHXAPA9KC5QKGF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SUXHXAPA9KC5QKGF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SUXHXAPA9KC5QKGF.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1370000000" + }, + "appliesTo" : [ ] + }, + "SUXHXAPA9KC5QKGF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SUXHXAPA9KC5QKGF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3614" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SUXHXAPA9KC5QKGF.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "SUXHXAPA9KC5QKGF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SUXHXAPA9KC5QKGF.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "SUXHXAPA9KC5QKGF.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4103" + }, + "appliesTo" : [ ] + }, + "SUXHXAPA9KC5QKGF.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "SUXHXAPA9KC5QKGF.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "QAMMQS9R5WC8PTN7" : { + "QAMMQS9R5WC8PTN7.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QAMMQS9R5WC8PTN7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QAMMQS9R5WC8PTN7.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QAMMQS9R5WC8PTN7.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "68202" + }, + "appliesTo" : [ ] + }, + "QAMMQS9R5WC8PTN7.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QAMMQS9R5WC8PTN7.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QAMMQS9R5WC8PTN7.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "QAMMQS9R5WC8PTN7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QAMMQS9R5WC8PTN7.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "QAMMQS9R5WC8PTN7.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "143712" + }, + "appliesTo" : [ ] + }, + "QAMMQS9R5WC8PTN7.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "QAMMQS9R5WC8PTN7.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QAMMQS9R5WC8PTN7.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QAMMQS9R5WC8PTN7", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "QAMMQS9R5WC8PTN7.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QAMMQS9R5WC8PTN7.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QAMMQS9R5WC8PTN7.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QAMMQS9R5WC8PTN7.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "132862" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QAMMQS9R5WC8PTN7.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "QAMMQS9R5WC8PTN7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QAMMQS9R5WC8PTN7.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "QAMMQS9R5WC8PTN7.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.7260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QAMMQS9R5WC8PTN7.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "QAMMQS9R5WC8PTN7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QAMMQS9R5WC8PTN7.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "QAMMQS9R5WC8PTN7.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.3630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QAMMQS9R5WC8PTN7.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "QAMMQS9R5WC8PTN7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QAMMQS9R5WC8PTN7.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "QAMMQS9R5WC8PTN7.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QAMMQS9R5WC8PTN7.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "QAMMQS9R5WC8PTN7.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "58014" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QAMMQS9R5WC8PTN7.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QAMMQS9R5WC8PTN7", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "QAMMQS9R5WC8PTN7.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QAMMQS9R5WC8PTN7.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27107" + }, + "appliesTo" : [ ] + }, + "QAMMQS9R5WC8PTN7.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QAMMQS9R5WC8PTN7.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QAMMQS9R5WC8PTN7.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QAMMQS9R5WC8PTN7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QAMMQS9R5WC8PTN7.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QAMMQS9R5WC8PTN7.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.3710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QAMMQS9R5WC8PTN7.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QAMMQS9R5WC8PTN7", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "QAMMQS9R5WC8PTN7.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QAMMQS9R5WC8PTN7.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "53645" + }, + "appliesTo" : [ ] + }, + "QAMMQS9R5WC8PTN7.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QAMMQS9R5WC8PTN7.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QAMMQS9R5WC8PTN7.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "QAMMQS9R5WC8PTN7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QAMMQS9R5WC8PTN7.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "QAMMQS9R5WC8PTN7.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3490000000" + }, + "appliesTo" : [ ] + }, + "QAMMQS9R5WC8PTN7.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "QAMMQS9R5WC8PTN7.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29336" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QAMMQS9R5WC8PTN7.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "QAMMQS9R5WC8PTN7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QAMMQS9R5WC8PTN7.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "QAMMQS9R5WC8PTN7.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.8850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QAMMQS9R5WC8PTN7.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "QAMMQS9R5WC8PTN7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QAMMQS9R5WC8PTN7.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "QAMMQS9R5WC8PTN7.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "72533" + }, + "appliesTo" : [ ] + }, + "QAMMQS9R5WC8PTN7.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "QAMMQS9R5WC8PTN7.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "DJZE39FJBRGB2JNH" : { + "DJZE39FJBRGB2JNH.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "DJZE39FJBRGB2JNH", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "DJZE39FJBRGB2JNH.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "DJZE39FJBRGB2JNH.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24894" + }, + "appliesTo" : [ ] + }, + "DJZE39FJBRGB2JNH.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "DJZE39FJBRGB2JNH.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DJZE39FJBRGB2JNH.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "DJZE39FJBRGB2JNH", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "DJZE39FJBRGB2JNH.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "DJZE39FJBRGB2JNH.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DJZE39FJBRGB2JNH.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "DJZE39FJBRGB2JNH", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "DJZE39FJBRGB2JNH.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "DJZE39FJBRGB2JNH.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "64667" + }, + "appliesTo" : [ ] + }, + "DJZE39FJBRGB2JNH.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "DJZE39FJBRGB2JNH.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DJZE39FJBRGB2JNH.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "DJZE39FJBRGB2JNH", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "DJZE39FJBRGB2JNH.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "DJZE39FJBRGB2JNH.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27515" + }, + "appliesTo" : [ ] + }, + "DJZE39FJBRGB2JNH.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "DJZE39FJBRGB2JNH.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DJZE39FJBRGB2JNH.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "DJZE39FJBRGB2JNH", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "DJZE39FJBRGB2JNH.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "DJZE39FJBRGB2JNH.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7160000000" + }, + "appliesTo" : [ ] + }, + "DJZE39FJBRGB2JNH.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "DJZE39FJBRGB2JNH.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29640" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DJZE39FJBRGB2JNH.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "DJZE39FJBRGB2JNH", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "DJZE39FJBRGB2JNH.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "DJZE39FJBRGB2JNH.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DJZE39FJBRGB2JNH.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "DJZE39FJBRGB2JNH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DJZE39FJBRGB2JNH.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "DJZE39FJBRGB2JNH.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DJZE39FJBRGB2JNH.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "DJZE39FJBRGB2JNH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DJZE39FJBRGB2JNH.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "DJZE39FJBRGB2JNH.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12128" + }, + "appliesTo" : [ ] + }, + "DJZE39FJBRGB2JNH.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "DJZE39FJBRGB2JNH.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DJZE39FJBRGB2JNH.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "DJZE39FJBRGB2JNH", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "DJZE39FJBRGB2JNH.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "DJZE39FJBRGB2JNH.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "73247" + }, + "appliesTo" : [ ] + }, + "DJZE39FJBRGB2JNH.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "DJZE39FJBRGB2JNH.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DJZE39FJBRGB2JNH.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "DJZE39FJBRGB2JNH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DJZE39FJBRGB2JNH.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "DJZE39FJBRGB2JNH.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24144" + }, + "appliesTo" : [ ] + }, + "DJZE39FJBRGB2JNH.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "DJZE39FJBRGB2JNH.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DJZE39FJBRGB2JNH.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "DJZE39FJBRGB2JNH", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "DJZE39FJBRGB2JNH.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "DJZE39FJBRGB2JNH.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10167" + }, + "appliesTo" : [ ] + }, + "DJZE39FJBRGB2JNH.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "DJZE39FJBRGB2JNH.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "285FWCDXDE9KA35M" : { + "285FWCDXDE9KA35M.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "285FWCDXDE9KA35M", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "285FWCDXDE9KA35M.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "285FWCDXDE9KA35M.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "790" + }, + "appliesTo" : [ ] + }, + "285FWCDXDE9KA35M.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "285FWCDXDE9KA35M.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "285FWCDXDE9KA35M.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "285FWCDXDE9KA35M", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "285FWCDXDE9KA35M.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "285FWCDXDE9KA35M.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1924" + }, + "appliesTo" : [ ] + }, + "285FWCDXDE9KA35M.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "285FWCDXDE9KA35M.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "285FWCDXDE9KA35M.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "285FWCDXDE9KA35M", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "285FWCDXDE9KA35M.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "285FWCDXDE9KA35M.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "285FWCDXDE9KA35M.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "285FWCDXDE9KA35M", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "285FWCDXDE9KA35M.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "285FWCDXDE9KA35M.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5537" + }, + "appliesTo" : [ ] + }, + "285FWCDXDE9KA35M.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "285FWCDXDE9KA35M.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "285FWCDXDE9KA35M.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "285FWCDXDE9KA35M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "285FWCDXDE9KA35M.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "285FWCDXDE9KA35M.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2321" + }, + "appliesTo" : [ ] + }, + "285FWCDXDE9KA35M.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "285FWCDXDE9KA35M.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "285FWCDXDE9KA35M.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "285FWCDXDE9KA35M", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "285FWCDXDE9KA35M.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "285FWCDXDE9KA35M.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "285FWCDXDE9KA35M.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "285FWCDXDE9KA35M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "285FWCDXDE9KA35M.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "285FWCDXDE9KA35M.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "285FWCDXDE9KA35M.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "285FWCDXDE9KA35M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "285FWCDXDE9KA35M.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "285FWCDXDE9KA35M.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1169" + }, + "appliesTo" : [ ] + }, + "285FWCDXDE9KA35M.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "285FWCDXDE9KA35M.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "285FWCDXDE9KA35M.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "285FWCDXDE9KA35M", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "285FWCDXDE9KA35M.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "285FWCDXDE9KA35M.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4342" + }, + "appliesTo" : [ ] + }, + "285FWCDXDE9KA35M.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "285FWCDXDE9KA35M.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "285FWCDXDE9KA35M.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "285FWCDXDE9KA35M", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "285FWCDXDE9KA35M.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "285FWCDXDE9KA35M.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1310000000" + }, + "appliesTo" : [ ] + }, + "285FWCDXDE9KA35M.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "285FWCDXDE9KA35M.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2231" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "285FWCDXDE9KA35M.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "285FWCDXDE9KA35M", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "285FWCDXDE9KA35M.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "285FWCDXDE9KA35M.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1845" + }, + "appliesTo" : [ ] + }, + "285FWCDXDE9KA35M.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "285FWCDXDE9KA35M.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "ADJRHP9DZHM7DJPS" : { + "ADJRHP9DZHM7DJPS.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ADJRHP9DZHM7DJPS", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "ADJRHP9DZHM7DJPS.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ADJRHP9DZHM7DJPS.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "75270" + }, + "appliesTo" : [ ] + }, + "ADJRHP9DZHM7DJPS.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ADJRHP9DZHM7DJPS.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ADJRHP9DZHM7DJPS.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ADJRHP9DZHM7DJPS", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "ADJRHP9DZHM7DJPS.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ADJRHP9DZHM7DJPS.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "142762" + }, + "appliesTo" : [ ] + }, + "ADJRHP9DZHM7DJPS.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ADJRHP9DZHM7DJPS.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ADJRHP9DZHM7DJPS.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "ADJRHP9DZHM7DJPS", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "ADJRHP9DZHM7DJPS.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "ADJRHP9DZHM7DJPS.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.1230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ADJRHP9DZHM7DJPS.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ADJRHP9DZHM7DJPS", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "ADJRHP9DZHM7DJPS.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ADJRHP9DZHM7DJPS.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.1490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ADJRHP9DZHM7DJPS.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ADJRHP9DZHM7DJPS", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "ADJRHP9DZHM7DJPS.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ADJRHP9DZHM7DJPS.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38332" + }, + "appliesTo" : [ ] + }, + "ADJRHP9DZHM7DJPS.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ADJRHP9DZHM7DJPS.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.3760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ADJRHP9DZHM7DJPS.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ADJRHP9DZHM7DJPS", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "ADJRHP9DZHM7DJPS.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ADJRHP9DZHM7DJPS.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "75270" + }, + "appliesTo" : [ ] + }, + "ADJRHP9DZHM7DJPS.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ADJRHP9DZHM7DJPS.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "EYGMRBWWFGSQBSBZ" : { + "EYGMRBWWFGSQBSBZ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "EYGMRBWWFGSQBSBZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "EYGMRBWWFGSQBSBZ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "EYGMRBWWFGSQBSBZ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1501" + }, + "appliesTo" : [ ] + }, + "EYGMRBWWFGSQBSBZ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "EYGMRBWWFGSQBSBZ.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EYGMRBWWFGSQBSBZ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "EYGMRBWWFGSQBSBZ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "EYGMRBWWFGSQBSBZ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "EYGMRBWWFGSQBSBZ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "EYGMRBWWFGSQBSBZ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "EYGMRBWWFGSQBSBZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "EYGMRBWWFGSQBSBZ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "EYGMRBWWFGSQBSBZ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1671" + }, + "appliesTo" : [ ] + }, + "EYGMRBWWFGSQBSBZ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "EYGMRBWWFGSQBSBZ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EYGMRBWWFGSQBSBZ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "EYGMRBWWFGSQBSBZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "EYGMRBWWFGSQBSBZ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "EYGMRBWWFGSQBSBZ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3066" + }, + "appliesTo" : [ ] + }, + "EYGMRBWWFGSQBSBZ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "EYGMRBWWFGSQBSBZ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EYGMRBWWFGSQBSBZ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "EYGMRBWWFGSQBSBZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "EYGMRBWWFGSQBSBZ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "EYGMRBWWFGSQBSBZ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "987" + }, + "appliesTo" : [ ] + }, + "EYGMRBWWFGSQBSBZ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "EYGMRBWWFGSQBSBZ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "ZTJAGDVB3B33WX4G" : { + "ZTJAGDVB3B33WX4G.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ZTJAGDVB3B33WX4G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZTJAGDVB3B33WX4G.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ZTJAGDVB3B33WX4G.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZTJAGDVB3B33WX4G.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ZTJAGDVB3B33WX4G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZTJAGDVB3B33WX4G.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ZTJAGDVB3B33WX4G.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "956" + }, + "appliesTo" : [ ] + }, + "ZTJAGDVB3B33WX4G.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ZTJAGDVB3B33WX4G.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZTJAGDVB3B33WX4G.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ZTJAGDVB3B33WX4G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZTJAGDVB3B33WX4G.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ZTJAGDVB3B33WX4G.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1836" + }, + "appliesTo" : [ ] + }, + "ZTJAGDVB3B33WX4G.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ZTJAGDVB3B33WX4G.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZTJAGDVB3B33WX4G.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ZTJAGDVB3B33WX4G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZTJAGDVB3B33WX4G.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ZTJAGDVB3B33WX4G.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2596" + }, + "appliesTo" : [ ] + }, + "ZTJAGDVB3B33WX4G.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ZTJAGDVB3B33WX4G.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZTJAGDVB3B33WX4G.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ZTJAGDVB3B33WX4G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZTJAGDVB3B33WX4G.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ZTJAGDVB3B33WX4G.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2531" + }, + "appliesTo" : [ ] + }, + "ZTJAGDVB3B33WX4G.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ZTJAGDVB3B33WX4G.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZTJAGDVB3B33WX4G.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ZTJAGDVB3B33WX4G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZTJAGDVB3B33WX4G.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ZTJAGDVB3B33WX4G.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1902" + }, + "appliesTo" : [ ] + }, + "ZTJAGDVB3B33WX4G.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ZTJAGDVB3B33WX4G.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZTJAGDVB3B33WX4G.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ZTJAGDVB3B33WX4G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZTJAGDVB3B33WX4G.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ZTJAGDVB3B33WX4G.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5009" + }, + "appliesTo" : [ ] + }, + "ZTJAGDVB3B33WX4G.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ZTJAGDVB3B33WX4G.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZTJAGDVB3B33WX4G.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "ZTJAGDVB3B33WX4G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZTJAGDVB3B33WX4G.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "ZTJAGDVB3B33WX4G.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZTJAGDVB3B33WX4G.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ZTJAGDVB3B33WX4G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZTJAGDVB3B33WX4G.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ZTJAGDVB3B33WX4G.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZTJAGDVB3B33WX4G.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ZTJAGDVB3B33WX4G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZTJAGDVB3B33WX4G.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ZTJAGDVB3B33WX4G.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5173" + }, + "appliesTo" : [ ] + }, + "ZTJAGDVB3B33WX4G.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ZTJAGDVB3B33WX4G.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZTJAGDVB3B33WX4G.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ZTJAGDVB3B33WX4G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZTJAGDVB3B33WX4G.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ZTJAGDVB3B33WX4G.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZTJAGDVB3B33WX4G.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ZTJAGDVB3B33WX4G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZTJAGDVB3B33WX4G.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ZTJAGDVB3B33WX4G.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "922" + }, + "appliesTo" : [ ] + }, + "ZTJAGDVB3B33WX4G.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ZTJAGDVB3B33WX4G.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "KAH9XCCP3F226R57" : { + "KAH9XCCP3F226R57.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "KAH9XCCP3F226R57", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "KAH9XCCP3F226R57.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "KAH9XCCP3F226R57.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1235" + }, + "appliesTo" : [ ] + }, + "KAH9XCCP3F226R57.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "KAH9XCCP3F226R57.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KAH9XCCP3F226R57.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "KAH9XCCP3F226R57", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "KAH9XCCP3F226R57.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "KAH9XCCP3F226R57.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2087" + }, + "appliesTo" : [ ] + }, + "KAH9XCCP3F226R57.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "KAH9XCCP3F226R57.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KAH9XCCP3F226R57.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "KAH9XCCP3F226R57", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "KAH9XCCP3F226R57.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "KAH9XCCP3F226R57.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1969" + }, + "appliesTo" : [ ] + }, + "KAH9XCCP3F226R57.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "KAH9XCCP3F226R57.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KAH9XCCP3F226R57.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "KAH9XCCP3F226R57", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "KAH9XCCP3F226R57.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "KAH9XCCP3F226R57.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3888" + }, + "appliesTo" : [ ] + }, + "KAH9XCCP3F226R57.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "KAH9XCCP3F226R57.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KAH9XCCP3F226R57.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "KAH9XCCP3F226R57", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "KAH9XCCP3F226R57.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "KAH9XCCP3F226R57.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "XVDMNM2WMYBYVW3T" : { + "XVDMNM2WMYBYVW3T.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XVDMNM2WMYBYVW3T", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "XVDMNM2WMYBYVW3T.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XVDMNM2WMYBYVW3T.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "80354" + }, + "appliesTo" : [ ] + }, + "XVDMNM2WMYBYVW3T.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XVDMNM2WMYBYVW3T.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XVDMNM2WMYBYVW3T.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XVDMNM2WMYBYVW3T", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "XVDMNM2WMYBYVW3T.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XVDMNM2WMYBYVW3T.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "40997" + }, + "appliesTo" : [ ] + }, + "XVDMNM2WMYBYVW3T.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XVDMNM2WMYBYVW3T.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.6800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XVDMNM2WMYBYVW3T.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XVDMNM2WMYBYVW3T", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XVDMNM2WMYBYVW3T.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XVDMNM2WMYBYVW3T.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "167982" + }, + "appliesTo" : [ ] + }, + "XVDMNM2WMYBYVW3T.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XVDMNM2WMYBYVW3T.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XVDMNM2WMYBYVW3T.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "XVDMNM2WMYBYVW3T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XVDMNM2WMYBYVW3T.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "XVDMNM2WMYBYVW3T.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "11.3020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XVDMNM2WMYBYVW3T.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "XVDMNM2WMYBYVW3T", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XVDMNM2WMYBYVW3T.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "XVDMNM2WMYBYVW3T.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "102756" + }, + "appliesTo" : [ ] + }, + "XVDMNM2WMYBYVW3T.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "XVDMNM2WMYBYVW3T.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XVDMNM2WMYBYVW3T.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XVDMNM2WMYBYVW3T", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "XVDMNM2WMYBYVW3T.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XVDMNM2WMYBYVW3T.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "89352" + }, + "appliesTo" : [ ] + }, + "XVDMNM2WMYBYVW3T.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XVDMNM2WMYBYVW3T.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XVDMNM2WMYBYVW3T.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "XVDMNM2WMYBYVW3T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XVDMNM2WMYBYVW3T.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "XVDMNM2WMYBYVW3T.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47146" + }, + "appliesTo" : [ ] + }, + "XVDMNM2WMYBYVW3T.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "XVDMNM2WMYBYVW3T.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.3820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XVDMNM2WMYBYVW3T.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "XVDMNM2WMYBYVW3T", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XVDMNM2WMYBYVW3T.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "XVDMNM2WMYBYVW3T.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "XVDMNM2WMYBYVW3T.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "XVDMNM2WMYBYVW3T.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "201401" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XVDMNM2WMYBYVW3T.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "XVDMNM2WMYBYVW3T", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XVDMNM2WMYBYVW3T.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "XVDMNM2WMYBYVW3T.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XVDMNM2WMYBYVW3T.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "XVDMNM2WMYBYVW3T", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XVDMNM2WMYBYVW3T.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "XVDMNM2WMYBYVW3T.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.4460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XVDMNM2WMYBYVW3T.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "XVDMNM2WMYBYVW3T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XVDMNM2WMYBYVW3T.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "XVDMNM2WMYBYVW3T.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "XVDMNM2WMYBYVW3T.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "XVDMNM2WMYBYVW3T.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "92407" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XVDMNM2WMYBYVW3T.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XVDMNM2WMYBYVW3T", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XVDMNM2WMYBYVW3T.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XVDMNM2WMYBYVW3T.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.8280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "6Z2HWHRBW2ZH7Z33" : { + "6Z2HWHRBW2ZH7Z33.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6Z2HWHRBW2ZH7Z33", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "6Z2HWHRBW2ZH7Z33.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6Z2HWHRBW2ZH7Z33.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "977" + }, + "appliesTo" : [ ] + }, + "6Z2HWHRBW2ZH7Z33.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6Z2HWHRBW2ZH7Z33.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6Z2HWHRBW2ZH7Z33.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6Z2HWHRBW2ZH7Z33", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "6Z2HWHRBW2ZH7Z33.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6Z2HWHRBW2ZH7Z33.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2029" + }, + "appliesTo" : [ ] + }, + "6Z2HWHRBW2ZH7Z33.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6Z2HWHRBW2ZH7Z33.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6Z2HWHRBW2ZH7Z33.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "6Z2HWHRBW2ZH7Z33", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6Z2HWHRBW2ZH7Z33.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "6Z2HWHRBW2ZH7Z33.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2327" + }, + "appliesTo" : [ ] + }, + "6Z2HWHRBW2ZH7Z33.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "6Z2HWHRBW2ZH7Z33.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6Z2HWHRBW2ZH7Z33.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "6Z2HWHRBW2ZH7Z33", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6Z2HWHRBW2ZH7Z33.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "6Z2HWHRBW2ZH7Z33.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6Z2HWHRBW2ZH7Z33.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6Z2HWHRBW2ZH7Z33", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6Z2HWHRBW2ZH7Z33.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6Z2HWHRBW2ZH7Z33.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2441" + }, + "appliesTo" : [ ] + }, + "6Z2HWHRBW2ZH7Z33.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6Z2HWHRBW2ZH7Z33.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6Z2HWHRBW2ZH7Z33.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6Z2HWHRBW2ZH7Z33", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "6Z2HWHRBW2ZH7Z33.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6Z2HWHRBW2ZH7Z33.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5392" + }, + "appliesTo" : [ ] + }, + "6Z2HWHRBW2ZH7Z33.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6Z2HWHRBW2ZH7Z33.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6Z2HWHRBW2ZH7Z33.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6Z2HWHRBW2ZH7Z33", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6Z2HWHRBW2ZH7Z33.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6Z2HWHRBW2ZH7Z33.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6Z2HWHRBW2ZH7Z33.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "6Z2HWHRBW2ZH7Z33", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6Z2HWHRBW2ZH7Z33.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "6Z2HWHRBW2ZH7Z33.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1130" + }, + "appliesTo" : [ ] + }, + "6Z2HWHRBW2ZH7Z33.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "6Z2HWHRBW2ZH7Z33.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6Z2HWHRBW2ZH7Z33.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "6Z2HWHRBW2ZH7Z33", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6Z2HWHRBW2ZH7Z33.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "6Z2HWHRBW2ZH7Z33.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6Z2HWHRBW2ZH7Z33.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "6Z2HWHRBW2ZH7Z33", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6Z2HWHRBW2ZH7Z33.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "6Z2HWHRBW2ZH7Z33.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "6Z2HWHRBW2ZH7Z33.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "6Z2HWHRBW2ZH7Z33.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2741" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6Z2HWHRBW2ZH7Z33.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "6Z2HWHRBW2ZH7Z33", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6Z2HWHRBW2ZH7Z33.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "6Z2HWHRBW2ZH7Z33.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6Z2HWHRBW2ZH7Z33.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "6Z2HWHRBW2ZH7Z33", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6Z2HWHRBW2ZH7Z33.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "6Z2HWHRBW2ZH7Z33.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6138" + }, + "appliesTo" : [ ] + }, + "6Z2HWHRBW2ZH7Z33.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "6Z2HWHRBW2ZH7Z33.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "VC8RXUKPQB42NMCF" : { + "VC8RXUKPQB42NMCF.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "VC8RXUKPQB42NMCF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VC8RXUKPQB42NMCF.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "VC8RXUKPQB42NMCF.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VC8RXUKPQB42NMCF.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "VC8RXUKPQB42NMCF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VC8RXUKPQB42NMCF.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "VC8RXUKPQB42NMCF.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VC8RXUKPQB42NMCF.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "VC8RXUKPQB42NMCF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VC8RXUKPQB42NMCF.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "VC8RXUKPQB42NMCF.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "332" + }, + "appliesTo" : [ ] + }, + "VC8RXUKPQB42NMCF.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "VC8RXUKPQB42NMCF.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VC8RXUKPQB42NMCF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "VC8RXUKPQB42NMCF", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "VC8RXUKPQB42NMCF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "VC8RXUKPQB42NMCF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0930000000" + }, + "appliesTo" : [ ] + }, + "VC8RXUKPQB42NMCF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "VC8RXUKPQB42NMCF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "289" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VC8RXUKPQB42NMCF.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "VC8RXUKPQB42NMCF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VC8RXUKPQB42NMCF.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "VC8RXUKPQB42NMCF.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1177" + }, + "appliesTo" : [ ] + }, + "VC8RXUKPQB42NMCF.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "VC8RXUKPQB42NMCF.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VC8RXUKPQB42NMCF.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "VC8RXUKPQB42NMCF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VC8RXUKPQB42NMCF.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "VC8RXUKPQB42NMCF.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VC8RXUKPQB42NMCF.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "VC8RXUKPQB42NMCF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VC8RXUKPQB42NMCF.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "VC8RXUKPQB42NMCF.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "682" + }, + "appliesTo" : [ ] + }, + "VC8RXUKPQB42NMCF.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "VC8RXUKPQB42NMCF.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VC8RXUKPQB42NMCF.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "VC8RXUKPQB42NMCF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VC8RXUKPQB42NMCF.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "VC8RXUKPQB42NMCF.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VC8RXUKPQB42NMCF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "VC8RXUKPQB42NMCF", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "VC8RXUKPQB42NMCF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "VC8RXUKPQB42NMCF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2691" + }, + "appliesTo" : [ ] + }, + "VC8RXUKPQB42NMCF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "VC8RXUKPQB42NMCF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VC8RXUKPQB42NMCF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "VC8RXUKPQB42NMCF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VC8RXUKPQB42NMCF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "VC8RXUKPQB42NMCF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1092" + }, + "appliesTo" : [ ] + }, + "VC8RXUKPQB42NMCF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "VC8RXUKPQB42NMCF.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VC8RXUKPQB42NMCF.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "VC8RXUKPQB42NMCF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VC8RXUKPQB42NMCF.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "VC8RXUKPQB42NMCF.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "VC8RXUKPQB42NMCF.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "VC8RXUKPQB42NMCF.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2913" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VC8RXUKPQB42NMCF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "VC8RXUKPQB42NMCF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VC8RXUKPQB42NMCF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "VC8RXUKPQB42NMCF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "593" + }, + "appliesTo" : [ ] + }, + "VC8RXUKPQB42NMCF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "VC8RXUKPQB42NMCF.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "EKX4XJYWHK3C9ZDP" : { + "EKX4XJYWHK3C9ZDP.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "EKX4XJYWHK3C9ZDP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EKX4XJYWHK3C9ZDP.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "EKX4XJYWHK3C9ZDP.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1890" + }, + "appliesTo" : [ ] + }, + "EKX4XJYWHK3C9ZDP.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "EKX4XJYWHK3C9ZDP.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "EKX4XJYWHK3C9ZDP.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "EKX4XJYWHK3C9ZDP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EKX4XJYWHK3C9ZDP.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "EKX4XJYWHK3C9ZDP.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "692" + }, + "appliesTo" : [ ] + }, + "EKX4XJYWHK3C9ZDP.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "EKX4XJYWHK3C9ZDP.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EKX4XJYWHK3C9ZDP.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "EKX4XJYWHK3C9ZDP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EKX4XJYWHK3C9ZDP.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "EKX4XJYWHK3C9ZDP.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "EKX4XJYWHK3C9ZDP.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "EKX4XJYWHK3C9ZDP", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "EKX4XJYWHK3C9ZDP.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "EKX4XJYWHK3C9ZDP.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1375" + }, + "appliesTo" : [ ] + }, + "EKX4XJYWHK3C9ZDP.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "EKX4XJYWHK3C9ZDP.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EKX4XJYWHK3C9ZDP.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "EKX4XJYWHK3C9ZDP", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "EKX4XJYWHK3C9ZDP.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "EKX4XJYWHK3C9ZDP.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3256" + }, + "appliesTo" : [ ] + }, + "EKX4XJYWHK3C9ZDP.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "EKX4XJYWHK3C9ZDP.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EKX4XJYWHK3C9ZDP.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "EKX4XJYWHK3C9ZDP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EKX4XJYWHK3C9ZDP.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "EKX4XJYWHK3C9ZDP.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1458" + }, + "appliesTo" : [ ] + }, + "EKX4XJYWHK3C9ZDP.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "EKX4XJYWHK3C9ZDP.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "EKX4XJYWHK3C9ZDP.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "EKX4XJYWHK3C9ZDP", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "EKX4XJYWHK3C9ZDP.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "EKX4XJYWHK3C9ZDP.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1729" + }, + "appliesTo" : [ ] + }, + "EKX4XJYWHK3C9ZDP.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "EKX4XJYWHK3C9ZDP.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EKX4XJYWHK3C9ZDP.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "EKX4XJYWHK3C9ZDP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EKX4XJYWHK3C9ZDP.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "EKX4XJYWHK3C9ZDP.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "EKX4XJYWHK3C9ZDP.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "EKX4XJYWHK3C9ZDP.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3754" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "EKX4XJYWHK3C9ZDP.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "EKX4XJYWHK3C9ZDP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EKX4XJYWHK3C9ZDP.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "EKX4XJYWHK3C9ZDP.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "EKX4XJYWHK3C9ZDP.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "EKX4XJYWHK3C9ZDP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EKX4XJYWHK3C9ZDP.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "EKX4XJYWHK3C9ZDP.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "735" + }, + "appliesTo" : [ ] + }, + "EKX4XJYWHK3C9ZDP.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "EKX4XJYWHK3C9ZDP.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "EKX4XJYWHK3C9ZDP.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "EKX4XJYWHK3C9ZDP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EKX4XJYWHK3C9ZDP.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "EKX4XJYWHK3C9ZDP.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "EKX4XJYWHK3C9ZDP.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "EKX4XJYWHK3C9ZDP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EKX4XJYWHK3C9ZDP.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "EKX4XJYWHK3C9ZDP.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "WU8MR6W7VJJUBGWW" : { + "WU8MR6W7VJJUBGWW.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "WU8MR6W7VJJUBGWW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WU8MR6W7VJJUBGWW.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "WU8MR6W7VJJUBGWW.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5424" + }, + "appliesTo" : [ ] + }, + "WU8MR6W7VJJUBGWW.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "WU8MR6W7VJJUBGWW.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WU8MR6W7VJJUBGWW.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "WU8MR6W7VJJUBGWW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WU8MR6W7VJJUBGWW.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "WU8MR6W7VJJUBGWW.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "WU8MR6W7VJJUBGWW.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "WU8MR6W7VJJUBGWW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WU8MR6W7VJJUBGWW.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "WU8MR6W7VJJUBGWW.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WU8MR6W7VJJUBGWW.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "WU8MR6W7VJJUBGWW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WU8MR6W7VJJUBGWW.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "WU8MR6W7VJJUBGWW.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8252" + }, + "appliesTo" : [ ] + }, + "WU8MR6W7VJJUBGWW.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "WU8MR6W7VJJUBGWW.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WU8MR6W7VJJUBGWW.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "WU8MR6W7VJJUBGWW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WU8MR6W7VJJUBGWW.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "WU8MR6W7VJJUBGWW.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7176" + }, + "appliesTo" : [ ] + }, + "WU8MR6W7VJJUBGWW.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "WU8MR6W7VJJUBGWW.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WU8MR6W7VJJUBGWW.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "WU8MR6W7VJJUBGWW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WU8MR6W7VJJUBGWW.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "WU8MR6W7VJJUBGWW.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WU8MR6W7VJJUBGWW.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "WU8MR6W7VJJUBGWW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WU8MR6W7VJJUBGWW.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "WU8MR6W7VJJUBGWW.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "WU8MR6W7VJJUBGWW.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "WU8MR6W7VJJUBGWW.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9244" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WU8MR6W7VJJUBGWW.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "WU8MR6W7VJJUBGWW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WU8MR6W7VJJUBGWW.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "WU8MR6W7VJJUBGWW.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "WU8MR6W7VJJUBGWW.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "WU8MR6W7VJJUBGWW.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13491" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WU8MR6W7VJJUBGWW.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "WU8MR6W7VJJUBGWW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WU8MR6W7VJJUBGWW.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "WU8MR6W7VJJUBGWW.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10631" + }, + "appliesTo" : [ ] + }, + "WU8MR6W7VJJUBGWW.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "WU8MR6W7VJJUBGWW.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WU8MR6W7VJJUBGWW.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "WU8MR6W7VJJUBGWW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WU8MR6W7VJJUBGWW.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "WU8MR6W7VJJUBGWW.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5380000000" + }, + "appliesTo" : [ ] + }, + "WU8MR6W7VJJUBGWW.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "WU8MR6W7VJJUBGWW.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4717" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WU8MR6W7VJJUBGWW.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "WU8MR6W7VJJUBGWW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WU8MR6W7VJJUBGWW.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "WU8MR6W7VJJUBGWW.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16175" + }, + "appliesTo" : [ ] + }, + "WU8MR6W7VJJUBGWW.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "WU8MR6W7VJJUBGWW.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WU8MR6W7VJJUBGWW.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "WU8MR6W7VJJUBGWW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WU8MR6W7VJJUBGWW.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "WU8MR6W7VJJUBGWW.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "ZDK96RPJGJ9MFZYU" : { + "ZDK96RPJGJ9MFZYU.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ZDK96RPJGJ9MFZYU", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "ZDK96RPJGJ9MFZYU.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ZDK96RPJGJ9MFZYU.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZDK96RPJGJ9MFZYU.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ZDK96RPJGJ9MFZYU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZDK96RPJGJ9MFZYU.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ZDK96RPJGJ9MFZYU.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16441" + }, + "appliesTo" : [ ] + }, + "ZDK96RPJGJ9MFZYU.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ZDK96RPJGJ9MFZYU.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZDK96RPJGJ9MFZYU.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ZDK96RPJGJ9MFZYU", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "ZDK96RPJGJ9MFZYU.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ZDK96RPJGJ9MFZYU.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1230000000" + }, + "appliesTo" : [ ] + }, + "ZDK96RPJGJ9MFZYU.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ZDK96RPJGJ9MFZYU.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29518" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZDK96RPJGJ9MFZYU.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ZDK96RPJGJ9MFZYU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZDK96RPJGJ9MFZYU.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ZDK96RPJGJ9MFZYU.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ZDK96RPJGJ9MFZYU.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ZDK96RPJGJ9MFZYU.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27856" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZDK96RPJGJ9MFZYU.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ZDK96RPJGJ9MFZYU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZDK96RPJGJ9MFZYU.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ZDK96RPJGJ9MFZYU.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33849" + }, + "appliesTo" : [ ] + }, + "ZDK96RPJGJ9MFZYU.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ZDK96RPJGJ9MFZYU.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZDK96RPJGJ9MFZYU.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ZDK96RPJGJ9MFZYU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZDK96RPJGJ9MFZYU.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ZDK96RPJGJ9MFZYU.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32224" + }, + "appliesTo" : [ ] + }, + "ZDK96RPJGJ9MFZYU.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ZDK96RPJGJ9MFZYU.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZDK96RPJGJ9MFZYU.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ZDK96RPJGJ9MFZYU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZDK96RPJGJ9MFZYU.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ZDK96RPJGJ9MFZYU.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "55493" + }, + "appliesTo" : [ ] + }, + "ZDK96RPJGJ9MFZYU.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ZDK96RPJGJ9MFZYU.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZDK96RPJGJ9MFZYU.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "ZDK96RPJGJ9MFZYU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZDK96RPJGJ9MFZYU.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "ZDK96RPJGJ9MFZYU.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZDK96RPJGJ9MFZYU.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ZDK96RPJGJ9MFZYU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZDK96RPJGJ9MFZYU.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ZDK96RPJGJ9MFZYU.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZDK96RPJGJ9MFZYU.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ZDK96RPJGJ9MFZYU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZDK96RPJGJ9MFZYU.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ZDK96RPJGJ9MFZYU.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "66344" + }, + "appliesTo" : [ ] + }, + "ZDK96RPJGJ9MFZYU.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ZDK96RPJGJ9MFZYU.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZDK96RPJGJ9MFZYU.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ZDK96RPJGJ9MFZYU", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "ZDK96RPJGJ9MFZYU.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ZDK96RPJGJ9MFZYU.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14212" + }, + "appliesTo" : [ ] + }, + "ZDK96RPJGJ9MFZYU.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ZDK96RPJGJ9MFZYU.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZDK96RPJGJ9MFZYU.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ZDK96RPJGJ9MFZYU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZDK96RPJGJ9MFZYU.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ZDK96RPJGJ9MFZYU.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "Q6R3PVH9UARHH828" : { + "Q6R3PVH9UARHH828.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "Q6R3PVH9UARHH828", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q6R3PVH9UARHH828.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "Q6R3PVH9UARHH828.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.2320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Q6R3PVH9UARHH828.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "Q6R3PVH9UARHH828", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q6R3PVH9UARHH828.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "Q6R3PVH9UARHH828.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21862" + }, + "appliesTo" : [ ] + }, + "Q6R3PVH9UARHH828.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "Q6R3PVH9UARHH828.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q6R3PVH9UARHH828.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Q6R3PVH9UARHH828", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Q6R3PVH9UARHH828.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Q6R3PVH9UARHH828.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37252" + }, + "appliesTo" : [ ] + }, + "Q6R3PVH9UARHH828.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Q6R3PVH9UARHH828.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Q6R3PVH9UARHH828.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "Q6R3PVH9UARHH828", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Q6R3PVH9UARHH828.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "Q6R3PVH9UARHH828.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33347" + }, + "appliesTo" : [ ] + }, + "Q6R3PVH9UARHH828.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "Q6R3PVH9UARHH828.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q6R3PVH9UARHH828.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Q6R3PVH9UARHH828", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "Q6R3PVH9UARHH828.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Q6R3PVH9UARHH828.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1050000000" + }, + "appliesTo" : [ ] + }, + "Q6R3PVH9UARHH828.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Q6R3PVH9UARHH828.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29044" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q6R3PVH9UARHH828.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "Q6R3PVH9UARHH828", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q6R3PVH9UARHH828.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "Q6R3PVH9UARHH828.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "42795" + }, + "appliesTo" : [ ] + }, + "Q6R3PVH9UARHH828.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "Q6R3PVH9UARHH828.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Q6R3PVH9UARHH828.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "Q6R3PVH9UARHH828", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Q6R3PVH9UARHH828.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "Q6R3PVH9UARHH828.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Q6R3PVH9UARHH828.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Q6R3PVH9UARHH828", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "Q6R3PVH9UARHH828.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Q6R3PVH9UARHH828.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "54634" + }, + "appliesTo" : [ ] + }, + "Q6R3PVH9UARHH828.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Q6R3PVH9UARHH828.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Q6R3PVH9UARHH828.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "Q6R3PVH9UARHH828", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Q6R3PVH9UARHH828.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "Q6R3PVH9UARHH828.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Q6R3PVH9UARHH828.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "Q6R3PVH9UARHH828", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Q6R3PVH9UARHH828.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "Q6R3PVH9UARHH828.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "65363" + }, + "appliesTo" : [ ] + }, + "Q6R3PVH9UARHH828.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "Q6R3PVH9UARHH828.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Q6R3PVH9UARHH828.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Q6R3PVH9UARHH828", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "Q6R3PVH9UARHH828.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Q6R3PVH9UARHH828.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19034" + }, + "appliesTo" : [ ] + }, + "Q6R3PVH9UARHH828.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Q6R3PVH9UARHH828.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q6R3PVH9UARHH828.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Q6R3PVH9UARHH828", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Q6R3PVH9UARHH828.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Q6R3PVH9UARHH828.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "J4WQF46DKE3825ST" : { + "J4WQF46DKE3825ST.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "J4WQF46DKE3825ST", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "J4WQF46DKE3825ST.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "J4WQF46DKE3825ST.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5702" + }, + "appliesTo" : [ ] + }, + "J4WQF46DKE3825ST.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "J4WQF46DKE3825ST.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "J4WQF46DKE3825ST.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "J4WQF46DKE3825ST", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "J4WQF46DKE3825ST.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "J4WQF46DKE3825ST.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2328" + }, + "appliesTo" : [ ] + }, + "J4WQF46DKE3825ST.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "J4WQF46DKE3825ST.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "J4WQF46DKE3825ST.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "J4WQF46DKE3825ST", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "J4WQF46DKE3825ST.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "J4WQF46DKE3825ST.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "J4WQF46DKE3825ST.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "J4WQF46DKE3825ST", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "J4WQF46DKE3825ST.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "J4WQF46DKE3825ST.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "J4WQF46DKE3825ST.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "J4WQF46DKE3825ST", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "J4WQF46DKE3825ST.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "J4WQF46DKE3825ST.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5452" + }, + "appliesTo" : [ ] + }, + "J4WQF46DKE3825ST.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "J4WQF46DKE3825ST.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "J4WQF46DKE3825ST.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "J4WQF46DKE3825ST", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "J4WQF46DKE3825ST.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "J4WQF46DKE3825ST.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "J4WQF46DKE3825ST.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "J4WQF46DKE3825ST.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12388" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "J4WQF46DKE3825ST.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "J4WQF46DKE3825ST", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "J4WQF46DKE3825ST.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "J4WQF46DKE3825ST.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "J4WQF46DKE3825ST.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "J4WQF46DKE3825ST", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "J4WQF46DKE3825ST.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "J4WQF46DKE3825ST.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3120000000" + }, + "appliesTo" : [ ] + }, + "J4WQF46DKE3825ST.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "J4WQF46DKE3825ST.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4772" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "J4WQF46DKE3825ST.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "J4WQF46DKE3825ST", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J4WQF46DKE3825ST.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "J4WQF46DKE3825ST.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6351" + }, + "appliesTo" : [ ] + }, + "J4WQF46DKE3825ST.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "J4WQF46DKE3825ST.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "J4WQF46DKE3825ST.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "J4WQF46DKE3825ST", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "J4WQF46DKE3825ST.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "J4WQF46DKE3825ST.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14102" + }, + "appliesTo" : [ ] + }, + "J4WQF46DKE3825ST.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "J4WQF46DKE3825ST.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "J4WQF46DKE3825ST.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "J4WQF46DKE3825ST", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J4WQF46DKE3825ST.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "J4WQF46DKE3825ST.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2660" + }, + "appliesTo" : [ ] + }, + "J4WQF46DKE3825ST.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "J4WQF46DKE3825ST.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "J4WQF46DKE3825ST.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "J4WQF46DKE3825ST", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J4WQF46DKE3825ST.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "J4WQF46DKE3825ST.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "NKJ4NNEJMKDJ54KC" : { + "NKJ4NNEJMKDJ54KC.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "NKJ4NNEJMKDJ54KC", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "NKJ4NNEJMKDJ54KC.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "NKJ4NNEJMKDJ54KC.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38214" + }, + "appliesTo" : [ ] + }, + "NKJ4NNEJMKDJ54KC.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "NKJ4NNEJMKDJ54KC.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "NKJ4NNEJMKDJ54KC.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "NKJ4NNEJMKDJ54KC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NKJ4NNEJMKDJ54KC.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "NKJ4NNEJMKDJ54KC.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8340" + }, + "appliesTo" : [ ] + }, + "NKJ4NNEJMKDJ54KC.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "NKJ4NNEJMKDJ54KC.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "NKJ4NNEJMKDJ54KC.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "NKJ4NNEJMKDJ54KC", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "NKJ4NNEJMKDJ54KC.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "NKJ4NNEJMKDJ54KC.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "NKJ4NNEJMKDJ54KC.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "NKJ4NNEJMKDJ54KC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NKJ4NNEJMKDJ54KC.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "NKJ4NNEJMKDJ54KC.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16291" + }, + "appliesTo" : [ ] + }, + "NKJ4NNEJMKDJ54KC.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "NKJ4NNEJMKDJ54KC.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "NKJ4NNEJMKDJ54KC.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "NKJ4NNEJMKDJ54KC", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "NKJ4NNEJMKDJ54KC.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "NKJ4NNEJMKDJ54KC.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "NKJ4NNEJMKDJ54KC.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "NKJ4NNEJMKDJ54KC", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "NKJ4NNEJMKDJ54KC.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "NKJ4NNEJMKDJ54KC.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9400" + }, + "appliesTo" : [ ] + }, + "NKJ4NNEJMKDJ54KC.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "NKJ4NNEJMKDJ54KC.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "NKJ4NNEJMKDJ54KC.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "NKJ4NNEJMKDJ54KC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "NKJ4NNEJMKDJ54KC.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "NKJ4NNEJMKDJ54KC.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14196" + }, + "appliesTo" : [ ] + }, + "NKJ4NNEJMKDJ54KC.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "NKJ4NNEJMKDJ54KC.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "NKJ4NNEJMKDJ54KC.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "NKJ4NNEJMKDJ54KC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NKJ4NNEJMKDJ54KC.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "NKJ4NNEJMKDJ54KC.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "NKJ4NNEJMKDJ54KC.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "NKJ4NNEJMKDJ54KC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "NKJ4NNEJMKDJ54KC.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "NKJ4NNEJMKDJ54KC.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30292" + }, + "appliesTo" : [ ] + }, + "NKJ4NNEJMKDJ54KC.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "NKJ4NNEJMKDJ54KC.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "NKJ4NNEJMKDJ54KC.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "NKJ4NNEJMKDJ54KC", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "NKJ4NNEJMKDJ54KC.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "NKJ4NNEJMKDJ54KC.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25257" + }, + "appliesTo" : [ ] + }, + "NKJ4NNEJMKDJ54KC.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "NKJ4NNEJMKDJ54KC.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "NKJ4NNEJMKDJ54KC.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "NKJ4NNEJMKDJ54KC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "NKJ4NNEJMKDJ54KC.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "NKJ4NNEJMKDJ54KC.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2530000000" + }, + "appliesTo" : [ ] + }, + "NKJ4NNEJMKDJ54KC.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "NKJ4NNEJMKDJ54KC.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25580" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "D6HGB9XUMNSDTB9G" : { + "D6HGB9XUMNSDTB9G.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "D6HGB9XUMNSDTB9G", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "D6HGB9XUMNSDTB9G.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "D6HGB9XUMNSDTB9G.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "80506" + }, + "appliesTo" : [ ] + }, + "D6HGB9XUMNSDTB9G.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "D6HGB9XUMNSDTB9G.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "D6HGB9XUMNSDTB9G.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "D6HGB9XUMNSDTB9G", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "D6HGB9XUMNSDTB9G.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "D6HGB9XUMNSDTB9G.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "181358" + }, + "appliesTo" : [ ] + }, + "D6HGB9XUMNSDTB9G.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "D6HGB9XUMNSDTB9G.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "D6HGB9XUMNSDTB9G.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "D6HGB9XUMNSDTB9G", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "D6HGB9XUMNSDTB9G.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "D6HGB9XUMNSDTB9G.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "D6HGB9XUMNSDTB9G.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "D6HGB9XUMNSDTB9G.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "151384" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "D6HGB9XUMNSDTB9G.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "D6HGB9XUMNSDTB9G", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "D6HGB9XUMNSDTB9G.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "D6HGB9XUMNSDTB9G.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.6210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "D6HGB9XUMNSDTB9G.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "D6HGB9XUMNSDTB9G", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "D6HGB9XUMNSDTB9G.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "D6HGB9XUMNSDTB9G.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.6091000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "D6HGB9XUMNSDTB9G.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "D6HGB9XUMNSDTB9G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "D6HGB9XUMNSDTB9G.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "D6HGB9XUMNSDTB9G.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9004000000" + }, + "appliesTo" : [ ] + }, + "D6HGB9XUMNSDTB9G.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "D6HGB9XUMNSDTB9G.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "42990" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "D6HGB9XUMNSDTB9G.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "D6HGB9XUMNSDTB9G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "D6HGB9XUMNSDTB9G.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "D6HGB9XUMNSDTB9G.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.2966000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "D6HGB9XUMNSDTB9G.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "D6HGB9XUMNSDTB9G", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "D6HGB9XUMNSDTB9G.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "D6HGB9XUMNSDTB9G.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "92527" + }, + "appliesTo" : [ ] + }, + "D6HGB9XUMNSDTB9G.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "D6HGB9XUMNSDTB9G.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5204000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "D6HGB9XUMNSDTB9G.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "D6HGB9XUMNSDTB9G", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "D6HGB9XUMNSDTB9G.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "D6HGB9XUMNSDTB9G.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "D6HGB9XUMNSDTB9G.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "D6HGB9XUMNSDTB9G.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "73261" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "D6HGB9XUMNSDTB9G.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "D6HGB9XUMNSDTB9G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "D6HGB9XUMNSDTB9G.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "D6HGB9XUMNSDTB9G.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "84205" + }, + "appliesTo" : [ ] + }, + "D6HGB9XUMNSDTB9G.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "D6HGB9XUMNSDTB9G.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "D6HGB9XUMNSDTB9G.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "D6HGB9XUMNSDTB9G", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "D6HGB9XUMNSDTB9G.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "D6HGB9XUMNSDTB9G.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2630000000" + }, + "appliesTo" : [ ] + }, + "D6HGB9XUMNSDTB9G.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "D6HGB9XUMNSDTB9G.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37406" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "D6HGB9XUMNSDTB9G.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "D6HGB9XUMNSDTB9G", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "D6HGB9XUMNSDTB9G.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "D6HGB9XUMNSDTB9G.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.9580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "T66DXZFUDZ8KW7UG" : { + "T66DXZFUDZ8KW7UG.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "T66DXZFUDZ8KW7UG", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "T66DXZFUDZ8KW7UG.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "T66DXZFUDZ8KW7UG.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5216" + }, + "appliesTo" : [ ] + }, + "T66DXZFUDZ8KW7UG.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "T66DXZFUDZ8KW7UG.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "T66DXZFUDZ8KW7UG.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "T66DXZFUDZ8KW7UG", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "T66DXZFUDZ8KW7UG.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "T66DXZFUDZ8KW7UG.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9807" + }, + "appliesTo" : [ ] + }, + "T66DXZFUDZ8KW7UG.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "T66DXZFUDZ8KW7UG.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "T66DXZFUDZ8KW7UG.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "T66DXZFUDZ8KW7UG", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "T66DXZFUDZ8KW7UG.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "T66DXZFUDZ8KW7UG.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "T66DXZFUDZ8KW7UG.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "T66DXZFUDZ8KW7UG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "T66DXZFUDZ8KW7UG.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "T66DXZFUDZ8KW7UG.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11122" + }, + "appliesTo" : [ ] + }, + "T66DXZFUDZ8KW7UG.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "T66DXZFUDZ8KW7UG.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "T66DXZFUDZ8KW7UG.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "T66DXZFUDZ8KW7UG", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "T66DXZFUDZ8KW7UG.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "T66DXZFUDZ8KW7UG.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "T66DXZFUDZ8KW7UG.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "T66DXZFUDZ8KW7UG", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "T66DXZFUDZ8KW7UG.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "T66DXZFUDZ8KW7UG.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26814" + }, + "appliesTo" : [ ] + }, + "T66DXZFUDZ8KW7UG.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "T66DXZFUDZ8KW7UG.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "T66DXZFUDZ8KW7UG.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "T66DXZFUDZ8KW7UG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "T66DXZFUDZ8KW7UG.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "T66DXZFUDZ8KW7UG.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5093" + }, + "appliesTo" : [ ] + }, + "T66DXZFUDZ8KW7UG.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "T66DXZFUDZ8KW7UG.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "T66DXZFUDZ8KW7UG.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "T66DXZFUDZ8KW7UG", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "T66DXZFUDZ8KW7UG.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "T66DXZFUDZ8KW7UG.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5050000000" + }, + "appliesTo" : [ ] + }, + "T66DXZFUDZ8KW7UG.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "T66DXZFUDZ8KW7UG.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14083" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "T66DXZFUDZ8KW7UG.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "T66DXZFUDZ8KW7UG", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "T66DXZFUDZ8KW7UG.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "T66DXZFUDZ8KW7UG.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "T66DXZFUDZ8KW7UG.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "T66DXZFUDZ8KW7UG.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19718" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "T66DXZFUDZ8KW7UG.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "T66DXZFUDZ8KW7UG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "T66DXZFUDZ8KW7UG.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "T66DXZFUDZ8KW7UG.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "T66DXZFUDZ8KW7UG.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "T66DXZFUDZ8KW7UG", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "T66DXZFUDZ8KW7UG.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "T66DXZFUDZ8KW7UG.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8126" + }, + "appliesTo" : [ ] + }, + "T66DXZFUDZ8KW7UG.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "T66DXZFUDZ8KW7UG.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "ZESHW7CZVERW2BN2" : { + "ZESHW7CZVERW2BN2.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ZESHW7CZVERW2BN2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZESHW7CZVERW2BN2.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ZESHW7CZVERW2BN2.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7310" + }, + "appliesTo" : [ ] + }, + "ZESHW7CZVERW2BN2.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ZESHW7CZVERW2BN2.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZESHW7CZVERW2BN2.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ZESHW7CZVERW2BN2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZESHW7CZVERW2BN2.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ZESHW7CZVERW2BN2.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZESHW7CZVERW2BN2.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ZESHW7CZVERW2BN2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "ZESHW7CZVERW2BN2.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ZESHW7CZVERW2BN2.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5590000000" + }, + "appliesTo" : [ ] + }, + "ZESHW7CZVERW2BN2.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ZESHW7CZVERW2BN2.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19656" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZESHW7CZVERW2BN2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ZESHW7CZVERW2BN2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ZESHW7CZVERW2BN2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ZESHW7CZVERW2BN2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22209" + }, + "appliesTo" : [ ] + }, + "ZESHW7CZVERW2BN2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ZESHW7CZVERW2BN2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZESHW7CZVERW2BN2.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ZESHW7CZVERW2BN2", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "ZESHW7CZVERW2BN2.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ZESHW7CZVERW2BN2.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZESHW7CZVERW2BN2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ZESHW7CZVERW2BN2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ZESHW7CZVERW2BN2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ZESHW7CZVERW2BN2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10960" + }, + "appliesTo" : [ ] + }, + "ZESHW7CZVERW2BN2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ZESHW7CZVERW2BN2.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZESHW7CZVERW2BN2.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ZESHW7CZVERW2BN2", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "ZESHW7CZVERW2BN2.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ZESHW7CZVERW2BN2.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33656" + }, + "appliesTo" : [ ] + }, + "ZESHW7CZVERW2BN2.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ZESHW7CZVERW2BN2.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZESHW7CZVERW2BN2.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ZESHW7CZVERW2BN2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZESHW7CZVERW2BN2.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ZESHW7CZVERW2BN2.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14327" + }, + "appliesTo" : [ ] + }, + "ZESHW7CZVERW2BN2.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ZESHW7CZVERW2BN2.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZESHW7CZVERW2BN2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ZESHW7CZVERW2BN2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ZESHW7CZVERW2BN2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ZESHW7CZVERW2BN2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7280" + }, + "appliesTo" : [ ] + }, + "ZESHW7CZVERW2BN2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ZESHW7CZVERW2BN2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZESHW7CZVERW2BN2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ZESHW7CZVERW2BN2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ZESHW7CZVERW2BN2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ZESHW7CZVERW2BN2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12465" + }, + "appliesTo" : [ ] + }, + "ZESHW7CZVERW2BN2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ZESHW7CZVERW2BN2.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZESHW7CZVERW2BN2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ZESHW7CZVERW2BN2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ZESHW7CZVERW2BN2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ZESHW7CZVERW2BN2.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "NBP9U2SVG37VG5S9" : { + "NBP9U2SVG37VG5S9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "NBP9U2SVG37VG5S9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "NBP9U2SVG37VG5S9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "NBP9U2SVG37VG5S9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2387" + }, + "appliesTo" : [ ] + }, + "NBP9U2SVG37VG5S9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "NBP9U2SVG37VG5S9.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "NBP9U2SVG37VG5S9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "NBP9U2SVG37VG5S9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "NBP9U2SVG37VG5S9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "NBP9U2SVG37VG5S9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1434" + }, + "appliesTo" : [ ] + }, + "NBP9U2SVG37VG5S9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "NBP9U2SVG37VG5S9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "NBP9U2SVG37VG5S9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "NBP9U2SVG37VG5S9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "NBP9U2SVG37VG5S9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "NBP9U2SVG37VG5S9.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "NBP9U2SVG37VG5S9.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "NBP9U2SVG37VG5S9", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "NBP9U2SVG37VG5S9.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "NBP9U2SVG37VG5S9.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "NBP9U2SVG37VG5S9.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "NBP9U2SVG37VG5S9", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "NBP9U2SVG37VG5S9.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "NBP9U2SVG37VG5S9.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6445" + }, + "appliesTo" : [ ] + }, + "NBP9U2SVG37VG5S9.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "NBP9U2SVG37VG5S9.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "NBP9U2SVG37VG5S9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "NBP9U2SVG37VG5S9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "NBP9U2SVG37VG5S9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "NBP9U2SVG37VG5S9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4545" + }, + "appliesTo" : [ ] + }, + "NBP9U2SVG37VG5S9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "NBP9U2SVG37VG5S9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "NBP9U2SVG37VG5S9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "NBP9U2SVG37VG5S9", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "NBP9U2SVG37VG5S9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "NBP9U2SVG37VG5S9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2234" + }, + "appliesTo" : [ ] + }, + "NBP9U2SVG37VG5S9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "NBP9U2SVG37VG5S9.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "NBP9U2SVG37VG5S9.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "NBP9U2SVG37VG5S9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NBP9U2SVG37VG5S9.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "NBP9U2SVG37VG5S9.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "NBP9U2SVG37VG5S9.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "NBP9U2SVG37VG5S9.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2745" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "NBP9U2SVG37VG5S9.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "NBP9U2SVG37VG5S9", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "NBP9U2SVG37VG5S9.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "NBP9U2SVG37VG5S9.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1030000000" + }, + "appliesTo" : [ ] + }, + "NBP9U2SVG37VG5S9.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "NBP9U2SVG37VG5S9.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3872" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "NBP9U2SVG37VG5S9.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "NBP9U2SVG37VG5S9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NBP9U2SVG37VG5S9.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "NBP9U2SVG37VG5S9.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1401" + }, + "appliesTo" : [ ] + }, + "NBP9U2SVG37VG5S9.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "NBP9U2SVG37VG5S9.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "NBP9U2SVG37VG5S9.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "NBP9U2SVG37VG5S9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NBP9U2SVG37VG5S9.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "NBP9U2SVG37VG5S9.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "XGQ9DRFV2RNYQE43" : { + "XGQ9DRFV2RNYQE43.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XGQ9DRFV2RNYQE43", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XGQ9DRFV2RNYQE43.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XGQ9DRFV2RNYQE43.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.4320000000" + }, + "appliesTo" : [ ] + }, + "XGQ9DRFV2RNYQE43.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XGQ9DRFV2RNYQE43.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "169033" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XGQ9DRFV2RNYQE43.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "XGQ9DRFV2RNYQE43", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XGQ9DRFV2RNYQE43.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "XGQ9DRFV2RNYQE43.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "345543" + }, + "appliesTo" : [ ] + }, + "XGQ9DRFV2RNYQE43.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "XGQ9DRFV2RNYQE43.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XGQ9DRFV2RNYQE43.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XGQ9DRFV2RNYQE43", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XGQ9DRFV2RNYQE43.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XGQ9DRFV2RNYQE43.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "XGQ9DRFV2RNYQE43.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XGQ9DRFV2RNYQE43.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "334534" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XGQ9DRFV2RNYQE43.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "XGQ9DRFV2RNYQE43", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XGQ9DRFV2RNYQE43.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "XGQ9DRFV2RNYQE43.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.0430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XGQ9DRFV2RNYQE43.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "XGQ9DRFV2RNYQE43", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XGQ9DRFV2RNYQE43.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "XGQ9DRFV2RNYQE43.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.4060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XGQ9DRFV2RNYQE43.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "XGQ9DRFV2RNYQE43", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XGQ9DRFV2RNYQE43.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "XGQ9DRFV2RNYQE43.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.1890000000" + }, + "appliesTo" : [ ] + }, + "XGQ9DRFV2RNYQE43.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "XGQ9DRFV2RNYQE43.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "62974" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XGQ9DRFV2RNYQE43.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "XGQ9DRFV2RNYQE43", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XGQ9DRFV2RNYQE43.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "XGQ9DRFV2RNYQE43.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.5650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XGQ9DRFV2RNYQE43.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "XGQ9DRFV2RNYQE43", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XGQ9DRFV2RNYQE43.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "XGQ9DRFV2RNYQE43.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "173448" + }, + "appliesTo" : [ ] + }, + "XGQ9DRFV2RNYQE43.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "XGQ9DRFV2RNYQE43.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.6000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XGQ9DRFV2RNYQE43.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XGQ9DRFV2RNYQE43", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XGQ9DRFV2RNYQE43.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XGQ9DRFV2RNYQE43.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "XGQ9DRFV2RNYQE43.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XGQ9DRFV2RNYQE43.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "121087" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XGQ9DRFV2RNYQE43.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XGQ9DRFV2RNYQE43", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XGQ9DRFV2RNYQE43.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XGQ9DRFV2RNYQE43.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.0510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XGQ9DRFV2RNYQE43.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "XGQ9DRFV2RNYQE43", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XGQ9DRFV2RNYQE43.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "XGQ9DRFV2RNYQE43.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "125290" + }, + "appliesTo" : [ ] + }, + "XGQ9DRFV2RNYQE43.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "XGQ9DRFV2RNYQE43.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XGQ9DRFV2RNYQE43.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XGQ9DRFV2RNYQE43", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XGQ9DRFV2RNYQE43.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XGQ9DRFV2RNYQE43.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "60830" + }, + "appliesTo" : [ ] + }, + "XGQ9DRFV2RNYQE43.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XGQ9DRFV2RNYQE43.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.9440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "AW64VE5DA5MH4J22" : { + "AW64VE5DA5MH4J22.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "AW64VE5DA5MH4J22", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "AW64VE5DA5MH4J22.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "AW64VE5DA5MH4J22.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31892" + }, + "appliesTo" : [ ] + }, + "AW64VE5DA5MH4J22.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "AW64VE5DA5MH4J22.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AW64VE5DA5MH4J22.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "AW64VE5DA5MH4J22", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AW64VE5DA5MH4J22.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "AW64VE5DA5MH4J22.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16153" + }, + "appliesTo" : [ ] + }, + "AW64VE5DA5MH4J22.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "AW64VE5DA5MH4J22.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "AW64VE5DA5MH4J22.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "AW64VE5DA5MH4J22", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AW64VE5DA5MH4J22.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "AW64VE5DA5MH4J22.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "AW64VE5DA5MH4J22.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "AW64VE5DA5MH4J22", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "AW64VE5DA5MH4J22.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "AW64VE5DA5MH4J22.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "94959" + }, + "appliesTo" : [ ] + }, + "AW64VE5DA5MH4J22.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "AW64VE5DA5MH4J22.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "AW64VE5DA5MH4J22.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "AW64VE5DA5MH4J22", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "AW64VE5DA5MH4J22.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "AW64VE5DA5MH4J22.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47545" + }, + "appliesTo" : [ ] + }, + "AW64VE5DA5MH4J22.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "AW64VE5DA5MH4J22.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "AW64VE5DA5MH4J22.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "AW64VE5DA5MH4J22", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "AW64VE5DA5MH4J22.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "AW64VE5DA5MH4J22.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7760000000" + }, + "appliesTo" : [ ] + }, + "AW64VE5DA5MH4J22.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "AW64VE5DA5MH4J22.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46674" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AW64VE5DA5MH4J22.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "AW64VE5DA5MH4J22", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "AW64VE5DA5MH4J22.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "AW64VE5DA5MH4J22.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "AW64VE5DA5MH4J22.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "AW64VE5DA5MH4J22", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AW64VE5DA5MH4J22.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "AW64VE5DA5MH4J22.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32249" + }, + "appliesTo" : [ ] + }, + "AW64VE5DA5MH4J22.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "AW64VE5DA5MH4J22.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "AW64VE5DA5MH4J22.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "AW64VE5DA5MH4J22", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "AW64VE5DA5MH4J22.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "AW64VE5DA5MH4J22.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "93057" + }, + "appliesTo" : [ ] + }, + "AW64VE5DA5MH4J22.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "AW64VE5DA5MH4J22.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AW64VE5DA5MH4J22.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "AW64VE5DA5MH4J22", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "AW64VE5DA5MH4J22.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "AW64VE5DA5MH4J22.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "AW64VE5DA5MH4J22.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "AW64VE5DA5MH4J22", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "AW64VE5DA5MH4J22.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "AW64VE5DA5MH4J22.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15970" + }, + "appliesTo" : [ ] + }, + "AW64VE5DA5MH4J22.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "AW64VE5DA5MH4J22.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "5KHB4S5E8M74C6ES" : { + "5KHB4S5E8M74C6ES.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "5KHB4S5E8M74C6ES", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5KHB4S5E8M74C6ES.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "5KHB4S5E8M74C6ES.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "5KHB4S5E8M74C6ES.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "5KHB4S5E8M74C6ES", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5KHB4S5E8M74C6ES.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "5KHB4S5E8M74C6ES.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1827" + }, + "appliesTo" : [ ] + }, + "5KHB4S5E8M74C6ES.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "5KHB4S5E8M74C6ES.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "5KHB4S5E8M74C6ES.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "5KHB4S5E8M74C6ES", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "5KHB4S5E8M74C6ES.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "5KHB4S5E8M74C6ES.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1820" + }, + "appliesTo" : [ ] + }, + "5KHB4S5E8M74C6ES.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "5KHB4S5E8M74C6ES.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5KHB4S5E8M74C6ES.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "5KHB4S5E8M74C6ES", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "5KHB4S5E8M74C6ES.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "5KHB4S5E8M74C6ES.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "5KHB4S5E8M74C6ES.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "5KHB4S5E8M74C6ES", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5KHB4S5E8M74C6ES.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "5KHB4S5E8M74C6ES.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "5KHB4S5E8M74C6ES.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "5KHB4S5E8M74C6ES.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3582" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "5KHB4S5E8M74C6ES.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "5KHB4S5E8M74C6ES", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "5KHB4S5E8M74C6ES.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "5KHB4S5E8M74C6ES.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1400000000" + }, + "appliesTo" : [ ] + }, + "5KHB4S5E8M74C6ES.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "5KHB4S5E8M74C6ES.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4914" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "5KHB4S5E8M74C6ES.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "5KHB4S5E8M74C6ES", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "5KHB4S5E8M74C6ES.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "5KHB4S5E8M74C6ES.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "5KHB4S5E8M74C6ES.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "5KHB4S5E8M74C6ES", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "5KHB4S5E8M74C6ES.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "5KHB4S5E8M74C6ES.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3114" + }, + "appliesTo" : [ ] + }, + "5KHB4S5E8M74C6ES.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "5KHB4S5E8M74C6ES.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5KHB4S5E8M74C6ES.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "5KHB4S5E8M74C6ES", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "5KHB4S5E8M74C6ES.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "5KHB4S5E8M74C6ES.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5564" + }, + "appliesTo" : [ ] + }, + "5KHB4S5E8M74C6ES.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "5KHB4S5E8M74C6ES.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5KHB4S5E8M74C6ES.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "5KHB4S5E8M74C6ES", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "5KHB4S5E8M74C6ES.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "5KHB4S5E8M74C6ES.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8408" + }, + "appliesTo" : [ ] + }, + "5KHB4S5E8M74C6ES.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "5KHB4S5E8M74C6ES.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "5KHB4S5E8M74C6ES.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "5KHB4S5E8M74C6ES", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "5KHB4S5E8M74C6ES.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "5KHB4S5E8M74C6ES.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2740" + }, + "appliesTo" : [ ] + }, + "5KHB4S5E8M74C6ES.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "5KHB4S5E8M74C6ES.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "KGZ5JY4FKTR75YN3" : { + "KGZ5JY4FKTR75YN3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "KGZ5JY4FKTR75YN3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "KGZ5JY4FKTR75YN3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "KGZ5JY4FKTR75YN3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "371" + }, + "appliesTo" : [ ] + }, + "KGZ5JY4FKTR75YN3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "KGZ5JY4FKTR75YN3.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KGZ5JY4FKTR75YN3.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "KGZ5JY4FKTR75YN3", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "KGZ5JY4FKTR75YN3.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "KGZ5JY4FKTR75YN3.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2785" + }, + "appliesTo" : [ ] + }, + "KGZ5JY4FKTR75YN3.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "KGZ5JY4FKTR75YN3.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KGZ5JY4FKTR75YN3.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "KGZ5JY4FKTR75YN3", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "KGZ5JY4FKTR75YN3.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "KGZ5JY4FKTR75YN3.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "626" + }, + "appliesTo" : [ ] + }, + "KGZ5JY4FKTR75YN3.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "KGZ5JY4FKTR75YN3.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KGZ5JY4FKTR75YN3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "KGZ5JY4FKTR75YN3", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "KGZ5JY4FKTR75YN3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "KGZ5JY4FKTR75YN3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2385" + }, + "appliesTo" : [ ] + }, + "KGZ5JY4FKTR75YN3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "KGZ5JY4FKTR75YN3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KGZ5JY4FKTR75YN3.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "KGZ5JY4FKTR75YN3", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "KGZ5JY4FKTR75YN3.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "KGZ5JY4FKTR75YN3.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KGZ5JY4FKTR75YN3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "KGZ5JY4FKTR75YN3", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "KGZ5JY4FKTR75YN3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "KGZ5JY4FKTR75YN3.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KGZ5JY4FKTR75YN3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "KGZ5JY4FKTR75YN3", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "KGZ5JY4FKTR75YN3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "KGZ5JY4FKTR75YN3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "232" + }, + "appliesTo" : [ ] + }, + "KGZ5JY4FKTR75YN3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "KGZ5JY4FKTR75YN3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KGZ5JY4FKTR75YN3.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "KGZ5JY4FKTR75YN3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KGZ5JY4FKTR75YN3.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "KGZ5JY4FKTR75YN3.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "KGZ5JY4FKTR75YN3.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "KGZ5JY4FKTR75YN3.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "972" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KGZ5JY4FKTR75YN3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "KGZ5JY4FKTR75YN3", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "KGZ5JY4FKTR75YN3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "KGZ5JY4FKTR75YN3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "967" + }, + "appliesTo" : [ ] + }, + "KGZ5JY4FKTR75YN3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "KGZ5JY4FKTR75YN3.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KGZ5JY4FKTR75YN3.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "KGZ5JY4FKTR75YN3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KGZ5JY4FKTR75YN3.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "KGZ5JY4FKTR75YN3.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "228" + }, + "appliesTo" : [ ] + }, + "KGZ5JY4FKTR75YN3.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "KGZ5JY4FKTR75YN3.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KGZ5JY4FKTR75YN3.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "KGZ5JY4FKTR75YN3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KGZ5JY4FKTR75YN3.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "KGZ5JY4FKTR75YN3.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "G2Y7JD8J9KR378JW" : { + "G2Y7JD8J9KR378JW.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "G2Y7JD8J9KR378JW", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "G2Y7JD8J9KR378JW.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "G2Y7JD8J9KR378JW.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8117" + }, + "appliesTo" : [ ] + }, + "G2Y7JD8J9KR378JW.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "G2Y7JD8J9KR378JW.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "G2Y7JD8J9KR378JW.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "G2Y7JD8J9KR378JW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "G2Y7JD8J9KR378JW.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "G2Y7JD8J9KR378JW.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "G2Y7JD8J9KR378JW.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "G2Y7JD8J9KR378JW.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21661" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "G2Y7JD8J9KR378JW.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "G2Y7JD8J9KR378JW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "G2Y7JD8J9KR378JW.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "G2Y7JD8J9KR378JW.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "G2Y7JD8J9KR378JW.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "G2Y7JD8J9KR378JW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "G2Y7JD8J9KR378JW.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "G2Y7JD8J9KR378JW.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4521" + }, + "appliesTo" : [ ] + }, + "G2Y7JD8J9KR378JW.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "G2Y7JD8J9KR378JW.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "G2Y7JD8J9KR378JW.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "G2Y7JD8J9KR378JW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "G2Y7JD8J9KR378JW.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "G2Y7JD8J9KR378JW.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "G2Y7JD8J9KR378JW.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "G2Y7JD8J9KR378JW", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "G2Y7JD8J9KR378JW.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "G2Y7JD8J9KR378JW.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3908" + }, + "appliesTo" : [ ] + }, + "G2Y7JD8J9KR378JW.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "G2Y7JD8J9KR378JW.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "G2Y7JD8J9KR378JW.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "G2Y7JD8J9KR378JW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "G2Y7JD8J9KR378JW.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "G2Y7JD8J9KR378JW.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "G2Y7JD8J9KR378JW.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "G2Y7JD8J9KR378JW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "G2Y7JD8J9KR378JW.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "G2Y7JD8J9KR378JW.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10000" + }, + "appliesTo" : [ ] + }, + "G2Y7JD8J9KR378JW.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "G2Y7JD8J9KR378JW.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "G2Y7JD8J9KR378JW.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "G2Y7JD8J9KR378JW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "G2Y7JD8J9KR378JW.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "G2Y7JD8J9KR378JW.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "G2Y7JD8J9KR378JW.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "G2Y7JD8J9KR378JW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "G2Y7JD8J9KR378JW.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "G2Y7JD8J9KR378JW.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9308" + }, + "appliesTo" : [ ] + }, + "G2Y7JD8J9KR378JW.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "G2Y7JD8J9KR378JW.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "G2Y7JD8J9KR378JW.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "G2Y7JD8J9KR378JW", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "G2Y7JD8J9KR378JW.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "G2Y7JD8J9KR378JW.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8799" + }, + "appliesTo" : [ ] + }, + "G2Y7JD8J9KR378JW.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "G2Y7JD8J9KR378JW.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "G2Y7JD8J9KR378JW.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "G2Y7JD8J9KR378JW", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "G2Y7JD8J9KR378JW.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "G2Y7JD8J9KR378JW.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18677" + }, + "appliesTo" : [ ] + }, + "G2Y7JD8J9KR378JW.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "G2Y7JD8J9KR378JW.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "M7W8H8ETF66PU3XA" : { + "M7W8H8ETF66PU3XA.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "M7W8H8ETF66PU3XA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M7W8H8ETF66PU3XA.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "M7W8H8ETF66PU3XA.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13071" + }, + "appliesTo" : [ ] + }, + "M7W8H8ETF66PU3XA.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "M7W8H8ETF66PU3XA.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "M7W8H8ETF66PU3XA.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "M7W8H8ETF66PU3XA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M7W8H8ETF66PU3XA.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "M7W8H8ETF66PU3XA.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "M7W8H8ETF66PU3XA.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "M7W8H8ETF66PU3XA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M7W8H8ETF66PU3XA.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "M7W8H8ETF66PU3XA.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1242000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "M7W8H8ETF66PU3XA.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "M7W8H8ETF66PU3XA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M7W8H8ETF66PU3XA.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "M7W8H8ETF66PU3XA.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1394000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "M7W8H8ETF66PU3XA.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "M7W8H8ETF66PU3XA", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "M7W8H8ETF66PU3XA.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "M7W8H8ETF66PU3XA.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22722" + }, + "appliesTo" : [ ] + }, + "M7W8H8ETF66PU3XA.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "M7W8H8ETF66PU3XA.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "M7W8H8ETF66PU3XA.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "M7W8H8ETF66PU3XA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M7W8H8ETF66PU3XA.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "M7W8H8ETF66PU3XA.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25980" + }, + "appliesTo" : [ ] + }, + "M7W8H8ETF66PU3XA.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "M7W8H8ETF66PU3XA.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9882000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "M7W8H8ETF66PU3XA.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "M7W8H8ETF66PU3XA", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "M7W8H8ETF66PU3XA.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "M7W8H8ETF66PU3XA.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "M7W8H8ETF66PU3XA.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "M7W8H8ETF66PU3XA.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "42749" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "M7W8H8ETF66PU3XA.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "M7W8H8ETF66PU3XA", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "M7W8H8ETF66PU3XA.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "M7W8H8ETF66PU3XA.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "M7W8H8ETF66PU3XA.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "M7W8H8ETF66PU3XA.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22212" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "M7W8H8ETF66PU3XA.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "M7W8H8ETF66PU3XA", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "M7W8H8ETF66PU3XA.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "M7W8H8ETF66PU3XA.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11361" + }, + "appliesTo" : [ ] + }, + "M7W8H8ETF66PU3XA.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "M7W8H8ETF66PU3XA.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "M7W8H8ETF66PU3XA.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "M7W8H8ETF66PU3XA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M7W8H8ETF66PU3XA.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "M7W8H8ETF66PU3XA.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "M7W8H8ETF66PU3XA.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "M7W8H8ETF66PU3XA.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25563" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "M7W8H8ETF66PU3XA.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "M7W8H8ETF66PU3XA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M7W8H8ETF66PU3XA.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "M7W8H8ETF66PU3XA.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "50925" + }, + "appliesTo" : [ ] + }, + "M7W8H8ETF66PU3XA.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "M7W8H8ETF66PU3XA.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "M7W8H8ETF66PU3XA.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "M7W8H8ETF66PU3XA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M7W8H8ETF66PU3XA.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "M7W8H8ETF66PU3XA.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8647000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "BWPP6VPRP5NECMAA" : { + "BWPP6VPRP5NECMAA.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "BWPP6VPRP5NECMAA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BWPP6VPRP5NECMAA.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "BWPP6VPRP5NECMAA.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2975000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BWPP6VPRP5NECMAA.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "BWPP6VPRP5NECMAA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BWPP6VPRP5NECMAA.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "BWPP6VPRP5NECMAA.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2170" + }, + "appliesTo" : [ ] + }, + "BWPP6VPRP5NECMAA.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "BWPP6VPRP5NECMAA.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BWPP6VPRP5NECMAA.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "BWPP6VPRP5NECMAA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BWPP6VPRP5NECMAA.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "BWPP6VPRP5NECMAA.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0872000000" + }, + "appliesTo" : [ ] + }, + "BWPP6VPRP5NECMAA.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "BWPP6VPRP5NECMAA.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2303" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BWPP6VPRP5NECMAA.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "BWPP6VPRP5NECMAA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BWPP6VPRP5NECMAA.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "BWPP6VPRP5NECMAA.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2596" + }, + "appliesTo" : [ ] + }, + "BWPP6VPRP5NECMAA.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "BWPP6VPRP5NECMAA.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0984000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BWPP6VPRP5NECMAA.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "BWPP6VPRP5NECMAA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BWPP6VPRP5NECMAA.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "BWPP6VPRP5NECMAA.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4362" + }, + "appliesTo" : [ ] + }, + "BWPP6VPRP5NECMAA.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "BWPP6VPRP5NECMAA.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BWPP6VPRP5NECMAA.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "BWPP6VPRP5NECMAA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BWPP6VPRP5NECMAA.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "BWPP6VPRP5NECMAA.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1934000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BWPP6VPRP5NECMAA.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "BWPP6VPRP5NECMAA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BWPP6VPRP5NECMAA.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "BWPP6VPRP5NECMAA.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2174000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BWPP6VPRP5NECMAA.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "BWPP6VPRP5NECMAA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BWPP6VPRP5NECMAA.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "BWPP6VPRP5NECMAA.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1135" + }, + "appliesTo" : [ ] + }, + "BWPP6VPRP5NECMAA.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "BWPP6VPRP5NECMAA.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1225000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BWPP6VPRP5NECMAA.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "BWPP6VPRP5NECMAA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BWPP6VPRP5NECMAA.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "BWPP6VPRP5NECMAA.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BWPP6VPRP5NECMAA.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "BWPP6VPRP5NECMAA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BWPP6VPRP5NECMAA.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "BWPP6VPRP5NECMAA.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1279" + }, + "appliesTo" : [ ] + }, + "BWPP6VPRP5NECMAA.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "BWPP6VPRP5NECMAA.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1389000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BWPP6VPRP5NECMAA.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "BWPP6VPRP5NECMAA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BWPP6VPRP5NECMAA.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "BWPP6VPRP5NECMAA.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2452" + }, + "appliesTo" : [ ] + }, + "BWPP6VPRP5NECMAA.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "BWPP6VPRP5NECMAA.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BWPP6VPRP5NECMAA.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "BWPP6VPRP5NECMAA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BWPP6VPRP5NECMAA.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "BWPP6VPRP5NECMAA.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5092" + }, + "appliesTo" : [ ] + }, + "BWPP6VPRP5NECMAA.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "BWPP6VPRP5NECMAA.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "H82A2SJ6H4MSM5Q6" : { + "H82A2SJ6H4MSM5Q6.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "H82A2SJ6H4MSM5Q6", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "H82A2SJ6H4MSM5Q6.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "H82A2SJ6H4MSM5Q6.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "H82A2SJ6H4MSM5Q6.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "H82A2SJ6H4MSM5Q6.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7568" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "H82A2SJ6H4MSM5Q6.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "H82A2SJ6H4MSM5Q6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H82A2SJ6H4MSM5Q6.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "H82A2SJ6H4MSM5Q6.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "H82A2SJ6H4MSM5Q6.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "H82A2SJ6H4MSM5Q6.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7831" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "H82A2SJ6H4MSM5Q6.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "H82A2SJ6H4MSM5Q6", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "H82A2SJ6H4MSM5Q6.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "H82A2SJ6H4MSM5Q6.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "H82A2SJ6H4MSM5Q6.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "H82A2SJ6H4MSM5Q6", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "H82A2SJ6H4MSM5Q6.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "H82A2SJ6H4MSM5Q6.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "H82A2SJ6H4MSM5Q6.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "H82A2SJ6H4MSM5Q6", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "H82A2SJ6H4MSM5Q6.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "H82A2SJ6H4MSM5Q6.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21596" + }, + "appliesTo" : [ ] + }, + "H82A2SJ6H4MSM5Q6.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "H82A2SJ6H4MSM5Q6.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "H82A2SJ6H4MSM5Q6.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "H82A2SJ6H4MSM5Q6", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "H82A2SJ6H4MSM5Q6.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "H82A2SJ6H4MSM5Q6.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3802" + }, + "appliesTo" : [ ] + }, + "H82A2SJ6H4MSM5Q6.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "H82A2SJ6H4MSM5Q6.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "H82A2SJ6H4MSM5Q6.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "H82A2SJ6H4MSM5Q6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H82A2SJ6H4MSM5Q6.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "H82A2SJ6H4MSM5Q6.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3936" + }, + "appliesTo" : [ ] + }, + "H82A2SJ6H4MSM5Q6.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "H82A2SJ6H4MSM5Q6.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "H82A2SJ6H4MSM5Q6.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "H82A2SJ6H4MSM5Q6", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "H82A2SJ6H4MSM5Q6.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "H82A2SJ6H4MSM5Q6.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "H82A2SJ6H4MSM5Q6.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "H82A2SJ6H4MSM5Q6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H82A2SJ6H4MSM5Q6.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "H82A2SJ6H4MSM5Q6.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "H82A2SJ6H4MSM5Q6.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "H82A2SJ6H4MSM5Q6", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "H82A2SJ6H4MSM5Q6.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "H82A2SJ6H4MSM5Q6.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20908" + }, + "appliesTo" : [ ] + }, + "H82A2SJ6H4MSM5Q6.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "H82A2SJ6H4MSM5Q6.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "H82A2SJ6H4MSM5Q6.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "H82A2SJ6H4MSM5Q6", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "H82A2SJ6H4MSM5Q6.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "H82A2SJ6H4MSM5Q6.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10841" + }, + "appliesTo" : [ ] + }, + "H82A2SJ6H4MSM5Q6.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "H82A2SJ6H4MSM5Q6.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "H82A2SJ6H4MSM5Q6.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "H82A2SJ6H4MSM5Q6", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "H82A2SJ6H4MSM5Q6.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "H82A2SJ6H4MSM5Q6.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10565" + }, + "appliesTo" : [ ] + }, + "H82A2SJ6H4MSM5Q6.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "H82A2SJ6H4MSM5Q6.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "PDEUGZC7QK7AETP6" : { + "PDEUGZC7QK7AETP6.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "PDEUGZC7QK7AETP6", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "PDEUGZC7QK7AETP6.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "PDEUGZC7QK7AETP6.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3239" + }, + "appliesTo" : [ ] + }, + "PDEUGZC7QK7AETP6.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "PDEUGZC7QK7AETP6.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PDEUGZC7QK7AETP6.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "PDEUGZC7QK7AETP6", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "PDEUGZC7QK7AETP6.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "PDEUGZC7QK7AETP6.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1323" + }, + "appliesTo" : [ ] + }, + "PDEUGZC7QK7AETP6.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "PDEUGZC7QK7AETP6.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PDEUGZC7QK7AETP6.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "PDEUGZC7QK7AETP6", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "PDEUGZC7QK7AETP6.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "PDEUGZC7QK7AETP6.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "PDEUGZC7QK7AETP6.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "PDEUGZC7QK7AETP6", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "PDEUGZC7QK7AETP6.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "PDEUGZC7QK7AETP6.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "PDEUGZC7QK7AETP6.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "PDEUGZC7QK7AETP6", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "PDEUGZC7QK7AETP6.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "PDEUGZC7QK7AETP6.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "PDEUGZC7QK7AETP6.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "PDEUGZC7QK7AETP6.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9503" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PDEUGZC7QK7AETP6.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "PDEUGZC7QK7AETP6", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "PDEUGZC7QK7AETP6.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "PDEUGZC7QK7AETP6.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8146" + }, + "appliesTo" : [ ] + }, + "PDEUGZC7QK7AETP6.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "PDEUGZC7QK7AETP6.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PDEUGZC7QK7AETP6.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "PDEUGZC7QK7AETP6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PDEUGZC7QK7AETP6.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "PDEUGZC7QK7AETP6.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3395" + }, + "appliesTo" : [ ] + }, + "PDEUGZC7QK7AETP6.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "PDEUGZC7QK7AETP6.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PDEUGZC7QK7AETP6.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "PDEUGZC7QK7AETP6", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "PDEUGZC7QK7AETP6.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "PDEUGZC7QK7AETP6.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3463" + }, + "appliesTo" : [ ] + }, + "PDEUGZC7QK7AETP6.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "PDEUGZC7QK7AETP6.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PDEUGZC7QK7AETP6.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "PDEUGZC7QK7AETP6", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "PDEUGZC7QK7AETP6.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "PDEUGZC7QK7AETP6.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3843" + }, + "appliesTo" : [ ] + }, + "PDEUGZC7QK7AETP6.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "PDEUGZC7QK7AETP6.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PDEUGZC7QK7AETP6.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "PDEUGZC7QK7AETP6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PDEUGZC7QK7AETP6.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "PDEUGZC7QK7AETP6.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1706" + }, + "appliesTo" : [ ] + }, + "PDEUGZC7QK7AETP6.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "PDEUGZC7QK7AETP6.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PDEUGZC7QK7AETP6.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "PDEUGZC7QK7AETP6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PDEUGZC7QK7AETP6.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "PDEUGZC7QK7AETP6.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "V57DX5BAS5NCGXY8" : { + "V57DX5BAS5NCGXY8.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "V57DX5BAS5NCGXY8", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "V57DX5BAS5NCGXY8.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "V57DX5BAS5NCGXY8.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "V57DX5BAS5NCGXY8.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "V57DX5BAS5NCGXY8", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "V57DX5BAS5NCGXY8.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "V57DX5BAS5NCGXY8.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "V57DX5BAS5NCGXY8.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "V57DX5BAS5NCGXY8.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8511" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "V57DX5BAS5NCGXY8.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "V57DX5BAS5NCGXY8", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "V57DX5BAS5NCGXY8.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "V57DX5BAS5NCGXY8.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9643" + }, + "appliesTo" : [ ] + }, + "V57DX5BAS5NCGXY8.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "V57DX5BAS5NCGXY8.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "V57DX5BAS5NCGXY8.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "V57DX5BAS5NCGXY8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V57DX5BAS5NCGXY8.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "V57DX5BAS5NCGXY8.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3171" + }, + "appliesTo" : [ ] + }, + "V57DX5BAS5NCGXY8.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "V57DX5BAS5NCGXY8.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "V57DX5BAS5NCGXY8.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "V57DX5BAS5NCGXY8", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "V57DX5BAS5NCGXY8.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "V57DX5BAS5NCGXY8.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2070000000" + }, + "appliesTo" : [ ] + }, + "V57DX5BAS5NCGXY8.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "V57DX5BAS5NCGXY8.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3620" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "V57DX5BAS5NCGXY8.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "V57DX5BAS5NCGXY8", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "V57DX5BAS5NCGXY8.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "V57DX5BAS5NCGXY8.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3906" + }, + "appliesTo" : [ ] + }, + "V57DX5BAS5NCGXY8.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "V57DX5BAS5NCGXY8.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "V57DX5BAS5NCGXY8.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "V57DX5BAS5NCGXY8", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "V57DX5BAS5NCGXY8.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "V57DX5BAS5NCGXY8.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1338" + }, + "appliesTo" : [ ] + }, + "V57DX5BAS5NCGXY8.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "V57DX5BAS5NCGXY8.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "V57DX5BAS5NCGXY8.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "V57DX5BAS5NCGXY8", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "V57DX5BAS5NCGXY8.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "V57DX5BAS5NCGXY8.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3274" + }, + "appliesTo" : [ ] + }, + "V57DX5BAS5NCGXY8.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "V57DX5BAS5NCGXY8.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "V57DX5BAS5NCGXY8.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "V57DX5BAS5NCGXY8", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "V57DX5BAS5NCGXY8.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "V57DX5BAS5NCGXY8.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "V57DX5BAS5NCGXY8.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "V57DX5BAS5NCGXY8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V57DX5BAS5NCGXY8.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "V57DX5BAS5NCGXY8.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1820000000" + }, + "appliesTo" : [ ] + }, + "V57DX5BAS5NCGXY8.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "V57DX5BAS5NCGXY8.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1592" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "V57DX5BAS5NCGXY8.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "V57DX5BAS5NCGXY8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V57DX5BAS5NCGXY8.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "V57DX5BAS5NCGXY8.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "CJC3SAFYHNB2FRUU" : { + "CJC3SAFYHNB2FRUU.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "CJC3SAFYHNB2FRUU", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "CJC3SAFYHNB2FRUU.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "CJC3SAFYHNB2FRUU.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15070" + }, + "appliesTo" : [ ] + }, + "CJC3SAFYHNB2FRUU.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "CJC3SAFYHNB2FRUU.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CJC3SAFYHNB2FRUU.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "CJC3SAFYHNB2FRUU", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "CJC3SAFYHNB2FRUU.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "CJC3SAFYHNB2FRUU.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29894" + }, + "appliesTo" : [ ] + }, + "CJC3SAFYHNB2FRUU.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "CJC3SAFYHNB2FRUU.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CJC3SAFYHNB2FRUU.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "CJC3SAFYHNB2FRUU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CJC3SAFYHNB2FRUU.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "CJC3SAFYHNB2FRUU.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0434000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CJC3SAFYHNB2FRUU.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "CJC3SAFYHNB2FRUU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CJC3SAFYHNB2FRUU.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "CJC3SAFYHNB2FRUU.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7361000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CJC3SAFYHNB2FRUU.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "CJC3SAFYHNB2FRUU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CJC3SAFYHNB2FRUU.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "CJC3SAFYHNB2FRUU.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31736" + }, + "appliesTo" : [ ] + }, + "CJC3SAFYHNB2FRUU.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "CJC3SAFYHNB2FRUU.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CJC3SAFYHNB2FRUU.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "CJC3SAFYHNB2FRUU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CJC3SAFYHNB2FRUU.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "CJC3SAFYHNB2FRUU.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16010" + }, + "appliesTo" : [ ] + }, + "CJC3SAFYHNB2FRUU.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "CJC3SAFYHNB2FRUU.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8276000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CJC3SAFYHNB2FRUU.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "CJC3SAFYHNB2FRUU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CJC3SAFYHNB2FRUU.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "CJC3SAFYHNB2FRUU.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "81133" + }, + "appliesTo" : [ ] + }, + "CJC3SAFYHNB2FRUU.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "CJC3SAFYHNB2FRUU.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CJC3SAFYHNB2FRUU.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "CJC3SAFYHNB2FRUU", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "CJC3SAFYHNB2FRUU.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "CJC3SAFYHNB2FRUU.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39057" + }, + "appliesTo" : [ ] + }, + "CJC3SAFYHNB2FRUU.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "CJC3SAFYHNB2FRUU.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CJC3SAFYHNB2FRUU.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "CJC3SAFYHNB2FRUU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CJC3SAFYHNB2FRUU.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "CJC3SAFYHNB2FRUU.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5144000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CJC3SAFYHNB2FRUU.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "CJC3SAFYHNB2FRUU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CJC3SAFYHNB2FRUU.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "CJC3SAFYHNB2FRUU.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1945000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CJC3SAFYHNB2FRUU.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "CJC3SAFYHNB2FRUU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CJC3SAFYHNB2FRUU.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "CJC3SAFYHNB2FRUU.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "40849" + }, + "appliesTo" : [ ] + }, + "CJC3SAFYHNB2FRUU.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "CJC3SAFYHNB2FRUU.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5544000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CJC3SAFYHNB2FRUU.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "CJC3SAFYHNB2FRUU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CJC3SAFYHNB2FRUU.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "CJC3SAFYHNB2FRUU.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "76638" + }, + "appliesTo" : [ ] + }, + "CJC3SAFYHNB2FRUU.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "CJC3SAFYHNB2FRUU.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "FXDDR8N72HV8JWMF" : { + "FXDDR8N72HV8JWMF.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "FXDDR8N72HV8JWMF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FXDDR8N72HV8JWMF.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "FXDDR8N72HV8JWMF.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "80378" + }, + "appliesTo" : [ ] + }, + "FXDDR8N72HV8JWMF.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "FXDDR8N72HV8JWMF.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.1690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FXDDR8N72HV8JWMF.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "FXDDR8N72HV8JWMF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FXDDR8N72HV8JWMF.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "FXDDR8N72HV8JWMF.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "19.2600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FXDDR8N72HV8JWMF.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "FXDDR8N72HV8JWMF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "FXDDR8N72HV8JWMF.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "FXDDR8N72HV8JWMF.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.3890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FXDDR8N72HV8JWMF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "FXDDR8N72HV8JWMF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "FXDDR8N72HV8JWMF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "FXDDR8N72HV8JWMF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "244402" + }, + "appliesTo" : [ ] + }, + "FXDDR8N72HV8JWMF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "FXDDR8N72HV8JWMF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FXDDR8N72HV8JWMF.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "FXDDR8N72HV8JWMF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "FXDDR8N72HV8JWMF.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "FXDDR8N72HV8JWMF.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "175017" + }, + "appliesTo" : [ ] + }, + "FXDDR8N72HV8JWMF.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "FXDDR8N72HV8JWMF.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.6590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FXDDR8N72HV8JWMF.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "FXDDR8N72HV8JWMF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "FXDDR8N72HV8JWMF.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "FXDDR8N72HV8JWMF.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.6880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FXDDR8N72HV8JWMF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "FXDDR8N72HV8JWMF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "FXDDR8N72HV8JWMF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "FXDDR8N72HV8JWMF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "129984" + }, + "appliesTo" : [ ] + }, + "FXDDR8N72HV8JWMF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "FXDDR8N72HV8JWMF.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FXDDR8N72HV8JWMF.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "FXDDR8N72HV8JWMF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FXDDR8N72HV8JWMF.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "FXDDR8N72HV8JWMF.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "FXDDR8N72HV8JWMF.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "FXDDR8N72HV8JWMF.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "157487" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FXDDR8N72HV8JWMF.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "FXDDR8N72HV8JWMF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "FXDDR8N72HV8JWMF.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "FXDDR8N72HV8JWMF.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "343038" + }, + "appliesTo" : [ ] + }, + "FXDDR8N72HV8JWMF.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "FXDDR8N72HV8JWMF.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FXDDR8N72HV8JWMF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "FXDDR8N72HV8JWMF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "FXDDR8N72HV8JWMF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "FXDDR8N72HV8JWMF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "69871" + }, + "appliesTo" : [ ] + }, + "FXDDR8N72HV8JWMF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "FXDDR8N72HV8JWMF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.9690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FXDDR8N72HV8JWMF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "FXDDR8N72HV8JWMF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "FXDDR8N72HV8JWMF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "FXDDR8N72HV8JWMF.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "FXDDR8N72HV8JWMF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "FXDDR8N72HV8JWMF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "136891" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FXDDR8N72HV8JWMF.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "FXDDR8N72HV8JWMF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "FXDDR8N72HV8JWMF.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "FXDDR8N72HV8JWMF.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.7410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "KGM6Q2CJFMEMKWQN" : { + "KGM6Q2CJFMEMKWQN.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "KGM6Q2CJFMEMKWQN", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "KGM6Q2CJFMEMKWQN.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "KGM6Q2CJFMEMKWQN.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "643" + }, + "appliesTo" : [ ] + }, + "KGM6Q2CJFMEMKWQN.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "KGM6Q2CJFMEMKWQN.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KGM6Q2CJFMEMKWQN.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "KGM6Q2CJFMEMKWQN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KGM6Q2CJFMEMKWQN.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "KGM6Q2CJFMEMKWQN.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "661" + }, + "appliesTo" : [ ] + }, + "KGM6Q2CJFMEMKWQN.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "KGM6Q2CJFMEMKWQN.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KGM6Q2CJFMEMKWQN.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "KGM6Q2CJFMEMKWQN", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "KGM6Q2CJFMEMKWQN.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "KGM6Q2CJFMEMKWQN.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "60" + }, + "appliesTo" : [ ] + }, + "KGM6Q2CJFMEMKWQN.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "KGM6Q2CJFMEMKWQN.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0668000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KGM6Q2CJFMEMKWQN.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "KGM6Q2CJFMEMKWQN", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "KGM6Q2CJFMEMKWQN.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "KGM6Q2CJFMEMKWQN.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0715000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KGM6Q2CJFMEMKWQN.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "KGM6Q2CJFMEMKWQN", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "KGM6Q2CJFMEMKWQN.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "KGM6Q2CJFMEMKWQN.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "KGM6Q2CJFMEMKWQN.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "KGM6Q2CJFMEMKWQN.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1785" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KGM6Q2CJFMEMKWQN.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "KGM6Q2CJFMEMKWQN", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "KGM6Q2CJFMEMKWQN.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "KGM6Q2CJFMEMKWQN.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0744000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KGM6Q2CJFMEMKWQN.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "KGM6Q2CJFMEMKWQN", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "KGM6Q2CJFMEMKWQN.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "KGM6Q2CJFMEMKWQN.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1852" + }, + "appliesTo" : [ ] + }, + "KGM6Q2CJFMEMKWQN.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "KGM6Q2CJFMEMKWQN.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KGM6Q2CJFMEMKWQN.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "KGM6Q2CJFMEMKWQN", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "KGM6Q2CJFMEMKWQN.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "KGM6Q2CJFMEMKWQN.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "140" + }, + "appliesTo" : [ ] + }, + "KGM6Q2CJFMEMKWQN.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "KGM6Q2CJFMEMKWQN.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0653000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KGM6Q2CJFMEMKWQN.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "KGM6Q2CJFMEMKWQN", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "KGM6Q2CJFMEMKWQN.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "KGM6Q2CJFMEMKWQN.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0646000000" + }, + "appliesTo" : [ ] + }, + "KGM6Q2CJFMEMKWQN.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "KGM6Q2CJFMEMKWQN.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "122" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KGM6Q2CJFMEMKWQN.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "KGM6Q2CJFMEMKWQN", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "KGM6Q2CJFMEMKWQN.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "KGM6Q2CJFMEMKWQN.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KGM6Q2CJFMEMKWQN.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "KGM6Q2CJFMEMKWQN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KGM6Q2CJFMEMKWQN.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "KGM6Q2CJFMEMKWQN.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0679000000" + }, + "appliesTo" : [ ] + }, + "KGM6Q2CJFMEMKWQN.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "KGM6Q2CJFMEMKWQN.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "69" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KGM6Q2CJFMEMKWQN.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "KGM6Q2CJFMEMKWQN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KGM6Q2CJFMEMKWQN.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "KGM6Q2CJFMEMKWQN.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0765000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "DAVYF6BBKWXMDDGD" : { + "DAVYF6BBKWXMDDGD.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "DAVYF6BBKWXMDDGD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DAVYF6BBKWXMDDGD.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "DAVYF6BBKWXMDDGD.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.3936000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DAVYF6BBKWXMDDGD.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "DAVYF6BBKWXMDDGD", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "DAVYF6BBKWXMDDGD.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "DAVYF6BBKWXMDDGD.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "154106" + }, + "appliesTo" : [ ] + }, + "DAVYF6BBKWXMDDGD.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "DAVYF6BBKWXMDDGD.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DAVYF6BBKWXMDDGD.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "DAVYF6BBKWXMDDGD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DAVYF6BBKWXMDDGD.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "DAVYF6BBKWXMDDGD.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "92175" + }, + "appliesTo" : [ ] + }, + "DAVYF6BBKWXMDDGD.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "DAVYF6BBKWXMDDGD.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6374000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DAVYF6BBKWXMDDGD.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "DAVYF6BBKWXMDDGD", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "DAVYF6BBKWXMDDGD.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "DAVYF6BBKWXMDDGD.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "74110" + }, + "appliesTo" : [ ] + }, + "DAVYF6BBKWXMDDGD.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "DAVYF6BBKWXMDDGD.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DAVYF6BBKWXMDDGD.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "DAVYF6BBKWXMDDGD", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "DAVYF6BBKWXMDDGD.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "DAVYF6BBKWXMDDGD.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "80154" + }, + "appliesTo" : [ ] + }, + "DAVYF6BBKWXMDDGD.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "DAVYF6BBKWXMDDGD.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DAVYF6BBKWXMDDGD.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "DAVYF6BBKWXMDDGD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DAVYF6BBKWXMDDGD.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "DAVYF6BBKWXMDDGD.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "184080" + }, + "appliesTo" : [ ] + }, + "DAVYF6BBKWXMDDGD.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "DAVYF6BBKWXMDDGD.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DAVYF6BBKWXMDDGD.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "DAVYF6BBKWXMDDGD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DAVYF6BBKWXMDDGD.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "DAVYF6BBKWXMDDGD.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.7061000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DAVYF6BBKWXMDDGD.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "DAVYF6BBKWXMDDGD", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "DAVYF6BBKWXMDDGD.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "DAVYF6BBKWXMDDGD.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.0550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DAVYF6BBKWXMDDGD.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "DAVYF6BBKWXMDDGD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DAVYF6BBKWXMDDGD.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "DAVYF6BBKWXMDDGD.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "42814" + }, + "appliesTo" : [ ] + }, + "DAVYF6BBKWXMDDGD.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "DAVYF6BBKWXMDDGD.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.0174000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DAVYF6BBKWXMDDGD.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "DAVYF6BBKWXMDDGD", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "DAVYF6BBKWXMDDGD.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "DAVYF6BBKWXMDDGD.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.3800000000" + }, + "appliesTo" : [ ] + }, + "DAVYF6BBKWXMDDGD.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "DAVYF6BBKWXMDDGD.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37230" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DAVYF6BBKWXMDDGD.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "DAVYF6BBKWXMDDGD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DAVYF6BBKWXMDDGD.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "DAVYF6BBKWXMDDGD.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.7180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DAVYF6BBKWXMDDGD.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "DAVYF6BBKWXMDDGD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DAVYF6BBKWXMDDGD.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "DAVYF6BBKWXMDDGD.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "85054" + }, + "appliesTo" : [ ] + }, + "DAVYF6BBKWXMDDGD.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "DAVYF6BBKWXMDDGD.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "U9A5GD49U2QWSB8N" : { + "U9A5GD49U2QWSB8N.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "U9A5GD49U2QWSB8N", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "U9A5GD49U2QWSB8N.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "U9A5GD49U2QWSB8N.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "257952" + }, + "appliesTo" : [ ] + }, + "U9A5GD49U2QWSB8N.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "U9A5GD49U2QWSB8N.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "U9A5GD49U2QWSB8N.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "U9A5GD49U2QWSB8N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U9A5GD49U2QWSB8N.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "U9A5GD49U2QWSB8N.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "261303" + }, + "appliesTo" : [ ] + }, + "U9A5GD49U2QWSB8N.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "U9A5GD49U2QWSB8N.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "U9A5GD49U2QWSB8N.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "U9A5GD49U2QWSB8N", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "U9A5GD49U2QWSB8N.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "U9A5GD49U2QWSB8N.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "129199" + }, + "appliesTo" : [ ] + }, + "U9A5GD49U2QWSB8N.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "U9A5GD49U2QWSB8N.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.7490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "U9A5GD49U2QWSB8N.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "U9A5GD49U2QWSB8N", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "U9A5GD49U2QWSB8N.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "U9A5GD49U2QWSB8N.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "379672" + }, + "appliesTo" : [ ] + }, + "U9A5GD49U2QWSB8N.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "U9A5GD49U2QWSB8N.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.4472000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "U9A5GD49U2QWSB8N.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "U9A5GD49U2QWSB8N", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "U9A5GD49U2QWSB8N.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "U9A5GD49U2QWSB8N.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "28.7757000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "U9A5GD49U2QWSB8N.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "U9A5GD49U2QWSB8N", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "U9A5GD49U2QWSB8N.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "U9A5GD49U2QWSB8N.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "758320" + }, + "appliesTo" : [ ] + }, + "U9A5GD49U2QWSB8N.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "U9A5GD49U2QWSB8N.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "U9A5GD49U2QWSB8N.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "U9A5GD49U2QWSB8N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U9A5GD49U2QWSB8N.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "U9A5GD49U2QWSB8N.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "30.0352000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "U9A5GD49U2QWSB8N.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "U9A5GD49U2QWSB8N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U9A5GD49U2QWSB8N.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "U9A5GD49U2QWSB8N.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.9440000000" + }, + "appliesTo" : [ ] + }, + "U9A5GD49U2QWSB8N.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "U9A5GD49U2QWSB8N.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "130909" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "U9A5GD49U2QWSB8N.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "U9A5GD49U2QWSB8N", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "U9A5GD49U2QWSB8N.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "U9A5GD49U2QWSB8N.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "29.6320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "U9A5GD49U2QWSB8N.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "U9A5GD49U2QWSB8N", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "U9A5GD49U2QWSB8N.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "U9A5GD49U2QWSB8N.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "376414" + }, + "appliesTo" : [ ] + }, + "U9A5GD49U2QWSB8N.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "U9A5GD49U2QWSB8N.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.3230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "U9A5GD49U2QWSB8N.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "U9A5GD49U2QWSB8N", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "U9A5GD49U2QWSB8N.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "U9A5GD49U2QWSB8N.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "750143" + }, + "appliesTo" : [ ] + }, + "U9A5GD49U2QWSB8N.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "U9A5GD49U2QWSB8N.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "U9A5GD49U2QWSB8N.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "U9A5GD49U2QWSB8N", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "U9A5GD49U2QWSB8N.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "U9A5GD49U2QWSB8N.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "29.0504000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "VDQX9KJN5DYBTUQJ" : { + "VDQX9KJN5DYBTUQJ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "VDQX9KJN5DYBTUQJ", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "VDQX9KJN5DYBTUQJ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "VDQX9KJN5DYBTUQJ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14594" + }, + "appliesTo" : [ ] + }, + "VDQX9KJN5DYBTUQJ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "VDQX9KJN5DYBTUQJ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VDQX9KJN5DYBTUQJ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "VDQX9KJN5DYBTUQJ", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "VDQX9KJN5DYBTUQJ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "VDQX9KJN5DYBTUQJ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9680" + }, + "appliesTo" : [ ] + }, + "VDQX9KJN5DYBTUQJ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "VDQX9KJN5DYBTUQJ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VDQX9KJN5DYBTUQJ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "VDQX9KJN5DYBTUQJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VDQX9KJN5DYBTUQJ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "VDQX9KJN5DYBTUQJ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27064" + }, + "appliesTo" : [ ] + }, + "VDQX9KJN5DYBTUQJ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "VDQX9KJN5DYBTUQJ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VDQX9KJN5DYBTUQJ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "VDQX9KJN5DYBTUQJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "VDQX9KJN5DYBTUQJ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "VDQX9KJN5DYBTUQJ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VDQX9KJN5DYBTUQJ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "VDQX9KJN5DYBTUQJ", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "VDQX9KJN5DYBTUQJ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "VDQX9KJN5DYBTUQJ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30385" + }, + "appliesTo" : [ ] + }, + "VDQX9KJN5DYBTUQJ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "VDQX9KJN5DYBTUQJ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VDQX9KJN5DYBTUQJ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "VDQX9KJN5DYBTUQJ", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "VDQX9KJN5DYBTUQJ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "VDQX9KJN5DYBTUQJ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VDQX9KJN5DYBTUQJ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "VDQX9KJN5DYBTUQJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VDQX9KJN5DYBTUQJ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "VDQX9KJN5DYBTUQJ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13676" + }, + "appliesTo" : [ ] + }, + "VDQX9KJN5DYBTUQJ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "VDQX9KJN5DYBTUQJ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VDQX9KJN5DYBTUQJ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "VDQX9KJN5DYBTUQJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "VDQX9KJN5DYBTUQJ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "VDQX9KJN5DYBTUQJ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19395" + }, + "appliesTo" : [ ] + }, + "VDQX9KJN5DYBTUQJ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "VDQX9KJN5DYBTUQJ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VDQX9KJN5DYBTUQJ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "VDQX9KJN5DYBTUQJ", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "VDQX9KJN5DYBTUQJ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "VDQX9KJN5DYBTUQJ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "40073" + }, + "appliesTo" : [ ] + }, + "VDQX9KJN5DYBTUQJ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "VDQX9KJN5DYBTUQJ.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VDQX9KJN5DYBTUQJ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "VDQX9KJN5DYBTUQJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "VDQX9KJN5DYBTUQJ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "VDQX9KJN5DYBTUQJ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5450000000" + }, + "appliesTo" : [ ] + }, + "VDQX9KJN5DYBTUQJ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "VDQX9KJN5DYBTUQJ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26573" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VDQX9KJN5DYBTUQJ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "VDQX9KJN5DYBTUQJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VDQX9KJN5DYBTUQJ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "VDQX9KJN5DYBTUQJ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "PNHWQABRRB4TBUYK" : { + "PNHWQABRRB4TBUYK.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "PNHWQABRRB4TBUYK", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "PNHWQABRRB4TBUYK.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "PNHWQABRRB4TBUYK.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8650" + }, + "appliesTo" : [ ] + }, + "PNHWQABRRB4TBUYK.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "PNHWQABRRB4TBUYK.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PNHWQABRRB4TBUYK.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "PNHWQABRRB4TBUYK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PNHWQABRRB4TBUYK.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "PNHWQABRRB4TBUYK.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16711" + }, + "appliesTo" : [ ] + }, + "PNHWQABRRB4TBUYK.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "PNHWQABRRB4TBUYK.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PNHWQABRRB4TBUYK.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "PNHWQABRRB4TBUYK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PNHWQABRRB4TBUYK.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "PNHWQABRRB4TBUYK.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "PNHWQABRRB4TBUYK.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "PNHWQABRRB4TBUYK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PNHWQABRRB4TBUYK.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "PNHWQABRRB4TBUYK.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8435" + }, + "appliesTo" : [ ] + }, + "PNHWQABRRB4TBUYK.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "PNHWQABRRB4TBUYK.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PNHWQABRRB4TBUYK.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "PNHWQABRRB4TBUYK", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "PNHWQABRRB4TBUYK.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "PNHWQABRRB4TBUYK.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "PNHWQABRRB4TBUYK.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "PNHWQABRRB4TBUYK", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "PNHWQABRRB4TBUYK.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "PNHWQABRRB4TBUYK.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37095" + }, + "appliesTo" : [ ] + }, + "PNHWQABRRB4TBUYK.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "PNHWQABRRB4TBUYK.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PNHWQABRRB4TBUYK.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "PNHWQABRRB4TBUYK", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "PNHWQABRRB4TBUYK.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "PNHWQABRRB4TBUYK.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4620000000" + }, + "appliesTo" : [ ] + }, + "PNHWQABRRB4TBUYK.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "PNHWQABRRB4TBUYK.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22658" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PNHWQABRRB4TBUYK.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "PNHWQABRRB4TBUYK", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "PNHWQABRRB4TBUYK.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "PNHWQABRRB4TBUYK.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "PNHWQABRRB4TBUYK.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "PNHWQABRRB4TBUYK", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "PNHWQABRRB4TBUYK.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "PNHWQABRRB4TBUYK.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24593" + }, + "appliesTo" : [ ] + }, + "PNHWQABRRB4TBUYK.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "PNHWQABRRB4TBUYK.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PNHWQABRRB4TBUYK.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "PNHWQABRRB4TBUYK", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "PNHWQABRRB4TBUYK.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "PNHWQABRRB4TBUYK.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13045" + }, + "appliesTo" : [ ] + }, + "PNHWQABRRB4TBUYK.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "PNHWQABRRB4TBUYK.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PNHWQABRRB4TBUYK.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "PNHWQABRRB4TBUYK", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "PNHWQABRRB4TBUYK.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "PNHWQABRRB4TBUYK.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32700" + }, + "appliesTo" : [ ] + }, + "PNHWQABRRB4TBUYK.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "PNHWQABRRB4TBUYK.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "QVZGU743YEW7J8ZP" : { + "QVZGU743YEW7J8ZP.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "QVZGU743YEW7J8ZP", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "QVZGU743YEW7J8ZP.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "QVZGU743YEW7J8ZP.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "70248" + }, + "appliesTo" : [ ] + }, + "QVZGU743YEW7J8ZP.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "QVZGU743YEW7J8ZP.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QVZGU743YEW7J8ZP.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "QVZGU743YEW7J8ZP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QVZGU743YEW7J8ZP.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "QVZGU743YEW7J8ZP.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13178" + }, + "appliesTo" : [ ] + }, + "QVZGU743YEW7J8ZP.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "QVZGU743YEW7J8ZP.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QVZGU743YEW7J8ZP.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "QVZGU743YEW7J8ZP", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "QVZGU743YEW7J8ZP.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "QVZGU743YEW7J8ZP.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QVZGU743YEW7J8ZP.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "QVZGU743YEW7J8ZP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QVZGU743YEW7J8ZP.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "QVZGU743YEW7J8ZP.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QVZGU743YEW7J8ZP.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QVZGU743YEW7J8ZP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QVZGU743YEW7J8ZP.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QVZGU743YEW7J8ZP.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QVZGU743YEW7J8ZP.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QVZGU743YEW7J8ZP.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "56289" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QVZGU743YEW7J8ZP.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "QVZGU743YEW7J8ZP", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "QVZGU743YEW7J8ZP.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "QVZGU743YEW7J8ZP.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27949" + }, + "appliesTo" : [ ] + }, + "QVZGU743YEW7J8ZP.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "QVZGU743YEW7J8ZP.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QVZGU743YEW7J8ZP.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QVZGU743YEW7J8ZP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QVZGU743YEW7J8ZP.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QVZGU743YEW7J8ZP.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23949" + }, + "appliesTo" : [ ] + }, + "QVZGU743YEW7J8ZP.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QVZGU743YEW7J8ZP.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QVZGU743YEW7J8ZP.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QVZGU743YEW7J8ZP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QVZGU743YEW7J8ZP.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QVZGU743YEW7J8ZP.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24787" + }, + "appliesTo" : [ ] + }, + "QVZGU743YEW7J8ZP.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QVZGU743YEW7J8ZP.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QVZGU743YEW7J8ZP.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "QVZGU743YEW7J8ZP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QVZGU743YEW7J8ZP.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "QVZGU743YEW7J8ZP.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26034" + }, + "appliesTo" : [ ] + }, + "QVZGU743YEW7J8ZP.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "QVZGU743YEW7J8ZP.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QVZGU743YEW7J8ZP.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QVZGU743YEW7J8ZP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QVZGU743YEW7J8ZP.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QVZGU743YEW7J8ZP.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QVZGU743YEW7J8ZP.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QVZGU743YEW7J8ZP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QVZGU743YEW7J8ZP.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QVZGU743YEW7J8ZP.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10117" + }, + "appliesTo" : [ ] + }, + "QVZGU743YEW7J8ZP.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QVZGU743YEW7J8ZP.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "TJCB42XUUBBP8KKF" : { + "TJCB42XUUBBP8KKF.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "TJCB42XUUBBP8KKF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TJCB42XUUBBP8KKF.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "TJCB42XUUBBP8KKF.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12895" + }, + "appliesTo" : [ ] + }, + "TJCB42XUUBBP8KKF.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "TJCB42XUUBBP8KKF.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TJCB42XUUBBP8KKF.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "TJCB42XUUBBP8KKF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TJCB42XUUBBP8KKF.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "TJCB42XUUBBP8KKF.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0912000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TJCB42XUUBBP8KKF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TJCB42XUUBBP8KKF", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "TJCB42XUUBBP8KKF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TJCB42XUUBBP8KKF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11185" + }, + "appliesTo" : [ ] + }, + "TJCB42XUUBBP8KKF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TJCB42XUUBBP8KKF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TJCB42XUUBBP8KKF.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TJCB42XUUBBP8KKF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TJCB42XUUBBP8KKF.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TJCB42XUUBBP8KKF.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TJCB42XUUBBP8KKF.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "TJCB42XUUBBP8KKF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TJCB42XUUBBP8KKF.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "TJCB42XUUBBP8KKF.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "50231" + }, + "appliesTo" : [ ] + }, + "TJCB42XUUBBP8KKF.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "TJCB42XUUBBP8KKF.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TJCB42XUUBBP8KKF.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "TJCB42XUUBBP8KKF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TJCB42XUUBBP8KKF.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "TJCB42XUUBBP8KKF.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25273" + }, + "appliesTo" : [ ] + }, + "TJCB42XUUBBP8KKF.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "TJCB42XUUBBP8KKF.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TJCB42XUUBBP8KKF.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "TJCB42XUUBBP8KKF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TJCB42XUUBBP8KKF.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "TJCB42XUUBBP8KKF.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25628" + }, + "appliesTo" : [ ] + }, + "TJCB42XUUBBP8KKF.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "TJCB42XUUBBP8KKF.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9752000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TJCB42XUUBBP8KKF.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "TJCB42XUUBBP8KKF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TJCB42XUUBBP8KKF.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "TJCB42XUUBBP8KKF.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1064000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TJCB42XUUBBP8KKF.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "TJCB42XUUBBP8KKF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TJCB42XUUBBP8KKF.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "TJCB42XUUBBP8KKF.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8317000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TJCB42XUUBBP8KKF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TJCB42XUUBBP8KKF", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "TJCB42XUUBBP8KKF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TJCB42XUUBBP8KKF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "42055" + }, + "appliesTo" : [ ] + }, + "TJCB42XUUBBP8KKF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TJCB42XUUBBP8KKF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TJCB42XUUBBP8KKF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TJCB42XUUBBP8KKF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TJCB42XUUBBP8KKF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TJCB42XUUBBP8KKF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21922" + }, + "appliesTo" : [ ] + }, + "TJCB42XUUBBP8KKF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TJCB42XUUBBP8KKF.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TJCB42XUUBBP8KKF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TJCB42XUUBBP8KKF", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "TJCB42XUUBBP8KKF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TJCB42XUUBBP8KKF.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8510000000" + }, + "appliesTo" : [ ] + }, + "TJCB42XUUBBP8KKF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TJCB42XUUBBP8KKF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22370" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "4TE6EMDQEPCBNFAE" : { + "4TE6EMDQEPCBNFAE.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "4TE6EMDQEPCBNFAE", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "4TE6EMDQEPCBNFAE.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "4TE6EMDQEPCBNFAE.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12980" + }, + "appliesTo" : [ ] + }, + "4TE6EMDQEPCBNFAE.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "4TE6EMDQEPCBNFAE.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4TE6EMDQEPCBNFAE.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "4TE6EMDQEPCBNFAE", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "4TE6EMDQEPCBNFAE.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "4TE6EMDQEPCBNFAE.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6810000000" + }, + "appliesTo" : [ ] + }, + "4TE6EMDQEPCBNFAE.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "4TE6EMDQEPCBNFAE.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7280" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4TE6EMDQEPCBNFAE.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "4TE6EMDQEPCBNFAE", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "4TE6EMDQEPCBNFAE.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "4TE6EMDQEPCBNFAE.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "4TE6EMDQEPCBNFAE.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "4TE6EMDQEPCBNFAE", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "4TE6EMDQEPCBNFAE.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "4TE6EMDQEPCBNFAE.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "4TE6EMDQEPCBNFAE.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "4TE6EMDQEPCBNFAE", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "4TE6EMDQEPCBNFAE.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "4TE6EMDQEPCBNFAE.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10960" + }, + "appliesTo" : [ ] + }, + "4TE6EMDQEPCBNFAE.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "4TE6EMDQEPCBNFAE.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4TE6EMDQEPCBNFAE.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "4TE6EMDQEPCBNFAE", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "4TE6EMDQEPCBNFAE.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "4TE6EMDQEPCBNFAE.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35201" + }, + "appliesTo" : [ ] + }, + "4TE6EMDQEPCBNFAE.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "4TE6EMDQEPCBNFAE.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4TE6EMDQEPCBNFAE.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "4TE6EMDQEPCBNFAE", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "4TE6EMDQEPCBNFAE.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "4TE6EMDQEPCBNFAE.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23691" + }, + "appliesTo" : [ ] + }, + "4TE6EMDQEPCBNFAE.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "4TE6EMDQEPCBNFAE.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4TE6EMDQEPCBNFAE.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "4TE6EMDQEPCBNFAE", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "4TE6EMDQEPCBNFAE.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "4TE6EMDQEPCBNFAE.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6190000000" + }, + "appliesTo" : [ ] + }, + "4TE6EMDQEPCBNFAE.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "4TE6EMDQEPCBNFAE.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19656" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4TE6EMDQEPCBNFAE.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "4TE6EMDQEPCBNFAE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4TE6EMDQEPCBNFAE.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "4TE6EMDQEPCBNFAE.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15466" + }, + "appliesTo" : [ ] + }, + "4TE6EMDQEPCBNFAE.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "4TE6EMDQEPCBNFAE.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4TE6EMDQEPCBNFAE.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "4TE6EMDQEPCBNFAE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4TE6EMDQEPCBNFAE.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "4TE6EMDQEPCBNFAE.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7310" + }, + "appliesTo" : [ ] + }, + "4TE6EMDQEPCBNFAE.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "4TE6EMDQEPCBNFAE.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4TE6EMDQEPCBNFAE.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "4TE6EMDQEPCBNFAE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4TE6EMDQEPCBNFAE.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "4TE6EMDQEPCBNFAE.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "QA82VPGUZGU7KXVD" : { + "QA82VPGUZGU7KXVD.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "QA82VPGUZGU7KXVD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QA82VPGUZGU7KXVD.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "QA82VPGUZGU7KXVD.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9424" + }, + "appliesTo" : [ ] + }, + "QA82VPGUZGU7KXVD.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "QA82VPGUZGU7KXVD.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QA82VPGUZGU7KXVD.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QA82VPGUZGU7KXVD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QA82VPGUZGU7KXVD.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QA82VPGUZGU7KXVD.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QA82VPGUZGU7KXVD.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "QA82VPGUZGU7KXVD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QA82VPGUZGU7KXVD.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "QA82VPGUZGU7KXVD.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QA82VPGUZGU7KXVD.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QA82VPGUZGU7KXVD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QA82VPGUZGU7KXVD.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QA82VPGUZGU7KXVD.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15953" + }, + "appliesTo" : [ ] + }, + "QA82VPGUZGU7KXVD.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QA82VPGUZGU7KXVD.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QA82VPGUZGU7KXVD.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QA82VPGUZGU7KXVD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QA82VPGUZGU7KXVD.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QA82VPGUZGU7KXVD.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30024" + }, + "appliesTo" : [ ] + }, + "QA82VPGUZGU7KXVD.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QA82VPGUZGU7KXVD.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QA82VPGUZGU7KXVD.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "QA82VPGUZGU7KXVD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QA82VPGUZGU7KXVD.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "QA82VPGUZGU7KXVD.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6970000000" + }, + "appliesTo" : [ ] + }, + "QA82VPGUZGU7KXVD.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "QA82VPGUZGU7KXVD.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18325" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QA82VPGUZGU7KXVD.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QA82VPGUZGU7KXVD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QA82VPGUZGU7KXVD.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QA82VPGUZGU7KXVD.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16052" + }, + "appliesTo" : [ ] + }, + "QA82VPGUZGU7KXVD.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QA82VPGUZGU7KXVD.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QA82VPGUZGU7KXVD.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "QA82VPGUZGU7KXVD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QA82VPGUZGU7KXVD.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "QA82VPGUZGU7KXVD.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QA82VPGUZGU7KXVD.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "QA82VPGUZGU7KXVD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QA82VPGUZGU7KXVD.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "QA82VPGUZGU7KXVD.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35921" + }, + "appliesTo" : [ ] + }, + "QA82VPGUZGU7KXVD.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "QA82VPGUZGU7KXVD.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QA82VPGUZGU7KXVD.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QA82VPGUZGU7KXVD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QA82VPGUZGU7KXVD.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QA82VPGUZGU7KXVD.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8218" + }, + "appliesTo" : [ ] + }, + "QA82VPGUZGU7KXVD.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QA82VPGUZGU7KXVD.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QA82VPGUZGU7KXVD.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "QA82VPGUZGU7KXVD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QA82VPGUZGU7KXVD.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "QA82VPGUZGU7KXVD.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QA82VPGUZGU7KXVD.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "QA82VPGUZGU7KXVD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QA82VPGUZGU7KXVD.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "QA82VPGUZGU7KXVD.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QA82VPGUZGU7KXVD.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "QA82VPGUZGU7KXVD.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18416" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "QQXUWBKQH3U8F6KT" : { + "QQXUWBKQH3U8F6KT.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QQXUWBKQH3U8F6KT", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "QQXUWBKQH3U8F6KT.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QQXUWBKQH3U8F6KT.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QQXUWBKQH3U8F6KT.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QQXUWBKQH3U8F6KT.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2068" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QQXUWBKQH3U8F6KT.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QQXUWBKQH3U8F6KT", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "QQXUWBKQH3U8F6KT.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QQXUWBKQH3U8F6KT.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "649" + }, + "appliesTo" : [ ] + }, + "QQXUWBKQH3U8F6KT.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QQXUWBKQH3U8F6KT.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QQXUWBKQH3U8F6KT.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QQXUWBKQH3U8F6KT", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "QQXUWBKQH3U8F6KT.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QQXUWBKQH3U8F6KT.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QQXUWBKQH3U8F6KT.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QQXUWBKQH3U8F6KT", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "QQXUWBKQH3U8F6KT.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QQXUWBKQH3U8F6KT.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QQXUWBKQH3U8F6KT.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QQXUWBKQH3U8F6KT.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1082" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QQXUWBKQH3U8F6KT.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QQXUWBKQH3U8F6KT", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QQXUWBKQH3U8F6KT.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QQXUWBKQH3U8F6KT.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1071" + }, + "appliesTo" : [ ] + }, + "QQXUWBKQH3U8F6KT.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QQXUWBKQH3U8F6KT.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "TSDEZUXYZHBDK9YE" : { + "TSDEZUXYZHBDK9YE.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TSDEZUXYZHBDK9YE", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "TSDEZUXYZHBDK9YE.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TSDEZUXYZHBDK9YE.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "134464" + }, + "appliesTo" : [ ] + }, + "TSDEZUXYZHBDK9YE.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TSDEZUXYZHBDK9YE.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TSDEZUXYZHBDK9YE.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TSDEZUXYZHBDK9YE", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "TSDEZUXYZHBDK9YE.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TSDEZUXYZHBDK9YE.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "68604" + }, + "appliesTo" : [ ] + }, + "TSDEZUXYZHBDK9YE.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TSDEZUXYZHBDK9YE.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.8320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TSDEZUXYZHBDK9YE.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TSDEZUXYZHBDK9YE", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "TSDEZUXYZHBDK9YE.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TSDEZUXYZHBDK9YE.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "196232" + }, + "appliesTo" : [ ] + }, + "TSDEZUXYZHBDK9YE.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TSDEZUXYZHBDK9YE.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TSDEZUXYZHBDK9YE.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TSDEZUXYZHBDK9YE", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "TSDEZUXYZHBDK9YE.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TSDEZUXYZHBDK9YE.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "104379" + }, + "appliesTo" : [ ] + }, + "TSDEZUXYZHBDK9YE.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TSDEZUXYZHBDK9YE.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TSDEZUXYZHBDK9YE.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TSDEZUXYZHBDK9YE", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "TSDEZUXYZHBDK9YE.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TSDEZUXYZHBDK9YE.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.4460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TSDEZUXYZHBDK9YE.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "TSDEZUXYZHBDK9YE", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "TSDEZUXYZHBDK9YE.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "TSDEZUXYZHBDK9YE.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.5790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "MD88Y4BYY57EECUZ" : { + "MD88Y4BYY57EECUZ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "MD88Y4BYY57EECUZ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MD88Y4BYY57EECUZ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "MD88Y4BYY57EECUZ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15014" + }, + "appliesTo" : [ ] + }, + "MD88Y4BYY57EECUZ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "MD88Y4BYY57EECUZ.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MD88Y4BYY57EECUZ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "MD88Y4BYY57EECUZ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MD88Y4BYY57EECUZ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "MD88Y4BYY57EECUZ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MD88Y4BYY57EECUZ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "MD88Y4BYY57EECUZ", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "MD88Y4BYY57EECUZ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "MD88Y4BYY57EECUZ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13050" + }, + "appliesTo" : [ ] + }, + "MD88Y4BYY57EECUZ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "MD88Y4BYY57EECUZ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MD88Y4BYY57EECUZ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "MD88Y4BYY57EECUZ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MD88Y4BYY57EECUZ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "MD88Y4BYY57EECUZ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MD88Y4BYY57EECUZ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "MD88Y4BYY57EECUZ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MD88Y4BYY57EECUZ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "MD88Y4BYY57EECUZ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MD88Y4BYY57EECUZ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "MD88Y4BYY57EECUZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MD88Y4BYY57EECUZ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "MD88Y4BYY57EECUZ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5830" + }, + "appliesTo" : [ ] + }, + "MD88Y4BYY57EECUZ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "MD88Y4BYY57EECUZ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MD88Y4BYY57EECUZ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "MD88Y4BYY57EECUZ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "MD88Y4BYY57EECUZ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "MD88Y4BYY57EECUZ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2777" + }, + "appliesTo" : [ ] + }, + "MD88Y4BYY57EECUZ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "MD88Y4BYY57EECUZ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MD88Y4BYY57EECUZ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "MD88Y4BYY57EECUZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MD88Y4BYY57EECUZ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "MD88Y4BYY57EECUZ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MD88Y4BYY57EECUZ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "MD88Y4BYY57EECUZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MD88Y4BYY57EECUZ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "MD88Y4BYY57EECUZ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2942" + }, + "appliesTo" : [ ] + }, + "MD88Y4BYY57EECUZ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "MD88Y4BYY57EECUZ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MD88Y4BYY57EECUZ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "MD88Y4BYY57EECUZ", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "MD88Y4BYY57EECUZ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "MD88Y4BYY57EECUZ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5510" + }, + "appliesTo" : [ ] + }, + "MD88Y4BYY57EECUZ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "MD88Y4BYY57EECUZ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MD88Y4BYY57EECUZ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "MD88Y4BYY57EECUZ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MD88Y4BYY57EECUZ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "MD88Y4BYY57EECUZ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7562" + }, + "appliesTo" : [ ] + }, + "MD88Y4BYY57EECUZ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "MD88Y4BYY57EECUZ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MD88Y4BYY57EECUZ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "MD88Y4BYY57EECUZ", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "MD88Y4BYY57EECUZ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "MD88Y4BYY57EECUZ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6945" + }, + "appliesTo" : [ ] + }, + "MD88Y4BYY57EECUZ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "MD88Y4BYY57EECUZ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "NWRPWAZ545BCP5YE" : { + "NWRPWAZ545BCP5YE.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "NWRPWAZ545BCP5YE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NWRPWAZ545BCP5YE.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "NWRPWAZ545BCP5YE.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29084" + }, + "appliesTo" : [ ] + }, + "NWRPWAZ545BCP5YE.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "NWRPWAZ545BCP5YE.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "NWRPWAZ545BCP5YE.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "NWRPWAZ545BCP5YE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NWRPWAZ545BCP5YE.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "NWRPWAZ545BCP5YE.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.4570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "NWRPWAZ545BCP5YE.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "NWRPWAZ545BCP5YE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NWRPWAZ545BCP5YE.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "NWRPWAZ545BCP5YE.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.7460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "NWRPWAZ545BCP5YE.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "NWRPWAZ545BCP5YE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NWRPWAZ545BCP5YE.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "NWRPWAZ545BCP5YE.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.8110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "NWRPWAZ545BCP5YE.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "NWRPWAZ545BCP5YE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NWRPWAZ545BCP5YE.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "NWRPWAZ545BCP5YE.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "NWRPWAZ545BCP5YE.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "NWRPWAZ545BCP5YE.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "57798" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "NWRPWAZ545BCP5YE.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "NWRPWAZ545BCP5YE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NWRPWAZ545BCP5YE.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "NWRPWAZ545BCP5YE.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "154244" + }, + "appliesTo" : [ ] + }, + "NWRPWAZ545BCP5YE.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "NWRPWAZ545BCP5YE.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "NWRPWAZ545BCP5YE.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "NWRPWAZ545BCP5YE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NWRPWAZ545BCP5YE.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "NWRPWAZ545BCP5YE.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27878" + }, + "appliesTo" : [ ] + }, + "NWRPWAZ545BCP5YE.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "NWRPWAZ545BCP5YE.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "NWRPWAZ545BCP5YE.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "NWRPWAZ545BCP5YE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NWRPWAZ545BCP5YE.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "NWRPWAZ545BCP5YE.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "55434" + }, + "appliesTo" : [ ] + }, + "NWRPWAZ545BCP5YE.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "NWRPWAZ545BCP5YE.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "NWRPWAZ545BCP5YE.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "NWRPWAZ545BCP5YE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NWRPWAZ545BCP5YE.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "NWRPWAZ545BCP5YE.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "77482" + }, + "appliesTo" : [ ] + }, + "NWRPWAZ545BCP5YE.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "NWRPWAZ545BCP5YE.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "NWRPWAZ545BCP5YE.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "NWRPWAZ545BCP5YE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NWRPWAZ545BCP5YE.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "NWRPWAZ545BCP5YE.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "148346" + }, + "appliesTo" : [ ] + }, + "NWRPWAZ545BCP5YE.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "NWRPWAZ545BCP5YE.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "NWRPWAZ545BCP5YE.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "NWRPWAZ545BCP5YE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NWRPWAZ545BCP5YE.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "NWRPWAZ545BCP5YE.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.0060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "NWRPWAZ545BCP5YE.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "NWRPWAZ545BCP5YE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NWRPWAZ545BCP5YE.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "NWRPWAZ545BCP5YE.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8580000000" + }, + "appliesTo" : [ ] + }, + "NWRPWAZ545BCP5YE.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "NWRPWAZ545BCP5YE.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "75109" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "44BFC6CSKFS3KEJP" : { + "44BFC6CSKFS3KEJP.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "44BFC6CSKFS3KEJP", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "44BFC6CSKFS3KEJP.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "44BFC6CSKFS3KEJP.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3553" + }, + "appliesTo" : [ ] + }, + "44BFC6CSKFS3KEJP.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "44BFC6CSKFS3KEJP.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "44BFC6CSKFS3KEJP.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "44BFC6CSKFS3KEJP", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "44BFC6CSKFS3KEJP.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "44BFC6CSKFS3KEJP.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6964" + }, + "appliesTo" : [ ] + }, + "44BFC6CSKFS3KEJP.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "44BFC6CSKFS3KEJP.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "44BFC6CSKFS3KEJP.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "44BFC6CSKFS3KEJP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "44BFC6CSKFS3KEJP.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "44BFC6CSKFS3KEJP.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "44BFC6CSKFS3KEJP.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "44BFC6CSKFS3KEJP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "44BFC6CSKFS3KEJP.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "44BFC6CSKFS3KEJP.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "44BFC6CSKFS3KEJP.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "44BFC6CSKFS3KEJP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "44BFC6CSKFS3KEJP.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "44BFC6CSKFS3KEJP.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8056" + }, + "appliesTo" : [ ] + }, + "44BFC6CSKFS3KEJP.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "44BFC6CSKFS3KEJP.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "44BFC6CSKFS3KEJP.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "44BFC6CSKFS3KEJP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "44BFC6CSKFS3KEJP.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "44BFC6CSKFS3KEJP.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16586" + }, + "appliesTo" : [ ] + }, + "44BFC6CSKFS3KEJP.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "44BFC6CSKFS3KEJP.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "44BFC6CSKFS3KEJP.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "44BFC6CSKFS3KEJP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "44BFC6CSKFS3KEJP.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "44BFC6CSKFS3KEJP.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4110" + }, + "appliesTo" : [ ] + }, + "44BFC6CSKFS3KEJP.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "44BFC6CSKFS3KEJP.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "44BFC6CSKFS3KEJP.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "44BFC6CSKFS3KEJP", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "44BFC6CSKFS3KEJP.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "44BFC6CSKFS3KEJP.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7379" + }, + "appliesTo" : [ ] + }, + "44BFC6CSKFS3KEJP.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "44BFC6CSKFS3KEJP.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "44BFC6CSKFS3KEJP.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "44BFC6CSKFS3KEJP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "44BFC6CSKFS3KEJP.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "44BFC6CSKFS3KEJP.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "44BFC6CSKFS3KEJP.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "44BFC6CSKFS3KEJP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "44BFC6CSKFS3KEJP.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "44BFC6CSKFS3KEJP.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8462" + }, + "appliesTo" : [ ] + }, + "44BFC6CSKFS3KEJP.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "44BFC6CSKFS3KEJP.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "44BFC6CSKFS3KEJP.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "44BFC6CSKFS3KEJP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "44BFC6CSKFS3KEJP.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "44BFC6CSKFS3KEJP.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "44BFC6CSKFS3KEJP.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "44BFC6CSKFS3KEJP", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "44BFC6CSKFS3KEJP.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "44BFC6CSKFS3KEJP.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13834" + }, + "appliesTo" : [ ] + }, + "44BFC6CSKFS3KEJP.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "44BFC6CSKFS3KEJP.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "ZKNV3YNZ7ETKWSWB" : { + "ZKNV3YNZ7ETKWSWB.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ZKNV3YNZ7ETKWSWB", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "ZKNV3YNZ7ETKWSWB.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ZKNV3YNZ7ETKWSWB.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "715" + }, + "appliesTo" : [ ] + }, + "ZKNV3YNZ7ETKWSWB.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ZKNV3YNZ7ETKWSWB.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZKNV3YNZ7ETKWSWB.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ZKNV3YNZ7ETKWSWB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZKNV3YNZ7ETKWSWB.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ZKNV3YNZ7ETKWSWB.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "398" + }, + "appliesTo" : [ ] + }, + "ZKNV3YNZ7ETKWSWB.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ZKNV3YNZ7ETKWSWB.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0455000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZKNV3YNZ7ETKWSWB.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ZKNV3YNZ7ETKWSWB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZKNV3YNZ7ETKWSWB.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ZKNV3YNZ7ETKWSWB.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0941000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZKNV3YNZ7ETKWSWB.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ZKNV3YNZ7ETKWSWB", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "ZKNV3YNZ7ETKWSWB.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ZKNV3YNZ7ETKWSWB.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "929" + }, + "appliesTo" : [ ] + }, + "ZKNV3YNZ7ETKWSWB.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ZKNV3YNZ7ETKWSWB.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0353000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZKNV3YNZ7ETKWSWB.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ZKNV3YNZ7ETKWSWB", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "ZKNV3YNZ7ETKWSWB.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ZKNV3YNZ7ETKWSWB.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "856" + }, + "appliesTo" : [ ] + }, + "ZKNV3YNZ7ETKWSWB.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ZKNV3YNZ7ETKWSWB.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0326000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZKNV3YNZ7ETKWSWB.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ZKNV3YNZ7ETKWSWB", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "ZKNV3YNZ7ETKWSWB.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ZKNV3YNZ7ETKWSWB.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1835" + }, + "appliesTo" : [ ] + }, + "ZKNV3YNZ7ETKWSWB.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ZKNV3YNZ7ETKWSWB.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZKNV3YNZ7ETKWSWB.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ZKNV3YNZ7ETKWSWB", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "ZKNV3YNZ7ETKWSWB.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ZKNV3YNZ7ETKWSWB.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0741000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZKNV3YNZ7ETKWSWB.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "ZKNV3YNZ7ETKWSWB", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "ZKNV3YNZ7ETKWSWB.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "ZKNV3YNZ7ETKWSWB.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0681000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZKNV3YNZ7ETKWSWB.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ZKNV3YNZ7ETKWSWB", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "ZKNV3YNZ7ETKWSWB.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ZKNV3YNZ7ETKWSWB.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1653" + }, + "appliesTo" : [ ] + }, + "ZKNV3YNZ7ETKWSWB.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ZKNV3YNZ7ETKWSWB.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZKNV3YNZ7ETKWSWB.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ZKNV3YNZ7ETKWSWB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZKNV3YNZ7ETKWSWB.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ZKNV3YNZ7ETKWSWB.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ZKNV3YNZ7ETKWSWB.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ZKNV3YNZ7ETKWSWB.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "786" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZKNV3YNZ7ETKWSWB.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ZKNV3YNZ7ETKWSWB", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "ZKNV3YNZ7ETKWSWB.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ZKNV3YNZ7ETKWSWB.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "362" + }, + "appliesTo" : [ ] + }, + "ZKNV3YNZ7ETKWSWB.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ZKNV3YNZ7ETKWSWB.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0414000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZKNV3YNZ7ETKWSWB.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ZKNV3YNZ7ETKWSWB", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "ZKNV3YNZ7ETKWSWB.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ZKNV3YNZ7ETKWSWB.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0855000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "3RUU5T58T7XAFAAF" : { + "3RUU5T58T7XAFAAF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "3RUU5T58T7XAFAAF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3RUU5T58T7XAFAAF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "3RUU5T58T7XAFAAF.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4900000000" + }, + "appliesTo" : [ ] + }, + "3RUU5T58T7XAFAAF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "3RUU5T58T7XAFAAF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10880" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3RUU5T58T7XAFAAF.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "3RUU5T58T7XAFAAF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3RUU5T58T7XAFAAF.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "3RUU5T58T7XAFAAF.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3RUU5T58T7XAFAAF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "3RUU5T58T7XAFAAF", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "3RUU5T58T7XAFAAF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "3RUU5T58T7XAFAAF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7220" + }, + "appliesTo" : [ ] + }, + "3RUU5T58T7XAFAAF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "3RUU5T58T7XAFAAF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3RUU5T58T7XAFAAF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "3RUU5T58T7XAFAAF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3RUU5T58T7XAFAAF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "3RUU5T58T7XAFAAF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "3RUU5T58T7XAFAAF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "3RUU5T58T7XAFAAF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22331" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3RUU5T58T7XAFAAF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "3RUU5T58T7XAFAAF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3RUU5T58T7XAFAAF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "3RUU5T58T7XAFAAF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12398" + }, + "appliesTo" : [ ] + }, + "3RUU5T58T7XAFAAF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "3RUU5T58T7XAFAAF.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "MSN4QHE8TBV8XBD2" : { + "MSN4QHE8TBV8XBD2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "MSN4QHE8TBV8XBD2", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "MSN4QHE8TBV8XBD2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "MSN4QHE8TBV8XBD2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2404" + }, + "appliesTo" : [ ] + }, + "MSN4QHE8TBV8XBD2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "MSN4QHE8TBV8XBD2.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MSN4QHE8TBV8XBD2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "MSN4QHE8TBV8XBD2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MSN4QHE8TBV8XBD2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "MSN4QHE8TBV8XBD2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1086" + }, + "appliesTo" : [ ] + }, + "MSN4QHE8TBV8XBD2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "MSN4QHE8TBV8XBD2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MSN4QHE8TBV8XBD2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "MSN4QHE8TBV8XBD2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MSN4QHE8TBV8XBD2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "MSN4QHE8TBV8XBD2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "MSN4QHE8TBV8XBD2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "MSN4QHE8TBV8XBD2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5002" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MSN4QHE8TBV8XBD2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "MSN4QHE8TBV8XBD2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MSN4QHE8TBV8XBD2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "MSN4QHE8TBV8XBD2.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MSN4QHE8TBV8XBD2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "MSN4QHE8TBV8XBD2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MSN4QHE8TBV8XBD2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "MSN4QHE8TBV8XBD2.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1400000000" + }, + "appliesTo" : [ ] + }, + "MSN4QHE8TBV8XBD2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "MSN4QHE8TBV8XBD2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1651" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "BQ5EKEX4RRBCH5MY" : { + "BQ5EKEX4RRBCH5MY.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "BQ5EKEX4RRBCH5MY", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BQ5EKEX4RRBCH5MY.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "BQ5EKEX4RRBCH5MY.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BQ5EKEX4RRBCH5MY.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "BQ5EKEX4RRBCH5MY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BQ5EKEX4RRBCH5MY.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "BQ5EKEX4RRBCH5MY.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3100000000" + }, + "appliesTo" : [ ] + }, + "BQ5EKEX4RRBCH5MY.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "BQ5EKEX4RRBCH5MY.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2717" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BQ5EKEX4RRBCH5MY.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "BQ5EKEX4RRBCH5MY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BQ5EKEX4RRBCH5MY.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "BQ5EKEX4RRBCH5MY.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BQ5EKEX4RRBCH5MY.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "BQ5EKEX4RRBCH5MY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BQ5EKEX4RRBCH5MY.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "BQ5EKEX4RRBCH5MY.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5358" + }, + "appliesTo" : [ ] + }, + "BQ5EKEX4RRBCH5MY.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "BQ5EKEX4RRBCH5MY.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BQ5EKEX4RRBCH5MY.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "BQ5EKEX4RRBCH5MY", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BQ5EKEX4RRBCH5MY.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "BQ5EKEX4RRBCH5MY.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10465" + }, + "appliesTo" : [ ] + }, + "BQ5EKEX4RRBCH5MY.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "BQ5EKEX4RRBCH5MY.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BQ5EKEX4RRBCH5MY.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "BQ5EKEX4RRBCH5MY", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BQ5EKEX4RRBCH5MY.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "BQ5EKEX4RRBCH5MY.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1945" + }, + "appliesTo" : [ ] + }, + "BQ5EKEX4RRBCH5MY.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "BQ5EKEX4RRBCH5MY.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BQ5EKEX4RRBCH5MY.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "BQ5EKEX4RRBCH5MY", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BQ5EKEX4RRBCH5MY.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "BQ5EKEX4RRBCH5MY.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5338" + }, + "appliesTo" : [ ] + }, + "BQ5EKEX4RRBCH5MY.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "BQ5EKEX4RRBCH5MY.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BQ5EKEX4RRBCH5MY.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "BQ5EKEX4RRBCH5MY", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BQ5EKEX4RRBCH5MY.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "BQ5EKEX4RRBCH5MY.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BQ5EKEX4RRBCH5MY.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "BQ5EKEX4RRBCH5MY", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BQ5EKEX4RRBCH5MY.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "BQ5EKEX4RRBCH5MY.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1490000000" + }, + "appliesTo" : [ ] + }, + "BQ5EKEX4RRBCH5MY.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "BQ5EKEX4RRBCH5MY.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3912" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BQ5EKEX4RRBCH5MY.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "BQ5EKEX4RRBCH5MY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "BQ5EKEX4RRBCH5MY.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "BQ5EKEX4RRBCH5MY.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "BQ5EKEX4RRBCH5MY.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "BQ5EKEX4RRBCH5MY.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3813" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BQ5EKEX4RRBCH5MY.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "BQ5EKEX4RRBCH5MY", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BQ5EKEX4RRBCH5MY.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "BQ5EKEX4RRBCH5MY.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "BQ5EKEX4RRBCH5MY.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "BQ5EKEX4RRBCH5MY.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7354" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "QBBBEFQPVEBWTH4F" : { + "QBBBEFQPVEBWTH4F.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "QBBBEFQPVEBWTH4F", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "QBBBEFQPVEBWTH4F.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "QBBBEFQPVEBWTH4F.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QBBBEFQPVEBWTH4F.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QBBBEFQPVEBWTH4F", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QBBBEFQPVEBWTH4F.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QBBBEFQPVEBWTH4F.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12586" + }, + "appliesTo" : [ ] + }, + "QBBBEFQPVEBWTH4F.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QBBBEFQPVEBWTH4F.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QBBBEFQPVEBWTH4F.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QBBBEFQPVEBWTH4F", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QBBBEFQPVEBWTH4F.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QBBBEFQPVEBWTH4F.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5480" + }, + "appliesTo" : [ ] + }, + "QBBBEFQPVEBWTH4F.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QBBBEFQPVEBWTH4F.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QBBBEFQPVEBWTH4F.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "QBBBEFQPVEBWTH4F", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "QBBBEFQPVEBWTH4F.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "QBBBEFQPVEBWTH4F.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18385" + }, + "appliesTo" : [ ] + }, + "QBBBEFQPVEBWTH4F.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "QBBBEFQPVEBWTH4F.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QBBBEFQPVEBWTH4F.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "QBBBEFQPVEBWTH4F", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "QBBBEFQPVEBWTH4F.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "QBBBEFQPVEBWTH4F.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9828" + }, + "appliesTo" : [ ] + }, + "QBBBEFQPVEBWTH4F.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "QBBBEFQPVEBWTH4F.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QBBBEFQPVEBWTH4F.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "QBBBEFQPVEBWTH4F", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QBBBEFQPVEBWTH4F.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "QBBBEFQPVEBWTH4F.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QBBBEFQPVEBWTH4F.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "QBBBEFQPVEBWTH4F.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8302" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QBBBEFQPVEBWTH4F.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "QBBBEFQPVEBWTH4F", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QBBBEFQPVEBWTH4F.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "QBBBEFQPVEBWTH4F.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5470000000" + }, + "appliesTo" : [ ] + }, + "QBBBEFQPVEBWTH4F.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "QBBBEFQPVEBWTH4F.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3655" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QBBBEFQPVEBWTH4F.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "QBBBEFQPVEBWTH4F", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QBBBEFQPVEBWTH4F.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "QBBBEFQPVEBWTH4F.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QBBBEFQPVEBWTH4F.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QBBBEFQPVEBWTH4F", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QBBBEFQPVEBWTH4F.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QBBBEFQPVEBWTH4F.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QBBBEFQPVEBWTH4F.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QBBBEFQPVEBWTH4F", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QBBBEFQPVEBWTH4F.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QBBBEFQPVEBWTH4F.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3640" + }, + "appliesTo" : [ ] + }, + "QBBBEFQPVEBWTH4F.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QBBBEFQPVEBWTH4F.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QBBBEFQPVEBWTH4F.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QBBBEFQPVEBWTH4F", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QBBBEFQPVEBWTH4F.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QBBBEFQPVEBWTH4F.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QBBBEFQPVEBWTH4F.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QBBBEFQPVEBWTH4F.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6752" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "KNZCWW7PZRYSMJ6S" : { + "KNZCWW7PZRYSMJ6S.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "KNZCWW7PZRYSMJ6S", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "KNZCWW7PZRYSMJ6S.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "KNZCWW7PZRYSMJ6S.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2975" + }, + "appliesTo" : [ ] + }, + "KNZCWW7PZRYSMJ6S.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "KNZCWW7PZRYSMJ6S.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KNZCWW7PZRYSMJ6S.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "KNZCWW7PZRYSMJ6S", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "KNZCWW7PZRYSMJ6S.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "KNZCWW7PZRYSMJ6S.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1367" + }, + "appliesTo" : [ ] + }, + "KNZCWW7PZRYSMJ6S.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "KNZCWW7PZRYSMJ6S.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KNZCWW7PZRYSMJ6S.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "KNZCWW7PZRYSMJ6S", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "KNZCWW7PZRYSMJ6S.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "KNZCWW7PZRYSMJ6S.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1516" + }, + "appliesTo" : [ ] + }, + "KNZCWW7PZRYSMJ6S.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "KNZCWW7PZRYSMJ6S.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KNZCWW7PZRYSMJ6S.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "KNZCWW7PZRYSMJ6S", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "KNZCWW7PZRYSMJ6S.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "KNZCWW7PZRYSMJ6S.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "KNZCWW7PZRYSMJ6S.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "KNZCWW7PZRYSMJ6S.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1248" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KNZCWW7PZRYSMJ6S.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "KNZCWW7PZRYSMJ6S", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "KNZCWW7PZRYSMJ6S.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "KNZCWW7PZRYSMJ6S.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KNZCWW7PZRYSMJ6S.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "KNZCWW7PZRYSMJ6S", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "KNZCWW7PZRYSMJ6S.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "KNZCWW7PZRYSMJ6S.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2602" + }, + "appliesTo" : [ ] + }, + "KNZCWW7PZRYSMJ6S.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "KNZCWW7PZRYSMJ6S.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KNZCWW7PZRYSMJ6S.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "KNZCWW7PZRYSMJ6S", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "KNZCWW7PZRYSMJ6S.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "KNZCWW7PZRYSMJ6S.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0690000000" + }, + "appliesTo" : [ ] + }, + "KNZCWW7PZRYSMJ6S.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "KNZCWW7PZRYSMJ6S.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "665" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KNZCWW7PZRYSMJ6S.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "KNZCWW7PZRYSMJ6S", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "KNZCWW7PZRYSMJ6S.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "KNZCWW7PZRYSMJ6S.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KNZCWW7PZRYSMJ6S.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "KNZCWW7PZRYSMJ6S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KNZCWW7PZRYSMJ6S.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "KNZCWW7PZRYSMJ6S.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0780000000" + }, + "appliesTo" : [ ] + }, + "KNZCWW7PZRYSMJ6S.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "KNZCWW7PZRYSMJ6S.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "741" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KNZCWW7PZRYSMJ6S.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "KNZCWW7PZRYSMJ6S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KNZCWW7PZRYSMJ6S.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "KNZCWW7PZRYSMJ6S.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KNZCWW7PZRYSMJ6S.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "KNZCWW7PZRYSMJ6S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KNZCWW7PZRYSMJ6S.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "KNZCWW7PZRYSMJ6S.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1398" + }, + "appliesTo" : [ ] + }, + "KNZCWW7PZRYSMJ6S.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "KNZCWW7PZRYSMJ6S.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KNZCWW7PZRYSMJ6S.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "KNZCWW7PZRYSMJ6S", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "KNZCWW7PZRYSMJ6S.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "KNZCWW7PZRYSMJ6S.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "2E6TFSUWJVXJ9TK8" : { + "2E6TFSUWJVXJ9TK8.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "2E6TFSUWJVXJ9TK8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2E6TFSUWJVXJ9TK8.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "2E6TFSUWJVXJ9TK8.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2E6TFSUWJVXJ9TK8.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "2E6TFSUWJVXJ9TK8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2E6TFSUWJVXJ9TK8.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "2E6TFSUWJVXJ9TK8.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15762" + }, + "appliesTo" : [ ] + }, + "2E6TFSUWJVXJ9TK8.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "2E6TFSUWJVXJ9TK8.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2E6TFSUWJVXJ9TK8.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "2E6TFSUWJVXJ9TK8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2E6TFSUWJVXJ9TK8.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "2E6TFSUWJVXJ9TK8.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29330" + }, + "appliesTo" : [ ] + }, + "2E6TFSUWJVXJ9TK8.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "2E6TFSUWJVXJ9TK8.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2E6TFSUWJVXJ9TK8.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "2E6TFSUWJVXJ9TK8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2E6TFSUWJVXJ9TK8.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "2E6TFSUWJVXJ9TK8.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8042" + }, + "appliesTo" : [ ] + }, + "2E6TFSUWJVXJ9TK8.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "2E6TFSUWJVXJ9TK8.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2E6TFSUWJVXJ9TK8.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "2E6TFSUWJVXJ9TK8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2E6TFSUWJVXJ9TK8.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "2E6TFSUWJVXJ9TK8.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2E6TFSUWJVXJ9TK8.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "2E6TFSUWJVXJ9TK8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2E6TFSUWJVXJ9TK8.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "2E6TFSUWJVXJ9TK8.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5940000000" + }, + "appliesTo" : [ ] + }, + "2E6TFSUWJVXJ9TK8.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "2E6TFSUWJVXJ9TK8.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15601" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "WE43EAHVMJU4ZVBT" : { + "WE43EAHVMJU4ZVBT.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "WE43EAHVMJU4ZVBT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WE43EAHVMJU4ZVBT.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "WE43EAHVMJU4ZVBT.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WE43EAHVMJU4ZVBT.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "WE43EAHVMJU4ZVBT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WE43EAHVMJU4ZVBT.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "WE43EAHVMJU4ZVBT.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4610000000" + }, + "appliesTo" : [ ] + }, + "WE43EAHVMJU4ZVBT.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "WE43EAHVMJU4ZVBT.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4039" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WE43EAHVMJU4ZVBT.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "WE43EAHVMJU4ZVBT", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WE43EAHVMJU4ZVBT.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "WE43EAHVMJU4ZVBT.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "WE43EAHVMJU4ZVBT.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "WE43EAHVMJU4ZVBT", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WE43EAHVMJU4ZVBT.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "WE43EAHVMJU4ZVBT.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22011" + }, + "appliesTo" : [ ] + }, + "WE43EAHVMJU4ZVBT.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "WE43EAHVMJU4ZVBT.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WE43EAHVMJU4ZVBT.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "WE43EAHVMJU4ZVBT", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WE43EAHVMJU4ZVBT.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "WE43EAHVMJU4ZVBT.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3891" + }, + "appliesTo" : [ ] + }, + "WE43EAHVMJU4ZVBT.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "WE43EAHVMJU4ZVBT.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WE43EAHVMJU4ZVBT.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "WE43EAHVMJU4ZVBT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WE43EAHVMJU4ZVBT.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "WE43EAHVMJU4ZVBT.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8032" + }, + "appliesTo" : [ ] + }, + "WE43EAHVMJU4ZVBT.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "WE43EAHVMJU4ZVBT.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WE43EAHVMJU4ZVBT.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "WE43EAHVMJU4ZVBT", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WE43EAHVMJU4ZVBT.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "WE43EAHVMJU4ZVBT.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21254" + }, + "appliesTo" : [ ] + }, + "WE43EAHVMJU4ZVBT.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "WE43EAHVMJU4ZVBT.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WE43EAHVMJU4ZVBT.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "WE43EAHVMJU4ZVBT", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WE43EAHVMJU4ZVBT.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "WE43EAHVMJU4ZVBT.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "WE43EAHVMJU4ZVBT.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "WE43EAHVMJU4ZVBT", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WE43EAHVMJU4ZVBT.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "WE43EAHVMJU4ZVBT.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WE43EAHVMJU4ZVBT.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "WE43EAHVMJU4ZVBT", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WE43EAHVMJU4ZVBT.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "WE43EAHVMJU4ZVBT.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "WE43EAHVMJU4ZVBT.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "WE43EAHVMJU4ZVBT.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7743" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WE43EAHVMJU4ZVBT.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "WE43EAHVMJU4ZVBT", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WE43EAHVMJU4ZVBT.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "WE43EAHVMJU4ZVBT.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4210000000" + }, + "appliesTo" : [ ] + }, + "WE43EAHVMJU4ZVBT.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "WE43EAHVMJU4ZVBT.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11052" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WE43EAHVMJU4ZVBT.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "WE43EAHVMJU4ZVBT", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WE43EAHVMJU4ZVBT.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "WE43EAHVMJU4ZVBT.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10749" + }, + "appliesTo" : [ ] + }, + "WE43EAHVMJU4ZVBT.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "WE43EAHVMJU4ZVBT.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "KTQ9XV2KF6MVX7PJ" : { + "KTQ9XV2KF6MVX7PJ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "KTQ9XV2KF6MVX7PJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KTQ9XV2KF6MVX7PJ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "KTQ9XV2KF6MVX7PJ.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9278000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KTQ9XV2KF6MVX7PJ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "KTQ9XV2KF6MVX7PJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KTQ9XV2KF6MVX7PJ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "KTQ9XV2KF6MVX7PJ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3908" + }, + "appliesTo" : [ ] + }, + "KTQ9XV2KF6MVX7PJ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "KTQ9XV2KF6MVX7PJ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4391000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KTQ9XV2KF6MVX7PJ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "KTQ9XV2KF6MVX7PJ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "KTQ9XV2KF6MVX7PJ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "KTQ9XV2KF6MVX7PJ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3835000000" + }, + "appliesTo" : [ ] + }, + "KTQ9XV2KF6MVX7PJ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "KTQ9XV2KF6MVX7PJ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3422" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KTQ9XV2KF6MVX7PJ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "KTQ9XV2KF6MVX7PJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KTQ9XV2KF6MVX7PJ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "KTQ9XV2KF6MVX7PJ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7606" + }, + "appliesTo" : [ ] + }, + "KTQ9XV2KF6MVX7PJ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "KTQ9XV2KF6MVX7PJ.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KTQ9XV2KF6MVX7PJ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "KTQ9XV2KF6MVX7PJ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "KTQ9XV2KF6MVX7PJ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "KTQ9XV2KF6MVX7PJ.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8111000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KTQ9XV2KF6MVX7PJ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "KTQ9XV2KF6MVX7PJ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "KTQ9XV2KF6MVX7PJ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "KTQ9XV2KF6MVX7PJ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8481" + }, + "appliesTo" : [ ] + }, + "KTQ9XV2KF6MVX7PJ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "KTQ9XV2KF6MVX7PJ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3223000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KTQ9XV2KF6MVX7PJ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "KTQ9XV2KF6MVX7PJ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "KTQ9XV2KF6MVX7PJ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "KTQ9XV2KF6MVX7PJ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KTQ9XV2KF6MVX7PJ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "KTQ9XV2KF6MVX7PJ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "KTQ9XV2KF6MVX7PJ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "KTQ9XV2KF6MVX7PJ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16628" + }, + "appliesTo" : [ ] + }, + "KTQ9XV2KF6MVX7PJ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "KTQ9XV2KF6MVX7PJ.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KTQ9XV2KF6MVX7PJ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "KTQ9XV2KF6MVX7PJ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "KTQ9XV2KF6MVX7PJ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "KTQ9XV2KF6MVX7PJ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13983" + }, + "appliesTo" : [ ] + }, + "KTQ9XV2KF6MVX7PJ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "KTQ9XV2KF6MVX7PJ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KTQ9XV2KF6MVX7PJ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "KTQ9XV2KF6MVX7PJ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "KTQ9XV2KF6MVX7PJ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "KTQ9XV2KF6MVX7PJ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7012000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KTQ9XV2KF6MVX7PJ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "KTQ9XV2KF6MVX7PJ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "KTQ9XV2KF6MVX7PJ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "KTQ9XV2KF6MVX7PJ.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "KTQ9XV2KF6MVX7PJ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "KTQ9XV2KF6MVX7PJ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6651" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KTQ9XV2KF6MVX7PJ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "KTQ9XV2KF6MVX7PJ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "KTQ9XV2KF6MVX7PJ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "KTQ9XV2KF6MVX7PJ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7421" + }, + "appliesTo" : [ ] + }, + "KTQ9XV2KF6MVX7PJ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "KTQ9XV2KF6MVX7PJ.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "A633GX9XTPAPFK68" : { + "A633GX9XTPAPFK68.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "A633GX9XTPAPFK68", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "A633GX9XTPAPFK68.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "A633GX9XTPAPFK68.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "42994" + }, + "appliesTo" : [ ] + }, + "A633GX9XTPAPFK68.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "A633GX9XTPAPFK68.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "A633GX9XTPAPFK68.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "A633GX9XTPAPFK68", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "A633GX9XTPAPFK68.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "A633GX9XTPAPFK68.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "88044" + }, + "appliesTo" : [ ] + }, + "A633GX9XTPAPFK68.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "A633GX9XTPAPFK68.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "A633GX9XTPAPFK68.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "A633GX9XTPAPFK68", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "A633GX9XTPAPFK68.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "A633GX9XTPAPFK68.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "A633GX9XTPAPFK68.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "A633GX9XTPAPFK68.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "85017" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "A633GX9XTPAPFK68.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "A633GX9XTPAPFK68", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "A633GX9XTPAPFK68.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "A633GX9XTPAPFK68.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "A633GX9XTPAPFK68.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "A633GX9XTPAPFK68", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "A633GX9XTPAPFK68.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "A633GX9XTPAPFK68.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "A633GX9XTPAPFK68.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "A633GX9XTPAPFK68", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A633GX9XTPAPFK68.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "A633GX9XTPAPFK68.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8440000000" + }, + "appliesTo" : [ ] + }, + "A633GX9XTPAPFK68.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "A633GX9XTPAPFK68.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16155" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "A633GX9XTPAPFK68.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "A633GX9XTPAPFK68", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A633GX9XTPAPFK68.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "A633GX9XTPAPFK68.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32128" + }, + "appliesTo" : [ ] + }, + "A633GX9XTPAPFK68.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "A633GX9XTPAPFK68.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "A633GX9XTPAPFK68.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "A633GX9XTPAPFK68", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "A633GX9XTPAPFK68.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "A633GX9XTPAPFK68.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15565" + }, + "appliesTo" : [ ] + }, + "A633GX9XTPAPFK68.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "A633GX9XTPAPFK68.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "A633GX9XTPAPFK68.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "A633GX9XTPAPFK68", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "A633GX9XTPAPFK68.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "A633GX9XTPAPFK68.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "A633GX9XTPAPFK68.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "A633GX9XTPAPFK68", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "A633GX9XTPAPFK68.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "A633GX9XTPAPFK68.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "A633GX9XTPAPFK68.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "A633GX9XTPAPFK68.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30972" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "A633GX9XTPAPFK68.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "A633GX9XTPAPFK68", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A633GX9XTPAPFK68.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "A633GX9XTPAPFK68.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "A633GX9XTPAPFK68.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "A633GX9XTPAPFK68", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "A633GX9XTPAPFK68.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "A633GX9XTPAPFK68.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "44208" + }, + "appliesTo" : [ ] + }, + "A633GX9XTPAPFK68.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "A633GX9XTPAPFK68.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "WSBQ3GQCNJDRXWWZ" : { + "WSBQ3GQCNJDRXWWZ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "WSBQ3GQCNJDRXWWZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WSBQ3GQCNJDRXWWZ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "WSBQ3GQCNJDRXWWZ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WSBQ3GQCNJDRXWWZ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "WSBQ3GQCNJDRXWWZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WSBQ3GQCNJDRXWWZ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "WSBQ3GQCNJDRXWWZ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2024000000" + }, + "appliesTo" : [ ] + }, + "WSBQ3GQCNJDRXWWZ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "WSBQ3GQCNJDRXWWZ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1773" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WSBQ3GQCNJDRXWWZ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "WSBQ3GQCNJDRXWWZ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "WSBQ3GQCNJDRXWWZ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "WSBQ3GQCNJDRXWWZ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "WSBQ3GQCNJDRXWWZ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "WSBQ3GQCNJDRXWWZ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3013" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WSBQ3GQCNJDRXWWZ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "WSBQ3GQCNJDRXWWZ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "WSBQ3GQCNJDRXWWZ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "WSBQ3GQCNJDRXWWZ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3524" + }, + "appliesTo" : [ ] + }, + "WSBQ3GQCNJDRXWWZ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "WSBQ3GQCNJDRXWWZ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1341000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WSBQ3GQCNJDRXWWZ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "WSBQ3GQCNJDRXWWZ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "WSBQ3GQCNJDRXWWZ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "WSBQ3GQCNJDRXWWZ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3075" + }, + "appliesTo" : [ ] + }, + "WSBQ3GQCNJDRXWWZ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "WSBQ3GQCNJDRXWWZ.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WSBQ3GQCNJDRXWWZ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "WSBQ3GQCNJDRXWWZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WSBQ3GQCNJDRXWWZ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "WSBQ3GQCNJDRXWWZ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3475" + }, + "appliesTo" : [ ] + }, + "WSBQ3GQCNJDRXWWZ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "WSBQ3GQCNJDRXWWZ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WSBQ3GQCNJDRXWWZ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "WSBQ3GQCNJDRXWWZ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "WSBQ3GQCNJDRXWWZ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "WSBQ3GQCNJDRXWWZ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5781" + }, + "appliesTo" : [ ] + }, + "WSBQ3GQCNJDRXWWZ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "WSBQ3GQCNJDRXWWZ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WSBQ3GQCNJDRXWWZ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "WSBQ3GQCNJDRXWWZ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "WSBQ3GQCNJDRXWWZ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "WSBQ3GQCNJDRXWWZ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2519000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "WSBQ3GQCNJDRXWWZ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "WSBQ3GQCNJDRXWWZ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "WSBQ3GQCNJDRXWWZ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "WSBQ3GQCNJDRXWWZ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2896000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WSBQ3GQCNJDRXWWZ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "WSBQ3GQCNJDRXWWZ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "WSBQ3GQCNJDRXWWZ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "WSBQ3GQCNJDRXWWZ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6907" + }, + "appliesTo" : [ ] + }, + "WSBQ3GQCNJDRXWWZ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "WSBQ3GQCNJDRXWWZ.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WSBQ3GQCNJDRXWWZ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "WSBQ3GQCNJDRXWWZ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "WSBQ3GQCNJDRXWWZ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "WSBQ3GQCNJDRXWWZ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3696000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "WSBQ3GQCNJDRXWWZ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "WSBQ3GQCNJDRXWWZ", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "WSBQ3GQCNJDRXWWZ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "WSBQ3GQCNJDRXWWZ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1537" + }, + "appliesTo" : [ ] + }, + "WSBQ3GQCNJDRXWWZ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "WSBQ3GQCNJDRXWWZ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "355G43EUBXD5NEFF" : { + "355G43EUBXD5NEFF.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "355G43EUBXD5NEFF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "355G43EUBXD5NEFF.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "355G43EUBXD5NEFF.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7202000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "355G43EUBXD5NEFF.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "355G43EUBXD5NEFF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "355G43EUBXD5NEFF.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "355G43EUBXD5NEFF.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7329" + }, + "appliesTo" : [ ] + }, + "355G43EUBXD5NEFF.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "355G43EUBXD5NEFF.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8367000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "355G43EUBXD5NEFF.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "355G43EUBXD5NEFF", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "355G43EUBXD5NEFF.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "355G43EUBXD5NEFF.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "36869" + }, + "appliesTo" : [ ] + }, + "355G43EUBXD5NEFF.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "355G43EUBXD5NEFF.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "355G43EUBXD5NEFF.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "355G43EUBXD5NEFF", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "355G43EUBXD5NEFF.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "355G43EUBXD5NEFF.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5919000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "355G43EUBXD5NEFF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "355G43EUBXD5NEFF", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "355G43EUBXD5NEFF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "355G43EUBXD5NEFF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6794" + }, + "appliesTo" : [ ] + }, + "355G43EUBXD5NEFF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "355G43EUBXD5NEFF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7756000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "355G43EUBXD5NEFF.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "355G43EUBXD5NEFF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "355G43EUBXD5NEFF.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "355G43EUBXD5NEFF.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14494" + }, + "appliesTo" : [ ] + }, + "355G43EUBXD5NEFF.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "355G43EUBXD5NEFF.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "355G43EUBXD5NEFF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "355G43EUBXD5NEFF", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "355G43EUBXD5NEFF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "355G43EUBXD5NEFF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33961" + }, + "appliesTo" : [ ] + }, + "355G43EUBXD5NEFF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "355G43EUBXD5NEFF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "355G43EUBXD5NEFF.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "355G43EUBXD5NEFF", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "355G43EUBXD5NEFF.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "355G43EUBXD5NEFF.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3751000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "355G43EUBXD5NEFF.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "355G43EUBXD5NEFF", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "355G43EUBXD5NEFF.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "355G43EUBXD5NEFF.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "355G43EUBXD5NEFF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "355G43EUBXD5NEFF", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "355G43EUBXD5NEFF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "355G43EUBXD5NEFF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13445" + }, + "appliesTo" : [ ] + }, + "355G43EUBXD5NEFF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "355G43EUBXD5NEFF.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "355G43EUBXD5NEFF.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "355G43EUBXD5NEFF", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "355G43EUBXD5NEFF.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "355G43EUBXD5NEFF.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18613" + }, + "appliesTo" : [ ] + }, + "355G43EUBXD5NEFF.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "355G43EUBXD5NEFF.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7083000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "355G43EUBXD5NEFF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "355G43EUBXD5NEFF", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "355G43EUBXD5NEFF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "355G43EUBXD5NEFF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17447" + }, + "appliesTo" : [ ] + }, + "355G43EUBXD5NEFF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "355G43EUBXD5NEFF.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6639000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "TDQNZBUHCYXTFDUS" : { + "TDQNZBUHCYXTFDUS.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TDQNZBUHCYXTFDUS", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "TDQNZBUHCYXTFDUS.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TDQNZBUHCYXTFDUS.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1430000000" + }, + "appliesTo" : [ ] + }, + "TDQNZBUHCYXTFDUS.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TDQNZBUHCYXTFDUS.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "926" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TDQNZBUHCYXTFDUS.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TDQNZBUHCYXTFDUS", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "TDQNZBUHCYXTFDUS.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TDQNZBUHCYXTFDUS.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4650" + }, + "appliesTo" : [ ] + }, + "TDQNZBUHCYXTFDUS.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TDQNZBUHCYXTFDUS.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TDQNZBUHCYXTFDUS.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "TDQNZBUHCYXTFDUS", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "TDQNZBUHCYXTFDUS.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "TDQNZBUHCYXTFDUS.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1350000000" + }, + "appliesTo" : [ ] + }, + "TDQNZBUHCYXTFDUS.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "TDQNZBUHCYXTFDUS.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2500" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TDQNZBUHCYXTFDUS.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TDQNZBUHCYXTFDUS", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "TDQNZBUHCYXTFDUS.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TDQNZBUHCYXTFDUS.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2149" + }, + "appliesTo" : [ ] + }, + "TDQNZBUHCYXTFDUS.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TDQNZBUHCYXTFDUS.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TDQNZBUHCYXTFDUS.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "TDQNZBUHCYXTFDUS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TDQNZBUHCYXTFDUS.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "TDQNZBUHCYXTFDUS.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2311" + }, + "appliesTo" : [ ] + }, + "TDQNZBUHCYXTFDUS.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "TDQNZBUHCYXTFDUS.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TDQNZBUHCYXTFDUS.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "TDQNZBUHCYXTFDUS", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "TDQNZBUHCYXTFDUS.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "TDQNZBUHCYXTFDUS.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TDQNZBUHCYXTFDUS.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "TDQNZBUHCYXTFDUS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TDQNZBUHCYXTFDUS.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "TDQNZBUHCYXTFDUS.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1640000000" + }, + "appliesTo" : [ ] + }, + "TDQNZBUHCYXTFDUS.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "TDQNZBUHCYXTFDUS.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "911" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TDQNZBUHCYXTFDUS.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TDQNZBUHCYXTFDUS", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "TDQNZBUHCYXTFDUS.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TDQNZBUHCYXTFDUS.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TDQNZBUHCYXTFDUS.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "TDQNZBUHCYXTFDUS", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "TDQNZBUHCYXTFDUS.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "TDQNZBUHCYXTFDUS.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5976" + }, + "appliesTo" : [ ] + }, + "TDQNZBUHCYXTFDUS.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "TDQNZBUHCYXTFDUS.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TDQNZBUHCYXTFDUS.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TDQNZBUHCYXTFDUS", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "TDQNZBUHCYXTFDUS.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TDQNZBUHCYXTFDUS.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1320000000" + }, + "appliesTo" : [ ] + }, + "TDQNZBUHCYXTFDUS.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TDQNZBUHCYXTFDUS.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1480" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TDQNZBUHCYXTFDUS.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "TDQNZBUHCYXTFDUS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TDQNZBUHCYXTFDUS.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "TDQNZBUHCYXTFDUS.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "N48UCGS5YF8G8CCW" : { + "N48UCGS5YF8G8CCW.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "N48UCGS5YF8G8CCW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N48UCGS5YF8G8CCW.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "N48UCGS5YF8G8CCW.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25930" + }, + "appliesTo" : [ ] + }, + "N48UCGS5YF8G8CCW.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "N48UCGS5YF8G8CCW.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "N48UCGS5YF8G8CCW.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "N48UCGS5YF8G8CCW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "N48UCGS5YF8G8CCW.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "N48UCGS5YF8G8CCW.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.5350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "N48UCGS5YF8G8CCW.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "N48UCGS5YF8G8CCW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N48UCGS5YF8G8CCW.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "N48UCGS5YF8G8CCW.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.3460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "N48UCGS5YF8G8CCW.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "N48UCGS5YF8G8CCW", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "N48UCGS5YF8G8CCW.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "N48UCGS5YF8G8CCW.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "49144" + }, + "appliesTo" : [ ] + }, + "N48UCGS5YF8G8CCW.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "N48UCGS5YF8G8CCW.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "N48UCGS5YF8G8CCW.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "N48UCGS5YF8G8CCW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "N48UCGS5YF8G8CCW.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "N48UCGS5YF8G8CCW.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "N48UCGS5YF8G8CCW.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "N48UCGS5YF8G8CCW.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "95806" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "N48UCGS5YF8G8CCW.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "N48UCGS5YF8G8CCW", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "N48UCGS5YF8G8CCW.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "N48UCGS5YF8G8CCW.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "45333" + }, + "appliesTo" : [ ] + }, + "N48UCGS5YF8G8CCW.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "N48UCGS5YF8G8CCW.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "N48UCGS5YF8G8CCW.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "N48UCGS5YF8G8CCW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "N48UCGS5YF8G8CCW.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "N48UCGS5YF8G8CCW.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "56516" + }, + "appliesTo" : [ ] + }, + "N48UCGS5YF8G8CCW.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "N48UCGS5YF8G8CCW.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "N48UCGS5YF8G8CCW.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "N48UCGS5YF8G8CCW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "N48UCGS5YF8G8CCW.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "N48UCGS5YF8G8CCW.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.7750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "N48UCGS5YF8G8CCW.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "N48UCGS5YF8G8CCW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "N48UCGS5YF8G8CCW.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "N48UCGS5YF8G8CCW.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "114187" + }, + "appliesTo" : [ ] + }, + "N48UCGS5YF8G8CCW.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "N48UCGS5YF8G8CCW.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "N48UCGS5YF8G8CCW.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "N48UCGS5YF8G8CCW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "N48UCGS5YF8G8CCW.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "N48UCGS5YF8G8CCW.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.1690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "N48UCGS5YF8G8CCW.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "N48UCGS5YF8G8CCW", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "N48UCGS5YF8G8CCW.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "N48UCGS5YF8G8CCW.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22548" + }, + "appliesTo" : [ ] + }, + "N48UCGS5YF8G8CCW.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "N48UCGS5YF8G8CCW.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "N48UCGS5YF8G8CCW.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "N48UCGS5YF8G8CCW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N48UCGS5YF8G8CCW.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "N48UCGS5YF8G8CCW.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "51963" + }, + "appliesTo" : [ ] + }, + "N48UCGS5YF8G8CCW.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "N48UCGS5YF8G8CCW.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "8WMJSK8SESK57KMV" : { + "8WMJSK8SESK57KMV.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "8WMJSK8SESK57KMV", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "8WMJSK8SESK57KMV.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "8WMJSK8SESK57KMV.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "66960" + }, + "appliesTo" : [ ] + }, + "8WMJSK8SESK57KMV.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "8WMJSK8SESK57KMV.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5479000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8WMJSK8SESK57KMV.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "8WMJSK8SESK57KMV", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "8WMJSK8SESK57KMV.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "8WMJSK8SESK57KMV.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "8WMJSK8SESK57KMV.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "8WMJSK8SESK57KMV.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "141103" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8WMJSK8SESK57KMV.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "8WMJSK8SESK57KMV", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "8WMJSK8SESK57KMV.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "8WMJSK8SESK57KMV.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "130526" + }, + "appliesTo" : [ ] + }, + "8WMJSK8SESK57KMV.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "8WMJSK8SESK57KMV.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8WMJSK8SESK57KMV.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "8WMJSK8SESK57KMV", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "8WMJSK8SESK57KMV.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "8WMJSK8SESK57KMV.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "71202" + }, + "appliesTo" : [ ] + }, + "8WMJSK8SESK57KMV.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "8WMJSK8SESK57KMV.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7094000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8WMJSK8SESK57KMV.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "8WMJSK8SESK57KMV", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "8WMJSK8SESK57KMV.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "8WMJSK8SESK57KMV.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.2680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8WMJSK8SESK57KMV.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "8WMJSK8SESK57KMV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8WMJSK8SESK57KMV.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "8WMJSK8SESK57KMV.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "55052" + }, + "appliesTo" : [ ] + }, + "8WMJSK8SESK57KMV.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "8WMJSK8SESK57KMV.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8WMJSK8SESK57KMV.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "8WMJSK8SESK57KMV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8WMJSK8SESK57KMV.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "8WMJSK8SESK57KMV.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27824" + }, + "appliesTo" : [ ] + }, + "8WMJSK8SESK57KMV.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "8WMJSK8SESK57KMV.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1763000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8WMJSK8SESK57KMV.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "8WMJSK8SESK57KMV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8WMJSK8SESK57KMV.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "8WMJSK8SESK57KMV.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.5230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8WMJSK8SESK57KMV.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "8WMJSK8SESK57KMV", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "8WMJSK8SESK57KMV.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "8WMJSK8SESK57KMV.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25877" + }, + "appliesTo" : [ ] + }, + "8WMJSK8SESK57KMV.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "8WMJSK8SESK57KMV.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8WMJSK8SESK57KMV.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "8WMJSK8SESK57KMV", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "8WMJSK8SESK57KMV.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "8WMJSK8SESK57KMV.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "51235" + }, + "appliesTo" : [ ] + }, + "8WMJSK8SESK57KMV.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "8WMJSK8SESK57KMV.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8WMJSK8SESK57KMV.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "8WMJSK8SESK57KMV", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "8WMJSK8SESK57KMV.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "8WMJSK8SESK57KMV.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.0562000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8WMJSK8SESK57KMV.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "8WMJSK8SESK57KMV", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "8WMJSK8SESK57KMV.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "8WMJSK8SESK57KMV.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.6167000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "XDG4DYSAQBVCPRJQ" : { + "XDG4DYSAQBVCPRJQ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "XDG4DYSAQBVCPRJQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XDG4DYSAQBVCPRJQ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "XDG4DYSAQBVCPRJQ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0985000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XDG4DYSAQBVCPRJQ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XDG4DYSAQBVCPRJQ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XDG4DYSAQBVCPRJQ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XDG4DYSAQBVCPRJQ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8417000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XDG4DYSAQBVCPRJQ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XDG4DYSAQBVCPRJQ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XDG4DYSAQBVCPRJQ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XDG4DYSAQBVCPRJQ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15552" + }, + "appliesTo" : [ ] + }, + "XDG4DYSAQBVCPRJQ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XDG4DYSAQBVCPRJQ.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7218000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XDG4DYSAQBVCPRJQ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "XDG4DYSAQBVCPRJQ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XDG4DYSAQBVCPRJQ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "XDG4DYSAQBVCPRJQ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XDG4DYSAQBVCPRJQ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XDG4DYSAQBVCPRJQ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XDG4DYSAQBVCPRJQ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XDG4DYSAQBVCPRJQ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15134" + }, + "appliesTo" : [ ] + }, + "XDG4DYSAQBVCPRJQ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XDG4DYSAQBVCPRJQ.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XDG4DYSAQBVCPRJQ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XDG4DYSAQBVCPRJQ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XDG4DYSAQBVCPRJQ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XDG4DYSAQBVCPRJQ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32653" + }, + "appliesTo" : [ ] + }, + "XDG4DYSAQBVCPRJQ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XDG4DYSAQBVCPRJQ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XDG4DYSAQBVCPRJQ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "XDG4DYSAQBVCPRJQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XDG4DYSAQBVCPRJQ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "XDG4DYSAQBVCPRJQ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "XDG4DYSAQBVCPRJQ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "XDG4DYSAQBVCPRJQ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17233" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XDG4DYSAQBVCPRJQ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XDG4DYSAQBVCPRJQ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XDG4DYSAQBVCPRJQ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XDG4DYSAQBVCPRJQ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7140" + }, + "appliesTo" : [ ] + }, + "XDG4DYSAQBVCPRJQ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XDG4DYSAQBVCPRJQ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9451000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XDG4DYSAQBVCPRJQ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "XDG4DYSAQBVCPRJQ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XDG4DYSAQBVCPRJQ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "XDG4DYSAQBVCPRJQ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17885" + }, + "appliesTo" : [ ] + }, + "XDG4DYSAQBVCPRJQ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "XDG4DYSAQBVCPRJQ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8105000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XDG4DYSAQBVCPRJQ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "XDG4DYSAQBVCPRJQ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XDG4DYSAQBVCPRJQ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "XDG4DYSAQBVCPRJQ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38470" + }, + "appliesTo" : [ ] + }, + "XDG4DYSAQBVCPRJQ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "XDG4DYSAQBVCPRJQ.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XDG4DYSAQBVCPRJQ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "XDG4DYSAQBVCPRJQ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "XDG4DYSAQBVCPRJQ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "XDG4DYSAQBVCPRJQ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4082000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XDG4DYSAQBVCPRJQ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "XDG4DYSAQBVCPRJQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XDG4DYSAQBVCPRJQ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "XDG4DYSAQBVCPRJQ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8211" + }, + "appliesTo" : [ ] + }, + "XDG4DYSAQBVCPRJQ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "XDG4DYSAQBVCPRJQ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0674000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "A8NG2GF96A6WJPJW" : { + "A8NG2GF96A6WJPJW.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "A8NG2GF96A6WJPJW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A8NG2GF96A6WJPJW.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "A8NG2GF96A6WJPJW.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1833" + }, + "appliesTo" : [ ] + }, + "A8NG2GF96A6WJPJW.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "A8NG2GF96A6WJPJW.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "A8NG2GF96A6WJPJW.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "A8NG2GF96A6WJPJW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A8NG2GF96A6WJPJW.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "A8NG2GF96A6WJPJW.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "A8NG2GF96A6WJPJW.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "A8NG2GF96A6WJPJW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "A8NG2GF96A6WJPJW.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "A8NG2GF96A6WJPJW.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "A8NG2GF96A6WJPJW.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "A8NG2GF96A6WJPJW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "A8NG2GF96A6WJPJW.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "A8NG2GF96A6WJPJW.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8982" + }, + "appliesTo" : [ ] + }, + "A8NG2GF96A6WJPJW.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "A8NG2GF96A6WJPJW.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "A8NG2GF96A6WJPJW.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "A8NG2GF96A6WJPJW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "A8NG2GF96A6WJPJW.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "A8NG2GF96A6WJPJW.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "A8NG2GF96A6WJPJW.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "A8NG2GF96A6WJPJW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A8NG2GF96A6WJPJW.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "A8NG2GF96A6WJPJW.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3626" + }, + "appliesTo" : [ ] + }, + "A8NG2GF96A6WJPJW.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "A8NG2GF96A6WJPJW.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "A8NG2GF96A6WJPJW.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "A8NG2GF96A6WJPJW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "A8NG2GF96A6WJPJW.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "A8NG2GF96A6WJPJW.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "A8NG2GF96A6WJPJW.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "A8NG2GF96A6WJPJW.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3353" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "A8NG2GF96A6WJPJW.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "A8NG2GF96A6WJPJW", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "A8NG2GF96A6WJPJW.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "A8NG2GF96A6WJPJW.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1930000000" + }, + "appliesTo" : [ ] + }, + "A8NG2GF96A6WJPJW.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "A8NG2GF96A6WJPJW.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1694" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "A8NG2GF96A6WJPJW.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "A8NG2GF96A6WJPJW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "A8NG2GF96A6WJPJW.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "A8NG2GF96A6WJPJW.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4533" + }, + "appliesTo" : [ ] + }, + "A8NG2GF96A6WJPJW.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "A8NG2GF96A6WJPJW.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "A8NG2GF96A6WJPJW.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "A8NG2GF96A6WJPJW", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "A8NG2GF96A6WJPJW.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "A8NG2GF96A6WJPJW.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8304" + }, + "appliesTo" : [ ] + }, + "A8NG2GF96A6WJPJW.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "A8NG2GF96A6WJPJW.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "A8NG2GF96A6WJPJW.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "A8NG2GF96A6WJPJW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "A8NG2GF96A6WJPJW.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "A8NG2GF96A6WJPJW.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "A8NG2GF96A6WJPJW.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "A8NG2GF96A6WJPJW", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "A8NG2GF96A6WJPJW.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "A8NG2GF96A6WJPJW.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4263" + }, + "appliesTo" : [ ] + }, + "A8NG2GF96A6WJPJW.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "A8NG2GF96A6WJPJW.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "TN5GRYE6RHCET7M3" : { + "TN5GRYE6RHCET7M3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TN5GRYE6RHCET7M3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TN5GRYE6RHCET7M3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TN5GRYE6RHCET7M3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4288" + }, + "appliesTo" : [ ] + }, + "TN5GRYE6RHCET7M3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TN5GRYE6RHCET7M3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TN5GRYE6RHCET7M3.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "TN5GRYE6RHCET7M3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TN5GRYE6RHCET7M3.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "TN5GRYE6RHCET7M3.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9665" + }, + "appliesTo" : [ ] + }, + "TN5GRYE6RHCET7M3.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "TN5GRYE6RHCET7M3.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TN5GRYE6RHCET7M3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TN5GRYE6RHCET7M3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TN5GRYE6RHCET7M3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TN5GRYE6RHCET7M3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12264" + }, + "appliesTo" : [ ] + }, + "TN5GRYE6RHCET7M3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TN5GRYE6RHCET7M3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TN5GRYE6RHCET7M3.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "TN5GRYE6RHCET7M3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TN5GRYE6RHCET7M3.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "TN5GRYE6RHCET7M3.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TN5GRYE6RHCET7M3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TN5GRYE6RHCET7M3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TN5GRYE6RHCET7M3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TN5GRYE6RHCET7M3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8404" + }, + "appliesTo" : [ ] + }, + "TN5GRYE6RHCET7M3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TN5GRYE6RHCET7M3.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TN5GRYE6RHCET7M3.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "TN5GRYE6RHCET7M3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TN5GRYE6RHCET7M3.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "TN5GRYE6RHCET7M3.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14704" + }, + "appliesTo" : [ ] + }, + "TN5GRYE6RHCET7M3.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "TN5GRYE6RHCET7M3.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TN5GRYE6RHCET7M3.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "TN5GRYE6RHCET7M3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TN5GRYE6RHCET7M3.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "TN5GRYE6RHCET7M3.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TN5GRYE6RHCET7M3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TN5GRYE6RHCET7M3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TN5GRYE6RHCET7M3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TN5GRYE6RHCET7M3.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TN5GRYE6RHCET7M3.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "TN5GRYE6RHCET7M3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TN5GRYE6RHCET7M3.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "TN5GRYE6RHCET7M3.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4931" + }, + "appliesTo" : [ ] + }, + "TN5GRYE6RHCET7M3.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "TN5GRYE6RHCET7M3.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TN5GRYE6RHCET7M3.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "TN5GRYE6RHCET7M3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TN5GRYE6RHCET7M3.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "TN5GRYE6RHCET7M3.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TN5GRYE6RHCET7M3.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "TN5GRYE6RHCET7M3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TN5GRYE6RHCET7M3.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "TN5GRYE6RHCET7M3.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2850000000" + }, + "appliesTo" : [ ] + }, + "TN5GRYE6RHCET7M3.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "TN5GRYE6RHCET7M3.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7502" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TN5GRYE6RHCET7M3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TN5GRYE6RHCET7M3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TN5GRYE6RHCET7M3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TN5GRYE6RHCET7M3.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2480000000" + }, + "appliesTo" : [ ] + }, + "TN5GRYE6RHCET7M3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TN5GRYE6RHCET7M3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6524" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "Z684JBY4N78FZQ8Q" : { + "Z684JBY4N78FZQ8Q.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Z684JBY4N78FZQ8Q", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z684JBY4N78FZQ8Q.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Z684JBY4N78FZQ8Q.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0455000000" + }, + "appliesTo" : [ ] + }, + "Z684JBY4N78FZQ8Q.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Z684JBY4N78FZQ8Q.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "460" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z684JBY4N78FZQ8Q.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Z684JBY4N78FZQ8Q", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z684JBY4N78FZQ8Q.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Z684JBY4N78FZQ8Q.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "847" + }, + "appliesTo" : [ ] + }, + "Z684JBY4N78FZQ8Q.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Z684JBY4N78FZQ8Q.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Z684JBY4N78FZQ8Q.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "Z684JBY4N78FZQ8Q", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z684JBY4N78FZQ8Q.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "Z684JBY4N78FZQ8Q.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Z684JBY4N78FZQ8Q.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "Z684JBY4N78FZQ8Q", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z684JBY4N78FZQ8Q.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "Z684JBY4N78FZQ8Q.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1114000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Z684JBY4N78FZQ8Q.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "Z684JBY4N78FZQ8Q", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z684JBY4N78FZQ8Q.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "Z684JBY4N78FZQ8Q.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "931" + }, + "appliesTo" : [ ] + }, + "Z684JBY4N78FZQ8Q.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "Z684JBY4N78FZQ8Q.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Z684JBY4N78FZQ8Q.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "Z684JBY4N78FZQ8Q", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z684JBY4N78FZQ8Q.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "Z684JBY4N78FZQ8Q.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "503" + }, + "appliesTo" : [ ] + }, + "Z684JBY4N78FZQ8Q.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "Z684JBY4N78FZQ8Q.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0503000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z684JBY4N78FZQ8Q.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "Z684JBY4N78FZQ8Q", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z684JBY4N78FZQ8Q.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "Z684JBY4N78FZQ8Q.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "Z684JBY4N78FZQ8Q.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "Z684JBY4N78FZQ8Q.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1997" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Z684JBY4N78FZQ8Q.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Z684JBY4N78FZQ8Q", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z684JBY4N78FZQ8Q.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Z684JBY4N78FZQ8Q.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "930" + }, + "appliesTo" : [ ] + }, + "Z684JBY4N78FZQ8Q.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Z684JBY4N78FZQ8Q.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z684JBY4N78FZQ8Q.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Z684JBY4N78FZQ8Q", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z684JBY4N78FZQ8Q.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Z684JBY4N78FZQ8Q.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1011000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Z684JBY4N78FZQ8Q.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Z684JBY4N78FZQ8Q", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z684JBY4N78FZQ8Q.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Z684JBY4N78FZQ8Q.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1781" + }, + "appliesTo" : [ ] + }, + "Z684JBY4N78FZQ8Q.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Z684JBY4N78FZQ8Q.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Z684JBY4N78FZQ8Q.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "Z684JBY4N78FZQ8Q", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z684JBY4N78FZQ8Q.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "Z684JBY4N78FZQ8Q.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1017" + }, + "appliesTo" : [ ] + }, + "Z684JBY4N78FZQ8Q.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "Z684JBY4N78FZQ8Q.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0383000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z684JBY4N78FZQ8Q.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "Z684JBY4N78FZQ8Q", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z684JBY4N78FZQ8Q.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "Z684JBY4N78FZQ8Q.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0876000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "7WRGXK63YR8UUHF8" : { + "7WRGXK63YR8UUHF8.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "7WRGXK63YR8UUHF8", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "7WRGXK63YR8UUHF8.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "7WRGXK63YR8UUHF8.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9430000000" + }, + "appliesTo" : [ ] + }, + "7WRGXK63YR8UUHF8.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "7WRGXK63YR8UUHF8.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8264" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7WRGXK63YR8UUHF8.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "7WRGXK63YR8UUHF8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7WRGXK63YR8UUHF8.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "7WRGXK63YR8UUHF8.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8403" + }, + "appliesTo" : [ ] + }, + "7WRGXK63YR8UUHF8.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "7WRGXK63YR8UUHF8.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7WRGXK63YR8UUHF8.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "7WRGXK63YR8UUHF8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7WRGXK63YR8UUHF8.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "7WRGXK63YR8UUHF8.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7WRGXK63YR8UUHF8.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "7WRGXK63YR8UUHF8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7WRGXK63YR8UUHF8.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "7WRGXK63YR8UUHF8.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "48402" + }, + "appliesTo" : [ ] + }, + "7WRGXK63YR8UUHF8.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "7WRGXK63YR8UUHF8.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7WRGXK63YR8UUHF8.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "7WRGXK63YR8UUHF8", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "7WRGXK63YR8UUHF8.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "7WRGXK63YR8UUHF8.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47724" + }, + "appliesTo" : [ ] + }, + "7WRGXK63YR8UUHF8.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "7WRGXK63YR8UUHF8.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7WRGXK63YR8UUHF8.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "7WRGXK63YR8UUHF8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7WRGXK63YR8UUHF8.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "7WRGXK63YR8UUHF8.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7WRGXK63YR8UUHF8.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "7WRGXK63YR8UUHF8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7WRGXK63YR8UUHF8.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "7WRGXK63YR8UUHF8.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16766" + }, + "appliesTo" : [ ] + }, + "7WRGXK63YR8UUHF8.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "7WRGXK63YR8UUHF8.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7WRGXK63YR8UUHF8.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "7WRGXK63YR8UUHF8", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "7WRGXK63YR8UUHF8.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "7WRGXK63YR8UUHF8.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23973" + }, + "appliesTo" : [ ] + }, + "7WRGXK63YR8UUHF8.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "7WRGXK63YR8UUHF8.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7WRGXK63YR8UUHF8.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "7WRGXK63YR8UUHF8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7WRGXK63YR8UUHF8.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "7WRGXK63YR8UUHF8.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9230000000" + }, + "appliesTo" : [ ] + }, + "7WRGXK63YR8UUHF8.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "7WRGXK63YR8UUHF8.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24243" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7WRGXK63YR8UUHF8.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "7WRGXK63YR8UUHF8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7WRGXK63YR8UUHF8.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "7WRGXK63YR8UUHF8.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7WRGXK63YR8UUHF8.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "7WRGXK63YR8UUHF8", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "7WRGXK63YR8UUHF8.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "7WRGXK63YR8UUHF8.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16493" + }, + "appliesTo" : [ ] + }, + "7WRGXK63YR8UUHF8.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "7WRGXK63YR8UUHF8.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7WRGXK63YR8UUHF8.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "7WRGXK63YR8UUHF8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7WRGXK63YR8UUHF8.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "7WRGXK63YR8UUHF8.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "42568WZBBYJBWCB3" : { + "42568WZBBYJBWCB3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "42568WZBBYJBWCB3", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "42568WZBBYJBWCB3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "42568WZBBYJBWCB3.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2012000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "42568WZBBYJBWCB3.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "42568WZBBYJBWCB3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "42568WZBBYJBWCB3.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "42568WZBBYJBWCB3.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14248" + }, + "appliesTo" : [ ] + }, + "42568WZBBYJBWCB3.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "42568WZBBYJBWCB3.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6265000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "42568WZBBYJBWCB3.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "42568WZBBYJBWCB3", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "42568WZBBYJBWCB3.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "42568WZBBYJBWCB3.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0932000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "42568WZBBYJBWCB3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "42568WZBBYJBWCB3", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "42568WZBBYJBWCB3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "42568WZBBYJBWCB3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "78495" + }, + "appliesTo" : [ ] + }, + "42568WZBBYJBWCB3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "42568WZBBYJBWCB3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "42568WZBBYJBWCB3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "42568WZBBYJBWCB3", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "42568WZBBYJBWCB3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "42568WZBBYJBWCB3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27724" + }, + "appliesTo" : [ ] + }, + "42568WZBBYJBWCB3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "42568WZBBYJBWCB3.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "42568WZBBYJBWCB3.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "42568WZBBYJBWCB3", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "42568WZBBYJBWCB3.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "42568WZBBYJBWCB3.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0362000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "42568WZBBYJBWCB3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "42568WZBBYJBWCB3", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "42568WZBBYJBWCB3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "42568WZBBYJBWCB3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13907" + }, + "appliesTo" : [ ] + }, + "42568WZBBYJBWCB3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "42568WZBBYJBWCB3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5876000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "42568WZBBYJBWCB3.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "42568WZBBYJBWCB3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "42568WZBBYJBWCB3.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "42568WZBBYJBWCB3.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28392" + }, + "appliesTo" : [ ] + }, + "42568WZBBYJBWCB3.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "42568WZBBYJBWCB3.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "42568WZBBYJBWCB3.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "42568WZBBYJBWCB3", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "42568WZBBYJBWCB3.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "42568WZBBYJBWCB3.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "40219" + }, + "appliesTo" : [ ] + }, + "42568WZBBYJBWCB3.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "42568WZBBYJBWCB3.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5304000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "42568WZBBYJBWCB3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "42568WZBBYJBWCB3", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "42568WZBBYJBWCB3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "42568WZBBYJBWCB3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39525" + }, + "appliesTo" : [ ] + }, + "42568WZBBYJBWCB3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "42568WZBBYJBWCB3.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "42568WZBBYJBWCB3.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "42568WZBBYJBWCB3", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "42568WZBBYJBWCB3.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "42568WZBBYJBWCB3.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "42568WZBBYJBWCB3.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "42568WZBBYJBWCB3.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "80225" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "42568WZBBYJBWCB3.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "42568WZBBYJBWCB3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "42568WZBBYJBWCB3.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "42568WZBBYJBWCB3.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2829000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "AUEXKF3V3JXC7F22" : { + "AUEXKF3V3JXC7F22.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "AUEXKF3V3JXC7F22", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "AUEXKF3V3JXC7F22.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "AUEXKF3V3JXC7F22.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2291" + }, + "appliesTo" : [ ] + }, + "AUEXKF3V3JXC7F22.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "AUEXKF3V3JXC7F22.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AUEXKF3V3JXC7F22.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "AUEXKF3V3JXC7F22", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "AUEXKF3V3JXC7F22.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "AUEXKF3V3JXC7F22.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5151" + }, + "appliesTo" : [ ] + }, + "AUEXKF3V3JXC7F22.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "AUEXKF3V3JXC7F22.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AUEXKF3V3JXC7F22.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "AUEXKF3V3JXC7F22", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "AUEXKF3V3JXC7F22.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "AUEXKF3V3JXC7F22.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2185" + }, + "appliesTo" : [ ] + }, + "AUEXKF3V3JXC7F22.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "AUEXKF3V3JXC7F22.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AUEXKF3V3JXC7F22.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "AUEXKF3V3JXC7F22", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "AUEXKF3V3JXC7F22.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "AUEXKF3V3JXC7F22.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "AUEXKF3V3JXC7F22.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "AUEXKF3V3JXC7F22", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "AUEXKF3V3JXC7F22.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "AUEXKF3V3JXC7F22.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1600000000" + }, + "appliesTo" : [ ] + }, + "AUEXKF3V3JXC7F22.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "AUEXKF3V3JXC7F22.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "941" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "VU398KD2CYRQCGPP" : { + "VU398KD2CYRQCGPP.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "VU398KD2CYRQCGPP", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "VU398KD2CYRQCGPP.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "VU398KD2CYRQCGPP.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "142946" + }, + "appliesTo" : [ ] + }, + "VU398KD2CYRQCGPP.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "VU398KD2CYRQCGPP.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VU398KD2CYRQCGPP.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "VU398KD2CYRQCGPP", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "VU398KD2CYRQCGPP.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "VU398KD2CYRQCGPP.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "71727" + }, + "appliesTo" : [ ] + }, + "VU398KD2CYRQCGPP.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "VU398KD2CYRQCGPP.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.1880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VU398KD2CYRQCGPP.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "VU398KD2CYRQCGPP", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "VU398KD2CYRQCGPP.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "VU398KD2CYRQCGPP.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "211366" + }, + "appliesTo" : [ ] + }, + "VU398KD2CYRQCGPP.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "VU398KD2CYRQCGPP.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.0430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VU398KD2CYRQCGPP.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "VU398KD2CYRQCGPP", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "VU398KD2CYRQCGPP.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "VU398KD2CYRQCGPP.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "VU398KD2CYRQCGPP.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "VU398KD2CYRQCGPP.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "398463" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VU398KD2CYRQCGPP.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "VU398KD2CYRQCGPP", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "VU398KD2CYRQCGPP.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "VU398KD2CYRQCGPP.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.5300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VU398KD2CYRQCGPP.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "VU398KD2CYRQCGPP", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "VU398KD2CYRQCGPP.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "VU398KD2CYRQCGPP.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.6350000000" + }, + "appliesTo" : [ ] + }, + "VU398KD2CYRQCGPP.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "VU398KD2CYRQCGPP.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "200649" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VU398KD2CYRQCGPP.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "VU398KD2CYRQCGPP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VU398KD2CYRQCGPP.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "VU398KD2CYRQCGPP.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.4050000000" + }, + "appliesTo" : [ ] + }, + "VU398KD2CYRQCGPP.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "VU398KD2CYRQCGPP.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "73627" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VU398KD2CYRQCGPP.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "VU398KD2CYRQCGPP", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "VU398KD2CYRQCGPP.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "VU398KD2CYRQCGPP.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.8700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VU398KD2CYRQCGPP.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "VU398KD2CYRQCGPP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VU398KD2CYRQCGPP.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "VU398KD2CYRQCGPP.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.9770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VU398KD2CYRQCGPP.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "VU398KD2CYRQCGPP", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "VU398KD2CYRQCGPP.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "VU398KD2CYRQCGPP.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "421358" + }, + "appliesTo" : [ ] + }, + "VU398KD2CYRQCGPP.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "VU398KD2CYRQCGPP.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VU398KD2CYRQCGPP.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "VU398KD2CYRQCGPP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VU398KD2CYRQCGPP.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "VU398KD2CYRQCGPP.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "146669" + }, + "appliesTo" : [ ] + }, + "VU398KD2CYRQCGPP.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "VU398KD2CYRQCGPP.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "TGH4GCMRQQNEDGCJ" : { + "TGH4GCMRQQNEDGCJ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TGH4GCMRQQNEDGCJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TGH4GCMRQQNEDGCJ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TGH4GCMRQQNEDGCJ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22548" + }, + "appliesTo" : [ ] + }, + "TGH4GCMRQQNEDGCJ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TGH4GCMRQQNEDGCJ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TGH4GCMRQQNEDGCJ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TGH4GCMRQQNEDGCJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TGH4GCMRQQNEDGCJ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TGH4GCMRQQNEDGCJ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "44775" + }, + "appliesTo" : [ ] + }, + "TGH4GCMRQQNEDGCJ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TGH4GCMRQQNEDGCJ.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TGH4GCMRQQNEDGCJ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "TGH4GCMRQQNEDGCJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TGH4GCMRQQNEDGCJ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "TGH4GCMRQQNEDGCJ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47139" + }, + "appliesTo" : [ ] + }, + "TGH4GCMRQQNEDGCJ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "TGH4GCMRQQNEDGCJ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TGH4GCMRQQNEDGCJ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "TGH4GCMRQQNEDGCJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TGH4GCMRQQNEDGCJ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "TGH4GCMRQQNEDGCJ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "61493" + }, + "appliesTo" : [ ] + }, + "TGH4GCMRQQNEDGCJ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "TGH4GCMRQQNEDGCJ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TGH4GCMRQQNEDGCJ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "TGH4GCMRQQNEDGCJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TGH4GCMRQQNEDGCJ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "TGH4GCMRQQNEDGCJ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TGH4GCMRQQNEDGCJ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "TGH4GCMRQQNEDGCJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TGH4GCMRQQNEDGCJ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "TGH4GCMRQQNEDGCJ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.5290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TGH4GCMRQQNEDGCJ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TGH4GCMRQQNEDGCJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TGH4GCMRQQNEDGCJ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TGH4GCMRQQNEDGCJ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.2400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TGH4GCMRQQNEDGCJ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "TGH4GCMRQQNEDGCJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TGH4GCMRQQNEDGCJ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "TGH4GCMRQQNEDGCJ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23754" + }, + "appliesTo" : [ ] + }, + "TGH4GCMRQQNEDGCJ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "TGH4GCMRQQNEDGCJ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TGH4GCMRQQNEDGCJ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TGH4GCMRQQNEDGCJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TGH4GCMRQQNEDGCJ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TGH4GCMRQQNEDGCJ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2500000000" + }, + "appliesTo" : [ ] + }, + "TGH4GCMRQQNEDGCJ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TGH4GCMRQQNEDGCJ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "59121" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TGH4GCMRQQNEDGCJ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "TGH4GCMRQQNEDGCJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TGH4GCMRQQNEDGCJ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "TGH4GCMRQQNEDGCJ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "122267" + }, + "appliesTo" : [ ] + }, + "TGH4GCMRQQNEDGCJ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "TGH4GCMRQQNEDGCJ.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TGH4GCMRQQNEDGCJ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "TGH4GCMRQQNEDGCJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TGH4GCMRQQNEDGCJ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "TGH4GCMRQQNEDGCJ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.7890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TGH4GCMRQQNEDGCJ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TGH4GCMRQQNEDGCJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TGH4GCMRQQNEDGCJ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TGH4GCMRQQNEDGCJ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TGH4GCMRQQNEDGCJ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TGH4GCMRQQNEDGCJ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "116369" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "Q49VKFFWC877GUFC" : { + "Q49VKFFWC877GUFC.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Q49VKFFWC877GUFC", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Q49VKFFWC877GUFC.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Q49VKFFWC877GUFC.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3079000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Q49VKFFWC877GUFC.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Q49VKFFWC877GUFC", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Q49VKFFWC877GUFC.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Q49VKFFWC877GUFC.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1323" + }, + "appliesTo" : [ ] + }, + "Q49VKFFWC877GUFC.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Q49VKFFWC877GUFC.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q49VKFFWC877GUFC.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Q49VKFFWC877GUFC", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Q49VKFFWC877GUFC.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Q49VKFFWC877GUFC.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2625" + }, + "appliesTo" : [ ] + }, + "Q49VKFFWC877GUFC.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Q49VKFFWC877GUFC.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Q49VKFFWC877GUFC.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "Q49VKFFWC877GUFC", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Q49VKFFWC877GUFC.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "Q49VKFFWC877GUFC.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2834000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Q49VKFFWC877GUFC.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "Q49VKFFWC877GUFC", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Q49VKFFWC877GUFC.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "Q49VKFFWC877GUFC.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "Q49VKFFWC877GUFC.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "Q49VKFFWC877GUFC.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7205" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Q49VKFFWC877GUFC.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "Q49VKFFWC877GUFC", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Q49VKFFWC877GUFC.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "Q49VKFFWC877GUFC.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2704000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Q49VKFFWC877GUFC.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Q49VKFFWC877GUFC", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Q49VKFFWC877GUFC.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Q49VKFFWC877GUFC.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "Q49VKFFWC877GUFC.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Q49VKFFWC877GUFC.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6430" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Q49VKFFWC877GUFC.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "Q49VKFFWC877GUFC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q49VKFFWC877GUFC.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "Q49VKFFWC877GUFC.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2777" + }, + "appliesTo" : [ ] + }, + "Q49VKFFWC877GUFC.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "Q49VKFFWC877GUFC.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Q49VKFFWC877GUFC.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Q49VKFFWC877GUFC", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "Q49VKFFWC877GUFC.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Q49VKFFWC877GUFC.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3419" + }, + "appliesTo" : [ ] + }, + "Q49VKFFWC877GUFC.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Q49VKFFWC877GUFC.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q49VKFFWC877GUFC.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "Q49VKFFWC877GUFC", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Q49VKFFWC877GUFC.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "Q49VKFFWC877GUFC.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3627" + }, + "appliesTo" : [ ] + }, + "Q49VKFFWC877GUFC.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "Q49VKFFWC877GUFC.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q49VKFFWC877GUFC.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "Q49VKFFWC877GUFC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q49VKFFWC877GUFC.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "Q49VKFFWC877GUFC.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3265000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Q49VKFFWC877GUFC.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "Q49VKFFWC877GUFC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q49VKFFWC877GUFC.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "Q49VKFFWC877GUFC.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1599000000" + }, + "appliesTo" : [ ] + }, + "Q49VKFFWC877GUFC.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "Q49VKFFWC877GUFC.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1400" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "WVXEZZPK3N9SFW9H" : { + "WVXEZZPK3N9SFW9H.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "WVXEZZPK3N9SFW9H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WVXEZZPK3N9SFW9H.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "WVXEZZPK3N9SFW9H.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30512" + }, + "appliesTo" : [ ] + }, + "WVXEZZPK3N9SFW9H.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "WVXEZZPK3N9SFW9H.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WVXEZZPK3N9SFW9H.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "WVXEZZPK3N9SFW9H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WVXEZZPK3N9SFW9H.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "WVXEZZPK3N9SFW9H.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.5360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "WVXEZZPK3N9SFW9H.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "WVXEZZPK3N9SFW9H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WVXEZZPK3N9SFW9H.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "WVXEZZPK3N9SFW9H.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.2140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WVXEZZPK3N9SFW9H.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "WVXEZZPK3N9SFW9H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WVXEZZPK3N9SFW9H.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "WVXEZZPK3N9SFW9H.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "106860" + }, + "appliesTo" : [ ] + }, + "WVXEZZPK3N9SFW9H.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "WVXEZZPK3N9SFW9H.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WVXEZZPK3N9SFW9H.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "WVXEZZPK3N9SFW9H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WVXEZZPK3N9SFW9H.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "WVXEZZPK3N9SFW9H.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "54610" + }, + "appliesTo" : [ ] + }, + "WVXEZZPK3N9SFW9H.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "WVXEZZPK3N9SFW9H.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WVXEZZPK3N9SFW9H.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "WVXEZZPK3N9SFW9H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WVXEZZPK3N9SFW9H.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "WVXEZZPK3N9SFW9H.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "59458" + }, + "appliesTo" : [ ] + }, + "WVXEZZPK3N9SFW9H.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "WVXEZZPK3N9SFW9H.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WVXEZZPK3N9SFW9H.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "WVXEZZPK3N9SFW9H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WVXEZZPK3N9SFW9H.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "WVXEZZPK3N9SFW9H.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "55152" + }, + "appliesTo" : [ ] + }, + "WVXEZZPK3N9SFW9H.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "WVXEZZPK3N9SFW9H.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WVXEZZPK3N9SFW9H.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "WVXEZZPK3N9SFW9H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WVXEZZPK3N9SFW9H.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "WVXEZZPK3N9SFW9H.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.7260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WVXEZZPK3N9SFW9H.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "WVXEZZPK3N9SFW9H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WVXEZZPK3N9SFW9H.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "WVXEZZPK3N9SFW9H.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "WVXEZZPK3N9SFW9H.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "WVXEZZPK3N9SFW9H.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "117595" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WVXEZZPK3N9SFW9H.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "WVXEZZPK3N9SFW9H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WVXEZZPK3N9SFW9H.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "WVXEZZPK3N9SFW9H.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.3720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "WVXEZZPK3N9SFW9H.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "WVXEZZPK3N9SFW9H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WVXEZZPK3N9SFW9H.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "WVXEZZPK3N9SFW9H.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "60156" + }, + "appliesTo" : [ ] + }, + "WVXEZZPK3N9SFW9H.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "WVXEZZPK3N9SFW9H.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WVXEZZPK3N9SFW9H.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "WVXEZZPK3N9SFW9H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WVXEZZPK3N9SFW9H.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "WVXEZZPK3N9SFW9H.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1600000000" + }, + "appliesTo" : [ ] + }, + "WVXEZZPK3N9SFW9H.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "WVXEZZPK3N9SFW9H.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27682" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "ZTRYHCJDHUC65SBA" : { + "ZTRYHCJDHUC65SBA.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ZTRYHCJDHUC65SBA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZTRYHCJDHUC65SBA.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ZTRYHCJDHUC65SBA.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3721" + }, + "appliesTo" : [ ] + }, + "ZTRYHCJDHUC65SBA.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ZTRYHCJDHUC65SBA.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZTRYHCJDHUC65SBA.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ZTRYHCJDHUC65SBA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZTRYHCJDHUC65SBA.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ZTRYHCJDHUC65SBA.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1787" + }, + "appliesTo" : [ ] + }, + "ZTRYHCJDHUC65SBA.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ZTRYHCJDHUC65SBA.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZTRYHCJDHUC65SBA.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ZTRYHCJDHUC65SBA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZTRYHCJDHUC65SBA.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ZTRYHCJDHUC65SBA.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1874" + }, + "appliesTo" : [ ] + }, + "ZTRYHCJDHUC65SBA.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ZTRYHCJDHUC65SBA.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0713000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZTRYHCJDHUC65SBA.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ZTRYHCJDHUC65SBA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZTRYHCJDHUC65SBA.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ZTRYHCJDHUC65SBA.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1466000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZTRYHCJDHUC65SBA.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "ZTRYHCJDHUC65SBA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZTRYHCJDHUC65SBA.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "ZTRYHCJDHUC65SBA.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1395000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZTRYHCJDHUC65SBA.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ZTRYHCJDHUC65SBA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZTRYHCJDHUC65SBA.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ZTRYHCJDHUC65SBA.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ZTRYHCJDHUC65SBA.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ZTRYHCJDHUC65SBA.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3505" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZTRYHCJDHUC65SBA.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ZTRYHCJDHUC65SBA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZTRYHCJDHUC65SBA.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ZTRYHCJDHUC65SBA.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "730" + }, + "appliesTo" : [ ] + }, + "ZTRYHCJDHUC65SBA.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ZTRYHCJDHUC65SBA.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0833000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZTRYHCJDHUC65SBA.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ZTRYHCJDHUC65SBA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZTRYHCJDHUC65SBA.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ZTRYHCJDHUC65SBA.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1704000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZTRYHCJDHUC65SBA.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ZTRYHCJDHUC65SBA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZTRYHCJDHUC65SBA.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ZTRYHCJDHUC65SBA.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ZTRYHCJDHUC65SBA.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ZTRYHCJDHUC65SBA.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1363" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZTRYHCJDHUC65SBA.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ZTRYHCJDHUC65SBA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZTRYHCJDHUC65SBA.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ZTRYHCJDHUC65SBA.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1601000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZTRYHCJDHUC65SBA.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ZTRYHCJDHUC65SBA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZTRYHCJDHUC65SBA.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ZTRYHCJDHUC65SBA.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1447" + }, + "appliesTo" : [ ] + }, + "ZTRYHCJDHUC65SBA.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ZTRYHCJDHUC65SBA.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZTRYHCJDHUC65SBA.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ZTRYHCJDHUC65SBA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZTRYHCJDHUC65SBA.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ZTRYHCJDHUC65SBA.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "687" + }, + "appliesTo" : [ ] + }, + "ZTRYHCJDHUC65SBA.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ZTRYHCJDHUC65SBA.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0785000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "DRMGTKKSRFBNB2TD" : { + "DRMGTKKSRFBNB2TD.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "DRMGTKKSRFBNB2TD", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "DRMGTKKSRFBNB2TD.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "DRMGTKKSRFBNB2TD.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2267" + }, + "appliesTo" : [ ] + }, + "DRMGTKKSRFBNB2TD.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "DRMGTKKSRFBNB2TD.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DRMGTKKSRFBNB2TD.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "DRMGTKKSRFBNB2TD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DRMGTKKSRFBNB2TD.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "DRMGTKKSRFBNB2TD.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DRMGTKKSRFBNB2TD.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "DRMGTKKSRFBNB2TD", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "DRMGTKKSRFBNB2TD.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "DRMGTKKSRFBNB2TD.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5001" + }, + "appliesTo" : [ ] + }, + "DRMGTKKSRFBNB2TD.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "DRMGTKKSRFBNB2TD.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DRMGTKKSRFBNB2TD.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "DRMGTKKSRFBNB2TD", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "DRMGTKKSRFBNB2TD.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "DRMGTKKSRFBNB2TD.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3054" + }, + "appliesTo" : [ ] + }, + "DRMGTKKSRFBNB2TD.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "DRMGTKKSRFBNB2TD.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DRMGTKKSRFBNB2TD.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "DRMGTKKSRFBNB2TD", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "DRMGTKKSRFBNB2TD.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "DRMGTKKSRFBNB2TD.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2159" + }, + "appliesTo" : [ ] + }, + "DRMGTKKSRFBNB2TD.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "DRMGTKKSRFBNB2TD.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DRMGTKKSRFBNB2TD.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "DRMGTKKSRFBNB2TD", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "DRMGTKKSRFBNB2TD.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "DRMGTKKSRFBNB2TD.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6291" + }, + "appliesTo" : [ ] + }, + "DRMGTKKSRFBNB2TD.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "DRMGTKKSRFBNB2TD.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DRMGTKKSRFBNB2TD.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "DRMGTKKSRFBNB2TD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DRMGTKKSRFBNB2TD.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "DRMGTKKSRFBNB2TD.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "994" + }, + "appliesTo" : [ ] + }, + "DRMGTKKSRFBNB2TD.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "DRMGTKKSRFBNB2TD.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DRMGTKKSRFBNB2TD.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "DRMGTKKSRFBNB2TD", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "DRMGTKKSRFBNB2TD.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "DRMGTKKSRFBNB2TD.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DRMGTKKSRFBNB2TD.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "DRMGTKKSRFBNB2TD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DRMGTKKSRFBNB2TD.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "DRMGTKKSRFBNB2TD.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "DRMGTKKSRFBNB2TD.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "DRMGTKKSRFBNB2TD.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2474" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DRMGTKKSRFBNB2TD.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "DRMGTKKSRFBNB2TD", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "DRMGTKKSRFBNB2TD.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "DRMGTKKSRFBNB2TD.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DRMGTKKSRFBNB2TD.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "DRMGTKKSRFBNB2TD", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "DRMGTKKSRFBNB2TD.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "DRMGTKKSRFBNB2TD.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1131" + }, + "appliesTo" : [ ] + }, + "DRMGTKKSRFBNB2TD.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "DRMGTKKSRFBNB2TD.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "B94BJ9BKFE3BAMJW" : { + "B94BJ9BKFE3BAMJW.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "B94BJ9BKFE3BAMJW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "B94BJ9BKFE3BAMJW.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "B94BJ9BKFE3BAMJW.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "B94BJ9BKFE3BAMJW.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "B94BJ9BKFE3BAMJW", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "B94BJ9BKFE3BAMJW.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "B94BJ9BKFE3BAMJW.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12673" + }, + "appliesTo" : [ ] + }, + "B94BJ9BKFE3BAMJW.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "B94BJ9BKFE3BAMJW.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "B94BJ9BKFE3BAMJW.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "B94BJ9BKFE3BAMJW", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "B94BJ9BKFE3BAMJW.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "B94BJ9BKFE3BAMJW.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22959" + }, + "appliesTo" : [ ] + }, + "B94BJ9BKFE3BAMJW.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "B94BJ9BKFE3BAMJW.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "B94BJ9BKFE3BAMJW.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "B94BJ9BKFE3BAMJW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "B94BJ9BKFE3BAMJW.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "B94BJ9BKFE3BAMJW.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11232" + }, + "appliesTo" : [ ] + }, + "B94BJ9BKFE3BAMJW.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "B94BJ9BKFE3BAMJW.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "B94BJ9BKFE3BAMJW.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "B94BJ9BKFE3BAMJW", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "B94BJ9BKFE3BAMJW.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "B94BJ9BKFE3BAMJW.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7396" + }, + "appliesTo" : [ ] + }, + "B94BJ9BKFE3BAMJW.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "B94BJ9BKFE3BAMJW.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "J5XXRJGFYZHJVQZJ" : { + "J5XXRJGFYZHJVQZJ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "J5XXRJGFYZHJVQZJ", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "J5XXRJGFYZHJVQZJ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "J5XXRJGFYZHJVQZJ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1963" + }, + "appliesTo" : [ ] + }, + "J5XXRJGFYZHJVQZJ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "J5XXRJGFYZHJVQZJ.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "J5XXRJGFYZHJVQZJ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "J5XXRJGFYZHJVQZJ", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "J5XXRJGFYZHJVQZJ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "J5XXRJGFYZHJVQZJ.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "J5XXRJGFYZHJVQZJ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "J5XXRJGFYZHJVQZJ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4172" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "J5XXRJGFYZHJVQZJ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "J5XXRJGFYZHJVQZJ", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "J5XXRJGFYZHJVQZJ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "J5XXRJGFYZHJVQZJ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3065" + }, + "appliesTo" : [ ] + }, + "J5XXRJGFYZHJVQZJ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "J5XXRJGFYZHJVQZJ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "J5XXRJGFYZHJVQZJ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "J5XXRJGFYZHJVQZJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J5XXRJGFYZHJVQZJ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "J5XXRJGFYZHJVQZJ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1771" + }, + "appliesTo" : [ ] + }, + "J5XXRJGFYZHJVQZJ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "J5XXRJGFYZHJVQZJ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "J5XXRJGFYZHJVQZJ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "J5XXRJGFYZHJVQZJ", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "J5XXRJGFYZHJVQZJ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "J5XXRJGFYZHJVQZJ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "J5XXRJGFYZHJVQZJ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "J5XXRJGFYZHJVQZJ", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "J5XXRJGFYZHJVQZJ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "J5XXRJGFYZHJVQZJ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "J5XXRJGFYZHJVQZJ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "J5XXRJGFYZHJVQZJ", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "J5XXRJGFYZHJVQZJ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "J5XXRJGFYZHJVQZJ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0630000000" + }, + "appliesTo" : [ ] + }, + "J5XXRJGFYZHJVQZJ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "J5XXRJGFYZHJVQZJ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1028" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "J5XXRJGFYZHJVQZJ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "J5XXRJGFYZHJVQZJ", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "J5XXRJGFYZHJVQZJ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "J5XXRJGFYZHJVQZJ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "J5XXRJGFYZHJVQZJ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "J5XXRJGFYZHJVQZJ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1545" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "J5XXRJGFYZHJVQZJ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "J5XXRJGFYZHJVQZJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J5XXRJGFYZHJVQZJ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "J5XXRJGFYZHJVQZJ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "J5XXRJGFYZHJVQZJ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "J5XXRJGFYZHJVQZJ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "J5XXRJGFYZHJVQZJ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "J5XXRJGFYZHJVQZJ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2776" + }, + "appliesTo" : [ ] + }, + "J5XXRJGFYZHJVQZJ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "J5XXRJGFYZHJVQZJ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "J5XXRJGFYZHJVQZJ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "J5XXRJGFYZHJVQZJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J5XXRJGFYZHJVQZJ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "J5XXRJGFYZHJVQZJ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "904" + }, + "appliesTo" : [ ] + }, + "J5XXRJGFYZHJVQZJ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "J5XXRJGFYZHJVQZJ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "SA3SBP2T8HCQWD6V" : { + "SA3SBP2T8HCQWD6V.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SA3SBP2T8HCQWD6V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SA3SBP2T8HCQWD6V.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SA3SBP2T8HCQWD6V.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SA3SBP2T8HCQWD6V.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SA3SBP2T8HCQWD6V.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22387" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SA3SBP2T8HCQWD6V.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SA3SBP2T8HCQWD6V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SA3SBP2T8HCQWD6V.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SA3SBP2T8HCQWD6V.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2870000000" + }, + "appliesTo" : [ ] + }, + "SA3SBP2T8HCQWD6V.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SA3SBP2T8HCQWD6V.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11274" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SA3SBP2T8HCQWD6V.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "SA3SBP2T8HCQWD6V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SA3SBP2T8HCQWD6V.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "SA3SBP2T8HCQWD6V.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SA3SBP2T8HCQWD6V.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "SA3SBP2T8HCQWD6V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SA3SBP2T8HCQWD6V.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "SA3SBP2T8HCQWD6V.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23570" + }, + "appliesTo" : [ ] + }, + "SA3SBP2T8HCQWD6V.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "SA3SBP2T8HCQWD6V.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SA3SBP2T8HCQWD6V.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "SA3SBP2T8HCQWD6V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SA3SBP2T8HCQWD6V.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "SA3SBP2T8HCQWD6V.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SA3SBP2T8HCQWD6V.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "SA3SBP2T8HCQWD6V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SA3SBP2T8HCQWD6V.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "SA3SBP2T8HCQWD6V.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3560000000" + }, + "appliesTo" : [ ] + }, + "SA3SBP2T8HCQWD6V.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "SA3SBP2T8HCQWD6V.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11877" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SA3SBP2T8HCQWD6V.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "SA3SBP2T8HCQWD6V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SA3SBP2T8HCQWD6V.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "SA3SBP2T8HCQWD6V.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "61133" + }, + "appliesTo" : [ ] + }, + "SA3SBP2T8HCQWD6V.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "SA3SBP2T8HCQWD6V.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SA3SBP2T8HCQWD6V.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SA3SBP2T8HCQWD6V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SA3SBP2T8HCQWD6V.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SA3SBP2T8HCQWD6V.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SA3SBP2T8HCQWD6V.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SA3SBP2T8HCQWD6V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SA3SBP2T8HCQWD6V.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SA3SBP2T8HCQWD6V.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29560" + }, + "appliesTo" : [ ] + }, + "SA3SBP2T8HCQWD6V.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SA3SBP2T8HCQWD6V.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SA3SBP2T8HCQWD6V.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "SA3SBP2T8HCQWD6V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SA3SBP2T8HCQWD6V.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "SA3SBP2T8HCQWD6V.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30746" + }, + "appliesTo" : [ ] + }, + "SA3SBP2T8HCQWD6V.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "SA3SBP2T8HCQWD6V.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SA3SBP2T8HCQWD6V.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SA3SBP2T8HCQWD6V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SA3SBP2T8HCQWD6V.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SA3SBP2T8HCQWD6V.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "58184" + }, + "appliesTo" : [ ] + }, + "SA3SBP2T8HCQWD6V.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SA3SBP2T8HCQWD6V.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SA3SBP2T8HCQWD6V.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "SA3SBP2T8HCQWD6V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SA3SBP2T8HCQWD6V.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "SA3SBP2T8HCQWD6V.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "TTS386B2SXKQXGZP" : { + "TTS386B2SXKQXGZP.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TTS386B2SXKQXGZP", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "TTS386B2SXKQXGZP.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TTS386B2SXKQXGZP.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30527" + }, + "appliesTo" : [ ] + }, + "TTS386B2SXKQXGZP.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TTS386B2SXKQXGZP.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TTS386B2SXKQXGZP.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TTS386B2SXKQXGZP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TTS386B2SXKQXGZP.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TTS386B2SXKQXGZP.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TTS386B2SXKQXGZP.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "TTS386B2SXKQXGZP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TTS386B2SXKQXGZP.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "TTS386B2SXKQXGZP.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0176000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TTS386B2SXKQXGZP.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "TTS386B2SXKQXGZP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TTS386B2SXKQXGZP.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "TTS386B2SXKQXGZP.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25531" + }, + "appliesTo" : [ ] + }, + "TTS386B2SXKQXGZP.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "TTS386B2SXKQXGZP.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TTS386B2SXKQXGZP.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "TTS386B2SXKQXGZP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TTS386B2SXKQXGZP.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "TTS386B2SXKQXGZP.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12895" + }, + "appliesTo" : [ ] + }, + "TTS386B2SXKQXGZP.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "TTS386B2SXKQXGZP.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TTS386B2SXKQXGZP.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "TTS386B2SXKQXGZP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TTS386B2SXKQXGZP.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "TTS386B2SXKQXGZP.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TTS386B2SXKQXGZP.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "TTS386B2SXKQXGZP.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "63800" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TTS386B2SXKQXGZP.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "TTS386B2SXKQXGZP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TTS386B2SXKQXGZP.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "TTS386B2SXKQXGZP.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3878000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TTS386B2SXKQXGZP.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TTS386B2SXKQXGZP", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "TTS386B2SXKQXGZP.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TTS386B2SXKQXGZP.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12040" + }, + "appliesTo" : [ ] + }, + "TTS386B2SXKQXGZP.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TTS386B2SXKQXGZP.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TTS386B2SXKQXGZP.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "TTS386B2SXKQXGZP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TTS386B2SXKQXGZP.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "TTS386B2SXKQXGZP.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2236000000" + }, + "appliesTo" : [ ] + }, + "TTS386B2SXKQXGZP.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "TTS386B2SXKQXGZP.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32156" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TTS386B2SXKQXGZP.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "TTS386B2SXKQXGZP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TTS386B2SXKQXGZP.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "TTS386B2SXKQXGZP.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5252000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TTS386B2SXKQXGZP.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TTS386B2SXKQXGZP", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "TTS386B2SXKQXGZP.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TTS386B2SXKQXGZP.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23856" + }, + "appliesTo" : [ ] + }, + "TTS386B2SXKQXGZP.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TTS386B2SXKQXGZP.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TTS386B2SXKQXGZP.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TTS386B2SXKQXGZP", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "TTS386B2SXKQXGZP.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TTS386B2SXKQXGZP.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "59712" + }, + "appliesTo" : [ ] + }, + "TTS386B2SXKQXGZP.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TTS386B2SXKQXGZP.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "6S9PZ5AUPX5MV74N" : { + "6S9PZ5AUPX5MV74N.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6S9PZ5AUPX5MV74N", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6S9PZ5AUPX5MV74N.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6S9PZ5AUPX5MV74N.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3548" + }, + "appliesTo" : [ ] + }, + "6S9PZ5AUPX5MV74N.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6S9PZ5AUPX5MV74N.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6S9PZ5AUPX5MV74N.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6S9PZ5AUPX5MV74N", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6S9PZ5AUPX5MV74N.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6S9PZ5AUPX5MV74N.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1609" + }, + "appliesTo" : [ ] + }, + "6S9PZ5AUPX5MV74N.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6S9PZ5AUPX5MV74N.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6S9PZ5AUPX5MV74N.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "6S9PZ5AUPX5MV74N", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "6S9PZ5AUPX5MV74N.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "6S9PZ5AUPX5MV74N.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1760" + }, + "appliesTo" : [ ] + }, + "6S9PZ5AUPX5MV74N.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "6S9PZ5AUPX5MV74N.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6S9PZ5AUPX5MV74N.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6S9PZ5AUPX5MV74N", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6S9PZ5AUPX5MV74N.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6S9PZ5AUPX5MV74N.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1130000000" + }, + "appliesTo" : [ ] + }, + "6S9PZ5AUPX5MV74N.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6S9PZ5AUPX5MV74N.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "652" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6S9PZ5AUPX5MV74N.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "6S9PZ5AUPX5MV74N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6S9PZ5AUPX5MV74N.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "6S9PZ5AUPX5MV74N.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1773" + }, + "appliesTo" : [ ] + }, + "6S9PZ5AUPX5MV74N.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "6S9PZ5AUPX5MV74N.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6S9PZ5AUPX5MV74N.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "6S9PZ5AUPX5MV74N", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "6S9PZ5AUPX5MV74N.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "6S9PZ5AUPX5MV74N.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6S9PZ5AUPX5MV74N.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "6S9PZ5AUPX5MV74N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6S9PZ5AUPX5MV74N.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "6S9PZ5AUPX5MV74N.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "637" + }, + "appliesTo" : [ ] + }, + "6S9PZ5AUPX5MV74N.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "6S9PZ5AUPX5MV74N.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6S9PZ5AUPX5MV74N.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6S9PZ5AUPX5MV74N", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6S9PZ5AUPX5MV74N.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6S9PZ5AUPX5MV74N.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6S9PZ5AUPX5MV74N.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6S9PZ5AUPX5MV74N", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6S9PZ5AUPX5MV74N.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6S9PZ5AUPX5MV74N.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1016" + }, + "appliesTo" : [ ] + }, + "6S9PZ5AUPX5MV74N.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6S9PZ5AUPX5MV74N.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6S9PZ5AUPX5MV74N.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "6S9PZ5AUPX5MV74N", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "6S9PZ5AUPX5MV74N.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "6S9PZ5AUPX5MV74N.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4499" + }, + "appliesTo" : [ ] + }, + "6S9PZ5AUPX5MV74N.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "6S9PZ5AUPX5MV74N.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6S9PZ5AUPX5MV74N.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "6S9PZ5AUPX5MV74N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6S9PZ5AUPX5MV74N.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "6S9PZ5AUPX5MV74N.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "XVYMD36W2Q986RBB" : { + "XVYMD36W2Q986RBB.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XVYMD36W2Q986RBB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XVYMD36W2Q986RBB.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XVYMD36W2Q986RBB.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0560000000" + }, + "appliesTo" : [ ] + }, + "XVYMD36W2Q986RBB.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XVYMD36W2Q986RBB.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "491" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XVYMD36W2Q986RBB.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XVYMD36W2Q986RBB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XVYMD36W2Q986RBB.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XVYMD36W2Q986RBB.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "965" + }, + "appliesTo" : [ ] + }, + "XVYMD36W2Q986RBB.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XVYMD36W2Q986RBB.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XVYMD36W2Q986RBB.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "XVYMD36W2Q986RBB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XVYMD36W2Q986RBB.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "XVYMD36W2Q986RBB.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XVYMD36W2Q986RBB.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XVYMD36W2Q986RBB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XVYMD36W2Q986RBB.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XVYMD36W2Q986RBB.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XVYMD36W2Q986RBB.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XVYMD36W2Q986RBB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XVYMD36W2Q986RBB.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XVYMD36W2Q986RBB.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1897" + }, + "appliesTo" : [ ] + }, + "XVYMD36W2Q986RBB.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XVYMD36W2Q986RBB.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XVYMD36W2Q986RBB.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XVYMD36W2Q986RBB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XVYMD36W2Q986RBB.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XVYMD36W2Q986RBB.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1001" + }, + "appliesTo" : [ ] + }, + "XVYMD36W2Q986RBB.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XVYMD36W2Q986RBB.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "3753VU7A9Z8KFJ3N" : { + "3753VU7A9Z8KFJ3N.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "3753VU7A9Z8KFJ3N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3753VU7A9Z8KFJ3N.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "3753VU7A9Z8KFJ3N.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9990000000" + }, + "appliesTo" : [ ] + }, + "3753VU7A9Z8KFJ3N.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "3753VU7A9Z8KFJ3N.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "52543" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3753VU7A9Z8KFJ3N.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "3753VU7A9Z8KFJ3N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3753VU7A9Z8KFJ3N.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "3753VU7A9Z8KFJ3N.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.1240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3753VU7A9Z8KFJ3N.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "3753VU7A9Z8KFJ3N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3753VU7A9Z8KFJ3N.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "3753VU7A9Z8KFJ3N.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "111714" + }, + "appliesTo" : [ ] + }, + "3753VU7A9Z8KFJ3N.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "3753VU7A9Z8KFJ3N.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3753VU7A9Z8KFJ3N.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "3753VU7A9Z8KFJ3N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3753VU7A9Z8KFJ3N.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "3753VU7A9Z8KFJ3N.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.1580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3753VU7A9Z8KFJ3N.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "3753VU7A9Z8KFJ3N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3753VU7A9Z8KFJ3N.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "3753VU7A9Z8KFJ3N.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.7410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3753VU7A9Z8KFJ3N.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "3753VU7A9Z8KFJ3N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3753VU7A9Z8KFJ3N.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "3753VU7A9Z8KFJ3N.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2580000000" + }, + "appliesTo" : [ ] + }, + "3753VU7A9Z8KFJ3N.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "3753VU7A9Z8KFJ3N.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28540" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3753VU7A9Z8KFJ3N.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "3753VU7A9Z8KFJ3N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3753VU7A9Z8KFJ3N.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "3753VU7A9Z8KFJ3N.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "51248" + }, + "appliesTo" : [ ] + }, + "3753VU7A9Z8KFJ3N.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "3753VU7A9Z8KFJ3N.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3753VU7A9Z8KFJ3N.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "3753VU7A9Z8KFJ3N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3753VU7A9Z8KFJ3N.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "3753VU7A9Z8KFJ3N.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "56291" + }, + "appliesTo" : [ ] + }, + "3753VU7A9Z8KFJ3N.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "3753VU7A9Z8KFJ3N.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3753VU7A9Z8KFJ3N.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "3753VU7A9Z8KFJ3N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3753VU7A9Z8KFJ3N.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "3753VU7A9Z8KFJ3N.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9640000000" + }, + "appliesTo" : [ ] + }, + "3753VU7A9Z8KFJ3N.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "3753VU7A9Z8KFJ3N.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25967" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3753VU7A9Z8KFJ3N.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "3753VU7A9Z8KFJ3N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3753VU7A9Z8KFJ3N.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "3753VU7A9Z8KFJ3N.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "56457" + }, + "appliesTo" : [ ] + }, + "3753VU7A9Z8KFJ3N.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "3753VU7A9Z8KFJ3N.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3753VU7A9Z8KFJ3N.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "3753VU7A9Z8KFJ3N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3753VU7A9Z8KFJ3N.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "3753VU7A9Z8KFJ3N.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "101954" + }, + "appliesTo" : [ ] + }, + "3753VU7A9Z8KFJ3N.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "3753VU7A9Z8KFJ3N.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3753VU7A9Z8KFJ3N.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "3753VU7A9Z8KFJ3N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3753VU7A9Z8KFJ3N.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "3753VU7A9Z8KFJ3N.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.4790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "TS9C3QP757SZ6Y65" : { + "TS9C3QP757SZ6Y65.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TS9C3QP757SZ6Y65", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TS9C3QP757SZ6Y65.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TS9C3QP757SZ6Y65.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TS9C3QP757SZ6Y65.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TS9C3QP757SZ6Y65", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "TS9C3QP757SZ6Y65.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TS9C3QP757SZ6Y65.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7900000000" + }, + "appliesTo" : [ ] + }, + "TS9C3QP757SZ6Y65.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TS9C3QP757SZ6Y65.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47052" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TS9C3QP757SZ6Y65.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "TS9C3QP757SZ6Y65", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TS9C3QP757SZ6Y65.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "TS9C3QP757SZ6Y65.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "94790" + }, + "appliesTo" : [ ] + }, + "TS9C3QP757SZ6Y65.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "TS9C3QP757SZ6Y65.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TS9C3QP757SZ6Y65.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TS9C3QP757SZ6Y65", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "TS9C3QP757SZ6Y65.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TS9C3QP757SZ6Y65.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TS9C3QP757SZ6Y65.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TS9C3QP757SZ6Y65.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "93768" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TS9C3QP757SZ6Y65.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "TS9C3QP757SZ6Y65", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TS9C3QP757SZ6Y65.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "TS9C3QP757SZ6Y65.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6313000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TS9C3QP757SZ6Y65.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TS9C3QP757SZ6Y65", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "TS9C3QP757SZ6Y65.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TS9C3QP757SZ6Y65.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32244" + }, + "appliesTo" : [ ] + }, + "TS9C3QP757SZ6Y65.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TS9C3QP757SZ6Y65.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TS9C3QP757SZ6Y65.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TS9C3QP757SZ6Y65", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "TS9C3QP757SZ6Y65.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TS9C3QP757SZ6Y65.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16150" + }, + "appliesTo" : [ ] + }, + "TS9C3QP757SZ6Y65.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TS9C3QP757SZ6Y65.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TS9C3QP757SZ6Y65.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "TS9C3QP757SZ6Y65", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TS9C3QP757SZ6Y65.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "TS9C3QP757SZ6Y65.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32663" + }, + "appliesTo" : [ ] + }, + "TS9C3QP757SZ6Y65.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "TS9C3QP757SZ6Y65.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TS9C3QP757SZ6Y65.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "TS9C3QP757SZ6Y65", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TS9C3QP757SZ6Y65.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "TS9C3QP757SZ6Y65.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TS9C3QP757SZ6Y65.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "TS9C3QP757SZ6Y65", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TS9C3QP757SZ6Y65.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "TS9C3QP757SZ6Y65.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47459" + }, + "appliesTo" : [ ] + }, + "TS9C3QP757SZ6Y65.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "TS9C3QP757SZ6Y65.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8059000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TS9C3QP757SZ6Y65.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "TS9C3QP757SZ6Y65", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TS9C3QP757SZ6Y65.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "TS9C3QP757SZ6Y65.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16364" + }, + "appliesTo" : [ ] + }, + "TS9C3QP757SZ6Y65.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "TS9C3QP757SZ6Y65.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TS9C3QP757SZ6Y65.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "TS9C3QP757SZ6Y65", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TS9C3QP757SZ6Y65.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "TS9C3QP757SZ6Y65.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7544000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "8SB633RNEF7QTBRF" : { + "8SB633RNEF7QTBRF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "8SB633RNEF7QTBRF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "8SB633RNEF7QTBRF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "8SB633RNEF7QTBRF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8202" + }, + "appliesTo" : [ ] + }, + "8SB633RNEF7QTBRF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "8SB633RNEF7QTBRF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8SB633RNEF7QTBRF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "8SB633RNEF7QTBRF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "8SB633RNEF7QTBRF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "8SB633RNEF7QTBRF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14015" + }, + "appliesTo" : [ ] + }, + "8SB633RNEF7QTBRF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "8SB633RNEF7QTBRF.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8SB633RNEF7QTBRF.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "8SB633RNEF7QTBRF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8SB633RNEF7QTBRF.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "8SB633RNEF7QTBRF.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8SB633RNEF7QTBRF.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "8SB633RNEF7QTBRF", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "8SB633RNEF7QTBRF.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "8SB633RNEF7QTBRF.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6280000000" + }, + "appliesTo" : [ ] + }, + "8SB633RNEF7QTBRF.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "8SB633RNEF7QTBRF.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22009" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8SB633RNEF7QTBRF.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "8SB633RNEF7QTBRF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8SB633RNEF7QTBRF.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "8SB633RNEF7QTBRF.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8217" + }, + "appliesTo" : [ ] + }, + "8SB633RNEF7QTBRF.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "8SB633RNEF7QTBRF.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8SB633RNEF7QTBRF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "8SB633RNEF7QTBRF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "8SB633RNEF7QTBRF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "8SB633RNEF7QTBRF.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5430000000" + }, + "appliesTo" : [ ] + }, + "8SB633RNEF7QTBRF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "8SB633RNEF7QTBRF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12443" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8SB633RNEF7QTBRF.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "8SB633RNEF7QTBRF", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "8SB633RNEF7QTBRF.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "8SB633RNEF7QTBRF.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37710" + }, + "appliesTo" : [ ] + }, + "8SB633RNEF7QTBRF.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "8SB633RNEF7QTBRF.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8SB633RNEF7QTBRF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "8SB633RNEF7QTBRF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "8SB633RNEF7QTBRF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "8SB633RNEF7QTBRF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25119" + }, + "appliesTo" : [ ] + }, + "8SB633RNEF7QTBRF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "8SB633RNEF7QTBRF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8SB633RNEF7QTBRF.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "8SB633RNEF7QTBRF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8SB633RNEF7QTBRF.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "8SB633RNEF7QTBRF.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16050" + }, + "appliesTo" : [ ] + }, + "8SB633RNEF7QTBRF.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "8SB633RNEF7QTBRF.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8SB633RNEF7QTBRF.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "8SB633RNEF7QTBRF", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "8SB633RNEF7QTBRF.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "8SB633RNEF7QTBRF.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8SB633RNEF7QTBRF.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "8SB633RNEF7QTBRF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "8SB633RNEF7QTBRF.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "8SB633RNEF7QTBRF.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "AWHZBBETT4RF387X" : { + "AWHZBBETT4RF387X.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "AWHZBBETT4RF387X", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "AWHZBBETT4RF387X.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "AWHZBBETT4RF387X.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5017" + }, + "appliesTo" : [ ] + }, + "AWHZBBETT4RF387X.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "AWHZBBETT4RF387X.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AWHZBBETT4RF387X.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "AWHZBBETT4RF387X", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "AWHZBBETT4RF387X.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "AWHZBBETT4RF387X.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2046" + }, + "appliesTo" : [ ] + }, + "AWHZBBETT4RF387X.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "AWHZBBETT4RF387X.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AWHZBBETT4RF387X.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "AWHZBBETT4RF387X", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "AWHZBBETT4RF387X.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "AWHZBBETT4RF387X.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2570000000" + }, + "appliesTo" : [ ] + }, + "AWHZBBETT4RF387X.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "AWHZBBETT4RF387X.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4511" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AWHZBBETT4RF387X.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "AWHZBBETT4RF387X", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "AWHZBBETT4RF387X.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "AWHZBBETT4RF387X.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "AWHZBBETT4RF387X.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "AWHZBBETT4RF387X", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "AWHZBBETT4RF387X.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "AWHZBBETT4RF387X.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "AWHZBBETT4RF387X.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "AWHZBBETT4RF387X.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10598" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "G6V333UDG5YNV6DP" : { + "G6V333UDG5YNV6DP.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "G6V333UDG5YNV6DP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "G6V333UDG5YNV6DP.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "G6V333UDG5YNV6DP.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32750" + }, + "appliesTo" : [ ] + }, + "G6V333UDG5YNV6DP.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "G6V333UDG5YNV6DP.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "G6V333UDG5YNV6DP.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "G6V333UDG5YNV6DP", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "G6V333UDG5YNV6DP.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "G6V333UDG5YNV6DP.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "48172" + }, + "appliesTo" : [ ] + }, + "G6V333UDG5YNV6DP.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "G6V333UDG5YNV6DP.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "G6V333UDG5YNV6DP.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "G6V333UDG5YNV6DP", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "G6V333UDG5YNV6DP.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "G6V333UDG5YNV6DP.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "G6V333UDG5YNV6DP.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "G6V333UDG5YNV6DP", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "G6V333UDG5YNV6DP.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "G6V333UDG5YNV6DP.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "G6V333UDG5YNV6DP.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "G6V333UDG5YNV6DP.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "96188" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "G6V333UDG5YNV6DP.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "G6V333UDG5YNV6DP", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "G6V333UDG5YNV6DP.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "G6V333UDG5YNV6DP.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "94005" + }, + "appliesTo" : [ ] + }, + "G6V333UDG5YNV6DP.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "G6V333UDG5YNV6DP.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "G6V333UDG5YNV6DP.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "G6V333UDG5YNV6DP", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "G6V333UDG5YNV6DP.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "G6V333UDG5YNV6DP.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "G6V333UDG5YNV6DP.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "G6V333UDG5YNV6DP.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32347" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "G6V333UDG5YNV6DP.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "G6V333UDG5YNV6DP", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "G6V333UDG5YNV6DP.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "G6V333UDG5YNV6DP.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47178" + }, + "appliesTo" : [ ] + }, + "G6V333UDG5YNV6DP.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "G6V333UDG5YNV6DP.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "G6V333UDG5YNV6DP.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "G6V333UDG5YNV6DP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "G6V333UDG5YNV6DP.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "G6V333UDG5YNV6DP.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "G6V333UDG5YNV6DP.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "G6V333UDG5YNV6DP", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "G6V333UDG5YNV6DP.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "G6V333UDG5YNV6DP.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "G6V333UDG5YNV6DP.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "G6V333UDG5YNV6DP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "G6V333UDG5YNV6DP.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "G6V333UDG5YNV6DP.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16408" + }, + "appliesTo" : [ ] + }, + "G6V333UDG5YNV6DP.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "G6V333UDG5YNV6DP.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "G6V333UDG5YNV6DP.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "G6V333UDG5YNV6DP", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "G6V333UDG5YNV6DP.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "G6V333UDG5YNV6DP.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8500000000" + }, + "appliesTo" : [ ] + }, + "G6V333UDG5YNV6DP.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "G6V333UDG5YNV6DP.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16202" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "3H63S5QV423QAHHQ" : { + "3H63S5QV423QAHHQ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "3H63S5QV423QAHHQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3H63S5QV423QAHHQ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "3H63S5QV423QAHHQ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3H63S5QV423QAHHQ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "3H63S5QV423QAHHQ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "3H63S5QV423QAHHQ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "3H63S5QV423QAHHQ.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "3H63S5QV423QAHHQ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "3H63S5QV423QAHHQ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25445" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3H63S5QV423QAHHQ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "3H63S5QV423QAHHQ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "3H63S5QV423QAHHQ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "3H63S5QV423QAHHQ.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0759000000" + }, + "appliesTo" : [ ] + }, + "3H63S5QV423QAHHQ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "3H63S5QV423QAHHQ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28275" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3H63S5QV423QAHHQ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "3H63S5QV423QAHHQ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "3H63S5QV423QAHHQ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "3H63S5QV423QAHHQ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32518" + }, + "appliesTo" : [ ] + }, + "3H63S5QV423QAHHQ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "3H63S5QV423QAHHQ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2374000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3H63S5QV423QAHHQ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "3H63S5QV423QAHHQ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "3H63S5QV423QAHHQ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "3H63S5QV423QAHHQ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3H63S5QV423QAHHQ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "3H63S5QV423QAHHQ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "3H63S5QV423QAHHQ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "3H63S5QV423QAHHQ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "3H63S5QV423QAHHQ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "3H63S5QV423QAHHQ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "53158" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3H63S5QV423QAHHQ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "3H63S5QV423QAHHQ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "3H63S5QV423QAHHQ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "3H63S5QV423QAHHQ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6727000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3H63S5QV423QAHHQ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "3H63S5QV423QAHHQ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "3H63S5QV423QAHHQ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "3H63S5QV423QAHHQ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12982" + }, + "appliesTo" : [ ] + }, + "3H63S5QV423QAHHQ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "3H63S5QV423QAHHQ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3H63S5QV423QAHHQ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "3H63S5QV423QAHHQ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "3H63S5QV423QAHHQ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "3H63S5QV423QAHHQ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1122000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3H63S5QV423QAHHQ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "3H63S5QV423QAHHQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3H63S5QV423QAHHQ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "3H63S5QV423QAHHQ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7043000000" + }, + "appliesTo" : [ ] + }, + "3H63S5QV423QAHHQ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "3H63S5QV423QAHHQ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14930" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3H63S5QV423QAHHQ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "3H63S5QV423QAHHQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3H63S5QV423QAHHQ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "3H63S5QV423QAHHQ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29262" + }, + "appliesTo" : [ ] + }, + "3H63S5QV423QAHHQ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "3H63S5QV423QAHHQ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3H63S5QV423QAHHQ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "3H63S5QV423QAHHQ", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "3H63S5QV423QAHHQ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "3H63S5QV423QAHHQ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "63735" + }, + "appliesTo" : [ ] + }, + "3H63S5QV423QAHHQ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "3H63S5QV423QAHHQ.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "64EUYDYDPNWKXQUX" : { + "64EUYDYDPNWKXQUX.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "64EUYDYDPNWKXQUX", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "64EUYDYDPNWKXQUX.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "64EUYDYDPNWKXQUX.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16924" + }, + "appliesTo" : [ ] + }, + "64EUYDYDPNWKXQUX.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "64EUYDYDPNWKXQUX.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "64EUYDYDPNWKXQUX.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "64EUYDYDPNWKXQUX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "64EUYDYDPNWKXQUX.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "64EUYDYDPNWKXQUX.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18886" + }, + "appliesTo" : [ ] + }, + "64EUYDYDPNWKXQUX.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "64EUYDYDPNWKXQUX.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "64EUYDYDPNWKXQUX.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "64EUYDYDPNWKXQUX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "64EUYDYDPNWKXQUX.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "64EUYDYDPNWKXQUX.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34682" + }, + "appliesTo" : [ ] + }, + "64EUYDYDPNWKXQUX.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "64EUYDYDPNWKXQUX.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "64EUYDYDPNWKXQUX.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "64EUYDYDPNWKXQUX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "64EUYDYDPNWKXQUX.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "64EUYDYDPNWKXQUX.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11213" + }, + "appliesTo" : [ ] + }, + "64EUYDYDPNWKXQUX.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "64EUYDYDPNWKXQUX.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "64EUYDYDPNWKXQUX.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "64EUYDYDPNWKXQUX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "64EUYDYDPNWKXQUX.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "64EUYDYDPNWKXQUX.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "URVKD93M9ZPEGG7Z" : { + "URVKD93M9ZPEGG7Z.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "URVKD93M9ZPEGG7Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "URVKD93M9ZPEGG7Z.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "URVKD93M9ZPEGG7Z.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.5870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "URVKD93M9ZPEGG7Z.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "URVKD93M9ZPEGG7Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "URVKD93M9ZPEGG7Z.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "URVKD93M9ZPEGG7Z.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39447" + }, + "appliesTo" : [ ] + }, + "URVKD93M9ZPEGG7Z.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "URVKD93M9ZPEGG7Z.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.6330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "URVKD93M9ZPEGG7Z.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "URVKD93M9ZPEGG7Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "URVKD93M9ZPEGG7Z.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "URVKD93M9ZPEGG7Z.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "78456" + }, + "appliesTo" : [ ] + }, + "URVKD93M9ZPEGG7Z.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "URVKD93M9ZPEGG7Z.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "URVKD93M9ZPEGG7Z.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "URVKD93M9ZPEGG7Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "URVKD93M9ZPEGG7Z.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "URVKD93M9ZPEGG7Z.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34302" + }, + "appliesTo" : [ ] + }, + "URVKD93M9ZPEGG7Z.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "URVKD93M9ZPEGG7Z.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.0460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "URVKD93M9ZPEGG7Z.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "URVKD93M9ZPEGG7Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "URVKD93M9ZPEGG7Z.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "URVKD93M9ZPEGG7Z.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.3530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "URVKD93M9ZPEGG7Z.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "URVKD93M9ZPEGG7Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "URVKD93M9ZPEGG7Z.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "URVKD93M9ZPEGG7Z.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4140000000" + }, + "appliesTo" : [ ] + }, + "URVKD93M9ZPEGG7Z.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "URVKD93M9ZPEGG7Z.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "60018" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "URVKD93M9ZPEGG7Z.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "URVKD93M9ZPEGG7Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "URVKD93M9ZPEGG7Z.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "URVKD93M9ZPEGG7Z.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "101532" + }, + "appliesTo" : [ ] + }, + "URVKD93M9ZPEGG7Z.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "URVKD93M9ZPEGG7Z.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "URVKD93M9ZPEGG7Z.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "URVKD93M9ZPEGG7Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "URVKD93M9ZPEGG7Z.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "URVKD93M9ZPEGG7Z.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.4200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "URVKD93M9ZPEGG7Z.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "URVKD93M9ZPEGG7Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "URVKD93M9ZPEGG7Z.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "URVKD93M9ZPEGG7Z.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "121051" + }, + "appliesTo" : [ ] + }, + "URVKD93M9ZPEGG7Z.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "URVKD93M9ZPEGG7Z.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "URVKD93M9ZPEGG7Z.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "URVKD93M9ZPEGG7Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "URVKD93M9ZPEGG7Z.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "URVKD93M9ZPEGG7Z.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.0630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "URVKD93M9ZPEGG7Z.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "URVKD93M9ZPEGG7Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "URVKD93M9ZPEGG7Z.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "URVKD93M9ZPEGG7Z.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "68371" + }, + "appliesTo" : [ ] + }, + "URVKD93M9ZPEGG7Z.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "URVKD93M9ZPEGG7Z.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "URVKD93M9ZPEGG7Z.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "URVKD93M9ZPEGG7Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "URVKD93M9ZPEGG7Z.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "URVKD93M9ZPEGG7Z.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "52189" + }, + "appliesTo" : [ ] + }, + "URVKD93M9ZPEGG7Z.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "URVKD93M9ZPEGG7Z.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "BUEPRDN9GYBNSP3F" : { + "BUEPRDN9GYBNSP3F.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "BUEPRDN9GYBNSP3F", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BUEPRDN9GYBNSP3F.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "BUEPRDN9GYBNSP3F.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "BUEPRDN9GYBNSP3F.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "BUEPRDN9GYBNSP3F.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "57691" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BUEPRDN9GYBNSP3F.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "BUEPRDN9GYBNSP3F", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BUEPRDN9GYBNSP3F.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "BUEPRDN9GYBNSP3F.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23653" + }, + "appliesTo" : [ ] + }, + "BUEPRDN9GYBNSP3F.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "BUEPRDN9GYBNSP3F.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BUEPRDN9GYBNSP3F.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "BUEPRDN9GYBNSP3F", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BUEPRDN9GYBNSP3F.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "BUEPRDN9GYBNSP3F.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29282" + }, + "appliesTo" : [ ] + }, + "BUEPRDN9GYBNSP3F.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "BUEPRDN9GYBNSP3F.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BUEPRDN9GYBNSP3F.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "BUEPRDN9GYBNSP3F", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BUEPRDN9GYBNSP3F.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "BUEPRDN9GYBNSP3F.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BUEPRDN9GYBNSP3F.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "BUEPRDN9GYBNSP3F", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BUEPRDN9GYBNSP3F.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "BUEPRDN9GYBNSP3F.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "45362" + }, + "appliesTo" : [ ] + }, + "BUEPRDN9GYBNSP3F.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "BUEPRDN9GYBNSP3F.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BUEPRDN9GYBNSP3F.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "BUEPRDN9GYBNSP3F", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BUEPRDN9GYBNSP3F.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "BUEPRDN9GYBNSP3F.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BUEPRDN9GYBNSP3F.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "BUEPRDN9GYBNSP3F", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BUEPRDN9GYBNSP3F.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "BUEPRDN9GYBNSP3F.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22041" + }, + "appliesTo" : [ ] + }, + "BUEPRDN9GYBNSP3F.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "BUEPRDN9GYBNSP3F.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BUEPRDN9GYBNSP3F.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "BUEPRDN9GYBNSP3F", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BUEPRDN9GYBNSP3F.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "BUEPRDN9GYBNSP3F.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11195" + }, + "appliesTo" : [ ] + }, + "BUEPRDN9GYBNSP3F.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "BUEPRDN9GYBNSP3F.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BUEPRDN9GYBNSP3F.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "BUEPRDN9GYBNSP3F", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BUEPRDN9GYBNSP3F.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "BUEPRDN9GYBNSP3F.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "BUEPRDN9GYBNSP3F.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "BUEPRDN9GYBNSP3F.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24616" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BUEPRDN9GYBNSP3F.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "BUEPRDN9GYBNSP3F", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BUEPRDN9GYBNSP3F.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "BUEPRDN9GYBNSP3F.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BUEPRDN9GYBNSP3F.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "BUEPRDN9GYBNSP3F", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "BUEPRDN9GYBNSP3F.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "BUEPRDN9GYBNSP3F.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BUEPRDN9GYBNSP3F.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "BUEPRDN9GYBNSP3F", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BUEPRDN9GYBNSP3F.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "BUEPRDN9GYBNSP3F.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12508" + }, + "appliesTo" : [ ] + }, + "BUEPRDN9GYBNSP3F.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "BUEPRDN9GYBNSP3F.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "N8NT76W8DSVFQXZF" : { + "N8NT76W8DSVFQXZF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "N8NT76W8DSVFQXZF", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "N8NT76W8DSVFQXZF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "N8NT76W8DSVFQXZF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1514248" + }, + "appliesTo" : [ ] + }, + "N8NT76W8DSVFQXZF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "N8NT76W8DSVFQXZF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "N8NT76W8DSVFQXZF.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "N8NT76W8DSVFQXZF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "N8NT76W8DSVFQXZF.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "N8NT76W8DSVFQXZF.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "58.1760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "N8NT76W8DSVFQXZF.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "N8NT76W8DSVFQXZF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "N8NT76W8DSVFQXZF.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "N8NT76W8DSVFQXZF.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "768079" + }, + "appliesTo" : [ ] + }, + "N8NT76W8DSVFQXZF.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "N8NT76W8DSVFQXZF.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "29.2270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "N8NT76W8DSVFQXZF.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "N8NT76W8DSVFQXZF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "N8NT76W8DSVFQXZF.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "N8NT76W8DSVFQXZF.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "58.8190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "N8NT76W8DSVFQXZF.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "N8NT76W8DSVFQXZF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N8NT76W8DSVFQXZF.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "N8NT76W8DSVFQXZF.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "549340" + }, + "appliesTo" : [ ] + }, + "N8NT76W8DSVFQXZF.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "N8NT76W8DSVFQXZF.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "N8NT76W8DSVFQXZF.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "N8NT76W8DSVFQXZF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "N8NT76W8DSVFQXZF.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "N8NT76W8DSVFQXZF.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "N8NT76W8DSVFQXZF.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "N8NT76W8DSVFQXZF.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1533757" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "N8NT76W8DSVFQXZF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "N8NT76W8DSVFQXZF", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "N8NT76W8DSVFQXZF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "N8NT76W8DSVFQXZF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "539261" + }, + "appliesTo" : [ ] + }, + "N8NT76W8DSVFQXZF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "N8NT76W8DSVFQXZF.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "N8NT76W8DSVFQXZF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "N8NT76W8DSVFQXZF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "N8NT76W8DSVFQXZF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "N8NT76W8DSVFQXZF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "760254" + }, + "appliesTo" : [ ] + }, + "N8NT76W8DSVFQXZF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "N8NT76W8DSVFQXZF.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "28.9290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "N8NT76W8DSVFQXZF.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "N8NT76W8DSVFQXZF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N8NT76W8DSVFQXZF.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "N8NT76W8DSVFQXZF.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "63.3400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "N8NT76W8DSVFQXZF.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "N8NT76W8DSVFQXZF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N8NT76W8DSVFQXZF.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "N8NT76W8DSVFQXZF.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "275459" + }, + "appliesTo" : [ ] + }, + "N8NT76W8DSVFQXZF.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "N8NT76W8DSVFQXZF.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "31.4450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "N8NT76W8DSVFQXZF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "N8NT76W8DSVFQXZF", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "N8NT76W8DSVFQXZF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "N8NT76W8DSVFQXZF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "270316" + }, + "appliesTo" : [ ] + }, + "N8NT76W8DSVFQXZF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "N8NT76W8DSVFQXZF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "30.8580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "N8NT76W8DSVFQXZF.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "N8NT76W8DSVFQXZF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "N8NT76W8DSVFQXZF.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "N8NT76W8DSVFQXZF.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "62.1070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "SZQV42HNDR8AXTGV" : { + "SZQV42HNDR8AXTGV.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SZQV42HNDR8AXTGV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SZQV42HNDR8AXTGV.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SZQV42HNDR8AXTGV.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "231790" + }, + "appliesTo" : [ ] + }, + "SZQV42HNDR8AXTGV.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SZQV42HNDR8AXTGV.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.8200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SZQV42HNDR8AXTGV.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SZQV42HNDR8AXTGV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SZQV42HNDR8AXTGV.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SZQV42HNDR8AXTGV.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "18.0790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SZQV42HNDR8AXTGV.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "SZQV42HNDR8AXTGV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SZQV42HNDR8AXTGV.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "SZQV42HNDR8AXTGV.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "17.8336000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SZQV42HNDR8AXTGV.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "SZQV42HNDR8AXTGV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SZQV42HNDR8AXTGV.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "SZQV42HNDR8AXTGV.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "233366" + }, + "appliesTo" : [ ] + }, + "SZQV42HNDR8AXTGV.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "SZQV42HNDR8AXTGV.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.8800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SZQV42HNDR8AXTGV.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SZQV42HNDR8AXTGV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SZQV42HNDR8AXTGV.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SZQV42HNDR8AXTGV.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "462318" + }, + "appliesTo" : [ ] + }, + "SZQV42HNDR8AXTGV.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SZQV42HNDR8AXTGV.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SZQV42HNDR8AXTGV.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SZQV42HNDR8AXTGV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SZQV42HNDR8AXTGV.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SZQV42HNDR8AXTGV.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "157648" + }, + "appliesTo" : [ ] + }, + "SZQV42HNDR8AXTGV.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SZQV42HNDR8AXTGV.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SZQV42HNDR8AXTGV.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SZQV42HNDR8AXTGV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SZQV42HNDR8AXTGV.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SZQV42HNDR8AXTGV.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.0100000000" + }, + "appliesTo" : [ ] + }, + "SZQV42HNDR8AXTGV.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SZQV42HNDR8AXTGV.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "78928" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SZQV42HNDR8AXTGV.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "SZQV42HNDR8AXTGV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SZQV42HNDR8AXTGV.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "SZQV42HNDR8AXTGV.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "159168" + }, + "appliesTo" : [ ] + }, + "SZQV42HNDR8AXTGV.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "SZQV42HNDR8AXTGV.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SZQV42HNDR8AXTGV.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "SZQV42HNDR8AXTGV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SZQV42HNDR8AXTGV.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "SZQV42HNDR8AXTGV.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "18.2649000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SZQV42HNDR8AXTGV.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "SZQV42HNDR8AXTGV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SZQV42HNDR8AXTGV.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "SZQV42HNDR8AXTGV.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.0985000000" + }, + "appliesTo" : [ ] + }, + "SZQV42HNDR8AXTGV.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "SZQV42HNDR8AXTGV.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "79703" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SZQV42HNDR8AXTGV.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "SZQV42HNDR8AXTGV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SZQV42HNDR8AXTGV.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "SZQV42HNDR8AXTGV.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "17.7040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SZQV42HNDR8AXTGV.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "SZQV42HNDR8AXTGV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SZQV42HNDR8AXTGV.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "SZQV42HNDR8AXTGV.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "466249" + }, + "appliesTo" : [ ] + }, + "SZQV42HNDR8AXTGV.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "SZQV42HNDR8AXTGV.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "3S465DABJFVVXWJG" : { + "3S465DABJFVVXWJG.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "3S465DABJFVVXWJG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3S465DABJFVVXWJG.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "3S465DABJFVVXWJG.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15601" + }, + "appliesTo" : [ ] + }, + "3S465DABJFVVXWJG.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "3S465DABJFVVXWJG.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3S465DABJFVVXWJG.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "3S465DABJFVVXWJG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3S465DABJFVVXWJG.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "3S465DABJFVVXWJG.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "3S465DABJFVVXWJG.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "3S465DABJFVVXWJG.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38644" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3S465DABJFVVXWJG.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "3S465DABJFVVXWJG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3S465DABJFVVXWJG.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "3S465DABJFVVXWJG.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3S465DABJFVVXWJG.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "3S465DABJFVVXWJG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3S465DABJFVVXWJG.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "3S465DABJFVVXWJG.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16900" + }, + "appliesTo" : [ ] + }, + "3S465DABJFVVXWJG.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "3S465DABJFVVXWJG.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3S465DABJFVVXWJG.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "3S465DABJFVVXWJG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3S465DABJFVVXWJG.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "3S465DABJFVVXWJG.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32746" + }, + "appliesTo" : [ ] + }, + "3S465DABJFVVXWJG.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "3S465DABJFVVXWJG.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3S465DABJFVVXWJG.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "3S465DABJFVVXWJG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3S465DABJFVVXWJG.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "3S465DABJFVVXWJG.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17973" + }, + "appliesTo" : [ ] + }, + "3S465DABJFVVXWJG.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "3S465DABJFVVXWJG.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3S465DABJFVVXWJG.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "3S465DABJFVVXWJG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3S465DABJFVVXWJG.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "3S465DABJFVVXWJG.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3S465DABJFVVXWJG.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "3S465DABJFVVXWJG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3S465DABJFVVXWJG.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "3S465DABJFVVXWJG.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1860000000" + }, + "appliesTo" : [ ] + }, + "3S465DABJFVVXWJG.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "3S465DABJFVVXWJG.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9248" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3S465DABJFVVXWJG.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "3S465DABJFVVXWJG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3S465DABJFVVXWJG.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "3S465DABJFVVXWJG.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3S465DABJFVVXWJG.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "3S465DABJFVVXWJG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3S465DABJFVVXWJG.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "3S465DABJFVVXWJG.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0480000000" + }, + "appliesTo" : [ ] + }, + "3S465DABJFVVXWJG.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "3S465DABJFVVXWJG.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8042" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3S465DABJFVVXWJG.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "3S465DABJFVVXWJG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3S465DABJFVVXWJG.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "3S465DABJFVVXWJG.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3S465DABJFVVXWJG.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "3S465DABJFVVXWJG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3S465DABJFVVXWJG.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "3S465DABJFVVXWJG.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "3S465DABJFVVXWJG.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "3S465DABJFVVXWJG.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19265" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "W4HNTDUW2525QNYX" : { + "W4HNTDUW2525QNYX.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "W4HNTDUW2525QNYX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W4HNTDUW2525QNYX.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "W4HNTDUW2525QNYX.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5050000000" + }, + "appliesTo" : [ ] + }, + "W4HNTDUW2525QNYX.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "W4HNTDUW2525QNYX.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4423" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "W4HNTDUW2525QNYX.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "W4HNTDUW2525QNYX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W4HNTDUW2525QNYX.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "W4HNTDUW2525QNYX.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9007" + }, + "appliesTo" : [ ] + }, + "W4HNTDUW2525QNYX.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "W4HNTDUW2525QNYX.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "W4HNTDUW2525QNYX.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "W4HNTDUW2525QNYX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W4HNTDUW2525QNYX.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "W4HNTDUW2525QNYX.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17077" + }, + "appliesTo" : [ ] + }, + "W4HNTDUW2525QNYX.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "W4HNTDUW2525QNYX.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "W4HNTDUW2525QNYX.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "W4HNTDUW2525QNYX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W4HNTDUW2525QNYX.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "W4HNTDUW2525QNYX.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "W4HNTDUW2525QNYX.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "W4HNTDUW2525QNYX.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8685" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "W4HNTDUW2525QNYX.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "W4HNTDUW2525QNYX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W4HNTDUW2525QNYX.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "W4HNTDUW2525QNYX.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "W4HNTDUW2525QNYX.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "W4HNTDUW2525QNYX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W4HNTDUW2525QNYX.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "W4HNTDUW2525QNYX.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "GTJ44D58C728KCTE" : { + "GTJ44D58C728KCTE.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "GTJ44D58C728KCTE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GTJ44D58C728KCTE.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "GTJ44D58C728KCTE.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34302" + }, + "appliesTo" : [ ] + }, + "GTJ44D58C728KCTE.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "GTJ44D58C728KCTE.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GTJ44D58C728KCTE.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "GTJ44D58C728KCTE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GTJ44D58C728KCTE.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "GTJ44D58C728KCTE.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "98116" + }, + "appliesTo" : [ ] + }, + "GTJ44D58C728KCTE.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "GTJ44D58C728KCTE.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GTJ44D58C728KCTE.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "GTJ44D58C728KCTE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GTJ44D58C728KCTE.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "GTJ44D58C728KCTE.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "GTJ44D58C728KCTE.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "GTJ44D58C728KCTE.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "67232" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GTJ44D58C728KCTE.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "GTJ44D58C728KCTE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GTJ44D58C728KCTE.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "GTJ44D58C728KCTE.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "52189" + }, + "appliesTo" : [ ] + }, + "GTJ44D58C728KCTE.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "GTJ44D58C728KCTE.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GTJ44D58C728KCTE.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "GTJ44D58C728KCTE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GTJ44D58C728KCTE.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "GTJ44D58C728KCTE.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.2230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GTJ44D58C728KCTE.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "GTJ44D58C728KCTE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GTJ44D58C728KCTE.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "GTJ44D58C728KCTE.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "FD2MYJ67QXPYJGHF" : { + "FD2MYJ67QXPYJGHF.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "FD2MYJ67QXPYJGHF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FD2MYJ67QXPYJGHF.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "FD2MYJ67QXPYJGHF.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13532" + }, + "appliesTo" : [ ] + }, + "FD2MYJ67QXPYJGHF.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "FD2MYJ67QXPYJGHF.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FD2MYJ67QXPYJGHF.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "FD2MYJ67QXPYJGHF", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "FD2MYJ67QXPYJGHF.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "FD2MYJ67QXPYJGHF.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20510" + }, + "appliesTo" : [ ] + }, + "FD2MYJ67QXPYJGHF.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "FD2MYJ67QXPYJGHF.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FD2MYJ67QXPYJGHF.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "FD2MYJ67QXPYJGHF", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "FD2MYJ67QXPYJGHF.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "FD2MYJ67QXPYJGHF.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FD2MYJ67QXPYJGHF.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "FD2MYJ67QXPYJGHF", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "FD2MYJ67QXPYJGHF.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "FD2MYJ67QXPYJGHF.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30941" + }, + "appliesTo" : [ ] + }, + "FD2MYJ67QXPYJGHF.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "FD2MYJ67QXPYJGHF.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FD2MYJ67QXPYJGHF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "FD2MYJ67QXPYJGHF", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "FD2MYJ67QXPYJGHF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "FD2MYJ67QXPYJGHF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23468" + }, + "appliesTo" : [ ] + }, + "FD2MYJ67QXPYJGHF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "FD2MYJ67QXPYJGHF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FD2MYJ67QXPYJGHF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "FD2MYJ67QXPYJGHF", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "FD2MYJ67QXPYJGHF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "FD2MYJ67QXPYJGHF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10932" + }, + "appliesTo" : [ ] + }, + "FD2MYJ67QXPYJGHF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "FD2MYJ67QXPYJGHF.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FD2MYJ67QXPYJGHF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "FD2MYJ67QXPYJGHF", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "FD2MYJ67QXPYJGHF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "FD2MYJ67QXPYJGHF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7248" + }, + "appliesTo" : [ ] + }, + "FD2MYJ67QXPYJGHF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "FD2MYJ67QXPYJGHF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FD2MYJ67QXPYJGHF.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "FD2MYJ67QXPYJGHF", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "FD2MYJ67QXPYJGHF.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "FD2MYJ67QXPYJGHF.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FD2MYJ67QXPYJGHF.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "FD2MYJ67QXPYJGHF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FD2MYJ67QXPYJGHF.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "FD2MYJ67QXPYJGHF.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FD2MYJ67QXPYJGHF.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "FD2MYJ67QXPYJGHF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FD2MYJ67QXPYJGHF.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "FD2MYJ67QXPYJGHF.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6838" + }, + "appliesTo" : [ ] + }, + "FD2MYJ67QXPYJGHF.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "FD2MYJ67QXPYJGHF.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FD2MYJ67QXPYJGHF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "FD2MYJ67QXPYJGHF", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "FD2MYJ67QXPYJGHF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "FD2MYJ67QXPYJGHF.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3800000000" + }, + "appliesTo" : [ ] + }, + "FD2MYJ67QXPYJGHF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "FD2MYJ67QXPYJGHF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14980" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "MR5MW694BZTU3QD6" : { + "MR5MW694BZTU3QD6.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "MR5MW694BZTU3QD6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MR5MW694BZTU3QD6.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "MR5MW694BZTU3QD6.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "31.4650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MR5MW694BZTU3QD6.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "MR5MW694BZTU3QD6", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "MR5MW694BZTU3QD6.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "MR5MW694BZTU3QD6.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "136873" + }, + "appliesTo" : [ ] + }, + "MR5MW694BZTU3QD6.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "MR5MW694BZTU3QD6.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.6250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MR5MW694BZTU3QD6.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "MR5MW694BZTU3QD6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MR5MW694BZTU3QD6.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "MR5MW694BZTU3QD6.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "32.1430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MR5MW694BZTU3QD6.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "MR5MW694BZTU3QD6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MR5MW694BZTU3QD6.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "MR5MW694BZTU3QD6.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "139701" + }, + "appliesTo" : [ ] + }, + "MR5MW694BZTU3QD6.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "MR5MW694BZTU3QD6.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.9480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MR5MW694BZTU3QD6.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "MR5MW694BZTU3QD6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MR5MW694BZTU3QD6.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "MR5MW694BZTU3QD6.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "29.3020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MR5MW694BZTU3QD6.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "MR5MW694BZTU3QD6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MR5MW694BZTU3QD6.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "MR5MW694BZTU3QD6.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "772758" + }, + "appliesTo" : [ ] + }, + "MR5MW694BZTU3QD6.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "MR5MW694BZTU3QD6.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MR5MW694BZTU3QD6.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "MR5MW694BZTU3QD6", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "MR5MW694BZTU3QD6.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "MR5MW694BZTU3QD6.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "762028" + }, + "appliesTo" : [ ] + }, + "MR5MW694BZTU3QD6.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "MR5MW694BZTU3QD6.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MR5MW694BZTU3QD6.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "MR5MW694BZTU3QD6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MR5MW694BZTU3QD6.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "MR5MW694BZTU3QD6.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "278534" + }, + "appliesTo" : [ ] + }, + "MR5MW694BZTU3QD6.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "MR5MW694BZTU3QD6.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MR5MW694BZTU3QD6.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "MR5MW694BZTU3QD6", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "MR5MW694BZTU3QD6.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "MR5MW694BZTU3QD6.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "382736" + }, + "appliesTo" : [ ] + }, + "MR5MW694BZTU3QD6.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "MR5MW694BZTU3QD6.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.5640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MR5MW694BZTU3QD6.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "MR5MW694BZTU3QD6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MR5MW694BZTU3QD6.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "MR5MW694BZTU3QD6.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "387039" + }, + "appliesTo" : [ ] + }, + "MR5MW694BZTU3QD6.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "MR5MW694BZTU3QD6.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.7280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MR5MW694BZTU3QD6.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "MR5MW694BZTU3QD6", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "MR5MW694BZTU3QD6.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "MR5MW694BZTU3QD6.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "272991" + }, + "appliesTo" : [ ] + }, + "MR5MW694BZTU3QD6.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "MR5MW694BZTU3QD6.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MR5MW694BZTU3QD6.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "MR5MW694BZTU3QD6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MR5MW694BZTU3QD6.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "MR5MW694BZTU3QD6.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "29.6560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "A64H3T6VVR3C4SUA" : { + "A64H3T6VVR3C4SUA.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "A64H3T6VVR3C4SUA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "A64H3T6VVR3C4SUA.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "A64H3T6VVR3C4SUA.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3019" + }, + "appliesTo" : [ ] + }, + "A64H3T6VVR3C4SUA.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "A64H3T6VVR3C4SUA.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "A64H3T6VVR3C4SUA.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "A64H3T6VVR3C4SUA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "A64H3T6VVR3C4SUA.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "A64H3T6VVR3C4SUA.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "959" + }, + "appliesTo" : [ ] + }, + "A64H3T6VVR3C4SUA.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "A64H3T6VVR3C4SUA.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2395000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "A64H3T6VVR3C4SUA.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "A64H3T6VVR3C4SUA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A64H3T6VVR3C4SUA.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "A64H3T6VVR3C4SUA.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "A64H3T6VVR3C4SUA.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "A64H3T6VVR3C4SUA.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3301" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "A64H3T6VVR3C4SUA.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "A64H3T6VVR3C4SUA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "A64H3T6VVR3C4SUA.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "A64H3T6VVR3C4SUA.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2904000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "A64H3T6VVR3C4SUA.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "A64H3T6VVR3C4SUA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A64H3T6VVR3C4SUA.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "A64H3T6VVR3C4SUA.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1103" + }, + "appliesTo" : [ ] + }, + "A64H3T6VVR3C4SUA.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "A64H3T6VVR3C4SUA.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2559000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "A64H3T6VVR3C4SUA.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "A64H3T6VVR3C4SUA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A64H3T6VVR3C4SUA.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "A64H3T6VVR3C4SUA.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3945000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "A64H3T6VVR3C4SUA.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "A64H3T6VVR3C4SUA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "A64H3T6VVR3C4SUA.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "A64H3T6VVR3C4SUA.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "A64H3T6VVR3C4SUA.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "A64H3T6VVR3C4SUA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "A64H3T6VVR3C4SUA.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "A64H3T6VVR3C4SUA.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7814" + }, + "appliesTo" : [ ] + }, + "A64H3T6VVR3C4SUA.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "A64H3T6VVR3C4SUA.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "A64H3T6VVR3C4SUA.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "A64H3T6VVR3C4SUA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "A64H3T6VVR3C4SUA.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "A64H3T6VVR3C4SUA.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2042000000" + }, + "appliesTo" : [ ] + }, + "A64H3T6VVR3C4SUA.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "A64H3T6VVR3C4SUA.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1951" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "A64H3T6VVR3C4SUA.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "A64H3T6VVR3C4SUA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "A64H3T6VVR3C4SUA.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "A64H3T6VVR3C4SUA.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2244" + }, + "appliesTo" : [ ] + }, + "A64H3T6VVR3C4SUA.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "A64H3T6VVR3C4SUA.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2154000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "A64H3T6VVR3C4SUA.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "A64H3T6VVR3C4SUA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "A64H3T6VVR3C4SUA.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "A64H3T6VVR3C4SUA.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3144000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "A64H3T6VVR3C4SUA.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "A64H3T6VVR3C4SUA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "A64H3T6VVR3C4SUA.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "A64H3T6VVR3C4SUA.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7084" + }, + "appliesTo" : [ ] + }, + "A64H3T6VVR3C4SUA.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "A64H3T6VVR3C4SUA.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "V2ZSDPZ5ANEBUE99" : { + "V2ZSDPZ5ANEBUE99.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "V2ZSDPZ5ANEBUE99", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "V2ZSDPZ5ANEBUE99.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "V2ZSDPZ5ANEBUE99.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "V2ZSDPZ5ANEBUE99.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "V2ZSDPZ5ANEBUE99.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2970" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "V2ZSDPZ5ANEBUE99.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "V2ZSDPZ5ANEBUE99", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "V2ZSDPZ5ANEBUE99.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "V2ZSDPZ5ANEBUE99.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1796" + }, + "appliesTo" : [ ] + }, + "V2ZSDPZ5ANEBUE99.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "V2ZSDPZ5ANEBUE99.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "V2ZSDPZ5ANEBUE99.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "V2ZSDPZ5ANEBUE99", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "V2ZSDPZ5ANEBUE99.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "V2ZSDPZ5ANEBUE99.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5741" + }, + "appliesTo" : [ ] + }, + "V2ZSDPZ5ANEBUE99.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "V2ZSDPZ5ANEBUE99.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "V2ZSDPZ5ANEBUE99.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "V2ZSDPZ5ANEBUE99", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "V2ZSDPZ5ANEBUE99.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "V2ZSDPZ5ANEBUE99.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2876" + }, + "appliesTo" : [ ] + }, + "V2ZSDPZ5ANEBUE99.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "V2ZSDPZ5ANEBUE99.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "V2ZSDPZ5ANEBUE99.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "V2ZSDPZ5ANEBUE99", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "V2ZSDPZ5ANEBUE99.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "V2ZSDPZ5ANEBUE99.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "Q7J8RTVDQ7R7AEP9" : { + "Q7J8RTVDQ7R7AEP9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Q7J8RTVDQ7R7AEP9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "Q7J8RTVDQ7R7AEP9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Q7J8RTVDQ7R7AEP9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1406" + }, + "appliesTo" : [ ] + }, + "Q7J8RTVDQ7R7AEP9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Q7J8RTVDQ7R7AEP9.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Q7J8RTVDQ7R7AEP9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Q7J8RTVDQ7R7AEP9", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "Q7J8RTVDQ7R7AEP9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Q7J8RTVDQ7R7AEP9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "576" + }, + "appliesTo" : [ ] + }, + "Q7J8RTVDQ7R7AEP9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Q7J8RTVDQ7R7AEP9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q7J8RTVDQ7R7AEP9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Q7J8RTVDQ7R7AEP9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "Q7J8RTVDQ7R7AEP9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Q7J8RTVDQ7R7AEP9.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Q7J8RTVDQ7R7AEP9.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "Q7J8RTVDQ7R7AEP9", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "Q7J8RTVDQ7R7AEP9.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "Q7J8RTVDQ7R7AEP9.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Q7J8RTVDQ7R7AEP9.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "Q7J8RTVDQ7R7AEP9", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "Q7J8RTVDQ7R7AEP9.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "Q7J8RTVDQ7R7AEP9.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4055" + }, + "appliesTo" : [ ] + }, + "Q7J8RTVDQ7R7AEP9.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "Q7J8RTVDQ7R7AEP9.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Q7J8RTVDQ7R7AEP9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Q7J8RTVDQ7R7AEP9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "Q7J8RTVDQ7R7AEP9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Q7J8RTVDQ7R7AEP9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "Q7J8RTVDQ7R7AEP9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Q7J8RTVDQ7R7AEP9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3297" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Q7J8RTVDQ7R7AEP9.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "Q7J8RTVDQ7R7AEP9", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "Q7J8RTVDQ7R7AEP9.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "Q7J8RTVDQ7R7AEP9.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0950000000" + }, + "appliesTo" : [ ] + }, + "Q7J8RTVDQ7R7AEP9.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "Q7J8RTVDQ7R7AEP9.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1630" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q7J8RTVDQ7R7AEP9.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "Q7J8RTVDQ7R7AEP9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q7J8RTVDQ7R7AEP9.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "Q7J8RTVDQ7R7AEP9.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2052" + }, + "appliesTo" : [ ] + }, + "Q7J8RTVDQ7R7AEP9.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "Q7J8RTVDQ7R7AEP9.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Q7J8RTVDQ7R7AEP9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Q7J8RTVDQ7R7AEP9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "Q7J8RTVDQ7R7AEP9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Q7J8RTVDQ7R7AEP9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1405" + }, + "appliesTo" : [ ] + }, + "Q7J8RTVDQ7R7AEP9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Q7J8RTVDQ7R7AEP9.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q7J8RTVDQ7R7AEP9.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "Q7J8RTVDQ7R7AEP9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q7J8RTVDQ7R7AEP9.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "Q7J8RTVDQ7R7AEP9.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1032" + }, + "appliesTo" : [ ] + }, + "Q7J8RTVDQ7R7AEP9.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "Q7J8RTVDQ7R7AEP9.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q7J8RTVDQ7R7AEP9.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "Q7J8RTVDQ7R7AEP9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q7J8RTVDQ7R7AEP9.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "Q7J8RTVDQ7R7AEP9.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "S829SWJS7CDHWFZY" : { + "S829SWJS7CDHWFZY.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "S829SWJS7CDHWFZY", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "S829SWJS7CDHWFZY.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "S829SWJS7CDHWFZY.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "70.3340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "S829SWJS7CDHWFZY.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "S829SWJS7CDHWFZY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "S829SWJS7CDHWFZY.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "S829SWJS7CDHWFZY.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "35.9500000000" + }, + "appliesTo" : [ ] + }, + "S829SWJS7CDHWFZY.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "S829SWJS7CDHWFZY.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "314924" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "S829SWJS7CDHWFZY.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "S829SWJS7CDHWFZY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "S829SWJS7CDHWFZY.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "S829SWJS7CDHWFZY.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "72.8010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "S829SWJS7CDHWFZY.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "S829SWJS7CDHWFZY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "S829SWJS7CDHWFZY.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "S829SWJS7CDHWFZY.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "S829SWJS7CDHWFZY.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "S829SWJS7CDHWFZY.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "626693" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "S829SWJS7CDHWFZY.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "S829SWJS7CDHWFZY", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "S829SWJS7CDHWFZY.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "S829SWJS7CDHWFZY.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1612408" + }, + "appliesTo" : [ ] + }, + "S829SWJS7CDHWFZY.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "S829SWJS7CDHWFZY.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "S829SWJS7CDHWFZY.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "S829SWJS7CDHWFZY", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "S829SWJS7CDHWFZY.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "S829SWJS7CDHWFZY.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "62.4670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "S829SWJS7CDHWFZY.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "S829SWJS7CDHWFZY", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "S829SWJS7CDHWFZY.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "S829SWJS7CDHWFZY.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1651446" + }, + "appliesTo" : [ ] + }, + "S829SWJS7CDHWFZY.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "S829SWJS7CDHWFZY.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "S829SWJS7CDHWFZY.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "S829SWJS7CDHWFZY", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "S829SWJS7CDHWFZY.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "S829SWJS7CDHWFZY.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "812467" + }, + "appliesTo" : [ ] + }, + "S829SWJS7CDHWFZY.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "S829SWJS7CDHWFZY.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "30.9160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "S829SWJS7CDHWFZY.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "S829SWJS7CDHWFZY", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "S829SWJS7CDHWFZY.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "S829SWJS7CDHWFZY.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "828124" + }, + "appliesTo" : [ ] + }, + "S829SWJS7CDHWFZY.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "S829SWJS7CDHWFZY.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "31.5120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "S829SWJS7CDHWFZY.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "S829SWJS7CDHWFZY", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "S829SWJS7CDHWFZY.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "S829SWJS7CDHWFZY.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "304634" + }, + "appliesTo" : [ ] + }, + "S829SWJS7CDHWFZY.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "S829SWJS7CDHWFZY.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "34.7760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "S829SWJS7CDHWFZY.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "S829SWJS7CDHWFZY", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "S829SWJS7CDHWFZY.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "S829SWJS7CDHWFZY.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "606523" + }, + "appliesTo" : [ ] + }, + "S829SWJS7CDHWFZY.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "S829SWJS7CDHWFZY.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "WNE7QVTQ353JW53G" : { + "WNE7QVTQ353JW53G.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "WNE7QVTQ353JW53G", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WNE7QVTQ353JW53G.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "WNE7QVTQ353JW53G.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20589" + }, + "appliesTo" : [ ] + }, + "WNE7QVTQ353JW53G.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "WNE7QVTQ353JW53G.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WNE7QVTQ353JW53G.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "WNE7QVTQ353JW53G", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WNE7QVTQ353JW53G.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "WNE7QVTQ353JW53G.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "WNE7QVTQ353JW53G.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "WNE7QVTQ353JW53G.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20068" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WNE7QVTQ353JW53G.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "WNE7QVTQ353JW53G", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WNE7QVTQ353JW53G.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "WNE7QVTQ353JW53G.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7785000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "WNE7QVTQ353JW53G.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "WNE7QVTQ353JW53G", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WNE7QVTQ353JW53G.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "WNE7QVTQ353JW53G.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7957000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WNE7QVTQ353JW53G.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "WNE7QVTQ353JW53G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WNE7QVTQ353JW53G.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "WNE7QVTQ353JW53G.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4240000000" + }, + "appliesTo" : [ ] + }, + "WNE7QVTQ353JW53G.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "WNE7QVTQ353JW53G.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3714" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WNE7QVTQ353JW53G.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "WNE7QVTQ353JW53G", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WNE7QVTQ353JW53G.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "WNE7QVTQ353JW53G.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "WNE7QVTQ353JW53G.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "WNE7QVTQ353JW53G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WNE7QVTQ353JW53G.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "WNE7QVTQ353JW53G.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7396" + }, + "appliesTo" : [ ] + }, + "WNE7QVTQ353JW53G.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "WNE7QVTQ353JW53G.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WNE7QVTQ353JW53G.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "WNE7QVTQ353JW53G", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WNE7QVTQ353JW53G.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "WNE7QVTQ353JW53G.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4120000000" + }, + "appliesTo" : [ ] + }, + "WNE7QVTQ353JW53G.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "WNE7QVTQ353JW53G.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3609" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WNE7QVTQ353JW53G.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "WNE7QVTQ353JW53G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WNE7QVTQ353JW53G.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "WNE7QVTQ353JW53G.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8572000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WNE7QVTQ353JW53G.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "WNE7QVTQ353JW53G", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WNE7QVTQ353JW53G.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "WNE7QVTQ353JW53G.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7190" + }, + "appliesTo" : [ ] + }, + "WNE7QVTQ353JW53G.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "WNE7QVTQ353JW53G.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WNE7QVTQ353JW53G.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "WNE7QVTQ353JW53G", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WNE7QVTQ353JW53G.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "WNE7QVTQ353JW53G.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3850000000" + }, + "appliesTo" : [ ] + }, + "WNE7QVTQ353JW53G.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "WNE7QVTQ353JW53G.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10118" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WNE7QVTQ353JW53G.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "WNE7QVTQ353JW53G", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "WNE7QVTQ353JW53G.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "WNE7QVTQ353JW53G.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10327" + }, + "appliesTo" : [ ] + }, + "WNE7QVTQ353JW53G.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "WNE7QVTQ353JW53G.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3929000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "FDYDQJ8P2SCE3SD8" : { + "FDYDQJ8P2SCE3SD8.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "FDYDQJ8P2SCE3SD8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FDYDQJ8P2SCE3SD8.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "FDYDQJ8P2SCE3SD8.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3030000000" + }, + "appliesTo" : [ ] + }, + "FDYDQJ8P2SCE3SD8.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "FDYDQJ8P2SCE3SD8.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20176" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FDYDQJ8P2SCE3SD8.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "FDYDQJ8P2SCE3SD8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FDYDQJ8P2SCE3SD8.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "FDYDQJ8P2SCE3SD8.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.6680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FDYDQJ8P2SCE3SD8.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "FDYDQJ8P2SCE3SD8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FDYDQJ8P2SCE3SD8.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "FDYDQJ8P2SCE3SD8.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "104686" + }, + "appliesTo" : [ ] + }, + "FDYDQJ8P2SCE3SD8.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "FDYDQJ8P2SCE3SD8.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FDYDQJ8P2SCE3SD8.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "FDYDQJ8P2SCE3SD8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FDYDQJ8P2SCE3SD8.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "FDYDQJ8P2SCE3SD8.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19468" + }, + "appliesTo" : [ ] + }, + "FDYDQJ8P2SCE3SD8.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "FDYDQJ8P2SCE3SD8.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FDYDQJ8P2SCE3SD8.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "FDYDQJ8P2SCE3SD8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FDYDQJ8P2SCE3SD8.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "FDYDQJ8P2SCE3SD8.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.4990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FDYDQJ8P2SCE3SD8.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "FDYDQJ8P2SCE3SD8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FDYDQJ8P2SCE3SD8.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "FDYDQJ8P2SCE3SD8.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "40135" + }, + "appliesTo" : [ ] + }, + "FDYDQJ8P2SCE3SD8.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "FDYDQJ8P2SCE3SD8.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FDYDQJ8P2SCE3SD8.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "FDYDQJ8P2SCE3SD8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FDYDQJ8P2SCE3SD8.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "FDYDQJ8P2SCE3SD8.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "102002" + }, + "appliesTo" : [ ] + }, + "FDYDQJ8P2SCE3SD8.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "FDYDQJ8P2SCE3SD8.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FDYDQJ8P2SCE3SD8.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "FDYDQJ8P2SCE3SD8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FDYDQJ8P2SCE3SD8.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "FDYDQJ8P2SCE3SD8.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FDYDQJ8P2SCE3SD8.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "FDYDQJ8P2SCE3SD8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FDYDQJ8P2SCE3SD8.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "FDYDQJ8P2SCE3SD8.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "FDYDQJ8P2SCE3SD8.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "FDYDQJ8P2SCE3SD8.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38748" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FDYDQJ8P2SCE3SD8.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "FDYDQJ8P2SCE3SD8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FDYDQJ8P2SCE3SD8.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "FDYDQJ8P2SCE3SD8.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.0460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FDYDQJ8P2SCE3SD8.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "FDYDQJ8P2SCE3SD8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FDYDQJ8P2SCE3SD8.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "FDYDQJ8P2SCE3SD8.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "51432" + }, + "appliesTo" : [ ] + }, + "FDYDQJ8P2SCE3SD8.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "FDYDQJ8P2SCE3SD8.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FDYDQJ8P2SCE3SD8.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "FDYDQJ8P2SCE3SD8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FDYDQJ8P2SCE3SD8.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "FDYDQJ8P2SCE3SD8.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "52508" + }, + "appliesTo" : [ ] + }, + "FDYDQJ8P2SCE3SD8.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "FDYDQJ8P2SCE3SD8.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "QRBKW8JQVD29EVBU" : { + "QRBKW8JQVD29EVBU.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "QRBKW8JQVD29EVBU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QRBKW8JQVD29EVBU.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "QRBKW8JQVD29EVBU.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7135" + }, + "appliesTo" : [ ] + }, + "QRBKW8JQVD29EVBU.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "QRBKW8JQVD29EVBU.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QRBKW8JQVD29EVBU.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "QRBKW8JQVD29EVBU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QRBKW8JQVD29EVBU.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "QRBKW8JQVD29EVBU.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QRBKW8JQVD29EVBU.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QRBKW8JQVD29EVBU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QRBKW8JQVD29EVBU.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QRBKW8JQVD29EVBU.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25489" + }, + "appliesTo" : [ ] + }, + "QRBKW8JQVD29EVBU.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QRBKW8JQVD29EVBU.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QRBKW8JQVD29EVBU.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "QRBKW8JQVD29EVBU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QRBKW8JQVD29EVBU.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "QRBKW8JQVD29EVBU.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QRBKW8JQVD29EVBU.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QRBKW8JQVD29EVBU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QRBKW8JQVD29EVBU.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QRBKW8JQVD29EVBU.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13136" + }, + "appliesTo" : [ ] + }, + "QRBKW8JQVD29EVBU.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QRBKW8JQVD29EVBU.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QRBKW8JQVD29EVBU.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "QRBKW8JQVD29EVBU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QRBKW8JQVD29EVBU.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "QRBKW8JQVD29EVBU.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14114" + }, + "appliesTo" : [ ] + }, + "QRBKW8JQVD29EVBU.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "QRBKW8JQVD29EVBU.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QRBKW8JQVD29EVBU.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QRBKW8JQVD29EVBU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QRBKW8JQVD29EVBU.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QRBKW8JQVD29EVBU.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12812" + }, + "appliesTo" : [ ] + }, + "QRBKW8JQVD29EVBU.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QRBKW8JQVD29EVBU.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QRBKW8JQVD29EVBU.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QRBKW8JQVD29EVBU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QRBKW8JQVD29EVBU.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QRBKW8JQVD29EVBU.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6492" + }, + "appliesTo" : [ ] + }, + "QRBKW8JQVD29EVBU.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QRBKW8JQVD29EVBU.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QRBKW8JQVD29EVBU.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "QRBKW8JQVD29EVBU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QRBKW8JQVD29EVBU.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "QRBKW8JQVD29EVBU.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QRBKW8JQVD29EVBU.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QRBKW8JQVD29EVBU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QRBKW8JQVD29EVBU.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QRBKW8JQVD29EVBU.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QRBKW8JQVD29EVBU.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "QRBKW8JQVD29EVBU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QRBKW8JQVD29EVBU.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "QRBKW8JQVD29EVBU.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27928" + }, + "appliesTo" : [ ] + }, + "QRBKW8JQVD29EVBU.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "QRBKW8JQVD29EVBU.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QRBKW8JQVD29EVBU.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "QRBKW8JQVD29EVBU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QRBKW8JQVD29EVBU.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "QRBKW8JQVD29EVBU.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QRBKW8JQVD29EVBU.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "QRBKW8JQVD29EVBU.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14073" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "6V9UKEPJF6WP9M5K" : { + "6V9UKEPJF6WP9M5K.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6V9UKEPJF6WP9M5K", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6V9UKEPJF6WP9M5K.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6V9UKEPJF6WP9M5K.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13711" + }, + "appliesTo" : [ ] + }, + "6V9UKEPJF6WP9M5K.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6V9UKEPJF6WP9M5K.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6V9UKEPJF6WP9M5K.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6V9UKEPJF6WP9M5K", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "6V9UKEPJF6WP9M5K.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6V9UKEPJF6WP9M5K.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8008" + }, + "appliesTo" : [ ] + }, + "6V9UKEPJF6WP9M5K.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6V9UKEPJF6WP9M5K.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6V9UKEPJF6WP9M5K.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "6V9UKEPJF6WP9M5K", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "6V9UKEPJF6WP9M5K.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "6V9UKEPJF6WP9M5K.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37020" + }, + "appliesTo" : [ ] + }, + "6V9UKEPJF6WP9M5K.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "6V9UKEPJF6WP9M5K.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6V9UKEPJF6WP9M5K.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "6V9UKEPJF6WP9M5K", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6V9UKEPJF6WP9M5K.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "6V9UKEPJF6WP9M5K.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15760" + }, + "appliesTo" : [ ] + }, + "6V9UKEPJF6WP9M5K.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "6V9UKEPJF6WP9M5K.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6V9UKEPJF6WP9M5K.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6V9UKEPJF6WP9M5K", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6V9UKEPJF6WP9M5K.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6V9UKEPJF6WP9M5K.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6V9UKEPJF6WP9M5K.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "6V9UKEPJF6WP9M5K", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6V9UKEPJF6WP9M5K.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "6V9UKEPJF6WP9M5K.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8041" + }, + "appliesTo" : [ ] + }, + "6V9UKEPJF6WP9M5K.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "6V9UKEPJF6WP9M5K.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6V9UKEPJF6WP9M5K.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "6V9UKEPJF6WP9M5K", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6V9UKEPJF6WP9M5K.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "6V9UKEPJF6WP9M5K.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6V9UKEPJF6WP9M5K.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6V9UKEPJF6WP9M5K", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "6V9UKEPJF6WP9M5K.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6V9UKEPJF6WP9M5K.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "6V9UKEPJF6WP9M5K.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6V9UKEPJF6WP9M5K.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24429" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6V9UKEPJF6WP9M5K.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "6V9UKEPJF6WP9M5K", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "6V9UKEPJF6WP9M5K.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "6V9UKEPJF6WP9M5K.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21622" + }, + "appliesTo" : [ ] + }, + "6V9UKEPJF6WP9M5K.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "6V9UKEPJF6WP9M5K.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6V9UKEPJF6WP9M5K.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "6V9UKEPJF6WP9M5K", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "6V9UKEPJF6WP9M5K.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "6V9UKEPJF6WP9M5K.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6V9UKEPJF6WP9M5K.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6V9UKEPJF6WP9M5K", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6V9UKEPJF6WP9M5K.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6V9UKEPJF6WP9M5K.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5300000000" + }, + "appliesTo" : [ ] + }, + "6V9UKEPJF6WP9M5K.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6V9UKEPJF6WP9M5K.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12056" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "C3VTCSXYNCNUKHPS" : { + "C3VTCSXYNCNUKHPS.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "C3VTCSXYNCNUKHPS", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "C3VTCSXYNCNUKHPS.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "C3VTCSXYNCNUKHPS.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1782" + }, + "appliesTo" : [ ] + }, + "C3VTCSXYNCNUKHPS.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "C3VTCSXYNCNUKHPS.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "C3VTCSXYNCNUKHPS.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "C3VTCSXYNCNUKHPS", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "C3VTCSXYNCNUKHPS.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "C3VTCSXYNCNUKHPS.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "C3VTCSXYNCNUKHPS.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "C3VTCSXYNCNUKHPS", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "C3VTCSXYNCNUKHPS.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "C3VTCSXYNCNUKHPS.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5027" + }, + "appliesTo" : [ ] + }, + "C3VTCSXYNCNUKHPS.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "C3VTCSXYNCNUKHPS.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "C3VTCSXYNCNUKHPS.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "C3VTCSXYNCNUKHPS", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "C3VTCSXYNCNUKHPS.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "C3VTCSXYNCNUKHPS.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4381" + }, + "appliesTo" : [ ] + }, + "C3VTCSXYNCNUKHPS.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "C3VTCSXYNCNUKHPS.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "C3VTCSXYNCNUKHPS.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "C3VTCSXYNCNUKHPS", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "C3VTCSXYNCNUKHPS.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "C3VTCSXYNCNUKHPS.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11817" + }, + "appliesTo" : [ ] + }, + "C3VTCSXYNCNUKHPS.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "C3VTCSXYNCNUKHPS.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "QG8MPRPSA2WNM57J" : { + "QG8MPRPSA2WNM57J.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QG8MPRPSA2WNM57J", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "QG8MPRPSA2WNM57J.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QG8MPRPSA2WNM57J.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0330000000" + }, + "appliesTo" : [ ] + }, + "QG8MPRPSA2WNM57J.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QG8MPRPSA2WNM57J.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "860" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QG8MPRPSA2WNM57J.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "QG8MPRPSA2WNM57J", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "QG8MPRPSA2WNM57J.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "QG8MPRPSA2WNM57J.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2066" + }, + "appliesTo" : [ ] + }, + "QG8MPRPSA2WNM57J.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "QG8MPRPSA2WNM57J.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QG8MPRPSA2WNM57J.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "QG8MPRPSA2WNM57J", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "QG8MPRPSA2WNM57J.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "QG8MPRPSA2WNM57J.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QG8MPRPSA2WNM57J.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QG8MPRPSA2WNM57J", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QG8MPRPSA2WNM57J.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QG8MPRPSA2WNM57J.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QG8MPRPSA2WNM57J.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QG8MPRPSA2WNM57J.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1623" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QG8MPRPSA2WNM57J.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "QG8MPRPSA2WNM57J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QG8MPRPSA2WNM57J.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "QG8MPRPSA2WNM57J.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0490000000" + }, + "appliesTo" : [ ] + }, + "QG8MPRPSA2WNM57J.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "QG8MPRPSA2WNM57J.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "494" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QG8MPRPSA2WNM57J.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "QG8MPRPSA2WNM57J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QG8MPRPSA2WNM57J.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "QG8MPRPSA2WNM57J.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QG8MPRPSA2WNM57J.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "QG8MPRPSA2WNM57J", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "QG8MPRPSA2WNM57J.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "QG8MPRPSA2WNM57J.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1232" + }, + "appliesTo" : [ ] + }, + "QG8MPRPSA2WNM57J.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "QG8MPRPSA2WNM57J.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QG8MPRPSA2WNM57J.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QG8MPRPSA2WNM57J", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QG8MPRPSA2WNM57J.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QG8MPRPSA2WNM57J.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "809" + }, + "appliesTo" : [ ] + }, + "QG8MPRPSA2WNM57J.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QG8MPRPSA2WNM57J.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QG8MPRPSA2WNM57J.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QG8MPRPSA2WNM57J", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QG8MPRPSA2WNM57J.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QG8MPRPSA2WNM57J.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QG8MPRPSA2WNM57J.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "QG8MPRPSA2WNM57J", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QG8MPRPSA2WNM57J.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "QG8MPRPSA2WNM57J.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "914" + }, + "appliesTo" : [ ] + }, + "QG8MPRPSA2WNM57J.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "QG8MPRPSA2WNM57J.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QG8MPRPSA2WNM57J.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QG8MPRPSA2WNM57J", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QG8MPRPSA2WNM57J.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QG8MPRPSA2WNM57J.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "502" + }, + "appliesTo" : [ ] + }, + "QG8MPRPSA2WNM57J.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QG8MPRPSA2WNM57J.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "8D8WEXZEQ37HKFNV" : { + "8D8WEXZEQ37HKFNV.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "8D8WEXZEQ37HKFNV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8D8WEXZEQ37HKFNV.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "8D8WEXZEQ37HKFNV.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.5730000000" + }, + "appliesTo" : [ ] + }, + "8D8WEXZEQ37HKFNV.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "8D8WEXZEQ37HKFNV.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "75100" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8D8WEXZEQ37HKFNV.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "8D8WEXZEQ37HKFNV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8D8WEXZEQ37HKFNV.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "8D8WEXZEQ37HKFNV.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.2710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8D8WEXZEQ37HKFNV.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "8D8WEXZEQ37HKFNV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8D8WEXZEQ37HKFNV.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "8D8WEXZEQ37HKFNV.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "17.5960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8D8WEXZEQ37HKFNV.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "8D8WEXZEQ37HKFNV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8D8WEXZEQ37HKFNV.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "8D8WEXZEQ37HKFNV.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "329187" + }, + "appliesTo" : [ ] + }, + "8D8WEXZEQ37HKFNV.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "8D8WEXZEQ37HKFNV.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8D8WEXZEQ37HKFNV.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "8D8WEXZEQ37HKFNV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8D8WEXZEQ37HKFNV.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "8D8WEXZEQ37HKFNV.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "148623" + }, + "appliesTo" : [ ] + }, + "8D8WEXZEQ37HKFNV.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "8D8WEXZEQ37HKFNV.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8D8WEXZEQ37HKFNV.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "8D8WEXZEQ37HKFNV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8D8WEXZEQ37HKFNV.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "8D8WEXZEQ37HKFNV.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.3400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8D8WEXZEQ37HKFNV.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "8D8WEXZEQ37HKFNV", + "effectiveDate" : "2016-06-30T23:59:59Z", + "priceDimensions" : { + "8D8WEXZEQ37HKFNV.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "8D8WEXZEQ37HKFNV.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "71699" + }, + "appliesTo" : [ ] + }, + "8D8WEXZEQ37HKFNV.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "8D8WEXZEQ37HKFNV.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.1850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8D8WEXZEQ37HKFNV.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "8D8WEXZEQ37HKFNV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8D8WEXZEQ37HKFNV.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "8D8WEXZEQ37HKFNV.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "165793" + }, + "appliesTo" : [ ] + }, + "8D8WEXZEQ37HKFNV.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "8D8WEXZEQ37HKFNV.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.3090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8D8WEXZEQ37HKFNV.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "8D8WEXZEQ37HKFNV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8D8WEXZEQ37HKFNV.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "8D8WEXZEQ37HKFNV.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.9830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8D8WEXZEQ37HKFNV.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "8D8WEXZEQ37HKFNV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8D8WEXZEQ37HKFNV.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "8D8WEXZEQ37HKFNV.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.2560000000" + }, + "appliesTo" : [ ] + }, + "8D8WEXZEQ37HKFNV.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "8D8WEXZEQ37HKFNV.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "164408" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8D8WEXZEQ37HKFNV.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "8D8WEXZEQ37HKFNV", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "8D8WEXZEQ37HKFNV.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "8D8WEXZEQ37HKFNV.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "8D8WEXZEQ37HKFNV.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "8D8WEXZEQ37HKFNV.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "322555" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8D8WEXZEQ37HKFNV.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "8D8WEXZEQ37HKFNV", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "8D8WEXZEQ37HKFNV.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "8D8WEXZEQ37HKFNV.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "142027" + }, + "appliesTo" : [ ] + }, + "8D8WEXZEQ37HKFNV.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "8D8WEXZEQ37HKFNV.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "XEM85KR3292VMY35" : { + "XEM85KR3292VMY35.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XEM85KR3292VMY35", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XEM85KR3292VMY35.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XEM85KR3292VMY35.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1323" + }, + "appliesTo" : [ ] + }, + "XEM85KR3292VMY35.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XEM85KR3292VMY35.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XEM85KR3292VMY35.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XEM85KR3292VMY35", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "XEM85KR3292VMY35.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XEM85KR3292VMY35.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3408" + }, + "appliesTo" : [ ] + }, + "XEM85KR3292VMY35.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XEM85KR3292VMY35.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XEM85KR3292VMY35.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XEM85KR3292VMY35", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XEM85KR3292VMY35.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XEM85KR3292VMY35.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2089" + }, + "appliesTo" : [ ] + }, + "XEM85KR3292VMY35.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XEM85KR3292VMY35.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XEM85KR3292VMY35.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XEM85KR3292VMY35", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "XEM85KR3292VMY35.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XEM85KR3292VMY35.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7645" + }, + "appliesTo" : [ ] + }, + "XEM85KR3292VMY35.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XEM85KR3292VMY35.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XEM85KR3292VMY35.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XEM85KR3292VMY35", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XEM85KR3292VMY35.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XEM85KR3292VMY35.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "JXT6YFU3KSU3C7ZV" : { + "JXT6YFU3KSU3C7ZV.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "JXT6YFU3KSU3C7ZV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JXT6YFU3KSU3C7ZV.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "JXT6YFU3KSU3C7ZV.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "JXT6YFU3KSU3C7ZV.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "JXT6YFU3KSU3C7ZV.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3108" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "JXT6YFU3KSU3C7ZV.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "JXT6YFU3KSU3C7ZV", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "JXT6YFU3KSU3C7ZV.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "JXT6YFU3KSU3C7ZV.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "JXT6YFU3KSU3C7ZV.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "JXT6YFU3KSU3C7ZV", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JXT6YFU3KSU3C7ZV.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "JXT6YFU3KSU3C7ZV.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7738" + }, + "appliesTo" : [ ] + }, + "JXT6YFU3KSU3C7ZV.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "JXT6YFU3KSU3C7ZV.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JXT6YFU3KSU3C7ZV.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "JXT6YFU3KSU3C7ZV", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "JXT6YFU3KSU3C7ZV.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "JXT6YFU3KSU3C7ZV.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "JXT6YFU3KSU3C7ZV.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "JXT6YFU3KSU3C7ZV.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2977" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JXT6YFU3KSU3C7ZV.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "JXT6YFU3KSU3C7ZV", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JXT6YFU3KSU3C7ZV.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "JXT6YFU3KSU3C7ZV.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3291" + }, + "appliesTo" : [ ] + }, + "JXT6YFU3KSU3C7ZV.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "JXT6YFU3KSU3C7ZV.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "JXT6YFU3KSU3C7ZV.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "JXT6YFU3KSU3C7ZV", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "JXT6YFU3KSU3C7ZV.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "JXT6YFU3KSU3C7ZV.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3550" + }, + "appliesTo" : [ ] + }, + "JXT6YFU3KSU3C7ZV.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "JXT6YFU3KSU3C7ZV.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "JXT6YFU3KSU3C7ZV.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "JXT6YFU3KSU3C7ZV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JXT6YFU3KSU3C7ZV.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "JXT6YFU3KSU3C7ZV.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1780000000" + }, + "appliesTo" : [ ] + }, + "JXT6YFU3KSU3C7ZV.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "JXT6YFU3KSU3C7ZV.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1560" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "JXT6YFU3KSU3C7ZV.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "JXT6YFU3KSU3C7ZV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JXT6YFU3KSU3C7ZV.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "JXT6YFU3KSU3C7ZV.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "JXT6YFU3KSU3C7ZV.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "JXT6YFU3KSU3C7ZV", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "JXT6YFU3KSU3C7ZV.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "JXT6YFU3KSU3C7ZV.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8768" + }, + "appliesTo" : [ ] + }, + "JXT6YFU3KSU3C7ZV.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "JXT6YFU3KSU3C7ZV.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "JXT6YFU3KSU3C7ZV.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "JXT6YFU3KSU3C7ZV", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JXT6YFU3KSU3C7ZV.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "JXT6YFU3KSU3C7ZV.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1216" + }, + "appliesTo" : [ ] + }, + "JXT6YFU3KSU3C7ZV.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "JXT6YFU3KSU3C7ZV.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "JXT6YFU3KSU3C7ZV.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "JXT6YFU3KSU3C7ZV", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JXT6YFU3KSU3C7ZV.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "JXT6YFU3KSU3C7ZV.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "ZMGP8SNR2VJEV8FJ" : { + "ZMGP8SNR2VJEV8FJ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ZMGP8SNR2VJEV8FJ", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "ZMGP8SNR2VJEV8FJ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ZMGP8SNR2VJEV8FJ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "130073" + }, + "appliesTo" : [ ] + }, + "ZMGP8SNR2VJEV8FJ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ZMGP8SNR2VJEV8FJ.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZMGP8SNR2VJEV8FJ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ZMGP8SNR2VJEV8FJ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "ZMGP8SNR2VJEV8FJ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ZMGP8SNR2VJEV8FJ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4380000000" + }, + "appliesTo" : [ ] + }, + "ZMGP8SNR2VJEV8FJ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ZMGP8SNR2VJEV8FJ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "65160" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZMGP8SNR2VJEV8FJ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ZMGP8SNR2VJEV8FJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZMGP8SNR2VJEV8FJ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ZMGP8SNR2VJEV8FJ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "66099" + }, + "appliesTo" : [ ] + }, + "ZMGP8SNR2VJEV8FJ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ZMGP8SNR2VJEV8FJ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5456000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZMGP8SNR2VJEV8FJ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ZMGP8SNR2VJEV8FJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZMGP8SNR2VJEV8FJ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ZMGP8SNR2VJEV8FJ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.1721000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZMGP8SNR2VJEV8FJ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ZMGP8SNR2VJEV8FJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZMGP8SNR2VJEV8FJ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ZMGP8SNR2VJEV8FJ.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ZMGP8SNR2VJEV8FJ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ZMGP8SNR2VJEV8FJ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "381671" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZMGP8SNR2VJEV8FJ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "ZMGP8SNR2VJEV8FJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZMGP8SNR2VJEV8FJ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "ZMGP8SNR2VJEV8FJ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.4794000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZMGP8SNR2VJEV8FJ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ZMGP8SNR2VJEV8FJ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "ZMGP8SNR2VJEV8FJ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ZMGP8SNR2VJEV8FJ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "377176" + }, + "appliesTo" : [ ] + }, + "ZMGP8SNR2VJEV8FJ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ZMGP8SNR2VJEV8FJ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZMGP8SNR2VJEV8FJ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ZMGP8SNR2VJEV8FJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZMGP8SNR2VJEV8FJ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ZMGP8SNR2VJEV8FJ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "191118" + }, + "appliesTo" : [ ] + }, + "ZMGP8SNR2VJEV8FJ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ZMGP8SNR2VJEV8FJ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.2724000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZMGP8SNR2VJEV8FJ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ZMGP8SNR2VJEV8FJ", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "ZMGP8SNR2VJEV8FJ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ZMGP8SNR2VJEV8FJ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "189326" + }, + "appliesTo" : [ ] + }, + "ZMGP8SNR2VJEV8FJ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ZMGP8SNR2VJEV8FJ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.2040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZMGP8SNR2VJEV8FJ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ZMGP8SNR2VJEV8FJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZMGP8SNR2VJEV8FJ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ZMGP8SNR2VJEV8FJ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "131915" + }, + "appliesTo" : [ ] + }, + "ZMGP8SNR2VJEV8FJ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ZMGP8SNR2VJEV8FJ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZMGP8SNR2VJEV8FJ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ZMGP8SNR2VJEV8FJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZMGP8SNR2VJEV8FJ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ZMGP8SNR2VJEV8FJ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.9504000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZMGP8SNR2VJEV8FJ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ZMGP8SNR2VJEV8FJ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZMGP8SNR2VJEV8FJ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ZMGP8SNR2VJEV8FJ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.6305000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "WEJJ8BVQUW2CFG55" : { + "WEJJ8BVQUW2CFG55.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "WEJJ8BVQUW2CFG55", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WEJJ8BVQUW2CFG55.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "WEJJ8BVQUW2CFG55.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "491" + }, + "appliesTo" : [ ] + }, + "WEJJ8BVQUW2CFG55.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "WEJJ8BVQUW2CFG55.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WEJJ8BVQUW2CFG55.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "WEJJ8BVQUW2CFG55", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WEJJ8BVQUW2CFG55.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "WEJJ8BVQUW2CFG55.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "WEJJ8BVQUW2CFG55.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "WEJJ8BVQUW2CFG55.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1622" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WEJJ8BVQUW2CFG55.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "WEJJ8BVQUW2CFG55", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WEJJ8BVQUW2CFG55.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "WEJJ8BVQUW2CFG55.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1001" + }, + "appliesTo" : [ ] + }, + "WEJJ8BVQUW2CFG55.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "WEJJ8BVQUW2CFG55.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WEJJ8BVQUW2CFG55.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "WEJJ8BVQUW2CFG55", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WEJJ8BVQUW2CFG55.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "WEJJ8BVQUW2CFG55.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1133" + }, + "appliesTo" : [ ] + }, + "WEJJ8BVQUW2CFG55.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "WEJJ8BVQUW2CFG55.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WEJJ8BVQUW2CFG55.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "WEJJ8BVQUW2CFG55", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WEJJ8BVQUW2CFG55.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "WEJJ8BVQUW2CFG55.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3474" + }, + "appliesTo" : [ ] + }, + "WEJJ8BVQUW2CFG55.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "WEJJ8BVQUW2CFG55.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WEJJ8BVQUW2CFG55.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "WEJJ8BVQUW2CFG55", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WEJJ8BVQUW2CFG55.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "WEJJ8BVQUW2CFG55.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1491" + }, + "appliesTo" : [ ] + }, + "WEJJ8BVQUW2CFG55.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "WEJJ8BVQUW2CFG55.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WEJJ8BVQUW2CFG55.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "WEJJ8BVQUW2CFG55", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WEJJ8BVQUW2CFG55.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "WEJJ8BVQUW2CFG55.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WEJJ8BVQUW2CFG55.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "WEJJ8BVQUW2CFG55", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WEJJ8BVQUW2CFG55.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "WEJJ8BVQUW2CFG55.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "WEJJ8BVQUW2CFG55.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "WEJJ8BVQUW2CFG55", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WEJJ8BVQUW2CFG55.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "WEJJ8BVQUW2CFG55.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "558" + }, + "appliesTo" : [ ] + }, + "WEJJ8BVQUW2CFG55.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "WEJJ8BVQUW2CFG55.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WEJJ8BVQUW2CFG55.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "WEJJ8BVQUW2CFG55", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WEJJ8BVQUW2CFG55.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "WEJJ8BVQUW2CFG55.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WEJJ8BVQUW2CFG55.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "WEJJ8BVQUW2CFG55", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WEJJ8BVQUW2CFG55.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "WEJJ8BVQUW2CFG55.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3802" + }, + "appliesTo" : [ ] + }, + "WEJJ8BVQUW2CFG55.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "WEJJ8BVQUW2CFG55.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WEJJ8BVQUW2CFG55.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "WEJJ8BVQUW2CFG55", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WEJJ8BVQUW2CFG55.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "WEJJ8BVQUW2CFG55.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "EJXKAGBARC5X44CV" : { + "EJXKAGBARC5X44CV.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "EJXKAGBARC5X44CV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EJXKAGBARC5X44CV.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "EJXKAGBARC5X44CV.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "87531" + }, + "appliesTo" : [ ] + }, + "EJXKAGBARC5X44CV.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "EJXKAGBARC5X44CV.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EJXKAGBARC5X44CV.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "EJXKAGBARC5X44CV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EJXKAGBARC5X44CV.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "EJXKAGBARC5X44CV.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "EJXKAGBARC5X44CV.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "EJXKAGBARC5X44CV.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "177075" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "EJXKAGBARC5X44CV.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "EJXKAGBARC5X44CV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EJXKAGBARC5X44CV.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "EJXKAGBARC5X44CV.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31201" + }, + "appliesTo" : [ ] + }, + "EJXKAGBARC5X44CV.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "EJXKAGBARC5X44CV.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "EJXKAGBARC5X44CV.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "EJXKAGBARC5X44CV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EJXKAGBARC5X44CV.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "EJXKAGBARC5X44CV.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "174127" + }, + "appliesTo" : [ ] + }, + "EJXKAGBARC5X44CV.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "EJXKAGBARC5X44CV.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EJXKAGBARC5X44CV.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "EJXKAGBARC5X44CV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EJXKAGBARC5X44CV.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "EJXKAGBARC5X44CV.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.7090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "EJXKAGBARC5X44CV.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "EJXKAGBARC5X44CV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EJXKAGBARC5X44CV.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "EJXKAGBARC5X44CV.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.1760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "EJXKAGBARC5X44CV.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "EJXKAGBARC5X44CV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EJXKAGBARC5X44CV.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "EJXKAGBARC5X44CV.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "88717" + }, + "appliesTo" : [ ] + }, + "EJXKAGBARC5X44CV.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "EJXKAGBARC5X44CV.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "EJXKAGBARC5X44CV.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "EJXKAGBARC5X44CV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EJXKAGBARC5X44CV.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "EJXKAGBARC5X44CV.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "EJXKAGBARC5X44CV.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "EJXKAGBARC5X44CV.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "61035" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EJXKAGBARC5X44CV.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "EJXKAGBARC5X44CV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EJXKAGBARC5X44CV.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "EJXKAGBARC5X44CV.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4930000000" + }, + "appliesTo" : [ ] + }, + "EJXKAGBARC5X44CV.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "EJXKAGBARC5X44CV.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30598" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EJXKAGBARC5X44CV.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "EJXKAGBARC5X44CV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EJXKAGBARC5X44CV.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "EJXKAGBARC5X44CV.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.8060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "EJXKAGBARC5X44CV.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "EJXKAGBARC5X44CV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EJXKAGBARC5X44CV.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "EJXKAGBARC5X44CV.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "62217" + }, + "appliesTo" : [ ] + }, + "EJXKAGBARC5X44CV.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "EJXKAGBARC5X44CV.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "EJXKAGBARC5X44CV.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "EJXKAGBARC5X44CV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EJXKAGBARC5X44CV.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "EJXKAGBARC5X44CV.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.0320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "Y4FKSUJMDV8DEFTS" : { + "Y4FKSUJMDV8DEFTS.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Y4FKSUJMDV8DEFTS", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "Y4FKSUJMDV8DEFTS.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Y4FKSUJMDV8DEFTS.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1375" + }, + "appliesTo" : [ ] + }, + "Y4FKSUJMDV8DEFTS.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Y4FKSUJMDV8DEFTS.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Y4FKSUJMDV8DEFTS.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Y4FKSUJMDV8DEFTS", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "Y4FKSUJMDV8DEFTS.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Y4FKSUJMDV8DEFTS.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0280000000" + }, + "appliesTo" : [ ] + }, + "Y4FKSUJMDV8DEFTS.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Y4FKSUJMDV8DEFTS.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "727" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y4FKSUJMDV8DEFTS.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Y4FKSUJMDV8DEFTS", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "Y4FKSUJMDV8DEFTS.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Y4FKSUJMDV8DEFTS.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "680" + }, + "appliesTo" : [ ] + }, + "Y4FKSUJMDV8DEFTS.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Y4FKSUJMDV8DEFTS.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Y4FKSUJMDV8DEFTS.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Y4FKSUJMDV8DEFTS", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "Y4FKSUJMDV8DEFTS.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Y4FKSUJMDV8DEFTS.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Y4FKSUJMDV8DEFTS.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Y4FKSUJMDV8DEFTS", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "Y4FKSUJMDV8DEFTS.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Y4FKSUJMDV8DEFTS.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "423" + }, + "appliesTo" : [ ] + }, + "Y4FKSUJMDV8DEFTS.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Y4FKSUJMDV8DEFTS.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "9N4WQNFE4TP78PQF" : { + "9N4WQNFE4TP78PQF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "9N4WQNFE4TP78PQF", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "9N4WQNFE4TP78PQF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "9N4WQNFE4TP78PQF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1997" + }, + "appliesTo" : [ ] + }, + "9N4WQNFE4TP78PQF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "9N4WQNFE4TP78PQF.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9N4WQNFE4TP78PQF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "9N4WQNFE4TP78PQF", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "9N4WQNFE4TP78PQF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "9N4WQNFE4TP78PQF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1160000000" + }, + "appliesTo" : [ ] + }, + "9N4WQNFE4TP78PQF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "9N4WQNFE4TP78PQF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1007" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9N4WQNFE4TP78PQF.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "9N4WQNFE4TP78PQF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9N4WQNFE4TP78PQF.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "9N4WQNFE4TP78PQF.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1046" + }, + "appliesTo" : [ ] + }, + "9N4WQNFE4TP78PQF.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "9N4WQNFE4TP78PQF.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9N4WQNFE4TP78PQF.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "9N4WQNFE4TP78PQF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9N4WQNFE4TP78PQF.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "9N4WQNFE4TP78PQF.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9N4WQNFE4TP78PQF.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "9N4WQNFE4TP78PQF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9N4WQNFE4TP78PQF.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "9N4WQNFE4TP78PQF.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "9N4WQNFE4TP78PQF.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "9N4WQNFE4TP78PQF.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5619" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9N4WQNFE4TP78PQF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "9N4WQNFE4TP78PQF", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "9N4WQNFE4TP78PQF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "9N4WQNFE4TP78PQF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2733" + }, + "appliesTo" : [ ] + }, + "9N4WQNFE4TP78PQF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "9N4WQNFE4TP78PQF.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9N4WQNFE4TP78PQF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "9N4WQNFE4TP78PQF", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "9N4WQNFE4TP78PQF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "9N4WQNFE4TP78PQF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5369" + }, + "appliesTo" : [ ] + }, + "9N4WQNFE4TP78PQF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "9N4WQNFE4TP78PQF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9N4WQNFE4TP78PQF.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "9N4WQNFE4TP78PQF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9N4WQNFE4TP78PQF.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "9N4WQNFE4TP78PQF.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2823" + }, + "appliesTo" : [ ] + }, + "9N4WQNFE4TP78PQF.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "9N4WQNFE4TP78PQF.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9N4WQNFE4TP78PQF.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "9N4WQNFE4TP78PQF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9N4WQNFE4TP78PQF.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "9N4WQNFE4TP78PQF.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9N4WQNFE4TP78PQF.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "9N4WQNFE4TP78PQF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9N4WQNFE4TP78PQF.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "9N4WQNFE4TP78PQF.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2079" + }, + "appliesTo" : [ ] + }, + "9N4WQNFE4TP78PQF.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "9N4WQNFE4TP78PQF.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9N4WQNFE4TP78PQF.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "9N4WQNFE4TP78PQF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9N4WQNFE4TP78PQF.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "9N4WQNFE4TP78PQF.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9N4WQNFE4TP78PQF.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "9N4WQNFE4TP78PQF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9N4WQNFE4TP78PQF.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "9N4WQNFE4TP78PQF.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "ZWKFSQ2ZGE2PEHZQ" : { + "ZWKFSQ2ZGE2PEHZQ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ZWKFSQ2ZGE2PEHZQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZWKFSQ2ZGE2PEHZQ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ZWKFSQ2ZGE2PEHZQ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15947" + }, + "appliesTo" : [ ] + }, + "ZWKFSQ2ZGE2PEHZQ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ZWKFSQ2ZGE2PEHZQ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZWKFSQ2ZGE2PEHZQ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ZWKFSQ2ZGE2PEHZQ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "ZWKFSQ2ZGE2PEHZQ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ZWKFSQ2ZGE2PEHZQ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3020000000" + }, + "appliesTo" : [ ] + }, + "ZWKFSQ2ZGE2PEHZQ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ZWKFSQ2ZGE2PEHZQ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "63527" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZWKFSQ2ZGE2PEHZQ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ZWKFSQ2ZGE2PEHZQ", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "ZWKFSQ2ZGE2PEHZQ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ZWKFSQ2ZGE2PEHZQ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ZWKFSQ2ZGE2PEHZQ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ZWKFSQ2ZGE2PEHZQ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "84053" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZWKFSQ2ZGE2PEHZQ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ZWKFSQ2ZGE2PEHZQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZWKFSQ2ZGE2PEHZQ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ZWKFSQ2ZGE2PEHZQ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZWKFSQ2ZGE2PEHZQ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ZWKFSQ2ZGE2PEHZQ", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "ZWKFSQ2ZGE2PEHZQ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ZWKFSQ2ZGE2PEHZQ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "58153" + }, + "appliesTo" : [ ] + }, + "ZWKFSQ2ZGE2PEHZQ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ZWKFSQ2ZGE2PEHZQ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZWKFSQ2ZGE2PEHZQ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ZWKFSQ2ZGE2PEHZQ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "ZWKFSQ2ZGE2PEHZQ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ZWKFSQ2ZGE2PEHZQ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3300000000" + }, + "appliesTo" : [ ] + }, + "ZWKFSQ2ZGE2PEHZQ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ZWKFSQ2ZGE2PEHZQ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21628" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZWKFSQ2ZGE2PEHZQ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ZWKFSQ2ZGE2PEHZQ", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "ZWKFSQ2ZGE2PEHZQ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ZWKFSQ2ZGE2PEHZQ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32610" + }, + "appliesTo" : [ ] + }, + "ZWKFSQ2ZGE2PEHZQ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ZWKFSQ2ZGE2PEHZQ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZWKFSQ2ZGE2PEHZQ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ZWKFSQ2ZGE2PEHZQ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "ZWKFSQ2ZGE2PEHZQ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ZWKFSQ2ZGE2PEHZQ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.3530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZWKFSQ2ZGE2PEHZQ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ZWKFSQ2ZGE2PEHZQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZWKFSQ2ZGE2PEHZQ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ZWKFSQ2ZGE2PEHZQ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31735" + }, + "appliesTo" : [ ] + }, + "ZWKFSQ2ZGE2PEHZQ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ZWKFSQ2ZGE2PEHZQ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZWKFSQ2ZGE2PEHZQ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ZWKFSQ2ZGE2PEHZQ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "ZWKFSQ2ZGE2PEHZQ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ZWKFSQ2ZGE2PEHZQ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "95790" + }, + "appliesTo" : [ ] + }, + "ZWKFSQ2ZGE2PEHZQ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ZWKFSQ2ZGE2PEHZQ.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZWKFSQ2ZGE2PEHZQ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ZWKFSQ2ZGE2PEHZQ", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "ZWKFSQ2ZGE2PEHZQ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ZWKFSQ2ZGE2PEHZQ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.4450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "ZG4JRPCC4VZQWHCQ" : { + "ZG4JRPCC4VZQWHCQ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ZG4JRPCC4VZQWHCQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZG4JRPCC4VZQWHCQ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ZG4JRPCC4VZQWHCQ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3772000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZG4JRPCC4VZQWHCQ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ZG4JRPCC4VZQWHCQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZG4JRPCC4VZQWHCQ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ZG4JRPCC4VZQWHCQ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1840000000" + }, + "appliesTo" : [ ] + }, + "ZG4JRPCC4VZQWHCQ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ZG4JRPCC4VZQWHCQ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1612" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZG4JRPCC4VZQWHCQ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ZG4JRPCC4VZQWHCQ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZG4JRPCC4VZQWHCQ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ZG4JRPCC4VZQWHCQ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZG4JRPCC4VZQWHCQ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ZG4JRPCC4VZQWHCQ", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "ZG4JRPCC4VZQWHCQ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ZG4JRPCC4VZQWHCQ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1505" + }, + "appliesTo" : [ ] + }, + "ZG4JRPCC4VZQWHCQ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ZG4JRPCC4VZQWHCQ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZG4JRPCC4VZQWHCQ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ZG4JRPCC4VZQWHCQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZG4JRPCC4VZQWHCQ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ZG4JRPCC4VZQWHCQ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3191" + }, + "appliesTo" : [ ] + }, + "ZG4JRPCC4VZQWHCQ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ZG4JRPCC4VZQWHCQ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZG4JRPCC4VZQWHCQ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "ZG4JRPCC4VZQWHCQ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZG4JRPCC4VZQWHCQ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "ZG4JRPCC4VZQWHCQ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2985000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZG4JRPCC4VZQWHCQ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ZG4JRPCC4VZQWHCQ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZG4JRPCC4VZQWHCQ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ZG4JRPCC4VZQWHCQ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7975" + }, + "appliesTo" : [ ] + }, + "ZG4JRPCC4VZQWHCQ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ZG4JRPCC4VZQWHCQ.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZG4JRPCC4VZQWHCQ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ZG4JRPCC4VZQWHCQ", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "ZG4JRPCC4VZQWHCQ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ZG4JRPCC4VZQWHCQ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3816" + }, + "appliesTo" : [ ] + }, + "ZG4JRPCC4VZQWHCQ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ZG4JRPCC4VZQWHCQ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZG4JRPCC4VZQWHCQ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ZG4JRPCC4VZQWHCQ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZG4JRPCC4VZQWHCQ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ZG4JRPCC4VZQWHCQ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3157000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZG4JRPCC4VZQWHCQ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ZG4JRPCC4VZQWHCQ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZG4JRPCC4VZQWHCQ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ZG4JRPCC4VZQWHCQ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4020" + }, + "appliesTo" : [ ] + }, + "ZG4JRPCC4VZQWHCQ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ZG4JRPCC4VZQWHCQ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1529000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZG4JRPCC4VZQWHCQ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ZG4JRPCC4VZQWHCQ", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "ZG4JRPCC4VZQWHCQ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ZG4JRPCC4VZQWHCQ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ZG4JRPCC4VZQWHCQ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ZG4JRPCC4VZQWHCQ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2982" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZG4JRPCC4VZQWHCQ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ZG4JRPCC4VZQWHCQ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "ZG4JRPCC4VZQWHCQ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ZG4JRPCC4VZQWHCQ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7464" + }, + "appliesTo" : [ ] + }, + "ZG4JRPCC4VZQWHCQ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ZG4JRPCC4VZQWHCQ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "R6ZE4UJ2C8B36SBY" : { + "R6ZE4UJ2C8B36SBY.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "R6ZE4UJ2C8B36SBY", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "R6ZE4UJ2C8B36SBY.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "R6ZE4UJ2C8B36SBY.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12466" + }, + "appliesTo" : [ ] + }, + "R6ZE4UJ2C8B36SBY.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "R6ZE4UJ2C8B36SBY.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "R6ZE4UJ2C8B36SBY.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "R6ZE4UJ2C8B36SBY", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "R6ZE4UJ2C8B36SBY.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "R6ZE4UJ2C8B36SBY.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29282" + }, + "appliesTo" : [ ] + }, + "R6ZE4UJ2C8B36SBY.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "R6ZE4UJ2C8B36SBY.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "R6ZE4UJ2C8B36SBY.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "R6ZE4UJ2C8B36SBY", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "R6ZE4UJ2C8B36SBY.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "R6ZE4UJ2C8B36SBY.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11279" + }, + "appliesTo" : [ ] + }, + "R6ZE4UJ2C8B36SBY.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "R6ZE4UJ2C8B36SBY.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "R6ZE4UJ2C8B36SBY.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "R6ZE4UJ2C8B36SBY", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "R6ZE4UJ2C8B36SBY.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "R6ZE4UJ2C8B36SBY.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "R6ZE4UJ2C8B36SBY.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "R6ZE4UJ2C8B36SBY", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "R6ZE4UJ2C8B36SBY.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "R6ZE4UJ2C8B36SBY.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7880000000" + }, + "appliesTo" : [ ] + }, + "R6ZE4UJ2C8B36SBY.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "R6ZE4UJ2C8B36SBY.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4606" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "AJUJW25DAVRG4WEY" : { + "AJUJW25DAVRG4WEY.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "AJUJW25DAVRG4WEY", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "AJUJW25DAVRG4WEY.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "AJUJW25DAVRG4WEY.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "717" + }, + "appliesTo" : [ ] + }, + "AJUJW25DAVRG4WEY.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "AJUJW25DAVRG4WEY.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AJUJW25DAVRG4WEY.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "AJUJW25DAVRG4WEY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AJUJW25DAVRG4WEY.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "AJUJW25DAVRG4WEY.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "AJUJW25DAVRG4WEY.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "AJUJW25DAVRG4WEY.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1373" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "AJUJW25DAVRG4WEY.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "AJUJW25DAVRG4WEY", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "AJUJW25DAVRG4WEY.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "AJUJW25DAVRG4WEY.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2272" + }, + "appliesTo" : [ ] + }, + "AJUJW25DAVRG4WEY.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "AJUJW25DAVRG4WEY.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AJUJW25DAVRG4WEY.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "AJUJW25DAVRG4WEY", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "AJUJW25DAVRG4WEY.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "AJUJW25DAVRG4WEY.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1202" + }, + "appliesTo" : [ ] + }, + "AJUJW25DAVRG4WEY.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "AJUJW25DAVRG4WEY.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AJUJW25DAVRG4WEY.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "AJUJW25DAVRG4WEY", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "AJUJW25DAVRG4WEY.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "AJUJW25DAVRG4WEY.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1118" + }, + "appliesTo" : [ ] + }, + "AJUJW25DAVRG4WEY.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "AJUJW25DAVRG4WEY.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AJUJW25DAVRG4WEY.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "AJUJW25DAVRG4WEY", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "AJUJW25DAVRG4WEY.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "AJUJW25DAVRG4WEY.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1936" + }, + "appliesTo" : [ ] + }, + "AJUJW25DAVRG4WEY.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "AJUJW25DAVRG4WEY.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "AJUJW25DAVRG4WEY.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "AJUJW25DAVRG4WEY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AJUJW25DAVRG4WEY.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "AJUJW25DAVRG4WEY.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "AJUJW25DAVRG4WEY.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "AJUJW25DAVRG4WEY", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "AJUJW25DAVRG4WEY.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "AJUJW25DAVRG4WEY.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "AJUJW25DAVRG4WEY.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "AJUJW25DAVRG4WEY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AJUJW25DAVRG4WEY.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "AJUJW25DAVRG4WEY.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "700" + }, + "appliesTo" : [ ] + }, + "AJUJW25DAVRG4WEY.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "AJUJW25DAVRG4WEY.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "AJUJW25DAVRG4WEY.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "AJUJW25DAVRG4WEY", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "AJUJW25DAVRG4WEY.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "AJUJW25DAVRG4WEY.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3245" + }, + "appliesTo" : [ ] + }, + "AJUJW25DAVRG4WEY.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "AJUJW25DAVRG4WEY.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "AJUJW25DAVRG4WEY.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "AJUJW25DAVRG4WEY", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "AJUJW25DAVRG4WEY.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "AJUJW25DAVRG4WEY.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "EE7BATB9AU6WJQPT" : { + "EE7BATB9AU6WJQPT.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "EE7BATB9AU6WJQPT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EE7BATB9AU6WJQPT.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "EE7BATB9AU6WJQPT.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.1120000000" + }, + "appliesTo" : [ ] + }, + "EE7BATB9AU6WJQPT.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "EE7BATB9AU6WJQPT.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "370863" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EE7BATB9AU6WJQPT.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "EE7BATB9AU6WJQPT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EE7BATB9AU6WJQPT.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "EE7BATB9AU6WJQPT.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "745999" + }, + "appliesTo" : [ ] + }, + "EE7BATB9AU6WJQPT.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "EE7BATB9AU6WJQPT.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "EE7BATB9AU6WJQPT.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "EE7BATB9AU6WJQPT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EE7BATB9AU6WJQPT.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "EE7BATB9AU6WJQPT.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "373386" + }, + "appliesTo" : [ ] + }, + "EE7BATB9AU6WJQPT.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "EE7BATB9AU6WJQPT.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.2080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "EE7BATB9AU6WJQPT.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "EE7BATB9AU6WJQPT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EE7BATB9AU6WJQPT.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "EE7BATB9AU6WJQPT.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "28.9264000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "EE7BATB9AU6WJQPT.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "EE7BATB9AU6WJQPT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EE7BATB9AU6WJQPT.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "EE7BATB9AU6WJQPT.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "127525" + }, + "appliesTo" : [ ] + }, + "EE7BATB9AU6WJQPT.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "EE7BATB9AU6WJQPT.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.5576000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "EE7BATB9AU6WJQPT.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "EE7BATB9AU6WJQPT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EE7BATB9AU6WJQPT.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "EE7BATB9AU6WJQPT.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "29.2238000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "EE7BATB9AU6WJQPT.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "EE7BATB9AU6WJQPT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EE7BATB9AU6WJQPT.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "EE7BATB9AU6WJQPT.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "254669" + }, + "appliesTo" : [ ] + }, + "EE7BATB9AU6WJQPT.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "EE7BATB9AU6WJQPT.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "EE7BATB9AU6WJQPT.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "EE7BATB9AU6WJQPT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EE7BATB9AU6WJQPT.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "EE7BATB9AU6WJQPT.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "28.3264000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "EE7BATB9AU6WJQPT.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "EE7BATB9AU6WJQPT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EE7BATB9AU6WJQPT.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "EE7BATB9AU6WJQPT.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "126284" + }, + "appliesTo" : [ ] + }, + "EE7BATB9AU6WJQPT.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "EE7BATB9AU6WJQPT.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.4160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EE7BATB9AU6WJQPT.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "EE7BATB9AU6WJQPT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EE7BATB9AU6WJQPT.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "EE7BATB9AU6WJQPT.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "28.5338000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "EE7BATB9AU6WJQPT.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "EE7BATB9AU6WJQPT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EE7BATB9AU6WJQPT.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "EE7BATB9AU6WJQPT.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "252238" + }, + "appliesTo" : [ ] + }, + "EE7BATB9AU6WJQPT.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "EE7BATB9AU6WJQPT.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EE7BATB9AU6WJQPT.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "EE7BATB9AU6WJQPT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EE7BATB9AU6WJQPT.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "EE7BATB9AU6WJQPT.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "EE7BATB9AU6WJQPT.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "EE7BATB9AU6WJQPT.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "739708" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "7V39RZQPSWWKKC2U" : { + "7V39RZQPSWWKKC2U.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "7V39RZQPSWWKKC2U", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7V39RZQPSWWKKC2U.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "7V39RZQPSWWKKC2U.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11298" + }, + "appliesTo" : [ ] + }, + "7V39RZQPSWWKKC2U.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "7V39RZQPSWWKKC2U.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7V39RZQPSWWKKC2U.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "7V39RZQPSWWKKC2U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7V39RZQPSWWKKC2U.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "7V39RZQPSWWKKC2U.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7006" + }, + "appliesTo" : [ ] + }, + "7V39RZQPSWWKKC2U.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "7V39RZQPSWWKKC2U.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7V39RZQPSWWKKC2U.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "7V39RZQPSWWKKC2U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7V39RZQPSWWKKC2U.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "7V39RZQPSWWKKC2U.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7V39RZQPSWWKKC2U.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "7V39RZQPSWWKKC2U", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7V39RZQPSWWKKC2U.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "7V39RZQPSWWKKC2U.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13042" + }, + "appliesTo" : [ ] + }, + "7V39RZQPSWWKKC2U.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "7V39RZQPSWWKKC2U.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7V39RZQPSWWKKC2U.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "7V39RZQPSWWKKC2U", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7V39RZQPSWWKKC2U.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "7V39RZQPSWWKKC2U.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6420000000" + }, + "appliesTo" : [ ] + }, + "7V39RZQPSWWKKC2U.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "7V39RZQPSWWKKC2U.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11236" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7V39RZQPSWWKKC2U.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "7V39RZQPSWWKKC2U", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "7V39RZQPSWWKKC2U.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "7V39RZQPSWWKKC2U.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32589" + }, + "appliesTo" : [ ] + }, + "7V39RZQPSWWKKC2U.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "7V39RZQPSWWKKC2U.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7V39RZQPSWWKKC2U.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "7V39RZQPSWWKKC2U", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7V39RZQPSWWKKC2U.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "7V39RZQPSWWKKC2U.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "7V39RZQPSWWKKC2U.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "7V39RZQPSWWKKC2U.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26421" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7V39RZQPSWWKKC2U.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "7V39RZQPSWWKKC2U", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7V39RZQPSWWKKC2U.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "7V39RZQPSWWKKC2U.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7V39RZQPSWWKKC2U.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "7V39RZQPSWWKKC2U", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7V39RZQPSWWKKC2U.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "7V39RZQPSWWKKC2U.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7V39RZQPSWWKKC2U.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "7V39RZQPSWWKKC2U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7V39RZQPSWWKKC2U.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "7V39RZQPSWWKKC2U.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13909" + }, + "appliesTo" : [ ] + }, + "7V39RZQPSWWKKC2U.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "7V39RZQPSWWKKC2U.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7V39RZQPSWWKKC2U.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "7V39RZQPSWWKKC2U", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7V39RZQPSWWKKC2U.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "7V39RZQPSWWKKC2U.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4608" + }, + "appliesTo" : [ ] + }, + "7V39RZQPSWWKKC2U.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "7V39RZQPSWWKKC2U.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "864JFB48Z5WZN64X" : { + "864JFB48Z5WZN64X.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "864JFB48Z5WZN64X", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "864JFB48Z5WZN64X.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "864JFB48Z5WZN64X.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1610000000" + }, + "appliesTo" : [ ] + }, + "864JFB48Z5WZN64X.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "864JFB48Z5WZN64X.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "888" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "864JFB48Z5WZN64X.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "864JFB48Z5WZN64X", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "864JFB48Z5WZN64X.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "864JFB48Z5WZN64X.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2267" + }, + "appliesTo" : [ ] + }, + "864JFB48Z5WZN64X.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "864JFB48Z5WZN64X.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "864JFB48Z5WZN64X.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "864JFB48Z5WZN64X", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "864JFB48Z5WZN64X.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "864JFB48Z5WZN64X.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2116" + }, + "appliesTo" : [ ] + }, + "864JFB48Z5WZN64X.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "864JFB48Z5WZN64X.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "864JFB48Z5WZN64X.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "864JFB48Z5WZN64X", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "864JFB48Z5WZN64X.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "864JFB48Z5WZN64X.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5045" + }, + "appliesTo" : [ ] + }, + "864JFB48Z5WZN64X.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "864JFB48Z5WZN64X.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "864JFB48Z5WZN64X.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "864JFB48Z5WZN64X", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "864JFB48Z5WZN64X.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "864JFB48Z5WZN64X.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "864JFB48Z5WZN64X.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "864JFB48Z5WZN64X", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "864JFB48Z5WZN64X.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "864JFB48Z5WZN64X.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1845" + }, + "appliesTo" : [ ] + }, + "864JFB48Z5WZN64X.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "864JFB48Z5WZN64X.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "864JFB48Z5WZN64X.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "864JFB48Z5WZN64X", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "864JFB48Z5WZN64X.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "864JFB48Z5WZN64X.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "864JFB48Z5WZN64X.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "864JFB48Z5WZN64X", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "864JFB48Z5WZN64X.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "864JFB48Z5WZN64X.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "864JFB48Z5WZN64X.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "864JFB48Z5WZN64X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "864JFB48Z5WZN64X.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "864JFB48Z5WZN64X.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2540" + }, + "appliesTo" : [ ] + }, + "864JFB48Z5WZN64X.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "864JFB48Z5WZN64X.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "864JFB48Z5WZN64X.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "864JFB48Z5WZN64X", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "864JFB48Z5WZN64X.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "864JFB48Z5WZN64X.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "864JFB48Z5WZN64X.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "864JFB48Z5WZN64X.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5723" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "864JFB48Z5WZN64X.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "864JFB48Z5WZN64X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "864JFB48Z5WZN64X.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "864JFB48Z5WZN64X.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "864JFB48Z5WZN64X.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "864JFB48Z5WZN64X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "864JFB48Z5WZN64X.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "864JFB48Z5WZN64X.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1028" + }, + "appliesTo" : [ ] + }, + "864JFB48Z5WZN64X.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "864JFB48Z5WZN64X.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "AP8CRXEFDUCGR7QY" : { + "AP8CRXEFDUCGR7QY.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "AP8CRXEFDUCGR7QY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AP8CRXEFDUCGR7QY.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "AP8CRXEFDUCGR7QY.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "AP8CRXEFDUCGR7QY.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "AP8CRXEFDUCGR7QY.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1312" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AP8CRXEFDUCGR7QY.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "AP8CRXEFDUCGR7QY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AP8CRXEFDUCGR7QY.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "AP8CRXEFDUCGR7QY.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1388" + }, + "appliesTo" : [ ] + }, + "AP8CRXEFDUCGR7QY.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "AP8CRXEFDUCGR7QY.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "AP8CRXEFDUCGR7QY.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "AP8CRXEFDUCGR7QY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AP8CRXEFDUCGR7QY.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "AP8CRXEFDUCGR7QY.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1352000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "AP8CRXEFDUCGR7QY.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "AP8CRXEFDUCGR7QY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AP8CRXEFDUCGR7QY.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "AP8CRXEFDUCGR7QY.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "AP8CRXEFDUCGR7QY.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "AP8CRXEFDUCGR7QY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AP8CRXEFDUCGR7QY.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "AP8CRXEFDUCGR7QY.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "661" + }, + "appliesTo" : [ ] + }, + "AP8CRXEFDUCGR7QY.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "AP8CRXEFDUCGR7QY.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0755000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AP8CRXEFDUCGR7QY.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "AP8CRXEFDUCGR7QY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AP8CRXEFDUCGR7QY.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "AP8CRXEFDUCGR7QY.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3602" + }, + "appliesTo" : [ ] + }, + "AP8CRXEFDUCGR7QY.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "AP8CRXEFDUCGR7QY.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "AP8CRXEFDUCGR7QY.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "AP8CRXEFDUCGR7QY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AP8CRXEFDUCGR7QY.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "AP8CRXEFDUCGR7QY.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1417000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "AP8CRXEFDUCGR7QY.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "AP8CRXEFDUCGR7QY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AP8CRXEFDUCGR7QY.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "AP8CRXEFDUCGR7QY.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0799000000" + }, + "appliesTo" : [ ] + }, + "AP8CRXEFDUCGR7QY.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "AP8CRXEFDUCGR7QY.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "700" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "AP8CRXEFDUCGR7QY.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "AP8CRXEFDUCGR7QY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AP8CRXEFDUCGR7QY.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "AP8CRXEFDUCGR7QY.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1632000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "AP8CRXEFDUCGR7QY.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "AP8CRXEFDUCGR7QY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AP8CRXEFDUCGR7QY.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "AP8CRXEFDUCGR7QY.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "AP8CRXEFDUCGR7QY.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "AP8CRXEFDUCGR7QY.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3204" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AP8CRXEFDUCGR7QY.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "AP8CRXEFDUCGR7QY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AP8CRXEFDUCGR7QY.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "AP8CRXEFDUCGR7QY.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1813" + }, + "appliesTo" : [ ] + }, + "AP8CRXEFDUCGR7QY.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "AP8CRXEFDUCGR7QY.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "AP8CRXEFDUCGR7QY.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "AP8CRXEFDUCGR7QY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AP8CRXEFDUCGR7QY.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "AP8CRXEFDUCGR7QY.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0650000000" + }, + "appliesTo" : [ ] + }, + "AP8CRXEFDUCGR7QY.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "AP8CRXEFDUCGR7QY.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1703" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "FMDFEJP7NHC74DVF" : { + "FMDFEJP7NHC74DVF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "FMDFEJP7NHC74DVF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "FMDFEJP7NHC74DVF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "FMDFEJP7NHC74DVF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "736" + }, + "appliesTo" : [ ] + }, + "FMDFEJP7NHC74DVF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "FMDFEJP7NHC74DVF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FMDFEJP7NHC74DVF.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "FMDFEJP7NHC74DVF", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "FMDFEJP7NHC74DVF.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "FMDFEJP7NHC74DVF.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FMDFEJP7NHC74DVF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "FMDFEJP7NHC74DVF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "FMDFEJP7NHC74DVF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "FMDFEJP7NHC74DVF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2361" + }, + "appliesTo" : [ ] + }, + "FMDFEJP7NHC74DVF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "FMDFEJP7NHC74DVF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FMDFEJP7NHC74DVF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "FMDFEJP7NHC74DVF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "FMDFEJP7NHC74DVF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "FMDFEJP7NHC74DVF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1212" + }, + "appliesTo" : [ ] + }, + "FMDFEJP7NHC74DVF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "FMDFEJP7NHC74DVF.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FMDFEJP7NHC74DVF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "FMDFEJP7NHC74DVF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "FMDFEJP7NHC74DVF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "FMDFEJP7NHC74DVF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1212" + }, + "appliesTo" : [ ] + }, + "FMDFEJP7NHC74DVF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "FMDFEJP7NHC74DVF.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "TE2QPK3WJ4MBEASP" : { + "TE2QPK3WJ4MBEASP.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "TE2QPK3WJ4MBEASP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TE2QPK3WJ4MBEASP.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "TE2QPK3WJ4MBEASP.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.5320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TE2QPK3WJ4MBEASP.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TE2QPK3WJ4MBEASP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TE2QPK3WJ4MBEASP.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TE2QPK3WJ4MBEASP.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.1750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TE2QPK3WJ4MBEASP.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "TE2QPK3WJ4MBEASP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TE2QPK3WJ4MBEASP.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "TE2QPK3WJ4MBEASP.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TE2QPK3WJ4MBEASP.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "TE2QPK3WJ4MBEASP.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "132814" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TE2QPK3WJ4MBEASP.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "TE2QPK3WJ4MBEASP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TE2QPK3WJ4MBEASP.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "TE2QPK3WJ4MBEASP.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "43392" + }, + "appliesTo" : [ ] + }, + "TE2QPK3WJ4MBEASP.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "TE2QPK3WJ4MBEASP.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.0830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TE2QPK3WJ4MBEASP.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "TE2QPK3WJ4MBEASP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TE2QPK3WJ4MBEASP.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "TE2QPK3WJ4MBEASP.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TE2QPK3WJ4MBEASP.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "TE2QPK3WJ4MBEASP.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "86187" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TE2QPK3WJ4MBEASP.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "TE2QPK3WJ4MBEASP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TE2QPK3WJ4MBEASP.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "TE2QPK3WJ4MBEASP.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.8480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TE2QPK3WJ4MBEASP.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TE2QPK3WJ4MBEASP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TE2QPK3WJ4MBEASP.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TE2QPK3WJ4MBEASP.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "111344" + }, + "appliesTo" : [ ] + }, + "TE2QPK3WJ4MBEASP.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TE2QPK3WJ4MBEASP.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TE2QPK3WJ4MBEASP.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TE2QPK3WJ4MBEASP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TE2QPK3WJ4MBEASP.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TE2QPK3WJ4MBEASP.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "57408" + }, + "appliesTo" : [ ] + }, + "TE2QPK3WJ4MBEASP.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TE2QPK3WJ4MBEASP.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TE2QPK3WJ4MBEASP.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "TE2QPK3WJ4MBEASP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TE2QPK3WJ4MBEASP.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "TE2QPK3WJ4MBEASP.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "66019" + }, + "appliesTo" : [ ] + }, + "TE2QPK3WJ4MBEASP.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "TE2QPK3WJ4MBEASP.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TE2QPK3WJ4MBEASP.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TE2QPK3WJ4MBEASP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TE2QPK3WJ4MBEASP.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TE2QPK3WJ4MBEASP.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37732" + }, + "appliesTo" : [ ] + }, + "TE2QPK3WJ4MBEASP.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TE2QPK3WJ4MBEASP.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.4370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TE2QPK3WJ4MBEASP.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TE2QPK3WJ4MBEASP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TE2QPK3WJ4MBEASP.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TE2QPK3WJ4MBEASP.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "75094" + }, + "appliesTo" : [ ] + }, + "TE2QPK3WJ4MBEASP.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TE2QPK3WJ4MBEASP.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TE2QPK3WJ4MBEASP.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "TE2QPK3WJ4MBEASP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TE2QPK3WJ4MBEASP.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "TE2QPK3WJ4MBEASP.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.5560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "26EZN83WFYW935BY" : { + "26EZN83WFYW935BY.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "26EZN83WFYW935BY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "26EZN83WFYW935BY.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "26EZN83WFYW935BY.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4385" + }, + "appliesTo" : [ ] + }, + "26EZN83WFYW935BY.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "26EZN83WFYW935BY.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "26EZN83WFYW935BY.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "26EZN83WFYW935BY", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "26EZN83WFYW935BY.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "26EZN83WFYW935BY.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "26EZN83WFYW935BY.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "26EZN83WFYW935BY.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8705" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "26EZN83WFYW935BY.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "26EZN83WFYW935BY", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "26EZN83WFYW935BY.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "26EZN83WFYW935BY.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "26EZN83WFYW935BY.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "26EZN83WFYW935BY", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "26EZN83WFYW935BY.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "26EZN83WFYW935BY.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "26EZN83WFYW935BY.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "26EZN83WFYW935BY.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11085" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "26EZN83WFYW935BY.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "26EZN83WFYW935BY", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "26EZN83WFYW935BY.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "26EZN83WFYW935BY.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "26EZN83WFYW935BY.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "26EZN83WFYW935BY", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "26EZN83WFYW935BY.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "26EZN83WFYW935BY.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1683" + }, + "appliesTo" : [ ] + }, + "26EZN83WFYW935BY.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "26EZN83WFYW935BY.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "26EZN83WFYW935BY.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "26EZN83WFYW935BY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "26EZN83WFYW935BY.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "26EZN83WFYW935BY.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "26EZN83WFYW935BY.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "26EZN83WFYW935BY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "26EZN83WFYW935BY.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "26EZN83WFYW935BY.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3190000000" + }, + "appliesTo" : [ ] + }, + "26EZN83WFYW935BY.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "26EZN83WFYW935BY.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1656" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "26EZN83WFYW935BY.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "26EZN83WFYW935BY", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "26EZN83WFYW935BY.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "26EZN83WFYW935BY.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3979" + }, + "appliesTo" : [ ] + }, + "26EZN83WFYW935BY.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "26EZN83WFYW935BY.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "26EZN83WFYW935BY.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "26EZN83WFYW935BY", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "26EZN83WFYW935BY.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "26EZN83WFYW935BY.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4544" + }, + "appliesTo" : [ ] + }, + "26EZN83WFYW935BY.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "26EZN83WFYW935BY.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "26EZN83WFYW935BY.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "26EZN83WFYW935BY", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "26EZN83WFYW935BY.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "26EZN83WFYW935BY.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2691" + }, + "appliesTo" : [ ] + }, + "26EZN83WFYW935BY.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "26EZN83WFYW935BY.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "GVHWDK4ADFF5B3WR" : { + "GVHWDK4ADFF5B3WR.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "GVHWDK4ADFF5B3WR", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GVHWDK4ADFF5B3WR.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "GVHWDK4ADFF5B3WR.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25543" + }, + "appliesTo" : [ ] + }, + "GVHWDK4ADFF5B3WR.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "GVHWDK4ADFF5B3WR.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GVHWDK4ADFF5B3WR.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "GVHWDK4ADFF5B3WR", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "GVHWDK4ADFF5B3WR.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "GVHWDK4ADFF5B3WR.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7500000000" + }, + "appliesTo" : [ ] + }, + "GVHWDK4ADFF5B3WR.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "GVHWDK4ADFF5B3WR.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7220" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GVHWDK4ADFF5B3WR.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "GVHWDK4ADFF5B3WR", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GVHWDK4ADFF5B3WR.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "GVHWDK4ADFF5B3WR.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10880" + }, + "appliesTo" : [ ] + }, + "GVHWDK4ADFF5B3WR.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "GVHWDK4ADFF5B3WR.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GVHWDK4ADFF5B3WR.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "GVHWDK4ADFF5B3WR", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GVHWDK4ADFF5B3WR.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "GVHWDK4ADFF5B3WR.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "GVHWDK4ADFF5B3WR.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "GVHWDK4ADFF5B3WR.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13514" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GVHWDK4ADFF5B3WR.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "GVHWDK4ADFF5B3WR", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GVHWDK4ADFF5B3WR.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "GVHWDK4ADFF5B3WR.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "YRUVJDC2XTW5YRU3" : { + "YRUVJDC2XTW5YRU3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YRUVJDC2XTW5YRU3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YRUVJDC2XTW5YRU3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YRUVJDC2XTW5YRU3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23563" + }, + "appliesTo" : [ ] + }, + "YRUVJDC2XTW5YRU3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YRUVJDC2XTW5YRU3.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YRUVJDC2XTW5YRU3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YRUVJDC2XTW5YRU3", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YRUVJDC2XTW5YRU3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YRUVJDC2XTW5YRU3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13987" + }, + "appliesTo" : [ ] + }, + "YRUVJDC2XTW5YRU3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YRUVJDC2XTW5YRU3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YRUVJDC2XTW5YRU3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YRUVJDC2XTW5YRU3", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "YRUVJDC2XTW5YRU3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YRUVJDC2XTW5YRU3.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YRUVJDC2XTW5YRU3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YRUVJDC2XTW5YRU3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YRUVJDC2XTW5YRU3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YRUVJDC2XTW5YRU3.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9380000000" + }, + "appliesTo" : [ ] + }, + "YRUVJDC2XTW5YRU3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YRUVJDC2XTW5YRU3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26559" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YRUVJDC2XTW5YRU3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YRUVJDC2XTW5YRU3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YRUVJDC2XTW5YRU3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YRUVJDC2XTW5YRU3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YRUVJDC2XTW5YRU3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YRUVJDC2XTW5YRU3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "48137" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "G8C4DK367XUB4P7B" : { + "G8C4DK367XUB4P7B.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "G8C4DK367XUB4P7B", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "G8C4DK367XUB4P7B.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "G8C4DK367XUB4P7B.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7899000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "G8C4DK367XUB4P7B.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "G8C4DK367XUB4P7B", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "G8C4DK367XUB4P7B.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "G8C4DK367XUB4P7B.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20330" + }, + "appliesTo" : [ ] + }, + "G8C4DK367XUB4P7B.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "G8C4DK367XUB4P7B.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "G8C4DK367XUB4P7B.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "G8C4DK367XUB4P7B", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "G8C4DK367XUB4P7B.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "G8C4DK367XUB4P7B.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10487" + }, + "appliesTo" : [ ] + }, + "G8C4DK367XUB4P7B.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "G8C4DK367XUB4P7B.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "G8C4DK367XUB4P7B.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "G8C4DK367XUB4P7B", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "G8C4DK367XUB4P7B.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "G8C4DK367XUB4P7B.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8088000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "G8C4DK367XUB4P7B.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "G8C4DK367XUB4P7B", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "G8C4DK367XUB4P7B.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "G8C4DK367XUB4P7B.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10257" + }, + "appliesTo" : [ ] + }, + "G8C4DK367XUB4P7B.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "G8C4DK367XUB4P7B.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3903000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "G8C4DK367XUB4P7B.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "G8C4DK367XUB4P7B", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "G8C4DK367XUB4P7B.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "G8C4DK367XUB4P7B.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "G8C4DK367XUB4P7B.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "G8C4DK367XUB4P7B.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7328" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "G8C4DK367XUB4P7B.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "G8C4DK367XUB4P7B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "G8C4DK367XUB4P7B.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "G8C4DK367XUB4P7B.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8765000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "G8C4DK367XUB4P7B.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "G8C4DK367XUB4P7B", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "G8C4DK367XUB4P7B.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "G8C4DK367XUB4P7B.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3679" + }, + "appliesTo" : [ ] + }, + "G8C4DK367XUB4P7B.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "G8C4DK367XUB4P7B.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "G8C4DK367XUB4P7B.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "G8C4DK367XUB4P7B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "G8C4DK367XUB4P7B.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "G8C4DK367XUB4P7B.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3795" + }, + "appliesTo" : [ ] + }, + "G8C4DK367XUB4P7B.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "G8C4DK367XUB4P7B.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4332000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "G8C4DK367XUB4P7B.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "G8C4DK367XUB4P7B", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "G8C4DK367XUB4P7B.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "G8C4DK367XUB4P7B.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8488000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "G8C4DK367XUB4P7B.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "G8C4DK367XUB4P7B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "G8C4DK367XUB4P7B.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "G8C4DK367XUB4P7B.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "G8C4DK367XUB4P7B.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "G8C4DK367XUB4P7B.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7554" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "G8C4DK367XUB4P7B.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "G8C4DK367XUB4P7B", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "G8C4DK367XUB4P7B.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "G8C4DK367XUB4P7B.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "G8C4DK367XUB4P7B.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "G8C4DK367XUB4P7B.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20903" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "BYDPYVAT6B57HKJT" : { + "BYDPYVAT6B57HKJT.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "BYDPYVAT6B57HKJT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BYDPYVAT6B57HKJT.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "BYDPYVAT6B57HKJT.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5841" + }, + "appliesTo" : [ ] + }, + "BYDPYVAT6B57HKJT.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "BYDPYVAT6B57HKJT.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BYDPYVAT6B57HKJT.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "BYDPYVAT6B57HKJT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BYDPYVAT6B57HKJT.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "BYDPYVAT6B57HKJT.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BYDPYVAT6B57HKJT.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "BYDPYVAT6B57HKJT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BYDPYVAT6B57HKJT.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "BYDPYVAT6B57HKJT.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4126" + }, + "appliesTo" : [ ] + }, + "BYDPYVAT6B57HKJT.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "BYDPYVAT6B57HKJT.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BYDPYVAT6B57HKJT.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "BYDPYVAT6B57HKJT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BYDPYVAT6B57HKJT.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "BYDPYVAT6B57HKJT.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "BYDPYVAT6B57HKJT.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "BYDPYVAT6B57HKJT.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9664" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BYDPYVAT6B57HKJT.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "BYDPYVAT6B57HKJT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BYDPYVAT6B57HKJT.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "BYDPYVAT6B57HKJT.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5148" + }, + "appliesTo" : [ ] + }, + "BYDPYVAT6B57HKJT.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "BYDPYVAT6B57HKJT.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BYDPYVAT6B57HKJT.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "BYDPYVAT6B57HKJT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BYDPYVAT6B57HKJT.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "BYDPYVAT6B57HKJT.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BYDPYVAT6B57HKJT.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "BYDPYVAT6B57HKJT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BYDPYVAT6B57HKJT.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "BYDPYVAT6B57HKJT.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8322" + }, + "appliesTo" : [ ] + }, + "BYDPYVAT6B57HKJT.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "BYDPYVAT6B57HKJT.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BYDPYVAT6B57HKJT.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "BYDPYVAT6B57HKJT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BYDPYVAT6B57HKJT.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "BYDPYVAT6B57HKJT.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3290000000" + }, + "appliesTo" : [ ] + }, + "BYDPYVAT6B57HKJT.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "BYDPYVAT6B57HKJT.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2358" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BYDPYVAT6B57HKJT.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "BYDPYVAT6B57HKJT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BYDPYVAT6B57HKJT.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "BYDPYVAT6B57HKJT.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BYDPYVAT6B57HKJT.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "BYDPYVAT6B57HKJT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BYDPYVAT6B57HKJT.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "BYDPYVAT6B57HKJT.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BYDPYVAT6B57HKJT.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "BYDPYVAT6B57HKJT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BYDPYVAT6B57HKJT.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "BYDPYVAT6B57HKJT.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3700000000" + }, + "appliesTo" : [ ] + }, + "BYDPYVAT6B57HKJT.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "BYDPYVAT6B57HKJT.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2712" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BYDPYVAT6B57HKJT.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "BYDPYVAT6B57HKJT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BYDPYVAT6B57HKJT.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "BYDPYVAT6B57HKJT.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3588" + }, + "appliesTo" : [ ] + }, + "BYDPYVAT6B57HKJT.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "BYDPYVAT6B57HKJT.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "X4RWGEB2DKQGCWC2" : { + "X4RWGEB2DKQGCWC2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "X4RWGEB2DKQGCWC2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "X4RWGEB2DKQGCWC2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "X4RWGEB2DKQGCWC2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "405" + }, + "appliesTo" : [ ] + }, + "X4RWGEB2DKQGCWC2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "X4RWGEB2DKQGCWC2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "X4RWGEB2DKQGCWC2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "X4RWGEB2DKQGCWC2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "X4RWGEB2DKQGCWC2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "X4RWGEB2DKQGCWC2.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0280000000" + }, + "appliesTo" : [ ] + }, + "X4RWGEB2DKQGCWC2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "X4RWGEB2DKQGCWC2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "631" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "X4RWGEB2DKQGCWC2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "X4RWGEB2DKQGCWC2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "X4RWGEB2DKQGCWC2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "X4RWGEB2DKQGCWC2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "X4RWGEB2DKQGCWC2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "X4RWGEB2DKQGCWC2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1284" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "X4RWGEB2DKQGCWC2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "X4RWGEB2DKQGCWC2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "X4RWGEB2DKQGCWC2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "X4RWGEB2DKQGCWC2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "671" + }, + "appliesTo" : [ ] + }, + "X4RWGEB2DKQGCWC2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "X4RWGEB2DKQGCWC2.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "X4RWGEB2DKQGCWC2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "X4RWGEB2DKQGCWC2", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "X4RWGEB2DKQGCWC2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "X4RWGEB2DKQGCWC2.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "XDBQD4Z97Q72N97A" : { + "XDBQD4Z97Q72N97A.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XDBQD4Z97Q72N97A", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "XDBQD4Z97Q72N97A.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XDBQD4Z97Q72N97A.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "24.4980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XDBQD4Z97Q72N97A.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XDBQD4Z97Q72N97A", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "XDBQD4Z97Q72N97A.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XDBQD4Z97Q72N97A.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "205000" + }, + "appliesTo" : [ ] + }, + "XDBQD4Z97Q72N97A.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XDBQD4Z97Q72N97A.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XDBQD4Z97Q72N97A.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "XDBQD4Z97Q72N97A", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "XDBQD4Z97Q72N97A.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "XDBQD4Z97Q72N97A.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "17.9180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XDBQD4Z97Q72N97A.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "XDBQD4Z97Q72N97A", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "XDBQD4Z97Q72N97A.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "XDBQD4Z97Q72N97A.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "225839" + }, + "appliesTo" : [ ] + }, + "XDBQD4Z97Q72N97A.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "XDBQD4Z97Q72N97A.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.5940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XDBQD4Z97Q72N97A.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "XDBQD4Z97Q72N97A", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "XDBQD4Z97Q72N97A.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "XDBQD4Z97Q72N97A.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.6310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XDBQD4Z97Q72N97A.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XDBQD4Z97Q72N97A", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "XDBQD4Z97Q72N97A.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XDBQD4Z97Q72N97A.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "407838" + }, + "appliesTo" : [ ] + }, + "XDBQD4Z97Q72N97A.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XDBQD4Z97Q72N97A.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XDBQD4Z97Q72N97A.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "XDBQD4Z97Q72N97A", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "XDBQD4Z97Q72N97A.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "XDBQD4Z97Q72N97A.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "446876" + }, + "appliesTo" : [ ] + }, + "XDBQD4Z97Q72N97A.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "XDBQD4Z97Q72N97A.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XDBQD4Z97Q72N97A.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XDBQD4Z97Q72N97A", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "XDBQD4Z97Q72N97A.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XDBQD4Z97Q72N97A.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "210182" + }, + "appliesTo" : [ ] + }, + "XDBQD4Z97Q72N97A.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XDBQD4Z97Q72N97A.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.9980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XDBQD4Z97Q72N97A.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "XDBQD4Z97Q72N97A", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XDBQD4Z97Q72N97A.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "XDBQD4Z97Q72N97A.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "225169" + }, + "appliesTo" : [ ] + }, + "XDBQD4Z97Q72N97A.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "XDBQD4Z97Q72N97A.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XDBQD4Z97Q72N97A.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XDBQD4Z97Q72N97A", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "XDBQD4Z97Q72N97A.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XDBQD4Z97Q72N97A.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "11.8580000000" + }, + "appliesTo" : [ ] + }, + "XDBQD4Z97Q72N97A.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XDBQD4Z97Q72N97A.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "103872" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XDBQD4Z97Q72N97A.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "XDBQD4Z97Q72N97A", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XDBQD4Z97Q72N97A.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "XDBQD4Z97Q72N97A.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "26.9650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XDBQD4Z97Q72N97A.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "XDBQD4Z97Q72N97A", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XDBQD4Z97Q72N97A.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "XDBQD4Z97Q72N97A.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "114163" + }, + "appliesTo" : [ ] + }, + "XDBQD4Z97Q72N97A.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "XDBQD4Z97Q72N97A.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.0320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "SUJ3QNNHT5BXCCWP" : { + "SUJ3QNNHT5BXCCWP.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "SUJ3QNNHT5BXCCWP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SUJ3QNNHT5BXCCWP.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "SUJ3QNNHT5BXCCWP.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4005" + }, + "appliesTo" : [ ] + }, + "SUJ3QNNHT5BXCCWP.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "SUJ3QNNHT5BXCCWP.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SUJ3QNNHT5BXCCWP.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "SUJ3QNNHT5BXCCWP", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "SUJ3QNNHT5BXCCWP.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "SUJ3QNNHT5BXCCWP.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7267" + }, + "appliesTo" : [ ] + }, + "SUJ3QNNHT5BXCCWP.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "SUJ3QNNHT5BXCCWP.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SUJ3QNNHT5BXCCWP.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "SUJ3QNNHT5BXCCWP", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "SUJ3QNNHT5BXCCWP.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "SUJ3QNNHT5BXCCWP.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SUJ3QNNHT5BXCCWP.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SUJ3QNNHT5BXCCWP", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "SUJ3QNNHT5BXCCWP.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SUJ3QNNHT5BXCCWP.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3811" + }, + "appliesTo" : [ ] + }, + "SUJ3QNNHT5BXCCWP.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SUJ3QNNHT5BXCCWP.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SUJ3QNNHT5BXCCWP.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SUJ3QNNHT5BXCCWP", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "SUJ3QNNHT5BXCCWP.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SUJ3QNNHT5BXCCWP.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9558" + }, + "appliesTo" : [ ] + }, + "SUJ3QNNHT5BXCCWP.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SUJ3QNNHT5BXCCWP.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SUJ3QNNHT5BXCCWP.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "SUJ3QNNHT5BXCCWP", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "SUJ3QNNHT5BXCCWP.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "SUJ3QNNHT5BXCCWP.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10970" + }, + "appliesTo" : [ ] + }, + "SUJ3QNNHT5BXCCWP.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "SUJ3QNNHT5BXCCWP.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SUJ3QNNHT5BXCCWP.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SUJ3QNNHT5BXCCWP", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "SUJ3QNNHT5BXCCWP.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SUJ3QNNHT5BXCCWP.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1350000000" + }, + "appliesTo" : [ ] + }, + "SUJ3QNNHT5BXCCWP.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SUJ3QNNHT5BXCCWP.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6610" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SUJ3QNNHT5BXCCWP.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "SUJ3QNNHT5BXCCWP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SUJ3QNNHT5BXCCWP.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "SUJ3QNNHT5BXCCWP.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SUJ3QNNHT5BXCCWP.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "SUJ3QNNHT5BXCCWP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SUJ3QNNHT5BXCCWP.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "SUJ3QNNHT5BXCCWP.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2021" + }, + "appliesTo" : [ ] + }, + "SUJ3QNNHT5BXCCWP.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "SUJ3QNNHT5BXCCWP.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SUJ3QNNHT5BXCCWP.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SUJ3QNNHT5BXCCWP", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "SUJ3QNNHT5BXCCWP.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SUJ3QNNHT5BXCCWP.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SUJ3QNNHT5BXCCWP.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SUJ3QNNHT5BXCCWP", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "SUJ3QNNHT5BXCCWP.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SUJ3QNNHT5BXCCWP.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2525" + }, + "appliesTo" : [ ] + }, + "SUJ3QNNHT5BXCCWP.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SUJ3QNNHT5BXCCWP.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "Q7KRGX9524EXCE9T" : { + "Q7KRGX9524EXCE9T.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Q7KRGX9524EXCE9T", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Q7KRGX9524EXCE9T.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Q7KRGX9524EXCE9T.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6469" + }, + "appliesTo" : [ ] + }, + "Q7KRGX9524EXCE9T.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Q7KRGX9524EXCE9T.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7385000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q7KRGX9524EXCE9T.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Q7KRGX9524EXCE9T", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Q7KRGX9524EXCE9T.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Q7KRGX9524EXCE9T.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12809" + }, + "appliesTo" : [ ] + }, + "Q7KRGX9524EXCE9T.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Q7KRGX9524EXCE9T.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Q7KRGX9524EXCE9T.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "Q7KRGX9524EXCE9T", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Q7KRGX9524EXCE9T.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "Q7KRGX9524EXCE9T.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4042000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Q7KRGX9524EXCE9T.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "Q7KRGX9524EXCE9T", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Q7KRGX9524EXCE9T.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "Q7KRGX9524EXCE9T.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Q7KRGX9524EXCE9T.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "Q7KRGX9524EXCE9T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q7KRGX9524EXCE9T.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "Q7KRGX9524EXCE9T.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "Q7KRGX9524EXCE9T.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "Q7KRGX9524EXCE9T.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13763" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Q7KRGX9524EXCE9T.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Q7KRGX9524EXCE9T", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Q7KRGX9524EXCE9T.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Q7KRGX9524EXCE9T.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5141000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Q7KRGX9524EXCE9T.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "Q7KRGX9524EXCE9T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q7KRGX9524EXCE9T.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "Q7KRGX9524EXCE9T.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6956" + }, + "appliesTo" : [ ] + }, + "Q7KRGX9524EXCE9T.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "Q7KRGX9524EXCE9T.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7941000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q7KRGX9524EXCE9T.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "Q7KRGX9524EXCE9T", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Q7KRGX9524EXCE9T.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "Q7KRGX9524EXCE9T.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "Q7KRGX9524EXCE9T.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "Q7KRGX9524EXCE9T.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35276" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Q7KRGX9524EXCE9T.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Q7KRGX9524EXCE9T", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Q7KRGX9524EXCE9T.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Q7KRGX9524EXCE9T.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32632" + }, + "appliesTo" : [ ] + }, + "Q7KRGX9524EXCE9T.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Q7KRGX9524EXCE9T.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Q7KRGX9524EXCE9T.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "Q7KRGX9524EXCE9T", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Q7KRGX9524EXCE9T.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "Q7KRGX9524EXCE9T.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17800" + }, + "appliesTo" : [ ] + }, + "Q7KRGX9524EXCE9T.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "Q7KRGX9524EXCE9T.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6773000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q7KRGX9524EXCE9T.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "Q7KRGX9524EXCE9T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q7KRGX9524EXCE9T.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "Q7KRGX9524EXCE9T.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6308000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Q7KRGX9524EXCE9T.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Q7KRGX9524EXCE9T", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Q7KRGX9524EXCE9T.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Q7KRGX9524EXCE9T.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16740" + }, + "appliesTo" : [ ] + }, + "Q7KRGX9524EXCE9T.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Q7KRGX9524EXCE9T.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "BUBBYJ9CTGMQDCAN" : { + "BUBBYJ9CTGMQDCAN.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "BUBBYJ9CTGMQDCAN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BUBBYJ9CTGMQDCAN.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "BUBBYJ9CTGMQDCAN.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14930" + }, + "appliesTo" : [ ] + }, + "BUBBYJ9CTGMQDCAN.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "BUBBYJ9CTGMQDCAN.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8343000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BUBBYJ9CTGMQDCAN.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "BUBBYJ9CTGMQDCAN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BUBBYJ9CTGMQDCAN.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "BUBBYJ9CTGMQDCAN.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BUBBYJ9CTGMQDCAN.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "BUBBYJ9CTGMQDCAN", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "BUBBYJ9CTGMQDCAN.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "BUBBYJ9CTGMQDCAN.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12982" + }, + "appliesTo" : [ ] + }, + "BUBBYJ9CTGMQDCAN.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "BUBBYJ9CTGMQDCAN.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BUBBYJ9CTGMQDCAN.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "BUBBYJ9CTGMQDCAN", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "BUBBYJ9CTGMQDCAN.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "BUBBYJ9CTGMQDCAN.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2422000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BUBBYJ9CTGMQDCAN.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "BUBBYJ9CTGMQDCAN", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "BUBBYJ9CTGMQDCAN.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "BUBBYJ9CTGMQDCAN.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "67151" + }, + "appliesTo" : [ ] + }, + "BUBBYJ9CTGMQDCAN.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "BUBBYJ9CTGMQDCAN.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BUBBYJ9CTGMQDCAN.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "BUBBYJ9CTGMQDCAN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BUBBYJ9CTGMQDCAN.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "BUBBYJ9CTGMQDCAN.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30401" + }, + "appliesTo" : [ ] + }, + "BUBBYJ9CTGMQDCAN.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "BUBBYJ9CTGMQDCAN.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BUBBYJ9CTGMQDCAN.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "BUBBYJ9CTGMQDCAN", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "BUBBYJ9CTGMQDCAN.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "BUBBYJ9CTGMQDCAN.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32518" + }, + "appliesTo" : [ ] + }, + "BUBBYJ9CTGMQDCAN.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "BUBBYJ9CTGMQDCAN.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3674000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BUBBYJ9CTGMQDCAN.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "BUBBYJ9CTGMQDCAN", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "BUBBYJ9CTGMQDCAN.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "BUBBYJ9CTGMQDCAN.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BUBBYJ9CTGMQDCAN.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "BUBBYJ9CTGMQDCAN", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "BUBBYJ9CTGMQDCAN.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "BUBBYJ9CTGMQDCAN.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "56574" + }, + "appliesTo" : [ ] + }, + "BUBBYJ9CTGMQDCAN.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "BUBBYJ9CTGMQDCAN.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BUBBYJ9CTGMQDCAN.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "BUBBYJ9CTGMQDCAN", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "BUBBYJ9CTGMQDCAN.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "BUBBYJ9CTGMQDCAN.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8027000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BUBBYJ9CTGMQDCAN.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "BUBBYJ9CTGMQDCAN", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "BUBBYJ9CTGMQDCAN.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "BUBBYJ9CTGMQDCAN.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26584" + }, + "appliesTo" : [ ] + }, + "BUBBYJ9CTGMQDCAN.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "BUBBYJ9CTGMQDCAN.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BUBBYJ9CTGMQDCAN.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "BUBBYJ9CTGMQDCAN", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "BUBBYJ9CTGMQDCAN.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "BUBBYJ9CTGMQDCAN.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2059000000" + }, + "appliesTo" : [ ] + }, + "BUBBYJ9CTGMQDCAN.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "BUBBYJ9CTGMQDCAN.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28275" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "AAWCKPS6CUV38XXA" : { + "AAWCKPS6CUV38XXA.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "AAWCKPS6CUV38XXA", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "AAWCKPS6CUV38XXA.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "AAWCKPS6CUV38XXA.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14977" + }, + "appliesTo" : [ ] + }, + "AAWCKPS6CUV38XXA.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "AAWCKPS6CUV38XXA.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AAWCKPS6CUV38XXA.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "AAWCKPS6CUV38XXA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AAWCKPS6CUV38XXA.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "AAWCKPS6CUV38XXA.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6337000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "AAWCKPS6CUV38XXA.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "AAWCKPS6CUV38XXA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AAWCKPS6CUV38XXA.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "AAWCKPS6CUV38XXA.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7093000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "AAWCKPS6CUV38XXA.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "AAWCKPS6CUV38XXA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AAWCKPS6CUV38XXA.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "AAWCKPS6CUV38XXA.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3982000000" + }, + "appliesTo" : [ ] + }, + "AAWCKPS6CUV38XXA.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "AAWCKPS6CUV38XXA.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7048" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "AAWCKPS6CUV38XXA.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "AAWCKPS6CUV38XXA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AAWCKPS6CUV38XXA.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "AAWCKPS6CUV38XXA.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8089" + }, + "appliesTo" : [ ] + }, + "AAWCKPS6CUV38XXA.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "AAWCKPS6CUV38XXA.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "AAWCKPS6CUV38XXA.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "AAWCKPS6CUV38XXA", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "AAWCKPS6CUV38XXA.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "AAWCKPS6CUV38XXA.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6150" + }, + "appliesTo" : [ ] + }, + "AAWCKPS6CUV38XXA.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "AAWCKPS6CUV38XXA.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AAWCKPS6CUV38XXA.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "AAWCKPS6CUV38XXA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AAWCKPS6CUV38XXA.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "AAWCKPS6CUV38XXA.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3075" + }, + "appliesTo" : [ ] + }, + "AAWCKPS6CUV38XXA.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "AAWCKPS6CUV38XXA.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AAWCKPS6CUV38XXA.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "AAWCKPS6CUV38XXA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AAWCKPS6CUV38XXA.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "AAWCKPS6CUV38XXA.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3546" + }, + "appliesTo" : [ ] + }, + "AAWCKPS6CUV38XXA.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "AAWCKPS6CUV38XXA.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5348000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "AAWCKPS6CUV38XXA.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "AAWCKPS6CUV38XXA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AAWCKPS6CUV38XXA.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "AAWCKPS6CUV38XXA.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17230" + }, + "appliesTo" : [ ] + }, + "AAWCKPS6CUV38XXA.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "AAWCKPS6CUV38XXA.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "AAWCKPS6CUV38XXA.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "AAWCKPS6CUV38XXA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AAWCKPS6CUV38XXA.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "AAWCKPS6CUV38XXA.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9801000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "AAWCKPS6CUV38XXA.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "AAWCKPS6CUV38XXA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AAWCKPS6CUV38XXA.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "AAWCKPS6CUV38XXA.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8692000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "AAWCKPS6CUV38XXA.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "AAWCKPS6CUV38XXA", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "AAWCKPS6CUV38XXA.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "AAWCKPS6CUV38XXA.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7165" + }, + "appliesTo" : [ ] + }, + "AAWCKPS6CUV38XXA.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "AAWCKPS6CUV38XXA.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "M8D9MPXPJGZE2NYV" : { + "M8D9MPXPJGZE2NYV.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "M8D9MPXPJGZE2NYV", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "M8D9MPXPJGZE2NYV.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "M8D9MPXPJGZE2NYV.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1582" + }, + "appliesTo" : [ ] + }, + "M8D9MPXPJGZE2NYV.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "M8D9MPXPJGZE2NYV.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "M8D9MPXPJGZE2NYV.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "M8D9MPXPJGZE2NYV", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "M8D9MPXPJGZE2NYV.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "M8D9MPXPJGZE2NYV.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3225" + }, + "appliesTo" : [ ] + }, + "M8D9MPXPJGZE2NYV.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "M8D9MPXPJGZE2NYV.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "M8D9MPXPJGZE2NYV.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "M8D9MPXPJGZE2NYV", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "M8D9MPXPJGZE2NYV.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "M8D9MPXPJGZE2NYV.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1795" + }, + "appliesTo" : [ ] + }, + "M8D9MPXPJGZE2NYV.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "M8D9MPXPJGZE2NYV.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "M8D9MPXPJGZE2NYV.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "M8D9MPXPJGZE2NYV", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "M8D9MPXPJGZE2NYV.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "M8D9MPXPJGZE2NYV.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1042" + }, + "appliesTo" : [ ] + }, + "M8D9MPXPJGZE2NYV.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "M8D9MPXPJGZE2NYV.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "M8D9MPXPJGZE2NYV.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "M8D9MPXPJGZE2NYV", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "M8D9MPXPJGZE2NYV.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "M8D9MPXPJGZE2NYV.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "A2QSKG5CZVECRMUE" : { + "A2QSKG5CZVECRMUE.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "A2QSKG5CZVECRMUE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "A2QSKG5CZVECRMUE.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "A2QSKG5CZVECRMUE.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14990" + }, + "appliesTo" : [ ] + }, + "A2QSKG5CZVECRMUE.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "A2QSKG5CZVECRMUE.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5704000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "A2QSKG5CZVECRMUE.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "A2QSKG5CZVECRMUE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "A2QSKG5CZVECRMUE.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "A2QSKG5CZVECRMUE.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28038" + }, + "appliesTo" : [ ] + }, + "A2QSKG5CZVECRMUE.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "A2QSKG5CZVECRMUE.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "A2QSKG5CZVECRMUE.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "A2QSKG5CZVECRMUE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "A2QSKG5CZVECRMUE.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "A2QSKG5CZVECRMUE.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1162000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "A2QSKG5CZVECRMUE.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "A2QSKG5CZVECRMUE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "A2QSKG5CZVECRMUE.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "A2QSKG5CZVECRMUE.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10905" + }, + "appliesTo" : [ ] + }, + "A2QSKG5CZVECRMUE.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "A2QSKG5CZVECRMUE.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "A2QSKG5CZVECRMUE.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "A2QSKG5CZVECRMUE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "A2QSKG5CZVECRMUE.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "A2QSKG5CZVECRMUE.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5498" + }, + "appliesTo" : [ ] + }, + "A2QSKG5CZVECRMUE.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "A2QSKG5CZVECRMUE.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6276000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "A2QSKG5CZVECRMUE.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "A2QSKG5CZVECRMUE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A2QSKG5CZVECRMUE.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "A2QSKG5CZVECRMUE.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11573" + }, + "appliesTo" : [ ] + }, + "A2QSKG5CZVECRMUE.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "A2QSKG5CZVECRMUE.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "A2QSKG5CZVECRMUE.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "A2QSKG5CZVECRMUE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "A2QSKG5CZVECRMUE.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "A2QSKG5CZVECRMUE.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14296" + }, + "appliesTo" : [ ] + }, + "A2QSKG5CZVECRMUE.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "A2QSKG5CZVECRMUE.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "A2QSKG5CZVECRMUE.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "A2QSKG5CZVECRMUE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "A2QSKG5CZVECRMUE.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "A2QSKG5CZVECRMUE.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29767" + }, + "appliesTo" : [ ] + }, + "A2QSKG5CZVECRMUE.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "A2QSKG5CZVECRMUE.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "A2QSKG5CZVECRMUE.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "A2QSKG5CZVECRMUE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A2QSKG5CZVECRMUE.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "A2QSKG5CZVECRMUE.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3629000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "A2QSKG5CZVECRMUE.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "A2QSKG5CZVECRMUE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A2QSKG5CZVECRMUE.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "A2QSKG5CZVECRMUE.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5839" + }, + "appliesTo" : [ ] + }, + "A2QSKG5CZVECRMUE.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "A2QSKG5CZVECRMUE.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6665000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "A2QSKG5CZVECRMUE.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "A2QSKG5CZVECRMUE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "A2QSKG5CZVECRMUE.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "A2QSKG5CZVECRMUE.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2812000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "A2QSKG5CZVECRMUE.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "A2QSKG5CZVECRMUE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "A2QSKG5CZVECRMUE.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "A2QSKG5CZVECRMUE.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1732000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "XKREJETCK4Q363EE" : { + "XKREJETCK4Q363EE.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "XKREJETCK4Q363EE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XKREJETCK4Q363EE.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "XKREJETCK4Q363EE.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9273" + }, + "appliesTo" : [ ] + }, + "XKREJETCK4Q363EE.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "XKREJETCK4Q363EE.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XKREJETCK4Q363EE.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "XKREJETCK4Q363EE", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "XKREJETCK4Q363EE.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "XKREJETCK4Q363EE.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3570000000" + }, + "appliesTo" : [ ] + }, + "XKREJETCK4Q363EE.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "XKREJETCK4Q363EE.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17398" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XKREJETCK4Q363EE.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "XKREJETCK4Q363EE", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "XKREJETCK4Q363EE.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "XKREJETCK4Q363EE.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XKREJETCK4Q363EE.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XKREJETCK4Q363EE", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "XKREJETCK4Q363EE.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XKREJETCK4Q363EE.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15869" + }, + "appliesTo" : [ ] + }, + "XKREJETCK4Q363EE.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XKREJETCK4Q363EE.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XKREJETCK4Q363EE.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XKREJETCK4Q363EE", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "XKREJETCK4Q363EE.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XKREJETCK4Q363EE.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "XKREJETCK4Q363EE.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XKREJETCK4Q363EE.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22931" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XKREJETCK4Q363EE.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XKREJETCK4Q363EE", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "XKREJETCK4Q363EE.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XKREJETCK4Q363EE.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8898" + }, + "appliesTo" : [ ] + }, + "XKREJETCK4Q363EE.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XKREJETCK4Q363EE.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XKREJETCK4Q363EE.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "XKREJETCK4Q363EE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XKREJETCK4Q363EE.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "XKREJETCK4Q363EE.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XKREJETCK4Q363EE.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "XKREJETCK4Q363EE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XKREJETCK4Q363EE.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "XKREJETCK4Q363EE.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4655" + }, + "appliesTo" : [ ] + }, + "XKREJETCK4Q363EE.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "XKREJETCK4Q363EE.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XKREJETCK4Q363EE.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XKREJETCK4Q363EE", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "XKREJETCK4Q363EE.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XKREJETCK4Q363EE.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XKREJETCK4Q363EE.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XKREJETCK4Q363EE", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "XKREJETCK4Q363EE.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XKREJETCK4Q363EE.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5902" + }, + "appliesTo" : [ ] + }, + "XKREJETCK4Q363EE.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XKREJETCK4Q363EE.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XKREJETCK4Q363EE.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "XKREJETCK4Q363EE", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "XKREJETCK4Q363EE.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "XKREJETCK4Q363EE.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26231" + }, + "appliesTo" : [ ] + }, + "XKREJETCK4Q363EE.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "XKREJETCK4Q363EE.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "NQZBX7B4JXMHGKCW" : { + "NQZBX7B4JXMHGKCW.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "NQZBX7B4JXMHGKCW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NQZBX7B4JXMHGKCW.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "NQZBX7B4JXMHGKCW.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7641" + }, + "appliesTo" : [ ] + }, + "NQZBX7B4JXMHGKCW.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "NQZBX7B4JXMHGKCW.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8652000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "NQZBX7B4JXMHGKCW.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "NQZBX7B4JXMHGKCW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NQZBX7B4JXMHGKCW.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "NQZBX7B4JXMHGKCW.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8225000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "NQZBX7B4JXMHGKCW.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "NQZBX7B4JXMHGKCW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "NQZBX7B4JXMHGKCW.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "NQZBX7B4JXMHGKCW.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14490" + }, + "appliesTo" : [ ] + }, + "NQZBX7B4JXMHGKCW.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "NQZBX7B4JXMHGKCW.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "NQZBX7B4JXMHGKCW.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "NQZBX7B4JXMHGKCW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "NQZBX7B4JXMHGKCW.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "NQZBX7B4JXMHGKCW.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16611" + }, + "appliesTo" : [ ] + }, + "NQZBX7B4JXMHGKCW.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "NQZBX7B4JXMHGKCW.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6317000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "NQZBX7B4JXMHGKCW.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "NQZBX7B4JXMHGKCW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "NQZBX7B4JXMHGKCW.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "NQZBX7B4JXMHGKCW.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "NQZBX7B4JXMHGKCW.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "NQZBX7B4JXMHGKCW.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14921" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "NQZBX7B4JXMHGKCW.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "NQZBX7B4JXMHGKCW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "NQZBX7B4JXMHGKCW.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "NQZBX7B4JXMHGKCW.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "NQZBX7B4JXMHGKCW.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "NQZBX7B4JXMHGKCW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "NQZBX7B4JXMHGKCW.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "NQZBX7B4JXMHGKCW.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13013" + }, + "appliesTo" : [ ] + }, + "NQZBX7B4JXMHGKCW.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "NQZBX7B4JXMHGKCW.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "NQZBX7B4JXMHGKCW.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "NQZBX7B4JXMHGKCW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "NQZBX7B4JXMHGKCW.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "NQZBX7B4JXMHGKCW.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27273" + }, + "appliesTo" : [ ] + }, + "NQZBX7B4JXMHGKCW.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "NQZBX7B4JXMHGKCW.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "NQZBX7B4JXMHGKCW.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "NQZBX7B4JXMHGKCW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "NQZBX7B4JXMHGKCW.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "NQZBX7B4JXMHGKCW.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3693000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "NQZBX7B4JXMHGKCW.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "NQZBX7B4JXMHGKCW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "NQZBX7B4JXMHGKCW.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "NQZBX7B4JXMHGKCW.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "NQZBX7B4JXMHGKCW.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "NQZBX7B4JXMHGKCW.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32561" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "NQZBX7B4JXMHGKCW.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "NQZBX7B4JXMHGKCW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "NQZBX7B4JXMHGKCW.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "NQZBX7B4JXMHGKCW.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6667" + }, + "appliesTo" : [ ] + }, + "NQZBX7B4JXMHGKCW.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "NQZBX7B4JXMHGKCW.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "NQZBX7B4JXMHGKCW.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "NQZBX7B4JXMHGKCW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "NQZBX7B4JXMHGKCW.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "NQZBX7B4JXMHGKCW.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5891000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "VP7WYZSF63TZQ25D" : { + "VP7WYZSF63TZQ25D.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "VP7WYZSF63TZQ25D", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "VP7WYZSF63TZQ25D.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "VP7WYZSF63TZQ25D.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VP7WYZSF63TZQ25D.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "VP7WYZSF63TZQ25D", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "VP7WYZSF63TZQ25D.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "VP7WYZSF63TZQ25D.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4410000000" + }, + "appliesTo" : [ ] + }, + "VP7WYZSF63TZQ25D.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "VP7WYZSF63TZQ25D.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7742" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VP7WYZSF63TZQ25D.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "VP7WYZSF63TZQ25D", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "VP7WYZSF63TZQ25D.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "VP7WYZSF63TZQ25D.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "VP7WYZSF63TZQ25D.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "VP7WYZSF63TZQ25D.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18174" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VP7WYZSF63TZQ25D.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "VP7WYZSF63TZQ25D", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "VP7WYZSF63TZQ25D.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "VP7WYZSF63TZQ25D.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7617" + }, + "appliesTo" : [ ] + }, + "VP7WYZSF63TZQ25D.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "VP7WYZSF63TZQ25D.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VP7WYZSF63TZQ25D.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "VP7WYZSF63TZQ25D", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "VP7WYZSF63TZQ25D.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "VP7WYZSF63TZQ25D.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3109" + }, + "appliesTo" : [ ] + }, + "VP7WYZSF63TZQ25D.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "VP7WYZSF63TZQ25D.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "EMT6SZKEDQPJRUQQ" : { + "EMT6SZKEDQPJRUQQ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "EMT6SZKEDQPJRUQQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EMT6SZKEDQPJRUQQ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "EMT6SZKEDQPJRUQQ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "EMT6SZKEDQPJRUQQ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "EMT6SZKEDQPJRUQQ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "EMT6SZKEDQPJRUQQ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "EMT6SZKEDQPJRUQQ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6497" + }, + "appliesTo" : [ ] + }, + "EMT6SZKEDQPJRUQQ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "EMT6SZKEDQPJRUQQ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EMT6SZKEDQPJRUQQ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "EMT6SZKEDQPJRUQQ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "EMT6SZKEDQPJRUQQ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "EMT6SZKEDQPJRUQQ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12094" + }, + "appliesTo" : [ ] + }, + "EMT6SZKEDQPJRUQQ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "EMT6SZKEDQPJRUQQ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EMT6SZKEDQPJRUQQ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "EMT6SZKEDQPJRUQQ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "EMT6SZKEDQPJRUQQ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "EMT6SZKEDQPJRUQQ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6433" + }, + "appliesTo" : [ ] + }, + "EMT6SZKEDQPJRUQQ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "EMT6SZKEDQPJRUQQ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EMT6SZKEDQPJRUQQ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "EMT6SZKEDQPJRUQQ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "EMT6SZKEDQPJRUQQ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "EMT6SZKEDQPJRUQQ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3440000000" + }, + "appliesTo" : [ ] + }, + "EMT6SZKEDQPJRUQQ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "EMT6SZKEDQPJRUQQ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9041" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "EMT6SZKEDQPJRUQQ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "EMT6SZKEDQPJRUQQ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "EMT6SZKEDQPJRUQQ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "EMT6SZKEDQPJRUQQ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "EMT6SZKEDQPJRUQQ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "EMT6SZKEDQPJRUQQ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "EMT6SZKEDQPJRUQQ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "EMT6SZKEDQPJRUQQ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "EMT6SZKEDQPJRUQQ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "EMT6SZKEDQPJRUQQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EMT6SZKEDQPJRUQQ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "EMT6SZKEDQPJRUQQ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5087" + }, + "appliesTo" : [ ] + }, + "EMT6SZKEDQPJRUQQ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "EMT6SZKEDQPJRUQQ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "EMT6SZKEDQPJRUQQ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "EMT6SZKEDQPJRUQQ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "EMT6SZKEDQPJRUQQ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "EMT6SZKEDQPJRUQQ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3315" + }, + "appliesTo" : [ ] + }, + "EMT6SZKEDQPJRUQQ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "EMT6SZKEDQPJRUQQ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EMT6SZKEDQPJRUQQ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "EMT6SZKEDQPJRUQQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EMT6SZKEDQPJRUQQ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "EMT6SZKEDQPJRUQQ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "EMT6SZKEDQPJRUQQ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "EMT6SZKEDQPJRUQQ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10036" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "EMT6SZKEDQPJRUQQ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "EMT6SZKEDQPJRUQQ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "EMT6SZKEDQPJRUQQ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "EMT6SZKEDQPJRUQQ.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "EMT6SZKEDQPJRUQQ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "EMT6SZKEDQPJRUQQ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17720" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "U333877KGJA25DEX" : { + "U333877KGJA25DEX.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "U333877KGJA25DEX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "U333877KGJA25DEX.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "U333877KGJA25DEX.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17171" + }, + "appliesTo" : [ ] + }, + "U333877KGJA25DEX.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "U333877KGJA25DEX.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "U333877KGJA25DEX.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "U333877KGJA25DEX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "U333877KGJA25DEX.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "U333877KGJA25DEX.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38604" + }, + "appliesTo" : [ ] + }, + "U333877KGJA25DEX.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "U333877KGJA25DEX.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "U333877KGJA25DEX.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "U333877KGJA25DEX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "U333877KGJA25DEX.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "U333877KGJA25DEX.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6228000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "U333877KGJA25DEX.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "U333877KGJA25DEX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "U333877KGJA25DEX.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "U333877KGJA25DEX.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4154000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "U333877KGJA25DEX.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "U333877KGJA25DEX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "U333877KGJA25DEX.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "U333877KGJA25DEX.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32314" + }, + "appliesTo" : [ ] + }, + "U333877KGJA25DEX.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "U333877KGJA25DEX.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "U333877KGJA25DEX.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "U333877KGJA25DEX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U333877KGJA25DEX.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "U333877KGJA25DEX.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "U333877KGJA25DEX.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "U333877KGJA25DEX.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18929" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "U333877KGJA25DEX.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "U333877KGJA25DEX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "U333877KGJA25DEX.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "U333877KGJA25DEX.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8445" + }, + "appliesTo" : [ ] + }, + "U333877KGJA25DEX.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "U333877KGJA25DEX.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "U333877KGJA25DEX.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "U333877KGJA25DEX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "U333877KGJA25DEX.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "U333877KGJA25DEX.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0154000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "U333877KGJA25DEX.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "U333877KGJA25DEX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "U333877KGJA25DEX.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "U333877KGJA25DEX.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16498" + }, + "appliesTo" : [ ] + }, + "U333877KGJA25DEX.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "U333877KGJA25DEX.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "U333877KGJA25DEX.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "U333877KGJA25DEX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U333877KGJA25DEX.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "U333877KGJA25DEX.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9686" + }, + "appliesTo" : [ ] + }, + "U333877KGJA25DEX.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "U333877KGJA25DEX.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0986000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "U333877KGJA25DEX.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "U333877KGJA25DEX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U333877KGJA25DEX.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "U333877KGJA25DEX.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3128000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "U333877KGJA25DEX.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "U333877KGJA25DEX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "U333877KGJA25DEX.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "U333877KGJA25DEX.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19694" + }, + "appliesTo" : [ ] + }, + "U333877KGJA25DEX.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "U333877KGJA25DEX.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "ERSKB3J598DCE2QB" : { + "ERSKB3J598DCE2QB.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ERSKB3J598DCE2QB", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "ERSKB3J598DCE2QB.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ERSKB3J598DCE2QB.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "130383" + }, + "appliesTo" : [ ] + }, + "ERSKB3J598DCE2QB.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ERSKB3J598DCE2QB.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ERSKB3J598DCE2QB.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ERSKB3J598DCE2QB", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "ERSKB3J598DCE2QB.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ERSKB3J598DCE2QB.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "65318" + }, + "appliesTo" : [ ] + }, + "ERSKB3J598DCE2QB.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ERSKB3J598DCE2QB.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ERSKB3J598DCE2QB.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ERSKB3J598DCE2QB", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "ERSKB3J598DCE2QB.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ERSKB3J598DCE2QB.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "378562" + }, + "appliesTo" : [ ] + }, + "ERSKB3J598DCE2QB.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ERSKB3J598DCE2QB.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ERSKB3J598DCE2QB.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ERSKB3J598DCE2QB", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "ERSKB3J598DCE2QB.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ERSKB3J598DCE2QB.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.9890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ERSKB3J598DCE2QB.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ERSKB3J598DCE2QB", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "ERSKB3J598DCE2QB.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ERSKB3J598DCE2QB.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "387438" + }, + "appliesTo" : [ ] + }, + "ERSKB3J598DCE2QB.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ERSKB3J598DCE2QB.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ERSKB3J598DCE2QB.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ERSKB3J598DCE2QB", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "ERSKB3J598DCE2QB.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ERSKB3J598DCE2QB.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "194060" + }, + "appliesTo" : [ ] + }, + "ERSKB3J598DCE2QB.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ERSKB3J598DCE2QB.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ERSKB3J598DCE2QB.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ERSKB3J598DCE2QB", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "ERSKB3J598DCE2QB.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ERSKB3J598DCE2QB.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.1580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ERSKB3J598DCE2QB.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ERSKB3J598DCE2QB", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "ERSKB3J598DCE2QB.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ERSKB3J598DCE2QB.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "190064" + }, + "appliesTo" : [ ] + }, + "ERSKB3J598DCE2QB.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ERSKB3J598DCE2QB.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.2320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ERSKB3J598DCE2QB.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ERSKB3J598DCE2QB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ERSKB3J598DCE2QB.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ERSKB3J598DCE2QB.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.2050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ERSKB3J598DCE2QB.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ERSKB3J598DCE2QB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ERSKB3J598DCE2QB.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ERSKB3J598DCE2QB.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "132184" + }, + "appliesTo" : [ ] + }, + "ERSKB3J598DCE2QB.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ERSKB3J598DCE2QB.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ERSKB3J598DCE2QB.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ERSKB3J598DCE2QB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ERSKB3J598DCE2QB.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ERSKB3J598DCE2QB.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "66236" + }, + "appliesTo" : [ ] + }, + "ERSKB3J598DCE2QB.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ERSKB3J598DCE2QB.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "X2CZGDXUSRSFGZQ7" : { + "X2CZGDXUSRSFGZQ7.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "X2CZGDXUSRSFGZQ7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X2CZGDXUSRSFGZQ7.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "X2CZGDXUSRSFGZQ7.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "X2CZGDXUSRSFGZQ7.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "X2CZGDXUSRSFGZQ7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X2CZGDXUSRSFGZQ7.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "X2CZGDXUSRSFGZQ7.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3615" + }, + "appliesTo" : [ ] + }, + "X2CZGDXUSRSFGZQ7.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "X2CZGDXUSRSFGZQ7.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "X2CZGDXUSRSFGZQ7.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "X2CZGDXUSRSFGZQ7", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "X2CZGDXUSRSFGZQ7.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "X2CZGDXUSRSFGZQ7.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "X2CZGDXUSRSFGZQ7.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "X2CZGDXUSRSFGZQ7", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "X2CZGDXUSRSFGZQ7.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "X2CZGDXUSRSFGZQ7.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7851" + }, + "appliesTo" : [ ] + }, + "X2CZGDXUSRSFGZQ7.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "X2CZGDXUSRSFGZQ7.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "X2CZGDXUSRSFGZQ7.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "X2CZGDXUSRSFGZQ7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X2CZGDXUSRSFGZQ7.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "X2CZGDXUSRSFGZQ7.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8223" + }, + "appliesTo" : [ ] + }, + "X2CZGDXUSRSFGZQ7.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "X2CZGDXUSRSFGZQ7.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "X2CZGDXUSRSFGZQ7.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "X2CZGDXUSRSFGZQ7", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "X2CZGDXUSRSFGZQ7.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "X2CZGDXUSRSFGZQ7.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7320" + }, + "appliesTo" : [ ] + }, + "X2CZGDXUSRSFGZQ7.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "X2CZGDXUSRSFGZQ7.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "X2CZGDXUSRSFGZQ7.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "X2CZGDXUSRSFGZQ7", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "X2CZGDXUSRSFGZQ7.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "X2CZGDXUSRSFGZQ7.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3560000000" + }, + "appliesTo" : [ ] + }, + "X2CZGDXUSRSFGZQ7.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "X2CZGDXUSRSFGZQ7.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11102" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "X2CZGDXUSRSFGZQ7.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "X2CZGDXUSRSFGZQ7", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "X2CZGDXUSRSFGZQ7.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "X2CZGDXUSRSFGZQ7.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4112" + }, + "appliesTo" : [ ] + }, + "X2CZGDXUSRSFGZQ7.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "X2CZGDXUSRSFGZQ7.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "X2CZGDXUSRSFGZQ7.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "X2CZGDXUSRSFGZQ7", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "X2CZGDXUSRSFGZQ7.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "X2CZGDXUSRSFGZQ7.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15677" + }, + "appliesTo" : [ ] + }, + "X2CZGDXUSRSFGZQ7.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "X2CZGDXUSRSFGZQ7.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "X2CZGDXUSRSFGZQ7.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "X2CZGDXUSRSFGZQ7", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "X2CZGDXUSRSFGZQ7.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "X2CZGDXUSRSFGZQ7.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20105" + }, + "appliesTo" : [ ] + }, + "X2CZGDXUSRSFGZQ7.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "X2CZGDXUSRSFGZQ7.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "X2CZGDXUSRSFGZQ7.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "X2CZGDXUSRSFGZQ7", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "X2CZGDXUSRSFGZQ7.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "X2CZGDXUSRSFGZQ7.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "KCTR9Z2CY7MTZPGS" : { + "KCTR9Z2CY7MTZPGS.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "KCTR9Z2CY7MTZPGS", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "KCTR9Z2CY7MTZPGS.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "KCTR9Z2CY7MTZPGS.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.6630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KCTR9Z2CY7MTZPGS.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "KCTR9Z2CY7MTZPGS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KCTR9Z2CY7MTZPGS.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "KCTR9Z2CY7MTZPGS.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33480" + }, + "appliesTo" : [ ] + }, + "KCTR9Z2CY7MTZPGS.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "KCTR9Z2CY7MTZPGS.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KCTR9Z2CY7MTZPGS.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "KCTR9Z2CY7MTZPGS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KCTR9Z2CY7MTZPGS.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "KCTR9Z2CY7MTZPGS.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.6890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KCTR9Z2CY7MTZPGS.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "KCTR9Z2CY7MTZPGS", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "KCTR9Z2CY7MTZPGS.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "KCTR9Z2CY7MTZPGS.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "195390" + }, + "appliesTo" : [ ] + }, + "KCTR9Z2CY7MTZPGS.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "KCTR9Z2CY7MTZPGS.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KCTR9Z2CY7MTZPGS.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "KCTR9Z2CY7MTZPGS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KCTR9Z2CY7MTZPGS.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "KCTR9Z2CY7MTZPGS.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "KCTR9Z2CY7MTZPGS.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "KCTR9Z2CY7MTZPGS.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "66800" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KCTR9Z2CY7MTZPGS.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "KCTR9Z2CY7MTZPGS", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "KCTR9Z2CY7MTZPGS.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "KCTR9Z2CY7MTZPGS.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32975" + }, + "appliesTo" : [ ] + }, + "KCTR9Z2CY7MTZPGS.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "KCTR9Z2CY7MTZPGS.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KCTR9Z2CY7MTZPGS.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "KCTR9Z2CY7MTZPGS", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "KCTR9Z2CY7MTZPGS.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "KCTR9Z2CY7MTZPGS.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "65810" + }, + "appliesTo" : [ ] + }, + "KCTR9Z2CY7MTZPGS.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "KCTR9Z2CY7MTZPGS.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KCTR9Z2CY7MTZPGS.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "KCTR9Z2CY7MTZPGS", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "KCTR9Z2CY7MTZPGS.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "KCTR9Z2CY7MTZPGS.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "97882" + }, + "appliesTo" : [ ] + }, + "KCTR9Z2CY7MTZPGS.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "KCTR9Z2CY7MTZPGS.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KCTR9Z2CY7MTZPGS.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "KCTR9Z2CY7MTZPGS", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "KCTR9Z2CY7MTZPGS.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "KCTR9Z2CY7MTZPGS.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KCTR9Z2CY7MTZPGS.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "KCTR9Z2CY7MTZPGS", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "KCTR9Z2CY7MTZPGS.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "KCTR9Z2CY7MTZPGS.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "190519" + }, + "appliesTo" : [ ] + }, + "KCTR9Z2CY7MTZPGS.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "KCTR9Z2CY7MTZPGS.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KCTR9Z2CY7MTZPGS.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "KCTR9Z2CY7MTZPGS", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "KCTR9Z2CY7MTZPGS.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "KCTR9Z2CY7MTZPGS.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "95690" + }, + "appliesTo" : [ ] + }, + "KCTR9Z2CY7MTZPGS.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "KCTR9Z2CY7MTZPGS.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "VJ4XPF7YHUHKA3ZJ" : { + "VJ4XPF7YHUHKA3ZJ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "VJ4XPF7YHUHKA3ZJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VJ4XPF7YHUHKA3ZJ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "VJ4XPF7YHUHKA3ZJ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "43663" + }, + "appliesTo" : [ ] + }, + "VJ4XPF7YHUHKA3ZJ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "VJ4XPF7YHUHKA3ZJ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VJ4XPF7YHUHKA3ZJ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "VJ4XPF7YHUHKA3ZJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VJ4XPF7YHUHKA3ZJ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "VJ4XPF7YHUHKA3ZJ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VJ4XPF7YHUHKA3ZJ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "VJ4XPF7YHUHKA3ZJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VJ4XPF7YHUHKA3ZJ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "VJ4XPF7YHUHKA3ZJ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "57380" + }, + "appliesTo" : [ ] + }, + "VJ4XPF7YHUHKA3ZJ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "VJ4XPF7YHUHKA3ZJ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VJ4XPF7YHUHKA3ZJ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "VJ4XPF7YHUHKA3ZJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VJ4XPF7YHUHKA3ZJ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "VJ4XPF7YHUHKA3ZJ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VJ4XPF7YHUHKA3ZJ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "VJ4XPF7YHUHKA3ZJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VJ4XPF7YHUHKA3ZJ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "VJ4XPF7YHUHKA3ZJ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3860000000" + }, + "appliesTo" : [ ] + }, + "VJ4XPF7YHUHKA3ZJ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "VJ4XPF7YHUHKA3ZJ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33010" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VJ4XPF7YHUHKA3ZJ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "VJ4XPF7YHUHKA3ZJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VJ4XPF7YHUHKA3ZJ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "VJ4XPF7YHUHKA3ZJ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18866" + }, + "appliesTo" : [ ] + }, + "VJ4XPF7YHUHKA3ZJ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "VJ4XPF7YHUHKA3ZJ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VJ4XPF7YHUHKA3ZJ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "VJ4XPF7YHUHKA3ZJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VJ4XPF7YHUHKA3ZJ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "VJ4XPF7YHUHKA3ZJ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38116" + }, + "appliesTo" : [ ] + }, + "VJ4XPF7YHUHKA3ZJ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "VJ4XPF7YHUHKA3ZJ.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VJ4XPF7YHUHKA3ZJ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "VJ4XPF7YHUHKA3ZJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VJ4XPF7YHUHKA3ZJ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "VJ4XPF7YHUHKA3ZJ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "68115" + }, + "appliesTo" : [ ] + }, + "VJ4XPF7YHUHKA3ZJ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "VJ4XPF7YHUHKA3ZJ.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VJ4XPF7YHUHKA3ZJ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "VJ4XPF7YHUHKA3ZJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VJ4XPF7YHUHKA3ZJ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "VJ4XPF7YHUHKA3ZJ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28704" + }, + "appliesTo" : [ ] + }, + "VJ4XPF7YHUHKA3ZJ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "VJ4XPF7YHUHKA3ZJ.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VJ4XPF7YHUHKA3ZJ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "VJ4XPF7YHUHKA3ZJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VJ4XPF7YHUHKA3ZJ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "VJ4XPF7YHUHKA3ZJ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.3310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VJ4XPF7YHUHKA3ZJ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "VJ4XPF7YHUHKA3ZJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VJ4XPF7YHUHKA3ZJ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "VJ4XPF7YHUHKA3ZJ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.6530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VJ4XPF7YHUHKA3ZJ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "VJ4XPF7YHUHKA3ZJ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VJ4XPF7YHUHKA3ZJ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "VJ4XPF7YHUHKA3ZJ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21696" + }, + "appliesTo" : [ ] + }, + "VJ4XPF7YHUHKA3ZJ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "VJ4XPF7YHUHKA3ZJ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "N58RGQJW3EFKG6Q2" : { + "N58RGQJW3EFKG6Q2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "N58RGQJW3EFKG6Q2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "N58RGQJW3EFKG6Q2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "N58RGQJW3EFKG6Q2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4080000000" + }, + "appliesTo" : [ ] + }, + "N58RGQJW3EFKG6Q2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "N58RGQJW3EFKG6Q2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4004" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "N58RGQJW3EFKG6Q2.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "N58RGQJW3EFKG6Q2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N58RGQJW3EFKG6Q2.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "N58RGQJW3EFKG6Q2.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "N58RGQJW3EFKG6Q2.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "N58RGQJW3EFKG6Q2.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9019" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "N58RGQJW3EFKG6Q2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "N58RGQJW3EFKG6Q2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "N58RGQJW3EFKG6Q2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "N58RGQJW3EFKG6Q2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6028" + }, + "appliesTo" : [ ] + }, + "N58RGQJW3EFKG6Q2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "N58RGQJW3EFKG6Q2.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "N58RGQJW3EFKG6Q2.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "N58RGQJW3EFKG6Q2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "N58RGQJW3EFKG6Q2.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "N58RGQJW3EFKG6Q2.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10811" + }, + "appliesTo" : [ ] + }, + "N58RGQJW3EFKG6Q2.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "N58RGQJW3EFKG6Q2.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "N58RGQJW3EFKG6Q2.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "N58RGQJW3EFKG6Q2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "N58RGQJW3EFKG6Q2.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "N58RGQJW3EFKG6Q2.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "N58RGQJW3EFKG6Q2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "N58RGQJW3EFKG6Q2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "N58RGQJW3EFKG6Q2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "N58RGQJW3EFKG6Q2.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "N58RGQJW3EFKG6Q2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "N58RGQJW3EFKG6Q2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7427" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "N58RGQJW3EFKG6Q2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "N58RGQJW3EFKG6Q2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "N58RGQJW3EFKG6Q2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "N58RGQJW3EFKG6Q2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13844" + }, + "appliesTo" : [ ] + }, + "N58RGQJW3EFKG6Q2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "N58RGQJW3EFKG6Q2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "N58RGQJW3EFKG6Q2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "N58RGQJW3EFKG6Q2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "N58RGQJW3EFKG6Q2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "N58RGQJW3EFKG6Q2.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "N58RGQJW3EFKG6Q2.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "N58RGQJW3EFKG6Q2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N58RGQJW3EFKG6Q2.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "N58RGQJW3EFKG6Q2.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4020" + }, + "appliesTo" : [ ] + }, + "N58RGQJW3EFKG6Q2.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "N58RGQJW3EFKG6Q2.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "N58RGQJW3EFKG6Q2.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "N58RGQJW3EFKG6Q2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N58RGQJW3EFKG6Q2.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "N58RGQJW3EFKG6Q2.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "N58RGQJW3EFKG6Q2.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "N58RGQJW3EFKG6Q2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "N58RGQJW3EFKG6Q2.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "N58RGQJW3EFKG6Q2.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20223" + }, + "appliesTo" : [ ] + }, + "N58RGQJW3EFKG6Q2.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "N58RGQJW3EFKG6Q2.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "7JWZZUN6V6RU9JES" : { + "7JWZZUN6V6RU9JES.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "7JWZZUN6V6RU9JES", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7JWZZUN6V6RU9JES.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "7JWZZUN6V6RU9JES.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7JWZZUN6V6RU9JES.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "7JWZZUN6V6RU9JES", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7JWZZUN6V6RU9JES.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "7JWZZUN6V6RU9JES.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8022" + }, + "appliesTo" : [ ] + }, + "7JWZZUN6V6RU9JES.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "7JWZZUN6V6RU9JES.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7JWZZUN6V6RU9JES.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "7JWZZUN6V6RU9JES", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7JWZZUN6V6RU9JES.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "7JWZZUN6V6RU9JES.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8274" + }, + "appliesTo" : [ ] + }, + "7JWZZUN6V6RU9JES.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "7JWZZUN6V6RU9JES.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7JWZZUN6V6RU9JES.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "7JWZZUN6V6RU9JES", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7JWZZUN6V6RU9JES.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "7JWZZUN6V6RU9JES.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16754" + }, + "appliesTo" : [ ] + }, + "7JWZZUN6V6RU9JES.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "7JWZZUN6V6RU9JES.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7JWZZUN6V6RU9JES.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "7JWZZUN6V6RU9JES", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7JWZZUN6V6RU9JES.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "7JWZZUN6V6RU9JES.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5176" + }, + "appliesTo" : [ ] + }, + "7JWZZUN6V6RU9JES.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "7JWZZUN6V6RU9JES.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), cc2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "CHYHEFYUM8H6G965" : { + "CHYHEFYUM8H6G965.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "CHYHEFYUM8H6G965", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CHYHEFYUM8H6G965.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "CHYHEFYUM8H6G965.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4288" + }, + "appliesTo" : [ ] + }, + "CHYHEFYUM8H6G965.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "CHYHEFYUM8H6G965.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CHYHEFYUM8H6G965.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "CHYHEFYUM8H6G965", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CHYHEFYUM8H6G965.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "CHYHEFYUM8H6G965.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8404" + }, + "appliesTo" : [ ] + }, + "CHYHEFYUM8H6G965.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "CHYHEFYUM8H6G965.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CHYHEFYUM8H6G965.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "CHYHEFYUM8H6G965", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CHYHEFYUM8H6G965.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "CHYHEFYUM8H6G965.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CHYHEFYUM8H6G965.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "CHYHEFYUM8H6G965", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CHYHEFYUM8H6G965.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "CHYHEFYUM8H6G965.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CHYHEFYUM8H6G965.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "CHYHEFYUM8H6G965", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CHYHEFYUM8H6G965.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "CHYHEFYUM8H6G965.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12264" + }, + "appliesTo" : [ ] + }, + "CHYHEFYUM8H6G965.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "CHYHEFYUM8H6G965.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CHYHEFYUM8H6G965.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "CHYHEFYUM8H6G965", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CHYHEFYUM8H6G965.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "CHYHEFYUM8H6G965.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2480000000" + }, + "appliesTo" : [ ] + }, + "CHYHEFYUM8H6G965.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "CHYHEFYUM8H6G965.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6524" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "SMS2RQFVUU6VDNFP" : { + "SMS2RQFVUU6VDNFP.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "SMS2RQFVUU6VDNFP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SMS2RQFVUU6VDNFP.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "SMS2RQFVUU6VDNFP.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SMS2RQFVUU6VDNFP.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "SMS2RQFVUU6VDNFP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SMS2RQFVUU6VDNFP.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "SMS2RQFVUU6VDNFP.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3550" + }, + "appliesTo" : [ ] + }, + "SMS2RQFVUU6VDNFP.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "SMS2RQFVUU6VDNFP.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SMS2RQFVUU6VDNFP.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "SMS2RQFVUU6VDNFP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SMS2RQFVUU6VDNFP.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "SMS2RQFVUU6VDNFP.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SMS2RQFVUU6VDNFP.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SMS2RQFVUU6VDNFP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SMS2RQFVUU6VDNFP.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SMS2RQFVUU6VDNFP.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SMS2RQFVUU6VDNFP.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SMS2RQFVUU6VDNFP.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6733" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SMS2RQFVUU6VDNFP.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "SMS2RQFVUU6VDNFP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SMS2RQFVUU6VDNFP.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "SMS2RQFVUU6VDNFP.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SMS2RQFVUU6VDNFP.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "SMS2RQFVUU6VDNFP.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7061" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SMS2RQFVUU6VDNFP.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "SMS2RQFVUU6VDNFP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SMS2RQFVUU6VDNFP.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "SMS2RQFVUU6VDNFP.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2708" + }, + "appliesTo" : [ ] + }, + "SMS2RQFVUU6VDNFP.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "SMS2RQFVUU6VDNFP.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SMS2RQFVUU6VDNFP.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SMS2RQFVUU6VDNFP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SMS2RQFVUU6VDNFP.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SMS2RQFVUU6VDNFP.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3419" + }, + "appliesTo" : [ ] + }, + "SMS2RQFVUU6VDNFP.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SMS2RQFVUU6VDNFP.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SMS2RQFVUU6VDNFP.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SMS2RQFVUU6VDNFP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SMS2RQFVUU6VDNFP.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SMS2RQFVUU6VDNFP.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1297" + }, + "appliesTo" : [ ] + }, + "SMS2RQFVUU6VDNFP.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SMS2RQFVUU6VDNFP.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SMS2RQFVUU6VDNFP.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "SMS2RQFVUU6VDNFP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SMS2RQFVUU6VDNFP.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "SMS2RQFVUU6VDNFP.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SMS2RQFVUU6VDNFP.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "SMS2RQFVUU6VDNFP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SMS2RQFVUU6VDNFP.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "SMS2RQFVUU6VDNFP.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1364" + }, + "appliesTo" : [ ] + }, + "SMS2RQFVUU6VDNFP.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "SMS2RQFVUU6VDNFP.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SMS2RQFVUU6VDNFP.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SMS2RQFVUU6VDNFP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SMS2RQFVUU6VDNFP.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SMS2RQFVUU6VDNFP.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SMS2RQFVUU6VDNFP.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SMS2RQFVUU6VDNFP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SMS2RQFVUU6VDNFP.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SMS2RQFVUU6VDNFP.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2577" + }, + "appliesTo" : [ ] + }, + "SMS2RQFVUU6VDNFP.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SMS2RQFVUU6VDNFP.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "7P443J9REGZVNYQY" : { + "7P443J9REGZVNYQY.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "7P443J9REGZVNYQY", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "7P443J9REGZVNYQY.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "7P443J9REGZVNYQY.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13503" + }, + "appliesTo" : [ ] + }, + "7P443J9REGZVNYQY.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "7P443J9REGZVNYQY.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7P443J9REGZVNYQY.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "7P443J9REGZVNYQY", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7P443J9REGZVNYQY.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "7P443J9REGZVNYQY.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5820000000" + }, + "appliesTo" : [ ] + }, + "7P443J9REGZVNYQY.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "7P443J9REGZVNYQY.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22202" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7P443J9REGZVNYQY.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "7P443J9REGZVNYQY", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "7P443J9REGZVNYQY.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "7P443J9REGZVNYQY.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8223" + }, + "appliesTo" : [ ] + }, + "7P443J9REGZVNYQY.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "7P443J9REGZVNYQY.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7P443J9REGZVNYQY.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "7P443J9REGZVNYQY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7P443J9REGZVNYQY.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "7P443J9REGZVNYQY.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15308" + }, + "appliesTo" : [ ] + }, + "7P443J9REGZVNYQY.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "7P443J9REGZVNYQY.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7P443J9REGZVNYQY.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "7P443J9REGZVNYQY", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7P443J9REGZVNYQY.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "7P443J9REGZVNYQY.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "36800" + }, + "appliesTo" : [ ] + }, + "7P443J9REGZVNYQY.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "7P443J9REGZVNYQY.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7P443J9REGZVNYQY.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "7P443J9REGZVNYQY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7P443J9REGZVNYQY.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "7P443J9REGZVNYQY.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7P443J9REGZVNYQY.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "7P443J9REGZVNYQY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7P443J9REGZVNYQY.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "7P443J9REGZVNYQY.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7229" + }, + "appliesTo" : [ ] + }, + "7P443J9REGZVNYQY.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "7P443J9REGZVNYQY.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7P443J9REGZVNYQY.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "7P443J9REGZVNYQY", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "7P443J9REGZVNYQY.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "7P443J9REGZVNYQY.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7P443J9REGZVNYQY.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "7P443J9REGZVNYQY", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "7P443J9REGZVNYQY.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "7P443J9REGZVNYQY.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15702" + }, + "appliesTo" : [ ] + }, + "7P443J9REGZVNYQY.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "7P443J9REGZVNYQY.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7P443J9REGZVNYQY.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "7P443J9REGZVNYQY", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7P443J9REGZVNYQY.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "7P443J9REGZVNYQY.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27938" + }, + "appliesTo" : [ ] + }, + "7P443J9REGZVNYQY.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "7P443J9REGZVNYQY.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7P443J9REGZVNYQY.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "7P443J9REGZVNYQY", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7P443J9REGZVNYQY.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "7P443J9REGZVNYQY.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "YRY7U9ETRK6GWQEU" : { + "YRY7U9ETRK6GWQEU.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "YRY7U9ETRK6GWQEU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YRY7U9ETRK6GWQEU.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "YRY7U9ETRK6GWQEU.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YRY7U9ETRK6GWQEU.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "YRY7U9ETRK6GWQEU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YRY7U9ETRK6GWQEU.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "YRY7U9ETRK6GWQEU.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1747" + }, + "appliesTo" : [ ] + }, + "YRY7U9ETRK6GWQEU.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "YRY7U9ETRK6GWQEU.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YRY7U9ETRK6GWQEU.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YRY7U9ETRK6GWQEU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YRY7U9ETRK6GWQEU.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YRY7U9ETRK6GWQEU.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3563" + }, + "appliesTo" : [ ] + }, + "YRY7U9ETRK6GWQEU.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YRY7U9ETRK6GWQEU.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YRY7U9ETRK6GWQEU.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YRY7U9ETRK6GWQEU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YRY7U9ETRK6GWQEU.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YRY7U9ETRK6GWQEU.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3809" + }, + "appliesTo" : [ ] + }, + "YRY7U9ETRK6GWQEU.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YRY7U9ETRK6GWQEU.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YRY7U9ETRK6GWQEU.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "YRY7U9ETRK6GWQEU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YRY7U9ETRK6GWQEU.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "YRY7U9ETRK6GWQEU.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4226" + }, + "appliesTo" : [ ] + }, + "YRY7U9ETRK6GWQEU.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "YRY7U9ETRK6GWQEU.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YRY7U9ETRK6GWQEU.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "YRY7U9ETRK6GWQEU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YRY7U9ETRK6GWQEU.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "YRY7U9ETRK6GWQEU.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10454" + }, + "appliesTo" : [ ] + }, + "YRY7U9ETRK6GWQEU.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "YRY7U9ETRK6GWQEU.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YRY7U9ETRK6GWQEU.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YRY7U9ETRK6GWQEU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YRY7U9ETRK6GWQEU.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YRY7U9ETRK6GWQEU.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8960" + }, + "appliesTo" : [ ] + }, + "YRY7U9ETRK6GWQEU.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YRY7U9ETRK6GWQEU.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YRY7U9ETRK6GWQEU.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "YRY7U9ETRK6GWQEU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YRY7U9ETRK6GWQEU.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "YRY7U9ETRK6GWQEU.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YRY7U9ETRK6GWQEU.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YRY7U9ETRK6GWQEU", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "YRY7U9ETRK6GWQEU.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YRY7U9ETRK6GWQEU.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YRY7U9ETRK6GWQEU.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "YRY7U9ETRK6GWQEU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YRY7U9ETRK6GWQEU.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "YRY7U9ETRK6GWQEU.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3477" + }, + "appliesTo" : [ ] + }, + "YRY7U9ETRK6GWQEU.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "YRY7U9ETRK6GWQEU.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YRY7U9ETRK6GWQEU.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YRY7U9ETRK6GWQEU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YRY7U9ETRK6GWQEU.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YRY7U9ETRK6GWQEU.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1455" + }, + "appliesTo" : [ ] + }, + "YRY7U9ETRK6GWQEU.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YRY7U9ETRK6GWQEU.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "EK8RQK3XNDHYVHY2" : { + "EK8RQK3XNDHYVHY2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "EK8RQK3XNDHYVHY2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EK8RQK3XNDHYVHY2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "EK8RQK3XNDHYVHY2.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "EK8RQK3XNDHYVHY2.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "EK8RQK3XNDHYVHY2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EK8RQK3XNDHYVHY2.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "EK8RQK3XNDHYVHY2.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8085000000" + }, + "appliesTo" : [ ] + }, + "EK8RQK3XNDHYVHY2.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "EK8RQK3XNDHYVHY2.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5944" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "EK8RQK3XNDHYVHY2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "EK8RQK3XNDHYVHY2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EK8RQK3XNDHYVHY2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "EK8RQK3XNDHYVHY2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10512" + }, + "appliesTo" : [ ] + }, + "EK8RQK3XNDHYVHY2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "EK8RQK3XNDHYVHY2.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EK8RQK3XNDHYVHY2.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "EK8RQK3XNDHYVHY2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EK8RQK3XNDHYVHY2.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "EK8RQK3XNDHYVHY2.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27110" + }, + "appliesTo" : [ ] + }, + "EK8RQK3XNDHYVHY2.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "EK8RQK3XNDHYVHY2.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "EK8RQK3XNDHYVHY2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "EK8RQK3XNDHYVHY2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EK8RQK3XNDHYVHY2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "EK8RQK3XNDHYVHY2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23179" + }, + "appliesTo" : [ ] + }, + "EK8RQK3XNDHYVHY2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "EK8RQK3XNDHYVHY2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EK8RQK3XNDHYVHY2.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "EK8RQK3XNDHYVHY2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EK8RQK3XNDHYVHY2.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "EK8RQK3XNDHYVHY2.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1236000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "EK8RQK3XNDHYVHY2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "EK8RQK3XNDHYVHY2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EK8RQK3XNDHYVHY2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "EK8RQK3XNDHYVHY2.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "EK8RQK3XNDHYVHY2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "EK8RQK3XNDHYVHY2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11269" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EK8RQK3XNDHYVHY2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "EK8RQK3XNDHYVHY2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EK8RQK3XNDHYVHY2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "EK8RQK3XNDHYVHY2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5168" + }, + "appliesTo" : [ ] + }, + "EK8RQK3XNDHYVHY2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "EK8RQK3XNDHYVHY2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EK8RQK3XNDHYVHY2.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "EK8RQK3XNDHYVHY2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EK8RQK3XNDHYVHY2.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "EK8RQK3XNDHYVHY2.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12788" + }, + "appliesTo" : [ ] + }, + "EK8RQK3XNDHYVHY2.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "EK8RQK3XNDHYVHY2.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "EK8RQK3XNDHYVHY2.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "EK8RQK3XNDHYVHY2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EK8RQK3XNDHYVHY2.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "EK8RQK3XNDHYVHY2.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "EK8RQK3XNDHYVHY2.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "EK8RQK3XNDHYVHY2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EK8RQK3XNDHYVHY2.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "EK8RQK3XNDHYVHY2.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12089" + }, + "appliesTo" : [ ] + }, + "EK8RQK3XNDHYVHY2.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "EK8RQK3XNDHYVHY2.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "EK8RQK3XNDHYVHY2.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "EK8RQK3XNDHYVHY2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EK8RQK3XNDHYVHY2.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "EK8RQK3XNDHYVHY2.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5549000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "KNFTFJY262DHDG36" : { + "KNFTFJY262DHDG36.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "KNFTFJY262DHDG36", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KNFTFJY262DHDG36.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "KNFTFJY262DHDG36.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15308" + }, + "appliesTo" : [ ] + }, + "KNFTFJY262DHDG36.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "KNFTFJY262DHDG36.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KNFTFJY262DHDG36.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "KNFTFJY262DHDG36", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "KNFTFJY262DHDG36.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "KNFTFJY262DHDG36.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KNFTFJY262DHDG36.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "KNFTFJY262DHDG36", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "KNFTFJY262DHDG36.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "KNFTFJY262DHDG36.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6320000000" + }, + "appliesTo" : [ ] + }, + "KNFTFJY262DHDG36.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "KNFTFJY262DHDG36.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8223" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KNFTFJY262DHDG36.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "KNFTFJY262DHDG36", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "KNFTFJY262DHDG36.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "KNFTFJY262DHDG36.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "KNFTFJY262DHDG36.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "KNFTFJY262DHDG36.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "36800" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KNFTFJY262DHDG36.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "KNFTFJY262DHDG36", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KNFTFJY262DHDG36.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "KNFTFJY262DHDG36.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KNFTFJY262DHDG36.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "KNFTFJY262DHDG36", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "KNFTFJY262DHDG36.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "KNFTFJY262DHDG36.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KNFTFJY262DHDG36.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "KNFTFJY262DHDG36", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KNFTFJY262DHDG36.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "KNFTFJY262DHDG36.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7229" + }, + "appliesTo" : [ ] + }, + "KNFTFJY262DHDG36.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "KNFTFJY262DHDG36.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KNFTFJY262DHDG36.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "KNFTFJY262DHDG36", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "KNFTFJY262DHDG36.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "KNFTFJY262DHDG36.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15702" + }, + "appliesTo" : [ ] + }, + "KNFTFJY262DHDG36.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "KNFTFJY262DHDG36.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KNFTFJY262DHDG36.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "KNFTFJY262DHDG36", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "KNFTFJY262DHDG36.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "KNFTFJY262DHDG36.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22202" + }, + "appliesTo" : [ ] + }, + "KNFTFJY262DHDG36.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "KNFTFJY262DHDG36.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KNFTFJY262DHDG36.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "KNFTFJY262DHDG36", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "KNFTFJY262DHDG36.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "KNFTFJY262DHDG36.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27938" + }, + "appliesTo" : [ ] + }, + "KNFTFJY262DHDG36.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "KNFTFJY262DHDG36.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KNFTFJY262DHDG36.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "KNFTFJY262DHDG36", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "KNFTFJY262DHDG36.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "KNFTFJY262DHDG36.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "KNFTFJY262DHDG36.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "KNFTFJY262DHDG36.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13503" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "Q7XJ7URGAZ8RWDX7" : { + "Q7XJ7URGAZ8RWDX7.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Q7XJ7URGAZ8RWDX7", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "Q7XJ7URGAZ8RWDX7.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Q7XJ7URGAZ8RWDX7.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17276" + }, + "appliesTo" : [ ] + }, + "Q7XJ7URGAZ8RWDX7.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Q7XJ7URGAZ8RWDX7.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q7XJ7URGAZ8RWDX7.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Q7XJ7URGAZ8RWDX7", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "Q7XJ7URGAZ8RWDX7.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Q7XJ7URGAZ8RWDX7.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Q7XJ7URGAZ8RWDX7.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Q7XJ7URGAZ8RWDX7", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "Q7XJ7URGAZ8RWDX7.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Q7XJ7URGAZ8RWDX7.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35310" + }, + "appliesTo" : [ ] + }, + "Q7XJ7URGAZ8RWDX7.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Q7XJ7URGAZ8RWDX7.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Q7XJ7URGAZ8RWDX7.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Q7XJ7URGAZ8RWDX7", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "Q7XJ7URGAZ8RWDX7.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Q7XJ7URGAZ8RWDX7.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19162" + }, + "appliesTo" : [ ] + }, + "Q7XJ7URGAZ8RWDX7.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Q7XJ7URGAZ8RWDX7.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Q7XJ7URGAZ8RWDX7.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Q7XJ7URGAZ8RWDX7", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "Q7XJ7URGAZ8RWDX7.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Q7XJ7URGAZ8RWDX7.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11389" + }, + "appliesTo" : [ ] + }, + "Q7XJ7URGAZ8RWDX7.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Q7XJ7URGAZ8RWDX7.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "CGHFTKH25J86C64Y" : { + "CGHFTKH25J86C64Y.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "CGHFTKH25J86C64Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CGHFTKH25J86C64Y.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "CGHFTKH25J86C64Y.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26795" + }, + "appliesTo" : [ ] + }, + "CGHFTKH25J86C64Y.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "CGHFTKH25J86C64Y.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CGHFTKH25J86C64Y.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "CGHFTKH25J86C64Y", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CGHFTKH25J86C64Y.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "CGHFTKH25J86C64Y.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6305000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CGHFTKH25J86C64Y.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "CGHFTKH25J86C64Y", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CGHFTKH25J86C64Y.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "CGHFTKH25J86C64Y.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2724000000" + }, + "appliesTo" : [ ] + }, + "CGHFTKH25J86C64Y.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "CGHFTKH25J86C64Y.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33438" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CGHFTKH25J86C64Y.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "CGHFTKH25J86C64Y", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "CGHFTKH25J86C64Y.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "CGHFTKH25J86C64Y.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24953" + }, + "appliesTo" : [ ] + }, + "CGHFTKH25J86C64Y.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "CGHFTKH25J86C64Y.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CGHFTKH25J86C64Y.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "CGHFTKH25J86C64Y", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "CGHFTKH25J86C64Y.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "CGHFTKH25J86C64Y.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "CGHFTKH25J86C64Y.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "CGHFTKH25J86C64Y.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "61816" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CGHFTKH25J86C64Y.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "CGHFTKH25J86C64Y", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CGHFTKH25J86C64Y.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "CGHFTKH25J86C64Y.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4794000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CGHFTKH25J86C64Y.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "CGHFTKH25J86C64Y", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CGHFTKH25J86C64Y.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "CGHFTKH25J86C64Y.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "66311" + }, + "appliesTo" : [ ] + }, + "CGHFTKH25J86C64Y.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "CGHFTKH25J86C64Y.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CGHFTKH25J86C64Y.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "CGHFTKH25J86C64Y", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CGHFTKH25J86C64Y.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "CGHFTKH25J86C64Y.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4380000000" + }, + "appliesTo" : [ ] + }, + "CGHFTKH25J86C64Y.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "CGHFTKH25J86C64Y.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12600" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CGHFTKH25J86C64Y.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "CGHFTKH25J86C64Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CGHFTKH25J86C64Y.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "CGHFTKH25J86C64Y.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1721000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CGHFTKH25J86C64Y.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "CGHFTKH25J86C64Y", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CGHFTKH25J86C64Y.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "CGHFTKH25J86C64Y.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5456000000" + }, + "appliesTo" : [ ] + }, + "CGHFTKH25J86C64Y.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "CGHFTKH25J86C64Y.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13539" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CGHFTKH25J86C64Y.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "CGHFTKH25J86C64Y", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CGHFTKH25J86C64Y.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "CGHFTKH25J86C64Y.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9504000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CGHFTKH25J86C64Y.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "CGHFTKH25J86C64Y", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "CGHFTKH25J86C64Y.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "CGHFTKH25J86C64Y.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2040000000" + }, + "appliesTo" : [ ] + }, + "CGHFTKH25J86C64Y.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "CGHFTKH25J86C64Y.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31646" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "5WSKPWBZAEKKQ6RB" : { + "5WSKPWBZAEKKQ6RB.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "5WSKPWBZAEKKQ6RB", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "5WSKPWBZAEKKQ6RB.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "5WSKPWBZAEKKQ6RB.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12955" + }, + "appliesTo" : [ ] + }, + "5WSKPWBZAEKKQ6RB.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "5WSKPWBZAEKKQ6RB.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5WSKPWBZAEKKQ6RB.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "5WSKPWBZAEKKQ6RB", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "5WSKPWBZAEKKQ6RB.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "5WSKPWBZAEKKQ6RB.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "5WSKPWBZAEKKQ6RB.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "5WSKPWBZAEKKQ6RB.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17385" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "5WSKPWBZAEKKQ6RB.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "5WSKPWBZAEKKQ6RB", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "5WSKPWBZAEKKQ6RB.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "5WSKPWBZAEKKQ6RB.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "5WSKPWBZAEKKQ6RB.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "5WSKPWBZAEKKQ6RB", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "5WSKPWBZAEKKQ6RB.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "5WSKPWBZAEKKQ6RB.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6472" + }, + "appliesTo" : [ ] + }, + "5WSKPWBZAEKKQ6RB.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "5WSKPWBZAEKKQ6RB.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5WSKPWBZAEKKQ6RB.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "5WSKPWBZAEKKQ6RB", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "5WSKPWBZAEKKQ6RB.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "5WSKPWBZAEKKQ6RB.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8203" + }, + "appliesTo" : [ ] + }, + "5WSKPWBZAEKKQ6RB.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "5WSKPWBZAEKKQ6RB.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5WSKPWBZAEKKQ6RB.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "5WSKPWBZAEKKQ6RB", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "5WSKPWBZAEKKQ6RB.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "5WSKPWBZAEKKQ6RB.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11454" + }, + "appliesTo" : [ ] + }, + "5WSKPWBZAEKKQ6RB.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "5WSKPWBZAEKKQ6RB.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "5WSKPWBZAEKKQ6RB.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "5WSKPWBZAEKKQ6RB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5WSKPWBZAEKKQ6RB.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "5WSKPWBZAEKKQ6RB.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "5WSKPWBZAEKKQ6RB.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "5WSKPWBZAEKKQ6RB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5WSKPWBZAEKKQ6RB.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "5WSKPWBZAEKKQ6RB.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3791" + }, + "appliesTo" : [ ] + }, + "5WSKPWBZAEKKQ6RB.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "5WSKPWBZAEKKQ6RB.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "5WSKPWBZAEKKQ6RB.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "5WSKPWBZAEKKQ6RB", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "5WSKPWBZAEKKQ6RB.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "5WSKPWBZAEKKQ6RB.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "5WSKPWBZAEKKQ6RB.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "5WSKPWBZAEKKQ6RB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5WSKPWBZAEKKQ6RB.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "5WSKPWBZAEKKQ6RB.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "5WSKPWBZAEKKQ6RB.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "5WSKPWBZAEKKQ6RB.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7375" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "5WSKPWBZAEKKQ6RB.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "5WSKPWBZAEKKQ6RB", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "5WSKPWBZAEKKQ6RB.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "5WSKPWBZAEKKQ6RB.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2640000000" + }, + "appliesTo" : [ ] + }, + "5WSKPWBZAEKKQ6RB.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "5WSKPWBZAEKKQ6RB.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4288" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "A5GXEZ47W9A2SVY8" : { + "A5GXEZ47W9A2SVY8.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "A5GXEZ47W9A2SVY8", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "A5GXEZ47W9A2SVY8.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "A5GXEZ47W9A2SVY8.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5430000000" + }, + "appliesTo" : [ ] + }, + "A5GXEZ47W9A2SVY8.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "A5GXEZ47W9A2SVY8.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14280" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "A5GXEZ47W9A2SVY8.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "A5GXEZ47W9A2SVY8", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "A5GXEZ47W9A2SVY8.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "A5GXEZ47W9A2SVY8.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "A5GXEZ47W9A2SVY8.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "A5GXEZ47W9A2SVY8", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "A5GXEZ47W9A2SVY8.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "A5GXEZ47W9A2SVY8.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "A5GXEZ47W9A2SVY8.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "A5GXEZ47W9A2SVY8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "A5GXEZ47W9A2SVY8.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "A5GXEZ47W9A2SVY8.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26848" + }, + "appliesTo" : [ ] + }, + "A5GXEZ47W9A2SVY8.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "A5GXEZ47W9A2SVY8.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "A5GXEZ47W9A2SVY8.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "A5GXEZ47W9A2SVY8", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "A5GXEZ47W9A2SVY8.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "A5GXEZ47W9A2SVY8.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6180000000" + }, + "appliesTo" : [ ] + }, + "A5GXEZ47W9A2SVY8.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "A5GXEZ47W9A2SVY8.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16242" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "A5GXEZ47W9A2SVY8.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "A5GXEZ47W9A2SVY8", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "A5GXEZ47W9A2SVY8.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "A5GXEZ47W9A2SVY8.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5685" + }, + "appliesTo" : [ ] + }, + "A5GXEZ47W9A2SVY8.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "A5GXEZ47W9A2SVY8.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "A5GXEZ47W9A2SVY8.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "A5GXEZ47W9A2SVY8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "A5GXEZ47W9A2SVY8.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "A5GXEZ47W9A2SVY8.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11143" + }, + "appliesTo" : [ ] + }, + "A5GXEZ47W9A2SVY8.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "A5GXEZ47W9A2SVY8.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "A5GXEZ47W9A2SVY8.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "A5GXEZ47W9A2SVY8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "A5GXEZ47W9A2SVY8.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "A5GXEZ47W9A2SVY8.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0864000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "A5GXEZ47W9A2SVY8.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "A5GXEZ47W9A2SVY8", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "A5GXEZ47W9A2SVY8.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "A5GXEZ47W9A2SVY8.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31836" + }, + "appliesTo" : [ ] + }, + "A5GXEZ47W9A2SVY8.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "A5GXEZ47W9A2SVY8.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "A5GXEZ47W9A2SVY8.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "A5GXEZ47W9A2SVY8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A5GXEZ47W9A2SVY8.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "A5GXEZ47W9A2SVY8.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14043" + }, + "appliesTo" : [ ] + }, + "A5GXEZ47W9A2SVY8.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "A5GXEZ47W9A2SVY8.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "A5GXEZ47W9A2SVY8.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "A5GXEZ47W9A2SVY8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A5GXEZ47W9A2SVY8.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "A5GXEZ47W9A2SVY8.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6449000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "A5GXEZ47W9A2SVY8.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "A5GXEZ47W9A2SVY8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A5GXEZ47W9A2SVY8.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "A5GXEZ47W9A2SVY8.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8075000000" + }, + "appliesTo" : [ ] + }, + "A5GXEZ47W9A2SVY8.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "A5GXEZ47W9A2SVY8.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7074" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "9X8YQSJK3UTFW3TV" : { + "9X8YQSJK3UTFW3TV.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "9X8YQSJK3UTFW3TV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9X8YQSJK3UTFW3TV.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "9X8YQSJK3UTFW3TV.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9X8YQSJK3UTFW3TV.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "9X8YQSJK3UTFW3TV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9X8YQSJK3UTFW3TV.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "9X8YQSJK3UTFW3TV.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34581" + }, + "appliesTo" : [ ] + }, + "9X8YQSJK3UTFW3TV.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "9X8YQSJK3UTFW3TV.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9X8YQSJK3UTFW3TV.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "9X8YQSJK3UTFW3TV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9X8YQSJK3UTFW3TV.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "9X8YQSJK3UTFW3TV.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "67376" + }, + "appliesTo" : [ ] + }, + "9X8YQSJK3UTFW3TV.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "9X8YQSJK3UTFW3TV.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9X8YQSJK3UTFW3TV.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "9X8YQSJK3UTFW3TV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9X8YQSJK3UTFW3TV.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "9X8YQSJK3UTFW3TV.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "142038" + }, + "appliesTo" : [ ] + }, + "9X8YQSJK3UTFW3TV.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "9X8YQSJK3UTFW3TV.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9X8YQSJK3UTFW3TV.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "9X8YQSJK3UTFW3TV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9X8YQSJK3UTFW3TV.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "9X8YQSJK3UTFW3TV.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "71679" + }, + "appliesTo" : [ ] + }, + "9X8YQSJK3UTFW3TV.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "9X8YQSJK3UTFW3TV.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9X8YQSJK3UTFW3TV.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "9X8YQSJK3UTFW3TV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9X8YQSJK3UTFW3TV.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "9X8YQSJK3UTFW3TV.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.3020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9X8YQSJK3UTFW3TV.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "9X8YQSJK3UTFW3TV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9X8YQSJK3UTFW3TV.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "9X8YQSJK3UTFW3TV.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.1430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9X8YQSJK3UTFW3TV.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "9X8YQSJK3UTFW3TV", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "9X8YQSJK3UTFW3TV.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "9X8YQSJK3UTFW3TV.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "9X8YQSJK3UTFW3TV.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "9X8YQSJK3UTFW3TV.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "62751" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9X8YQSJK3UTFW3TV.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "9X8YQSJK3UTFW3TV", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "9X8YQSJK3UTFW3TV.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "9X8YQSJK3UTFW3TV.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31753" + }, + "appliesTo" : [ ] + }, + "9X8YQSJK3UTFW3TV.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "9X8YQSJK3UTFW3TV.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9X8YQSJK3UTFW3TV.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "9X8YQSJK3UTFW3TV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9X8YQSJK3UTFW3TV.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "9X8YQSJK3UTFW3TV.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "68294" + }, + "appliesTo" : [ ] + }, + "9X8YQSJK3UTFW3TV.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "9X8YQSJK3UTFW3TV.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9X8YQSJK3UTFW3TV.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "9X8YQSJK3UTFW3TV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9X8YQSJK3UTFW3TV.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "9X8YQSJK3UTFW3TV.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.6560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9X8YQSJK3UTFW3TV.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "9X8YQSJK3UTFW3TV", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "9X8YQSJK3UTFW3TV.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "9X8YQSJK3UTFW3TV.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "131308" + }, + "appliesTo" : [ ] + }, + "9X8YQSJK3UTFW3TV.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "9X8YQSJK3UTFW3TV.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "JC8C66GWV5KYJPAD" : { + "JC8C66GWV5KYJPAD.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "JC8C66GWV5KYJPAD", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JC8C66GWV5KYJPAD.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "JC8C66GWV5KYJPAD.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16586" + }, + "appliesTo" : [ ] + }, + "JC8C66GWV5KYJPAD.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "JC8C66GWV5KYJPAD.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JC8C66GWV5KYJPAD.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "JC8C66GWV5KYJPAD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JC8C66GWV5KYJPAD.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "JC8C66GWV5KYJPAD.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20774" + }, + "appliesTo" : [ ] + }, + "JC8C66GWV5KYJPAD.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "JC8C66GWV5KYJPAD.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "JC8C66GWV5KYJPAD.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "JC8C66GWV5KYJPAD", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "JC8C66GWV5KYJPAD.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "JC8C66GWV5KYJPAD.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19656" + }, + "appliesTo" : [ ] + }, + "JC8C66GWV5KYJPAD.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "JC8C66GWV5KYJPAD.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "JC8C66GWV5KYJPAD.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "JC8C66GWV5KYJPAD", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JC8C66GWV5KYJPAD.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "JC8C66GWV5KYJPAD.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1010000000" + }, + "appliesTo" : [ ] + }, + "JC8C66GWV5KYJPAD.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "JC8C66GWV5KYJPAD.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7280" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "JC8C66GWV5KYJPAD.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "JC8C66GWV5KYJPAD", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "JC8C66GWV5KYJPAD.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "JC8C66GWV5KYJPAD.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46019" + }, + "appliesTo" : [ ] + }, + "JC8C66GWV5KYJPAD.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "JC8C66GWV5KYJPAD.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "JC8C66GWV5KYJPAD.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "JC8C66GWV5KYJPAD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JC8C66GWV5KYJPAD.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "JC8C66GWV5KYJPAD.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "JC8C66GWV5KYJPAD.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "JC8C66GWV5KYJPAD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JC8C66GWV5KYJPAD.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "JC8C66GWV5KYJPAD.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10533" + }, + "appliesTo" : [ ] + }, + "JC8C66GWV5KYJPAD.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "JC8C66GWV5KYJPAD.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "JC8C66GWV5KYJPAD.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "JC8C66GWV5KYJPAD", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JC8C66GWV5KYJPAD.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "JC8C66GWV5KYJPAD.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "JC8C66GWV5KYJPAD.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "JC8C66GWV5KYJPAD", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "JC8C66GWV5KYJPAD.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "JC8C66GWV5KYJPAD.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10960" + }, + "appliesTo" : [ ] + }, + "JC8C66GWV5KYJPAD.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "JC8C66GWV5KYJPAD.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "JC8C66GWV5KYJPAD.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "JC8C66GWV5KYJPAD", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JC8C66GWV5KYJPAD.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "JC8C66GWV5KYJPAD.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34067" + }, + "appliesTo" : [ ] + }, + "JC8C66GWV5KYJPAD.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "JC8C66GWV5KYJPAD.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JC8C66GWV5KYJPAD.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "JC8C66GWV5KYJPAD", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "JC8C66GWV5KYJPAD.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "JC8C66GWV5KYJPAD.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "S3H5EEV3EEF3YHPE" : { + "S3H5EEV3EEF3YHPE.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "S3H5EEV3EEF3YHPE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "S3H5EEV3EEF3YHPE.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "S3H5EEV3EEF3YHPE.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "S3H5EEV3EEF3YHPE.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "S3H5EEV3EEF3YHPE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "S3H5EEV3EEF3YHPE.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "S3H5EEV3EEF3YHPE.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4490" + }, + "appliesTo" : [ ] + }, + "S3H5EEV3EEF3YHPE.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "S3H5EEV3EEF3YHPE.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "S3H5EEV3EEF3YHPE.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "S3H5EEV3EEF3YHPE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "S3H5EEV3EEF3YHPE.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "S3H5EEV3EEF3YHPE.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "S3H5EEV3EEF3YHPE.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "S3H5EEV3EEF3YHPE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "S3H5EEV3EEF3YHPE.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "S3H5EEV3EEF3YHPE.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "S3H5EEV3EEF3YHPE.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "S3H5EEV3EEF3YHPE", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "S3H5EEV3EEF3YHPE.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "S3H5EEV3EEF3YHPE.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10747" + }, + "appliesTo" : [ ] + }, + "S3H5EEV3EEF3YHPE.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "S3H5EEV3EEF3YHPE.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "S3H5EEV3EEF3YHPE.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "S3H5EEV3EEF3YHPE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "S3H5EEV3EEF3YHPE.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "S3H5EEV3EEF3YHPE.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11342" + }, + "appliesTo" : [ ] + }, + "S3H5EEV3EEF3YHPE.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "S3H5EEV3EEF3YHPE.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "S3H5EEV3EEF3YHPE.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "S3H5EEV3EEF3YHPE", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "S3H5EEV3EEF3YHPE.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "S3H5EEV3EEF3YHPE.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21007" + }, + "appliesTo" : [ ] + }, + "S3H5EEV3EEF3YHPE.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "S3H5EEV3EEF3YHPE.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "S3H5EEV3EEF3YHPE.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "S3H5EEV3EEF3YHPE", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "S3H5EEV3EEF3YHPE.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "S3H5EEV3EEF3YHPE.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8289" + }, + "appliesTo" : [ ] + }, + "S3H5EEV3EEF3YHPE.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "S3H5EEV3EEF3YHPE.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "S3H5EEV3EEF3YHPE.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "S3H5EEV3EEF3YHPE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "S3H5EEV3EEF3YHPE.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "S3H5EEV3EEF3YHPE.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4184" + }, + "appliesTo" : [ ] + }, + "S3H5EEV3EEF3YHPE.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "S3H5EEV3EEF3YHPE.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "S3H5EEV3EEF3YHPE.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "S3H5EEV3EEF3YHPE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "S3H5EEV3EEF3YHPE.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "S3H5EEV3EEF3YHPE.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "S3H5EEV3EEF3YHPE.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "S3H5EEV3EEF3YHPE.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8890" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "S3H5EEV3EEF3YHPE.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "S3H5EEV3EEF3YHPE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "S3H5EEV3EEF3YHPE.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "S3H5EEV3EEF3YHPE.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22499" + }, + "appliesTo" : [ ] + }, + "S3H5EEV3EEF3YHPE.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "S3H5EEV3EEF3YHPE.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "S3H5EEV3EEF3YHPE.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "S3H5EEV3EEF3YHPE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "S3H5EEV3EEF3YHPE.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "S3H5EEV3EEF3YHPE.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "DS6NATW2S9Q4UKZS" : { + "DS6NATW2S9Q4UKZS.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "DS6NATW2S9Q4UKZS", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "DS6NATW2S9Q4UKZS.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "DS6NATW2S9Q4UKZS.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DS6NATW2S9Q4UKZS.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "DS6NATW2S9Q4UKZS", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "DS6NATW2S9Q4UKZS.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "DS6NATW2S9Q4UKZS.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "631" + }, + "appliesTo" : [ ] + }, + "DS6NATW2S9Q4UKZS.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "DS6NATW2S9Q4UKZS.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DS6NATW2S9Q4UKZS.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "DS6NATW2S9Q4UKZS", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "DS6NATW2S9Q4UKZS.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "DS6NATW2S9Q4UKZS.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1186" + }, + "appliesTo" : [ ] + }, + "DS6NATW2S9Q4UKZS.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "DS6NATW2S9Q4UKZS.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DS6NATW2S9Q4UKZS.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "DS6NATW2S9Q4UKZS", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "DS6NATW2S9Q4UKZS.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "DS6NATW2S9Q4UKZS.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "405" + }, + "appliesTo" : [ ] + }, + "DS6NATW2S9Q4UKZS.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "DS6NATW2S9Q4UKZS.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DS6NATW2S9Q4UKZS.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "DS6NATW2S9Q4UKZS", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "DS6NATW2S9Q4UKZS.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "DS6NATW2S9Q4UKZS.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2767" + }, + "appliesTo" : [ ] + }, + "DS6NATW2S9Q4UKZS.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "DS6NATW2S9Q4UKZS.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "6RTK76EDTUWSCDZ8" : { + "6RTK76EDTUWSCDZ8.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "6RTK76EDTUWSCDZ8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6RTK76EDTUWSCDZ8.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "6RTK76EDTUWSCDZ8.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6RTK76EDTUWSCDZ8.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6RTK76EDTUWSCDZ8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6RTK76EDTUWSCDZ8.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6RTK76EDTUWSCDZ8.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "6RTK76EDTUWSCDZ8.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6RTK76EDTUWSCDZ8.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7881" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6RTK76EDTUWSCDZ8.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6RTK76EDTUWSCDZ8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6RTK76EDTUWSCDZ8.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6RTK76EDTUWSCDZ8.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "6RTK76EDTUWSCDZ8.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6RTK76EDTUWSCDZ8.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14665" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6RTK76EDTUWSCDZ8.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6RTK76EDTUWSCDZ8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6RTK76EDTUWSCDZ8.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6RTK76EDTUWSCDZ8.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4021" + }, + "appliesTo" : [ ] + }, + "6RTK76EDTUWSCDZ8.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6RTK76EDTUWSCDZ8.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6RTK76EDTUWSCDZ8.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6RTK76EDTUWSCDZ8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6RTK76EDTUWSCDZ8.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6RTK76EDTUWSCDZ8.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6RTK76EDTUWSCDZ8.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6RTK76EDTUWSCDZ8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6RTK76EDTUWSCDZ8.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6RTK76EDTUWSCDZ8.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7800" + }, + "appliesTo" : [ ] + }, + "6RTK76EDTUWSCDZ8.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6RTK76EDTUWSCDZ8.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "4C7N4APU9GEUZ6H6" : { + "4C7N4APU9GEUZ6H6.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "4C7N4APU9GEUZ6H6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4C7N4APU9GEUZ6H6.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "4C7N4APU9GEUZ6H6.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "302" + }, + "appliesTo" : [ ] + }, + "4C7N4APU9GEUZ6H6.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "4C7N4APU9GEUZ6H6.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4C7N4APU9GEUZ6H6.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "4C7N4APU9GEUZ6H6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4C7N4APU9GEUZ6H6.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "4C7N4APU9GEUZ6H6.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "4C7N4APU9GEUZ6H6.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "4C7N4APU9GEUZ6H6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4C7N4APU9GEUZ6H6.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "4C7N4APU9GEUZ6H6.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "4C7N4APU9GEUZ6H6.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "4C7N4APU9GEUZ6H6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4C7N4APU9GEUZ6H6.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "4C7N4APU9GEUZ6H6.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "4C7N4APU9GEUZ6H6.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "4C7N4APU9GEUZ6H6.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1214" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4C7N4APU9GEUZ6H6.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "4C7N4APU9GEUZ6H6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4C7N4APU9GEUZ6H6.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "4C7N4APU9GEUZ6H6.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "4C7N4APU9GEUZ6H6.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "4C7N4APU9GEUZ6H6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4C7N4APU9GEUZ6H6.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "4C7N4APU9GEUZ6H6.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0300000000" + }, + "appliesTo" : [ ] + }, + "4C7N4APU9GEUZ6H6.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "4C7N4APU9GEUZ6H6.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "263" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4C7N4APU9GEUZ6H6.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "4C7N4APU9GEUZ6H6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4C7N4APU9GEUZ6H6.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "4C7N4APU9GEUZ6H6.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "592" + }, + "appliesTo" : [ ] + }, + "4C7N4APU9GEUZ6H6.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "4C7N4APU9GEUZ6H6.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4C7N4APU9GEUZ6H6.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "4C7N4APU9GEUZ6H6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4C7N4APU9GEUZ6H6.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "4C7N4APU9GEUZ6H6.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "4C7N4APU9GEUZ6H6.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "4C7N4APU9GEUZ6H6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4C7N4APU9GEUZ6H6.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "4C7N4APU9GEUZ6H6.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "539" + }, + "appliesTo" : [ ] + }, + "4C7N4APU9GEUZ6H6.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "4C7N4APU9GEUZ6H6.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4C7N4APU9GEUZ6H6.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "4C7N4APU9GEUZ6H6", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "4C7N4APU9GEUZ6H6.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "4C7N4APU9GEUZ6H6.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1013" + }, + "appliesTo" : [ ] + }, + "4C7N4APU9GEUZ6H6.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "4C7N4APU9GEUZ6H6.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4C7N4APU9GEUZ6H6.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "4C7N4APU9GEUZ6H6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4C7N4APU9GEUZ6H6.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "4C7N4APU9GEUZ6H6.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "620" + }, + "appliesTo" : [ ] + }, + "4C7N4APU9GEUZ6H6.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "4C7N4APU9GEUZ6H6.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4C7N4APU9GEUZ6H6.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "4C7N4APU9GEUZ6H6", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "4C7N4APU9GEUZ6H6.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "4C7N4APU9GEUZ6H6.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "515" + }, + "appliesTo" : [ ] + }, + "4C7N4APU9GEUZ6H6.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "4C7N4APU9GEUZ6H6.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "MGQK9YE98AEGCFNM" : { + "MGQK9YE98AEGCFNM.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "MGQK9YE98AEGCFNM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MGQK9YE98AEGCFNM.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "MGQK9YE98AEGCFNM.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23537" + }, + "appliesTo" : [ ] + }, + "MGQK9YE98AEGCFNM.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "MGQK9YE98AEGCFNM.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MGQK9YE98AEGCFNM.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "MGQK9YE98AEGCFNM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MGQK9YE98AEGCFNM.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "MGQK9YE98AEGCFNM.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.5410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MGQK9YE98AEGCFNM.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "MGQK9YE98AEGCFNM", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MGQK9YE98AEGCFNM.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "MGQK9YE98AEGCFNM.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33919" + }, + "appliesTo" : [ ] + }, + "MGQK9YE98AEGCFNM.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "MGQK9YE98AEGCFNM.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MGQK9YE98AEGCFNM.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "MGQK9YE98AEGCFNM", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MGQK9YE98AEGCFNM.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "MGQK9YE98AEGCFNM.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9620000000" + }, + "appliesTo" : [ ] + }, + "MGQK9YE98AEGCFNM.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "MGQK9YE98AEGCFNM.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23174" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MGQK9YE98AEGCFNM.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "MGQK9YE98AEGCFNM", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "MGQK9YE98AEGCFNM.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "MGQK9YE98AEGCFNM.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39246" + }, + "appliesTo" : [ ] + }, + "MGQK9YE98AEGCFNM.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "MGQK9YE98AEGCFNM.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MGQK9YE98AEGCFNM.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "MGQK9YE98AEGCFNM", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MGQK9YE98AEGCFNM.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "MGQK9YE98AEGCFNM.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "70251" + }, + "appliesTo" : [ ] + }, + "MGQK9YE98AEGCFNM.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "MGQK9YE98AEGCFNM.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MGQK9YE98AEGCFNM.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "MGQK9YE98AEGCFNM", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "MGQK9YE98AEGCFNM.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "MGQK9YE98AEGCFNM.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MGQK9YE98AEGCFNM.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "MGQK9YE98AEGCFNM", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MGQK9YE98AEGCFNM.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "MGQK9YE98AEGCFNM.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14538" + }, + "appliesTo" : [ ] + }, + "MGQK9YE98AEGCFNM.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "MGQK9YE98AEGCFNM.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MGQK9YE98AEGCFNM.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "MGQK9YE98AEGCFNM", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "MGQK9YE98AEGCFNM.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "MGQK9YE98AEGCFNM.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "94278" + }, + "appliesTo" : [ ] + }, + "MGQK9YE98AEGCFNM.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "MGQK9YE98AEGCFNM.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MGQK9YE98AEGCFNM.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "MGQK9YE98AEGCFNM", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MGQK9YE98AEGCFNM.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "MGQK9YE98AEGCFNM.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.6230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MGQK9YE98AEGCFNM.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "MGQK9YE98AEGCFNM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MGQK9YE98AEGCFNM.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "MGQK9YE98AEGCFNM.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46489" + }, + "appliesTo" : [ ] + }, + "MGQK9YE98AEGCFNM.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "MGQK9YE98AEGCFNM.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "Y8VTXM3N25VB943C" : { + "Y8VTXM3N25VB943C.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Y8VTXM3N25VB943C", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "Y8VTXM3N25VB943C.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Y8VTXM3N25VB943C.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "Y8VTXM3N25VB943C.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Y8VTXM3N25VB943C.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7089" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Y8VTXM3N25VB943C.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "Y8VTXM3N25VB943C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Y8VTXM3N25VB943C.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "Y8VTXM3N25VB943C.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4152" + }, + "appliesTo" : [ ] + }, + "Y8VTXM3N25VB943C.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "Y8VTXM3N25VB943C.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y8VTXM3N25VB943C.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "Y8VTXM3N25VB943C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Y8VTXM3N25VB943C.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "Y8VTXM3N25VB943C.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Y8VTXM3N25VB943C.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "Y8VTXM3N25VB943C", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "Y8VTXM3N25VB943C.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "Y8VTXM3N25VB943C.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19051" + }, + "appliesTo" : [ ] + }, + "Y8VTXM3N25VB943C.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "Y8VTXM3N25VB943C.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Y8VTXM3N25VB943C.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Y8VTXM3N25VB943C", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "Y8VTXM3N25VB943C.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Y8VTXM3N25VB943C.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8988" + }, + "appliesTo" : [ ] + }, + "Y8VTXM3N25VB943C.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Y8VTXM3N25VB943C.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y8VTXM3N25VB943C.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "Y8VTXM3N25VB943C", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "Y8VTXM3N25VB943C.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "Y8VTXM3N25VB943C.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12564" + }, + "appliesTo" : [ ] + }, + "Y8VTXM3N25VB943C.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "Y8VTXM3N25VB943C.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y8VTXM3N25VB943C.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "Y8VTXM3N25VB943C", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "Y8VTXM3N25VB943C.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "Y8VTXM3N25VB943C.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Y8VTXM3N25VB943C.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "Y8VTXM3N25VB943C", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Y8VTXM3N25VB943C.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "Y8VTXM3N25VB943C.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8083" + }, + "appliesTo" : [ ] + }, + "Y8VTXM3N25VB943C.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "Y8VTXM3N25VB943C.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Y8VTXM3N25VB943C.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Y8VTXM3N25VB943C", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "Y8VTXM3N25VB943C.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Y8VTXM3N25VB943C.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14180" + }, + "appliesTo" : [ ] + }, + "Y8VTXM3N25VB943C.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Y8VTXM3N25VB943C.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Y8VTXM3N25VB943C.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Y8VTXM3N25VB943C", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "Y8VTXM3N25VB943C.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Y8VTXM3N25VB943C.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Y8VTXM3N25VB943C.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Y8VTXM3N25VB943C", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "Y8VTXM3N25VB943C.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Y8VTXM3N25VB943C.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2890000000" + }, + "appliesTo" : [ ] + }, + "Y8VTXM3N25VB943C.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Y8VTXM3N25VB943C.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4699" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "Y8GH4ZVR4XW8623W" : { + "Y8GH4ZVR4XW8623W.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Y8GH4ZVR4XW8623W", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "Y8GH4ZVR4XW8623W.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Y8GH4ZVR4XW8623W.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Y8GH4ZVR4XW8623W.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "Y8GH4ZVR4XW8623W", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Y8GH4ZVR4XW8623W.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "Y8GH4ZVR4XW8623W.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0400000000" + }, + "appliesTo" : [ ] + }, + "Y8GH4ZVR4XW8623W.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "Y8GH4ZVR4XW8623W.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "350" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y8GH4ZVR4XW8623W.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "Y8GH4ZVR4XW8623W", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Y8GH4ZVR4XW8623W.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "Y8GH4ZVR4XW8623W.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Y8GH4ZVR4XW8623W.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "Y8GH4ZVR4XW8623W", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Y8GH4ZVR4XW8623W.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "Y8GH4ZVR4XW8623W.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "686" + }, + "appliesTo" : [ ] + }, + "Y8GH4ZVR4XW8623W.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "Y8GH4ZVR4XW8623W.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Y8GH4ZVR4XW8623W.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "Y8GH4ZVR4XW8623W", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "Y8GH4ZVR4XW8623W.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "Y8GH4ZVR4XW8623W.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1609" + }, + "appliesTo" : [ ] + }, + "Y8GH4ZVR4XW8623W.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "Y8GH4ZVR4XW8623W.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Y8GH4ZVR4XW8623W.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Y8GH4ZVR4XW8623W", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "Y8GH4ZVR4XW8623W.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Y8GH4ZVR4XW8623W.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "359" + }, + "appliesTo" : [ ] + }, + "Y8GH4ZVR4XW8623W.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Y8GH4ZVR4XW8623W.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y8GH4ZVR4XW8623W.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Y8GH4ZVR4XW8623W", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "Y8GH4ZVR4XW8623W.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Y8GH4ZVR4XW8623W.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0240000000" + }, + "appliesTo" : [ ] + }, + "Y8GH4ZVR4XW8623W.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Y8GH4ZVR4XW8623W.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "559" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y8GH4ZVR4XW8623W.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "Y8GH4ZVR4XW8623W", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "Y8GH4ZVR4XW8623W.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "Y8GH4ZVR4XW8623W.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "969" + }, + "appliesTo" : [ ] + }, + "Y8GH4ZVR4XW8623W.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "Y8GH4ZVR4XW8623W.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y8GH4ZVR4XW8623W.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "Y8GH4ZVR4XW8623W", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "Y8GH4ZVR4XW8623W.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "Y8GH4ZVR4XW8623W.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Y8GH4ZVR4XW8623W.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Y8GH4ZVR4XW8623W", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "Y8GH4ZVR4XW8623W.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Y8GH4ZVR4XW8623W.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "Y8GH4ZVR4XW8623W.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Y8GH4ZVR4XW8623W.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1122" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Y8GH4ZVR4XW8623W.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Y8GH4ZVR4XW8623W", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "Y8GH4ZVR4XW8623W.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Y8GH4ZVR4XW8623W.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "596" + }, + "appliesTo" : [ ] + }, + "Y8GH4ZVR4XW8623W.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Y8GH4ZVR4XW8623W.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "R4QE46FY6EGW3G4T" : { + "R4QE46FY6EGW3G4T.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "R4QE46FY6EGW3G4T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R4QE46FY6EGW3G4T.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "R4QE46FY6EGW3G4T.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "R4QE46FY6EGW3G4T.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "R4QE46FY6EGW3G4T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R4QE46FY6EGW3G4T.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "R4QE46FY6EGW3G4T.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1616" + }, + "appliesTo" : [ ] + }, + "R4QE46FY6EGW3G4T.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "R4QE46FY6EGW3G4T.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "R4QE46FY6EGW3G4T.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "R4QE46FY6EGW3G4T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R4QE46FY6EGW3G4T.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "R4QE46FY6EGW3G4T.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4173" + }, + "appliesTo" : [ ] + }, + "R4QE46FY6EGW3G4T.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "R4QE46FY6EGW3G4T.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "R4QE46FY6EGW3G4T.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "R4QE46FY6EGW3G4T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R4QE46FY6EGW3G4T.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "R4QE46FY6EGW3G4T.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3211" + }, + "appliesTo" : [ ] + }, + "R4QE46FY6EGW3G4T.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "R4QE46FY6EGW3G4T.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "R4QE46FY6EGW3G4T.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "R4QE46FY6EGW3G4T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R4QE46FY6EGW3G4T.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "R4QE46FY6EGW3G4T.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "R4QE46FY6EGW3G4T.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "R4QE46FY6EGW3G4T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R4QE46FY6EGW3G4T.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "R4QE46FY6EGW3G4T.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4305" + }, + "appliesTo" : [ ] + }, + "R4QE46FY6EGW3G4T.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "R4QE46FY6EGW3G4T.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "R4QE46FY6EGW3G4T.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "R4QE46FY6EGW3G4T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R4QE46FY6EGW3G4T.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "R4QE46FY6EGW3G4T.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8569" + }, + "appliesTo" : [ ] + }, + "R4QE46FY6EGW3G4T.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "R4QE46FY6EGW3G4T.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "R4QE46FY6EGW3G4T.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "R4QE46FY6EGW3G4T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R4QE46FY6EGW3G4T.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "R4QE46FY6EGW3G4T.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3080" + }, + "appliesTo" : [ ] + }, + "R4QE46FY6EGW3G4T.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "R4QE46FY6EGW3G4T.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "R4QE46FY6EGW3G4T.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "R4QE46FY6EGW3G4T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R4QE46FY6EGW3G4T.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "R4QE46FY6EGW3G4T.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8241" + }, + "appliesTo" : [ ] + }, + "R4QE46FY6EGW3G4T.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "R4QE46FY6EGW3G4T.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "R4QE46FY6EGW3G4T.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "R4QE46FY6EGW3G4T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R4QE46FY6EGW3G4T.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "R4QE46FY6EGW3G4T.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "R4QE46FY6EGW3G4T.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "R4QE46FY6EGW3G4T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R4QE46FY6EGW3G4T.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "R4QE46FY6EGW3G4T.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1549" + }, + "appliesTo" : [ ] + }, + "R4QE46FY6EGW3G4T.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "R4QE46FY6EGW3G4T.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "R4QE46FY6EGW3G4T.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "R4QE46FY6EGW3G4T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R4QE46FY6EGW3G4T.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "R4QE46FY6EGW3G4T.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "V6XZ8Q6G3WH46NAH" : { + "V6XZ8Q6G3WH46NAH.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "V6XZ8Q6G3WH46NAH", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "V6XZ8Q6G3WH46NAH.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "V6XZ8Q6G3WH46NAH.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6152000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "V6XZ8Q6G3WH46NAH.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "V6XZ8Q6G3WH46NAH", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "V6XZ8Q6G3WH46NAH.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "V6XZ8Q6G3WH46NAH.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8121" + }, + "appliesTo" : [ ] + }, + "V6XZ8Q6G3WH46NAH.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "V6XZ8Q6G3WH46NAH.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "V6XZ8Q6G3WH46NAH.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "V6XZ8Q6G3WH46NAH", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "V6XZ8Q6G3WH46NAH.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "V6XZ8Q6G3WH46NAH.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6217000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "V6XZ8Q6G3WH46NAH.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "V6XZ8Q6G3WH46NAH", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "V6XZ8Q6G3WH46NAH.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "V6XZ8Q6G3WH46NAH.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16020" + }, + "appliesTo" : [ ] + }, + "V6XZ8Q6G3WH46NAH.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "V6XZ8Q6G3WH46NAH.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "V6XZ8Q6G3WH46NAH.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "V6XZ8Q6G3WH46NAH", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "V6XZ8Q6G3WH46NAH.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "V6XZ8Q6G3WH46NAH.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8042" + }, + "appliesTo" : [ ] + }, + "V6XZ8Q6G3WH46NAH.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "V6XZ8Q6G3WH46NAH.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "V6XZ8Q6G3WH46NAH.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "V6XZ8Q6G3WH46NAH", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "V6XZ8Q6G3WH46NAH.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "V6XZ8Q6G3WH46NAH.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16217" + }, + "appliesTo" : [ ] + }, + "V6XZ8Q6G3WH46NAH.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "V6XZ8Q6G3WH46NAH.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "V6XZ8Q6G3WH46NAH.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "V6XZ8Q6G3WH46NAH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V6XZ8Q6G3WH46NAH.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "V6XZ8Q6G3WH46NAH.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5593" + }, + "appliesTo" : [ ] + }, + "V6XZ8Q6G3WH46NAH.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "V6XZ8Q6G3WH46NAH.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "V6XZ8Q6G3WH46NAH.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "V6XZ8Q6G3WH46NAH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V6XZ8Q6G3WH46NAH.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "V6XZ8Q6G3WH46NAH.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2803" + }, + "appliesTo" : [ ] + }, + "V6XZ8Q6G3WH46NAH.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "V6XZ8Q6G3WH46NAH.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3199000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "V6XZ8Q6G3WH46NAH.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "V6XZ8Q6G3WH46NAH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V6XZ8Q6G3WH46NAH.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "V6XZ8Q6G3WH46NAH.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6432000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "V6XZ8Q6G3WH46NAH.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "V6XZ8Q6G3WH46NAH", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "V6XZ8Q6G3WH46NAH.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "V6XZ8Q6G3WH46NAH.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5517" + }, + "appliesTo" : [ ] + }, + "V6XZ8Q6G3WH46NAH.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "V6XZ8Q6G3WH46NAH.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "V6XZ8Q6G3WH46NAH.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "V6XZ8Q6G3WH46NAH", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "V6XZ8Q6G3WH46NAH.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "V6XZ8Q6G3WH46NAH.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2764" + }, + "appliesTo" : [ ] + }, + "V6XZ8Q6G3WH46NAH.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "V6XZ8Q6G3WH46NAH.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3155000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "V6XZ8Q6G3WH46NAH.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "V6XZ8Q6G3WH46NAH", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "V6XZ8Q6G3WH46NAH.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "V6XZ8Q6G3WH46NAH.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "6FNWHYYYSDGVQ87S" : { + "6FNWHYYYSDGVQ87S.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "6FNWHYYYSDGVQ87S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6FNWHYYYSDGVQ87S.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "6FNWHYYYSDGVQ87S.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6FNWHYYYSDGVQ87S.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "6FNWHYYYSDGVQ87S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6FNWHYYYSDGVQ87S.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "6FNWHYYYSDGVQ87S.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3232" + }, + "appliesTo" : [ ] + }, + "6FNWHYYYSDGVQ87S.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "6FNWHYYYSDGVQ87S.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6FNWHYYYSDGVQ87S.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6FNWHYYYSDGVQ87S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6FNWHYYYSDGVQ87S.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6FNWHYYYSDGVQ87S.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8345" + }, + "appliesTo" : [ ] + }, + "6FNWHYYYSDGVQ87S.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6FNWHYYYSDGVQ87S.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6FNWHYYYSDGVQ87S.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6FNWHYYYSDGVQ87S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6FNWHYYYSDGVQ87S.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6FNWHYYYSDGVQ87S.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6159" + }, + "appliesTo" : [ ] + }, + "6FNWHYYYSDGVQ87S.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6FNWHYYYSDGVQ87S.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6FNWHYYYSDGVQ87S.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "6FNWHYYYSDGVQ87S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6FNWHYYYSDGVQ87S.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "6FNWHYYYSDGVQ87S.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8609" + }, + "appliesTo" : [ ] + }, + "6FNWHYYYSDGVQ87S.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "6FNWHYYYSDGVQ87S.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6FNWHYYYSDGVQ87S.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "6FNWHYYYSDGVQ87S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6FNWHYYYSDGVQ87S.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "6FNWHYYYSDGVQ87S.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6422" + }, + "appliesTo" : [ ] + }, + "6FNWHYYYSDGVQ87S.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "6FNWHYYYSDGVQ87S.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6FNWHYYYSDGVQ87S.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "6FNWHYYYSDGVQ87S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6FNWHYYYSDGVQ87S.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "6FNWHYYYSDGVQ87S.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6FNWHYYYSDGVQ87S.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "6FNWHYYYSDGVQ87S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6FNWHYYYSDGVQ87S.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "6FNWHYYYSDGVQ87S.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6FNWHYYYSDGVQ87S.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6FNWHYYYSDGVQ87S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6FNWHYYYSDGVQ87S.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6FNWHYYYSDGVQ87S.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16483" + }, + "appliesTo" : [ ] + }, + "6FNWHYYYSDGVQ87S.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6FNWHYYYSDGVQ87S.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6FNWHYYYSDGVQ87S.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "6FNWHYYYSDGVQ87S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6FNWHYYYSDGVQ87S.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "6FNWHYYYSDGVQ87S.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17138" + }, + "appliesTo" : [ ] + }, + "6FNWHYYYSDGVQ87S.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "6FNWHYYYSDGVQ87S.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6FNWHYYYSDGVQ87S.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6FNWHYYYSDGVQ87S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6FNWHYYYSDGVQ87S.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6FNWHYYYSDGVQ87S.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3098" + }, + "appliesTo" : [ ] + }, + "6FNWHYYYSDGVQ87S.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6FNWHYYYSDGVQ87S.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6FNWHYYYSDGVQ87S.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6FNWHYYYSDGVQ87S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6FNWHYYYSDGVQ87S.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6FNWHYYYSDGVQ87S.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "DPCWVHKZ3AJBNM43" : { + "DPCWVHKZ3AJBNM43.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "DPCWVHKZ3AJBNM43", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DPCWVHKZ3AJBNM43.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "DPCWVHKZ3AJBNM43.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1322000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DPCWVHKZ3AJBNM43.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "DPCWVHKZ3AJBNM43", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "DPCWVHKZ3AJBNM43.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "DPCWVHKZ3AJBNM43.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "940" + }, + "appliesTo" : [ ] + }, + "DPCWVHKZ3AJBNM43.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "DPCWVHKZ3AJBNM43.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DPCWVHKZ3AJBNM43.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "DPCWVHKZ3AJBNM43", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "DPCWVHKZ3AJBNM43.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "DPCWVHKZ3AJBNM43.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1834" + }, + "appliesTo" : [ ] + }, + "DPCWVHKZ3AJBNM43.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "DPCWVHKZ3AJBNM43.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DPCWVHKZ3AJBNM43.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "DPCWVHKZ3AJBNM43", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "DPCWVHKZ3AJBNM43.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "DPCWVHKZ3AJBNM43.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0427000000" + }, + "appliesTo" : [ ] + }, + "DPCWVHKZ3AJBNM43.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "DPCWVHKZ3AJBNM43.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1122" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DPCWVHKZ3AJBNM43.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "DPCWVHKZ3AJBNM43", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "DPCWVHKZ3AJBNM43.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "DPCWVHKZ3AJBNM43.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0922000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DPCWVHKZ3AJBNM43.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "DPCWVHKZ3AJBNM43", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "DPCWVHKZ3AJBNM43.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "DPCWVHKZ3AJBNM43.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "976" + }, + "appliesTo" : [ ] + }, + "DPCWVHKZ3AJBNM43.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "DPCWVHKZ3AJBNM43.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0371000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DPCWVHKZ3AJBNM43.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "DPCWVHKZ3AJBNM43", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DPCWVHKZ3AJBNM43.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "DPCWVHKZ3AJBNM43.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "552" + }, + "appliesTo" : [ ] + }, + "DPCWVHKZ3AJBNM43.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "DPCWVHKZ3AJBNM43.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DPCWVHKZ3AJBNM43.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "DPCWVHKZ3AJBNM43", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "DPCWVHKZ3AJBNM43.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "DPCWVHKZ3AJBNM43.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "480" + }, + "appliesTo" : [ ] + }, + "DPCWVHKZ3AJBNM43.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "DPCWVHKZ3AJBNM43.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0548000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DPCWVHKZ3AJBNM43.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "DPCWVHKZ3AJBNM43", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "DPCWVHKZ3AJBNM43.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "DPCWVHKZ3AJBNM43.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DPCWVHKZ3AJBNM43.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "DPCWVHKZ3AJBNM43", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DPCWVHKZ3AJBNM43.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "DPCWVHKZ3AJBNM43.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "DPCWVHKZ3AJBNM43.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "DPCWVHKZ3AJBNM43.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1081" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DPCWVHKZ3AJBNM43.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "DPCWVHKZ3AJBNM43", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "DPCWVHKZ3AJBNM43.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "DPCWVHKZ3AJBNM43.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0802000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DPCWVHKZ3AJBNM43.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "DPCWVHKZ3AJBNM43", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "DPCWVHKZ3AJBNM43.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "DPCWVHKZ3AJBNM43.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2199" + }, + "appliesTo" : [ ] + }, + "DPCWVHKZ3AJBNM43.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "DPCWVHKZ3AJBNM43.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "9Z79M3D9R4KBF3U2" : { + "9Z79M3D9R4KBF3U2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "9Z79M3D9R4KBF3U2", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "9Z79M3D9R4KBF3U2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "9Z79M3D9R4KBF3U2.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9081000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9Z79M3D9R4KBF3U2.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "9Z79M3D9R4KBF3U2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9Z79M3D9R4KBF3U2.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "9Z79M3D9R4KBF3U2.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3732" + }, + "appliesTo" : [ ] + }, + "9Z79M3D9R4KBF3U2.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "9Z79M3D9R4KBF3U2.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5561000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9Z79M3D9R4KBF3U2.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "9Z79M3D9R4KBF3U2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9Z79M3D9R4KBF3U2.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "9Z79M3D9R4KBF3U2.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0248000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9Z79M3D9R4KBF3U2.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "9Z79M3D9R4KBF3U2", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "9Z79M3D9R4KBF3U2.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "9Z79M3D9R4KBF3U2.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19350" + }, + "appliesTo" : [ ] + }, + "9Z79M3D9R4KBF3U2.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "9Z79M3D9R4KBF3U2.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9Z79M3D9R4KBF3U2.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "9Z79M3D9R4KBF3U2", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "9Z79M3D9R4KBF3U2.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "9Z79M3D9R4KBF3U2.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7982000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9Z79M3D9R4KBF3U2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "9Z79M3D9R4KBF3U2", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "9Z79M3D9R4KBF3U2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "9Z79M3D9R4KBF3U2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3246" + }, + "appliesTo" : [ ] + }, + "9Z79M3D9R4KBF3U2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "9Z79M3D9R4KBF3U2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5005000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9Z79M3D9R4KBF3U2.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "9Z79M3D9R4KBF3U2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9Z79M3D9R4KBF3U2.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "9Z79M3D9R4KBF3U2.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8454" + }, + "appliesTo" : [ ] + }, + "9Z79M3D9R4KBF3U2.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "9Z79M3D9R4KBF3U2.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9Z79M3D9R4KBF3U2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "9Z79M3D9R4KBF3U2", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "9Z79M3D9R4KBF3U2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "9Z79M3D9R4KBF3U2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "9Z79M3D9R4KBF3U2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "9Z79M3D9R4KBF3U2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16706" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9Z79M3D9R4KBF3U2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "9Z79M3D9R4KBF3U2", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "9Z79M3D9R4KBF3U2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "9Z79M3D9R4KBF3U2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7500" + }, + "appliesTo" : [ ] + }, + "9Z79M3D9R4KBF3U2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "9Z79M3D9R4KBF3U2.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9Z79M3D9R4KBF3U2.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "9Z79M3D9R4KBF3U2", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "9Z79M3D9R4KBF3U2.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "9Z79M3D9R4KBF3U2.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9Z79M3D9R4KBF3U2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "9Z79M3D9R4KBF3U2", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "9Z79M3D9R4KBF3U2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "9Z79M3D9R4KBF3U2.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3990000000" + }, + "appliesTo" : [ ] + }, + "9Z79M3D9R4KBF3U2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "9Z79M3D9R4KBF3U2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7069" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9Z79M3D9R4KBF3U2.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "9Z79M3D9R4KBF3U2", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "9Z79M3D9R4KBF3U2.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "9Z79M3D9R4KBF3U2.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8129" + }, + "appliesTo" : [ ] + }, + "9Z79M3D9R4KBF3U2.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "9Z79M3D9R4KBF3U2.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4393000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "AJYJZ3X3S2AJ2D6D" : { + "AJYJZ3X3S2AJ2D6D.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "AJYJZ3X3S2AJ2D6D", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AJYJZ3X3S2AJ2D6D.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "AJYJZ3X3S2AJ2D6D.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "AJYJZ3X3S2AJ2D6D.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "AJYJZ3X3S2AJ2D6D", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AJYJZ3X3S2AJ2D6D.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "AJYJZ3X3S2AJ2D6D.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3280000000" + }, + "appliesTo" : [ ] + }, + "AJYJZ3X3S2AJ2D6D.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "AJYJZ3X3S2AJ2D6D.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11637" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "AJYJZ3X3S2AJ2D6D.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "AJYJZ3X3S2AJ2D6D", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AJYJZ3X3S2AJ2D6D.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "AJYJZ3X3S2AJ2D6D.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20299" + }, + "appliesTo" : [ ] + }, + "AJYJZ3X3S2AJ2D6D.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "AJYJZ3X3S2AJ2D6D.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AJYJZ3X3S2AJ2D6D.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "AJYJZ3X3S2AJ2D6D", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AJYJZ3X3S2AJ2D6D.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "AJYJZ3X3S2AJ2D6D.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21040" + }, + "appliesTo" : [ ] + }, + "AJYJZ3X3S2AJ2D6D.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "AJYJZ3X3S2AJ2D6D.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AJYJZ3X3S2AJ2D6D.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "AJYJZ3X3S2AJ2D6D", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AJYJZ3X3S2AJ2D6D.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "AJYJZ3X3S2AJ2D6D.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "AJYJZ3X3S2AJ2D6D.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "AJYJZ3X3S2AJ2D6D", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AJYJZ3X3S2AJ2D6D.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "AJYJZ3X3S2AJ2D6D.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26669" + }, + "appliesTo" : [ ] + }, + "AJYJZ3X3S2AJ2D6D.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "AJYJZ3X3S2AJ2D6D.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "AJYJZ3X3S2AJ2D6D.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "AJYJZ3X3S2AJ2D6D", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AJYJZ3X3S2AJ2D6D.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "AJYJZ3X3S2AJ2D6D.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "40135" + }, + "appliesTo" : [ ] + }, + "AJYJZ3X3S2AJ2D6D.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "AJYJZ3X3S2AJ2D6D.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AJYJZ3X3S2AJ2D6D.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "AJYJZ3X3S2AJ2D6D", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AJYJZ3X3S2AJ2D6D.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "AJYJZ3X3S2AJ2D6D.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "AJYJZ3X3S2AJ2D6D.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "AJYJZ3X3S2AJ2D6D", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AJYJZ3X3S2AJ2D6D.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "AJYJZ3X3S2AJ2D6D.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22873" + }, + "appliesTo" : [ ] + }, + "AJYJZ3X3S2AJ2D6D.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "AJYJZ3X3S2AJ2D6D.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "AJYJZ3X3S2AJ2D6D.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "AJYJZ3X3S2AJ2D6D", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AJYJZ3X3S2AJ2D6D.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "AJYJZ3X3S2AJ2D6D.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "AJYJZ3X3S2AJ2D6D.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "AJYJZ3X3S2AJ2D6D.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "52464" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "AJYJZ3X3S2AJ2D6D.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "AJYJZ3X3S2AJ2D6D", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AJYJZ3X3S2AJ2D6D.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "AJYJZ3X3S2AJ2D6D.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1790000000" + }, + "appliesTo" : [ ] + }, + "AJYJZ3X3S2AJ2D6D.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "AJYJZ3X3S2AJ2D6D.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10324" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AJYJZ3X3S2AJ2D6D.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "AJYJZ3X3S2AJ2D6D", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AJYJZ3X3S2AJ2D6D.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "AJYJZ3X3S2AJ2D6D.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "3SNVUNEGB8BAMWDP" : { + "3SNVUNEGB8BAMWDP.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "3SNVUNEGB8BAMWDP", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "3SNVUNEGB8BAMWDP.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "3SNVUNEGB8BAMWDP.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6120" + }, + "appliesTo" : [ ] + }, + "3SNVUNEGB8BAMWDP.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "3SNVUNEGB8BAMWDP.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3SNVUNEGB8BAMWDP.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "3SNVUNEGB8BAMWDP", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "3SNVUNEGB8BAMWDP.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "3SNVUNEGB8BAMWDP.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5405" + }, + "appliesTo" : [ ] + }, + "3SNVUNEGB8BAMWDP.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "3SNVUNEGB8BAMWDP.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3SNVUNEGB8BAMWDP.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "3SNVUNEGB8BAMWDP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3SNVUNEGB8BAMWDP.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "3SNVUNEGB8BAMWDP.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2002" + }, + "appliesTo" : [ ] + }, + "3SNVUNEGB8BAMWDP.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "3SNVUNEGB8BAMWDP.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3SNVUNEGB8BAMWDP.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "3SNVUNEGB8BAMWDP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3SNVUNEGB8BAMWDP.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "3SNVUNEGB8BAMWDP.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3425" + }, + "appliesTo" : [ ] + }, + "3SNVUNEGB8BAMWDP.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "3SNVUNEGB8BAMWDP.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3SNVUNEGB8BAMWDP.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "3SNVUNEGB8BAMWDP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3SNVUNEGB8BAMWDP.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "3SNVUNEGB8BAMWDP.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3940" + }, + "appliesTo" : [ ] + }, + "3SNVUNEGB8BAMWDP.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "3SNVUNEGB8BAMWDP.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3SNVUNEGB8BAMWDP.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "3SNVUNEGB8BAMWDP", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "3SNVUNEGB8BAMWDP.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "3SNVUNEGB8BAMWDP.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3SNVUNEGB8BAMWDP.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "3SNVUNEGB8BAMWDP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3SNVUNEGB8BAMWDP.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "3SNVUNEGB8BAMWDP.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2010" + }, + "appliesTo" : [ ] + }, + "3SNVUNEGB8BAMWDP.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "3SNVUNEGB8BAMWDP.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3SNVUNEGB8BAMWDP.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "3SNVUNEGB8BAMWDP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3SNVUNEGB8BAMWDP.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "3SNVUNEGB8BAMWDP.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3SNVUNEGB8BAMWDP.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "3SNVUNEGB8BAMWDP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3SNVUNEGB8BAMWDP.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "3SNVUNEGB8BAMWDP.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3014" + }, + "appliesTo" : [ ] + }, + "3SNVUNEGB8BAMWDP.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "3SNVUNEGB8BAMWDP.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3SNVUNEGB8BAMWDP.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "3SNVUNEGB8BAMWDP", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "3SNVUNEGB8BAMWDP.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "3SNVUNEGB8BAMWDP.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "3SNVUNEGB8BAMWDP.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "3SNVUNEGB8BAMWDP.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9248" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3SNVUNEGB8BAMWDP.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "3SNVUNEGB8BAMWDP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3SNVUNEGB8BAMWDP.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "3SNVUNEGB8BAMWDP.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "GU6HKEMK86X9HZKT" : { + "GU6HKEMK86X9HZKT.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "GU6HKEMK86X9HZKT", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "GU6HKEMK86X9HZKT.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "GU6HKEMK86X9HZKT.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6425" + }, + "appliesTo" : [ ] + }, + "GU6HKEMK86X9HZKT.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "GU6HKEMK86X9HZKT.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GU6HKEMK86X9HZKT.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "GU6HKEMK86X9HZKT", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "GU6HKEMK86X9HZKT.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "GU6HKEMK86X9HZKT.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GU6HKEMK86X9HZKT.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "GU6HKEMK86X9HZKT", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "GU6HKEMK86X9HZKT.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "GU6HKEMK86X9HZKT.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "GU6HKEMK86X9HZKT.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "GU6HKEMK86X9HZKT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GU6HKEMK86X9HZKT.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "GU6HKEMK86X9HZKT.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7502" + }, + "appliesTo" : [ ] + }, + "GU6HKEMK86X9HZKT.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "GU6HKEMK86X9HZKT.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GU6HKEMK86X9HZKT.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "GU6HKEMK86X9HZKT", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "GU6HKEMK86X9HZKT.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "GU6HKEMK86X9HZKT.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12482" + }, + "appliesTo" : [ ] + }, + "GU6HKEMK86X9HZKT.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "GU6HKEMK86X9HZKT.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GU6HKEMK86X9HZKT.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "GU6HKEMK86X9HZKT", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "GU6HKEMK86X9HZKT.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "GU6HKEMK86X9HZKT.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5247" + }, + "appliesTo" : [ ] + }, + "GU6HKEMK86X9HZKT.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "GU6HKEMK86X9HZKT.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GU6HKEMK86X9HZKT.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "GU6HKEMK86X9HZKT", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "GU6HKEMK86X9HZKT.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "GU6HKEMK86X9HZKT.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2654" + }, + "appliesTo" : [ ] + }, + "GU6HKEMK86X9HZKT.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "GU6HKEMK86X9HZKT.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GU6HKEMK86X9HZKT.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "GU6HKEMK86X9HZKT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GU6HKEMK86X9HZKT.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "GU6HKEMK86X9HZKT.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6795000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "GU6HKEMK86X9HZKT.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "GU6HKEMK86X9HZKT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GU6HKEMK86X9HZKT.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "GU6HKEMK86X9HZKT.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5705" + }, + "appliesTo" : [ ] + }, + "GU6HKEMK86X9HZKT.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "GU6HKEMK86X9HZKT.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "GU6HKEMK86X9HZKT.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "GU6HKEMK86X9HZKT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GU6HKEMK86X9HZKT.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "GU6HKEMK86X9HZKT.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2888" + }, + "appliesTo" : [ ] + }, + "GU6HKEMK86X9HZKT.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "GU6HKEMK86X9HZKT.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3297000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GU6HKEMK86X9HZKT.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "GU6HKEMK86X9HZKT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GU6HKEMK86X9HZKT.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "GU6HKEMK86X9HZKT.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7609000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GU6HKEMK86X9HZKT.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "GU6HKEMK86X9HZKT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "GU6HKEMK86X9HZKT.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "GU6HKEMK86X9HZKT.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "GU6HKEMK86X9HZKT.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "GU6HKEMK86X9HZKT.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14837" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "FZFXDFC28N97MJBH" : { + "FZFXDFC28N97MJBH.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "FZFXDFC28N97MJBH", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "FZFXDFC28N97MJBH.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "FZFXDFC28N97MJBH.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3427" + }, + "appliesTo" : [ ] + }, + "FZFXDFC28N97MJBH.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "FZFXDFC28N97MJBH.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FZFXDFC28N97MJBH.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "FZFXDFC28N97MJBH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FZFXDFC28N97MJBH.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "FZFXDFC28N97MJBH.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3226000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FZFXDFC28N97MJBH.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "FZFXDFC28N97MJBH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FZFXDFC28N97MJBH.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "FZFXDFC28N97MJBH.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FZFXDFC28N97MJBH.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "FZFXDFC28N97MJBH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FZFXDFC28N97MJBH.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "FZFXDFC28N97MJBH.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4026000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FZFXDFC28N97MJBH.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "FZFXDFC28N97MJBH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FZFXDFC28N97MJBH.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "FZFXDFC28N97MJBH.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1949" + }, + "appliesTo" : [ ] + }, + "FZFXDFC28N97MJBH.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "FZFXDFC28N97MJBH.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2154000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FZFXDFC28N97MJBH.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "FZFXDFC28N97MJBH", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "FZFXDFC28N97MJBH.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "FZFXDFC28N97MJBH.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1713" + }, + "appliesTo" : [ ] + }, + "FZFXDFC28N97MJBH.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "FZFXDFC28N97MJBH.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FZFXDFC28N97MJBH.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "FZFXDFC28N97MJBH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FZFXDFC28N97MJBH.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "FZFXDFC28N97MJBH.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2849000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FZFXDFC28N97MJBH.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "FZFXDFC28N97MJBH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FZFXDFC28N97MJBH.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "FZFXDFC28N97MJBH.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3765" + }, + "appliesTo" : [ ] + }, + "FZFXDFC28N97MJBH.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "FZFXDFC28N97MJBH.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FZFXDFC28N97MJBH.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "FZFXDFC28N97MJBH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FZFXDFC28N97MJBH.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "FZFXDFC28N97MJBH.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7601" + }, + "appliesTo" : [ ] + }, + "FZFXDFC28N97MJBH.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "FZFXDFC28N97MJBH.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FZFXDFC28N97MJBH.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "FZFXDFC28N97MJBH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FZFXDFC28N97MJBH.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "FZFXDFC28N97MJBH.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1471000000" + }, + "appliesTo" : [ ] + }, + "FZFXDFC28N97MJBH.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "FZFXDFC28N97MJBH.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3876" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FZFXDFC28N97MJBH.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "FZFXDFC28N97MJBH", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "FZFXDFC28N97MJBH.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "FZFXDFC28N97MJBH.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "FZFXDFC28N97MJBH.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "FZFXDFC28N97MJBH.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3303" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FZFXDFC28N97MJBH.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "FZFXDFC28N97MJBH", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "FZFXDFC28N97MJBH.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "FZFXDFC28N97MJBH.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6475" + }, + "appliesTo" : [ ] + }, + "FZFXDFC28N97MJBH.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "FZFXDFC28N97MJBH.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "7MZTFYDPAUJUXG8R" : { + "7MZTFYDPAUJUXG8R.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "7MZTFYDPAUJUXG8R", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7MZTFYDPAUJUXG8R.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "7MZTFYDPAUJUXG8R.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25999" + }, + "appliesTo" : [ ] + }, + "7MZTFYDPAUJUXG8R.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "7MZTFYDPAUJUXG8R.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7MZTFYDPAUJUXG8R.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "7MZTFYDPAUJUXG8R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7MZTFYDPAUJUXG8R.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "7MZTFYDPAUJUXG8R.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5352" + }, + "appliesTo" : [ ] + }, + "7MZTFYDPAUJUXG8R.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "7MZTFYDPAUJUXG8R.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7409000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7MZTFYDPAUJUXG8R.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "7MZTFYDPAUJUXG8R", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7MZTFYDPAUJUXG8R.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "7MZTFYDPAUJUXG8R.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7MZTFYDPAUJUXG8R.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "7MZTFYDPAUJUXG8R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7MZTFYDPAUJUXG8R.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "7MZTFYDPAUJUXG8R.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "7MZTFYDPAUJUXG8R.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "7MZTFYDPAUJUXG8R.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11628" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7MZTFYDPAUJUXG8R.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "7MZTFYDPAUJUXG8R", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7MZTFYDPAUJUXG8R.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "7MZTFYDPAUJUXG8R.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9535000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7MZTFYDPAUJUXG8R.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "7MZTFYDPAUJUXG8R", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "7MZTFYDPAUJUXG8R.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "7MZTFYDPAUJUXG8R.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4654" + }, + "appliesTo" : [ ] + }, + "7MZTFYDPAUJUXG8R.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "7MZTFYDPAUJUXG8R.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7MZTFYDPAUJUXG8R.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "7MZTFYDPAUJUXG8R", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "7MZTFYDPAUJUXG8R.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "7MZTFYDPAUJUXG8R.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7MZTFYDPAUJUXG8R.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "7MZTFYDPAUJUXG8R", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "7MZTFYDPAUJUXG8R.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "7MZTFYDPAUJUXG8R.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10260" + }, + "appliesTo" : [ ] + }, + "7MZTFYDPAUJUXG8R.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "7MZTFYDPAUJUXG8R.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7MZTFYDPAUJUXG8R.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "7MZTFYDPAUJUXG8R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7MZTFYDPAUJUXG8R.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "7MZTFYDPAUJUXG8R.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7MZTFYDPAUJUXG8R.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "7MZTFYDPAUJUXG8R", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "7MZTFYDPAUJUXG8R.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "7MZTFYDPAUJUXG8R.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22253" + }, + "appliesTo" : [ ] + }, + "7MZTFYDPAUJUXG8R.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "7MZTFYDPAUJUXG8R.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7MZTFYDPAUJUXG8R.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "7MZTFYDPAUJUXG8R", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "7MZTFYDPAUJUXG8R.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "7MZTFYDPAUJUXG8R.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10019" + }, + "appliesTo" : [ ] + }, + "7MZTFYDPAUJUXG8R.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "7MZTFYDPAUJUXG8R.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7MZTFYDPAUJUXG8R.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "7MZTFYDPAUJUXG8R", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7MZTFYDPAUJUXG8R.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "7MZTFYDPAUJUXG8R.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11522" + }, + "appliesTo" : [ ] + }, + "7MZTFYDPAUJUXG8R.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "7MZTFYDPAUJUXG8R.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5684000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "6SWWQPFNK6JG5AHS" : { + "6SWWQPFNK6JG5AHS.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6SWWQPFNK6JG5AHS", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "6SWWQPFNK6JG5AHS.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6SWWQPFNK6JG5AHS.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13404" + }, + "appliesTo" : [ ] + }, + "6SWWQPFNK6JG5AHS.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6SWWQPFNK6JG5AHS.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6SWWQPFNK6JG5AHS.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6SWWQPFNK6JG5AHS", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "6SWWQPFNK6JG5AHS.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6SWWQPFNK6JG5AHS.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6SWWQPFNK6JG5AHS.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6SWWQPFNK6JG5AHS", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "6SWWQPFNK6JG5AHS.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6SWWQPFNK6JG5AHS.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5473" + }, + "appliesTo" : [ ] + }, + "6SWWQPFNK6JG5AHS.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6SWWQPFNK6JG5AHS.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6SWWQPFNK6JG5AHS.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "6SWWQPFNK6JG5AHS", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "6SWWQPFNK6JG5AHS.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "6SWWQPFNK6JG5AHS.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6SWWQPFNK6JG5AHS.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "6SWWQPFNK6JG5AHS", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "6SWWQPFNK6JG5AHS.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "6SWWQPFNK6JG5AHS.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15864" + }, + "appliesTo" : [ ] + }, + "6SWWQPFNK6JG5AHS.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "6SWWQPFNK6JG5AHS.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6SWWQPFNK6JG5AHS.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6SWWQPFNK6JG5AHS", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6SWWQPFNK6JG5AHS.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6SWWQPFNK6JG5AHS.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14234" + }, + "appliesTo" : [ ] + }, + "6SWWQPFNK6JG5AHS.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6SWWQPFNK6JG5AHS.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6SWWQPFNK6JG5AHS.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "6SWWQPFNK6JG5AHS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6SWWQPFNK6JG5AHS.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "6SWWQPFNK6JG5AHS.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "6SWWQPFNK6JG5AHS.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "6SWWQPFNK6JG5AHS.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13109" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6SWWQPFNK6JG5AHS.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6SWWQPFNK6JG5AHS", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6SWWQPFNK6JG5AHS.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6SWWQPFNK6JG5AHS.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33434" + }, + "appliesTo" : [ ] + }, + "6SWWQPFNK6JG5AHS.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6SWWQPFNK6JG5AHS.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6SWWQPFNK6JG5AHS.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "6SWWQPFNK6JG5AHS", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "6SWWQPFNK6JG5AHS.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "6SWWQPFNK6JG5AHS.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "6SWWQPFNK6JG5AHS.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "6SWWQPFNK6JG5AHS.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39275" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6SWWQPFNK6JG5AHS.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "6SWWQPFNK6JG5AHS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6SWWQPFNK6JG5AHS.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "6SWWQPFNK6JG5AHS.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6591" + }, + "appliesTo" : [ ] + }, + "6SWWQPFNK6JG5AHS.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "6SWWQPFNK6JG5AHS.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6SWWQPFNK6JG5AHS.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "6SWWQPFNK6JG5AHS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6SWWQPFNK6JG5AHS.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "6SWWQPFNK6JG5AHS.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "CFPKDYHZCTKMWEKC" : { + "CFPKDYHZCTKMWEKC.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "CFPKDYHZCTKMWEKC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CFPKDYHZCTKMWEKC.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "CFPKDYHZCTKMWEKC.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10616" + }, + "appliesTo" : [ ] + }, + "CFPKDYHZCTKMWEKC.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "CFPKDYHZCTKMWEKC.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CFPKDYHZCTKMWEKC.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "CFPKDYHZCTKMWEKC", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CFPKDYHZCTKMWEKC.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "CFPKDYHZCTKMWEKC.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CFPKDYHZCTKMWEKC.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "CFPKDYHZCTKMWEKC", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CFPKDYHZCTKMWEKC.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "CFPKDYHZCTKMWEKC.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5070000000" + }, + "appliesTo" : [ ] + }, + "CFPKDYHZCTKMWEKC.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "CFPKDYHZCTKMWEKC.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9913" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CFPKDYHZCTKMWEKC.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "CFPKDYHZCTKMWEKC", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CFPKDYHZCTKMWEKC.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "CFPKDYHZCTKMWEKC.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CFPKDYHZCTKMWEKC.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "CFPKDYHZCTKMWEKC", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "CFPKDYHZCTKMWEKC.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "CFPKDYHZCTKMWEKC.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "CFPKDYHZCTKMWEKC.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "CFPKDYHZCTKMWEKC.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9432" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CFPKDYHZCTKMWEKC.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "CFPKDYHZCTKMWEKC", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "CFPKDYHZCTKMWEKC.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "CFPKDYHZCTKMWEKC.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19745" + }, + "appliesTo" : [ ] + }, + "CFPKDYHZCTKMWEKC.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "CFPKDYHZCTKMWEKC.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CFPKDYHZCTKMWEKC.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "CFPKDYHZCTKMWEKC", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CFPKDYHZCTKMWEKC.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "CFPKDYHZCTKMWEKC.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22846" + }, + "appliesTo" : [ ] + }, + "CFPKDYHZCTKMWEKC.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "CFPKDYHZCTKMWEKC.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CFPKDYHZCTKMWEKC.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "CFPKDYHZCTKMWEKC", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "CFPKDYHZCTKMWEKC.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "CFPKDYHZCTKMWEKC.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6130000000" + }, + "appliesTo" : [ ] + }, + "CFPKDYHZCTKMWEKC.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "CFPKDYHZCTKMWEKC.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4231" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CFPKDYHZCTKMWEKC.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "CFPKDYHZCTKMWEKC", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CFPKDYHZCTKMWEKC.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "CFPKDYHZCTKMWEKC.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CFPKDYHZCTKMWEKC.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "CFPKDYHZCTKMWEKC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CFPKDYHZCTKMWEKC.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "CFPKDYHZCTKMWEKC.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CFPKDYHZCTKMWEKC.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "CFPKDYHZCTKMWEKC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CFPKDYHZCTKMWEKC.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "CFPKDYHZCTKMWEKC.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4836" + }, + "appliesTo" : [ ] + }, + "CFPKDYHZCTKMWEKC.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "CFPKDYHZCTKMWEKC.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CFPKDYHZCTKMWEKC.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "CFPKDYHZCTKMWEKC", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "CFPKDYHZCTKMWEKC.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "CFPKDYHZCTKMWEKC.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8686" + }, + "appliesTo" : [ ] + }, + "CFPKDYHZCTKMWEKC.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "CFPKDYHZCTKMWEKC.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "5XD4G79GQT4HJ9K2" : { + "5XD4G79GQT4HJ9K2.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "5XD4G79GQT4HJ9K2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5XD4G79GQT4HJ9K2.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "5XD4G79GQT4HJ9K2.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "5XD4G79GQT4HJ9K2.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "5XD4G79GQT4HJ9K2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5XD4G79GQT4HJ9K2.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "5XD4G79GQT4HJ9K2.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16617" + }, + "appliesTo" : [ ] + }, + "5XD4G79GQT4HJ9K2.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "5XD4G79GQT4HJ9K2.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "5XD4G79GQT4HJ9K2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "5XD4G79GQT4HJ9K2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5XD4G79GQT4HJ9K2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "5XD4G79GQT4HJ9K2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28146" + }, + "appliesTo" : [ ] + }, + "5XD4G79GQT4HJ9K2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "5XD4G79GQT4HJ9K2.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5XD4G79GQT4HJ9K2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "5XD4G79GQT4HJ9K2", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "5XD4G79GQT4HJ9K2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "5XD4G79GQT4HJ9K2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29870" + }, + "appliesTo" : [ ] + }, + "5XD4G79GQT4HJ9K2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "5XD4G79GQT4HJ9K2.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5XD4G79GQT4HJ9K2.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "5XD4G79GQT4HJ9K2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5XD4G79GQT4HJ9K2.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "5XD4G79GQT4HJ9K2.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "5XD4G79GQT4HJ9K2.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "5XD4G79GQT4HJ9K2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5XD4G79GQT4HJ9K2.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "5XD4G79GQT4HJ9K2.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34201" + }, + "appliesTo" : [ ] + }, + "5XD4G79GQT4HJ9K2.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "5XD4G79GQT4HJ9K2.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "5XD4G79GQT4HJ9K2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "5XD4G79GQT4HJ9K2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5XD4G79GQT4HJ9K2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "5XD4G79GQT4HJ9K2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "56187" + }, + "appliesTo" : [ ] + }, + "5XD4G79GQT4HJ9K2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "5XD4G79GQT4HJ9K2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5XD4G79GQT4HJ9K2.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "5XD4G79GQT4HJ9K2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5XD4G79GQT4HJ9K2.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "5XD4G79GQT4HJ9K2.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "5XD4G79GQT4HJ9K2.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "5XD4G79GQT4HJ9K2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5XD4G79GQT4HJ9K2.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "5XD4G79GQT4HJ9K2.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32514" + }, + "appliesTo" : [ ] + }, + "5XD4G79GQT4HJ9K2.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "5XD4G79GQT4HJ9K2.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "5XD4G79GQT4HJ9K2.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "5XD4G79GQT4HJ9K2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5XD4G79GQT4HJ9K2.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "5XD4G79GQT4HJ9K2.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "67038" + }, + "appliesTo" : [ ] + }, + "5XD4G79GQT4HJ9K2.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "5XD4G79GQT4HJ9K2.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "5XD4G79GQT4HJ9K2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "5XD4G79GQT4HJ9K2", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "5XD4G79GQT4HJ9K2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "5XD4G79GQT4HJ9K2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14388" + }, + "appliesTo" : [ ] + }, + "5XD4G79GQT4HJ9K2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "5XD4G79GQT4HJ9K2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5XD4G79GQT4HJ9K2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "5XD4G79GQT4HJ9K2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "5XD4G79GQT4HJ9K2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "5XD4G79GQT4HJ9K2.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "6555VGRWG4AP5HWV" : { + "6555VGRWG4AP5HWV.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "6555VGRWG4AP5HWV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6555VGRWG4AP5HWV.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "6555VGRWG4AP5HWV.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "604" + }, + "appliesTo" : [ ] + }, + "6555VGRWG4AP5HWV.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "6555VGRWG4AP5HWV.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6555VGRWG4AP5HWV.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "6555VGRWG4AP5HWV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6555VGRWG4AP5HWV.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "6555VGRWG4AP5HWV.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1097000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6555VGRWG4AP5HWV.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6555VGRWG4AP5HWV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6555VGRWG4AP5HWV.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6555VGRWG4AP5HWV.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2565" + }, + "appliesTo" : [ ] + }, + "6555VGRWG4AP5HWV.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6555VGRWG4AP5HWV.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6555VGRWG4AP5HWV.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "6555VGRWG4AP5HWV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6555VGRWG4AP5HWV.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "6555VGRWG4AP5HWV.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1032000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6555VGRWG4AP5HWV.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6555VGRWG4AP5HWV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6555VGRWG4AP5HWV.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6555VGRWG4AP5HWV.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "526" + }, + "appliesTo" : [ ] + }, + "6555VGRWG4AP5HWV.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6555VGRWG4AP5HWV.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6555VGRWG4AP5HWV.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "6555VGRWG4AP5HWV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6555VGRWG4AP5HWV.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "6555VGRWG4AP5HWV.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2762" + }, + "appliesTo" : [ ] + }, + "6555VGRWG4AP5HWV.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "6555VGRWG4AP5HWV.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6555VGRWG4AP5HWV.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "6555VGRWG4AP5HWV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6555VGRWG4AP5HWV.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "6555VGRWG4AP5HWV.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "6555VGRWG4AP5HWV.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "6555VGRWG4AP5HWV.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1108" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6555VGRWG4AP5HWV.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "6555VGRWG4AP5HWV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6555VGRWG4AP5HWV.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "6555VGRWG4AP5HWV.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0939000000" + }, + "appliesTo" : [ ] + }, + "6555VGRWG4AP5HWV.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "6555VGRWG4AP5HWV.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "297" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6555VGRWG4AP5HWV.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "6555VGRWG4AP5HWV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6555VGRWG4AP5HWV.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "6555VGRWG4AP5HWV.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1312000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6555VGRWG4AP5HWV.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6555VGRWG4AP5HWV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6555VGRWG4AP5HWV.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6555VGRWG4AP5HWV.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "6555VGRWG4AP5HWV.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6555VGRWG4AP5HWV.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1032" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6555VGRWG4AP5HWV.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6555VGRWG4AP5HWV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6555VGRWG4AP5HWV.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6555VGRWG4AP5HWV.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "258" + }, + "appliesTo" : [ ] + }, + "6555VGRWG4AP5HWV.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6555VGRWG4AP5HWV.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0895000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6555VGRWG4AP5HWV.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6555VGRWG4AP5HWV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6555VGRWG4AP5HWV.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6555VGRWG4AP5HWV.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "2NCC7B83WHP39NK5" : { + "2NCC7B83WHP39NK5.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "2NCC7B83WHP39NK5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2NCC7B83WHP39NK5.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "2NCC7B83WHP39NK5.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2NCC7B83WHP39NK5.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "2NCC7B83WHP39NK5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2NCC7B83WHP39NK5.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "2NCC7B83WHP39NK5.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2041" + }, + "appliesTo" : [ ] + }, + "2NCC7B83WHP39NK5.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "2NCC7B83WHP39NK5.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2NCC7B83WHP39NK5.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "2NCC7B83WHP39NK5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "2NCC7B83WHP39NK5.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "2NCC7B83WHP39NK5.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4594" + }, + "appliesTo" : [ ] + }, + "2NCC7B83WHP39NK5.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "2NCC7B83WHP39NK5.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2NCC7B83WHP39NK5.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "2NCC7B83WHP39NK5", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "2NCC7B83WHP39NK5.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "2NCC7B83WHP39NK5.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6226" + }, + "appliesTo" : [ ] + }, + "2NCC7B83WHP39NK5.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "2NCC7B83WHP39NK5.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2NCC7B83WHP39NK5.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "2NCC7B83WHP39NK5", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "2NCC7B83WHP39NK5.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "2NCC7B83WHP39NK5.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1900000000" + }, + "appliesTo" : [ ] + }, + "2NCC7B83WHP39NK5.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "2NCC7B83WHP39NK5.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6307" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2NCC7B83WHP39NK5.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "2NCC7B83WHP39NK5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2NCC7B83WHP39NK5.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "2NCC7B83WHP39NK5.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5139" + }, + "appliesTo" : [ ] + }, + "2NCC7B83WHP39NK5.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "2NCC7B83WHP39NK5.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2NCC7B83WHP39NK5.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "2NCC7B83WHP39NK5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "2NCC7B83WHP39NK5.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "2NCC7B83WHP39NK5.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10622" + }, + "appliesTo" : [ ] + }, + "2NCC7B83WHP39NK5.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "2NCC7B83WHP39NK5.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2NCC7B83WHP39NK5.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "2NCC7B83WHP39NK5", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "2NCC7B83WHP39NK5.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "2NCC7B83WHP39NK5.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2NCC7B83WHP39NK5.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "2NCC7B83WHP39NK5", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "2NCC7B83WHP39NK5.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "2NCC7B83WHP39NK5.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12739" + }, + "appliesTo" : [ ] + }, + "2NCC7B83WHP39NK5.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "2NCC7B83WHP39NK5.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2NCC7B83WHP39NK5.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "2NCC7B83WHP39NK5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "2NCC7B83WHP39NK5.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "2NCC7B83WHP39NK5.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2NCC7B83WHP39NK5.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "2NCC7B83WHP39NK5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "2NCC7B83WHP39NK5.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "2NCC7B83WHP39NK5.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2306" + }, + "appliesTo" : [ ] + }, + "2NCC7B83WHP39NK5.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "2NCC7B83WHP39NK5.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "KBNWDNPNYX37C8BM" : { + "KBNWDNPNYX37C8BM.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "KBNWDNPNYX37C8BM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KBNWDNPNYX37C8BM.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "KBNWDNPNYX37C8BM.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KBNWDNPNYX37C8BM.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "KBNWDNPNYX37C8BM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KBNWDNPNYX37C8BM.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "KBNWDNPNYX37C8BM.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2487" + }, + "appliesTo" : [ ] + }, + "KBNWDNPNYX37C8BM.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "KBNWDNPNYX37C8BM.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KBNWDNPNYX37C8BM.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "KBNWDNPNYX37C8BM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KBNWDNPNYX37C8BM.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "KBNWDNPNYX37C8BM.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KBNWDNPNYX37C8BM.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "KBNWDNPNYX37C8BM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KBNWDNPNYX37C8BM.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "KBNWDNPNYX37C8BM.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6465" + }, + "appliesTo" : [ ] + }, + "KBNWDNPNYX37C8BM.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "KBNWDNPNYX37C8BM.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KBNWDNPNYX37C8BM.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "KBNWDNPNYX37C8BM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KBNWDNPNYX37C8BM.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "KBNWDNPNYX37C8BM.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KBNWDNPNYX37C8BM.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "KBNWDNPNYX37C8BM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KBNWDNPNYX37C8BM.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "KBNWDNPNYX37C8BM.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3284" + }, + "appliesTo" : [ ] + }, + "KBNWDNPNYX37C8BM.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "KBNWDNPNYX37C8BM.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KBNWDNPNYX37C8BM.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "KBNWDNPNYX37C8BM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KBNWDNPNYX37C8BM.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "KBNWDNPNYX37C8BM.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6793" + }, + "appliesTo" : [ ] + }, + "KBNWDNPNYX37C8BM.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "KBNWDNPNYX37C8BM.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KBNWDNPNYX37C8BM.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "KBNWDNPNYX37C8BM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KBNWDNPNYX37C8BM.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "KBNWDNPNYX37C8BM.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3416" + }, + "appliesTo" : [ ] + }, + "KBNWDNPNYX37C8BM.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "KBNWDNPNYX37C8BM.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KBNWDNPNYX37C8BM.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "KBNWDNPNYX37C8BM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KBNWDNPNYX37C8BM.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "KBNWDNPNYX37C8BM.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2619" + }, + "appliesTo" : [ ] + }, + "KBNWDNPNYX37C8BM.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "KBNWDNPNYX37C8BM.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KBNWDNPNYX37C8BM.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "KBNWDNPNYX37C8BM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KBNWDNPNYX37C8BM.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "KBNWDNPNYX37C8BM.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1430000000" + }, + "appliesTo" : [ ] + }, + "KBNWDNPNYX37C8BM.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "KBNWDNPNYX37C8BM.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1253" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KBNWDNPNYX37C8BM.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "KBNWDNPNYX37C8BM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KBNWDNPNYX37C8BM.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "KBNWDNPNYX37C8BM.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1320" + }, + "appliesTo" : [ ] + }, + "KBNWDNPNYX37C8BM.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "KBNWDNPNYX37C8BM.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KBNWDNPNYX37C8BM.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "KBNWDNPNYX37C8BM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KBNWDNPNYX37C8BM.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "KBNWDNPNYX37C8BM.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "7WKKM2PCFQV7UGX4" : { + "7WKKM2PCFQV7UGX4.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "7WKKM2PCFQV7UGX4", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7WKKM2PCFQV7UGX4.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "7WKKM2PCFQV7UGX4.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32210" + }, + "appliesTo" : [ ] + }, + "7WKKM2PCFQV7UGX4.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "7WKKM2PCFQV7UGX4.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7WKKM2PCFQV7UGX4.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "7WKKM2PCFQV7UGX4", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7WKKM2PCFQV7UGX4.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "7WKKM2PCFQV7UGX4.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "7WKKM2PCFQV7UGX4.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "7WKKM2PCFQV7UGX4.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12406" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7WKKM2PCFQV7UGX4.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "7WKKM2PCFQV7UGX4", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7WKKM2PCFQV7UGX4.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "7WKKM2PCFQV7UGX4.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13713" + }, + "appliesTo" : [ ] + }, + "7WKKM2PCFQV7UGX4.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "7WKKM2PCFQV7UGX4.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7WKKM2PCFQV7UGX4.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "7WKKM2PCFQV7UGX4", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7WKKM2PCFQV7UGX4.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "7WKKM2PCFQV7UGX4.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8670000000" + }, + "appliesTo" : [ ] + }, + "7WKKM2PCFQV7UGX4.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "7WKKM2PCFQV7UGX4.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5067" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7WKKM2PCFQV7UGX4.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "7WKKM2PCFQV7UGX4", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7WKKM2PCFQV7UGX4.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "7WKKM2PCFQV7UGX4.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "2S47E3PRB8XVH9QV" : { + "2S47E3PRB8XVH9QV.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "2S47E3PRB8XVH9QV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "2S47E3PRB8XVH9QV.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "2S47E3PRB8XVH9QV.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1951" + }, + "appliesTo" : [ ] + }, + "2S47E3PRB8XVH9QV.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "2S47E3PRB8XVH9QV.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0742000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2S47E3PRB8XVH9QV.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "2S47E3PRB8XVH9QV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "2S47E3PRB8XVH9QV.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "2S47E3PRB8XVH9QV.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "2S47E3PRB8XVH9QV.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "2S47E3PRB8XVH9QV.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4398" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2S47E3PRB8XVH9QV.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "2S47E3PRB8XVH9QV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "2S47E3PRB8XVH9QV.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "2S47E3PRB8XVH9QV.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1844000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2S47E3PRB8XVH9QV.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "2S47E3PRB8XVH9QV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2S47E3PRB8XVH9QV.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "2S47E3PRB8XVH9QV.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1259000000" + }, + "appliesTo" : [ ] + }, + "2S47E3PRB8XVH9QV.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "2S47E3PRB8XVH9QV.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1103" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2S47E3PRB8XVH9QV.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "2S47E3PRB8XVH9QV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "2S47E3PRB8XVH9QV.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "2S47E3PRB8XVH9QV.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2S47E3PRB8XVH9QV.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "2S47E3PRB8XVH9QV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "2S47E3PRB8XVH9QV.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "2S47E3PRB8XVH9QV.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1604000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2S47E3PRB8XVH9QV.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "2S47E3PRB8XVH9QV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "2S47E3PRB8XVH9QV.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "2S47E3PRB8XVH9QV.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1095000000" + }, + "appliesTo" : [ ] + }, + "2S47E3PRB8XVH9QV.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "2S47E3PRB8XVH9QV.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "959" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2S47E3PRB8XVH9QV.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "2S47E3PRB8XVH9QV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2S47E3PRB8XVH9QV.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "2S47E3PRB8XVH9QV.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2162" + }, + "appliesTo" : [ ] + }, + "2S47E3PRB8XVH9QV.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "2S47E3PRB8XVH9QV.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2S47E3PRB8XVH9QV.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "2S47E3PRB8XVH9QV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2S47E3PRB8XVH9QV.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "2S47E3PRB8XVH9QV.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2645000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2S47E3PRB8XVH9QV.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "2S47E3PRB8XVH9QV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "2S47E3PRB8XVH9QV.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "2S47E3PRB8XVH9QV.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2244" + }, + "appliesTo" : [ ] + }, + "2S47E3PRB8XVH9QV.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "2S47E3PRB8XVH9QV.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0854000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2S47E3PRB8XVH9QV.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "2S47E3PRB8XVH9QV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "2S47E3PRB8XVH9QV.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "2S47E3PRB8XVH9QV.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3668" + }, + "appliesTo" : [ ] + }, + "2S47E3PRB8XVH9QV.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "2S47E3PRB8XVH9QV.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2S47E3PRB8XVH9QV.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "2S47E3PRB8XVH9QV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "2S47E3PRB8XVH9QV.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "2S47E3PRB8XVH9QV.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1880" + }, + "appliesTo" : [ ] + }, + "2S47E3PRB8XVH9QV.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "2S47E3PRB8XVH9QV.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "SUWG7U93QWGDKW8P" : { + "SUWG7U93QWGDKW8P.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SUWG7U93QWGDKW8P", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "SUWG7U93QWGDKW8P.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SUWG7U93QWGDKW8P.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12348" + }, + "appliesTo" : [ ] + }, + "SUWG7U93QWGDKW8P.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SUWG7U93QWGDKW8P.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SUWG7U93QWGDKW8P.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SUWG7U93QWGDKW8P", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "SUWG7U93QWGDKW8P.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SUWG7U93QWGDKW8P.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6328" + }, + "appliesTo" : [ ] + }, + "SUWG7U93QWGDKW8P.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SUWG7U93QWGDKW8P.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SUWG7U93QWGDKW8P.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "SUWG7U93QWGDKW8P", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SUWG7U93QWGDKW8P.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "SUWG7U93QWGDKW8P.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SUWG7U93QWGDKW8P.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "SUWG7U93QWGDKW8P.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14190" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SUWG7U93QWGDKW8P.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "SUWG7U93QWGDKW8P", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SUWG7U93QWGDKW8P.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "SUWG7U93QWGDKW8P.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7331000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SUWG7U93QWGDKW8P.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "SUWG7U93QWGDKW8P", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SUWG7U93QWGDKW8P.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "SUWG7U93QWGDKW8P.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0404000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SUWG7U93QWGDKW8P.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "SUWG7U93QWGDKW8P", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SUWG7U93QWGDKW8P.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "SUWG7U93QWGDKW8P.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7268" + }, + "appliesTo" : [ ] + }, + "SUWG7U93QWGDKW8P.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "SUWG7U93QWGDKW8P.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8226000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SUWG7U93QWGDKW8P.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "SUWG7U93QWGDKW8P", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SUWG7U93QWGDKW8P.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "SUWG7U93QWGDKW8P.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28321" + }, + "appliesTo" : [ ] + }, + "SUWG7U93QWGDKW8P.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "SUWG7U93QWGDKW8P.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SUWG7U93QWGDKW8P.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SUWG7U93QWGDKW8P", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "SUWG7U93QWGDKW8P.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SUWG7U93QWGDKW8P.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12656" + }, + "appliesTo" : [ ] + }, + "SUWG7U93QWGDKW8P.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SUWG7U93QWGDKW8P.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SUWG7U93QWGDKW8P.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SUWG7U93QWGDKW8P", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SUWG7U93QWGDKW8P.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SUWG7U93QWGDKW8P.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5114000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SUWG7U93QWGDKW8P.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "SUWG7U93QWGDKW8P", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SUWG7U93QWGDKW8P.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "SUWG7U93QWGDKW8P.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5494000000" + }, + "appliesTo" : [ ] + }, + "SUWG7U93QWGDKW8P.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "SUWG7U93QWGDKW8P.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14448" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SUWG7U93QWGDKW8P.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SUWG7U93QWGDKW8P", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "SUWG7U93QWGDKW8P.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SUWG7U93QWGDKW8P.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23826" + }, + "appliesTo" : [ ] + }, + "SUWG7U93QWGDKW8P.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SUWG7U93QWGDKW8P.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SUWG7U93QWGDKW8P.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "SUWG7U93QWGDKW8P", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SUWG7U93QWGDKW8P.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "SUWG7U93QWGDKW8P.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1915000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "CZ9BHU45SGEFD4MA" : { + "CZ9BHU45SGEFD4MA.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "CZ9BHU45SGEFD4MA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CZ9BHU45SGEFD4MA.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "CZ9BHU45SGEFD4MA.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "41998" + }, + "appliesTo" : [ ] + }, + "CZ9BHU45SGEFD4MA.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "CZ9BHU45SGEFD4MA.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CZ9BHU45SGEFD4MA.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "CZ9BHU45SGEFD4MA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CZ9BHU45SGEFD4MA.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "CZ9BHU45SGEFD4MA.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.2238000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CZ9BHU45SGEFD4MA.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "CZ9BHU45SGEFD4MA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CZ9BHU45SGEFD4MA.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "CZ9BHU45SGEFD4MA.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "CZ9BHU45SGEFD4MA.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "CZ9BHU45SGEFD4MA.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "102904" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CZ9BHU45SGEFD4MA.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "CZ9BHU45SGEFD4MA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CZ9BHU45SGEFD4MA.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "CZ9BHU45SGEFD4MA.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "58026" + }, + "appliesTo" : [ ] + }, + "CZ9BHU45SGEFD4MA.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "CZ9BHU45SGEFD4MA.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CZ9BHU45SGEFD4MA.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "CZ9BHU45SGEFD4MA", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "CZ9BHU45SGEFD4MA.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "CZ9BHU45SGEFD4MA.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0830000000" + }, + "appliesTo" : [ ] + }, + "CZ9BHU45SGEFD4MA.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "CZ9BHU45SGEFD4MA.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "54736" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CZ9BHU45SGEFD4MA.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "CZ9BHU45SGEFD4MA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CZ9BHU45SGEFD4MA.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "CZ9BHU45SGEFD4MA.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "115279" + }, + "appliesTo" : [ ] + }, + "CZ9BHU45SGEFD4MA.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "CZ9BHU45SGEFD4MA.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CZ9BHU45SGEFD4MA.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "CZ9BHU45SGEFD4MA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CZ9BHU45SGEFD4MA.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "CZ9BHU45SGEFD4MA.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5576000000" + }, + "appliesTo" : [ ] + }, + "CZ9BHU45SGEFD4MA.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "CZ9BHU45SGEFD4MA.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22405" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CZ9BHU45SGEFD4MA.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "CZ9BHU45SGEFD4MA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CZ9BHU45SGEFD4MA.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "CZ9BHU45SGEFD4MA.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5338000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CZ9BHU45SGEFD4MA.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "CZ9BHU45SGEFD4MA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CZ9BHU45SGEFD4MA.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "CZ9BHU45SGEFD4MA.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "44429" + }, + "appliesTo" : [ ] + }, + "CZ9BHU45SGEFD4MA.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "CZ9BHU45SGEFD4MA.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CZ9BHU45SGEFD4MA.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "CZ9BHU45SGEFD4MA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CZ9BHU45SGEFD4MA.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "CZ9BHU45SGEFD4MA.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.3264000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CZ9BHU45SGEFD4MA.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "CZ9BHU45SGEFD4MA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CZ9BHU45SGEFD4MA.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "CZ9BHU45SGEFD4MA.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9264000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CZ9BHU45SGEFD4MA.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "CZ9BHU45SGEFD4MA", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CZ9BHU45SGEFD4MA.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "CZ9BHU45SGEFD4MA.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21164" + }, + "appliesTo" : [ ] + }, + "CZ9BHU45SGEFD4MA.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "CZ9BHU45SGEFD4MA.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "H4ERZSZPBES3WKPY" : { + "H4ERZSZPBES3WKPY.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "H4ERZSZPBES3WKPY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "H4ERZSZPBES3WKPY.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "H4ERZSZPBES3WKPY.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17347" + }, + "appliesTo" : [ ] + }, + "H4ERZSZPBES3WKPY.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "H4ERZSZPBES3WKPY.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "H4ERZSZPBES3WKPY.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "H4ERZSZPBES3WKPY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "H4ERZSZPBES3WKPY.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "H4ERZSZPBES3WKPY.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8269" + }, + "appliesTo" : [ ] + }, + "H4ERZSZPBES3WKPY.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "H4ERZSZPBES3WKPY.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "H4ERZSZPBES3WKPY.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "H4ERZSZPBES3WKPY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "H4ERZSZPBES3WKPY.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "H4ERZSZPBES3WKPY.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19342" + }, + "appliesTo" : [ ] + }, + "H4ERZSZPBES3WKPY.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "H4ERZSZPBES3WKPY.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "H4ERZSZPBES3WKPY.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "H4ERZSZPBES3WKPY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H4ERZSZPBES3WKPY.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "H4ERZSZPBES3WKPY.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4098000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "H4ERZSZPBES3WKPY.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "H4ERZSZPBES3WKPY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "H4ERZSZPBES3WKPY.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "H4ERZSZPBES3WKPY.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16819" + }, + "appliesTo" : [ ] + }, + "H4ERZSZPBES3WKPY.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "H4ERZSZPBES3WKPY.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "H4ERZSZPBES3WKPY.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "H4ERZSZPBES3WKPY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H4ERZSZPBES3WKPY.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "H4ERZSZPBES3WKPY.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9510" + }, + "appliesTo" : [ ] + }, + "H4ERZSZPBES3WKPY.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "H4ERZSZPBES3WKPY.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2156000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "H4ERZSZPBES3WKPY.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "H4ERZSZPBES3WKPY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "H4ERZSZPBES3WKPY.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "H4ERZSZPBES3WKPY.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "H4ERZSZPBES3WKPY.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "H4ERZSZPBES3WKPY.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "41327" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "H4ERZSZPBES3WKPY.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "H4ERZSZPBES3WKPY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "H4ERZSZPBES3WKPY.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "H4ERZSZPBES3WKPY.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35036" + }, + "appliesTo" : [ ] + }, + "H4ERZSZPBES3WKPY.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "H4ERZSZPBES3WKPY.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "H4ERZSZPBES3WKPY.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "H4ERZSZPBES3WKPY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "H4ERZSZPBES3WKPY.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "H4ERZSZPBES3WKPY.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5124000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "H4ERZSZPBES3WKPY.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "H4ERZSZPBES3WKPY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "H4ERZSZPBES3WKPY.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "H4ERZSZPBES3WKPY.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7198000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "H4ERZSZPBES3WKPY.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "H4ERZSZPBES3WKPY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "H4ERZSZPBES3WKPY.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "H4ERZSZPBES3WKPY.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19778" + }, + "appliesTo" : [ ] + }, + "H4ERZSZPBES3WKPY.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "H4ERZSZPBES3WKPY.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "H4ERZSZPBES3WKPY.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "H4ERZSZPBES3WKPY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "H4ERZSZPBES3WKPY.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "H4ERZSZPBES3WKPY.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1124000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "ZWRX2ZR95V6ZB42V" : { + "ZWRX2ZR95V6ZB42V.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ZWRX2ZR95V6ZB42V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZWRX2ZR95V6ZB42V.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ZWRX2ZR95V6ZB42V.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6720000000" + }, + "appliesTo" : [ ] + }, + "ZWRX2ZR95V6ZB42V.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ZWRX2ZR95V6ZB42V.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32163" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZWRX2ZR95V6ZB42V.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ZWRX2ZR95V6ZB42V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZWRX2ZR95V6ZB42V.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ZWRX2ZR95V6ZB42V.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.2900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZWRX2ZR95V6ZB42V.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ZWRX2ZR95V6ZB42V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZWRX2ZR95V6ZB42V.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ZWRX2ZR95V6ZB42V.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "187708" + }, + "appliesTo" : [ ] + }, + "ZWRX2ZR95V6ZB42V.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ZWRX2ZR95V6ZB42V.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZWRX2ZR95V6ZB42V.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ZWRX2ZR95V6ZB42V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZWRX2ZR95V6ZB42V.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ZWRX2ZR95V6ZB42V.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "93963" + }, + "appliesTo" : [ ] + }, + "ZWRX2ZR95V6ZB42V.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ZWRX2ZR95V6ZB42V.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZWRX2ZR95V6ZB42V.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ZWRX2ZR95V6ZB42V", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "ZWRX2ZR95V6ZB42V.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ZWRX2ZR95V6ZB42V.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5500000000" + }, + "appliesTo" : [ ] + }, + "ZWRX2ZR95V6ZB42V.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ZWRX2ZR95V6ZB42V.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "93283" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZWRX2ZR95V6ZB42V.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ZWRX2ZR95V6ZB42V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZWRX2ZR95V6ZB42V.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ZWRX2ZR95V6ZB42V.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZWRX2ZR95V6ZB42V.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ZWRX2ZR95V6ZB42V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZWRX2ZR95V6ZB42V.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ZWRX2ZR95V6ZB42V.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31962" + }, + "appliesTo" : [ ] + }, + "ZWRX2ZR95V6ZB42V.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ZWRX2ZR95V6ZB42V.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZWRX2ZR95V6ZB42V.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ZWRX2ZR95V6ZB42V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZWRX2ZR95V6ZB42V.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ZWRX2ZR95V6ZB42V.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "64220" + }, + "appliesTo" : [ ] + }, + "ZWRX2ZR95V6ZB42V.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ZWRX2ZR95V6ZB42V.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZWRX2ZR95V6ZB42V.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ZWRX2ZR95V6ZB42V", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "ZWRX2ZR95V6ZB42V.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ZWRX2ZR95V6ZB42V.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ZWRX2ZR95V6ZB42V.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ZWRX2ZR95V6ZB42V.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "185993" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZWRX2ZR95V6ZB42V.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "ZWRX2ZR95V6ZB42V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZWRX2ZR95V6ZB42V.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "ZWRX2ZR95V6ZB42V.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.1260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZWRX2ZR95V6ZB42V.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ZWRX2ZR95V6ZB42V", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "ZWRX2ZR95V6ZB42V.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ZWRX2ZR95V6ZB42V.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ZWRX2ZR95V6ZB42V.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ZWRX2ZR95V6ZB42V.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "63826" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZWRX2ZR95V6ZB42V.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ZWRX2ZR95V6ZB42V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZWRX2ZR95V6ZB42V.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ZWRX2ZR95V6ZB42V.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.1840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "DX44AJZKPEUWHF3H" : { + "DX44AJZKPEUWHF3H.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "DX44AJZKPEUWHF3H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DX44AJZKPEUWHF3H.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "DX44AJZKPEUWHF3H.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6876" + }, + "appliesTo" : [ ] + }, + "DX44AJZKPEUWHF3H.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "DX44AJZKPEUWHF3H.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DX44AJZKPEUWHF3H.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "DX44AJZKPEUWHF3H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DX44AJZKPEUWHF3H.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "DX44AJZKPEUWHF3H.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DX44AJZKPEUWHF3H.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "DX44AJZKPEUWHF3H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DX44AJZKPEUWHF3H.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "DX44AJZKPEUWHF3H.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12958" + }, + "appliesTo" : [ ] + }, + "DX44AJZKPEUWHF3H.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "DX44AJZKPEUWHF3H.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DX44AJZKPEUWHF3H.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "DX44AJZKPEUWHF3H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DX44AJZKPEUWHF3H.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "DX44AJZKPEUWHF3H.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15398" + }, + "appliesTo" : [ ] + }, + "DX44AJZKPEUWHF3H.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "DX44AJZKPEUWHF3H.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DX44AJZKPEUWHF3H.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "DX44AJZKPEUWHF3H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DX44AJZKPEUWHF3H.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "DX44AJZKPEUWHF3H.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9955" + }, + "appliesTo" : [ ] + }, + "DX44AJZKPEUWHF3H.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "DX44AJZKPEUWHF3H.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DX44AJZKPEUWHF3H.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "DX44AJZKPEUWHF3H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DX44AJZKPEUWHF3H.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "DX44AJZKPEUWHF3H.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DX44AJZKPEUWHF3H.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "DX44AJZKPEUWHF3H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DX44AJZKPEUWHF3H.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "DX44AJZKPEUWHF3H.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DX44AJZKPEUWHF3H.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "DX44AJZKPEUWHF3H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DX44AJZKPEUWHF3H.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "DX44AJZKPEUWHF3H.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4464" + }, + "appliesTo" : [ ] + }, + "DX44AJZKPEUWHF3H.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "DX44AJZKPEUWHF3H.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DX44AJZKPEUWHF3H.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "DX44AJZKPEUWHF3H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DX44AJZKPEUWHF3H.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "DX44AJZKPEUWHF3H.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8694" + }, + "appliesTo" : [ ] + }, + "DX44AJZKPEUWHF3H.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "DX44AJZKPEUWHF3H.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DX44AJZKPEUWHF3H.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "DX44AJZKPEUWHF3H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DX44AJZKPEUWHF3H.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "DX44AJZKPEUWHF3H.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DX44AJZKPEUWHF3H.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "DX44AJZKPEUWHF3H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DX44AJZKPEUWHF3H.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "DX44AJZKPEUWHF3H.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2980000000" + }, + "appliesTo" : [ ] + }, + "DX44AJZKPEUWHF3H.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "DX44AJZKPEUWHF3H.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7854" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DX44AJZKPEUWHF3H.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "DX44AJZKPEUWHF3H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DX44AJZKPEUWHF3H.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "DX44AJZKPEUWHF3H.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5107" + }, + "appliesTo" : [ ] + }, + "DX44AJZKPEUWHF3H.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "DX44AJZKPEUWHF3H.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "FN8H3W6RA9EGGSDT" : { + "FN8H3W6RA9EGGSDT.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "FN8H3W6RA9EGGSDT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FN8H3W6RA9EGGSDT.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "FN8H3W6RA9EGGSDT.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3860" + }, + "appliesTo" : [ ] + }, + "FN8H3W6RA9EGGSDT.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "FN8H3W6RA9EGGSDT.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FN8H3W6RA9EGGSDT.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "FN8H3W6RA9EGGSDT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FN8H3W6RA9EGGSDT.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "FN8H3W6RA9EGGSDT.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4385" + }, + "appliesTo" : [ ] + }, + "FN8H3W6RA9EGGSDT.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "FN8H3W6RA9EGGSDT.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FN8H3W6RA9EGGSDT.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "FN8H3W6RA9EGGSDT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FN8H3W6RA9EGGSDT.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "FN8H3W6RA9EGGSDT.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4530" + }, + "appliesTo" : [ ] + }, + "FN8H3W6RA9EGGSDT.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "FN8H3W6RA9EGGSDT.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FN8H3W6RA9EGGSDT.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "FN8H3W6RA9EGGSDT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FN8H3W6RA9EGGSDT.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "FN8H3W6RA9EGGSDT.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1966" + }, + "appliesTo" : [ ] + }, + "FN8H3W6RA9EGGSDT.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "FN8H3W6RA9EGGSDT.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FN8H3W6RA9EGGSDT.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "FN8H3W6RA9EGGSDT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FN8H3W6RA9EGGSDT.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "FN8H3W6RA9EGGSDT.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7590" + }, + "appliesTo" : [ ] + }, + "FN8H3W6RA9EGGSDT.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "FN8H3W6RA9EGGSDT.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FN8H3W6RA9EGGSDT.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "FN8H3W6RA9EGGSDT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FN8H3W6RA9EGGSDT.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "FN8H3W6RA9EGGSDT.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FN8H3W6RA9EGGSDT.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "FN8H3W6RA9EGGSDT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FN8H3W6RA9EGGSDT.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "FN8H3W6RA9EGGSDT.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2234" + }, + "appliesTo" : [ ] + }, + "FN8H3W6RA9EGGSDT.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "FN8H3W6RA9EGGSDT.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FN8H3W6RA9EGGSDT.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "FN8H3W6RA9EGGSDT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FN8H3W6RA9EGGSDT.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "FN8H3W6RA9EGGSDT.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FN8H3W6RA9EGGSDT.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "FN8H3W6RA9EGGSDT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FN8H3W6RA9EGGSDT.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "FN8H3W6RA9EGGSDT.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1520000000" + }, + "appliesTo" : [ ] + }, + "FN8H3W6RA9EGGSDT.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "FN8H3W6RA9EGGSDT.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4003" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FN8H3W6RA9EGGSDT.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "FN8H3W6RA9EGGSDT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FN8H3W6RA9EGGSDT.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "FN8H3W6RA9EGGSDT.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8901" + }, + "appliesTo" : [ ] + }, + "FN8H3W6RA9EGGSDT.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "FN8H3W6RA9EGGSDT.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FN8H3W6RA9EGGSDT.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "FN8H3W6RA9EGGSDT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FN8H3W6RA9EGGSDT.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "FN8H3W6RA9EGGSDT.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FN8H3W6RA9EGGSDT.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "FN8H3W6RA9EGGSDT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FN8H3W6RA9EGGSDT.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "FN8H3W6RA9EGGSDT.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "YAJW34A4DJF7KS9G" : { + "YAJW34A4DJF7KS9G.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YAJW34A4DJF7KS9G", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YAJW34A4DJF7KS9G.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YAJW34A4DJF7KS9G.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5443" + }, + "appliesTo" : [ ] + }, + "YAJW34A4DJF7KS9G.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YAJW34A4DJF7KS9G.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YAJW34A4DJF7KS9G.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "YAJW34A4DJF7KS9G", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "YAJW34A4DJF7KS9G.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "YAJW34A4DJF7KS9G.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YAJW34A4DJF7KS9G.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "YAJW34A4DJF7KS9G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YAJW34A4DJF7KS9G.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "YAJW34A4DJF7KS9G.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3114" + }, + "appliesTo" : [ ] + }, + "YAJW34A4DJF7KS9G.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "YAJW34A4DJF7KS9G.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YAJW34A4DJF7KS9G.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YAJW34A4DJF7KS9G", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "YAJW34A4DJF7KS9G.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YAJW34A4DJF7KS9G.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YAJW34A4DJF7KS9G.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YAJW34A4DJF7KS9G", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YAJW34A4DJF7KS9G.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YAJW34A4DJF7KS9G.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3940000000" + }, + "appliesTo" : [ ] + }, + "YAJW34A4DJF7KS9G.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YAJW34A4DJF7KS9G.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2299" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YAJW34A4DJF7KS9G.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "YAJW34A4DJF7KS9G", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "YAJW34A4DJF7KS9G.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "YAJW34A4DJF7KS9G.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15971" + }, + "appliesTo" : [ ] + }, + "YAJW34A4DJF7KS9G.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "YAJW34A4DJF7KS9G.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YAJW34A4DJF7KS9G.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "YAJW34A4DJF7KS9G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YAJW34A4DJF7KS9G.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "YAJW34A4DJF7KS9G.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6154" + }, + "appliesTo" : [ ] + }, + "YAJW34A4DJF7KS9G.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "YAJW34A4DJF7KS9G.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YAJW34A4DJF7KS9G.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "YAJW34A4DJF7KS9G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YAJW34A4DJF7KS9G.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "YAJW34A4DJF7KS9G.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YAJW34A4DJF7KS9G.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "YAJW34A4DJF7KS9G", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YAJW34A4DJF7KS9G.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "YAJW34A4DJF7KS9G.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6351" + }, + "appliesTo" : [ ] + }, + "YAJW34A4DJF7KS9G.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "YAJW34A4DJF7KS9G.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YAJW34A4DJF7KS9G.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YAJW34A4DJF7KS9G", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YAJW34A4DJF7KS9G.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YAJW34A4DJF7KS9G.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12799" + }, + "appliesTo" : [ ] + }, + "YAJW34A4DJF7KS9G.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YAJW34A4DJF7KS9G.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YAJW34A4DJF7KS9G.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YAJW34A4DJF7KS9G", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YAJW34A4DJF7KS9G.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YAJW34A4DJF7KS9G.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YAJW34A4DJF7KS9G.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YAJW34A4DJF7KS9G.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5635" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "24EZ2DK36FZ2REKT" : { + "24EZ2DK36FZ2REKT.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "24EZ2DK36FZ2REKT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "24EZ2DK36FZ2REKT.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "24EZ2DK36FZ2REKT.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "24EZ2DK36FZ2REKT.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "24EZ2DK36FZ2REKT.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "379160" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "24EZ2DK36FZ2REKT.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "24EZ2DK36FZ2REKT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "24EZ2DK36FZ2REKT.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "24EZ2DK36FZ2REKT.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "189836" + }, + "appliesTo" : [ ] + }, + "24EZ2DK36FZ2REKT.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "24EZ2DK36FZ2REKT.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.2236000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "24EZ2DK36FZ2REKT.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "24EZ2DK36FZ2REKT", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "24EZ2DK36FZ2REKT.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "24EZ2DK36FZ2REKT.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "188207" + }, + "appliesTo" : [ ] + }, + "24EZ2DK36FZ2REKT.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "24EZ2DK36FZ2REKT.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.1620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "24EZ2DK36FZ2REKT.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "24EZ2DK36FZ2REKT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "24EZ2DK36FZ2REKT.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "24EZ2DK36FZ2REKT.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.5252000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "24EZ2DK36FZ2REKT.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "24EZ2DK36FZ2REKT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "24EZ2DK36FZ2REKT.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "24EZ2DK36FZ2REKT.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "65455" + }, + "appliesTo" : [ ] + }, + "24EZ2DK36FZ2REKT.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "24EZ2DK36FZ2REKT.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "24EZ2DK36FZ2REKT.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "24EZ2DK36FZ2REKT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "24EZ2DK36FZ2REKT.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "24EZ2DK36FZ2REKT.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.8160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "24EZ2DK36FZ2REKT.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "24EZ2DK36FZ2REKT", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "24EZ2DK36FZ2REKT.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "24EZ2DK36FZ2REKT.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "64600" + }, + "appliesTo" : [ ] + }, + "24EZ2DK36FZ2REKT.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "24EZ2DK36FZ2REKT.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "24EZ2DK36FZ2REKT.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "24EZ2DK36FZ2REKT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "24EZ2DK36FZ2REKT.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "24EZ2DK36FZ2REKT.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.0176000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "24EZ2DK36FZ2REKT.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "24EZ2DK36FZ2REKT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "24EZ2DK36FZ2REKT.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "24EZ2DK36FZ2REKT.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "24EZ2DK36FZ2REKT.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "24EZ2DK36FZ2REKT.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "130651" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "24EZ2DK36FZ2REKT.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "24EZ2DK36FZ2REKT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "24EZ2DK36FZ2REKT.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "24EZ2DK36FZ2REKT.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.3878000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "24EZ2DK36FZ2REKT.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "24EZ2DK36FZ2REKT", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "24EZ2DK36FZ2REKT.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "24EZ2DK36FZ2REKT.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "375072" + }, + "appliesTo" : [ ] + }, + "24EZ2DK36FZ2REKT.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "24EZ2DK36FZ2REKT.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "24EZ2DK36FZ2REKT.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "24EZ2DK36FZ2REKT", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "24EZ2DK36FZ2REKT.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "24EZ2DK36FZ2REKT.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "128976" + }, + "appliesTo" : [ ] + }, + "24EZ2DK36FZ2REKT.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "24EZ2DK36FZ2REKT.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "WHSMTPG2EQZT7C6G" : { + "WHSMTPG2EQZT7C6G.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "WHSMTPG2EQZT7C6G", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "WHSMTPG2EQZT7C6G.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "WHSMTPG2EQZT7C6G.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16601" + }, + "appliesTo" : [ ] + }, + "WHSMTPG2EQZT7C6G.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "WHSMTPG2EQZT7C6G.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WHSMTPG2EQZT7C6G.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "WHSMTPG2EQZT7C6G", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "WHSMTPG2EQZT7C6G.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "WHSMTPG2EQZT7C6G.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4469" + }, + "appliesTo" : [ ] + }, + "WHSMTPG2EQZT7C6G.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "WHSMTPG2EQZT7C6G.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WHSMTPG2EQZT7C6G.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "WHSMTPG2EQZT7C6G", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "WHSMTPG2EQZT7C6G.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "WHSMTPG2EQZT7C6G.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "WHSMTPG2EQZT7C6G.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "WHSMTPG2EQZT7C6G", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "WHSMTPG2EQZT7C6G.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "WHSMTPG2EQZT7C6G.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7746" + }, + "appliesTo" : [ ] + }, + "WHSMTPG2EQZT7C6G.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "WHSMTPG2EQZT7C6G.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WHSMTPG2EQZT7C6G.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "WHSMTPG2EQZT7C6G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WHSMTPG2EQZT7C6G.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "WHSMTPG2EQZT7C6G.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2801" + }, + "appliesTo" : [ ] + }, + "WHSMTPG2EQZT7C6G.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "WHSMTPG2EQZT7C6G.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WHSMTPG2EQZT7C6G.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "WHSMTPG2EQZT7C6G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WHSMTPG2EQZT7C6G.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "WHSMTPG2EQZT7C6G.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WHSMTPG2EQZT7C6G.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "WHSMTPG2EQZT7C6G", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "WHSMTPG2EQZT7C6G.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "WHSMTPG2EQZT7C6G.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "WHSMTPG2EQZT7C6G.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "WHSMTPG2EQZT7C6G.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6012" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WHSMTPG2EQZT7C6G.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "WHSMTPG2EQZT7C6G", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "WHSMTPG2EQZT7C6G.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "WHSMTPG2EQZT7C6G.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2869" + }, + "appliesTo" : [ ] + }, + "WHSMTPG2EQZT7C6G.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "WHSMTPG2EQZT7C6G.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WHSMTPG2EQZT7C6G.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "WHSMTPG2EQZT7C6G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WHSMTPG2EQZT7C6G.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "WHSMTPG2EQZT7C6G.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6630" + }, + "appliesTo" : [ ] + }, + "WHSMTPG2EQZT7C6G.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "WHSMTPG2EQZT7C6G.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WHSMTPG2EQZT7C6G.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "WHSMTPG2EQZT7C6G", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "WHSMTPG2EQZT7C6G.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "WHSMTPG2EQZT7C6G.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WHSMTPG2EQZT7C6G.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "WHSMTPG2EQZT7C6G", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "WHSMTPG2EQZT7C6G.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "WHSMTPG2EQZT7C6G.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12624" + }, + "appliesTo" : [ ] + }, + "WHSMTPG2EQZT7C6G.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "WHSMTPG2EQZT7C6G.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "QW4FHUGEZYB74TW8" : { + "QW4FHUGEZYB74TW8.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "QW4FHUGEZYB74TW8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QW4FHUGEZYB74TW8.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "QW4FHUGEZYB74TW8.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QW4FHUGEZYB74TW8.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QW4FHUGEZYB74TW8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QW4FHUGEZYB74TW8.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QW4FHUGEZYB74TW8.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3467" + }, + "appliesTo" : [ ] + }, + "QW4FHUGEZYB74TW8.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QW4FHUGEZYB74TW8.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QW4FHUGEZYB74TW8.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QW4FHUGEZYB74TW8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QW4FHUGEZYB74TW8.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QW4FHUGEZYB74TW8.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6518" + }, + "appliesTo" : [ ] + }, + "QW4FHUGEZYB74TW8.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QW4FHUGEZYB74TW8.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QW4FHUGEZYB74TW8.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "QW4FHUGEZYB74TW8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QW4FHUGEZYB74TW8.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "QW4FHUGEZYB74TW8.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1520000000" + }, + "appliesTo" : [ ] + }, + "QW4FHUGEZYB74TW8.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "QW4FHUGEZYB74TW8.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3994" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QW4FHUGEZYB74TW8.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QW4FHUGEZYB74TW8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QW4FHUGEZYB74TW8.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QW4FHUGEZYB74TW8.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3503" + }, + "appliesTo" : [ ] + }, + "QW4FHUGEZYB74TW8.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QW4FHUGEZYB74TW8.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QW4FHUGEZYB74TW8.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "QW4FHUGEZYB74TW8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QW4FHUGEZYB74TW8.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "QW4FHUGEZYB74TW8.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2055" + }, + "appliesTo" : [ ] + }, + "QW4FHUGEZYB74TW8.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "QW4FHUGEZYB74TW8.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QW4FHUGEZYB74TW8.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QW4FHUGEZYB74TW8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QW4FHUGEZYB74TW8.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QW4FHUGEZYB74TW8.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QW4FHUGEZYB74TW8.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "QW4FHUGEZYB74TW8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QW4FHUGEZYB74TW8.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "QW4FHUGEZYB74TW8.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QW4FHUGEZYB74TW8.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "QW4FHUGEZYB74TW8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QW4FHUGEZYB74TW8.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "QW4FHUGEZYB74TW8.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7828" + }, + "appliesTo" : [ ] + }, + "QW4FHUGEZYB74TW8.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "QW4FHUGEZYB74TW8.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QW4FHUGEZYB74TW8.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QW4FHUGEZYB74TW8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QW4FHUGEZYB74TW8.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QW4FHUGEZYB74TW8.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1787" + }, + "appliesTo" : [ ] + }, + "QW4FHUGEZYB74TW8.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QW4FHUGEZYB74TW8.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QW4FHUGEZYB74TW8.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "QW4FHUGEZYB74TW8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QW4FHUGEZYB74TW8.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "QW4FHUGEZYB74TW8.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QW4FHUGEZYB74TW8.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "QW4FHUGEZYB74TW8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QW4FHUGEZYB74TW8.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "QW4FHUGEZYB74TW8.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4028" + }, + "appliesTo" : [ ] + }, + "QW4FHUGEZYB74TW8.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "QW4FHUGEZYB74TW8.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "YVR4R7XCGTF5BWVS" : { + "YVR4R7XCGTF5BWVS.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YVR4R7XCGTF5BWVS", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YVR4R7XCGTF5BWVS.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YVR4R7XCGTF5BWVS.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YVR4R7XCGTF5BWVS.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YVR4R7XCGTF5BWVS.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13953" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YVR4R7XCGTF5BWVS.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YVR4R7XCGTF5BWVS", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YVR4R7XCGTF5BWVS.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YVR4R7XCGTF5BWVS.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YVR4R7XCGTF5BWVS.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YVR4R7XCGTF5BWVS", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YVR4R7XCGTF5BWVS.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YVR4R7XCGTF5BWVS.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2188" + }, + "appliesTo" : [ ] + }, + "YVR4R7XCGTF5BWVS.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YVR4R7XCGTF5BWVS.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YVR4R7XCGTF5BWVS.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YVR4R7XCGTF5BWVS", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YVR4R7XCGTF5BWVS.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YVR4R7XCGTF5BWVS.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YVR4R7XCGTF5BWVS.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YVR4R7XCGTF5BWVS.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5364" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YVR4R7XCGTF5BWVS.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YVR4R7XCGTF5BWVS", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "YVR4R7XCGTF5BWVS.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YVR4R7XCGTF5BWVS.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3390000000" + }, + "appliesTo" : [ ] + }, + "YVR4R7XCGTF5BWVS.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YVR4R7XCGTF5BWVS.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5940" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "DN4D2SAMCUHNKK2B" : { + "DN4D2SAMCUHNKK2B.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "DN4D2SAMCUHNKK2B", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "DN4D2SAMCUHNKK2B.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "DN4D2SAMCUHNKK2B.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DN4D2SAMCUHNKK2B.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "DN4D2SAMCUHNKK2B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DN4D2SAMCUHNKK2B.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "DN4D2SAMCUHNKK2B.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6836" + }, + "appliesTo" : [ ] + }, + "DN4D2SAMCUHNKK2B.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "DN4D2SAMCUHNKK2B.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7804000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DN4D2SAMCUHNKK2B.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "DN4D2SAMCUHNKK2B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DN4D2SAMCUHNKK2B.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "DN4D2SAMCUHNKK2B.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5879000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DN4D2SAMCUHNKK2B.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "DN4D2SAMCUHNKK2B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DN4D2SAMCUHNKK2B.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "DN4D2SAMCUHNKK2B.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13578" + }, + "appliesTo" : [ ] + }, + "DN4D2SAMCUHNKK2B.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "DN4D2SAMCUHNKK2B.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DN4D2SAMCUHNKK2B.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "DN4D2SAMCUHNKK2B", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DN4D2SAMCUHNKK2B.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "DN4D2SAMCUHNKK2B.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28942" + }, + "appliesTo" : [ ] + }, + "DN4D2SAMCUHNKK2B.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "DN4D2SAMCUHNKK2B.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DN4D2SAMCUHNKK2B.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "DN4D2SAMCUHNKK2B", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DN4D2SAMCUHNKK2B.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "DN4D2SAMCUHNKK2B.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DN4D2SAMCUHNKK2B.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "DN4D2SAMCUHNKK2B", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "DN4D2SAMCUHNKK2B.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "DN4D2SAMCUHNKK2B.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5168" + }, + "appliesTo" : [ ] + }, + "DN4D2SAMCUHNKK2B.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "DN4D2SAMCUHNKK2B.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DN4D2SAMCUHNKK2B.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "DN4D2SAMCUHNKK2B", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DN4D2SAMCUHNKK2B.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "DN4D2SAMCUHNKK2B.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DN4D2SAMCUHNKK2B.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "DN4D2SAMCUHNKK2B", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "DN4D2SAMCUHNKK2B.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "DN4D2SAMCUHNKK2B.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14765" + }, + "appliesTo" : [ ] + }, + "DN4D2SAMCUHNKK2B.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "DN4D2SAMCUHNKK2B.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DN4D2SAMCUHNKK2B.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "DN4D2SAMCUHNKK2B", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "DN4D2SAMCUHNKK2B.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "DN4D2SAMCUHNKK2B.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12982" + }, + "appliesTo" : [ ] + }, + "DN4D2SAMCUHNKK2B.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "DN4D2SAMCUHNKK2B.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DN4D2SAMCUHNKK2B.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "DN4D2SAMCUHNKK2B", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DN4D2SAMCUHNKK2B.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "DN4D2SAMCUHNKK2B.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "DN4D2SAMCUHNKK2B.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "DN4D2SAMCUHNKK2B.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24406" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DN4D2SAMCUHNKK2B.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "DN4D2SAMCUHNKK2B", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DN4D2SAMCUHNKK2B.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "DN4D2SAMCUHNKK2B.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "DN4D2SAMCUHNKK2B.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "DN4D2SAMCUHNKK2B.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10130" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "PH8HDZXB5PCGB9JY" : { + "PH8HDZXB5PCGB9JY.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "PH8HDZXB5PCGB9JY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PH8HDZXB5PCGB9JY.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "PH8HDZXB5PCGB9JY.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11024" + }, + "appliesTo" : [ ] + }, + "PH8HDZXB5PCGB9JY.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "PH8HDZXB5PCGB9JY.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PH8HDZXB5PCGB9JY.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "PH8HDZXB5PCGB9JY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PH8HDZXB5PCGB9JY.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "PH8HDZXB5PCGB9JY.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "PH8HDZXB5PCGB9JY.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "PH8HDZXB5PCGB9JY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PH8HDZXB5PCGB9JY.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "PH8HDZXB5PCGB9JY.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5590000000" + }, + "appliesTo" : [ ] + }, + "PH8HDZXB5PCGB9JY.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "PH8HDZXB5PCGB9JY.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14704" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PH8HDZXB5PCGB9JY.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "PH8HDZXB5PCGB9JY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PH8HDZXB5PCGB9JY.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "PH8HDZXB5PCGB9JY.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33044" + }, + "appliesTo" : [ ] + }, + "PH8HDZXB5PCGB9JY.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "PH8HDZXB5PCGB9JY.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PH8HDZXB5PCGB9JY.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "PH8HDZXB5PCGB9JY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PH8HDZXB5PCGB9JY.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "PH8HDZXB5PCGB9JY.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16857" + }, + "appliesTo" : [ ] + }, + "PH8HDZXB5PCGB9JY.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "PH8HDZXB5PCGB9JY.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PH8HDZXB5PCGB9JY.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "PH8HDZXB5PCGB9JY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PH8HDZXB5PCGB9JY.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "PH8HDZXB5PCGB9JY.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "PH8HDZXB5PCGB9JY.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "PH8HDZXB5PCGB9JY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PH8HDZXB5PCGB9JY.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "PH8HDZXB5PCGB9JY.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "PH8HDZXB5PCGB9JY.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "PH8HDZXB5PCGB9JY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PH8HDZXB5PCGB9JY.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "PH8HDZXB5PCGB9JY.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9609" + }, + "appliesTo" : [ ] + }, + "PH8HDZXB5PCGB9JY.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "PH8HDZXB5PCGB9JY.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PH8HDZXB5PCGB9JY.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "PH8HDZXB5PCGB9JY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PH8HDZXB5PCGB9JY.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "PH8HDZXB5PCGB9JY.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21552" + }, + "appliesTo" : [ ] + }, + "PH8HDZXB5PCGB9JY.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "PH8HDZXB5PCGB9JY.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PH8HDZXB5PCGB9JY.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "PH8HDZXB5PCGB9JY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PH8HDZXB5PCGB9JY.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "PH8HDZXB5PCGB9JY.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18779" + }, + "appliesTo" : [ ] + }, + "PH8HDZXB5PCGB9JY.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "PH8HDZXB5PCGB9JY.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PH8HDZXB5PCGB9JY.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "PH8HDZXB5PCGB9JY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PH8HDZXB5PCGB9JY.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "PH8HDZXB5PCGB9JY.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27676" + }, + "appliesTo" : [ ] + }, + "PH8HDZXB5PCGB9JY.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "PH8HDZXB5PCGB9JY.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PH8HDZXB5PCGB9JY.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "PH8HDZXB5PCGB9JY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PH8HDZXB5PCGB9JY.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "PH8HDZXB5PCGB9JY.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "M585C29WB3HB866B" : { + "M585C29WB3HB866B.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "M585C29WB3HB866B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M585C29WB3HB866B.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "M585C29WB3HB866B.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0920000000" + }, + "appliesTo" : [ ] + }, + "M585C29WB3HB866B.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "M585C29WB3HB866B.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28704" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "M585C29WB3HB866B.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "M585C29WB3HB866B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M585C29WB3HB866B.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "M585C29WB3HB866B.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "M585C29WB3HB866B.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "M585C29WB3HB866B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M585C29WB3HB866B.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "M585C29WB3HB866B.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33010" + }, + "appliesTo" : [ ] + }, + "M585C29WB3HB866B.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "M585C29WB3HB866B.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "M585C29WB3HB866B.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "M585C29WB3HB866B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M585C29WB3HB866B.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "M585C29WB3HB866B.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "42524" + }, + "appliesTo" : [ ] + }, + "M585C29WB3HB866B.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "M585C29WB3HB866B.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "M585C29WB3HB866B.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "M585C29WB3HB866B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M585C29WB3HB866B.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "M585C29WB3HB866B.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "M585C29WB3HB866B.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "M585C29WB3HB866B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M585C29WB3HB866B.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "M585C29WB3HB866B.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "M585C29WB3HB866B.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "M585C29WB3HB866B.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "53964" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "M585C29WB3HB866B.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "M585C29WB3HB866B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M585C29WB3HB866B.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "M585C29WB3HB866B.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "64699" + }, + "appliesTo" : [ ] + }, + "M585C29WB3HB866B.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "M585C29WB3HB866B.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "M585C29WB3HB866B.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "M585C29WB3HB866B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M585C29WB3HB866B.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "M585C29WB3HB866B.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "M585C29WB3HB866B.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "M585C29WB3HB866B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M585C29WB3HB866B.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "M585C29WB3HB866B.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18866" + }, + "appliesTo" : [ ] + }, + "M585C29WB3HB866B.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "M585C29WB3HB866B.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "M585C29WB3HB866B.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "M585C29WB3HB866B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M585C29WB3HB866B.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "M585C29WB3HB866B.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "36978" + }, + "appliesTo" : [ ] + }, + "M585C29WB3HB866B.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "M585C29WB3HB866B.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "M585C29WB3HB866B.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "M585C29WB3HB866B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M585C29WB3HB866B.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "M585C29WB3HB866B.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4770000000" + }, + "appliesTo" : [ ] + }, + "M585C29WB3HB866B.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "M585C29WB3HB866B.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21696" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "M585C29WB3HB866B.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "M585C29WB3HB866B", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M585C29WB3HB866B.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "M585C29WB3HB866B.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.2010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "CR9BJ8YMV2HGWRBH" : { + "CR9BJ8YMV2HGWRBH.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "CR9BJ8YMV2HGWRBH", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "CR9BJ8YMV2HGWRBH.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "CR9BJ8YMV2HGWRBH.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2740" + }, + "appliesTo" : [ ] + }, + "CR9BJ8YMV2HGWRBH.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "CR9BJ8YMV2HGWRBH.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CR9BJ8YMV2HGWRBH.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "CR9BJ8YMV2HGWRBH", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "CR9BJ8YMV2HGWRBH.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "CR9BJ8YMV2HGWRBH.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1600000000" + }, + "appliesTo" : [ ] + }, + "CR9BJ8YMV2HGWRBH.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "CR9BJ8YMV2HGWRBH.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1398" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CR9BJ8YMV2HGWRBH.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "CR9BJ8YMV2HGWRBH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CR9BJ8YMV2HGWRBH.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "CR9BJ8YMV2HGWRBH.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2633000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CR9BJ8YMV2HGWRBH.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "CR9BJ8YMV2HGWRBH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CR9BJ8YMV2HGWRBH.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "CR9BJ8YMV2HGWRBH.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3204" + }, + "appliesTo" : [ ] + }, + "CR9BJ8YMV2HGWRBH.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "CR9BJ8YMV2HGWRBH.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1219000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CR9BJ8YMV2HGWRBH.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "CR9BJ8YMV2HGWRBH", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "CR9BJ8YMV2HGWRBH.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "CR9BJ8YMV2HGWRBH.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5257" + }, + "appliesTo" : [ ] + }, + "CR9BJ8YMV2HGWRBH.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "CR9BJ8YMV2HGWRBH.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CR9BJ8YMV2HGWRBH.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "CR9BJ8YMV2HGWRBH", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "CR9BJ8YMV2HGWRBH.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "CR9BJ8YMV2HGWRBH.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2796" + }, + "appliesTo" : [ ] + }, + "CR9BJ8YMV2HGWRBH.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "CR9BJ8YMV2HGWRBH.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CR9BJ8YMV2HGWRBH.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "CR9BJ8YMV2HGWRBH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CR9BJ8YMV2HGWRBH.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "CR9BJ8YMV2HGWRBH.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CR9BJ8YMV2HGWRBH.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "CR9BJ8YMV2HGWRBH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CR9BJ8YMV2HGWRBH.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "CR9BJ8YMV2HGWRBH.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3864000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CR9BJ8YMV2HGWRBH.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "CR9BJ8YMV2HGWRBH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CR9BJ8YMV2HGWRBH.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "CR9BJ8YMV2HGWRBH.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3159" + }, + "appliesTo" : [ ] + }, + "CR9BJ8YMV2HGWRBH.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "CR9BJ8YMV2HGWRBH.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CR9BJ8YMV2HGWRBH.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "CR9BJ8YMV2HGWRBH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CR9BJ8YMV2HGWRBH.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "CR9BJ8YMV2HGWRBH.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1840000000" + }, + "appliesTo" : [ ] + }, + "CR9BJ8YMV2HGWRBH.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "CR9BJ8YMV2HGWRBH.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1612" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CR9BJ8YMV2HGWRBH.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "CR9BJ8YMV2HGWRBH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CR9BJ8YMV2HGWRBH.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "CR9BJ8YMV2HGWRBH.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "CR9BJ8YMV2HGWRBH.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "CR9BJ8YMV2HGWRBH.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6279" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CR9BJ8YMV2HGWRBH.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "CR9BJ8YMV2HGWRBH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CR9BJ8YMV2HGWRBH.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "CR9BJ8YMV2HGWRBH.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "R785FVDGR7QSRRKB" : { + "R785FVDGR7QSRRKB.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "R785FVDGR7QSRRKB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R785FVDGR7QSRRKB.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "R785FVDGR7QSRRKB.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "142244" + }, + "appliesTo" : [ ] + }, + "R785FVDGR7QSRRKB.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "R785FVDGR7QSRRKB.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "R785FVDGR7QSRRKB.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "R785FVDGR7QSRRKB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "R785FVDGR7QSRRKB.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "R785FVDGR7QSRRKB.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "209063" + }, + "appliesTo" : [ ] + }, + "R785FVDGR7QSRRKB.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "R785FVDGR7QSRRKB.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.9550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "R785FVDGR7QSRRKB.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "R785FVDGR7QSRRKB", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "R785FVDGR7QSRRKB.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "R785FVDGR7QSRRKB.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "70846" + }, + "appliesTo" : [ ] + }, + "R785FVDGR7QSRRKB.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "R785FVDGR7QSRRKB.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.0870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "R785FVDGR7QSRRKB.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "R785FVDGR7QSRRKB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "R785FVDGR7QSRRKB.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "R785FVDGR7QSRRKB.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "417729" + }, + "appliesTo" : [ ] + }, + "R785FVDGR7QSRRKB.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "R785FVDGR7QSRRKB.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "R785FVDGR7QSRRKB.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "R785FVDGR7QSRRKB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "R785FVDGR7QSRRKB.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "R785FVDGR7QSRRKB.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.8640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "R785FVDGR7QSRRKB.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "R785FVDGR7QSRRKB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R785FVDGR7QSRRKB.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "R785FVDGR7QSRRKB.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.1300000000" + }, + "appliesTo" : [ ] + }, + "R785FVDGR7QSRRKB.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "R785FVDGR7QSRRKB.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "71219" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "R785FVDGR7QSRRKB.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "R785FVDGR7QSRRKB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "R785FVDGR7QSRRKB.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "R785FVDGR7QSRRKB.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.1640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "R785FVDGR7QSRRKB.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "R785FVDGR7QSRRKB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R785FVDGR7QSRRKB.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "R785FVDGR7QSRRKB.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.3150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "R785FVDGR7QSRRKB.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "R785FVDGR7QSRRKB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "R785FVDGR7QSRRKB.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "R785FVDGR7QSRRKB.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.9080000000" + }, + "appliesTo" : [ ] + }, + "R785FVDGR7QSRRKB.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "R785FVDGR7QSRRKB.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "207835" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "R785FVDGR7QSRRKB.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "R785FVDGR7QSRRKB", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "R785FVDGR7QSRRKB.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "R785FVDGR7QSRRKB.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "R785FVDGR7QSRRKB.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "R785FVDGR7QSRRKB.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "414628" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "R785FVDGR7QSRRKB.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "R785FVDGR7QSRRKB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "R785FVDGR7QSRRKB.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "R785FVDGR7QSRRKB.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.9710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "R785FVDGR7QSRRKB.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "R785FVDGR7QSRRKB", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "R785FVDGR7QSRRKB.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "R785FVDGR7QSRRKB.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "R785FVDGR7QSRRKB.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "R785FVDGR7QSRRKB.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "141514" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "B29HW84ZHNQH6MAR" : { + "B29HW84ZHNQH6MAR.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "B29HW84ZHNQH6MAR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "B29HW84ZHNQH6MAR.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "B29HW84ZHNQH6MAR.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "146669" + }, + "appliesTo" : [ ] + }, + "B29HW84ZHNQH6MAR.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "B29HW84ZHNQH6MAR.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "B29HW84ZHNQH6MAR.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "B29HW84ZHNQH6MAR", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "B29HW84ZHNQH6MAR.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "B29HW84ZHNQH6MAR.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "71727" + }, + "appliesTo" : [ ] + }, + "B29HW84ZHNQH6MAR.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "B29HW84ZHNQH6MAR.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.1880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "B29HW84ZHNQH6MAR.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "B29HW84ZHNQH6MAR", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "B29HW84ZHNQH6MAR.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "B29HW84ZHNQH6MAR.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "421358" + }, + "appliesTo" : [ ] + }, + "B29HW84ZHNQH6MAR.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "B29HW84ZHNQH6MAR.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "B29HW84ZHNQH6MAR.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "B29HW84ZHNQH6MAR", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "B29HW84ZHNQH6MAR.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "B29HW84ZHNQH6MAR.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.8700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "B29HW84ZHNQH6MAR.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "B29HW84ZHNQH6MAR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "B29HW84ZHNQH6MAR.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "B29HW84ZHNQH6MAR.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "73627" + }, + "appliesTo" : [ ] + }, + "B29HW84ZHNQH6MAR.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "B29HW84ZHNQH6MAR.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.4050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "B29HW84ZHNQH6MAR.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "B29HW84ZHNQH6MAR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "B29HW84ZHNQH6MAR.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "B29HW84ZHNQH6MAR.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.9770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "B29HW84ZHNQH6MAR.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "B29HW84ZHNQH6MAR", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "B29HW84ZHNQH6MAR.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "B29HW84ZHNQH6MAR.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.5300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "B29HW84ZHNQH6MAR.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "B29HW84ZHNQH6MAR", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "B29HW84ZHNQH6MAR.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "B29HW84ZHNQH6MAR.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "211366" + }, + "appliesTo" : [ ] + }, + "B29HW84ZHNQH6MAR.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "B29HW84ZHNQH6MAR.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.0430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "B29HW84ZHNQH6MAR.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "B29HW84ZHNQH6MAR", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "B29HW84ZHNQH6MAR.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "B29HW84ZHNQH6MAR.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.6350000000" + }, + "appliesTo" : [ ] + }, + "B29HW84ZHNQH6MAR.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "B29HW84ZHNQH6MAR.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "200649" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "B29HW84ZHNQH6MAR.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "B29HW84ZHNQH6MAR", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "B29HW84ZHNQH6MAR.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "B29HW84ZHNQH6MAR.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "142946" + }, + "appliesTo" : [ ] + }, + "B29HW84ZHNQH6MAR.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "B29HW84ZHNQH6MAR.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "B29HW84ZHNQH6MAR.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "B29HW84ZHNQH6MAR", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "B29HW84ZHNQH6MAR.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "B29HW84ZHNQH6MAR.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "B29HW84ZHNQH6MAR.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "B29HW84ZHNQH6MAR.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "398463" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "SCK4YS7YAEFFVGNK" : { + "SCK4YS7YAEFFVGNK.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "SCK4YS7YAEFFVGNK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SCK4YS7YAEFFVGNK.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "SCK4YS7YAEFFVGNK.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "56043" + }, + "appliesTo" : [ ] + }, + "SCK4YS7YAEFFVGNK.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "SCK4YS7YAEFFVGNK.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.3976000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SCK4YS7YAEFFVGNK.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "SCK4YS7YAEFFVGNK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SCK4YS7YAEFFVGNK.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "SCK4YS7YAEFFVGNK.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.9038000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SCK4YS7YAEFFVGNK.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "SCK4YS7YAEFFVGNK", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "SCK4YS7YAEFFVGNK.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "SCK4YS7YAEFFVGNK.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.0064000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SCK4YS7YAEFFVGNK.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "SCK4YS7YAEFFVGNK", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "SCK4YS7YAEFFVGNK.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "SCK4YS7YAEFFVGNK.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "317109" + }, + "appliesTo" : [ ] + }, + "SCK4YS7YAEFFVGNK.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "SCK4YS7YAEFFVGNK.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SCK4YS7YAEFFVGNK.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SCK4YS7YAEFFVGNK", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "SCK4YS7YAEFFVGNK.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SCK4YS7YAEFFVGNK.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.6064000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SCK4YS7YAEFFVGNK.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "SCK4YS7YAEFFVGNK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SCK4YS7YAEFFVGNK.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "SCK4YS7YAEFFVGNK.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "111706" + }, + "appliesTo" : [ ] + }, + "SCK4YS7YAEFFVGNK.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "SCK4YS7YAEFFVGNK.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SCK4YS7YAEFFVGNK.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SCK4YS7YAEFFVGNK", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "SCK4YS7YAEFFVGNK.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SCK4YS7YAEFFVGNK.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.2560000000" + }, + "appliesTo" : [ ] + }, + "SCK4YS7YAEFFVGNK.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SCK4YS7YAEFFVGNK.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "54803" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SCK4YS7YAEFFVGNK.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SCK4YS7YAEFFVGNK", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "SCK4YS7YAEFFVGNK.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SCK4YS7YAEFFVGNK.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SCK4YS7YAEFFVGNK.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SCK4YS7YAEFFVGNK.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "109274" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SCK4YS7YAEFFVGNK.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "SCK4YS7YAEFFVGNK", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "SCK4YS7YAEFFVGNK.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "SCK4YS7YAEFFVGNK.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.2138000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SCK4YS7YAEFFVGNK.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "SCK4YS7YAEFFVGNK", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "SCK4YS7YAEFFVGNK.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "SCK4YS7YAEFFVGNK.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "158941" + }, + "appliesTo" : [ ] + }, + "SCK4YS7YAEFFVGNK.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "SCK4YS7YAEFFVGNK.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.0480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SCK4YS7YAEFFVGNK.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SCK4YS7YAEFFVGNK", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "SCK4YS7YAEFFVGNK.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SCK4YS7YAEFFVGNK.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SCK4YS7YAEFFVGNK.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SCK4YS7YAEFFVGNK.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "306635" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SCK4YS7YAEFFVGNK.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SCK4YS7YAEFFVGNK", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "SCK4YS7YAEFFVGNK.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SCK4YS7YAEFFVGNK.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.9520000000" + }, + "appliesTo" : [ ] + }, + "SCK4YS7YAEFFVGNK.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SCK4YS7YAEFFVGNK.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "156419" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "FYP43BRDNQ66J7E7" : { + "FYP43BRDNQ66J7E7.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "FYP43BRDNQ66J7E7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FYP43BRDNQ66J7E7.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "FYP43BRDNQ66J7E7.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "62.1070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FYP43BRDNQ66J7E7.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "FYP43BRDNQ66J7E7", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "FYP43BRDNQ66J7E7.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "FYP43BRDNQ66J7E7.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "760254" + }, + "appliesTo" : [ ] + }, + "FYP43BRDNQ66J7E7.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "FYP43BRDNQ66J7E7.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "28.9290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FYP43BRDNQ66J7E7.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "FYP43BRDNQ66J7E7", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "FYP43BRDNQ66J7E7.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "FYP43BRDNQ66J7E7.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1514248" + }, + "appliesTo" : [ ] + }, + "FYP43BRDNQ66J7E7.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "FYP43BRDNQ66J7E7.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FYP43BRDNQ66J7E7.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "FYP43BRDNQ66J7E7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FYP43BRDNQ66J7E7.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "FYP43BRDNQ66J7E7.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "58.8190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FYP43BRDNQ66J7E7.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "FYP43BRDNQ66J7E7", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "FYP43BRDNQ66J7E7.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "FYP43BRDNQ66J7E7.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "FYP43BRDNQ66J7E7.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "FYP43BRDNQ66J7E7.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "539261" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FYP43BRDNQ66J7E7.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "FYP43BRDNQ66J7E7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FYP43BRDNQ66J7E7.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "FYP43BRDNQ66J7E7.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "549340" + }, + "appliesTo" : [ ] + }, + "FYP43BRDNQ66J7E7.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "FYP43BRDNQ66J7E7.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FYP43BRDNQ66J7E7.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "FYP43BRDNQ66J7E7", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "FYP43BRDNQ66J7E7.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "FYP43BRDNQ66J7E7.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "30.8580000000" + }, + "appliesTo" : [ ] + }, + "FYP43BRDNQ66J7E7.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "FYP43BRDNQ66J7E7.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "270316" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FYP43BRDNQ66J7E7.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "FYP43BRDNQ66J7E7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FYP43BRDNQ66J7E7.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "FYP43BRDNQ66J7E7.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "768079" + }, + "appliesTo" : [ ] + }, + "FYP43BRDNQ66J7E7.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "FYP43BRDNQ66J7E7.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "29.2270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FYP43BRDNQ66J7E7.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "FYP43BRDNQ66J7E7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FYP43BRDNQ66J7E7.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "FYP43BRDNQ66J7E7.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "58.1760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FYP43BRDNQ66J7E7.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "FYP43BRDNQ66J7E7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FYP43BRDNQ66J7E7.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "FYP43BRDNQ66J7E7.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1533757" + }, + "appliesTo" : [ ] + }, + "FYP43BRDNQ66J7E7.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "FYP43BRDNQ66J7E7.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FYP43BRDNQ66J7E7.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "FYP43BRDNQ66J7E7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FYP43BRDNQ66J7E7.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "FYP43BRDNQ66J7E7.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "63.3400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FYP43BRDNQ66J7E7.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "FYP43BRDNQ66J7E7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FYP43BRDNQ66J7E7.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "FYP43BRDNQ66J7E7.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "275459" + }, + "appliesTo" : [ ] + }, + "FYP43BRDNQ66J7E7.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "FYP43BRDNQ66J7E7.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "31.4450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "8QJEY5Y228R67A3N" : { + "8QJEY5Y228R67A3N.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "8QJEY5Y228R67A3N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8QJEY5Y228R67A3N.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "8QJEY5Y228R67A3N.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8QJEY5Y228R67A3N.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "8QJEY5Y228R67A3N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8QJEY5Y228R67A3N.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "8QJEY5Y228R67A3N.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17960" + }, + "appliesTo" : [ ] + }, + "8QJEY5Y228R67A3N.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "8QJEY5Y228R67A3N.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8QJEY5Y228R67A3N.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "8QJEY5Y228R67A3N", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8QJEY5Y228R67A3N.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "8QJEY5Y228R67A3N.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "89995" + }, + "appliesTo" : [ ] + }, + "8QJEY5Y228R67A3N.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "8QJEY5Y228R67A3N.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8QJEY5Y228R67A3N.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "8QJEY5Y228R67A3N", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8QJEY5Y228R67A3N.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "8QJEY5Y228R67A3N.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8QJEY5Y228R67A3N.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "8QJEY5Y228R67A3N", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8QJEY5Y228R67A3N.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "8QJEY5Y228R67A3N.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35559" + }, + "appliesTo" : [ ] + }, + "8QJEY5Y228R67A3N.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "8QJEY5Y228R67A3N.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8QJEY5Y228R67A3N.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "8QJEY5Y228R67A3N", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8QJEY5Y228R67A3N.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "8QJEY5Y228R67A3N.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8QJEY5Y228R67A3N.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "8QJEY5Y228R67A3N", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "8QJEY5Y228R67A3N.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "8QJEY5Y228R67A3N.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9100000000" + }, + "appliesTo" : [ ] + }, + "8QJEY5Y228R67A3N.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "8QJEY5Y228R67A3N.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16734" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8QJEY5Y228R67A3N.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "8QJEY5Y228R67A3N", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "8QJEY5Y228R67A3N.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "8QJEY5Y228R67A3N.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33156" + }, + "appliesTo" : [ ] + }, + "8QJEY5Y228R67A3N.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "8QJEY5Y228R67A3N.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8QJEY5Y228R67A3N.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "8QJEY5Y228R67A3N", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8QJEY5Y228R67A3N.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "8QJEY5Y228R67A3N.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8QJEY5Y228R67A3N.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "8QJEY5Y228R67A3N", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "8QJEY5Y228R67A3N.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "8QJEY5Y228R67A3N.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "84027" + }, + "appliesTo" : [ ] + }, + "8QJEY5Y228R67A3N.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "8QJEY5Y228R67A3N.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8QJEY5Y228R67A3N.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "8QJEY5Y228R67A3N", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8QJEY5Y228R67A3N.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "8QJEY5Y228R67A3N.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "45370" + }, + "appliesTo" : [ ] + }, + "8QJEY5Y228R67A3N.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "8QJEY5Y228R67A3N.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8QJEY5Y228R67A3N.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "8QJEY5Y228R67A3N", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "8QJEY5Y228R67A3N.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "8QJEY5Y228R67A3N.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "42988" + }, + "appliesTo" : [ ] + }, + "8QJEY5Y228R67A3N.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "8QJEY5Y228R67A3N.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "HUCWZ5CCHQU7EEQU" : { + "HUCWZ5CCHQU7EEQU.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "HUCWZ5CCHQU7EEQU", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "HUCWZ5CCHQU7EEQU.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "HUCWZ5CCHQU7EEQU.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.0770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "HUCWZ5CCHQU7EEQU.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "HUCWZ5CCHQU7EEQU", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "HUCWZ5CCHQU7EEQU.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "HUCWZ5CCHQU7EEQU.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "114975" + }, + "appliesTo" : [ ] + }, + "HUCWZ5CCHQU7EEQU.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "HUCWZ5CCHQU7EEQU.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HUCWZ5CCHQU7EEQU.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "HUCWZ5CCHQU7EEQU", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "HUCWZ5CCHQU7EEQU.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "HUCWZ5CCHQU7EEQU.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "55037" + }, + "appliesTo" : [ ] + }, + "HUCWZ5CCHQU7EEQU.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "HUCWZ5CCHQU7EEQU.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HUCWZ5CCHQU7EEQU.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "HUCWZ5CCHQU7EEQU", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "HUCWZ5CCHQU7EEQU.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "HUCWZ5CCHQU7EEQU.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "44592" + }, + "appliesTo" : [ ] + }, + "HUCWZ5CCHQU7EEQU.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "HUCWZ5CCHQU7EEQU.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HUCWZ5CCHQU7EEQU.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "HUCWZ5CCHQU7EEQU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "HUCWZ5CCHQU7EEQU.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "HUCWZ5CCHQU7EEQU.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25967" + }, + "appliesTo" : [ ] + }, + "HUCWZ5CCHQU7EEQU.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "HUCWZ5CCHQU7EEQU.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), cr1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "W22DG9FACE6C38MS" : { + "W22DG9FACE6C38MS.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "W22DG9FACE6C38MS", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "W22DG9FACE6C38MS.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "W22DG9FACE6C38MS.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "W22DG9FACE6C38MS.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "W22DG9FACE6C38MS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "W22DG9FACE6C38MS.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "W22DG9FACE6C38MS.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4505" + }, + "appliesTo" : [ ] + }, + "W22DG9FACE6C38MS.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "W22DG9FACE6C38MS.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "W22DG9FACE6C38MS.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "W22DG9FACE6C38MS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "W22DG9FACE6C38MS.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "W22DG9FACE6C38MS.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1561000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "W22DG9FACE6C38MS.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "W22DG9FACE6C38MS", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "W22DG9FACE6C38MS.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "W22DG9FACE6C38MS.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0910000000" + }, + "appliesTo" : [ ] + }, + "W22DG9FACE6C38MS.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "W22DG9FACE6C38MS.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "800" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "W22DG9FACE6C38MS.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "W22DG9FACE6C38MS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W22DG9FACE6C38MS.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "W22DG9FACE6C38MS.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2069" + }, + "appliesTo" : [ ] + }, + "W22DG9FACE6C38MS.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "W22DG9FACE6C38MS.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "W22DG9FACE6C38MS.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "W22DG9FACE6C38MS", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "W22DG9FACE6C38MS.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "W22DG9FACE6C38MS.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "W22DG9FACE6C38MS.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "W22DG9FACE6C38MS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W22DG9FACE6C38MS.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "W22DG9FACE6C38MS.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1041" + }, + "appliesTo" : [ ] + }, + "W22DG9FACE6C38MS.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "W22DG9FACE6C38MS.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1188000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "W22DG9FACE6C38MS.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "W22DG9FACE6C38MS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W22DG9FACE6C38MS.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "W22DG9FACE6C38MS.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2414000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "W22DG9FACE6C38MS.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "W22DG9FACE6C38MS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "W22DG9FACE6C38MS.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "W22DG9FACE6C38MS.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3858" + }, + "appliesTo" : [ ] + }, + "W22DG9FACE6C38MS.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "W22DG9FACE6C38MS.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "W22DG9FACE6C38MS.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "W22DG9FACE6C38MS", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "W22DG9FACE6C38MS.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "W22DG9FACE6C38MS.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1568" + }, + "appliesTo" : [ ] + }, + "W22DG9FACE6C38MS.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "W22DG9FACE6C38MS.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "W22DG9FACE6C38MS.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "W22DG9FACE6C38MS", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "W22DG9FACE6C38MS.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "W22DG9FACE6C38MS.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2052" + }, + "appliesTo" : [ ] + }, + "W22DG9FACE6C38MS.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "W22DG9FACE6C38MS.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "W22DG9FACE6C38MS.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "W22DG9FACE6C38MS", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "W22DG9FACE6C38MS.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "W22DG9FACE6C38MS.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2299" + }, + "appliesTo" : [ ] + }, + "W22DG9FACE6C38MS.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "W22DG9FACE6C38MS.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "7YAZRK59RPPWSKMN" : { + "7YAZRK59RPPWSKMN.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "7YAZRK59RPPWSKMN", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7YAZRK59RPPWSKMN.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "7YAZRK59RPPWSKMN.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1238" + }, + "appliesTo" : [ ] + }, + "7YAZRK59RPPWSKMN.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "7YAZRK59RPPWSKMN.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7YAZRK59RPPWSKMN.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "7YAZRK59RPPWSKMN", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7YAZRK59RPPWSKMN.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "7YAZRK59RPPWSKMN.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7YAZRK59RPPWSKMN.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "7YAZRK59RPPWSKMN", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7YAZRK59RPPWSKMN.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "7YAZRK59RPPWSKMN.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "795" + }, + "appliesTo" : [ ] + }, + "7YAZRK59RPPWSKMN.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "7YAZRK59RPPWSKMN.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7YAZRK59RPPWSKMN.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "7YAZRK59RPPWSKMN", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7YAZRK59RPPWSKMN.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "7YAZRK59RPPWSKMN.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1826" + }, + "appliesTo" : [ ] + }, + "7YAZRK59RPPWSKMN.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "7YAZRK59RPPWSKMN.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7YAZRK59RPPWSKMN.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "7YAZRK59RPPWSKMN", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "7YAZRK59RPPWSKMN.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "7YAZRK59RPPWSKMN.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3930" + }, + "appliesTo" : [ ] + }, + "7YAZRK59RPPWSKMN.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "7YAZRK59RPPWSKMN.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "VNX2EXRCP445NC9K" : { + "VNX2EXRCP445NC9K.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "VNX2EXRCP445NC9K", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VNX2EXRCP445NC9K.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "VNX2EXRCP445NC9K.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VNX2EXRCP445NC9K.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "VNX2EXRCP445NC9K", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VNX2EXRCP445NC9K.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "VNX2EXRCP445NC9K.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7990000000" + }, + "appliesTo" : [ ] + }, + "VNX2EXRCP445NC9K.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "VNX2EXRCP445NC9K.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14619" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VNX2EXRCP445NC9K.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "VNX2EXRCP445NC9K", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "VNX2EXRCP445NC9K.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "VNX2EXRCP445NC9K.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14560" + }, + "appliesTo" : [ ] + }, + "VNX2EXRCP445NC9K.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "VNX2EXRCP445NC9K.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VNX2EXRCP445NC9K.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "VNX2EXRCP445NC9K", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "VNX2EXRCP445NC9K.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "VNX2EXRCP445NC9K.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VNX2EXRCP445NC9K.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "VNX2EXRCP445NC9K", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "VNX2EXRCP445NC9K.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "VNX2EXRCP445NC9K.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39312" + }, + "appliesTo" : [ ] + }, + "VNX2EXRCP445NC9K.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "VNX2EXRCP445NC9K.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VNX2EXRCP445NC9K.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "VNX2EXRCP445NC9K", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "VNX2EXRCP445NC9K.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "VNX2EXRCP445NC9K.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VNX2EXRCP445NC9K.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "VNX2EXRCP445NC9K", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "VNX2EXRCP445NC9K.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "VNX2EXRCP445NC9K.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "VNX2EXRCP445NC9K.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "VNX2EXRCP445NC9K.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "45900" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VNX2EXRCP445NC9K.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "VNX2EXRCP445NC9K", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VNX2EXRCP445NC9K.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "VNX2EXRCP445NC9K.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29793" + }, + "appliesTo" : [ ] + }, + "VNX2EXRCP445NC9K.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "VNX2EXRCP445NC9K.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VNX2EXRCP445NC9K.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "VNX2EXRCP445NC9K", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "VNX2EXRCP445NC9K.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "VNX2EXRCP445NC9K.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "68859" + }, + "appliesTo" : [ ] + }, + "VNX2EXRCP445NC9K.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "VNX2EXRCP445NC9K.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VNX2EXRCP445NC9K.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "VNX2EXRCP445NC9K", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "VNX2EXRCP445NC9K.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "VNX2EXRCP445NC9K.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25446" + }, + "appliesTo" : [ ] + }, + "VNX2EXRCP445NC9K.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "VNX2EXRCP445NC9K.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VNX2EXRCP445NC9K.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "VNX2EXRCP445NC9K", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "VNX2EXRCP445NC9K.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "VNX2EXRCP445NC9K.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0240000000" + }, + "appliesTo" : [ ] + }, + "VNX2EXRCP445NC9K.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "VNX2EXRCP445NC9K.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21920" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "VQ9NZ966GW3FJN84" : { + "VQ9NZ966GW3FJN84.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "VQ9NZ966GW3FJN84", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VQ9NZ966GW3FJN84.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "VQ9NZ966GW3FJN84.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "63999" + }, + "appliesTo" : [ ] + }, + "VQ9NZ966GW3FJN84.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "VQ9NZ966GW3FJN84.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VQ9NZ966GW3FJN84.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "VQ9NZ966GW3FJN84", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "VQ9NZ966GW3FJN84.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "VQ9NZ966GW3FJN84.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "94503" + }, + "appliesTo" : [ ] + }, + "VQ9NZ966GW3FJN84.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "VQ9NZ966GW3FJN84.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VQ9NZ966GW3FJN84.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "VQ9NZ966GW3FJN84", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "VQ9NZ966GW3FJN84.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "VQ9NZ966GW3FJN84.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.2700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VQ9NZ966GW3FJN84.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "VQ9NZ966GW3FJN84", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "VQ9NZ966GW3FJN84.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "VQ9NZ966GW3FJN84.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "188767" + }, + "appliesTo" : [ ] + }, + "VQ9NZ966GW3FJN84.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "VQ9NZ966GW3FJN84.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VQ9NZ966GW3FJN84.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "VQ9NZ966GW3FJN84", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "VQ9NZ966GW3FJN84.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "VQ9NZ966GW3FJN84.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "63357" + }, + "appliesTo" : [ ] + }, + "VQ9NZ966GW3FJN84.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "VQ9NZ966GW3FJN84.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VQ9NZ966GW3FJN84.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "VQ9NZ966GW3FJN84", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "VQ9NZ966GW3FJN84.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "VQ9NZ966GW3FJN84.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "185288" + }, + "appliesTo" : [ ] + }, + "VQ9NZ966GW3FJN84.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "VQ9NZ966GW3FJN84.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VQ9NZ966GW3FJN84.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "VQ9NZ966GW3FJN84", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "VQ9NZ966GW3FJN84.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "VQ9NZ966GW3FJN84.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "92908" + }, + "appliesTo" : [ ] + }, + "VQ9NZ966GW3FJN84.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "VQ9NZ966GW3FJN84.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VQ9NZ966GW3FJN84.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "VQ9NZ966GW3FJN84", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VQ9NZ966GW3FJN84.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "VQ9NZ966GW3FJN84.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VQ9NZ966GW3FJN84.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "VQ9NZ966GW3FJN84", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VQ9NZ966GW3FJN84.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "VQ9NZ966GW3FJN84.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32050" + }, + "appliesTo" : [ ] + }, + "VQ9NZ966GW3FJN84.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "VQ9NZ966GW3FJN84.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VQ9NZ966GW3FJN84.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "VQ9NZ966GW3FJN84", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "VQ9NZ966GW3FJN84.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "VQ9NZ966GW3FJN84.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VQ9NZ966GW3FJN84.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "VQ9NZ966GW3FJN84", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "VQ9NZ966GW3FJN84.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "VQ9NZ966GW3FJN84.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31723" + }, + "appliesTo" : [ ] + }, + "VQ9NZ966GW3FJN84.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "VQ9NZ966GW3FJN84.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "D6YAK3JVF2VWSDJ9" : { + "D6YAK3JVF2VWSDJ9.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "D6YAK3JVF2VWSDJ9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "D6YAK3JVF2VWSDJ9.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "D6YAK3JVF2VWSDJ9.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "D6YAK3JVF2VWSDJ9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "D6YAK3JVF2VWSDJ9", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "D6YAK3JVF2VWSDJ9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "D6YAK3JVF2VWSDJ9.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "D6YAK3JVF2VWSDJ9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "D6YAK3JVF2VWSDJ9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "D6YAK3JVF2VWSDJ9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "D6YAK3JVF2VWSDJ9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "477" + }, + "appliesTo" : [ ] + }, + "D6YAK3JVF2VWSDJ9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "D6YAK3JVF2VWSDJ9.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "D6YAK3JVF2VWSDJ9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "D6YAK3JVF2VWSDJ9", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "D6YAK3JVF2VWSDJ9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "D6YAK3JVF2VWSDJ9.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "D6YAK3JVF2VWSDJ9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "D6YAK3JVF2VWSDJ9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "735" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "D6YAK3JVF2VWSDJ9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "D6YAK3JVF2VWSDJ9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "D6YAK3JVF2VWSDJ9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "D6YAK3JVF2VWSDJ9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "D6YAK3JVF2VWSDJ9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "D6YAK3JVF2VWSDJ9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1684" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "D6YAK3JVF2VWSDJ9.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "D6YAK3JVF2VWSDJ9", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "D6YAK3JVF2VWSDJ9.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "D6YAK3JVF2VWSDJ9.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "D6YAK3JVF2VWSDJ9.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "D6YAK3JVF2VWSDJ9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "D6YAK3JVF2VWSDJ9.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "D6YAK3JVF2VWSDJ9.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "809" + }, + "appliesTo" : [ ] + }, + "D6YAK3JVF2VWSDJ9.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "D6YAK3JVF2VWSDJ9.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "D6YAK3JVF2VWSDJ9.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "D6YAK3JVF2VWSDJ9", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "D6YAK3JVF2VWSDJ9.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "D6YAK3JVF2VWSDJ9.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "813" + }, + "appliesTo" : [ ] + }, + "D6YAK3JVF2VWSDJ9.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "D6YAK3JVF2VWSDJ9.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "D6YAK3JVF2VWSDJ9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "D6YAK3JVF2VWSDJ9", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "D6YAK3JVF2VWSDJ9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "D6YAK3JVF2VWSDJ9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0510000000" + }, + "appliesTo" : [ ] + }, + "D6YAK3JVF2VWSDJ9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "D6YAK3JVF2VWSDJ9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "292" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "D6YAK3JVF2VWSDJ9.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "D6YAK3JVF2VWSDJ9", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "D6YAK3JVF2VWSDJ9.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "D6YAK3JVF2VWSDJ9.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2099" + }, + "appliesTo" : [ ] + }, + "D6YAK3JVF2VWSDJ9.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "D6YAK3JVF2VWSDJ9.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "D6YAK3JVF2VWSDJ9.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "D6YAK3JVF2VWSDJ9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "D6YAK3JVF2VWSDJ9.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "D6YAK3JVF2VWSDJ9.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "409" + }, + "appliesTo" : [ ] + }, + "D6YAK3JVF2VWSDJ9.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "D6YAK3JVF2VWSDJ9.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "A3AVPUXAD6N4JXA9" : { + "A3AVPUXAD6N4JXA9.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "A3AVPUXAD6N4JXA9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A3AVPUXAD6N4JXA9.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "A3AVPUXAD6N4JXA9.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5606" + }, + "appliesTo" : [ ] + }, + "A3AVPUXAD6N4JXA9.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "A3AVPUXAD6N4JXA9.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "A3AVPUXAD6N4JXA9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "A3AVPUXAD6N4JXA9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A3AVPUXAD6N4JXA9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "A3AVPUXAD6N4JXA9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "A3AVPUXAD6N4JXA9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "A3AVPUXAD6N4JXA9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7439" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "A3AVPUXAD6N4JXA9.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "A3AVPUXAD6N4JXA9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A3AVPUXAD6N4JXA9.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "A3AVPUXAD6N4JXA9.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "A3AVPUXAD6N4JXA9.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "A3AVPUXAD6N4JXA9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A3AVPUXAD6N4JXA9.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "A3AVPUXAD6N4JXA9.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4478" + }, + "appliesTo" : [ ] + }, + "A3AVPUXAD6N4JXA9.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "A3AVPUXAD6N4JXA9.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "A3AVPUXAD6N4JXA9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "A3AVPUXAD6N4JXA9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A3AVPUXAD6N4JXA9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "A3AVPUXAD6N4JXA9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2534" + }, + "appliesTo" : [ ] + }, + "A3AVPUXAD6N4JXA9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "A3AVPUXAD6N4JXA9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "A3AVPUXAD6N4JXA9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "A3AVPUXAD6N4JXA9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A3AVPUXAD6N4JXA9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "A3AVPUXAD6N4JXA9.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1500000000" + }, + "appliesTo" : [ ] + }, + "A3AVPUXAD6N4JXA9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "A3AVPUXAD6N4JXA9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3940" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "A3AVPUXAD6N4JXA9.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "A3AVPUXAD6N4JXA9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A3AVPUXAD6N4JXA9.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "A3AVPUXAD6N4JXA9.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8781" + }, + "appliesTo" : [ ] + }, + "A3AVPUXAD6N4JXA9.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "A3AVPUXAD6N4JXA9.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "A3AVPUXAD6N4JXA9.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "A3AVPUXAD6N4JXA9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A3AVPUXAD6N4JXA9.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "A3AVPUXAD6N4JXA9.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3230000000" + }, + "appliesTo" : [ ] + }, + "A3AVPUXAD6N4JXA9.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "A3AVPUXAD6N4JXA9.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2888" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "A3AVPUXAD6N4JXA9.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "A3AVPUXAD6N4JXA9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A3AVPUXAD6N4JXA9.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "A3AVPUXAD6N4JXA9.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "A3AVPUXAD6N4JXA9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "A3AVPUXAD6N4JXA9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A3AVPUXAD6N4JXA9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "A3AVPUXAD6N4JXA9.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "A3AVPUXAD6N4JXA9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "A3AVPUXAD6N4JXA9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A3AVPUXAD6N4JXA9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "A3AVPUXAD6N4JXA9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4912" + }, + "appliesTo" : [ ] + }, + "A3AVPUXAD6N4JXA9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "A3AVPUXAD6N4JXA9.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "A3AVPUXAD6N4JXA9.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "A3AVPUXAD6N4JXA9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A3AVPUXAD6N4JXA9.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "A3AVPUXAD6N4JXA9.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "8D2QYF9WYWYEREWG" : { + "8D2QYF9WYWYEREWG.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "8D2QYF9WYWYEREWG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8D2QYF9WYWYEREWG.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "8D2QYF9WYWYEREWG.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8D2QYF9WYWYEREWG.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "8D2QYF9WYWYEREWG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8D2QYF9WYWYEREWG.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "8D2QYF9WYWYEREWG.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0950000000" + }, + "appliesTo" : [ ] + }, + "8D2QYF9WYWYEREWG.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "8D2QYF9WYWYEREWG.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "302" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8D2QYF9WYWYEREWG.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "8D2QYF9WYWYEREWG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8D2QYF9WYWYEREWG.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "8D2QYF9WYWYEREWG.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8D2QYF9WYWYEREWG.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "8D2QYF9WYWYEREWG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8D2QYF9WYWYEREWG.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "8D2QYF9WYWYEREWG.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "539" + }, + "appliesTo" : [ ] + }, + "8D2QYF9WYWYEREWG.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "8D2QYF9WYWYEREWG.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8D2QYF9WYWYEREWG.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "8D2QYF9WYWYEREWG", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "8D2QYF9WYWYEREWG.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "8D2QYF9WYWYEREWG.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2590" + }, + "appliesTo" : [ ] + }, + "8D2QYF9WYWYEREWG.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "8D2QYF9WYWYEREWG.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8D2QYF9WYWYEREWG.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "8D2QYF9WYWYEREWG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8D2QYF9WYWYEREWG.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "8D2QYF9WYWYEREWG.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8D2QYF9WYWYEREWG.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "8D2QYF9WYWYEREWG", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "8D2QYF9WYWYEREWG.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "8D2QYF9WYWYEREWG.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1041" + }, + "appliesTo" : [ ] + }, + "8D2QYF9WYWYEREWG.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "8D2QYF9WYWYEREWG.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8D2QYF9WYWYEREWG.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "8D2QYF9WYWYEREWG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8D2QYF9WYWYEREWG.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "8D2QYF9WYWYEREWG.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "8D2QYF9WYWYEREWG.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "8D2QYF9WYWYEREWG.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1118" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8D2QYF9WYWYEREWG.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "8D2QYF9WYWYEREWG", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "8D2QYF9WYWYEREWG.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "8D2QYF9WYWYEREWG.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "263" + }, + "appliesTo" : [ ] + }, + "8D2QYF9WYWYEREWG.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "8D2QYF9WYWYEREWG.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8D2QYF9WYWYEREWG.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "8D2QYF9WYWYEREWG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8D2QYF9WYWYEREWG.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "8D2QYF9WYWYEREWG.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "620" + }, + "appliesTo" : [ ] + }, + "8D2QYF9WYWYEREWG.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "8D2QYF9WYWYEREWG.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8D2QYF9WYWYEREWG.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "8D2QYF9WYWYEREWG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8D2QYF9WYWYEREWG.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "8D2QYF9WYWYEREWG.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "8D2QYF9WYWYEREWG.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "8D2QYF9WYWYEREWG.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2791" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8D2QYF9WYWYEREWG.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "8D2QYF9WYWYEREWG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8D2QYF9WYWYEREWG.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "8D2QYF9WYWYEREWG.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "HU3VQPHQ79Z4SYU9" : { + "HU3VQPHQ79Z4SYU9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "HU3VQPHQ79Z4SYU9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HU3VQPHQ79Z4SYU9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "HU3VQPHQ79Z4SYU9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16819" + }, + "appliesTo" : [ ] + }, + "HU3VQPHQ79Z4SYU9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "HU3VQPHQ79Z4SYU9.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HU3VQPHQ79Z4SYU9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "HU3VQPHQ79Z4SYU9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HU3VQPHQ79Z4SYU9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "HU3VQPHQ79Z4SYU9.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1124000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "HU3VQPHQ79Z4SYU9.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "HU3VQPHQ79Z4SYU9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HU3VQPHQ79Z4SYU9.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "HU3VQPHQ79Z4SYU9.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4098000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "HU3VQPHQ79Z4SYU9.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "HU3VQPHQ79Z4SYU9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HU3VQPHQ79Z4SYU9.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "HU3VQPHQ79Z4SYU9.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19778" + }, + "appliesTo" : [ ] + }, + "HU3VQPHQ79Z4SYU9.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "HU3VQPHQ79Z4SYU9.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "HU3VQPHQ79Z4SYU9.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "HU3VQPHQ79Z4SYU9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HU3VQPHQ79Z4SYU9.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "HU3VQPHQ79Z4SYU9.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9510" + }, + "appliesTo" : [ ] + }, + "HU3VQPHQ79Z4SYU9.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "HU3VQPHQ79Z4SYU9.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2156000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HU3VQPHQ79Z4SYU9.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "HU3VQPHQ79Z4SYU9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HU3VQPHQ79Z4SYU9.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "HU3VQPHQ79Z4SYU9.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "HU3VQPHQ79Z4SYU9.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "HU3VQPHQ79Z4SYU9.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "41327" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "HU3VQPHQ79Z4SYU9.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "HU3VQPHQ79Z4SYU9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HU3VQPHQ79Z4SYU9.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "HU3VQPHQ79Z4SYU9.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5124000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "HU3VQPHQ79Z4SYU9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "HU3VQPHQ79Z4SYU9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HU3VQPHQ79Z4SYU9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "HU3VQPHQ79Z4SYU9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8269" + }, + "appliesTo" : [ ] + }, + "HU3VQPHQ79Z4SYU9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "HU3VQPHQ79Z4SYU9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HU3VQPHQ79Z4SYU9.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "HU3VQPHQ79Z4SYU9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HU3VQPHQ79Z4SYU9.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "HU3VQPHQ79Z4SYU9.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7198000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "HU3VQPHQ79Z4SYU9.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "HU3VQPHQ79Z4SYU9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HU3VQPHQ79Z4SYU9.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "HU3VQPHQ79Z4SYU9.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8660000000" + }, + "appliesTo" : [ ] + }, + "HU3VQPHQ79Z4SYU9.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "HU3VQPHQ79Z4SYU9.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19342" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HU3VQPHQ79Z4SYU9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "HU3VQPHQ79Z4SYU9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HU3VQPHQ79Z4SYU9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "HU3VQPHQ79Z4SYU9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17347" + }, + "appliesTo" : [ ] + }, + "HU3VQPHQ79Z4SYU9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "HU3VQPHQ79Z4SYU9.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HU3VQPHQ79Z4SYU9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "HU3VQPHQ79Z4SYU9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HU3VQPHQ79Z4SYU9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "HU3VQPHQ79Z4SYU9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35036" + }, + "appliesTo" : [ ] + }, + "HU3VQPHQ79Z4SYU9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "HU3VQPHQ79Z4SYU9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "9DFRVEWZ38WMEJVB" : { + "9DFRVEWZ38WMEJVB.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "9DFRVEWZ38WMEJVB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9DFRVEWZ38WMEJVB.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "9DFRVEWZ38WMEJVB.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9DFRVEWZ38WMEJVB.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "9DFRVEWZ38WMEJVB", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "9DFRVEWZ38WMEJVB.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "9DFRVEWZ38WMEJVB.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1810000000" + }, + "appliesTo" : [ ] + }, + "9DFRVEWZ38WMEJVB.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "9DFRVEWZ38WMEJVB.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4749" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9DFRVEWZ38WMEJVB.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "9DFRVEWZ38WMEJVB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9DFRVEWZ38WMEJVB.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "9DFRVEWZ38WMEJVB.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9841" + }, + "appliesTo" : [ ] + }, + "9DFRVEWZ38WMEJVB.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "9DFRVEWZ38WMEJVB.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9DFRVEWZ38WMEJVB.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "9DFRVEWZ38WMEJVB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9DFRVEWZ38WMEJVB.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "9DFRVEWZ38WMEJVB.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3695000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9DFRVEWZ38WMEJVB.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "9DFRVEWZ38WMEJVB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9DFRVEWZ38WMEJVB.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "9DFRVEWZ38WMEJVB.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4952" + }, + "appliesTo" : [ ] + }, + "9DFRVEWZ38WMEJVB.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "9DFRVEWZ38WMEJVB.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1884000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9DFRVEWZ38WMEJVB.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "9DFRVEWZ38WMEJVB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9DFRVEWZ38WMEJVB.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "9DFRVEWZ38WMEJVB.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2195000000" + }, + "appliesTo" : [ ] + }, + "9DFRVEWZ38WMEJVB.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "9DFRVEWZ38WMEJVB.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1923" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9DFRVEWZ38WMEJVB.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "9DFRVEWZ38WMEJVB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9DFRVEWZ38WMEJVB.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "9DFRVEWZ38WMEJVB.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4482000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9DFRVEWZ38WMEJVB.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "9DFRVEWZ38WMEJVB", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "9DFRVEWZ38WMEJVB.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "9DFRVEWZ38WMEJVB.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1816" + }, + "appliesTo" : [ ] + }, + "9DFRVEWZ38WMEJVB.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "9DFRVEWZ38WMEJVB.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9DFRVEWZ38WMEJVB.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "9DFRVEWZ38WMEJVB", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "9DFRVEWZ38WMEJVB.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "9DFRVEWZ38WMEJVB.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3604" + }, + "appliesTo" : [ ] + }, + "9DFRVEWZ38WMEJVB.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "9DFRVEWZ38WMEJVB.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9DFRVEWZ38WMEJVB.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "9DFRVEWZ38WMEJVB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9DFRVEWZ38WMEJVB.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "9DFRVEWZ38WMEJVB.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3813" + }, + "appliesTo" : [ ] + }, + "9DFRVEWZ38WMEJVB.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "9DFRVEWZ38WMEJVB.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9DFRVEWZ38WMEJVB.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "9DFRVEWZ38WMEJVB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9DFRVEWZ38WMEJVB.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "9DFRVEWZ38WMEJVB.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3867000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9DFRVEWZ38WMEJVB.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "9DFRVEWZ38WMEJVB", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "9DFRVEWZ38WMEJVB.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "9DFRVEWZ38WMEJVB.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "9DFRVEWZ38WMEJVB.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "9DFRVEWZ38WMEJVB.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9330" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "SZADZHSFYSRDW37F" : { + "SZADZHSFYSRDW37F.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "SZADZHSFYSRDW37F", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SZADZHSFYSRDW37F.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "SZADZHSFYSRDW37F.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32069" + }, + "appliesTo" : [ ] + }, + "SZADZHSFYSRDW37F.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "SZADZHSFYSRDW37F.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SZADZHSFYSRDW37F.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SZADZHSFYSRDW37F", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SZADZHSFYSRDW37F.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SZADZHSFYSRDW37F.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.4070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SZADZHSFYSRDW37F.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "SZADZHSFYSRDW37F", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "SZADZHSFYSRDW37F.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "SZADZHSFYSRDW37F.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.2830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SZADZHSFYSRDW37F.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "SZADZHSFYSRDW37F", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "SZADZHSFYSRDW37F.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "SZADZHSFYSRDW37F.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5390000000" + }, + "appliesTo" : [ ] + }, + "SZADZHSFYSRDW37F.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "SZADZHSFYSRDW37F.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "92975" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SZADZHSFYSRDW37F.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "SZADZHSFYSRDW37F", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SZADZHSFYSRDW37F.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "SZADZHSFYSRDW37F.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SZADZHSFYSRDW37F.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SZADZHSFYSRDW37F", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SZADZHSFYSRDW37F.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SZADZHSFYSRDW37F.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SZADZHSFYSRDW37F.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SZADZHSFYSRDW37F.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "61674" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SZADZHSFYSRDW37F.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SZADZHSFYSRDW37F", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "SZADZHSFYSRDW37F.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SZADZHSFYSRDW37F.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "150681" + }, + "appliesTo" : [ ] + }, + "SZADZHSFYSRDW37F.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SZADZHSFYSRDW37F.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SZADZHSFYSRDW37F.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SZADZHSFYSRDW37F", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "SZADZHSFYSRDW37F.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SZADZHSFYSRDW37F.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31464" + }, + "appliesTo" : [ ] + }, + "SZADZHSFYSRDW37F.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SZADZHSFYSRDW37F.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SZADZHSFYSRDW37F.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "SZADZHSFYSRDW37F", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SZADZHSFYSRDW37F.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "SZADZHSFYSRDW37F.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "63945" + }, + "appliesTo" : [ ] + }, + "SZADZHSFYSRDW37F.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "SZADZHSFYSRDW37F.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SZADZHSFYSRDW37F.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "SZADZHSFYSRDW37F", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "SZADZHSFYSRDW37F.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "SZADZHSFYSRDW37F.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "182258" + }, + "appliesTo" : [ ] + }, + "SZADZHSFYSRDW37F.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "SZADZHSFYSRDW37F.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SZADZHSFYSRDW37F.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SZADZHSFYSRDW37F", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "SZADZHSFYSRDW37F.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SZADZHSFYSRDW37F.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "80154" + }, + "appliesTo" : [ ] + }, + "SZADZHSFYSRDW37F.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SZADZHSFYSRDW37F.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SZADZHSFYSRDW37F.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "SZADZHSFYSRDW37F", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SZADZHSFYSRDW37F.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "SZADZHSFYSRDW37F.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "V9GRWABS3YTSNDT3" : { + "V9GRWABS3YTSNDT3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "V9GRWABS3YTSNDT3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V9GRWABS3YTSNDT3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "V9GRWABS3YTSNDT3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "649" + }, + "appliesTo" : [ ] + }, + "V9GRWABS3YTSNDT3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "V9GRWABS3YTSNDT3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "V9GRWABS3YTSNDT3.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "V9GRWABS3YTSNDT3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V9GRWABS3YTSNDT3.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "V9GRWABS3YTSNDT3.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "V9GRWABS3YTSNDT3.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "V9GRWABS3YTSNDT3.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1354" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "V9GRWABS3YTSNDT3.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "V9GRWABS3YTSNDT3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V9GRWABS3YTSNDT3.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "V9GRWABS3YTSNDT3.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3530" + }, + "appliesTo" : [ ] + }, + "V9GRWABS3YTSNDT3.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "V9GRWABS3YTSNDT3.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "V9GRWABS3YTSNDT3.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "V9GRWABS3YTSNDT3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V9GRWABS3YTSNDT3.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "V9GRWABS3YTSNDT3.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "V9GRWABS3YTSNDT3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "V9GRWABS3YTSNDT3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V9GRWABS3YTSNDT3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "V9GRWABS3YTSNDT3.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "V9GRWABS3YTSNDT3.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "V9GRWABS3YTSNDT3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V9GRWABS3YTSNDT3.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "V9GRWABS3YTSNDT3.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "682" + }, + "appliesTo" : [ ] + }, + "V9GRWABS3YTSNDT3.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "V9GRWABS3YTSNDT3.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "V9GRWABS3YTSNDT3.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "V9GRWABS3YTSNDT3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V9GRWABS3YTSNDT3.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "V9GRWABS3YTSNDT3.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "V9GRWABS3YTSNDT3.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "V9GRWABS3YTSNDT3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V9GRWABS3YTSNDT3.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "V9GRWABS3YTSNDT3.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "V9GRWABS3YTSNDT3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "V9GRWABS3YTSNDT3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V9GRWABS3YTSNDT3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "V9GRWABS3YTSNDT3.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0650000000" + }, + "appliesTo" : [ ] + }, + "V9GRWABS3YTSNDT3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "V9GRWABS3YTSNDT3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1709" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "V9GRWABS3YTSNDT3.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "V9GRWABS3YTSNDT3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V9GRWABS3YTSNDT3.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "V9GRWABS3YTSNDT3.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1775" + }, + "appliesTo" : [ ] + }, + "V9GRWABS3YTSNDT3.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "V9GRWABS3YTSNDT3.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "V9GRWABS3YTSNDT3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "V9GRWABS3YTSNDT3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V9GRWABS3YTSNDT3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "V9GRWABS3YTSNDT3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1288" + }, + "appliesTo" : [ ] + }, + "V9GRWABS3YTSNDT3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "V9GRWABS3YTSNDT3.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "V9GRWABS3YTSNDT3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "V9GRWABS3YTSNDT3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "V9GRWABS3YTSNDT3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "V9GRWABS3YTSNDT3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3366" + }, + "appliesTo" : [ ] + }, + "V9GRWABS3YTSNDT3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "V9GRWABS3YTSNDT3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "AZ53HKVHTCDJVZZ5" : { + "AZ53HKVHTCDJVZZ5.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "AZ53HKVHTCDJVZZ5", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "AZ53HKVHTCDJVZZ5.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "AZ53HKVHTCDJVZZ5.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4418" + }, + "appliesTo" : [ ] + }, + "AZ53HKVHTCDJVZZ5.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "AZ53HKVHTCDJVZZ5.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "AZ53HKVHTCDJVZZ5.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "AZ53HKVHTCDJVZZ5", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "AZ53HKVHTCDJVZZ5.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "AZ53HKVHTCDJVZZ5.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "AZ53HKVHTCDJVZZ5.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "AZ53HKVHTCDJVZZ5.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8622" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "AZ53HKVHTCDJVZZ5.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "AZ53HKVHTCDJVZZ5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "AZ53HKVHTCDJVZZ5.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "AZ53HKVHTCDJVZZ5.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5847" + }, + "appliesTo" : [ ] + }, + "AZ53HKVHTCDJVZZ5.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "AZ53HKVHTCDJVZZ5.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AZ53HKVHTCDJVZZ5.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "AZ53HKVHTCDJVZZ5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AZ53HKVHTCDJVZZ5.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "AZ53HKVHTCDJVZZ5.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "AZ53HKVHTCDJVZZ5.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "AZ53HKVHTCDJVZZ5.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3696" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "AZ53HKVHTCDJVZZ5.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "AZ53HKVHTCDJVZZ5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "AZ53HKVHTCDJVZZ5.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "AZ53HKVHTCDJVZZ5.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3119" + }, + "appliesTo" : [ ] + }, + "AZ53HKVHTCDJVZZ5.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "AZ53HKVHTCDJVZZ5.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AZ53HKVHTCDJVZZ5.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "AZ53HKVHTCDJVZZ5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "AZ53HKVHTCDJVZZ5.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "AZ53HKVHTCDJVZZ5.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3237" + }, + "appliesTo" : [ ] + }, + "AZ53HKVHTCDJVZZ5.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "AZ53HKVHTCDJVZZ5.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AZ53HKVHTCDJVZZ5.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "AZ53HKVHTCDJVZZ5", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "AZ53HKVHTCDJVZZ5.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "AZ53HKVHTCDJVZZ5.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "AZ53HKVHTCDJVZZ5.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "AZ53HKVHTCDJVZZ5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "AZ53HKVHTCDJVZZ5.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "AZ53HKVHTCDJVZZ5.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "AZ53HKVHTCDJVZZ5.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "AZ53HKVHTCDJVZZ5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "AZ53HKVHTCDJVZZ5.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "AZ53HKVHTCDJVZZ5.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1682" + }, + "appliesTo" : [ ] + }, + "AZ53HKVHTCDJVZZ5.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "AZ53HKVHTCDJVZZ5.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AZ53HKVHTCDJVZZ5.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "AZ53HKVHTCDJVZZ5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AZ53HKVHTCDJVZZ5.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "AZ53HKVHTCDJVZZ5.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "AZ53HKVHTCDJVZZ5.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "AZ53HKVHTCDJVZZ5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AZ53HKVHTCDJVZZ5.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "AZ53HKVHTCDJVZZ5.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1914" + }, + "appliesTo" : [ ] + }, + "AZ53HKVHTCDJVZZ5.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "AZ53HKVHTCDJVZZ5.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "QMW9CSCFTNV2H99M" : { + "QMW9CSCFTNV2H99M.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "QMW9CSCFTNV2H99M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QMW9CSCFTNV2H99M.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "QMW9CSCFTNV2H99M.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1932000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QMW9CSCFTNV2H99M.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "QMW9CSCFTNV2H99M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QMW9CSCFTNV2H99M.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "QMW9CSCFTNV2H99M.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "806" + }, + "appliesTo" : [ ] + }, + "QMW9CSCFTNV2H99M.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "QMW9CSCFTNV2H99M.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QMW9CSCFTNV2H99M.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QMW9CSCFTNV2H99M", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QMW9CSCFTNV2H99M.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QMW9CSCFTNV2H99M.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QMW9CSCFTNV2H99M.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QMW9CSCFTNV2H99M", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "QMW9CSCFTNV2H99M.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QMW9CSCFTNV2H99M.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1398" + }, + "appliesTo" : [ ] + }, + "QMW9CSCFTNV2H99M.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QMW9CSCFTNV2H99M.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QMW9CSCFTNV2H99M.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QMW9CSCFTNV2H99M", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "QMW9CSCFTNV2H99M.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QMW9CSCFTNV2H99M.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2628" + }, + "appliesTo" : [ ] + }, + "QMW9CSCFTNV2H99M.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QMW9CSCFTNV2H99M.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QMW9CSCFTNV2H99M.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QMW9CSCFTNV2H99M", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "QMW9CSCFTNV2H99M.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QMW9CSCFTNV2H99M.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1370" + }, + "appliesTo" : [ ] + }, + "QMW9CSCFTNV2H99M.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QMW9CSCFTNV2H99M.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QMW9CSCFTNV2H99M.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "QMW9CSCFTNV2H99M", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QMW9CSCFTNV2H99M.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "QMW9CSCFTNV2H99M.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1602" + }, + "appliesTo" : [ ] + }, + "QMW9CSCFTNV2H99M.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "QMW9CSCFTNV2H99M.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0609000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QMW9CSCFTNV2H99M.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "QMW9CSCFTNV2H99M", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QMW9CSCFTNV2H99M.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "QMW9CSCFTNV2H99M.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1317000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QMW9CSCFTNV2H99M.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "QMW9CSCFTNV2H99M", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QMW9CSCFTNV2H99M.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "QMW9CSCFTNV2H99M.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1145000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QMW9CSCFTNV2H99M.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QMW9CSCFTNV2H99M", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "QMW9CSCFTNV2H99M.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QMW9CSCFTNV2H99M.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0800000000" + }, + "appliesTo" : [ ] + }, + "QMW9CSCFTNV2H99M.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QMW9CSCFTNV2H99M.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "699" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QMW9CSCFTNV2H99M.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "QMW9CSCFTNV2H99M", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "QMW9CSCFTNV2H99M.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "QMW9CSCFTNV2H99M.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QMW9CSCFTNV2H99M.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "QMW9CSCFTNV2H99M.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3139" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QMW9CSCFTNV2H99M.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "QMW9CSCFTNV2H99M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QMW9CSCFTNV2H99M.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "QMW9CSCFTNV2H99M.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1580" + }, + "appliesTo" : [ ] + }, + "QMW9CSCFTNV2H99M.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "QMW9CSCFTNV2H99M.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "GA5PWJF9UF3X7YVH" : { + "GA5PWJF9UF3X7YVH.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "GA5PWJF9UF3X7YVH", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GA5PWJF9UF3X7YVH.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "GA5PWJF9UF3X7YVH.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "967" + }, + "appliesTo" : [ ] + }, + "GA5PWJF9UF3X7YVH.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "GA5PWJF9UF3X7YVH.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GA5PWJF9UF3X7YVH.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "GA5PWJF9UF3X7YVH", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "GA5PWJF9UF3X7YVH.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "GA5PWJF9UF3X7YVH.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2373" + }, + "appliesTo" : [ ] + }, + "GA5PWJF9UF3X7YVH.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "GA5PWJF9UF3X7YVH.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GA5PWJF9UF3X7YVH.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "GA5PWJF9UF3X7YVH", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GA5PWJF9UF3X7YVH.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "GA5PWJF9UF3X7YVH.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5067" + }, + "appliesTo" : [ ] + }, + "GA5PWJF9UF3X7YVH.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "GA5PWJF9UF3X7YVH.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GA5PWJF9UF3X7YVH.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "GA5PWJF9UF3X7YVH", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GA5PWJF9UF3X7YVH.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "GA5PWJF9UF3X7YVH.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GA5PWJF9UF3X7YVH.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "GA5PWJF9UF3X7YVH", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GA5PWJF9UF3X7YVH.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "GA5PWJF9UF3X7YVH.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1230000000" + }, + "appliesTo" : [ ] + }, + "GA5PWJF9UF3X7YVH.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "GA5PWJF9UF3X7YVH.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2158" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "CRRB3H2DYHU6K9FV" : { + "CRRB3H2DYHU6K9FV.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "CRRB3H2DYHU6K9FV", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "CRRB3H2DYHU6K9FV.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "CRRB3H2DYHU6K9FV.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34682" + }, + "appliesTo" : [ ] + }, + "CRRB3H2DYHU6K9FV.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "CRRB3H2DYHU6K9FV.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CRRB3H2DYHU6K9FV.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "CRRB3H2DYHU6K9FV", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "CRRB3H2DYHU6K9FV.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "CRRB3H2DYHU6K9FV.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16924" + }, + "appliesTo" : [ ] + }, + "CRRB3H2DYHU6K9FV.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "CRRB3H2DYHU6K9FV.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CRRB3H2DYHU6K9FV.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "CRRB3H2DYHU6K9FV", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "CRRB3H2DYHU6K9FV.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "CRRB3H2DYHU6K9FV.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9200000000" + }, + "appliesTo" : [ ] + }, + "CRRB3H2DYHU6K9FV.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "CRRB3H2DYHU6K9FV.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11213" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CRRB3H2DYHU6K9FV.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "CRRB3H2DYHU6K9FV", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "CRRB3H2DYHU6K9FV.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "CRRB3H2DYHU6K9FV.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18886" + }, + "appliesTo" : [ ] + }, + "CRRB3H2DYHU6K9FV.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "CRRB3H2DYHU6K9FV.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CRRB3H2DYHU6K9FV.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "CRRB3H2DYHU6K9FV", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "CRRB3H2DYHU6K9FV.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "CRRB3H2DYHU6K9FV.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "VTKYCWG47S8NZFFH" : { + "VTKYCWG47S8NZFFH.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "VTKYCWG47S8NZFFH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VTKYCWG47S8NZFFH.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "VTKYCWG47S8NZFFH.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "VTKYCWG47S8NZFFH.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "VTKYCWG47S8NZFFH.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33934" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VTKYCWG47S8NZFFH.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "VTKYCWG47S8NZFFH", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "VTKYCWG47S8NZFFH.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "VTKYCWG47S8NZFFH.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33334" + }, + "appliesTo" : [ ] + }, + "VTKYCWG47S8NZFFH.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "VTKYCWG47S8NZFFH.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VTKYCWG47S8NZFFH.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "VTKYCWG47S8NZFFH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VTKYCWG47S8NZFFH.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "VTKYCWG47S8NZFFH.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VTKYCWG47S8NZFFH.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "VTKYCWG47S8NZFFH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VTKYCWG47S8NZFFH.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "VTKYCWG47S8NZFFH.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VTKYCWG47S8NZFFH.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "VTKYCWG47S8NZFFH", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "VTKYCWG47S8NZFFH.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "VTKYCWG47S8NZFFH.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "96141" + }, + "appliesTo" : [ ] + }, + "VTKYCWG47S8NZFFH.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "VTKYCWG47S8NZFFH.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VTKYCWG47S8NZFFH.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "VTKYCWG47S8NZFFH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VTKYCWG47S8NZFFH.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "VTKYCWG47S8NZFFH.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "VTKYCWG47S8NZFFH.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "VTKYCWG47S8NZFFH.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "97633" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VTKYCWG47S8NZFFH.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "VTKYCWG47S8NZFFH", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "VTKYCWG47S8NZFFH.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "VTKYCWG47S8NZFFH.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16706" + }, + "appliesTo" : [ ] + }, + "VTKYCWG47S8NZFFH.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "VTKYCWG47S8NZFFH.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VTKYCWG47S8NZFFH.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "VTKYCWG47S8NZFFH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VTKYCWG47S8NZFFH.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "VTKYCWG47S8NZFFH.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VTKYCWG47S8NZFFH.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "VTKYCWG47S8NZFFH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VTKYCWG47S8NZFFH.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "VTKYCWG47S8NZFFH.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VTKYCWG47S8NZFFH.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "VTKYCWG47S8NZFFH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VTKYCWG47S8NZFFH.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "VTKYCWG47S8NZFFH.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17012" + }, + "appliesTo" : [ ] + }, + "VTKYCWG47S8NZFFH.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "VTKYCWG47S8NZFFH.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VTKYCWG47S8NZFFH.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "VTKYCWG47S8NZFFH", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "VTKYCWG47S8NZFFH.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "VTKYCWG47S8NZFFH.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "48314" + }, + "appliesTo" : [ ] + }, + "VTKYCWG47S8NZFFH.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "VTKYCWG47S8NZFFH.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VTKYCWG47S8NZFFH.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "VTKYCWG47S8NZFFH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VTKYCWG47S8NZFFH.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "VTKYCWG47S8NZFFH.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "48910" + }, + "appliesTo" : [ ] + }, + "VTKYCWG47S8NZFFH.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "VTKYCWG47S8NZFFH.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "427555ENEC4F3EDG" : { + "427555ENEC4F3EDG.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "427555ENEC4F3EDG", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "427555ENEC4F3EDG.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "427555ENEC4F3EDG.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2020000000" + }, + "appliesTo" : [ ] + }, + "427555ENEC4F3EDG.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "427555ENEC4F3EDG.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14560" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "427555ENEC4F3EDG.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "427555ENEC4F3EDG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "427555ENEC4F3EDG.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "427555ENEC4F3EDG.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "427555ENEC4F3EDG.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "427555ENEC4F3EDG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "427555ENEC4F3EDG.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "427555ENEC4F3EDG.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "41549" + }, + "appliesTo" : [ ] + }, + "427555ENEC4F3EDG.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "427555ENEC4F3EDG.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "427555ENEC4F3EDG.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "427555ENEC4F3EDG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "427555ENEC4F3EDG.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "427555ENEC4F3EDG.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21067" + }, + "appliesTo" : [ ] + }, + "427555ENEC4F3EDG.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "427555ENEC4F3EDG.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "427555ENEC4F3EDG.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "427555ENEC4F3EDG", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "427555ENEC4F3EDG.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "427555ENEC4F3EDG.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "427555ENEC4F3EDG.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "427555ENEC4F3EDG", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "427555ENEC4F3EDG.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "427555ENEC4F3EDG.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "92040" + }, + "appliesTo" : [ ] + }, + "427555ENEC4F3EDG.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "427555ENEC4F3EDG.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "427555ENEC4F3EDG.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "427555ENEC4F3EDG", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "427555ENEC4F3EDG.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "427555ENEC4F3EDG.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21920" + }, + "appliesTo" : [ ] + }, + "427555ENEC4F3EDG.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "427555ENEC4F3EDG.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "427555ENEC4F3EDG.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "427555ENEC4F3EDG", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "427555ENEC4F3EDG.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "427555ENEC4F3EDG.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.1820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "427555ENEC4F3EDG.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "427555ENEC4F3EDG", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "427555ENEC4F3EDG.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "427555ENEC4F3EDG.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39312" + }, + "appliesTo" : [ ] + }, + "427555ENEC4F3EDG.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "427555ENEC4F3EDG.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "427555ENEC4F3EDG.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "427555ENEC4F3EDG", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "427555ENEC4F3EDG.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "427555ENEC4F3EDG.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "427555ENEC4F3EDG.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "427555ENEC4F3EDG.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33173" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "427555ENEC4F3EDG.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "427555ENEC4F3EDG", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "427555ENEC4F3EDG.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "427555ENEC4F3EDG.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "68134" + }, + "appliesTo" : [ ] + }, + "427555ENEC4F3EDG.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "427555ENEC4F3EDG.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "K28HPP98RVTNWAAD" : { + "K28HPP98RVTNWAAD.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "K28HPP98RVTNWAAD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K28HPP98RVTNWAAD.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "K28HPP98RVTNWAAD.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "K28HPP98RVTNWAAD.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "K28HPP98RVTNWAAD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K28HPP98RVTNWAAD.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "K28HPP98RVTNWAAD.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6915000000" + }, + "appliesTo" : [ ] + }, + "K28HPP98RVTNWAAD.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "K28HPP98RVTNWAAD.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6120" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "K28HPP98RVTNWAAD.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "K28HPP98RVTNWAAD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K28HPP98RVTNWAAD.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "K28HPP98RVTNWAAD.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24388" + }, + "appliesTo" : [ ] + }, + "K28HPP98RVTNWAAD.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "K28HPP98RVTNWAAD.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "K28HPP98RVTNWAAD.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "K28HPP98RVTNWAAD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K28HPP98RVTNWAAD.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "K28HPP98RVTNWAAD.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0266000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "K28HPP98RVTNWAAD.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "K28HPP98RVTNWAAD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K28HPP98RVTNWAAD.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "K28HPP98RVTNWAAD.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6030000000" + }, + "appliesTo" : [ ] + }, + "K28HPP98RVTNWAAD.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "K28HPP98RVTNWAAD.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5344" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "K28HPP98RVTNWAAD.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "K28HPP98RVTNWAAD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K28HPP98RVTNWAAD.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "K28HPP98RVTNWAAD.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11940" + }, + "appliesTo" : [ ] + }, + "K28HPP98RVTNWAAD.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "K28HPP98RVTNWAAD.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "K28HPP98RVTNWAAD.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "K28HPP98RVTNWAAD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K28HPP98RVTNWAAD.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "K28HPP98RVTNWAAD.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "K28HPP98RVTNWAAD.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "K28HPP98RVTNWAAD.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20457" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "K28HPP98RVTNWAAD.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "K28HPP98RVTNWAAD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K28HPP98RVTNWAAD.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "K28HPP98RVTNWAAD.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "K28HPP98RVTNWAAD.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "K28HPP98RVTNWAAD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K28HPP98RVTNWAAD.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "K28HPP98RVTNWAAD.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "K28HPP98RVTNWAAD.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "K28HPP98RVTNWAAD.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10420" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "K28HPP98RVTNWAAD.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "K28HPP98RVTNWAAD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K28HPP98RVTNWAAD.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "K28HPP98RVTNWAAD.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4130000000" + }, + "appliesTo" : [ ] + }, + "K28HPP98RVTNWAAD.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "K28HPP98RVTNWAAD.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10864" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "K28HPP98RVTNWAAD.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "K28HPP98RVTNWAAD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "K28HPP98RVTNWAAD.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "K28HPP98RVTNWAAD.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12441" + }, + "appliesTo" : [ ] + }, + "K28HPP98RVTNWAAD.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "K28HPP98RVTNWAAD.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "K28HPP98RVTNWAAD.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "K28HPP98RVTNWAAD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K28HPP98RVTNWAAD.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "K28HPP98RVTNWAAD.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4579000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "Y3Y6KWQHPWZMXFTW" : { + "Y3Y6KWQHPWZMXFTW.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "Y3Y6KWQHPWZMXFTW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Y3Y6KWQHPWZMXFTW.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "Y3Y6KWQHPWZMXFTW.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "44022" + }, + "appliesTo" : [ ] + }, + "Y3Y6KWQHPWZMXFTW.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "Y3Y6KWQHPWZMXFTW.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Y3Y6KWQHPWZMXFTW.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Y3Y6KWQHPWZMXFTW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Y3Y6KWQHPWZMXFTW.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Y3Y6KWQHPWZMXFTW.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Y3Y6KWQHPWZMXFTW.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "Y3Y6KWQHPWZMXFTW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Y3Y6KWQHPWZMXFTW.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "Y3Y6KWQHPWZMXFTW.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22104" + }, + "appliesTo" : [ ] + }, + "Y3Y6KWQHPWZMXFTW.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "Y3Y6KWQHPWZMXFTW.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y3Y6KWQHPWZMXFTW.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Y3Y6KWQHPWZMXFTW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Y3Y6KWQHPWZMXFTW.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Y3Y6KWQHPWZMXFTW.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21497" + }, + "appliesTo" : [ ] + }, + "Y3Y6KWQHPWZMXFTW.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Y3Y6KWQHPWZMXFTW.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y3Y6KWQHPWZMXFTW.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "Y3Y6KWQHPWZMXFTW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Y3Y6KWQHPWZMXFTW.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "Y3Y6KWQHPWZMXFTW.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Y3Y6KWQHPWZMXFTW.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "Y3Y6KWQHPWZMXFTW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Y3Y6KWQHPWZMXFTW.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "Y3Y6KWQHPWZMXFTW.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8077" + }, + "appliesTo" : [ ] + }, + "Y3Y6KWQHPWZMXFTW.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "Y3Y6KWQHPWZMXFTW.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y3Y6KWQHPWZMXFTW.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "Y3Y6KWQHPWZMXFTW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Y3Y6KWQHPWZMXFTW.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "Y3Y6KWQHPWZMXFTW.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Y3Y6KWQHPWZMXFTW.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Y3Y6KWQHPWZMXFTW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Y3Y6KWQHPWZMXFTW.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Y3Y6KWQHPWZMXFTW.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15486" + }, + "appliesTo" : [ ] + }, + "Y3Y6KWQHPWZMXFTW.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Y3Y6KWQHPWZMXFTW.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Y3Y6KWQHPWZMXFTW.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "Y3Y6KWQHPWZMXFTW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Y3Y6KWQHPWZMXFTW.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "Y3Y6KWQHPWZMXFTW.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "Y3Y6KWQHPWZMXFTW.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "Y3Y6KWQHPWZMXFTW.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16064" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Y3Y6KWQHPWZMXFTW.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Y3Y6KWQHPWZMXFTW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Y3Y6KWQHPWZMXFTW.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Y3Y6KWQHPWZMXFTW.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7782" + }, + "appliesTo" : [ ] + }, + "Y3Y6KWQHPWZMXFTW.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Y3Y6KWQHPWZMXFTW.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Y3Y6KWQHPWZMXFTW.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Y3Y6KWQHPWZMXFTW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Y3Y6KWQHPWZMXFTW.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Y3Y6KWQHPWZMXFTW.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "42508" + }, + "appliesTo" : [ ] + }, + "Y3Y6KWQHPWZMXFTW.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Y3Y6KWQHPWZMXFTW.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Y3Y6KWQHPWZMXFTW.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "Y3Y6KWQHPWZMXFTW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Y3Y6KWQHPWZMXFTW.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "Y3Y6KWQHPWZMXFTW.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "6BD6MNUEKG75NY7W" : { + "6BD6MNUEKG75NY7W.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "6BD6MNUEKG75NY7W", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6BD6MNUEKG75NY7W.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "6BD6MNUEKG75NY7W.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8207000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6BD6MNUEKG75NY7W.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "6BD6MNUEKG75NY7W", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6BD6MNUEKG75NY7W.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "6BD6MNUEKG75NY7W.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3562" + }, + "appliesTo" : [ ] + }, + "6BD6MNUEKG75NY7W.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "6BD6MNUEKG75NY7W.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4066000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6BD6MNUEKG75NY7W.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "6BD6MNUEKG75NY7W", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "6BD6MNUEKG75NY7W.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "6BD6MNUEKG75NY7W.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10055" + }, + "appliesTo" : [ ] + }, + "6BD6MNUEKG75NY7W.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "6BD6MNUEKG75NY7W.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3826000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6BD6MNUEKG75NY7W.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6BD6MNUEKG75NY7W", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "6BD6MNUEKG75NY7W.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6BD6MNUEKG75NY7W.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19624" + }, + "appliesTo" : [ ] + }, + "6BD6MNUEKG75NY7W.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6BD6MNUEKG75NY7W.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6BD6MNUEKG75NY7W.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6BD6MNUEKG75NY7W", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "6BD6MNUEKG75NY7W.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6BD6MNUEKG75NY7W.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9881" + }, + "appliesTo" : [ ] + }, + "6BD6MNUEKG75NY7W.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6BD6MNUEKG75NY7W.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6BD6MNUEKG75NY7W.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6BD6MNUEKG75NY7W", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "6BD6MNUEKG75NY7W.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6BD6MNUEKG75NY7W.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3477" + }, + "appliesTo" : [ ] + }, + "6BD6MNUEKG75NY7W.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6BD6MNUEKG75NY7W.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3969000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6BD6MNUEKG75NY7W.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6BD6MNUEKG75NY7W", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "6BD6MNUEKG75NY7W.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6BD6MNUEKG75NY7W.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6931" + }, + "appliesTo" : [ ] + }, + "6BD6MNUEKG75NY7W.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6BD6MNUEKG75NY7W.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6BD6MNUEKG75NY7W.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "6BD6MNUEKG75NY7W", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "6BD6MNUEKG75NY7W.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "6BD6MNUEKG75NY7W.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7733000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6BD6MNUEKG75NY7W.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "6BD6MNUEKG75NY7W", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "6BD6MNUEKG75NY7W.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "6BD6MNUEKG75NY7W.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6BD6MNUEKG75NY7W.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "6BD6MNUEKG75NY7W", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "6BD6MNUEKG75NY7W.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "6BD6MNUEKG75NY7W.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "6BD6MNUEKG75NY7W.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "6BD6MNUEKG75NY7W.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20056" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6BD6MNUEKG75NY7W.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "6BD6MNUEKG75NY7W", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6BD6MNUEKG75NY7W.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "6BD6MNUEKG75NY7W.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "6BD6MNUEKG75NY7W.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "6BD6MNUEKG75NY7W.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7098" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6BD6MNUEKG75NY7W.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6BD6MNUEKG75NY7W", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "6BD6MNUEKG75NY7W.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6BD6MNUEKG75NY7W.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8003000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "FDH7AF66PWQFC4ZX" : { + "FDH7AF66PWQFC4ZX.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "FDH7AF66PWQFC4ZX", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "FDH7AF66PWQFC4ZX.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "FDH7AF66PWQFC4ZX.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "19.6520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FDH7AF66PWQFC4ZX.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "FDH7AF66PWQFC4ZX", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "FDH7AF66PWQFC4ZX.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "FDH7AF66PWQFC4ZX.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "419712" + }, + "appliesTo" : [ ] + }, + "FDH7AF66PWQFC4ZX.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "FDH7AF66PWQFC4ZX.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FDH7AF66PWQFC4ZX.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "FDH7AF66PWQFC4ZX", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "FDH7AF66PWQFC4ZX.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "FDH7AF66PWQFC4ZX.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.4050000000" + }, + "appliesTo" : [ ] + }, + "FDH7AF66PWQFC4ZX.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "FDH7AF66PWQFC4ZX.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "168316" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FDH7AF66PWQFC4ZX.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "FDH7AF66PWQFC4ZX", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "FDH7AF66PWQFC4ZX.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "FDH7AF66PWQFC4ZX.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.1180000000" + }, + "appliesTo" : [ ] + }, + "FDH7AF66PWQFC4ZX.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "FDH7AF66PWQFC4ZX.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "213349" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FDH7AF66PWQFC4ZX.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "FDH7AF66PWQFC4ZX", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "FDH7AF66PWQFC4ZX.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "FDH7AF66PWQFC4ZX.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.5990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FDH7AF66PWQFC4ZX.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "FDH7AF66PWQFC4ZX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FDH7AF66PWQFC4ZX.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "FDH7AF66PWQFC4ZX.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "93097" + }, + "appliesTo" : [ ] + }, + "FDH7AF66PWQFC4ZX.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "FDH7AF66PWQFC4ZX.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.6280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FDH7AF66PWQFC4ZX.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "FDH7AF66PWQFC4ZX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FDH7AF66PWQFC4ZX.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "FDH7AF66PWQFC4ZX.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "22.1710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FDH7AF66PWQFC4ZX.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "FDH7AF66PWQFC4ZX", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "FDH7AF66PWQFC4ZX.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "FDH7AF66PWQFC4ZX.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "FDH7AF66PWQFC4ZX.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "FDH7AF66PWQFC4ZX.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "162391" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FDH7AF66PWQFC4ZX.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "FDH7AF66PWQFC4ZX", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "FDH7AF66PWQFC4ZX.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "FDH7AF66PWQFC4ZX.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "82589" + }, + "appliesTo" : [ ] + }, + "FDH7AF66PWQFC4ZX.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "FDH7AF66PWQFC4ZX.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.4280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FDH7AF66PWQFC4ZX.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "FDH7AF66PWQFC4ZX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FDH7AF66PWQFC4ZX.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "FDH7AF66PWQFC4ZX.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "182986" + }, + "appliesTo" : [ ] + }, + "FDH7AF66PWQFC4ZX.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "FDH7AF66PWQFC4ZX.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FDH7AF66PWQFC4ZX.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "FDH7AF66PWQFC4ZX", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "FDH7AF66PWQFC4ZX.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "FDH7AF66PWQFC4ZX.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "321076" + }, + "appliesTo" : [ ] + }, + "FDH7AF66PWQFC4ZX.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "FDH7AF66PWQFC4ZX.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FDH7AF66PWQFC4ZX.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "FDH7AF66PWQFC4ZX", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "FDH7AF66PWQFC4ZX.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "FDH7AF66PWQFC4ZX.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "17.3000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "JTDCCHG4KZ5M8H8N" : { + "JTDCCHG4KZ5M8H8N.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "JTDCCHG4KZ5M8H8N", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JTDCCHG4KZ5M8H8N.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "JTDCCHG4KZ5M8H8N.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "JTDCCHG4KZ5M8H8N.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "JTDCCHG4KZ5M8H8N", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JTDCCHG4KZ5M8H8N.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "JTDCCHG4KZ5M8H8N.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "669" + }, + "appliesTo" : [ ] + }, + "JTDCCHG4KZ5M8H8N.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "JTDCCHG4KZ5M8H8N.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "JTDCCHG4KZ5M8H8N.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "JTDCCHG4KZ5M8H8N", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JTDCCHG4KZ5M8H8N.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "JTDCCHG4KZ5M8H8N.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1102" + }, + "appliesTo" : [ ] + }, + "JTDCCHG4KZ5M8H8N.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "JTDCCHG4KZ5M8H8N.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "JTDCCHG4KZ5M8H8N.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "JTDCCHG4KZ5M8H8N", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JTDCCHG4KZ5M8H8N.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "JTDCCHG4KZ5M8H8N.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2147" + }, + "appliesTo" : [ ] + }, + "JTDCCHG4KZ5M8H8N.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "JTDCCHG4KZ5M8H8N.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JTDCCHG4KZ5M8H8N.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "JTDCCHG4KZ5M8H8N", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JTDCCHG4KZ5M8H8N.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "JTDCCHG4KZ5M8H8N.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1102" + }, + "appliesTo" : [ ] + }, + "JTDCCHG4KZ5M8H8N.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "JTDCCHG4KZ5M8H8N.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "97BZM647G2XZPFCY" : { + "97BZM647G2XZPFCY.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "97BZM647G2XZPFCY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "97BZM647G2XZPFCY.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "97BZM647G2XZPFCY.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "97BZM647G2XZPFCY.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "97BZM647G2XZPFCY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "97BZM647G2XZPFCY.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "97BZM647G2XZPFCY.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "97BZM647G2XZPFCY.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "97BZM647G2XZPFCY", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "97BZM647G2XZPFCY.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "97BZM647G2XZPFCY.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4149" + }, + "appliesTo" : [ ] + }, + "97BZM647G2XZPFCY.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "97BZM647G2XZPFCY.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "97BZM647G2XZPFCY.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "97BZM647G2XZPFCY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "97BZM647G2XZPFCY.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "97BZM647G2XZPFCY.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "97BZM647G2XZPFCY.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "97BZM647G2XZPFCY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "97BZM647G2XZPFCY.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "97BZM647G2XZPFCY.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4449" + }, + "appliesTo" : [ ] + }, + "97BZM647G2XZPFCY.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "97BZM647G2XZPFCY.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "97BZM647G2XZPFCY.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "97BZM647G2XZPFCY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "97BZM647G2XZPFCY.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "97BZM647G2XZPFCY.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "97BZM647G2XZPFCY.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "97BZM647G2XZPFCY", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "97BZM647G2XZPFCY.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "97BZM647G2XZPFCY.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10517" + }, + "appliesTo" : [ ] + }, + "97BZM647G2XZPFCY.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "97BZM647G2XZPFCY.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "97BZM647G2XZPFCY.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "97BZM647G2XZPFCY", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "97BZM647G2XZPFCY.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "97BZM647G2XZPFCY.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5380" + }, + "appliesTo" : [ ] + }, + "97BZM647G2XZPFCY.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "97BZM647G2XZPFCY.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "97BZM647G2XZPFCY.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "97BZM647G2XZPFCY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "97BZM647G2XZPFCY.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "97BZM647G2XZPFCY.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5678" + }, + "appliesTo" : [ ] + }, + "97BZM647G2XZPFCY.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "97BZM647G2XZPFCY.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "97BZM647G2XZPFCY.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "97BZM647G2XZPFCY", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "97BZM647G2XZPFCY.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "97BZM647G2XZPFCY.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2094" + }, + "appliesTo" : [ ] + }, + "97BZM647G2XZPFCY.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "97BZM647G2XZPFCY.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "97BZM647G2XZPFCY.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "97BZM647G2XZPFCY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "97BZM647G2XZPFCY.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "97BZM647G2XZPFCY.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11263" + }, + "appliesTo" : [ ] + }, + "97BZM647G2XZPFCY.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "97BZM647G2XZPFCY.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "97BZM647G2XZPFCY.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "97BZM647G2XZPFCY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "97BZM647G2XZPFCY.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "97BZM647G2XZPFCY.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2247" + }, + "appliesTo" : [ ] + }, + "97BZM647G2XZPFCY.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "97BZM647G2XZPFCY.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "YKQEND52YE639ZHB" : { + "YKQEND52YE639ZHB.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "YKQEND52YE639ZHB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YKQEND52YE639ZHB.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "YKQEND52YE639ZHB.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4720000000" + }, + "appliesTo" : [ ] + }, + "YKQEND52YE639ZHB.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "YKQEND52YE639ZHB.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12895" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YKQEND52YE639ZHB.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "YKQEND52YE639ZHB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YKQEND52YE639ZHB.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "YKQEND52YE639ZHB.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0912000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YKQEND52YE639ZHB.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YKQEND52YE639ZHB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YKQEND52YE639ZHB.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YKQEND52YE639ZHB.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21922" + }, + "appliesTo" : [ ] + }, + "YKQEND52YE639ZHB.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YKQEND52YE639ZHB.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YKQEND52YE639ZHB.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YKQEND52YE639ZHB", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "YKQEND52YE639ZHB.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YKQEND52YE639ZHB.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8510000000" + }, + "appliesTo" : [ ] + }, + "YKQEND52YE639ZHB.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YKQEND52YE639ZHB.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22370" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YKQEND52YE639ZHB.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "YKQEND52YE639ZHB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YKQEND52YE639ZHB.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "YKQEND52YE639ZHB.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1064000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YKQEND52YE639ZHB.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "YKQEND52YE639ZHB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YKQEND52YE639ZHB.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "YKQEND52YE639ZHB.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25628" + }, + "appliesTo" : [ ] + }, + "YKQEND52YE639ZHB.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "YKQEND52YE639ZHB.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9752000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YKQEND52YE639ZHB.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YKQEND52YE639ZHB", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "YKQEND52YE639ZHB.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YKQEND52YE639ZHB.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YKQEND52YE639ZHB.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YKQEND52YE639ZHB.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "42055" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YKQEND52YE639ZHB.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "YKQEND52YE639ZHB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YKQEND52YE639ZHB.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "YKQEND52YE639ZHB.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8317000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YKQEND52YE639ZHB.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YKQEND52YE639ZHB", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "YKQEND52YE639ZHB.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YKQEND52YE639ZHB.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11185" + }, + "appliesTo" : [ ] + }, + "YKQEND52YE639ZHB.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YKQEND52YE639ZHB.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YKQEND52YE639ZHB.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "YKQEND52YE639ZHB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YKQEND52YE639ZHB.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "YKQEND52YE639ZHB.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "50231" + }, + "appliesTo" : [ ] + }, + "YKQEND52YE639ZHB.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "YKQEND52YE639ZHB.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YKQEND52YE639ZHB.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YKQEND52YE639ZHB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YKQEND52YE639ZHB.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YKQEND52YE639ZHB.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YKQEND52YE639ZHB.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "YKQEND52YE639ZHB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YKQEND52YE639ZHB.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "YKQEND52YE639ZHB.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25273" + }, + "appliesTo" : [ ] + }, + "YKQEND52YE639ZHB.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "YKQEND52YE639ZHB.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "86VC54YVHZCQW5AC" : { + "86VC54YVHZCQW5AC.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "86VC54YVHZCQW5AC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "86VC54YVHZCQW5AC.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "86VC54YVHZCQW5AC.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2915" + }, + "appliesTo" : [ ] + }, + "86VC54YVHZCQW5AC.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "86VC54YVHZCQW5AC.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "86VC54YVHZCQW5AC.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "86VC54YVHZCQW5AC", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "86VC54YVHZCQW5AC.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "86VC54YVHZCQW5AC.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3781" + }, + "appliesTo" : [ ] + }, + "86VC54YVHZCQW5AC.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "86VC54YVHZCQW5AC.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "86VC54YVHZCQW5AC.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "86VC54YVHZCQW5AC", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "86VC54YVHZCQW5AC.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "86VC54YVHZCQW5AC.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1384" + }, + "appliesTo" : [ ] + }, + "86VC54YVHZCQW5AC.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "86VC54YVHZCQW5AC.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "86VC54YVHZCQW5AC.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "86VC54YVHZCQW5AC", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "86VC54YVHZCQW5AC.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "86VC54YVHZCQW5AC.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3482" + }, + "appliesTo" : [ ] + }, + "86VC54YVHZCQW5AC.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "86VC54YVHZCQW5AC.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "86VC54YVHZCQW5AC.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "86VC54YVHZCQW5AC", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "86VC54YVHZCQW5AC.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "86VC54YVHZCQW5AC.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "86VC54YVHZCQW5AC.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "86VC54YVHZCQW5AC.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6533" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "86VC54YVHZCQW5AC.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "86VC54YVHZCQW5AC", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "86VC54YVHZCQW5AC.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "86VC54YVHZCQW5AC.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2751" + }, + "appliesTo" : [ ] + }, + "86VC54YVHZCQW5AC.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "86VC54YVHZCQW5AC.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "86VC54YVHZCQW5AC.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "86VC54YVHZCQW5AC", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "86VC54YVHZCQW5AC.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "86VC54YVHZCQW5AC.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "86VC54YVHZCQW5AC.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "86VC54YVHZCQW5AC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "86VC54YVHZCQW5AC.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "86VC54YVHZCQW5AC.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1680000000" + }, + "appliesTo" : [ ] + }, + "86VC54YVHZCQW5AC.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "86VC54YVHZCQW5AC.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1471" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "86VC54YVHZCQW5AC.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "86VC54YVHZCQW5AC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "86VC54YVHZCQW5AC.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "86VC54YVHZCQW5AC.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "86VC54YVHZCQW5AC.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "86VC54YVHZCQW5AC", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "86VC54YVHZCQW5AC.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "86VC54YVHZCQW5AC.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "86VC54YVHZCQW5AC.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "86VC54YVHZCQW5AC", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "86VC54YVHZCQW5AC.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "86VC54YVHZCQW5AC.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7507" + }, + "appliesTo" : [ ] + }, + "86VC54YVHZCQW5AC.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "86VC54YVHZCQW5AC.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "86VC54YVHZCQW5AC.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "86VC54YVHZCQW5AC", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "86VC54YVHZCQW5AC.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "86VC54YVHZCQW5AC.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "68TFKFM9J33ZZB97" : { + "68TFKFM9J33ZZB97.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "68TFKFM9J33ZZB97", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "68TFKFM9J33ZZB97.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "68TFKFM9J33ZZB97.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "68TFKFM9J33ZZB97.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "68TFKFM9J33ZZB97.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12766" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "68TFKFM9J33ZZB97.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "68TFKFM9J33ZZB97", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "68TFKFM9J33ZZB97.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "68TFKFM9J33ZZB97.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29856" + }, + "appliesTo" : [ ] + }, + "68TFKFM9J33ZZB97.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "68TFKFM9J33ZZB97.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "68TFKFM9J33ZZB97.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "68TFKFM9J33ZZB97", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "68TFKFM9J33ZZB97.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "68TFKFM9J33ZZB97.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1939000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "68TFKFM9J33ZZB97.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "68TFKFM9J33ZZB97", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "68TFKFM9J33ZZB97.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "68TFKFM9J33ZZB97.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2626000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "68TFKFM9J33ZZB97.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "68TFKFM9J33ZZB97", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "68TFKFM9J33ZZB97.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "68TFKFM9J33ZZB97.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11928" + }, + "appliesTo" : [ ] + }, + "68TFKFM9J33ZZB97.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "68TFKFM9J33ZZB97.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "68TFKFM9J33ZZB97.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "68TFKFM9J33ZZB97", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "68TFKFM9J33ZZB97.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "68TFKFM9J33ZZB97.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5810000000" + }, + "appliesTo" : [ ] + }, + "68TFKFM9J33ZZB97.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "68TFKFM9J33ZZB97.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15263" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "68TFKFM9J33ZZB97.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "68TFKFM9J33ZZB97", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "68TFKFM9J33ZZB97.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "68TFKFM9J33ZZB97.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16078" + }, + "appliesTo" : [ ] + }, + "68TFKFM9J33ZZB97.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "68TFKFM9J33ZZB97.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6118000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "68TFKFM9J33ZZB97.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "68TFKFM9J33ZZB97", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "68TFKFM9J33ZZB97.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "68TFKFM9J33ZZB97.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6447" + }, + "appliesTo" : [ ] + }, + "68TFKFM9J33ZZB97.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "68TFKFM9J33ZZB97.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "68TFKFM9J33ZZB97.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "68TFKFM9J33ZZB97", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "68TFKFM9J33ZZB97.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "68TFKFM9J33ZZB97.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5088000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "68TFKFM9J33ZZB97.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "68TFKFM9J33ZZB97", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "68TFKFM9J33ZZB97.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "68TFKFM9J33ZZB97.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31900" + }, + "appliesTo" : [ ] + }, + "68TFKFM9J33ZZB97.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "68TFKFM9J33ZZB97.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "68TFKFM9J33ZZB97.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "68TFKFM9J33ZZB97", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "68TFKFM9J33ZZB97.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "68TFKFM9J33ZZB97.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6020" + }, + "appliesTo" : [ ] + }, + "68TFKFM9J33ZZB97.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "68TFKFM9J33ZZB97.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "68TFKFM9J33ZZB97.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "68TFKFM9J33ZZB97", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "68TFKFM9J33ZZB97.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "68TFKFM9J33ZZB97.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "5B3GT4NNY7ZCKUY7" : { + "5B3GT4NNY7ZCKUY7.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "5B3GT4NNY7ZCKUY7", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "5B3GT4NNY7ZCKUY7.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "5B3GT4NNY7ZCKUY7.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "11.8580000000" + }, + "appliesTo" : [ ] + }, + "5B3GT4NNY7ZCKUY7.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "5B3GT4NNY7ZCKUY7.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "103872" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5B3GT4NNY7ZCKUY7.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "5B3GT4NNY7ZCKUY7", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "5B3GT4NNY7ZCKUY7.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "5B3GT4NNY7ZCKUY7.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "205000" + }, + "appliesTo" : [ ] + }, + "5B3GT4NNY7ZCKUY7.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "5B3GT4NNY7ZCKUY7.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5B3GT4NNY7ZCKUY7.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "5B3GT4NNY7ZCKUY7", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "5B3GT4NNY7ZCKUY7.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "5B3GT4NNY7ZCKUY7.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "225839" + }, + "appliesTo" : [ ] + }, + "5B3GT4NNY7ZCKUY7.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "5B3GT4NNY7ZCKUY7.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.5940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "5B3GT4NNY7ZCKUY7.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "5B3GT4NNY7ZCKUY7", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "5B3GT4NNY7ZCKUY7.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "5B3GT4NNY7ZCKUY7.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "407838" + }, + "appliesTo" : [ ] + }, + "5B3GT4NNY7ZCKUY7.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "5B3GT4NNY7ZCKUY7.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "5B3GT4NNY7ZCKUY7.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "5B3GT4NNY7ZCKUY7", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "5B3GT4NNY7ZCKUY7.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "5B3GT4NNY7ZCKUY7.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "210182" + }, + "appliesTo" : [ ] + }, + "5B3GT4NNY7ZCKUY7.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "5B3GT4NNY7ZCKUY7.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.9980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "5B3GT4NNY7ZCKUY7.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "5B3GT4NNY7ZCKUY7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5B3GT4NNY7ZCKUY7.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "5B3GT4NNY7ZCKUY7.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "26.9650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "5B3GT4NNY7ZCKUY7.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "5B3GT4NNY7ZCKUY7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5B3GT4NNY7ZCKUY7.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "5B3GT4NNY7ZCKUY7.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "114163" + }, + "appliesTo" : [ ] + }, + "5B3GT4NNY7ZCKUY7.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "5B3GT4NNY7ZCKUY7.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.0320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "5B3GT4NNY7ZCKUY7.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "5B3GT4NNY7ZCKUY7", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "5B3GT4NNY7ZCKUY7.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "5B3GT4NNY7ZCKUY7.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.6310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "5B3GT4NNY7ZCKUY7.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "5B3GT4NNY7ZCKUY7", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "5B3GT4NNY7ZCKUY7.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "5B3GT4NNY7ZCKUY7.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "17.9180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "5B3GT4NNY7ZCKUY7.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "5B3GT4NNY7ZCKUY7", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "5B3GT4NNY7ZCKUY7.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "5B3GT4NNY7ZCKUY7.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "5B3GT4NNY7ZCKUY7.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "5B3GT4NNY7ZCKUY7.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "446876" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "5B3GT4NNY7ZCKUY7.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "5B3GT4NNY7ZCKUY7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "5B3GT4NNY7ZCKUY7.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "5B3GT4NNY7ZCKUY7.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "225169" + }, + "appliesTo" : [ ] + }, + "5B3GT4NNY7ZCKUY7.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "5B3GT4NNY7ZCKUY7.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "5B3GT4NNY7ZCKUY7.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "5B3GT4NNY7ZCKUY7", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "5B3GT4NNY7ZCKUY7.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "5B3GT4NNY7ZCKUY7.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "24.4980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "WAWEH2Q4B3BTK68V" : { + "WAWEH2Q4B3BTK68V.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "WAWEH2Q4B3BTK68V", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "WAWEH2Q4B3BTK68V.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "WAWEH2Q4B3BTK68V.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20498" + }, + "appliesTo" : [ ] + }, + "WAWEH2Q4B3BTK68V.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "WAWEH2Q4B3BTK68V.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WAWEH2Q4B3BTK68V.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "WAWEH2Q4B3BTK68V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WAWEH2Q4B3BTK68V.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "WAWEH2Q4B3BTK68V.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "WAWEH2Q4B3BTK68V.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "WAWEH2Q4B3BTK68V.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46203" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WAWEH2Q4B3BTK68V.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "WAWEH2Q4B3BTK68V", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "WAWEH2Q4B3BTK68V.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "WAWEH2Q4B3BTK68V.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "40177" + }, + "appliesTo" : [ ] + }, + "WAWEH2Q4B3BTK68V.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "WAWEH2Q4B3BTK68V.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WAWEH2Q4B3BTK68V.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "WAWEH2Q4B3BTK68V", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "WAWEH2Q4B3BTK68V.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "WAWEH2Q4B3BTK68V.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "83991" + }, + "appliesTo" : [ ] + }, + "WAWEH2Q4B3BTK68V.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "WAWEH2Q4B3BTK68V.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WAWEH2Q4B3BTK68V.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "WAWEH2Q4B3BTK68V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "WAWEH2Q4B3BTK68V.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "WAWEH2Q4B3BTK68V.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "WAWEH2Q4B3BTK68V.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "WAWEH2Q4B3BTK68V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "WAWEH2Q4B3BTK68V.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "WAWEH2Q4B3BTK68V.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9550000000" + }, + "appliesTo" : [ ] + }, + "WAWEH2Q4B3BTK68V.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "WAWEH2Q4B3BTK68V.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "51378" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WAWEH2Q4B3BTK68V.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "WAWEH2Q4B3BTK68V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "WAWEH2Q4B3BTK68V.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "WAWEH2Q4B3BTK68V.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "44676" + }, + "appliesTo" : [ ] + }, + "WAWEH2Q4B3BTK68V.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "WAWEH2Q4B3BTK68V.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WAWEH2Q4B3BTK68V.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "WAWEH2Q4B3BTK68V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WAWEH2Q4B3BTK68V.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "WAWEH2Q4B3BTK68V.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.6510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WAWEH2Q4B3BTK68V.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "WAWEH2Q4B3BTK68V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "WAWEH2Q4B3BTK68V.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "WAWEH2Q4B3BTK68V.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "WAWEH2Q4B3BTK68V.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "WAWEH2Q4B3BTK68V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WAWEH2Q4B3BTK68V.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "WAWEH2Q4B3BTK68V.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23573" + }, + "appliesTo" : [ ] + }, + "WAWEH2Q4B3BTK68V.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "WAWEH2Q4B3BTK68V.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WAWEH2Q4B3BTK68V.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "WAWEH2Q4B3BTK68V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "WAWEH2Q4B3BTK68V.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "WAWEH2Q4B3BTK68V.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "WAWEH2Q4B3BTK68V.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "WAWEH2Q4B3BTK68V.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "100701" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WAWEH2Q4B3BTK68V.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "WAWEH2Q4B3BTK68V", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "WAWEH2Q4B3BTK68V.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "WAWEH2Q4B3BTK68V.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "B6RS3QA3WVNWUFKM" : { + "B6RS3QA3WVNWUFKM.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "B6RS3QA3WVNWUFKM", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "B6RS3QA3WVNWUFKM.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "B6RS3QA3WVNWUFKM.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "50335" + }, + "appliesTo" : [ ] + }, + "B6RS3QA3WVNWUFKM.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "B6RS3QA3WVNWUFKM.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "B6RS3QA3WVNWUFKM.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "B6RS3QA3WVNWUFKM", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "B6RS3QA3WVNWUFKM.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "B6RS3QA3WVNWUFKM.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "106048" + }, + "appliesTo" : [ ] + }, + "B6RS3QA3WVNWUFKM.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "B6RS3QA3WVNWUFKM.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "B6RS3QA3WVNWUFKM.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "B6RS3QA3WVNWUFKM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "B6RS3QA3WVNWUFKM.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "B6RS3QA3WVNWUFKM.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18575" + }, + "appliesTo" : [ ] + }, + "B6RS3QA3WVNWUFKM.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "B6RS3QA3WVNWUFKM.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "B6RS3QA3WVNWUFKM.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "B6RS3QA3WVNWUFKM", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "B6RS3QA3WVNWUFKM.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "B6RS3QA3WVNWUFKM.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "99940" + }, + "appliesTo" : [ ] + }, + "B6RS3QA3WVNWUFKM.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "B6RS3QA3WVNWUFKM.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "B6RS3QA3WVNWUFKM.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "B6RS3QA3WVNWUFKM", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "B6RS3QA3WVNWUFKM.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "B6RS3QA3WVNWUFKM.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.1650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "B6RS3QA3WVNWUFKM.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "B6RS3QA3WVNWUFKM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "B6RS3QA3WVNWUFKM.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "B6RS3QA3WVNWUFKM.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "36997" + }, + "appliesTo" : [ ] + }, + "B6RS3QA3WVNWUFKM.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "B6RS3QA3WVNWUFKM.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "B6RS3QA3WVNWUFKM.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "B6RS3QA3WVNWUFKM", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "B6RS3QA3WVNWUFKM.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "B6RS3QA3WVNWUFKM.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "B6RS3QA3WVNWUFKM.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "B6RS3QA3WVNWUFKM", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "B6RS3QA3WVNWUFKM.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "B6RS3QA3WVNWUFKM.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35999" + }, + "appliesTo" : [ ] + }, + "B6RS3QA3WVNWUFKM.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "B6RS3QA3WVNWUFKM.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "B6RS3QA3WVNWUFKM.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "B6RS3QA3WVNWUFKM", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "B6RS3QA3WVNWUFKM.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "B6RS3QA3WVNWUFKM.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0620000000" + }, + "appliesTo" : [ ] + }, + "B6RS3QA3WVNWUFKM.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "B6RS3QA3WVNWUFKM.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18066" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "B6RS3QA3WVNWUFKM.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "B6RS3QA3WVNWUFKM", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "B6RS3QA3WVNWUFKM.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "B6RS3QA3WVNWUFKM.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "53203" + }, + "appliesTo" : [ ] + }, + "B6RS3QA3WVNWUFKM.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "B6RS3QA3WVNWUFKM.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "B6RS3QA3WVNWUFKM.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "B6RS3QA3WVNWUFKM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "B6RS3QA3WVNWUFKM.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "B6RS3QA3WVNWUFKM.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "PPNHZGKEWXG9QZV3" : { + "PPNHZGKEWXG9QZV3.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "PPNHZGKEWXG9QZV3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PPNHZGKEWXG9QZV3.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "PPNHZGKEWXG9QZV3.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "54301" + }, + "appliesTo" : [ ] + }, + "PPNHZGKEWXG9QZV3.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "PPNHZGKEWXG9QZV3.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PPNHZGKEWXG9QZV3.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "PPNHZGKEWXG9QZV3", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "PPNHZGKEWXG9QZV3.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "PPNHZGKEWXG9QZV3.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "59021" + }, + "appliesTo" : [ ] + }, + "PPNHZGKEWXG9QZV3.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "PPNHZGKEWXG9QZV3.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PPNHZGKEWXG9QZV3.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "PPNHZGKEWXG9QZV3", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "PPNHZGKEWXG9QZV3.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "PPNHZGKEWXG9QZV3.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.2550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "PPNHZGKEWXG9QZV3.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "PPNHZGKEWXG9QZV3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PPNHZGKEWXG9QZV3.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "PPNHZGKEWXG9QZV3.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "115685" + }, + "appliesTo" : [ ] + }, + "PPNHZGKEWXG9QZV3.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "PPNHZGKEWXG9QZV3.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PPNHZGKEWXG9QZV3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "PPNHZGKEWXG9QZV3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PPNHZGKEWXG9QZV3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "PPNHZGKEWXG9QZV3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "97547" + }, + "appliesTo" : [ ] + }, + "PPNHZGKEWXG9QZV3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "PPNHZGKEWXG9QZV3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PPNHZGKEWXG9QZV3.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "PPNHZGKEWXG9QZV3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PPNHZGKEWXG9QZV3.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "PPNHZGKEWXG9QZV3.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "PPNHZGKEWXG9QZV3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "PPNHZGKEWXG9QZV3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PPNHZGKEWXG9QZV3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "PPNHZGKEWXG9QZV3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "40489" + }, + "appliesTo" : [ ] + }, + "PPNHZGKEWXG9QZV3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "PPNHZGKEWXG9QZV3.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PPNHZGKEWXG9QZV3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "PPNHZGKEWXG9QZV3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PPNHZGKEWXG9QZV3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "PPNHZGKEWXG9QZV3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "51888" + }, + "appliesTo" : [ ] + }, + "PPNHZGKEWXG9QZV3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "PPNHZGKEWXG9QZV3.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PPNHZGKEWXG9QZV3.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "PPNHZGKEWXG9QZV3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PPNHZGKEWXG9QZV3.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "PPNHZGKEWXG9QZV3.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.3508000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "PPNHZGKEWXG9QZV3.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "PPNHZGKEWXG9QZV3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PPNHZGKEWXG9QZV3.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "PPNHZGKEWXG9QZV3.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1211000000" + }, + "appliesTo" : [ ] + }, + "PPNHZGKEWXG9QZV3.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "PPNHZGKEWXG9QZV3.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27341" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PPNHZGKEWXG9QZV3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "PPNHZGKEWXG9QZV3", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "PPNHZGKEWXG9QZV3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "PPNHZGKEWXG9QZV3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3580000000" + }, + "appliesTo" : [ ] + }, + "PPNHZGKEWXG9QZV3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "PPNHZGKEWXG9QZV3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20659" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PPNHZGKEWXG9QZV3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "PPNHZGKEWXG9QZV3", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "PPNHZGKEWXG9QZV3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "PPNHZGKEWXG9QZV3.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.5180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "4CWD92A352MDCZ9Q" : { + "4CWD92A352MDCZ9Q.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "4CWD92A352MDCZ9Q", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "4CWD92A352MDCZ9Q.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "4CWD92A352MDCZ9Q.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2173" + }, + "appliesTo" : [ ] + }, + "4CWD92A352MDCZ9Q.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "4CWD92A352MDCZ9Q.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4CWD92A352MDCZ9Q.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "4CWD92A352MDCZ9Q", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "4CWD92A352MDCZ9Q.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "4CWD92A352MDCZ9Q.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "4CWD92A352MDCZ9Q.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "4CWD92A352MDCZ9Q.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1098" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4CWD92A352MDCZ9Q.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "4CWD92A352MDCZ9Q", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "4CWD92A352MDCZ9Q.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "4CWD92A352MDCZ9Q.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0530000000" + }, + "appliesTo" : [ ] + }, + "4CWD92A352MDCZ9Q.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "4CWD92A352MDCZ9Q.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "657" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4CWD92A352MDCZ9Q.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "4CWD92A352MDCZ9Q", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "4CWD92A352MDCZ9Q.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "4CWD92A352MDCZ9Q.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1638" + }, + "appliesTo" : [ ] + }, + "4CWD92A352MDCZ9Q.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "4CWD92A352MDCZ9Q.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4CWD92A352MDCZ9Q.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "4CWD92A352MDCZ9Q", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4CWD92A352MDCZ9Q.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "4CWD92A352MDCZ9Q.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1183" + }, + "appliesTo" : [ ] + }, + "4CWD92A352MDCZ9Q.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "4CWD92A352MDCZ9Q.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4CWD92A352MDCZ9Q.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "4CWD92A352MDCZ9Q", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "4CWD92A352MDCZ9Q.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "4CWD92A352MDCZ9Q.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1128" + }, + "appliesTo" : [ ] + }, + "4CWD92A352MDCZ9Q.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "4CWD92A352MDCZ9Q.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4CWD92A352MDCZ9Q.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "4CWD92A352MDCZ9Q", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "4CWD92A352MDCZ9Q.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "4CWD92A352MDCZ9Q.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2780" + }, + "appliesTo" : [ ] + }, + "4CWD92A352MDCZ9Q.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "4CWD92A352MDCZ9Q.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4CWD92A352MDCZ9Q.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "4CWD92A352MDCZ9Q", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4CWD92A352MDCZ9Q.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "4CWD92A352MDCZ9Q.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "4CWD92A352MDCZ9Q.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "4CWD92A352MDCZ9Q", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4CWD92A352MDCZ9Q.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "4CWD92A352MDCZ9Q.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "631" + }, + "appliesTo" : [ ] + }, + "4CWD92A352MDCZ9Q.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "4CWD92A352MDCZ9Q.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4CWD92A352MDCZ9Q.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "4CWD92A352MDCZ9Q", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "4CWD92A352MDCZ9Q.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "4CWD92A352MDCZ9Q.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "4CWD92A352MDCZ9Q.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "4CWD92A352MDCZ9Q", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "4CWD92A352MDCZ9Q.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "4CWD92A352MDCZ9Q.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "7NHNWKWH69EZHFFD" : { + "7NHNWKWH69EZHFFD.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "7NHNWKWH69EZHFFD", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "7NHNWKWH69EZHFFD.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "7NHNWKWH69EZHFFD.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1345" + }, + "appliesTo" : [ ] + }, + "7NHNWKWH69EZHFFD.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "7NHNWKWH69EZHFFD.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7NHNWKWH69EZHFFD.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "7NHNWKWH69EZHFFD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7NHNWKWH69EZHFFD.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "7NHNWKWH69EZHFFD.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7NHNWKWH69EZHFFD.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "7NHNWKWH69EZHFFD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7NHNWKWH69EZHFFD.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "7NHNWKWH69EZHFFD.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2149" + }, + "appliesTo" : [ ] + }, + "7NHNWKWH69EZHFFD.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "7NHNWKWH69EZHFFD.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7NHNWKWH69EZHFFD.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "7NHNWKWH69EZHFFD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7NHNWKWH69EZHFFD.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "7NHNWKWH69EZHFFD.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "828" + }, + "appliesTo" : [ ] + }, + "7NHNWKWH69EZHFFD.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "7NHNWKWH69EZHFFD.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7NHNWKWH69EZHFFD.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "7NHNWKWH69EZHFFD", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "7NHNWKWH69EZHFFD.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "7NHNWKWH69EZHFFD.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7NHNWKWH69EZHFFD.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "7NHNWKWH69EZHFFD", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "7NHNWKWH69EZHFFD.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "7NHNWKWH69EZHFFD.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5434" + }, + "appliesTo" : [ ] + }, + "7NHNWKWH69EZHFFD.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "7NHNWKWH69EZHFFD.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7NHNWKWH69EZHFFD.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "7NHNWKWH69EZHFFD", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "7NHNWKWH69EZHFFD.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "7NHNWKWH69EZHFFD.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "842" + }, + "appliesTo" : [ ] + }, + "7NHNWKWH69EZHFFD.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "7NHNWKWH69EZHFFD.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7NHNWKWH69EZHFFD.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "7NHNWKWH69EZHFFD", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7NHNWKWH69EZHFFD.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "7NHNWKWH69EZHFFD.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2273" + }, + "appliesTo" : [ ] + }, + "7NHNWKWH69EZHFFD.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "7NHNWKWH69EZHFFD.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7NHNWKWH69EZHFFD.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "7NHNWKWH69EZHFFD", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7NHNWKWH69EZHFFD.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "7NHNWKWH69EZHFFD.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7NHNWKWH69EZHFFD.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "7NHNWKWH69EZHFFD", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "7NHNWKWH69EZHFFD.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "7NHNWKWH69EZHFFD.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4228" + }, + "appliesTo" : [ ] + }, + "7NHNWKWH69EZHFFD.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "7NHNWKWH69EZHFFD.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7NHNWKWH69EZHFFD.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "7NHNWKWH69EZHFFD", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "7NHNWKWH69EZHFFD.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "7NHNWKWH69EZHFFD.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1954" + }, + "appliesTo" : [ ] + }, + "7NHNWKWH69EZHFFD.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "7NHNWKWH69EZHFFD.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "EZC8PDJ8658WHH9T" : { + "EZC8PDJ8658WHH9T.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "EZC8PDJ8658WHH9T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EZC8PDJ8658WHH9T.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "EZC8PDJ8658WHH9T.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8301000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "EZC8PDJ8658WHH9T.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "EZC8PDJ8658WHH9T", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "EZC8PDJ8658WHH9T.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "EZC8PDJ8658WHH9T.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "EZC8PDJ8658WHH9T.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "EZC8PDJ8658WHH9T.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26548" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EZC8PDJ8658WHH9T.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "EZC8PDJ8658WHH9T", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "EZC8PDJ8658WHH9T.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "EZC8PDJ8658WHH9T.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "EZC8PDJ8658WHH9T.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "EZC8PDJ8658WHH9T.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13197" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EZC8PDJ8658WHH9T.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "EZC8PDJ8658WHH9T", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EZC8PDJ8658WHH9T.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "EZC8PDJ8658WHH9T.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14096" + }, + "appliesTo" : [ ] + }, + "EZC8PDJ8658WHH9T.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "EZC8PDJ8658WHH9T.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6664000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "EZC8PDJ8658WHH9T.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "EZC8PDJ8658WHH9T", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EZC8PDJ8658WHH9T.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "EZC8PDJ8658WHH9T.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2885000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "EZC8PDJ8658WHH9T.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "EZC8PDJ8658WHH9T", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "EZC8PDJ8658WHH9T.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "EZC8PDJ8658WHH9T.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12304" + }, + "appliesTo" : [ ] + }, + "EZC8PDJ8658WHH9T.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "EZC8PDJ8658WHH9T.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EZC8PDJ8658WHH9T.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "EZC8PDJ8658WHH9T", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EZC8PDJ8658WHH9T.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "EZC8PDJ8658WHH9T.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6084000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "EZC8PDJ8658WHH9T.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "EZC8PDJ8658WHH9T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EZC8PDJ8658WHH9T.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "EZC8PDJ8658WHH9T.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9396000000" + }, + "appliesTo" : [ ] + }, + "EZC8PDJ8658WHH9T.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "EZC8PDJ8658WHH9T.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7092" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "EZC8PDJ8658WHH9T.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "EZC8PDJ8658WHH9T", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "EZC8PDJ8658WHH9T.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "EZC8PDJ8658WHH9T.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6152" + }, + "appliesTo" : [ ] + }, + "EZC8PDJ8658WHH9T.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "EZC8PDJ8658WHH9T.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EZC8PDJ8658WHH9T.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "EZC8PDJ8658WHH9T", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EZC8PDJ8658WHH9T.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "EZC8PDJ8658WHH9T.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15039" + }, + "appliesTo" : [ ] + }, + "EZC8PDJ8658WHH9T.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "EZC8PDJ8658WHH9T.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "EZC8PDJ8658WHH9T.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "EZC8PDJ8658WHH9T", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EZC8PDJ8658WHH9T.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "EZC8PDJ8658WHH9T.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1374000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "EZC8PDJ8658WHH9T.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "EZC8PDJ8658WHH9T", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EZC8PDJ8658WHH9T.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "EZC8PDJ8658WHH9T.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31044" + }, + "appliesTo" : [ ] + }, + "EZC8PDJ8658WHH9T.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "EZC8PDJ8658WHH9T.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "A3G83M36QWPVFFSP" : { + "A3G83M36QWPVFFSP.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "A3G83M36QWPVFFSP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "A3G83M36QWPVFFSP.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "A3G83M36QWPVFFSP.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "419" + }, + "appliesTo" : [ ] + }, + "A3G83M36QWPVFFSP.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "A3G83M36QWPVFFSP.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "A3G83M36QWPVFFSP.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "A3G83M36QWPVFFSP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "A3G83M36QWPVFFSP.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "A3G83M36QWPVFFSP.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0300000000" + }, + "appliesTo" : [ ] + }, + "A3G83M36QWPVFFSP.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "A3G83M36QWPVFFSP.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "165" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "A3G83M36QWPVFFSP.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "A3G83M36QWPVFFSP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "A3G83M36QWPVFFSP.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "A3G83M36QWPVFFSP.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "259" + }, + "appliesTo" : [ ] + }, + "A3G83M36QWPVFFSP.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "A3G83M36QWPVFFSP.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "A3G83M36QWPVFFSP.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "A3G83M36QWPVFFSP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "A3G83M36QWPVFFSP.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "A3G83M36QWPVFFSP.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "A3G83M36QWPVFFSP.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "A3G83M36QWPVFFSP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "A3G83M36QWPVFFSP.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "A3G83M36QWPVFFSP.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "960" + }, + "appliesTo" : [ ] + }, + "A3G83M36QWPVFFSP.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "A3G83M36QWPVFFSP.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "GS7JMPJ9ZA8J6K6K" : { + "GS7JMPJ9ZA8J6K6K.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "GS7JMPJ9ZA8J6K6K", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GS7JMPJ9ZA8J6K6K.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "GS7JMPJ9ZA8J6K6K.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1086" + }, + "appliesTo" : [ ] + }, + "GS7JMPJ9ZA8J6K6K.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "GS7JMPJ9ZA8J6K6K.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GS7JMPJ9ZA8J6K6K.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "GS7JMPJ9ZA8J6K6K", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GS7JMPJ9ZA8J6K6K.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "GS7JMPJ9ZA8J6K6K.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1838" + }, + "appliesTo" : [ ] + }, + "GS7JMPJ9ZA8J6K6K.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "GS7JMPJ9ZA8J6K6K.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GS7JMPJ9ZA8J6K6K.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "GS7JMPJ9ZA8J6K6K", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GS7JMPJ9ZA8J6K6K.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "GS7JMPJ9ZA8J6K6K.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GS7JMPJ9ZA8J6K6K.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "GS7JMPJ9ZA8J6K6K", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GS7JMPJ9ZA8J6K6K.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "GS7JMPJ9ZA8J6K6K.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1651" + }, + "appliesTo" : [ ] + }, + "GS7JMPJ9ZA8J6K6K.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "GS7JMPJ9ZA8J6K6K.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GS7JMPJ9ZA8J6K6K.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "GS7JMPJ9ZA8J6K6K", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "GS7JMPJ9ZA8J6K6K.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "GS7JMPJ9ZA8J6K6K.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "GS7JMPJ9ZA8J6K6K.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "GS7JMPJ9ZA8J6K6K.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3372" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "PHH3YFDMQYEVPEK4" : { + "PHH3YFDMQYEVPEK4.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "PHH3YFDMQYEVPEK4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PHH3YFDMQYEVPEK4.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "PHH3YFDMQYEVPEK4.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17327" + }, + "appliesTo" : [ ] + }, + "PHH3YFDMQYEVPEK4.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "PHH3YFDMQYEVPEK4.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PHH3YFDMQYEVPEK4.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "PHH3YFDMQYEVPEK4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PHH3YFDMQYEVPEK4.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "PHH3YFDMQYEVPEK4.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33906" + }, + "appliesTo" : [ ] + }, + "PHH3YFDMQYEVPEK4.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "PHH3YFDMQYEVPEK4.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PHH3YFDMQYEVPEK4.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "PHH3YFDMQYEVPEK4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PHH3YFDMQYEVPEK4.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "PHH3YFDMQYEVPEK4.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.7610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "PHH3YFDMQYEVPEK4.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "PHH3YFDMQYEVPEK4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PHH3YFDMQYEVPEK4.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "PHH3YFDMQYEVPEK4.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19900" + }, + "appliesTo" : [ ] + }, + "PHH3YFDMQYEVPEK4.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "PHH3YFDMQYEVPEK4.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PHH3YFDMQYEVPEK4.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "PHH3YFDMQYEVPEK4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PHH3YFDMQYEVPEK4.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "PHH3YFDMQYEVPEK4.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26447" + }, + "appliesTo" : [ ] + }, + "PHH3YFDMQYEVPEK4.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "PHH3YFDMQYEVPEK4.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PHH3YFDMQYEVPEK4.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "PHH3YFDMQYEVPEK4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PHH3YFDMQYEVPEK4.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "PHH3YFDMQYEVPEK4.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "PHH3YFDMQYEVPEK4.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "PHH3YFDMQYEVPEK4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PHH3YFDMQYEVPEK4.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "PHH3YFDMQYEVPEK4.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "49752" + }, + "appliesTo" : [ ] + }, + "PHH3YFDMQYEVPEK4.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "PHH3YFDMQYEVPEK4.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PHH3YFDMQYEVPEK4.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "PHH3YFDMQYEVPEK4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PHH3YFDMQYEVPEK4.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "PHH3YFDMQYEVPEK4.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1550000000" + }, + "appliesTo" : [ ] + }, + "PHH3YFDMQYEVPEK4.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "PHH3YFDMQYEVPEK4.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30361" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PHH3YFDMQYEVPEK4.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "PHH3YFDMQYEVPEK4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PHH3YFDMQYEVPEK4.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "PHH3YFDMQYEVPEK4.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "59511" + }, + "appliesTo" : [ ] + }, + "PHH3YFDMQYEVPEK4.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "PHH3YFDMQYEVPEK4.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PHH3YFDMQYEVPEK4.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "PHH3YFDMQYEVPEK4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PHH3YFDMQYEVPEK4.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "PHH3YFDMQYEVPEK4.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38948" + }, + "appliesTo" : [ ] + }, + "PHH3YFDMQYEVPEK4.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "PHH3YFDMQYEVPEK4.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PHH3YFDMQYEVPEK4.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "PHH3YFDMQYEVPEK4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PHH3YFDMQYEVPEK4.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "PHH3YFDMQYEVPEK4.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.1450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "PHH3YFDMQYEVPEK4.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "PHH3YFDMQYEVPEK4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PHH3YFDMQYEVPEK4.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "PHH3YFDMQYEVPEK4.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "T87WP8AU8KNBMRYM" : { + "T87WP8AU8KNBMRYM.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "T87WP8AU8KNBMRYM", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "T87WP8AU8KNBMRYM.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "T87WP8AU8KNBMRYM.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35741" + }, + "appliesTo" : [ ] + }, + "T87WP8AU8KNBMRYM.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "T87WP8AU8KNBMRYM.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "T87WP8AU8KNBMRYM.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "T87WP8AU8KNBMRYM", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "T87WP8AU8KNBMRYM.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "T87WP8AU8KNBMRYM.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17934" + }, + "appliesTo" : [ ] + }, + "T87WP8AU8KNBMRYM.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "T87WP8AU8KNBMRYM.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "T87WP8AU8KNBMRYM.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "T87WP8AU8KNBMRYM", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "T87WP8AU8KNBMRYM.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "T87WP8AU8KNBMRYM.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "52847" + }, + "appliesTo" : [ ] + }, + "T87WP8AU8KNBMRYM.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "T87WP8AU8KNBMRYM.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "T87WP8AU8KNBMRYM.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "T87WP8AU8KNBMRYM", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "T87WP8AU8KNBMRYM.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "T87WP8AU8KNBMRYM.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "T87WP8AU8KNBMRYM.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "T87WP8AU8KNBMRYM.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "99615" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "T87WP8AU8KNBMRYM.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "T87WP8AU8KNBMRYM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "T87WP8AU8KNBMRYM.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "T87WP8AU8KNBMRYM.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "T87WP8AU8KNBMRYM.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "T87WP8AU8KNBMRYM", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "T87WP8AU8KNBMRYM.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "T87WP8AU8KNBMRYM.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9090000000" + }, + "appliesTo" : [ ] + }, + "T87WP8AU8KNBMRYM.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "T87WP8AU8KNBMRYM.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "50162" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "T87WP8AU8KNBMRYM.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "T87WP8AU8KNBMRYM", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "T87WP8AU8KNBMRYM.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "T87WP8AU8KNBMRYM.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "105351" + }, + "appliesTo" : [ ] + }, + "T87WP8AU8KNBMRYM.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "T87WP8AU8KNBMRYM.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "T87WP8AU8KNBMRYM.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "T87WP8AU8KNBMRYM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "T87WP8AU8KNBMRYM.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "T87WP8AU8KNBMRYM.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18407" + }, + "appliesTo" : [ ] + }, + "T87WP8AU8KNBMRYM.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "T87WP8AU8KNBMRYM.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "T87WP8AU8KNBMRYM.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "T87WP8AU8KNBMRYM", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "T87WP8AU8KNBMRYM.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "T87WP8AU8KNBMRYM.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.1330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "T87WP8AU8KNBMRYM.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "T87WP8AU8KNBMRYM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "T87WP8AU8KNBMRYM.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "T87WP8AU8KNBMRYM.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "36667" + }, + "appliesTo" : [ ] + }, + "T87WP8AU8KNBMRYM.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "T87WP8AU8KNBMRYM.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "T87WP8AU8KNBMRYM.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "T87WP8AU8KNBMRYM", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "T87WP8AU8KNBMRYM.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "T87WP8AU8KNBMRYM.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "M9PVZPV4MHCKEKFH" : { + "M9PVZPV4MHCKEKFH.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "M9PVZPV4MHCKEKFH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M9PVZPV4MHCKEKFH.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "M9PVZPV4MHCKEKFH.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2025000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "M9PVZPV4MHCKEKFH.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "M9PVZPV4MHCKEKFH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M9PVZPV4MHCKEKFH.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "M9PVZPV4MHCKEKFH.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "517" + }, + "appliesTo" : [ ] + }, + "M9PVZPV4MHCKEKFH.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "M9PVZPV4MHCKEKFH.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "M9PVZPV4MHCKEKFH.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "M9PVZPV4MHCKEKFH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M9PVZPV4MHCKEKFH.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "M9PVZPV4MHCKEKFH.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "594" + }, + "appliesTo" : [ ] + }, + "M9PVZPV4MHCKEKFH.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "M9PVZPV4MHCKEKFH.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1279000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "M9PVZPV4MHCKEKFH.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "M9PVZPV4MHCKEKFH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M9PVZPV4MHCKEKFH.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "M9PVZPV4MHCKEKFH.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1839000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "M9PVZPV4MHCKEKFH.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "M9PVZPV4MHCKEKFH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M9PVZPV4MHCKEKFH.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "M9PVZPV4MHCKEKFH.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1691" + }, + "appliesTo" : [ ] + }, + "M9PVZPV4MHCKEKFH.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "M9PVZPV4MHCKEKFH.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "M9PVZPV4MHCKEKFH.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "M9PVZPV4MHCKEKFH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M9PVZPV4MHCKEKFH.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "M9PVZPV4MHCKEKFH.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3946" + }, + "appliesTo" : [ ] + }, + "M9PVZPV4MHCKEKFH.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "M9PVZPV4MHCKEKFH.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "M9PVZPV4MHCKEKFH.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "M9PVZPV4MHCKEKFH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M9PVZPV4MHCKEKFH.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "M9PVZPV4MHCKEKFH.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1464000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "M9PVZPV4MHCKEKFH.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "M9PVZPV4MHCKEKFH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M9PVZPV4MHCKEKFH.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "M9PVZPV4MHCKEKFH.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1209" + }, + "appliesTo" : [ ] + }, + "M9PVZPV4MHCKEKFH.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "M9PVZPV4MHCKEKFH.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "M9PVZPV4MHCKEKFH.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "M9PVZPV4MHCKEKFH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M9PVZPV4MHCKEKFH.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "M9PVZPV4MHCKEKFH.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1594000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "M9PVZPV4MHCKEKFH.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "M9PVZPV4MHCKEKFH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M9PVZPV4MHCKEKFH.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "M9PVZPV4MHCKEKFH.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1051" + }, + "appliesTo" : [ ] + }, + "M9PVZPV4MHCKEKFH.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "M9PVZPV4MHCKEKFH.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "M9PVZPV4MHCKEKFH.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "M9PVZPV4MHCKEKFH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M9PVZPV4MHCKEKFH.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "M9PVZPV4MHCKEKFH.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1539" + }, + "appliesTo" : [ ] + }, + "M9PVZPV4MHCKEKFH.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "M9PVZPV4MHCKEKFH.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "M9PVZPV4MHCKEKFH.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "M9PVZPV4MHCKEKFH", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M9PVZPV4MHCKEKFH.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "M9PVZPV4MHCKEKFH.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3553" + }, + "appliesTo" : [ ] + }, + "M9PVZPV4MHCKEKFH.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "M9PVZPV4MHCKEKFH.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "C6M58F98AZ4YZW7U" : { + "C6M58F98AZ4YZW7U.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "C6M58F98AZ4YZW7U", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "C6M58F98AZ4YZW7U.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "C6M58F98AZ4YZW7U.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15981" + }, + "appliesTo" : [ ] + }, + "C6M58F98AZ4YZW7U.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "C6M58F98AZ4YZW7U.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "C6M58F98AZ4YZW7U.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "C6M58F98AZ4YZW7U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "C6M58F98AZ4YZW7U.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "C6M58F98AZ4YZW7U.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8360000000" + }, + "appliesTo" : [ ] + }, + "C6M58F98AZ4YZW7U.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "C6M58F98AZ4YZW7U.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16082" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "C6M58F98AZ4YZW7U.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "C6M58F98AZ4YZW7U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "C6M58F98AZ4YZW7U.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "C6M58F98AZ4YZW7U.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "C6M58F98AZ4YZW7U.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "C6M58F98AZ4YZW7U.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32110" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "C6M58F98AZ4YZW7U.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "C6M58F98AZ4YZW7U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "C6M58F98AZ4YZW7U.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "C6M58F98AZ4YZW7U.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "C6M58F98AZ4YZW7U.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "C6M58F98AZ4YZW7U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "C6M58F98AZ4YZW7U.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "C6M58F98AZ4YZW7U.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "C6M58F98AZ4YZW7U.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "C6M58F98AZ4YZW7U", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "C6M58F98AZ4YZW7U.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "C6M58F98AZ4YZW7U.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46642" + }, + "appliesTo" : [ ] + }, + "C6M58F98AZ4YZW7U.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "C6M58F98AZ4YZW7U.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "C6M58F98AZ4YZW7U.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "C6M58F98AZ4YZW7U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "C6M58F98AZ4YZW7U.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "C6M58F98AZ4YZW7U.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "C6M58F98AZ4YZW7U.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "C6M58F98AZ4YZW7U.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "93854" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "C6M58F98AZ4YZW7U.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "C6M58F98AZ4YZW7U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "C6M58F98AZ4YZW7U.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "C6M58F98AZ4YZW7U.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46982" + }, + "appliesTo" : [ ] + }, + "C6M58F98AZ4YZW7U.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "C6M58F98AZ4YZW7U.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "C6M58F98AZ4YZW7U.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "C6M58F98AZ4YZW7U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "C6M58F98AZ4YZW7U.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "C6M58F98AZ4YZW7U.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "C6M58F98AZ4YZW7U.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "C6M58F98AZ4YZW7U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "C6M58F98AZ4YZW7U.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "C6M58F98AZ4YZW7U.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "92997" + }, + "appliesTo" : [ ] + }, + "C6M58F98AZ4YZW7U.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "C6M58F98AZ4YZW7U.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "C6M58F98AZ4YZW7U.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "C6M58F98AZ4YZW7U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "C6M58F98AZ4YZW7U.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "C6M58F98AZ4YZW7U.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "C6M58F98AZ4YZW7U.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "C6M58F98AZ4YZW7U", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "C6M58F98AZ4YZW7U.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "C6M58F98AZ4YZW7U.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "C6M58F98AZ4YZW7U.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "C6M58F98AZ4YZW7U.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31913" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "FUD3JZ9ZMGTAMQWY" : { + "FUD3JZ9ZMGTAMQWY.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "FUD3JZ9ZMGTAMQWY", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "FUD3JZ9ZMGTAMQWY.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "FUD3JZ9ZMGTAMQWY.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8583" + }, + "appliesTo" : [ ] + }, + "FUD3JZ9ZMGTAMQWY.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "FUD3JZ9ZMGTAMQWY.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FUD3JZ9ZMGTAMQWY.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "FUD3JZ9ZMGTAMQWY", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "FUD3JZ9ZMGTAMQWY.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "FUD3JZ9ZMGTAMQWY.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4960000000" + }, + "appliesTo" : [ ] + }, + "FUD3JZ9ZMGTAMQWY.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "FUD3JZ9ZMGTAMQWY.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4407" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FUD3JZ9ZMGTAMQWY.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "FUD3JZ9ZMGTAMQWY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FUD3JZ9ZMGTAMQWY.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "FUD3JZ9ZMGTAMQWY.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FUD3JZ9ZMGTAMQWY.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "FUD3JZ9ZMGTAMQWY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FUD3JZ9ZMGTAMQWY.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "FUD3JZ9ZMGTAMQWY.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FUD3JZ9ZMGTAMQWY.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "FUD3JZ9ZMGTAMQWY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FUD3JZ9ZMGTAMQWY.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "FUD3JZ9ZMGTAMQWY.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20123" + }, + "appliesTo" : [ ] + }, + "FUD3JZ9ZMGTAMQWY.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "FUD3JZ9ZMGTAMQWY.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FUD3JZ9ZMGTAMQWY.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "FUD3JZ9ZMGTAMQWY", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "FUD3JZ9ZMGTAMQWY.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "FUD3JZ9ZMGTAMQWY.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17023" + }, + "appliesTo" : [ ] + }, + "FUD3JZ9ZMGTAMQWY.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "FUD3JZ9ZMGTAMQWY.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FUD3JZ9ZMGTAMQWY.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "FUD3JZ9ZMGTAMQWY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FUD3JZ9ZMGTAMQWY.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "FUD3JZ9ZMGTAMQWY.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FUD3JZ9ZMGTAMQWY.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "FUD3JZ9ZMGTAMQWY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FUD3JZ9ZMGTAMQWY.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "FUD3JZ9ZMGTAMQWY.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9768" + }, + "appliesTo" : [ ] + }, + "FUD3JZ9ZMGTAMQWY.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "FUD3JZ9ZMGTAMQWY.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "FUD3JZ9ZMGTAMQWY.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "FUD3JZ9ZMGTAMQWY", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "FUD3JZ9ZMGTAMQWY.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "FUD3JZ9ZMGTAMQWY.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9038" + }, + "appliesTo" : [ ] + }, + "FUD3JZ9ZMGTAMQWY.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "FUD3JZ9ZMGTAMQWY.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FUD3JZ9ZMGTAMQWY.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "FUD3JZ9ZMGTAMQWY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FUD3JZ9ZMGTAMQWY.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "FUD3JZ9ZMGTAMQWY.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3900000000" + }, + "appliesTo" : [ ] + }, + "FUD3JZ9ZMGTAMQWY.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "FUD3JZ9ZMGTAMQWY.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10265" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FUD3JZ9ZMGTAMQWY.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "FUD3JZ9ZMGTAMQWY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FUD3JZ9ZMGTAMQWY.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "FUD3JZ9ZMGTAMQWY.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5012" + }, + "appliesTo" : [ ] + }, + "FUD3JZ9ZMGTAMQWY.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "FUD3JZ9ZMGTAMQWY.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FUD3JZ9ZMGTAMQWY.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "FUD3JZ9ZMGTAMQWY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "FUD3JZ9ZMGTAMQWY.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "FUD3JZ9ZMGTAMQWY.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "JV8XGJX4R2ZMWD28" : { + "JV8XGJX4R2ZMWD28.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "JV8XGJX4R2ZMWD28", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JV8XGJX4R2ZMWD28.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "JV8XGJX4R2ZMWD28.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6589" + }, + "appliesTo" : [ ] + }, + "JV8XGJX4R2ZMWD28.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "JV8XGJX4R2ZMWD28.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "JV8XGJX4R2ZMWD28.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "JV8XGJX4R2ZMWD28", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JV8XGJX4R2ZMWD28.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "JV8XGJX4R2ZMWD28.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "JV8XGJX4R2ZMWD28.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "JV8XGJX4R2ZMWD28", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "JV8XGJX4R2ZMWD28.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "JV8XGJX4R2ZMWD28.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5059" + }, + "appliesTo" : [ ] + }, + "JV8XGJX4R2ZMWD28.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "JV8XGJX4R2ZMWD28.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "JV8XGJX4R2ZMWD28.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "JV8XGJX4R2ZMWD28", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JV8XGJX4R2ZMWD28.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "JV8XGJX4R2ZMWD28.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "JV8XGJX4R2ZMWD28.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "JV8XGJX4R2ZMWD28", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "JV8XGJX4R2ZMWD28.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "JV8XGJX4R2ZMWD28.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35139" + }, + "appliesTo" : [ ] + }, + "JV8XGJX4R2ZMWD28.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "JV8XGJX4R2ZMWD28.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "JV8XGJX4R2ZMWD28.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "JV8XGJX4R2ZMWD28", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JV8XGJX4R2ZMWD28.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "JV8XGJX4R2ZMWD28.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13017" + }, + "appliesTo" : [ ] + }, + "JV8XGJX4R2ZMWD28.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "JV8XGJX4R2ZMWD28.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "JV8XGJX4R2ZMWD28.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "JV8XGJX4R2ZMWD28", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "JV8XGJX4R2ZMWD28.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "JV8XGJX4R2ZMWD28.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "JV8XGJX4R2ZMWD28.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "JV8XGJX4R2ZMWD28", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "JV8XGJX4R2ZMWD28.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "JV8XGJX4R2ZMWD28.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13976" + }, + "appliesTo" : [ ] + }, + "JV8XGJX4R2ZMWD28.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "JV8XGJX4R2ZMWD28.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "JV8XGJX4R2ZMWD28.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "JV8XGJX4R2ZMWD28", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "JV8XGJX4R2ZMWD28.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "JV8XGJX4R2ZMWD28.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "JV8XGJX4R2ZMWD28.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "JV8XGJX4R2ZMWD28.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28157" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JV8XGJX4R2ZMWD28.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "JV8XGJX4R2ZMWD28", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JV8XGJX4R2ZMWD28.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "JV8XGJX4R2ZMWD28.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12399" + }, + "appliesTo" : [ ] + }, + "JV8XGJX4R2ZMWD28.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "JV8XGJX4R2ZMWD28.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JV8XGJX4R2ZMWD28.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "JV8XGJX4R2ZMWD28", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JV8XGJX4R2ZMWD28.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "JV8XGJX4R2ZMWD28.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6840000000" + }, + "appliesTo" : [ ] + }, + "JV8XGJX4R2ZMWD28.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "JV8XGJX4R2ZMWD28.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11975" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "MDWHVPMZ3JHUF4C8" : { + "MDWHVPMZ3JHUF4C8.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "MDWHVPMZ3JHUF4C8", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "MDWHVPMZ3JHUF4C8.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "MDWHVPMZ3JHUF4C8.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6303" + }, + "appliesTo" : [ ] + }, + "MDWHVPMZ3JHUF4C8.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "MDWHVPMZ3JHUF4C8.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MDWHVPMZ3JHUF4C8.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "MDWHVPMZ3JHUF4C8", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MDWHVPMZ3JHUF4C8.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "MDWHVPMZ3JHUF4C8.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MDWHVPMZ3JHUF4C8.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "MDWHVPMZ3JHUF4C8", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MDWHVPMZ3JHUF4C8.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "MDWHVPMZ3JHUF4C8.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4100000000" + }, + "appliesTo" : [ ] + }, + "MDWHVPMZ3JHUF4C8.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "MDWHVPMZ3JHUF4C8.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2398" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MDWHVPMZ3JHUF4C8.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "MDWHVPMZ3JHUF4C8", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MDWHVPMZ3JHUF4C8.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "MDWHVPMZ3JHUF4C8.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "MDWHVPMZ3JHUF4C8.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "MDWHVPMZ3JHUF4C8.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5872" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MDWHVPMZ3JHUF4C8.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "MDWHVPMZ3JHUF4C8", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MDWHVPMZ3JHUF4C8.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "MDWHVPMZ3JHUF4C8.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14810" + }, + "appliesTo" : [ ] + }, + "MDWHVPMZ3JHUF4C8.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "MDWHVPMZ3JHUF4C8.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "9E9PKC86XNNXZ5RW" : { + "9E9PKC86XNNXZ5RW.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "9E9PKC86XNNXZ5RW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9E9PKC86XNNXZ5RW.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "9E9PKC86XNNXZ5RW.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "118340" + }, + "appliesTo" : [ ] + }, + "9E9PKC86XNNXZ5RW.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "9E9PKC86XNNXZ5RW.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9E9PKC86XNNXZ5RW.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "9E9PKC86XNNXZ5RW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "9E9PKC86XNNXZ5RW.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "9E9PKC86XNNXZ5RW.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "321096" + }, + "appliesTo" : [ ] + }, + "9E9PKC86XNNXZ5RW.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "9E9PKC86XNNXZ5RW.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9E9PKC86XNNXZ5RW.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "9E9PKC86XNNXZ5RW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "9E9PKC86XNNXZ5RW.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "9E9PKC86XNNXZ5RW.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.4557000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9E9PKC86XNNXZ5RW.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "9E9PKC86XNNXZ5RW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "9E9PKC86XNNXZ5RW.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "9E9PKC86XNNXZ5RW.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.7304000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9E9PKC86XNNXZ5RW.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "9E9PKC86XNNXZ5RW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "9E9PKC86XNNXZ5RW.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "9E9PKC86XNNXZ5RW.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "9E9PKC86XNNXZ5RW.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "9E9PKC86XNNXZ5RW.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "115043" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9E9PKC86XNNXZ5RW.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "9E9PKC86XNNXZ5RW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "9E9PKC86XNNXZ5RW.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "9E9PKC86XNNXZ5RW.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "161885" + }, + "appliesTo" : [ ] + }, + "9E9PKC86XNNXZ5RW.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "9E9PKC86XNNXZ5RW.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.1600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9E9PKC86XNNXZ5RW.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "9E9PKC86XNNXZ5RW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "9E9PKC86XNNXZ5RW.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "9E9PKC86XNNXZ5RW.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "165228" + }, + "appliesTo" : [ ] + }, + "9E9PKC86XNNXZ5RW.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "9E9PKC86XNNXZ5RW.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.2872000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9E9PKC86XNNXZ5RW.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "9E9PKC86XNNXZ5RW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9E9PKC86XNNXZ5RW.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "9E9PKC86XNNXZ5RW.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.7152000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9E9PKC86XNNXZ5RW.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "9E9PKC86XNNXZ5RW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9E9PKC86XNNXZ5RW.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "9E9PKC86XNNXZ5RW.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "59428" + }, + "appliesTo" : [ ] + }, + "9E9PKC86XNNXZ5RW.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "9E9PKC86XNNXZ5RW.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.7840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9E9PKC86XNNXZ5RW.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "9E9PKC86XNNXZ5RW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "9E9PKC86XNNXZ5RW.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "9E9PKC86XNNXZ5RW.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "329430" + }, + "appliesTo" : [ ] + }, + "9E9PKC86XNNXZ5RW.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "9E9PKC86XNNXZ5RW.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9E9PKC86XNNXZ5RW.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "9E9PKC86XNNXZ5RW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "9E9PKC86XNNXZ5RW.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "9E9PKC86XNNXZ5RW.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.3120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9E9PKC86XNNXZ5RW.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "9E9PKC86XNNXZ5RW", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "9E9PKC86XNNXZ5RW.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "9E9PKC86XNNXZ5RW.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.5920000000" + }, + "appliesTo" : [ ] + }, + "9E9PKC86XNNXZ5RW.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "9E9PKC86XNNXZ5RW.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "57746" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "GT4TKK9K9AXX36E5" : { + "GT4TKK9K9AXX36E5.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "GT4TKK9K9AXX36E5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GT4TKK9K9AXX36E5.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "GT4TKK9K9AXX36E5.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "GT4TKK9K9AXX36E5.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "GT4TKK9K9AXX36E5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GT4TKK9K9AXX36E5.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "GT4TKK9K9AXX36E5.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GT4TKK9K9AXX36E5.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "GT4TKK9K9AXX36E5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GT4TKK9K9AXX36E5.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "GT4TKK9K9AXX36E5.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7646" + }, + "appliesTo" : [ ] + }, + "GT4TKK9K9AXX36E5.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "GT4TKK9K9AXX36E5.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GT4TKK9K9AXX36E5.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "GT4TKK9K9AXX36E5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GT4TKK9K9AXX36E5.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "GT4TKK9K9AXX36E5.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6626" + }, + "appliesTo" : [ ] + }, + "GT4TKK9K9AXX36E5.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "GT4TKK9K9AXX36E5.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GT4TKK9K9AXX36E5.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "GT4TKK9K9AXX36E5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GT4TKK9K9AXX36E5.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "GT4TKK9K9AXX36E5.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16125" + }, + "appliesTo" : [ ] + }, + "GT4TKK9K9AXX36E5.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "GT4TKK9K9AXX36E5.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "GT4TKK9K9AXX36E5.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "GT4TKK9K9AXX36E5", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "GT4TKK9K9AXX36E5.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "GT4TKK9K9AXX36E5.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "GT4TKK9K9AXX36E5.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "GT4TKK9K9AXX36E5", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "GT4TKK9K9AXX36E5.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "GT4TKK9K9AXX36E5.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8240000000" + }, + "appliesTo" : [ ] + }, + "GT4TKK9K9AXX36E5.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "GT4TKK9K9AXX36E5.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17890" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GT4TKK9K9AXX36E5.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "GT4TKK9K9AXX36E5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GT4TKK9K9AXX36E5.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "GT4TKK9K9AXX36E5.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26390" + }, + "appliesTo" : [ ] + }, + "GT4TKK9K9AXX36E5.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "GT4TKK9K9AXX36E5.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GT4TKK9K9AXX36E5.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "GT4TKK9K9AXX36E5", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "GT4TKK9K9AXX36E5.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "GT4TKK9K9AXX36E5.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14219" + }, + "appliesTo" : [ ] + }, + "GT4TKK9K9AXX36E5.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "GT4TKK9K9AXX36E5.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GT4TKK9K9AXX36E5.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "GT4TKK9K9AXX36E5", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "GT4TKK9K9AXX36E5.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "GT4TKK9K9AXX36E5.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38760" + }, + "appliesTo" : [ ] + }, + "GT4TKK9K9AXX36E5.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "GT4TKK9K9AXX36E5.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "GT4TKK9K9AXX36E5.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "GT4TKK9K9AXX36E5", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "GT4TKK9K9AXX36E5.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "GT4TKK9K9AXX36E5.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12175" + }, + "appliesTo" : [ ] + }, + "GT4TKK9K9AXX36E5.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "GT4TKK9K9AXX36E5.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "3X6QM8VEN9SGUP4E" : { + "3X6QM8VEN9SGUP4E.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "3X6QM8VEN9SGUP4E", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "3X6QM8VEN9SGUP4E.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "3X6QM8VEN9SGUP4E.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3580" + }, + "appliesTo" : [ ] + }, + "3X6QM8VEN9SGUP4E.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "3X6QM8VEN9SGUP4E.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3X6QM8VEN9SGUP4E.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "3X6QM8VEN9SGUP4E", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3X6QM8VEN9SGUP4E.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "3X6QM8VEN9SGUP4E.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1400000000" + }, + "appliesTo" : [ ] + }, + "3X6QM8VEN9SGUP4E.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "3X6QM8VEN9SGUP4E.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3163" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3X6QM8VEN9SGUP4E.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "3X6QM8VEN9SGUP4E", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3X6QM8VEN9SGUP4E.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "3X6QM8VEN9SGUP4E.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6422" + }, + "appliesTo" : [ ] + }, + "3X6QM8VEN9SGUP4E.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "3X6QM8VEN9SGUP4E.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3X6QM8VEN9SGUP4E.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "3X6QM8VEN9SGUP4E", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "3X6QM8VEN9SGUP4E.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "3X6QM8VEN9SGUP4E.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2083" + }, + "appliesTo" : [ ] + }, + "3X6QM8VEN9SGUP4E.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "3X6QM8VEN9SGUP4E.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3X6QM8VEN9SGUP4E.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "3X6QM8VEN9SGUP4E", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3X6QM8VEN9SGUP4E.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "3X6QM8VEN9SGUP4E.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "FFSCXMMMXUSSXA8W" : { + "FFSCXMMMXUSSXA8W.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "FFSCXMMMXUSSXA8W", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "FFSCXMMMXUSSXA8W.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "FFSCXMMMXUSSXA8W.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9067" + }, + "appliesTo" : [ ] + }, + "FFSCXMMMXUSSXA8W.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "FFSCXMMMXUSSXA8W.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FFSCXMMMXUSSXA8W.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "FFSCXMMMXUSSXA8W", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FFSCXMMMXUSSXA8W.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "FFSCXMMMXUSSXA8W.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FFSCXMMMXUSSXA8W.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "FFSCXMMMXUSSXA8W", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FFSCXMMMXUSSXA8W.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "FFSCXMMMXUSSXA8W.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9414" + }, + "appliesTo" : [ ] + }, + "FFSCXMMMXUSSXA8W.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "FFSCXMMMXUSSXA8W.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "FFSCXMMMXUSSXA8W.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "FFSCXMMMXUSSXA8W", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FFSCXMMMXUSSXA8W.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "FFSCXMMMXUSSXA8W.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "FFSCXMMMXUSSXA8W.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "FFSCXMMMXUSSXA8W", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "FFSCXMMMXUSSXA8W.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "FFSCXMMMXUSSXA8W.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17870" + }, + "appliesTo" : [ ] + }, + "FFSCXMMMXUSSXA8W.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "FFSCXMMMXUSSXA8W.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FFSCXMMMXUSSXA8W.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "FFSCXMMMXUSSXA8W", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FFSCXMMMXUSSXA8W.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "FFSCXMMMXUSSXA8W.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4540000000" + }, + "appliesTo" : [ ] + }, + "FFSCXMMMXUSSXA8W.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "FFSCXMMMXUSSXA8W.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3977" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "FFSCXMMMXUSSXA8W.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "FFSCXMMMXUSSXA8W", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "FFSCXMMMXUSSXA8W.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "FFSCXMMMXUSSXA8W.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "FFSCXMMMXUSSXA8W.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "FFSCXMMMXUSSXA8W.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7796" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "FFSCXMMMXUSSXA8W.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "FFSCXMMMXUSSXA8W", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FFSCXMMMXUSSXA8W.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "FFSCXMMMXUSSXA8W.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "FFSCXMMMXUSSXA8W.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "FFSCXMMMXUSSXA8W", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "FFSCXMMMXUSSXA8W.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "FFSCXMMMXUSSXA8W.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "FFSCXMMMXUSSXA8W.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "FFSCXMMMXUSSXA8W.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18720" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "VNT94W34YSHKDST8" : { + "VNT94W34YSHKDST8.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "VNT94W34YSHKDST8", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "VNT94W34YSHKDST8.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "VNT94W34YSHKDST8.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "345760" + }, + "appliesTo" : [ ] + }, + "VNT94W34YSHKDST8.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "VNT94W34YSHKDST8.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VNT94W34YSHKDST8.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "VNT94W34YSHKDST8", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "VNT94W34YSHKDST8.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "VNT94W34YSHKDST8.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.0630000000" + }, + "appliesTo" : [ ] + }, + "VNT94W34YSHKDST8.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "VNT94W34YSHKDST8.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "129632" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VNT94W34YSHKDST8.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "VNT94W34YSHKDST8", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "VNT94W34YSHKDST8.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "VNT94W34YSHKDST8.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.4860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VNT94W34YSHKDST8.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "VNT94W34YSHKDST8", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "VNT94W34YSHKDST8.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "VNT94W34YSHKDST8.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "174665" + }, + "appliesTo" : [ ] + }, + "VNT94W34YSHKDST8.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "VNT94W34YSHKDST8.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.7760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VNT94W34YSHKDST8.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "VNT94W34YSHKDST8", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "VNT94W34YSHKDST8.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "VNT94W34YSHKDST8.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "VNT94W34YSHKDST8.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "VNT94W34YSHKDST8.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "137740" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VNT94W34YSHKDST8.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "VNT94W34YSHKDST8", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "VNT94W34YSHKDST8.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "VNT94W34YSHKDST8.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "VNT94W34YSHKDST8.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "VNT94W34YSHKDST8.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "247124" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VNT94W34YSHKDST8.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "VNT94W34YSHKDST8", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "VNT94W34YSHKDST8.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "VNT94W34YSHKDST8.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.8380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VNT94W34YSHKDST8.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "VNT94W34YSHKDST8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VNT94W34YSHKDST8.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "VNT94W34YSHKDST8.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.2860000000" + }, + "appliesTo" : [ ] + }, + "VNT94W34YSHKDST8.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "VNT94W34YSHKDST8.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "80202" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VNT94W34YSHKDST8.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "VNT94W34YSHKDST8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VNT94W34YSHKDST8.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "VNT94W34YSHKDST8.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "19.3570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VNT94W34YSHKDST8.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "VNT94W34YSHKDST8", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "VNT94W34YSHKDST8.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "VNT94W34YSHKDST8.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "69695" + }, + "appliesTo" : [ ] + }, + "VNT94W34YSHKDST8.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "VNT94W34YSHKDST8.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.0860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VNT94W34YSHKDST8.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "VNT94W34YSHKDST8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VNT94W34YSHKDST8.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "VNT94W34YSHKDST8.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "158335" + }, + "appliesTo" : [ ] + }, + "VNT94W34YSHKDST8.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "VNT94W34YSHKDST8.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VNT94W34YSHKDST8.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "VNT94W34YSHKDST8", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "VNT94W34YSHKDST8.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "VNT94W34YSHKDST8.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.7850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "RSKUKWVCVPG8AZB5" : { + "RSKUKWVCVPG8AZB5.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "RSKUKWVCVPG8AZB5", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "RSKUKWVCVPG8AZB5.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "RSKUKWVCVPG8AZB5.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3247" + }, + "appliesTo" : [ ] + }, + "RSKUKWVCVPG8AZB5.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "RSKUKWVCVPG8AZB5.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RSKUKWVCVPG8AZB5.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "RSKUKWVCVPG8AZB5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RSKUKWVCVPG8AZB5.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "RSKUKWVCVPG8AZB5.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RSKUKWVCVPG8AZB5.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "RSKUKWVCVPG8AZB5", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RSKUKWVCVPG8AZB5.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "RSKUKWVCVPG8AZB5.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1657" + }, + "appliesTo" : [ ] + }, + "RSKUKWVCVPG8AZB5.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "RSKUKWVCVPG8AZB5.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RSKUKWVCVPG8AZB5.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "RSKUKWVCVPG8AZB5", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "RSKUKWVCVPG8AZB5.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "RSKUKWVCVPG8AZB5.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8767" + }, + "appliesTo" : [ ] + }, + "RSKUKWVCVPG8AZB5.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "RSKUKWVCVPG8AZB5.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RSKUKWVCVPG8AZB5.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "RSKUKWVCVPG8AZB5", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "RSKUKWVCVPG8AZB5.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "RSKUKWVCVPG8AZB5.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RSKUKWVCVPG8AZB5.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "RSKUKWVCVPG8AZB5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RSKUKWVCVPG8AZB5.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "RSKUKWVCVPG8AZB5.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3044" + }, + "appliesTo" : [ ] + }, + "RSKUKWVCVPG8AZB5.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "RSKUKWVCVPG8AZB5.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RSKUKWVCVPG8AZB5.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "RSKUKWVCVPG8AZB5", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "RSKUKWVCVPG8AZB5.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "RSKUKWVCVPG8AZB5.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4474" + }, + "appliesTo" : [ ] + }, + "RSKUKWVCVPG8AZB5.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "RSKUKWVCVPG8AZB5.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RSKUKWVCVPG8AZB5.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "RSKUKWVCVPG8AZB5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RSKUKWVCVPG8AZB5.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "RSKUKWVCVPG8AZB5.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3747" + }, + "appliesTo" : [ ] + }, + "RSKUKWVCVPG8AZB5.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "RSKUKWVCVPG8AZB5.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RSKUKWVCVPG8AZB5.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "RSKUKWVCVPG8AZB5", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RSKUKWVCVPG8AZB5.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "RSKUKWVCVPG8AZB5.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "RSKUKWVCVPG8AZB5.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "RSKUKWVCVPG8AZB5.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5715" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RSKUKWVCVPG8AZB5.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "RSKUKWVCVPG8AZB5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RSKUKWVCVPG8AZB5.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "RSKUKWVCVPG8AZB5.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2180000000" + }, + "appliesTo" : [ ] + }, + "RSKUKWVCVPG8AZB5.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "RSKUKWVCVPG8AZB5.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1912" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RSKUKWVCVPG8AZB5.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "RSKUKWVCVPG8AZB5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RSKUKWVCVPG8AZB5.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "RSKUKWVCVPG8AZB5.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "E598E3ESM66XHVUP" : { + "E598E3ESM66XHVUP.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "E598E3ESM66XHVUP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "E598E3ESM66XHVUP.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "E598E3ESM66XHVUP.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "E598E3ESM66XHVUP.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "E598E3ESM66XHVUP", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "E598E3ESM66XHVUP.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "E598E3ESM66XHVUP.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "E598E3ESM66XHVUP.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "E598E3ESM66XHVUP", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "E598E3ESM66XHVUP.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "E598E3ESM66XHVUP.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4727" + }, + "appliesTo" : [ ] + }, + "E598E3ESM66XHVUP.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "E598E3ESM66XHVUP.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "E598E3ESM66XHVUP.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "E598E3ESM66XHVUP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "E598E3ESM66XHVUP.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "E598E3ESM66XHVUP.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0970000000" + }, + "appliesTo" : [ ] + }, + "E598E3ESM66XHVUP.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "E598E3ESM66XHVUP.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "852" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "E598E3ESM66XHVUP.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "E598E3ESM66XHVUP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "E598E3ESM66XHVUP.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "E598E3ESM66XHVUP.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1695" + }, + "appliesTo" : [ ] + }, + "E598E3ESM66XHVUP.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "E598E3ESM66XHVUP.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "E598E3ESM66XHVUP.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "E598E3ESM66XHVUP", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "E598E3ESM66XHVUP.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "E598E3ESM66XHVUP.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "E598E3ESM66XHVUP.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "E598E3ESM66XHVUP.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4073" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "E598E3ESM66XHVUP.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "E598E3ESM66XHVUP", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "E598E3ESM66XHVUP.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "E598E3ESM66XHVUP.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1914" + }, + "appliesTo" : [ ] + }, + "E598E3ESM66XHVUP.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "E598E3ESM66XHVUP.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "E598E3ESM66XHVUP.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "E598E3ESM66XHVUP", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "E598E3ESM66XHVUP.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "E598E3ESM66XHVUP.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1130000000" + }, + "appliesTo" : [ ] + }, + "E598E3ESM66XHVUP.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "E598E3ESM66XHVUP.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "659" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "E598E3ESM66XHVUP.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "E598E3ESM66XHVUP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "E598E3ESM66XHVUP.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "E598E3ESM66XHVUP.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1731" + }, + "appliesTo" : [ ] + }, + "E598E3ESM66XHVUP.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "E598E3ESM66XHVUP.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "E598E3ESM66XHVUP.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "E598E3ESM66XHVUP", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "E598E3ESM66XHVUP.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "E598E3ESM66XHVUP.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "E598E3ESM66XHVUP.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "E598E3ESM66XHVUP.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1611" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "E598E3ESM66XHVUP.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "E598E3ESM66XHVUP", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "E598E3ESM66XHVUP.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "E598E3ESM66XHVUP.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "R48BU675BDZRSA46" : { + "R48BU675BDZRSA46.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "R48BU675BDZRSA46", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "R48BU675BDZRSA46.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "R48BU675BDZRSA46.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "R48BU675BDZRSA46.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "R48BU675BDZRSA46", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "R48BU675BDZRSA46.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "R48BU675BDZRSA46.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0630000000" + }, + "appliesTo" : [ ] + }, + "R48BU675BDZRSA46.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "R48BU675BDZRSA46.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1102" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "R48BU675BDZRSA46.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "R48BU675BDZRSA46", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "R48BU675BDZRSA46.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "R48BU675BDZRSA46.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "R48BU675BDZRSA46.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "R48BU675BDZRSA46.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1135" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "R48BU675BDZRSA46.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "R48BU675BDZRSA46", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "R48BU675BDZRSA46.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "R48BU675BDZRSA46.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "466" + }, + "appliesTo" : [ ] + }, + "R48BU675BDZRSA46.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "R48BU675BDZRSA46.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "R48BU675BDZRSA46.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "R48BU675BDZRSA46", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "R48BU675BDZRSA46.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "R48BU675BDZRSA46.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2592" + }, + "appliesTo" : [ ] + }, + "R48BU675BDZRSA46.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "R48BU675BDZRSA46.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "CNBDW56G9K7XSBK4" : { + "CNBDW56G9K7XSBK4.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "CNBDW56G9K7XSBK4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CNBDW56G9K7XSBK4.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "CNBDW56G9K7XSBK4.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8013" + }, + "appliesTo" : [ ] + }, + "CNBDW56G9K7XSBK4.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "CNBDW56G9K7XSBK4.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CNBDW56G9K7XSBK4.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "CNBDW56G9K7XSBK4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CNBDW56G9K7XSBK4.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "CNBDW56G9K7XSBK4.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CNBDW56G9K7XSBK4.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "CNBDW56G9K7XSBK4", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "CNBDW56G9K7XSBK4.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "CNBDW56G9K7XSBK4.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CNBDW56G9K7XSBK4.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "CNBDW56G9K7XSBK4", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "CNBDW56G9K7XSBK4.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "CNBDW56G9K7XSBK4.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47209" + }, + "appliesTo" : [ ] + }, + "CNBDW56G9K7XSBK4.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "CNBDW56G9K7XSBK4.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CNBDW56G9K7XSBK4.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "CNBDW56G9K7XSBK4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CNBDW56G9K7XSBK4.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "CNBDW56G9K7XSBK4.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "CNBDW56G9K7XSBK4.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "CNBDW56G9K7XSBK4.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CNBDW56G9K7XSBK4.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "CNBDW56G9K7XSBK4", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "CNBDW56G9K7XSBK4.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "CNBDW56G9K7XSBK4.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9060000000" + }, + "appliesTo" : [ ] + }, + "CNBDW56G9K7XSBK4.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "CNBDW56G9K7XSBK4.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7934" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CNBDW56G9K7XSBK4.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "CNBDW56G9K7XSBK4", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "CNBDW56G9K7XSBK4.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "CNBDW56G9K7XSBK4.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23634" + }, + "appliesTo" : [ ] + }, + "CNBDW56G9K7XSBK4.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "CNBDW56G9K7XSBK4.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CNBDW56G9K7XSBK4.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "CNBDW56G9K7XSBK4", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "CNBDW56G9K7XSBK4.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "CNBDW56G9K7XSBK4.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23228" + }, + "appliesTo" : [ ] + }, + "CNBDW56G9K7XSBK4.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "CNBDW56G9K7XSBK4.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CNBDW56G9K7XSBK4.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "CNBDW56G9K7XSBK4", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "CNBDW56G9K7XSBK4.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "CNBDW56G9K7XSBK4.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "CNBDW56G9K7XSBK4.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "CNBDW56G9K7XSBK4.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15846" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CNBDW56G9K7XSBK4.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "CNBDW56G9K7XSBK4", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "CNBDW56G9K7XSBK4.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "CNBDW56G9K7XSBK4.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CNBDW56G9K7XSBK4.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "CNBDW56G9K7XSBK4", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "CNBDW56G9K7XSBK4.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "CNBDW56G9K7XSBK4.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46323" + }, + "appliesTo" : [ ] + }, + "CNBDW56G9K7XSBK4.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "CNBDW56G9K7XSBK4.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "HK2GMCFHXFH3NGAD" : { + "HK2GMCFHXFH3NGAD.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "HK2GMCFHXFH3NGAD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HK2GMCFHXFH3NGAD.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "HK2GMCFHXFH3NGAD.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15423" + }, + "appliesTo" : [ ] + }, + "HK2GMCFHXFH3NGAD.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "HK2GMCFHXFH3NGAD.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "HK2GMCFHXFH3NGAD.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "HK2GMCFHXFH3NGAD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HK2GMCFHXFH3NGAD.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "HK2GMCFHXFH3NGAD.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6143" + }, + "appliesTo" : [ ] + }, + "HK2GMCFHXFH3NGAD.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "HK2GMCFHXFH3NGAD.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HK2GMCFHXFH3NGAD.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "HK2GMCFHXFH3NGAD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HK2GMCFHXFH3NGAD.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "HK2GMCFHXFH3NGAD.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7064" + }, + "appliesTo" : [ ] + }, + "HK2GMCFHXFH3NGAD.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "HK2GMCFHXFH3NGAD.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HK2GMCFHXFH3NGAD.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "HK2GMCFHXFH3NGAD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HK2GMCFHXFH3NGAD.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "HK2GMCFHXFH3NGAD.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "HK2GMCFHXFH3NGAD.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "HK2GMCFHXFH3NGAD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HK2GMCFHXFH3NGAD.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "HK2GMCFHXFH3NGAD.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3241" + }, + "appliesTo" : [ ] + }, + "HK2GMCFHXFH3NGAD.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "HK2GMCFHXFH3NGAD.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HK2GMCFHXFH3NGAD.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "HK2GMCFHXFH3NGAD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HK2GMCFHXFH3NGAD.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "HK2GMCFHXFH3NGAD.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6879" + }, + "appliesTo" : [ ] + }, + "HK2GMCFHXFH3NGAD.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "HK2GMCFHXFH3NGAD.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "HK2GMCFHXFH3NGAD.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "HK2GMCFHXFH3NGAD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HK2GMCFHXFH3NGAD.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "HK2GMCFHXFH3NGAD.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "HK2GMCFHXFH3NGAD.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "HK2GMCFHXFH3NGAD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HK2GMCFHXFH3NGAD.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "HK2GMCFHXFH3NGAD.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "HK2GMCFHXFH3NGAD.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "HK2GMCFHXFH3NGAD", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "HK2GMCFHXFH3NGAD.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "HK2GMCFHXFH3NGAD.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2819" + }, + "appliesTo" : [ ] + }, + "HK2GMCFHXFH3NGAD.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "HK2GMCFHXFH3NGAD.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HK2GMCFHXFH3NGAD.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "HK2GMCFHXFH3NGAD", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "HK2GMCFHXFH3NGAD.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "HK2GMCFHXFH3NGAD.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "HK2GMCFHXFH3NGAD.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "HK2GMCFHXFH3NGAD.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6050" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HK2GMCFHXFH3NGAD.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "HK2GMCFHXFH3NGAD", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "HK2GMCFHXFH3NGAD.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "HK2GMCFHXFH3NGAD.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13126" + }, + "appliesTo" : [ ] + }, + "HK2GMCFHXFH3NGAD.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "HK2GMCFHXFH3NGAD.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HK2GMCFHXFH3NGAD.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "HK2GMCFHXFH3NGAD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HK2GMCFHXFH3NGAD.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "HK2GMCFHXFH3NGAD.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "HM82VKFH3K99HEA4" : { + "HM82VKFH3K99HEA4.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "HM82VKFH3K99HEA4", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "HM82VKFH3K99HEA4.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "HM82VKFH3K99HEA4.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16761" + }, + "appliesTo" : [ ] + }, + "HM82VKFH3K99HEA4.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "HM82VKFH3K99HEA4.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HM82VKFH3K99HEA4.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "HM82VKFH3K99HEA4", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "HM82VKFH3K99HEA4.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "HM82VKFH3K99HEA4.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17105" + }, + "appliesTo" : [ ] + }, + "HM82VKFH3K99HEA4.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "HM82VKFH3K99HEA4.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "HM82VKFH3K99HEA4.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "HM82VKFH3K99HEA4", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "HM82VKFH3K99HEA4.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "HM82VKFH3K99HEA4.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "HM82VKFH3K99HEA4.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "HM82VKFH3K99HEA4", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "HM82VKFH3K99HEA4.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "HM82VKFH3K99HEA4.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "HM82VKFH3K99HEA4.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "HM82VKFH3K99HEA4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HM82VKFH3K99HEA4.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "HM82VKFH3K99HEA4.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6018" + }, + "appliesTo" : [ ] + }, + "HM82VKFH3K99HEA4.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "HM82VKFH3K99HEA4.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "HM82VKFH3K99HEA4.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "HM82VKFH3K99HEA4", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "HM82VKFH3K99HEA4.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "HM82VKFH3K99HEA4.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "HM82VKFH3K99HEA4.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "HM82VKFH3K99HEA4", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "HM82VKFH3K99HEA4.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "HM82VKFH3K99HEA4.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2952" + }, + "appliesTo" : [ ] + }, + "HM82VKFH3K99HEA4.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "HM82VKFH3K99HEA4.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HM82VKFH3K99HEA4.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "HM82VKFH3K99HEA4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HM82VKFH3K99HEA4.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "HM82VKFH3K99HEA4.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "HM82VKFH3K99HEA4.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "HM82VKFH3K99HEA4", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HM82VKFH3K99HEA4.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "HM82VKFH3K99HEA4.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3019" + }, + "appliesTo" : [ ] + }, + "HM82VKFH3K99HEA4.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "HM82VKFH3K99HEA4.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HM82VKFH3K99HEA4.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "HM82VKFH3K99HEA4", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "HM82VKFH3K99HEA4.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "HM82VKFH3K99HEA4.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5886" + }, + "appliesTo" : [ ] + }, + "HM82VKFH3K99HEA4.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "HM82VKFH3K99HEA4.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HM82VKFH3K99HEA4.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "HM82VKFH3K99HEA4", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "HM82VKFH3K99HEA4.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "HM82VKFH3K99HEA4.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3260000000" + }, + "appliesTo" : [ ] + }, + "HM82VKFH3K99HEA4.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "HM82VKFH3K99HEA4.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8574" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HM82VKFH3K99HEA4.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "HM82VKFH3K99HEA4", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "HM82VKFH3K99HEA4.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "HM82VKFH3K99HEA4.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8436" + }, + "appliesTo" : [ ] + }, + "HM82VKFH3K99HEA4.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "HM82VKFH3K99HEA4.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "D3DQYQJXGDG9DV7G" : { + "D3DQYQJXGDG9DV7G.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "D3DQYQJXGDG9DV7G", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "D3DQYQJXGDG9DV7G.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "D3DQYQJXGDG9DV7G.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "D3DQYQJXGDG9DV7G.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "D3DQYQJXGDG9DV7G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "D3DQYQJXGDG9DV7G.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "D3DQYQJXGDG9DV7G.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6430000000" + }, + "appliesTo" : [ ] + }, + "D3DQYQJXGDG9DV7G.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "D3DQYQJXGDG9DV7G.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5632" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "D3DQYQJXGDG9DV7G.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "D3DQYQJXGDG9DV7G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "D3DQYQJXGDG9DV7G.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "D3DQYQJXGDG9DV7G.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "D3DQYQJXGDG9DV7G.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "D3DQYQJXGDG9DV7G", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "D3DQYQJXGDG9DV7G.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "D3DQYQJXGDG9DV7G.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5290000000" + }, + "appliesTo" : [ ] + }, + "D3DQYQJXGDG9DV7G.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "D3DQYQJXGDG9DV7G.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6028" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "D3DQYQJXGDG9DV7G.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "D3DQYQJXGDG9DV7G", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "D3DQYQJXGDG9DV7G.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "D3DQYQJXGDG9DV7G.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9126" + }, + "appliesTo" : [ ] + }, + "D3DQYQJXGDG9DV7G.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "D3DQYQJXGDG9DV7G.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "D3DQYQJXGDG9DV7G.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "D3DQYQJXGDG9DV7G", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "D3DQYQJXGDG9DV7G.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "D3DQYQJXGDG9DV7G.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "D3DQYQJXGDG9DV7G.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "D3DQYQJXGDG9DV7G", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "D3DQYQJXGDG9DV7G.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "D3DQYQJXGDG9DV7G.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "D3DQYQJXGDG9DV7G.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "D3DQYQJXGDG9DV7G.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18736" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "D3DQYQJXGDG9DV7G.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "D3DQYQJXGDG9DV7G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "D3DQYQJXGDG9DV7G.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "D3DQYQJXGDG9DV7G.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11104" + }, + "appliesTo" : [ ] + }, + "D3DQYQJXGDG9DV7G.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "D3DQYQJXGDG9DV7G.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "D3DQYQJXGDG9DV7G.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "D3DQYQJXGDG9DV7G", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "D3DQYQJXGDG9DV7G.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "D3DQYQJXGDG9DV7G.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10811" + }, + "appliesTo" : [ ] + }, + "D3DQYQJXGDG9DV7G.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "D3DQYQJXGDG9DV7G.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "D3DQYQJXGDG9DV7G.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "D3DQYQJXGDG9DV7G", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "D3DQYQJXGDG9DV7G.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "D3DQYQJXGDG9DV7G.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4004" + }, + "appliesTo" : [ ] + }, + "D3DQYQJXGDG9DV7G.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "D3DQYQJXGDG9DV7G.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "D3DQYQJXGDG9DV7G.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "D3DQYQJXGDG9DV7G", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "D3DQYQJXGDG9DV7G.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "D3DQYQJXGDG9DV7G.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25320" + }, + "appliesTo" : [ ] + }, + "D3DQYQJXGDG9DV7G.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "D3DQYQJXGDG9DV7G.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "KCN6V5R2ZXCNYDBZ" : { + "KCN6V5R2ZXCNYDBZ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "KCN6V5R2ZXCNYDBZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KCN6V5R2ZXCNYDBZ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "KCN6V5R2ZXCNYDBZ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25537" + }, + "appliesTo" : [ ] + }, + "KCN6V5R2ZXCNYDBZ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "KCN6V5R2ZXCNYDBZ.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KCN6V5R2ZXCNYDBZ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "KCN6V5R2ZXCNYDBZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KCN6V5R2ZXCNYDBZ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "KCN6V5R2ZXCNYDBZ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5620" + }, + "appliesTo" : [ ] + }, + "KCN6V5R2ZXCNYDBZ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "KCN6V5R2ZXCNYDBZ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KCN6V5R2ZXCNYDBZ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "KCN6V5R2ZXCNYDBZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KCN6V5R2ZXCNYDBZ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "KCN6V5R2ZXCNYDBZ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KCN6V5R2ZXCNYDBZ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "KCN6V5R2ZXCNYDBZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KCN6V5R2ZXCNYDBZ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "KCN6V5R2ZXCNYDBZ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KCN6V5R2ZXCNYDBZ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "KCN6V5R2ZXCNYDBZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KCN6V5R2ZXCNYDBZ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "KCN6V5R2ZXCNYDBZ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24195" + }, + "appliesTo" : [ ] + }, + "KCN6V5R2ZXCNYDBZ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "KCN6V5R2ZXCNYDBZ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KCN6V5R2ZXCNYDBZ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "KCN6V5R2ZXCNYDBZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KCN6V5R2ZXCNYDBZ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "KCN6V5R2ZXCNYDBZ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12313" + }, + "appliesTo" : [ ] + }, + "KCN6V5R2ZXCNYDBZ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "KCN6V5R2ZXCNYDBZ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KCN6V5R2ZXCNYDBZ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "KCN6V5R2ZXCNYDBZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KCN6V5R2ZXCNYDBZ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "KCN6V5R2ZXCNYDBZ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12851" + }, + "appliesTo" : [ ] + }, + "KCN6V5R2ZXCNYDBZ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "KCN6V5R2ZXCNYDBZ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KCN6V5R2ZXCNYDBZ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "KCN6V5R2ZXCNYDBZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KCN6V5R2ZXCNYDBZ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "KCN6V5R2ZXCNYDBZ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10439" + }, + "appliesTo" : [ ] + }, + "KCN6V5R2ZXCNYDBZ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "KCN6V5R2ZXCNYDBZ.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KCN6V5R2ZXCNYDBZ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "KCN6V5R2ZXCNYDBZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KCN6V5R2ZXCNYDBZ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "KCN6V5R2ZXCNYDBZ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "KCN6V5R2ZXCNYDBZ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "KCN6V5R2ZXCNYDBZ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11132" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KCN6V5R2ZXCNYDBZ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "KCN6V5R2ZXCNYDBZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KCN6V5R2ZXCNYDBZ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "KCN6V5R2ZXCNYDBZ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KCN6V5R2ZXCNYDBZ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "KCN6V5R2ZXCNYDBZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KCN6V5R2ZXCNYDBZ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "KCN6V5R2ZXCNYDBZ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KCN6V5R2ZXCNYDBZ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "KCN6V5R2ZXCNYDBZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KCN6V5R2ZXCNYDBZ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "KCN6V5R2ZXCNYDBZ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5267" + }, + "appliesTo" : [ ] + }, + "KCN6V5R2ZXCNYDBZ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "KCN6V5R2ZXCNYDBZ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "22BY823JMH3UZ9AS" : { + "22BY823JMH3UZ9AS.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "22BY823JMH3UZ9AS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "22BY823JMH3UZ9AS.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "22BY823JMH3UZ9AS.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9020" + }, + "appliesTo" : [ ] + }, + "22BY823JMH3UZ9AS.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "22BY823JMH3UZ9AS.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "22BY823JMH3UZ9AS.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "22BY823JMH3UZ9AS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "22BY823JMH3UZ9AS.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "22BY823JMH3UZ9AS.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5890000000" + }, + "appliesTo" : [ ] + }, + "22BY823JMH3UZ9AS.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "22BY823JMH3UZ9AS.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4021" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "22BY823JMH3UZ9AS.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "22BY823JMH3UZ9AS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "22BY823JMH3UZ9AS.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "22BY823JMH3UZ9AS.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8987" + }, + "appliesTo" : [ ] + }, + "22BY823JMH3UZ9AS.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "22BY823JMH3UZ9AS.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "22BY823JMH3UZ9AS.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "22BY823JMH3UZ9AS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "22BY823JMH3UZ9AS.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "22BY823JMH3UZ9AS.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "22BY823JMH3UZ9AS.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "22BY823JMH3UZ9AS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "22BY823JMH3UZ9AS.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "22BY823JMH3UZ9AS.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18081" + }, + "appliesTo" : [ ] + }, + "22BY823JMH3UZ9AS.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "22BY823JMH3UZ9AS.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "22BY823JMH3UZ9AS.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "22BY823JMH3UZ9AS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "22BY823JMH3UZ9AS.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "22BY823JMH3UZ9AS.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7800" + }, + "appliesTo" : [ ] + }, + "22BY823JMH3UZ9AS.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "22BY823JMH3UZ9AS.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "22BY823JMH3UZ9AS.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "22BY823JMH3UZ9AS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "22BY823JMH3UZ9AS.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "22BY823JMH3UZ9AS.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "22BY823JMH3UZ9AS.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "22BY823JMH3UZ9AS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "22BY823JMH3UZ9AS.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "22BY823JMH3UZ9AS.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "22BY823JMH3UZ9AS.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "22BY823JMH3UZ9AS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "22BY823JMH3UZ9AS.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "22BY823JMH3UZ9AS.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10202" + }, + "appliesTo" : [ ] + }, + "22BY823JMH3UZ9AS.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "22BY823JMH3UZ9AS.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "22BY823JMH3UZ9AS.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "22BY823JMH3UZ9AS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "22BY823JMH3UZ9AS.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "22BY823JMH3UZ9AS.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "22BY823JMH3UZ9AS.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "22BY823JMH3UZ9AS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "22BY823JMH3UZ9AS.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "22BY823JMH3UZ9AS.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21030" + }, + "appliesTo" : [ ] + }, + "22BY823JMH3UZ9AS.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "22BY823JMH3UZ9AS.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "22BY823JMH3UZ9AS.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "22BY823JMH3UZ9AS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "22BY823JMH3UZ9AS.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "22BY823JMH3UZ9AS.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4624" + }, + "appliesTo" : [ ] + }, + "22BY823JMH3UZ9AS.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "22BY823JMH3UZ9AS.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "Z5UJJBU6GS6N6Y27" : { + "Z5UJJBU6GS6N6Y27.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "Z5UJJBU6GS6N6Y27", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z5UJJBU6GS6N6Y27.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "Z5UJJBU6GS6N6Y27.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "Z5UJJBU6GS6N6Y27.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "Z5UJJBU6GS6N6Y27.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "118340" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Z5UJJBU6GS6N6Y27.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "Z5UJJBU6GS6N6Y27", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Z5UJJBU6GS6N6Y27.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "Z5UJJBU6GS6N6Y27.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.7304000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Z5UJJBU6GS6N6Y27.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Z5UJJBU6GS6N6Y27", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Z5UJJBU6GS6N6Y27.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Z5UJJBU6GS6N6Y27.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "115043" + }, + "appliesTo" : [ ] + }, + "Z5UJJBU6GS6N6Y27.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Z5UJJBU6GS6N6Y27.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Z5UJJBU6GS6N6Y27.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Z5UJJBU6GS6N6Y27", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Z5UJJBU6GS6N6Y27.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Z5UJJBU6GS6N6Y27.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "321096" + }, + "appliesTo" : [ ] + }, + "Z5UJJBU6GS6N6Y27.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Z5UJJBU6GS6N6Y27.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Z5UJJBU6GS6N6Y27.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "Z5UJJBU6GS6N6Y27", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Z5UJJBU6GS6N6Y27.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "Z5UJJBU6GS6N6Y27.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.4557000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Z5UJJBU6GS6N6Y27.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "Z5UJJBU6GS6N6Y27", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Z5UJJBU6GS6N6Y27.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "Z5UJJBU6GS6N6Y27.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "329430" + }, + "appliesTo" : [ ] + }, + "Z5UJJBU6GS6N6Y27.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "Z5UJJBU6GS6N6Y27.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Z5UJJBU6GS6N6Y27.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Z5UJJBU6GS6N6Y27", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Z5UJJBU6GS6N6Y27.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Z5UJJBU6GS6N6Y27.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "57746" + }, + "appliesTo" : [ ] + }, + "Z5UJJBU6GS6N6Y27.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Z5UJJBU6GS6N6Y27.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.5920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z5UJJBU6GS6N6Y27.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Z5UJJBU6GS6N6Y27", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Z5UJJBU6GS6N6Y27.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Z5UJJBU6GS6N6Y27.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.3120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Z5UJJBU6GS6N6Y27.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "Z5UJJBU6GS6N6Y27", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z5UJJBU6GS6N6Y27.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "Z5UJJBU6GS6N6Y27.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "59428" + }, + "appliesTo" : [ ] + }, + "Z5UJJBU6GS6N6Y27.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "Z5UJJBU6GS6N6Y27.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.7840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z5UJJBU6GS6N6Y27.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "Z5UJJBU6GS6N6Y27", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z5UJJBU6GS6N6Y27.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "Z5UJJBU6GS6N6Y27.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.7152000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Z5UJJBU6GS6N6Y27.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Z5UJJBU6GS6N6Y27", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Z5UJJBU6GS6N6Y27.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Z5UJJBU6GS6N6Y27.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "161885" + }, + "appliesTo" : [ ] + }, + "Z5UJJBU6GS6N6Y27.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Z5UJJBU6GS6N6Y27.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.1600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z5UJJBU6GS6N6Y27.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "Z5UJJBU6GS6N6Y27", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "Z5UJJBU6GS6N6Y27.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "Z5UJJBU6GS6N6Y27.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.2872000000" + }, + "appliesTo" : [ ] + }, + "Z5UJJBU6GS6N6Y27.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "Z5UJJBU6GS6N6Y27.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "165228" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "6NM6AHQ97YV7NWV2" : { + "6NM6AHQ97YV7NWV2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6NM6AHQ97YV7NWV2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6NM6AHQ97YV7NWV2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6NM6AHQ97YV7NWV2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5392" + }, + "appliesTo" : [ ] + }, + "6NM6AHQ97YV7NWV2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6NM6AHQ97YV7NWV2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6NM6AHQ97YV7NWV2.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "6NM6AHQ97YV7NWV2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6NM6AHQ97YV7NWV2.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "6NM6AHQ97YV7NWV2.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6NM6AHQ97YV7NWV2.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "6NM6AHQ97YV7NWV2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6NM6AHQ97YV7NWV2.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "6NM6AHQ97YV7NWV2.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5269" + }, + "appliesTo" : [ ] + }, + "6NM6AHQ97YV7NWV2.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "6NM6AHQ97YV7NWV2.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6NM6AHQ97YV7NWV2.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "6NM6AHQ97YV7NWV2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "6NM6AHQ97YV7NWV2.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "6NM6AHQ97YV7NWV2.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24069" + }, + "appliesTo" : [ ] + }, + "6NM6AHQ97YV7NWV2.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "6NM6AHQ97YV7NWV2.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6NM6AHQ97YV7NWV2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6NM6AHQ97YV7NWV2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6NM6AHQ97YV7NWV2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6NM6AHQ97YV7NWV2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17109" + }, + "appliesTo" : [ ] + }, + "6NM6AHQ97YV7NWV2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6NM6AHQ97YV7NWV2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6NM6AHQ97YV7NWV2.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "6NM6AHQ97YV7NWV2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6NM6AHQ97YV7NWV2.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "6NM6AHQ97YV7NWV2.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "6NM6AHQ97YV7NWV2.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "6NM6AHQ97YV7NWV2.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10273" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6NM6AHQ97YV7NWV2.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "6NM6AHQ97YV7NWV2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "6NM6AHQ97YV7NWV2.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "6NM6AHQ97YV7NWV2.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3860000000" + }, + "appliesTo" : [ ] + }, + "6NM6AHQ97YV7NWV2.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "6NM6AHQ97YV7NWV2.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14435" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6NM6AHQ97YV7NWV2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6NM6AHQ97YV7NWV2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6NM6AHQ97YV7NWV2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6NM6AHQ97YV7NWV2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8478" + }, + "appliesTo" : [ ] + }, + "6NM6AHQ97YV7NWV2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6NM6AHQ97YV7NWV2.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6NM6AHQ97YV7NWV2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6NM6AHQ97YV7NWV2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6NM6AHQ97YV7NWV2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6NM6AHQ97YV7NWV2.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6NM6AHQ97YV7NWV2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6NM6AHQ97YV7NWV2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "6NM6AHQ97YV7NWV2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6NM6AHQ97YV7NWV2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8958" + }, + "appliesTo" : [ ] + }, + "6NM6AHQ97YV7NWV2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6NM6AHQ97YV7NWV2.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6NM6AHQ97YV7NWV2.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "6NM6AHQ97YV7NWV2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "6NM6AHQ97YV7NWV2.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "6NM6AHQ97YV7NWV2.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "ZA47RH8PF27SDZKP" : { + "ZA47RH8PF27SDZKP.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ZA47RH8PF27SDZKP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ZA47RH8PF27SDZKP.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ZA47RH8PF27SDZKP.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZA47RH8PF27SDZKP.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ZA47RH8PF27SDZKP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZA47RH8PF27SDZKP.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ZA47RH8PF27SDZKP.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1273" + }, + "appliesTo" : [ ] + }, + "ZA47RH8PF27SDZKP.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ZA47RH8PF27SDZKP.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZA47RH8PF27SDZKP.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ZA47RH8PF27SDZKP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZA47RH8PF27SDZKP.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ZA47RH8PF27SDZKP.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZA47RH8PF27SDZKP.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ZA47RH8PF27SDZKP", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "ZA47RH8PF27SDZKP.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ZA47RH8PF27SDZKP.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3521" + }, + "appliesTo" : [ ] + }, + "ZA47RH8PF27SDZKP.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ZA47RH8PF27SDZKP.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZA47RH8PF27SDZKP.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ZA47RH8PF27SDZKP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ZA47RH8PF27SDZKP.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ZA47RH8PF27SDZKP.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4132" + }, + "appliesTo" : [ ] + }, + "ZA47RH8PF27SDZKP.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ZA47RH8PF27SDZKP.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZA47RH8PF27SDZKP.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ZA47RH8PF27SDZKP", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "ZA47RH8PF27SDZKP.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ZA47RH8PF27SDZKP.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZA47RH8PF27SDZKP.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ZA47RH8PF27SDZKP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ZA47RH8PF27SDZKP.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ZA47RH8PF27SDZKP.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2031" + }, + "appliesTo" : [ ] + }, + "ZA47RH8PF27SDZKP.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ZA47RH8PF27SDZKP.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZA47RH8PF27SDZKP.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ZA47RH8PF27SDZKP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ZA47RH8PF27SDZKP.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ZA47RH8PF27SDZKP.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2170" + }, + "appliesTo" : [ ] + }, + "ZA47RH8PF27SDZKP.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ZA47RH8PF27SDZKP.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZA47RH8PF27SDZKP.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ZA47RH8PF27SDZKP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "ZA47RH8PF27SDZKP.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ZA47RH8PF27SDZKP.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1304" + }, + "appliesTo" : [ ] + }, + "ZA47RH8PF27SDZKP.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ZA47RH8PF27SDZKP.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZA47RH8PF27SDZKP.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ZA47RH8PF27SDZKP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZA47RH8PF27SDZKP.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ZA47RH8PF27SDZKP.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ZA47RH8PF27SDZKP.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ZA47RH8PF27SDZKP.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2496" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZA47RH8PF27SDZKP.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ZA47RH8PF27SDZKP", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "ZA47RH8PF27SDZKP.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ZA47RH8PF27SDZKP.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5859" + }, + "appliesTo" : [ ] + }, + "ZA47RH8PF27SDZKP.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ZA47RH8PF27SDZKP.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "9NMZ5HGTS2QHKR4V" : { + "9NMZ5HGTS2QHKR4V.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "9NMZ5HGTS2QHKR4V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9NMZ5HGTS2QHKR4V.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "9NMZ5HGTS2QHKR4V.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0173000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9NMZ5HGTS2QHKR4V.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "9NMZ5HGTS2QHKR4V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9NMZ5HGTS2QHKR4V.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "9NMZ5HGTS2QHKR4V.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0099000000" + }, + "appliesTo" : [ ] + }, + "9NMZ5HGTS2QHKR4V.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "9NMZ5HGTS2QHKR4V.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "56" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9NMZ5HGTS2QHKR4V.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "9NMZ5HGTS2QHKR4V", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "9NMZ5HGTS2QHKR4V.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "9NMZ5HGTS2QHKR4V.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "339" + }, + "appliesTo" : [ ] + }, + "9NMZ5HGTS2QHKR4V.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "9NMZ5HGTS2QHKR4V.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9NMZ5HGTS2QHKR4V.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "9NMZ5HGTS2QHKR4V", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "9NMZ5HGTS2QHKR4V.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "9NMZ5HGTS2QHKR4V.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0162000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9NMZ5HGTS2QHKR4V.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "9NMZ5HGTS2QHKR4V", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "9NMZ5HGTS2QHKR4V.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "9NMZ5HGTS2QHKR4V.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "52" + }, + "appliesTo" : [ ] + }, + "9NMZ5HGTS2QHKR4V.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "9NMZ5HGTS2QHKR4V.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0094000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9NMZ5HGTS2QHKR4V.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "9NMZ5HGTS2QHKR4V", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9NMZ5HGTS2QHKR4V.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "9NMZ5HGTS2QHKR4V.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "143" + }, + "appliesTo" : [ ] + }, + "9NMZ5HGTS2QHKR4V.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "9NMZ5HGTS2QHKR4V.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9NMZ5HGTS2QHKR4V.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "9NMZ5HGTS2QHKR4V", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "9NMZ5HGTS2QHKR4V.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "9NMZ5HGTS2QHKR4V.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9NMZ5HGTS2QHKR4V.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "9NMZ5HGTS2QHKR4V", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "9NMZ5HGTS2QHKR4V.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "9NMZ5HGTS2QHKR4V.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "9NMZ5HGTS2QHKR4V.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "9NMZ5HGTS2QHKR4V.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "317" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9NMZ5HGTS2QHKR4V.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "9NMZ5HGTS2QHKR4V", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "9NMZ5HGTS2QHKR4V.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "9NMZ5HGTS2QHKR4V.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0148000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9NMZ5HGTS2QHKR4V.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "9NMZ5HGTS2QHKR4V", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "9NMZ5HGTS2QHKR4V.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "9NMZ5HGTS2QHKR4V.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "9NMZ5HGTS2QHKR4V.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "9NMZ5HGTS2QHKR4V.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "134" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9NMZ5HGTS2QHKR4V.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "9NMZ5HGTS2QHKR4V", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "9NMZ5HGTS2QHKR4V.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "9NMZ5HGTS2QHKR4V.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "114" + }, + "appliesTo" : [ ] + }, + "9NMZ5HGTS2QHKR4V.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "9NMZ5HGTS2QHKR4V.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0087000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9NMZ5HGTS2QHKR4V.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "9NMZ5HGTS2QHKR4V", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "9NMZ5HGTS2QHKR4V.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "9NMZ5HGTS2QHKR4V.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.micro reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0080000000" + }, + "appliesTo" : [ ] + }, + "9NMZ5HGTS2QHKR4V.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "9NMZ5HGTS2QHKR4V.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "110" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "9S3T4JTQ45TQKNTE" : { + "9S3T4JTQ45TQKNTE.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "9S3T4JTQ45TQKNTE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9S3T4JTQ45TQKNTE.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "9S3T4JTQ45TQKNTE.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25308" + }, + "appliesTo" : [ ] + }, + "9S3T4JTQ45TQKNTE.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "9S3T4JTQ45TQKNTE.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9S3T4JTQ45TQKNTE.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "9S3T4JTQ45TQKNTE", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "9S3T4JTQ45TQKNTE.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "9S3T4JTQ45TQKNTE.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12912" + }, + "appliesTo" : [ ] + }, + "9S3T4JTQ45TQKNTE.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "9S3T4JTQ45TQKNTE.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9S3T4JTQ45TQKNTE.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "9S3T4JTQ45TQKNTE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9S3T4JTQ45TQKNTE.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "9S3T4JTQ45TQKNTE.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "60967" + }, + "appliesTo" : [ ] + }, + "9S3T4JTQ45TQKNTE.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "9S3T4JTQ45TQKNTE.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9S3T4JTQ45TQKNTE.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "9S3T4JTQ45TQKNTE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9S3T4JTQ45TQKNTE.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "9S3T4JTQ45TQKNTE.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "36889" + }, + "appliesTo" : [ ] + }, + "9S3T4JTQ45TQKNTE.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "9S3T4JTQ45TQKNTE.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9S3T4JTQ45TQKNTE.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "9S3T4JTQ45TQKNTE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9S3T4JTQ45TQKNTE.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "9S3T4JTQ45TQKNTE.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9689000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9S3T4JTQ45TQKNTE.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "9S3T4JTQ45TQKNTE", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "9S3T4JTQ45TQKNTE.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "9S3T4JTQ45TQKNTE.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32430" + }, + "appliesTo" : [ ] + }, + "9S3T4JTQ45TQKNTE.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "9S3T4JTQ45TQKNTE.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9S3T4JTQ45TQKNTE.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "9S3T4JTQ45TQKNTE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9S3T4JTQ45TQKNTE.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "9S3T4JTQ45TQKNTE.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17086" + }, + "appliesTo" : [ ] + }, + "9S3T4JTQ45TQKNTE.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "9S3T4JTQ45TQKNTE.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9505000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9S3T4JTQ45TQKNTE.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "9S3T4JTQ45TQKNTE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9S3T4JTQ45TQKNTE.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "9S3T4JTQ45TQKNTE.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "9S3T4JTQ45TQKNTE.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "9S3T4JTQ45TQKNTE.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "72303" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9S3T4JTQ45TQKNTE.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "9S3T4JTQ45TQKNTE", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "9S3T4JTQ45TQKNTE.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "9S3T4JTQ45TQKNTE.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9S3T4JTQ45TQKNTE.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "9S3T4JTQ45TQKNTE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "9S3T4JTQ45TQKNTE.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "9S3T4JTQ45TQKNTE.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9S3T4JTQ45TQKNTE.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "9S3T4JTQ45TQKNTE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9S3T4JTQ45TQKNTE.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "9S3T4JTQ45TQKNTE.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "9S3T4JTQ45TQKNTE.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "9S3T4JTQ45TQKNTE.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33935" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9S3T4JTQ45TQKNTE.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "9S3T4JTQ45TQKNTE", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "9S3T4JTQ45TQKNTE.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "9S3T4JTQ45TQKNTE.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "ZQQM88TCYA932EPG" : { + "ZQQM88TCYA932EPG.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ZQQM88TCYA932EPG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZQQM88TCYA932EPG.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ZQQM88TCYA932EPG.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ZQQM88TCYA932EPG.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ZQQM88TCYA932EPG.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "107927" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZQQM88TCYA932EPG.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ZQQM88TCYA932EPG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZQQM88TCYA932EPG.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ZQQM88TCYA932EPG.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "66019" + }, + "appliesTo" : [ ] + }, + "ZQQM88TCYA932EPG.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ZQQM88TCYA932EPG.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZQQM88TCYA932EPG.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ZQQM88TCYA932EPG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZQQM88TCYA932EPG.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ZQQM88TCYA932EPG.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.4260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZQQM88TCYA932EPG.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "ZQQM88TCYA932EPG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZQQM88TCYA932EPG.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "ZQQM88TCYA932EPG.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.7180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZQQM88TCYA932EPG.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ZQQM88TCYA932EPG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZQQM88TCYA932EPG.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ZQQM88TCYA932EPG.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ZQQM88TCYA932EPG.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ZQQM88TCYA932EPG.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "129398" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZQQM88TCYA932EPG.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ZQQM88TCYA932EPG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZQQM88TCYA932EPG.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ZQQM88TCYA932EPG.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "85049" + }, + "appliesTo" : [ ] + }, + "ZQQM88TCYA932EPG.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ZQQM88TCYA932EPG.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZQQM88TCYA932EPG.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ZQQM88TCYA932EPG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZQQM88TCYA932EPG.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ZQQM88TCYA932EPG.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37732" + }, + "appliesTo" : [ ] + }, + "ZQQM88TCYA932EPG.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ZQQM88TCYA932EPG.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.3070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZQQM88TCYA932EPG.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ZQQM88TCYA932EPG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZQQM88TCYA932EPG.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ZQQM88TCYA932EPG.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.0450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZQQM88TCYA932EPG.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ZQQM88TCYA932EPG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZQQM88TCYA932EPG.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ZQQM88TCYA932EPG.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.4020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZQQM88TCYA932EPG.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ZQQM88TCYA932EPG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZQQM88TCYA932EPG.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ZQQM88TCYA932EPG.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.9530000000" + }, + "appliesTo" : [ ] + }, + "ZQQM88TCYA932EPG.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ZQQM88TCYA932EPG.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "43392" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZQQM88TCYA932EPG.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ZQQM88TCYA932EPG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZQQM88TCYA932EPG.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ZQQM88TCYA932EPG.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "73955" + }, + "appliesTo" : [ ] + }, + "ZQQM88TCYA932EPG.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ZQQM88TCYA932EPG.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZQQM88TCYA932EPG.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ZQQM88TCYA932EPG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZQQM88TCYA932EPG.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ZQQM88TCYA932EPG.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "57408" + }, + "appliesTo" : [ ] + }, + "ZQQM88TCYA932EPG.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ZQQM88TCYA932EPG.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "3X4XPPD8AEXYQCJ7" : { + "3X4XPPD8AEXYQCJ7.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "3X4XPPD8AEXYQCJ7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3X4XPPD8AEXYQCJ7.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "3X4XPPD8AEXYQCJ7.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2516000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3X4XPPD8AEXYQCJ7.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "3X4XPPD8AEXYQCJ7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3X4XPPD8AEXYQCJ7.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "3X4XPPD8AEXYQCJ7.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1010000000" + }, + "appliesTo" : [ ] + }, + "3X4XPPD8AEXYQCJ7.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "3X4XPPD8AEXYQCJ7.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2665" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3X4XPPD8AEXYQCJ7.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "3X4XPPD8AEXYQCJ7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3X4XPPD8AEXYQCJ7.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "3X4XPPD8AEXYQCJ7.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3012" + }, + "appliesTo" : [ ] + }, + "3X4XPPD8AEXYQCJ7.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "3X4XPPD8AEXYQCJ7.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1142000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3X4XPPD8AEXYQCJ7.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "3X4XPPD8AEXYQCJ7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3X4XPPD8AEXYQCJ7.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "3X4XPPD8AEXYQCJ7.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2519" + }, + "appliesTo" : [ ] + }, + "3X4XPPD8AEXYQCJ7.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "3X4XPPD8AEXYQCJ7.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3X4XPPD8AEXYQCJ7.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "3X4XPPD8AEXYQCJ7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3X4XPPD8AEXYQCJ7.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "3X4XPPD8AEXYQCJ7.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "3X4XPPD8AEXYQCJ7.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "3X4XPPD8AEXYQCJ7.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5042" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3X4XPPD8AEXYQCJ7.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "3X4XPPD8AEXYQCJ7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3X4XPPD8AEXYQCJ7.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "3X4XPPD8AEXYQCJ7.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3465000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3X4XPPD8AEXYQCJ7.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "3X4XPPD8AEXYQCJ7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3X4XPPD8AEXYQCJ7.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "3X4XPPD8AEXYQCJ7.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1484" + }, + "appliesTo" : [ ] + }, + "3X4XPPD8AEXYQCJ7.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "3X4XPPD8AEXYQCJ7.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1623000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3X4XPPD8AEXYQCJ7.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "3X4XPPD8AEXYQCJ7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3X4XPPD8AEXYQCJ7.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "3X4XPPD8AEXYQCJ7.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3056000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3X4XPPD8AEXYQCJ7.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "3X4XPPD8AEXYQCJ7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3X4XPPD8AEXYQCJ7.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "3X4XPPD8AEXYQCJ7.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1313" + }, + "appliesTo" : [ ] + }, + "3X4XPPD8AEXYQCJ7.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "3X4XPPD8AEXYQCJ7.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1428000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3X4XPPD8AEXYQCJ7.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "3X4XPPD8AEXYQCJ7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3X4XPPD8AEXYQCJ7.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "3X4XPPD8AEXYQCJ7.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2853" + }, + "appliesTo" : [ ] + }, + "3X4XPPD8AEXYQCJ7.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "3X4XPPD8AEXYQCJ7.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3X4XPPD8AEXYQCJ7.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "3X4XPPD8AEXYQCJ7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3X4XPPD8AEXYQCJ7.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "3X4XPPD8AEXYQCJ7.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2231000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3X4XPPD8AEXYQCJ7.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "3X4XPPD8AEXYQCJ7", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "3X4XPPD8AEXYQCJ7.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "3X4XPPD8AEXYQCJ7.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5907" + }, + "appliesTo" : [ ] + }, + "3X4XPPD8AEXYQCJ7.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "3X4XPPD8AEXYQCJ7.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "ANHAK96GJ32FCXM9" : { + "ANHAK96GJ32FCXM9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ANHAK96GJ32FCXM9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ANHAK96GJ32FCXM9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ANHAK96GJ32FCXM9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8240000000" + }, + "appliesTo" : [ ] + }, + "ANHAK96GJ32FCXM9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ANHAK96GJ32FCXM9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7282" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ANHAK96GJ32FCXM9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ANHAK96GJ32FCXM9", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "ANHAK96GJ32FCXM9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ANHAK96GJ32FCXM9.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ANHAK96GJ32FCXM9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ANHAK96GJ32FCXM9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14218" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ANHAK96GJ32FCXM9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ANHAK96GJ32FCXM9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ANHAK96GJ32FCXM9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ANHAK96GJ32FCXM9.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ANHAK96GJ32FCXM9.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ANHAK96GJ32FCXM9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ANHAK96GJ32FCXM9.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ANHAK96GJ32FCXM9.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17276" + }, + "appliesTo" : [ ] + }, + "ANHAK96GJ32FCXM9.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ANHAK96GJ32FCXM9.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ANHAK96GJ32FCXM9.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ANHAK96GJ32FCXM9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ANHAK96GJ32FCXM9.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ANHAK96GJ32FCXM9.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ANHAK96GJ32FCXM9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ANHAK96GJ32FCXM9", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "ANHAK96GJ32FCXM9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ANHAK96GJ32FCXM9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ANHAK96GJ32FCXM9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ANHAK96GJ32FCXM9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28441" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ANHAK96GJ32FCXM9.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "ANHAK96GJ32FCXM9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ANHAK96GJ32FCXM9.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "ANHAK96GJ32FCXM9.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ANHAK96GJ32FCXM9.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ANHAK96GJ32FCXM9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ANHAK96GJ32FCXM9.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ANHAK96GJ32FCXM9.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33866" + }, + "appliesTo" : [ ] + }, + "ANHAK96GJ32FCXM9.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ANHAK96GJ32FCXM9.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ANHAK96GJ32FCXM9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ANHAK96GJ32FCXM9", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "ANHAK96GJ32FCXM9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ANHAK96GJ32FCXM9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15111" + }, + "appliesTo" : [ ] + }, + "ANHAK96GJ32FCXM9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ANHAK96GJ32FCXM9.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ANHAK96GJ32FCXM9.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ANHAK96GJ32FCXM9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ANHAK96GJ32FCXM9.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ANHAK96GJ32FCXM9.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16402" + }, + "appliesTo" : [ ] + }, + "ANHAK96GJ32FCXM9.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ANHAK96GJ32FCXM9.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ANHAK96GJ32FCXM9.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ANHAK96GJ32FCXM9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ANHAK96GJ32FCXM9.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ANHAK96GJ32FCXM9.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8396" + }, + "appliesTo" : [ ] + }, + "ANHAK96GJ32FCXM9.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ANHAK96GJ32FCXM9.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ANHAK96GJ32FCXM9.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ANHAK96GJ32FCXM9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ANHAK96GJ32FCXM9.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ANHAK96GJ32FCXM9.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "JHPHDAYNUFXJTVZB" : { + "JHPHDAYNUFXJTVZB.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "JHPHDAYNUFXJTVZB", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JHPHDAYNUFXJTVZB.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "JHPHDAYNUFXJTVZB.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "JHPHDAYNUFXJTVZB.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "JHPHDAYNUFXJTVZB", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JHPHDAYNUFXJTVZB.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "JHPHDAYNUFXJTVZB.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "759" + }, + "appliesTo" : [ ] + }, + "JHPHDAYNUFXJTVZB.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "JHPHDAYNUFXJTVZB.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "JHPHDAYNUFXJTVZB.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "JHPHDAYNUFXJTVZB", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JHPHDAYNUFXJTVZB.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "JHPHDAYNUFXJTVZB.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "754" + }, + "appliesTo" : [ ] + }, + "JHPHDAYNUFXJTVZB.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "JHPHDAYNUFXJTVZB.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JHPHDAYNUFXJTVZB.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "JHPHDAYNUFXJTVZB", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "JHPHDAYNUFXJTVZB.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "JHPHDAYNUFXJTVZB.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "308" + }, + "appliesTo" : [ ] + }, + "JHPHDAYNUFXJTVZB.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "JHPHDAYNUFXJTVZB.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "JHPHDAYNUFXJTVZB.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "JHPHDAYNUFXJTVZB", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "JHPHDAYNUFXJTVZB.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "JHPHDAYNUFXJTVZB.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1800" + }, + "appliesTo" : [ ] + }, + "JHPHDAYNUFXJTVZB.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "JHPHDAYNUFXJTVZB.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "EVNBJQCCHQGV6XNB" : { + "EVNBJQCCHQGV6XNB.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "EVNBJQCCHQGV6XNB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EVNBJQCCHQGV6XNB.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "EVNBJQCCHQGV6XNB.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "EVNBJQCCHQGV6XNB.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "EVNBJQCCHQGV6XNB", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "EVNBJQCCHQGV6XNB.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "EVNBJQCCHQGV6XNB.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5936" + }, + "appliesTo" : [ ] + }, + "EVNBJQCCHQGV6XNB.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "EVNBJQCCHQGV6XNB.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EVNBJQCCHQGV6XNB.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "EVNBJQCCHQGV6XNB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EVNBJQCCHQGV6XNB.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "EVNBJQCCHQGV6XNB.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6774" + }, + "appliesTo" : [ ] + }, + "EVNBJQCCHQGV6XNB.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "EVNBJQCCHQGV6XNB.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "EVNBJQCCHQGV6XNB.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "EVNBJQCCHQGV6XNB", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "EVNBJQCCHQGV6XNB.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "EVNBJQCCHQGV6XNB.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11193" + }, + "appliesTo" : [ ] + }, + "EVNBJQCCHQGV6XNB.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "EVNBJQCCHQGV6XNB.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EVNBJQCCHQGV6XNB.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "EVNBJQCCHQGV6XNB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EVNBJQCCHQGV6XNB.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "EVNBJQCCHQGV6XNB.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "EVNBJQCCHQGV6XNB.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "EVNBJQCCHQGV6XNB", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "EVNBJQCCHQGV6XNB.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "EVNBJQCCHQGV6XNB.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5312" + }, + "appliesTo" : [ ] + }, + "EVNBJQCCHQGV6XNB.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "EVNBJQCCHQGV6XNB.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EVNBJQCCHQGV6XNB.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "EVNBJQCCHQGV6XNB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EVNBJQCCHQGV6XNB.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "EVNBJQCCHQGV6XNB.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6065" + }, + "appliesTo" : [ ] + }, + "EVNBJQCCHQGV6XNB.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "EVNBJQCCHQGV6XNB.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "EVNBJQCCHQGV6XNB.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "EVNBJQCCHQGV6XNB", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "EVNBJQCCHQGV6XNB.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "EVNBJQCCHQGV6XNB.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3060000000" + }, + "appliesTo" : [ ] + }, + "EVNBJQCCHQGV6XNB.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "EVNBJQCCHQGV6XNB.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2738" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EVNBJQCCHQGV6XNB.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "EVNBJQCCHQGV6XNB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EVNBJQCCHQGV6XNB.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "EVNBJQCCHQGV6XNB.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "EVNBJQCCHQGV6XNB.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "EVNBJQCCHQGV6XNB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "EVNBJQCCHQGV6XNB.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "EVNBJQCCHQGV6XNB.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13282" + }, + "appliesTo" : [ ] + }, + "EVNBJQCCHQGV6XNB.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "EVNBJQCCHQGV6XNB.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "EVNBJQCCHQGV6XNB.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "EVNBJQCCHQGV6XNB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EVNBJQCCHQGV6XNB.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "EVNBJQCCHQGV6XNB.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "EVNBJQCCHQGV6XNB.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "EVNBJQCCHQGV6XNB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EVNBJQCCHQGV6XNB.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "EVNBJQCCHQGV6XNB.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3123" + }, + "appliesTo" : [ ] + }, + "EVNBJQCCHQGV6XNB.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "EVNBJQCCHQGV6XNB.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "Z3R6FENB6RXUUA7Z" : { + "Z3R6FENB6RXUUA7Z.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Z3R6FENB6RXUUA7Z", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "Z3R6FENB6RXUUA7Z.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Z3R6FENB6RXUUA7Z.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10323" + }, + "appliesTo" : [ ] + }, + "Z3R6FENB6RXUUA7Z.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Z3R6FENB6RXUUA7Z.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Z3R6FENB6RXUUA7Z.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Z3R6FENB6RXUUA7Z", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "Z3R6FENB6RXUUA7Z.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Z3R6FENB6RXUUA7Z.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5295" + }, + "appliesTo" : [ ] + }, + "Z3R6FENB6RXUUA7Z.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Z3R6FENB6RXUUA7Z.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z3R6FENB6RXUUA7Z.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "Z3R6FENB6RXUUA7Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z3R6FENB6RXUUA7Z.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "Z3R6FENB6RXUUA7Z.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6063" + }, + "appliesTo" : [ ] + }, + "Z3R6FENB6RXUUA7Z.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "Z3R6FENB6RXUUA7Z.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z3R6FENB6RXUUA7Z.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "Z3R6FENB6RXUUA7Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z3R6FENB6RXUUA7Z.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "Z3R6FENB6RXUUA7Z.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4442000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Z3R6FENB6RXUUA7Z.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Z3R6FENB6RXUUA7Z", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "Z3R6FENB6RXUUA7Z.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Z3R6FENB6RXUUA7Z.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4320000000" + }, + "appliesTo" : [ ] + }, + "Z3R6FENB6RXUUA7Z.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Z3R6FENB6RXUUA7Z.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11373" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z3R6FENB6RXUUA7Z.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "Z3R6FENB6RXUUA7Z", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z3R6FENB6RXUUA7Z.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "Z3R6FENB6RXUUA7Z.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4953000000" + }, + "appliesTo" : [ ] + }, + "Z3R6FENB6RXUUA7Z.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "Z3R6FENB6RXUUA7Z.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13026" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z3R6FENB6RXUUA7Z.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Z3R6FENB6RXUUA7Z", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "Z3R6FENB6RXUUA7Z.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Z3R6FENB6RXUUA7Z.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "Z3R6FENB6RXUUA7Z.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Z3R6FENB6RXUUA7Z.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21414" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Z3R6FENB6RXUUA7Z.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "Z3R6FENB6RXUUA7Z", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z3R6FENB6RXUUA7Z.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "Z3R6FENB6RXUUA7Z.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9388000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Z3R6FENB6RXUUA7Z.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "Z3R6FENB6RXUUA7Z", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z3R6FENB6RXUUA7Z.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "Z3R6FENB6RXUUA7Z.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11828" + }, + "appliesTo" : [ ] + }, + "Z3R6FENB6RXUUA7Z.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "Z3R6FENB6RXUUA7Z.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Z3R6FENB6RXUUA7Z.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "Z3R6FENB6RXUUA7Z", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z3R6FENB6RXUUA7Z.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "Z3R6FENB6RXUUA7Z.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25535" + }, + "appliesTo" : [ ] + }, + "Z3R6FENB6RXUUA7Z.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "Z3R6FENB6RXUUA7Z.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Z3R6FENB6RXUUA7Z.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Z3R6FENB6RXUUA7Z", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "Z3R6FENB6RXUUA7Z.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Z3R6FENB6RXUUA7Z.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Z3R6FENB6RXUUA7Z.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "Z3R6FENB6RXUUA7Z", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z3R6FENB6RXUUA7Z.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "Z3R6FENB6RXUUA7Z.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0747000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "68JXBV5UF5AMUV4X" : { + "68JXBV5UF5AMUV4X.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "68JXBV5UF5AMUV4X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "68JXBV5UF5AMUV4X.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "68JXBV5UF5AMUV4X.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "97501" + }, + "appliesTo" : [ ] + }, + "68JXBV5UF5AMUV4X.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "68JXBV5UF5AMUV4X.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "68JXBV5UF5AMUV4X.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "68JXBV5UF5AMUV4X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "68JXBV5UF5AMUV4X.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "68JXBV5UF5AMUV4X.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "45437" + }, + "appliesTo" : [ ] + }, + "68JXBV5UF5AMUV4X.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "68JXBV5UF5AMUV4X.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "68JXBV5UF5AMUV4X.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "68JXBV5UF5AMUV4X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "68JXBV5UF5AMUV4X.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "68JXBV5UF5AMUV4X.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "68JXBV5UF5AMUV4X.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "68JXBV5UF5AMUV4X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "68JXBV5UF5AMUV4X.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "68JXBV5UF5AMUV4X.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8780000000" + }, + "appliesTo" : [ ] + }, + "68JXBV5UF5AMUV4X.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "68JXBV5UF5AMUV4X.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "49351" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "68JXBV5UF5AMUV4X.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "68JXBV5UF5AMUV4X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "68JXBV5UF5AMUV4X.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "68JXBV5UF5AMUV4X.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "68JXBV5UF5AMUV4X.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "68JXBV5UF5AMUV4X.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "87742" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "68JXBV5UF5AMUV4X.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "68JXBV5UF5AMUV4X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "68JXBV5UF5AMUV4X.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "68JXBV5UF5AMUV4X.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "51553" + }, + "appliesTo" : [ ] + }, + "68JXBV5UF5AMUV4X.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "68JXBV5UF5AMUV4X.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "68JXBV5UF5AMUV4X.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "68JXBV5UF5AMUV4X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "68JXBV5UF5AMUV4X.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "68JXBV5UF5AMUV4X.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26171" + }, + "appliesTo" : [ ] + }, + "68JXBV5UF5AMUV4X.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "68JXBV5UF5AMUV4X.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "68JXBV5UF5AMUV4X.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "68JXBV5UF5AMUV4X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "68JXBV5UF5AMUV4X.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "68JXBV5UF5AMUV4X.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.2000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "68JXBV5UF5AMUV4X.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "68JXBV5UF5AMUV4X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "68JXBV5UF5AMUV4X.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "68JXBV5UF5AMUV4X.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46511" + }, + "appliesTo" : [ ] + }, + "68JXBV5UF5AMUV4X.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "68JXBV5UF5AMUV4X.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "68JXBV5UF5AMUV4X.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "68JXBV5UF5AMUV4X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "68JXBV5UF5AMUV4X.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "68JXBV5UF5AMUV4X.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23598" + }, + "appliesTo" : [ ] + }, + "68JXBV5UF5AMUV4X.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "68JXBV5UF5AMUV4X.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "68JXBV5UF5AMUV4X.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "68JXBV5UF5AMUV4X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "68JXBV5UF5AMUV4X.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "68JXBV5UF5AMUV4X.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.5840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "68JXBV5UF5AMUV4X.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "68JXBV5UF5AMUV4X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "68JXBV5UF5AMUV4X.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "68JXBV5UF5AMUV4X.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "73PG2QBG4QJ74BQG" : { + "73PG2QBG4QJ74BQG.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "73PG2QBG4QJ74BQG", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "73PG2QBG4QJ74BQG.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "73PG2QBG4QJ74BQG.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8166" + }, + "appliesTo" : [ ] + }, + "73PG2QBG4QJ74BQG.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "73PG2QBG4QJ74BQG.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "73PG2QBG4QJ74BQG.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "73PG2QBG4QJ74BQG", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "73PG2QBG4QJ74BQG.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "73PG2QBG4QJ74BQG.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "73PG2QBG4QJ74BQG.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "73PG2QBG4QJ74BQG.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16301" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "73PG2QBG4QJ74BQG.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "73PG2QBG4QJ74BQG", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "73PG2QBG4QJ74BQG.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "73PG2QBG4QJ74BQG.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47311" + }, + "appliesTo" : [ ] + }, + "73PG2QBG4QJ74BQG.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "73PG2QBG4QJ74BQG.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "73PG2QBG4QJ74BQG.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "73PG2QBG4QJ74BQG", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "73PG2QBG4QJ74BQG.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "73PG2QBG4QJ74BQG.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "73PG2QBG4QJ74BQG.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "73PG2QBG4QJ74BQG", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "73PG2QBG4QJ74BQG.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "73PG2QBG4QJ74BQG.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "48437" + }, + "appliesTo" : [ ] + }, + "73PG2QBG4QJ74BQG.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "73PG2QBG4QJ74BQG.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "73PG2QBG4QJ74BQG.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "73PG2QBG4QJ74BQG", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "73PG2QBG4QJ74BQG.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "73PG2QBG4QJ74BQG.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23753" + }, + "appliesTo" : [ ] + }, + "73PG2QBG4QJ74BQG.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "73PG2QBG4QJ74BQG.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "73PG2QBG4QJ74BQG.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "73PG2QBG4QJ74BQG", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "73PG2QBG4QJ74BQG.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "73PG2QBG4QJ74BQG.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24261" + }, + "appliesTo" : [ ] + }, + "73PG2QBG4QJ74BQG.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "73PG2QBG4QJ74BQG.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "73PG2QBG4QJ74BQG.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "73PG2QBG4QJ74BQG", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "73PG2QBG4QJ74BQG.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "73PG2QBG4QJ74BQG.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "73PG2QBG4QJ74BQG.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "73PG2QBG4QJ74BQG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "73PG2QBG4QJ74BQG.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "73PG2QBG4QJ74BQG.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8280" + }, + "appliesTo" : [ ] + }, + "73PG2QBG4QJ74BQG.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "73PG2QBG4QJ74BQG.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "73PG2QBG4QJ74BQG.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "73PG2QBG4QJ74BQG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "73PG2QBG4QJ74BQG.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "73PG2QBG4QJ74BQG.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "73PG2QBG4QJ74BQG.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "73PG2QBG4QJ74BQG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "73PG2QBG4QJ74BQG.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "73PG2QBG4QJ74BQG.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16523" + }, + "appliesTo" : [ ] + }, + "73PG2QBG4QJ74BQG.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "73PG2QBG4QJ74BQG.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "VYJECTWWHZY57WXX" : { + "VYJECTWWHZY57WXX.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "VYJECTWWHZY57WXX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "VYJECTWWHZY57WXX.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "VYJECTWWHZY57WXX.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4558" + }, + "appliesTo" : [ ] + }, + "VYJECTWWHZY57WXX.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "VYJECTWWHZY57WXX.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VYJECTWWHZY57WXX.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "VYJECTWWHZY57WXX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "VYJECTWWHZY57WXX.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "VYJECTWWHZY57WXX.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2002" + }, + "appliesTo" : [ ] + }, + "VYJECTWWHZY57WXX.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "VYJECTWWHZY57WXX.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VYJECTWWHZY57WXX.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "VYJECTWWHZY57WXX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VYJECTWWHZY57WXX.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "VYJECTWWHZY57WXX.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5552" + }, + "appliesTo" : [ ] + }, + "VYJECTWWHZY57WXX.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "VYJECTWWHZY57WXX.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VYJECTWWHZY57WXX.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "VYJECTWWHZY57WXX", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "VYJECTWWHZY57WXX.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "VYJECTWWHZY57WXX.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VYJECTWWHZY57WXX.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "VYJECTWWHZY57WXX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "VYJECTWWHZY57WXX.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "VYJECTWWHZY57WXX.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "VYJECTWWHZY57WXX.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "VYJECTWWHZY57WXX.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9381" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VYJECTWWHZY57WXX.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "VYJECTWWHZY57WXX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "VYJECTWWHZY57WXX.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "VYJECTWWHZY57WXX.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VYJECTWWHZY57WXX.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "VYJECTWWHZY57WXX", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "VYJECTWWHZY57WXX.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "VYJECTWWHZY57WXX.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2650000000" + }, + "appliesTo" : [ ] + }, + "VYJECTWWHZY57WXX.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "VYJECTWWHZY57WXX.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3014" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VYJECTWWHZY57WXX.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "VYJECTWWHZY57WXX", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "VYJECTWWHZY57WXX.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "VYJECTWWHZY57WXX.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12647" + }, + "appliesTo" : [ ] + }, + "VYJECTWWHZY57WXX.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "VYJECTWWHZY57WXX.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VYJECTWWHZY57WXX.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "VYJECTWWHZY57WXX", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "VYJECTWWHZY57WXX.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "VYJECTWWHZY57WXX.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5405" + }, + "appliesTo" : [ ] + }, + "VYJECTWWHZY57WXX.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "VYJECTWWHZY57WXX.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VYJECTWWHZY57WXX.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "VYJECTWWHZY57WXX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VYJECTWWHZY57WXX.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "VYJECTWWHZY57WXX.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2816" + }, + "appliesTo" : [ ] + }, + "VYJECTWWHZY57WXX.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "VYJECTWWHZY57WXX.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VYJECTWWHZY57WXX.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "VYJECTWWHZY57WXX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VYJECTWWHZY57WXX.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "VYJECTWWHZY57WXX.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "XP36THJWHRJ7JUHM" : { + "XP36THJWHRJ7JUHM.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "XP36THJWHRJ7JUHM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XP36THJWHRJ7JUHM.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "XP36THJWHRJ7JUHM.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XP36THJWHRJ7JUHM.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "XP36THJWHRJ7JUHM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XP36THJWHRJ7JUHM.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "XP36THJWHRJ7JUHM.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XP36THJWHRJ7JUHM.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XP36THJWHRJ7JUHM", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "XP36THJWHRJ7JUHM.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XP36THJWHRJ7JUHM.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "XP36THJWHRJ7JUHM.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XP36THJWHRJ7JUHM.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10353" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XP36THJWHRJ7JUHM.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "XP36THJWHRJ7JUHM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XP36THJWHRJ7JUHM.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "XP36THJWHRJ7JUHM.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11709" + }, + "appliesTo" : [ ] + }, + "XP36THJWHRJ7JUHM.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "XP36THJWHRJ7JUHM.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XP36THJWHRJ7JUHM.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "XP36THJWHRJ7JUHM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XP36THJWHRJ7JUHM.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "XP36THJWHRJ7JUHM.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5167" + }, + "appliesTo" : [ ] + }, + "XP36THJWHRJ7JUHM.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "XP36THJWHRJ7JUHM.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XP36THJWHRJ7JUHM.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XP36THJWHRJ7JUHM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XP36THJWHRJ7JUHM.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XP36THJWHRJ7JUHM.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3690" + }, + "appliesTo" : [ ] + }, + "XP36THJWHRJ7JUHM.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XP36THJWHRJ7JUHM.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XP36THJWHRJ7JUHM.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "XP36THJWHRJ7JUHM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XP36THJWHRJ7JUHM.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "XP36THJWHRJ7JUHM.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4231" + }, + "appliesTo" : [ ] + }, + "XP36THJWHRJ7JUHM.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "XP36THJWHRJ7JUHM.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XP36THJWHRJ7JUHM.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XP36THJWHRJ7JUHM", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "XP36THJWHRJ7JUHM.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XP36THJWHRJ7JUHM.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1777" + }, + "appliesTo" : [ ] + }, + "XP36THJWHRJ7JUHM.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XP36THJWHRJ7JUHM.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XP36THJWHRJ7JUHM.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "XP36THJWHRJ7JUHM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XP36THJWHRJ7JUHM.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "XP36THJWHRJ7JUHM.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3650000000" + }, + "appliesTo" : [ ] + }, + "XP36THJWHRJ7JUHM.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "XP36THJWHRJ7JUHM.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2055" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XP36THJWHRJ7JUHM.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "XP36THJWHRJ7JUHM", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XP36THJWHRJ7JUHM.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "XP36THJWHRJ7JUHM.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XP36THJWHRJ7JUHM.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XP36THJWHRJ7JUHM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XP36THJWHRJ7JUHM.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XP36THJWHRJ7JUHM.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XP36THJWHRJ7JUHM.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XP36THJWHRJ7JUHM", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XP36THJWHRJ7JUHM.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XP36THJWHRJ7JUHM.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "XP36THJWHRJ7JUHM.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XP36THJWHRJ7JUHM.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4621" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "R5VPK73B6MUUM6YC" : { + "R5VPK73B6MUUM6YC.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "R5VPK73B6MUUM6YC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "R5VPK73B6MUUM6YC.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "R5VPK73B6MUUM6YC.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "R5VPK73B6MUUM6YC.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "R5VPK73B6MUUM6YC", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "R5VPK73B6MUUM6YC.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "R5VPK73B6MUUM6YC.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12746" + }, + "appliesTo" : [ ] + }, + "R5VPK73B6MUUM6YC.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "R5VPK73B6MUUM6YC.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "R5VPK73B6MUUM6YC.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "R5VPK73B6MUUM6YC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "R5VPK73B6MUUM6YC.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "R5VPK73B6MUUM6YC.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38638" + }, + "appliesTo" : [ ] + }, + "R5VPK73B6MUUM6YC.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "R5VPK73B6MUUM6YC.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "R5VPK73B6MUUM6YC.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "R5VPK73B6MUUM6YC", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "R5VPK73B6MUUM6YC.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "R5VPK73B6MUUM6YC.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "R5VPK73B6MUUM6YC.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "R5VPK73B6MUUM6YC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "R5VPK73B6MUUM6YC.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "R5VPK73B6MUUM6YC.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18650" + }, + "appliesTo" : [ ] + }, + "R5VPK73B6MUUM6YC.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "R5VPK73B6MUUM6YC.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "R5VPK73B6MUUM6YC.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "R5VPK73B6MUUM6YC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R5VPK73B6MUUM6YC.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "R5VPK73B6MUUM6YC.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24677" + }, + "appliesTo" : [ ] + }, + "R5VPK73B6MUUM6YC.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "R5VPK73B6MUUM6YC.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "R5VPK73B6MUUM6YC.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "R5VPK73B6MUUM6YC", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "R5VPK73B6MUUM6YC.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "R5VPK73B6MUUM6YC.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21586" + }, + "appliesTo" : [ ] + }, + "R5VPK73B6MUUM6YC.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "R5VPK73B6MUUM6YC.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "R5VPK73B6MUUM6YC.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "R5VPK73B6MUUM6YC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "R5VPK73B6MUUM6YC.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "R5VPK73B6MUUM6YC.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7996" + }, + "appliesTo" : [ ] + }, + "R5VPK73B6MUUM6YC.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "R5VPK73B6MUUM6YC.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "R5VPK73B6MUUM6YC.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "R5VPK73B6MUUM6YC", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "R5VPK73B6MUUM6YC.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "R5VPK73B6MUUM6YC.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "R5VPK73B6MUUM6YC.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "R5VPK73B6MUUM6YC.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "51837" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "R5VPK73B6MUUM6YC.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "R5VPK73B6MUUM6YC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R5VPK73B6MUUM6YC.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "R5VPK73B6MUUM6YC.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "R5VPK73B6MUUM6YC.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "R5VPK73B6MUUM6YC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "R5VPK73B6MUUM6YC.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "R5VPK73B6MUUM6YC.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12500" + }, + "appliesTo" : [ ] + }, + "R5VPK73B6MUUM6YC.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "R5VPK73B6MUUM6YC.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "TQYX838K5K3QH7KK" : { + "TQYX838K5K3QH7KK.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "TQYX838K5K3QH7KK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TQYX838K5K3QH7KK.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "TQYX838K5K3QH7KK.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TQYX838K5K3QH7KK.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "TQYX838K5K3QH7KK.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11823" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TQYX838K5K3QH7KK.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TQYX838K5K3QH7KK", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "TQYX838K5K3QH7KK.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TQYX838K5K3QH7KK.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TQYX838K5K3QH7KK.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TQYX838K5K3QH7KK.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29370" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TQYX838K5K3QH7KK.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "TQYX838K5K3QH7KK", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "TQYX838K5K3QH7KK.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "TQYX838K5K3QH7KK.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TQYX838K5K3QH7KK.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "TQYX838K5K3QH7KK", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "TQYX838K5K3QH7KK.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "TQYX838K5K3QH7KK.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "TQYX838K5K3QH7KK.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "TQYX838K5K3QH7KK.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33285" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TQYX838K5K3QH7KK.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TQYX838K5K3QH7KK", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "TQYX838K5K3QH7KK.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TQYX838K5K3QH7KK.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TQYX838K5K3QH7KK.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TQYX838K5K3QH7KK", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "TQYX838K5K3QH7KK.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TQYX838K5K3QH7KK.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4622" + }, + "appliesTo" : [ ] + }, + "TQYX838K5K3QH7KK.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TQYX838K5K3QH7KK.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TQYX838K5K3QH7KK.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "TQYX838K5K3QH7KK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TQYX838K5K3QH7KK.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "TQYX838K5K3QH7KK.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TQYX838K5K3QH7KK.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "TQYX838K5K3QH7KK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TQYX838K5K3QH7KK.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "TQYX838K5K3QH7KK.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6780000000" + }, + "appliesTo" : [ ] + }, + "TQYX838K5K3QH7KK.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "TQYX838K5K3QH7KK.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5937" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TQYX838K5K3QH7KK.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TQYX838K5K3QH7KK", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "TQYX838K5K3QH7KK.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TQYX838K5K3QH7KK.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11312" + }, + "appliesTo" : [ ] + }, + "TQYX838K5K3QH7KK.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TQYX838K5K3QH7KK.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TQYX838K5K3QH7KK.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "TQYX838K5K3QH7KK", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "TQYX838K5K3QH7KK.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "TQYX838K5K3QH7KK.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13475" + }, + "appliesTo" : [ ] + }, + "TQYX838K5K3QH7KK.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "TQYX838K5K3QH7KK.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TQYX838K5K3QH7KK.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TQYX838K5K3QH7KK", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "TQYX838K5K3QH7KK.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TQYX838K5K3QH7KK.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12507" + }, + "appliesTo" : [ ] + }, + "TQYX838K5K3QH7KK.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TQYX838K5K3QH7KK.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "U2FYDQN5UB6DJ9P6" : { + "U2FYDQN5UB6DJ9P6.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "U2FYDQN5UB6DJ9P6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "U2FYDQN5UB6DJ9P6.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "U2FYDQN5UB6DJ9P6.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "958" + }, + "appliesTo" : [ ] + }, + "U2FYDQN5UB6DJ9P6.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "U2FYDQN5UB6DJ9P6.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "U2FYDQN5UB6DJ9P6.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "U2FYDQN5UB6DJ9P6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "U2FYDQN5UB6DJ9P6.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "U2FYDQN5UB6DJ9P6.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "U2FYDQN5UB6DJ9P6.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "U2FYDQN5UB6DJ9P6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "U2FYDQN5UB6DJ9P6.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "U2FYDQN5UB6DJ9P6.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "U2FYDQN5UB6DJ9P6.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "U2FYDQN5UB6DJ9P6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "U2FYDQN5UB6DJ9P6.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "U2FYDQN5UB6DJ9P6.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2281" + }, + "appliesTo" : [ ] + }, + "U2FYDQN5UB6DJ9P6.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "U2FYDQN5UB6DJ9P6.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "U2FYDQN5UB6DJ9P6.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "U2FYDQN5UB6DJ9P6", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "U2FYDQN5UB6DJ9P6.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "U2FYDQN5UB6DJ9P6.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1108" + }, + "appliesTo" : [ ] + }, + "U2FYDQN5UB6DJ9P6.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "U2FYDQN5UB6DJ9P6.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "U2FYDQN5UB6DJ9P6.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "U2FYDQN5UB6DJ9P6", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "U2FYDQN5UB6DJ9P6.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "U2FYDQN5UB6DJ9P6.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0560000000" + }, + "appliesTo" : [ ] + }, + "U2FYDQN5UB6DJ9P6.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "U2FYDQN5UB6DJ9P6.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "489" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "U2FYDQN5UB6DJ9P6.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "U2FYDQN5UB6DJ9P6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "U2FYDQN5UB6DJ9P6.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "U2FYDQN5UB6DJ9P6.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "U2FYDQN5UB6DJ9P6.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "U2FYDQN5UB6DJ9P6", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "U2FYDQN5UB6DJ9P6.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "U2FYDQN5UB6DJ9P6.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "U2FYDQN5UB6DJ9P6.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "U2FYDQN5UB6DJ9P6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U2FYDQN5UB6DJ9P6.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "U2FYDQN5UB6DJ9P6.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "565" + }, + "appliesTo" : [ ] + }, + "U2FYDQN5UB6DJ9P6.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "U2FYDQN5UB6DJ9P6.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "U2FYDQN5UB6DJ9P6.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "U2FYDQN5UB6DJ9P6", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "U2FYDQN5UB6DJ9P6.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "U2FYDQN5UB6DJ9P6.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1908" + }, + "appliesTo" : [ ] + }, + "U2FYDQN5UB6DJ9P6.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "U2FYDQN5UB6DJ9P6.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "U2FYDQN5UB6DJ9P6.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "U2FYDQN5UB6DJ9P6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "U2FYDQN5UB6DJ9P6.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "U2FYDQN5UB6DJ9P6.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1164" + }, + "appliesTo" : [ ] + }, + "U2FYDQN5UB6DJ9P6.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "U2FYDQN5UB6DJ9P6.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "U2FYDQN5UB6DJ9P6.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "U2FYDQN5UB6DJ9P6", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "U2FYDQN5UB6DJ9P6.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "U2FYDQN5UB6DJ9P6.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1012" + }, + "appliesTo" : [ ] + }, + "U2FYDQN5UB6DJ9P6.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "U2FYDQN5UB6DJ9P6.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "4EBV6P5EQBBDFNKX" : { + "4EBV6P5EQBBDFNKX.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "4EBV6P5EQBBDFNKX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4EBV6P5EQBBDFNKX.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "4EBV6P5EQBBDFNKX.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16059" + }, + "appliesTo" : [ ] + }, + "4EBV6P5EQBBDFNKX.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "4EBV6P5EQBBDFNKX.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8333000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4EBV6P5EQBBDFNKX.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "4EBV6P5EQBBDFNKX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4EBV6P5EQBBDFNKX.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "4EBV6P5EQBBDFNKX.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5866000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "4EBV6P5EQBBDFNKX.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "4EBV6P5EQBBDFNKX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4EBV6P5EQBBDFNKX.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "4EBV6P5EQBBDFNKX.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32067" + }, + "appliesTo" : [ ] + }, + "4EBV6P5EQBBDFNKX.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "4EBV6P5EQBBDFNKX.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4EBV6P5EQBBDFNKX.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "4EBV6P5EQBBDFNKX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4EBV6P5EQBBDFNKX.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "4EBV6P5EQBBDFNKX.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5581000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "4EBV6P5EQBBDFNKX.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "4EBV6P5EQBBDFNKX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4EBV6P5EQBBDFNKX.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "4EBV6P5EQBBDFNKX.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6406000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "4EBV6P5EQBBDFNKX.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "4EBV6P5EQBBDFNKX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4EBV6P5EQBBDFNKX.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "4EBV6P5EQBBDFNKX.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "93724" + }, + "appliesTo" : [ ] + }, + "4EBV6P5EQBBDFNKX.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "4EBV6P5EQBBDFNKX.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4EBV6P5EQBBDFNKX.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "4EBV6P5EQBBDFNKX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4EBV6P5EQBBDFNKX.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "4EBV6P5EQBBDFNKX.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15889" + }, + "appliesTo" : [ ] + }, + "4EBV6P5EQBBDFNKX.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "4EBV6P5EQBBDFNKX.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8138000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4EBV6P5EQBBDFNKX.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "4EBV6P5EQBBDFNKX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4EBV6P5EQBBDFNKX.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "4EBV6P5EQBBDFNKX.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31732" + }, + "appliesTo" : [ ] + }, + "4EBV6P5EQBBDFNKX.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "4EBV6P5EQBBDFNKX.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4EBV6P5EQBBDFNKX.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "4EBV6P5EQBBDFNKX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4EBV6P5EQBBDFNKX.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "4EBV6P5EQBBDFNKX.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6815000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "4EBV6P5EQBBDFNKX.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "4EBV6P5EQBBDFNKX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4EBV6P5EQBBDFNKX.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "4EBV6P5EQBBDFNKX.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "92859" + }, + "appliesTo" : [ ] + }, + "4EBV6P5EQBBDFNKX.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "4EBV6P5EQBBDFNKX.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4EBV6P5EQBBDFNKX.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "4EBV6P5EQBBDFNKX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4EBV6P5EQBBDFNKX.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "4EBV6P5EQBBDFNKX.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46568" + }, + "appliesTo" : [ ] + }, + "4EBV6P5EQBBDFNKX.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "4EBV6P5EQBBDFNKX.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4EBV6P5EQBBDFNKX.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "4EBV6P5EQBBDFNKX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4EBV6P5EQBBDFNKX.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "4EBV6P5EQBBDFNKX.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7852000000" + }, + "appliesTo" : [ ] + }, + "4EBV6P5EQBBDFNKX.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "4EBV6P5EQBBDFNKX.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46915" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "PEEKBP32QZKKEGWF" : { + "PEEKBP32QZKKEGWF.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "PEEKBP32QZKKEGWF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PEEKBP32QZKKEGWF.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "PEEKBP32QZKKEGWF.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.0120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "PEEKBP32QZKKEGWF.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "PEEKBP32QZKKEGWF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PEEKBP32QZKKEGWF.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "PEEKBP32QZKKEGWF.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34272" + }, + "appliesTo" : [ ] + }, + "PEEKBP32QZKKEGWF.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "PEEKBP32QZKKEGWF.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PEEKBP32QZKKEGWF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "PEEKBP32QZKKEGWF", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "PEEKBP32QZKKEGWF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "PEEKBP32QZKKEGWF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32043" + }, + "appliesTo" : [ ] + }, + "PEEKBP32QZKKEGWF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "PEEKBP32QZKKEGWF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PEEKBP32QZKKEGWF.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "PEEKBP32QZKKEGWF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PEEKBP32QZKKEGWF.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "PEEKBP32QZKKEGWF.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "PEEKBP32QZKKEGWF.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "PEEKBP32QZKKEGWF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PEEKBP32QZKKEGWF.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "PEEKBP32QZKKEGWF.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3240000000" + }, + "appliesTo" : [ ] + }, + "PEEKBP32QZKKEGWF.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "PEEKBP32QZKKEGWF.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "87342" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PEEKBP32QZKKEGWF.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "PEEKBP32QZKKEGWF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PEEKBP32QZKKEGWF.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "PEEKBP32QZKKEGWF.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.4900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "PEEKBP32QZKKEGWF.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "PEEKBP32QZKKEGWF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PEEKBP32QZKKEGWF.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "PEEKBP32QZKKEGWF.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.8530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "PEEKBP32QZKKEGWF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "PEEKBP32QZKKEGWF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PEEKBP32QZKKEGWF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "PEEKBP32QZKKEGWF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "162479" + }, + "appliesTo" : [ ] + }, + "PEEKBP32QZKKEGWF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "PEEKBP32QZKKEGWF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PEEKBP32QZKKEGWF.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "PEEKBP32QZKKEGWF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PEEKBP32QZKKEGWF.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "PEEKBP32QZKKEGWF.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "67886" + }, + "appliesTo" : [ ] + }, + "PEEKBP32QZKKEGWF.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "PEEKBP32QZKKEGWF.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PEEKBP32QZKKEGWF.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "PEEKBP32QZKKEGWF", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PEEKBP32QZKKEGWF.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "PEEKBP32QZKKEGWF.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "173330" + }, + "appliesTo" : [ ] + }, + "PEEKBP32QZKKEGWF.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "PEEKBP32QZKKEGWF.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PEEKBP32QZKKEGWF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "PEEKBP32QZKKEGWF", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "PEEKBP32QZKKEGWF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "PEEKBP32QZKKEGWF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "63518" + }, + "appliesTo" : [ ] + }, + "PEEKBP32QZKKEGWF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "PEEKBP32QZKKEGWF.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PEEKBP32QZKKEGWF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "PEEKBP32QZKKEGWF", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "PEEKBP32QZKKEGWF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "PEEKBP32QZKKEGWF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "83011" + }, + "appliesTo" : [ ] + }, + "PEEKBP32QZKKEGWF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "PEEKBP32QZKKEGWF.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "DRXSTBE8SCECG53R" : { + "DRXSTBE8SCECG53R.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "DRXSTBE8SCECG53R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DRXSTBE8SCECG53R.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "DRXSTBE8SCECG53R.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "89925" + }, + "appliesTo" : [ ] + }, + "DRXSTBE8SCECG53R.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "DRXSTBE8SCECG53R.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.2650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DRXSTBE8SCECG53R.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "DRXSTBE8SCECG53R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DRXSTBE8SCECG53R.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "DRXSTBE8SCECG53R.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "21.0260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DRXSTBE8SCECG53R.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "DRXSTBE8SCECG53R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DRXSTBE8SCECG53R.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "DRXSTBE8SCECG53R.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "167021" + }, + "appliesTo" : [ ] + }, + "DRXSTBE8SCECG53R.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "DRXSTBE8SCECG53R.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DRXSTBE8SCECG53R.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "DRXSTBE8SCECG53R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DRXSTBE8SCECG53R.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "DRXSTBE8SCECG53R.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "205619" + }, + "appliesTo" : [ ] + }, + "DRXSTBE8SCECG53R.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "DRXSTBE8SCECG53R.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.8240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DRXSTBE8SCECG53R.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "DRXSTBE8SCECG53R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DRXSTBE8SCECG53R.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "DRXSTBE8SCECG53R.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "197008" + }, + "appliesTo" : [ ] + }, + "DRXSTBE8SCECG53R.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "DRXSTBE8SCECG53R.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DRXSTBE8SCECG53R.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "DRXSTBE8SCECG53R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DRXSTBE8SCECG53R.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "DRXSTBE8SCECG53R.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "178115" + }, + "appliesTo" : [ ] + }, + "DRXSTBE8SCECG53R.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "DRXSTBE8SCECG53R.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DRXSTBE8SCECG53R.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "DRXSTBE8SCECG53R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DRXSTBE8SCECG53R.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "DRXSTBE8SCECG53R.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "387126" + }, + "appliesTo" : [ ] + }, + "DRXSTBE8SCECG53R.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "DRXSTBE8SCECG53R.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DRXSTBE8SCECG53R.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "DRXSTBE8SCECG53R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DRXSTBE8SCECG53R.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "DRXSTBE8SCECG53R.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.3420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DRXSTBE8SCECG53R.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "DRXSTBE8SCECG53R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DRXSTBE8SCECG53R.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "DRXSTBE8SCECG53R.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.0500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DRXSTBE8SCECG53R.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "DRXSTBE8SCECG53R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DRXSTBE8SCECG53R.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "DRXSTBE8SCECG53R.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "19.6690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DRXSTBE8SCECG53R.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "DRXSTBE8SCECG53R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DRXSTBE8SCECG53R.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "DRXSTBE8SCECG53R.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "408597" + }, + "appliesTo" : [ ] + }, + "DRXSTBE8SCECG53R.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "DRXSTBE8SCECG53R.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DRXSTBE8SCECG53R.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "DRXSTBE8SCECG53R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DRXSTBE8SCECG53R.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "DRXSTBE8SCECG53R.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "84265" + }, + "appliesTo" : [ ] + }, + "DRXSTBE8SCECG53R.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "DRXSTBE8SCECG53R.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.6190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "22SBKEJ8F25GCA2X" : { + "22SBKEJ8F25GCA2X.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "22SBKEJ8F25GCA2X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "22SBKEJ8F25GCA2X.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "22SBKEJ8F25GCA2X.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8016" + }, + "appliesTo" : [ ] + }, + "22SBKEJ8F25GCA2X.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "22SBKEJ8F25GCA2X.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "22SBKEJ8F25GCA2X.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "22SBKEJ8F25GCA2X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "22SBKEJ8F25GCA2X.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "22SBKEJ8F25GCA2X.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16145" + }, + "appliesTo" : [ ] + }, + "22SBKEJ8F25GCA2X.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "22SBKEJ8F25GCA2X.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "22SBKEJ8F25GCA2X.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "22SBKEJ8F25GCA2X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "22SBKEJ8F25GCA2X.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "22SBKEJ8F25GCA2X.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8082" + }, + "appliesTo" : [ ] + }, + "22SBKEJ8F25GCA2X.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "22SBKEJ8F25GCA2X.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "22SBKEJ8F25GCA2X.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "22SBKEJ8F25GCA2X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "22SBKEJ8F25GCA2X.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "22SBKEJ8F25GCA2X.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "22SBKEJ8F25GCA2X.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "22SBKEJ8F25GCA2X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "22SBKEJ8F25GCA2X.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "22SBKEJ8F25GCA2X.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "22SBKEJ8F25GCA2X.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "22SBKEJ8F25GCA2X.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15981" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "22SBKEJ8F25GCA2X.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "22SBKEJ8F25GCA2X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "22SBKEJ8F25GCA2X.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "22SBKEJ8F25GCA2X.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "22SBKEJ8F25GCA2X.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "22SBKEJ8F25GCA2X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "22SBKEJ8F25GCA2X.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "22SBKEJ8F25GCA2X.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "22SBKEJ8F25GCA2X.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "22SBKEJ8F25GCA2X.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5493" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "22SBKEJ8F25GCA2X.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "22SBKEJ8F25GCA2X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "22SBKEJ8F25GCA2X.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "22SBKEJ8F25GCA2X.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3140000000" + }, + "appliesTo" : [ ] + }, + "22SBKEJ8F25GCA2X.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "22SBKEJ8F25GCA2X.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2751" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "22SBKEJ8F25GCA2X.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "22SBKEJ8F25GCA2X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "22SBKEJ8F25GCA2X.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "22SBKEJ8F25GCA2X.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "22SBKEJ8F25GCA2X.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "22SBKEJ8F25GCA2X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "22SBKEJ8F25GCA2X.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "22SBKEJ8F25GCA2X.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5559" + }, + "appliesTo" : [ ] + }, + "22SBKEJ8F25GCA2X.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "22SBKEJ8F25GCA2X.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "22SBKEJ8F25GCA2X.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "22SBKEJ8F25GCA2X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "22SBKEJ8F25GCA2X.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "22SBKEJ8F25GCA2X.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "22SBKEJ8F25GCA2X.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "22SBKEJ8F25GCA2X", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "22SBKEJ8F25GCA2X.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "22SBKEJ8F25GCA2X.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3180000000" + }, + "appliesTo" : [ ] + }, + "22SBKEJ8F25GCA2X.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "22SBKEJ8F25GCA2X.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2785" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "P3HMXPX59K45JP62" : { + "P3HMXPX59K45JP62.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "P3HMXPX59K45JP62", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P3HMXPX59K45JP62.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "P3HMXPX59K45JP62.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "P3HMXPX59K45JP62.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "P3HMXPX59K45JP62", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P3HMXPX59K45JP62.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "P3HMXPX59K45JP62.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0420000000" + }, + "appliesTo" : [ ] + }, + "P3HMXPX59K45JP62.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "P3HMXPX59K45JP62.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "433" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "P3HMXPX59K45JP62.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "P3HMXPX59K45JP62", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P3HMXPX59K45JP62.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "P3HMXPX59K45JP62.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0390000000" + }, + "appliesTo" : [ ] + }, + "P3HMXPX59K45JP62.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "P3HMXPX59K45JP62.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "399" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "P3HMXPX59K45JP62.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "P3HMXPX59K45JP62", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P3HMXPX59K45JP62.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "P3HMXPX59K45JP62.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "P3HMXPX59K45JP62.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "P3HMXPX59K45JP62", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P3HMXPX59K45JP62.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "P3HMXPX59K45JP62.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "793" + }, + "appliesTo" : [ ] + }, + "P3HMXPX59K45JP62.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "P3HMXPX59K45JP62.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "P3HMXPX59K45JP62.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "P3HMXPX59K45JP62", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P3HMXPX59K45JP62.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "P3HMXPX59K45JP62.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "P3HMXPX59K45JP62.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "P3HMXPX59K45JP62", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P3HMXPX59K45JP62.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "P3HMXPX59K45JP62.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "851" + }, + "appliesTo" : [ ] + }, + "P3HMXPX59K45JP62.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "P3HMXPX59K45JP62.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "P3HMXPX59K45JP62.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "P3HMXPX59K45JP62", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P3HMXPX59K45JP62.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "P3HMXPX59K45JP62.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1673" + }, + "appliesTo" : [ ] + }, + "P3HMXPX59K45JP62.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "P3HMXPX59K45JP62.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "P3HMXPX59K45JP62.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "P3HMXPX59K45JP62", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P3HMXPX59K45JP62.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "P3HMXPX59K45JP62.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "728" + }, + "appliesTo" : [ ] + }, + "P3HMXPX59K45JP62.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "P3HMXPX59K45JP62.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "P3HMXPX59K45JP62.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "P3HMXPX59K45JP62", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P3HMXPX59K45JP62.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "P3HMXPX59K45JP62.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1509" + }, + "appliesTo" : [ ] + }, + "P3HMXPX59K45JP62.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "P3HMXPX59K45JP62.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "P3HMXPX59K45JP62.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "P3HMXPX59K45JP62", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P3HMXPX59K45JP62.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "P3HMXPX59K45JP62.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "P3HMXPX59K45JP62.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "P3HMXPX59K45JP62", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "P3HMXPX59K45JP62.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "P3HMXPX59K45JP62.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0290000000" + }, + "appliesTo" : [ ] + }, + "P3HMXPX59K45JP62.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "P3HMXPX59K45JP62.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "785" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "MAVGNUA5DQ5SM9C7" : { + "MAVGNUA5DQ5SM9C7.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "MAVGNUA5DQ5SM9C7", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "MAVGNUA5DQ5SM9C7.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "MAVGNUA5DQ5SM9C7.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1018" + }, + "appliesTo" : [ ] + }, + "MAVGNUA5DQ5SM9C7.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "MAVGNUA5DQ5SM9C7.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MAVGNUA5DQ5SM9C7.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "MAVGNUA5DQ5SM9C7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MAVGNUA5DQ5SM9C7.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "MAVGNUA5DQ5SM9C7.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "MAVGNUA5DQ5SM9C7.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "MAVGNUA5DQ5SM9C7.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1913" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MAVGNUA5DQ5SM9C7.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "MAVGNUA5DQ5SM9C7", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "MAVGNUA5DQ5SM9C7.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "MAVGNUA5DQ5SM9C7.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4459" + }, + "appliesTo" : [ ] + }, + "MAVGNUA5DQ5SM9C7.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "MAVGNUA5DQ5SM9C7.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MAVGNUA5DQ5SM9C7.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "MAVGNUA5DQ5SM9C7", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "MAVGNUA5DQ5SM9C7.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "MAVGNUA5DQ5SM9C7.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MAVGNUA5DQ5SM9C7.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "MAVGNUA5DQ5SM9C7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MAVGNUA5DQ5SM9C7.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "MAVGNUA5DQ5SM9C7.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1004" + }, + "appliesTo" : [ ] + }, + "MAVGNUA5DQ5SM9C7.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "MAVGNUA5DQ5SM9C7.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MAVGNUA5DQ5SM9C7.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "MAVGNUA5DQ5SM9C7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MAVGNUA5DQ5SM9C7.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "MAVGNUA5DQ5SM9C7.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MAVGNUA5DQ5SM9C7.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "MAVGNUA5DQ5SM9C7", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "MAVGNUA5DQ5SM9C7.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "MAVGNUA5DQ5SM9C7.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MAVGNUA5DQ5SM9C7.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "MAVGNUA5DQ5SM9C7", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MAVGNUA5DQ5SM9C7.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "MAVGNUA5DQ5SM9C7.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1697" + }, + "appliesTo" : [ ] + }, + "MAVGNUA5DQ5SM9C7.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "MAVGNUA5DQ5SM9C7.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MAVGNUA5DQ5SM9C7.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "MAVGNUA5DQ5SM9C7", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "MAVGNUA5DQ5SM9C7.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "MAVGNUA5DQ5SM9C7.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2625" + }, + "appliesTo" : [ ] + }, + "MAVGNUA5DQ5SM9C7.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "MAVGNUA5DQ5SM9C7.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MAVGNUA5DQ5SM9C7.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "MAVGNUA5DQ5SM9C7", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "MAVGNUA5DQ5SM9C7.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "MAVGNUA5DQ5SM9C7.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1713" + }, + "appliesTo" : [ ] + }, + "MAVGNUA5DQ5SM9C7.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "MAVGNUA5DQ5SM9C7.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MAVGNUA5DQ5SM9C7.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "MAVGNUA5DQ5SM9C7", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MAVGNUA5DQ5SM9C7.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "MAVGNUA5DQ5SM9C7.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3349" + }, + "appliesTo" : [ ] + }, + "MAVGNUA5DQ5SM9C7.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "MAVGNUA5DQ5SM9C7.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "6TEX73KEE94WMEED" : { + "6TEX73KEE94WMEED.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6TEX73KEE94WMEED", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "6TEX73KEE94WMEED.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6TEX73KEE94WMEED.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5139" + }, + "appliesTo" : [ ] + }, + "6TEX73KEE94WMEED.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6TEX73KEE94WMEED.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6TEX73KEE94WMEED.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6TEX73KEE94WMEED", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6TEX73KEE94WMEED.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6TEX73KEE94WMEED.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1620" + }, + "appliesTo" : [ ] + }, + "6TEX73KEE94WMEED.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6TEX73KEE94WMEED.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6TEX73KEE94WMEED.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6TEX73KEE94WMEED", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6TEX73KEE94WMEED.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6TEX73KEE94WMEED.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6TEX73KEE94WMEED.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6TEX73KEE94WMEED", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "6TEX73KEE94WMEED.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6TEX73KEE94WMEED.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2703" + }, + "appliesTo" : [ ] + }, + "6TEX73KEE94WMEED.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6TEX73KEE94WMEED.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6TEX73KEE94WMEED.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6TEX73KEE94WMEED", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6TEX73KEE94WMEED.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6TEX73KEE94WMEED.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2524" + }, + "appliesTo" : [ ] + }, + "6TEX73KEE94WMEED.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6TEX73KEE94WMEED.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "GTXM83ZHJ4EVYY9U" : { + "GTXM83ZHJ4EVYY9U.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "GTXM83ZHJ4EVYY9U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GTXM83ZHJ4EVYY9U.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "GTXM83ZHJ4EVYY9U.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "GTXM83ZHJ4EVYY9U.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "GTXM83ZHJ4EVYY9U", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "GTXM83ZHJ4EVYY9U.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "GTXM83ZHJ4EVYY9U.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GTXM83ZHJ4EVYY9U.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "GTXM83ZHJ4EVYY9U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GTXM83ZHJ4EVYY9U.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "GTXM83ZHJ4EVYY9U.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11541" + }, + "appliesTo" : [ ] + }, + "GTXM83ZHJ4EVYY9U.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "GTXM83ZHJ4EVYY9U.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GTXM83ZHJ4EVYY9U.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "GTXM83ZHJ4EVYY9U", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "GTXM83ZHJ4EVYY9U.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "GTXM83ZHJ4EVYY9U.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "GTXM83ZHJ4EVYY9U.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "GTXM83ZHJ4EVYY9U", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "GTXM83ZHJ4EVYY9U.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "GTXM83ZHJ4EVYY9U.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4150000000" + }, + "appliesTo" : [ ] + }, + "GTXM83ZHJ4EVYY9U.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "GTXM83ZHJ4EVYY9U.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19249" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GTXM83ZHJ4EVYY9U.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "GTXM83ZHJ4EVYY9U", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GTXM83ZHJ4EVYY9U.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "GTXM83ZHJ4EVYY9U.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19307" + }, + "appliesTo" : [ ] + }, + "GTXM83ZHJ4EVYY9U.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "GTXM83ZHJ4EVYY9U.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GTXM83ZHJ4EVYY9U.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "GTXM83ZHJ4EVYY9U", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GTXM83ZHJ4EVYY9U.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "GTXM83ZHJ4EVYY9U.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "45873" + }, + "appliesTo" : [ ] + }, + "GTXM83ZHJ4EVYY9U.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "GTXM83ZHJ4EVYY9U.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GTXM83ZHJ4EVYY9U.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "GTXM83ZHJ4EVYY9U", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GTXM83ZHJ4EVYY9U.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "GTXM83ZHJ4EVYY9U.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6938" + }, + "appliesTo" : [ ] + }, + "GTXM83ZHJ4EVYY9U.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "GTXM83ZHJ4EVYY9U.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GTXM83ZHJ4EVYY9U.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "GTXM83ZHJ4EVYY9U", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "GTXM83ZHJ4EVYY9U.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "GTXM83ZHJ4EVYY9U.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "GTXM83ZHJ4EVYY9U.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "GTXM83ZHJ4EVYY9U.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "55314" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "GTXM83ZHJ4EVYY9U.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "GTXM83ZHJ4EVYY9U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GTXM83ZHJ4EVYY9U.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "GTXM83ZHJ4EVYY9U.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22878" + }, + "appliesTo" : [ ] + }, + "GTXM83ZHJ4EVYY9U.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "GTXM83ZHJ4EVYY9U.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "GTXM83ZHJ4EVYY9U.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "GTXM83ZHJ4EVYY9U", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GTXM83ZHJ4EVYY9U.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "GTXM83ZHJ4EVYY9U.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11116" + }, + "appliesTo" : [ ] + }, + "GTXM83ZHJ4EVYY9U.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "GTXM83ZHJ4EVYY9U.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "QBZMZDA3WBTDVYJ7" : { + "QBZMZDA3WBTDVYJ7.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "QBZMZDA3WBTDVYJ7", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QBZMZDA3WBTDVYJ7.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "QBZMZDA3WBTDVYJ7.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "QBZMZDA3WBTDVYJ7.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "QBZMZDA3WBTDVYJ7", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QBZMZDA3WBTDVYJ7.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "QBZMZDA3WBTDVYJ7.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9325" + }, + "appliesTo" : [ ] + }, + "QBZMZDA3WBTDVYJ7.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "QBZMZDA3WBTDVYJ7.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QBZMZDA3WBTDVYJ7.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "QBZMZDA3WBTDVYJ7", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "QBZMZDA3WBTDVYJ7.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "QBZMZDA3WBTDVYJ7.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "QBZMZDA3WBTDVYJ7.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "QBZMZDA3WBTDVYJ7", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QBZMZDA3WBTDVYJ7.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "QBZMZDA3WBTDVYJ7.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "QBZMZDA3WBTDVYJ7.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "QBZMZDA3WBTDVYJ7.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19333" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "QBZMZDA3WBTDVYJ7.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "QBZMZDA3WBTDVYJ7", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "QBZMZDA3WBTDVYJ7.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "QBZMZDA3WBTDVYJ7.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25917" + }, + "appliesTo" : [ ] + }, + "QBZMZDA3WBTDVYJ7.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "QBZMZDA3WBTDVYJ7.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QBZMZDA3WBTDVYJ7.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "QBZMZDA3WBTDVYJ7", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QBZMZDA3WBTDVYJ7.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "QBZMZDA3WBTDVYJ7.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5400000000" + }, + "appliesTo" : [ ] + }, + "QBZMZDA3WBTDVYJ7.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "QBZMZDA3WBTDVYJ7.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6373" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QBZMZDA3WBTDVYJ7.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "QBZMZDA3WBTDVYJ7", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "QBZMZDA3WBTDVYJ7.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "QBZMZDA3WBTDVYJ7.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3999" + }, + "appliesTo" : [ ] + }, + "QBZMZDA3WBTDVYJ7.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "QBZMZDA3WBTDVYJ7.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "QBZMZDA3WBTDVYJ7.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "QBZMZDA3WBTDVYJ7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QBZMZDA3WBTDVYJ7.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "QBZMZDA3WBTDVYJ7.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12339" + }, + "appliesTo" : [ ] + }, + "QBZMZDA3WBTDVYJ7.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "QBZMZDA3WBTDVYJ7.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "QBZMZDA3WBTDVYJ7.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "QBZMZDA3WBTDVYJ7", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "QBZMZDA3WBTDVYJ7.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "QBZMZDA3WBTDVYJ7.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10796" + }, + "appliesTo" : [ ] + }, + "QBZMZDA3WBTDVYJ7.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "QBZMZDA3WBTDVYJ7.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QBZMZDA3WBTDVYJ7.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "QBZMZDA3WBTDVYJ7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QBZMZDA3WBTDVYJ7.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "QBZMZDA3WBTDVYJ7.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7130000000" + }, + "appliesTo" : [ ] + }, + "QBZMZDA3WBTDVYJ7.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "QBZMZDA3WBTDVYJ7.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6250" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "QBZMZDA3WBTDVYJ7.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "QBZMZDA3WBTDVYJ7", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "QBZMZDA3WBTDVYJ7.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "QBZMZDA3WBTDVYJ7.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "2BU9UYZTGYW8M965" : { + "2BU9UYZTGYW8M965.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "2BU9UYZTGYW8M965", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "2BU9UYZTGYW8M965.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "2BU9UYZTGYW8M965.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2BU9UYZTGYW8M965.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "2BU9UYZTGYW8M965", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "2BU9UYZTGYW8M965.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "2BU9UYZTGYW8M965.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4386" + }, + "appliesTo" : [ ] + }, + "2BU9UYZTGYW8M965.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "2BU9UYZTGYW8M965.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2BU9UYZTGYW8M965.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "2BU9UYZTGYW8M965", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "2BU9UYZTGYW8M965.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "2BU9UYZTGYW8M965.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1797" + }, + "appliesTo" : [ ] + }, + "2BU9UYZTGYW8M965.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "2BU9UYZTGYW8M965.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2BU9UYZTGYW8M965.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "2BU9UYZTGYW8M965", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "2BU9UYZTGYW8M965.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "2BU9UYZTGYW8M965.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9731" + }, + "appliesTo" : [ ] + }, + "2BU9UYZTGYW8M965.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "2BU9UYZTGYW8M965.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2BU9UYZTGYW8M965.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "2BU9UYZTGYW8M965", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "2BU9UYZTGYW8M965.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "2BU9UYZTGYW8M965.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4138" + }, + "appliesTo" : [ ] + }, + "2BU9UYZTGYW8M965.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "2BU9UYZTGYW8M965.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m1.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "WTV2MMMZFYFVHXYW" : { + "WTV2MMMZFYFVHXYW.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "WTV2MMMZFYFVHXYW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WTV2MMMZFYFVHXYW.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "WTV2MMMZFYFVHXYW.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "WTV2MMMZFYFVHXYW.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "WTV2MMMZFYFVHXYW.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7654" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WTV2MMMZFYFVHXYW.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "WTV2MMMZFYFVHXYW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "WTV2MMMZFYFVHXYW.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "WTV2MMMZFYFVHXYW.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "WTV2MMMZFYFVHXYW.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "WTV2MMMZFYFVHXYW", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "WTV2MMMZFYFVHXYW.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "WTV2MMMZFYFVHXYW.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17301" + }, + "appliesTo" : [ ] + }, + "WTV2MMMZFYFVHXYW.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "WTV2MMMZFYFVHXYW.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WTV2MMMZFYFVHXYW.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "WTV2MMMZFYFVHXYW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "WTV2MMMZFYFVHXYW.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "WTV2MMMZFYFVHXYW.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9490" + }, + "appliesTo" : [ ] + }, + "WTV2MMMZFYFVHXYW.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "WTV2MMMZFYFVHXYW.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "WTV2MMMZFYFVHXYW.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "WTV2MMMZFYFVHXYW", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "WTV2MMMZFYFVHXYW.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "WTV2MMMZFYFVHXYW.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8894" + }, + "appliesTo" : [ ] + }, + "WTV2MMMZFYFVHXYW.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "WTV2MMMZFYFVHXYW.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WTV2MMMZFYFVHXYW.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "WTV2MMMZFYFVHXYW", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "WTV2MMMZFYFVHXYW.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "WTV2MMMZFYFVHXYW.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3566" + }, + "appliesTo" : [ ] + }, + "WTV2MMMZFYFVHXYW.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "WTV2MMMZFYFVHXYW.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "WTV2MMMZFYFVHXYW.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "WTV2MMMZFYFVHXYW", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "WTV2MMMZFYFVHXYW.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "WTV2MMMZFYFVHXYW.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7054" + }, + "appliesTo" : [ ] + }, + "WTV2MMMZFYFVHXYW.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "WTV2MMMZFYFVHXYW.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "WTV2MMMZFYFVHXYW.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "WTV2MMMZFYFVHXYW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "WTV2MMMZFYFVHXYW.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "WTV2MMMZFYFVHXYW.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WTV2MMMZFYFVHXYW.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "WTV2MMMZFYFVHXYW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WTV2MMMZFYFVHXYW.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "WTV2MMMZFYFVHXYW.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "WTV2MMMZFYFVHXYW.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "WTV2MMMZFYFVHXYW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "WTV2MMMZFYFVHXYW.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "WTV2MMMZFYFVHXYW.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "WTV2MMMZFYFVHXYW.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "WTV2MMMZFYFVHXYW", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "WTV2MMMZFYFVHXYW.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "WTV2MMMZFYFVHXYW.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18793" + }, + "appliesTo" : [ ] + }, + "WTV2MMMZFYFVHXYW.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "WTV2MMMZFYFVHXYW.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "WTV2MMMZFYFVHXYW.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "WTV2MMMZFYFVHXYW", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "WTV2MMMZFYFVHXYW.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "WTV2MMMZFYFVHXYW.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4420000000" + }, + "appliesTo" : [ ] + }, + "WTV2MMMZFYFVHXYW.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "WTV2MMMZFYFVHXYW.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3872" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "RB56QANQ2YBHVFK2" : { + "RB56QANQ2YBHVFK2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "RB56QANQ2YBHVFK2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RB56QANQ2YBHVFK2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "RB56QANQ2YBHVFK2.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.0450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RB56QANQ2YBHVFK2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "RB56QANQ2YBHVFK2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RB56QANQ2YBHVFK2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "RB56QANQ2YBHVFK2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.3070000000" + }, + "appliesTo" : [ ] + }, + "RB56QANQ2YBHVFK2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "RB56QANQ2YBHVFK2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37732" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RB56QANQ2YBHVFK2.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "RB56QANQ2YBHVFK2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RB56QANQ2YBHVFK2.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "RB56QANQ2YBHVFK2.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.7180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RB56QANQ2YBHVFK2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "RB56QANQ2YBHVFK2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RB56QANQ2YBHVFK2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "RB56QANQ2YBHVFK2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "107927" + }, + "appliesTo" : [ ] + }, + "RB56QANQ2YBHVFK2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "RB56QANQ2YBHVFK2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RB56QANQ2YBHVFK2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "RB56QANQ2YBHVFK2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RB56QANQ2YBHVFK2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "RB56QANQ2YBHVFK2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "57408" + }, + "appliesTo" : [ ] + }, + "RB56QANQ2YBHVFK2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "RB56QANQ2YBHVFK2.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RB56QANQ2YBHVFK2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "RB56QANQ2YBHVFK2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RB56QANQ2YBHVFK2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "RB56QANQ2YBHVFK2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "73955" + }, + "appliesTo" : [ ] + }, + "RB56QANQ2YBHVFK2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "RB56QANQ2YBHVFK2.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "VTRGBHUJVPMPXVJ5" : { + "VTRGBHUJVPMPXVJ5.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "VTRGBHUJVPMPXVJ5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VTRGBHUJVPMPXVJ5.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "VTRGBHUJVPMPXVJ5.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "60391" + }, + "appliesTo" : [ ] + }, + "VTRGBHUJVPMPXVJ5.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "VTRGBHUJVPMPXVJ5.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.8940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VTRGBHUJVPMPXVJ5.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "VTRGBHUJVPMPXVJ5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VTRGBHUJVPMPXVJ5.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "VTRGBHUJVPMPXVJ5.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "120461" + }, + "appliesTo" : [ ] + }, + "VTRGBHUJVPMPXVJ5.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "VTRGBHUJVPMPXVJ5.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VTRGBHUJVPMPXVJ5.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "VTRGBHUJVPMPXVJ5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VTRGBHUJVPMPXVJ5.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "VTRGBHUJVPMPXVJ5.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "VTRGBHUJVPMPXVJ5.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "VTRGBHUJVPMPXVJ5.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "122825" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VTRGBHUJVPMPXVJ5.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "VTRGBHUJVPMPXVJ5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VTRGBHUJVPMPXVJ5.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "VTRGBHUJVPMPXVJ5.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.4290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VTRGBHUJVPMPXVJ5.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "VTRGBHUJVPMPXVJ5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VTRGBHUJVPMPXVJ5.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "VTRGBHUJVPMPXVJ5.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.8800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VTRGBHUJVPMPXVJ5.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "VTRGBHUJVPMPXVJ5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VTRGBHUJVPMPXVJ5.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "VTRGBHUJVPMPXVJ5.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "172650" + }, + "appliesTo" : [ ] + }, + "VTRGBHUJVPMPXVJ5.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "VTRGBHUJVPMPXVJ5.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.5700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VTRGBHUJVPMPXVJ5.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "VTRGBHUJVPMPXVJ5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VTRGBHUJVPMPXVJ5.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "VTRGBHUJVPMPXVJ5.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "61598" + }, + "appliesTo" : [ ] + }, + "VTRGBHUJVPMPXVJ5.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "VTRGBHUJVPMPXVJ5.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.0320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VTRGBHUJVPMPXVJ5.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "VTRGBHUJVPMPXVJ5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VTRGBHUJVPMPXVJ5.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "VTRGBHUJVPMPXVJ5.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "VTRGBHUJVPMPXVJ5.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "VTRGBHUJVPMPXVJ5.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "349326" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VTRGBHUJVPMPXVJ5.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "VTRGBHUJVPMPXVJ5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VTRGBHUJVPMPXVJ5.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "VTRGBHUJVPMPXVJ5.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "343428" + }, + "appliesTo" : [ ] + }, + "VTRGBHUJVPMPXVJ5.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "VTRGBHUJVPMPXVJ5.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VTRGBHUJVPMPXVJ5.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "VTRGBHUJVPMPXVJ5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VTRGBHUJVPMPXVJ5.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "VTRGBHUJVPMPXVJ5.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.2340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VTRGBHUJVPMPXVJ5.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "VTRGBHUJVPMPXVJ5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VTRGBHUJVPMPXVJ5.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "VTRGBHUJVPMPXVJ5.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "175022" + }, + "appliesTo" : [ ] + }, + "VTRGBHUJVPMPXVJ5.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "VTRGBHUJVPMPXVJ5.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.6600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VTRGBHUJVPMPXVJ5.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "VTRGBHUJVPMPXVJ5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VTRGBHUJVPMPXVJ5.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "VTRGBHUJVPMPXVJ5.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.1690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "XERSDU2TVYCQWYRV" : { + "XERSDU2TVYCQWYRV.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XERSDU2TVYCQWYRV", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "XERSDU2TVYCQWYRV.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XERSDU2TVYCQWYRV.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1576" + }, + "appliesTo" : [ ] + }, + "XERSDU2TVYCQWYRV.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XERSDU2TVYCQWYRV.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XERSDU2TVYCQWYRV.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XERSDU2TVYCQWYRV", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "XERSDU2TVYCQWYRV.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XERSDU2TVYCQWYRV.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3121" + }, + "appliesTo" : [ ] + }, + "XERSDU2TVYCQWYRV.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XERSDU2TVYCQWYRV.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XERSDU2TVYCQWYRV.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "XERSDU2TVYCQWYRV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XERSDU2TVYCQWYRV.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "XERSDU2TVYCQWYRV.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3965000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XERSDU2TVYCQWYRV.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "XERSDU2TVYCQWYRV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XERSDU2TVYCQWYRV.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "XERSDU2TVYCQWYRV.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1590000000" + }, + "appliesTo" : [ ] + }, + "XERSDU2TVYCQWYRV.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "XERSDU2TVYCQWYRV.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4180" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XERSDU2TVYCQWYRV.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XERSDU2TVYCQWYRV", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "XERSDU2TVYCQWYRV.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XERSDU2TVYCQWYRV.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3958" + }, + "appliesTo" : [ ] + }, + "XERSDU2TVYCQWYRV.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XERSDU2TVYCQWYRV.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XERSDU2TVYCQWYRV.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "XERSDU2TVYCQWYRV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XERSDU2TVYCQWYRV.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "XERSDU2TVYCQWYRV.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1692" + }, + "appliesTo" : [ ] + }, + "XERSDU2TVYCQWYRV.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "XERSDU2TVYCQWYRV.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1932000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XERSDU2TVYCQWYRV.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "XERSDU2TVYCQWYRV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XERSDU2TVYCQWYRV.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "XERSDU2TVYCQWYRV.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8289" + }, + "appliesTo" : [ ] + }, + "XERSDU2TVYCQWYRV.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "XERSDU2TVYCQWYRV.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XERSDU2TVYCQWYRV.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "XERSDU2TVYCQWYRV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XERSDU2TVYCQWYRV.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "XERSDU2TVYCQWYRV.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3099000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XERSDU2TVYCQWYRV.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XERSDU2TVYCQWYRV", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "XERSDU2TVYCQWYRV.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XERSDU2TVYCQWYRV.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7731" + }, + "appliesTo" : [ ] + }, + "XERSDU2TVYCQWYRV.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XERSDU2TVYCQWYRV.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XERSDU2TVYCQWYRV.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "XERSDU2TVYCQWYRV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XERSDU2TVYCQWYRV.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "XERSDU2TVYCQWYRV.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3349" + }, + "appliesTo" : [ ] + }, + "XERSDU2TVYCQWYRV.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "XERSDU2TVYCQWYRV.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XERSDU2TVYCQWYRV.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "XERSDU2TVYCQWYRV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XERSDU2TVYCQWYRV.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "XERSDU2TVYCQWYRV.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3288000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XERSDU2TVYCQWYRV.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XERSDU2TVYCQWYRV", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "XERSDU2TVYCQWYRV.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XERSDU2TVYCQWYRV.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3688000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "73HRUT4W38285YYX" : { + "73HRUT4W38285YYX.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "73HRUT4W38285YYX", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "73HRUT4W38285YYX.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "73HRUT4W38285YYX.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2960000000" + }, + "appliesTo" : [ ] + }, + "73HRUT4W38285YYX.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "73HRUT4W38285YYX.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28873" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "73HRUT4W38285YYX.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "73HRUT4W38285YYX", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "73HRUT4W38285YYX.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "73HRUT4W38285YYX.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1436000000" + }, + "appliesTo" : [ ] + }, + "73HRUT4W38285YYX.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "73HRUT4W38285YYX.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "82614" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "73HRUT4W38285YYX.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "73HRUT4W38285YYX", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "73HRUT4W38285YYX.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "73HRUT4W38285YYX.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.3652000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "73HRUT4W38285YYX.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "73HRUT4W38285YYX", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "73HRUT4W38285YYX.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "73HRUT4W38285YYX.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "57522" + }, + "appliesTo" : [ ] + }, + "73HRUT4W38285YYX.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "73HRUT4W38285YYX.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "73HRUT4W38285YYX.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "73HRUT4W38285YYX", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "73HRUT4W38285YYX.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "73HRUT4W38285YYX.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "160548" + }, + "appliesTo" : [ ] + }, + "73HRUT4W38285YYX.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "73HRUT4W38285YYX.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "73HRUT4W38285YYX.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "73HRUT4W38285YYX", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "73HRUT4W38285YYX.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "73HRUT4W38285YYX.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "80943" + }, + "appliesTo" : [ ] + }, + "73HRUT4W38285YYX.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "73HRUT4W38285YYX.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "73HRUT4W38285YYX.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "73HRUT4W38285YYX", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "73HRUT4W38285YYX.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "73HRUT4W38285YYX.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.6560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "73HRUT4W38285YYX.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "73HRUT4W38285YYX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "73HRUT4W38285YYX.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "73HRUT4W38285YYX.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.8576000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "73HRUT4W38285YYX.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "73HRUT4W38285YYX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "73HRUT4W38285YYX.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "73HRUT4W38285YYX.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "59170" + }, + "appliesTo" : [ ] + }, + "73HRUT4W38285YYX.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "73HRUT4W38285YYX.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "73HRUT4W38285YYX.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "73HRUT4W38285YYX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "73HRUT4W38285YYX.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "73HRUT4W38285YYX.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29714" + }, + "appliesTo" : [ ] + }, + "73HRUT4W38285YYX.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "73HRUT4W38285YYX.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "73HRUT4W38285YYX.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "73HRUT4W38285YYX", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "73HRUT4W38285YYX.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "73HRUT4W38285YYX.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.2278000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "73HRUT4W38285YYX.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "73HRUT4W38285YYX", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "73HRUT4W38285YYX.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "73HRUT4W38285YYX.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "164715" + }, + "appliesTo" : [ ] + }, + "73HRUT4W38285YYX.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "73HRUT4W38285YYX.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "8329EG456ZYK9UHU" : { + "8329EG456ZYK9UHU.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "8329EG456ZYK9UHU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8329EG456ZYK9UHU.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "8329EG456ZYK9UHU.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "155747" + }, + "appliesTo" : [ ] + }, + "8329EG456ZYK9UHU.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "8329EG456ZYK9UHU.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "17.7790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8329EG456ZYK9UHU.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "8329EG456ZYK9UHU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8329EG456ZYK9UHU.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "8329EG456ZYK9UHU.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "309985" + }, + "appliesTo" : [ ] + }, + "8329EG456ZYK9UHU.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "8329EG456ZYK9UHU.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8329EG456ZYK9UHU.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "8329EG456ZYK9UHU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8329EG456ZYK9UHU.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "8329EG456ZYK9UHU.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "32.3700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8329EG456ZYK9UHU.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "8329EG456ZYK9UHU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8329EG456ZYK9UHU.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "8329EG456ZYK9UHU.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "31.6620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8329EG456ZYK9UHU.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "8329EG456ZYK9UHU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8329EG456ZYK9UHU.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "8329EG456ZYK9UHU.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "321078" + }, + "appliesTo" : [ ] + }, + "8329EG456ZYK9UHU.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "8329EG456ZYK9UHU.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8329EG456ZYK9UHU.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "8329EG456ZYK9UHU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8329EG456ZYK9UHU.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "8329EG456ZYK9UHU.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "35.9890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8329EG456ZYK9UHU.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "8329EG456ZYK9UHU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8329EG456ZYK9UHU.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "8329EG456ZYK9UHU.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "161407" + }, + "appliesTo" : [ ] + }, + "8329EG456ZYK9UHU.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "8329EG456ZYK9UHU.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "18.4250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8329EG456ZYK9UHU.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "8329EG456ZYK9UHU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8329EG456ZYK9UHU.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "8329EG456ZYK9UHU.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "8329EG456ZYK9UHU.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "8329EG456ZYK9UHU.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "837486" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8329EG456ZYK9UHU.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "8329EG456ZYK9UHU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8329EG456ZYK9UHU.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "8329EG456ZYK9UHU.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "420064" + }, + "appliesTo" : [ ] + }, + "8329EG456ZYK9UHU.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "8329EG456ZYK9UHU.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.9840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8329EG456ZYK9UHU.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "8329EG456ZYK9UHU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8329EG456ZYK9UHU.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "8329EG456ZYK9UHU.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "8329EG456ZYK9UHU.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "8329EG456ZYK9UHU.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "816016" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8329EG456ZYK9UHU.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "8329EG456ZYK9UHU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8329EG456ZYK9UHU.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "8329EG456ZYK9UHU.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "37.3460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8329EG456ZYK9UHU.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "8329EG456ZYK9UHU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8329EG456ZYK9UHU.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "8329EG456ZYK9UHU.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "411452" + }, + "appliesTo" : [ ] + }, + "8329EG456ZYK9UHU.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "8329EG456ZYK9UHU.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.6560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "KBAHSDRSVP6ZT96X" : { + "KBAHSDRSVP6ZT96X.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "KBAHSDRSVP6ZT96X", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "KBAHSDRSVP6ZT96X.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "KBAHSDRSVP6ZT96X.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "438" + }, + "appliesTo" : [ ] + }, + "KBAHSDRSVP6ZT96X.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "KBAHSDRSVP6ZT96X.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KBAHSDRSVP6ZT96X.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "KBAHSDRSVP6ZT96X", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "KBAHSDRSVP6ZT96X.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "KBAHSDRSVP6ZT96X.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "135" + }, + "appliesTo" : [ ] + }, + "KBAHSDRSVP6ZT96X.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "KBAHSDRSVP6ZT96X.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KBAHSDRSVP6ZT96X.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "KBAHSDRSVP6ZT96X", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "KBAHSDRSVP6ZT96X.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "KBAHSDRSVP6ZT96X.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KBAHSDRSVP6ZT96X.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "KBAHSDRSVP6ZT96X", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "KBAHSDRSVP6ZT96X.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "KBAHSDRSVP6ZT96X.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0100000000" + }, + "appliesTo" : [ ] + }, + "KBAHSDRSVP6ZT96X.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "KBAHSDRSVP6ZT96X.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "207" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KBAHSDRSVP6ZT96X.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "KBAHSDRSVP6ZT96X", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "KBAHSDRSVP6ZT96X.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "KBAHSDRSVP6ZT96X.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "226" + }, + "appliesTo" : [ ] + }, + "KBAHSDRSVP6ZT96X.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "KBAHSDRSVP6ZT96X.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "N23UBSTNARQRHWES" : { + "N23UBSTNARQRHWES.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "N23UBSTNARQRHWES", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "N23UBSTNARQRHWES.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "N23UBSTNARQRHWES.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5150000000" + }, + "appliesTo" : [ ] + }, + "N23UBSTNARQRHWES.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "N23UBSTNARQRHWES.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8399" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "N23UBSTNARQRHWES.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "N23UBSTNARQRHWES", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "N23UBSTNARQRHWES.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "N23UBSTNARQRHWES.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12654" + }, + "appliesTo" : [ ] + }, + "N23UBSTNARQRHWES.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "N23UBSTNARQRHWES.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "N23UBSTNARQRHWES.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "N23UBSTNARQRHWES", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N23UBSTNARQRHWES.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "N23UBSTNARQRHWES.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7405" + }, + "appliesTo" : [ ] + }, + "N23UBSTNARQRHWES.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "N23UBSTNARQRHWES.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "N23UBSTNARQRHWES.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "N23UBSTNARQRHWES", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N23UBSTNARQRHWES.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "N23UBSTNARQRHWES.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "N23UBSTNARQRHWES.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "N23UBSTNARQRHWES", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "N23UBSTNARQRHWES.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "N23UBSTNARQRHWES.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16054" + }, + "appliesTo" : [ ] + }, + "N23UBSTNARQRHWES.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "N23UBSTNARQRHWES.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "N23UBSTNARQRHWES.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "N23UBSTNARQRHWES", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "N23UBSTNARQRHWES.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "N23UBSTNARQRHWES.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "N23UBSTNARQRHWES.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "N23UBSTNARQRHWES.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34077" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "N23UBSTNARQRHWES.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "N23UBSTNARQRHWES", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "N23UBSTNARQRHWES.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "N23UBSTNARQRHWES.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22554" + }, + "appliesTo" : [ ] + }, + "N23UBSTNARQRHWES.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "N23UBSTNARQRHWES.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "N23UBSTNARQRHWES.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "N23UBSTNARQRHWES", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "N23UBSTNARQRHWES.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "N23UBSTNARQRHWES.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25215" + }, + "appliesTo" : [ ] + }, + "N23UBSTNARQRHWES.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "N23UBSTNARQRHWES.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "N23UBSTNARQRHWES.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "N23UBSTNARQRHWES", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "N23UBSTNARQRHWES.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "N23UBSTNARQRHWES.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14459" + }, + "appliesTo" : [ ] + }, + "N23UBSTNARQRHWES.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "N23UBSTNARQRHWES.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "N23UBSTNARQRHWES.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "N23UBSTNARQRHWES", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "N23UBSTNARQRHWES.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "N23UBSTNARQRHWES.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "N23UBSTNARQRHWES.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "N23UBSTNARQRHWES", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "N23UBSTNARQRHWES.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "N23UBSTNARQRHWES.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "CZEFYKJRS5KC69GA" : { + "CZEFYKJRS5KC69GA.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "CZEFYKJRS5KC69GA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CZEFYKJRS5KC69GA.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "CZEFYKJRS5KC69GA.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.4840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CZEFYKJRS5KC69GA.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "CZEFYKJRS5KC69GA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CZEFYKJRS5KC69GA.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "CZEFYKJRS5KC69GA.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "40101" + }, + "appliesTo" : [ ] + }, + "CZEFYKJRS5KC69GA.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "CZEFYKJRS5KC69GA.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.7080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CZEFYKJRS5KC69GA.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "CZEFYKJRS5KC69GA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CZEFYKJRS5KC69GA.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "CZEFYKJRS5KC69GA.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "79737" + }, + "appliesTo" : [ ] + }, + "CZEFYKJRS5KC69GA.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "CZEFYKJRS5KC69GA.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CZEFYKJRS5KC69GA.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "CZEFYKJRS5KC69GA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CZEFYKJRS5KC69GA.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "CZEFYKJRS5KC69GA.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34847" + }, + "appliesTo" : [ ] + }, + "CZEFYKJRS5KC69GA.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "CZEFYKJRS5KC69GA.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.1080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CZEFYKJRS5KC69GA.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "CZEFYKJRS5KC69GA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CZEFYKJRS5KC69GA.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "CZEFYKJRS5KC69GA.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.7430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CZEFYKJRS5KC69GA.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "CZEFYKJRS5KC69GA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CZEFYKJRS5KC69GA.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "CZEFYKJRS5KC69GA.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.4570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CZEFYKJRS5KC69GA.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "CZEFYKJRS5KC69GA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CZEFYKJRS5KC69GA.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "CZEFYKJRS5KC69GA.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "174588" + }, + "appliesTo" : [ ] + }, + "CZEFYKJRS5KC69GA.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "CZEFYKJRS5KC69GA.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CZEFYKJRS5KC69GA.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "CZEFYKJRS5KC69GA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CZEFYKJRS5KC69GA.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "CZEFYKJRS5KC69GA.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CZEFYKJRS5KC69GA.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "CZEFYKJRS5KC69GA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CZEFYKJRS5KC69GA.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "CZEFYKJRS5KC69GA.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "64816" + }, + "appliesTo" : [ ] + }, + "CZEFYKJRS5KC69GA.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "CZEFYKJRS5KC69GA.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CZEFYKJRS5KC69GA.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "CZEFYKJRS5KC69GA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CZEFYKJRS5KC69GA.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "CZEFYKJRS5KC69GA.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "87333" + }, + "appliesTo" : [ ] + }, + "CZEFYKJRS5KC69GA.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "CZEFYKJRS5KC69GA.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CZEFYKJRS5KC69GA.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "CZEFYKJRS5KC69GA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CZEFYKJRS5KC69GA.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "CZEFYKJRS5KC69GA.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "125270" + }, + "appliesTo" : [ ] + }, + "CZEFYKJRS5KC69GA.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "CZEFYKJRS5KC69GA.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CZEFYKJRS5KC69GA.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "CZEFYKJRS5KC69GA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "CZEFYKJRS5KC69GA.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "CZEFYKJRS5KC69GA.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "CZEFYKJRS5KC69GA.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "CZEFYKJRS5KC69GA.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "69439" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "2SN6CBPKJWMJK4W8" : { + "2SN6CBPKJWMJK4W8.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "2SN6CBPKJWMJK4W8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2SN6CBPKJWMJK4W8.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "2SN6CBPKJWMJK4W8.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2SN6CBPKJWMJK4W8.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "2SN6CBPKJWMJK4W8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2SN6CBPKJWMJK4W8.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "2SN6CBPKJWMJK4W8.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "61493" + }, + "appliesTo" : [ ] + }, + "2SN6CBPKJWMJK4W8.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "2SN6CBPKJWMJK4W8.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2SN6CBPKJWMJK4W8.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "2SN6CBPKJWMJK4W8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2SN6CBPKJWMJK4W8.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "2SN6CBPKJWMJK4W8.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.7890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2SN6CBPKJWMJK4W8.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "2SN6CBPKJWMJK4W8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2SN6CBPKJWMJK4W8.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "2SN6CBPKJWMJK4W8.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "116369" + }, + "appliesTo" : [ ] + }, + "2SN6CBPKJWMJK4W8.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "2SN6CBPKJWMJK4W8.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2SN6CBPKJWMJK4W8.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "2SN6CBPKJWMJK4W8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2SN6CBPKJWMJK4W8.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "2SN6CBPKJWMJK4W8.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "122267" + }, + "appliesTo" : [ ] + }, + "2SN6CBPKJWMJK4W8.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "2SN6CBPKJWMJK4W8.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2SN6CBPKJWMJK4W8.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "2SN6CBPKJWMJK4W8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2SN6CBPKJWMJK4W8.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "2SN6CBPKJWMJK4W8.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "59121" + }, + "appliesTo" : [ ] + }, + "2SN6CBPKJWMJK4W8.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "2SN6CBPKJWMJK4W8.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2SN6CBPKJWMJK4W8.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "2SN6CBPKJWMJK4W8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2SN6CBPKJWMJK4W8.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "2SN6CBPKJWMJK4W8.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47139" + }, + "appliesTo" : [ ] + }, + "2SN6CBPKJWMJK4W8.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "2SN6CBPKJWMJK4W8.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2SN6CBPKJWMJK4W8.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "2SN6CBPKJWMJK4W8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2SN6CBPKJWMJK4W8.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "2SN6CBPKJWMJK4W8.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5740000000" + }, + "appliesTo" : [ ] + }, + "2SN6CBPKJWMJK4W8.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "2SN6CBPKJWMJK4W8.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22548" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2SN6CBPKJWMJK4W8.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "2SN6CBPKJWMJK4W8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2SN6CBPKJWMJK4W8.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "2SN6CBPKJWMJK4W8.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "2SN6CBPKJWMJK4W8.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "2SN6CBPKJWMJK4W8.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "44775" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2SN6CBPKJWMJK4W8.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "2SN6CBPKJWMJK4W8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2SN6CBPKJWMJK4W8.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "2SN6CBPKJWMJK4W8.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.2400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2SN6CBPKJWMJK4W8.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "2SN6CBPKJWMJK4W8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2SN6CBPKJWMJK4W8.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "2SN6CBPKJWMJK4W8.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23754" + }, + "appliesTo" : [ ] + }, + "2SN6CBPKJWMJK4W8.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "2SN6CBPKJWMJK4W8.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2SN6CBPKJWMJK4W8.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "2SN6CBPKJWMJK4W8", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2SN6CBPKJWMJK4W8.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "2SN6CBPKJWMJK4W8.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.5290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "A7J6GBKB42E7ZP99" : { + "A7J6GBKB42E7ZP99.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "A7J6GBKB42E7ZP99", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "A7J6GBKB42E7ZP99.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "A7J6GBKB42E7ZP99.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "64488" + }, + "appliesTo" : [ ] + }, + "A7J6GBKB42E7ZP99.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "A7J6GBKB42E7ZP99.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "A7J6GBKB42E7ZP99.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "A7J6GBKB42E7ZP99", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A7J6GBKB42E7ZP99.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "A7J6GBKB42E7ZP99.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "65326" + }, + "appliesTo" : [ ] + }, + "A7J6GBKB42E7ZP99.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "A7J6GBKB42E7ZP99.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "A7J6GBKB42E7ZP99.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "A7J6GBKB42E7ZP99", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "A7J6GBKB42E7ZP99.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "A7J6GBKB42E7ZP99.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "94918" + }, + "appliesTo" : [ ] + }, + "A7J6GBKB42E7ZP99.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "A7J6GBKB42E7ZP99.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6118000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "A7J6GBKB42E7ZP99.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "A7J6GBKB42E7ZP99", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "A7J6GBKB42E7ZP99.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "A7J6GBKB42E7ZP99.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32300" + }, + "appliesTo" : [ ] + }, + "A7J6GBKB42E7ZP99.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "A7J6GBKB42E7ZP99.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "A7J6GBKB42E7ZP99.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "A7J6GBKB42E7ZP99", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "A7J6GBKB42E7ZP99.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "A7J6GBKB42E7ZP99.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "189580" + }, + "appliesTo" : [ ] + }, + "A7J6GBKB42E7ZP99.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "A7J6GBKB42E7ZP99.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "A7J6GBKB42E7ZP99.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "A7J6GBKB42E7ZP99", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "A7J6GBKB42E7ZP99.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "A7J6GBKB42E7ZP99.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.1939000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "A7J6GBKB42E7ZP99.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "A7J6GBKB42E7ZP99", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A7J6GBKB42E7ZP99.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "A7J6GBKB42E7ZP99.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5088000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "A7J6GBKB42E7ZP99.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "A7J6GBKB42E7ZP99", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A7J6GBKB42E7ZP99.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "A7J6GBKB42E7ZP99.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7360000000" + }, + "appliesTo" : [ ] + }, + "A7J6GBKB42E7ZP99.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "A7J6GBKB42E7ZP99.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32727" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "A7J6GBKB42E7ZP99.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "A7J6GBKB42E7ZP99", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "A7J6GBKB42E7ZP99.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "A7J6GBKB42E7ZP99.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "A7J6GBKB42E7ZP99.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "A7J6GBKB42E7ZP99", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "A7J6GBKB42E7ZP99.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "A7J6GBKB42E7ZP99.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "94103" + }, + "appliesTo" : [ ] + }, + "A7J6GBKB42E7ZP99.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "A7J6GBKB42E7ZP99.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "A7J6GBKB42E7ZP99.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "A7J6GBKB42E7ZP99", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "A7J6GBKB42E7ZP99.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "A7J6GBKB42E7ZP99.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "187536" + }, + "appliesTo" : [ ] + }, + "A7J6GBKB42E7ZP99.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "A7J6GBKB42E7ZP99.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "A7J6GBKB42E7ZP99.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "A7J6GBKB42E7ZP99", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "A7J6GBKB42E7ZP99.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "A7J6GBKB42E7ZP99.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.2626000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "TA9V737SGNW5GKAK" : { + "TA9V737SGNW5GKAK.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "TA9V737SGNW5GKAK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TA9V737SGNW5GKAK.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "TA9V737SGNW5GKAK.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "909489" + }, + "appliesTo" : [ ] + }, + "TA9V737SGNW5GKAK.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "TA9V737SGNW5GKAK.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TA9V737SGNW5GKAK.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "TA9V737SGNW5GKAK", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "TA9V737SGNW5GKAK.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "TA9V737SGNW5GKAK.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.8720000000" + }, + "appliesTo" : [ ] + }, + "TA9V737SGNW5GKAK.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "TA9V737SGNW5GKAK.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "443396" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TA9V737SGNW5GKAK.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "TA9V737SGNW5GKAK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TA9V737SGNW5GKAK.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "TA9V737SGNW5GKAK.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "17.3820000000" + }, + "appliesTo" : [ ] + }, + "TA9V737SGNW5GKAK.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "TA9V737SGNW5GKAK.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "456800" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TA9V737SGNW5GKAK.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "TA9V737SGNW5GKAK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TA9V737SGNW5GKAK.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "TA9V737SGNW5GKAK.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "36.7720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TA9V737SGNW5GKAK.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "TA9V737SGNW5GKAK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TA9V737SGNW5GKAK.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "TA9V737SGNW5GKAK.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "328436" + }, + "appliesTo" : [ ] + }, + "TA9V737SGNW5GKAK.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "TA9V737SGNW5GKAK.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "TA9V737SGNW5GKAK.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "TA9V737SGNW5GKAK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TA9V737SGNW5GKAK.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "TA9V737SGNW5GKAK.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "38.2460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "TA9V737SGNW5GKAK.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "TA9V737SGNW5GKAK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TA9V737SGNW5GKAK.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "TA9V737SGNW5GKAK.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "34.2880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "TA9V737SGNW5GKAK.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "TA9V737SGNW5GKAK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "TA9V737SGNW5GKAK.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "TA9V737SGNW5GKAK.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "165161" + }, + "appliesTo" : [ ] + }, + "TA9V737SGNW5GKAK.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "TA9V737SGNW5GKAK.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "18.8540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "TA9V737SGNW5GKAK.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "TA9V737SGNW5GKAK", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "TA9V737SGNW5GKAK.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "TA9V737SGNW5GKAK.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "316383" + }, + "appliesTo" : [ ] + }, + "TA9V737SGNW5GKAK.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "TA9V737SGNW5GKAK.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TA9V737SGNW5GKAK.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "TA9V737SGNW5GKAK", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "TA9V737SGNW5GKAK.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "TA9V737SGNW5GKAK.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "159012" + }, + "appliesTo" : [ ] + }, + "TA9V737SGNW5GKAK.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "TA9V737SGNW5GKAK.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "18.1520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "TA9V737SGNW5GKAK.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "TA9V737SGNW5GKAK", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "TA9V737SGNW5GKAK.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "TA9V737SGNW5GKAK.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "876070" + }, + "appliesTo" : [ ] + }, + "TA9V737SGNW5GKAK.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "TA9V737SGNW5GKAK.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "TA9V737SGNW5GKAK.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "TA9V737SGNW5GKAK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "TA9V737SGNW5GKAK.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "TA9V737SGNW5GKAK.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "35.3900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "SGYUS9N7VCKNAXVB" : { + "SGYUS9N7VCKNAXVB.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "SGYUS9N7VCKNAXVB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SGYUS9N7VCKNAXVB.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "SGYUS9N7VCKNAXVB.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.5230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SGYUS9N7VCKNAXVB.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "SGYUS9N7VCKNAXVB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SGYUS9N7VCKNAXVB.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "SGYUS9N7VCKNAXVB.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1763000000" + }, + "appliesTo" : [ ] + }, + "SGYUS9N7VCKNAXVB.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "SGYUS9N7VCKNAXVB.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27824" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SGYUS9N7VCKNAXVB.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SGYUS9N7VCKNAXVB", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "SGYUS9N7VCKNAXVB.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SGYUS9N7VCKNAXVB.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25877" + }, + "appliesTo" : [ ] + }, + "SGYUS9N7VCKNAXVB.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SGYUS9N7VCKNAXVB.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SGYUS9N7VCKNAXVB.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SGYUS9N7VCKNAXVB", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "SGYUS9N7VCKNAXVB.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SGYUS9N7VCKNAXVB.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.0562000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SGYUS9N7VCKNAXVB.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "SGYUS9N7VCKNAXVB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SGYUS9N7VCKNAXVB.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "SGYUS9N7VCKNAXVB.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "55052" + }, + "appliesTo" : [ ] + }, + "SGYUS9N7VCKNAXVB.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "SGYUS9N7VCKNAXVB.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SGYUS9N7VCKNAXVB.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "SGYUS9N7VCKNAXVB", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "SGYUS9N7VCKNAXVB.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "SGYUS9N7VCKNAXVB.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.6167000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "SGYUS9N7VCKNAXVB.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "SGYUS9N7VCKNAXVB", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "SGYUS9N7VCKNAXVB.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "SGYUS9N7VCKNAXVB.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "71202" + }, + "appliesTo" : [ ] + }, + "SGYUS9N7VCKNAXVB.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "SGYUS9N7VCKNAXVB.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7094000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "SGYUS9N7VCKNAXVB.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "SGYUS9N7VCKNAXVB", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "SGYUS9N7VCKNAXVB.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "SGYUS9N7VCKNAXVB.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "141103" + }, + "appliesTo" : [ ] + }, + "SGYUS9N7VCKNAXVB.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "SGYUS9N7VCKNAXVB.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "SGYUS9N7VCKNAXVB.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SGYUS9N7VCKNAXVB", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "SGYUS9N7VCKNAXVB.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SGYUS9N7VCKNAXVB.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "130526" + }, + "appliesTo" : [ ] + }, + "SGYUS9N7VCKNAXVB.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SGYUS9N7VCKNAXVB.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SGYUS9N7VCKNAXVB.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SGYUS9N7VCKNAXVB", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "SGYUS9N7VCKNAXVB.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SGYUS9N7VCKNAXVB.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "51235" + }, + "appliesTo" : [ ] + }, + "SGYUS9N7VCKNAXVB.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SGYUS9N7VCKNAXVB.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SGYUS9N7VCKNAXVB.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "SGYUS9N7VCKNAXVB", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "SGYUS9N7VCKNAXVB.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "SGYUS9N7VCKNAXVB.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.2680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SGYUS9N7VCKNAXVB.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SGYUS9N7VCKNAXVB", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "SGYUS9N7VCKNAXVB.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SGYUS9N7VCKNAXVB.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "66960" + }, + "appliesTo" : [ ] + }, + "SGYUS9N7VCKNAXVB.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SGYUS9N7VCKNAXVB.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5479000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "DF8Q7FFWFQ7XFMWT" : { + "DF8Q7FFWFQ7XFMWT.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "DF8Q7FFWFQ7XFMWT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DF8Q7FFWFQ7XFMWT.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "DF8Q7FFWFQ7XFMWT.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "DF8Q7FFWFQ7XFMWT.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "DF8Q7FFWFQ7XFMWT.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4728" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DF8Q7FFWFQ7XFMWT.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "DF8Q7FFWFQ7XFMWT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DF8Q7FFWFQ7XFMWT.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "DF8Q7FFWFQ7XFMWT.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "DF8Q7FFWFQ7XFMWT.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "DF8Q7FFWFQ7XFMWT.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5358" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DF8Q7FFWFQ7XFMWT.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "DF8Q7FFWFQ7XFMWT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DF8Q7FFWFQ7XFMWT.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "DF8Q7FFWFQ7XFMWT.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DF8Q7FFWFQ7XFMWT.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "DF8Q7FFWFQ7XFMWT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DF8Q7FFWFQ7XFMWT.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "DF8Q7FFWFQ7XFMWT.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DF8Q7FFWFQ7XFMWT.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "DF8Q7FFWFQ7XFMWT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DF8Q7FFWFQ7XFMWT.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "DF8Q7FFWFQ7XFMWT.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8929" + }, + "appliesTo" : [ ] + }, + "DF8Q7FFWFQ7XFMWT.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "DF8Q7FFWFQ7XFMWT.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DF8Q7FFWFQ7XFMWT.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "DF8Q7FFWFQ7XFMWT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DF8Q7FFWFQ7XFMWT.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "DF8Q7FFWFQ7XFMWT.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2144" + }, + "appliesTo" : [ ] + }, + "DF8Q7FFWFQ7XFMWT.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "DF8Q7FFWFQ7XFMWT.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DF8Q7FFWFQ7XFMWT.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "DF8Q7FFWFQ7XFMWT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DF8Q7FFWFQ7XFMWT.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "DF8Q7FFWFQ7XFMWT.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3410000000" + }, + "appliesTo" : [ ] + }, + "DF8Q7FFWFQ7XFMWT.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "DF8Q7FFWFQ7XFMWT.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2465" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DF8Q7FFWFQ7XFMWT.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "DF8Q7FFWFQ7XFMWT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DF8Q7FFWFQ7XFMWT.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "DF8Q7FFWFQ7XFMWT.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DF8Q7FFWFQ7XFMWT.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "DF8Q7FFWFQ7XFMWT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DF8Q7FFWFQ7XFMWT.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "DF8Q7FFWFQ7XFMWT.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DF8Q7FFWFQ7XFMWT.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "DF8Q7FFWFQ7XFMWT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DF8Q7FFWFQ7XFMWT.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "DF8Q7FFWFQ7XFMWT.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7709" + }, + "appliesTo" : [ ] + }, + "DF8Q7FFWFQ7XFMWT.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "DF8Q7FFWFQ7XFMWT.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DF8Q7FFWFQ7XFMWT.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "DF8Q7FFWFQ7XFMWT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DF8Q7FFWFQ7XFMWT.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "DF8Q7FFWFQ7XFMWT.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3262" + }, + "appliesTo" : [ ] + }, + "DF8Q7FFWFQ7XFMWT.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "DF8Q7FFWFQ7XFMWT.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DF8Q7FFWFQ7XFMWT.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "DF8Q7FFWFQ7XFMWT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DF8Q7FFWFQ7XFMWT.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "DF8Q7FFWFQ7XFMWT.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3751" + }, + "appliesTo" : [ ] + }, + "DF8Q7FFWFQ7XFMWT.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "DF8Q7FFWFQ7XFMWT.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "A83EBS2T67UP72G2" : { + "A83EBS2T67UP72G2.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "A83EBS2T67UP72G2", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "A83EBS2T67UP72G2.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "A83EBS2T67UP72G2.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "A83EBS2T67UP72G2.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "A83EBS2T67UP72G2.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3856" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "A83EBS2T67UP72G2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "A83EBS2T67UP72G2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "A83EBS2T67UP72G2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "A83EBS2T67UP72G2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1345" + }, + "appliesTo" : [ ] + }, + "A83EBS2T67UP72G2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "A83EBS2T67UP72G2.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "A83EBS2T67UP72G2.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "A83EBS2T67UP72G2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "A83EBS2T67UP72G2.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "A83EBS2T67UP72G2.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "A83EBS2T67UP72G2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "A83EBS2T67UP72G2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "A83EBS2T67UP72G2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "A83EBS2T67UP72G2.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "A83EBS2T67UP72G2.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "A83EBS2T67UP72G2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A83EBS2T67UP72G2.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "A83EBS2T67UP72G2.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "828" + }, + "appliesTo" : [ ] + }, + "A83EBS2T67UP72G2.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "A83EBS2T67UP72G2.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "A83EBS2T67UP72G2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "A83EBS2T67UP72G2", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "A83EBS2T67UP72G2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "A83EBS2T67UP72G2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "842" + }, + "appliesTo" : [ ] + }, + "A83EBS2T67UP72G2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "A83EBS2T67UP72G2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "A83EBS2T67UP72G2.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "A83EBS2T67UP72G2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A83EBS2T67UP72G2.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "A83EBS2T67UP72G2.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1623" + }, + "appliesTo" : [ ] + }, + "A83EBS2T67UP72G2.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "A83EBS2T67UP72G2.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "A83EBS2T67UP72G2.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "A83EBS2T67UP72G2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A83EBS2T67UP72G2.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "A83EBS2T67UP72G2.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "A83EBS2T67UP72G2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "A83EBS2T67UP72G2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "A83EBS2T67UP72G2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "A83EBS2T67UP72G2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2746" + }, + "appliesTo" : [ ] + }, + "A83EBS2T67UP72G2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "A83EBS2T67UP72G2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "A83EBS2T67UP72G2.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "A83EBS2T67UP72G2", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "A83EBS2T67UP72G2.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "A83EBS2T67UP72G2.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0630000000" + }, + "appliesTo" : [ ] + }, + "A83EBS2T67UP72G2.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "A83EBS2T67UP72G2.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2273" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "A83EBS2T67UP72G2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "A83EBS2T67UP72G2", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "A83EBS2T67UP72G2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "A83EBS2T67UP72G2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1428" + }, + "appliesTo" : [ ] + }, + "A83EBS2T67UP72G2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "A83EBS2T67UP72G2.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "4WQD6GEAM4NRC7U3" : { + "4WQD6GEAM4NRC7U3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "4WQD6GEAM4NRC7U3", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "4WQD6GEAM4NRC7U3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "4WQD6GEAM4NRC7U3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "849" + }, + "appliesTo" : [ ] + }, + "4WQD6GEAM4NRC7U3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "4WQD6GEAM4NRC7U3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4WQD6GEAM4NRC7U3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "4WQD6GEAM4NRC7U3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "4WQD6GEAM4NRC7U3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "4WQD6GEAM4NRC7U3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "413" + }, + "appliesTo" : [ ] + }, + "4WQD6GEAM4NRC7U3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "4WQD6GEAM4NRC7U3.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4WQD6GEAM4NRC7U3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "4WQD6GEAM4NRC7U3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "4WQD6GEAM4NRC7U3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "4WQD6GEAM4NRC7U3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "454" + }, + "appliesTo" : [ ] + }, + "4WQD6GEAM4NRC7U3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "4WQD6GEAM4NRC7U3.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4WQD6GEAM4NRC7U3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "4WQD6GEAM4NRC7U3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "4WQD6GEAM4NRC7U3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "4WQD6GEAM4NRC7U3.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "4WQD6GEAM4NRC7U3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "4WQD6GEAM4NRC7U3", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "4WQD6GEAM4NRC7U3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "4WQD6GEAM4NRC7U3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "272" + }, + "appliesTo" : [ ] + }, + "4WQD6GEAM4NRC7U3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "4WQD6GEAM4NRC7U3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "EM3N7MRMRY4Z5BMR" : { + "EM3N7MRMRY4Z5BMR.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "EM3N7MRMRY4Z5BMR", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "EM3N7MRMRY4Z5BMR.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "EM3N7MRMRY4Z5BMR.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.4460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "EM3N7MRMRY4Z5BMR.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "EM3N7MRMRY4Z5BMR", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "EM3N7MRMRY4Z5BMR.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "EM3N7MRMRY4Z5BMR.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "134464" + }, + "appliesTo" : [ ] + }, + "EM3N7MRMRY4Z5BMR.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "EM3N7MRMRY4Z5BMR.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EM3N7MRMRY4Z5BMR.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "EM3N7MRMRY4Z5BMR", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "EM3N7MRMRY4Z5BMR.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "EM3N7MRMRY4Z5BMR.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.5790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "EM3N7MRMRY4Z5BMR.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "EM3N7MRMRY4Z5BMR", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "EM3N7MRMRY4Z5BMR.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "EM3N7MRMRY4Z5BMR.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "196232" + }, + "appliesTo" : [ ] + }, + "EM3N7MRMRY4Z5BMR.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "EM3N7MRMRY4Z5BMR.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EM3N7MRMRY4Z5BMR.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "EM3N7MRMRY4Z5BMR", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "EM3N7MRMRY4Z5BMR.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "EM3N7MRMRY4Z5BMR.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "104379" + }, + "appliesTo" : [ ] + }, + "EM3N7MRMRY4Z5BMR.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "EM3N7MRMRY4Z5BMR.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EM3N7MRMRY4Z5BMR.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "EM3N7MRMRY4Z5BMR", + "effectiveDate" : "2017-08-31T23:59:59Z", + "priceDimensions" : { + "EM3N7MRMRY4Z5BMR.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "EM3N7MRMRY4Z5BMR.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "68604" + }, + "appliesTo" : [ ] + }, + "EM3N7MRMRY4Z5BMR.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "EM3N7MRMRY4Z5BMR.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.32xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.8320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "94UG4CXUHQVWH768" : { + "94UG4CXUHQVWH768.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "94UG4CXUHQVWH768", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "94UG4CXUHQVWH768.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "94UG4CXUHQVWH768.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27856" + }, + "appliesTo" : [ ] + }, + "94UG4CXUHQVWH768.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "94UG4CXUHQVWH768.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "94UG4CXUHQVWH768.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "94UG4CXUHQVWH768", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "94UG4CXUHQVWH768.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "94UG4CXUHQVWH768.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6220000000" + }, + "appliesTo" : [ ] + }, + "94UG4CXUHQVWH768.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "94UG4CXUHQVWH768.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14212" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "94UG4CXUHQVWH768.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "94UG4CXUHQVWH768", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "94UG4CXUHQVWH768.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "94UG4CXUHQVWH768.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "94UG4CXUHQVWH768.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "94UG4CXUHQVWH768", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "94UG4CXUHQVWH768.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "94UG4CXUHQVWH768.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "94UG4CXUHQVWH768.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "94UG4CXUHQVWH768", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "94UG4CXUHQVWH768.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "94UG4CXUHQVWH768.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32224" + }, + "appliesTo" : [ ] + }, + "94UG4CXUHQVWH768.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "94UG4CXUHQVWH768.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "94UG4CXUHQVWH768.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "94UG4CXUHQVWH768", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "94UG4CXUHQVWH768.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "94UG4CXUHQVWH768.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "94UG4CXUHQVWH768.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "94UG4CXUHQVWH768", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "94UG4CXUHQVWH768.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "94UG4CXUHQVWH768.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16441" + }, + "appliesTo" : [ ] + }, + "94UG4CXUHQVWH768.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "94UG4CXUHQVWH768.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "94UG4CXUHQVWH768.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "94UG4CXUHQVWH768", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "94UG4CXUHQVWH768.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "94UG4CXUHQVWH768.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "66344" + }, + "appliesTo" : [ ] + }, + "94UG4CXUHQVWH768.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "94UG4CXUHQVWH768.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "94UG4CXUHQVWH768.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "94UG4CXUHQVWH768", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "94UG4CXUHQVWH768.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "94UG4CXUHQVWH768.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33849" + }, + "appliesTo" : [ ] + }, + "94UG4CXUHQVWH768.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "94UG4CXUHQVWH768.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "94UG4CXUHQVWH768.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "94UG4CXUHQVWH768", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "94UG4CXUHQVWH768.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "94UG4CXUHQVWH768.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "94UG4CXUHQVWH768.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "94UG4CXUHQVWH768.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "55493" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "94UG4CXUHQVWH768.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "94UG4CXUHQVWH768", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "94UG4CXUHQVWH768.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "94UG4CXUHQVWH768.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "94UG4CXUHQVWH768.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "94UG4CXUHQVWH768", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "94UG4CXUHQVWH768.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "94UG4CXUHQVWH768.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29518" + }, + "appliesTo" : [ ] + }, + "94UG4CXUHQVWH768.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "94UG4CXUHQVWH768.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "6BD786EZRWD4UZTB" : { + "6BD786EZRWD4UZTB.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "6BD786EZRWD4UZTB", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "6BD786EZRWD4UZTB.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "6BD786EZRWD4UZTB.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6BD786EZRWD4UZTB.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "6BD786EZRWD4UZTB", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "6BD786EZRWD4UZTB.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "6BD786EZRWD4UZTB.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3257" + }, + "appliesTo" : [ ] + }, + "6BD786EZRWD4UZTB.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "6BD786EZRWD4UZTB.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6BD786EZRWD4UZTB.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6BD786EZRWD4UZTB", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6BD786EZRWD4UZTB.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6BD786EZRWD4UZTB.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6708" + }, + "appliesTo" : [ ] + }, + "6BD786EZRWD4UZTB.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6BD786EZRWD4UZTB.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6BD786EZRWD4UZTB.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "6BD786EZRWD4UZTB", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "6BD786EZRWD4UZTB.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "6BD786EZRWD4UZTB.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "6BD786EZRWD4UZTB.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "6BD786EZRWD4UZTB.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8308" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6BD786EZRWD4UZTB.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "6BD786EZRWD4UZTB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6BD786EZRWD4UZTB.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "6BD786EZRWD4UZTB.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3235" + }, + "appliesTo" : [ ] + }, + "6BD786EZRWD4UZTB.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "6BD786EZRWD4UZTB.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6BD786EZRWD4UZTB.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6BD786EZRWD4UZTB", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "6BD786EZRWD4UZTB.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6BD786EZRWD4UZTB.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2912" + }, + "appliesTo" : [ ] + }, + "6BD786EZRWD4UZTB.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6BD786EZRWD4UZTB.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6BD786EZRWD4UZTB.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6BD786EZRWD4UZTB", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "6BD786EZRWD4UZTB.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6BD786EZRWD4UZTB.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1906" + }, + "appliesTo" : [ ] + }, + "6BD786EZRWD4UZTB.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6BD786EZRWD4UZTB.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6BD786EZRWD4UZTB.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "6BD786EZRWD4UZTB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6BD786EZRWD4UZTB.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "6BD786EZRWD4UZTB.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6BD786EZRWD4UZTB.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "6BD786EZRWD4UZTB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6BD786EZRWD4UZTB.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "6BD786EZRWD4UZTB.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1634" + }, + "appliesTo" : [ ] + }, + "6BD786EZRWD4UZTB.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "6BD786EZRWD4UZTB.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6BD786EZRWD4UZTB.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6BD786EZRWD4UZTB", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "6BD786EZRWD4UZTB.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6BD786EZRWD4UZTB.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2060000000" + }, + "appliesTo" : [ ] + }, + "6BD786EZRWD4UZTB.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6BD786EZRWD4UZTB.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1170" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6BD786EZRWD4UZTB.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6BD786EZRWD4UZTB", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "6BD786EZRWD4UZTB.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6BD786EZRWD4UZTB.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "4RDK5GMP5336FHVU" : { + "4RDK5GMP5336FHVU.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "4RDK5GMP5336FHVU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4RDK5GMP5336FHVU.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "4RDK5GMP5336FHVU.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6894" + }, + "appliesTo" : [ ] + }, + "4RDK5GMP5336FHVU.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "4RDK5GMP5336FHVU.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4RDK5GMP5336FHVU.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "4RDK5GMP5336FHVU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4RDK5GMP5336FHVU.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "4RDK5GMP5336FHVU.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3814" + }, + "appliesTo" : [ ] + }, + "4RDK5GMP5336FHVU.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "4RDK5GMP5336FHVU.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4RDK5GMP5336FHVU.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "4RDK5GMP5336FHVU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4RDK5GMP5336FHVU.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "4RDK5GMP5336FHVU.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14699" + }, + "appliesTo" : [ ] + }, + "4RDK5GMP5336FHVU.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "4RDK5GMP5336FHVU.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4RDK5GMP5336FHVU.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "4RDK5GMP5336FHVU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4RDK5GMP5336FHVU.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "4RDK5GMP5336FHVU.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "4RDK5GMP5336FHVU.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "4RDK5GMP5336FHVU.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13358" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4RDK5GMP5336FHVU.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "4RDK5GMP5336FHVU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4RDK5GMP5336FHVU.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "4RDK5GMP5336FHVU.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "4RDK5GMP5336FHVU.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "4RDK5GMP5336FHVU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4RDK5GMP5336FHVU.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "4RDK5GMP5336FHVU.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "4RDK5GMP5336FHVU.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "4RDK5GMP5336FHVU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4RDK5GMP5336FHVU.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "4RDK5GMP5336FHVU.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7432" + }, + "appliesTo" : [ ] + }, + "4RDK5GMP5336FHVU.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "4RDK5GMP5336FHVU.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4RDK5GMP5336FHVU.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "4RDK5GMP5336FHVU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4RDK5GMP5336FHVU.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "4RDK5GMP5336FHVU.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6826" + }, + "appliesTo" : [ ] + }, + "4RDK5GMP5336FHVU.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "4RDK5GMP5336FHVU.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4RDK5GMP5336FHVU.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "4RDK5GMP5336FHVU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4RDK5GMP5336FHVU.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "4RDK5GMP5336FHVU.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3460" + }, + "appliesTo" : [ ] + }, + "4RDK5GMP5336FHVU.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "4RDK5GMP5336FHVU.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4RDK5GMP5336FHVU.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "4RDK5GMP5336FHVU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4RDK5GMP5336FHVU.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "4RDK5GMP5336FHVU.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "4RDK5GMP5336FHVU.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "4RDK5GMP5336FHVU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4RDK5GMP5336FHVU.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "4RDK5GMP5336FHVU.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7520" + }, + "appliesTo" : [ ] + }, + "4RDK5GMP5336FHVU.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "4RDK5GMP5336FHVU.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4RDK5GMP5336FHVU.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "4RDK5GMP5336FHVU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4RDK5GMP5336FHVU.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "4RDK5GMP5336FHVU.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "MZHWDXN9MH59MH34" : { + "MZHWDXN9MH59MH34.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "MZHWDXN9MH59MH34", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MZHWDXN9MH59MH34.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "MZHWDXN9MH59MH34.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "MZHWDXN9MH59MH34.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "MZHWDXN9MH59MH34.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9132" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MZHWDXN9MH59MH34.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "MZHWDXN9MH59MH34", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MZHWDXN9MH59MH34.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "MZHWDXN9MH59MH34.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8203" + }, + "appliesTo" : [ ] + }, + "MZHWDXN9MH59MH34.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "MZHWDXN9MH59MH34.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MZHWDXN9MH59MH34.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "MZHWDXN9MH59MH34", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MZHWDXN9MH59MH34.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "MZHWDXN9MH59MH34.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19297" + }, + "appliesTo" : [ ] + }, + "MZHWDXN9MH59MH34.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "MZHWDXN9MH59MH34.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MZHWDXN9MH59MH34.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "MZHWDXN9MH59MH34", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MZHWDXN9MH59MH34.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "MZHWDXN9MH59MH34.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6380000000" + }, + "appliesTo" : [ ] + }, + "MZHWDXN9MH59MH34.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "MZHWDXN9MH59MH34.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3729" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MZHWDXN9MH59MH34.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "MZHWDXN9MH59MH34", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "MZHWDXN9MH59MH34.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "MZHWDXN9MH59MH34.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "Z78M4CHWU3KRBC2H" : { + "Z78M4CHWU3KRBC2H.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "Z78M4CHWU3KRBC2H", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z78M4CHWU3KRBC2H.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "Z78M4CHWU3KRBC2H.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1106000000" + }, + "appliesTo" : [ ] + }, + "Z78M4CHWU3KRBC2H.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "Z78M4CHWU3KRBC2H.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1330" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z78M4CHWU3KRBC2H.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Z78M4CHWU3KRBC2H", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z78M4CHWU3KRBC2H.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Z78M4CHWU3KRBC2H.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3751" + }, + "appliesTo" : [ ] + }, + "Z78M4CHWU3KRBC2H.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Z78M4CHWU3KRBC2H.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Z78M4CHWU3KRBC2H.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "Z78M4CHWU3KRBC2H", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z78M4CHWU3KRBC2H.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "Z78M4CHWU3KRBC2H.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1693000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Z78M4CHWU3KRBC2H.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "Z78M4CHWU3KRBC2H", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z78M4CHWU3KRBC2H.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "Z78M4CHWU3KRBC2H.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Z78M4CHWU3KRBC2H.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "Z78M4CHWU3KRBC2H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z78M4CHWU3KRBC2H.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "Z78M4CHWU3KRBC2H.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "Z78M4CHWU3KRBC2H.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "Z78M4CHWU3KRBC2H.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1807" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Z78M4CHWU3KRBC2H.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Z78M4CHWU3KRBC2H", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z78M4CHWU3KRBC2H.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Z78M4CHWU3KRBC2H.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1156" + }, + "appliesTo" : [ ] + }, + "Z78M4CHWU3KRBC2H.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Z78M4CHWU3KRBC2H.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z78M4CHWU3KRBC2H.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Z78M4CHWU3KRBC2H", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z78M4CHWU3KRBC2H.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Z78M4CHWU3KRBC2H.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "569" + }, + "appliesTo" : [ ] + }, + "Z78M4CHWU3KRBC2H.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Z78M4CHWU3KRBC2H.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1249000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z78M4CHWU3KRBC2H.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "Z78M4CHWU3KRBC2H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z78M4CHWU3KRBC2H.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "Z78M4CHWU3KRBC2H.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "654" + }, + "appliesTo" : [ ] + }, + "Z78M4CHWU3KRBC2H.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "Z78M4CHWU3KRBC2H.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1346000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z78M4CHWU3KRBC2H.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "Z78M4CHWU3KRBC2H", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z78M4CHWU3KRBC2H.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "Z78M4CHWU3KRBC2H.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4183" + }, + "appliesTo" : [ ] + }, + "Z78M4CHWU3KRBC2H.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "Z78M4CHWU3KRBC2H.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Z78M4CHWU3KRBC2H.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "Z78M4CHWU3KRBC2H", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z78M4CHWU3KRBC2H.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "Z78M4CHWU3KRBC2H.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2167000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Z78M4CHWU3KRBC2H.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Z78M4CHWU3KRBC2H", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z78M4CHWU3KRBC2H.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Z78M4CHWU3KRBC2H.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1963000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Z78M4CHWU3KRBC2H.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Z78M4CHWU3KRBC2H", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z78M4CHWU3KRBC2H.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Z78M4CHWU3KRBC2H.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1640" + }, + "appliesTo" : [ ] + }, + "Z78M4CHWU3KRBC2H.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Z78M4CHWU3KRBC2H.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "E3GUDV3CG8QTVYVK" : { + "E3GUDV3CG8QTVYVK.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "E3GUDV3CG8QTVYVK", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "E3GUDV3CG8QTVYVK.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "E3GUDV3CG8QTVYVK.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1452000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "E3GUDV3CG8QTVYVK.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "E3GUDV3CG8QTVYVK", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "E3GUDV3CG8QTVYVK.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "E3GUDV3CG8QTVYVK.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28627" + }, + "appliesTo" : [ ] + }, + "E3GUDV3CG8QTVYVK.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "E3GUDV3CG8QTVYVK.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0889000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "E3GUDV3CG8QTVYVK.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "E3GUDV3CG8QTVYVK", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "E3GUDV3CG8QTVYVK.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "E3GUDV3CG8QTVYVK.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "53852" + }, + "appliesTo" : [ ] + }, + "E3GUDV3CG8QTVYVK.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "E3GUDV3CG8QTVYVK.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "E3GUDV3CG8QTVYVK.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "E3GUDV3CG8QTVYVK", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "E3GUDV3CG8QTVYVK.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "E3GUDV3CG8QTVYVK.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7057000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "E3GUDV3CG8QTVYVK.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "E3GUDV3CG8QTVYVK", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "E3GUDV3CG8QTVYVK.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "E3GUDV3CG8QTVYVK.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25735" + }, + "appliesTo" : [ ] + }, + "E3GUDV3CG8QTVYVK.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "E3GUDV3CG8QTVYVK.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "E3GUDV3CG8QTVYVK.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "E3GUDV3CG8QTVYVK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "E3GUDV3CG8QTVYVK.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "E3GUDV3CG8QTVYVK.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29552" + }, + "appliesTo" : [ ] + }, + "E3GUDV3CG8QTVYVK.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "E3GUDV3CG8QTVYVK.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "E3GUDV3CG8QTVYVK.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "E3GUDV3CG8QTVYVK", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "E3GUDV3CG8QTVYVK.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "E3GUDV3CG8QTVYVK.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13158" + }, + "appliesTo" : [ ] + }, + "E3GUDV3CG8QTVYVK.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "E3GUDV3CG8QTVYVK.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "E3GUDV3CG8QTVYVK.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "E3GUDV3CG8QTVYVK", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "E3GUDV3CG8QTVYVK.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "E3GUDV3CG8QTVYVK.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32870" + }, + "appliesTo" : [ ] + }, + "E3GUDV3CG8QTVYVK.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "E3GUDV3CG8QTVYVK.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2504000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "E3GUDV3CG8QTVYVK.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "E3GUDV3CG8QTVYVK", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "E3GUDV3CG8QTVYVK.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "E3GUDV3CG8QTVYVK.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "64429" + }, + "appliesTo" : [ ] + }, + "E3GUDV3CG8QTVYVK.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "E3GUDV3CG8QTVYVK.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "E3GUDV3CG8QTVYVK.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "E3GUDV3CG8QTVYVK", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "E3GUDV3CG8QTVYVK.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "E3GUDV3CG8QTVYVK.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "E3GUDV3CG8QTVYVK.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "E3GUDV3CG8QTVYVK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "E3GUDV3CG8QTVYVK.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "E3GUDV3CG8QTVYVK.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "E3GUDV3CG8QTVYVK.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "E3GUDV3CG8QTVYVK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "E3GUDV3CG8QTVYVK.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "E3GUDV3CG8QTVYVK.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15106" + }, + "appliesTo" : [ ] + }, + "E3GUDV3CG8QTVYVK.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "E3GUDV3CG8QTVYVK.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7173000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "4GRDB56V2W7EVFSU" : { + "4GRDB56V2W7EVFSU.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "4GRDB56V2W7EVFSU", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "4GRDB56V2W7EVFSU.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "4GRDB56V2W7EVFSU.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12982" + }, + "appliesTo" : [ ] + }, + "4GRDB56V2W7EVFSU.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "4GRDB56V2W7EVFSU.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4GRDB56V2W7EVFSU.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "4GRDB56V2W7EVFSU", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "4GRDB56V2W7EVFSU.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "4GRDB56V2W7EVFSU.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26584" + }, + "appliesTo" : [ ] + }, + "4GRDB56V2W7EVFSU.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "4GRDB56V2W7EVFSU.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4GRDB56V2W7EVFSU.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "4GRDB56V2W7EVFSU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4GRDB56V2W7EVFSU.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "4GRDB56V2W7EVFSU.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30401" + }, + "appliesTo" : [ ] + }, + "4GRDB56V2W7EVFSU.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "4GRDB56V2W7EVFSU.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4GRDB56V2W7EVFSU.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "4GRDB56V2W7EVFSU", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "4GRDB56V2W7EVFSU.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "4GRDB56V2W7EVFSU.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8027000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "4GRDB56V2W7EVFSU.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "4GRDB56V2W7EVFSU", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "4GRDB56V2W7EVFSU.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "4GRDB56V2W7EVFSU.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "56574" + }, + "appliesTo" : [ ] + }, + "4GRDB56V2W7EVFSU.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "4GRDB56V2W7EVFSU.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4GRDB56V2W7EVFSU.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "4GRDB56V2W7EVFSU", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "4GRDB56V2W7EVFSU.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "4GRDB56V2W7EVFSU.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2422000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "4GRDB56V2W7EVFSU.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "4GRDB56V2W7EVFSU", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "4GRDB56V2W7EVFSU.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "4GRDB56V2W7EVFSU.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "67151" + }, + "appliesTo" : [ ] + }, + "4GRDB56V2W7EVFSU.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "4GRDB56V2W7EVFSU.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4GRDB56V2W7EVFSU.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "4GRDB56V2W7EVFSU", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "4GRDB56V2W7EVFSU.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "4GRDB56V2W7EVFSU.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2059000000" + }, + "appliesTo" : [ ] + }, + "4GRDB56V2W7EVFSU.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "4GRDB56V2W7EVFSU.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28275" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4GRDB56V2W7EVFSU.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "4GRDB56V2W7EVFSU", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "4GRDB56V2W7EVFSU.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "4GRDB56V2W7EVFSU.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32518" + }, + "appliesTo" : [ ] + }, + "4GRDB56V2W7EVFSU.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "4GRDB56V2W7EVFSU.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3674000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4GRDB56V2W7EVFSU.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "4GRDB56V2W7EVFSU", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "4GRDB56V2W7EVFSU.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "4GRDB56V2W7EVFSU.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "4GRDB56V2W7EVFSU.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "4GRDB56V2W7EVFSU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4GRDB56V2W7EVFSU.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "4GRDB56V2W7EVFSU.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14930" + }, + "appliesTo" : [ ] + }, + "4GRDB56V2W7EVFSU.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "4GRDB56V2W7EVFSU.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8343000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4GRDB56V2W7EVFSU.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "4GRDB56V2W7EVFSU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4GRDB56V2W7EVFSU.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "4GRDB56V2W7EVFSU.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "E39WJ4NFW33589ZS" : { + "E39WJ4NFW33589ZS.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "E39WJ4NFW33589ZS", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "E39WJ4NFW33589ZS.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "E39WJ4NFW33589ZS.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20023" + }, + "appliesTo" : [ ] + }, + "E39WJ4NFW33589ZS.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "E39WJ4NFW33589ZS.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "E39WJ4NFW33589ZS.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "E39WJ4NFW33589ZS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "E39WJ4NFW33589ZS.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "E39WJ4NFW33589ZS.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7144000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "E39WJ4NFW33589ZS.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "E39WJ4NFW33589ZS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "E39WJ4NFW33589ZS.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "E39WJ4NFW33589ZS.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14792" + }, + "appliesTo" : [ ] + }, + "E39WJ4NFW33589ZS.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "E39WJ4NFW33589ZS.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "E39WJ4NFW33589ZS.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "E39WJ4NFW33589ZS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "E39WJ4NFW33589ZS.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "E39WJ4NFW33589ZS.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7428" + }, + "appliesTo" : [ ] + }, + "E39WJ4NFW33589ZS.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "E39WJ4NFW33589ZS.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "E39WJ4NFW33589ZS.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "E39WJ4NFW33589ZS", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "E39WJ4NFW33589ZS.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "E39WJ4NFW33589ZS.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "E39WJ4NFW33589ZS.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "E39WJ4NFW33589ZS", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "E39WJ4NFW33589ZS.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "E39WJ4NFW33589ZS.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7140" + }, + "appliesTo" : [ ] + }, + "E39WJ4NFW33589ZS.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "E39WJ4NFW33589ZS.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "E39WJ4NFW33589ZS.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "E39WJ4NFW33589ZS", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "E39WJ4NFW33589ZS.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "E39WJ4NFW33589ZS.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "E39WJ4NFW33589ZS.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "E39WJ4NFW33589ZS", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "E39WJ4NFW33589ZS.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "E39WJ4NFW33589ZS.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "41179" + }, + "appliesTo" : [ ] + }, + "E39WJ4NFW33589ZS.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "E39WJ4NFW33589ZS.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "E39WJ4NFW33589ZS.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "E39WJ4NFW33589ZS", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "E39WJ4NFW33589ZS.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "E39WJ4NFW33589ZS.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5913000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "E39WJ4NFW33589ZS.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "E39WJ4NFW33589ZS", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "E39WJ4NFW33589ZS.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "E39WJ4NFW33589ZS.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20653" + }, + "appliesTo" : [ ] + }, + "E39WJ4NFW33589ZS.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "E39WJ4NFW33589ZS.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7859000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "E39WJ4NFW33589ZS.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "E39WJ4NFW33589ZS", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "E39WJ4NFW33589ZS.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "E39WJ4NFW33589ZS.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39710" + }, + "appliesTo" : [ ] + }, + "E39WJ4NFW33589ZS.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "E39WJ4NFW33589ZS.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "E39WJ4NFW33589ZS.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "E39WJ4NFW33589ZS", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "E39WJ4NFW33589ZS.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "E39WJ4NFW33589ZS.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14225" + }, + "appliesTo" : [ ] + }, + "E39WJ4NFW33589ZS.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "E39WJ4NFW33589ZS.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "6AUAERFUWRVM7MMK" : { + "6AUAERFUWRVM7MMK.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6AUAERFUWRVM7MMK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "6AUAERFUWRVM7MMK.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6AUAERFUWRVM7MMK.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8712" + }, + "appliesTo" : [ ] + }, + "6AUAERFUWRVM7MMK.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6AUAERFUWRVM7MMK.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6AUAERFUWRVM7MMK.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "6AUAERFUWRVM7MMK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6AUAERFUWRVM7MMK.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "6AUAERFUWRVM7MMK.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4030000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6AUAERFUWRVM7MMK.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "6AUAERFUWRVM7MMK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6AUAERFUWRVM7MMK.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "6AUAERFUWRVM7MMK.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "6AUAERFUWRVM7MMK.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "6AUAERFUWRVM7MMK.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19650" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6AUAERFUWRVM7MMK.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "6AUAERFUWRVM7MMK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "6AUAERFUWRVM7MMK.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "6AUAERFUWRVM7MMK.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6AUAERFUWRVM7MMK.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "6AUAERFUWRVM7MMK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6AUAERFUWRVM7MMK.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "6AUAERFUWRVM7MMK.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10025" + }, + "appliesTo" : [ ] + }, + "6AUAERFUWRVM7MMK.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "6AUAERFUWRVM7MMK.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6AUAERFUWRVM7MMK.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6AUAERFUWRVM7MMK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "6AUAERFUWRVM7MMK.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6AUAERFUWRVM7MMK.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16204" + }, + "appliesTo" : [ ] + }, + "6AUAERFUWRVM7MMK.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6AUAERFUWRVM7MMK.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6AUAERFUWRVM7MMK.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "6AUAERFUWRVM7MMK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "6AUAERFUWRVM7MMK.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "6AUAERFUWRVM7MMK.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "42793" + }, + "appliesTo" : [ ] + }, + "6AUAERFUWRVM7MMK.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "6AUAERFUWRVM7MMK.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6AUAERFUWRVM7MMK.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "6AUAERFUWRVM7MMK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "6AUAERFUWRVM7MMK.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "6AUAERFUWRVM7MMK.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21833" + }, + "appliesTo" : [ ] + }, + "6AUAERFUWRVM7MMK.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "6AUAERFUWRVM7MMK.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6AUAERFUWRVM7MMK.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6AUAERFUWRVM7MMK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "6AUAERFUWRVM7MMK.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6AUAERFUWRVM7MMK.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6AUAERFUWRVM7MMK.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6AUAERFUWRVM7MMK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "6AUAERFUWRVM7MMK.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6AUAERFUWRVM7MMK.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17075" + }, + "appliesTo" : [ ] + }, + "6AUAERFUWRVM7MMK.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6AUAERFUWRVM7MMK.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6AUAERFUWRVM7MMK.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6AUAERFUWRVM7MMK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "6AUAERFUWRVM7MMK.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6AUAERFUWRVM7MMK.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30463" + }, + "appliesTo" : [ ] + }, + "6AUAERFUWRVM7MMK.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6AUAERFUWRVM7MMK.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6AUAERFUWRVM7MMK.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "6AUAERFUWRVM7MMK", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "6AUAERFUWRVM7MMK.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "6AUAERFUWRVM7MMK.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "DMG3Z3PAUFNBRWWT" : { + "DMG3Z3PAUFNBRWWT.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "DMG3Z3PAUFNBRWWT", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "DMG3Z3PAUFNBRWWT.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "DMG3Z3PAUFNBRWWT.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "805" + }, + "appliesTo" : [ ] + }, + "DMG3Z3PAUFNBRWWT.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "DMG3Z3PAUFNBRWWT.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DMG3Z3PAUFNBRWWT.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "DMG3Z3PAUFNBRWWT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DMG3Z3PAUFNBRWWT.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "DMG3Z3PAUFNBRWWT.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "882" + }, + "appliesTo" : [ ] + }, + "DMG3Z3PAUFNBRWWT.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "DMG3Z3PAUFNBRWWT.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DMG3Z3PAUFNBRWWT.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "DMG3Z3PAUFNBRWWT", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "DMG3Z3PAUFNBRWWT.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "DMG3Z3PAUFNBRWWT.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0430000000" + }, + "appliesTo" : [ ] + }, + "DMG3Z3PAUFNBRWWT.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "DMG3Z3PAUFNBRWWT.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "439" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DMG3Z3PAUFNBRWWT.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "DMG3Z3PAUFNBRWWT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DMG3Z3PAUFNBRWWT.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "DMG3Z3PAUFNBRWWT.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "972" + }, + "appliesTo" : [ ] + }, + "DMG3Z3PAUFNBRWWT.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "DMG3Z3PAUFNBRWWT.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DMG3Z3PAUFNBRWWT.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "DMG3Z3PAUFNBRWWT", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "DMG3Z3PAUFNBRWWT.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "DMG3Z3PAUFNBRWWT.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1707" + }, + "appliesTo" : [ ] + }, + "DMG3Z3PAUFNBRWWT.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "DMG3Z3PAUFNBRWWT.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "DMG3Z3PAUFNBRWWT.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "DMG3Z3PAUFNBRWWT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DMG3Z3PAUFNBRWWT.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "DMG3Z3PAUFNBRWWT.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "DMG3Z3PAUFNBRWWT.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "DMG3Z3PAUFNBRWWT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DMG3Z3PAUFNBRWWT.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "DMG3Z3PAUFNBRWWT.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "478" + }, + "appliesTo" : [ ] + }, + "DMG3Z3PAUFNBRWWT.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "DMG3Z3PAUFNBRWWT.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "DMG3Z3PAUFNBRWWT.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "DMG3Z3PAUFNBRWWT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DMG3Z3PAUFNBRWWT.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "DMG3Z3PAUFNBRWWT.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0960000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DMG3Z3PAUFNBRWWT.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "DMG3Z3PAUFNBRWWT", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "DMG3Z3PAUFNBRWWT.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "DMG3Z3PAUFNBRWWT.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "891" + }, + "appliesTo" : [ ] + }, + "DMG3Z3PAUFNBRWWT.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "DMG3Z3PAUFNBRWWT.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "DMG3Z3PAUFNBRWWT.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "DMG3Z3PAUFNBRWWT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DMG3Z3PAUFNBRWWT.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "DMG3Z3PAUFNBRWWT.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "DMG3Z3PAUFNBRWWT.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "DMG3Z3PAUFNBRWWT.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1908" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "DMG3Z3PAUFNBRWWT.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "DMG3Z3PAUFNBRWWT", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "DMG3Z3PAUFNBRWWT.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "DMG3Z3PAUFNBRWWT.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "DMG3Z3PAUFNBRWWT.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "DMG3Z3PAUFNBRWWT", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "DMG3Z3PAUFNBRWWT.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "DMG3Z3PAUFNBRWWT.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "ZUTU5QZ3PZY7BWCS" : { + "ZUTU5QZ3PZY7BWCS.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ZUTU5QZ3PZY7BWCS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZUTU5QZ3PZY7BWCS.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ZUTU5QZ3PZY7BWCS.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.1200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZUTU5QZ3PZY7BWCS.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ZUTU5QZ3PZY7BWCS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZUTU5QZ3PZY7BWCS.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ZUTU5QZ3PZY7BWCS.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.1060000000" + }, + "appliesTo" : [ ] + }, + "ZUTU5QZ3PZY7BWCS.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ZUTU5QZ3PZY7BWCS.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "71007" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZUTU5QZ3PZY7BWCS.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ZUTU5QZ3PZY7BWCS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZUTU5QZ3PZY7BWCS.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ZUTU5QZ3PZY7BWCS.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ZUTU5QZ3PZY7BWCS.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ZUTU5QZ3PZY7BWCS.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "415913" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZUTU5QZ3PZY7BWCS.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ZUTU5QZ3PZY7BWCS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZUTU5QZ3PZY7BWCS.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ZUTU5QZ3PZY7BWCS.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "206950" + }, + "appliesTo" : [ ] + }, + "ZUTU5QZ3PZY7BWCS.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ZUTU5QZ3PZY7BWCS.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.8750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZUTU5QZ3PZY7BWCS.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ZUTU5QZ3PZY7BWCS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZUTU5QZ3PZY7BWCS.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ZUTU5QZ3PZY7BWCS.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "16.2640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZUTU5QZ3PZY7BWCS.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "ZUTU5QZ3PZY7BWCS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZUTU5QZ3PZY7BWCS.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "ZUTU5QZ3PZY7BWCS.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.7970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZUTU5QZ3PZY7BWCS.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ZUTU5QZ3PZY7BWCS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZUTU5QZ3PZY7BWCS.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ZUTU5QZ3PZY7BWCS.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.0370000000" + }, + "appliesTo" : [ ] + }, + "ZUTU5QZ3PZY7BWCS.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ZUTU5QZ3PZY7BWCS.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "70404" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZUTU5QZ3PZY7BWCS.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ZUTU5QZ3PZY7BWCS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZUTU5QZ3PZY7BWCS.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ZUTU5QZ3PZY7BWCS.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "208136" + }, + "appliesTo" : [ ] + }, + "ZUTU5QZ3PZY7BWCS.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ZUTU5QZ3PZY7BWCS.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.9200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZUTU5QZ3PZY7BWCS.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ZUTU5QZ3PZY7BWCS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZUTU5QZ3PZY7BWCS.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ZUTU5QZ3PZY7BWCS.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "140647" + }, + "appliesTo" : [ ] + }, + "ZUTU5QZ3PZY7BWCS.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ZUTU5QZ3PZY7BWCS.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZUTU5QZ3PZY7BWCS.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ZUTU5QZ3PZY7BWCS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZUTU5QZ3PZY7BWCS.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ZUTU5QZ3PZY7BWCS.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ZUTU5QZ3PZY7BWCS.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ZUTU5QZ3PZY7BWCS.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "412964" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZUTU5QZ3PZY7BWCS.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ZUTU5QZ3PZY7BWCS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZUTU5QZ3PZY7BWCS.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ZUTU5QZ3PZY7BWCS.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "141830" + }, + "appliesTo" : [ ] + }, + "ZUTU5QZ3PZY7BWCS.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ZUTU5QZ3PZY7BWCS.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZUTU5QZ3PZY7BWCS.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ZUTU5QZ3PZY7BWCS", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZUTU5QZ3PZY7BWCS.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ZUTU5QZ3PZY7BWCS.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.8950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "BFQ697P5TXZG7V4S" : { + "BFQ697P5TXZG7V4S.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "BFQ697P5TXZG7V4S", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "BFQ697P5TXZG7V4S.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "BFQ697P5TXZG7V4S.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2642" + }, + "appliesTo" : [ ] + }, + "BFQ697P5TXZG7V4S.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "BFQ697P5TXZG7V4S.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BFQ697P5TXZG7V4S.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "BFQ697P5TXZG7V4S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BFQ697P5TXZG7V4S.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "BFQ697P5TXZG7V4S.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6769" + }, + "appliesTo" : [ ] + }, + "BFQ697P5TXZG7V4S.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "BFQ697P5TXZG7V4S.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BFQ697P5TXZG7V4S.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "BFQ697P5TXZG7V4S", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BFQ697P5TXZG7V4S.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "BFQ697P5TXZG7V4S.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18979" + }, + "appliesTo" : [ ] + }, + "BFQ697P5TXZG7V4S.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "BFQ697P5TXZG7V4S.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BFQ697P5TXZG7V4S.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "BFQ697P5TXZG7V4S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BFQ697P5TXZG7V4S.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "BFQ697P5TXZG7V4S.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3880000000" + }, + "appliesTo" : [ ] + }, + "BFQ697P5TXZG7V4S.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "BFQ697P5TXZG7V4S.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3401" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BFQ697P5TXZG7V4S.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "BFQ697P5TXZG7V4S", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "BFQ697P5TXZG7V4S.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "BFQ697P5TXZG7V4S.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BFQ697P5TXZG7V4S.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "BFQ697P5TXZG7V4S", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BFQ697P5TXZG7V4S.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "BFQ697P5TXZG7V4S.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BFQ697P5TXZG7V4S.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "BFQ697P5TXZG7V4S", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BFQ697P5TXZG7V4S.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "BFQ697P5TXZG7V4S.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "BFQ697P5TXZG7V4S.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "BFQ697P5TXZG7V4S.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16267" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BFQ697P5TXZG7V4S.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "BFQ697P5TXZG7V4S", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BFQ697P5TXZG7V4S.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "BFQ697P5TXZG7V4S.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7673" + }, + "appliesTo" : [ ] + }, + "BFQ697P5TXZG7V4S.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "BFQ697P5TXZG7V4S.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BFQ697P5TXZG7V4S.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "BFQ697P5TXZG7V4S", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "BFQ697P5TXZG7V4S.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "BFQ697P5TXZG7V4S.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BFQ697P5TXZG7V4S.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "BFQ697P5TXZG7V4S", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BFQ697P5TXZG7V4S.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "BFQ697P5TXZG7V4S.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3950000000" + }, + "appliesTo" : [ ] + }, + "BFQ697P5TXZG7V4S.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "BFQ697P5TXZG7V4S.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6925" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BFQ697P5TXZG7V4S.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "BFQ697P5TXZG7V4S", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "BFQ697P5TXZG7V4S.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "BFQ697P5TXZG7V4S.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "BFQ697P5TXZG7V4S.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "BFQ697P5TXZG7V4S.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6469" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "HEF4JAUBGGF9GEHP" : { + "HEF4JAUBGGF9GEHP.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "HEF4JAUBGGF9GEHP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HEF4JAUBGGF9GEHP.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "HEF4JAUBGGF9GEHP.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "HEF4JAUBGGF9GEHP.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "HEF4JAUBGGF9GEHP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HEF4JAUBGGF9GEHP.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "HEF4JAUBGGF9GEHP.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14078" + }, + "appliesTo" : [ ] + }, + "HEF4JAUBGGF9GEHP.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "HEF4JAUBGGF9GEHP.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HEF4JAUBGGF9GEHP.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "HEF4JAUBGGF9GEHP", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HEF4JAUBGGF9GEHP.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "HEF4JAUBGGF9GEHP.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "HEF4JAUBGGF9GEHP.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "HEF4JAUBGGF9GEHP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "HEF4JAUBGGF9GEHP.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "HEF4JAUBGGF9GEHP.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12224" + }, + "appliesTo" : [ ] + }, + "HEF4JAUBGGF9GEHP.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "HEF4JAUBGGF9GEHP.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HEF4JAUBGGF9GEHP.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "HEF4JAUBGGF9GEHP", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "HEF4JAUBGGF9GEHP.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "HEF4JAUBGGF9GEHP.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "64414" + }, + "appliesTo" : [ ] + }, + "HEF4JAUBGGF9GEHP.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "HEF4JAUBGGF9GEHP.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "HEF4JAUBGGF9GEHP.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "HEF4JAUBGGF9GEHP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HEF4JAUBGGF9GEHP.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "HEF4JAUBGGF9GEHP.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27538" + }, + "appliesTo" : [ ] + }, + "HEF4JAUBGGF9GEHP.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "HEF4JAUBGGF9GEHP.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "HEF4JAUBGGF9GEHP.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "HEF4JAUBGGF9GEHP", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "HEF4JAUBGGF9GEHP.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "HEF4JAUBGGF9GEHP.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "HEF4JAUBGGF9GEHP.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "HEF4JAUBGGF9GEHP", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "HEF4JAUBGGF9GEHP.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "HEF4JAUBGGF9GEHP.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22488" + }, + "appliesTo" : [ ] + }, + "HEF4JAUBGGF9GEHP.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "HEF4JAUBGGF9GEHP.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HEF4JAUBGGF9GEHP.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "HEF4JAUBGGF9GEHP", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "HEF4JAUBGGF9GEHP.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "HEF4JAUBGGF9GEHP.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2510000000" + }, + "appliesTo" : [ ] + }, + "HEF4JAUBGGF9GEHP.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "HEF4JAUBGGF9GEHP.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32882" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HEF4JAUBGGF9GEHP.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "HEF4JAUBGGF9GEHP", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "HEF4JAUBGGF9GEHP.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "HEF4JAUBGGF9GEHP.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23904" + }, + "appliesTo" : [ ] + }, + "HEF4JAUBGGF9GEHP.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "HEF4JAUBGGF9GEHP.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HEF4JAUBGGF9GEHP.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "HEF4JAUBGGF9GEHP", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "HEF4JAUBGGF9GEHP.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "HEF4JAUBGGF9GEHP.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "42211" + }, + "appliesTo" : [ ] + }, + "HEF4JAUBGGF9GEHP.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "HEF4JAUBGGF9GEHP.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "9VRMFY5RW5MYMD9F" : { + "9VRMFY5RW5MYMD9F.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "9VRMFY5RW5MYMD9F", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9VRMFY5RW5MYMD9F.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "9VRMFY5RW5MYMD9F.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16900" + }, + "appliesTo" : [ ] + }, + "9VRMFY5RW5MYMD9F.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "9VRMFY5RW5MYMD9F.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9VRMFY5RW5MYMD9F.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "9VRMFY5RW5MYMD9F", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9VRMFY5RW5MYMD9F.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "9VRMFY5RW5MYMD9F.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17973" + }, + "appliesTo" : [ ] + }, + "9VRMFY5RW5MYMD9F.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "9VRMFY5RW5MYMD9F.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9VRMFY5RW5MYMD9F.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "9VRMFY5RW5MYMD9F", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9VRMFY5RW5MYMD9F.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "9VRMFY5RW5MYMD9F.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19265" + }, + "appliesTo" : [ ] + }, + "9VRMFY5RW5MYMD9F.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "9VRMFY5RW5MYMD9F.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9VRMFY5RW5MYMD9F.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "9VRMFY5RW5MYMD9F", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9VRMFY5RW5MYMD9F.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "9VRMFY5RW5MYMD9F.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0480000000" + }, + "appliesTo" : [ ] + }, + "9VRMFY5RW5MYMD9F.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "9VRMFY5RW5MYMD9F.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8042" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9VRMFY5RW5MYMD9F.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "9VRMFY5RW5MYMD9F", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9VRMFY5RW5MYMD9F.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "9VRMFY5RW5MYMD9F.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32746" + }, + "appliesTo" : [ ] + }, + "9VRMFY5RW5MYMD9F.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "9VRMFY5RW5MYMD9F.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "9VRMFY5RW5MYMD9F.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "9VRMFY5RW5MYMD9F", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9VRMFY5RW5MYMD9F.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "9VRMFY5RW5MYMD9F.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "9VRMFY5RW5MYMD9F.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "9VRMFY5RW5MYMD9F", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9VRMFY5RW5MYMD9F.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "9VRMFY5RW5MYMD9F.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0580000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9VRMFY5RW5MYMD9F.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "9VRMFY5RW5MYMD9F", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9VRMFY5RW5MYMD9F.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "9VRMFY5RW5MYMD9F.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9248" + }, + "appliesTo" : [ ] + }, + "9VRMFY5RW5MYMD9F.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "9VRMFY5RW5MYMD9F.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "9VRMFY5RW5MYMD9F.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "9VRMFY5RW5MYMD9F", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9VRMFY5RW5MYMD9F.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "9VRMFY5RW5MYMD9F.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15601" + }, + "appliesTo" : [ ] + }, + "9VRMFY5RW5MYMD9F.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "9VRMFY5RW5MYMD9F.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "9VRMFY5RW5MYMD9F.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "9VRMFY5RW5MYMD9F", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9VRMFY5RW5MYMD9F.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "9VRMFY5RW5MYMD9F.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38644" + }, + "appliesTo" : [ ] + }, + "9VRMFY5RW5MYMD9F.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "9VRMFY5RW5MYMD9F.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "9VRMFY5RW5MYMD9F.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "9VRMFY5RW5MYMD9F", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9VRMFY5RW5MYMD9F.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "9VRMFY5RW5MYMD9F.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "9VRMFY5RW5MYMD9F.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "9VRMFY5RW5MYMD9F", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "9VRMFY5RW5MYMD9F.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "9VRMFY5RW5MYMD9F.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "CZNF2F6CSUG2M7XY" : { + "CZNF2F6CSUG2M7XY.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "CZNF2F6CSUG2M7XY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CZNF2F6CSUG2M7XY.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "CZNF2F6CSUG2M7XY.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3367" + }, + "appliesTo" : [ ] + }, + "CZNF2F6CSUG2M7XY.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "CZNF2F6CSUG2M7XY.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CZNF2F6CSUG2M7XY.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "CZNF2F6CSUG2M7XY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CZNF2F6CSUG2M7XY.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "CZNF2F6CSUG2M7XY.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1137" + }, + "appliesTo" : [ ] + }, + "CZNF2F6CSUG2M7XY.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "CZNF2F6CSUG2M7XY.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2598000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CZNF2F6CSUG2M7XY.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "CZNF2F6CSUG2M7XY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CZNF2F6CSUG2M7XY.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "CZNF2F6CSUG2M7XY.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "CZNF2F6CSUG2M7XY.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "CZNF2F6CSUG2M7XY.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7764" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CZNF2F6CSUG2M7XY.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "CZNF2F6CSUG2M7XY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CZNF2F6CSUG2M7XY.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "CZNF2F6CSUG2M7XY.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2312000000" + }, + "appliesTo" : [ ] + }, + "CZNF2F6CSUG2M7XY.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "CZNF2F6CSUG2M7XY.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2660" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CZNF2F6CSUG2M7XY.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "CZNF2F6CSUG2M7XY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CZNF2F6CSUG2M7XY.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "CZNF2F6CSUG2M7XY.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2180000000" + }, + "appliesTo" : [ ] + }, + "CZNF2F6CSUG2M7XY.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "CZNF2F6CSUG2M7XY.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2313" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CZNF2F6CSUG2M7XY.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "CZNF2F6CSUG2M7XY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CZNF2F6CSUG2M7XY.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "CZNF2F6CSUG2M7XY.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4435000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CZNF2F6CSUG2M7XY.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "CZNF2F6CSUG2M7XY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CZNF2F6CSUG2M7XY.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "CZNF2F6CSUG2M7XY.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1308" + }, + "appliesTo" : [ ] + }, + "CZNF2F6CSUG2M7XY.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "CZNF2F6CSUG2M7XY.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2793000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CZNF2F6CSUG2M7XY.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "CZNF2F6CSUG2M7XY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CZNF2F6CSUG2M7XY.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "CZNF2F6CSUG2M7XY.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3486000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CZNF2F6CSUG2M7XY.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "CZNF2F6CSUG2M7XY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CZNF2F6CSUG2M7XY.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "CZNF2F6CSUG2M7XY.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3201000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CZNF2F6CSUG2M7XY.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "CZNF2F6CSUG2M7XY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CZNF2F6CSUG2M7XY.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "CZNF2F6CSUG2M7XY.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8629" + }, + "appliesTo" : [ ] + }, + "CZNF2F6CSUG2M7XY.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "CZNF2F6CSUG2M7XY.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CZNF2F6CSUG2M7XY.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "CZNF2F6CSUG2M7XY", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CZNF2F6CSUG2M7XY.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "CZNF2F6CSUG2M7XY.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3702" + }, + "appliesTo" : [ ] + }, + "CZNF2F6CSUG2M7XY.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "CZNF2F6CSUG2M7XY.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CZNF2F6CSUG2M7XY.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "CZNF2F6CSUG2M7XY", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CZNF2F6CSUG2M7XY.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "CZNF2F6CSUG2M7XY.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4026000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "VK7DM9VN6XHH954M" : { + "VK7DM9VN6XHH954M.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "VK7DM9VN6XHH954M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VK7DM9VN6XHH954M.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "VK7DM9VN6XHH954M.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "51063" + }, + "appliesTo" : [ ] + }, + "VK7DM9VN6XHH954M.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "VK7DM9VN6XHH954M.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VK7DM9VN6XHH954M.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "VK7DM9VN6XHH954M", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "VK7DM9VN6XHH954M.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "VK7DM9VN6XHH954M.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "119423" + }, + "appliesTo" : [ ] + }, + "VK7DM9VN6XHH954M.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "VK7DM9VN6XHH954M.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VK7DM9VN6XHH954M.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "VK7DM9VN6XHH954M", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "VK7DM9VN6XHH954M.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "VK7DM9VN6XHH954M.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47712" + }, + "appliesTo" : [ ] + }, + "VK7DM9VN6XHH954M.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "VK7DM9VN6XHH954M.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VK7DM9VN6XHH954M.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "VK7DM9VN6XHH954M", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VK7DM9VN6XHH954M.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "VK7DM9VN6XHH954M.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.0504000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VK7DM9VN6XHH954M.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "VK7DM9VN6XHH954M", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VK7DM9VN6XHH954M.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "VK7DM9VN6XHH954M.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.7757000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VK7DM9VN6XHH954M.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "VK7DM9VN6XHH954M", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VK7DM9VN6XHH954M.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "VK7DM9VN6XHH954M.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "127600" + }, + "appliesTo" : [ ] + }, + "VK7DM9VN6XHH954M.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "VK7DM9VN6XHH954M.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VK7DM9VN6XHH954M.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "VK7DM9VN6XHH954M", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "VK7DM9VN6XHH954M.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "VK7DM9VN6XHH954M.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24079" + }, + "appliesTo" : [ ] + }, + "VK7DM9VN6XHH954M.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "VK7DM9VN6XHH954M.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VK7DM9VN6XHH954M.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "VK7DM9VN6XHH954M", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VK7DM9VN6XHH954M.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "VK7DM9VN6XHH954M.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.6320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VK7DM9VN6XHH954M.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "VK7DM9VN6XHH954M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VK7DM9VN6XHH954M.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "VK7DM9VN6XHH954M.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.0352000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VK7DM9VN6XHH954M.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "VK7DM9VN6XHH954M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VK7DM9VN6XHH954M.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "VK7DM9VN6XHH954M.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25789" + }, + "appliesTo" : [ ] + }, + "VK7DM9VN6XHH954M.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "VK7DM9VN6XHH954M.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VK7DM9VN6XHH954M.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "VK7DM9VN6XHH954M", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "VK7DM9VN6XHH954M.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "VK7DM9VN6XHH954M.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "61054" + }, + "appliesTo" : [ ] + }, + "VK7DM9VN6XHH954M.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "VK7DM9VN6XHH954M.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VK7DM9VN6XHH954M.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "VK7DM9VN6XHH954M", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VK7DM9VN6XHH954M.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "VK7DM9VN6XHH954M.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "64312" + }, + "appliesTo" : [ ] + }, + "VK7DM9VN6XHH954M.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "VK7DM9VN6XHH954M.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4472000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "BV77CKND4GMG6JUT" : { + "BV77CKND4GMG6JUT.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "BV77CKND4GMG6JUT", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BV77CKND4GMG6JUT.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "BV77CKND4GMG6JUT.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BV77CKND4GMG6JUT.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "BV77CKND4GMG6JUT", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BV77CKND4GMG6JUT.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "BV77CKND4GMG6JUT.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "211" + }, + "appliesTo" : [ ] + }, + "BV77CKND4GMG6JUT.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "BV77CKND4GMG6JUT.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BV77CKND4GMG6JUT.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "BV77CKND4GMG6JUT", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BV77CKND4GMG6JUT.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "BV77CKND4GMG6JUT.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "387" + }, + "appliesTo" : [ ] + }, + "BV77CKND4GMG6JUT.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "BV77CKND4GMG6JUT.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BV77CKND4GMG6JUT.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "BV77CKND4GMG6JUT", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BV77CKND4GMG6JUT.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "BV77CKND4GMG6JUT.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "836" + }, + "appliesTo" : [ ] + }, + "BV77CKND4GMG6JUT.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "BV77CKND4GMG6JUT.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BV77CKND4GMG6JUT.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "BV77CKND4GMG6JUT", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "BV77CKND4GMG6JUT.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "BV77CKND4GMG6JUT.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m1.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0200000000" + }, + "appliesTo" : [ ] + }, + "BV77CKND4GMG6JUT.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "BV77CKND4GMG6JUT.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "364" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "XYZXK8CJSF87RVWV" : { + "XYZXK8CJSF87RVWV.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XYZXK8CJSF87RVWV", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "XYZXK8CJSF87RVWV.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XYZXK8CJSF87RVWV.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XYZXK8CJSF87RVWV.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XYZXK8CJSF87RVWV", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "XYZXK8CJSF87RVWV.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XYZXK8CJSF87RVWV.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "875" + }, + "appliesTo" : [ ] + }, + "XYZXK8CJSF87RVWV.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XYZXK8CJSF87RVWV.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XYZXK8CJSF87RVWV.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XYZXK8CJSF87RVWV", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XYZXK8CJSF87RVWV.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XYZXK8CJSF87RVWV.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4323" + }, + "appliesTo" : [ ] + }, + "XYZXK8CJSF87RVWV.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XYZXK8CJSF87RVWV.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XYZXK8CJSF87RVWV.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XYZXK8CJSF87RVWV", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XYZXK8CJSF87RVWV.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XYZXK8CJSF87RVWV.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1362" + }, + "appliesTo" : [ ] + }, + "XYZXK8CJSF87RVWV.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XYZXK8CJSF87RVWV.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XYZXK8CJSF87RVWV.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XYZXK8CJSF87RVWV", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XYZXK8CJSF87RVWV.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XYZXK8CJSF87RVWV.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2008" + }, + "appliesTo" : [ ] + }, + "XYZXK8CJSF87RVWV.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XYZXK8CJSF87RVWV.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), m2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "PQXUZFT763CBBFXN" : { + "PQXUZFT763CBBFXN.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "PQXUZFT763CBBFXN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PQXUZFT763CBBFXN.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "PQXUZFT763CBBFXN.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "106143" + }, + "appliesTo" : [ ] + }, + "PQXUZFT763CBBFXN.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "PQXUZFT763CBBFXN.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PQXUZFT763CBBFXN.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "PQXUZFT763CBBFXN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PQXUZFT763CBBFXN.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "PQXUZFT763CBBFXN.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "118196" + }, + "appliesTo" : [ ] + }, + "PQXUZFT763CBBFXN.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "PQXUZFT763CBBFXN.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PQXUZFT763CBBFXN.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "PQXUZFT763CBBFXN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PQXUZFT763CBBFXN.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "PQXUZFT763CBBFXN.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.2880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "PQXUZFT763CBBFXN.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "PQXUZFT763CBBFXN", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "PQXUZFT763CBBFXN.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "PQXUZFT763CBBFXN.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "53892" + }, + "appliesTo" : [ ] + }, + "PQXUZFT763CBBFXN.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "PQXUZFT763CBBFXN.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.1520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "PQXUZFT763CBBFXN.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "PQXUZFT763CBBFXN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PQXUZFT763CBBFXN.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "PQXUZFT763CBBFXN.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.7720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "PQXUZFT763CBBFXN.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "PQXUZFT763CBBFXN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PQXUZFT763CBBFXN.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "PQXUZFT763CBBFXN.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "278769" + }, + "appliesTo" : [ ] + }, + "PQXUZFT763CBBFXN.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "PQXUZFT763CBBFXN.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "PQXUZFT763CBBFXN.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "PQXUZFT763CBBFXN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PQXUZFT763CBBFXN.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "PQXUZFT763CBBFXN.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.8540000000" + }, + "appliesTo" : [ ] + }, + "PQXUZFT763CBBFXN.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "PQXUZFT763CBBFXN.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "60041" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PQXUZFT763CBBFXN.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "PQXUZFT763CBBFXN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PQXUZFT763CBBFXN.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "PQXUZFT763CBBFXN.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "11.3900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "PQXUZFT763CBBFXN.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "PQXUZFT763CBBFXN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "PQXUZFT763CBBFXN.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "PQXUZFT763CBBFXN.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.2460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "PQXUZFT763CBBFXN.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "PQXUZFT763CBBFXN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PQXUZFT763CBBFXN.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "PQXUZFT763CBBFXN.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "PQXUZFT763CBBFXN.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "PQXUZFT763CBBFXN.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "245350" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "PQXUZFT763CBBFXN.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "PQXUZFT763CBBFXN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "PQXUZFT763CBBFXN.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "PQXUZFT763CBBFXN.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "141440" + }, + "appliesTo" : [ ] + }, + "PQXUZFT763CBBFXN.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "PQXUZFT763CBBFXN.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.3820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "PQXUZFT763CBBFXN.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "PQXUZFT763CBBFXN", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "PQXUZFT763CBBFXN.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "PQXUZFT763CBBFXN.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.8720000000" + }, + "appliesTo" : [ ] + }, + "PQXUZFT763CBBFXN.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "PQXUZFT763CBBFXN.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "128036" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "8K8S8K92EHM2PHP6" : { + "8K8S8K92EHM2PHP6.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "8K8S8K92EHM2PHP6", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "8K8S8K92EHM2PHP6.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "8K8S8K92EHM2PHP6.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8K8S8K92EHM2PHP6.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "8K8S8K92EHM2PHP6", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "8K8S8K92EHM2PHP6.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "8K8S8K92EHM2PHP6.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1398" + }, + "appliesTo" : [ ] + }, + "8K8S8K92EHM2PHP6.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "8K8S8K92EHM2PHP6.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8K8S8K92EHM2PHP6.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "8K8S8K92EHM2PHP6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8K8S8K92EHM2PHP6.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "8K8S8K92EHM2PHP6.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5164000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "8K8S8K92EHM2PHP6.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "8K8S8K92EHM2PHP6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8K8S8K92EHM2PHP6.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "8K8S8K92EHM2PHP6.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1612" + }, + "appliesTo" : [ ] + }, + "8K8S8K92EHM2PHP6.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "8K8S8K92EHM2PHP6.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8K8S8K92EHM2PHP6.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "8K8S8K92EHM2PHP6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8K8S8K92EHM2PHP6.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "8K8S8K92EHM2PHP6.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "8K8S8K92EHM2PHP6.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "8K8S8K92EHM2PHP6", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "8K8S8K92EHM2PHP6.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "8K8S8K92EHM2PHP6.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3775" + }, + "appliesTo" : [ ] + }, + "8K8S8K92EHM2PHP6.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "8K8S8K92EHM2PHP6.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "8K8S8K92EHM2PHP6.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "8K8S8K92EHM2PHP6", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "8K8S8K92EHM2PHP6.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "8K8S8K92EHM2PHP6.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "8K8S8K92EHM2PHP6.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "8K8S8K92EHM2PHP6.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6834" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8K8S8K92EHM2PHP6.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "8K8S8K92EHM2PHP6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8K8S8K92EHM2PHP6.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "8K8S8K92EHM2PHP6.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "8K8S8K92EHM2PHP6.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "8K8S8K92EHM2PHP6.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8976" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8K8S8K92EHM2PHP6.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "8K8S8K92EHM2PHP6", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "8K8S8K92EHM2PHP6.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "8K8S8K92EHM2PHP6.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4298" + }, + "appliesTo" : [ ] + }, + "8K8S8K92EHM2PHP6.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "8K8S8K92EHM2PHP6.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "8K8S8K92EHM2PHP6.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "8K8S8K92EHM2PHP6", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "8K8S8K92EHM2PHP6.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "8K8S8K92EHM2PHP6.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2796" + }, + "appliesTo" : [ ] + }, + "8K8S8K92EHM2PHP6.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "8K8S8K92EHM2PHP6.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "8K8S8K92EHM2PHP6.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "8K8S8K92EHM2PHP6", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "8K8S8K92EHM2PHP6.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "8K8S8K92EHM2PHP6.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3266" + }, + "appliesTo" : [ ] + }, + "8K8S8K92EHM2PHP6.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "8K8S8K92EHM2PHP6.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "8K8S8K92EHM2PHP6.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "8K8S8K92EHM2PHP6", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "8K8S8K92EHM2PHP6.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "8K8S8K92EHM2PHP6.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3933000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "XUKM8UBN69JM7HAV" : { + "XUKM8UBN69JM7HAV.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XUKM8UBN69JM7HAV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "XUKM8UBN69JM7HAV.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XUKM8UBN69JM7HAV.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "418" + }, + "appliesTo" : [ ] + }, + "XUKM8UBN69JM7HAV.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XUKM8UBN69JM7HAV.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XUKM8UBN69JM7HAV.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XUKM8UBN69JM7HAV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "XUKM8UBN69JM7HAV.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XUKM8UBN69JM7HAV.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "684" + }, + "appliesTo" : [ ] + }, + "XUKM8UBN69JM7HAV.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XUKM8UBN69JM7HAV.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XUKM8UBN69JM7HAV.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "XUKM8UBN69JM7HAV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "XUKM8UBN69JM7HAV.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "XUKM8UBN69JM7HAV.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XUKM8UBN69JM7HAV.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "XUKM8UBN69JM7HAV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "XUKM8UBN69JM7HAV.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "XUKM8UBN69JM7HAV.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0902000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XUKM8UBN69JM7HAV.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "XUKM8UBN69JM7HAV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "XUKM8UBN69JM7HAV.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "XUKM8UBN69JM7HAV.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2007" + }, + "appliesTo" : [ ] + }, + "XUKM8UBN69JM7HAV.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "XUKM8UBN69JM7HAV.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XUKM8UBN69JM7HAV.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "XUKM8UBN69JM7HAV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XUKM8UBN69JM7HAV.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "XUKM8UBN69JM7HAV.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "838" + }, + "appliesTo" : [ ] + }, + "XUKM8UBN69JM7HAV.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "XUKM8UBN69JM7HAV.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XUKM8UBN69JM7HAV.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XUKM8UBN69JM7HAV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "XUKM8UBN69JM7HAV.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XUKM8UBN69JM7HAV.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XUKM8UBN69JM7HAV.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "XUKM8UBN69JM7HAV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XUKM8UBN69JM7HAV.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "XUKM8UBN69JM7HAV.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0967000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XUKM8UBN69JM7HAV.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "XUKM8UBN69JM7HAV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XUKM8UBN69JM7HAV.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "XUKM8UBN69JM7HAV.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "420" + }, + "appliesTo" : [ ] + }, + "XUKM8UBN69JM7HAV.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "XUKM8UBN69JM7HAV.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XUKM8UBN69JM7HAV.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XUKM8UBN69JM7HAV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "XUKM8UBN69JM7HAV.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XUKM8UBN69JM7HAV.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "XUKM8UBN69JM7HAV.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XUKM8UBN69JM7HAV.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1779" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XUKM8UBN69JM7HAV.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "XUKM8UBN69JM7HAV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "XUKM8UBN69JM7HAV.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "XUKM8UBN69JM7HAV.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1223" + }, + "appliesTo" : [ ] + }, + "XUKM8UBN69JM7HAV.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "XUKM8UBN69JM7HAV.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XUKM8UBN69JM7HAV.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XUKM8UBN69JM7HAV", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "XUKM8UBN69JM7HAV.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XUKM8UBN69JM7HAV.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "946" + }, + "appliesTo" : [ ] + }, + "XUKM8UBN69JM7HAV.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XUKM8UBN69JM7HAV.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.small reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "B4JUK3U7ZG63RGSF" : { + "B4JUK3U7ZG63RGSF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "B4JUK3U7ZG63RGSF", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "B4JUK3U7ZG63RGSF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "B4JUK3U7ZG63RGSF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4350" + }, + "appliesTo" : [ ] + }, + "B4JUK3U7ZG63RGSF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "B4JUK3U7ZG63RGSF.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "B4JUK3U7ZG63RGSF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "B4JUK3U7ZG63RGSF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "B4JUK3U7ZG63RGSF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "B4JUK3U7ZG63RGSF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2608" + }, + "appliesTo" : [ ] + }, + "B4JUK3U7ZG63RGSF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "B4JUK3U7ZG63RGSF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "B4JUK3U7ZG63RGSF.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "B4JUK3U7ZG63RGSF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "B4JUK3U7ZG63RGSF.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "B4JUK3U7ZG63RGSF.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4992" + }, + "appliesTo" : [ ] + }, + "B4JUK3U7ZG63RGSF.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "B4JUK3U7ZG63RGSF.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "B4JUK3U7ZG63RGSF.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "B4JUK3U7ZG63RGSF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "B4JUK3U7ZG63RGSF.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "B4JUK3U7ZG63RGSF.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "B4JUK3U7ZG63RGSF.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "B4JUK3U7ZG63RGSF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "B4JUK3U7ZG63RGSF.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "B4JUK3U7ZG63RGSF.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2547" + }, + "appliesTo" : [ ] + }, + "B4JUK3U7ZG63RGSF.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "B4JUK3U7ZG63RGSF.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "B4JUK3U7ZG63RGSF.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "B4JUK3U7ZG63RGSF", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "B4JUK3U7ZG63RGSF.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "B4JUK3U7ZG63RGSF.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11745" + }, + "appliesTo" : [ ] + }, + "B4JUK3U7ZG63RGSF.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "B4JUK3U7ZG63RGSF.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "B4JUK3U7ZG63RGSF.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "B4JUK3U7ZG63RGSF", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "B4JUK3U7ZG63RGSF.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "B4JUK3U7ZG63RGSF.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7042" + }, + "appliesTo" : [ ] + }, + "B4JUK3U7ZG63RGSF.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "B4JUK3U7ZG63RGSF.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "B4JUK3U7ZG63RGSF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "B4JUK3U7ZG63RGSF", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "B4JUK3U7ZG63RGSF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "B4JUK3U7ZG63RGSF.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1800000000" + }, + "appliesTo" : [ ] + }, + "B4JUK3U7ZG63RGSF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "B4JUK3U7ZG63RGSF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4063" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "B4JUK3U7ZG63RGSF.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "B4JUK3U7ZG63RGSF", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "B4JUK3U7ZG63RGSF.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "B4JUK3U7ZG63RGSF.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "B4JUK3U7ZG63RGSF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "B4JUK3U7ZG63RGSF", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "B4JUK3U7ZG63RGSF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "B4JUK3U7ZG63RGSF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8265" + }, + "appliesTo" : [ ] + }, + "B4JUK3U7ZG63RGSF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "B4JUK3U7ZG63RGSF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "B4JUK3U7ZG63RGSF.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "B4JUK3U7ZG63RGSF", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "B4JUK3U7ZG63RGSF.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "B4JUK3U7ZG63RGSF.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "AN49H8NYXWHMRMMP" : { + "AN49H8NYXWHMRMMP.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "AN49H8NYXWHMRMMP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AN49H8NYXWHMRMMP.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "AN49H8NYXWHMRMMP.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "AN49H8NYXWHMRMMP.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "AN49H8NYXWHMRMMP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AN49H8NYXWHMRMMP.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "AN49H8NYXWHMRMMP.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "AN49H8NYXWHMRMMP.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "AN49H8NYXWHMRMMP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AN49H8NYXWHMRMMP.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "AN49H8NYXWHMRMMP.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "483" + }, + "appliesTo" : [ ] + }, + "AN49H8NYXWHMRMMP.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "AN49H8NYXWHMRMMP.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AN49H8NYXWHMRMMP.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "AN49H8NYXWHMRMMP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AN49H8NYXWHMRMMP.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "AN49H8NYXWHMRMMP.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "246" + }, + "appliesTo" : [ ] + }, + "AN49H8NYXWHMRMMP.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "AN49H8NYXWHMRMMP.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AN49H8NYXWHMRMMP.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "AN49H8NYXWHMRMMP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AN49H8NYXWHMRMMP.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "AN49H8NYXWHMRMMP.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "949" + }, + "appliesTo" : [ ] + }, + "AN49H8NYXWHMRMMP.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "AN49H8NYXWHMRMMP.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AN49H8NYXWHMRMMP.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "AN49H8NYXWHMRMMP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AN49H8NYXWHMRMMP.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "AN49H8NYXWHMRMMP.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0190000000" + }, + "appliesTo" : [ ] + }, + "AN49H8NYXWHMRMMP.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "AN49H8NYXWHMRMMP.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "500" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "A5V9YQVUZMY5XA83" : { + "A5V9YQVUZMY5XA83.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "A5V9YQVUZMY5XA83", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A5V9YQVUZMY5XA83.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "A5V9YQVUZMY5XA83.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "A5V9YQVUZMY5XA83.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "A5V9YQVUZMY5XA83.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2193" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "A5V9YQVUZMY5XA83.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "A5V9YQVUZMY5XA83", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A5V9YQVUZMY5XA83.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "A5V9YQVUZMY5XA83.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "A5V9YQVUZMY5XA83.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "A5V9YQVUZMY5XA83.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1930" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "A5V9YQVUZMY5XA83.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "A5V9YQVUZMY5XA83", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A5V9YQVUZMY5XA83.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "A5V9YQVUZMY5XA83.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "A5V9YQVUZMY5XA83.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "A5V9YQVUZMY5XA83", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A5V9YQVUZMY5XA83.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "A5V9YQVUZMY5XA83.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "A5V9YQVUZMY5XA83.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "A5V9YQVUZMY5XA83", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A5V9YQVUZMY5XA83.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "A5V9YQVUZMY5XA83.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3795" + }, + "appliesTo" : [ ] + }, + "A5V9YQVUZMY5XA83.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "A5V9YQVUZMY5XA83.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "A5V9YQVUZMY5XA83.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "A5V9YQVUZMY5XA83", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A5V9YQVUZMY5XA83.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "A5V9YQVUZMY5XA83.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2001" + }, + "appliesTo" : [ ] + }, + "A5V9YQVUZMY5XA83.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "A5V9YQVUZMY5XA83.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0760000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "A5V9YQVUZMY5XA83.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "A5V9YQVUZMY5XA83", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A5V9YQVUZMY5XA83.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "A5V9YQVUZMY5XA83.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2265" + }, + "appliesTo" : [ ] + }, + "A5V9YQVUZMY5XA83.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "A5V9YQVUZMY5XA83.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "A5V9YQVUZMY5XA83.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "A5V9YQVUZMY5XA83", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A5V9YQVUZMY5XA83.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "A5V9YQVUZMY5XA83.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "A5V9YQVUZMY5XA83.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "A5V9YQVUZMY5XA83", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A5V9YQVUZMY5XA83.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "A5V9YQVUZMY5XA83.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1280000000" + }, + "appliesTo" : [ ] + }, + "A5V9YQVUZMY5XA83.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "A5V9YQVUZMY5XA83.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1117" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "A5V9YQVUZMY5XA83.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "A5V9YQVUZMY5XA83", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A5V9YQVUZMY5XA83.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "A5V9YQVUZMY5XA83.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "A5V9YQVUZMY5XA83.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "A5V9YQVUZMY5XA83.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4450" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "A5V9YQVUZMY5XA83.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "A5V9YQVUZMY5XA83", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A5V9YQVUZMY5XA83.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "A5V9YQVUZMY5XA83.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "983" + }, + "appliesTo" : [ ] + }, + "A5V9YQVUZMY5XA83.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "A5V9YQVUZMY5XA83.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "A5V9YQVUZMY5XA83.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "A5V9YQVUZMY5XA83", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "A5V9YQVUZMY5XA83.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "A5V9YQVUZMY5XA83.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "3P9SFGQNFGEFVPCX" : { + "3P9SFGQNFGEFVPCX.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "3P9SFGQNFGEFVPCX", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "3P9SFGQNFGEFVPCX.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "3P9SFGQNFGEFVPCX.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "840" + }, + "appliesTo" : [ ] + }, + "3P9SFGQNFGEFVPCX.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "3P9SFGQNFGEFVPCX.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0316000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3P9SFGQNFGEFVPCX.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "3P9SFGQNFGEFVPCX", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "3P9SFGQNFGEFVPCX.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "3P9SFGQNFGEFVPCX.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0905000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3P9SFGQNFGEFVPCX.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "3P9SFGQNFGEFVPCX", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "3P9SFGQNFGEFVPCX.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "3P9SFGQNFGEFVPCX.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0731000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3P9SFGQNFGEFVPCX.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "3P9SFGQNFGEFVPCX", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "3P9SFGQNFGEFVPCX.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "3P9SFGQNFGEFVPCX.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1793" + }, + "appliesTo" : [ ] + }, + "3P9SFGQNFGEFVPCX.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "3P9SFGQNFGEFVPCX.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3P9SFGQNFGEFVPCX.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "3P9SFGQNFGEFVPCX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3P9SFGQNFGEFVPCX.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "3P9SFGQNFGEFVPCX.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "831" + }, + "appliesTo" : [ ] + }, + "3P9SFGQNFGEFVPCX.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "3P9SFGQNFGEFVPCX.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "3P9SFGQNFGEFVPCX.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "3P9SFGQNFGEFVPCX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3P9SFGQNFGEFVPCX.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "3P9SFGQNFGEFVPCX.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0991000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3P9SFGQNFGEFVPCX.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "3P9SFGQNFGEFVPCX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "3P9SFGQNFGEFVPCX.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "3P9SFGQNFGEFVPCX.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "452" + }, + "appliesTo" : [ ] + }, + "3P9SFGQNFGEFVPCX.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "3P9SFGQNFGEFVPCX.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0445000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3P9SFGQNFGEFVPCX.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "3P9SFGQNFGEFVPCX", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "3P9SFGQNFGEFVPCX.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "3P9SFGQNFGEFVPCX.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0404000000" + }, + "appliesTo" : [ ] + }, + "3P9SFGQNFGEFVPCX.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "3P9SFGQNFGEFVPCX.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "416" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3P9SFGQNFGEFVPCX.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "3P9SFGQNFGEFVPCX", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "3P9SFGQNFGEFVPCX.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "3P9SFGQNFGEFVPCX.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "760" + }, + "appliesTo" : [ ] + }, + "3P9SFGQNFGEFVPCX.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "3P9SFGQNFGEFVPCX.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3P9SFGQNFGEFVPCX.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "3P9SFGQNFGEFVPCX", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "3P9SFGQNFGEFVPCX.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "3P9SFGQNFGEFVPCX.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "913" + }, + "appliesTo" : [ ] + }, + "3P9SFGQNFGEFVPCX.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "3P9SFGQNFGEFVPCX.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0343000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "3P9SFGQNFGEFVPCX.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "3P9SFGQNFGEFVPCX", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "3P9SFGQNFGEFVPCX.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "3P9SFGQNFGEFVPCX.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0791000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "3P9SFGQNFGEFVPCX.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "3P9SFGQNFGEFVPCX", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "3P9SFGQNFGEFVPCX.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "3P9SFGQNFGEFVPCX.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1611" + }, + "appliesTo" : [ ] + }, + "3P9SFGQNFGEFVPCX.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "3P9SFGQNFGEFVPCX.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), t2.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "63SCWY92BSEPEYVC" : { + "63SCWY92BSEPEYVC.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "63SCWY92BSEPEYVC", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "63SCWY92BSEPEYVC.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "63SCWY92BSEPEYVC.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "63SCWY92BSEPEYVC.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "63SCWY92BSEPEYVC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "63SCWY92BSEPEYVC.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "63SCWY92BSEPEYVC.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10310" + }, + "appliesTo" : [ ] + }, + "63SCWY92BSEPEYVC.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "63SCWY92BSEPEYVC.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "63SCWY92BSEPEYVC.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "63SCWY92BSEPEYVC", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "63SCWY92BSEPEYVC.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "63SCWY92BSEPEYVC.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12415" + }, + "appliesTo" : [ ] + }, + "63SCWY92BSEPEYVC.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "63SCWY92BSEPEYVC.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "63SCWY92BSEPEYVC.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "63SCWY92BSEPEYVC", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "63SCWY92BSEPEYVC.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "63SCWY92BSEPEYVC.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "63SCWY92BSEPEYVC.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "63SCWY92BSEPEYVC", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "63SCWY92BSEPEYVC.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "63SCWY92BSEPEYVC.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2974" + }, + "appliesTo" : [ ] + }, + "63SCWY92BSEPEYVC.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "63SCWY92BSEPEYVC.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "63SCWY92BSEPEYVC.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "63SCWY92BSEPEYVC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "63SCWY92BSEPEYVC.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "63SCWY92BSEPEYVC.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5027" + }, + "appliesTo" : [ ] + }, + "63SCWY92BSEPEYVC.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "63SCWY92BSEPEYVC.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "63SCWY92BSEPEYVC.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "63SCWY92BSEPEYVC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "63SCWY92BSEPEYVC.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "63SCWY92BSEPEYVC.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2555" + }, + "appliesTo" : [ ] + }, + "63SCWY92BSEPEYVC.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "63SCWY92BSEPEYVC.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "63SCWY92BSEPEYVC.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "63SCWY92BSEPEYVC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "63SCWY92BSEPEYVC.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "63SCWY92BSEPEYVC.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "63SCWY92BSEPEYVC.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "63SCWY92BSEPEYVC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "63SCWY92BSEPEYVC.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "63SCWY92BSEPEYVC.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "63SCWY92BSEPEYVC.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "63SCWY92BSEPEYVC.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4486" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "63SCWY92BSEPEYVC.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "63SCWY92BSEPEYVC", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "63SCWY92BSEPEYVC.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "63SCWY92BSEPEYVC.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8230" + }, + "appliesTo" : [ ] + }, + "63SCWY92BSEPEYVC.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "63SCWY92BSEPEYVC.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "63SCWY92BSEPEYVC.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "63SCWY92BSEPEYVC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "63SCWY92BSEPEYVC.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "63SCWY92BSEPEYVC.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7131" + }, + "appliesTo" : [ ] + }, + "63SCWY92BSEPEYVC.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "63SCWY92BSEPEYVC.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "4XKHFJVHSPER36XU" : { + "4XKHFJVHSPER36XU.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "4XKHFJVHSPER36XU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4XKHFJVHSPER36XU.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "4XKHFJVHSPER36XU.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1848000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "4XKHFJVHSPER36XU.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "4XKHFJVHSPER36XU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4XKHFJVHSPER36XU.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "4XKHFJVHSPER36XU.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "887" + }, + "appliesTo" : [ ] + }, + "4XKHFJVHSPER36XU.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "4XKHFJVHSPER36XU.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1012000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4XKHFJVHSPER36XU.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "4XKHFJVHSPER36XU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4XKHFJVHSPER36XU.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "4XKHFJVHSPER36XU.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3453" + }, + "appliesTo" : [ ] + }, + "4XKHFJVHSPER36XU.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "4XKHFJVHSPER36XU.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4XKHFJVHSPER36XU.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "4XKHFJVHSPER36XU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4XKHFJVHSPER36XU.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "4XKHFJVHSPER36XU.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1448000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "4XKHFJVHSPER36XU.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "4XKHFJVHSPER36XU", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "4XKHFJVHSPER36XU.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "4XKHFJVHSPER36XU.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0880000000" + }, + "appliesTo" : [ ] + }, + "4XKHFJVHSPER36XU.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "4XKHFJVHSPER36XU.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "770" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4XKHFJVHSPER36XU.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "4XKHFJVHSPER36XU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4XKHFJVHSPER36XU.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "4XKHFJVHSPER36XU.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1738" + }, + "appliesTo" : [ ] + }, + "4XKHFJVHSPER36XU.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "4XKHFJVHSPER36XU.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4XKHFJVHSPER36XU.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "4XKHFJVHSPER36XU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4XKHFJVHSPER36XU.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "4XKHFJVHSPER36XU.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1259000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "4XKHFJVHSPER36XU.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "4XKHFJVHSPER36XU", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "4XKHFJVHSPER36XU.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "4XKHFJVHSPER36XU.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1509" + }, + "appliesTo" : [ ] + }, + "4XKHFJVHSPER36XU.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "4XKHFJVHSPER36XU.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4XKHFJVHSPER36XU.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "4XKHFJVHSPER36XU", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "4XKHFJVHSPER36XU.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "4XKHFJVHSPER36XU.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2895" + }, + "appliesTo" : [ ] + }, + "4XKHFJVHSPER36XU.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "4XKHFJVHSPER36XU.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4XKHFJVHSPER36XU.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "4XKHFJVHSPER36XU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4XKHFJVHSPER36XU.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "4XKHFJVHSPER36XU.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1762" + }, + "appliesTo" : [ ] + }, + "4XKHFJVHSPER36XU.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "4XKHFJVHSPER36XU.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4XKHFJVHSPER36XU.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "4XKHFJVHSPER36XU", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "4XKHFJVHSPER36XU.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "4XKHFJVHSPER36XU.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1540" + }, + "appliesTo" : [ ] + }, + "4XKHFJVHSPER36XU.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "4XKHFJVHSPER36XU.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4XKHFJVHSPER36XU.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "4XKHFJVHSPER36XU", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4XKHFJVHSPER36XU.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "4XKHFJVHSPER36XU.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2125000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "CZMS4AAZCDSZGNTD" : { + "CZMS4AAZCDSZGNTD.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "CZMS4AAZCDSZGNTD", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "CZMS4AAZCDSZGNTD.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "CZMS4AAZCDSZGNTD.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "699" + }, + "appliesTo" : [ ] + }, + "CZMS4AAZCDSZGNTD.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "CZMS4AAZCDSZGNTD.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CZMS4AAZCDSZGNTD.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "CZMS4AAZCDSZGNTD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CZMS4AAZCDSZGNTD.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "CZMS4AAZCDSZGNTD.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1258000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CZMS4AAZCDSZGNTD.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "CZMS4AAZCDSZGNTD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CZMS4AAZCDSZGNTD.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "CZMS4AAZCDSZGNTD.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "801" + }, + "appliesTo" : [ ] + }, + "CZMS4AAZCDSZGNTD.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "CZMS4AAZCDSZGNTD.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0905000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CZMS4AAZCDSZGNTD.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "CZMS4AAZCDSZGNTD", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "CZMS4AAZCDSZGNTD.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "CZMS4AAZCDSZGNTD.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2891" + }, + "appliesTo" : [ ] + }, + "CZMS4AAZCDSZGNTD.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "CZMS4AAZCDSZGNTD.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CZMS4AAZCDSZGNTD.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "CZMS4AAZCDSZGNTD", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "CZMS4AAZCDSZGNTD.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "CZMS4AAZCDSZGNTD.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "CZMS4AAZCDSZGNTD.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "CZMS4AAZCDSZGNTD.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1211" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CZMS4AAZCDSZGNTD.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "CZMS4AAZCDSZGNTD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CZMS4AAZCDSZGNTD.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "CZMS4AAZCDSZGNTD.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1566000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CZMS4AAZCDSZGNTD.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "CZMS4AAZCDSZGNTD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CZMS4AAZCDSZGNTD.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "CZMS4AAZCDSZGNTD.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1315" + }, + "appliesTo" : [ ] + }, + "CZMS4AAZCDSZGNTD.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "CZMS4AAZCDSZGNTD.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CZMS4AAZCDSZGNTD.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "CZMS4AAZCDSZGNTD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CZMS4AAZCDSZGNTD.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "CZMS4AAZCDSZGNTD.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CZMS4AAZCDSZGNTD.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "CZMS4AAZCDSZGNTD", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CZMS4AAZCDSZGNTD.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "CZMS4AAZCDSZGNTD.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "403" + }, + "appliesTo" : [ ] + }, + "CZMS4AAZCDSZGNTD.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "CZMS4AAZCDSZGNTD.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CZMS4AAZCDSZGNTD.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "CZMS4AAZCDSZGNTD", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "CZMS4AAZCDSZGNTD.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "CZMS4AAZCDSZGNTD.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1000000000" + }, + "appliesTo" : [ ] + }, + "CZMS4AAZCDSZGNTD.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "CZMS4AAZCDSZGNTD.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "350" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CZMS4AAZCDSZGNTD.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "CZMS4AAZCDSZGNTD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CZMS4AAZCDSZGNTD.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "CZMS4AAZCDSZGNTD.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3147" + }, + "appliesTo" : [ ] + }, + "CZMS4AAZCDSZGNTD.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "CZMS4AAZCDSZGNTD.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CZMS4AAZCDSZGNTD.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "CZMS4AAZCDSZGNTD", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CZMS4AAZCDSZGNTD.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "CZMS4AAZCDSZGNTD.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1172000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "4TYUSVW2SFT4SYCV" : { + "4TYUSVW2SFT4SYCV.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "4TYUSVW2SFT4SYCV", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "4TYUSVW2SFT4SYCV.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "4TYUSVW2SFT4SYCV.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3795" + }, + "appliesTo" : [ ] + }, + "4TYUSVW2SFT4SYCV.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "4TYUSVW2SFT4SYCV.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4TYUSVW2SFT4SYCV.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "4TYUSVW2SFT4SYCV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4TYUSVW2SFT4SYCV.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "4TYUSVW2SFT4SYCV.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2402" + }, + "appliesTo" : [ ] + }, + "4TYUSVW2SFT4SYCV.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "4TYUSVW2SFT4SYCV.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4TYUSVW2SFT4SYCV.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "4TYUSVW2SFT4SYCV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4TYUSVW2SFT4SYCV.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "4TYUSVW2SFT4SYCV.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "4TYUSVW2SFT4SYCV.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "4TYUSVW2SFT4SYCV", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "4TYUSVW2SFT4SYCV.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "4TYUSVW2SFT4SYCV.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1211" + }, + "appliesTo" : [ ] + }, + "4TYUSVW2SFT4SYCV.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "4TYUSVW2SFT4SYCV.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4TYUSVW2SFT4SYCV.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "4TYUSVW2SFT4SYCV", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "4TYUSVW2SFT4SYCV.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "4TYUSVW2SFT4SYCV.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "4TYUSVW2SFT4SYCV.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "4TYUSVW2SFT4SYCV", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "4TYUSVW2SFT4SYCV.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "4TYUSVW2SFT4SYCV.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0890000000" + }, + "appliesTo" : [ ] + }, + "4TYUSVW2SFT4SYCV.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "4TYUSVW2SFT4SYCV.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1454" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "4TYUSVW2SFT4SYCV.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "4TYUSVW2SFT4SYCV", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "4TYUSVW2SFT4SYCV.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "4TYUSVW2SFT4SYCV.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6324" + }, + "appliesTo" : [ ] + }, + "4TYUSVW2SFT4SYCV.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "4TYUSVW2SFT4SYCV.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "4TYUSVW2SFT4SYCV.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "4TYUSVW2SFT4SYCV", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "4TYUSVW2SFT4SYCV.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "4TYUSVW2SFT4SYCV.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "4TYUSVW2SFT4SYCV.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "4TYUSVW2SFT4SYCV", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "4TYUSVW2SFT4SYCV.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "4TYUSVW2SFT4SYCV.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5489" + }, + "appliesTo" : [ ] + }, + "4TYUSVW2SFT4SYCV.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "4TYUSVW2SFT4SYCV.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "4TYUSVW2SFT4SYCV.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "4TYUSVW2SFT4SYCV", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "4TYUSVW2SFT4SYCV.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "4TYUSVW2SFT4SYCV.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4193" + }, + "appliesTo" : [ ] + }, + "4TYUSVW2SFT4SYCV.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "4TYUSVW2SFT4SYCV.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "4TYUSVW2SFT4SYCV.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "4TYUSVW2SFT4SYCV", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "4TYUSVW2SFT4SYCV.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "4TYUSVW2SFT4SYCV.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2193" + }, + "appliesTo" : [ ] + }, + "4TYUSVW2SFT4SYCV.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "4TYUSVW2SFT4SYCV.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "K6TSS6QSQBWVHANR" : { + "K6TSS6QSQBWVHANR.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "K6TSS6QSQBWVHANR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K6TSS6QSQBWVHANR.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "K6TSS6QSQBWVHANR.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "K6TSS6QSQBWVHANR.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "K6TSS6QSQBWVHANR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K6TSS6QSQBWVHANR.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "K6TSS6QSQBWVHANR.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1832" + }, + "appliesTo" : [ ] + }, + "K6TSS6QSQBWVHANR.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "K6TSS6QSQBWVHANR.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "K6TSS6QSQBWVHANR.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "K6TSS6QSQBWVHANR", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "K6TSS6QSQBWVHANR.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "K6TSS6QSQBWVHANR.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "K6TSS6QSQBWVHANR.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "K6TSS6QSQBWVHANR", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "K6TSS6QSQBWVHANR.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "K6TSS6QSQBWVHANR.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3043" + }, + "appliesTo" : [ ] + }, + "K6TSS6QSQBWVHANR.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "K6TSS6QSQBWVHANR.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "K6TSS6QSQBWVHANR.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "K6TSS6QSQBWVHANR", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "K6TSS6QSQBWVHANR.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "K6TSS6QSQBWVHANR.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6096" + }, + "appliesTo" : [ ] + }, + "K6TSS6QSQBWVHANR.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "K6TSS6QSQBWVHANR.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "K6TSS6QSQBWVHANR.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "K6TSS6QSQBWVHANR", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "K6TSS6QSQBWVHANR.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "K6TSS6QSQBWVHANR.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3125" + }, + "appliesTo" : [ ] + }, + "K6TSS6QSQBWVHANR.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "K6TSS6QSQBWVHANR.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "K6TSS6QSQBWVHANR.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "K6TSS6QSQBWVHANR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "K6TSS6QSQBWVHANR.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "K6TSS6QSQBWVHANR.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3536" + }, + "appliesTo" : [ ] + }, + "K6TSS6QSQBWVHANR.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "K6TSS6QSQBWVHANR.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "K6TSS6QSQBWVHANR.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "K6TSS6QSQBWVHANR", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "K6TSS6QSQBWVHANR.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "K6TSS6QSQBWVHANR.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "K6TSS6QSQBWVHANR.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "K6TSS6QSQBWVHANR", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "K6TSS6QSQBWVHANR.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "K6TSS6QSQBWVHANR.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1360000000" + }, + "appliesTo" : [ ] + }, + "K6TSS6QSQBWVHANR.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "K6TSS6QSQBWVHANR.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4896" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "K6TSS6QSQBWVHANR.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "K6TSS6QSQBWVHANR", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "K6TSS6QSQBWVHANR.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "K6TSS6QSQBWVHANR.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1859" + }, + "appliesTo" : [ ] + }, + "K6TSS6QSQBWVHANR.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "K6TSS6QSQBWVHANR.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1520000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "K6TSS6QSQBWVHANR.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "K6TSS6QSQBWVHANR", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "K6TSS6QSQBWVHANR.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "K6TSS6QSQBWVHANR.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8271" + }, + "appliesTo" : [ ] + }, + "K6TSS6QSQBWVHANR.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "K6TSS6QSQBWVHANR.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "RG525W32DHGJSVCS" : { + "RG525W32DHGJSVCS.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "RG525W32DHGJSVCS", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "RG525W32DHGJSVCS.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "RG525W32DHGJSVCS.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RG525W32DHGJSVCS.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "RG525W32DHGJSVCS", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RG525W32DHGJSVCS.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "RG525W32DHGJSVCS.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3227" + }, + "appliesTo" : [ ] + }, + "RG525W32DHGJSVCS.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "RG525W32DHGJSVCS.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RG525W32DHGJSVCS.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "RG525W32DHGJSVCS", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RG525W32DHGJSVCS.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "RG525W32DHGJSVCS.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2070" + }, + "appliesTo" : [ ] + }, + "RG525W32DHGJSVCS.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "RG525W32DHGJSVCS.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RG525W32DHGJSVCS.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "RG525W32DHGJSVCS", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RG525W32DHGJSVCS.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "RG525W32DHGJSVCS.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3522" + }, + "appliesTo" : [ ] + }, + "RG525W32DHGJSVCS.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "RG525W32DHGJSVCS.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RG525W32DHGJSVCS.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "RG525W32DHGJSVCS", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "RG525W32DHGJSVCS.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "RG525W32DHGJSVCS.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6442" + }, + "appliesTo" : [ ] + }, + "RG525W32DHGJSVCS.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "RG525W32DHGJSVCS.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m2.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "3M86JWNYP8BSN55W" : { + "3M86JWNYP8BSN55W.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "3M86JWNYP8BSN55W", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3M86JWNYP8BSN55W.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "3M86JWNYP8BSN55W.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2147" + }, + "appliesTo" : [ ] + }, + "3M86JWNYP8BSN55W.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "3M86JWNYP8BSN55W.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "3M86JWNYP8BSN55W.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "3M86JWNYP8BSN55W", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3M86JWNYP8BSN55W.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "3M86JWNYP8BSN55W.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "947" + }, + "appliesTo" : [ ] + }, + "3M86JWNYP8BSN55W.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "3M86JWNYP8BSN55W.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3M86JWNYP8BSN55W.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "3M86JWNYP8BSN55W", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3M86JWNYP8BSN55W.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "3M86JWNYP8BSN55W.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "3M86JWNYP8BSN55W.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "3M86JWNYP8BSN55W", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "3M86JWNYP8BSN55W.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "3M86JWNYP8BSN55W.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1438" + }, + "appliesTo" : [ ] + }, + "3M86JWNYP8BSN55W.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "3M86JWNYP8BSN55W.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "3M86JWNYP8BSN55W.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "3M86JWNYP8BSN55W", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "3M86JWNYP8BSN55W.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "3M86JWNYP8BSN55W.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4414" + }, + "appliesTo" : [ ] + }, + "3M86JWNYP8BSN55W.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "3M86JWNYP8BSN55W.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "7XDBWG89WM5JF367" : { + "7XDBWG89WM5JF367.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "7XDBWG89WM5JF367", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "7XDBWG89WM5JF367.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "7XDBWG89WM5JF367.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.0510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7XDBWG89WM5JF367.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "7XDBWG89WM5JF367", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7XDBWG89WM5JF367.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "7XDBWG89WM5JF367.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.1890000000" + }, + "appliesTo" : [ ] + }, + "7XDBWG89WM5JF367.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "7XDBWG89WM5JF367.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "62974" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7XDBWG89WM5JF367.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "7XDBWG89WM5JF367", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "7XDBWG89WM5JF367.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "7XDBWG89WM5JF367.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "345543" + }, + "appliesTo" : [ ] + }, + "7XDBWG89WM5JF367.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "7XDBWG89WM5JF367.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7XDBWG89WM5JF367.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "7XDBWG89WM5JF367", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "7XDBWG89WM5JF367.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "7XDBWG89WM5JF367.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.4060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7XDBWG89WM5JF367.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "7XDBWG89WM5JF367", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "7XDBWG89WM5JF367.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "7XDBWG89WM5JF367.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.9440000000" + }, + "appliesTo" : [ ] + }, + "7XDBWG89WM5JF367.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "7XDBWG89WM5JF367.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "60830" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7XDBWG89WM5JF367.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "7XDBWG89WM5JF367", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7XDBWG89WM5JF367.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "7XDBWG89WM5JF367.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "125290" + }, + "appliesTo" : [ ] + }, + "7XDBWG89WM5JF367.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "7XDBWG89WM5JF367.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7XDBWG89WM5JF367.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "7XDBWG89WM5JF367", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "7XDBWG89WM5JF367.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "7XDBWG89WM5JF367.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.0430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7XDBWG89WM5JF367.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "7XDBWG89WM5JF367", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "7XDBWG89WM5JF367.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "7XDBWG89WM5JF367.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "334534" + }, + "appliesTo" : [ ] + }, + "7XDBWG89WM5JF367.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "7XDBWG89WM5JF367.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7XDBWG89WM5JF367.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "7XDBWG89WM5JF367", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "7XDBWG89WM5JF367.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "7XDBWG89WM5JF367.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "7XDBWG89WM5JF367.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "7XDBWG89WM5JF367.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "121087" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7XDBWG89WM5JF367.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "7XDBWG89WM5JF367", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "7XDBWG89WM5JF367.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "7XDBWG89WM5JF367.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "169033" + }, + "appliesTo" : [ ] + }, + "7XDBWG89WM5JF367.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "7XDBWG89WM5JF367.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.4320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7XDBWG89WM5JF367.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "7XDBWG89WM5JF367", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "7XDBWG89WM5JF367.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "7XDBWG89WM5JF367.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "173448" + }, + "appliesTo" : [ ] + }, + "7XDBWG89WM5JF367.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "7XDBWG89WM5JF367.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.6000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7XDBWG89WM5JF367.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "7XDBWG89WM5JF367", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7XDBWG89WM5JF367.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "7XDBWG89WM5JF367.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "14.5650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "6U6GZ2DN4RFCJ7D9" : { + "6U6GZ2DN4RFCJ7D9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6U6GZ2DN4RFCJ7D9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6U6GZ2DN4RFCJ7D9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6U6GZ2DN4RFCJ7D9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "438" + }, + "appliesTo" : [ ] + }, + "6U6GZ2DN4RFCJ7D9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6U6GZ2DN4RFCJ7D9.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6U6GZ2DN4RFCJ7D9.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "6U6GZ2DN4RFCJ7D9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6U6GZ2DN4RFCJ7D9.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "6U6GZ2DN4RFCJ7D9.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6U6GZ2DN4RFCJ7D9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6U6GZ2DN4RFCJ7D9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6U6GZ2DN4RFCJ7D9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6U6GZ2DN4RFCJ7D9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "815" + }, + "appliesTo" : [ ] + }, + "6U6GZ2DN4RFCJ7D9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6U6GZ2DN4RFCJ7D9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6U6GZ2DN4RFCJ7D9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6U6GZ2DN4RFCJ7D9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6U6GZ2DN4RFCJ7D9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6U6GZ2DN4RFCJ7D9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "433" + }, + "appliesTo" : [ ] + }, + "6U6GZ2DN4RFCJ7D9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6U6GZ2DN4RFCJ7D9.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6U6GZ2DN4RFCJ7D9.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "6U6GZ2DN4RFCJ7D9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6U6GZ2DN4RFCJ7D9.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "6U6GZ2DN4RFCJ7D9.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "499" + }, + "appliesTo" : [ ] + }, + "6U6GZ2DN4RFCJ7D9.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "6U6GZ2DN4RFCJ7D9.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6U6GZ2DN4RFCJ7D9.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "6U6GZ2DN4RFCJ7D9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6U6GZ2DN4RFCJ7D9.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "6U6GZ2DN4RFCJ7D9.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "979" + }, + "appliesTo" : [ ] + }, + "6U6GZ2DN4RFCJ7D9.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "6U6GZ2DN4RFCJ7D9.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6U6GZ2DN4RFCJ7D9.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "6U6GZ2DN4RFCJ7D9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6U6GZ2DN4RFCJ7D9.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "6U6GZ2DN4RFCJ7D9.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6U6GZ2DN4RFCJ7D9.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "6U6GZ2DN4RFCJ7D9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6U6GZ2DN4RFCJ7D9.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "6U6GZ2DN4RFCJ7D9.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "257" + }, + "appliesTo" : [ ] + }, + "6U6GZ2DN4RFCJ7D9.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "6U6GZ2DN4RFCJ7D9.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6U6GZ2DN4RFCJ7D9.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "6U6GZ2DN4RFCJ7D9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6U6GZ2DN4RFCJ7D9.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "6U6GZ2DN4RFCJ7D9.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "6U6GZ2DN4RFCJ7D9.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "6U6GZ2DN4RFCJ7D9.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "503" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6U6GZ2DN4RFCJ7D9.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "6U6GZ2DN4RFCJ7D9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6U6GZ2DN4RFCJ7D9.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "6U6GZ2DN4RFCJ7D9.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6U6GZ2DN4RFCJ7D9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6U6GZ2DN4RFCJ7D9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6U6GZ2DN4RFCJ7D9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6U6GZ2DN4RFCJ7D9.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6U6GZ2DN4RFCJ7D9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6U6GZ2DN4RFCJ7D9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6U6GZ2DN4RFCJ7D9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6U6GZ2DN4RFCJ7D9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "223" + }, + "appliesTo" : [ ] + }, + "6U6GZ2DN4RFCJ7D9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6U6GZ2DN4RFCJ7D9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "KC3PFUW2U3T5RRSR" : { + "KC3PFUW2U3T5RRSR.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "KC3PFUW2U3T5RRSR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KC3PFUW2U3T5RRSR.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "KC3PFUW2U3T5RRSR.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.4010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KC3PFUW2U3T5RRSR.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "KC3PFUW2U3T5RRSR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KC3PFUW2U3T5RRSR.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "KC3PFUW2U3T5RRSR.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "52342" + }, + "appliesTo" : [ ] + }, + "KC3PFUW2U3T5RRSR.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "KC3PFUW2U3T5RRSR.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.9750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KC3PFUW2U3T5RRSR.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "KC3PFUW2U3T5RRSR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KC3PFUW2U3T5RRSR.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "KC3PFUW2U3T5RRSR.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4580000000" + }, + "appliesTo" : [ ] + }, + "KC3PFUW2U3T5RRSR.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "KC3PFUW2U3T5RRSR.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "90873" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KC3PFUW2U3T5RRSR.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "KC3PFUW2U3T5RRSR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KC3PFUW2U3T5RRSR.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "KC3PFUW2U3T5RRSR.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "93021" + }, + "appliesTo" : [ ] + }, + "KC3PFUW2U3T5RRSR.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "KC3PFUW2U3T5RRSR.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KC3PFUW2U3T5RRSR.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "KC3PFUW2U3T5RRSR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KC3PFUW2U3T5RRSR.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "KC3PFUW2U3T5RRSR.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "98702" + }, + "appliesTo" : [ ] + }, + "KC3PFUW2U3T5RRSR.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "KC3PFUW2U3T5RRSR.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KC3PFUW2U3T5RRSR.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "KC3PFUW2U3T5RRSR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KC3PFUW2U3T5RRSR.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "KC3PFUW2U3T5RRSR.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "103106" + }, + "appliesTo" : [ ] + }, + "KC3PFUW2U3T5RRSR.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "KC3PFUW2U3T5RRSR.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KC3PFUW2U3T5RRSR.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "KC3PFUW2U3T5RRSR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KC3PFUW2U3T5RRSR.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "KC3PFUW2U3T5RRSR.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "KC3PFUW2U3T5RRSR.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "KC3PFUW2U3T5RRSR.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "175484" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KC3PFUW2U3T5RRSR.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "KC3PFUW2U3T5RRSR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KC3PFUW2U3T5RRSR.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "KC3PFUW2U3T5RRSR.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.2340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KC3PFUW2U3T5RRSR.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "KC3PFUW2U3T5RRSR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KC3PFUW2U3T5RRSR.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "KC3PFUW2U3T5RRSR.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.8770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KC3PFUW2U3T5RRSR.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "KC3PFUW2U3T5RRSR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KC3PFUW2U3T5RRSR.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "KC3PFUW2U3T5RRSR.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "195003" + }, + "appliesTo" : [ ] + }, + "KC3PFUW2U3T5RRSR.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "KC3PFUW2U3T5RRSR.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KC3PFUW2U3T5RRSR.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "KC3PFUW2U3T5RRSR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KC3PFUW2U3T5RRSR.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "KC3PFUW2U3T5RRSR.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47197" + }, + "appliesTo" : [ ] + }, + "KC3PFUW2U3T5RRSR.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "KC3PFUW2U3T5RRSR.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.3880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KC3PFUW2U3T5RRSR.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "KC3PFUW2U3T5RRSR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KC3PFUW2U3T5RRSR.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "KC3PFUW2U3T5RRSR.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "11.1670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "Z73VPF4R8N955QMR" : { + "Z73VPF4R8N955QMR.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Z73VPF4R8N955QMR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z73VPF4R8N955QMR.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Z73VPF4R8N955QMR.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3440000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Z73VPF4R8N955QMR.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "Z73VPF4R8N955QMR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z73VPF4R8N955QMR.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "Z73VPF4R8N955QMR.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6447" + }, + "appliesTo" : [ ] + }, + "Z73VPF4R8N955QMR.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "Z73VPF4R8N955QMR.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z73VPF4R8N955QMR.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "Z73VPF4R8N955QMR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z73VPF4R8N955QMR.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "Z73VPF4R8N955QMR.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5456000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Z73VPF4R8N955QMR.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "Z73VPF4R8N955QMR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z73VPF4R8N955QMR.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "Z73VPF4R8N955QMR.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25116" + }, + "appliesTo" : [ ] + }, + "Z73VPF4R8N955QMR.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "Z73VPF4R8N955QMR.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Z73VPF4R8N955QMR.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "Z73VPF4R8N955QMR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z73VPF4R8N955QMR.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "Z73VPF4R8N955QMR.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9158000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Z73VPF4R8N955QMR.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "Z73VPF4R8N955QMR", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Z73VPF4R8N955QMR.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "Z73VPF4R8N955QMR.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "Z73VPF4R8N955QMR.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "Z73VPF4R8N955QMR.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12637" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Z73VPF4R8N955QMR.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Z73VPF4R8N955QMR", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "Z73VPF4R8N955QMR.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Z73VPF4R8N955QMR.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5592" + }, + "appliesTo" : [ ] + }, + "Z73VPF4R8N955QMR.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Z73VPF4R8N955QMR.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z73VPF4R8N955QMR.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Z73VPF4R8N955QMR", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "Z73VPF4R8N955QMR.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Z73VPF4R8N955QMR.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11185" + }, + "appliesTo" : [ ] + }, + "Z73VPF4R8N955QMR.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Z73VPF4R8N955QMR.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z73VPF4R8N955QMR.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "Z73VPF4R8N955QMR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z73VPF4R8N955QMR.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "Z73VPF4R8N955QMR.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12814" + }, + "appliesTo" : [ ] + }, + "Z73VPF4R8N955QMR.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "Z73VPF4R8N955QMR.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4876000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Z73VPF4R8N955QMR.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Z73VPF4R8N955QMR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z73VPF4R8N955QMR.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Z73VPF4R8N955QMR.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21027" + }, + "appliesTo" : [ ] + }, + "Z73VPF4R8N955QMR.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Z73VPF4R8N955QMR.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Z73VPF4R8N955QMR.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Z73VPF4R8N955QMR", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "Z73VPF4R8N955QMR.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Z73VPF4R8N955QMR.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "Z73VPF4R8N955QMR.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Z73VPF4R8N955QMR.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10961" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Z73VPF4R8N955QMR.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "Z73VPF4R8N955QMR", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Z73VPF4R8N955QMR.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "Z73VPF4R8N955QMR.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0532000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "7SE3X65CKC25URNP" : { + "7SE3X65CKC25URNP.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "7SE3X65CKC25URNP", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "7SE3X65CKC25URNP.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "7SE3X65CKC25URNP.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "7SE3X65CKC25URNP.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "7SE3X65CKC25URNP.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "96953" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7SE3X65CKC25URNP.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "7SE3X65CKC25URNP", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "7SE3X65CKC25URNP.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "7SE3X65CKC25URNP.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47469" + }, + "appliesTo" : [ ] + }, + "7SE3X65CKC25URNP.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "7SE3X65CKC25URNP.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7SE3X65CKC25URNP.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "7SE3X65CKC25URNP", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "7SE3X65CKC25URNP.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "7SE3X65CKC25URNP.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "94552" + }, + "appliesTo" : [ ] + }, + "7SE3X65CKC25URNP.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "7SE3X65CKC25URNP.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7SE3X65CKC25URNP.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "7SE3X65CKC25URNP", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "7SE3X65CKC25URNP.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "7SE3X65CKC25URNP.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "48562" + }, + "appliesTo" : [ ] + }, + "7SE3X65CKC25URNP.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "7SE3X65CKC25URNP.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7SE3X65CKC25URNP.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "7SE3X65CKC25URNP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7SE3X65CKC25URNP.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "7SE3X65CKC25URNP.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "7SE3X65CKC25URNP.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "7SE3X65CKC25URNP.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33074" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7SE3X65CKC25URNP.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "7SE3X65CKC25URNP", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "7SE3X65CKC25URNP.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "7SE3X65CKC25URNP.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7SE3X65CKC25URNP.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "7SE3X65CKC25URNP", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "7SE3X65CKC25URNP.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "7SE3X65CKC25URNP.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7SE3X65CKC25URNP.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "7SE3X65CKC25URNP", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "7SE3X65CKC25URNP.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "7SE3X65CKC25URNP.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16347" + }, + "appliesTo" : [ ] + }, + "7SE3X65CKC25URNP.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "7SE3X65CKC25URNP.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7SE3X65CKC25URNP.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "7SE3X65CKC25URNP", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "7SE3X65CKC25URNP.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "7SE3X65CKC25URNP.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32630" + }, + "appliesTo" : [ ] + }, + "7SE3X65CKC25URNP.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "7SE3X65CKC25URNP.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7SE3X65CKC25URNP.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "7SE3X65CKC25URNP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7SE3X65CKC25URNP.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "7SE3X65CKC25URNP.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16574" + }, + "appliesTo" : [ ] + }, + "7SE3X65CKC25URNP.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "7SE3X65CKC25URNP.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7SE3X65CKC25URNP.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "7SE3X65CKC25URNP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7SE3X65CKC25URNP.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "7SE3X65CKC25URNP.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "P2X5CCNUGDNQVXV2" : { + "P2X5CCNUGDNQVXV2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "P2X5CCNUGDNQVXV2", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "P2X5CCNUGDNQVXV2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "P2X5CCNUGDNQVXV2.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "P2X5CCNUGDNQVXV2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "P2X5CCNUGDNQVXV2", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "P2X5CCNUGDNQVXV2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "P2X5CCNUGDNQVXV2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37843" + }, + "appliesTo" : [ ] + }, + "P2X5CCNUGDNQVXV2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "P2X5CCNUGDNQVXV2.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "P2X5CCNUGDNQVXV2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "P2X5CCNUGDNQVXV2", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "P2X5CCNUGDNQVXV2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "P2X5CCNUGDNQVXV2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27542" + }, + "appliesTo" : [ ] + }, + "P2X5CCNUGDNQVXV2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "P2X5CCNUGDNQVXV2.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "P2X5CCNUGDNQVXV2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "P2X5CCNUGDNQVXV2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "P2X5CCNUGDNQVXV2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "P2X5CCNUGDNQVXV2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "71145" + }, + "appliesTo" : [ ] + }, + "P2X5CCNUGDNQVXV2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "P2X5CCNUGDNQVXV2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "P2X5CCNUGDNQVXV2.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "P2X5CCNUGDNQVXV2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "P2X5CCNUGDNQVXV2.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "P2X5CCNUGDNQVXV2.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33031" + }, + "appliesTo" : [ ] + }, + "P2X5CCNUGDNQVXV2.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "P2X5CCNUGDNQVXV2.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9110000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "P2X5CCNUGDNQVXV2.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "P2X5CCNUGDNQVXV2", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "P2X5CCNUGDNQVXV2.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "P2X5CCNUGDNQVXV2.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "P2X5CCNUGDNQVXV2.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "P2X5CCNUGDNQVXV2", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "P2X5CCNUGDNQVXV2.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "P2X5CCNUGDNQVXV2.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "81583" + }, + "appliesTo" : [ ] + }, + "P2X5CCNUGDNQVXV2.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "P2X5CCNUGDNQVXV2.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "P2X5CCNUGDNQVXV2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "P2X5CCNUGDNQVXV2", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "P2X5CCNUGDNQVXV2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "P2X5CCNUGDNQVXV2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11241" + }, + "appliesTo" : [ ] + }, + "P2X5CCNUGDNQVXV2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "P2X5CCNUGDNQVXV2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "XTPNAJDDCCQR3XRZ" : { + "XTPNAJDDCCQR3XRZ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "XTPNAJDDCCQR3XRZ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "XTPNAJDDCCQR3XRZ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "XTPNAJDDCCQR3XRZ.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "XTPNAJDDCCQR3XRZ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "XTPNAJDDCCQR3XRZ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10126" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XTPNAJDDCCQR3XRZ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XTPNAJDDCCQR3XRZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XTPNAJDDCCQR3XRZ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XTPNAJDDCCQR3XRZ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XTPNAJDDCCQR3XRZ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "XTPNAJDDCCQR3XRZ", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "XTPNAJDDCCQR3XRZ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "XTPNAJDDCCQR3XRZ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3872" + }, + "appliesTo" : [ ] + }, + "XTPNAJDDCCQR3XRZ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "XTPNAJDDCCQR3XRZ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XTPNAJDDCCQR3XRZ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XTPNAJDDCCQR3XRZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XTPNAJDDCCQR3XRZ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XTPNAJDDCCQR3XRZ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2234" + }, + "appliesTo" : [ ] + }, + "XTPNAJDDCCQR3XRZ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XTPNAJDDCCQR3XRZ.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2420000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XTPNAJDDCCQR3XRZ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XTPNAJDDCCQR3XRZ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "XTPNAJDDCCQR3XRZ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XTPNAJDDCCQR3XRZ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "XTPNAJDDCCQR3XRZ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XTPNAJDDCCQR3XRZ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8077" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XTPNAJDDCCQR3XRZ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "XTPNAJDDCCQR3XRZ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "XTPNAJDDCCQR3XRZ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "XTPNAJDDCCQR3XRZ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XTPNAJDDCCQR3XRZ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XTPNAJDDCCQR3XRZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XTPNAJDDCCQR3XRZ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XTPNAJDDCCQR3XRZ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "XTPNAJDDCCQR3XRZ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XTPNAJDDCCQR3XRZ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3614" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XTPNAJDDCCQR3XRZ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XTPNAJDDCCQR3XRZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XTPNAJDDCCQR3XRZ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XTPNAJDDCCQR3XRZ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1434" + }, + "appliesTo" : [ ] + }, + "XTPNAJDDCCQR3XRZ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XTPNAJDDCCQR3XRZ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XTPNAJDDCCQR3XRZ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "XTPNAJDDCCQR3XRZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XTPNAJDDCCQR3XRZ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "XTPNAJDDCCQR3XRZ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3884" + }, + "appliesTo" : [ ] + }, + "XTPNAJDDCCQR3XRZ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "XTPNAJDDCCQR3XRZ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XTPNAJDDCCQR3XRZ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "XTPNAJDDCCQR3XRZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XTPNAJDDCCQR3XRZ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "XTPNAJDDCCQR3XRZ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XTPNAJDDCCQR3XRZ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "XTPNAJDDCCQR3XRZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XTPNAJDDCCQR3XRZ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "XTPNAJDDCCQR3XRZ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2900000000" + }, + "appliesTo" : [ ] + }, + "XTPNAJDDCCQR3XRZ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "XTPNAJDDCCQR3XRZ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1401" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "KAZBRUMA5WBV7S69" : { + "KAZBRUMA5WBV7S69.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "KAZBRUMA5WBV7S69", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KAZBRUMA5WBV7S69.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "KAZBRUMA5WBV7S69.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4675000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KAZBRUMA5WBV7S69.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "KAZBRUMA5WBV7S69", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KAZBRUMA5WBV7S69.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "KAZBRUMA5WBV7S69.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1992" + }, + "appliesTo" : [ ] + }, + "KAZBRUMA5WBV7S69.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "KAZBRUMA5WBV7S69.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2274000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KAZBRUMA5WBV7S69.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "KAZBRUMA5WBV7S69", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "KAZBRUMA5WBV7S69.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "KAZBRUMA5WBV7S69.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2110000000" + }, + "appliesTo" : [ ] + }, + "KAZBRUMA5WBV7S69.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "KAZBRUMA5WBV7S69.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1848" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KAZBRUMA5WBV7S69.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "KAZBRUMA5WBV7S69", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "KAZBRUMA5WBV7S69.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "KAZBRUMA5WBV7S69.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KAZBRUMA5WBV7S69.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "KAZBRUMA5WBV7S69", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "KAZBRUMA5WBV7S69.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "KAZBRUMA5WBV7S69.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3634000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KAZBRUMA5WBV7S69.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "KAZBRUMA5WBV7S69", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "KAZBRUMA5WBV7S69.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "KAZBRUMA5WBV7S69.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4911" + }, + "appliesTo" : [ ] + }, + "KAZBRUMA5WBV7S69.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "KAZBRUMA5WBV7S69.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1869000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "KAZBRUMA5WBV7S69.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "KAZBRUMA5WBV7S69", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "KAZBRUMA5WBV7S69.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "KAZBRUMA5WBV7S69.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9003" + }, + "appliesTo" : [ ] + }, + "KAZBRUMA5WBV7S69.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "KAZBRUMA5WBV7S69.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KAZBRUMA5WBV7S69.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "KAZBRUMA5WBV7S69", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "KAZBRUMA5WBV7S69.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "KAZBRUMA5WBV7S69.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3874000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "KAZBRUMA5WBV7S69.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "KAZBRUMA5WBV7S69", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "KAZBRUMA5WBV7S69.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "KAZBRUMA5WBV7S69.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3940" + }, + "appliesTo" : [ ] + }, + "KAZBRUMA5WBV7S69.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "KAZBRUMA5WBV7S69.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KAZBRUMA5WBV7S69.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "KAZBRUMA5WBV7S69", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "KAZBRUMA5WBV7S69.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "KAZBRUMA5WBV7S69.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9732" + }, + "appliesTo" : [ ] + }, + "KAZBRUMA5WBV7S69.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "KAZBRUMA5WBV7S69.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "KAZBRUMA5WBV7S69.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "KAZBRUMA5WBV7S69", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "KAZBRUMA5WBV7S69.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "KAZBRUMA5WBV7S69.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3658" + }, + "appliesTo" : [ ] + }, + "KAZBRUMA5WBV7S69.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "KAZBRUMA5WBV7S69.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KAZBRUMA5WBV7S69.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "KAZBRUMA5WBV7S69", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "KAZBRUMA5WBV7S69.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "KAZBRUMA5WBV7S69.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4618" + }, + "appliesTo" : [ ] + }, + "KAZBRUMA5WBV7S69.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "KAZBRUMA5WBV7S69.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), t2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1757000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "W2C299XDDHK5Q5HK" : { + "W2C299XDDHK5Q5HK.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "W2C299XDDHK5Q5HK", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "W2C299XDDHK5Q5HK.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "W2C299XDDHK5Q5HK.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "W2C299XDDHK5Q5HK.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "W2C299XDDHK5Q5HK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W2C299XDDHK5Q5HK.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "W2C299XDDHK5Q5HK.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14619" + }, + "appliesTo" : [ ] + }, + "W2C299XDDHK5Q5HK.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "W2C299XDDHK5Q5HK.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "W2C299XDDHK5Q5HK.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "W2C299XDDHK5Q5HK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W2C299XDDHK5Q5HK.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "W2C299XDDHK5Q5HK.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "W2C299XDDHK5Q5HK.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "W2C299XDDHK5Q5HK", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "W2C299XDDHK5Q5HK.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "W2C299XDDHK5Q5HK.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39312" + }, + "appliesTo" : [ ] + }, + "W2C299XDDHK5Q5HK.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "W2C299XDDHK5Q5HK.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "W2C299XDDHK5Q5HK.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "W2C299XDDHK5Q5HK", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "W2C299XDDHK5Q5HK.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "W2C299XDDHK5Q5HK.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "W2C299XDDHK5Q5HK.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "W2C299XDDHK5Q5HK", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "W2C299XDDHK5Q5HK.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "W2C299XDDHK5Q5HK.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "45900" + }, + "appliesTo" : [ ] + }, + "W2C299XDDHK5Q5HK.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "W2C299XDDHK5Q5HK.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "W2C299XDDHK5Q5HK.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "W2C299XDDHK5Q5HK", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "W2C299XDDHK5Q5HK.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "W2C299XDDHK5Q5HK.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21920" + }, + "appliesTo" : [ ] + }, + "W2C299XDDHK5Q5HK.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "W2C299XDDHK5Q5HK.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0240000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "W2C299XDDHK5Q5HK.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "W2C299XDDHK5Q5HK", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "W2C299XDDHK5Q5HK.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "W2C299XDDHK5Q5HK.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14560" + }, + "appliesTo" : [ ] + }, + "W2C299XDDHK5Q5HK.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "W2C299XDDHK5Q5HK.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "W2C299XDDHK5Q5HK.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "W2C299XDDHK5Q5HK", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "W2C299XDDHK5Q5HK.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "W2C299XDDHK5Q5HK.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25446" + }, + "appliesTo" : [ ] + }, + "W2C299XDDHK5Q5HK.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "W2C299XDDHK5Q5HK.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "W2C299XDDHK5Q5HK.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "W2C299XDDHK5Q5HK", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "W2C299XDDHK5Q5HK.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "W2C299XDDHK5Q5HK.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "68859" + }, + "appliesTo" : [ ] + }, + "W2C299XDDHK5Q5HK.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "W2C299XDDHK5Q5HK.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "W2C299XDDHK5Q5HK.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "W2C299XDDHK5Q5HK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "W2C299XDDHK5Q5HK.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "W2C299XDDHK5Q5HK.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "W2C299XDDHK5Q5HK.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "W2C299XDDHK5Q5HK.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29793" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "VZB4MZEV7XEAF6US" : { + "VZB4MZEV7XEAF6US.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "VZB4MZEV7XEAF6US", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "VZB4MZEV7XEAF6US.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "VZB4MZEV7XEAF6US.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9121" + }, + "appliesTo" : [ ] + }, + "VZB4MZEV7XEAF6US.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "VZB4MZEV7XEAF6US.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VZB4MZEV7XEAF6US.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "VZB4MZEV7XEAF6US", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VZB4MZEV7XEAF6US.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "VZB4MZEV7XEAF6US.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6109000000" + }, + "appliesTo" : [ ] + }, + "VZB4MZEV7XEAF6US.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "VZB4MZEV7XEAF6US.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5352" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VZB4MZEV7XEAF6US.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "VZB4MZEV7XEAF6US", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VZB4MZEV7XEAF6US.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "VZB4MZEV7XEAF6US.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VZB4MZEV7XEAF6US.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "VZB4MZEV7XEAF6US", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VZB4MZEV7XEAF6US.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "VZB4MZEV7XEAF6US.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22583" + }, + "appliesTo" : [ ] + }, + "VZB4MZEV7XEAF6US.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "VZB4MZEV7XEAF6US.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "VZB4MZEV7XEAF6US.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "VZB4MZEV7XEAF6US", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VZB4MZEV7XEAF6US.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "VZB4MZEV7XEAF6US.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11522" + }, + "appliesTo" : [ ] + }, + "VZB4MZEV7XEAF6US.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "VZB4MZEV7XEAF6US.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4384000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "VZB4MZEV7XEAF6US.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "VZB4MZEV7XEAF6US", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "VZB4MZEV7XEAF6US.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "VZB4MZEV7XEAF6US.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10019" + }, + "appliesTo" : [ ] + }, + "VZB4MZEV7XEAF6US.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "VZB4MZEV7XEAF6US.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VZB4MZEV7XEAF6US.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "VZB4MZEV7XEAF6US", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VZB4MZEV7XEAF6US.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "VZB4MZEV7XEAF6US.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "VZB4MZEV7XEAF6US.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "VZB4MZEV7XEAF6US", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "VZB4MZEV7XEAF6US.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "VZB4MZEV7XEAF6US.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18836" + }, + "appliesTo" : [ ] + }, + "VZB4MZEV7XEAF6US.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "VZB4MZEV7XEAF6US.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "VZB4MZEV7XEAF6US.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "VZB4MZEV7XEAF6US", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "VZB4MZEV7XEAF6US.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "VZB4MZEV7XEAF6US.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8235000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VZB4MZEV7XEAF6US.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "VZB4MZEV7XEAF6US", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "VZB4MZEV7XEAF6US.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "VZB4MZEV7XEAF6US.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "VZB4MZEV7XEAF6US.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "VZB4MZEV7XEAF6US", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "VZB4MZEV7XEAF6US.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "VZB4MZEV7XEAF6US.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4654" + }, + "appliesTo" : [ ] + }, + "VZB4MZEV7XEAF6US.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "VZB4MZEV7XEAF6US.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "VZB4MZEV7XEAF6US.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "VZB4MZEV7XEAF6US", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "VZB4MZEV7XEAF6US.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "VZB4MZEV7XEAF6US.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "VZB4MZEV7XEAF6US.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "VZB4MZEV7XEAF6US.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10489" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "GEDBVWHPGWMPYFMC" : { + "GEDBVWHPGWMPYFMC.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "GEDBVWHPGWMPYFMC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GEDBVWHPGWMPYFMC.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "GEDBVWHPGWMPYFMC.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "GEDBVWHPGWMPYFMC.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "GEDBVWHPGWMPYFMC", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "GEDBVWHPGWMPYFMC.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "GEDBVWHPGWMPYFMC.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1093" + }, + "appliesTo" : [ ] + }, + "GEDBVWHPGWMPYFMC.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "GEDBVWHPGWMPYFMC.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GEDBVWHPGWMPYFMC.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "GEDBVWHPGWMPYFMC", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "GEDBVWHPGWMPYFMC.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "GEDBVWHPGWMPYFMC.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "GEDBVWHPGWMPYFMC.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "GEDBVWHPGWMPYFMC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GEDBVWHPGWMPYFMC.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "GEDBVWHPGWMPYFMC.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "GEDBVWHPGWMPYFMC.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "GEDBVWHPGWMPYFMC.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1248" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "GEDBVWHPGWMPYFMC.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "GEDBVWHPGWMPYFMC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GEDBVWHPGWMPYFMC.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "GEDBVWHPGWMPYFMC.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2066" + }, + "appliesTo" : [ ] + }, + "GEDBVWHPGWMPYFMC.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "GEDBVWHPGWMPYFMC.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "GEDBVWHPGWMPYFMC.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "GEDBVWHPGWMPYFMC", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "GEDBVWHPGWMPYFMC.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "GEDBVWHPGWMPYFMC.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2951" + }, + "appliesTo" : [ ] + }, + "GEDBVWHPGWMPYFMC.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "GEDBVWHPGWMPYFMC.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "GEDBVWHPGWMPYFMC.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "GEDBVWHPGWMPYFMC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GEDBVWHPGWMPYFMC.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "GEDBVWHPGWMPYFMC.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1016" + }, + "appliesTo" : [ ] + }, + "GEDBVWHPGWMPYFMC.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "GEDBVWHPGWMPYFMC.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GEDBVWHPGWMPYFMC.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "GEDBVWHPGWMPYFMC", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "GEDBVWHPGWMPYFMC.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "GEDBVWHPGWMPYFMC.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1760" + }, + "appliesTo" : [ ] + }, + "GEDBVWHPGWMPYFMC.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "GEDBVWHPGWMPYFMC.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GEDBVWHPGWMPYFMC.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "GEDBVWHPGWMPYFMC", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "GEDBVWHPGWMPYFMC.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "GEDBVWHPGWMPYFMC.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0530000000" + }, + "appliesTo" : [ ] + }, + "GEDBVWHPGWMPYFMC.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "GEDBVWHPGWMPYFMC.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "652" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "GEDBVWHPGWMPYFMC.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "GEDBVWHPGWMPYFMC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GEDBVWHPGWMPYFMC.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "GEDBVWHPGWMPYFMC.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "637" + }, + "appliesTo" : [ ] + }, + "GEDBVWHPGWMPYFMC.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "GEDBVWHPGWMPYFMC.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "GEDBVWHPGWMPYFMC.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "GEDBVWHPGWMPYFMC", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "GEDBVWHPGWMPYFMC.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "GEDBVWHPGWMPYFMC.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "D8HDF78JFRVMSXZK" : { + "D8HDF78JFRVMSXZK.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "D8HDF78JFRVMSXZK", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "D8HDF78JFRVMSXZK.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "D8HDF78JFRVMSXZK.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.0930000000" + }, + "appliesTo" : [ ] + }, + "D8HDF78JFRVMSXZK.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "D8HDF78JFRVMSXZK.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35850" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "D8HDF78JFRVMSXZK.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "D8HDF78JFRVMSXZK", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "D8HDF78JFRVMSXZK.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "D8HDF78JFRVMSXZK.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "71015" + }, + "appliesTo" : [ ] + }, + "D8HDF78JFRVMSXZK.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "D8HDF78JFRVMSXZK.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "D8HDF78JFRVMSXZK.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "D8HDF78JFRVMSXZK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "D8HDF78JFRVMSXZK.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "D8HDF78JFRVMSXZK.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.4910000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "D8HDF78JFRVMSXZK.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "D8HDF78JFRVMSXZK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "D8HDF78JFRVMSXZK.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "D8HDF78JFRVMSXZK.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.1700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "D8HDF78JFRVMSXZK.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "D8HDF78JFRVMSXZK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "D8HDF78JFRVMSXZK.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "D8HDF78JFRVMSXZK.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "164594" + }, + "appliesTo" : [ ] + }, + "D8HDF78JFRVMSXZK.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "D8HDF78JFRVMSXZK.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "D8HDF78JFRVMSXZK.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "D8HDF78JFRVMSXZK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "D8HDF78JFRVMSXZK.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "D8HDF78JFRVMSXZK.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "74311" + }, + "appliesTo" : [ ] + }, + "D8HDF78JFRVMSXZK.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "D8HDF78JFRVMSXZK.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "D8HDF78JFRVMSXZK.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "D8HDF78JFRVMSXZK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "D8HDF78JFRVMSXZK.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "D8HDF78JFRVMSXZK.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.1360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "D8HDF78JFRVMSXZK.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "D8HDF78JFRVMSXZK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "D8HDF78JFRVMSXZK.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "D8HDF78JFRVMSXZK.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.7980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "D8HDF78JFRVMSXZK.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "D8HDF78JFRVMSXZK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "D8HDF78JFRVMSXZK.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "D8HDF78JFRVMSXZK.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37550" + }, + "appliesTo" : [ ] + }, + "D8HDF78JFRVMSXZK.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "D8HDF78JFRVMSXZK.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2870000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "D8HDF78JFRVMSXZK.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "D8HDF78JFRVMSXZK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "D8HDF78JFRVMSXZK.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "D8HDF78JFRVMSXZK.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "82897" + }, + "appliesTo" : [ ] + }, + "D8HDF78JFRVMSXZK.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "D8HDF78JFRVMSXZK.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "D8HDF78JFRVMSXZK.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "D8HDF78JFRVMSXZK", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "D8HDF78JFRVMSXZK.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "D8HDF78JFRVMSXZK.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "161278" + }, + "appliesTo" : [ ] + }, + "D8HDF78JFRVMSXZK.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "D8HDF78JFRVMSXZK.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "D8HDF78JFRVMSXZK.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "D8HDF78JFRVMSXZK", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "D8HDF78JFRVMSXZK.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "D8HDF78JFRVMSXZK.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "82204" + }, + "appliesTo" : [ ] + }, + "D8HDF78JFRVMSXZK.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "D8HDF78JFRVMSXZK.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.1280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "AXBKPP5M3DJRHZ89" : { + "AXBKPP5M3DJRHZ89.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "AXBKPP5M3DJRHZ89", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AXBKPP5M3DJRHZ89.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "AXBKPP5M3DJRHZ89.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "36978" + }, + "appliesTo" : [ ] + }, + "AXBKPP5M3DJRHZ89.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "AXBKPP5M3DJRHZ89.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AXBKPP5M3DJRHZ89.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "AXBKPP5M3DJRHZ89", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AXBKPP5M3DJRHZ89.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "AXBKPP5M3DJRHZ89.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18866" + }, + "appliesTo" : [ ] + }, + "AXBKPP5M3DJRHZ89.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "AXBKPP5M3DJRHZ89.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.1540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AXBKPP5M3DJRHZ89.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "AXBKPP5M3DJRHZ89", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AXBKPP5M3DJRHZ89.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "AXBKPP5M3DJRHZ89.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "AXBKPP5M3DJRHZ89.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "AXBKPP5M3DJRHZ89", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AXBKPP5M3DJRHZ89.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "AXBKPP5M3DJRHZ89.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "28704" + }, + "appliesTo" : [ ] + }, + "AXBKPP5M3DJRHZ89.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "AXBKPP5M3DJRHZ89.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0920000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AXBKPP5M3DJRHZ89.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "AXBKPP5M3DJRHZ89", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AXBKPP5M3DJRHZ89.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "AXBKPP5M3DJRHZ89.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "AXBKPP5M3DJRHZ89.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "AXBKPP5M3DJRHZ89", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AXBKPP5M3DJRHZ89.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "AXBKPP5M3DJRHZ89.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "53964" + }, + "appliesTo" : [ ] + }, + "AXBKPP5M3DJRHZ89.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "AXBKPP5M3DJRHZ89.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), x1e.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "Q5KJSQ8D6YCWXG4R" : { + "Q5KJSQ8D6YCWXG4R.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Q5KJSQ8D6YCWXG4R", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "Q5KJSQ8D6YCWXG4R.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Q5KJSQ8D6YCWXG4R.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "46454" + }, + "appliesTo" : [ ] + }, + "Q5KJSQ8D6YCWXG4R.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Q5KJSQ8D6YCWXG4R.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q5KJSQ8D6YCWXG4R.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "Q5KJSQ8D6YCWXG4R", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "Q5KJSQ8D6YCWXG4R.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "Q5KJSQ8D6YCWXG4R.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "94373" + }, + "appliesTo" : [ ] + }, + "Q5KJSQ8D6YCWXG4R.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "Q5KJSQ8D6YCWXG4R.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Q5KJSQ8D6YCWXG4R.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "Q5KJSQ8D6YCWXG4R", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "Q5KJSQ8D6YCWXG4R.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "Q5KJSQ8D6YCWXG4R.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47246" + }, + "appliesTo" : [ ] + }, + "Q5KJSQ8D6YCWXG4R.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "Q5KJSQ8D6YCWXG4R.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q5KJSQ8D6YCWXG4R.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Q5KJSQ8D6YCWXG4R", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "Q5KJSQ8D6YCWXG4R.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Q5KJSQ8D6YCWXG4R.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Q5KJSQ8D6YCWXG4R.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "Q5KJSQ8D6YCWXG4R", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "Q5KJSQ8D6YCWXG4R.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "Q5KJSQ8D6YCWXG4R.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Q5KJSQ8D6YCWXG4R.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Q5KJSQ8D6YCWXG4R", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "Q5KJSQ8D6YCWXG4R.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Q5KJSQ8D6YCWXG4R.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "Q5KJSQ8D6YCWXG4R.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Q5KJSQ8D6YCWXG4R.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31675" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Q5KJSQ8D6YCWXG4R.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Q5KJSQ8D6YCWXG4R", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "Q5KJSQ8D6YCWXG4R.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Q5KJSQ8D6YCWXG4R.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "92644" + }, + "appliesTo" : [ ] + }, + "Q5KJSQ8D6YCWXG4R.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Q5KJSQ8D6YCWXG4R.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Q5KJSQ8D6YCWXG4R.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Q5KJSQ8D6YCWXG4R", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "Q5KJSQ8D6YCWXG4R.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Q5KJSQ8D6YCWXG4R.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15860" + }, + "appliesTo" : [ ] + }, + "Q5KJSQ8D6YCWXG4R.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Q5KJSQ8D6YCWXG4R.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q5KJSQ8D6YCWXG4R.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "Q5KJSQ8D6YCWXG4R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q5KJSQ8D6YCWXG4R.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "Q5KJSQ8D6YCWXG4R.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8290000000" + }, + "appliesTo" : [ ] + }, + "Q5KJSQ8D6YCWXG4R.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "Q5KJSQ8D6YCWXG4R.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16025" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q5KJSQ8D6YCWXG4R.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "Q5KJSQ8D6YCWXG4R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q5KJSQ8D6YCWXG4R.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "Q5KJSQ8D6YCWXG4R.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "31999" + }, + "appliesTo" : [ ] + }, + "Q5KJSQ8D6YCWXG4R.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "Q5KJSQ8D6YCWXG4R.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Q5KJSQ8D6YCWXG4R.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "Q5KJSQ8D6YCWXG4R", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q5KJSQ8D6YCWXG4R.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "Q5KJSQ8D6YCWXG4R.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6730000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "J7QRRNJ6GRX8D5SH" : { + "J7QRRNJ6GRX8D5SH.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "J7QRRNJ6GRX8D5SH", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "J7QRRNJ6GRX8D5SH.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "J7QRRNJ6GRX8D5SH.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17893" + }, + "appliesTo" : [ ] + }, + "J7QRRNJ6GRX8D5SH.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "J7QRRNJ6GRX8D5SH.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "J7QRRNJ6GRX8D5SH.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "J7QRRNJ6GRX8D5SH", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "J7QRRNJ6GRX8D5SH.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "J7QRRNJ6GRX8D5SH.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "J7QRRNJ6GRX8D5SH.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "J7QRRNJ6GRX8D5SH", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "J7QRRNJ6GRX8D5SH.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "J7QRRNJ6GRX8D5SH.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4350000000" + }, + "appliesTo" : [ ] + }, + "J7QRRNJ6GRX8D5SH.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "J7QRRNJ6GRX8D5SH.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7618" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "J7QRRNJ6GRX8D5SH.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "J7QRRNJ6GRX8D5SH", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "J7QRRNJ6GRX8D5SH.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "J7QRRNJ6GRX8D5SH.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "20877" + }, + "appliesTo" : [ ] + }, + "J7QRRNJ6GRX8D5SH.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "J7QRRNJ6GRX8D5SH.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "J7QRRNJ6GRX8D5SH.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "J7QRRNJ6GRX8D5SH", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "J7QRRNJ6GRX8D5SH.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "J7QRRNJ6GRX8D5SH.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8440" + }, + "appliesTo" : [ ] + }, + "J7QRRNJ6GRX8D5SH.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "J7QRRNJ6GRX8D5SH.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4890000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "J7QRRNJ6GRX8D5SH.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "J7QRRNJ6GRX8D5SH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J7QRRNJ6GRX8D5SH.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "J7QRRNJ6GRX8D5SH.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6932" + }, + "appliesTo" : [ ] + }, + "J7QRRNJ6GRX8D5SH.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "J7QRRNJ6GRX8D5SH.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "J7QRRNJ6GRX8D5SH.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "J7QRRNJ6GRX8D5SH", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "J7QRRNJ6GRX8D5SH.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "J7QRRNJ6GRX8D5SH.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7116" + }, + "appliesTo" : [ ] + }, + "J7QRRNJ6GRX8D5SH.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "J7QRRNJ6GRX8D5SH.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "J7QRRNJ6GRX8D5SH.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "J7QRRNJ6GRX8D5SH", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "J7QRRNJ6GRX8D5SH.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "J7QRRNJ6GRX8D5SH.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2906" + }, + "appliesTo" : [ ] + }, + "J7QRRNJ6GRX8D5SH.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "J7QRRNJ6GRX8D5SH.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "J7QRRNJ6GRX8D5SH.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "J7QRRNJ6GRX8D5SH", + "effectiveDate" : "2015-05-31T23:59:59Z", + "priceDimensions" : { + "J7QRRNJ6GRX8D5SH.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "J7QRRNJ6GRX8D5SH.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "J7QRRNJ6GRX8D5SH.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "J7QRRNJ6GRX8D5SH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J7QRRNJ6GRX8D5SH.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "J7QRRNJ6GRX8D5SH.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3484" + }, + "appliesTo" : [ ] + }, + "J7QRRNJ6GRX8D5SH.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "J7QRRNJ6GRX8D5SH.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "J7QRRNJ6GRX8D5SH.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "J7QRRNJ6GRX8D5SH", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "J7QRRNJ6GRX8D5SH.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "J7QRRNJ6GRX8D5SH.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "HWHBVKY9RQMK67F9" : { + "HWHBVKY9RQMK67F9.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "HWHBVKY9RQMK67F9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HWHBVKY9RQMK67F9.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "HWHBVKY9RQMK67F9.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8085000000" + }, + "appliesTo" : [ ] + }, + "HWHBVKY9RQMK67F9.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "HWHBVKY9RQMK67F9.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5944" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HWHBVKY9RQMK67F9.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "HWHBVKY9RQMK67F9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HWHBVKY9RQMK67F9.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "HWHBVKY9RQMK67F9.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5549000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "HWHBVKY9RQMK67F9.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "HWHBVKY9RQMK67F9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HWHBVKY9RQMK67F9.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "HWHBVKY9RQMK67F9.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "HWHBVKY9RQMK67F9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "HWHBVKY9RQMK67F9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HWHBVKY9RQMK67F9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "HWHBVKY9RQMK67F9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "HWHBVKY9RQMK67F9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "HWHBVKY9RQMK67F9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23179" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HWHBVKY9RQMK67F9.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "HWHBVKY9RQMK67F9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HWHBVKY9RQMK67F9.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "HWHBVKY9RQMK67F9.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1236000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "HWHBVKY9RQMK67F9.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "HWHBVKY9RQMK67F9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HWHBVKY9RQMK67F9.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "HWHBVKY9RQMK67F9.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12089" + }, + "appliesTo" : [ ] + }, + "HWHBVKY9RQMK67F9.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "HWHBVKY9RQMK67F9.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "HWHBVKY9RQMK67F9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "HWHBVKY9RQMK67F9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HWHBVKY9RQMK67F9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "HWHBVKY9RQMK67F9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10512" + }, + "appliesTo" : [ ] + }, + "HWHBVKY9RQMK67F9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "HWHBVKY9RQMK67F9.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HWHBVKY9RQMK67F9.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "HWHBVKY9RQMK67F9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HWHBVKY9RQMK67F9.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "HWHBVKY9RQMK67F9.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27110" + }, + "appliesTo" : [ ] + }, + "HWHBVKY9RQMK67F9.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "HWHBVKY9RQMK67F9.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "HWHBVKY9RQMK67F9.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "HWHBVKY9RQMK67F9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "HWHBVKY9RQMK67F9.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "HWHBVKY9RQMK67F9.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12788" + }, + "appliesTo" : [ ] + }, + "HWHBVKY9RQMK67F9.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "HWHBVKY9RQMK67F9.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "HWHBVKY9RQMK67F9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "HWHBVKY9RQMK67F9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HWHBVKY9RQMK67F9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "HWHBVKY9RQMK67F9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5168" + }, + "appliesTo" : [ ] + }, + "HWHBVKY9RQMK67F9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "HWHBVKY9RQMK67F9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "HWHBVKY9RQMK67F9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "HWHBVKY9RQMK67F9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HWHBVKY9RQMK67F9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "HWHBVKY9RQMK67F9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11269" + }, + "appliesTo" : [ ] + }, + "HWHBVKY9RQMK67F9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "HWHBVKY9RQMK67F9.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "HWHBVKY9RQMK67F9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "HWHBVKY9RQMK67F9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "HWHBVKY9RQMK67F9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "HWHBVKY9RQMK67F9.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "7VJXKNKUWTYUUJDQ" : { + "7VJXKNKUWTYUUJDQ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "7VJXKNKUWTYUUJDQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7VJXKNKUWTYUUJDQ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "7VJXKNKUWTYUUJDQ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7334" + }, + "appliesTo" : [ ] + }, + "7VJXKNKUWTYUUJDQ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "7VJXKNKUWTYUUJDQ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8370000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7VJXKNKUWTYUUJDQ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "7VJXKNKUWTYUUJDQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7VJXKNKUWTYUUJDQ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "7VJXKNKUWTYUUJDQ.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7VJXKNKUWTYUUJDQ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "7VJXKNKUWTYUUJDQ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "7VJXKNKUWTYUUJDQ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "7VJXKNKUWTYUUJDQ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "7VJXKNKUWTYUUJDQ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "7VJXKNKUWTYUUJDQ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13411" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7VJXKNKUWTYUUJDQ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "7VJXKNKUWTYUUJDQ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7VJXKNKUWTYUUJDQ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "7VJXKNKUWTYUUJDQ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18133" + }, + "appliesTo" : [ ] + }, + "7VJXKNKUWTYUUJDQ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "7VJXKNKUWTYUUJDQ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7VJXKNKUWTYUUJDQ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "7VJXKNKUWTYUUJDQ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "7VJXKNKUWTYUUJDQ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "7VJXKNKUWTYUUJDQ.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6490000000" + }, + "appliesTo" : [ ] + }, + "7VJXKNKUWTYUUJDQ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "7VJXKNKUWTYUUJDQ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17050" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7VJXKNKUWTYUUJDQ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "7VJXKNKUWTYUUJDQ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7VJXKNKUWTYUUJDQ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "7VJXKNKUWTYUUJDQ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14503" + }, + "appliesTo" : [ ] + }, + "7VJXKNKUWTYUUJDQ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "7VJXKNKUWTYUUJDQ.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7VJXKNKUWTYUUJDQ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "7VJXKNKUWTYUUJDQ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "7VJXKNKUWTYUUJDQ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "7VJXKNKUWTYUUJDQ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33215" + }, + "appliesTo" : [ ] + }, + "7VJXKNKUWTYUUJDQ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "7VJXKNKUWTYUUJDQ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7VJXKNKUWTYUUJDQ.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "7VJXKNKUWTYUUJDQ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7VJXKNKUWTYUUJDQ.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "7VJXKNKUWTYUUJDQ.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7VJXKNKUWTYUUJDQ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "7VJXKNKUWTYUUJDQ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7VJXKNKUWTYUUJDQ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "7VJXKNKUWTYUUJDQ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7VJXKNKUWTYUUJDQ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "7VJXKNKUWTYUUJDQ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7VJXKNKUWTYUUJDQ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "7VJXKNKUWTYUUJDQ.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7VJXKNKUWTYUUJDQ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "7VJXKNKUWTYUUJDQ", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7VJXKNKUWTYUUJDQ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "7VJXKNKUWTYUUJDQ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35928" + }, + "appliesTo" : [ ] + }, + "7VJXKNKUWTYUUJDQ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "7VJXKNKUWTYUUJDQ.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7VJXKNKUWTYUUJDQ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "7VJXKNKUWTYUUJDQ", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "7VJXKNKUWTYUUJDQ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "7VJXKNKUWTYUUJDQ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6777" + }, + "appliesTo" : [ ] + }, + "7VJXKNKUWTYUUJDQ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "7VJXKNKUWTYUUJDQ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "ZA2GJ3U6RCX4Q6HE" : { + "ZA2GJ3U6RCX4Q6HE.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ZA2GJ3U6RCX4Q6HE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZA2GJ3U6RCX4Q6HE.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ZA2GJ3U6RCX4Q6HE.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZA2GJ3U6RCX4Q6HE.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ZA2GJ3U6RCX4Q6HE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZA2GJ3U6RCX4Q6HE.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ZA2GJ3U6RCX4Q6HE.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "690" + }, + "appliesTo" : [ ] + }, + "ZA2GJ3U6RCX4Q6HE.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ZA2GJ3U6RCX4Q6HE.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0720000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZA2GJ3U6RCX4Q6HE.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ZA2GJ3U6RCX4Q6HE", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "ZA2GJ3U6RCX4Q6HE.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ZA2GJ3U6RCX4Q6HE.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1160" + }, + "appliesTo" : [ ] + }, + "ZA2GJ3U6RCX4Q6HE.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ZA2GJ3U6RCX4Q6HE.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZA2GJ3U6RCX4Q6HE.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ZA2GJ3U6RCX4Q6HE", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "ZA2GJ3U6RCX4Q6HE.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ZA2GJ3U6RCX4Q6HE.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0480000000" + }, + "appliesTo" : [ ] + }, + "ZA2GJ3U6RCX4Q6HE.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ZA2GJ3U6RCX4Q6HE.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1274" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZA2GJ3U6RCX4Q6HE.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ZA2GJ3U6RCX4Q6HE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZA2GJ3U6RCX4Q6HE.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ZA2GJ3U6RCX4Q6HE.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1410" + }, + "appliesTo" : [ ] + }, + "ZA2GJ3U6RCX4Q6HE.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ZA2GJ3U6RCX4Q6HE.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ZA2GJ3U6RCX4Q6HE.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ZA2GJ3U6RCX4Q6HE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ZA2GJ3U6RCX4Q6HE.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ZA2GJ3U6RCX4Q6HE.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1297" + }, + "appliesTo" : [ ] + }, + "ZA2GJ3U6RCX4Q6HE.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ZA2GJ3U6RCX4Q6HE.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZA2GJ3U6RCX4Q6HE.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "ZA2GJ3U6RCX4Q6HE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZA2GJ3U6RCX4Q6HE.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "ZA2GJ3U6RCX4Q6HE.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZA2GJ3U6RCX4Q6HE.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ZA2GJ3U6RCX4Q6HE", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "ZA2GJ3U6RCX4Q6HE.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ZA2GJ3U6RCX4Q6HE.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ZA2GJ3U6RCX4Q6HE.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ZA2GJ3U6RCX4Q6HE.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2428" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ZA2GJ3U6RCX4Q6HE.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ZA2GJ3U6RCX4Q6HE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZA2GJ3U6RCX4Q6HE.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ZA2GJ3U6RCX4Q6HE.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ZA2GJ3U6RCX4Q6HE.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ZA2GJ3U6RCX4Q6HE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZA2GJ3U6RCX4Q6HE.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ZA2GJ3U6RCX4Q6HE.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2767" + }, + "appliesTo" : [ ] + }, + "ZA2GJ3U6RCX4Q6HE.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ZA2GJ3U6RCX4Q6HE.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ZA2GJ3U6RCX4Q6HE.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ZA2GJ3U6RCX4Q6HE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ZA2GJ3U6RCX4Q6HE.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ZA2GJ3U6RCX4Q6HE.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ZA2GJ3U6RCX4Q6HE.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ZA2GJ3U6RCX4Q6HE", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "ZA2GJ3U6RCX4Q6HE.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ZA2GJ3U6RCX4Q6HE.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "620" + }, + "appliesTo" : [ ] + }, + "ZA2GJ3U6RCX4Q6HE.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ZA2GJ3U6RCX4Q6HE.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "US4KNUGYQKAD8SVF" : { + "US4KNUGYQKAD8SVF.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "US4KNUGYQKAD8SVF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "US4KNUGYQKAD8SVF.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "US4KNUGYQKAD8SVF.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "68301" + }, + "appliesTo" : [ ] + }, + "US4KNUGYQKAD8SVF.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "US4KNUGYQKAD8SVF.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "US4KNUGYQKAD8SVF.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "US4KNUGYQKAD8SVF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "US4KNUGYQKAD8SVF.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "US4KNUGYQKAD8SVF.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34847" + }, + "appliesTo" : [ ] + }, + "US4KNUGYQKAD8SVF.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "US4KNUGYQKAD8SVF.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.9780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "US4KNUGYQKAD8SVF.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "US4KNUGYQKAD8SVF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "US4KNUGYQKAD8SVF.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "US4KNUGYQKAD8SVF.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.1780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "US4KNUGYQKAD8SVF.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "US4KNUGYQKAD8SVF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "US4KNUGYQKAD8SVF.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "US4KNUGYQKAD8SVF.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3230000000" + }, + "appliesTo" : [ ] + }, + "US4KNUGYQKAD8SVF.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "US4KNUGYQKAD8SVF.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "87333" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "US4KNUGYQKAD8SVF.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "US4KNUGYQKAD8SVF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "US4KNUGYQKAD8SVF.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "US4KNUGYQKAD8SVF.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "121854" + }, + "appliesTo" : [ ] + }, + "US4KNUGYQKAD8SVF.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "US4KNUGYQKAD8SVF.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "US4KNUGYQKAD8SVF.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "US4KNUGYQKAD8SVF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "US4KNUGYQKAD8SVF.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "US4KNUGYQKAD8SVF.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "64816" + }, + "appliesTo" : [ ] + }, + "US4KNUGYQKAD8SVF.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "US4KNUGYQKAD8SVF.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.4660000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "US4KNUGYQKAD8SVF.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "US4KNUGYQKAD8SVF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "US4KNUGYQKAD8SVF.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "US4KNUGYQKAD8SVF.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.3540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "US4KNUGYQKAD8SVF.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "US4KNUGYQKAD8SVF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "US4KNUGYQKAD8SVF.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "US4KNUGYQKAD8SVF.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "78598" + }, + "appliesTo" : [ ] + }, + "US4KNUGYQKAD8SVF.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "US4KNUGYQKAD8SVF.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "US4KNUGYQKAD8SVF.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "US4KNUGYQKAD8SVF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "US4KNUGYQKAD8SVF.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "US4KNUGYQKAD8SVF.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.6130000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "US4KNUGYQKAD8SVF.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "US4KNUGYQKAD8SVF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "US4KNUGYQKAD8SVF.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "US4KNUGYQKAD8SVF.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "171172" + }, + "appliesTo" : [ ] + }, + "US4KNUGYQKAD8SVF.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "US4KNUGYQKAD8SVF.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "US4KNUGYQKAD8SVF.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "US4KNUGYQKAD8SVF", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "US4KNUGYQKAD8SVF.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "US4KNUGYQKAD8SVF.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "40101" + }, + "appliesTo" : [ ] + }, + "US4KNUGYQKAD8SVF.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "US4KNUGYQKAD8SVF.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "US4KNUGYQKAD8SVF.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "US4KNUGYQKAD8SVF", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "US4KNUGYQKAD8SVF.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "US4KNUGYQKAD8SVF.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.3270000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "2Q55CNPTGCQPP362" : { + "2Q55CNPTGCQPP362.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "2Q55CNPTGCQPP362", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2Q55CNPTGCQPP362.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "2Q55CNPTGCQPP362.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2111" + }, + "appliesTo" : [ ] + }, + "2Q55CNPTGCQPP362.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "2Q55CNPTGCQPP362.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2Q55CNPTGCQPP362.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "2Q55CNPTGCQPP362", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "2Q55CNPTGCQPP362.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "2Q55CNPTGCQPP362.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2Q55CNPTGCQPP362.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "2Q55CNPTGCQPP362", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2Q55CNPTGCQPP362.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "2Q55CNPTGCQPP362.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2Q55CNPTGCQPP362.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "2Q55CNPTGCQPP362", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "2Q55CNPTGCQPP362.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "2Q55CNPTGCQPP362.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12066" + }, + "appliesTo" : [ ] + }, + "2Q55CNPTGCQPP362.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "2Q55CNPTGCQPP362.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2Q55CNPTGCQPP362.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "2Q55CNPTGCQPP362", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "2Q55CNPTGCQPP362.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "2Q55CNPTGCQPP362.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1710000000" + }, + "appliesTo" : [ ] + }, + "2Q55CNPTGCQPP362.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "2Q55CNPTGCQPP362.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2778" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2Q55CNPTGCQPP362.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "2Q55CNPTGCQPP362", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2Q55CNPTGCQPP362.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "2Q55CNPTGCQPP362.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4182" + }, + "appliesTo" : [ ] + }, + "2Q55CNPTGCQPP362.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "2Q55CNPTGCQPP362.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2Q55CNPTGCQPP362.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "2Q55CNPTGCQPP362", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "2Q55CNPTGCQPP362.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "2Q55CNPTGCQPP362.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5480000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2Q55CNPTGCQPP362.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "2Q55CNPTGCQPP362", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "2Q55CNPTGCQPP362.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "2Q55CNPTGCQPP362.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7270" + }, + "appliesTo" : [ ] + }, + "2Q55CNPTGCQPP362.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "2Q55CNPTGCQPP362.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2Q55CNPTGCQPP362.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "2Q55CNPTGCQPP362", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "2Q55CNPTGCQPP362.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "2Q55CNPTGCQPP362.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10513" + }, + "appliesTo" : [ ] + }, + "2Q55CNPTGCQPP362.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "2Q55CNPTGCQPP362.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2Q55CNPTGCQPP362.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "2Q55CNPTGCQPP362", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "2Q55CNPTGCQPP362.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "2Q55CNPTGCQPP362.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4192" + }, + "appliesTo" : [ ] + }, + "2Q55CNPTGCQPP362.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "2Q55CNPTGCQPP362.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2Q55CNPTGCQPP362.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "2Q55CNPTGCQPP362", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "2Q55CNPTGCQPP362.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "2Q55CNPTGCQPP362.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1640000000" + }, + "appliesTo" : [ ] + }, + "2Q55CNPTGCQPP362.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "2Q55CNPTGCQPP362.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7995" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "NPXGF3ETGHQX3T5Z" : { + "NPXGF3ETGHQX3T5Z.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "NPXGF3ETGHQX3T5Z", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "NPXGF3ETGHQX3T5Z.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "NPXGF3ETGHQX3T5Z.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "465" + }, + "appliesTo" : [ ] + }, + "NPXGF3ETGHQX3T5Z.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "NPXGF3ETGHQX3T5Z.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "NPXGF3ETGHQX3T5Z.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "NPXGF3ETGHQX3T5Z", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "NPXGF3ETGHQX3T5Z.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "NPXGF3ETGHQX3T5Z.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "NPXGF3ETGHQX3T5Z.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "NPXGF3ETGHQX3T5Z", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "NPXGF3ETGHQX3T5Z.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "NPXGF3ETGHQX3T5Z.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "800" + }, + "appliesTo" : [ ] + }, + "NPXGF3ETGHQX3T5Z.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "NPXGF3ETGHQX3T5Z.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "NPXGF3ETGHQX3T5Z.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "NPXGF3ETGHQX3T5Z", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "NPXGF3ETGHQX3T5Z.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "NPXGF3ETGHQX3T5Z.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "NPXGF3ETGHQX3T5Z.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "NPXGF3ETGHQX3T5Z.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "748" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "NPXGF3ETGHQX3T5Z.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "NPXGF3ETGHQX3T5Z", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "NPXGF3ETGHQX3T5Z.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "NPXGF3ETGHQX3T5Z.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.medium reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "NPXGF3ETGHQX3T5Z.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "NPXGF3ETGHQX3T5Z.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1512" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "MV64DNBJGVHEPRZX" : { + "MV64DNBJGVHEPRZX.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "MV64DNBJGVHEPRZX", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "MV64DNBJGVHEPRZX.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "MV64DNBJGVHEPRZX.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14398" + }, + "appliesTo" : [ ] + }, + "MV64DNBJGVHEPRZX.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "MV64DNBJGVHEPRZX.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MV64DNBJGVHEPRZX.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "MV64DNBJGVHEPRZX", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "MV64DNBJGVHEPRZX.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "MV64DNBJGVHEPRZX.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7255" + }, + "appliesTo" : [ ] + }, + "MV64DNBJGVHEPRZX.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "MV64DNBJGVHEPRZX.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MV64DNBJGVHEPRZX.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "MV64DNBJGVHEPRZX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MV64DNBJGVHEPRZX.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "MV64DNBJGVHEPRZX.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15236" + }, + "appliesTo" : [ ] + }, + "MV64DNBJGVHEPRZX.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "MV64DNBJGVHEPRZX.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MV64DNBJGVHEPRZX.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "MV64DNBJGVHEPRZX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MV64DNBJGVHEPRZX.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "MV64DNBJGVHEPRZX.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5446000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "MV64DNBJGVHEPRZX.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "MV64DNBJGVHEPRZX", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "MV64DNBJGVHEPRZX.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "MV64DNBJGVHEPRZX.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37267" + }, + "appliesTo" : [ ] + }, + "MV64DNBJGVHEPRZX.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "MV64DNBJGVHEPRZX.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "MV64DNBJGVHEPRZX.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "MV64DNBJGVHEPRZX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MV64DNBJGVHEPRZX.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "MV64DNBJGVHEPRZX.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.6900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MV64DNBJGVHEPRZX.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "MV64DNBJGVHEPRZX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MV64DNBJGVHEPRZX.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "MV64DNBJGVHEPRZX.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39311" + }, + "appliesTo" : [ ] + }, + "MV64DNBJGVHEPRZX.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "MV64DNBJGVHEPRZX.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "MV64DNBJGVHEPRZX.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "MV64DNBJGVHEPRZX", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "MV64DNBJGVHEPRZX.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "MV64DNBJGVHEPRZX.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7220000000" + }, + "appliesTo" : [ ] + }, + "MV64DNBJGVHEPRZX.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "MV64DNBJGVHEPRZX.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "18969" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "MV64DNBJGVHEPRZX.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "MV64DNBJGVHEPRZX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MV64DNBJGVHEPRZX.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "MV64DNBJGVHEPRZX.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19784" + }, + "appliesTo" : [ ] + }, + "MV64DNBJGVHEPRZX.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "MV64DNBJGVHEPRZX.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7528000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MV64DNBJGVHEPRZX.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "MV64DNBJGVHEPRZX", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "MV64DNBJGVHEPRZX.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "MV64DNBJGVHEPRZX.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4759000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "MV64DNBJGVHEPRZX.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "MV64DNBJGVHEPRZX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MV64DNBJGVHEPRZX.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "MV64DNBJGVHEPRZX.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7682" + }, + "appliesTo" : [ ] + }, + "MV64DNBJGVHEPRZX.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "MV64DNBJGVHEPRZX.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "MV64DNBJGVHEPRZX.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "MV64DNBJGVHEPRZX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "MV64DNBJGVHEPRZX.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "MV64DNBJGVHEPRZX.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.7908000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "U9S9CX6UESN4T4P2" : { + "U9S9CX6UESN4T4P2.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "U9S9CX6UESN4T4P2", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "U9S9CX6UESN4T4P2.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "U9S9CX6UESN4T4P2.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8244" + }, + "appliesTo" : [ ] + }, + "U9S9CX6UESN4T4P2.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "U9S9CX6UESN4T4P2.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9410000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "U9S9CX6UESN4T4P2.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "U9S9CX6UESN4T4P2", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "U9S9CX6UESN4T4P2.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "U9S9CX6UESN4T4P2.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16454" + }, + "appliesTo" : [ ] + }, + "U9S9CX6UESN4T4P2.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "U9S9CX6UESN4T4P2.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "U9S9CX6UESN4T4P2.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "U9S9CX6UESN4T4P2", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "U9S9CX6UESN4T4P2.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "U9S9CX6UESN4T4P2.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "U9S9CX6UESN4T4P2.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "U9S9CX6UESN4T4P2", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "U9S9CX6UESN4T4P2.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "U9S9CX6UESN4T4P2.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8930000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "U9S9CX6UESN4T4P2.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "U9S9CX6UESN4T4P2", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "U9S9CX6UESN4T4P2.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "U9S9CX6UESN4T4P2.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23914" + }, + "appliesTo" : [ ] + }, + "U9S9CX6UESN4T4P2.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "U9S9CX6UESN4T4P2.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "U9S9CX6UESN4T4P2.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "U9S9CX6UESN4T4P2", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "U9S9CX6UESN4T4P2.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "U9S9CX6UESN4T4P2.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9310000000" + }, + "appliesTo" : [ ] + }, + "U9S9CX6UESN4T4P2.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "U9S9CX6UESN4T4P2.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24473" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "U9S9CX6UESN4T4P2.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "U9S9CX6UESN4T4P2", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "U9S9CX6UESN4T4P2.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "U9S9CX6UESN4T4P2.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "U9S9CX6UESN4T4P2.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "U9S9CX6UESN4T4P2.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "47614" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "U9S9CX6UESN4T4P2.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "U9S9CX6UESN4T4P2", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "U9S9CX6UESN4T4P2.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "U9S9CX6UESN4T4P2.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "48851" + }, + "appliesTo" : [ ] + }, + "U9S9CX6UESN4T4P2.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "U9S9CX6UESN4T4P2.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "U9S9CX6UESN4T4P2.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "U9S9CX6UESN4T4P2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U9S9CX6UESN4T4P2.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "U9S9CX6UESN4T4P2.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16700" + }, + "appliesTo" : [ ] + }, + "U9S9CX6UESN4T4P2.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "U9S9CX6UESN4T4P2.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "U9S9CX6UESN4T4P2.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "U9S9CX6UESN4T4P2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U9S9CX6UESN4T4P2.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "U9S9CX6UESN4T4P2.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.9220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "U9S9CX6UESN4T4P2.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "U9S9CX6UESN4T4P2", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "U9S9CX6UESN4T4P2.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "U9S9CX6UESN4T4P2.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8370" + }, + "appliesTo" : [ ] + }, + "U9S9CX6UESN4T4P2.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "U9S9CX6UESN4T4P2.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9550000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "KDCQC5EHG2SRP6TU" : { + "KDCQC5EHG2SRP6TU.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "KDCQC5EHG2SRP6TU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "KDCQC5EHG2SRP6TU.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "KDCQC5EHG2SRP6TU.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19162" + }, + "appliesTo" : [ ] + }, + "KDCQC5EHG2SRP6TU.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "KDCQC5EHG2SRP6TU.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KDCQC5EHG2SRP6TU.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "KDCQC5EHG2SRP6TU", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "KDCQC5EHG2SRP6TU.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "KDCQC5EHG2SRP6TU.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35310" + }, + "appliesTo" : [ ] + }, + "KDCQC5EHG2SRP6TU.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "KDCQC5EHG2SRP6TU.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "KDCQC5EHG2SRP6TU.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "KDCQC5EHG2SRP6TU", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "KDCQC5EHG2SRP6TU.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "KDCQC5EHG2SRP6TU.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7720000000" + }, + "appliesTo" : [ ] + }, + "KDCQC5EHG2SRP6TU.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "KDCQC5EHG2SRP6TU.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17276" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "KDCQC5EHG2SRP6TU.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "KDCQC5EHG2SRP6TU", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "KDCQC5EHG2SRP6TU.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "KDCQC5EHG2SRP6TU.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "KDCQC5EHG2SRP6TU.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "KDCQC5EHG2SRP6TU", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "KDCQC5EHG2SRP6TU.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "KDCQC5EHG2SRP6TU.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11389" + }, + "appliesTo" : [ ] + }, + "KDCQC5EHG2SRP6TU.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "KDCQC5EHG2SRP6TU.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), hs1.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9320000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "EWR4DWGXX5YW4B4M" : { + "EWR4DWGXX5YW4B4M.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "EWR4DWGXX5YW4B4M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EWR4DWGXX5YW4B4M.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "EWR4DWGXX5YW4B4M.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "EWR4DWGXX5YW4B4M.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "EWR4DWGXX5YW4B4M.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "27526" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "EWR4DWGXX5YW4B4M.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "EWR4DWGXX5YW4B4M", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "EWR4DWGXX5YW4B4M.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "EWR4DWGXX5YW4B4M.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3547000000" + }, + "appliesTo" : [ ] + }, + "EWR4DWGXX5YW4B4M.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "EWR4DWGXX5YW4B4M.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35601" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "EWR4DWGXX5YW4B4M.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "EWR4DWGXX5YW4B4M", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "EWR4DWGXX5YW4B4M.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "EWR4DWGXX5YW4B4M.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.8083000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "EWR4DWGXX5YW4B4M.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "EWR4DWGXX5YW4B4M", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "EWR4DWGXX5YW4B4M.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "EWR4DWGXX5YW4B4M.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "25617" + }, + "appliesTo" : [ ] + }, + "EWR4DWGXX5YW4B4M.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "EWR4DWGXX5YW4B4M.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EWR4DWGXX5YW4B4M.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "EWR4DWGXX5YW4B4M", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "EWR4DWGXX5YW4B4M.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "EWR4DWGXX5YW4B4M.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "EWR4DWGXX5YW4B4M.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "EWR4DWGXX5YW4B4M.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "70552" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "EWR4DWGXX5YW4B4M.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "EWR4DWGXX5YW4B4M", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "EWR4DWGXX5YW4B4M.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "EWR4DWGXX5YW4B4M.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "65263" + }, + "appliesTo" : [ ] + }, + "EWR4DWGXX5YW4B4M.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "EWR4DWGXX5YW4B4M.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "EWR4DWGXX5YW4B4M.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "EWR4DWGXX5YW4B4M", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "EWR4DWGXX5YW4B4M.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "EWR4DWGXX5YW4B4M.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6340000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "EWR4DWGXX5YW4B4M.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "EWR4DWGXX5YW4B4M", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "EWR4DWGXX5YW4B4M.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "EWR4DWGXX5YW4B4M.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33480" + }, + "appliesTo" : [ ] + }, + "EWR4DWGXX5YW4B4M.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "EWR4DWGXX5YW4B4M.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "EWR4DWGXX5YW4B4M.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "EWR4DWGXX5YW4B4M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EWR4DWGXX5YW4B4M.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "EWR4DWGXX5YW4B4M.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2615000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "EWR4DWGXX5YW4B4M.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "EWR4DWGXX5YW4B4M", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "EWR4DWGXX5YW4B4M.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "EWR4DWGXX5YW4B4M.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13912" + }, + "appliesTo" : [ ] + }, + "EWR4DWGXX5YW4B4M.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "EWR4DWGXX5YW4B4M.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5882000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "EWR4DWGXX5YW4B4M.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "EWR4DWGXX5YW4B4M", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "EWR4DWGXX5YW4B4M.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "EWR4DWGXX5YW4B4M.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.0281000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "EWR4DWGXX5YW4B4M.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "EWR4DWGXX5YW4B4M", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "EWR4DWGXX5YW4B4M.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "EWR4DWGXX5YW4B4M.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12939" + }, + "appliesTo" : [ ] + }, + "EWR4DWGXX5YW4B4M.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "EWR4DWGXX5YW4B4M.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "XX2TZABY6QFVXNY9" : { + "XX2TZABY6QFVXNY9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XX2TZABY6QFVXNY9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XX2TZABY6QFVXNY9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XX2TZABY6QFVXNY9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2361" + }, + "appliesTo" : [ ] + }, + "XX2TZABY6QFVXNY9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XX2TZABY6QFVXNY9.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XX2TZABY6QFVXNY9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XX2TZABY6QFVXNY9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XX2TZABY6QFVXNY9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XX2TZABY6QFVXNY9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1042" + }, + "appliesTo" : [ ] + }, + "XX2TZABY6QFVXNY9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XX2TZABY6QFVXNY9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XX2TZABY6QFVXNY9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XX2TZABY6QFVXNY9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XX2TZABY6QFVXNY9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XX2TZABY6QFVXNY9.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XX2TZABY6QFVXNY9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XX2TZABY6QFVXNY9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XX2TZABY6QFVXNY9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XX2TZABY6QFVXNY9.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1360000000" + }, + "appliesTo" : [ ] + }, + "XX2TZABY6QFVXNY9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XX2TZABY6QFVXNY9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1582" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XX2TZABY6QFVXNY9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XX2TZABY6QFVXNY9", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XX2TZABY6QFVXNY9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XX2TZABY6QFVXNY9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4855" + }, + "appliesTo" : [ ] + }, + "XX2TZABY6QFVXNY9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XX2TZABY6QFVXNY9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "AGHHWVT6KDRBWTWP" : { + "AGHHWVT6KDRBWTWP.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "AGHHWVT6KDRBWTWP", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AGHHWVT6KDRBWTWP.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "AGHHWVT6KDRBWTWP.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "AGHHWVT6KDRBWTWP.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "AGHHWVT6KDRBWTWP.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AGHHWVT6KDRBWTWP.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "AGHHWVT6KDRBWTWP", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AGHHWVT6KDRBWTWP.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "AGHHWVT6KDRBWTWP.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0017000000" + }, + "appliesTo" : [ ] + }, + "AGHHWVT6KDRBWTWP.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "AGHHWVT6KDRBWTWP.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AGHHWVT6KDRBWTWP.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "AGHHWVT6KDRBWTWP", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AGHHWVT6KDRBWTWP.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "AGHHWVT6KDRBWTWP.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0029000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "AGHHWVT6KDRBWTWP.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "AGHHWVT6KDRBWTWP", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AGHHWVT6KDRBWTWP.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "AGHHWVT6KDRBWTWP.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "35" + }, + "appliesTo" : [ ] + }, + "AGHHWVT6KDRBWTWP.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "AGHHWVT6KDRBWTWP.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0013000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "AGHHWVT6KDRBWTWP.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "AGHHWVT6KDRBWTWP", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AGHHWVT6KDRBWTWP.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "AGHHWVT6KDRBWTWP.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "57" + }, + "appliesTo" : [ ] + }, + "AGHHWVT6KDRBWTWP.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "AGHHWVT6KDRBWTWP.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "AGHHWVT6KDRBWTWP.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "AGHHWVT6KDRBWTWP", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AGHHWVT6KDRBWTWP.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "AGHHWVT6KDRBWTWP.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30" + }, + "appliesTo" : [ ] + }, + "AGHHWVT6KDRBWTWP.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "AGHHWVT6KDRBWTWP.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0012000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "AGHHWVT6KDRBWTWP.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "AGHHWVT6KDRBWTWP", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AGHHWVT6KDRBWTWP.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "AGHHWVT6KDRBWTWP.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0036000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "AGHHWVT6KDRBWTWP.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "AGHHWVT6KDRBWTWP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AGHHWVT6KDRBWTWP.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "AGHHWVT6KDRBWTWP.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34" + }, + "appliesTo" : [ ] + }, + "AGHHWVT6KDRBWTWP.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "AGHHWVT6KDRBWTWP.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "AGHHWVT6KDRBWTWP.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "AGHHWVT6KDRBWTWP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AGHHWVT6KDRBWTWP.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "AGHHWVT6KDRBWTWP.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0041000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "AGHHWVT6KDRBWTWP.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "AGHHWVT6KDRBWTWP", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AGHHWVT6KDRBWTWP.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "AGHHWVT6KDRBWTWP.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "69" + }, + "appliesTo" : [ ] + }, + "AGHHWVT6KDRBWTWP.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "AGHHWVT6KDRBWTWP.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "AGHHWVT6KDRBWTWP.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "AGHHWVT6KDRBWTWP", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "AGHHWVT6KDRBWTWP.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "AGHHWVT6KDRBWTWP.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17" + }, + "appliesTo" : [ ] + }, + "AGHHWVT6KDRBWTWP.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "AGHHWVT6KDRBWTWP.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0020000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "AGHHWVT6KDRBWTWP.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "AGHHWVT6KDRBWTWP", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "AGHHWVT6KDRBWTWP.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "AGHHWVT6KDRBWTWP.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), t2.nano reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0025000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "T9TYJWD5FYY22EY9" : { + "T9TYJWD5FYY22EY9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "T9TYJWD5FYY22EY9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "T9TYJWD5FYY22EY9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "T9TYJWD5FYY22EY9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "86325" + }, + "appliesTo" : [ ] + }, + "T9TYJWD5FYY22EY9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "T9TYJWD5FYY22EY9.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.2850000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "T9TYJWD5FYY22EY9.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "T9TYJWD5FYY22EY9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "T9TYJWD5FYY22EY9.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "T9TYJWD5FYY22EY9.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "174663" + }, + "appliesTo" : [ ] + }, + "T9TYJWD5FYY22EY9.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "T9TYJWD5FYY22EY9.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "T9TYJWD5FYY22EY9.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "T9TYJWD5FYY22EY9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "T9TYJWD5FYY22EY9.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "T9TYJWD5FYY22EY9.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.7150000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "T9TYJWD5FYY22EY9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "T9TYJWD5FYY22EY9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "T9TYJWD5FYY22EY9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "T9TYJWD5FYY22EY9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "T9TYJWD5FYY22EY9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "T9TYJWD5FYY22EY9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "171714" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "T9TYJWD5FYY22EY9.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "T9TYJWD5FYY22EY9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "T9TYJWD5FYY22EY9.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "T9TYJWD5FYY22EY9.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.6170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "T9TYJWD5FYY22EY9.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "T9TYJWD5FYY22EY9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "T9TYJWD5FYY22EY9.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "T9TYJWD5FYY22EY9.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "61413" + }, + "appliesTo" : [ ] + }, + "T9TYJWD5FYY22EY9.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "T9TYJWD5FYY22EY9.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "T9TYJWD5FYY22EY9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "T9TYJWD5FYY22EY9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "T9TYJWD5FYY22EY9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "T9TYJWD5FYY22EY9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.4470000000" + }, + "appliesTo" : [ ] + }, + "T9TYJWD5FYY22EY9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "T9TYJWD5FYY22EY9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30196" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "T9TYJWD5FYY22EY9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "T9TYJWD5FYY22EY9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "T9TYJWD5FYY22EY9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "T9TYJWD5FYY22EY9.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.9400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "T9TYJWD5FYY22EY9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "T9TYJWD5FYY22EY9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "T9TYJWD5FYY22EY9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "T9TYJWD5FYY22EY9.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "T9TYJWD5FYY22EY9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "T9TYJWD5FYY22EY9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "60231" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "T9TYJWD5FYY22EY9.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "T9TYJWD5FYY22EY9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "T9TYJWD5FYY22EY9.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "T9TYJWD5FYY22EY9.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30799" + }, + "appliesTo" : [ ] + }, + "T9TYJWD5FYY22EY9.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "T9TYJWD5FYY22EY9.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.5160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "T9TYJWD5FYY22EY9.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "T9TYJWD5FYY22EY9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "T9TYJWD5FYY22EY9.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "T9TYJWD5FYY22EY9.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.0840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "T9TYJWD5FYY22EY9.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "T9TYJWD5FYY22EY9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "T9TYJWD5FYY22EY9.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "T9TYJWD5FYY22EY9.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "87511" + }, + "appliesTo" : [ ] + }, + "T9TYJWD5FYY22EY9.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "T9TYJWD5FYY22EY9.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.3300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "6WKTRGBBJD2C2RZE" : { + "6WKTRGBBJD2C2RZE.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "6WKTRGBBJD2C2RZE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6WKTRGBBJD2C2RZE.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "6WKTRGBBJD2C2RZE.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "6WKTRGBBJD2C2RZE.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "6WKTRGBBJD2C2RZE.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1633" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6WKTRGBBJD2C2RZE.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "6WKTRGBBJD2C2RZE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6WKTRGBBJD2C2RZE.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "6WKTRGBBJD2C2RZE.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6WKTRGBBJD2C2RZE.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "6WKTRGBBJD2C2RZE", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "6WKTRGBBJD2C2RZE.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "6WKTRGBBJD2C2RZE.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3484" + }, + "appliesTo" : [ ] + }, + "6WKTRGBBJD2C2RZE.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "6WKTRGBBJD2C2RZE.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6WKTRGBBJD2C2RZE.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "6WKTRGBBJD2C2RZE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6WKTRGBBJD2C2RZE.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "6WKTRGBBJD2C2RZE.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6WKTRGBBJD2C2RZE.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "6WKTRGBBJD2C2RZE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6WKTRGBBJD2C2RZE.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "6WKTRGBBJD2C2RZE.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "6WKTRGBBJD2C2RZE.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "6WKTRGBBJD2C2RZE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6WKTRGBBJD2C2RZE.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "6WKTRGBBJD2C2RZE.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "6WKTRGBBJD2C2RZE.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "6WKTRGBBJD2C2RZE.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3857" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "6WKTRGBBJD2C2RZE.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "6WKTRGBBJD2C2RZE", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "6WKTRGBBJD2C2RZE.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "6WKTRGBBJD2C2RZE.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "489" + }, + "appliesTo" : [ ] + }, + "6WKTRGBBJD2C2RZE.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "6WKTRGBBJD2C2RZE.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6WKTRGBBJD2C2RZE.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "6WKTRGBBJD2C2RZE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6WKTRGBBJD2C2RZE.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "6WKTRGBBJD2C2RZE.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "6WKTRGBBJD2C2RZE.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "6WKTRGBBJD2C2RZE", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "6WKTRGBBJD2C2RZE.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "6WKTRGBBJD2C2RZE.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "565" + }, + "appliesTo" : [ ] + }, + "6WKTRGBBJD2C2RZE.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "6WKTRGBBJD2C2RZE.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1250000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "6WKTRGBBJD2C2RZE.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "6WKTRGBBJD2C2RZE", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "6WKTRGBBJD2C2RZE.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "6WKTRGBBJD2C2RZE.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1483" + }, + "appliesTo" : [ ] + }, + "6WKTRGBBJD2C2RZE.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "6WKTRGBBJD2C2RZE.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "6WKTRGBBJD2C2RZE.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "6WKTRGBBJD2C2RZE", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "6WKTRGBBJD2C2RZE.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "6WKTRGBBJD2C2RZE.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1015" + }, + "appliesTo" : [ ] + }, + "6WKTRGBBJD2C2RZE.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "6WKTRGBBJD2C2RZE.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "6WKTRGBBJD2C2RZE.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "6WKTRGBBJD2C2RZE", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "6WKTRGBBJD2C2RZE.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "6WKTRGBBJD2C2RZE.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1164" + }, + "appliesTo" : [ ] + }, + "6WKTRGBBJD2C2RZE.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "6WKTRGBBJD2C2RZE.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "ABJ9HJ6JXJ4MY26U" : { + "ABJ9HJ6JXJ4MY26U.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "ABJ9HJ6JXJ4MY26U", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "ABJ9HJ6JXJ4MY26U.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "ABJ9HJ6JXJ4MY26U.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "33412" + }, + "appliesTo" : [ ] + }, + "ABJ9HJ6JXJ4MY26U.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "ABJ9HJ6JXJ4MY26U.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ABJ9HJ6JXJ4MY26U.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "ABJ9HJ6JXJ4MY26U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ABJ9HJ6JXJ4MY26U.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "ABJ9HJ6JXJ4MY26U.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.6780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ABJ9HJ6JXJ4MY26U.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "ABJ9HJ6JXJ4MY26U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ABJ9HJ6JXJ4MY26U.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "ABJ9HJ6JXJ4MY26U.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8840000000" + }, + "appliesTo" : [ ] + }, + "ABJ9HJ6JXJ4MY26U.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "ABJ9HJ6JXJ4MY26U.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34025" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ABJ9HJ6JXJ4MY26U.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "ABJ9HJ6JXJ4MY26U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ABJ9HJ6JXJ4MY26U.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "ABJ9HJ6JXJ4MY26U.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.8200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "ABJ9HJ6JXJ4MY26U.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "ABJ9HJ6JXJ4MY26U", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "ABJ9HJ6JXJ4MY26U.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "ABJ9HJ6JXJ4MY26U.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "67869" + }, + "appliesTo" : [ ] + }, + "ABJ9HJ6JXJ4MY26U.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "ABJ9HJ6JXJ4MY26U.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ABJ9HJ6JXJ4MY26U.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "ABJ9HJ6JXJ4MY26U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ABJ9HJ6JXJ4MY26U.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "ABJ9HJ6JXJ4MY26U.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "ABJ9HJ6JXJ4MY26U.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "ABJ9HJ6JXJ4MY26U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ABJ9HJ6JXJ4MY26U.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "ABJ9HJ6JXJ4MY26U.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "96628" + }, + "appliesTo" : [ ] + }, + "ABJ9HJ6JXJ4MY26U.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "ABJ9HJ6JXJ4MY26U.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.6770000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "ABJ9HJ6JXJ4MY26U.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "ABJ9HJ6JXJ4MY26U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ABJ9HJ6JXJ4MY26U.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "ABJ9HJ6JXJ4MY26U.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "195267" + }, + "appliesTo" : [ ] + }, + "ABJ9HJ6JXJ4MY26U.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "ABJ9HJ6JXJ4MY26U.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "ABJ9HJ6JXJ4MY26U.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "ABJ9HJ6JXJ4MY26U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ABJ9HJ6JXJ4MY26U.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "ABJ9HJ6JXJ4MY26U.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "97819" + }, + "appliesTo" : [ ] + }, + "ABJ9HJ6JXJ4MY26U.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "ABJ9HJ6JXJ4MY26U.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7220000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "ABJ9HJ6JXJ4MY26U.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "ABJ9HJ6JXJ4MY26U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ABJ9HJ6JXJ4MY26U.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "ABJ9HJ6JXJ4MY26U.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "ABJ9HJ6JXJ4MY26U.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "ABJ9HJ6JXJ4MY26U.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "66668" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ABJ9HJ6JXJ4MY26U.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "ABJ9HJ6JXJ4MY26U", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "ABJ9HJ6JXJ4MY26U.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "ABJ9HJ6JXJ4MY26U.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "192283" + }, + "appliesTo" : [ ] + }, + "ABJ9HJ6JXJ4MY26U.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "ABJ9HJ6JXJ4MY26U.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "ABJ9HJ6JXJ4MY26U.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "ABJ9HJ6JXJ4MY26U", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "ABJ9HJ6JXJ4MY26U.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "ABJ9HJ6JXJ4MY26U.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "YHTMJU9RK3XB4R35" : { + "YHTMJU9RK3XB4R35.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YHTMJU9RK3XB4R35", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YHTMJU9RK3XB4R35.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YHTMJU9RK3XB4R35.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12243" + }, + "appliesTo" : [ ] + }, + "YHTMJU9RK3XB4R35.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YHTMJU9RK3XB4R35.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YHTMJU9RK3XB4R35.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "YHTMJU9RK3XB4R35", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YHTMJU9RK3XB4R35.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "YHTMJU9RK3XB4R35.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YHTMJU9RK3XB4R35.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "YHTMJU9RK3XB4R35", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YHTMJU9RK3XB4R35.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "YHTMJU9RK3XB4R35.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YHTMJU9RK3XB4R35.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "YHTMJU9RK3XB4R35", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YHTMJU9RK3XB4R35.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "YHTMJU9RK3XB4R35.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6643" + }, + "appliesTo" : [ ] + }, + "YHTMJU9RK3XB4R35.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "YHTMJU9RK3XB4R35.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YHTMJU9RK3XB4R35.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "YHTMJU9RK3XB4R35", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YHTMJU9RK3XB4R35.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "YHTMJU9RK3XB4R35.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7416" + }, + "appliesTo" : [ ] + }, + "YHTMJU9RK3XB4R35.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "YHTMJU9RK3XB4R35.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YHTMJU9RK3XB4R35.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "YHTMJU9RK3XB4R35", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YHTMJU9RK3XB4R35.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "YHTMJU9RK3XB4R35.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "YHTMJU9RK3XB4R35.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "YHTMJU9RK3XB4R35.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14540" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YHTMJU9RK3XB4R35.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YHTMJU9RK3XB4R35", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "YHTMJU9RK3XB4R35.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YHTMJU9RK3XB4R35.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2995" + }, + "appliesTo" : [ ] + }, + "YHTMJU9RK3XB4R35.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YHTMJU9RK3XB4R35.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YHTMJU9RK3XB4R35.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YHTMJU9RK3XB4R35", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YHTMJU9RK3XB4R35.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YHTMJU9RK3XB4R35.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YHTMJU9RK3XB4R35.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "YHTMJU9RK3XB4R35", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YHTMJU9RK3XB4R35.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "YHTMJU9RK3XB4R35.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8100000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YHTMJU9RK3XB4R35.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "YHTMJU9RK3XB4R35", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YHTMJU9RK3XB4R35.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "YHTMJU9RK3XB4R35.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3417" + }, + "appliesTo" : [ ] + }, + "YHTMJU9RK3XB4R35.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "YHTMJU9RK3XB4R35.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3830000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YHTMJU9RK3XB4R35.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YHTMJU9RK3XB4R35", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "YHTMJU9RK3XB4R35.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YHTMJU9RK3XB4R35.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5814" + }, + "appliesTo" : [ ] + }, + "YHTMJU9RK3XB4R35.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YHTMJU9RK3XB4R35.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YHTMJU9RK3XB4R35.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YHTMJU9RK3XB4R35", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "YHTMJU9RK3XB4R35.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YHTMJU9RK3XB4R35.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6495" + }, + "appliesTo" : [ ] + }, + "YHTMJU9RK3XB4R35.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YHTMJU9RK3XB4R35.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "2R3TZFKRGVGPMMC9" : { + "2R3TZFKRGVGPMMC9.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "2R3TZFKRGVGPMMC9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2R3TZFKRGVGPMMC9.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "2R3TZFKRGVGPMMC9.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.6350000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2R3TZFKRGVGPMMC9.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "2R3TZFKRGVGPMMC9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2R3TZFKRGVGPMMC9.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "2R3TZFKRGVGPMMC9.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11072" + }, + "appliesTo" : [ ] + }, + "2R3TZFKRGVGPMMC9.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "2R3TZFKRGVGPMMC9.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2570000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2R3TZFKRGVGPMMC9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "2R3TZFKRGVGPMMC9", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "2R3TZFKRGVGPMMC9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "2R3TZFKRGVGPMMC9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9759" + }, + "appliesTo" : [ ] + }, + "2R3TZFKRGVGPMMC9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "2R3TZFKRGVGPMMC9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "2R3TZFKRGVGPMMC9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "2R3TZFKRGVGPMMC9", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "2R3TZFKRGVGPMMC9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "2R3TZFKRGVGPMMC9.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3200000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2R3TZFKRGVGPMMC9.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "2R3TZFKRGVGPMMC9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "2R3TZFKRGVGPMMC9.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "2R3TZFKRGVGPMMC9.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "21682" + }, + "appliesTo" : [ ] + }, + "2R3TZFKRGVGPMMC9.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "2R3TZFKRGVGPMMC9.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2R3TZFKRGVGPMMC9.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "2R3TZFKRGVGPMMC9", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "2R3TZFKRGVGPMMC9.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "2R3TZFKRGVGPMMC9.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "24799" + }, + "appliesTo" : [ ] + }, + "2R3TZFKRGVGPMMC9.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "2R3TZFKRGVGPMMC9.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "2R3TZFKRGVGPMMC9.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "2R3TZFKRGVGPMMC9", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "2R3TZFKRGVGPMMC9.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "2R3TZFKRGVGPMMC9.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0260000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "2R3TZFKRGVGPMMC9.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "2R3TZFKRGVGPMMC9", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "2R3TZFKRGVGPMMC9.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "2R3TZFKRGVGPMMC9.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "2R3TZFKRGVGPMMC9.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "2R3TZFKRGVGPMMC9.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "48714" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "2R3TZFKRGVGPMMC9.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "2R3TZFKRGVGPMMC9", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "2R3TZFKRGVGPMMC9.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "2R3TZFKRGVGPMMC9.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.5640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "2R3TZFKRGVGPMMC9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "2R3TZFKRGVGPMMC9", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "2R3TZFKRGVGPMMC9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "2R3TZFKRGVGPMMC9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "36385" + }, + "appliesTo" : [ ] + }, + "2R3TZFKRGVGPMMC9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "2R3TZFKRGVGPMMC9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2R3TZFKRGVGPMMC9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "2R3TZFKRGVGPMMC9", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "2R3TZFKRGVGPMMC9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "2R3TZFKRGVGPMMC9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19108" + }, + "appliesTo" : [ ] + }, + "2R3TZFKRGVGPMMC9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "2R3TZFKRGVGPMMC9.6QCMYABX3D.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "2R3TZFKRGVGPMMC9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "2R3TZFKRGVGPMMC9", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "2R3TZFKRGVGPMMC9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "2R3TZFKRGVGPMMC9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19170" + }, + "appliesTo" : [ ] + }, + "2R3TZFKRGVGPMMC9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "2R3TZFKRGVGPMMC9.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "RSYDZDVYE5V36ECZ" : { + "RSYDZDVYE5V36ECZ.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "RSYDZDVYE5V36ECZ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "RSYDZDVYE5V36ECZ.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "RSYDZDVYE5V36ECZ.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7990000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RSYDZDVYE5V36ECZ.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "RSYDZDVYE5V36ECZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RSYDZDVYE5V36ECZ.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "RSYDZDVYE5V36ECZ.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11731" + }, + "appliesTo" : [ ] + }, + "RSYDZDVYE5V36ECZ.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "RSYDZDVYE5V36ECZ.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "RSYDZDVYE5V36ECZ.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "RSYDZDVYE5V36ECZ", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "RSYDZDVYE5V36ECZ.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "RSYDZDVYE5V36ECZ.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2920000000" + }, + "appliesTo" : [ ] + }, + "RSYDZDVYE5V36ECZ.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "RSYDZDVYE5V36ECZ.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10180" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RSYDZDVYE5V36ECZ.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "RSYDZDVYE5V36ECZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RSYDZDVYE5V36ECZ.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "RSYDZDVYE5V36ECZ.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7454" + }, + "appliesTo" : [ ] + }, + "RSYDZDVYE5V36ECZ.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "RSYDZDVYE5V36ECZ.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RSYDZDVYE5V36ECZ.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "RSYDZDVYE5V36ECZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RSYDZDVYE5V36ECZ.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "RSYDZDVYE5V36ECZ.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5832" + }, + "appliesTo" : [ ] + }, + "RSYDZDVYE5V36ECZ.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "RSYDZDVYE5V36ECZ.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RSYDZDVYE5V36ECZ.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "RSYDZDVYE5V36ECZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RSYDZDVYE5V36ECZ.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "RSYDZDVYE5V36ECZ.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3816" + }, + "appliesTo" : [ ] + }, + "RSYDZDVYE5V36ECZ.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "RSYDZDVYE5V36ECZ.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "RSYDZDVYE5V36ECZ.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "RSYDZDVYE5V36ECZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RSYDZDVYE5V36ECZ.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "RSYDZDVYE5V36ECZ.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3831" + }, + "appliesTo" : [ ] + }, + "RSYDZDVYE5V36ECZ.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "RSYDZDVYE5V36ECZ.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4300000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "RSYDZDVYE5V36ECZ.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "RSYDZDVYE5V36ECZ", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "RSYDZDVYE5V36ECZ.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "RSYDZDVYE5V36ECZ.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17467" + }, + "appliesTo" : [ ] + }, + "RSYDZDVYE5V36ECZ.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "RSYDZDVYE5V36ECZ.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "RSYDZDVYE5V36ECZ.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "RSYDZDVYE5V36ECZ", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "RSYDZDVYE5V36ECZ.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "RSYDZDVYE5V36ECZ.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9090000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "RSYDZDVYE5V36ECZ.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "RSYDZDVYE5V36ECZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RSYDZDVYE5V36ECZ.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "RSYDZDVYE5V36ECZ.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "RSYDZDVYE5V36ECZ.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "RSYDZDVYE5V36ECZ", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "RSYDZDVYE5V36ECZ.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "RSYDZDVYE5V36ECZ.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6512" + }, + "appliesTo" : [ ] + }, + "RSYDZDVYE5V36ECZ.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "RSYDZDVYE5V36ECZ.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "M5Q2FGMPJ4Q6PA2G" : { + "M5Q2FGMPJ4Q6PA2G.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "M5Q2FGMPJ4Q6PA2G", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M5Q2FGMPJ4Q6PA2G.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "M5Q2FGMPJ4Q6PA2G.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5950000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "M5Q2FGMPJ4Q6PA2G.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "M5Q2FGMPJ4Q6PA2G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M5Q2FGMPJ4Q6PA2G.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "M5Q2FGMPJ4Q6PA2G.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "39780" + }, + "appliesTo" : [ ] + }, + "M5Q2FGMPJ4Q6PA2G.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "M5Q2FGMPJ4Q6PA2G.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "M5Q2FGMPJ4Q6PA2G.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "M5Q2FGMPJ4Q6PA2G", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M5Q2FGMPJ4Q6PA2G.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "M5Q2FGMPJ4Q6PA2G.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "29995" + }, + "appliesTo" : [ ] + }, + "M5Q2FGMPJ4Q6PA2G.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "M5Q2FGMPJ4Q6PA2G.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "M5Q2FGMPJ4Q6PA2G.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "M5Q2FGMPJ4Q6PA2G", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M5Q2FGMPJ4Q6PA2G.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "M5Q2FGMPJ4Q6PA2G.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "62207" + }, + "appliesTo" : [ ] + }, + "M5Q2FGMPJ4Q6PA2G.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "M5Q2FGMPJ4Q6PA2G.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "M5Q2FGMPJ4Q6PA2G.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "M5Q2FGMPJ4Q6PA2G", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "M5Q2FGMPJ4Q6PA2G.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "M5Q2FGMPJ4Q6PA2G.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "52452" + }, + "appliesTo" : [ ] + }, + "M5Q2FGMPJ4Q6PA2G.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "M5Q2FGMPJ4Q6PA2G.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "M5Q2FGMPJ4Q6PA2G.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "M5Q2FGMPJ4Q6PA2G", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M5Q2FGMPJ4Q6PA2G.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "M5Q2FGMPJ4Q6PA2G.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.2740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "M5Q2FGMPJ4Q6PA2G.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "M5Q2FGMPJ4Q6PA2G", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M5Q2FGMPJ4Q6PA2G.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "M5Q2FGMPJ4Q6PA2G.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34740" + }, + "appliesTo" : [ ] + }, + "M5Q2FGMPJ4Q6PA2G.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "M5Q2FGMPJ4Q6PA2G.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "M5Q2FGMPJ4Q6PA2G.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "M5Q2FGMPJ4Q6PA2G", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "M5Q2FGMPJ4Q6PA2G.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "M5Q2FGMPJ4Q6PA2G.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "26083" + }, + "appliesTo" : [ ] + }, + "M5Q2FGMPJ4Q6PA2G.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "M5Q2FGMPJ4Q6PA2G.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.1230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "M5Q2FGMPJ4Q6PA2G.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "M5Q2FGMPJ4Q6PA2G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M5Q2FGMPJ4Q6PA2G.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "M5Q2FGMPJ4Q6PA2G.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.8560000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "M5Q2FGMPJ4Q6PA2G.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "M5Q2FGMPJ4Q6PA2G", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "M5Q2FGMPJ4Q6PA2G.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "M5Q2FGMPJ4Q6PA2G.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19715" + }, + "appliesTo" : [ ] + }, + "M5Q2FGMPJ4Q6PA2G.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "M5Q2FGMPJ4Q6PA2G.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.3810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "M5Q2FGMPJ4Q6PA2G.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "M5Q2FGMPJ4Q6PA2G", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "M5Q2FGMPJ4Q6PA2G.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "M5Q2FGMPJ4Q6PA2G.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.0870000000" + }, + "appliesTo" : [ ] + }, + "M5Q2FGMPJ4Q6PA2G.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "M5Q2FGMPJ4Q6PA2G.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17143" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "M5Q2FGMPJ4Q6PA2G.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "M5Q2FGMPJ4Q6PA2G", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "M5Q2FGMPJ4Q6PA2G.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "M5Q2FGMPJ4Q6PA2G.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.2400000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "7NEQ4VTJKJUPEVYG" : { + "7NEQ4VTJKJUPEVYG.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "7NEQ4VTJKJUPEVYG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7NEQ4VTJKJUPEVYG.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "7NEQ4VTJKJUPEVYG.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7731" + }, + "appliesTo" : [ ] + }, + "7NEQ4VTJKJUPEVYG.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "7NEQ4VTJKJUPEVYG.38NPMPTW36.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7NEQ4VTJKJUPEVYG.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "7NEQ4VTJKJUPEVYG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7NEQ4VTJKJUPEVYG.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "7NEQ4VTJKJUPEVYG.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "14567" + }, + "appliesTo" : [ ] + }, + "7NEQ4VTJKJUPEVYG.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "7NEQ4VTJKJUPEVYG.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7NEQ4VTJKJUPEVYG.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "7NEQ4VTJKJUPEVYG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7NEQ4VTJKJUPEVYG.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "7NEQ4VTJKJUPEVYG.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3350000000" + }, + "appliesTo" : [ ] + }, + "7NEQ4VTJKJUPEVYG.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "7NEQ4VTJKJUPEVYG.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8814" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7NEQ4VTJKJUPEVYG.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "7NEQ4VTJKJUPEVYG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7NEQ4VTJKJUPEVYG.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "7NEQ4VTJKJUPEVYG.BPH4J8HBKS.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7NEQ4VTJKJUPEVYG.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "7NEQ4VTJKJUPEVYG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7NEQ4VTJKJUPEVYG.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "7NEQ4VTJKJUPEVYG.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17280" + }, + "appliesTo" : [ ] + }, + "7NEQ4VTJKJUPEVYG.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "7NEQ4VTJKJUPEVYG.MZU6U2429S.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7NEQ4VTJKJUPEVYG.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "7NEQ4VTJKJUPEVYG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7NEQ4VTJKJUPEVYG.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "7NEQ4VTJKJUPEVYG.7NE97W5U4E.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.0180000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "7NEQ4VTJKJUPEVYG.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "7NEQ4VTJKJUPEVYG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7NEQ4VTJKJUPEVYG.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "7NEQ4VTJKJUPEVYG.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4286" + }, + "appliesTo" : [ ] + }, + "7NEQ4VTJKJUPEVYG.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "7NEQ4VTJKJUPEVYG.CUZHX8X6JH.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "7NEQ4VTJKJUPEVYG.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "7NEQ4VTJKJUPEVYG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7NEQ4VTJKJUPEVYG.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "7NEQ4VTJKJUPEVYG.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3729" + }, + "appliesTo" : [ ] + }, + "7NEQ4VTJKJUPEVYG.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "7NEQ4VTJKJUPEVYG.HU7G6KETJZ.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4190000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "7NEQ4VTJKJUPEVYG.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "7NEQ4VTJKJUPEVYG", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "7NEQ4VTJKJUPEVYG.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "7NEQ4VTJKJUPEVYG.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7254" + }, + "appliesTo" : [ ] + }, + "7NEQ4VTJKJUPEVYG.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "7NEQ4VTJKJUPEVYG.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "7NEQ4VTJKJUPEVYG.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "7NEQ4VTJKJUPEVYG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "7NEQ4VTJKJUPEVYG.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "7NEQ4VTJKJUPEVYG.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8346" + }, + "appliesTo" : [ ] + }, + "7NEQ4VTJKJUPEVYG.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "7NEQ4VTJKJUPEVYG.VJWZNREJX2.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "7NEQ4VTJKJUPEVYG.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "7NEQ4VTJKJUPEVYG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7NEQ4VTJKJUPEVYG.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "7NEQ4VTJKJUPEVYG.4NA7Y494T4.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "7NEQ4VTJKJUPEVYG.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "7NEQ4VTJKJUPEVYG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "7NEQ4VTJKJUPEVYG.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "7NEQ4VTJKJUPEVYG.Z2E3P23VKM.6YS6EN2CT7", + "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "E3A2FAQ7KZXK2BME" : { + "E3A2FAQ7KZXK2BME.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "E3A2FAQ7KZXK2BME", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "E3A2FAQ7KZXK2BME.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "E3A2FAQ7KZXK2BME.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "135571" + }, + "appliesTo" : [ ] + }, + "E3A2FAQ7KZXK2BME.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "E3A2FAQ7KZXK2BME.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "E3A2FAQ7KZXK2BME.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "E3A2FAQ7KZXK2BME", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "E3A2FAQ7KZXK2BME.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "E3A2FAQ7KZXK2BME.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "13.3360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "E3A2FAQ7KZXK2BME.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "E3A2FAQ7KZXK2BME", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "E3A2FAQ7KZXK2BME.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "E3A2FAQ7KZXK2BME.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.5680000000" + }, + "appliesTo" : [ ] + }, + "E3A2FAQ7KZXK2BME.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "E3A2FAQ7KZXK2BME.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "172594" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "E3A2FAQ7KZXK2BME.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "E3A2FAQ7KZXK2BME", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "E3A2FAQ7KZXK2BME.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "E3A2FAQ7KZXK2BME.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "130027" + }, + "appliesTo" : [ ] + }, + "E3A2FAQ7KZXK2BME.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "E3A2FAQ7KZXK2BME.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "E3A2FAQ7KZXK2BME.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "E3A2FAQ7KZXK2BME", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "E3A2FAQ7KZXK2BME.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "E3A2FAQ7KZXK2BME.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "333139" + }, + "appliesTo" : [ ] + }, + "E3A2FAQ7KZXK2BME.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "E3A2FAQ7KZXK2BME.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "E3A2FAQ7KZXK2BME.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "E3A2FAQ7KZXK2BME", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "E3A2FAQ7KZXK2BME.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "E3A2FAQ7KZXK2BME.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "12.9820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "E3A2FAQ7KZXK2BME.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "E3A2FAQ7KZXK2BME", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "E3A2FAQ7KZXK2BME.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "E3A2FAQ7KZXK2BME.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "343868" + }, + "appliesTo" : [ ] + }, + "E3A2FAQ7KZXK2BME.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "E3A2FAQ7KZXK2BME.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "E3A2FAQ7KZXK2BME.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "E3A2FAQ7KZXK2BME", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "E3A2FAQ7KZXK2BME.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "E3A2FAQ7KZXK2BME.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.4040000000" + }, + "appliesTo" : [ ] + }, + "E3A2FAQ7KZXK2BME.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "E3A2FAQ7KZXK2BME.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "168291" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "E3A2FAQ7KZXK2BME.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "E3A2FAQ7KZXK2BME", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "E3A2FAQ7KZXK2BME.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "E3A2FAQ7KZXK2BME.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.8230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "E3A2FAQ7KZXK2BME.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "E3A2FAQ7KZXK2BME", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "E3A2FAQ7KZXK2BME.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "E3A2FAQ7KZXK2BME.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "68219" + }, + "appliesTo" : [ ] + }, + "E3A2FAQ7KZXK2BME.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "E3A2FAQ7KZXK2BME.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.7880000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "E3A2FAQ7KZXK2BME.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "E3A2FAQ7KZXK2BME", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "E3A2FAQ7KZXK2BME.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "E3A2FAQ7KZXK2BME.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "65391" + }, + "appliesTo" : [ ] + }, + "E3A2FAQ7KZXK2BME.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "E3A2FAQ7KZXK2BME.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4650000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "E3A2FAQ7KZXK2BME.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "E3A2FAQ7KZXK2BME", + "effectiveDate" : "2017-06-30T23:59:59Z", + "priceDimensions" : { + "E3A2FAQ7KZXK2BME.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "E3A2FAQ7KZXK2BME.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.1450000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "53K4ZCP8C6KM9F2C" : { + "53K4ZCP8C6KM9F2C.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "53K4ZCP8C6KM9F2C", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "53K4ZCP8C6KM9F2C.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "53K4ZCP8C6KM9F2C.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1271" + }, + "appliesTo" : [ ] + }, + "53K4ZCP8C6KM9F2C.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "53K4ZCP8C6KM9F2C.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0780000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "53K4ZCP8C6KM9F2C.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "53K4ZCP8C6KM9F2C", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "53K4ZCP8C6KM9F2C.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "53K4ZCP8C6KM9F2C.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "53K4ZCP8C6KM9F2C.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "53K4ZCP8C6KM9F2C.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1919" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "53K4ZCP8C6KM9F2C.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "53K4ZCP8C6KM9F2C", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "53K4ZCP8C6KM9F2C.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "53K4ZCP8C6KM9F2C.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2610000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "53K4ZCP8C6KM9F2C.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "53K4ZCP8C6KM9F2C", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "53K4ZCP8C6KM9F2C.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "53K4ZCP8C6KM9F2C.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3644" + }, + "appliesTo" : [ ] + }, + "53K4ZCP8C6KM9F2C.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "53K4ZCP8C6KM9F2C.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0750000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "53K4ZCP8C6KM9F2C.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "53K4ZCP8C6KM9F2C", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "53K4ZCP8C6KM9F2C.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "53K4ZCP8C6KM9F2C.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "53K4ZCP8C6KM9F2C.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "53K4ZCP8C6KM9F2C", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "53K4ZCP8C6KM9F2C.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "53K4ZCP8C6KM9F2C.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4122" + }, + "appliesTo" : [ ] + }, + "53K4ZCP8C6KM9F2C.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "53K4ZCP8C6KM9F2C.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "53K4ZCP8C6KM9F2C.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "53K4ZCP8C6KM9F2C", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "53K4ZCP8C6KM9F2C.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "53K4ZCP8C6KM9F2C.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5502" + }, + "appliesTo" : [ ] + }, + "53K4ZCP8C6KM9F2C.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "53K4ZCP8C6KM9F2C.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "53K4ZCP8C6KM9F2C.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "53K4ZCP8C6KM9F2C", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "53K4ZCP8C6KM9F2C.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "53K4ZCP8C6KM9F2C.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2631" + }, + "appliesTo" : [ ] + }, + "53K4ZCP8C6KM9F2C.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "53K4ZCP8C6KM9F2C.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), r3.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0670000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "96UUST8GZ7QZZ2Z3" : { + "96UUST8GZ7QZZ2Z3.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "96UUST8GZ7QZZ2Z3", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "96UUST8GZ7QZZ2Z3.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "96UUST8GZ7QZZ2Z3.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "66107" + }, + "appliesTo" : [ ] + }, + "96UUST8GZ7QZZ2Z3.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "96UUST8GZ7QZZ2Z3.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.5470000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "96UUST8GZ7QZZ2Z3.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "96UUST8GZ7QZZ2Z3", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "96UUST8GZ7QZZ2Z3.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "96UUST8GZ7QZZ2Z3.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "131931" + }, + "appliesTo" : [ ] + }, + "96UUST8GZ7QZZ2Z3.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "96UUST8GZ7QZZ2Z3.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "96UUST8GZ7QZZ2Z3.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "96UUST8GZ7QZZ2Z3", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "96UUST8GZ7QZZ2Z3.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "96UUST8GZ7QZZ2Z3.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.3690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "96UUST8GZ7QZZ2Z3.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "96UUST8GZ7QZZ2Z3", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "96UUST8GZ7QZZ2Z3.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "96UUST8GZ7QZZ2Z3.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.1790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "96UUST8GZ7QZZ2Z3.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "96UUST8GZ7QZZ2Z3", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "96UUST8GZ7QZZ2Z3.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "96UUST8GZ7QZZ2Z3.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "391617" + }, + "appliesTo" : [ ] + }, + "96UUST8GZ7QZZ2Z3.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "96UUST8GZ7QZZ2Z3.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "96UUST8GZ7QZZ2Z3.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "96UUST8GZ7QZZ2Z3", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "96UUST8GZ7QZZ2Z3.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "96UUST8GZ7QZZ2Z3.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "192790" + }, + "appliesTo" : [ ] + }, + "96UUST8GZ7QZZ2Z3.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "96UUST8GZ7QZZ2Z3.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.3360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "96UUST8GZ7QZZ2Z3.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "96UUST8GZ7QZZ2Z3", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "96UUST8GZ7QZZ2Z3.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "96UUST8GZ7QZZ2Z3.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.4650000000" + }, + "appliesTo" : [ ] + }, + "96UUST8GZ7QZZ2Z3.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "96UUST8GZ7QZZ2Z3.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "196192" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "96UUST8GZ7QZZ2Z3.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "96UUST8GZ7QZZ2Z3", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "96UUST8GZ7QZZ2Z3.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "96UUST8GZ7QZZ2Z3.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "383688" + }, + "appliesTo" : [ ] + }, + "96UUST8GZ7QZZ2Z3.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "96UUST8GZ7QZZ2Z3.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "96UUST8GZ7QZZ2Z3.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "96UUST8GZ7QZZ2Z3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "96UUST8GZ7QZZ2Z3.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "96UUST8GZ7QZZ2Z3.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "134016" + }, + "appliesTo" : [ ] + }, + "96UUST8GZ7QZZ2Z3.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "96UUST8GZ7QZZ2Z3.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "96UUST8GZ7QZZ2Z3.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "96UUST8GZ7QZZ2Z3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "96UUST8GZ7QZZ2Z3.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "96UUST8GZ7QZZ2Z3.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "67171" + }, + "appliesTo" : [ ] + }, + "96UUST8GZ7QZZ2Z3.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "96UUST8GZ7QZZ2Z3.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "7.6680000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "96UUST8GZ7QZZ2Z3.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "96UUST8GZ7QZZ2Z3", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "96UUST8GZ7QZZ2Z3.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "96UUST8GZ7QZZ2Z3.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "15.4290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "UEMM3EBWG9B8QGPK" : { + "UEMM3EBWG9B8QGPK.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "UEMM3EBWG9B8QGPK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "UEMM3EBWG9B8QGPK.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "UEMM3EBWG9B8QGPK.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.9936000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "UEMM3EBWG9B8QGPK.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "UEMM3EBWG9B8QGPK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "UEMM3EBWG9B8QGPK.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "UEMM3EBWG9B8QGPK.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10512" + }, + "appliesTo" : [ ] + }, + "UEMM3EBWG9B8QGPK.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "UEMM3EBWG9B8QGPK.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "UEMM3EBWG9B8QGPK.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "UEMM3EBWG9B8QGPK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "UEMM3EBWG9B8QGPK.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "UEMM3EBWG9B8QGPK.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4600000000" + }, + "appliesTo" : [ ] + }, + "UEMM3EBWG9B8QGPK.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "UEMM3EBWG9B8QGPK.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12089" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "UEMM3EBWG9B8QGPK.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "UEMM3EBWG9B8QGPK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "UEMM3EBWG9B8QGPK.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "UEMM3EBWG9B8QGPK.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19763" + }, + "appliesTo" : [ ] + }, + "UEMM3EBWG9B8QGPK.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "UEMM3EBWG9B8QGPK.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "UEMM3EBWG9B8QGPK.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "UEMM3EBWG9B8QGPK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "UEMM3EBWG9B8QGPK.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "UEMM3EBWG9B8QGPK.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10130" + }, + "appliesTo" : [ ] + }, + "UEMM3EBWG9B8QGPK.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "UEMM3EBWG9B8QGPK.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "UEMM3EBWG9B8QGPK.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "UEMM3EBWG9B8QGPK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UEMM3EBWG9B8QGPK.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "UEMM3EBWG9B8QGPK.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5944" + }, + "appliesTo" : [ ] + }, + "UEMM3EBWG9B8QGPK.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "UEMM3EBWG9B8QGPK.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6785000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "UEMM3EBWG9B8QGPK.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "UEMM3EBWG9B8QGPK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "UEMM3EBWG9B8QGPK.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "UEMM3EBWG9B8QGPK.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.2390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "UEMM3EBWG9B8QGPK.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "UEMM3EBWG9B8QGPK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UEMM3EBWG9B8QGPK.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "UEMM3EBWG9B8QGPK.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4249000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "UEMM3EBWG9B8QGPK.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "UEMM3EBWG9B8QGPK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "UEMM3EBWG9B8QGPK.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "UEMM3EBWG9B8QGPK.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "23694" + }, + "appliesTo" : [ ] + }, + "UEMM3EBWG9B8QGPK.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "UEMM3EBWG9B8QGPK.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "UEMM3EBWG9B8QGPK.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "UEMM3EBWG9B8QGPK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "UEMM3EBWG9B8QGPK.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "UEMM3EBWG9B8QGPK.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5168" + }, + "appliesTo" : [ ] + }, + "UEMM3EBWG9B8QGPK.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "UEMM3EBWG9B8QGPK.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "UEMM3EBWG9B8QGPK.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "UEMM3EBWG9B8QGPK", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "UEMM3EBWG9B8QGPK.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "UEMM3EBWG9B8QGPK.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8640000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "UEMM3EBWG9B8QGPK.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "UEMM3EBWG9B8QGPK", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "UEMM3EBWG9B8QGPK.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "UEMM3EBWG9B8QGPK.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "UEMM3EBWG9B8QGPK.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "UEMM3EBWG9B8QGPK.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11650" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + } + }, + "SYFUF8QKH77BHGHX" : { + "SYFUF8QKH77BHGHX.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "SYFUF8QKH77BHGHX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SYFUF8QKH77BHGHX.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "SYFUF8QKH77BHGHX.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "433" + }, + "appliesTo" : [ ] + }, + "SYFUF8QKH77BHGHX.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "SYFUF8QKH77BHGHX.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0160000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "SYFUF8QKH77BHGHX.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "SYFUF8QKH77BHGHX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SYFUF8QKH77BHGHX.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "SYFUF8QKH77BHGHX.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "815" + }, + "appliesTo" : [ ] + }, + "SYFUF8QKH77BHGHX.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "SYFUF8QKH77BHGHX.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SYFUF8QKH77BHGHX.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "SYFUF8QKH77BHGHX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SYFUF8QKH77BHGHX.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "SYFUF8QKH77BHGHX.6QCMYABX3D.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "SYFUF8QKH77BHGHX.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "SYFUF8QKH77BHGHX.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "438" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "SYFUF8QKH77BHGHX.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "SYFUF8QKH77BHGHX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SYFUF8QKH77BHGHX.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "SYFUF8QKH77BHGHX.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0540000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SYFUF8QKH77BHGHX.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "SYFUF8QKH77BHGHX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SYFUF8QKH77BHGHX.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "SYFUF8QKH77BHGHX.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "SYFUF8QKH77BHGHX.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "SYFUF8QKH77BHGHX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "SYFUF8QKH77BHGHX.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "SYFUF8QKH77BHGHX.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows BYOL (Amazon VPC), c5.large reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0260000000" + }, + "appliesTo" : [ ] + }, + "SYFUF8QKH77BHGHX.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "SYFUF8QKH77BHGHX.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "223" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "35AEEWH98DECPC35" : { + "35AEEWH98DECPC35.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "35AEEWH98DECPC35", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "35AEEWH98DECPC35.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "35AEEWH98DECPC35.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "876" + }, + "appliesTo" : [ ] + }, + "35AEEWH98DECPC35.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "35AEEWH98DECPC35.6QCMYABX3D.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "35AEEWH98DECPC35.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "35AEEWH98DECPC35", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "35AEEWH98DECPC35.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "35AEEWH98DECPC35.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "447" + }, + "appliesTo" : [ ] + }, + "35AEEWH98DECPC35.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "35AEEWH98DECPC35.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "35AEEWH98DECPC35.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "35AEEWH98DECPC35", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "35AEEWH98DECPC35.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "35AEEWH98DECPC35.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "999" + }, + "appliesTo" : [ ] + }, + "35AEEWH98DECPC35.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "35AEEWH98DECPC35.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0380000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "35AEEWH98DECPC35.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "35AEEWH98DECPC35", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "35AEEWH98DECPC35.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "35AEEWH98DECPC35.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1629" + }, + "appliesTo" : [ ] + }, + "35AEEWH98DECPC35.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "35AEEWH98DECPC35.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "35AEEWH98DECPC35.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "35AEEWH98DECPC35", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "35AEEWH98DECPC35.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "35AEEWH98DECPC35.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1230000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "35AEEWH98DECPC35.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "35AEEWH98DECPC35", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "35AEEWH98DECPC35.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "35AEEWH98DECPC35.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "867" + }, + "appliesTo" : [ ] + }, + "35AEEWH98DECPC35.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "35AEEWH98DECPC35.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0330000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "35AEEWH98DECPC35.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "35AEEWH98DECPC35", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "35AEEWH98DECPC35.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "35AEEWH98DECPC35.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1957" + }, + "appliesTo" : [ ] + }, + "35AEEWH98DECPC35.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "35AEEWH98DECPC35.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "35AEEWH98DECPC35.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "35AEEWH98DECPC35", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "35AEEWH98DECPC35.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "35AEEWH98DECPC35.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "514" + }, + "appliesTo" : [ ] + }, + "35AEEWH98DECPC35.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "35AEEWH98DECPC35.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0590000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "35AEEWH98DECPC35.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "35AEEWH98DECPC35", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "35AEEWH98DECPC35.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "35AEEWH98DECPC35.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "35AEEWH98DECPC35.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "35AEEWH98DECPC35", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "35AEEWH98DECPC35.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "35AEEWH98DECPC35.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0820000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "35AEEWH98DECPC35.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "35AEEWH98DECPC35", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "35AEEWH98DECPC35.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "35AEEWH98DECPC35.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1007" + }, + "appliesTo" : [ ] + }, + "35AEEWH98DECPC35.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "35AEEWH98DECPC35.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "35AEEWH98DECPC35.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "35AEEWH98DECPC35", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "35AEEWH98DECPC35.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "35AEEWH98DECPC35.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "CBEVSDJQW44MTAH9" : { + "CBEVSDJQW44MTAH9.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "CBEVSDJQW44MTAH9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CBEVSDJQW44MTAH9.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "CBEVSDJQW44MTAH9.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2003" + }, + "appliesTo" : [ ] + }, + "CBEVSDJQW44MTAH9.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "CBEVSDJQW44MTAH9.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2287000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CBEVSDJQW44MTAH9.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "CBEVSDJQW44MTAH9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CBEVSDJQW44MTAH9.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "CBEVSDJQW44MTAH9.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10155" + }, + "appliesTo" : [ ] + }, + "CBEVSDJQW44MTAH9.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "CBEVSDJQW44MTAH9.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CBEVSDJQW44MTAH9.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "CBEVSDJQW44MTAH9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CBEVSDJQW44MTAH9.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "CBEVSDJQW44MTAH9.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5113" + }, + "appliesTo" : [ ] + }, + "CBEVSDJQW44MTAH9.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "CBEVSDJQW44MTAH9.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1945000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "CBEVSDJQW44MTAH9.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "CBEVSDJQW44MTAH9", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "CBEVSDJQW44MTAH9.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "CBEVSDJQW44MTAH9.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "9597" + }, + "appliesTo" : [ ] + }, + "CBEVSDJQW44MTAH9.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "CBEVSDJQW44MTAH9.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CBEVSDJQW44MTAH9.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "CBEVSDJQW44MTAH9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CBEVSDJQW44MTAH9.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "CBEVSDJQW44MTAH9.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4675000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CBEVSDJQW44MTAH9.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "CBEVSDJQW44MTAH9", + "effectiveDate" : "2016-10-31T23:59:59Z", + "priceDimensions" : { + "CBEVSDJQW44MTAH9.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "CBEVSDJQW44MTAH9.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4891" + }, + "appliesTo" : [ ] + }, + "CBEVSDJQW44MTAH9.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "CBEVSDJQW44MTAH9.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CBEVSDJQW44MTAH9.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "CBEVSDJQW44MTAH9", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "CBEVSDJQW44MTAH9.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "CBEVSDJQW44MTAH9.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2150000000" + }, + "appliesTo" : [ ] + }, + "CBEVSDJQW44MTAH9.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "CBEVSDJQW44MTAH9.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1887" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "CBEVSDJQW44MTAH9.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "CBEVSDJQW44MTAH9", + "effectiveDate" : "2017-03-31T23:59:59Z", + "priceDimensions" : { + "CBEVSDJQW44MTAH9.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "CBEVSDJQW44MTAH9.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3743" + }, + "appliesTo" : [ ] + }, + "CBEVSDJQW44MTAH9.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "CBEVSDJQW44MTAH9.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "CBEVSDJQW44MTAH9.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "CBEVSDJQW44MTAH9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CBEVSDJQW44MTAH9.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "CBEVSDJQW44MTAH9.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3998000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "CBEVSDJQW44MTAH9.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "CBEVSDJQW44MTAH9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CBEVSDJQW44MTAH9.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "CBEVSDJQW44MTAH9.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3809000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "CBEVSDJQW44MTAH9.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "CBEVSDJQW44MTAH9", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "CBEVSDJQW44MTAH9.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "CBEVSDJQW44MTAH9.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3971" + }, + "appliesTo" : [ ] + }, + "CBEVSDJQW44MTAH9.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "CBEVSDJQW44MTAH9.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "CBEVSDJQW44MTAH9.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "CBEVSDJQW44MTAH9", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "CBEVSDJQW44MTAH9.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "CBEVSDJQW44MTAH9.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4398000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + } + }, + "Q9SS9CE4RXPCX5KG" : { + "Q9SS9CE4RXPCX5KG.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "Q9SS9CE4RXPCX5KG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q9SS9CE4RXPCX5KG.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "Q9SS9CE4RXPCX5KG.VJWZNREJX2.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "Q9SS9CE4RXPCX5KG.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "Q9SS9CE4RXPCX5KG.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2014" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Q9SS9CE4RXPCX5KG.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "Q9SS9CE4RXPCX5KG", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "Q9SS9CE4RXPCX5KG.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "Q9SS9CE4RXPCX5KG.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "888" + }, + "appliesTo" : [ ] + }, + "Q9SS9CE4RXPCX5KG.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "Q9SS9CE4RXPCX5KG.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1010000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q9SS9CE4RXPCX5KG.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "Q9SS9CE4RXPCX5KG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Q9SS9CE4RXPCX5KG.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "Q9SS9CE4RXPCX5KG.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2116" + }, + "appliesTo" : [ ] + }, + "Q9SS9CE4RXPCX5KG.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "Q9SS9CE4RXPCX5KG.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0810000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q9SS9CE4RXPCX5KG.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "Q9SS9CE4RXPCX5KG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Q9SS9CE4RXPCX5KG.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "Q9SS9CE4RXPCX5KG.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4146" + }, + "appliesTo" : [ ] + }, + "Q9SS9CE4RXPCX5KG.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "Q9SS9CE4RXPCX5KG.MZU6U2429S.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "Q9SS9CE4RXPCX5KG.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "Q9SS9CE4RXPCX5KG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Q9SS9CE4RXPCX5KG.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "Q9SS9CE4RXPCX5KG.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Q9SS9CE4RXPCX5KG.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "Q9SS9CE4RXPCX5KG", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "Q9SS9CE4RXPCX5KG.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "Q9SS9CE4RXPCX5KG.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1028" + }, + "appliesTo" : [ ] + }, + "Q9SS9CE4RXPCX5KG.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "Q9SS9CE4RXPCX5KG.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q9SS9CE4RXPCX5KG.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "Q9SS9CE4RXPCX5KG", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "Q9SS9CE4RXPCX5KG.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "Q9SS9CE4RXPCX5KG.7NE97W5U4E.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2460000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Q9SS9CE4RXPCX5KG.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "Q9SS9CE4RXPCX5KG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Q9SS9CE4RXPCX5KG.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "Q9SS9CE4RXPCX5KG.4NA7Y494T4.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2140000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "Q9SS9CE4RXPCX5KG.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "Q9SS9CE4RXPCX5KG", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "Q9SS9CE4RXPCX5KG.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "Q9SS9CE4RXPCX5KG.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1845" + }, + "appliesTo" : [ ] + }, + "Q9SS9CE4RXPCX5KG.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "Q9SS9CE4RXPCX5KG.38NPMPTW36.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "Q9SS9CE4RXPCX5KG.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "Q9SS9CE4RXPCX5KG", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "Q9SS9CE4RXPCX5KG.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "Q9SS9CE4RXPCX5KG.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1740000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "Q9SS9CE4RXPCX5KG.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "Q9SS9CE4RXPCX5KG", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "Q9SS9CE4RXPCX5KG.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "Q9SS9CE4RXPCX5KG.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3468" + }, + "appliesTo" : [ ] + }, + "Q9SS9CE4RXPCX5KG.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "Q9SS9CE4RXPCX5KG.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "Q9SS9CE4RXPCX5KG.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "Q9SS9CE4RXPCX5KG", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "Q9SS9CE4RXPCX5KG.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "Q9SS9CE4RXPCX5KG.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1741" + }, + "appliesTo" : [ ] + }, + "Q9SS9CE4RXPCX5KG.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "Q9SS9CE4RXPCX5KG.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + } + }, + "JEV4RPZQUJDFUUG5" : { + "JEV4RPZQUJDFUUG5.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "JEV4RPZQUJDFUUG5", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "JEV4RPZQUJDFUUG5.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "JEV4RPZQUJDFUUG5.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8130000000" + }, + "appliesTo" : [ ] + }, + "JEV4RPZQUJDFUUG5.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "JEV4RPZQUJDFUUG5.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "13216" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "JEV4RPZQUJDFUUG5.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "JEV4RPZQUJDFUUG5", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "JEV4RPZQUJDFUUG5.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "JEV4RPZQUJDFUUG5.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "JEV4RPZQUJDFUUG5.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "JEV4RPZQUJDFUUG5.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "19928" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JEV4RPZQUJDFUUG5.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "JEV4RPZQUJDFUUG5", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "JEV4RPZQUJDFUUG5.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "JEV4RPZQUJDFUUG5.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "56075" + }, + "appliesTo" : [ ] + }, + "JEV4RPZQUJDFUUG5.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "JEV4RPZQUJDFUUG5.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "JEV4RPZQUJDFUUG5.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "JEV4RPZQUJDFUUG5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JEV4RPZQUJDFUUG5.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "JEV4RPZQUJDFUUG5.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "32004" + }, + "appliesTo" : [ ] + }, + "JEV4RPZQUJDFUUG5.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "JEV4RPZQUJDFUUG5.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "JEV4RPZQUJDFUUG5.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "JEV4RPZQUJDFUUG5", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "JEV4RPZQUJDFUUG5.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "JEV4RPZQUJDFUUG5.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.7170000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "JEV4RPZQUJDFUUG5.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "JEV4RPZQUJDFUUG5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JEV4RPZQUJDFUUG5.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "JEV4RPZQUJDFUUG5.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.8430000000" + }, + "appliesTo" : [ ] + }, + "JEV4RPZQUJDFUUG5.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "JEV4RPZQUJDFUUG5.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "16147" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "JEV4RPZQUJDFUUG5.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "JEV4RPZQUJDFUUG5", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "JEV4RPZQUJDFUUG5.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "JEV4RPZQUJDFUUG5.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.7690000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "JEV4RPZQUJDFUUG5.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "JEV4RPZQUJDFUUG5", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "JEV4RPZQUJDFUUG5.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "JEV4RPZQUJDFUUG5.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "JEV4RPZQUJDFUUG5.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "JEV4RPZQUJDFUUG5.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "50018" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "JEV4RPZQUJDFUUG5.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "JEV4RPZQUJDFUUG5", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "JEV4RPZQUJDFUUG5.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "JEV4RPZQUJDFUUG5.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.5500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "JEV4RPZQUJDFUUG5.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "JEV4RPZQUJDFUUG5", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "JEV4RPZQUJDFUUG5.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "JEV4RPZQUJDFUUG5.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "37181" + }, + "appliesTo" : [ ] + }, + "JEV4RPZQUJDFUUG5.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "JEV4RPZQUJDFUUG5.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7630000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "JEV4RPZQUJDFUUG5.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "JEV4RPZQUJDFUUG5", + "effectiveDate" : "2015-12-31T23:59:59Z", + "priceDimensions" : { + "JEV4RPZQUJDFUUG5.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "JEV4RPZQUJDFUUG5.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "34653" + }, + "appliesTo" : [ ] + }, + "JEV4RPZQUJDFUUG5.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "JEV4RPZQUJDFUUG5.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "XKP8XXFGKBFRSGFX" : { + "XKP8XXFGKBFRSGFX.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "XKP8XXFGKBFRSGFX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XKP8XXFGKBFRSGFX.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "XKP8XXFGKBFRSGFX.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1152" + }, + "appliesTo" : [ ] + }, + "XKP8XXFGKBFRSGFX.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "XKP8XXFGKBFRSGFX.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XKP8XXFGKBFRSGFX.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "XKP8XXFGKBFRSGFX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XKP8XXFGKBFRSGFX.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "XKP8XXFGKBFRSGFX.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "XKP8XXFGKBFRSGFX.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "XKP8XXFGKBFRSGFX.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3482" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XKP8XXFGKBFRSGFX.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "XKP8XXFGKBFRSGFX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XKP8XXFGKBFRSGFX.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "XKP8XXFGKBFRSGFX.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6593" + }, + "appliesTo" : [ ] + }, + "XKP8XXFGKBFRSGFX.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "XKP8XXFGKBFRSGFX.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XKP8XXFGKBFRSGFX.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "XKP8XXFGKBFRSGFX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XKP8XXFGKBFRSGFX.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "XKP8XXFGKBFRSGFX.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2829" + }, + "appliesTo" : [ ] + }, + "XKP8XXFGKBFRSGFX.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "XKP8XXFGKBFRSGFX.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "XKP8XXFGKBFRSGFX.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "XKP8XXFGKBFRSGFX", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "XKP8XXFGKBFRSGFX.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "XKP8XXFGKBFRSGFX.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8159" + }, + "appliesTo" : [ ] + }, + "XKP8XXFGKBFRSGFX.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "XKP8XXFGKBFRSGFX.MZU6U2429S.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "XKP8XXFGKBFRSGFX.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "XKP8XXFGKBFRSGFX", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "XKP8XXFGKBFRSGFX.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "XKP8XXFGKBFRSGFX.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3710000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "XKP8XXFGKBFRSGFX.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "XKP8XXFGKBFRSGFX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XKP8XXFGKBFRSGFX.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "XKP8XXFGKBFRSGFX.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1754" + }, + "appliesTo" : [ ] + }, + "XKP8XXFGKBFRSGFX.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "XKP8XXFGKBFRSGFX.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XKP8XXFGKBFRSGFX.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "XKP8XXFGKBFRSGFX", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "XKP8XXFGKBFRSGFX.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "XKP8XXFGKBFRSGFX.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "XKP8XXFGKBFRSGFX.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "XKP8XXFGKBFRSGFX", + "effectiveDate" : "2016-08-31T23:59:59Z", + "priceDimensions" : { + "XKP8XXFGKBFRSGFX.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "XKP8XXFGKBFRSGFX.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1930000000" + }, + "appliesTo" : [ ] + }, + "XKP8XXFGKBFRSGFX.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "XKP8XXFGKBFRSGFX.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3260" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "XKP8XXFGKBFRSGFX.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "XKP8XXFGKBFRSGFX", + "effectiveDate" : "2015-04-30T23:59:59Z", + "priceDimensions" : { + "XKP8XXFGKBFRSGFX.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "XKP8XXFGKBFRSGFX.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "2809" + }, + "appliesTo" : [ ] + }, + "XKP8XXFGKBFRSGFX.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "XKP8XXFGKBFRSGFX.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1600000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "XKP8XXFGKBFRSGFX.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "XKP8XXFGKBFRSGFX", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "XKP8XXFGKBFRSGFX.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "XKP8XXFGKBFRSGFX.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + } + }, + "BGU9UG7QCNNGBKAB" : { + "BGU9UG7QCNNGBKAB.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "BGU9UG7QCNNGBKAB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BGU9UG7QCNNGBKAB.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "BGU9UG7QCNNGBKAB.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.8900000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BGU9UG7QCNNGBKAB.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "BGU9UG7QCNNGBKAB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "BGU9UG7QCNNGBKAB.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "BGU9UG7QCNNGBKAB.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7980000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BGU9UG7QCNNGBKAB.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "BGU9UG7QCNNGBKAB", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "BGU9UG7QCNNGBKAB.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "BGU9UG7QCNNGBKAB.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6634" + }, + "appliesTo" : [ ] + }, + "BGU9UG7QCNNGBKAB.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "BGU9UG7QCNNGBKAB.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BGU9UG7QCNNGBKAB.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "BGU9UG7QCNNGBKAB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "BGU9UG7QCNNGBKAB.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "BGU9UG7QCNNGBKAB.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7120000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BGU9UG7QCNNGBKAB.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "BGU9UG7QCNNGBKAB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BGU9UG7QCNNGBKAB.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "BGU9UG7QCNNGBKAB.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "BGU9UG7QCNNGBKAB.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "BGU9UG7QCNNGBKAB.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "7387" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BGU9UG7QCNNGBKAB.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "BGU9UG7QCNNGBKAB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "BGU9UG7QCNNGBKAB.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "BGU9UG7QCNNGBKAB.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15334" + }, + "appliesTo" : [ ] + }, + "BGU9UG7QCNNGBKAB.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "BGU9UG7QCNNGBKAB.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BGU9UG7QCNNGBKAB.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "BGU9UG7QCNNGBKAB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "BGU9UG7QCNNGBKAB.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "BGU9UG7QCNNGBKAB.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.6430000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BGU9UG7QCNNGBKAB.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "BGU9UG7QCNNGBKAB", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BGU9UG7QCNNGBKAB.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "BGU9UG7QCNNGBKAB.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3368" + }, + "appliesTo" : [ ] + }, + "BGU9UG7QCNNGBKAB.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "BGU9UG7QCNNGBKAB.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3840000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BGU9UG7QCNNGBKAB.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "BGU9UG7QCNNGBKAB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "BGU9UG7QCNNGBKAB.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "BGU9UG7QCNNGBKAB.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8840" + }, + "appliesTo" : [ ] + }, + "BGU9UG7QCNNGBKAB.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "BGU9UG7QCNNGBKAB.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3360000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BGU9UG7QCNNGBKAB.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "BGU9UG7QCNNGBKAB", + "effectiveDate" : "2016-09-30T23:59:59Z", + "priceDimensions" : { + "BGU9UG7QCNNGBKAB.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "BGU9UG7QCNNGBKAB.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "8002" + }, + "appliesTo" : [ ] + }, + "BGU9UG7QCNNGBKAB.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "BGU9UG7QCNNGBKAB.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.3040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BGU9UG7QCNNGBKAB.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "BGU9UG7QCNNGBKAB", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "BGU9UG7QCNNGBKAB.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "BGU9UG7QCNNGBKAB.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "17423" + }, + "appliesTo" : [ ] + }, + "BGU9UG7QCNNGBKAB.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "BGU9UG7QCNNGBKAB.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BGU9UG7QCNNGBKAB.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "BGU9UG7QCNNGBKAB", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BGU9UG7QCNNGBKAB.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "BGU9UG7QCNNGBKAB.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3753" + }, + "appliesTo" : [ ] + }, + "BGU9UG7QCNNGBKAB.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "BGU9UG7QCNNGBKAB.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4280000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "X6PQNCEPYKKQHDCA" : { + "X6PQNCEPYKKQHDCA.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "X6PQNCEPYKKQHDCA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X6PQNCEPYKKQHDCA.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "X6PQNCEPYKKQHDCA.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "5.1060000000" + }, + "appliesTo" : [ ] + }, + "X6PQNCEPYKKQHDCA.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "X6PQNCEPYKKQHDCA.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "43586" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "X6PQNCEPYKKQHDCA.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "X6PQNCEPYKKQHDCA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X6PQNCEPYKKQHDCA.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "X6PQNCEPYKKQHDCA.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "10.5390000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "X6PQNCEPYKKQHDCA.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "X6PQNCEPYKKQHDCA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "X6PQNCEPYKKQHDCA.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "X6PQNCEPYKKQHDCA.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "195497" + }, + "appliesTo" : [ ] + }, + "X6PQNCEPYKKQHDCA.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "X6PQNCEPYKKQHDCA.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "X6PQNCEPYKKQHDCA.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "X6PQNCEPYKKQHDCA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "X6PQNCEPYKKQHDCA.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "X6PQNCEPYKKQHDCA.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "9.2790000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "X6PQNCEPYKKQHDCA.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "X6PQNCEPYKKQHDCA", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "X6PQNCEPYKKQHDCA.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "X6PQNCEPYKKQHDCA.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "86707" + }, + "appliesTo" : [ ] + }, + "X6PQNCEPYKKQHDCA.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "X6PQNCEPYKKQHDCA.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "X6PQNCEPYKKQHDCA.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "X6PQNCEPYKKQHDCA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "X6PQNCEPYKKQHDCA.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "X6PQNCEPYKKQHDCA.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "38332" + }, + "appliesTo" : [ ] + }, + "X6PQNCEPYKKQHDCA.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "X6PQNCEPYKKQHDCA.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "4.5060000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "X6PQNCEPYKKQHDCA.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "X6PQNCEPYKKQHDCA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "X6PQNCEPYKKQHDCA.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "X6PQNCEPYKKQHDCA.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "8.1040000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "X6PQNCEPYKKQHDCA.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "X6PQNCEPYKKQHDCA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "X6PQNCEPYKKQHDCA.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "X6PQNCEPYKKQHDCA.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "146179" + }, + "appliesTo" : [ ] + }, + "X6PQNCEPYKKQHDCA.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "X6PQNCEPYKKQHDCA.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "X6PQNCEPYKKQHDCA.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "X6PQNCEPYKKQHDCA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "X6PQNCEPYKKQHDCA.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "X6PQNCEPYKKQHDCA.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "6.2530000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "X6PQNCEPYKKQHDCA.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "X6PQNCEPYKKQHDCA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "X6PQNCEPYKKQHDCA.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "X6PQNCEPYKKQHDCA.6QCMYABX3D.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "X6PQNCEPYKKQHDCA.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "X6PQNCEPYKKQHDCA.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "76409" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "X6PQNCEPYKKQHDCA.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "X6PQNCEPYKKQHDCA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "X6PQNCEPYKKQHDCA.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "X6PQNCEPYKKQHDCA.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "97787" + }, + "appliesTo" : [ ] + }, + "X6PQNCEPYKKQHDCA.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "X6PQNCEPYKKQHDCA.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "3.8510000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "X6PQNCEPYKKQHDCA.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "X6PQNCEPYKKQHDCA", + "effectiveDate" : "2017-09-30T23:59:59Z", + "priceDimensions" : { + "X6PQNCEPYKKQHDCA.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "X6PQNCEPYKKQHDCA.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "75270" + }, + "appliesTo" : [ ] + }, + "X6PQNCEPYKKQHDCA.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "X6PQNCEPYKKQHDCA.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "2.9940000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "YRB3EKJ97RGRBWWN" : { + "YRB3EKJ97RGRBWWN.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "YRB3EKJ97RGRBWWN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YRB3EKJ97RGRBWWN.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "YRB3EKJ97RGRBWWN.7NE97W5U4E.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.2050000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YRB3EKJ97RGRBWWN.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "YRB3EKJ97RGRBWWN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YRB3EKJ97RGRBWWN.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "YRB3EKJ97RGRBWWN.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "604" + }, + "appliesTo" : [ ] + }, + "YRB3EKJ97RGRBWWN.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "YRB3EKJ97RGRBWWN.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1290000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "YRB3EKJ97RGRBWWN.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "YRB3EKJ97RGRBWWN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YRB3EKJ97RGRBWWN.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "YRB3EKJ97RGRBWWN.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "4005" + }, + "appliesTo" : [ ] + }, + "YRB3EKJ97RGRBWWN.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "YRB3EKJ97RGRBWWN.MZU6U2429S.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YRB3EKJ97RGRBWWN.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "YRB3EKJ97RGRBWWN", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "YRB3EKJ97RGRBWWN.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "YRB3EKJ97RGRBWWN.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "530" + }, + "appliesTo" : [ ] + }, + "YRB3EKJ97RGRBWWN.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "YRB3EKJ97RGRBWWN.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1210000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YRB3EKJ97RGRBWWN.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "YRB3EKJ97RGRBWWN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YRB3EKJ97RGRBWWN.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "YRB3EKJ97RGRBWWN.4NA7Y494T4.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1860000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YRB3EKJ97RGRBWWN.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "YRB3EKJ97RGRBWWN", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "YRB3EKJ97RGRBWWN.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "YRB3EKJ97RGRBWWN.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1710" + }, + "appliesTo" : [ ] + }, + "YRB3EKJ97RGRBWWN.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "YRB3EKJ97RGRBWWN.VJWZNREJX2.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "YRB3EKJ97RGRBWWN.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "YRB3EKJ97RGRBWWN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YRB3EKJ97RGRBWWN.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "YRB3EKJ97RGRBWWN.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "3627" + }, + "appliesTo" : [ ] + }, + "YRB3EKJ97RGRBWWN.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "YRB3EKJ97RGRBWWN.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YRB3EKJ97RGRBWWN.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "YRB3EKJ97RGRBWWN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YRB3EKJ97RGRBWWN.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "YRB3EKJ97RGRBWWN.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1490000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "YRB3EKJ97RGRBWWN.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "YRB3EKJ97RGRBWWN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YRB3EKJ97RGRBWWN.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "YRB3EKJ97RGRBWWN.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1620000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "YRB3EKJ97RGRBWWN.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "YRB3EKJ97RGRBWWN", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "YRB3EKJ97RGRBWWN.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "YRB3EKJ97RGRBWWN.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1564" + }, + "appliesTo" : [ ] + }, + "YRB3EKJ97RGRBWWN.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "YRB3EKJ97RGRBWWN.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "YRB3EKJ97RGRBWWN.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "YRB3EKJ97RGRBWWN", + "effectiveDate" : "2017-02-28T23:59:59Z", + "priceDimensions" : { + "YRB3EKJ97RGRBWWN.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "YRB3EKJ97RGRBWWN.38NPMPTW36.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1020000000" + }, + "appliesTo" : [ ] + }, + "YRB3EKJ97RGRBWWN.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "YRB3EKJ97RGRBWWN.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1091" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "YRB3EKJ97RGRBWWN.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "YRB3EKJ97RGRBWWN", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "YRB3EKJ97RGRBWWN.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "YRB3EKJ97RGRBWWN.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "1239" + }, + "appliesTo" : [ ] + }, + "YRB3EKJ97RGRBWWN.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "YRB3EKJ97RGRBWWN.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.1070000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + }, + "BNQSZ9699GKWMJ72" : { + "BNQSZ9699GKWMJ72.4NA7Y494T4" : { + "offerTermCode" : "4NA7Y494T4", + "sku" : "BNQSZ9699GKWMJ72", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "BNQSZ9699GKWMJ72.4NA7Y494T4.6YS6EN2CT7" : { + "rateCode" : "BNQSZ9699GKWMJ72.4NA7Y494T4.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BNQSZ9699GKWMJ72.38NPMPTW36" : { + "offerTermCode" : "38NPMPTW36", + "sku" : "BNQSZ9699GKWMJ72", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "BNQSZ9699GKWMJ72.38NPMPTW36.2TG2D8R56U" : { + "rateCode" : "BNQSZ9699GKWMJ72.38NPMPTW36.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "11836" + }, + "appliesTo" : [ ] + }, + "BNQSZ9699GKWMJ72.38NPMPTW36.6YS6EN2CT7" : { + "rateCode" : "BNQSZ9699GKWMJ72.38NPMPTW36.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.4500000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BNQSZ9699GKWMJ72.Z2E3P23VKM" : { + "offerTermCode" : "Z2E3P23VKM", + "sku" : "BNQSZ9699GKWMJ72", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "BNQSZ9699GKWMJ72.Z2E3P23VKM.6YS6EN2CT7" : { + "rateCode" : "BNQSZ9699GKWMJ72.Z2E3P23VKM.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.3800000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BNQSZ9699GKWMJ72.NQ3QZPMQV9" : { + "offerTermCode" : "NQ3QZPMQV9", + "sku" : "BNQSZ9699GKWMJ72", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "BNQSZ9699GKWMJ72.NQ3QZPMQV9.2TG2D8R56U" : { + "rateCode" : "BNQSZ9699GKWMJ72.NQ3QZPMQV9.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "22259" + }, + "appliesTo" : [ ] + }, + "BNQSZ9699GKWMJ72.NQ3QZPMQV9.6YS6EN2CT7" : { + "rateCode" : "BNQSZ9699GKWMJ72.NQ3QZPMQV9.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BNQSZ9699GKWMJ72.R5XV2EPZQZ" : { + "offerTermCode" : "R5XV2EPZQZ", + "sku" : "BNQSZ9699GKWMJ72", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "BNQSZ9699GKWMJ72.R5XV2EPZQZ.6YS6EN2CT7" : { + "rateCode" : "BNQSZ9699GKWMJ72.R5XV2EPZQZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5900000000" + }, + "appliesTo" : [ ] + }, + "BNQSZ9699GKWMJ72.R5XV2EPZQZ.2TG2D8R56U" : { + "rateCode" : "BNQSZ9699GKWMJ72.R5XV2EPZQZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "15498" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + }, + "BNQSZ9699GKWMJ72.6QCMYABX3D" : { + "offerTermCode" : "6QCMYABX3D", + "sku" : "BNQSZ9699GKWMJ72", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "BNQSZ9699GKWMJ72.6QCMYABX3D.2TG2D8R56U" : { + "rateCode" : "BNQSZ9699GKWMJ72.6QCMYABX3D.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "10250" + }, + "appliesTo" : [ ] + }, + "BNQSZ9699GKWMJ72.6QCMYABX3D.6YS6EN2CT7" : { + "rateCode" : "BNQSZ9699GKWMJ72.6QCMYABX3D.6YS6EN2CT7", + "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "All Upfront" + } + }, + "BNQSZ9699GKWMJ72.HU7G6KETJZ" : { + "offerTermCode" : "HU7G6KETJZ", + "sku" : "BNQSZ9699GKWMJ72", + "effectiveDate" : "2016-11-30T23:59:59Z", + "priceDimensions" : { + "BNQSZ9699GKWMJ72.HU7G6KETJZ.2TG2D8R56U" : { + "rateCode" : "BNQSZ9699GKWMJ72.HU7G6KETJZ.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "5231" + }, + "appliesTo" : [ ] + }, + "BNQSZ9699GKWMJ72.HU7G6KETJZ.6YS6EN2CT7" : { + "rateCode" : "BNQSZ9699GKWMJ72.HU7G6KETJZ.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.5970000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "standard", + "PurchaseOption" : "Partial Upfront" + } + }, + "BNQSZ9699GKWMJ72.BPH4J8HBKS" : { + "offerTermCode" : "BPH4J8HBKS", + "sku" : "BNQSZ9699GKWMJ72", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "BNQSZ9699GKWMJ72.BPH4J8HBKS.6YS6EN2CT7" : { + "rateCode" : "BNQSZ9699GKWMJ72.BPH4J8HBKS.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4080000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "standard", + "PurchaseOption" : "No Upfront" + } + }, + "BNQSZ9699GKWMJ72.7NE97W5U4E" : { + "offerTermCode" : "7NE97W5U4E", + "sku" : "BNQSZ9699GKWMJ72", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BNQSZ9699GKWMJ72.7NE97W5U4E.6YS6EN2CT7" : { + "rateCode" : "BNQSZ9699GKWMJ72.7NE97W5U4E.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "1.4700000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "No Upfront" + } + }, + "BNQSZ9699GKWMJ72.VJWZNREJX2" : { + "offerTermCode" : "VJWZNREJX2", + "sku" : "BNQSZ9699GKWMJ72", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BNQSZ9699GKWMJ72.VJWZNREJX2.2TG2D8R56U" : { + "rateCode" : "BNQSZ9699GKWMJ72.VJWZNREJX2.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "12788" + }, + "appliesTo" : [ ] + }, + "BNQSZ9699GKWMJ72.VJWZNREJX2.6YS6EN2CT7" : { + "rateCode" : "BNQSZ9699GKWMJ72.VJWZNREJX2.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BNQSZ9699GKWMJ72.MZU6U2429S" : { + "offerTermCode" : "MZU6U2429S", + "sku" : "BNQSZ9699GKWMJ72", + "effectiveDate" : "2017-04-30T23:59:59Z", + "priceDimensions" : { + "BNQSZ9699GKWMJ72.MZU6U2429S.6YS6EN2CT7" : { + "rateCode" : "BNQSZ9699GKWMJ72.MZU6U2429S.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.0000000000" + }, + "appliesTo" : [ ] + }, + "BNQSZ9699GKWMJ72.MZU6U2429S.2TG2D8R56U" : { + "rateCode" : "BNQSZ9699GKWMJ72.MZU6U2429S.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "30370" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "3yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "All Upfront" + } + }, + "BNQSZ9699GKWMJ72.CUZHX8X6JH" : { + "offerTermCode" : "CUZHX8X6JH", + "sku" : "BNQSZ9699GKWMJ72", + "effectiveDate" : "2017-10-31T23:59:59Z", + "priceDimensions" : { + "BNQSZ9699GKWMJ72.CUZHX8X6JH.2TG2D8R56U" : { + "rateCode" : "BNQSZ9699GKWMJ72.CUZHX8X6JH.2TG2D8R56U", + "description" : "Upfront Fee", + "unit" : "Quantity", + "pricePerUnit" : { + "USD" : "6407" + }, + "appliesTo" : [ ] + }, + "BNQSZ9699GKWMJ72.CUZHX8X6JH.6YS6EN2CT7" : { + "rateCode" : "BNQSZ9699GKWMJ72.CUZHX8X6JH.6YS6EN2CT7", + "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", + "beginRange" : "0", + "endRange" : "Inf", + "unit" : "Hrs", + "pricePerUnit" : { + "USD" : "0.7310000000" + }, + "appliesTo" : [ ] + } + }, + "termAttributes" : { + "LeaseContractLength" : "1yr", + "OfferingClass" : "convertible", + "PurchaseOption" : "Partial Upfront" + } + } + } + } + } +} \ No newline at end of file diff --git a/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go b/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go index 5e0f0359aa3b..7a850fe35c79 100644 --- a/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go +++ b/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go @@ -24,6 +24,7 @@ import ( apiv1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/api/resource" "k8s.io/autoscaler/cluster-autoscaler/cloudprovider" + "k8s.io/autoscaler/cluster-autoscaler/cloudprovider/aws/price" "k8s.io/autoscaler/cluster-autoscaler/config/dynamic" "k8s.io/autoscaler/cluster-autoscaler/utils/errors" "k8s.io/kubernetes/plugin/pkg/scheduler/schedulercache" @@ -33,24 +34,25 @@ import ( type awsCloudProvider struct { awsManager *AwsManager asgs []*Asg + priceDescriptor price.ShapeDescriptor resourceLimiter *cloudprovider.ResourceLimiter } // BuildAwsCloudProvider builds CloudProvider implementation for AWS. -func BuildAwsCloudProvider(awsManager *AwsManager, discoveryOpts cloudprovider.NodeGroupDiscoveryOptions, resourceLimiter *cloudprovider.ResourceLimiter) (cloudprovider.CloudProvider, error) { +func BuildAwsCloudProvider(awsManager *AwsManager, discoveryOpts cloudprovider.NodeGroupDiscoveryOptions, resourceLimiter *cloudprovider.ResourceLimiter, descriptor price.ShapeDescriptor) (cloudprovider.CloudProvider, error) { if err := discoveryOpts.Validate(); err != nil { return nil, fmt.Errorf("Failed to build an aws cloud provider: %v", err) } if discoveryOpts.StaticDiscoverySpecified() { - return buildStaticallyDiscoveringProvider(awsManager, discoveryOpts.NodeGroupSpecs, resourceLimiter) + return buildStaticallyDiscoveringProvider(awsManager, discoveryOpts.NodeGroupSpecs, resourceLimiter, descriptor) } if discoveryOpts.AutoDiscoverySpecified() { - return buildAutoDiscoveringProvider(awsManager, discoveryOpts.NodeGroupAutoDiscoverySpec, resourceLimiter) + return buildAutoDiscoveringProvider(awsManager, discoveryOpts.NodeGroupAutoDiscoverySpec, resourceLimiter, descriptor) } return nil, fmt.Errorf("Failed to build an aws cloud provider: Either node group specs or node group auto discovery spec must be specified") } -func buildAutoDiscoveringProvider(awsManager *AwsManager, spec string, resourceLimiter *cloudprovider.ResourceLimiter) (*awsCloudProvider, error) { +func buildAutoDiscoveringProvider(awsManager *AwsManager, spec string, resourceLimiter *cloudprovider.ResourceLimiter, descriptor price.ShapeDescriptor) (*awsCloudProvider, error) { tokens := strings.Split(spec, ":") if len(tokens) != 2 { return nil, fmt.Errorf("Invalid node group auto discovery spec specified via --node-group-auto-discovery: %s", spec) @@ -82,6 +84,7 @@ func buildAutoDiscoveringProvider(awsManager *AwsManager, spec string, resourceL awsManager: awsManager, asgs: make([]*Asg, 0), resourceLimiter: resourceLimiter, + priceDescriptor: descriptor, } for _, asg := range asgs { aws.addAsg(buildAsg(aws.awsManager, int(*asg.MinSize), int(*asg.MaxSize), *asg.AutoScalingGroupName)) @@ -89,11 +92,12 @@ func buildAutoDiscoveringProvider(awsManager *AwsManager, spec string, resourceL return aws, nil } -func buildStaticallyDiscoveringProvider(awsManager *AwsManager, specs []string, resourceLimiter *cloudprovider.ResourceLimiter) (*awsCloudProvider, error) { +func buildStaticallyDiscoveringProvider(awsManager *AwsManager, specs []string, resourceLimiter *cloudprovider.ResourceLimiter, descriptor price.ShapeDescriptor) (*awsCloudProvider, error) { aws := &awsCloudProvider{ awsManager: awsManager, asgs: make([]*Asg, 0), resourceLimiter: resourceLimiter, + priceDescriptor: descriptor, } for _, spec := range specs { if err := aws.addNodeGroup(spec); err != nil { @@ -152,7 +156,8 @@ func (aws *awsCloudProvider) NodeGroupForNode(node *apiv1.Node) (cloudprovider.N // Pricing returns pricing model for this cloud provider or error if not available. func (aws *awsCloudProvider) Pricing() (cloudprovider.PricingModel, errors.AutoscalerError) { - return nil, cloudprovider.ErrNotImplemented + // aws.awsManager.asgs.FindForInstance() + return &priceModel{}, nil } // GetAvailableMachineTypes get all machine types that can be requested from the cloud provider. diff --git a/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider_test.go b/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider_test.go index 0d35c44f9a3a..7d9702389468 100644 --- a/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider_test.go +++ b/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider_test.go @@ -77,6 +77,12 @@ var testAwsManager = &AwsManager{ interrupt: make(chan struct{}), } +type testPriceDescriptor struct{} + +func (pd *testPriceDescriptor) Price(asgName string) (price float64, err error) { + return +} + func newTestAwsManagerWithService(service autoScaling) *AwsManager { wrapper := autoScalingWrapper{service} return &AwsManager{ @@ -113,7 +119,7 @@ func testProvider(t *testing.T, m *AwsManager) *awsCloudProvider { map[string]int64{cloudprovider.ResourceNameCores: 1, cloudprovider.ResourceNameMemory: 10000000}, map[string]int64{cloudprovider.ResourceNameCores: 10, cloudprovider.ResourceNameMemory: 100000000}) - provider, err := buildStaticallyDiscoveringProvider(m, nil, resourceLimiter) + provider, err := buildStaticallyDiscoveringProvider(m, nil, resourceLimiter, &testPriceDescriptor{}) assert.NoError(t, err) return provider } @@ -124,10 +130,10 @@ func TestBuildAwsCloudProvider(t *testing.T) { map[string]int64{cloudprovider.ResourceNameCores: 10, cloudprovider.ResourceNameMemory: 100000000}) m := testAwsManager - _, err := buildStaticallyDiscoveringProvider(m, []string{"bad spec"}, resourceLimiter) + _, err := buildStaticallyDiscoveringProvider(m, []string{"bad spec"}, resourceLimiter, &testPriceDescriptor{}) assert.Error(t, err) - _, err = buildStaticallyDiscoveringProvider(m, nil, resourceLimiter) + _, err = buildStaticallyDiscoveringProvider(m, nil, resourceLimiter, &testPriceDescriptor{}) assert.NoError(t, err) } diff --git a/cluster-autoscaler/cloudprovider/aws/aws_price_model.go b/cluster-autoscaler/cloudprovider/aws/aws_price_model.go new file mode 100644 index 000000000000..75cd853ae0ef --- /dev/null +++ b/cluster-autoscaler/cloudprovider/aws/aws_price_model.go @@ -0,0 +1,119 @@ +/* +Copyright 2017 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package aws + +import ( + "math" + "time" + + "fmt" + + apiv1 "k8s.io/api/core/v1" + "k8s.io/autoscaler/cluster-autoscaler/cloudprovider/aws/price" +) + +const ( + // Price calculation is based on m4.* machines (general purpose instances) + // Base price m4.large $ 0.111 (2 CPU, 8 GB Ram) + // Price share 50%/50% CPU/Ram => 0.0555 / 0.0555 + cpuPricePerHour = 0.111 * 0.5 / 2 + memoryPricePerHourPerGb = 0.111 * 0.5 / 8 + + // Reference is g3.4xlarge $ 1.21 (16CPU, 122GB Ram, 1GPU) + // To compensate the gap between the different kind of instances, we just substrate the cpu and memory price + // of the m4 instance by 80% of its initial value. + gpuPricePerHour = 1.21 - (((16 * cpuPricePerHour) + (122 * memoryPricePerHourPerGb)) * 0.2) + + gigabyte = 1024.0 * 1024.0 * 1024.0 +) + +type instanceByASGFinder interface { + FindForInstance(ref *AwsRef) (*Asg, error) +} + +// NewPriceModel is the constructor of priceModel which provides general access to price information +func NewPriceModel(asgs *autoScalingGroups, pd price.ShapeDescriptor) *priceModel { + return &priceModel{ + asgs: asgs, + priceDescriptor: pd, + } +} + +// priceModel is responsible to provide pod as well as node price information. +// It implements the cloudprovider.PricingModel interface. +type priceModel struct { + asgs instanceByASGFinder + priceDescriptor price.ShapeDescriptor +} + +// NodePrice returns a price of running the given node for a given period of time. +// All prices are in USD. +func (pm *priceModel) NodePrice(node *apiv1.Node, startTime time.Time, endTime time.Time) (float64, error) { + instance, err := AwsRefFromProviderId(node.Spec.ProviderID) + if err != nil { + return 0, err + } + + asg, err := pm.asgs.FindForInstance(instance) + if err != nil { + return 0, err + } + + if asg == nil { + return 0, fmt.Errorf("asg for instance %s (%s) not found", instance, node.Spec.ProviderID) + } + + hourlyPrice, err := pm.priceDescriptor.Price(asg.Name) + if err != nil { + return 0, fmt.Errorf("failed to describe price for asg %s: %v", asg.Name, err) + } + + hours := getHours(startTime, endTime) + + return hourlyPrice * hours, nil +} + +// PodPrice calculates the operating costs for the given pod under perfect conditions. +func (pm *priceModel) PodPrice(pod *apiv1.Pod, startTime time.Time, endTime time.Time) (float64, error) { + sum := 0.0 + for _, container := range pod.Spec.Containers { + sum += getBasePrice(container.Resources.Requests, startTime, endTime) + } + return sum, nil +} + +func getBasePrice(resources apiv1.ResourceList, startTime time.Time, endTime time.Time) float64 { + if len(resources) == 0 { + return 0 + } + hours := getHours(startTime, endTime) + sum := 0.0 + cpu := resources[apiv1.ResourceCPU] + mem := resources[apiv1.ResourceMemory] + gpu := resources[apiv1.ResourceNvidiaGPU] + sum += float64(cpu.MilliValue()) / 1000.0 * cpuPricePerHour * hours + sum += float64(gpu.MilliValue()) / 1000.0 * gpuPricePerHour * hours + sum += float64(mem.Value()) / gigabyte * memoryPricePerHourPerGb * hours + + return sum +} + +func getHours(startTime time.Time, endTime time.Time) float64 { + minutes := math.Ceil(float64(endTime.Sub(startTime)) / float64(time.Minute)) + hours := minutes / 60.0 + return hours +} diff --git a/cluster-autoscaler/cloudprovider/aws/aws_price_model_test.go b/cluster-autoscaler/cloudprovider/aws/aws_price_model_test.go new file mode 100644 index 000000000000..6d9f3196e7ed --- /dev/null +++ b/cluster-autoscaler/cloudprovider/aws/aws_price_model_test.go @@ -0,0 +1,278 @@ +/* +Copyright 2017 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package aws + +import ( + "testing" + + "time" + + "fmt" + + "github.com/stretchr/testify/assert" + apiv1 "k8s.io/api/core/v1" + "k8s.io/apimachinery/pkg/api/resource" +) + +func TestPriceModel_NodePrice(t *testing.T) { + defaultFrom, err := time.Parse(time.RFC3339, "2017-01-02T15:00:00Z") + assert.NoError(t, err) + defaultTill, err := time.Parse(time.RFC3339, "2017-01-02T16:00:00Z") + assert.NoError(t, err) + + pm := &priceModel{ + asgs: &fakeInstanceFinder{ + c: map[string]*Asg{ + "node-a": &Asg{ + AwsRef: AwsRef{ + Name: "k8s-AutoscalingGroupWorker-AAAAAA", + }, + }, + "node-b": &Asg{ + AwsRef: AwsRef{ + Name: "k8s-AutoscalingGroupWorker-BBBBBB", + }, + }, + "node-c": &Asg{ + AwsRef: AwsRef{ + Name: "k8s-AutoscalingGroupWorker-CCCCCC", + }, + }, + }, + }, + priceDescriptor: newFakePriceDescriptor( + newASGPrice("k8s-AutoscalingGroupWorker-AAAAAA", 0.111), + newASGPrice("k8s-AutoscalingGroupWorker-BBBBBB", 0.222), + ), + } + + type testCase struct { + node *apiv1.Node + from, till time.Time + expectError bool + expectPrice float64 + } + + testCases := []testCase{ + { // common case + node: buildNode(providerID("us-east-1", "node-a")), + from: defaultFrom, + till: defaultTill, + expectError: false, + expectPrice: 0.111, + }, + { // common case + node: buildNode(providerID("us-east-1", "node-b")), + from: defaultFrom, + till: defaultTill, + expectError: false, + expectPrice: 0.222, + }, + { // common case, zero duration + node: buildNode(providerID("us-east-1", "node-b")), + from: defaultFrom, + till: defaultFrom, + expectError: false, + expectPrice: 0.0, + }, + { // error case: no price could be found + node: buildNode(providerID("us-east-1", "node-c")), + from: defaultFrom, + till: defaultTill, + expectError: true, + expectPrice: 0.0, + }, + { // error case: no asg found + node: buildNode(providerID("us-east-1", "node-d")), + from: defaultFrom, + till: defaultTill, + expectError: true, + expectPrice: 0.0, + }, + { // error case: invalid provider id + node: buildNode("invalid-id"), + from: defaultFrom, + till: defaultTill, + expectError: true, + expectPrice: 0.0, + }, + } + + for n, tc := range testCases { + price, err := pm.NodePrice(tc.node, tc.from, tc.till) + if tc.expectError { + assert.Error(t, err, fmt.Sprintf("case %d", n)) + } else { + assert.NoError(t, err, fmt.Sprintf("case %d", n)) + } + assert.Equal(t, tc.expectPrice, price, fmt.Sprintf("case %d", n)) + } +} + +func TestPriceModel_PodPrice(t *testing.T) { + pm := &priceModel{} + + defaultFrom, err := time.Parse(time.RFC3339, "2017-01-02T15:00:00Z") + assert.NoError(t, err) + defaultTill, err := time.Parse(time.RFC3339, "2017-01-02T16:00:00Z") + assert.NoError(t, err) + + type testCase struct { + pod *apiv1.Pod + from, till time.Time + expectError bool + expectPrice float64 + } + + testCases := []testCase{ + { // common case + pod: buildPod(podContainers{cpu: "0.5", memory: "1500m"}), + from: defaultFrom, + till: defaultTill, + expectError: false, + expectPrice: 0.013875000012922101, + }, + { // with GPU + pod: buildPod(podContainers{cpu: "0.5", memory: "1500m", gpu: "1"}), + from: defaultFrom, + till: defaultTill, + expectError: false, + expectPrice: 0.9658000000129221, + }, + { // multiple containers + pod: buildPod(podContainers{cpu: "0.5", memory: "1500m"}, podContainers{cpu: "0.8", memory: "300m"}), + from: defaultFrom, + till: defaultTill, + expectError: false, + expectPrice: 0.03607500001938315, + }, + { // no containers + pod: &apiv1.Pod{}, + from: defaultFrom, + till: defaultTill, + expectError: false, + expectPrice: 0.0, + }, + { // zero gap between start and end time + pod: buildPod(podContainers{cpu: "0.5", memory: "1500m", gpu: "1"}), + from: defaultFrom, + till: defaultFrom, + expectError: false, + expectPrice: 0.0, + }, + } + + for n, tc := range testCases { + price, err := pm.PodPrice(tc.pod, tc.from, tc.till) + if tc.expectError { + assert.Error(t, err, fmt.Sprintf("case %d", n)) + } else { + assert.NoError(t, err, fmt.Sprintf("case %d", n)) + } + assert.Equal(t, tc.expectPrice, price, fmt.Sprintf("case %d", n)) + } +} + +func newASGPrice(asgName string, price float64) asgPrice { + return asgPrice{asgName, price} +} + +type asgPrice struct { + asgName string + price float64 +} + +func newFakePriceDescriptor(asgPrices ...asgPrice) *fakePriceDescriptor { + c := make(map[string]float64) + + for _, a := range asgPrices { + c[a.asgName] = a.price + } + + return &fakePriceDescriptor{c} +} + +type fakePriceDescriptor struct { + c map[string]float64 +} + +func (pd *fakePriceDescriptor) Price(asgName string) (float64, error) { + if p, found := pd.c[asgName]; found { + return p, nil + } + return 0, fmt.Errorf("unable to determine price for asg %s", asgName) +} + +func providerID(zone, name string) string { + return fmt.Sprintf("aws:///%s/%s", zone, name) +} + +func buildNode(providerID string) *apiv1.Node { + return &apiv1.Node{ + Spec: apiv1.NodeSpec{ + ProviderID: providerID, + }, + } +} + +var _ instanceByASGFinder = &fakeInstanceFinder{} + +type fakeInstanceFinder struct { + c map[string]*Asg +} + +func (i *fakeInstanceFinder) FindForInstance(ref *AwsRef) (*Asg, error) { + if asg, found := i.c[ref.Name]; found { + return asg, nil + } + + return nil, nil +} + +type podContainers struct { + cpu string + gpu string + memory string +} + +func buildPod(prs ...podContainers) *apiv1.Pod { + return &apiv1.Pod{ + Spec: apiv1.PodSpec{ + Containers: convertContainers(prs...), + }, + } +} + +func convertContainers(prs ...podContainers) []apiv1.Container { + containers := make([]apiv1.Container, len(prs)) + + for n, pr := range prs { + containers[n].Resources.Requests = make(apiv1.ResourceList) + + if len(pr.cpu) != 0 { + containers[n].Resources.Requests[apiv1.ResourceCPU] = resource.MustParse(pr.cpu) + } + if len(pr.gpu) != 0 { + containers[n].Resources.Requests[apiv1.ResourceNvidiaGPU] = resource.MustParse(pr.gpu) + } + if len(pr.memory) != 0 { + containers[n].Resources.Requests[apiv1.ResourceMemory] = resource.MustParse(pr.memory) + } + } + + return containers +} diff --git a/cluster-autoscaler/cloudprovider/aws/ec2_instance_types.go b/cluster-autoscaler/cloudprovider/aws/ec2_instance_types.go index 7d66b2688aa2..2e15fa5b00bb 100644 --- a/cluster-autoscaler/cloudprovider/aws/ec2_instance_types.go +++ b/cluster-autoscaler/cloudprovider/aws/ec2_instance_types.go @@ -111,10 +111,46 @@ var InstanceTypes = map[string]*instanceType{ MemoryMb: 7680, GPU: 0, }, - "cc1.4xlarge": { - InstanceType: "cc1.4xlarge", + "c5": { + InstanceType: "c5", + VCPU: 72, + MemoryMb: 0, + GPU: 0, + }, + "c5.18xlarge": { + InstanceType: "c5.18xlarge", + VCPU: 72, + MemoryMb: 147456, + GPU: 0, + }, + "c5.2xlarge": { + InstanceType: "c5.2xlarge", + VCPU: 8, + MemoryMb: 16384, + GPU: 0, + }, + "c5.4xlarge": { + InstanceType: "c5.4xlarge", VCPU: 16, - MemoryMb: 23552, + MemoryMb: 32768, + GPU: 0, + }, + "c5.9xlarge": { + InstanceType: "c5.9xlarge", + VCPU: 36, + MemoryMb: 73728, + GPU: 0, + }, + "c5.large": { + InstanceType: "c5.large", + VCPU: 2, + MemoryMb: 4096, + GPU: 0, + }, + "c5.xlarge": { + InstanceType: "c5.xlarge", + VCPU: 4, + MemoryMb: 8192, GPU: 0, }, "cc2.8xlarge": { @@ -225,12 +261,6 @@ var InstanceTypes = map[string]*instanceType{ MemoryMb: 249856, GPU: 2, }, - "hi1.4xlarge": { - InstanceType: "hi1.4xlarge", - VCPU: 16, - MemoryMb: 61952, - GPU: 0, - }, "hs1.8xlarge": { InstanceType: "hs1.8xlarge", VCPU: 17, @@ -621,10 +651,40 @@ var InstanceTypes = map[string]*instanceType{ MemoryMb: 0, GPU: 0, }, + "x1e.16xlarge": { + InstanceType: "x1e.16xlarge", + VCPU: 64, + MemoryMb: 1998848, + GPU: 0, + }, + "x1e.2xlarge": { + InstanceType: "x1e.2xlarge", + VCPU: 8, + MemoryMb: 249856, + GPU: 0, + }, "x1e.32xlarge": { InstanceType: "x1e.32xlarge", VCPU: 128, MemoryMb: 3997696, GPU: 0, }, + "x1e.4xlarge": { + InstanceType: "x1e.4xlarge", + VCPU: 16, + MemoryMb: 499712, + GPU: 0, + }, + "x1e.8xlarge": { + InstanceType: "x1e.8xlarge", + VCPU: 32, + MemoryMb: 999424, + GPU: 0, + }, + "x1e.xlarge": { + InstanceType: "x1e.xlarge", + VCPU: 4, + MemoryMb: 124928, + GPU: 0, + }, } diff --git a/cluster-autoscaler/cloudprovider/aws/price/descriptor.go b/cluster-autoscaler/cloudprovider/aws/price/descriptor.go new file mode 100644 index 000000000000..ee19d5189279 --- /dev/null +++ b/cluster-autoscaler/cloudprovider/aws/price/descriptor.go @@ -0,0 +1,70 @@ +/* +Copyright 2017 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package price + +import ( + "net/http" + + "github.com/aws/aws-sdk-go/aws/session" + "github.com/aws/aws-sdk-go/service/autoscaling" + "github.com/aws/aws-sdk-go/service/ec2" + "k8s.io/autoscaler/cluster-autoscaler/cloudprovider/aws/api" + "k8s.io/autoscaler/cluster-autoscaler/cloudprovider/aws/price/ondemand" + "k8s.io/autoscaler/cluster-autoscaler/cloudprovider/aws/price/spot" +) + +// ShapeDescriptor describes an interface to appraise an instance price of any shape +type ShapeDescriptor interface { + Price(asgName string) (price float64, err error) +} + +type shapeDescriptor struct { + autoscaling api.AutoscalingGroupDescriber + launchConfiguration api.LaunchConfigurationDescriber + spot spot.Descriptor + onDemand ondemand.Descriptor +} + +// NewDescriptor is the constructor of a shapeDescriptor +func NewDescriptor(s *session.Session) *shapeDescriptor { + as := autoscaling.New(s) + return &shapeDescriptor{ + autoscaling: api.NewEC2AutoscalingService(as), + launchConfiguration: api.NewEC2LaunchConfigurationService(as), + spot: spot.NewDescriptor(api.NewEC2SpotPriceService(ec2.New(s))), + onDemand: ondemand.NewDescriptor(api.NewEC2InstanceInfoService(http.DefaultClient)), + } +} + +// Price calls, depending whether the asg has a spot price or not, the spot or the on-demand price descriptor +func (d *shapeDescriptor) Price(asgName string) (price float64, err error) { + asg, err := d.autoscaling.DescribeAutoscalingGroup(asgName) + if err != nil { + return 0, err + } + + lc, err := d.launchConfiguration.DescribeLaunchConfiguration(asg.LaunchConfigurationName) + if err != nil { + return 0, err + } + + if lc.HasSpotMarkedBid { + return d.spot.Price(lc.InstanceType, lc.SpotPrice, asg.AvailabilityZones...) + } + + return d.onDemand.Price(lc.InstanceType, asg.AvailabilityZones...) +} diff --git a/cluster-autoscaler/cloudprovider/aws/price/ondemand/descriptor.go b/cluster-autoscaler/cloudprovider/aws/price/ondemand/descriptor.go new file mode 100644 index 000000000000..4240571976e3 --- /dev/null +++ b/cluster-autoscaler/cloudprovider/aws/price/ondemand/descriptor.go @@ -0,0 +1,53 @@ +/* +Copyright 2017 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package ondemand + +import ( + "errors" + "fmt" + + "k8s.io/autoscaler/cluster-autoscaler/cloudprovider/aws/api" +) + +// Descriptor describes the price interface +type Descriptor interface { + Price(instanceType string, availabilityZones ...string) (float64, error) +} + +// NewDescriptor is the constructor of the constructor +func NewDescriptor(service api.InstanceInfoDescriber) *descriptor { + return &descriptor{ + service: service, + } +} + +type descriptor struct { + service api.InstanceInfoDescriber +} + +// Price returns the current instance price per hour in USD. +func (d *descriptor) Price(instanceType string, availabilityZones ...string) (float64, error) { + if len(availabilityZones) == 0 { + return 0, errors.New("no availability zone given") + } + info, err := d.service.DescribeInstanceInfo(instanceType, availabilityZones[0]) + if err != nil { + return 0, fmt.Errorf("failed to obtain instance info for %s in zone %s: %v", instanceType, availabilityZones[0], err) + } + + return info.OnDemandPrice, nil +} diff --git a/cluster-autoscaler/cloudprovider/aws/price/ondemand/descriptor_test.go b/cluster-autoscaler/cloudprovider/aws/price/ondemand/descriptor_test.go new file mode 100644 index 000000000000..986998217932 --- /dev/null +++ b/cluster-autoscaler/cloudprovider/aws/price/ondemand/descriptor_test.go @@ -0,0 +1,119 @@ +/* +Copyright 2017 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package ondemand + +import ( + "fmt" + + "testing" + + "github.com/stretchr/testify/assert" + "k8s.io/autoscaler/cluster-autoscaler/cloudprovider/aws/api" +) + +func TestDescriptor_Price(t *testing.T) { + d := NewDescriptor( + newFakeInstanceInfoDescriber( + buildInfo("m4.xlarge", "us-east-1a", 4, 0, 16*1024, 0.111), + buildInfo("m4.2xlarge", "us-east-1a", 8, 0, 32*1024, 0.222), + ), + ) + + type testCase struct { + instanceType string + availabilityZones []string + expectError bool + expectPrice float64 + } + + testCases := []testCase{ + { // common case + "m4.xlarge", []string{"us-east-1a", "us-east-1b"}, + false, 0.111, + }, + { // common case + "m4.2xlarge", []string{"us-east-1a"}, + false, 0.222, + }, + { // error case: no availability zone + "m4.xlarge", []string{}, + true, 0.0, + }, + { // error case: unknown instance type + "m4.4xlarge", []string{"us-east-1a", "us-east-1b"}, + true, 0.0, + }, + } + + for n, tc := range testCases { + price, err := d.Price(tc.instanceType, tc.availabilityZones...) + if tc.expectError { + assert.Error(t, err, fmt.Sprintf("case %d", n)) + } else { + assert.NoError(t, err, fmt.Sprintf("case %d", n)) + } + assert.Equal(t, tc.expectPrice, price, fmt.Sprintf("case %d", n)) + } +} + +type instanceInZone struct { + instanceType string + availabilityZone string +} + +type instanceInfoBundle struct { + instanceInZone instanceInZone + info *api.InstanceInfo +} + +func buildInfo(instanceType, availabilityZone string, cpu, gpu, mem int64, onDemandPrice float64) instanceInfoBundle { + return instanceInfoBundle{ + instanceInZone{instanceType, availabilityZone}, + &api.InstanceInfo{ + InstanceType: instanceType, + OnDemandPrice: onDemandPrice, + VCPU: cpu, + GPU: gpu, + MemoryMb: mem, + }, + } +} + +func newFakeInstanceInfoDescriber(iBundles ...instanceInfoBundle) *fakeInstanceInfoDescriber { + c := make(map[instanceInZone]*api.InstanceInfo) + + for _, b := range iBundles { + c[b.instanceInZone] = b.info + } + + return &fakeInstanceInfoDescriber{ + c: c, + } +} + +type fakeInstanceInfoDescriber struct { + c map[instanceInZone]*api.InstanceInfo +} + +func (i *fakeInstanceInfoDescriber) DescribeInstanceInfo(instanceType string, availabilityZone string) (*api.InstanceInfo, error) { + iiz := instanceInZone{instanceType, availabilityZone} + if info, found := i.c[iiz]; found { + return info, nil + } + + return nil, fmt.Errorf("instance info not available for instance type %s in zone %s", instanceType, availabilityZone) +} diff --git a/cluster-autoscaler/cloudprovider/aws/price/spot/descriptor.go b/cluster-autoscaler/cloudprovider/aws/price/spot/descriptor.go new file mode 100644 index 000000000000..d721b6476aae --- /dev/null +++ b/cluster-autoscaler/cloudprovider/aws/price/spot/descriptor.go @@ -0,0 +1,183 @@ +/* +Copyright 2017 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package spot + +import ( + "fmt" + "time" + + "github.com/golang/glog" + "k8s.io/autoscaler/cluster-autoscaler/cloudprovider/aws/api" +) + +const ( + lookupWindow = time.Minute * 30 + cacheWindow = time.Hour * 24 * 3 + cacheMaxAge = time.Minute * 5 +) + +type instanceTypeInZone struct { + instanceType string + availabilityZone string +} + +type spotPriceBucket map[instanceTypeInZone]*History + +// Descriptor describes the price interface +type Descriptor interface { + Price(instanceType string, bidPrice float64, availabilityZones ...string) (float64, error) +} + +// NewDescriptor is the constructor of the constructor +func NewDescriptor(spotPriceAPI api.SpotPriceHistoryDescriber) *descriptor { + return &descriptor{ + bucket: make(spotPriceBucket), + api: spotPriceAPI, + } +} + +type descriptor struct { + bucket spotPriceBucket + api api.SpotPriceHistoryDescriber +} + +// Price returns the current price, average over the availability zones but the max value within 30 minutes of a zone, +// of the given instanceType. +// It returns an error if the current price is greater than the bid price. +func (d *descriptor) Price(instanceType string, bidPrice float64, availabilityZones ...string) (float64, error) { + var avgPrice float64 + prices := make([]float64, len(availabilityZones)) + + for i, zone := range availabilityZones { + maxPrice, err := d.maxSpotPriceForDuration(instanceType, zone, lookupWindow) + if err != nil { + return avgPrice, err + } + + if maxPrice == 0.0 { + return avgPrice, fmt.Errorf("got invalid spot price of 0.0 for instance type %s in availability zone %s", instanceType, zone) + } + + if maxPrice > bidPrice { + return 0, fmt.Errorf("spot price bid of %.4f lower than current offer of %.4f at %s", bidPrice, maxPrice, zone) + } + + prices[i] = maxPrice + } + + var sum float64 + for _, price := range prices { + sum += price + } + + avgPrice = sum / float64(len(prices)) + + return avgPrice, nil +} + +// cumulatedSpotPriceLastHour collects the spot price history of the last hour for every AZ provided. +// It takes the highest spot price of every AZ within the last hour and returns the average across the AZs. +func (d *descriptor) maxSpotPriceForDuration(instanceType string, availabilityZone string, lookupWindow time.Duration) (float64, error) { + var maxPrice float64 + + history, err := d.spotPriceHistory(instanceType, availabilityZone) + if err != nil { + return maxPrice, err + } + + if history.Empty() { + return maxPrice, fmt.Errorf("no spot price information for instance %s in availability zone %s", instanceType, availabilityZone) + } + + startTime := time.Now().Truncate(lookupWindow) + + for _, price := range history.Slice() { + if price.Timestamp.Before(startTime) { + continue + } + + if maxPrice < price.Price { + maxPrice = price.Price + } + } + + // The case when there are no new price information within the requested time window. + if maxPrice == 0.0 { + item, err := history.LastItem() + if err != nil { + return maxPrice, fmt.Errorf("failed to fetch last history item: %v", err) + } + + glog.Warningf( + "no spot price information newer than %s, using last known price of %f which is %s old", + lookupWindow, + item.Price, + time.Now().Sub(item.Timestamp), + ) + maxPrice = item.Price + } + + return maxPrice, nil +} + +func (d *descriptor) spotPriceHistory(instanceType, availabilityZone string) (*History, error) { + if d.syncRequired(instanceType, availabilityZone) { + if err := d.syncSpotPriceHistory(instanceType, availabilityZone); err != nil { + return nil, fmt.Errorf("spot price sync failed: %v", err) + } + } + + instanceZone := instanceTypeInZone{instanceType: instanceType, availabilityZone: availabilityZone} + return d.bucket[instanceZone], nil +} +func (d *descriptor) syncRequired(instanceType, availabilityZone string) bool { + instanceZone := instanceTypeInZone{instanceType: instanceType, availabilityZone: availabilityZone} + + history, found := d.bucket[instanceZone] + if !found { + return true + } + + return history.LastSync().Before(time.Now().Truncate(cacheMaxAge)) +} + +func (d *descriptor) syncSpotPriceHistory(instanceType string, availabilityZone string) error { + instanceZone := instanceTypeInZone{instanceType: instanceType, availabilityZone: availabilityZone} + var begin time.Time + + history, found := d.bucket[instanceZone] + if found { + begin = history.LastSync() + } else { + begin = time.Now().Truncate(cacheWindow) + + history = &History{maxAge: cacheWindow, items: make(api.SpotPriceItems, 0)} + d.bucket[instanceZone] = history + } + + defer history.Housekeep() + defer history.SetLastSync() + + res, err := d.api.DescribeSpotPriceHistory(instanceType, availabilityZone, begin) + if err != nil { + return err + } + + history.Add(res.HistoryItems) + + return nil +} diff --git a/cluster-autoscaler/cloudprovider/aws/price/spot/history.go b/cluster-autoscaler/cloudprovider/aws/price/spot/history.go new file mode 100644 index 000000000000..a56b7f2284c9 --- /dev/null +++ b/cluster-autoscaler/cloudprovider/aws/price/spot/history.go @@ -0,0 +1,122 @@ +/* +Copyright 2017 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package spot + +import ( + "sort" + "sync" + "time" + + "errors" + + "k8s.io/autoscaler/cluster-autoscaler/cloudprovider/aws/api" +) + +// ErrEmptySpotPriceHistory implements the error interface +var ErrEmptySpotPriceHistory = errors.New("empty spot price history") + +// History represents a set of ordered EC2 spot price items +// It implements the sort.Interface +type History struct { + items api.SpotPriceItems + lastSync time.Time + maxAge time.Duration + mu sync.RWMutex +} + +// Slice returns a copy of the internal spot price item list +func (h *History) Slice() api.SpotPriceItems { + h.mu.RLock() + defer h.mu.RUnlock() + + return h.items[:] +} + +// Empty checks whether the history is empty or not +func (h *History) Empty() bool { + return h.Len() == 0 +} + +// Len returns the length of the history +func (h *History) Len() int { + h.mu.RLock() + defer h.mu.RUnlock() + + return h.items.Len() +} + +// Housekeep drops items older than maxAge and sorts the history +func (h *History) Housekeep() { + h.mu.Lock() + defer h.mu.Unlock() + + c := make(api.SpotPriceItems, 0) + + deadEnd := time.Now().Truncate(h.maxAge) + + for _, item := range h.items { + if item.Timestamp.Before(deadEnd) { + continue + } + + c = append(c, item) + } + + sort.Sort(c) + + h.items = c +} + +// Add adds sorted api.SpotPriceItems and sets the last-sync to current time +func (h *History) Add(items api.SpotPriceItems) { + h.mu.Lock() + defer h.mu.Unlock() + + sort.Sort(items) + + h.items = append(h.items, items...) + h.lastSync = time.Now() +} + +// LastItem returns the last item of the history +func (h *History) LastItem() (api.SpotPriceItem, error) { + if h.Empty() { + return api.EmptySpotPriceItem, ErrEmptySpotPriceHistory + } + + idx := h.items.Len() - 1 + + h.mu.RLock() + defer h.mu.RUnlock() + return h.items[idx], nil +} + +// SetLastSync sets last-sync to current time +func (h *History) SetLastSync() { + h.mu.Lock() + defer h.mu.Unlock() + + h.lastSync = time.Now() +} + +// LastSync returns the time of the last sync +func (h *History) LastSync() time.Time { + h.mu.RLock() + defer h.mu.RUnlock() + + return h.lastSync +} diff --git a/cluster-autoscaler/cloudprovider/builder/cloud_provider_builder.go b/cluster-autoscaler/cloudprovider/builder/cloud_provider_builder.go index 9a6ed490aec3..bbe49373ca87 100644 --- a/cluster-autoscaler/cloudprovider/builder/cloud_provider_builder.go +++ b/cluster-autoscaler/cloudprovider/builder/cloud_provider_builder.go @@ -29,7 +29,9 @@ import ( "k8s.io/client-go/tools/clientcmd" kubemarkcontroller "k8s.io/kubernetes/pkg/kubemark" + "github.com/aws/aws-sdk-go/aws/session" "github.com/golang/glog" + "k8s.io/autoscaler/cluster-autoscaler/cloudprovider/aws/price" ) // CloudProviderBuilder builds a cloud provider from all the necessary parameters including the name of a cloud provider e.g. aws, gce @@ -93,6 +95,7 @@ func (b CloudProviderBuilder) Build(discoveryOpts cloudprovider.NodeGroupDiscove if b.cloudProviderFlag == "aws" { var awsManager *aws.AwsManager var awsError error + awsSession := session.New() if b.cloudConfig != "" { config, fileErr := os.Open(b.cloudConfig) if fileErr != nil { @@ -106,7 +109,8 @@ func (b CloudProviderBuilder) Build(discoveryOpts cloudprovider.NodeGroupDiscove if awsError != nil { glog.Fatalf("Failed to create AWS Manager: %v", err) } - cloudProvider, err = aws.BuildAwsCloudProvider(awsManager, discoveryOpts, resourceLimiter) + priceDescriptor := price.NewDescriptor(awsSession) + cloudProvider, err = aws.BuildAwsCloudProvider(awsManager, discoveryOpts, resourceLimiter, priceDescriptor) if err != nil { glog.Fatalf("Failed to create AWS cloud provider: %v", err) } From 56105706d71ab6d27e96e696a5871e87a24f1078 Mon Sep 17 00:00:00 2001 From: Marc Riegel Date: Wed, 22 Nov 2017 23:26:42 +0100 Subject: [PATCH 02/33] gofmt -s --- .../cloudprovider/aws/aws_price_model_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cluster-autoscaler/cloudprovider/aws/aws_price_model_test.go b/cluster-autoscaler/cloudprovider/aws/aws_price_model_test.go index 6d9f3196e7ed..0748ebe62e06 100644 --- a/cluster-autoscaler/cloudprovider/aws/aws_price_model_test.go +++ b/cluster-autoscaler/cloudprovider/aws/aws_price_model_test.go @@ -37,17 +37,17 @@ func TestPriceModel_NodePrice(t *testing.T) { pm := &priceModel{ asgs: &fakeInstanceFinder{ c: map[string]*Asg{ - "node-a": &Asg{ + "node-a": { AwsRef: AwsRef{ Name: "k8s-AutoscalingGroupWorker-AAAAAA", }, }, - "node-b": &Asg{ + "node-b": { AwsRef: AwsRef{ Name: "k8s-AutoscalingGroupWorker-BBBBBB", }, }, - "node-c": &Asg{ + "node-c": { AwsRef: AwsRef{ Name: "k8s-AutoscalingGroupWorker-CCCCCC", }, From 8a923bcc1bbc5b55bfc33fdce93b3c7a4dad8ce7 Mon Sep 17 00:00:00 2001 From: Marc Riegel Date: Thu, 23 Nov 2017 11:19:23 +0100 Subject: [PATCH 03/33] Fixed broken instance-info test; Added areness of tenancy and effectivity of the offer provided by the aws pricing api --- .../cloudprovider/aws/api/instance_info.go | 102 ++++++++++++------ .../aws/api/instance_info_test.go | 9 +- 2 files changed, 72 insertions(+), 39 deletions(-) diff --git a/cluster-autoscaler/cloudprovider/aws/api/instance_info.go b/cluster-autoscaler/cloudprovider/aws/api/instance_info.go index aa74acf084f4..bb8749e9e772 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/instance_info.go +++ b/cluster-autoscaler/cloudprovider/aws/api/instance_info.go @@ -28,8 +28,12 @@ import ( "time" ) -const instanceInfoCacheMaxAge = time.Hour * 6 -const awsPricingAPIURLTemplate = "https://pricing.us-east-1.amazonaws.com/offers/v1.0/aws/AmazonEC2/current/%s/index.json" +const ( + instanceInfoCacheMaxAge = time.Hour * 6 + awsPricingAPIURLTemplate = "https://pricing.us-east-1.amazonaws.com/offers/v1.0/aws/AmazonEC2/current/%s/index.json" + instanceOperatingSystemLinux = "Linux" + instanceTenancyShared = "Shared" +) // InstanceInfo holds AWS EC2 instance information type InstanceInfo struct { @@ -106,56 +110,86 @@ func (s *instanceInfoService) sync(availabilityZone string) error { } instances := make([]InstanceInfo, 0) + now := time.Now() for _, product := range response.Products { sku := product.SKU attr := product.Attributes - if attr.InstanceType != "" { - i := InstanceInfo{ - InstanceType: attr.InstanceType, - } + // TODO find better solution for the case of windows installations for instance. + if attr.OperatingSystem != instanceOperatingSystemLinux { + continue + } - var err error - if attr.Memory != "" && attr.Memory != "NA" { - if i.MemoryMb, err = parseMemory(attr.Memory); err != nil { - return fmt.Errorf("parser error %v", err) - } + // We do actually only support Shared tenancy instances. + // See for more information: http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-purchasing-options.html + if attr.Tenancy != instanceTenancyShared { + continue + } + + if len(attr.InstanceType) == 0 { + continue + } + + i := InstanceInfo{ + InstanceType: attr.InstanceType, + } + + var err error + if attr.Memory != "" && attr.Memory != "NA" { + if i.MemoryMb, err = parseMemory(attr.Memory); err != nil { + return fmt.Errorf("parser error %v", err) } + } - if attr.VCPU != "" { - if i.VCPU, err = parseCPU(attr.VCPU); err != nil { - return fmt.Errorf("parser error %v", err) - } + if attr.VCPU != "" { + if i.VCPU, err = parseCPU(attr.VCPU); err != nil { + return fmt.Errorf("parser error %v", err) } - if attr.GPU != "" { - if i.GPU, err = parseCPU(attr.GPU); err != nil { - return fmt.Errorf("parser error %v", err) - } + } + if attr.GPU != "" { + if i.GPU, err = parseCPU(attr.GPU); err != nil { + return fmt.Errorf("parser error %v", err) + } + } + + for priceSKU, offers := range response.Terms.OnDemand { + if priceSKU != sku { + continue } - for priceSKU, offers := range response.Terms.OnDemand { - if priceSKU != sku { + var lastOfferTime time.Time + var lastOfferPrice float64 + + for _, offer := range offers { + if offer.EffectiveDate.After(now) { continue } - for _, offer := range offers { - for _, price := range offer.PriceDimensions { - if price.EndRange != "Inf" || price.Unit != "Hrs" { - continue - } - p, err := strconv.ParseFloat(price.PricePerUnit.USD, 64) - if err != nil { - return fmt.Errorf("error parsing price for SKU %s [%s] %v", sku, price.PricePerUnit.USD, err) - } - - i.OnDemandPrice = p + for _, price := range offer.PriceDimensions { + if price.EndRange != "Inf" || price.Unit != "Hrs" { + continue + } + p, err := strconv.ParseFloat(price.PricePerUnit.USD, 64) + if err != nil { + return fmt.Errorf("error parsing price for SKU %s [%s] %v", sku, price.PricePerUnit.USD, err) + } + + if p == 0.0 { + continue + } + + if lastOfferTime.IsZero() || lastOfferTime.After(offer.EffectiveDate) { + lastOfferTime = offer.EffectiveDate + lastOfferPrice = p } } } - instances = append(instances, i) + i.OnDemandPrice = lastOfferPrice } + + instances = append(instances, i) } bucket.Clear() @@ -252,6 +286,7 @@ type productOffers map[string]productOffer type productOffer struct { OfferTermCode string `json:"offerTermCode"` + EffectiveDate time.Time `json:"effectiveDate"` SKU string `json:"sku"` PriceDimensions map[string]productPriceDimension `json:"priceDimensions"` } @@ -275,6 +310,7 @@ type product struct { } type productAttributes struct { + Tenancy string `json:"tenancy"` InstanceType string `json:"instanceType"` VCPU string `json:"vcpu"` Memory string `json:"memory"` diff --git a/cluster-autoscaler/cloudprovider/aws/api/instance_info_test.go b/cluster-autoscaler/cloudprovider/aws/api/instance_info_test.go index 470454794f36..701f45114c74 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/instance_info_test.go +++ b/cluster-autoscaler/cloudprovider/aws/api/instance_info_test.go @@ -48,9 +48,6 @@ func TestInstanceInfoService_DescribeInstanceInfo(t *testing.T) { usWestOneURL, err := url.Parse(fmt.Sprintf(awsPricingAPIURLTemplate, "us-west-1")) assert.NoError(t, err) - //usWestTwoURL, err := url.Parse(fmt.Sprintf(awsPricingAPIURLTemplate, "us-west-2")) - //assert.NoError(t, err) - mc := &mockClient{m: make(map[string]mockResponse)} mc.m[usEastOneURL.Path] = mockResponse{pricingBody, 200} mc.m[usWestOneURL.Path] = mockResponse{[]byte("some non-json stuff"), 200} @@ -69,7 +66,7 @@ func TestInstanceInfoService_DescribeInstanceInfo(t *testing.T) { "m4.xlarge", "us-east-1", false, - 0, + 0.2, 4, }, { // error case: unknown availability zone @@ -103,9 +100,9 @@ func TestInstanceInfoService_DescribeInstanceInfo(t *testing.T) { assert.Error(t, err, fmt.Sprintf("case %d", n)) } else { assert.NoError(t, err, fmt.Sprintf("case %d", n)) - assert.Equal(t, tc.expectOnDemandPrice, info.OnDemandPrice) - assert.Equal(t, tc.expectCPU, info.VCPU) assert.Equal(t, tc.instanceType, info.InstanceType) + assert.Equal(t, tc.expectCPU, info.VCPU) + assert.Equal(t, tc.expectOnDemandPrice, info.OnDemandPrice) } } From bb80b4f3636e1441d7fb3c03c5bf132ba7051611 Mon Sep 17 00:00:00 2001 From: Marc Riegel Date: Thu, 23 Nov 2017 11:26:17 +0100 Subject: [PATCH 04/33] Add comments to conversion functions to clarify the use --- cluster-autoscaler/cloudprovider/aws/api/converter.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/cluster-autoscaler/cloudprovider/aws/api/converter.go b/cluster-autoscaler/cloudprovider/aws/api/converter.go index 8b3bfb929f4c..789c283cbe74 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/converter.go +++ b/cluster-autoscaler/cloudprovider/aws/api/converter.go @@ -18,6 +18,8 @@ package api import "strconv" +// stringRefToFloat64 converts fields of type *float64 to float64 (fallback to zero value if nil) +// it's mostly used to handle aws api responds nicely func stringRefToFloat64(p *string) (float64, error) { if p == nil { return 0, nil @@ -25,6 +27,8 @@ func stringRefToFloat64(p *string) (float64, error) { return strconv.ParseFloat(*p, 64) } +// stringRefToStringSlice converts ...*string to []string (fallback to zero value if nil) +// it's mostly used to handle aws api responds nicely func stringRefToStringSlice(in ...*string) []string { vs := make([]string, len(in)) @@ -35,6 +39,8 @@ func stringRefToStringSlice(in ...*string) []string { return vs } +// stringToStringSliceRef converts ...string to []*string +// it's mostly used to handle aws api responds nicely func stringToStringSliceRef(in ...string) []*string { vs := make([]*string, len(in)) From 56d8fd3ec4fd4feff21cbf51800b381cc0e0733c Mon Sep 17 00:00:00 2001 From: Marc Riegel Date: Thu, 23 Nov 2017 13:06:15 +0100 Subject: [PATCH 05/33] Added field comments to EC2LaunchConfiguration --- .../cloudprovider/aws/api/ec2_launchconfiguration.go | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration.go b/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration.go index 4cbaabfc53e6..9c4f960882dc 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration.go +++ b/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration.go @@ -28,10 +28,14 @@ type awsEC2LaunchConfigurationService interface { // EC2LaunchConfiguration holds AWS EC2 Launch Configuration information type EC2LaunchConfiguration struct { + // HasSpotMarkedBid is true if the launch configuration uses the spot marked HasSpotMarkedBid bool - SpotPrice float64 - Name string - InstanceType string + // SpotPrice is the bid price on the spot marked the autoscaling group uses + SpotPrice float64 + // Name of the launch configuration + Name string + // InstanceType of the underlying instance described in the launch configuration + InstanceType string } // NewEC2LaunchConfigurationService is the constructor of launchConfigurationService which is a wrapper for From 2924a1a5331f96cebd315d0a310d47eaa74ae059 Mon Sep 17 00:00:00 2001 From: Marc Riegel Date: Thu, 23 Nov 2017 14:13:25 +0100 Subject: [PATCH 06/33] Added comments and apot review suggestions --- .../cloudprovider/aws/api/ec2_autoscaling.go | 7 +++- .../aws/api/ec2_autoscaling_test.go | 16 ++++---- .../aws/api/ec2_launchconfiguration_test.go | 17 ++------- .../cloudprovider/aws/api/instance_info.go | 37 +++++++++++-------- .../aws/api/instance_spot_price_history.go | 8 +++- .../cloudprovider/aws/api/interfaces.go | 4 ++ .../cloudprovider/aws/aws_manager.go | 1 + .../cloudprovider/aws/price/descriptor.go | 1 + .../aws/price/ondemand/descriptor.go | 1 + .../aws/price/spot/descriptor.go | 3 ++ .../cloudprovider/aws/price/spot/history.go | 30 +++++++-------- 11 files changed, 69 insertions(+), 56 deletions(-) diff --git a/cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling.go b/cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling.go index b28e0e6051f9..c6980ec8836b 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling.go +++ b/cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling.go @@ -28,9 +28,12 @@ type awsEC2AutoscalingGroupService interface { // EC2AutoscalingGroup holds AWS Autoscaling Group information type EC2AutoscalingGroup struct { - Name string + // Name of the autoscaling group + Name string + // LaunchConfigurationName describes the name of the corresponding launch configuration LaunchConfigurationName string - AvailabilityZones []string + // AvailabilityZones that are used by this autoscaling group + AvailabilityZones []string } // NewEC2AutoscalingService is the constructor of autoscalingService which is a wrapper for the AWS EC2 diff --git a/cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling_test.go b/cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling_test.go index 6dc0effb2574..29b9204b2c85 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling_test.go +++ b/cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling_test.go @@ -35,15 +35,13 @@ func TestAutoscalingService_DescribeAutoscalingGroup(t *testing.T) { } type cases []testCase - var ( - asName1 = "k8s-AutoscalingGroupWorker-TTTTTTTTTTTTT" - asName2 = "k8s-AutoscalingGroupWorker-YYYYYYYYYYYYY" - asName3 = "k8s-AutoscalingGroupWorker-XXXXXXXXXXXXX" - lcName1 = "k8s-LaunchConfigurationWorker-TTTTTTTTTTTTT" - lcName2 = "k8s-LaunchConfigurationWorker-YYYYYYYYYYYYY" - azName1 = "us-east-1a" - azName2 = "us-east-1b" - ) + asName1 := "k8s-AutoscalingGroupWorker-TTTTTTTTTTTTT" + asName2 := "k8s-AutoscalingGroupWorker-YYYYYYYYYYYYY" + asName3 := "k8s-AutoscalingGroupWorker-XXXXXXXXXXXXX" + lcName1 := "k8s-LaunchConfigurationWorker-TTTTTTTTTTTTT" + lcName2 := "k8s-LaunchConfigurationWorker-YYYYYYYYYYYYY" + azName1 := "us-east-1a" + azName2 := "us-east-1b" service := NewEC2AutoscalingService(newFakeAutoscalingService( newAutoscalingMock(asName1, lcName1, azName1, azName2), diff --git a/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration_test.go b/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration_test.go index 944475488688..e6a2d754122f 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration_test.go +++ b/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration_test.go @@ -35,13 +35,9 @@ func TestLaunchConfigurationService_DescribeLaunchConfiguration(t *testing.T) { } type cases []testCase - var ( - lcName1 = "k8s-LaunchConfigurationWorker-TTTTTTTTTTTTT" - lcName2 = "k8s-LaunchConfigurationWorker-YYYYYYYYYYYYY" - lcName3 = "k8s-LaunchConfigurationWorker-XXXXXXXXXXXXX" - ) - - //NewEC2LaunchConfigurationService() + lcName1 := "k8s-LaunchConfigurationWorker-TTTTTTTTTTTTT" + lcName2 := "k8s-LaunchConfigurationWorker-YYYYYYYYYYYYY" + lcName3 := "k8s-LaunchConfigurationWorker-XXXXXXXXXXXXX" tcs := cases{ { // good case: common case @@ -75,12 +71,7 @@ func TestLaunchConfigurationService_DescribeLaunchConfiguration(t *testing.T) { } } -func newLCFakeService( - name string, - instanceType string, - tokens []string, - err error, -) *fakeLCService { +func newLCFakeService(name string, instanceType string, tokens []string, err error) *fakeLCService { return &fakeLCService{ mocks: map[string]*autoscaling.LaunchConfiguration{ name: { diff --git a/cluster-autoscaler/cloudprovider/aws/api/instance_info.go b/cluster-autoscaler/cloudprovider/aws/api/instance_info.go index bb8749e9e772..c514a7cba849 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/instance_info.go +++ b/cluster-autoscaler/cloudprovider/aws/api/instance_info.go @@ -37,11 +37,16 @@ const ( // InstanceInfo holds AWS EC2 instance information type InstanceInfo struct { - InstanceType string + // InstanceType of the described instance + InstanceType string + // OnDemandPrice in USD of the ec2 instance OnDemandPrice float64 - VCPU int64 - MemoryMb int64 - GPU int64 + // VCPU count of this instance + VCPU int64 + // MemoryMb size in megabytes of this instance + MemoryMb int64 + // GPU count of this instance + GPU int64 } type httpClient interface { @@ -59,7 +64,7 @@ func NewEC2InstanceInfoService(client httpClient) *instanceInfoService { type instanceInfoService struct { client httpClient cache instanceInfoCache - mu sync.RWMutex + sync.RWMutex } // DescribeInstanceInfo returns the corresponding aws instance info by given instance type and availability zone. @@ -90,8 +95,8 @@ func (s *instanceInfoService) shouldSync(availabilityZone string) bool { } func (s *instanceInfoService) sync(availabilityZone string) error { - s.mu.Lock() - defer s.mu.Unlock() + s.Lock() + defer s.Unlock() bucket, found := s.cache[availabilityZone] if !found { @@ -239,36 +244,36 @@ func (s *instanceInfoService) fetch(availabilityZone string, etag string) (*resp type instanceInfoCache map[string]*regionalInstanceInfoBucket type regionalInstanceInfoBucket struct { + sync.RWMutex lastSync time.Time ETag string - mu sync.RWMutex info []InstanceInfo } func (b *regionalInstanceInfoBucket) SetLastSync() { - b.mu.Lock() - defer b.mu.Unlock() + b.Lock() + defer b.Unlock() b.lastSync = time.Now() } func (b *regionalInstanceInfoBucket) LastSync() time.Time { - b.mu.RLock() - defer b.mu.RUnlock() + b.RLock() + defer b.RUnlock() return b.lastSync } func (b *regionalInstanceInfoBucket) Clear() { - b.mu.Lock() - defer b.mu.Unlock() + b.Lock() + defer b.Unlock() b.info = make([]InstanceInfo, 0) } func (b *regionalInstanceInfoBucket) Add(info ...InstanceInfo) { - b.mu.Lock() - defer b.mu.Unlock() + b.Lock() + defer b.Unlock() b.info = append(b.info, info...) } diff --git a/cluster-autoscaler/cloudprovider/aws/api/instance_spot_price_history.go b/cluster-autoscaler/cloudprovider/aws/api/instance_spot_price_history.go index 295a0ff9e0c4..df5c2feb4f09 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/instance_spot_price_history.go +++ b/cluster-autoscaler/cloudprovider/aws/api/instance_spot_price_history.go @@ -32,6 +32,7 @@ type awsSpotPriceHistoryService interface { // SpotPriceHistory is the output returned by DescribeSpotPriceHistory type SpotPriceHistory struct { + // HistoryItems is a slice of spot price items that implements sort.Interface HistoryItems SpotPriceItems } @@ -85,22 +86,27 @@ func newSpotPriceItem(price float64, ts time.Time) SpotPriceItem { // SpotPriceItem consists of a timestamp and a price type SpotPriceItem struct { + // Timestamp indicating the occurrence of the price change Timestamp time.Time - Price float64 + // Price of the spot instance at given time + Price float64 } // SpotPriceItems is a list of SpotPriceItem // Implements sort.Interface type SpotPriceItems []SpotPriceItem +// Len of spot price items func (sps SpotPriceItems) Len() int { return len(sps) } +// Less returns true if the spot price on the left side is younger than the right one func (sps SpotPriceItems) Less(i, j int) bool { return sps[i].Timestamp.Before(sps[j].Timestamp) } +// Swap the spot price elements of the given idx func (sps SpotPriceItems) Swap(i, j int) { sps[i], sps[j] = sps[j], sps[i] } diff --git a/cluster-autoscaler/cloudprovider/aws/api/interfaces.go b/cluster-autoscaler/cloudprovider/aws/api/interfaces.go index 6246bc088e71..adcb36b3d0c2 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/interfaces.go +++ b/cluster-autoscaler/cloudprovider/aws/api/interfaces.go @@ -20,20 +20,24 @@ import "time" // InstanceInfoDescriber is an interface to describe instance information type InstanceInfoDescriber interface { + // DescribeInstanceInfo returns the corresponding aws instance info by given instance type and availability zone. DescribeInstanceInfo(instanceType string, availabilityZone string) (*InstanceInfo, error) } // SpotPriceHistoryDescriber is an interface to describe spot price history information type SpotPriceHistoryDescriber interface { + // DescribeSpotPriceHistory returns the spot price history for given instance type DescribeSpotPriceHistory(instanceType string, availabilityZone string, startTime time.Time) (*SpotPriceHistory, error) } // LaunchConfigurationDescriber is an interface to describe aws ec2 launch configurations type LaunchConfigurationDescriber interface { + // DescribeLaunchConfiguration returns the corresponding launch configuration by the given launch configuration name. DescribeLaunchConfiguration(launchConfigurationName string) (*EC2LaunchConfiguration, error) } // AutoscalingGroupDescriber is an interface to describe aws ec2 autoscaling groups type AutoscalingGroupDescriber interface { + // DescribeAutoscalingGroup returns the corresponding EC2AutoscalingGroup by the given autoscaling group name DescribeAutoscalingGroup(autoscalingGroupName string) (*EC2AutoscalingGroup, error) } diff --git a/cluster-autoscaler/cloudprovider/aws/aws_manager.go b/cluster-autoscaler/cloudprovider/aws/aws_manager.go index 2f0c5d6f1157..a0cb5d795deb 100644 --- a/cluster-autoscaler/cloudprovider/aws/aws_manager.go +++ b/cluster-autoscaler/cloudprovider/aws/aws_manager.go @@ -86,6 +86,7 @@ func createAWSManagerInternal(configReader io.Reader, service *autoScalingWrappe interrupt: make(chan struct{}), } + // TODO should this be moved inside asgs go wait.Until(func() { manager.asgs.cacheMutex.Lock() defer manager.asgs.cacheMutex.Unlock() diff --git a/cluster-autoscaler/cloudprovider/aws/price/descriptor.go b/cluster-autoscaler/cloudprovider/aws/price/descriptor.go index ee19d5189279..a927e42a5d9f 100644 --- a/cluster-autoscaler/cloudprovider/aws/price/descriptor.go +++ b/cluster-autoscaler/cloudprovider/aws/price/descriptor.go @@ -29,6 +29,7 @@ import ( // ShapeDescriptor describes an interface to appraise an instance price of any shape type ShapeDescriptor interface { + // Price calls, depending whether the asg has a spot price or not, the spot or the on-demand price descriptor Price(asgName string) (price float64, err error) } diff --git a/cluster-autoscaler/cloudprovider/aws/price/ondemand/descriptor.go b/cluster-autoscaler/cloudprovider/aws/price/ondemand/descriptor.go index 4240571976e3..b815e991432b 100644 --- a/cluster-autoscaler/cloudprovider/aws/price/ondemand/descriptor.go +++ b/cluster-autoscaler/cloudprovider/aws/price/ondemand/descriptor.go @@ -25,6 +25,7 @@ import ( // Descriptor describes the price interface type Descriptor interface { + // Price returns the current instance price per hour in USD. Price(instanceType string, availabilityZones ...string) (float64, error) } diff --git a/cluster-autoscaler/cloudprovider/aws/price/spot/descriptor.go b/cluster-autoscaler/cloudprovider/aws/price/spot/descriptor.go index d721b6476aae..d5efd9e5577b 100644 --- a/cluster-autoscaler/cloudprovider/aws/price/spot/descriptor.go +++ b/cluster-autoscaler/cloudprovider/aws/price/spot/descriptor.go @@ -39,6 +39,9 @@ type spotPriceBucket map[instanceTypeInZone]*History // Descriptor describes the price interface type Descriptor interface { + // Price returns the current price, average over the availability zones but the max value within 30 minutes of a zone, + // of the given instanceType. + // It returns an error if the current price is greater than the bid price. Price(instanceType string, bidPrice float64, availabilityZones ...string) (float64, error) } diff --git a/cluster-autoscaler/cloudprovider/aws/price/spot/history.go b/cluster-autoscaler/cloudprovider/aws/price/spot/history.go index a56b7f2284c9..ed8ebc096c71 100644 --- a/cluster-autoscaler/cloudprovider/aws/price/spot/history.go +++ b/cluster-autoscaler/cloudprovider/aws/price/spot/history.go @@ -35,13 +35,13 @@ type History struct { items api.SpotPriceItems lastSync time.Time maxAge time.Duration - mu sync.RWMutex + sync.RWMutex } // Slice returns a copy of the internal spot price item list func (h *History) Slice() api.SpotPriceItems { - h.mu.RLock() - defer h.mu.RUnlock() + h.RLock() + defer h.RUnlock() return h.items[:] } @@ -53,16 +53,16 @@ func (h *History) Empty() bool { // Len returns the length of the history func (h *History) Len() int { - h.mu.RLock() - defer h.mu.RUnlock() + h.RLock() + defer h.RUnlock() return h.items.Len() } // Housekeep drops items older than maxAge and sorts the history func (h *History) Housekeep() { - h.mu.Lock() - defer h.mu.Unlock() + h.Lock() + defer h.Unlock() c := make(api.SpotPriceItems, 0) @@ -83,8 +83,8 @@ func (h *History) Housekeep() { // Add adds sorted api.SpotPriceItems and sets the last-sync to current time func (h *History) Add(items api.SpotPriceItems) { - h.mu.Lock() - defer h.mu.Unlock() + h.Lock() + defer h.Unlock() sort.Sort(items) @@ -100,23 +100,23 @@ func (h *History) LastItem() (api.SpotPriceItem, error) { idx := h.items.Len() - 1 - h.mu.RLock() - defer h.mu.RUnlock() + h.RLock() + defer h.RUnlock() return h.items[idx], nil } // SetLastSync sets last-sync to current time func (h *History) SetLastSync() { - h.mu.Lock() - defer h.mu.Unlock() + h.Lock() + defer h.Unlock() h.lastSync = time.Now() } // LastSync returns the time of the last sync func (h *History) LastSync() time.Time { - h.mu.RLock() - defer h.mu.RUnlock() + h.RLock() + defer h.RUnlock() return h.lastSync } From 51d7a9ffff5e9dd7d26d028e1a880d4de278365f Mon Sep 17 00:00:00 2001 From: Marc Riegel Date: Sat, 25 Nov 2017 10:27:17 +0100 Subject: [PATCH 07/33] Fixed awsCloudProvider > priceModel binding --- .../cloudprovider/aws/aws_cloud_provider.go | 8 ++++---- .../cloudprovider/aws/price/spot/descriptor.go | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go b/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go index 7a850fe35c79..85734c79b49d 100644 --- a/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go +++ b/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go @@ -34,7 +34,7 @@ import ( type awsCloudProvider struct { awsManager *AwsManager asgs []*Asg - priceDescriptor price.ShapeDescriptor + priceModel cloudprovider.PricingModel resourceLimiter *cloudprovider.ResourceLimiter } @@ -84,7 +84,7 @@ func buildAutoDiscoveringProvider(awsManager *AwsManager, spec string, resourceL awsManager: awsManager, asgs: make([]*Asg, 0), resourceLimiter: resourceLimiter, - priceDescriptor: descriptor, + priceModel: NewPriceModel(awsManager.asgs, descriptor), } for _, asg := range asgs { aws.addAsg(buildAsg(aws.awsManager, int(*asg.MinSize), int(*asg.MaxSize), *asg.AutoScalingGroupName)) @@ -97,7 +97,7 @@ func buildStaticallyDiscoveringProvider(awsManager *AwsManager, specs []string, awsManager: awsManager, asgs: make([]*Asg, 0), resourceLimiter: resourceLimiter, - priceDescriptor: descriptor, + priceModel: NewPriceModel(awsManager.asgs, descriptor), } for _, spec := range specs { if err := aws.addNodeGroup(spec); err != nil { @@ -157,7 +157,7 @@ func (aws *awsCloudProvider) NodeGroupForNode(node *apiv1.Node) (cloudprovider.N // Pricing returns pricing model for this cloud provider or error if not available. func (aws *awsCloudProvider) Pricing() (cloudprovider.PricingModel, errors.AutoscalerError) { // aws.awsManager.asgs.FindForInstance() - return &priceModel{}, nil + return aws.priceModel, nil } // GetAvailableMachineTypes get all machine types that can be requested from the cloud provider. diff --git a/cluster-autoscaler/cloudprovider/aws/price/spot/descriptor.go b/cluster-autoscaler/cloudprovider/aws/price/spot/descriptor.go index d5efd9e5577b..746ab6082553 100644 --- a/cluster-autoscaler/cloudprovider/aws/price/spot/descriptor.go +++ b/cluster-autoscaler/cloudprovider/aws/price/spot/descriptor.go @@ -27,7 +27,7 @@ import ( const ( lookupWindow = time.Minute * 30 cacheWindow = time.Hour * 24 * 3 - cacheMaxAge = time.Minute * 5 + cacheMaxAge = time.Second * 30 ) type instanceTypeInZone struct { From 421da33336fec31762542da64d80e35bacca145b Mon Sep 17 00:00:00 2001 From: Marc Riegel Date: Sat, 25 Nov 2017 17:48:39 +0100 Subject: [PATCH 08/33] Add ec2 instance information sync info logging --- .../cloudprovider/aws/api/instance_info.go | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/cluster-autoscaler/cloudprovider/aws/api/instance_info.go b/cluster-autoscaler/cloudprovider/aws/api/instance_info.go index c514a7cba849..909d08fad92f 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/instance_info.go +++ b/cluster-autoscaler/cloudprovider/aws/api/instance_info.go @@ -26,6 +26,8 @@ import ( "strings" "sync" "time" + + "github.com/golang/glog" ) const ( @@ -71,6 +73,7 @@ type instanceInfoService struct { func (s *instanceInfoService) DescribeInstanceInfo(instanceType string, availabilityZone string) (*InstanceInfo, error) { if s.shouldSync(availabilityZone) { if err := s.sync(availabilityZone); err != nil { + // TODO may this be tolerated for resilience return nil, fmt.Errorf("failed to sync aws product and price information: %v", err) } } @@ -98,6 +101,8 @@ func (s *instanceInfoService) sync(availabilityZone string) error { s.Lock() defer s.Unlock() + start := time.Now() + bucket, found := s.cache[availabilityZone] if !found { bucket = new(regionalInstanceInfoBucket) @@ -109,6 +114,10 @@ func (s *instanceInfoService) sync(availabilityZone string) error { return err } + defer func() { + glog.V(4).Infof("Synchronized aws ec2 instance information for availability zone %s - took %s", availabilityZone, time.Now().Sub(start).String()) + }() + if response == nil { bucket.SetLastSync() return nil From 4e5078c035cc79cfebb5cc4bdb12b3e370d0f4f8 Mon Sep 17 00:00:00 2001 From: Marc Riegel Date: Sat, 2 Dec 2017 19:14:13 +0100 Subject: [PATCH 09/33] Removed `goto` statement --- .../aws/api/ec2_autoscaling_test.go | 49 +++++++++++-------- 1 file changed, 29 insertions(+), 20 deletions(-) diff --git a/cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling_test.go b/cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling_test.go index 29b9204b2c85..b62602aea924 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling_test.go +++ b/cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling_test.go @@ -116,29 +116,15 @@ type fakeAutoscalingService struct { func (lcs *fakeAutoscalingService) DescribeAutoScalingGroups(input *autoscaling.DescribeAutoScalingGroupsInput) (output *autoscaling.DescribeAutoScalingGroupsOutput, err error) { output = new(autoscaling.DescribeAutoScalingGroupsOutput) - if len(lcs.tokens) != 0 { - if input.NextToken == nil { - output.NextToken = &lcs.tokens[0] - return - } - - for i, token := range lcs.tokens { - if *input.NextToken == token { - next := i + 1 - if next < len(lcs.tokens) { - nextToken := lcs.tokens[next] - output.NextToken = &nextToken - } else { - goto respond - } - return - } - } + output.NextToken, err = nextToken(lcs.tokens, input.NextToken) + if err != nil { + return + } - return nil, errors.New("invalid token") + if output.NextToken != nil { + return } -respond: output.AutoScalingGroups = make([]*autoscaling.Group, 0) for _, name := range input.AutoScalingGroupNames { if item, found := lcs.mocks[*name]; found { @@ -148,3 +134,26 @@ respond: return } + +func nextToken(tokenChain []string, userToken *string) (*string, error) { + tokenChainLen := len(tokenChain) + if tokenChainLen == 0 { + return nil, nil + } + + if userToken == nil { + return &tokenChain[0], nil + } + + for i, token := range tokenChain { + if *userToken == token { + next := i + 1 + if next < tokenChainLen { + return &tokenChain[next], nil + } + return nil, nil + } + } + + return nil, errors.New("invalid token") +} From 1f0774be75ac4f93b6f2aba99a4d9e2c41d54642 Mon Sep 17 00:00:00 2001 From: Marc Riegel Date: Tue, 5 Dec 2017 14:30:04 +0100 Subject: [PATCH 10/33] Add new aws ec2 instance types --- .../cloudprovider/aws/ec2_instance_types.go | 72 +++++++++++++++++++ 1 file changed, 72 insertions(+) diff --git a/cluster-autoscaler/cloudprovider/aws/ec2_instance_types.go b/cluster-autoscaler/cloudprovider/aws/ec2_instance_types.go index 2e15fa5b00bb..83075cf12dec 100644 --- a/cluster-autoscaler/cloudprovider/aws/ec2_instance_types.go +++ b/cluster-autoscaler/cloudprovider/aws/ec2_instance_types.go @@ -261,6 +261,36 @@ var InstanceTypes = map[string]*instanceType{ MemoryMb: 249856, GPU: 2, }, + "h1": { + InstanceType: "h1", + VCPU: 64, + MemoryMb: 0, + GPU: 0, + }, + "h1.16xlarge": { + InstanceType: "h1.16xlarge", + VCPU: 64, + MemoryMb: 262144, + GPU: 0, + }, + "h1.2xlarge": { + InstanceType: "h1.2xlarge", + VCPU: 8, + MemoryMb: 32768, + GPU: 0, + }, + "h1.4xlarge": { + InstanceType: "h1.4xlarge", + VCPU: 16, + MemoryMb: 65536, + GPU: 0, + }, + "h1.8xlarge": { + InstanceType: "h1.8xlarge", + VCPU: 32, + MemoryMb: 131072, + GPU: 0, + }, "hs1.8xlarge": { InstanceType: "hs1.8xlarge", VCPU: 17, @@ -453,6 +483,48 @@ var InstanceTypes = map[string]*instanceType{ MemoryMb: 16384, GPU: 0, }, + "m5": { + InstanceType: "m5", + VCPU: 96, + MemoryMb: 0, + GPU: 0, + }, + "m5.12xlarge": { + InstanceType: "m5.12xlarge", + VCPU: 48, + MemoryMb: 196608, + GPU: 0, + }, + "m5.24xlarge": { + InstanceType: "m5.24xlarge", + VCPU: 96, + MemoryMb: 393216, + GPU: 0, + }, + "m5.2xlarge": { + InstanceType: "m5.2xlarge", + VCPU: 8, + MemoryMb: 32768, + GPU: 0, + }, + "m5.4xlarge": { + InstanceType: "m5.4xlarge", + VCPU: 16, + MemoryMb: 65536, + GPU: 0, + }, + "m5.large": { + InstanceType: "m5.large", + VCPU: 2, + MemoryMb: 8192, + GPU: 0, + }, + "m5.xlarge": { + InstanceType: "m5.xlarge", + VCPU: 4, + MemoryMb: 16384, + GPU: 0, + }, "p2": { InstanceType: "p2", VCPU: 64, From 88f70342f015b336e14c0664deac46604f63ea28 Mon Sep 17 00:00:00 2001 From: Marc Riegel Date: Thu, 4 Jan 2018 14:55:08 +0100 Subject: [PATCH 11/33] Fixed OnDemand price descriptor to use aws regions instead of availability zones --- .../cloudprovider/aws/api/instance_info.go | 28 +++++++++---------- .../aws/api/instance_info_test.go | 6 ++-- .../aws/api/instance_spot_price_history.go | 2 +- .../cloudprovider/aws/api/interfaces.go | 4 +-- .../aws/price/ondemand/descriptor.go | 9 ++++-- .../aws/price/ondemand/descriptor_test.go | 18 ++++++------ 6 files changed, 36 insertions(+), 31 deletions(-) diff --git a/cluster-autoscaler/cloudprovider/aws/api/instance_info.go b/cluster-autoscaler/cloudprovider/aws/api/instance_info.go index c514a7cba849..e86fc3bb364c 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/instance_info.go +++ b/cluster-autoscaler/cloudprovider/aws/api/instance_info.go @@ -67,26 +67,26 @@ type instanceInfoService struct { sync.RWMutex } -// DescribeInstanceInfo returns the corresponding aws instance info by given instance type and availability zone. -func (s *instanceInfoService) DescribeInstanceInfo(instanceType string, availabilityZone string) (*InstanceInfo, error) { - if s.shouldSync(availabilityZone) { - if err := s.sync(availabilityZone); err != nil { +// DescribeInstanceInfo returns the corresponding aws instance info by given instance type and region. +func (s *instanceInfoService) DescribeInstanceInfo(instanceType string, region string) (*InstanceInfo, error) { + if s.shouldSync(region) { + if err := s.sync(region); err != nil { return nil, fmt.Errorf("failed to sync aws product and price information: %v", err) } } - if bucket, found := s.cache[availabilityZone]; found { + if bucket, found := s.cache[region]; found { for _, info := range bucket.info { if info.InstanceType == instanceType { return &info, nil } } } - return nil, fmt.Errorf("instance info not available for instance type %s in zone %s", instanceType, availabilityZone) + return nil, fmt.Errorf("instance info not available for instance type %s in region %s", instanceType, region) } -func (s *instanceInfoService) shouldSync(availabilityZone string) bool { - bucket, found := s.cache[availabilityZone] +func (s *instanceInfoService) shouldSync(region string) bool { + bucket, found := s.cache[region] if !found { return true } @@ -94,17 +94,17 @@ func (s *instanceInfoService) shouldSync(availabilityZone string) bool { return bucket.LastSync().Before(time.Now().Truncate(instanceInfoCacheMaxAge)) } -func (s *instanceInfoService) sync(availabilityZone string) error { +func (s *instanceInfoService) sync(region string) error { s.Lock() defer s.Unlock() - bucket, found := s.cache[availabilityZone] + bucket, found := s.cache[region] if !found { bucket = new(regionalInstanceInfoBucket) - s.cache[availabilityZone] = bucket + s.cache[region] = bucket } - response, err := s.fetch(availabilityZone, bucket.ETag) + response, err := s.fetch(region, bucket.ETag) if err != nil { return err } @@ -204,8 +204,8 @@ func (s *instanceInfoService) sync(availabilityZone string) error { return nil } -func (s *instanceInfoService) fetch(availabilityZone string, etag string) (*response, error) { - url := fmt.Sprintf(awsPricingAPIURLTemplate, availabilityZone) +func (s *instanceInfoService) fetch(region string, etag string) (*response, error) { + url := fmt.Sprintf(awsPricingAPIURLTemplate, region) req, err := http.NewRequest("GET", url, nil) diff --git a/cluster-autoscaler/cloudprovider/aws/api/instance_info_test.go b/cluster-autoscaler/cloudprovider/aws/api/instance_info_test.go index 701f45114c74..ffc91393bd22 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/instance_info_test.go +++ b/cluster-autoscaler/cloudprovider/aws/api/instance_info_test.go @@ -54,7 +54,7 @@ func TestInstanceInfoService_DescribeInstanceInfo(t *testing.T) { type testCase struct { instanceType string - availabilityZone string + region string expectError bool expectOnDemandPrice float64 expectCPU int64 @@ -69,7 +69,7 @@ func TestInstanceInfoService_DescribeInstanceInfo(t *testing.T) { 0.2, 4, }, - { // error case: unknown availability zone + { // error case: unknown availability region "m4.xlarge", "eu-east-2", true, @@ -95,7 +95,7 @@ func TestInstanceInfoService_DescribeInstanceInfo(t *testing.T) { service := NewEC2InstanceInfoService(mc) for n, tc := range tcs { - info, err := service.DescribeInstanceInfo(tc.instanceType, tc.availabilityZone) + info, err := service.DescribeInstanceInfo(tc.instanceType, tc.region) if tc.expectError { assert.Error(t, err, fmt.Sprintf("case %d", n)) } else { diff --git a/cluster-autoscaler/cloudprovider/aws/api/instance_spot_price_history.go b/cluster-autoscaler/cloudprovider/aws/api/instance_spot_price_history.go index df5c2feb4f09..ef5b0749a58b 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/instance_spot_price_history.go +++ b/cluster-autoscaler/cloudprovider/aws/api/instance_spot_price_history.go @@ -49,7 +49,7 @@ type spotPriceHistoryService struct { func (spd *spotPriceHistoryService) DescribeSpotPriceHistory(instanceType string, availabilityZone string, startTime time.Time) (*SpotPriceHistory, error) { req := &ec2.DescribeSpotPriceHistoryInput{ Filters: []*ec2.Filter{ - spotPriceFilter("availability-zone", availabilityZone), + spotPriceFilter("availability-region", availabilityZone), spotPriceFilter("product-description", "Linux/UNIX"), spotPriceFilter("instance-type", instanceType), }, diff --git a/cluster-autoscaler/cloudprovider/aws/api/interfaces.go b/cluster-autoscaler/cloudprovider/aws/api/interfaces.go index adcb36b3d0c2..e68c98f1ef80 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/interfaces.go +++ b/cluster-autoscaler/cloudprovider/aws/api/interfaces.go @@ -20,8 +20,8 @@ import "time" // InstanceInfoDescriber is an interface to describe instance information type InstanceInfoDescriber interface { - // DescribeInstanceInfo returns the corresponding aws instance info by given instance type and availability zone. - DescribeInstanceInfo(instanceType string, availabilityZone string) (*InstanceInfo, error) + // DescribeInstanceInfo returns the corresponding aws instance info by given instance type and region. + DescribeInstanceInfo(instanceType string, region string) (*InstanceInfo, error) } // SpotPriceHistoryDescriber is an interface to describe spot price history information diff --git a/cluster-autoscaler/cloudprovider/aws/price/ondemand/descriptor.go b/cluster-autoscaler/cloudprovider/aws/price/ondemand/descriptor.go index b815e991432b..0c0636414b17 100644 --- a/cluster-autoscaler/cloudprovider/aws/price/ondemand/descriptor.go +++ b/cluster-autoscaler/cloudprovider/aws/price/ondemand/descriptor.go @@ -45,10 +45,15 @@ func (d *descriptor) Price(instanceType string, availabilityZones ...string) (fl if len(availabilityZones) == 0 { return 0, errors.New("no availability zone given") } - info, err := d.service.DescribeInstanceInfo(instanceType, availabilityZones[0]) + region := regionOfAvailabilityZone(availabilityZones[0]) + info, err := d.service.DescribeInstanceInfo(instanceType, region) if err != nil { - return 0, fmt.Errorf("failed to obtain instance info for %s in zone %s: %v", instanceType, availabilityZones[0], err) + return 0, fmt.Errorf("failed to obtain instance info for %s in zone %s: %v", instanceType, region, err) } return info.OnDemandPrice, nil } + +func regionOfAvailabilityZone(availabilityZone string) string { + return availabilityZone[0 : len(availabilityZone)-1] +} diff --git a/cluster-autoscaler/cloudprovider/aws/price/ondemand/descriptor_test.go b/cluster-autoscaler/cloudprovider/aws/price/ondemand/descriptor_test.go index 986998217932..a8bf3b2f07de 100644 --- a/cluster-autoscaler/cloudprovider/aws/price/ondemand/descriptor_test.go +++ b/cluster-autoscaler/cloudprovider/aws/price/ondemand/descriptor_test.go @@ -28,8 +28,8 @@ import ( func TestDescriptor_Price(t *testing.T) { d := NewDescriptor( newFakeInstanceInfoDescriber( - buildInfo("m4.xlarge", "us-east-1a", 4, 0, 16*1024, 0.111), - buildInfo("m4.2xlarge", "us-east-1a", 8, 0, 32*1024, 0.222), + buildInfo("m4.xlarge", "us-east-1", 4, 0, 16*1024, 0.111), + buildInfo("m4.2xlarge", "us-east-1", 8, 0, 32*1024, 0.222), ), ) @@ -71,8 +71,8 @@ func TestDescriptor_Price(t *testing.T) { } type instanceInZone struct { - instanceType string - availabilityZone string + instanceType string + region string } type instanceInfoBundle struct { @@ -80,9 +80,9 @@ type instanceInfoBundle struct { info *api.InstanceInfo } -func buildInfo(instanceType, availabilityZone string, cpu, gpu, mem int64, onDemandPrice float64) instanceInfoBundle { +func buildInfo(instanceType, region string, cpu, gpu, mem int64, onDemandPrice float64) instanceInfoBundle { return instanceInfoBundle{ - instanceInZone{instanceType, availabilityZone}, + instanceInZone{instanceType, region}, &api.InstanceInfo{ InstanceType: instanceType, OnDemandPrice: onDemandPrice, @@ -109,11 +109,11 @@ type fakeInstanceInfoDescriber struct { c map[instanceInZone]*api.InstanceInfo } -func (i *fakeInstanceInfoDescriber) DescribeInstanceInfo(instanceType string, availabilityZone string) (*api.InstanceInfo, error) { - iiz := instanceInZone{instanceType, availabilityZone} +func (i *fakeInstanceInfoDescriber) DescribeInstanceInfo(instanceType string, region string) (*api.InstanceInfo, error) { + iiz := instanceInZone{instanceType, region} if info, found := i.c[iiz]; found { return info, nil } - return nil, fmt.Errorf("instance info not available for instance type %s in zone %s", instanceType, availabilityZone) + return nil, fmt.Errorf("instance info not available for instance type %s in region %s", instanceType, region) } From 61767fe82d9ff092c8fd705916da7b35fa042e8f Mon Sep 17 00:00:00 2001 From: Marc Riegel Date: Mon, 8 Jan 2018 09:20:54 +0100 Subject: [PATCH 12/33] Fixed NPE when asking for unlinked instance types --- cluster-autoscaler/cloudprovider/aws/aws_manager.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/cluster-autoscaler/cloudprovider/aws/aws_manager.go b/cluster-autoscaler/cloudprovider/aws/aws_manager.go index a0cb5d795deb..b827603fd719 100644 --- a/cluster-autoscaler/cloudprovider/aws/aws_manager.go +++ b/cluster-autoscaler/cloudprovider/aws/aws_manager.go @@ -226,8 +226,13 @@ func (m *AwsManager) getAsgTemplate(name string) (*asgTemplate, error) { glog.Warningf("Found multiple availability zones, using %s\n", az) } + staticLinkedInstanceType, ok := InstanceTypes[instanceTypeName] + if !ok { + return nil, fmt.Errorf("instance of type %s not found in static database", instanceTypeName) + } + return &asgTemplate{ - InstanceType: InstanceTypes[instanceTypeName], + InstanceType: staticLinkedInstanceType, Region: region, Zone: az, Tags: asg.Tags, From 7e63b8cbcd8eff2e274652c303d02d16007f1836 Mon Sep 17 00:00:00 2001 From: Marc Riegel Date: Mon, 8 Jan 2018 09:21:55 +0100 Subject: [PATCH 13/33] Renewed static instance type reference list --- .../cloudprovider/aws/ec2_instance_types.go | 72 +++++++++++++++++++ 1 file changed, 72 insertions(+) diff --git a/cluster-autoscaler/cloudprovider/aws/ec2_instance_types.go b/cluster-autoscaler/cloudprovider/aws/ec2_instance_types.go index 2e15fa5b00bb..83075cf12dec 100644 --- a/cluster-autoscaler/cloudprovider/aws/ec2_instance_types.go +++ b/cluster-autoscaler/cloudprovider/aws/ec2_instance_types.go @@ -261,6 +261,36 @@ var InstanceTypes = map[string]*instanceType{ MemoryMb: 249856, GPU: 2, }, + "h1": { + InstanceType: "h1", + VCPU: 64, + MemoryMb: 0, + GPU: 0, + }, + "h1.16xlarge": { + InstanceType: "h1.16xlarge", + VCPU: 64, + MemoryMb: 262144, + GPU: 0, + }, + "h1.2xlarge": { + InstanceType: "h1.2xlarge", + VCPU: 8, + MemoryMb: 32768, + GPU: 0, + }, + "h1.4xlarge": { + InstanceType: "h1.4xlarge", + VCPU: 16, + MemoryMb: 65536, + GPU: 0, + }, + "h1.8xlarge": { + InstanceType: "h1.8xlarge", + VCPU: 32, + MemoryMb: 131072, + GPU: 0, + }, "hs1.8xlarge": { InstanceType: "hs1.8xlarge", VCPU: 17, @@ -453,6 +483,48 @@ var InstanceTypes = map[string]*instanceType{ MemoryMb: 16384, GPU: 0, }, + "m5": { + InstanceType: "m5", + VCPU: 96, + MemoryMb: 0, + GPU: 0, + }, + "m5.12xlarge": { + InstanceType: "m5.12xlarge", + VCPU: 48, + MemoryMb: 196608, + GPU: 0, + }, + "m5.24xlarge": { + InstanceType: "m5.24xlarge", + VCPU: 96, + MemoryMb: 393216, + GPU: 0, + }, + "m5.2xlarge": { + InstanceType: "m5.2xlarge", + VCPU: 8, + MemoryMb: 32768, + GPU: 0, + }, + "m5.4xlarge": { + InstanceType: "m5.4xlarge", + VCPU: 16, + MemoryMb: 65536, + GPU: 0, + }, + "m5.large": { + InstanceType: "m5.large", + VCPU: 2, + MemoryMb: 8192, + GPU: 0, + }, + "m5.xlarge": { + InstanceType: "m5.xlarge", + VCPU: 4, + MemoryMb: 16384, + GPU: 0, + }, "p2": { InstanceType: "p2", VCPU: 64, From eed433b6b6524d08df272fe3043b19d2ad15b11a Mon Sep 17 00:00:00 2001 From: Marc Riegel Date: Wed, 10 Jan 2018 16:15:33 +0100 Subject: [PATCH 14/33] Fixed AWS filter --- .../cloudprovider/aws/api/instance_spot_price_history.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster-autoscaler/cloudprovider/aws/api/instance_spot_price_history.go b/cluster-autoscaler/cloudprovider/aws/api/instance_spot_price_history.go index ef5b0749a58b..df5c2feb4f09 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/instance_spot_price_history.go +++ b/cluster-autoscaler/cloudprovider/aws/api/instance_spot_price_history.go @@ -49,7 +49,7 @@ type spotPriceHistoryService struct { func (spd *spotPriceHistoryService) DescribeSpotPriceHistory(instanceType string, availabilityZone string, startTime time.Time) (*SpotPriceHistory, error) { req := &ec2.DescribeSpotPriceHistoryInput{ Filters: []*ec2.Filter{ - spotPriceFilter("availability-region", availabilityZone), + spotPriceFilter("availability-zone", availabilityZone), spotPriceFilter("product-description", "Linux/UNIX"), spotPriceFilter("instance-type", instanceType), }, From 688507afc71758b1030c8b09756be56972fcf6ff Mon Sep 17 00:00:00 2001 From: Marc Riegel Date: Mon, 26 Mar 2018 16:39:57 +0200 Subject: [PATCH 15/33] Provide ASG information in node template --- .../cloudprovider/aws/aws_manager.go | 5 +++ .../cloudprovider/aws/aws_price_model.go | 37 ++++++++++++------- 2 files changed, 28 insertions(+), 14 deletions(-) diff --git a/cluster-autoscaler/cloudprovider/aws/aws_manager.go b/cluster-autoscaler/cloudprovider/aws/aws_manager.go index 9c69b3503b30..a0cf76108584 100644 --- a/cluster-autoscaler/cloudprovider/aws/aws_manager.go +++ b/cluster-autoscaler/cloudprovider/aws/aws_manager.go @@ -45,6 +45,8 @@ const ( operationPollInterval = 100 * time.Millisecond maxRecordsReturnedByAPI = 100 refreshInterval = 1 * time.Minute + + nodeTemplateASGAnnotation = "autoscaler.kubernetes.io/asg" ) type asgInformation struct { @@ -396,6 +398,9 @@ func (m *AwsManager) buildNodeFromTemplate(asg *Asg, template *asgTemplate) (*ap Name: nodeName, SelfLink: fmt.Sprintf("/api/v1/nodes/%s", nodeName), Labels: map[string]string{}, + Annotations: map[string]string{ + nodeTemplateASGAnnotation: asg.Name, + }, } node.Status = apiv1.NodeStatus{ diff --git a/cluster-autoscaler/cloudprovider/aws/aws_price_model.go b/cluster-autoscaler/cloudprovider/aws/aws_price_model.go index 4425e6c1e490..ef06e9fd468f 100644 --- a/cluster-autoscaler/cloudprovider/aws/aws_price_model.go +++ b/cluster-autoscaler/cloudprovider/aws/aws_price_model.go @@ -63,23 +63,32 @@ type priceModel struct { // NodePrice returns a price of running the given node for a given period of time. // All prices are in USD. func (pm *priceModel) NodePrice(node *apiv1.Node, startTime time.Time, endTime time.Time) (float64, error) { - instance, err := AwsRefFromProviderId(node.Spec.ProviderID) - if err != nil { - return 0, err - } - - asg, err := pm.asgs.GetAsgForInstance(instance) - if err != nil { - return 0, err - } - - if asg == nil { - return 0, fmt.Errorf("asg for instance %s (%s) not found", instance, node.Spec.ProviderID) + var ( + asgName string + found bool + ) + + if asgName, found = node.ObjectMeta.Annotations[nodeTemplateASGAnnotation]; !found { + instance, err := AwsRefFromProviderId(node.Spec.ProviderID) + if err != nil { + return 0, err + } + + asg, err := pm.asgs.GetAsgForInstance(instance) + if err != nil { + return 0, err + } + + if asg == nil { + return 0, fmt.Errorf("asg for instance %s (%s) not found", instance, node.Spec.ProviderID) + } + + asgName = asg.Name } - hourlyPrice, err := pm.priceDescriptor.Price(asg.Name) + hourlyPrice, err := pm.priceDescriptor.Price(asgName) if err != nil { - return 0, fmt.Errorf("failed to describe price for asg %s: %v", asg.Name, err) + return 0, fmt.Errorf("failed to describe price for asg %s: %v", asgName, err) } hours := getHours(startTime, endTime) From c6dd0e8cfb683fcd09282c4d652daaa291758bcf Mon Sep 17 00:00:00 2001 From: Marc Riegel Date: Mon, 26 Mar 2018 17:06:01 +0200 Subject: [PATCH 16/33] go fmt --- cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go | 2 +- cluster-autoscaler/cloudprovider/aws/aws_manager.go | 2 +- cluster-autoscaler/cloudprovider/aws/aws_price_model.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go b/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go index 4fd1dfd7c2fd..e3e36305ddb7 100644 --- a/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go +++ b/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go @@ -21,13 +21,13 @@ import ( "regexp" "strings" + "github.com/aws/aws-sdk-go/aws/session" apiv1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/api/resource" "k8s.io/autoscaler/cluster-autoscaler/cloudprovider" "k8s.io/autoscaler/cluster-autoscaler/cloudprovider/aws/price" "k8s.io/autoscaler/cluster-autoscaler/utils/errors" "k8s.io/kubernetes/pkg/scheduler/schedulercache" - "github.com/aws/aws-sdk-go/aws/session" ) const ( diff --git a/cluster-autoscaler/cloudprovider/aws/aws_manager.go b/cluster-autoscaler/cloudprovider/aws/aws_manager.go index 6b889da33889..8bde706f33de 100644 --- a/cluster-autoscaler/cloudprovider/aws/aws_manager.go +++ b/cluster-autoscaler/cloudprovider/aws/aws_manager.go @@ -403,7 +403,7 @@ func (m *AwsManager) buildNodeFromTemplate(asg *Asg, template *asgTemplate) (*ap Name: nodeName, SelfLink: fmt.Sprintf("/api/v1/nodes/%s", nodeName), Labels: map[string]string{}, - Annotations: map[string]string{ + Annotations: map[string]string{ nodeTemplateASGAnnotation: asg.Name, }, } diff --git a/cluster-autoscaler/cloudprovider/aws/aws_price_model.go b/cluster-autoscaler/cloudprovider/aws/aws_price_model.go index ef06e9fd468f..cb5d83ac276f 100644 --- a/cluster-autoscaler/cloudprovider/aws/aws_price_model.go +++ b/cluster-autoscaler/cloudprovider/aws/aws_price_model.go @@ -65,7 +65,7 @@ type priceModel struct { func (pm *priceModel) NodePrice(node *apiv1.Node, startTime time.Time, endTime time.Time) (float64, error) { var ( asgName string - found bool + found bool ) if asgName, found = node.ObjectMeta.Annotations[nodeTemplateASGAnnotation]; !found { From b3e8b2d310139562a7a93a71fc3ac0072ff7b765 Mon Sep 17 00:00:00 2001 From: Marc Riegel Date: Sun, 27 May 2018 08:27:56 +0200 Subject: [PATCH 17/33] Merge remote-tracking branch 'origin/master' # Conflicts: # cluster-autoscaler/cloudprovider/aws/aws_cloud_provider_test.go --- cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go | 1 - 1 file changed, 1 deletion(-) diff --git a/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go b/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go index 16b5dae6eea2..838908f8eb8d 100644 --- a/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go +++ b/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go @@ -25,7 +25,6 @@ import ( "k8s.io/apimachinery/pkg/api/resource" "k8s.io/autoscaler/cluster-autoscaler/cloudprovider" "k8s.io/autoscaler/cluster-autoscaler/cloudprovider/aws/price" - "k8s.io/autoscaler/cluster-autoscaler/config/dynamic" "k8s.io/autoscaler/cluster-autoscaler/utils/errors" "k8s.io/kubernetes/pkg/scheduler/schedulercache" ) From bcf30a349832e23bfad226ad6913096429339b66 Mon Sep 17 00:00:00 2001 From: Marc Riegel Date: Mon, 30 Jul 2018 11:21:49 +0200 Subject: [PATCH 18/33] Fixed interfaces according changes in master --- .../cloudprovider/aws/aws_cloud_provider.go | 8 +++++--- .../cloudprovider/aws/aws_manager.go | 2 +- .../cloudprovider/aws/aws_price_model.go | 16 +++++++--------- .../builder/cloud_provider_builder.go | 1 + 4 files changed, 14 insertions(+), 13 deletions(-) diff --git a/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go b/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go index 462a0f38b85b..d6ddff3cb837 100644 --- a/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go +++ b/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go @@ -39,16 +39,14 @@ const ( // awsCloudProvider implements CloudProvider interface. type awsCloudProvider struct { awsManager *AwsManager - priceModel cloudprovider.PricingModel resourceLimiter *cloudprovider.ResourceLimiter } // BuildAwsCloudProvider builds CloudProvider implementation for AWS. -func BuildAwsCloudProvider(awsManager *AwsManager, resourceLimiter *cloudprovider.ResourceLimiter, descriptor price.ShapeDescriptor) (cloudprovider.CloudProvider, error) { +func BuildAwsCloudProvider(awsManager *AwsManager, resourceLimiter *cloudprovider.ResourceLimiter) (cloudprovider.CloudProvider, error) { aws := &awsCloudProvider{ awsManager: awsManager, resourceLimiter: resourceLimiter, - priceModel: NewPriceModel(nil, descriptor), // TODO } return aws, nil } @@ -154,6 +152,10 @@ func AwsRefFromProviderId(id string) (*AwsInstanceRef, error) { }, nil } +func (ref AwsInstanceRef) String() string { + return fmt.Sprintf("%s/%s", ref.Name, ref.ProviderID) +} + // AwsNodeGroup implements NodeGroup interface. type AwsNodeGroup struct { awsManager *AwsManager diff --git a/cluster-autoscaler/cloudprovider/aws/aws_manager.go b/cluster-autoscaler/cloudprovider/aws/aws_manager.go index 6e905210f525..aa33014d5e9a 100644 --- a/cluster-autoscaler/cloudprovider/aws/aws_manager.go +++ b/cluster-autoscaler/cloudprovider/aws/aws_manager.go @@ -229,7 +229,7 @@ func (m *AwsManager) getAsgTemplate(asg *asg) (*asgTemplate, error) { } return &asgTemplate{ - InstanceType: staticLinkedInstanceType, + InstanceType: InstanceTypes[instanceTypeName], Region: region, Zone: az, Tags: asg.Tags, diff --git a/cluster-autoscaler/cloudprovider/aws/aws_price_model.go b/cluster-autoscaler/cloudprovider/aws/aws_price_model.go index cb5d83ac276f..89126000ed30 100644 --- a/cluster-autoscaler/cloudprovider/aws/aws_price_model.go +++ b/cluster-autoscaler/cloudprovider/aws/aws_price_model.go @@ -39,10 +39,12 @@ const ( gpuPricePerHour = 1.21 - (((16 * cpuPricePerHour) + (122 * memoryPricePerHourPerGb)) * 0.2) gigabyte = 1024.0 * 1024.0 * 1024.0 + + resourceNvidiaGPU = "nvidia.com/gpu" ) type instanceByASGFinder interface { - GetAsgForInstance(instance *AwsRef) (*Asg, error) + GetAsgForInstance(instance AwsInstanceRef) *asg } // NewPriceModel is the constructor of priceModel which provides general access to price information @@ -69,18 +71,14 @@ func (pm *priceModel) NodePrice(node *apiv1.Node, startTime time.Time, endTime t ) if asgName, found = node.ObjectMeta.Annotations[nodeTemplateASGAnnotation]; !found { - instance, err := AwsRefFromProviderId(node.Spec.ProviderID) - if err != nil { - return 0, err - } - - asg, err := pm.asgs.GetAsgForInstance(instance) + instanceRef, err := AwsRefFromProviderId(node.Spec.ProviderID) if err != nil { return 0, err } + asg := pm.asgs.GetAsgForInstance(*instanceRef) if asg == nil { - return 0, fmt.Errorf("asg for instance %s (%s) not found", instance, node.Spec.ProviderID) + return 0, fmt.Errorf("asg for instance %s (%s) not found", instanceRef.String(), node.Spec.ProviderID) } asgName = asg.Name @@ -113,7 +111,7 @@ func getBasePrice(resources apiv1.ResourceList, startTime time.Time, endTime tim sum := 0.0 cpu := resources[apiv1.ResourceCPU] mem := resources[apiv1.ResourceMemory] - gpu := resources[apiv1.ResourceNvidiaGPU] + gpu := resources[resourceNvidiaGPU] sum += float64(cpu.MilliValue()) / 1000.0 * cpuPricePerHour * hours sum += float64(gpu.MilliValue()) / 1000.0 * gpuPricePerHour * hours sum += float64(mem.Value()) / gigabyte * memoryPricePerHourPerGb * hours diff --git a/cluster-autoscaler/cloudprovider/builder/cloud_provider_builder.go b/cluster-autoscaler/cloudprovider/builder/cloud_provider_builder.go index 0957c3424c74..df9bd5d80044 100644 --- a/cluster-autoscaler/cloudprovider/builder/cloud_provider_builder.go +++ b/cluster-autoscaler/cloudprovider/builder/cloud_provider_builder.go @@ -110,6 +110,7 @@ func buildGCE(opts config.AutoscalingOptions, do cloudprovider.NodeGroupDiscover } func buildAWS(opts config.AutoscalingOptions, do cloudprovider.NodeGroupDiscoveryOptions, rl *cloudprovider.ResourceLimiter) cloudprovider.CloudProvider { + // TODO: `config` collides with imported package name var config io.ReadCloser if opts.CloudConfig != "" { var err error From c885611564da8947d03d3fbf2d764bf5e1bd1c83 Mon Sep 17 00:00:00 2001 From: Marc Riegel Date: Mon, 30 Jul 2018 12:08:40 +0200 Subject: [PATCH 19/33] Compact mock data --- .../aws/api/pricing_eu-west-1.json | 445651 +-------------- 1 file changed, 316 insertions(+), 445335 deletions(-) diff --git a/cluster-autoscaler/cloudprovider/aws/api/pricing_eu-west-1.json b/cluster-autoscaler/cloudprovider/aws/api/pricing_eu-west-1.json index 3d88838cb1d4..b367797321de 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/pricing_eu-west-1.json +++ b/cluster-autoscaler/cloudprovider/aws/api/pricing_eu-west-1.json @@ -1,445344 +1,325 @@ { - "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/", - "offerCode" : "AmazonEC2", - "version" : "20171117190039", - "publicationDate" : "2017-11-17T19:00:39Z", - "products" : { - "HYZTQKMNAKH6FG9C" : { - "sku" : "HYZTQKMNAKH6FG9C", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.9xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "72 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.9xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "4500 Mbps", - "ecu" : "139", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "72", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" + "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/", + "offerCode": "AmazonEC2", + "version": "20171117190039", + "publicationDate": "2017-11-17T19:00:39Z", + "products": { + "3UP33R2RXCADSPSX": { + "sku": "3UP33R2RXCADSPSX", + "productFamily": "Compute Instance", + "attributes": { + "servicecode": "AmazonEC2", + "location": "US East (N. Virginia)", + "locationType": "AWS Region", + "instanceType": "m4.4xlarge", + "currentGeneration": "Yes", + "instanceFamily": "General purpose", + "vcpu": "16", + "physicalProcessor": "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed": "2.4 GHz", + "memory": "64 GiB", + "storage": "EBS only", + "networkPerformance": "High", + "processorArchitecture": "64-bit", + "tenancy": "Shared", + "operatingSystem": "Linux", + "licenseModel": "No License required", + "usagetype": "BoxUsage:m4.4xlarge", + "operation": "RunInstances", + "dedicatedEbsThroughput": "2000 Mbps", + "ecu": "53.5", + "enhancedNetworkingSupported": "Yes", + "normalizationSizeFactor": "32", + "preInstalledSw": "NA", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "servicename": "Amazon Elastic Compute Cloud" + } + }, + "8VCNEHQMSCQS4P39": { + "sku": "8VCNEHQMSCQS4P39", + "productFamily": "Compute Instance", + "attributes": { + "servicecode": "AmazonEC2", + "location": "US East (N. Virginia)", + "locationType": "AWS Region", + "instanceType": "m4.large", + "currentGeneration": "Yes", + "instanceFamily": "General purpose", + "vcpu": "2", + "physicalProcessor": "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed": "2.4 GHz", + "memory": "8 GiB", + "storage": "EBS only", + "networkPerformance": "Moderate", + "processorArchitecture": "64-bit", + "tenancy": "Shared", + "operatingSystem": "Linux", + "licenseModel": "No License required", + "usagetype": "BoxUsage:m4.large", + "operation": "RunInstances", + "dedicatedEbsThroughput": "450 Mbps", + "ecu": "6.5", + "enhancedNetworkingSupported": "Yes", + "normalizationSizeFactor": "4", + "preInstalledSw": "NA", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "servicename": "Amazon Elastic Compute Cloud" + } + }, + "ECM8RSBXMC7F4WAS": { + "sku": "ECM8RSBXMC7F4WAS", + "productFamily": "Compute Instance", + "attributes": { + "servicecode": "AmazonEC2", + "location": "US East (N. Virginia)", + "locationType": "AWS Region", + "instanceType": "m4.16xlarge", + "currentGeneration": "Yes", + "instanceFamily": "General purpose", + "vcpu": "64", + "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", + "clockSpeed": "2.3 GHz", + "memory": "256 GiB", + "storage": "EBS only", + "networkPerformance": "20 Gigabit", + "processorArchitecture": "64-bit", + "tenancy": "Shared", + "operatingSystem": "Linux", + "licenseModel": "No License required", + "usagetype": "BoxUsage:m4.16xlarge", + "operation": "RunInstances", + "dedicatedEbsThroughput": "10000 Mbps", + "ecu": "188", + "enhancedNetworkingSupported": "Yes", + "normalizationSizeFactor": "128", + "preInstalledSw": "NA", + "processorFeatures": "Intel AVX, Intel AVX2, Intel Turbo", + "servicename": "Amazon Elastic Compute Cloud" + } + }, + "J4T9ZF4AJ2DXE7SA": { + "sku": "J4T9ZF4AJ2DXE7SA", + "productFamily": "Compute Instance", + "attributes": { + "servicecode": "AmazonEC2", + "location": "US East (N. Virginia)", + "locationType": "AWS Region", + "instanceType": "m4.10xlarge", + "currentGeneration": "Yes", + "instanceFamily": "General purpose", + "vcpu": "40", + "physicalProcessor": "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed": "2.4 GHz", + "memory": "160 GiB", + "storage": "EBS only", + "networkPerformance": "10 Gigabit", + "processorArchitecture": "64-bit", + "tenancy": "Shared", + "operatingSystem": "Linux", + "licenseModel": "No License required", + "usagetype": "BoxUsage:m4.10xlarge", + "operation": "RunInstances", + "dedicatedEbsThroughput": "4000 Mbps", + "ecu": "124.5", + "enhancedNetworkingSupported": "Yes", + "normalizationSizeFactor": "80", + "preInstalledSw": "NA", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "servicename": "Amazon Elastic Compute Cloud" + } + }, + "47GP959QAF69YPG5": { + "sku": "47GP959QAF69YPG5", + "productFamily": "Compute Instance", + "attributes": { + "servicecode": "AmazonEC2", + "location": "US East (N. Virginia)", + "locationType": "AWS Region", + "instanceType": "m4.xlarge", + "currentGeneration": "Yes", + "instanceFamily": "General purpose", + "vcpu": "4", + "physicalProcessor": "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed": "2.4 GHz", + "memory": "16 GiB", + "storage": "EBS only", + "networkPerformance": "High", + "processorArchitecture": "64-bit", + "tenancy": "Shared", + "operatingSystem": "Linux", + "licenseModel": "No License required", + "usagetype": "BoxUsage:m4.xlarge", + "operation": "RunInstances", + "dedicatedEbsThroughput": "750 Mbps", + "ecu": "13", + "enhancedNetworkingSupported": "Yes", + "normalizationSizeFactor": "8", + "preInstalledSw": "NA", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "servicename": "Amazon Elastic Compute Cloud" + } + }, + "VHC3YWSZ6ZFZPJN4": { + "sku": "VHC3YWSZ6ZFZPJN4", + "productFamily": "Compute Instance", + "attributes": { + "servicecode": "AmazonEC2", + "location": "US East (N. Virginia)", + "locationType": "AWS Region", + "instanceType": "m4.2xlarge", + "currentGeneration": "Yes", + "instanceFamily": "General purpose", + "vcpu": "8", + "physicalProcessor": "Intel Xeon E5-2676 v3 (Haswell)", + "clockSpeed": "2.4 GHz", + "memory": "32 GiB", + "storage": "EBS only", + "networkPerformance": "High", + "processorArchitecture": "64-bit", + "tenancy": "Shared", + "operatingSystem": "Linux", + "licenseModel": "No License required", + "usagetype": "BoxUsage:m4.2xlarge", + "operation": "RunInstances", + "dedicatedEbsThroughput": "1000 Mbps", + "ecu": "26", + "enhancedNetworkingSupported": "Yes", + "normalizationSizeFactor": "16", + "preInstalledSw": "NA", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "servicename": "Amazon Elastic Compute Cloud" } - }, - "2BEAK4F883TCCQMS" : { - "sku" : "2BEAK4F883TCCQMS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "1 x 120", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7QJJXQX9QWC5GEPD" : { - "sku" : "7QJJXQX9QWC5GEPD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.2xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "1600 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KV46EU5KJGKB53ZX" : { - "sku" : "KV46EU5KJGKB53ZX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.medium", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "3.75 GiB", - "storage" : "1 x 410", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m1.medium", - "operation" : "RunInstances:0010", - "ecu" : "2", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DUHF29UDCPK7Z84H" : { - "sku" : "DUHF29UDCPK7Z84H", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "8 x 1.9 NVMe SSD", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.16xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QC7Z34UZZ9GT65EJ" : { - "sku" : "QC7Z34UZZ9GT65EJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "768 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:p2.16xlarge", - "operation" : "RunInstances:000g", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "16", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CZVM5AM8JCW2BV2A" : { - "sku" : "CZVM5AM8JCW2BV2A", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "1 x 120", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XZ79CEGC6NSB9FQ8" : { - "sku" : "XZ79CEGC6NSB9FQ8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.2xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EGSUTJB8BPPKZR2N" : { - "sku" : "EGSUTJB8BPPKZR2N", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "68.4 GiB", - "storage" : "2 x 840", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:m2.4xlarge", - "operation" : "RunInstances:0800", - "ecu" : "26", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "T72RDCVVMHKECZ63" : { - "sku" : "T72RDCVVMHKECZ63", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "68.4 GiB", - "storage" : "2 x 840", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m2.4xlarge", - "operation" : "RunInstances:0006", - "ecu" : "26", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JADXKP28ZPH5KPM8" : { - "sku" : "JADXKP28ZPH5KPM8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:m3.2xlarge", - "operation" : "RunInstances:0800", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2VKUG32DUF246T8S" : { - "sku" : "2VKUG32DUF246T8S", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Inbound", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "US East (Ohio)", - "toLocationType" : "AWS Region", - "usagetype" : "USE1-USE2-AWS-In-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "9RDKMFQK57E4CCGM" : { - "sku" : "9RDKMFQK57E4CCGM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "1 x 120", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XMCTY6J8BEK2CTG2" : { - "sku" : "XMCTY6J8BEK2CTG2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 800 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i2.xlarge", - "operation" : "RunInstances:0002", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "G7CNANS9EFDWRFTB" : { - "sku" : "G7CNANS9EFDWRFTB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "1 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.2xlarge", - "operation" : "RunInstances:0010", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YQT3C842QHBG6XCU" : { - "sku" : "YQT3C842QHBG6XCU", - "productFamily" : "Storage", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "storageMedia" : "HDD-backed", - "volumeType" : "Throughput Optimized HDD", - "maxVolumeSize" : "16 TiB", - "maxIopsvolume" : "500 - based on 1 MiB I/O size", - "maxThroughputvolume" : "500 MiB/s", - "usagetype" : "EBS:VolumeUsage.st1", - "operation" : "", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QPCQXM3E9RSBMMU9" : { - "sku" : "QPCQXM3E9RSBMMU9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "1 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.2xlarge", - "operation" : "RunInstances:0010", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZH5YZDSEMAZNXC2E" : { - "sku" : "ZH5YZDSEMAZNXC2E", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "2 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i2.2xlarge", - "operation" : "RunInstances", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KP89XKS7BFTMVX77" : { - "sku" : "KP89XKS7BFTMVX77", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.small", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "1.7 GiB", - "storage" : "1 x 160", - "networkPerformance" : "Low", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage", - "operation" : "RunInstances:0006", - "ecu" : "Variable", - "normalizationSizeFactor" : "1", - "preInstalledSw" : "SQL Std", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "35QACGXEGWD9AZHY" : { - "sku" : "35QACGXEGWD9AZHY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "4 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.large", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SS8ZSWSJUYBWBV7G" : { - "sku" : "SS8ZSWSJUYBWBV7G", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.18xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "72", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "144 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.18xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "9000 Mbps", - "ecu" : "278", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "144", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3EM3XGHPBHA5A7G9" : { - "sku" : "3EM3XGHPBHA5A7G9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.8xlarge", - "operation" : "RunInstances:000g", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HHBS2UFCC9G8F3DM" : { - "sku" : "HHBS2UFCC9G8F3DM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.medium", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.3 GHz", - "memory" : "4 GiB", - "storage" : "EBS only", - "networkPerformance" : "Low to Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:t2.medium", - "operation" : "RunInstances:0800", - "ecu" : "Variable", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3B3UNRXVA6RCCGWP" : { - "sku" : "3B3UNRXVA6RCCGWP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "244 GiB", - "storage" : "24 x 2000 HDD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:d2.8xlarge", - "operation" : "RunInstances:0800", - "ecu" : "116", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9KA8YGU8KFGQ7ERN" : { - "sku" : "9KA8YGU8KFGQ7ERN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.4xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QCQ27AYFPSSTJG55" : { - "sku" : "QCQ27AYFPSSTJG55", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "34.2 GiB", - "storage" : "1 x 850", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m2.2xlarge", - "operation" : "RunInstances", - "ecu" : "13", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UAKHM4ASYH9KFBED" : { - "sku" : "UAKHM4ASYH9KFBED", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:p2.8xlarge", - "operation" : "RunInstances:0010", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "29WJRTNV2QJXKUW5" : { - "sku" : "29WJRTNV2QJXKUW5", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "1 x 240", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.2xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "23", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MGHXZ6GM47D23SUV" : { - "sku" : "MGHXZ6GM47D23SUV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "hs1.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "17", - "physicalProcessor" : "Intel Xeon E5-2650", - "clockSpeed" : "2 GHz", - "memory" : "117 GiB", - "storage" : "24 x 2000", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:hs1.8xlarge", - "operation" : "RunInstances:0800", - "ecu" : "35", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "8WJ6ATW98R4XURM2" : { - "sku" : "8WJ6ATW98R4XURM2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.large", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "400 Mbps", - "ecu" : "135", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "W3WU9RECE72NMJ77" : { - "sku" : "W3WU9RECE72NMJ77", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "15 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.2xlarge", - "operation" : "RunInstances:000g", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MB9M33K6AWVAZT8U" : { - "sku" : "MB9M33K6AWVAZT8U", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "1 x 320 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.4xlarge", - "operation" : "RunInstances:0002", - "ecu" : "52", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Z8KQMF3Z8ZFPNANM" : { - "sku" : "Z8KQMF3Z8ZFPNANM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "2 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i2.2xlarge", - "operation" : "RunInstances:0002", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BD398TEHQSUMAUDS" : { - "sku" : "BD398TEHQSUMAUDS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.large", - "operation" : "RunInstances:0006", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "8U8GT7P4FU5ABATQ" : { - "sku" : "8U8GT7P4FU5ABATQ", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "1 x 480", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.4xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "47", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "F2NC9U5PH9XZD7CQ" : { - "sku" : "F2NC9U5PH9XZD7CQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.8xlarge", - "operation" : "RunInstances:0002", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TKW4P5TMSVH4PAQ3" : { - "sku" : "TKW4P5TMSVH4PAQ3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.2xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "1600 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3FHKPAK9WZBH4HVY" : { - "sku" : "3FHKPAK9WZBH4HVY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.10xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "40", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "160 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.10xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "80", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AB34GJVVFDYBBGDJ" : { - "sku" : "AB34GJVVFDYBBGDJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "15 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.2xlarge", - "operation" : "RunInstances:0010", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9MG5B7V4UUU2WPAV" : { - "sku" : "9MG5B7V4UUU2WPAV", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "AWS Inbound", - "fromLocation" : "External", - "fromLocationType" : "Other", - "toLocation" : "US East (N. Virginia)", - "toLocationType" : "AWS Region", - "usagetype" : "DataTransfer-In-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "5CUNSRC3R37KEBS7" : { - "sku" : "5CUNSRC3R37KEBS7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "f1.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:f1.2xlarge", - "operation" : "RunInstances:0800", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KWHF9MHUCVG2FS5B" : { - "sku" : "KWHF9MHUCVG2FS5B", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m3.xlarge", - "operation" : "RunInstances:0102", - "ecu" : "13", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6TGXJKCAZTAFTYB9" : { - "sku" : "6TGXJKCAZTAFTYB9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.8xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "6000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "77PE9Y6MJW62DYCD" : { - "sku" : "77PE9Y6MJW62DYCD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:m4.large", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "450 Mbps", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "32XCE2AVYT82WZYJ" : { - "sku" : "32XCE2AVYT82WZYJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "8 x 1.9 NVMe SSD", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.16xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "J8FC8SEVZRJMDMBB" : { - "sku" : "J8FC8SEVZRJMDMBB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "244 GiB", - "storage" : "24 x 2000 HDD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:d2.8xlarge", - "operation" : "RunInstances:0102", - "ecu" : "116", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "C8UY35TVY9KH2ZPK" : { - "sku" : "C8UY35TVY9KH2ZPK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "30.5 GiB", - "storage" : "3 x 2000 HDD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:d2.xlarge", - "operation" : "RunInstances", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DXSPZRZ93HBNNHCJ" : { - "sku" : "DXSPZRZ93HBNNHCJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "7.5 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.xlarge", - "operation" : "RunInstances:0102", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CMJW5X9JZ98RXSMU" : { - "sku" : "CMJW5X9JZ98RXSMU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "7.5 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:c3.xlarge", - "operation" : "RunInstances:0800", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Y8HYRU3BZZ4QFJHH" : { - "sku" : "Y8HYRU3BZZ4QFJHH", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Outbound", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "Asia Pacific (Seoul)", - "toLocationType" : "AWS Region", - "usagetype" : "USE1-APN2-AWS-Out-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "WHYQJ8ZPHXUK6SXM" : { - "sku" : "WHYQJ8ZPHXUK6SXM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "3.75 GiB", - "storage" : "2 x 16 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.large", - "operation" : "RunInstances:0202", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YD2QA7TB4GYV4U3P" : { - "sku" : "YD2QA7TB4GYV4U3P", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "7.5 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:m3.large", - "operation" : "RunInstances:0800", - "ecu" : "6.5", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "84S2KXJ69JV6DQFX" : { - "sku" : "84S2KXJ69JV6DQFX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.16xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "12000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UMJEA2FJR4MEZ7ZC" : { - "sku" : "UMJEA2FJR4MEZ7ZC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "1 x 320 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.4xlarge", - "operation" : "RunInstances:0102", - "ecu" : "52", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RBSDAQVUVBS5AAS2" : { - "sku" : "RBSDAQVUVBS5AAS2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "122 GiB", - "storage" : "12 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:d2.4xlarge", - "operation" : "RunInstances:0002", - "ecu" : "56", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MKTYG4ZPBZEJP3T8" : { - "sku" : "MKTYG4ZPBZEJP3T8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6NHJBAA5ZJ25DJVN" : { - "sku" : "6NHJBAA5ZJ25DJVN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "1 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.2xlarge", - "operation" : "RunInstances:0102", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Q7DXWWF6MF8PNEWR" : { - "sku" : "Q7DXWWF6MF8PNEWR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m3.2xlarge", - "operation" : "RunInstances", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MGFVS9REN5EG5F65" : { - "sku" : "MGFVS9REN5EG5F65", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.2xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "J28DJ6QCZ8VU7DZQ" : { - "sku" : "J28DJ6QCZ8VU7DZQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "244 GiB", - "storage" : "24 x 2000 HDD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:d2.8xlarge", - "operation" : "RunInstances:0002", - "ecu" : "116", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "M2YSHUBETB3JX4M4" : { - "sku" : "M2YSHUBETB3JX4M4", - "productFamily" : "NAT Gateway", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "group" : "NGW:NatGateway", - "groupDescription" : "Hourly charge for NAT Gateways", - "usagetype" : "NatGateway-Hours", - "operation" : "NatGateway", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "B6VB3UEXSBZ2WHBT" : { - "sku" : "B6VB3UEXSBZ2WHBT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.large", - "operation" : "RunInstances:0010", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BHX8HR3SKNMTY2Z6" : { - "sku" : "BHX8HR3SKNMTY2Z6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "15 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.2xlarge", - "operation" : "RunInstances:0002", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TCG3S2HMU5VP2DFN" : { - "sku" : "TCG3S2HMU5VP2DFN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "30 GiB", - "storage" : "2 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:c3.4xlarge", - "operation" : "RunInstances:0800", - "ecu" : "55", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QZ5WGYAMVW8QTQY4" : { - "sku" : "QZ5WGYAMVW8QTQY4", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "60 GiB", - "storage" : "2 x 120 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:g2.8xlarge", - "operation" : "RunInstances", - "ecu" : "104", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "S73ZA9CU68E57ZAH" : { - "sku" : "S73ZA9CU68E57ZAH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 800 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i2.xlarge", - "operation" : "RunInstances:0102", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MQ6M7PWCD7PJTKHD" : { - "sku" : "MQ6M7PWCD7PJTKHD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "768 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:p2.16xlarge", - "operation" : "RunInstances:000g", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "16", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BVX3DU7JUBDMJ5TW" : { - "sku" : "BVX3DU7JUBDMJ5TW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "30.5 GiB", - "storage" : "3 x 2000 HDD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:d2.xlarge", - "operation" : "RunInstances:0002", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HY3BZPP2B6K8MSJF" : { - "sku" : "HY3BZPP2B6K8MSJF", - "productFamily" : "Storage", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "storageMedia" : "SSD-backed", - "volumeType" : "General Purpose", - "maxVolumeSize" : "16 TiB", - "maxIopsvolume" : "10000", - "maxIopsBurstPerformance" : "3000 for volumes <= 1 TiB", - "maxThroughputvolume" : "160 MB/sec", - "usagetype" : "EBS:VolumeUsage.gp2", - "operation" : "", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "R85D93TFFU8AU7WZ" : { - "sku" : "R85D93TFFU8AU7WZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:p3.2xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "8X3QU4DYXVJAXZK3" : { - "sku" : "8X3QU4DYXVJAXZK3", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Outbound", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "US West (N. California)", - "toLocationType" : "AWS Region", - "usagetype" : "USE1-USW1-AWS-Out-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "FUETJGKE44YRRDYN" : { - "sku" : "FUETJGKE44YRRDYN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.2xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TQV69AZUDVU7GUKY" : { - "sku" : "TQV69AZUDVU7GUKY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m3.2xlarge", - "operation" : "RunInstances:000g", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FSBXVV6Q3V6PKBSN" : { - "sku" : "FSBXVV6Q3V6PKBSN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5U9FJ3JR532G32NE" : { - "sku" : "5U9FJ3JR532G32NE", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "hs1.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "17", - "physicalProcessor" : "Intel Xeon E5-2650", - "clockSpeed" : "2 GHz", - "memory" : "117 GiB", - "storage" : "24 x 2000", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:hs1.8xlarge", - "operation" : "RunInstances:0006", - "ecu" : "35", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Std", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SCYNS2QNCRN89WMZ" : { - "sku" : "SCYNS2QNCRN89WMZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.0 GHz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.xlarge", - "operation" : "RunInstances:0010", - "ecu" : "Variable", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PAV3TCYGE4N3YT8E" : { - "sku" : "PAV3TCYGE4N3YT8E", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Inbound", - "fromLocation" : "AWS GovCloud (US)", - "fromLocationType" : "AWS Region", - "toLocation" : "US East (N. Virginia)", - "toLocationType" : "AWS Region", - "usagetype" : "UGW1-USE1-AWS-In-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "266JF3S5TDUM4QX4" : { - "sku" : "266JF3S5TDUM4QX4", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "3.75 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.large", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JJMJT8KUKWT7YX58" : { - "sku" : "JJMJT8KUKWT7YX58", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.4xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "3000 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Z4Y83SEHA9UDFDP2" : { - "sku" : "Z4Y83SEHA9UDFDP2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:g3.4xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "0", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "T6R594SDRM2DHYVF" : { - "sku" : "T6R594SDRM2DHYVF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "30.5 GiB", - "storage" : "3 x 2000 HDD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:d2.xlarge", - "operation" : "RunInstances:0800", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EBPZ7HKS449M43K4" : { - "sku" : "EBPZ7HKS449M43K4", - "productFamily" : "Dedicated Host", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "72", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "NA", - "storage" : "NA", - "networkPerformance" : "NA", - "processorArchitecture" : "64-bit", - "tenancy" : "Reserved", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "ReservedHostUsage:c5", - "operation" : "RunInstances", - "ecu" : "NA", - "instanceCapacity18xlarge" : "1", - "instanceCapacity2xlarge" : "8", - "instanceCapacity4xlarge" : "4", - "instanceCapacity9xlarge" : "2", - "instanceCapacityLarge" : "36", - "instanceCapacityXlarge" : "18", - "normalizationSizeFactor" : "NA", - "physicalCores" : "36", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FC6PRNUH98J5QR93" : { - "sku" : "FC6PRNUH98J5QR93", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:g3.8xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "0", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "2", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JDDEXQUM9ZCJ8RDR" : { - "sku" : "JDDEXQUM9ZCJ8RDR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.4xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "3000 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZMYRWAJAX252Z8ZW" : { - "sku" : "ZMYRWAJAX252Z8ZW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "30 GiB", - "storage" : "2 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.4xlarge", - "operation" : "RunInstances:0010", - "ecu" : "55", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HD7DSDMNNNQAM7PK" : { - "sku" : "HD7DSDMNNNQAM7PK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.16xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "12000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YN6S4KGMAE64PQR5" : { - "sku" : "YN6S4KGMAE64PQR5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.0 GHz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:t2.xlarge", - "operation" : "RunInstances:0800", - "ecu" : "Variable", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "F3HZNTTFXFDM68NR" : { - "sku" : "F3HZNTTFXFDM68NR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VBNNBXFKQ7Y722HK" : { - "sku" : "VBNNBXFKQ7Y722HK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "2 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:i2.2xlarge", - "operation" : "RunInstances:0800", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "M27XKJYAEY2SPYUU" : { - "sku" : "M27XKJYAEY2SPYUU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 80 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.xlarge", - "operation" : "RunInstances:0002", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7CHGSVMJ73UUBCGJ" : { - "sku" : "7CHGSVMJ73UUBCGJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:g3.8xlarge", - "operation" : "Hourly", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "0", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "2", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "D8RDVC722HKNR55G" : { - "sku" : "D8RDVC722HKNR55G", - "productFamily" : "System Operation", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "provisioned" : "Yes", - "group" : "EBS IOPS", - "groupDescription" : "IOPS", - "usagetype" : "EBS:VolumeP-IOPS.piops", - "operation" : "", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "B99R452XS63YWAQ4" : { - "sku" : "B99R452XS63YWAQ4", - "productFamily" : "Dedicated Host", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "NA", - "storage" : "NA", - "networkPerformance" : "NA", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostUsage:i2", - "operation" : "RunInstances", - "ecu" : "NA", - "instanceCapacity16xlarge" : "1", - "instanceCapacity2xlarge" : "4", - "instanceCapacity4xlarge" : "2", - "instanceCapacity8xlarge" : "1", - "instanceCapacityXlarge" : "8", - "normalizationSizeFactor" : "NA", - "physicalCores" : "20", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "P2HREWU59F8JRCVB" : { - "sku" : "P2HREWU59F8JRCVB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.16xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "12000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "8KGH3T8ZZRGT8BQF" : { - "sku" : "8KGH3T8ZZRGT8BQF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "30 GiB", - "storage" : "2 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.4xlarge", - "operation" : "RunInstances:0006", - "ecu" : "55", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RVFUWFSHJ76F8GFX" : { - "sku" : "RVFUWFSHJ76F8GFX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "60 GiB", - "storage" : "2 x 120 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:g2.8xlarge", - "operation" : "RunInstances:0800", - "ecu" : "104", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VWWDF9UY9DZAY2ZU" : { - "sku" : "VWWDF9UY9DZAY2ZU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "3,904 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.32xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "340", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "V7P8A57BFQNG5NH7" : { - "sku" : "V7P8A57BFQNG5NH7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:p2.xlarge", - "operation" : "RunInstances:0002", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "M7W8H8ETF66PU3XA" : { - "sku" : "M7W8H8ETF66PU3XA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.16xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "12000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KGM6Q2CJFMEMKWQN" : { - "sku" : "KGM6Q2CJFMEMKWQN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.small", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.3 GHz", - "memory" : "2 GiB", - "storage" : "EBS only", - "networkPerformance" : "Low to Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.small", - "operation" : "RunInstances:0010", - "ecu" : "Variable", - "normalizationSizeFactor" : "1", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "C3YH2XDN7TZMMA7P" : { - "sku" : "C3YH2XDN7TZMMA7P", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "8 x 1.9 NVMe SSD", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:i3.16xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SACDBTNC2KPVGJ8R" : { - "sku" : "SACDBTNC2KPVGJ8R", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Outbound", - "fromLocation" : "EU (Frankfurt)", - "fromLocationType" : "AWS Region", - "toLocation" : "US East (N. Virginia)", - "toLocationType" : "AWS Region", - "usagetype" : "EUC1-USE1-AWS-Out-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "URVKD93M9ZPEGG7Z" : { - "sku" : "URVKD93M9ZPEGG7Z", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.16xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "179", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FDYDQJ8P2SCE3SD8" : { - "sku" : "FDYDQJ8P2SCE3SD8", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "1 x 240", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.2xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "23", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QRBKW8JQVD29EVBU" : { - "sku" : "QRBKW8JQVD29EVBU", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "1 x 240", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.2xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "23", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "8D8WEXZEQ37HKFNV" : { - "sku" : "8D8WEXZEQ37HKFNV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1.32xlarge", - "operation" : "RunInstances:0202", - "ecu" : "349", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "SQL Web", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7U7TWP44UP36AT3R" : { - "sku" : "7U7TWP44UP36AT3R", - "productFamily" : "Storage Snapshot", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "storageMedia" : "Amazon S3", - "usagetype" : "EBS:SnapshotUsage", - "operation" : "", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Y4FKSUJMDV8DEFTS" : { - "sku" : "Y4FKSUJMDV8DEFTS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.medium", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "3.75 GiB", - "storage" : "1 x 410", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m1.medium", - "operation" : "RunInstances:000g", - "ecu" : "2", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AJUJW25DAVRG4WEY" : { - "sku" : "AJUJW25DAVRG4WEY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "7.5 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.xlarge", - "operation" : "RunInstances", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "G8C4DK367XUB4P7B" : { - "sku" : "G8C4DK367XUB4P7B", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "800 Mbps", - "ecu" : "Variable", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3HSGZRDZXZZHNPJC" : { - "sku" : "3HSGZRDZXZZHNPJC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "60 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.8xlarge", - "operation" : "RunInstances:0202", - "ecu" : "108", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EMT6SZKEDQPJRUQQ" : { - "sku" : "EMT6SZKEDQPJRUQQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "61 GiB", - "storage" : "6 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:d2.2xlarge", - "operation" : "RunInstances:0002", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CFPKDYHZCTKMWEKC" : { - "sku" : "CFPKDYHZCTKMWEKC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "60 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.8xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "132", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZWRX2ZR95V6ZB42V" : { - "sku" : "ZWRX2ZR95V6ZB42V", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "30 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.4xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "WHSMTPG2EQZT7C6G" : { - "sku" : "WHSMTPG2EQZT7C6G", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "30 GiB", - "storage" : "2 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.4xlarge", - "operation" : "RunInstances:0010", - "ecu" : "55", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PH8HDZXB5PCGB9JY" : { - "sku" : "PH8HDZXB5PCGB9JY", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "1 x 480", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.4xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "47", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "M585C29WB3HB866B" : { - "sku" : "M585C29WB3HB866B", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 960", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.8xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "91", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9SQP8ZU4V2K9UGTJ" : { - "sku" : "9SQP8ZU4V2K9UGTJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:r4.2xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "1600 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HUCWZ5CCHQU7EEQU" : { - "sku" : "HUCWZ5CCHQU7EEQU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cr1.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670", - "memory" : "244 GiB", - "storage" : "2 x 120 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:cr1.8xlarge", - "operation" : "RunInstances:0006", - "ecu" : "88", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Std", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "8D2QYF9WYWYEREWG" : { - "sku" : "8D2QYF9WYWYEREWG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "3.75 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.large", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MHX8TSHV6Z45N5KU" : { - "sku" : "MHX8TSHV6Z45N5KU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "30.5 GiB", - "storage" : "3 x 2000 HDD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:d2.xlarge", - "operation" : "RunInstances:0800", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EZC8PDJ8658WHH9T" : { - "sku" : "EZC8PDJ8658WHH9T", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.8xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "6000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "X6X8ZCTUWB8NGENM" : { - "sku" : "X6X8ZCTUWB8NGENM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:p3.2xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EVNBJQCCHQGV6XNB" : { - "sku" : "EVNBJQCCHQGV6XNB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:p2.xlarge", - "operation" : "RunInstances:000g", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "73PG2QBG4QJ74BQG" : { - "sku" : "73PG2QBG4QJ74BQG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 80 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.xlarge", - "operation" : "RunInstances:0102", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "642BR46BHCZHCCZK" : { - "sku" : "642BR46BHCZHCCZK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "f1.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:f1.2xlarge", - "operation" : "RunInstances:0800", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VE3T3XPXTXR5FGJH" : { - "sku" : "VE3T3XPXTXR5FGJH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.large", - "operation" : "RunInstances", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DHYKJ8VFD83V8ETR" : { - "sku" : "DHYKJ8VFD83V8ETR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.2xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "1600 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CZNF2F6CSUG2M7XY" : { - "sku" : "CZNF2F6CSUG2M7XY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.2xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XYZXK8CJSF87RVWV" : { - "sku" : "XYZXK8CJSF87RVWV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "17.1 GiB", - "storage" : "1 x 420", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m2.xlarge", - "operation" : "RunInstances:0002", - "ecu" : "6.5", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VYJYXGRA69WHNN6N" : { - "sku" : "VYJYXGRA69WHNN6N", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "61 GiB", - "storage" : "6 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:d2.2xlarge", - "operation" : "RunInstances:0202", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FG8VFZ2BRHXVE3UE" : { - "sku" : "FG8VFZ2BRHXVE3UE", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "7.5 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m3.large", - "operation" : "RunInstances:0002", - "ecu" : "6.5", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XTPNAJDDCCQR3XRZ" : { - "sku" : "XTPNAJDDCCQR3XRZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "15 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.2xlarge", - "operation" : "RunInstances:0010", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "33GEZXW546A5G39A" : { - "sku" : "33GEZXW546A5G39A", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.large", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "450 Mbps", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DVVFNW9ND93DVCKY" : { - "sku" : "DVVFNW9ND93DVCKY", - "productFamily" : "Dedicated Host", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "NA", - "networkPerformance" : "NA", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostUsage:p3", - "operation" : "RunInstances", - "ecu" : "188", - "gpu" : "8", - "instanceCapacity16xlarge" : "1", - "instanceCapacity2xlarge" : "8", - "instanceCapacity8xlarge" : "2", - "normalizationSizeFactor" : "NA", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZPUJSMGMEEHDRCWG" : { - "sku" : "ZPUJSMGMEEHDRCWG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cg1.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "GPU instance", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon x5570", - "memory" : "22.5 GiB", - "storage" : "2 x 840", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:cg1.4xlarge", - "operation" : "RunInstances:0010", - "ecu" : "33.5", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7G6ZVMHDU3FVW9D5" : { - "sku" : "7G6ZVMHDU3FVW9D5", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "1 x 480", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.4xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "47", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZVZ4NWBV3CDP2G5H" : { - "sku" : "ZVZ4NWBV3CDP2G5H", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "7.5 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m3.large", - "operation" : "RunInstances:000g", - "ecu" : "6.5", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZBTSPT6YGG5E39RC" : { - "sku" : "ZBTSPT6YGG5E39RC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "7.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:c4.xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QUKA5FNRVVKN5422" : { - "sku" : "QUKA5FNRVVKN5422", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "4 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.large", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "U29KTD6EKFTKBK6T" : { - "sku" : "U29KTD6EKFTKBK6T", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "30 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.4xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "P3G8DU7HDSFEWNGN" : { - "sku" : "P3G8DU7HDSFEWNGN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "4 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:i2.4xlarge", - "operation" : "RunInstances:0800", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QCXEYVM3Y3JDE2QA" : { - "sku" : "QCXEYVM3Y3JDE2QA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "60 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.8xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "132", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "639ZEB9D49ASFB26" : { - "sku" : "639ZEB9D49ASFB26", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t1.micro", - "currentGeneration" : "No", - "instanceFamily" : "Micro instances", - "vcpu" : "1", - "physicalProcessor" : "Variable", - "memory" : "0.613 GiB", - "storage" : "EBS only", - "networkPerformance" : "Very Low", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t1.micro", - "operation" : "RunInstances", - "ecu" : "26", - "normalizationSizeFactor" : "0.5", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2WG3ZVDRBDM6AXDY" : { - "sku" : "2WG3ZVDRBDM6AXDY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.large", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "400 Mbps", - "ecu" : "135", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2WSBC7H546ERPK5X" : { - "sku" : "2WSBC7H546ERPK5X", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.4xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "WMP332VHSC4A9Z25" : { - "sku" : "WMP332VHSC4A9Z25", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.0 GHz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:t2.2xlarge", - "operation" : "RunInstances:0800", - "ecu" : "Variable", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TK4PD8NGZPE9EAZ3" : { - "sku" : "TK4PD8NGZPE9EAZ3", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Outbound", - "fromLocation" : "South America (Sao Paulo)", - "fromLocationType" : "AWS Region", - "toLocation" : "US East (N. Virginia)", - "toLocationType" : "AWS Region", - "usagetype" : "SAE1-USE1-AWS-Out-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "EQAYX5BGG5UU7TKF" : { - "sku" : "EQAYX5BGG5UU7TKF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m3.2xlarge", - "operation" : "RunInstances:0202", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZQKQM4BJPUBCMDXD" : { - "sku" : "ZQKQM4BJPUBCMDXD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "hs1.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "17", - "physicalProcessor" : "Intel Xeon E5-2650", - "clockSpeed" : "2 GHz", - "memory" : "117 GiB", - "storage" : "24 x 2000", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:hs1.8xlarge", - "operation" : "RunInstances:0010", - "ecu" : "35", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "P47VRQMUV2K4MN5Z" : { - "sku" : "P47VRQMUV2K4MN5Z", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.large", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "450 Mbps", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SKMRUUXXN2WKPFZ8" : { - "sku" : "SKMRUUXXN2WKPFZ8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "4 x 1.9 NVMe SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.8xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YD7GPEVXPWVDFDJ7" : { - "sku" : "YD7GPEVXPWVDFDJ7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "61 GiB", - "storage" : "6 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:d2.2xlarge", - "operation" : "RunInstances:0002", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DJEXMYSZ7CJSUDPF" : { - "sku" : "DJEXMYSZ7CJSUDPF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.micro", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.3 GHz", - "memory" : "1 GiB", - "storage" : "EBS only", - "networkPerformance" : "Low to Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:t2.micro", - "operation" : "RunInstances:0800", - "ecu" : "Variable", - "normalizationSizeFactor" : "0.5", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "8D82FZE3BZCS4SXV" : { - "sku" : "8D82FZE3BZCS4SXV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "4 x 1.9 NVMe SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.8xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "R86DSK536TMRVK4T" : { - "sku" : "R86DSK536TMRVK4T", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cc2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670", - "clockSpeed" : "2.6 GHz", - "memory" : "60.5 GiB", - "storage" : "4 x 840", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:cc2.8xlarge", - "operation" : "RunInstances:0002", - "ecu" : "88", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "332WCJF3R5J2RH67" : { - "sku" : "332WCJF3R5J2RH67", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.large", - "operation" : "RunInstances:0202", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DBDH9RXEHD3FBJTR" : { - "sku" : "DBDH9RXEHD3FBJTR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:g3.16xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "4", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2GCTBU78G22TGEXZ" : { - "sku" : "2GCTBU78G22TGEXZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.small", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "1.7 GiB", - "storage" : "1 x 160", - "networkPerformance" : "Low", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage", - "operation" : "RunInstances", - "ecu" : "Variable", - "normalizationSizeFactor" : "1", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MK9AMH7NU69KFAYJ" : { - "sku" : "MK9AMH7NU69KFAYJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:g3.8xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "0", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "2", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "N8Q3DXFKSXBK5NQR" : { - "sku" : "N8Q3DXFKSXBK5NQR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 0.95 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:i3.xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "850 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "E9BJT9V6S2SW8D9F" : { - "sku" : "E9BJT9V6S2SW8D9F", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "64 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.4xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "53.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4BUZB6KWPTJTVSB7" : { - "sku" : "4BUZB6KWPTJTVSB7", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "1 x 480", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.4xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "47", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "96GP335H4PPFX6P2" : { - "sku" : "96GP335H4PPFX6P2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "122 GiB", - "storage" : "12 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:d2.4xlarge", - "operation" : "RunInstances:000g", - "ecu" : "56", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XERQGANK8Y3TXRRY" : { - "sku" : "XERQGANK8Y3TXRRY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.small", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.3 GHz", - "memory" : "2 GiB", - "storage" : "EBS only", - "networkPerformance" : "Low to Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.small", - "operation" : "RunInstances:000g", - "ecu" : "Variable", - "normalizationSizeFactor" : "1", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Y2UXNGAEK992YZMH" : { - "sku" : "Y2UXNGAEK992YZMH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "30 GiB", - "storage" : "2 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.4xlarge", - "operation" : "RunInstances:0102", - "ecu" : "55", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SKBEBKWYFZHQHM9H" : { - "sku" : "SKBEBKWYFZHQHM9H", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1.32xlarge", - "operation" : "RunInstances:000g", - "ecu" : "349", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CTE4Z3ZVEMX6UBMZ" : { - "sku" : "CTE4Z3ZVEMX6UBMZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.large", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "400 Mbps", - "ecu" : "135", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "WWNXU2QJU9XYEM5Z" : { - "sku" : "WWNXU2QJU9XYEM5Z", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.0 GHz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.xlarge", - "operation" : "RunInstances:0002", - "ecu" : "Variable", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3NXCSDASD23BBNGJ" : { - "sku" : "3NXCSDASD23BBNGJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "1 x 320 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:r3.4xlarge", - "operation" : "RunInstances:0800", - "ecu" : "52", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KZTDUURKCC3R7F95" : { - "sku" : "KZTDUURKCC3R7F95", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.4xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "M4YGUC8KPPJRRCRJ" : { - "sku" : "M4YGUC8KPPJRRCRJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "7.5 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:c3.xlarge", - "operation" : "RunInstances:0800", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HQEH3ZWJVT46JHRG" : { - "sku" : "HQEH3ZWJVT46JHRG", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "AWS Outbound", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "External", - "toLocationType" : "Other", - "usagetype" : "DataTransfer-Out-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "4PRP277ZT2QSK84X" : { - "sku" : "4PRP277ZT2QSK84X", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:p3.2xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UW8KGBXJYHZFRWWG" : { - "sku" : "UW8KGBXJYHZFRWWG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:p2.8xlarge", - "operation" : "RunInstances", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZJE4Q2AHZQ5TC873" : { - "sku" : "ZJE4Q2AHZQ5TC873", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.10xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "40", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "160 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:m4.10xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "80", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SVFBAAERCQTFD96J" : { - "sku" : "SVFBAAERCQTFD96J", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.2xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "33FHBWNHWMUJDK7G" : { - "sku" : "33FHBWNHWMUJDK7G", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "15 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:c4.2xlarge", - "operation" : "Hourly", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "WQS4N692QYT65JPA" : { - "sku" : "WQS4N692QYT65JPA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:r4.2xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "1600 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NR96G3WS4WXEXUW4" : { - "sku" : "NR96G3WS4WXEXUW4", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "60 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.8xlarge", - "operation" : "RunInstances:0202", - "ecu" : "108", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BGEHNPNUMJPPS6UY" : { - "sku" : "BGEHNPNUMJPPS6UY", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.16xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "179", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "378CVEQGDCKSJYEU" : { - "sku" : "378CVEQGDCKSJYEU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "768 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:p2.16xlarge", - "operation" : "RunInstances:0002", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "16", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TT84KWCJTYXTFX54" : { - "sku" : "TT84KWCJTYXTFX54", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RKCQDTMY5DZS4JWT" : { - "sku" : "RKCQDTMY5DZS4JWT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "68.4 GiB", - "storage" : "2 x 840", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m2.4xlarge", - "operation" : "RunInstances", - "ecu" : "26", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QG5G45WKDWDDHTFV" : { - "sku" : "QG5G45WKDWDDHTFV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.0 GHz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Low to Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.large", - "operation" : "RunInstances", - "ecu" : "Variable", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TSQYYQMSKWVB64XU" : { - "sku" : "TSQYYQMSKWVB64XU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "60 GiB", - "storage" : "2 x 120 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:g2.8xlarge", - "operation" : "RunInstances:0010", - "ecu" : "104", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5N3MEPSFNAD33R3K" : { - "sku" : "5N3MEPSFNAD33R3K", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "1 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:i3.2xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7WXY6Y9EMWKMGGWT" : { - "sku" : "7WXY6Y9EMWKMGGWT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 80 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.xlarge", - "operation" : "RunInstances:000g", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FSV8GFFRA53K2PPC" : { - "sku" : "FSV8GFFRA53K2PPC", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "1 x 240", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.2xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "23", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5GXT3Y9MYUCWS59J" : { - "sku" : "5GXT3Y9MYUCWS59J", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m3.2xlarge", - "operation" : "RunInstances", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZU8N8MJR36FHWUGA" : { - "sku" : "ZU8N8MJR36FHWUGA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cg1.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "GPU instance", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon x5570", - "memory" : "22.5 GiB", - "storage" : "2 x 840", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:cg1.4xlarge", - "operation" : "RunInstances:0010", - "ecu" : "33.5", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FCJS875MBNBNKGZB" : { - "sku" : "FCJS875MBNBNKGZB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "3,904 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.32xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "340", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZY733QB4MX5V3J68" : { - "sku" : "ZY733QB4MX5V3J68", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.micro", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.3 GHz", - "memory" : "1 GiB", - "storage" : "EBS only", - "networkPerformance" : "Low to Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.micro", - "operation" : "RunInstances:0010", - "ecu" : "Variable", - "normalizationSizeFactor" : "0.5", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JRQSPKHTPKSDNFSM" : { - "sku" : "JRQSPKHTPKSDNFSM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "64 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.4xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "53.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MU4QGTJYWR6T73MZ" : { - "sku" : "MU4QGTJYWR6T73MZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "2 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i2.2xlarge", - "operation" : "RunInstances", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HSDKMG6XBMBSSBZ9" : { - "sku" : "HSDKMG6XBMBSSBZ9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "4 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i2.4xlarge", - "operation" : "RunInstances:0202", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NE4JZMMMGJZH869R" : { - "sku" : "NE4JZMMMGJZH869R", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:c5.xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "43SVRH2NZVAKYEXT" : { - "sku" : "43SVRH2NZVAKYEXT", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Outbound", - "fromLocation" : "US East (Ohio)", - "fromLocationType" : "AWS Region", - "toLocation" : "US East (N. Virginia)", - "toLocationType" : "AWS Region", - "usagetype" : "USE2-USE1-AWS-Out-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "GKGWHEUHTS4PWNPE" : { - "sku" : "GKGWHEUHTS4PWNPE", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "4 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i2.4xlarge", - "operation" : "RunInstances:0010", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3UP33R2RXCADSPSX" : { - "sku" : "3UP33R2RXCADSPSX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "64 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.4xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "53.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MC5Y8Q7EUMRZTRZE" : { - "sku" : "MC5Y8Q7EUMRZTRZE", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "4 x 1.9 NVMe SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.8xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "D8R4U4YGJ7FBAM9V" : { - "sku" : "D8R4U4YGJ7FBAM9V", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.8xlarge", - "operation" : "RunInstances:0202", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VWMNXYV7FJNWU55C" : { - "sku" : "VWMNXYV7FJNWU55C", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c1.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "7 GiB", - "storage" : "4 x 420", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c1.xlarge", - "operation" : "RunInstances:000g", - "ecu" : "20", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "T8WDU2BB3QKC577Z" : { - "sku" : "T8WDU2BB3QKC577Z", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "8 x 800 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i2.8xlarge", - "operation" : "RunInstances:000g", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZS7S83VF4T4BSSC4" : { - "sku" : "ZS7S83VF4T4BSSC4", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:r4.8xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "6000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6VVPWTSHET4XF7T9" : { - "sku" : "6VVPWTSHET4XF7T9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "30 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.4xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MCUV5B88GT577CFE" : { - "sku" : "MCUV5B88GT577CFE", - "productFamily" : "Fee", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "group" : "EC2-Dedicated Usage", - "groupDescription" : "Fee for running at least one Dedicated Instance in the region", - "usagetype" : "DedicatedUsage", - "operation" : "Surcharge", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZESHW7CZVERW2BN2" : { - "sku" : "ZESHW7CZVERW2BN2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "4 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i2.4xlarge", - "operation" : "RunInstances", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XGQ9DRFV2RNYQE43" : { - "sku" : "XGQ9DRFV2RNYQE43", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "8 x 1.9 NVMe SSD", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.16xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2QF2GD6XUCJHFMKF" : { - "sku" : "2QF2GD6XUCJHFMKF", - "productFamily" : "NAT Gateway", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "group" : "NGW:NatGateway", - "groupDescription" : "Per hour and per Gbps charge for NAT Gateways with provisioned bandwidth", - "usagetype" : "NatGateway-Prvd-Gbps", - "operation" : "NatGateway", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JKH75GSYK4EQQ6ZK" : { - "sku" : "JKH75GSYK4EQQ6ZK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "244 GiB", - "storage" : "24 x 2000 HDD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:d2.8xlarge", - "operation" : "RunInstances:0102", - "ecu" : "116", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QC767KVGEA4QJZVP" : { - "sku" : "QC767KVGEA4QJZVP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "7.5 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "ebsOptimized" : "Yes", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:c3.xlarge", - "operation" : "Hourly", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "G2Y7JD8J9KR378JW" : { - "sku" : "G2Y7JD8J9KR378JW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "2 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.4xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FXA6QJGGCY7KRFGC" : { - "sku" : "FXA6QJGGCY7KRFGC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.large", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "450 Mbps", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QQXUWBKQH3U8F6KT" : { - "sku" : "QQXUWBKQH3U8F6KT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "17.1 GiB", - "storage" : "1 x 420", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m2.xlarge", - "operation" : "RunInstances:000g", - "ecu" : "6.5", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "44BFC6CSKFS3KEJP" : { - "sku" : "44BFC6CSKFS3KEJP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "2 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.4xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BQ5EKEX4RRBCH5MY" : { - "sku" : "BQ5EKEX4RRBCH5MY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "30.5 GiB", - "storage" : "3 x 2000 HDD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:d2.xlarge", - "operation" : "RunInstances:0002", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "355G43EUBXD5NEFF" : { - "sku" : "355G43EUBXD5NEFF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:g3.4xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "0", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "67X6UH937GWQTMF7" : { - "sku" : "67X6UH937GWQTMF7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "f1.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:f1.2xlarge", - "operation" : "RunInstances:0800", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3S465DABJFVVXWJG" : { - "sku" : "3S465DABJFVVXWJG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.18xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "72", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "144 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.18xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "9000 Mbps", - "ecu" : "278", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "144", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "WNE7QVTQ353JW53G" : { - "sku" : "WNE7QVTQ353JW53G", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "800 Mbps", - "ecu" : "Variable", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QR4WEBVA44K4VYE6" : { - "sku" : "QR4WEBVA44K4VYE6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "3.75 GiB", - "storage" : "2 x 16 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.large", - "operation" : "RunInstances:0006", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "WEJJ8BVQUW2CFG55" : { - "sku" : "WEJJ8BVQUW2CFG55", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "U333877KGJA25DEX" : { - "sku" : "U333877KGJA25DEX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "256 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.16xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "10000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2MAPZERKCXRGMU4P" : { - "sku" : "2MAPZERKCXRGMU4P", - "productFamily" : "Dedicated Host", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "72", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "NA", - "storage" : "NA", - "networkPerformance" : "NA", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostUsage:c5", - "operation" : "RunInstances", - "ecu" : "NA", - "instanceCapacity18xlarge" : "1", - "instanceCapacity2xlarge" : "8", - "instanceCapacity4xlarge" : "4", - "instanceCapacity9xlarge" : "2", - "instanceCapacityLarge" : "36", - "instanceCapacityXlarge" : "18", - "normalizationSizeFactor" : "NA", - "physicalCores" : "36", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KNFTFJY262DHDG36" : { - "sku" : "KNFTFJY262DHDG36", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.8xlarge", - "operation" : "RunInstances:0010", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FYEGBZ26B3KMNACW" : { - "sku" : "FYEGBZ26B3KMNACW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cg1.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "GPU instance", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon x5570", - "memory" : "22.5 GiB", - "storage" : "2 x 840", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:cg1.4xlarge", - "operation" : "RunInstances:0202", - "ecu" : "33.5", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6NR8XUQNBC8BXB6C" : { - "sku" : "6NR8XUQNBC8BXB6C", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cr1.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670", - "memory" : "244 GiB", - "storage" : "2 x 120 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:cr1.8xlarge", - "operation" : "RunInstances:0800", - "ecu" : "88", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Y8GH4ZVR4XW8623W" : { - "sku" : "Y8GH4ZVR4XW8623W", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "3.75 GiB", - "storage" : "2 x 16 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.large", - "operation" : "RunInstances", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "K9GMF5NPRDG654FW" : { - "sku" : "K9GMF5NPRDG654FW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:m3.xlarge", - "operation" : "RunInstances:0800", - "ecu" : "13", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7WKKM2PCFQV7UGX4" : { - "sku" : "7WKKM2PCFQV7UGX4", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c1.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "7 GiB", - "storage" : "4 x 420", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c1.xlarge", - "operation" : "RunInstances:0006", - "ecu" : "20", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BHM7BATGW8NG4NZ4" : { - "sku" : "BHM7BATGW8NG4NZ4", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Outbound", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "Asia Pacific (Mumbai)", - "toLocationType" : "AWS Region", - "usagetype" : "USE1-APS3-AWS-Out-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "CR9BJ8YMV2HGWRBH" : { - "sku" : "CR9BJ8YMV2HGWRBH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.2xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "1600 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GA5PWJF9UF3X7YVH" : { - "sku" : "GA5PWJF9UF3X7YVH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "17.1 GiB", - "storage" : "1 x 420", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m2.xlarge", - "operation" : "RunInstances:0202", - "ecu" : "6.5", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "86VC54YVHZCQW5AC" : { - "sku" : "86VC54YVHZCQW5AC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "7.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JHPHDAYNUFXJTVZB" : { - "sku" : "JHPHDAYNUFXJTVZB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.small", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "1.7 GiB", - "storage" : "1 x 160", - "networkPerformance" : "Low", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage", - "operation" : "RunInstances:0202", - "ecu" : "Variable", - "normalizationSizeFactor" : "1", - "preInstalledSw" : "SQL Web", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4EBV6P5EQBBDFNKX" : { - "sku" : "4EBV6P5EQBBDFNKX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.2xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KVUGTJ5SYPS9UYG6" : { - "sku" : "KVUGTJ5SYPS9UYG6", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "1 x 480", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.4xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "47", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GXY7B6YFCHHVPBQX" : { - "sku" : "GXY7B6YFCHHVPBQX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "8 x 1.9 NVMe SSD", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.16xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KBAHSDRSVP6ZT96X" : { - "sku" : "KBAHSDRSVP6ZT96X", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.small", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "1.7 GiB", - "storage" : "1 x 160", - "networkPerformance" : "Low", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage", - "operation" : "RunInstances", - "ecu" : "Variable", - "normalizationSizeFactor" : "1", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TA9V737SGNW5GKAK" : { - "sku" : "TA9V737SGNW5GKAK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "768 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:p2.16xlarge", - "operation" : "RunInstances:0102", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "16", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SGYUS9N7VCKNAXVB" : { - "sku" : "SGYUS9N7VCKNAXVB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:g3.16xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "4", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TJESF5VS9JX8WXEN" : { - "sku" : "TJESF5VS9JX8WXEN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "64 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.4xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "53.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XDMQUDGKMFD5ZV6E" : { - "sku" : "XDMQUDGKMFD5ZV6E", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:r4.4xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "3000 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3M86JWNYP8BSN55W" : { - "sku" : "3M86JWNYP8BSN55W", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "34.2 GiB", - "storage" : "1 x 850", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m2.2xlarge", - "operation" : "RunInstances:0010", - "ecu" : "13", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PWKZ9X73UG7P4PFN" : { - "sku" : "PWKZ9X73UG7P4PFN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "61 GiB", - "storage" : "6 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:d2.2xlarge", - "operation" : "RunInstances:0800", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZA2GJ3U6RCX4Q6HE" : { - "sku" : "ZA2GJ3U6RCX4Q6HE", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 0.475 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.large", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "425 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "K4FQKJH96JE6DDW2" : { - "sku" : "K4FQKJH96JE6DDW2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m3.xlarge", - "operation" : "RunInstances:000g", - "ecu" : "13", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YDKCXGKCG5THW77R" : { - "sku" : "YDKCXGKCG5THW77R", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "30 GiB", - "storage" : "2 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:c3.4xlarge", - "operation" : "RunInstances:0800", - "ecu" : "55", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "96UUST8GZ7QZZ2Z3" : { - "sku" : "96UUST8GZ7QZZ2Z3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "60 GiB", - "storage" : "2 x 120 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:g2.8xlarge", - "operation" : "RunInstances:0102", - "ecu" : "104", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "49B7W7H2P8FD3T53" : { - "sku" : "49B7W7H2P8FD3T53", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "8 x 800 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:i2.8xlarge", - "operation" : "RunInstances:0800", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "G7WBD4E4RJYGHKER" : { - "sku" : "G7WBD4E4RJYGHKER", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 80 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.xlarge", - "operation" : "RunInstances:0102", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "F5GG77WYJNEW8T77" : { - "sku" : "F5GG77WYJNEW8T77", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 0.95 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "850 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MSY2XU2REE8QSFZZ" : { - "sku" : "MSY2XU2REE8QSFZZ", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 960", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.8xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "91", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SQKVU3RSHDUKCC86" : { - "sku" : "SQKVU3RSHDUKCC86", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cg1.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "GPU instance", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon x5570", - "memory" : "22.5 GiB", - "storage" : "2 x 840", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:cg1.4xlarge", - "operation" : "RunInstances:0002", - "ecu" : "33.5", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QTWEYQU689QP4W2Y" : { - "sku" : "QTWEYQU689QP4W2Y", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.9xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "72 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.9xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "4500 Mbps", - "ecu" : "139", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "72", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "F3MSPCKJ74QTGZ7J" : { - "sku" : "F3MSPCKJ74QTGZ7J", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.2xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZJC9VZJF5NZNYSVK" : { - "sku" : "ZJC9VZJF5NZNYSVK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "122 GiB", - "storage" : "12 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:d2.4xlarge", - "operation" : "RunInstances", - "ecu" : "56", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6PNPTZCGGYT2UXSS" : { - "sku" : "6PNPTZCGGYT2UXSS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "7.5 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.xlarge", - "operation" : "RunInstances:0202", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TMTUPBFYDNCYXCDK" : { - "sku" : "TMTUPBFYDNCYXCDK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "768 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:p2.16xlarge", - "operation" : "RunInstances:000g", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "16", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2KNBBY32AX7JPE72" : { - "sku" : "2KNBBY32AX7JPE72", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "4 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.large", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MDQWTP6HDQDFGNVZ" : { - "sku" : "MDQWTP6HDQDFGNVZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.2xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7AH58V9CNVM6SBXM" : { - "sku" : "7AH58V9CNVM6SBXM", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "1 x 480", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.4xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "47", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Z9AT4X8BA5YM4T7A" : { - "sku" : "Z9AT4X8BA5YM4T7A", - "productFamily" : "Dedicated Host", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4", - "instanceFamily" : "General purpose", - "vcpu" : "40", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "NA", - "storage" : "NA", - "networkPerformance" : "NA", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostUsage:m4", - "operation" : "RunInstances", - "ecu" : "NA", - "instanceCapacity10xlarge" : "1", - "instanceCapacity2xlarge" : "5", - "instanceCapacity4xlarge" : "2", - "instanceCapacityLarge" : "22", - "instanceCapacityXlarge" : "11", - "normalizationSizeFactor" : "NA", - "physicalCores" : "24", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SPK2TX869ZYTJYHY" : { - "sku" : "SPK2TX869ZYTJYHY", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "1 x 480", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:x1e.4xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "47", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4TCUDNKW7PMPSUT2" : { - "sku" : "4TCUDNKW7PMPSUT2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.8xlarge", - "operation" : "RunInstances", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6UXYTS4EWKB6WXM9" : { - "sku" : "6UXYTS4EWKB6WXM9", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Outbound", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "Asia Pacific (Sydney)", - "toLocationType" : "AWS Region", - "usagetype" : "USE1-APS2-AWS-Out-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "RPZ8YUERRQ8JPNYQ" : { - "sku" : "RPZ8YUERRQ8JPNYQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.8xlarge", - "operation" : "RunInstances:0010", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XHB4DJDY65SW2BN6" : { - "sku" : "XHB4DJDY65SW2BN6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c1.medium", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "1.7 GiB", - "storage" : "1 x 350", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c1.medium", - "operation" : "RunInstances:0002", - "ecu" : "2", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XQJX4FHA6PK8JN3M" : { - "sku" : "XQJX4FHA6PK8JN3M", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.medium", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "3.75 GiB", - "storage" : "1 x 4 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m3.medium", - "operation" : "RunInstances:0010", - "ecu" : "3", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NEMESC9E58GMS89T" : { - "sku" : "NEMESC9E58GMS89T", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 0.475 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.large", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "425 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7AGDS8PY7CBCQ8E4" : { - "sku" : "7AGDS8PY7CBCQ8E4", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.medium", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "3.75 GiB", - "storage" : "1 x 4 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m3.medium", - "operation" : "RunInstances:0006", - "ecu" : "3", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5W546BUFYA67MPSM" : { - "sku" : "5W546BUFYA67MPSM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "60 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:c3.8xlarge", - "operation" : "RunInstances:0800", - "ecu" : "108", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RW6CPEJMXU8H79H3" : { - "sku" : "RW6CPEJMXU8H79H3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "1 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.2xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "P6BRAB67QFNZCBXV" : { - "sku" : "P6BRAB67QFNZCBXV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "4 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:c5.large", - "operation" : "Hourly", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "482YDSG5GBVK93D9" : { - "sku" : "482YDSG5GBVK93D9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1.16xlarge", - "operation" : "RunInstances:0006", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Std", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "W8TS7DJMAYZW9FYR" : { - "sku" : "W8TS7DJMAYZW9FYR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "4 x 1.9 NVMe SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.8xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KTK7J8VMUNWAGTMN" : { - "sku" : "KTK7J8VMUNWAGTMN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "3.75 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.large", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2RXSDBKMUNNU9JA9" : { - "sku" : "2RXSDBKMUNNU9JA9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:g3.8xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "0", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "2", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "W5JCPDDZFQ9MFMCP" : { - "sku" : "W5JCPDDZFQ9MFMCP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "3,904 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.32xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "340", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DCYZX6GSD65USD7D" : { - "sku" : "DCYZX6GSD65USD7D", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:p3.16xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CE5UXUUUXVX4BZXY" : { - "sku" : "CE5UXUUUXVX4BZXY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.0 GHz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Low to Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.large", - "operation" : "RunInstances:0010", - "ecu" : "Variable", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AA67GCTD2ZXZBRNU" : { - "sku" : "AA67GCTD2ZXZBRNU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "8 x 1.9 NVMe SSD", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.16xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BMW624PB2S9DK3CT" : { - "sku" : "BMW624PB2S9DK3CT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "1 x 320 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.4xlarge", - "operation" : "RunInstances:0006", - "ecu" : "52", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AYPJKSTN4WJQRZAK" : { - "sku" : "AYPJKSTN4WJQRZAK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.micro", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.3 GHz", - "memory" : "1 GiB", - "storage" : "EBS only", - "networkPerformance" : "Low to Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.micro", - "operation" : "RunInstances:0002", - "ecu" : "Variable", - "normalizationSizeFactor" : "0.5", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2DKER9NNJBJDN6TX" : { - "sku" : "2DKER9NNJBJDN6TX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:r4.2xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "1600 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "U7RB8YXJ8WGXHNK3" : { - "sku" : "U7RB8YXJ8WGXHNK3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "17.1 GiB", - "storage" : "1 x 420", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m2.xlarge", - "operation" : "RunInstances:0202", - "ecu" : "6.5", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2VFDAQVRR43WD6VS" : { - "sku" : "2VFDAQVRR43WD6VS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.4xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "3000 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "M3EYMWB8284E38CQ" : { - "sku" : "M3EYMWB8284E38CQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "60 GiB", - "storage" : "2 x 120 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:g2.8xlarge", - "operation" : "RunInstances:0102", - "ecu" : "104", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "N7JF33XCBEZEKJFQ" : { - "sku" : "N7JF33XCBEZEKJFQ", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Outbound", - "fromLocation" : "EU (Ireland)", - "fromLocationType" : "AWS Region", - "toLocation" : "US East (N. Virginia)", - "toLocationType" : "AWS Region", - "usagetype" : "EU-USE1-AWS-Out-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "89ECMN7HXY7HZ9TN" : { - "sku" : "89ECMN7HXY7HZ9TN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "30 GiB", - "storage" : "2 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.4xlarge", - "operation" : "RunInstances:0010", - "ecu" : "55", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FQFTKTSPGMBGY47W" : { - "sku" : "FQFTKTSPGMBGY47W", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.4xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "3000 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KVJ2TM3PPP6NB94R" : { - "sku" : "KVJ2TM3PPP6NB94R", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "64 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.4xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "53.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Z7CW8886929Z9X5V" : { - "sku" : "Z7CW8886929Z9X5V", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "64 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.4xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "53.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KNDB73D8XZCD246T" : { - "sku" : "KNDB73D8XZCD246T", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "34.2 GiB", - "storage" : "1 x 850", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m2.2xlarge", - "operation" : "RunInstances:0006", - "ecu" : "13", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "K53MFK3A5RMBQM4F" : { - "sku" : "K53MFK3A5RMBQM4F", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:g3.16xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "4", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EVFZ5VDSHTZYPX89" : { - "sku" : "EVFZ5VDSHTZYPX89", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "68.4 GiB", - "storage" : "2 x 840", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m2.4xlarge", - "operation" : "RunInstances:000g", - "ecu" : "26", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TUYCY7SN3AZV7PVP" : { - "sku" : "TUYCY7SN3AZV7PVP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "244 GiB", - "storage" : "24 x 2000 HDD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:d2.8xlarge", - "operation" : "Hourly", - "ecu" : "116", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "R9GDS3K2XNJM96RZ" : { - "sku" : "R9GDS3K2XNJM96RZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "61 GiB", - "storage" : "6 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:d2.2xlarge", - "operation" : "Hourly", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NW4B786HNAH6HZ7R" : { - "sku" : "NW4B786HNAH6HZ7R", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Outbound", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "EU (Ireland)", - "toLocationType" : "AWS Region", - "usagetype" : "USE1-EU-AWS-Out-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "TJTQVWS5KE6W7NKV" : { - "sku" : "TJTQVWS5KE6W7NKV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:p3.16xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "M585HN87CC23QMVN" : { - "sku" : "M585HN87CC23QMVN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "800 Mbps", - "ecu" : "Variable", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RRRPJJTQ9JB8YF5W" : { - "sku" : "RRRPJJTQ9JB8YF5W", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.large", - "operation" : "RunInstances:0010", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BQZA2V9VZEE32ZTX" : { - "sku" : "BQZA2V9VZEE32ZTX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.large", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "7.5 GiB", - "storage" : "2 x 420", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m1.large", - "operation" : "RunInstances:0006", - "ecu" : "4", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Std", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TRZ6E8JSBS5WZR6G" : { - "sku" : "TRZ6E8JSBS5WZR6G", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1.16xlarge", - "operation" : "RunInstances:0010", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "F5ZPZV2EEY3FC3V9" : { - "sku" : "F5ZPZV2EEY3FC3V9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "34.2 GiB", - "storage" : "1 x 850", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m2.2xlarge", - "operation" : "RunInstances:0202", - "ecu" : "13", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "URGXD2SFFV6PJGW7" : { - "sku" : "URGXD2SFFV6PJGW7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "68.4 GiB", - "storage" : "2 x 840", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m2.4xlarge", - "operation" : "RunInstances:0010", - "ecu" : "26", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6SB59AKPWK57QDT4" : { - "sku" : "6SB59AKPWK57QDT4", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "34.2 GiB", - "storage" : "1 x 850", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m2.2xlarge", - "operation" : "RunInstances:0002", - "ecu" : "13", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "56836GB58CR7CVY9" : { - "sku" : "56836GB58CR7CVY9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1.32xlarge", - "operation" : "RunInstances:0002", - "ecu" : "349", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AYYR654XYEDPM6TA" : { - "sku" : "AYYR654XYEDPM6TA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "f1.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:f1.2xlarge", - "operation" : "RunInstances:000g", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7EJUFSKMUWC5DSMS" : { - "sku" : "7EJUFSKMUWC5DSMS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cc1.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670", - "memory" : "23 GiB", - "storage" : "2 x 840 GB", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:cc1.4xlarge", - "operation" : "RunInstances:0800", - "ecu" : "NA", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3YMR7VMVAJWZPJVQ" : { - "sku" : "3YMR7VMVAJWZPJVQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "7.5 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.xlarge", - "operation" : "RunInstances:0006", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BUS2682V3FEX8NNV" : { - "sku" : "BUS2682V3FEX8NNV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "30.5 GiB", - "storage" : "3 x 2000 HDD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:d2.xlarge", - "operation" : "RunInstances:0102", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RUDWUCYJBCDYZNGV" : { - "sku" : "RUDWUCYJBCDYZNGV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.medium", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "3.75 GiB", - "storage" : "1 x 4 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m3.medium", - "operation" : "RunInstances:0202", - "ecu" : "3", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RXE37MRXKF33M9T8" : { - "sku" : "RXE37MRXKF33M9T8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "30 GiB", - "storage" : "2 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.4xlarge", - "operation" : "RunInstances:000g", - "ecu" : "55", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GEXPJU4GWZZ6DSTT" : { - "sku" : "GEXPJU4GWZZ6DSTT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1.16xlarge", - "operation" : "RunInstances:0102", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Ent", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SG6RKNMKR45QPDJW" : { - "sku" : "SG6RKNMKR45QPDJW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "8 x 800 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i2.8xlarge", - "operation" : "RunInstances", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PSVDMQASMVK87NYB" : { - "sku" : "PSVDMQASMVK87NYB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "8 x 1.9 NVMe SSD", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.16xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HESKMZUVTYYVD46R" : { - "sku" : "HESKMZUVTYYVD46R", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:g3.16xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "4", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3TGYW692U4UVK8F4" : { - "sku" : "3TGYW692U4UVK8F4", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1.32xlarge", - "operation" : "RunInstances", - "ecu" : "349", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "M7CJ3KNC8SVT4Y6G" : { - "sku" : "M7CJ3KNC8SVT4Y6G", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.large", - "operation" : "RunInstances:0002", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "V56C6ZGR7E55RDBN" : { - "sku" : "V56C6ZGR7E55RDBN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "15 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.2xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HJU8DJNB6BYWAMBG" : { - "sku" : "HJU8DJNB6BYWAMBG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "3.75 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:c4.large", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GNAPQZPVUSZ36KUU" : { - "sku" : "GNAPQZPVUSZ36KUU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "60 GiB", - "storage" : "2 x 120 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:g2.8xlarge", - "operation" : "RunInstances:0002", - "ecu" : "104", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ARPJFM962U4P5HAT" : { - "sku" : "ARPJFM962U4P5HAT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "30 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.4xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZDK96RPJGJ9MFZYU" : { - "sku" : "ZDK96RPJGJ9MFZYU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "8 x 1.9 NVMe SSD", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.16xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Q6R3PVH9UARHH828" : { - "sku" : "Q6R3PVH9UARHH828", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1.16xlarge", - "operation" : "RunInstances:000g", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "K5TSDMZRHY2JN5F6" : { - "sku" : "K5TSDMZRHY2JN5F6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m3.xlarge", - "operation" : "RunInstances:0002", - "ecu" : "13", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RHDHFX8Q8XYHVTC7" : { - "sku" : "RHDHFX8Q8XYHVTC7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "3,904 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:x1e.32xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "340", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XDG4DYSAQBVCPRJQ" : { - "sku" : "XDG4DYSAQBVCPRJQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:g3.8xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "0", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "2", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TN5GRYE6RHCET7M3" : { - "sku" : "TN5GRYE6RHCET7M3", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "1 x 240", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.2xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "23", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AUEXKF3V3JXC7F22" : { - "sku" : "AUEXKF3V3JXC7F22", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.large", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "7.5 GiB", - "storage" : "2 x 420", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m1.large", - "operation" : "RunInstances:0202", - "ecu" : "4", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Web", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZTRYHCJDHUC65SBA" : { - "sku" : "ZTRYHCJDHUC65SBA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.large", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "450 Mbps", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "8SB633RNEF7QTBRF" : { - "sku" : "8SB633RNEF7QTBRF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "4 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i2.4xlarge", - "operation" : "RunInstances:000g", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "N8NT76W8DSVFQXZF" : { - "sku" : "N8NT76W8DSVFQXZF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1.32xlarge", - "operation" : "RunInstances:0102", - "ecu" : "349", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "SQL Ent", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "A64H3T6VVR3C4SUA" : { - "sku" : "A64H3T6VVR3C4SUA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.0 GHz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.2xlarge", - "operation" : "RunInstances:0010", - "ecu" : "Variable", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "S829SWJS7CDHWFZY" : { - "sku" : "S829SWJS7CDHWFZY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "3,904 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.32xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "340", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UFKUZG4FVYQCFGYG" : { - "sku" : "UFKUZG4FVYQCFGYG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "4 x 1.9 NVMe SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:i3.8xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6V9UKEPJF6WP9M5K" : { - "sku" : "6V9UKEPJF6WP9M5K", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "4 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i2.4xlarge", - "operation" : "RunInstances", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "C3VTCSXYNCNUKHPS" : { - "sku" : "C3VTCSXYNCNUKHPS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.medium", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "3.75 GiB", - "storage" : "1 x 410", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m1.medium", - "operation" : "RunInstances:0006", - "ecu" : "2", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "SQL Std", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9N4WQNFE4TP78PQF" : { - "sku" : "9N4WQNFE4TP78PQF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "3.75 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.large", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "USQAR36DHU6YZUCD" : { - "sku" : "USQAR36DHU6YZUCD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "30 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:c4.4xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XKREJETCK4Q363EE" : { - "sku" : "XKREJETCK4Q363EE", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 80 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.xlarge", - "operation" : "RunInstances:0006", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "N58RGQJW3EFKG6Q2" : { - "sku" : "N58RGQJW3EFKG6Q2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "2 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i2.2xlarge", - "operation" : "RunInstances:0010", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PSQDNQXHAZDS7XT9" : { - "sku" : "PSQDNQXHAZDS7XT9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "15 GiB", - "storage" : "1 x 60 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:g2.2xlarge", - "operation" : "RunInstances:000g", - "ecu" : "26", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Y8VTXM3N25VB943C" : { - "sku" : "Y8VTXM3N25VB943C", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "1 x 320 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.4xlarge", - "operation" : "RunInstances:000g", - "ecu" : "52", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DPCWVHKZ3AJBNM43" : { - "sku" : "DPCWVHKZ3AJBNM43", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.0 GHz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.xlarge", - "operation" : "RunInstances", - "ecu" : "Variable", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GU6HKEMK86X9HZKT" : { - "sku" : "GU6HKEMK86X9HZKT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.2xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "1600 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "M3HZTEQVGDNSBKRF" : { - "sku" : "M3HZTEQVGDNSBKRF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.large", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "7.5 GiB", - "storage" : "2 x 420", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "ebsOptimized" : "Yes", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:m1.large", - "operation" : "Hourly", - "ecu" : "4", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5XD4G79GQT4HJ9K2" : { - "sku" : "5XD4G79GQT4HJ9K2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "8 x 1.9 NVMe SSD", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.16xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CEN6ESY9DJ423GZM" : { - "sku" : "CEN6ESY9DJ423GZM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "8 x 800 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i2.8xlarge", - "operation" : "RunInstances:0006", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YAJW34A4DJF7KS9G" : { - "sku" : "YAJW34A4DJF7KS9G", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 800 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i2.xlarge", - "operation" : "RunInstances:0006", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BKPRPT7V22GBZ4Z2" : { - "sku" : "BKPRPT7V22GBZ4Z2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "30 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.4xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "R785FVDGR7QSRRKB" : { - "sku" : "R785FVDGR7QSRRKB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "60 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.8xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "132", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "8QJEY5Y228R67A3N" : { - "sku" : "8QJEY5Y228R67A3N", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "4 x 1.9 NVMe SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.8xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "33Y5KYZ4JQEF6J66" : { - "sku" : "33Y5KYZ4JQEF6J66", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Inbound", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "US West (Oregon)", - "toLocationType" : "AWS Region", - "usagetype" : "USE1-USW2-AWS-In-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "CA5RFBSY7MFBKHTZ" : { - "sku" : "CA5RFBSY7MFBKHTZ", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Inbound", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "Asia Pacific (Mumbai)", - "toLocationType" : "AWS Region", - "usagetype" : "USE1-APS3-AWS-In-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "648A8SVAZE8FVHRE" : { - "sku" : "648A8SVAZE8FVHRE", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.large", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "400 Mbps", - "ecu" : "135", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MDG4ZJ269VPQ6XSV" : { - "sku" : "MDG4ZJ269VPQ6XSV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "60 GiB", - "storage" : "2 x 120 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:g2.8xlarge", - "operation" : "RunInstances:0102", - "ecu" : "104", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GT4TKK9K9AXX36E5" : { - "sku" : "GT4TKK9K9AXX36E5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "122 GiB", - "storage" : "12 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:d2.4xlarge", - "operation" : "RunInstances:0010", - "ecu" : "56", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3FV6G5BHBS5M6YUH" : { - "sku" : "3FV6G5BHBS5M6YUH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TJ9229Z73AJSA43F" : { - "sku" : "TJ9229Z73AJSA43F", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "60 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:c3.8xlarge", - "operation" : "RunInstances:0800", - "ecu" : "108", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RBN8F9Y5ZXEWGAXX" : { - "sku" : "RBN8F9Y5ZXEWGAXX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.medium", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "3.75 GiB", - "storage" : "1 x 410", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:m1.medium", - "operation" : "RunInstances:0800", - "ecu" : "2", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KCN6V5R2ZXCNYDBZ" : { - "sku" : "KCN6V5R2ZXCNYDBZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "1 x 120", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TQYX838K5K3QH7KK" : { - "sku" : "TQYX838K5K3QH7KK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "15 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.2xlarge", - "operation" : "RunInstances:0006", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "8329EG456ZYK9UHU" : { - "sku" : "8329EG456ZYK9UHU", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.16xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "179", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BFQ697P5TXZG7V4S" : { - "sku" : "BFQ697P5TXZG7V4S", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m3.xlarge", - "operation" : "RunInstances:0006", - "ecu" : "13", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4XKHFJVHSPER36XU" : { - "sku" : "4XKHFJVHSPER36XU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "800 Mbps", - "ecu" : "Variable", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Q5KJSQ8D6YCWXG4R" : { - "sku" : "Q5KJSQ8D6YCWXG4R", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "15 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.2xlarge", - "operation" : "RunInstances:0102", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XFQT7FKTHK7R4MNC" : { - "sku" : "XFQT7FKTHK7R4MNC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.8xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "6000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7NEQ4VTJKJUPEVYG" : { - "sku" : "7NEQ4VTJKJUPEVYG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "2 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.4xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7FR6FMY2UUXQ9MPG" : { - "sku" : "7FR6FMY2UUXQ9MPG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "34.2 GiB", - "storage" : "1 x 850", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:m2.2xlarge", - "operation" : "RunInstances:0800", - "ecu" : "13", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "J3WUTF2TJ45F4344" : { - "sku" : "J3WUTF2TJ45F4344", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:p3.16xlarge", - "operation" : "Hourly", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CEUJNVH6ZRW9Z3QW" : { - "sku" : "CEUJNVH6ZRW9Z3QW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.4xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UZHN722C5BU8DZ5W" : { - "sku" : "UZHN722C5BU8DZ5W", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "8 x 800 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i2.8xlarge", - "operation" : "RunInstances:0002", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5USKDBRWNSU8R9RB" : { - "sku" : "5USKDBRWNSU8R9RB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:m3.2xlarge", - "operation" : "RunInstances:0800", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "F2K784WPSCB8RMWH" : { - "sku" : "F2K784WPSCB8RMWH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "3.75 GiB", - "storage" : "2 x 16 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.large", - "operation" : "RunInstances:0002", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XFRVV8VCBT6YSWP9" : { - "sku" : "XFRVV8VCBT6YSWP9", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:x1e.16xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "179", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3YGFZFTB4F7JS7UX" : { - "sku" : "3YGFZFTB4F7JS7UX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.2xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YCB5ZDAPFSHHX97B" : { - "sku" : "YCB5ZDAPFSHHX97B", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1.16xlarge", - "operation" : "RunInstances:0002", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "N5J4FCEYTCJTEMNE" : { - "sku" : "N5J4FCEYTCJTEMNE", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.9xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "72 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.9xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "4500 Mbps", - "ecu" : "139", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "72", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XES86TS9BX33Y86Y" : { - "sku" : "XES86TS9BX33Y86Y", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:p3.16xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "APSTJRGAT44DWEJ8" : { - "sku" : "APSTJRGAT44DWEJ8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "3.75 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.large", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "8NKXTZ2DTZ67NZ5M" : { - "sku" : "8NKXTZ2DTZ67NZ5M", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.8xlarge", - "operation" : "RunInstances:0202", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RBTTMD5AP4CP4TEB" : { - "sku" : "RBTTMD5AP4CP4TEB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "61 GiB", - "storage" : "6 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:d2.2xlarge", - "operation" : "RunInstances:0102", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QNZG4DHQSZ82BDNJ" : { - "sku" : "QNZG4DHQSZ82BDNJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.10xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "40", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "160 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.10xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "80", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5KPSXJYCB44KZMV5" : { - "sku" : "5KPSXJYCB44KZMV5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.large", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "400 Mbps", - "ecu" : "135", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "W3ZH5EZCGFR6XWEV" : { - "sku" : "W3ZH5EZCGFR6XWEV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.10xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "40", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "160 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.10xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "80", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "25A2HQUGG7F7ZU2J" : { - "sku" : "25A2HQUGG7F7ZU2J", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "1 x 120", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:x1e.xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "39748UVFEUKY3MVQ" : { - "sku" : "39748UVFEUKY3MVQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "15 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.2xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "X4PYRTAZG2VJ5RJV" : { - "sku" : "X4PYRTAZG2VJ5RJV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "15 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.2xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "C6RPVDY76QHZ9VB5" : { - "sku" : "C6RPVDY76QHZ9VB5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "hs1.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "17", - "physicalProcessor" : "Intel Xeon E5-2650", - "clockSpeed" : "2 GHz", - "memory" : "117 GiB", - "storage" : "24 x 2000", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:hs1.8xlarge", - "operation" : "RunInstances:0800", - "ecu" : "35", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TB8JSDKA7MEGTRXV" : { - "sku" : "TB8JSDKA7MEGTRXV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.large", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "450 Mbps", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KT8ZEPCC5TRJCUKH" : { - "sku" : "KT8ZEPCC5TRJCUKH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.2xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5ZCS4GNXFBKC3TU6" : { - "sku" : "5ZCS4GNXFBKC3TU6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "1 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.2xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KJ3MH4B6WKTQZE2W" : { - "sku" : "KJ3MH4B6WKTQZE2W", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 960", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.8xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "91", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "H4R547VQJ55ZDDZ2" : { - "sku" : "H4R547VQJ55ZDDZ2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "8PWP644R45F4VKQ9" : { - "sku" : "8PWP644R45F4VKQ9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1.32xlarge", - "operation" : "RunInstances:0002", - "ecu" : "349", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "X4DNEZ99CC6GXAKU" : { - "sku" : "X4DNEZ99CC6GXAKU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 80 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.xlarge", - "operation" : "RunInstances", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CMNW6M9D7DPHUTDD" : { - "sku" : "CMNW6M9D7DPHUTDD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.2xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "1600 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "J89JWM6V2G7N25FR" : { - "sku" : "J89JWM6V2G7N25FR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "30 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.4xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ER3NUVD4WF36NZTQ" : { - "sku" : "ER3NUVD4WF36NZTQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "15 GiB", - "storage" : "1 x 60 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:g2.2xlarge", - "operation" : "RunInstances:0800", - "ecu" : "26", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BN987XH7R93S9FFN" : { - "sku" : "BN987XH7R93S9FFN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "15 GiB", - "storage" : "1 x 60 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:g2.2xlarge", - "operation" : "RunInstances:0002", - "ecu" : "26", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2QU9K6YAGYT2B3FK" : { - "sku" : "2QU9K6YAGYT2B3FK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m3.2xlarge", - "operation" : "RunInstances:0102", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RDXB855WSYGQHXSB" : { - "sku" : "RDXB855WSYGQHXSB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:p2.8xlarge", - "operation" : "RunInstances:0002", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "T2S6PU6V3NXVX7X2" : { - "sku" : "T2S6PU6V3NXVX7X2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m3.2xlarge", - "operation" : "RunInstances:0002", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5YVC4WAQGG4WW22Q" : { - "sku" : "5YVC4WAQGG4WW22Q", - "productFamily" : "Dedicated Host", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "NA", - "storage" : "NA", - "networkPerformance" : "NA", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostUsage:c4", - "operation" : "RunInstances", - "ecu" : "NA", - "instanceCapacity2xlarge" : "4", - "instanceCapacity4xlarge" : "2", - "instanceCapacity8xlarge" : "1", - "instanceCapacityLarge" : "16", - "instanceCapacityXlarge" : "8", - "normalizationSizeFactor" : "NA", - "physicalCores" : "20", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JVAJTRPTQ2TMRVRR" : { - "sku" : "JVAJTRPTQ2TMRVRR", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "1 x 480", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.4xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "47", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "A6ZFW8EK3D8FCRUW" : { - "sku" : "A6ZFW8EK3D8FCRUW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "2 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.4xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HMNJVFAEBVXVF64D" : { - "sku" : "HMNJVFAEBVXVF64D", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "7.5 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.xlarge", - "operation" : "RunInstances:0010", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3Y79JQPCM8NG9MKS" : { - "sku" : "3Y79JQPCM8NG9MKS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "60 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.8xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "132", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7GZHH8G9CD4XD8TM" : { - "sku" : "7GZHH8G9CD4XD8TM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "4 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i2.4xlarge", - "operation" : "RunInstances:0006", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "WCAVWCRVUD56G7JJ" : { - "sku" : "WCAVWCRVUD56G7JJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "3.75 GiB", - "storage" : "2 x 16 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.large", - "operation" : "RunInstances:0002", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EEJY25ZRYKB8MXQ7" : { - "sku" : "EEJY25ZRYKB8MXQ7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.8xlarge", - "operation" : "RunInstances:0006", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DJEY5GTEWFQSU2H3" : { - "sku" : "DJEY5GTEWFQSU2H3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "800 Mbps", - "ecu" : "Variable", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "J2FKWQYCNWT2R2V7" : { - "sku" : "J2FKWQYCNWT2R2V7", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Outbound", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "AWS GovCloud (US)", - "toLocationType" : "AWS Region", - "usagetype" : "USE1-UGW1-AWS-Out-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "4YYNPC2WZJJXCMPG" : { - "sku" : "4YYNPC2WZJJXCMPG", - "productFamily" : "Load Balancer", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "group" : "ELB:Balancing", - "groupDescription" : "Data processed by Elastic Load Balancer", - "usagetype" : "DataProcessing-Bytes", - "operation" : "LoadBalancing", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7MYCC33ZAHEJPS24" : { - "sku" : "7MYCC33ZAHEJPS24", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m3.xlarge", - "operation" : "RunInstances:0202", - "ecu" : "13", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FEZXX3JK34ZK8J5N" : { - "sku" : "FEZXX3JK34ZK8J5N", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "1 x 320 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.4xlarge", - "operation" : "RunInstances:000g", - "ecu" : "52", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BTQ2BXHDBD3MTARJ" : { - "sku" : "BTQ2BXHDBD3MTARJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m3.2xlarge", - "operation" : "RunInstances:000g", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "G6S6S5QMYJ4RMXEZ" : { - "sku" : "G6S6S5QMYJ4RMXEZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "15 GiB", - "storage" : "1 x 60 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:g2.2xlarge", - "operation" : "RunInstances:0102", - "ecu" : "26", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CS26JSU2ZC88WXHJ" : { - "sku" : "CS26JSU2ZC88WXHJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.medium", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "3.75 GiB", - "storage" : "1 x 410", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m1.medium", - "operation" : "RunInstances:0010", - "ecu" : "2", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XMKFQV8DFSMWGQ5G" : { - "sku" : "XMKFQV8DFSMWGQ5G", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:g3.4xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "0", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YKZXQZPGPVZNNRHA" : { - "sku" : "YKZXQZPGPVZNNRHA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "17.1 GiB", - "storage" : "1 x 420", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m2.xlarge", - "operation" : "RunInstances", - "ecu" : "6.5", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PH52NYAMKMVT6ARR" : { - "sku" : "PH52NYAMKMVT6ARR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:p2.8xlarge", - "operation" : "RunInstances:0102", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "8QXEMJ9C47K755H8" : { - "sku" : "8QXEMJ9C47K755H8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:p3.2xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "K8E96EKZVDS2C7SM" : { - "sku" : "K8E96EKZVDS2C7SM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6NDY9AE4VQNGEMV4" : { - "sku" : "6NDY9AE4VQNGEMV4", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.18xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "72", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "144 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.18xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "9000 Mbps", - "ecu" : "278", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "144", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "WN9SBQRYAU953YAV" : { - "sku" : "WN9SBQRYAU953YAV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "15 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:c3.2xlarge", - "operation" : "RunInstances:0800", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5P8A9S7FHZ9Q44SE" : { - "sku" : "5P8A9S7FHZ9Q44SE", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:p3.16xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2WVXMQUWAFQDPJNS" : { - "sku" : "2WVXMQUWAFQDPJNS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m3.2xlarge", - "operation" : "RunInstances:0006", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Q48JUPPFZD9KDMH3" : { - "sku" : "Q48JUPPFZD9KDMH3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.2xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GN43Y4P6APPBFGM8" : { - "sku" : "GN43Y4P6APPBFGM8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "60 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.8xlarge", - "operation" : "RunInstances:0006", - "ecu" : "108", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FP9695TT873RFND7" : { - "sku" : "FP9695TT873RFND7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "60 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.8xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "132", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "X67HWFH8QVT6NSW7" : { - "sku" : "X67HWFH8QVT6NSW7", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Outbound", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "South America (Sao Paulo)", - "toLocationType" : "AWS Region", - "usagetype" : "USE1-SAE1-AWS-Out-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "GSFCFZ283SFGMM8F" : { - "sku" : "GSFCFZ283SFGMM8F", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "256 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.16xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "10000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "K7D23FF53A36EYWB" : { - "sku" : "K7D23FF53A36EYWB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.4xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "3000 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QSNKQ8P78YXPTAH8" : { - "sku" : "QSNKQ8P78YXPTAH8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m3.2xlarge", - "operation" : "RunInstances", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TAUPPUG4Z5RWGJYB" : { - "sku" : "TAUPPUG4Z5RWGJYB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 80 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.xlarge", - "operation" : "RunInstances:0010", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4HTGDWXZE6KRTGSR" : { - "sku" : "4HTGDWXZE6KRTGSR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "7.5 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m3.large", - "operation" : "RunInstances:0010", - "ecu" : "6.5", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "P4TPDGNQH5SAQPSP" : { - "sku" : "P4TPDGNQH5SAQPSP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "64 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.4xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "53.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VW78UGRTYRQ6EVC9" : { - "sku" : "VW78UGRTYRQ6EVC9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:r4.xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "800 Mbps", - "ecu" : "Variable", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ASDZTDFMC5425T7P" : { - "sku" : "ASDZTDFMC5425T7P", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.medium", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "3.75 GiB", - "storage" : "1 x 4 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m3.medium", - "operation" : "RunInstances", - "ecu" : "3", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JKUR5KFWCTQXCJKH" : { - "sku" : "JKUR5KFWCTQXCJKH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "1 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.2xlarge", - "operation" : "RunInstances:0102", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YN9T2DVCE7TVTX8J" : { - "sku" : "YN9T2DVCE7TVTX8J", - "productFamily" : "Dedicated Host", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3", - "instanceFamily" : "Storage optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "NA", - "storage" : "NA", - "networkPerformance" : "NA", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostUsage:i3", - "operation" : "RunInstances", - "ecu" : "NA", - "instanceCapacity16xlarge" : "1", - "instanceCapacity2xlarge" : "8", - "instanceCapacity4xlarge" : "4", - "instanceCapacity8xlarge" : "2", - "instanceCapacityLarge" : "32", - "instanceCapacityXlarge" : "16", - "normalizationSizeFactor" : "NA", - "physicalCores" : "36", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YAQ9JKWS8Q8NSPYJ" : { - "sku" : "YAQ9JKWS8Q8NSPYJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.0 GHz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Low to Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.large", - "operation" : "RunInstances:0202", - "ecu" : "Variable", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TD3RKXS2B3BMGKXR" : { - "sku" : "TD3RKXS2B3BMGKXR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "8 x 1.9 NVMe SSD", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.16xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ARQG8GDGKQUYVY5C" : { - "sku" : "ARQG8GDGKQUYVY5C", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.2xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EBPBHYCSY9TBSKNQ" : { - "sku" : "EBPBHYCSY9TBSKNQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.large", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "400 Mbps", - "ecu" : "135", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DM52VSGUXWMC72XW" : { - "sku" : "DM52VSGUXWMC72XW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 800 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i2.xlarge", - "operation" : "RunInstances:0010", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ADJRHP9DZHM7DJPS" : { - "sku" : "ADJRHP9DZHM7DJPS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:p3.8xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TMDSK7VAE2TT3ECF" : { - "sku" : "TMDSK7VAE2TT3ECF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "30 GiB", - "storage" : "2 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:c3.4xlarge", - "operation" : "RunInstances:0800", - "ecu" : "55", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PDEUGZC7QK7AETP6" : { - "sku" : "PDEUGZC7QK7AETP6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "7.5 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m3.large", - "operation" : "RunInstances:0006", - "ecu" : "6.5", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CJC3SAFYHNB2FRUU" : { - "sku" : "CJC3SAFYHNB2FRUU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.8xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "6000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DAVYF6BBKWXMDDGD" : { - "sku" : "DAVYF6BBKWXMDDGD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "f1.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "memory" : "976 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:f1.16xlarge", - "operation" : "RunInstances:0010", - "ecu" : "188", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MD88Y4BYY57EECUZ" : { - "sku" : "MD88Y4BYY57EECUZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "15 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.2xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NWRPWAZ545BCP5YE" : { - "sku" : "NWRPWAZ545BCP5YE", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.18xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "72", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "144 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.18xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "9000 Mbps", - "ecu" : "278", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "144", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MSN4QHE8TBV8XBD2" : { - "sku" : "MSN4QHE8TBV8XBD2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "15 GiB", - "storage" : "4 x 420", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m1.xlarge", - "operation" : "RunInstances:0010", - "ecu" : "8", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QBBBEFQPVEBWTH4F" : { - "sku" : "QBBBEFQPVEBWTH4F", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "2 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i2.2xlarge", - "operation" : "RunInstances:0010", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2E6TFSUWJVXJ9TK8" : { - "sku" : "2E6TFSUWJVXJ9TK8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.18xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "72", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "144 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:c5.18xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "9000 Mbps", - "ecu" : "278", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "144", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "A633GX9XTPAPFK68" : { - "sku" : "A633GX9XTPAPFK68", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "2 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.4xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NDTH66N9XMTJ3CP6" : { - "sku" : "NDTH66N9XMTJ3CP6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:p2.8xlarge", - "operation" : "RunInstances:0800", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7WRGXK63YR8UUHF8" : { - "sku" : "7WRGXK63YR8UUHF8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 0.95 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "850 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EAAU7VGSNXDD23Q8" : { - "sku" : "EAAU7VGSNXDD23Q8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:p2.xlarge", - "operation" : "RunInstances:0800", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3H63S5QV423QAHHQ" : { - "sku" : "3H63S5QV423QAHHQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:g3.16xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "4", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GTJ44D58C728KCTE" : { - "sku" : "GTJ44D58C728KCTE", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:x1e.16xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "179", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2QVB6NSAF3S5JVJW" : { - "sku" : "2QVB6NSAF3S5JVJW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "60 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.8xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "132", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FMDFEJP7NHC74DVF" : { - "sku" : "FMDFEJP7NHC74DVF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.large", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "7.5 GiB", - "storage" : "2 x 420", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m1.large", - "operation" : "RunInstances:000g", - "ecu" : "4", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SUJ3QNNHT5BXCCWP" : { - "sku" : "SUJ3QNNHT5BXCCWP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 80 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.xlarge", - "operation" : "RunInstances:0202", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ERSKB3J598DCE2QB" : { - "sku" : "ERSKB3J598DCE2QB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.8xlarge", - "operation" : "RunInstances:0102", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KCTR9Z2CY7MTZPGS" : { - "sku" : "KCTR9Z2CY7MTZPGS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "1 x 320 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.4xlarge", - "operation" : "RunInstances:0102", - "ecu" : "52", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SMS2RQFVUU6VDNFP" : { - "sku" : "SMS2RQFVUU6VDNFP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CGHFTKH25J86C64Y" : { - "sku" : "CGHFTKH25J86C64Y", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.8xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "6000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RS5KEAYU8MER5RSM" : { - "sku" : "RS5KEAYU8MER5RSM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.4xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "3000 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "WJ879Q9A4WW7T6Y3" : { - "sku" : "WJ879Q9A4WW7T6Y3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.4xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "3000 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DX44AJZKPEUWHF3H" : { - "sku" : "DX44AJZKPEUWHF3H", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "1 x 240", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.2xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "23", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YVR4R7XCGTF5BWVS" : { - "sku" : "YVR4R7XCGTF5BWVS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.large", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "7.5 GiB", - "storage" : "2 x 420", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m1.large", - "operation" : "RunInstances:0006", - "ecu" : "4", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Std", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "W22DG9FACE6C38MS" : { - "sku" : "W22DG9FACE6C38MS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.large", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "450 Mbps", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "D6YAK3JVF2VWSDJ9" : { - "sku" : "D6YAK3JVF2VWSDJ9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.medium", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "3.75 GiB", - "storage" : "1 x 4 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m3.medium", - "operation" : "RunInstances:0002", - "ecu" : "3", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NBUQPTSYHSXS2EB6" : { - "sku" : "NBUQPTSYHSXS2EB6", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Inbound", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "US West (N. California)", - "toLocationType" : "AWS Region", - "usagetype" : "USE1-USW1-AWS-In-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "JMY8QZUVY8MRJ29G" : { - "sku" : "JMY8QZUVY8MRJ29G", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 0.95 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "850 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "G24JGV5VNDJ37S5F" : { - "sku" : "G24JGV5VNDJ37S5F", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.10xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "40", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "160 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.10xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "80", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TW7YX8U2PR5YVTFK" : { - "sku" : "TW7YX8U2PR5YVTFK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "30 GiB", - "storage" : "2 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.4xlarge", - "operation" : "RunInstances:0002", - "ecu" : "55", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XNHWHA56JBG8ZQZQ" : { - "sku" : "XNHWHA56JBG8ZQZQ", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "1 x 240", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.2xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "23", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GTXM83ZHJ4EVYY9U" : { - "sku" : "GTXM83ZHJ4EVYY9U", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "60 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.8xlarge", - "operation" : "RunInstances:0002", - "ecu" : "108", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XERSDU2TVYCQWYRV" : { - "sku" : "XERSDU2TVYCQWYRV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "800 Mbps", - "ecu" : "Variable", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NTS9R3ZEX6FDMW8S" : { - "sku" : "NTS9R3ZEX6FDMW8S", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "2 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i2.2xlarge", - "operation" : "RunInstances:0202", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6BD786EZRWD4UZTB" : { - "sku" : "6BD786EZRWD4UZTB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m3.xlarge", - "operation" : "RunInstances:0002", - "ecu" : "13", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TZPJVS2GCV8M5FXM" : { - "sku" : "TZPJVS2GCV8M5FXM", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Outbound", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "Amazon CloudFront", - "toLocationType" : "AWS Edge Location", - "usagetype" : "USE1-CloudFront-Out-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "4TYUSVW2SFT4SYCV" : { - "sku" : "4TYUSVW2SFT4SYCV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.large", - "operation" : "RunInstances:0202", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KC3PFUW2U3T5RRSR" : { - "sku" : "KC3PFUW2U3T5RRSR", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.16xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "179", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GEDBVWHPGWMPYFMC" : { - "sku" : "GEDBVWHPGWMPYFMC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "7.5 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.xlarge", - "operation" : "RunInstances", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PRPF3JAXJK67A625" : { - "sku" : "PRPF3JAXJK67A625", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "7.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "US4KNUGYQKAD8SVF" : { - "sku" : "US4KNUGYQKAD8SVF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:p3.8xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QE6TWY9JZPAAAFX6" : { - "sku" : "QE6TWY9JZPAAAFX6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m3.2xlarge", - "operation" : "RunInstances:0010", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DJHVN6BK8VNTW74G" : { - "sku" : "DJHVN6BK8VNTW74G", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "3.75 GiB", - "storage" : "2 x 16 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:c3.large", - "operation" : "RunInstances:0800", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "X6PQNCEPYKKQHDCA" : { - "sku" : "X6PQNCEPYKKQHDCA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:p3.8xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EP2SBMU2Z582EJNK" : { - "sku" : "EP2SBMU2Z582EJNK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c1.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "7 GiB", - "storage" : "4 x 420", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c1.xlarge", - "operation" : "RunInstances:0002", - "ecu" : "20", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Q3V4FNRZN9QKF6FC" : { - "sku" : "Q3V4FNRZN9QKF6FC", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Outbound", - "fromLocation" : "Asia Pacific (Mumbai)", - "fromLocationType" : "AWS Region", - "toLocation" : "US East (N. Virginia)", - "toLocationType" : "AWS Region", - "usagetype" : "APS3-USE1-AWS-Out-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "5AVR4REAWXYCDTBG" : { - "sku" : "5AVR4REAWXYCDTBG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "256 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.16xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "10000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RA7GXBYJW245U7C5" : { - "sku" : "RA7GXBYJW245U7C5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:p3.8xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RF9FHSRZ3SVU59FJ" : { - "sku" : "RF9FHSRZ3SVU59FJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.16xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "12000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "39SAA25CYWD748WC" : { - "sku" : "39SAA25CYWD748WC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "3.75 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:c4.large", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "E92W6J6ZWCYNHQYK" : { - "sku" : "E92W6J6ZWCYNHQYK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:p2.xlarge", - "operation" : "RunInstances:0010", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SVUSEDJB94K6K37X" : { - "sku" : "SVUSEDJB94K6K37X", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "60 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.8xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "132", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "W74H9N7H8NNRHRRV" : { - "sku" : "W74H9N7H8NNRHRRV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "3,904 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.32xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "340", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SBHS3JAQSXPZMQSH" : { - "sku" : "SBHS3JAQSXPZMQSH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "7.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2BG23N2FNX3BKVFW" : { - "sku" : "2BG23N2FNX3BKVFW", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Outbound", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "EU (Frankfurt)", - "toLocationType" : "AWS Region", - "usagetype" : "USE1-EUC1-AWS-Out-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "T64KKYA6S8ZUXCAT" : { - "sku" : "T64KKYA6S8ZUXCAT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "60 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.8xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "132", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "J95CCXETUZE5KFXR" : { - "sku" : "J95CCXETUZE5KFXR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:p3.16xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "WT63RNHXYTKJPT3V" : { - "sku" : "WT63RNHXYTKJPT3V", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.4xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "3000 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Y6BQV4XBTAFVVV2A" : { - "sku" : "Y6BQV4XBTAFVVV2A", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "2 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.4xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "V3RF6UFJXPKZ5CNE" : { - "sku" : "V3RF6UFJXPKZ5CNE", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 960", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.8xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "91", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "R44YAG7V59VVJURM" : { - "sku" : "R44YAG7V59VVJURM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "4 x 1.9 NVMe SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.8xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HXX5KQP8SE3AS5E2" : { - "sku" : "HXX5KQP8SE3AS5E2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "30 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.4xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UDEYV89RV6UUPFA2" : { - "sku" : "UDEYV89RV6UUPFA2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "8 x 1.9 NVMe SSD", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.16xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "B73TJ3GDPEVMDXTQ" : { - "sku" : "B73TJ3GDPEVMDXTQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.16xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "12000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "V8J7UTRH4P2HW8YW" : { - "sku" : "V8J7UTRH4P2HW8YW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.2xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "1600 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "V972X7PY72ZHR6V3" : { - "sku" : "V972X7PY72ZHR6V3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "800 Mbps", - "ecu" : "Variable", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2VHPXRTYGECESS2J" : { - "sku" : "2VHPXRTYGECESS2J", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "800 Mbps", - "ecu" : "Variable", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Z7DQXX2TTGQW7T5N" : { - "sku" : "Z7DQXX2TTGQW7T5N", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Outbound", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "Canada (Central)", - "toLocationType" : "AWS Region", - "usagetype" : "USE1-CAN1-AWS-Out-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "X8HSBS99N48YZKF3" : { - "sku" : "X8HSBS99N48YZKF3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "4 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.large", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "S4DJNZYAC3UVKJKQ" : { - "sku" : "S4DJNZYAC3UVKJKQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.2xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FZXWWWKE7AQGFDHX" : { - "sku" : "FZXWWWKE7AQGFDHX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "15 GiB", - "storage" : "4 x 420", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m1.xlarge", - "operation" : "RunInstances:0002", - "ecu" : "8", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KTZYT2QK3KRKX3XT" : { - "sku" : "KTZYT2QK3KRKX3XT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:p3.8xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "X2XXBVJKW4AFD4PA" : { - "sku" : "X2XXBVJKW4AFD4PA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "1 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.2xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3DKA632YPCBQAV5W" : { - "sku" : "3DKA632YPCBQAV5W", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.8xlarge", - "operation" : "RunInstances:0002", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5Q9H4XMF36Y7R6TM" : { - "sku" : "5Q9H4XMF36Y7R6TM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.8xlarge", - "operation" : "RunInstances:0102", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SQ37ZQ2CZ2H95VDC" : { - "sku" : "SQ37ZQ2CZ2H95VDC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:g3.4xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "0", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "599NS97NVDVBQMHV" : { - "sku" : "599NS97NVDVBQMHV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "4 x 1.9 NVMe SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.8xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "T2A8DS9QR9R22WZ2" : { - "sku" : "T2A8DS9QR9R22WZ2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "1 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.2xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SXC4GWK8KEDB7F93" : { - "sku" : "SXC4GWK8KEDB7F93", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "2 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.4xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9MZCJAF77KSVMAC2" : { - "sku" : "9MZCJAF77KSVMAC2", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.16xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "179", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5CT452VS74WXW77W" : { - "sku" : "5CT452VS74WXW77W", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "1 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.2xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CVWS7EQD5PCXDCZ3" : { - "sku" : "CVWS7EQD5PCXDCZ3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.8xlarge", - "operation" : "RunInstances", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5YU9U4CS2QFKY4UW" : { - "sku" : "5YU9U4CS2QFKY4UW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.2xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "1600 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "C79HZMYRKTWS54VW" : { - "sku" : "C79HZMYRKTWS54VW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.2xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YUPSNN9JFU6UZYAS" : { - "sku" : "YUPSNN9JFU6UZYAS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m3.xlarge", - "operation" : "RunInstances", - "ecu" : "13", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GCDTB8AS6VH4HTCD" : { - "sku" : "GCDTB8AS6VH4HTCD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.large", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "400 Mbps", - "ecu" : "135", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GMGKK582WT2TW2KT" : { - "sku" : "GMGKK582WT2TW2KT", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 960", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:x1e.8xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "91", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GVNK6UKCGGH82WUC" : { - "sku" : "GVNK6UKCGGH82WUC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.10xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "40", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "160 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.10xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "80", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JNRAY8EMZWNC3JNN" : { - "sku" : "JNRAY8EMZWNC3JNN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "68.4 GiB", - "storage" : "2 x 840", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m2.4xlarge", - "operation" : "RunInstances:0010", - "ecu" : "26", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JRRHF5CXWN8M3MCY" : { - "sku" : "JRRHF5CXWN8M3MCY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "122 GiB", - "storage" : "12 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:d2.4xlarge", - "operation" : "RunInstances:000g", - "ecu" : "56", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9CHFMGVK3AF7D8KU" : { - "sku" : "9CHFMGVK3AF7D8KU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "61 GiB", - "storage" : "6 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:d2.2xlarge", - "operation" : "RunInstances:0010", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9YXTC4KPBJSYNVNU" : { - "sku" : "9YXTC4KPBJSYNVNU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.9xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "72 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.9xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "4500 Mbps", - "ecu" : "139", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "72", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DPPVX7QQ3SGX3TED" : { - "sku" : "DPPVX7QQ3SGX3TED", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:g3.8xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "0", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "2", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZV6FCW29ACDSB8CF" : { - "sku" : "ZV6FCW29ACDSB8CF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.10xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "40", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "160 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.10xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "80", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3CHY5ZRYJFN6TYQF" : { - "sku" : "3CHY5ZRYJFN6TYQF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:r4.8xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "6000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "G2A5K95XMCKDA9AT" : { - "sku" : "G2A5K95XMCKDA9AT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 0.475 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.large", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "425 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CCH8XMK5SWS2XV75" : { - "sku" : "CCH8XMK5SWS2XV75", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "4 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.large", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RV7P78K2Q4CXVVP3" : { - "sku" : "RV7P78K2Q4CXVVP3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.9xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "72 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.9xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "4500 Mbps", - "ecu" : "139", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "72", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6R5GC45858YD7JK6" : { - "sku" : "6R5GC45858YD7JK6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.small", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "1.7 GiB", - "storage" : "1 x 160", - "networkPerformance" : "Low", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage", - "operation" : "RunInstances:0002", - "ecu" : "Variable", - "normalizationSizeFactor" : "1", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9MM8GACQ8HB29XKD" : { - "sku" : "9MM8GACQ8HB29XKD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "15 GiB", - "storage" : "1 x 60 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:g2.2xlarge", - "operation" : "RunInstances:0800", - "ecu" : "26", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AJKJ4N4Q2WVCYJJN" : { - "sku" : "AJKJ4N4Q2WVCYJJN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "7.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:c4.xlarge", - "operation" : "Hourly", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YBBWEV8UYE6E6N4Q" : { - "sku" : "YBBWEV8UYE6E6N4Q", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "15 GiB", - "storage" : "1 x 60 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:g2.2xlarge", - "operation" : "RunInstances:0202", - "ecu" : "26", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "W43N2ZPS868KHX7Y" : { - "sku" : "W43N2ZPS868KHX7Y", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "4 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i2.4xlarge", - "operation" : "RunInstances:000g", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XKJ4XRAHPF6M7XD9" : { - "sku" : "XKJ4XRAHPF6M7XD9", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Inbound", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "Canada (Central)", - "toLocationType" : "AWS Region", - "usagetype" : "USE1-CAN1-AWS-In-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "YFKXQVPA9X957EGE" : { - "sku" : "YFKXQVPA9X957EGE", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:p2.8xlarge", - "operation" : "RunInstances:000g", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HCMUNBKMY8ZTDFFE" : { - "sku" : "HCMUNBKMY8ZTDFFE", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.large", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "7.5 GiB", - "storage" : "2 x 420", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m1.large", - "operation" : "RunInstances:0010", - "ecu" : "4", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "WY2NRDKGBAP9WZHZ" : { - "sku" : "WY2NRDKGBAP9WZHZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "122 GiB", - "storage" : "12 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:d2.4xlarge", - "operation" : "RunInstances:0102", - "ecu" : "56", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HS3PUQUMX2MJTFJA" : { - "sku" : "HS3PUQUMX2MJTFJA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "f1.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "memory" : "976 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:f1.16xlarge", - "operation" : "RunInstances:0010", - "ecu" : "188", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KG9YWSKMK27V6W6V" : { - "sku" : "KG9YWSKMK27V6W6V", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.large", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "7.5 GiB", - "storage" : "2 x 420", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m1.large", - "operation" : "RunInstances", - "ecu" : "4", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "H65MFZJT8RFNRRQK" : { - "sku" : "H65MFZJT8RFNRRQK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "30.5 GiB", - "storage" : "3 x 2000 HDD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:d2.xlarge", - "operation" : "RunInstances:0202", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KPX48D6YDFSDBE2Y" : { - "sku" : "KPX48D6YDFSDBE2Y", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.large", - "operation" : "RunInstances:000g", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HVUDFQPHSTBP5QJC" : { - "sku" : "HVUDFQPHSTBP5QJC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.18xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "72", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "144 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.18xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "9000 Mbps", - "ecu" : "278", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "144", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FRR3BPV6Y433HGXY" : { - "sku" : "FRR3BPV6Y433HGXY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "244 GiB", - "storage" : "24 x 2000 HDD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:d2.8xlarge", - "operation" : "RunInstances:0002", - "ecu" : "116", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PS8T955EH7FMVZUG" : { - "sku" : "PS8T955EH7FMVZUG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "1 x 320 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.4xlarge", - "operation" : "RunInstances", - "ecu" : "52", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "H48ZRU3X7FXGTGQM" : { - "sku" : "H48ZRU3X7FXGTGQM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "3.75 GiB", - "storage" : "2 x 16 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.large", - "operation" : "RunInstances", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "STRFBQS9QNUUSSCD" : { - "sku" : "STRFBQS9QNUUSSCD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c1.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "7 GiB", - "storage" : "4 x 420", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c1.xlarge", - "operation" : "RunInstances:0202", - "ecu" : "20", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PF95WR6DG26CSW2U" : { - "sku" : "PF95WR6DG26CSW2U", - "productFamily" : "NAT Gateway", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "group" : "NGW:NatGateway", - "groupDescription" : "Charge for per GB data processed by NAT Gateways with provisioned bandwidth", - "usagetype" : "NatGateway-Prvd-Bytes", - "operation" : "NatGateway", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "95B5M4Z5DF8F8PVC" : { - "sku" : "95B5M4Z5DF8F8PVC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 0.475 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.large", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "425 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7EN7RS9DVKDM4WXZ" : { - "sku" : "7EN7RS9DVKDM4WXZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "60 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.8xlarge", - "operation" : "RunInstances", - "ecu" : "108", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XCCBFY7VKRFREWQZ" : { - "sku" : "XCCBFY7VKRFREWQZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cg1.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "GPU instance", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon x5570", - "memory" : "22.5 GiB", - "storage" : "2 x 840", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:cg1.4xlarge", - "operation" : "RunInstances:0202", - "ecu" : "33.5", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YJQ6VUEJFXP5T23D" : { - "sku" : "YJQ6VUEJFXP5T23D", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "1 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.2xlarge", - "operation" : "RunInstances:0202", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "24MXYDDDX5MFDX7E" : { - "sku" : "24MXYDDDX5MFDX7E", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "3.75 GiB", - "storage" : "2 x 16 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.large", - "operation" : "RunInstances", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EYGMRBWWFGSQBSBZ" : { - "sku" : "EYGMRBWWFGSQBSBZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "15 GiB", - "storage" : "4 x 420", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m1.xlarge", - "operation" : "RunInstances", - "ecu" : "8", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KGZ5JY4FKTR75YN3" : { - "sku" : "KGZ5JY4FKTR75YN3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.medium", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "3.75 GiB", - "storage" : "1 x 4 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m3.medium", - "operation" : "RunInstances:0010", - "ecu" : "3", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "H82A2SJ6H4MSM5Q6" : { - "sku" : "H82A2SJ6H4MSM5Q6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 0.95 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "850 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZKNV3YNZ7ETKWSWB" : { - "sku" : "ZKNV3YNZ7ETKWSWB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.0 GHz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Low to Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.large", - "operation" : "RunInstances:0002", - "ecu" : "Variable", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "WE43EAHVMJU4ZVBT" : { - "sku" : "WE43EAHVMJU4ZVBT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 0.95 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "850 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "WSBQ3GQCNJDRXWWZ" : { - "sku" : "WSBQ3GQCNJDRXWWZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.2xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "1600 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "8WMJSK8SESK57KMV" : { - "sku" : "8WMJSK8SESK57KMV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:g3.16xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "4", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "42568WZBBYJBWCB3" : { - "sku" : "42568WZBBYJBWCB3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "64 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.4xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "53.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "B94BJ9BKFE3BAMJW" : { - "sku" : "B94BJ9BKFE3BAMJW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cr1.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670", - "memory" : "244 GiB", - "storage" : "2 x 120 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:cr1.8xlarge", - "operation" : "RunInstances:000g", - "ecu" : "88", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "N62CGU7P3H3TVWVG" : { - "sku" : "N62CGU7P3H3TVWVG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "3,904 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.32xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "340", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FD2MYJ67QXPYJGHF" : { - "sku" : "FD2MYJ67QXPYJGHF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "1 x 320 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.4xlarge", - "operation" : "RunInstances:0002", - "ecu" : "52", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HNHRS6AFMYQWY26Y" : { - "sku" : "HNHRS6AFMYQWY26Y", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VHA3WETGYBUH3HCX" : { - "sku" : "VHA3WETGYBUH3HCX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "1 x 320 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:r3.4xlarge", - "operation" : "RunInstances:0800", - "ecu" : "52", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XEM85KR3292VMY35" : { - "sku" : "XEM85KR3292VMY35", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "15 GiB", - "storage" : "4 x 420", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m1.xlarge", - "operation" : "RunInstances:0002", - "ecu" : "8", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CF7GPWXNXHE4VJQX" : { - "sku" : "CF7GPWXNXHE4VJQX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "15 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.2xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "A28M9STN7TTR5DC8" : { - "sku" : "A28M9STN7TTR5DC8", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "1 x 240", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:x1e.2xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "23", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "A5GXEZ47W9A2SVY8" : { - "sku" : "A5GXEZ47W9A2SVY8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "64 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.4xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "53.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6FNWHYYYSDGVQ87S" : { - "sku" : "6FNWHYYYSDGVQ87S", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.2xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3SNVUNEGB8BAMWDP" : { - "sku" : "3SNVUNEGB8BAMWDP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 800 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i2.xlarge", - "operation" : "RunInstances", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FZFXDFC28N97MJBH" : { - "sku" : "FZFXDFC28N97MJBH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.2xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "1600 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HJA24B3YK2EKQPEQ" : { - "sku" : "HJA24B3YK2EKQPEQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.18xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "72", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "144 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.18xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "9000 Mbps", - "ecu" : "278", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "144", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6555VGRWG4AP5HWV" : { - "sku" : "6555VGRWG4AP5HWV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.large", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "450 Mbps", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KBNWDNPNYX37C8BM" : { - "sku" : "KBNWDNPNYX37C8BM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VNYB2GETE99SPEJJ" : { - "sku" : "VNYB2GETE99SPEJJ", - "productFamily" : "Dedicated Host", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "NA", - "storage" : "NA", - "networkPerformance" : "NA", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostUsage:c3", - "operation" : "RunInstances", - "ecu" : "NA", - "instanceCapacity2xlarge" : "4", - "instanceCapacity4xlarge" : "2", - "instanceCapacity8xlarge" : "1", - "instanceCapacityLarge" : "16", - "instanceCapacityXlarge" : "8", - "normalizationSizeFactor" : "NA", - "physicalCores" : "20", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RKV52SHBEQCC45W3" : { - "sku" : "RKV52SHBEQCC45W3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.large", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "450 Mbps", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "427555ENEC4F3EDG" : { - "sku" : "427555ENEC4F3EDG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "8 x 800 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i2.8xlarge", - "operation" : "RunInstances:0002", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "86FRG8MH7C6B944J" : { - "sku" : "86FRG8MH7C6B944J", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "1 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.2xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DSG34N2933CDGRJJ" : { - "sku" : "DSG34N2933CDGRJJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "7.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7NHNWKWH69EZHFFD" : { - "sku" : "7NHNWKWH69EZHFFD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m3.xlarge", - "operation" : "RunInstances:0010", - "ecu" : "13", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GS7JMPJ9ZA8J6K6K" : { - "sku" : "GS7JMPJ9ZA8J6K6K", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "15 GiB", - "storage" : "4 x 420", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m1.xlarge", - "operation" : "RunInstances", - "ecu" : "8", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JV8XGJX4R2ZMWD28" : { - "sku" : "JV8XGJX4R2ZMWD28", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "2 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i2.2xlarge", - "operation" : "RunInstances:0006", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "B77Q3B58P6KH3QKK" : { - "sku" : "B77Q3B58P6KH3QKK", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 960", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.8xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "91", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RX9PC8FR2YT42ZFG" : { - "sku" : "RX9PC8FR2YT42ZFG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "3.75 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.large", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "A7J6GBKB42E7ZP99" : { - "sku" : "A7J6GBKB42E7ZP99", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.4xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "3000 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DF8Q7FFWFQ7XFMWT" : { - "sku" : "DF8Q7FFWFQ7XFMWT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "1 x 120", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4RDK5GMP5336FHVU" : { - "sku" : "4RDK5GMP5336FHVU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "1 x 120", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "K6TSS6QSQBWVHANR" : { - "sku" : "K6TSS6QSQBWVHANR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m3.2xlarge", - "operation" : "RunInstances:000g", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "W2C299XDDHK5Q5HK" : { - "sku" : "W2C299XDDHK5Q5HK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "8 x 800 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i2.8xlarge", - "operation" : "RunInstances:0010", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KDCQC5EHG2SRP6TU" : { - "sku" : "KDCQC5EHG2SRP6TU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "hs1.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "17", - "physicalProcessor" : "Intel Xeon E5-2650", - "clockSpeed" : "2 GHz", - "memory" : "117 GiB", - "storage" : "24 x 2000", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:hs1.8xlarge", - "operation" : "RunInstances:000g", - "ecu" : "35", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ABJ9HJ6JXJ4MY26U" : { - "sku" : "ABJ9HJ6JXJ4MY26U", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "2 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.4xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "35AEEWH98DECPC35" : { - "sku" : "35AEEWH98DECPC35", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DMEAKMC95469FYDS" : { - "sku" : "DMEAKMC95469FYDS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "2 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.4xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "82EETVJ33AH6DNH9" : { - "sku" : "82EETVJ33AH6DNH9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "60 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:c4.8xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "132", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HW5URJGXS94RYC7N" : { - "sku" : "HW5URJGXS94RYC7N", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.2xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "1600 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HD5FKWRF3Y3UA5CY" : { - "sku" : "HD5FKWRF3Y3UA5CY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.small", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "1.7 GiB", - "storage" : "1 x 160", - "networkPerformance" : "Low", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage", - "operation" : "RunInstances:0006", - "ecu" : "Variable", - "normalizationSizeFactor" : "1", - "preInstalledSw" : "SQL Std", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "S35ZU4TJVUPNKG6U" : { - "sku" : "S35ZU4TJVUPNKG6U", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "1 x 240", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.2xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "23", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "D987U4EZH8SKPPQC" : { - "sku" : "D987U4EZH8SKPPQC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.small", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "1.7 GiB", - "storage" : "1 x 160", - "networkPerformance" : "Low", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage", - "operation" : "RunInstances:0202", - "ecu" : "Variable", - "normalizationSizeFactor" : "1", - "preInstalledSw" : "SQL Web", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "F6DTZSV5HTJ5SARF" : { - "sku" : "F6DTZSV5HTJ5SARF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "30 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.4xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XAJSBBR3F4CX756Z" : { - "sku" : "XAJSBBR3F4CX756Z", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Inbound", - "fromLocation" : "EU (Frankfurt)", - "fromLocationType" : "AWS Region", - "toLocation" : "US East (N. Virginia)", - "toLocationType" : "AWS Region", - "usagetype" : "EUC1-USE1-AWS-In-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "4EZQG8BYPRTVKHRZ" : { - "sku" : "4EZQG8BYPRTVKHRZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "800 Mbps", - "ecu" : "Variable", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GXUGSHFHQFHUTQMM" : { - "sku" : "GXUGSHFHQFHUTQMM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 0.95 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "850 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "436TQXUY62HKEC4V" : { - "sku" : "436TQXUY62HKEC4V", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:p3.16xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EBRWZVHDHP2KJAMQ" : { - "sku" : "EBRWZVHDHP2KJAMQ", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "1 x 480", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.4xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "47", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KD8DVSJPFVSX354N" : { - "sku" : "KD8DVSJPFVSX354N", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 960", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.8xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "91", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CSCB3RCZY9UUMWAN" : { - "sku" : "CSCB3RCZY9UUMWAN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "3,904 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.32xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "340", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "99NCMXTASQBWBS5F" : { - "sku" : "99NCMXTASQBWBS5F", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "60 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.8xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "132", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "WWPUYMRPHK6Y3WER" : { - "sku" : "WWPUYMRPHK6Y3WER", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "64 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.4xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "53.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "63U4EHGD76K6MYA6" : { - "sku" : "63U4EHGD76K6MYA6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "1 x 120", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NS9APTDFJ7SPEAAV" : { - "sku" : "NS9APTDFJ7SPEAAV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "ebsOptimized" : "Yes", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:m3.2xlarge", - "operation" : "Hourly", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AA7ZX8UEQ6R54FN8" : { - "sku" : "AA7ZX8UEQ6R54FN8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "15 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.2xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "D2UN9TFKVYBF6AUM" : { - "sku" : "D2UN9TFKVYBF6AUM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "f1.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:f1.2xlarge", - "operation" : "RunInstances:000g", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4BJYGSAQ24CQWAT9" : { - "sku" : "4BJYGSAQ24CQWAT9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.2xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QEK6WMVB3Q3SRE4E" : { - "sku" : "QEK6WMVB3Q3SRE4E", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "1 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.2xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "U55BDVR9QF3VHRGZ" : { - "sku" : "U55BDVR9QF3VHRGZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "68.4 GiB", - "storage" : "2 x 840", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m2.4xlarge", - "operation" : "RunInstances:0002", - "ecu" : "26", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ECGX6UUV4NV7ZXGQ" : { - "sku" : "ECGX6UUV4NV7ZXGQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "122 GiB", - "storage" : "12 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:d2.4xlarge", - "operation" : "RunInstances:0800", - "ecu" : "56", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QP7VG66RCTU7M632" : { - "sku" : "QP7VG66RCTU7M632", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.small", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "1.7 GiB", - "storage" : "1 x 160", - "networkPerformance" : "Low", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage", - "operation" : "RunInstances:0010", - "ecu" : "Variable", - "normalizationSizeFactor" : "1", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VN8JS6C4CHVEY8WD" : { - "sku" : "VN8JS6C4CHVEY8WD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "4 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "ebsOptimized" : "Yes", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:i2.4xlarge", - "operation" : "Hourly", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6SNHPAN3YKSWBAJB" : { - "sku" : "6SNHPAN3YKSWBAJB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.2xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "1600 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CYF7KMJTP6KF6443" : { - "sku" : "CYF7KMJTP6KF6443", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:p3.2xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TBC4ECWPWM5TJCUA" : { - "sku" : "TBC4ECWPWM5TJCUA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.2xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MCVQU48QPHRDXMRT" : { - "sku" : "MCVQU48QPHRDXMRT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "768 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:p2.16xlarge", - "operation" : "RunInstances", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "16", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TRJZT878WSTAV924" : { - "sku" : "TRJZT878WSTAV924", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "30 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.4xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MDMR23U3WGXF3XNN" : { - "sku" : "MDMR23U3WGXF3XNN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "30 GiB", - "storage" : "2 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.4xlarge", - "operation" : "RunInstances:0102", - "ecu" : "55", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "H3H6PVAND793CJ85" : { - "sku" : "H3H6PVAND793CJ85", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "60 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.8xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "132", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "URQPKMKKWVYXRDR3" : { - "sku" : "URQPKMKKWVYXRDR3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FZCQH9HE5YJHXGM4" : { - "sku" : "FZCQH9HE5YJHXGM4", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:p2.xlarge", - "operation" : "RunInstances", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2YXG22APZA6TC2QW" : { - "sku" : "2YXG22APZA6TC2QW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6898Z5WFTX5GEKYT" : { - "sku" : "6898Z5WFTX5GEKYT", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "1 x 480", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.4xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "47", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AHXYB8F5F4C9BS49" : { - "sku" : "AHXYB8F5F4C9BS49", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "60 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.8xlarge", - "operation" : "RunInstances:000g", - "ecu" : "108", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "73WCSETYKTR78DFE" : { - "sku" : "73WCSETYKTR78DFE", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "f1.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "memory" : "976 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:f1.16xlarge", - "operation" : "RunInstances:0800", - "ecu" : "188", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CNM382ND78XDQQAK" : { - "sku" : "CNM382ND78XDQQAK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "8 x 800 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i2.8xlarge", - "operation" : "RunInstances", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YNFV4A5QUAMVDGKX" : { - "sku" : "YNFV4A5QUAMVDGKX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1.16xlarge", - "operation" : "RunInstances", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RWRSW4Q7WCASA2W9" : { - "sku" : "RWRSW4Q7WCASA2W9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "7.5 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.xlarge", - "operation" : "RunInstances:0006", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "E8Q8HF3P3ZT76NBP" : { - "sku" : "E8Q8HF3P3ZT76NBP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "4 x 1.9 NVMe SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.8xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TB387UEUFCNJQBC7" : { - "sku" : "TB387UEUFCNJQBC7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.8xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "6000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GJ4X2G4FDXPBB6U8" : { - "sku" : "GJ4X2G4FDXPBB6U8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "30 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:c4.4xlarge", - "operation" : "Hourly", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SKRG28YJJD7F7ACS" : { - "sku" : "SKRG28YJJD7F7ACS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.2xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "1600 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YSGQ6AZH4GU6W9TM" : { - "sku" : "YSGQ6AZH4GU6W9TM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "7.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RZS5FY9ANEA8TU3F" : { - "sku" : "RZS5FY9ANEA8TU3F", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.2xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BJ9999E62JPQN34Q" : { - "sku" : "BJ9999E62JPQN34Q", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.0 GHz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.xlarge", - "operation" : "RunInstances:0202", - "ecu" : "Variable", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ENS9X5UYSE8HHJGX" : { - "sku" : "ENS9X5UYSE8HHJGX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "15 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.2xlarge", - "operation" : "RunInstances:0202", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JABV4QCJFZRBR8JA" : { - "sku" : "JABV4QCJFZRBR8JA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "122 GiB", - "storage" : "12 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:d2.4xlarge", - "operation" : "RunInstances:0102", - "ecu" : "56", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SH6G48SE9H3R9TQT" : { - "sku" : "SH6G48SE9H3R9TQT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c1.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "7 GiB", - "storage" : "4 x 420", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c1.xlarge", - "operation" : "RunInstances:0010", - "ecu" : "20", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "25T439HS4WV9KRN4" : { - "sku" : "25T439HS4WV9KRN4", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.large", - "operation" : "RunInstances:0006", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KE8V44XRQ8CWNHEV" : { - "sku" : "KE8V44XRQ8CWNHEV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "1 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.2xlarge", - "operation" : "RunInstances:0010", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FMGXVRPJP5ZBNB2U" : { - "sku" : "FMGXVRPJP5ZBNB2U", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "244 GiB", - "storage" : "24 x 2000 HDD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:d2.8xlarge", - "operation" : "RunInstances", - "ecu" : "116", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ASB6HFGHT3SUVED9" : { - "sku" : "ASB6HFGHT3SUVED9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "60 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.8xlarge", - "operation" : "RunInstances:000g", - "ecu" : "108", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "385ZWS8QDHMYGMFJ" : { - "sku" : "385ZWS8QDHMYGMFJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "60 GiB", - "storage" : "2 x 120 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:g2.8xlarge", - "operation" : "RunInstances:0800", - "ecu" : "104", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "W7AKAG7V86UE38RF" : { - "sku" : "W7AKAG7V86UE38RF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "60 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.8xlarge", - "operation" : "RunInstances:0202", - "ecu" : "108", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3JTKQKQVWWVVZF93" : { - "sku" : "3JTKQKQVWWVVZF93", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7H3YAVFCE5P4TFBT" : { - "sku" : "7H3YAVFCE5P4TFBT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.18xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "72", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "144 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.18xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "9000 Mbps", - "ecu" : "278", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "144", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PYM3KA9YWBXZT4WT" : { - "sku" : "PYM3KA9YWBXZT4WT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "1 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.2xlarge", - "operation" : "RunInstances:000g", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MTH9HCPYR8DT5RJ2" : { - "sku" : "MTH9HCPYR8DT5RJ2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "7.5 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.xlarge", - "operation" : "RunInstances:0002", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "W58JQDZKEMS87E3Y" : { - "sku" : "W58JQDZKEMS87E3Y", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "3,904 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.32xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "340", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PYHA3PVTP85MS7AS" : { - "sku" : "PYHA3PVTP85MS7AS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.large", - "operation" : "RunInstances:0102", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5WWYB7MN3STCHEGY" : { - "sku" : "5WWYB7MN3STCHEGY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.4xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "3000 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MJJTVPTXAH26VK8A" : { - "sku" : "MJJTVPTXAH26VK8A", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "3.75 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:c4.large", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "85VBBX5K6EY4TRRG" : { - "sku" : "85VBBX5K6EY4TRRG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 80 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.xlarge", - "operation" : "RunInstances:0006", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UFN38GHQREY7C7SB" : { - "sku" : "UFN38GHQREY7C7SB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:p2.8xlarge", - "operation" : "RunInstances:0010", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "R9EGFXUGURH2UNA2" : { - "sku" : "R9EGFXUGURH2UNA2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "15 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.2xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "P2X2N5M2PU9A9XS4" : { - "sku" : "P2X2N5M2PU9A9XS4", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "30.5 GiB", - "storage" : "3 x 2000 HDD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:d2.xlarge", - "operation" : "RunInstances:0010", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZQ8ZP9Y9DGFD6M45" : { - "sku" : "ZQ8ZP9Y9DGFD6M45", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.2xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YHVCZK7UAVDZMX92" : { - "sku" : "YHVCZK7UAVDZMX92", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cc2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670", - "clockSpeed" : "2.6 GHz", - "memory" : "60.5 GiB", - "storage" : "4 x 840", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:cc2.8xlarge", - "operation" : "RunInstances:0006", - "ecu" : "88", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Std", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NA5BT4DMBGMMK5MT" : { - "sku" : "NA5BT4DMBGMMK5MT", - "productFamily" : "IP Address", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "group" : "ElasticIP:AdditionalAddress", - "groupDescription" : "Additional Elastic IP address attached to a running instance", - "usagetype" : "ElasticIP:AdditionalAddress", - "operation" : "", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "8CXE6S2Y9CVQRTRQ" : { - "sku" : "8CXE6S2Y9CVQRTRQ", - "productFamily" : "Dedicated Host", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "NA", - "storage" : "NA", - "networkPerformance" : "NA", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostUsage:m3", - "operation" : "RunInstances", - "ecu" : "NA", - "instanceCapacity2xlarge" : "4", - "instanceCapacityLarge" : "16", - "instanceCapacityMedium" : "32", - "instanceCapacityXlarge" : "8", - "normalizationSizeFactor" : "NA", - "physicalCores" : "20", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AD2QCCRBSPBJMXXV" : { - "sku" : "AD2QCCRBSPBJMXXV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.small", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "1.7 GiB", - "storage" : "1 x 160", - "networkPerformance" : "Low", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage", - "operation" : "RunInstances:0800", - "ecu" : "Variable", - "normalizationSizeFactor" : "1", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "U69YCUGUWRE45CVF" : { - "sku" : "U69YCUGUWRE45CVF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "15 GiB", - "storage" : "1 x 60 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:g2.2xlarge", - "operation" : "RunInstances", - "ecu" : "26", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TCSVX6EBPRF578KP" : { - "sku" : "TCSVX6EBPRF578KP", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "1 x 240", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.2xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "23", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "84EGZ3JUNG2TSSNT" : { - "sku" : "84EGZ3JUNG2TSSNT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.16xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "12000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Z8YWRZHR75GJ2KSV" : { - "sku" : "Z8YWRZHR75GJ2KSV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cg1.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "GPU instance", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon x5570", - "memory" : "22.5 GiB", - "storage" : "2 x 840", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:cg1.4xlarge", - "operation" : "RunInstances:0006", - "ecu" : "33.5", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "V6W3V2B2AEWTCSUG" : { - "sku" : "V6W3V2B2AEWTCSUG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2YVYS3RPY25EY4XR" : { - "sku" : "2YVYS3RPY25EY4XR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.10xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "40", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "160 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.10xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "80", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5KPPP37EUJ6SDK38" : { - "sku" : "5KPPP37EUJ6SDK38", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.2xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YZU87WTY449E2C2T" : { - "sku" : "YZU87WTY449E2C2T", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.9xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "72 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:c5.9xlarge", - "operation" : "Hourly", - "dedicatedEbsThroughput" : "4500 Mbps", - "ecu" : "139", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "72", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JWPZDXTPDMBACQS9" : { - "sku" : "JWPZDXTPDMBACQS9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "7.5 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.xlarge", - "operation" : "RunInstances", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2G7QY8K5DB7ZC8PD" : { - "sku" : "2G7QY8K5DB7ZC8PD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "64 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.4xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "53.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VJ2DAWV6S9PPWZZA" : { - "sku" : "VJ2DAWV6S9PPWZZA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "15 GiB", - "storage" : "1 x 60 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:g2.2xlarge", - "operation" : "RunInstances:0006", - "ecu" : "26", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CDV3MB4FK98PAYP9" : { - "sku" : "CDV3MB4FK98PAYP9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "15 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.2xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5CS4EJVK2TSXGHNX" : { - "sku" : "5CS4EJVK2TSXGHNX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1.32xlarge", - "operation" : "RunInstances:0010", - "ecu" : "349", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MC5VZN6RJJJRB2CW" : { - "sku" : "MC5VZN6RJJJRB2CW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cc2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670", - "clockSpeed" : "2.6 GHz", - "memory" : "60.5 GiB", - "storage" : "4 x 840", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:cc2.8xlarge", - "operation" : "RunInstances:000g", - "ecu" : "88", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "H7FHBN6ZTC6EJQ2N" : { - "sku" : "H7FHBN6ZTC6EJQ2N", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "4 x 1.9 NVMe SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.8xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PYCJPPPYA7FXP2KM" : { - "sku" : "PYCJPPPYA7FXP2KM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:m4.large", - "operation" : "Hourly", - "dedicatedEbsThroughput" : "450 Mbps", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QMCSUNX7MQVY9UVN" : { - "sku" : "QMCSUNX7MQVY9UVN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.large", - "operation" : "RunInstances:0002", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3GCSD3HHQWFGV39C" : { - "sku" : "3GCSD3HHQWFGV39C", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c1.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "7 GiB", - "storage" : "4 x 420", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c1.xlarge", - "operation" : "RunInstances:0010", - "ecu" : "20", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CTWGRH5ACPDTJT2H" : { - "sku" : "CTWGRH5ACPDTJT2H", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.18xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "72", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "144 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:c5.18xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "9000 Mbps", - "ecu" : "278", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "144", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2MS9BQ29TD8ZPX2B" : { - "sku" : "2MS9BQ29TD8ZPX2B", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "3,904 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.32xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "340", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ABGVRF96RZJ9FHTF" : { - "sku" : "ABGVRF96RZJ9FHTF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "15 GiB", - "storage" : "1 x 60 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:g2.2xlarge", - "operation" : "RunInstances:0202", - "ecu" : "26", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QSAWD9QW3658YB28" : { - "sku" : "QSAWD9QW3658YB28", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:p2.8xlarge", - "operation" : "RunInstances:0800", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "232CDFDW89ENUXRB" : { - "sku" : "232CDFDW89ENUXRB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "244 GiB", - "storage" : "24 x 2000 HDD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:d2.8xlarge", - "operation" : "RunInstances", - "ecu" : "116", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TJCB42XUUBBP8KKF" : { - "sku" : "TJCB42XUUBBP8KKF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.16xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "12000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4XQSHVJTBAK4RP7T" : { - "sku" : "4XQSHVJTBAK4RP7T", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:m4.2xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4TE6EMDQEPCBNFAE" : { - "sku" : "4TE6EMDQEPCBNFAE", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "4 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i2.4xlarge", - "operation" : "RunInstances:0010", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UG8JKJZ5R9J4CW2Z" : { - "sku" : "UG8JKJZ5R9J4CW2Z", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "256 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:m4.16xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "10000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9NJKDTFRDQH4YFJ6" : { - "sku" : "9NJKDTFRDQH4YFJ6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:g3.16xlarge", - "operation" : "Hourly", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "4", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4WH4EK5RUS7PPQCA" : { - "sku" : "4WH4EK5RUS7PPQCA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SZQV42HNDR8AXTGV" : { - "sku" : "SZQV42HNDR8AXTGV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.10xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "40", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "160 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.10xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "80", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "W4HNTDUW2525QNYX" : { - "sku" : "W4HNTDUW2525QNYX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.9xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "72 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:c5.9xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "4500 Mbps", - "ecu" : "139", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "72", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7DUQ3HEEEBV8YX9T" : { - "sku" : "7DUQ3HEEEBV8YX9T", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:r3.large", - "operation" : "RunInstances:0800", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7VB9795V9MTDDCBF" : { - "sku" : "7VB9795V9MTDDCBF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "3.75 GiB", - "storage" : "2 x 16 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.large", - "operation" : "RunInstances:0102", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "X4RWGEB2DKQGCWC2" : { - "sku" : "X4RWGEB2DKQGCWC2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c1.medium", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "1.7 GiB", - "storage" : "1 x 350", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c1.medium", - "operation" : "RunInstances", - "ecu" : "2", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XDBQD4Z97Q72N97A" : { - "sku" : "XDBQD4Z97Q72N97A", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "3,904 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.32xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "340", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Z6NT2VUPAUJTCBJV" : { - "sku" : "Z6NT2VUPAUJTCBJV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "60 GiB", - "storage" : "2 x 120 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:g2.8xlarge", - "operation" : "RunInstances:0202", - "ecu" : "104", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YRY7U9ETRK6GWQEU" : { - "sku" : "YRY7U9ETRK6GWQEU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "7.5 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m3.large", - "operation" : "RunInstances:0006", - "ecu" : "6.5", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BKJP7BSW4MHQHNVV" : { - "sku" : "BKJP7BSW4MHQHNVV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9RBZ58Y8EJXERRGT" : { - "sku" : "9RBZ58Y8EJXERRGT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 80 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.xlarge", - "operation" : "RunInstances:0202", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4C2WZDUPRUA5S7YC" : { - "sku" : "4C2WZDUPRUA5S7YC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.8xlarge", - "operation" : "RunInstances:000g", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "R8DGVR4A52UQ7VP6" : { - "sku" : "R8DGVR4A52UQ7VP6", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Inbound", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "South America (Sao Paulo)", - "toLocationType" : "AWS Region", - "usagetype" : "USE1-SAE1-AWS-In-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "TTPHQSRWDV7SEYMT" : { - "sku" : "TTPHQSRWDV7SEYMT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 800 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:i2.xlarge", - "operation" : "RunInstances:0800", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VNT94W34YSHKDST8" : { - "sku" : "VNT94W34YSHKDST8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:p3.16xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CNBDW56G9K7XSBK4" : { - "sku" : "CNBDW56G9K7XSBK4", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "7.5 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.xlarge", - "operation" : "RunInstances:0102", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "D3DQYQJXGDG9DV7G" : { - "sku" : "D3DQYQJXGDG9DV7G", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "2 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i2.2xlarge", - "operation" : "RunInstances:0002", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3X4XPPD8AEXYQCJ7" : { - "sku" : "3X4XPPD8AEXYQCJ7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.2xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "68JXBV5UF5AMUV4X" : { - "sku" : "68JXBV5UF5AMUV4X", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 960", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.8xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "91", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6TEX73KEE94WMEED" : { - "sku" : "6TEX73KEE94WMEED", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c1.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "7 GiB", - "storage" : "4 x 420", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c1.xlarge", - "operation" : "RunInstances", - "ecu" : "20", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QBZMZDA3WBTDVYJ7" : { - "sku" : "QBZMZDA3WBTDVYJ7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "2 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i2.2xlarge", - "operation" : "RunInstances:0202", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MRRD2QZTJZU8NEUN" : { - "sku" : "MRRD2QZTJZU8NEUN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "4 x 1.9 NVMe SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.8xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4WQD6GEAM4NRC7U3" : { - "sku" : "4WQD6GEAM4NRC7U3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.medium", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "3.75 GiB", - "storage" : "1 x 410", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m1.medium", - "operation" : "RunInstances", - "ecu" : "2", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4GRDB56V2W7EVFSU" : { - "sku" : "4GRDB56V2W7EVFSU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:g3.16xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "4", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6AUAERFUWRVM7MMK" : { - "sku" : "6AUAERFUWRVM7MMK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:p3.2xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JUW4W8N3V4M8BP4F" : { - "sku" : "JUW4W8N3V4M8BP4F", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:p3.8xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2BCVUC7VFQV76XRN" : { - "sku" : "2BCVUC7VFQV76XRN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "30.5 GiB", - "storage" : "3 x 2000 HDD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:d2.xlarge", - "operation" : "RunInstances:0006", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3P9SFGQNFGEFVPCX" : { - "sku" : "3P9SFGQNFGEFVPCX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.0 GHz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Low to Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.large", - "operation" : "RunInstances:000g", - "ecu" : "Variable", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3PNERBF8KG8M4GQ2" : { - "sku" : "3PNERBF8KG8M4GQ2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "1 x 320 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:r3.4xlarge", - "operation" : "RunInstances:0800", - "ecu" : "52", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QYDN54PY6Q429VJA" : { - "sku" : "QYDN54PY6Q429VJA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "2 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i2.2xlarge", - "operation" : "RunInstances:000g", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AGHHWVT6KDRBWTWP" : { - "sku" : "AGHHWVT6KDRBWTWP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.nano", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.3 GHz", - "memory" : "0.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "Low", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.nano", - "operation" : "RunInstances", - "ecu" : "Variable", - "normalizationSizeFactor" : "0.25", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "N9VCZ7667JZZWNF5" : { - "sku" : "N9VCZ7667JZZWNF5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "4 x 1.9 NVMe SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:i3.8xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "M5Q2FGMPJ4Q6PA2G" : { - "sku" : "M5Q2FGMPJ4Q6PA2G", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1.16xlarge", - "operation" : "RunInstances:0010", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UEMM3EBWG9B8QGPK" : { - "sku" : "UEMM3EBWG9B8QGPK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.10xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "40", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "160 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.10xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "80", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BGU9UG7QCNNGBKAB" : { - "sku" : "BGU9UG7QCNNGBKAB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:p2.xlarge", - "operation" : "RunInstances:0002", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YGC2QHNNR7NU4B88" : { - "sku" : "YGC2QHNNR7NU4B88", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "f1.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "memory" : "976 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:f1.16xlarge", - "operation" : "RunInstances", - "ecu" : "188", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QQMYSYW64K9VEPF5" : { - "sku" : "QQMYSYW64K9VEPF5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:x1.16xlarge", - "operation" : "RunInstances:0800", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "88VG68PMGN3M4ZEY" : { - "sku" : "88VG68PMGN3M4ZEY", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.16xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "179", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "G7T27N57ERE3PVRC" : { - "sku" : "G7T27N57ERE3PVRC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "15 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.2xlarge", - "operation" : "RunInstances:0002", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2TWQMPVA6E2FTADF" : { - "sku" : "2TWQMPVA6E2FTADF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:m4.2xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HPSQPPJ249MHQR6A" : { - "sku" : "HPSQPPJ249MHQR6A", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "1 x 480", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.4xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "47", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Q8V833FWUY52YX8W" : { - "sku" : "Q8V833FWUY52YX8W", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "3.75 GiB", - "storage" : "2 x 16 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.large", - "operation" : "RunInstances:0202", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HBN8KMXQ2AA8Z2EV" : { - "sku" : "HBN8KMXQ2AA8Z2EV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.small", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "1.7 GiB", - "storage" : "1 x 160", - "networkPerformance" : "Low", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage", - "operation" : "RunInstances:0800", - "ecu" : "Variable", - "normalizationSizeFactor" : "1", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GSWT4ZQ4JNMRW7YU" : { - "sku" : "GSWT4ZQ4JNMRW7YU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:p3.8xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "N2ZR79PK3EYG8Y2Q" : { - "sku" : "N2ZR79PK3EYG8Y2Q", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 800 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:i2.xlarge", - "operation" : "RunInstances:0800", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "V7SRDNUCBKDMKD3M" : { - "sku" : "V7SRDNUCBKDMKD3M", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "2 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i2.2xlarge", - "operation" : "RunInstances", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "8GM5MHF25FH6C87J" : { - "sku" : "8GM5MHF25FH6C87J", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c1.medium", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "1.7 GiB", - "storage" : "1 x 350", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:c1.medium", - "operation" : "RunInstances:0800", - "ecu" : "2", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "U5PMX34FM7A6Y7VW" : { - "sku" : "U5PMX34FM7A6Y7VW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m3.xlarge", - "operation" : "RunInstances:0102", - "ecu" : "13", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XXD6BKTUGGN2547V" : { - "sku" : "XXD6BKTUGGN2547V", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "1 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:r3.2xlarge", - "operation" : "RunInstances:0800", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7BNV89HT66ESXJZR" : { - "sku" : "7BNV89HT66ESXJZR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 0.95 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "850 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "F2Q73ZKZWDKZ25TB" : { - "sku" : "F2Q73ZKZWDKZ25TB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "7.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "P4NKH8TTQ4BBNRDQ" : { - "sku" : "P4NKH8TTQ4BBNRDQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:m3.xlarge", - "operation" : "RunInstances:0800", - "ecu" : "13", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Z53PYBHU83UZWMXA" : { - "sku" : "Z53PYBHU83UZWMXA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "3.75 GiB", - "storage" : "2 x 16 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:c3.large", - "operation" : "RunInstances:0800", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6A98KYSNMAGXRPPR" : { - "sku" : "6A98KYSNMAGXRPPR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "15 GiB", - "storage" : "4 x 420", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m1.xlarge", - "operation" : "RunInstances:0006", - "ecu" : "8", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AZGXC7HPDQNS3725" : { - "sku" : "AZGXC7HPDQNS3725", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "Accelerated InterRegion Inbound from close by location", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "US West (Oregon)", - "toLocationType" : "AWS Region", - "usagetype" : "USE1-USW2-AWS-In-ABytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "8VCNEHQMSCQS4P39" : { - "sku" : "8VCNEHQMSCQS4P39", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.large", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "450 Mbps", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9YVNCN8XCQ7NAPYJ" : { - "sku" : "9YVNCN8XCQ7NAPYJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:m4.2xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XK8PATGXFTCH3726" : { - "sku" : "XK8PATGXFTCH3726", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "60 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.8xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "132", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JTHCG93HEJ7CXDPB" : { - "sku" : "JTHCG93HEJ7CXDPB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 800 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:i2.xlarge", - "operation" : "RunInstances:0800", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PHZYKS4DKKZQTHE2" : { - "sku" : "PHZYKS4DKKZQTHE2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:p2.8xlarge", - "operation" : "RunInstances", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9HPUN6CF83QX5EC3" : { - "sku" : "9HPUN6CF83QX5EC3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "15 GiB", - "storage" : "4 x 420", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m1.xlarge", - "operation" : "RunInstances:0006", - "ecu" : "8", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "49KSPMGA5DCV6VC6" : { - "sku" : "49KSPMGA5DCV6VC6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.4xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PG7N32NDHXVN79SC" : { - "sku" : "PG7N32NDHXVN79SC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "3,904 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.32xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "340", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "48VURD6MVAZ3M5JX" : { - "sku" : "48VURD6MVAZ3M5JX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "15 GiB", - "storage" : "1 x 60 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:g2.2xlarge", - "operation" : "RunInstances", - "ecu" : "26", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MNCVCF2WMXJ3B7FB" : { - "sku" : "MNCVCF2WMXJ3B7FB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 0.475 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:i3.large", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "425 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VCP5S8DX28AZ8RR2" : { - "sku" : "VCP5S8DX28AZ8RR2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "64 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.4xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "53.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ES3XAJX5E6SRUWY5" : { - "sku" : "ES3XAJX5E6SRUWY5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "3.75 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.large", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZC3Y45SUG7K4RB8W" : { - "sku" : "ZC3Y45SUG7K4RB8W", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c1.medium", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "1.7 GiB", - "storage" : "1 x 350", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c1.medium", - "operation" : "RunInstances:0002", - "ecu" : "2", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Y9WDY7HG6S2NXFSP" : { - "sku" : "Y9WDY7HG6S2NXFSP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "1 x 320 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.4xlarge", - "operation" : "RunInstances:0010", - "ecu" : "52", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YAPU23CHKA23RRR7" : { - "sku" : "YAPU23CHKA23RRR7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HZC9FAP4F9Y8JW67" : { - "sku" : "HZC9FAP4F9Y8JW67", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.micro", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.3 GHz", - "memory" : "1 GiB", - "storage" : "EBS only", - "networkPerformance" : "Low to Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.micro", - "operation" : "RunInstances", - "ecu" : "Variable", - "normalizationSizeFactor" : "0.5", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QWZW5Y8P4TX97TGS" : { - "sku" : "QWZW5Y8P4TX97TGS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "2 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.4xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "V8EJ2P6F3B8BQ4JZ" : { - "sku" : "V8EJ2P6F3B8BQ4JZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.4xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "3000 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZCJNXF2AJ56TTBVX" : { - "sku" : "ZCJNXF2AJ56TTBVX", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Outbound", - "fromLocation" : "AWS GovCloud (US)", - "fromLocationType" : "AWS Region", - "toLocation" : "US East (N. Virginia)", - "toLocationType" : "AWS Region", - "usagetype" : "UGW1-USE1-AWS-Out-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "Y39GSVXFDVZTA5NW" : { - "sku" : "Y39GSVXFDVZTA5NW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "30 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.4xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EN85M9PMPVGK77TA" : { - "sku" : "EN85M9PMPVGK77TA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "f1.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "memory" : "976 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:f1.16xlarge", - "operation" : "RunInstances", - "ecu" : "188", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FB2SHXY4CT6MW3FX" : { - "sku" : "FB2SHXY4CT6MW3FX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "122 GiB", - "storage" : "12 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:d2.4xlarge", - "operation" : "RunInstances:0002", - "ecu" : "56", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "68SDFG84HR8PCZY5" : { - "sku" : "68SDFG84HR8PCZY5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "4 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.large", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5NPY8GZN5BFUPMDZ" : { - "sku" : "5NPY8GZN5BFUPMDZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.medium", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "3.75 GiB", - "storage" : "1 x 4 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m3.medium", - "operation" : "RunInstances:0002", - "ecu" : "3", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "C6HNR92XQ2JU8MSN" : { - "sku" : "C6HNR92XQ2JU8MSN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "64 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:m4.4xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "53.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Z7AE49M8866J2GBA" : { - "sku" : "Z7AE49M8866J2GBA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "7.5 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.xlarge", - "operation" : "RunInstances:000g", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9WGNK9JK96GFCM3E" : { - "sku" : "9WGNK9JK96GFCM3E", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "122 GiB", - "storage" : "12 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:d2.4xlarge", - "operation" : "RunInstances:0010", - "ecu" : "56", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XDP9UAY59KP89W84" : { - "sku" : "XDP9UAY59KP89W84", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "30 GiB", - "storage" : "2 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.4xlarge", - "operation" : "RunInstances:0202", - "ecu" : "55", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CNQRJ2XRQ5WYZJQ3" : { - "sku" : "CNQRJ2XRQ5WYZJQ3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "1 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.2xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SKGAAJVJUYA4XN4J" : { - "sku" : "SKGAAJVJUYA4XN4J", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.18xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "72", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "144 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.18xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "9000 Mbps", - "ecu" : "278", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "144", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "J5F97VTUKDBTW8X5" : { - "sku" : "J5F97VTUKDBTW8X5", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Outbound", - "fromLocation" : "EU (London)", - "fromLocationType" : "AWS Region", - "toLocation" : "US East (N. Virginia)", - "toLocationType" : "AWS Region", - "usagetype" : "EUW2-USE1-AWS-Out-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "VRV65GYV3GNQWB7Z" : { - "sku" : "VRV65GYV3GNQWB7Z", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "15 GiB", - "storage" : "1 x 60 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:g2.2xlarge", - "operation" : "RunInstances:0800", - "ecu" : "26", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QYS4PZ8A9Q32ZPH2" : { - "sku" : "QYS4PZ8A9Q32ZPH2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:p3.8xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "69JW6QZ8TVS6R46R" : { - "sku" : "69JW6QZ8TVS6R46R", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 800 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "ebsOptimized" : "Yes", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:i2.xlarge", - "operation" : "Hourly", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7UNGQGFQFJTYCG4P" : { - "sku" : "7UNGQGFQFJTYCG4P", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:p3.16xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NW2F7XVYDCTPPGMJ" : { - "sku" : "NW2F7XVYDCTPPGMJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9MR4BWBNYFE4GCC3" : { - "sku" : "9MR4BWBNYFE4GCC3", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.16xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "179", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MW3YR4CA9XQU7PMV" : { - "sku" : "MW3YR4CA9XQU7PMV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cg1.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "GPU instance", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon x5570", - "memory" : "22.5 GiB", - "storage" : "2 x 840", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:cg1.4xlarge", - "operation" : "RunInstances:0002", - "ecu" : "33.5", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FPSSRYYG22AJKWQT" : { - "sku" : "FPSSRYYG22AJKWQT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 800 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i2.xlarge", - "operation" : "RunInstances:0202", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Q3B3QHUSMA9FRZZH" : { - "sku" : "Q3B3QHUSMA9FRZZH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "60 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:c4.8xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "132", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TAAVXTAR4D2NPUA8" : { - "sku" : "TAAVXTAR4D2NPUA8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "244 GiB", - "storage" : "24 x 2000 HDD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:d2.8xlarge", - "operation" : "RunInstances:0010", - "ecu" : "116", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "S96SK9E6DW5X9ZCD" : { - "sku" : "S96SK9E6DW5X9ZCD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 800 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i2.xlarge", - "operation" : "RunInstances:000g", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SV6J8GK44ZN2FKNF" : { - "sku" : "SV6J8GK44ZN2FKNF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.10xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "40", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "160 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.10xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "80", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SE6PJRHUA462KM9T" : { - "sku" : "SE6PJRHUA462KM9T", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "f1.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "memory" : "976 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:f1.16xlarge", - "operation" : "RunInstances:000g", - "ecu" : "188", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BWKDS9539ZWVQSVQ" : { - "sku" : "BWKDS9539ZWVQSVQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "4 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.large", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DUH49BWDXYJZKX4Z" : { - "sku" : "DUH49BWDXYJZKX4Z", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "122 GiB", - "storage" : "12 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:d2.4xlarge", - "operation" : "RunInstances:0800", - "ecu" : "56", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BW6AXJST7E7P4GBA" : { - "sku" : "BW6AXJST7E7P4GBA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:p3.8xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RHSXCZ3G6S7CMC36" : { - "sku" : "RHSXCZ3G6S7CMC36", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "7.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "V8DBBCPMYRSW3JJY" : { - "sku" : "V8DBBCPMYRSW3JJY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "1 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:r3.2xlarge", - "operation" : "RunInstances:0800", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TUZ66NQWUUE3DQ3K" : { - "sku" : "TUZ66NQWUUE3DQ3K", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "1 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "ebsOptimized" : "Yes", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:r3.2xlarge", - "operation" : "Hourly", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SURRSGSBEXVRX9RJ" : { - "sku" : "SURRSGSBEXVRX9RJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c1.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "7 GiB", - "storage" : "4 x 420", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "ebsOptimized" : "Yes", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:c1.xlarge", - "operation" : "Hourly", - "ecu" : "20", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4NZYXM2TKNFUFMFP" : { - "sku" : "4NZYXM2TKNFUFMFP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "15 GiB", - "storage" : "4 x 420", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:m1.xlarge", - "operation" : "RunInstances:0800", - "ecu" : "8", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YYT7SGG9WN5TE2P3" : { - "sku" : "YYT7SGG9WN5TE2P3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "30.5 GiB", - "storage" : "3 x 2000 HDD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:d2.xlarge", - "operation" : "RunInstances:0102", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DJZE39FJBRGB2JNH" : { - "sku" : "DJZE39FJBRGB2JNH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "30 GiB", - "storage" : "2 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.4xlarge", - "operation" : "RunInstances:0006", - "ecu" : "55", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ERPWM7KEFVQABEK6" : { - "sku" : "ERPWM7KEFVQABEK6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m3.xlarge", - "operation" : "RunInstances:0006", - "ecu" : "13", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7TCPFRQ8URKENK6F" : { - "sku" : "7TCPFRQ8URKENK6F", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.10xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "40", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "160 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:m4.10xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "80", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KAH9XCCP3F226R57" : { - "sku" : "KAH9XCCP3F226R57", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "34.2 GiB", - "storage" : "1 x 850", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m2.2xlarge", - "operation" : "RunInstances:000g", - "ecu" : "13", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6Z2HWHRBW2ZH7Z33" : { - "sku" : "6Z2HWHRBW2ZH7Z33", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 0.95 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "850 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6CB4U9QPSBPWD3PM" : { - "sku" : "6CB4U9QPSBPWD3PM", - "productFamily" : "Dedicated Host", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "NA", - "storage" : "NA", - "networkPerformance" : "NA", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostUsage:x1", - "operation" : "RunInstances", - "ecu" : "NA", - "instanceCapacity16xlarge" : "2", - "instanceCapacity32xlarge" : "1", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "NA", - "physicalCores" : "72", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4W9WDFJ5DZZ4Z4EJ" : { - "sku" : "4W9WDFJ5DZZ4Z4EJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "15 GiB", - "storage" : "1 x 60 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:g2.2xlarge", - "operation" : "RunInstances", - "ecu" : "26", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TDQNZBUHCYXTFDUS" : { - "sku" : "TDQNZBUHCYXTFDUS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m3.xlarge", - "operation" : "RunInstances:0010", - "ecu" : "13", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "WVXEZZPK3N9SFW9H" : { - "sku" : "WVXEZZPK3N9SFW9H", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 960", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.8xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "91", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "X7H5W7828HGJJPVY" : { - "sku" : "X7H5W7828HGJJPVY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "2 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.4xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3753VU7A9Z8KFJ3N" : { - "sku" : "3753VU7A9Z8KFJ3N", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 960", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.8xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "91", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9W95WEA2F9V4BVUJ" : { - "sku" : "9W95WEA2F9V4BVUJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:m4.xlarge", - "operation" : "Hourly", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JXT6YFU3KSU3C7ZV" : { - "sku" : "JXT6YFU3KSU3C7ZV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "3.75 GiB", - "storage" : "2 x 16 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.large", - "operation" : "RunInstances:0006", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EE7BATB9AU6WJQPT" : { - "sku" : "EE7BATB9AU6WJQPT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "256 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.16xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "10000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "864JFB48Z5WZN64X" : { - "sku" : "864JFB48Z5WZN64X", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 0.95 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "850 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9X8YQSJK3UTFW3TV" : { - "sku" : "9X8YQSJK3UTFW3TV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1.16xlarge", - "operation" : "RunInstances:0002", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RJJNTY6VUT5R56NM" : { - "sku" : "RJJNTY6VUT5R56NM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:p2.8xlarge", - "operation" : "Hourly", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NWNWWPNWF6HRM3M4" : { - "sku" : "NWNWWPNWF6HRM3M4", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.2xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SWJUJ3JPRMDJSCZU" : { - "sku" : "SWJUJ3JPRMDJSCZU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "1 x 120", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "F3MDY4T6HP6MHSY3" : { - "sku" : "F3MDY4T6HP6MHSY3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 0.475 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.large", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "425 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RATRP8MVJ9EVX6N7" : { - "sku" : "RATRP8MVJ9EVX6N7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 800 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i2.xlarge", - "operation" : "RunInstances:0010", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "WAWEH2Q4B3BTK68V" : { - "sku" : "WAWEH2Q4B3BTK68V", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:p2.8xlarge", - "operation" : "RunInstances", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EW84HPN3QSBRVQGJ" : { - "sku" : "EW84HPN3QSBRVQGJ", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.16xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "179", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9E9PKC86XNNXZ5RW" : { - "sku" : "9E9PKC86XNNXZ5RW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.16xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "12000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "U2FYDQN5UB6DJ9P6" : { - "sku" : "U2FYDQN5UB6DJ9P6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 0.475 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.large", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "425 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "P3HMXPX59K45JP62" : { - "sku" : "P3HMXPX59K45JP62", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "4 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.large", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VTRGBHUJVPMPXVJ5" : { - "sku" : "VTRGBHUJVPMPXVJ5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.18xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "72", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "144 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.18xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "9000 Mbps", - "ecu" : "278", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "144", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6SKVNRGYNDNJMWQA" : { - "sku" : "6SKVNRGYNDNJMWQA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "15 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.2xlarge", - "operation" : "RunInstances:0002", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "E3GUDV3CG8QTVYVK" : { - "sku" : "E3GUDV3CG8QTVYVK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:g3.16xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "4", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HEF4JAUBGGF9GEHP" : { - "sku" : "HEF4JAUBGGF9GEHP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "244 GiB", - "storage" : "24 x 2000 HDD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:d2.8xlarge", - "operation" : "RunInstances:000g", - "ecu" : "116", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "8K8S8K92EHM2PHP6" : { - "sku" : "8K8S8K92EHM2PHP6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.2xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "1600 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "P2X5CCNUGDNQVXV2" : { - "sku" : "P2X5CCNUGDNQVXV2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "15 GiB", - "storage" : "1 x 60 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:g2.2xlarge", - "operation" : "RunInstances:0006", - "ecu" : "26", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GSQJMJPK4SFYF63H" : { - "sku" : "GSQJMJPK4SFYF63H", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Inbound", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "Asia Pacific (Sydney)", - "toLocationType" : "AWS Region", - "usagetype" : "USE1-APS2-AWS-In-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "XP5P8NMSB2W7KP3U" : { - "sku" : "XP5P8NMSB2W7KP3U", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "244 GiB", - "storage" : "24 x 2000 HDD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:d2.8xlarge", - "operation" : "RunInstances", - "ecu" : "116", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SMTQRSCDV7BY873H" : { - "sku" : "SMTQRSCDV7BY873H", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.9xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "72 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.9xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "4500 Mbps", - "ecu" : "139", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "72", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RQBBRPV8FS6G4KCZ" : { - "sku" : "RQBBRPV8FS6G4KCZ", - "productFamily" : "Dedicated Host", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "NA", - "storage" : "NA", - "networkPerformance" : "NA", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostUsage:x1e", - "operation" : "RunInstances", - "ecu" : "NA", - "instanceCapacity32xlarge" : "1", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "NA", - "physicalCores" : "72", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CPC4739JBDJJ92RZ" : { - "sku" : "CPC4739JBDJJ92RZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "60 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.8xlarge", - "operation" : "RunInstances", - "ecu" : "108", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5ESJGGVJ9BWYXAY9" : { - "sku" : "5ESJGGVJ9BWYXAY9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m3.xlarge", - "operation" : "RunInstances:0002", - "ecu" : "13", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9MSTVHD5FNUTQ99C" : { - "sku" : "9MSTVHD5FNUTQ99C", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:p3.8xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "C8282STGWSCNVJCC" : { - "sku" : "C8282STGWSCNVJCC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "60 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.8xlarge", - "operation" : "RunInstances:0002", - "ecu" : "108", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "H338WENZAK73BM3E" : { - "sku" : "H338WENZAK73BM3E", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "60 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.8xlarge", - "operation" : "RunInstances:0102", - "ecu" : "108", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "K2PF4AX5RJMVHBC9" : { - "sku" : "K2PF4AX5RJMVHBC9", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 960", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.8xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "91", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UY23MW6DPAKU4KJ9" : { - "sku" : "UY23MW6DPAKU4KJ9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.0 GHz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.2xlarge", - "operation" : "RunInstances:0002", - "ecu" : "Variable", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PFVG5HVRU3HK5C4R" : { - "sku" : "PFVG5HVRU3HK5C4R", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "3.75 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.large", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CB7SJGDA74NZ9PCE" : { - "sku" : "CB7SJGDA74NZ9PCE", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "1 x 240", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.2xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "23", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VEYRGRFZB8WFUBH3" : { - "sku" : "VEYRGRFZB8WFUBH3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.4xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UYBNK9BE67UCKSSW" : { - "sku" : "UYBNK9BE67UCKSSW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "60 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:c4.8xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "132", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "M62BQXUWYDM97G4U" : { - "sku" : "M62BQXUWYDM97G4U", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.4xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "3000 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "C3J6CAXEXRG66B2Y" : { - "sku" : "C3J6CAXEXRG66B2Y", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Inbound", - "fromLocation" : "US West (N. California)", - "fromLocationType" : "AWS Region", - "toLocation" : "US East (N. Virginia)", - "toLocationType" : "AWS Region", - "usagetype" : "USW1-USE1-AWS-In-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "K86YRT3FMXX5Q76Y" : { - "sku" : "K86YRT3FMXX5Q76Y", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "1 x 480", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.4xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "47", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CHDYF9BYGFSAHSRK" : { - "sku" : "CHDYF9BYGFSAHSRK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 0.95 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "850 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "K8NM7HNBAX7T4N5U" : { - "sku" : "K8NM7HNBAX7T4N5U", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "60 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.8xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "132", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YDP6AWC4ZPX5AANZ" : { - "sku" : "YDP6AWC4ZPX5AANZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "61 GiB", - "storage" : "6 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:d2.2xlarge", - "operation" : "RunInstances:000g", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EFFHYDTSJGNSYAVJ" : { - "sku" : "EFFHYDTSJGNSYAVJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.medium", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "3.75 GiB", - "storage" : "1 x 4 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m3.medium", - "operation" : "RunInstances:000g", - "ecu" : "3", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5YBKCYT5H6J77KYT" : { - "sku" : "5YBKCYT5H6J77KYT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "15 GiB", - "storage" : "4 x 420", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m1.xlarge", - "operation" : "RunInstances:0202", - "ecu" : "8", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4QN7HTACSM3CFNUX" : { - "sku" : "4QN7HTACSM3CFNUX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:p2.xlarge", - "operation" : "RunInstances:0800", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "N6734AQ5CQHVEMES" : { - "sku" : "N6734AQ5CQHVEMES", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "30 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:c4.4xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YT5JTCAUXT587YW7" : { - "sku" : "YT5JTCAUXT587YW7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "7.5 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m3.large", - "operation" : "RunInstances:0010", - "ecu" : "6.5", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RCQDAE4337AGCJV8" : { - "sku" : "RCQDAE4337AGCJV8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:p2.8xlarge", - "operation" : "RunInstances:000g", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "86FEVXHAJVJ75D5R" : { - "sku" : "86FEVXHAJVJ75D5R", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "15 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.2xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3KAFWJNHJ6VKA77T" : { - "sku" : "3KAFWJNHJ6VKA77T", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.2xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5C78VXN9F5U4WPSN" : { - "sku" : "5C78VXN9F5U4WPSN", - "productFamily" : "IP Address", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "group" : "ElasticIP:Address", - "groupDescription" : "Elastic IP address attached to a running instance", - "usagetype" : "ElasticIP:IdleAddress", - "operation" : "", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SR2X29MBY6K3S2UM" : { - "sku" : "SR2X29MBY6K3S2UM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "800 Mbps", - "ecu" : "Variable", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VENWXFAH6ZT534EX" : { - "sku" : "VENWXFAH6ZT534EX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "30 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:c4.4xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VNV2TU2Q7ZCZ374Z" : { - "sku" : "VNV2TU2Q7ZCZ374Z", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "7.5 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m3.large", - "operation" : "RunInstances:0010", - "ecu" : "6.5", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YMKYAYKBFT6QURTQ" : { - "sku" : "YMKYAYKBFT6QURTQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "60 GiB", - "storage" : "2 x 120 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:g2.8xlarge", - "operation" : "RunInstances:000g", - "ecu" : "104", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DEEJRV3WVFPZTXRD" : { - "sku" : "DEEJRV3WVFPZTXRD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:m4.xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QT2HSTX3NZ4XCM9E" : { - "sku" : "QT2HSTX3NZ4XCM9E", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.large", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "450 Mbps", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6S9GKQW48P8VUTJ9" : { - "sku" : "6S9GKQW48P8VUTJ9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:p2.8xlarge", - "operation" : "RunInstances:0002", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "X54X2EBSMKMH8KGR" : { - "sku" : "X54X2EBSMKMH8KGR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "60 GiB", - "storage" : "2 x 120 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:g2.8xlarge", - "operation" : "RunInstances:0010", - "ecu" : "104", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FJ3G5WT7J4G7GT23" : { - "sku" : "FJ3G5WT7J4G7GT23", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cr1.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670", - "memory" : "244 GiB", - "storage" : "2 x 120 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:cr1.8xlarge", - "operation" : "RunInstances:0202", - "ecu" : "88", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Web", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QF49GBEQA86P5DD3" : { - "sku" : "QF49GBEQA86P5DD3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "30 GiB", - "storage" : "2 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.4xlarge", - "operation" : "RunInstances:000g", - "ecu" : "55", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UC54XWQVHQPRYB9K" : { - "sku" : "UC54XWQVHQPRYB9K", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 960", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.8xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "91", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FAFFPMHQDMTENZE8" : { - "sku" : "FAFFPMHQDMTENZE8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TDU6B3KE7HWTXURF" : { - "sku" : "TDU6B3KE7HWTXURF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.medium", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "3.75 GiB", - "storage" : "1 x 4 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m3.medium", - "operation" : "RunInstances:0102", - "ecu" : "3", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SJ2H8X62JZ6P6N48" : { - "sku" : "SJ2H8X62JZ6P6N48", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "60 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.8xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "132", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DFZPYYVFYF45BSQ3" : { - "sku" : "DFZPYYVFYF45BSQ3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "4 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i2.4xlarge", - "operation" : "RunInstances:0202", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SQD4BVC5RS7DWN7S" : { - "sku" : "SQD4BVC5RS7DWN7S", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "768 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:p2.16xlarge", - "operation" : "RunInstances:0800", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "16", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "A9YZTVBT2EH2RHUW" : { - "sku" : "A9YZTVBT2EH2RHUW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "64 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:m4.4xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "53.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GY7YBGWY6UY9H8G3" : { - "sku" : "GY7YBGWY6UY9H8G3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.large", - "operation" : "RunInstances:0202", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FENJBKVQ4CNCQN3M" : { - "sku" : "FENJBKVQ4CNCQN3M", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.16xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "179", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YXVKN9CCKCPCSTST" : { - "sku" : "YXVKN9CCKCPCSTST", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "60 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.8xlarge", - "operation" : "RunInstances:0006", - "ecu" : "108", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "J7XM6UBQVT7UKF3T" : { - "sku" : "J7XM6UBQVT7UKF3T", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "7.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:c4.xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "U3KDJRF6FGANNG5Z" : { - "sku" : "U3KDJRF6FGANNG5Z", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.large", - "operation" : "RunInstances", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "725FHGTUB3P2B9EU" : { - "sku" : "725FHGTUB3P2B9EU", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Inbound", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "EU (Ireland)", - "toLocationType" : "AWS Region", - "usagetype" : "USE1-EU-AWS-In-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "FXKTTJ7YWYEXQKUG" : { - "sku" : "FXKTTJ7YWYEXQKUG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.8xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "6000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "A3CMMJ5XHG8YDXAU" : { - "sku" : "A3CMMJ5XHG8YDXAU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "1 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.2xlarge", - "operation" : "RunInstances:0002", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "87NE3BBF7KA8H7NM" : { - "sku" : "87NE3BBF7KA8H7NM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "3.75 GiB", - "storage" : "2 x 16 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.large", - "operation" : "RunInstances:0010", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EU9WUWRRH3Z8Z25B" : { - "sku" : "EU9WUWRRH3Z8Z25B", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "1 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.2xlarge", - "operation" : "RunInstances:0002", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YP54Q9FFYE6AUN7A" : { - "sku" : "YP54Q9FFYE6AUN7A", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.large", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "400 Mbps", - "ecu" : "135", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4CYRKREB7U8REQP5" : { - "sku" : "4CYRKREB7U8REQP5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "30.5 GiB", - "storage" : "3 x 2000 HDD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:d2.xlarge", - "operation" : "RunInstances:0102", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "WWYHV89KB5YJVTSF" : { - "sku" : "WWYHV89KB5YJVTSF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 0.475 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.large", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "425 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "979YHCUCHTSAM3HF" : { - "sku" : "979YHCUCHTSAM3HF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "8 x 800 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i2.8xlarge", - "operation" : "RunInstances:000g", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JVT9JXEVPBRUMA3N" : { - "sku" : "JVT9JXEVPBRUMA3N", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 0.475 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.large", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "425 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5R3VUZC6A5EED78S" : { - "sku" : "5R3VUZC6A5EED78S", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "1 x 120", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2ZE6H5B8N6EJTXEZ" : { - "sku" : "2ZE6H5B8N6EJTXEZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "61 GiB", - "storage" : "6 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:d2.2xlarge", - "operation" : "RunInstances:0800", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "T55J69CYMKUV3MQC" : { - "sku" : "T55J69CYMKUV3MQC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "1 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.2xlarge", - "operation" : "RunInstances:0002", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Z73XYJRRH5CMMR8R" : { - "sku" : "Z73XYJRRH5CMMR8R", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "7.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VMRHNZ3YYYGM22ZW" : { - "sku" : "VMRHNZ3YYYGM22ZW", - "productFamily" : "Dedicated Host", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "NA", - "storage" : "NA", - "networkPerformance" : "NA", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostUsage:g2", - "operation" : "RunInstances", - "ecu" : "NA", - "gpu" : "4", - "normalizationSizeFactor" : "NA", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YPB7U95RTVHKX59T" : { - "sku" : "YPB7U95RTVHKX59T", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "4 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.large", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZK49TH4Z5ZFFPMXJ" : { - "sku" : "ZK49TH4Z5ZFFPMXJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cg1.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "GPU instance", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon x5570", - "memory" : "22.5 GiB", - "storage" : "2 x 840", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:cg1.4xlarge", - "operation" : "RunInstances", - "ecu" : "33.5", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5TGRKMTBQMH42KUS" : { - "sku" : "5TGRKMTBQMH42KUS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "2 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.4xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "33PWMNWFU7HHUVCS" : { - "sku" : "33PWMNWFU7HHUVCS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "1 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.2xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YQXXJJ49N744B7HM" : { - "sku" : "YQXXJJ49N744B7HM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:p3.2xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AKXXTUNGEUFY2NYA" : { - "sku" : "AKXXTUNGEUFY2NYA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "15 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.2xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2Y6EVK4CR7GZUMHR" : { - "sku" : "2Y6EVK4CR7GZUMHR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "7.5 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m3.large", - "operation" : "RunInstances:0002", - "ecu" : "6.5", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SMTM4XWYH27FGA26" : { - "sku" : "SMTM4XWYH27FGA26", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "15 GiB", - "storage" : "1 x 60 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:g2.2xlarge", - "operation" : "RunInstances:0006", - "ecu" : "26", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JNYSB2CFFU532DFN" : { - "sku" : "JNYSB2CFFU532DFN", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Outbound", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "EU (London)", - "toLocationType" : "AWS Region", - "usagetype" : "USE1-EUW2-AWS-Out-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "JRFGUQ324DZG472D" : { - "sku" : "JRFGUQ324DZG472D", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "30 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.4xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7J6XFQYCHJDQXR63" : { - "sku" : "7J6XFQYCHJDQXR63", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:r3.8xlarge", - "operation" : "RunInstances:0800", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QNBV9PBG5RAKHKFW" : { - "sku" : "QNBV9PBG5RAKHKFW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "64 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.4xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "53.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6QCMSW96MRVU6K5U" : { - "sku" : "6QCMSW96MRVU6K5U", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:p2.xlarge", - "operation" : "Hourly", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "V6A93PBRF8JRMDU8" : { - "sku" : "V6A93PBRF8JRMDU8", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "1 x 240", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:x1e.2xlarge", - "operation" : "Hourly", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "23", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "J29VH4DHMCPGPWS6" : { - "sku" : "J29VH4DHMCPGPWS6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.8xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "6000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XVDMNM2WMYBYVW3T" : { - "sku" : "XVDMNM2WMYBYVW3T", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "768 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:p2.16xlarge", - "operation" : "RunInstances", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "16", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NKJ4NNEJMKDJ54KC" : { - "sku" : "NKJ4NNEJMKDJ54KC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "60 GiB", - "storage" : "2 x 120 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:g2.8xlarge", - "operation" : "RunInstances:000g", - "ecu" : "104", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VDQX9KJN5DYBTUQJ" : { - "sku" : "VDQX9KJN5DYBTUQJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.8xlarge", - "operation" : "RunInstances:0002", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EQGP4KYME9PWXUCS" : { - "sku" : "EQGP4KYME9PWXUCS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1.16xlarge", - "operation" : "RunInstances", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "565K5EPDPPX9K6TV" : { - "sku" : "565K5EPDPPX9K6TV", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.16xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "179", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "8B7CXDY69FGHQH62" : { - "sku" : "8B7CXDY69FGHQH62", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 80 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:r3.xlarge", - "operation" : "RunInstances:0800", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "T5BZ33K73P9U93J6" : { - "sku" : "T5BZ33K73P9U93J6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "8 x 800 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i2.8xlarge", - "operation" : "RunInstances:0010", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RH7Y6HVXZXB4UY8U" : { - "sku" : "RH7Y6HVXZXB4UY8U", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.medium", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "3.75 GiB", - "storage" : "1 x 4 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:m3.medium", - "operation" : "RunInstances:0800", - "ecu" : "3", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9GNEUQUQYHH95HXP" : { - "sku" : "9GNEUQUQYHH95HXP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "800 Mbps", - "ecu" : "Variable", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CG5KRXYBD8PDWRA7" : { - "sku" : "CG5KRXYBD8PDWRA7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "30.5 GiB", - "storage" : "3 x 2000 HDD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:d2.xlarge", - "operation" : "RunInstances:0010", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7VQV76T5CW2D2S7E" : { - "sku" : "7VQV76T5CW2D2S7E", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cc1.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670", - "memory" : "23 GiB", - "storage" : "2 x 840 GB", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:cc1.4xlarge", - "operation" : "RunInstances:0800", - "ecu" : "NA", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "V6XZ8Q6G3WH46NAH" : { - "sku" : "V6XZ8Q6G3WH46NAH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.large", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "450 Mbps", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2NCC7B83WHP39NK5" : { - "sku" : "2NCC7B83WHP39NK5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "15 GiB", - "storage" : "1 x 60 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:g2.2xlarge", - "operation" : "RunInstances:0010", - "ecu" : "26", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DN4D2SAMCUHNKK2B" : { - "sku" : "DN4D2SAMCUHNKK2B", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "64 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.4xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "53.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HXSNUHZ63WJ98R8B" : { - "sku" : "HXSNUHZ63WJ98R8B", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "f1.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "memory" : "976 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:f1.16xlarge", - "operation" : "RunInstances:0800", - "ecu" : "188", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VTKYCWG47S8NZFFH" : { - "sku" : "VTKYCWG47S8NZFFH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "1 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.2xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "K28HPP98RVTNWAAD" : { - "sku" : "K28HPP98RVTNWAAD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.10xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "40", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "160 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.10xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "80", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AEGXDVRPAPWQ229X" : { - "sku" : "AEGXDVRPAPWQ229X", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cg1.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "GPU instance", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon x5570", - "memory" : "22.5 GiB", - "storage" : "2 x 840", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:cg1.4xlarge", - "operation" : "RunInstances:0800", - "ecu" : "33.5", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5S2R8NPMY3DY32FC" : { - "sku" : "5S2R8NPMY3DY32FC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "4 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.large", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "269VXUCZZ7E6JNXT" : { - "sku" : "269VXUCZZ7E6JNXT", - "productFamily" : "Storage", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "storageMedia" : "HDD-backed", - "volumeType" : "Magnetic", - "maxVolumeSize" : "1 TiB", - "maxIopsvolume" : "40 - 200", - "maxIopsBurstPerformance" : "Hundreds", - "maxThroughputvolume" : "40 - 90 MB/sec", - "usagetype" : "EBS:VolumeUsage", - "operation" : "", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NRK8WGZ9YPVJGC38" : { - "sku" : "NRK8WGZ9YPVJGC38", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "1 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.2xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Z5UJJBU6GS6N6Y27" : { - "sku" : "Z5UJJBU6GS6N6Y27", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.16xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "12000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZA47RH8PF27SDZKP" : { - "sku" : "ZA47RH8PF27SDZKP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "15 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.2xlarge", - "operation" : "RunInstances", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9S3T4JTQ45TQKNTE" : { - "sku" : "9S3T4JTQ45TQKNTE", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.10xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "40", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "160 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.10xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "80", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZQQM88TCYA932EPG" : { - "sku" : "ZQQM88TCYA932EPG", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.16xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "179", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BAFH9QBR62G3RHWT" : { - "sku" : "BAFH9QBR62G3RHWT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.4xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "22SBKEJ8F25GCA2X" : { - "sku" : "22SBKEJ8F25GCA2X", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "4 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.large", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UNDMB8TE7VGADM8X" : { - "sku" : "UNDMB8TE7VGADM8X", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "30 GiB", - "storage" : "2 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.4xlarge", - "operation" : "RunInstances", - "ecu" : "55", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EAUDKWWNQJZTV253" : { - "sku" : "EAUDKWWNQJZTV253", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Outbound", - "fromLocation" : "US West (Oregon)", - "fromLocationType" : "AWS Region", - "toLocation" : "US East (N. Virginia)", - "toLocationType" : "AWS Region", - "usagetype" : "USW2-USE1-AWS-Out-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "63SCWY92BSEPEYVC" : { - "sku" : "63SCWY92BSEPEYVC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "15 GiB", - "storage" : "1 x 60 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:g2.2xlarge", - "operation" : "RunInstances:0002", - "ecu" : "26", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7XDBWG89WM5JF367" : { - "sku" : "7XDBWG89WM5JF367", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "8 x 1.9 NVMe SSD", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.16xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Z73VPF4R8N955QMR" : { - "sku" : "Z73VPF4R8N955QMR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.8xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "6000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KAZBRUMA5WBV7S69" : { - "sku" : "KAZBRUMA5WBV7S69", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.0 GHz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.2xlarge", - "operation" : "RunInstances:0202", - "ecu" : "Variable", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2Q55CNPTGCQPP362" : { - "sku" : "2Q55CNPTGCQPP362", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 80 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.xlarge", - "operation" : "RunInstances:0202", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XBZH83GR86H4PK4U" : { - "sku" : "XBZH83GR86H4PK4U", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.2xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SYFUF8QKH77BHGHX" : { - "sku" : "SYFUF8QKH77BHGHX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "4 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:c5.large", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JEV4RPZQUJDFUUG5" : { - "sku" : "JEV4RPZQUJDFUUG5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.8xlarge", - "operation" : "RunInstances:0202", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XKP8XXFGKBFRSGFX" : { - "sku" : "XKP8XXFGKBFRSGFX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "7.5 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.xlarge", - "operation" : "RunInstances:0202", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DQ578CGN99KG6ECF" : { - "sku" : "DQ578CGN99KG6ECF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "hs1.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "17", - "physicalProcessor" : "Intel Xeon E5-2650", - "clockSpeed" : "2 GHz", - "memory" : "117 GiB", - "storage" : "24 x 2000", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:hs1.8xlarge", - "operation" : "RunInstances:0002", - "ecu" : "35", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HX3SBKCTTNFU8UEG" : { - "sku" : "HX3SBKCTTNFU8UEG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 0.475 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.large", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "425 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AQK8CMMUKFD4JB69" : { - "sku" : "AQK8CMMUKFD4JB69", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "15 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:c4.2xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6ZNK2Z79AEEBFV3M" : { - "sku" : "6ZNK2Z79AEEBFV3M", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Inbound", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "EU (London)", - "toLocationType" : "AWS Region", - "usagetype" : "USE1-EUW2-AWS-In-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "Q73NFXYCVJRVJD5P" : { - "sku" : "Q73NFXYCVJRVJD5P", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "8 x 800 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i2.8xlarge", - "operation" : "RunInstances:0006", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "A67CJDV9B3YBP6N6" : { - "sku" : "A67CJDV9B3YBP6N6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "60 GiB", - "storage" : "2 x 120 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:g2.8xlarge", - "operation" : "RunInstances", - "ecu" : "104", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DA7QMR94RJ2CZC88" : { - "sku" : "DA7QMR94RJ2CZC88", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.8xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "6000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SQZMQXR6THWASKYH" : { - "sku" : "SQZMQXR6THWASKYH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "1 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.2xlarge", - "operation" : "RunInstances:0006", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GAMAEGQGHSWC95UR" : { - "sku" : "GAMAEGQGHSWC95UR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "4 x 1.9 NVMe SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.8xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2DACTCDEQHTNHX93" : { - "sku" : "2DACTCDEQHTNHX93", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 800 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i2.xlarge", - "operation" : "RunInstances:0102", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "55BBGNQ587XXZTH4" : { - "sku" : "55BBGNQ587XXZTH4", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cr1.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670", - "memory" : "244 GiB", - "storage" : "2 x 120 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:cr1.8xlarge", - "operation" : "RunInstances", - "ecu" : "88", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AAY7WVV9ASN7U5CG" : { - "sku" : "AAY7WVV9ASN7U5CG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "7.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "V6J3XRHZNGUJMG3Z" : { - "sku" : "V6J3XRHZNGUJMG3Z", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "1 x 480", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.4xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "47", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XKKYTV6J2N4E3GXA" : { - "sku" : "XKKYTV6J2N4E3GXA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1.32xlarge", - "operation" : "RunInstances:000g", - "ecu" : "349", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7KSR4DFTZFRCXGGH" : { - "sku" : "7KSR4DFTZFRCXGGH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "hs1.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "17", - "physicalProcessor" : "Intel Xeon E5-2650", - "clockSpeed" : "2 GHz", - "memory" : "117 GiB", - "storage" : "24 x 2000", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:hs1.8xlarge", - "operation" : "RunInstances:0006", - "ecu" : "35", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Std", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FHFGWVJGRUAB5YUF" : { - "sku" : "FHFGWVJGRUAB5YUF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.18xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "72", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "144 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.18xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "9000 Mbps", - "ecu" : "278", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "144", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "R8FEN7446FZH75Y5" : { - "sku" : "R8FEN7446FZH75Y5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.8xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "6000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6W35NFYWJ6ZG37VX" : { - "sku" : "6W35NFYWJ6ZG37VX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t1.micro", - "currentGeneration" : "No", - "instanceFamily" : "Micro instances", - "vcpu" : "1", - "physicalProcessor" : "Variable", - "memory" : "0.613 GiB", - "storage" : "EBS only", - "networkPerformance" : "Very Low", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t1.micro", - "operation" : "RunInstances:000g", - "ecu" : "26", - "normalizationSizeFactor" : "0.5", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VETEGFEN68R236A6" : { - "sku" : "VETEGFEN68R236A6", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 960", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:x1e.8xlarge", - "operation" : "Hourly", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "91", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RN2BTZEEU3PRHGPQ" : { - "sku" : "RN2BTZEEU3PRHGPQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "1 x 320 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.4xlarge", - "operation" : "RunInstances:0102", - "ecu" : "52", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XJQHREQ4GHZQKQU7" : { - "sku" : "XJQHREQ4GHZQKQU7", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Inbound", - "fromLocation" : "Asia Pacific (Seoul)", - "fromLocationType" : "AWS Region", - "toLocation" : "US East (N. Virginia)", - "toLocationType" : "AWS Region", - "usagetype" : "APN2-USE1-AWS-In-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "KR7FACVV38RW2UPT" : { - "sku" : "KR7FACVV38RW2UPT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.16xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "12000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RP3ZUBNA3QZ7JHU5" : { - "sku" : "RP3ZUBNA3QZ7JHU5", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Inbound", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "Amazon CloudFront", - "toLocationType" : "AWS Edge Location", - "usagetype" : "USE1-CloudFront-In-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "HFJ8JNVXU9Z88543" : { - "sku" : "HFJ8JNVXU9Z88543", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:g3.8xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "0", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "2", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7CWP6FB636NZ4578" : { - "sku" : "7CWP6FB636NZ4578", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "4 x 1.9 NVMe SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.8xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "932MRHTPXM73RZJM" : { - "sku" : "932MRHTPXM73RZJM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 0.475 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.large", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "425 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "8QZCKNB62EDMDT63" : { - "sku" : "8QZCKNB62EDMDT63", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1.32xlarge", - "operation" : "RunInstances", - "ecu" : "349", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "S7W47N2777Q8FW7S" : { - "sku" : "S7W47N2777Q8FW7S", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 80 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.xlarge", - "operation" : "RunInstances", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4DVV92GAW5VRCP2Y" : { - "sku" : "4DVV92GAW5VRCP2Y", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "244 GiB", - "storage" : "24 x 2000 HDD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:d2.8xlarge", - "operation" : "RunInstances:0006", - "ecu" : "116", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZXT5RPKSX2EYYGJQ" : { - "sku" : "ZXT5RPKSX2EYYGJQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "2 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.4xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XV4ERE3TBNCX96M9" : { - "sku" : "XV4ERE3TBNCX96M9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RGKA4HJHM5TUYE4N" : { - "sku" : "RGKA4HJHM5TUYE4N", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "15 GiB", - "storage" : "4 x 420", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m1.xlarge", - "operation" : "RunInstances:000g", - "ecu" : "8", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "34JBU9PXRB8RPKYX" : { - "sku" : "34JBU9PXRB8RPKYX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.micro", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.3 GHz", - "memory" : "1 GiB", - "storage" : "EBS only", - "networkPerformance" : "Low to Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.micro", - "operation" : "RunInstances:0202", - "ecu" : "Variable", - "normalizationSizeFactor" : "0.5", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "N24FYYRTPFBF3UTD" : { - "sku" : "N24FYYRTPFBF3UTD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 80 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.xlarge", - "operation" : "RunInstances:0010", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GS3NHNTTTS84KQSP" : { - "sku" : "GS3NHNTTTS84KQSP", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.16xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "179", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PT4B2E8NE5P3DWW9" : { - "sku" : "PT4B2E8NE5P3DWW9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "800 Mbps", - "ecu" : "Variable", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KQTYTC2BEFA3UQD7" : { - "sku" : "KQTYTC2BEFA3UQD7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "1 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.2xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CHD28PNGD4WRFZDU" : { - "sku" : "CHD28PNGD4WRFZDU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:p3.16xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "F3Z269CFGBSPE3TW" : { - "sku" : "F3Z269CFGBSPE3TW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 0.95 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "850 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UGAW5CN698QFXJS9" : { - "sku" : "UGAW5CN698QFXJS9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "2 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i2.2xlarge", - "operation" : "RunInstances:0006", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YU6MR6S9Z249VF2X" : { - "sku" : "YU6MR6S9Z249VF2X", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "244 GiB", - "storage" : "24 x 2000 HDD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:d2.8xlarge", - "operation" : "RunInstances:000g", - "ecu" : "116", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "B5C2VWZ3WKXH29GV" : { - "sku" : "B5C2VWZ3WKXH29GV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 800 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i2.xlarge", - "operation" : "RunInstances:0202", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UHDU9A8XN6ZW8X9D" : { - "sku" : "UHDU9A8XN6ZW8X9D", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 0.475 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.large", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "425 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "F89CDKSSQ2AVMRYW" : { - "sku" : "F89CDKSSQ2AVMRYW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "1 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:i3.2xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MTJM4P7NUQTD7TTY" : { - "sku" : "MTJM4P7NUQTD7TTY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "8 x 1.9 NVMe SSD", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.16xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XHTGRKAAUAXJEMXS" : { - "sku" : "XHTGRKAAUAXJEMXS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "244 GiB", - "storage" : "24 x 2000 HDD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:d2.8xlarge", - "operation" : "RunInstances:0010", - "ecu" : "116", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ECM8RSBXMC7F4WAS" : { - "sku" : "ECM8RSBXMC7F4WAS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "256 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.16xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "10000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AYWDVNJQKCDA6E7M" : { - "sku" : "AYWDVNJQKCDA6E7M", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "3.75 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:c4.large", - "operation" : "Hourly", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FQVPYK9V83HTQEXR" : { - "sku" : "FQVPYK9V83HTQEXR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.large", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "7.5 GiB", - "storage" : "2 x 420", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:m1.large", - "operation" : "RunInstances:0800", - "ecu" : "4", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VV5A7BNXRSZQJ6MG" : { - "sku" : "VV5A7BNXRSZQJ6MG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.large", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "400 Mbps", - "ecu" : "135", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "D5JBSPHEHDXDUWJR" : { - "sku" : "D5JBSPHEHDXDUWJR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "1 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.2xlarge", - "operation" : "RunInstances", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZDSU8EJ7X5PVHMBU" : { - "sku" : "ZDSU8EJ7X5PVHMBU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "1 x 120", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MGQXS8Z3TAKPMGUM" : { - "sku" : "MGQXS8Z3TAKPMGUM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.4xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "3000 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9HJ2ASV4W3SUZJEE" : { - "sku" : "9HJ2ASV4W3SUZJEE", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:c5.xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VMVVV7NDFCNYYB5X" : { - "sku" : "VMVVV7NDFCNYYB5X", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.medium", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "3.75 GiB", - "storage" : "1 x 4 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m3.medium", - "operation" : "RunInstances:000g", - "ecu" : "3", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Q39AEGEKTSQKK4D3" : { - "sku" : "Q39AEGEKTSQKK4D3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 0.475 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.large", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "425 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GK3JQYYZHNZAHQ66" : { - "sku" : "GK3JQYYZHNZAHQ66", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "1 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.2xlarge", - "operation" : "RunInstances:0202", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RGN4FERZ8NXYWRDE" : { - "sku" : "RGN4FERZ8NXYWRDE", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Inbound", - "fromLocation" : "US West (Oregon)", - "fromLocationType" : "AWS Region", - "toLocation" : "US East (N. Virginia)", - "toLocationType" : "AWS Region", - "usagetype" : "USW2-USE1-AWS-In-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "G78P4J48KHGMSX93" : { - "sku" : "G78P4J48KHGMSX93", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "1 x 240", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.2xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "23", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ENFQDU23RKAAQR4R" : { - "sku" : "ENFQDU23RKAAQR4R", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "7.5 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.xlarge", - "operation" : "RunInstances:0002", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KYPREJHGNMP6GVSA" : { - "sku" : "KYPREJHGNMP6GVSA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "3.75 GiB", - "storage" : "2 x 16 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.large", - "operation" : "RunInstances:0002", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KDHC3D74WA7UFHUU" : { - "sku" : "KDHC3D74WA7UFHUU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FMHPC62WVZ9EB44Z" : { - "sku" : "FMHPC62WVZ9EB44Z", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.16xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "179", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CVZN7PCT7EYTAUNH" : { - "sku" : "CVZN7PCT7EYTAUNH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t1.micro", - "currentGeneration" : "No", - "instanceFamily" : "Micro instances", - "vcpu" : "1", - "physicalProcessor" : "Variable", - "memory" : "0.613 GiB", - "storage" : "EBS only", - "networkPerformance" : "Very Low", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:t1.micro", - "operation" : "RunInstances:0800", - "ecu" : "26", - "normalizationSizeFactor" : "0.5", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EGD7PR7MXJNRRR5M" : { - "sku" : "EGD7PR7MXJNRRR5M", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:r3.large", - "operation" : "RunInstances:0800", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XG2EKBMRP7S226WS" : { - "sku" : "XG2EKBMRP7S226WS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "7.5 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.xlarge", - "operation" : "RunInstances:0102", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KX42WEB78EWUHU8Q" : { - "sku" : "KX42WEB78EWUHU8Q", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "64 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.4xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "53.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "38AX843AAXNB6F95" : { - "sku" : "38AX843AAXNB6F95", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "256 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.16xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "10000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TDGFBAHXRZKBVVEK" : { - "sku" : "TDGFBAHXRZKBVVEK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "2 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i2.2xlarge", - "operation" : "RunInstances:0102", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9Z7C9YEQ5U8P5GDZ" : { - "sku" : "9Z7C9YEQ5U8P5GDZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.4xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "M9HNUU75T45RPFC6" : { - "sku" : "M9HNUU75T45RPFC6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "7.5 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m3.large", - "operation" : "RunInstances:000g", - "ecu" : "6.5", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YB65BFK6JTN2AVK3" : { - "sku" : "YB65BFK6JTN2AVK3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "15 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.2xlarge", - "operation" : "RunInstances:0202", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MBQPYDJSY3BY84BH" : { - "sku" : "MBQPYDJSY3BY84BH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "3.75 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.large", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DUFUABZJFHZ5SWBJ" : { - "sku" : "DUFUABZJFHZ5SWBJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 0.475 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.large", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "425 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FWTR9MGD2XP654H6" : { - "sku" : "FWTR9MGD2XP654H6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "122 GiB", - "storage" : "12 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:d2.4xlarge", - "operation" : "RunInstances:000g", - "ecu" : "56", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "8DAD556FD5NBRFC3" : { - "sku" : "8DAD556FD5NBRFC3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.18xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "72", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "144 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.18xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "9000 Mbps", - "ecu" : "278", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "144", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PPV5Q7DEDQX5ZEAC" : { - "sku" : "PPV5Q7DEDQX5ZEAC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "768 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:p2.16xlarge", - "operation" : "RunInstances", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "16", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MZHHAF4YCR5JMQ9C" : { - "sku" : "MZHHAF4YCR5JMQ9C", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.8xlarge", - "operation" : "RunInstances:0006", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ENHSMTH854TGXCX2" : { - "sku" : "ENHSMTH854TGXCX2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "122 GiB", - "storage" : "12 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:d2.4xlarge", - "operation" : "Hourly", - "ecu" : "56", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MGX8XKF9UWBS8FMV" : { - "sku" : "MGX8XKF9UWBS8FMV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "256 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.16xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "10000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "W3VESHWCSRCUY7WY" : { - "sku" : "W3VESHWCSRCUY7WY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "34.2 GiB", - "storage" : "1 x 850", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "ebsOptimized" : "Yes", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:m2.2xlarge", - "operation" : "Hourly", - "ecu" : "13", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "N449RKU6MSAPKBDX" : { - "sku" : "N449RKU6MSAPKBDX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "64 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:m4.4xlarge", - "operation" : "Hourly", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "53.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UGMJ2EBAQ8A6XBDQ" : { - "sku" : "UGMJ2EBAQ8A6XBDQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cg1.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "GPU instance", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon x5570", - "memory" : "22.5 GiB", - "storage" : "2 x 840", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:cg1.4xlarge", - "operation" : "RunInstances:000g", - "ecu" : "33.5", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CDY4KCZ5UTDSGTGH" : { - "sku" : "CDY4KCZ5UTDSGTGH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "60 GiB", - "storage" : "2 x 120 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:g2.8xlarge", - "operation" : "RunInstances:0800", - "ecu" : "104", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HW84S2UTHHJ2R3UP" : { - "sku" : "HW84S2UTHHJ2R3UP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "3,904 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.32xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "340", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "WAC5A9V7VNYMBPDR" : { - "sku" : "WAC5A9V7VNYMBPDR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "2 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.4xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MNP9VWKTPKFPDQWK" : { - "sku" : "MNP9VWKTPKFPDQWK", - "productFamily" : "Dedicated Host", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "NA", - "storage" : "NA", - "networkPerformance" : "NA", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostUsage:r4", - "operation" : "RunInstances", - "ecu" : "NA", - "instanceCapacity16xlarge" : "1", - "instanceCapacity2xlarge" : "8", - "instanceCapacity4xlarge" : "4", - "instanceCapacity8xlarge" : "2", - "instanceCapacityLarge" : "32", - "instanceCapacityXlarge" : "16", - "normalizationSizeFactor" : "NA", - "physicalCores" : "36", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "R653AEFSC6MG23XK" : { - "sku" : "R653AEFSC6MG23XK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:r4.large", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "400 Mbps", - "ecu" : "135", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "K5M8XEVN93GNAS5F" : { - "sku" : "K5M8XEVN93GNAS5F", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:c5.2xlarge", - "operation" : "Hourly", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QYFXFTGTF3CQ3XKH" : { - "sku" : "QYFXFTGTF3CQ3XKH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.nano", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.3 GHz", - "memory" : "0.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "Low", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.nano", - "operation" : "RunInstances:0002", - "ecu" : "Variable", - "normalizationSizeFactor" : "0.25", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VJAJFF3S48Y4ZK6H" : { - "sku" : "VJAJFF3S48Y4ZK6H", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "15 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.2xlarge", - "operation" : "RunInstances:000g", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "WZM4T9SQXM7SF7ZF" : { - "sku" : "WZM4T9SQXM7SF7ZF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.4xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "G6RMHZ78J5823WFT" : { - "sku" : "G6RMHZ78J5823WFT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "1 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.2xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PNHWQABRRB4TBUYK" : { - "sku" : "PNHWQABRRB4TBUYK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "1 x 320 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.4xlarge", - "operation" : "RunInstances:0202", - "ecu" : "52", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QA82VPGUZGU7KXVD" : { - "sku" : "QA82VPGUZGU7KXVD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.18xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "72", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "144 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.18xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "9000 Mbps", - "ecu" : "278", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "144", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KTQ9XV2KF6MVX7PJ" : { - "sku" : "KTQ9XV2KF6MVX7PJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:g3.4xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "0", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KMP6N3WQVNDKNT4Q" : { - "sku" : "KMP6N3WQVNDKNT4Q", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "64 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.4xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "53.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XVYMD36W2Q986RBB" : { - "sku" : "XVYMD36W2Q986RBB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:c5.xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EJXKAGBARC5X44CV" : { - "sku" : "EJXKAGBARC5X44CV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.9xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "72 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.9xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "4500 Mbps", - "ecu" : "139", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "72", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "G92C9VZA7CRCHVRC" : { - "sku" : "G92C9VZA7CRCHVRC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "3.75 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.large", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KAMVJY7RYQ6K3M4A" : { - "sku" : "KAMVJY7RYQ6K3M4A", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "7.5 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m3.large", - "operation" : "RunInstances", - "ecu" : "6.5", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Q7KRGX9524EXCE9T" : { - "sku" : "Q7KRGX9524EXCE9T", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:g3.4xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "0", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AAWCKPS6CUV38XXA" : { - "sku" : "AAWCKPS6CUV38XXA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.4xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "3000 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NQZBX7B4JXMHGKCW" : { - "sku" : "NQZBX7B4JXMHGKCW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:g3.8xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "0", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "2", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VGM6EF7PXMSGNFP9" : { - "sku" : "VGM6EF7PXMSGNFP9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.2xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YZ89W4FUGD48VKWX" : { - "sku" : "YZ89W4FUGD48VKWX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "2 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "ebsOptimized" : "Yes", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:i2.2xlarge", - "operation" : "Hourly", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Q2WXMV82X42S7KB7" : { - "sku" : "Q2WXMV82X42S7KB7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "61 GiB", - "storage" : "6 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:d2.2xlarge", - "operation" : "RunInstances", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "D6XVUTGMGFQKNVF4" : { - "sku" : "D6XVUTGMGFQKNVF4", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.large", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "450 Mbps", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "A3AVPUXAD6N4JXA9" : { - "sku" : "A3AVPUXAD6N4JXA9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "1 x 120", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "C6M58F98AZ4YZW7U" : { - "sku" : "C6M58F98AZ4YZW7U", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "15 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.2xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FUD3JZ9ZMGTAMQWY" : { - "sku" : "FUD3JZ9ZMGTAMQWY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "60 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.8xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "132", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4AEAXDW4BC2SCXMG" : { - "sku" : "4AEAXDW4BC2SCXMG", - "productFamily" : "IP Address", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "group" : "ElasticIP:Remap", - "groupDescription" : "Elastic IP address remap", - "usagetype" : "ElasticIP:Remap", - "operation" : "", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9YKWHYHK8CJW6DNV" : { - "sku" : "9YKWHYHK8CJW6DNV", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Outbound", - "fromLocation" : "US West (N. California)", - "fromLocationType" : "AWS Region", - "toLocation" : "US East (N. Virginia)", - "toLocationType" : "AWS Region", - "usagetype" : "USW1-USE1-AWS-Out-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "Z3R6FENB6RXUUA7Z" : { - "sku" : "Z3R6FENB6RXUUA7Z", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "f1.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:f1.2xlarge", - "operation" : "RunInstances:000g", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VYJECTWWHZY57WXX" : { - "sku" : "VYJECTWWHZY57WXX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 800 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i2.xlarge", - "operation" : "RunInstances:0002", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SMK6B2NB8E64PZDV" : { - "sku" : "SMK6B2NB8E64PZDV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m3.xlarge", - "operation" : "RunInstances:0010", - "ecu" : "13", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CZEFYKJRS5KC69GA" : { - "sku" : "CZEFYKJRS5KC69GA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:p3.8xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "B7QBHF63SG76UXTS" : { - "sku" : "B7QBHF63SG76UXTS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "2 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:i3.4xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "E39WJ4NFW33589ZS" : { - "sku" : "E39WJ4NFW33589ZS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.2xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "1600 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FEE2HQXAD6YH9EBE" : { - "sku" : "FEE2HQXAD6YH9EBE", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "2 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:i2.2xlarge", - "operation" : "RunInstances:0800", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BV77CKND4GMG6JUT" : { - "sku" : "BV77CKND4GMG6JUT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.small", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "1.7 GiB", - "storage" : "1 x 160", - "networkPerformance" : "Low", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage", - "operation" : "RunInstances:000g", - "ecu" : "Variable", - "normalizationSizeFactor" : "1", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XUKM8UBN69JM7HAV" : { - "sku" : "XUKM8UBN69JM7HAV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.small", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.3 GHz", - "memory" : "2 GiB", - "storage" : "EBS only", - "networkPerformance" : "Low to Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.small", - "operation" : "RunInstances:0202", - "ecu" : "Variable", - "normalizationSizeFactor" : "1", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VZB4MZEV7XEAF6US" : { - "sku" : "VZB4MZEV7XEAF6US", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "f1.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:f1.2xlarge", - "operation" : "RunInstances", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "P76K65KFZQNPR4CV" : { - "sku" : "P76K65KFZQNPR4CV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.10xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "40", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "160 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:m4.10xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "80", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HWHBVKY9RQMK67F9" : { - "sku" : "HWHBVKY9RQMK67F9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.10xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "40", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "160 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.10xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "80", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7VJXKNKUWTYUUJDQ" : { - "sku" : "7VJXKNKUWTYUUJDQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "2 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.4xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "U9S9CX6UESN4T4P2" : { - "sku" : "U9S9CX6UESN4T4P2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 80 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.xlarge", - "operation" : "RunInstances:0102", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "X36E8MM7YF7JC38Y" : { - "sku" : "X36E8MM7YF7JC38Y", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "4 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:i2.4xlarge", - "operation" : "RunInstances:0800", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "K5J5FMBSS7S88WMV" : { - "sku" : "K5J5FMBSS7S88WMV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "30 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.4xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "D87JMYVFZXKJD58A" : { - "sku" : "D87JMYVFZXKJD58A", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "17.1 GiB", - "storage" : "1 x 420", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m2.xlarge", - "operation" : "RunInstances:000g", - "ecu" : "6.5", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "24XN5CF83RWVHY65" : { - "sku" : "24XN5CF83RWVHY65", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "7.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "J4UDT5BERQ92MHNK" : { - "sku" : "J4UDT5BERQ92MHNK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.2xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "38HK7GA2PMZ3QFP2" : { - "sku" : "38HK7GA2PMZ3QFP2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 80 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:r3.xlarge", - "operation" : "RunInstances:0800", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5QKUPV9RQN5Z98G7" : { - "sku" : "5QKUPV9RQN5Z98G7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "4 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i2.4xlarge", - "operation" : "RunInstances:0102", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9G23QA9CK3NU3BRY" : { - "sku" : "9G23QA9CK3NU3BRY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "60 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.8xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "132", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DZHU5BKVVZXEHEYR" : { - "sku" : "DZHU5BKVVZXEHEYR", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Inbound", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "Asia Pacific (Singapore)", - "toLocationType" : "AWS Region", - "usagetype" : "USE1-APS1-AWS-In-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "REEFNGM3CZ2DRRN8" : { - "sku" : "REEFNGM3CZ2DRRN8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "3.75 GiB", - "storage" : "2 x 16 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.large", - "operation" : "RunInstances:0010", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BJKH3VYGVEEXSNAH" : { - "sku" : "BJKH3VYGVEEXSNAH", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Inbound", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "Asia Pacific (Tokyo)", - "toLocationType" : "AWS Region", - "usagetype" : "USE1-APN1-AWS-In-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "VKZY87EJ294KXKWY" : { - "sku" : "VKZY87EJ294KXKWY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:p2.8xlarge", - "operation" : "RunInstances:0002", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YP22M5YTQ23BWN3Z" : { - "sku" : "YP22M5YTQ23BWN3Z", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 960", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.8xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "91", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4NP4X68DAN26TTQZ" : { - "sku" : "4NP4X68DAN26TTQZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "ebsOptimized" : "Yes", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:m3.xlarge", - "operation" : "Hourly", - "ecu" : "13", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JN3KK3Y79A6JZJNG" : { - "sku" : "JN3KK3Y79A6JZJNG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "3.75 GiB", - "storage" : "2 x 16 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.large", - "operation" : "RunInstances:000g", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BVM3C8VUB3CUM3XK" : { - "sku" : "BVM3C8VUB3CUM3XK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:c5.xlarge", - "operation" : "Hourly", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZXQF4FMZPFD962D7" : { - "sku" : "ZXQF4FMZPFD962D7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "7.5 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:m3.large", - "operation" : "RunInstances:0800", - "ecu" : "6.5", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MDKVAJXMJGZFDJUE" : { - "sku" : "MDKVAJXMJGZFDJUE", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "3.75 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.large", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "M7JDPTTFT6JUZ92Q" : { - "sku" : "M7JDPTTFT6JUZ92Q", - "productFamily" : "Dedicated Host", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "f1", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "memory" : "NA", - "storage" : "NA", - "networkPerformance" : "NA", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostUsage:f1", - "operation" : "RunInstances", - "ecu" : "NA", - "normalizationSizeFactor" : "NA", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RZRGZV8C4EBA9RFW" : { - "sku" : "RZRGZV8C4EBA9RFW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.16xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "12000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YSQ44UEJR3KC9UZ6" : { - "sku" : "YSQ44UEJR3KC9UZ6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 80 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.xlarge", - "operation" : "RunInstances:0002", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UMZX79C7JU2QYP8B" : { - "sku" : "UMZX79C7JU2QYP8B", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.16xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "179", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GC47ACDRS3ATDYYA" : { - "sku" : "GC47ACDRS3ATDYYA", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "1 x 480", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.4xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "47", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "42VGMPF8Y5PJ76X3" : { - "sku" : "42VGMPF8Y5PJ76X3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "7.5 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m3.large", - "operation" : "RunInstances:0202", - "ecu" : "6.5", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6NCC4FFQSR3WFGZZ" : { - "sku" : "6NCC4FFQSR3WFGZZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.medium", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "3.75 GiB", - "storage" : "1 x 410", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:m1.medium", - "operation" : "RunInstances:0800", - "ecu" : "2", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "S7XYZXB5D99A9Y8M" : { - "sku" : "S7XYZXB5D99A9Y8M", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "30 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.4xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "H9ZN7EUEHC2S7YH5" : { - "sku" : "H9ZN7EUEHC2S7YH5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.2xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FTHQYJFCP3DPSYCY" : { - "sku" : "FTHQYJFCP3DPSYCY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "64 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.4xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "53.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "N8CRYUBTUE378VHJ" : { - "sku" : "N8CRYUBTUE378VHJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m3.xlarge", - "operation" : "RunInstances:0202", - "ecu" : "13", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZEJBXPHEDWRE3FE8" : { - "sku" : "ZEJBXPHEDWRE3FE8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 0.95 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "850 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PQ44QRGZYQ87XPN2" : { - "sku" : "PQ44QRGZYQ87XPN2", - "productFamily" : "Load Balancer-Network", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "group" : "ELB:Balancer", - "groupDescription" : "LoadBalancer hourly usage by Network Load Balancer", - "usagetype" : "LoadBalancerUsage", - "operation" : "LoadBalancing:Network", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JH77489982R9B75M" : { - "sku" : "JH77489982R9B75M", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "256 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.16xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "10000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "T9EWKN7MGMP23VG7" : { - "sku" : "T9EWKN7MGMP23VG7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "f1.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "memory" : "976 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:f1.16xlarge", - "operation" : "RunInstances:0010", - "ecu" : "188", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EDJPFY8K3AW2AD23" : { - "sku" : "EDJPFY8K3AW2AD23", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Outbound", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "Asia Pacific (Tokyo)", - "toLocationType" : "AWS Region", - "usagetype" : "USE1-APN1-AWS-Out-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "H4SWC23NZ6GQ2RR9" : { - "sku" : "H4SWC23NZ6GQ2RR9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "800 Mbps", - "ecu" : "Variable", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "N7DSK6NF5W734PPK" : { - "sku" : "N7DSK6NF5W734PPK", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "1 x 480", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.4xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "47", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "P9DZZQU4NVYMBDKA" : { - "sku" : "P9DZZQU4NVYMBDKA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "3,904 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.32xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "340", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "B6SAEPP6NFMFCUU3" : { - "sku" : "B6SAEPP6NFMFCUU3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "7.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XJF7B8BASZ9KBAC4" : { - "sku" : "XJF7B8BASZ9KBAC4", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "8 x 1.9 NVMe SSD", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.16xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "C7XDWJNQJCHH2ZQT" : { - "sku" : "C7XDWJNQJCHH2ZQT", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Inbound", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "Asia Pacific (Seoul)", - "toLocationType" : "AWS Region", - "usagetype" : "USE1-APN2-AWS-In-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "8W89WZF8F2RMTQFG" : { - "sku" : "8W89WZF8F2RMTQFG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 0.95 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:i3.xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "850 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MBDEK77AM97QDASM" : { - "sku" : "MBDEK77AM97QDASM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.4xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "3000 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XFYWQUTA9A757A82" : { - "sku" : "XFYWQUTA9A757A82", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.9xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "72 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.9xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "4500 Mbps", - "ecu" : "139", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "72", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6MK3U3SATG93CSHN" : { - "sku" : "6MK3U3SATG93CSHN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "800 Mbps", - "ecu" : "Variable", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6A5H8V2W7HVVXSB7" : { - "sku" : "6A5H8V2W7HVVXSB7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:p3.8xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SDH7JHR69GKRHZE7" : { - "sku" : "SDH7JHR69GKRHZE7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "1 x 120", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FUJ2WGMJU3VK73ZN" : { - "sku" : "FUJ2WGMJU3VK73ZN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "61 GiB", - "storage" : "6 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:d2.2xlarge", - "operation" : "RunInstances:000g", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7ATPZU2G6QRQFTXN" : { - "sku" : "7ATPZU2G6QRQFTXN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "8 x 1.9 NVMe SSD", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.16xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "P5RN9BCZJT39XF2F" : { - "sku" : "P5RN9BCZJT39XF2F", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.large", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "7.5 GiB", - "storage" : "2 x 420", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:m1.large", - "operation" : "RunInstances:0800", - "ecu" : "4", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Q47MRW8XVZXWXPE6" : { - "sku" : "Q47MRW8XVZXWXPE6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.2xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "U35UAX5SUJURKCT4" : { - "sku" : "U35UAX5SUJURKCT4", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "1 x 240", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.2xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "23", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XCMMYCWQYMYT84XG" : { - "sku" : "XCMMYCWQYMYT84XG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "1 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.2xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TA7UVX8V5EKCNAFA" : { - "sku" : "TA7UVX8V5EKCNAFA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.18xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "72", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "144 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:c5.18xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "9000 Mbps", - "ecu" : "278", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "144", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7GUHNB4GSSZNUVY2" : { - "sku" : "7GUHNB4GSSZNUVY2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m3.2xlarge", - "operation" : "RunInstances:0202", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RSMWKBGGTAAEV4RH" : { - "sku" : "RSMWKBGGTAAEV4RH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:g3.8xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "0", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "2", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "URH8Q5S2UVXB3ZCQ" : { - "sku" : "URH8Q5S2UVXB3ZCQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "61 GiB", - "storage" : "6 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:d2.2xlarge", - "operation" : "RunInstances:0010", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SESWDZQB6R8ZGXJK" : { - "sku" : "SESWDZQB6R8ZGXJK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.18xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "72", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "144 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.18xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "9000 Mbps", - "ecu" : "278", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "144", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "K7CXCBYXYBR3P73G" : { - "sku" : "K7CXCBYXYBR3P73G", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "4 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:i2.4xlarge", - "operation" : "RunInstances:0800", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "V9ZFC4WMNYSWFHRQ" : { - "sku" : "V9ZFC4WMNYSWFHRQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "30.5 GiB", - "storage" : "3 x 2000 HDD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:d2.xlarge", - "operation" : "RunInstances:0002", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UEJ864RYGQM7EWS4" : { - "sku" : "UEJ864RYGQM7EWS4", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c1.medium", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "1.7 GiB", - "storage" : "1 x 350", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:c1.medium", - "operation" : "RunInstances:0800", - "ecu" : "2", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XGBGHMXAG9HECAGE" : { - "sku" : "XGBGHMXAG9HECAGE", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "244 GiB", - "storage" : "24 x 2000 HDD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:d2.8xlarge", - "operation" : "RunInstances:0002", - "ecu" : "116", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6AHJNWJK7N3CKJ6D" : { - "sku" : "6AHJNWJK7N3CKJ6D", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.9xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "72 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.9xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "4500 Mbps", - "ecu" : "139", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "72", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AYSR4P45C3BGQFUC" : { - "sku" : "AYSR4P45C3BGQFUC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PM7SF7GUUSEM94ZC" : { - "sku" : "PM7SF7GUUSEM94ZC", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Outbound", - "fromLocation" : "Asia Pacific (Sydney)", - "fromLocationType" : "AWS Region", - "toLocation" : "US East (N. Virginia)", - "toLocationType" : "AWS Region", - "usagetype" : "APS2-USE1-AWS-Out-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "8EJJ843PNMRKMSZC" : { - "sku" : "8EJJ843PNMRKMSZC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t1.micro", - "currentGeneration" : "No", - "instanceFamily" : "Micro instances", - "vcpu" : "1", - "physicalProcessor" : "Variable", - "memory" : "0.613 GiB", - "storage" : "EBS only", - "networkPerformance" : "Very Low", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t1.micro", - "operation" : "RunInstances:0202", - "ecu" : "26", - "normalizationSizeFactor" : "0.5", - "preInstalledSw" : "SQL Web", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SM2N6WCVK5EXAYJ9" : { - "sku" : "SM2N6WCVK5EXAYJ9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c1.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "7 GiB", - "storage" : "4 x 420", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c1.xlarge", - "operation" : "RunInstances:0002", - "ecu" : "20", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "K4QSF4H4QQGJSSK7" : { - "sku" : "K4QSF4H4QQGJSSK7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "768 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:p2.16xlarge", - "operation" : "RunInstances:0010", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "16", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "D9S2YAG2HUF7C3PC" : { - "sku" : "D9S2YAG2HUF7C3PC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.medium", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "3.75 GiB", - "storage" : "1 x 4 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m3.medium", - "operation" : "RunInstances", - "ecu" : "3", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YMRN5MTGT97CSMR5" : { - "sku" : "YMRN5MTGT97CSMR5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.medium", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "3.75 GiB", - "storage" : "1 x 4 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m3.medium", - "operation" : "RunInstances:000g", - "ecu" : "3", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DJHEPZFBQWFDH3PZ" : { - "sku" : "DJHEPZFBQWFDH3PZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "f1.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:f1.2xlarge", - "operation" : "RunInstances:0010", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9DK6BK45W6CJ9A5X" : { - "sku" : "9DK6BK45W6CJ9A5X", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "3.75 GiB", - "storage" : "2 x 16 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.large", - "operation" : "RunInstances:0010", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CXWQTSDJMF3AP864" : { - "sku" : "CXWQTSDJMF3AP864", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "f1.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:f1.2xlarge", - "operation" : "RunInstances:0010", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "B36TB4HQKCE3PSVX" : { - "sku" : "B36TB4HQKCE3PSVX", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Inbound", - "fromLocation" : "Asia Pacific (Mumbai)", - "fromLocationType" : "AWS Region", - "toLocation" : "US East (N. Virginia)", - "toLocationType" : "AWS Region", - "usagetype" : "APS3-USE1-AWS-In-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "X894WEFHKGGUVR52" : { - "sku" : "X894WEFHKGGUVR52", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.8xlarge", - "operation" : "RunInstances", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PA99ECAE74DADX5J" : { - "sku" : "PA99ECAE74DADX5J", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "30 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.4xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Q65EXUN6VVKKRUQ6" : { - "sku" : "Q65EXUN6VVKKRUQ6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:g3.4xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "0", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XP7U4PW6TG4NXAZS" : { - "sku" : "XP7U4PW6TG4NXAZS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.2xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GPTGBM5JNED7SKZW" : { - "sku" : "GPTGBM5JNED7SKZW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "2 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.4xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NCNT25B6JEQBVF9P" : { - "sku" : "NCNT25B6JEQBVF9P", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.large", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "400 Mbps", - "ecu" : "135", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5RDXQSEVV5YEEYS6" : { - "sku" : "5RDXQSEVV5YEEYS6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 80 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.xlarge", - "operation" : "RunInstances:000g", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "S6MPFZZYQH2JQDPJ" : { - "sku" : "S6MPFZZYQH2JQDPJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.18xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "72", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "144 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.18xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "9000 Mbps", - "ecu" : "278", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "144", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "T9G44MU9TAHQW69C" : { - "sku" : "T9G44MU9TAHQW69C", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "122 GiB", - "storage" : "12 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:d2.4xlarge", - "operation" : "RunInstances:0010", - "ecu" : "56", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NUMNVV4X9PJW42JH" : { - "sku" : "NUMNVV4X9PJW42JH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:p3.2xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZA8X9PK3KYPXZSEC" : { - "sku" : "ZA8X9PK3KYPXZSEC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:r3.8xlarge", - "operation" : "RunInstances:0800", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SUXHXAPA9KC5QKGF" : { - "sku" : "SUXHXAPA9KC5QKGF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "1 x 120", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VC8RXUKPQB42NMCF" : { - "sku" : "VC8RXUKPQB42NMCF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "3.75 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.large", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "T66DXZFUDZ8KW7UG" : { - "sku" : "T66DXZFUDZ8KW7UG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "60 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.8xlarge", - "operation" : "RunInstances:0010", - "ecu" : "108", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DRMGTKKSRFBNB2TD" : { - "sku" : "DRMGTKKSRFBNB2TD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 80 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.xlarge", - "operation" : "RunInstances:0010", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "V2ZSDPZ5ANEBUE99" : { - "sku" : "V2ZSDPZ5ANEBUE99", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c1.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "7 GiB", - "storage" : "4 x 420", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c1.xlarge", - "operation" : "RunInstances:000g", - "ecu" : "20", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QG8MPRPSA2WNM57J" : { - "sku" : "QG8MPRPSA2WNM57J", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "3.75 GiB", - "storage" : "2 x 16 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.large", - "operation" : "RunInstances:000g", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZG4JRPCC4VZQWHCQ" : { - "sku" : "ZG4JRPCC4VZQWHCQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "800 Mbps", - "ecu" : "Variable", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "26EZN83WFYW935BY" : { - "sku" : "26EZN83WFYW935BY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m3.2xlarge", - "operation" : "RunInstances:0010", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YRUVJDC2XTW5YRU3" : { - "sku" : "YRUVJDC2XTW5YRU3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "hs1.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "17", - "physicalProcessor" : "Intel Xeon E5-2650", - "clockSpeed" : "2 GHz", - "memory" : "117 GiB", - "storage" : "24 x 2000", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:hs1.8xlarge", - "operation" : "RunInstances:0202", - "ecu" : "35", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Web", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "433RA7YYXTQK4NPN" : { - "sku" : "433RA7YYXTQK4NPN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.large", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "450 Mbps", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Q7XJ7URGAZ8RWDX7" : { - "sku" : "Q7XJ7URGAZ8RWDX7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "hs1.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "17", - "physicalProcessor" : "Intel Xeon E5-2650", - "clockSpeed" : "2 GHz", - "memory" : "117 GiB", - "storage" : "24 x 2000", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:hs1.8xlarge", - "operation" : "RunInstances:000g", - "ecu" : "35", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5XKKG2W7WCHSD7VK" : { - "sku" : "5XKKG2W7WCHSD7VK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "1 x 120", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MGQK9YE98AEGCFNM" : { - "sku" : "MGQK9YE98AEGCFNM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "8 x 800 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i2.8xlarge", - "operation" : "RunInstances:0202", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FN8H3W6RA9EGGSDT" : { - "sku" : "FN8H3W6RA9EGGSDT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.4xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QW4FHUGEZYB74TW8" : { - "sku" : "QW4FHUGEZYB74TW8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.4xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VQ9NZ966GW3FJN84" : { - "sku" : "VQ9NZ966GW3FJN84", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "30 GiB", - "storage" : "2 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.4xlarge", - "operation" : "RunInstances:0102", - "ecu" : "55", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HU3VQPHQ79Z4SYU9" : { - "sku" : "HU3VQPHQ79Z4SYU9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "256 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.16xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "10000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AZ53HKVHTCDJVZZ5" : { - "sku" : "AZ53HKVHTCDJVZZ5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "30.5 GiB", - "storage" : "3 x 2000 HDD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:d2.xlarge", - "operation" : "RunInstances:000g", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2XTPEFBB8H3K4XFX" : { - "sku" : "2XTPEFBB8H3K4XFX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "30 GiB", - "storage" : "2 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.4xlarge", - "operation" : "RunInstances:0006", - "ecu" : "55", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VECCJJE6R85MP4ET" : { - "sku" : "VECCJJE6R85MP4ET", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "30.5 GiB", - "storage" : "3 x 2000 HDD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:d2.xlarge", - "operation" : "RunInstances:0800", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FDH7AF66PWQFC4ZX" : { - "sku" : "FDH7AF66PWQFC4ZX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:p3.16xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DRAB8D3XCC6DBS2S" : { - "sku" : "DRAB8D3XCC6DBS2S", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:p3.8xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "E3V2KVENAFSFNH7J" : { - "sku" : "E3V2KVENAFSFNH7J", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Inbound", - "fromLocation" : "Asia Pacific (Singapore)", - "fromLocationType" : "AWS Region", - "toLocation" : "US East (N. Virginia)", - "toLocationType" : "AWS Region", - "usagetype" : "APS1-USE1-AWS-In-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "M9PVZPV4MHCKEKFH" : { - "sku" : "M9PVZPV4MHCKEKFH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6UGXE3NSRP2KMUVK" : { - "sku" : "6UGXE3NSRP2KMUVK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "2 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i2.2xlarge", - "operation" : "RunInstances:0006", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PEZSCPW7MSBPD29U" : { - "sku" : "PEZSCPW7MSBPD29U", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.8xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "6000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9NMZ5HGTS2QHKR4V" : { - "sku" : "9NMZ5HGTS2QHKR4V", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.micro", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.3 GHz", - "memory" : "1 GiB", - "storage" : "EBS only", - "networkPerformance" : "Low to Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.micro", - "operation" : "RunInstances:000g", - "ecu" : "Variable", - "normalizationSizeFactor" : "0.5", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "785SBWPX67SS7DW5" : { - "sku" : "785SBWPX67SS7DW5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.2xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "984E6K3QWKATY2P9" : { - "sku" : "984E6K3QWKATY2P9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "4 x 1.9 NVMe SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.8xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2SN6CBPKJWMJK4W8" : { - "sku" : "2SN6CBPKJWMJK4W8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.18xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "72", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "144 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.18xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "9000 Mbps", - "ecu" : "278", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "144", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TYB68AE89KN6D5QZ" : { - "sku" : "TYB68AE89KN6D5QZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "3.75 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.large", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3P2M6AUE8TUFCQEM" : { - "sku" : "3P2M6AUE8TUFCQEM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "1 x 120", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MZHWDXN9MH59MH34" : { - "sku" : "MZHWDXN9MH59MH34", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "68.4 GiB", - "storage" : "2 x 840", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m2.4xlarge", - "operation" : "RunInstances:0202", - "ecu" : "26", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "X6RTWQ5CB38FVRKJ" : { - "sku" : "X6RTWQ5CB38FVRKJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 80 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.xlarge", - "operation" : "RunInstances:0002", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AN49H8NYXWHMRMMP" : { - "sku" : "AN49H8NYXWHMRMMP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "4 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:c5.large", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NPXGF3ETGHQX3T5Z" : { - "sku" : "NPXGF3ETGHQX3T5Z", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.medium", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "3.75 GiB", - "storage" : "1 x 410", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m1.medium", - "operation" : "RunInstances:000g", - "ecu" : "2", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "53K4ZCP8C6KM9F2C" : { - "sku" : "53K4ZCP8C6KM9F2C", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.large", - "operation" : "RunInstances:0002", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2WRUKSBG6TN3PSR2" : { - "sku" : "2WRUKSBG6TN3PSR2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "15 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:c4.2xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SN5UZ97VKJUAGEM5" : { - "sku" : "SN5UZ97VKJUAGEM5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "4 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.large", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RKQ5SSVTNQ4ZKZUB" : { - "sku" : "RKQ5SSVTNQ4ZKZUB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c1.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "7 GiB", - "storage" : "4 x 420", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:c1.xlarge", - "operation" : "RunInstances:0800", - "ecu" : "20", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZACFFWPPC668YV8A" : { - "sku" : "ZACFFWPPC668YV8A", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Inbound", - "fromLocation" : "Asia Pacific (Sydney)", - "fromLocationType" : "AWS Region", - "toLocation" : "US East (N. Virginia)", - "toLocationType" : "AWS Region", - "usagetype" : "APS2-USE1-AWS-In-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "PCMEF8PUJ2K4JEB5" : { - "sku" : "PCMEF8PUJ2K4JEB5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "68.4 GiB", - "storage" : "2 x 840", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m2.4xlarge", - "operation" : "RunInstances:0002", - "ecu" : "26", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "94FAEGR9U7X9TX7P" : { - "sku" : "94FAEGR9U7X9TX7P", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "7.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NSYRY4TWKKZQG94N" : { - "sku" : "NSYRY4TWKKZQG94N", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 0.475 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:i3.large", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "425 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BYRRQU7P3FHKBRZR" : { - "sku" : "BYRRQU7P3FHKBRZR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 0.95 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "850 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9VWFY2XSEFEGH78A" : { - "sku" : "9VWFY2XSEFEGH78A", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.4xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Q7J4FUMSN7DX2PHJ" : { - "sku" : "Q7J4FUMSN7DX2PHJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.large", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "400 Mbps", - "ecu" : "135", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SEEZD7FKBH2QXGYK" : { - "sku" : "SEEZD7FKBH2QXGYK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:p3.16xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "E5SXHSF9V8H3MYZD" : { - "sku" : "E5SXHSF9V8H3MYZD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cg1.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "GPU instance", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon x5570", - "memory" : "22.5 GiB", - "storage" : "2 x 840", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:cg1.4xlarge", - "operation" : "RunInstances:0800", - "ecu" : "33.5", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "D5X7AACFHDWJ6DC4" : { - "sku" : "D5X7AACFHDWJ6DC4", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:p3.16xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QKYEBPNSRB9NX7TU" : { - "sku" : "QKYEBPNSRB9NX7TU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:m3.2xlarge", - "operation" : "RunInstances:0800", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "J4T9ZF4AJ2DXE7SA" : { - "sku" : "J4T9ZF4AJ2DXE7SA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.10xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "40", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "160 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.10xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "80", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QNQNFXEZD4JV6K7J" : { - "sku" : "QNQNFXEZD4JV6K7J", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "hs1.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "17", - "physicalProcessor" : "Intel Xeon E5-2650", - "clockSpeed" : "2 GHz", - "memory" : "117 GiB", - "storage" : "24 x 2000", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:hs1.8xlarge", - "operation" : "RunInstances:0010", - "ecu" : "35", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FMZ94AJH8354XRME" : { - "sku" : "FMZ94AJH8354XRME", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "30.5 GiB", - "storage" : "3 x 2000 HDD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:d2.xlarge", - "operation" : "RunInstances:0010", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "H8WYYS7YF6HH44J2" : { - "sku" : "H8WYYS7YF6HH44J2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.medium", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.3 GHz", - "memory" : "4 GiB", - "storage" : "EBS only", - "networkPerformance" : "Low to Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.medium", - "operation" : "RunInstances:0010", - "ecu" : "Variable", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "8XV97FS637CF8UU5" : { - "sku" : "8XV97FS637CF8UU5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "64 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.4xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "53.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "8MH9R5J8CSVZTVPD" : { - "sku" : "8MH9R5J8CSVZTVPD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.large", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "450 Mbps", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5G5Y2SDTS4FP8GX7" : { - "sku" : "5G5Y2SDTS4FP8GX7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "8 x 800 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:i2.8xlarge", - "operation" : "RunInstances:0800", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5QR4TP35UWG5GTHK" : { - "sku" : "5QR4TP35UWG5GTHK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:c5.2xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EKP8GMP6PAVZ6VVY" : { - "sku" : "EKP8GMP6PAVZ6VVY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.10xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "40", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "160 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.10xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "80", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KWYNFA3ZNTZ3FWQA" : { - "sku" : "KWYNFA3ZNTZ3FWQA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "1 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.2xlarge", - "operation" : "RunInstances:000g", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SQ7KCWAADJKDQN9W" : { - "sku" : "SQ7KCWAADJKDQN9W", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "800 Mbps", - "ecu" : "Variable", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "S44SURMZ8AJWTZYH" : { - "sku" : "S44SURMZ8AJWTZYH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "61 GiB", - "storage" : "6 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:d2.2xlarge", - "operation" : "RunInstances:0002", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9HUMJZVBNYX2RZS7" : { - "sku" : "9HUMJZVBNYX2RZS7", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "1 x 240", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:x1e.2xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "23", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "N4AWRPYC2F4YT3WW" : { - "sku" : "N4AWRPYC2F4YT3WW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cr1.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670", - "memory" : "244 GiB", - "storage" : "2 x 120 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:cr1.8xlarge", - "operation" : "RunInstances:0010", - "ecu" : "88", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5XHJPTC7E6NA5KGC" : { - "sku" : "5XHJPTC7E6NA5KGC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "8 x 800 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:i2.8xlarge", - "operation" : "RunInstances:0800", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7HB6PUR4SRPNKUUK" : { - "sku" : "7HB6PUR4SRPNKUUK", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Inbound", - "fromLocation" : "South America (Sao Paulo)", - "fromLocationType" : "AWS Region", - "toLocation" : "US East (N. Virginia)", - "toLocationType" : "AWS Region", - "usagetype" : "SAE1-USE1-AWS-In-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "W832TY8QSXWJMAAY" : { - "sku" : "W832TY8QSXWJMAAY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:r4.8xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "6000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "8VNJC4YN7JDXVN8W" : { - "sku" : "8VNJC4YN7JDXVN8W", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.4xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "3000 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "59S5R83GFPUAGVR5" : { - "sku" : "59S5R83GFPUAGVR5", - "productFamily" : "NAT Gateway", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "group" : "NGW:NatGateway", - "groupDescription" : "Charge for per GB data processed by NatGateways", - "usagetype" : "NatGateway-Bytes", - "operation" : "NatGateway", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TF7VKDXQVWSCQYBK" : { - "sku" : "TF7VKDXQVWSCQYBK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.nano", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.3 GHz", - "memory" : "0.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "Low", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.nano", - "operation" : "RunInstances:000g", - "ecu" : "Variable", - "normalizationSizeFactor" : "0.25", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6UG463TFGD9X4M5A" : { - "sku" : "6UG463TFGD9X4M5A", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:m3.xlarge", - "operation" : "RunInstances:0800", - "ecu" : "13", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "57XGZG7W7W67682J" : { - "sku" : "57XGZG7W7W67682J", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.large", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "450 Mbps", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DFF53P772NKJNMUW" : { - "sku" : "DFF53P772NKJNMUW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.10xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "40", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "160 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.10xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "80", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6B92TZ937DKQEP93" : { - "sku" : "6B92TZ937DKQEP93", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Y4XD9NA45RXPDXY7" : { - "sku" : "Y4XD9NA45RXPDXY7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "15 GiB", - "storage" : "1 x 60 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:g2.2xlarge", - "operation" : "RunInstances:000g", - "ecu" : "26", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "V7ZPECCN7AX2ME3K" : { - "sku" : "V7ZPECCN7AX2ME3K", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.small", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.3 GHz", - "memory" : "2 GiB", - "storage" : "EBS only", - "networkPerformance" : "Low to Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.small", - "operation" : "RunInstances:0002", - "ecu" : "Variable", - "normalizationSizeFactor" : "1", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "H6JT2V67UAFS4Z2Y" : { - "sku" : "H6JT2V67UAFS4Z2Y", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cc2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670", - "clockSpeed" : "2.6 GHz", - "memory" : "60.5 GiB", - "storage" : "4 x 840", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:cc2.8xlarge", - "operation" : "RunInstances:0202", - "ecu" : "88", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Web", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DE3QV5WMKKGZRFHG" : { - "sku" : "DE3QV5WMKKGZRFHG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "60 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.8xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "132", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "R6T5AVAY3H4NQFQ4" : { - "sku" : "R6T5AVAY3H4NQFQ4", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.2xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "1600 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BFTE24AMMM45YVGQ" : { - "sku" : "BFTE24AMMM45YVGQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "30 GiB", - "storage" : "2 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.4xlarge", - "operation" : "RunInstances", - "ecu" : "55", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9RK78KZK2N3R66EZ" : { - "sku" : "9RK78KZK2N3R66EZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.large", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "7.5 GiB", - "storage" : "2 x 420", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m1.large", - "operation" : "RunInstances:0002", - "ecu" : "4", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZBVHTEDA4X8G6DPB" : { - "sku" : "ZBVHTEDA4X8G6DPB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "1 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.2xlarge", - "operation" : "RunInstances:0202", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2JE46CBZYW8NSTTW" : { - "sku" : "2JE46CBZYW8NSTTW", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Inbound", - "fromLocation" : "Canada (Central)", - "fromLocationType" : "AWS Region", - "toLocation" : "US East (N. Virginia)", - "toLocationType" : "AWS Region", - "usagetype" : "CAN1-USE1-AWS-In-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "PZAZYRGRJEARRZEW" : { - "sku" : "PZAZYRGRJEARRZEW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "1 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.2xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6FWXGNKA63Z8BMCH" : { - "sku" : "6FWXGNKA63Z8BMCH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cc2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670", - "clockSpeed" : "2.6 GHz", - "memory" : "60.5 GiB", - "storage" : "4 x 840", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:cc2.8xlarge", - "operation" : "RunInstances:0010", - "ecu" : "88", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "46RTKB3PY2USZ3JU" : { - "sku" : "46RTKB3PY2USZ3JU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:c5.4xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UKDR4WHMWWJ5CSDR" : { - "sku" : "UKDR4WHMWWJ5CSDR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.0 GHz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Low to Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:t2.large", - "operation" : "RunInstances:0800", - "ecu" : "Variable", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Y44NT84DJSFFW437" : { - "sku" : "Y44NT84DJSFFW437", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AMRJDA6P539Y5Q3X" : { - "sku" : "AMRJDA6P539Y5Q3X", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.2xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VERRUXNQ656VFYCC" : { - "sku" : "VERRUXNQ656VFYCC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.medium", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.3 GHz", - "memory" : "4 GiB", - "storage" : "EBS only", - "networkPerformance" : "Low to Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.medium", - "operation" : "RunInstances:0202", - "ecu" : "Variable", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7MS6E9W2YWKJZRX5" : { - "sku" : "7MS6E9W2YWKJZRX5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "7.5 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.xlarge", - "operation" : "RunInstances:0002", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6FVWSFZ39BEVJUVW" : { - "sku" : "6FVWSFZ39BEVJUVW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.large", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "400 Mbps", - "ecu" : "135", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YJAJYU26JMTDCU86" : { - "sku" : "YJAJYU26JMTDCU86", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "4 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.large", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TX7H54J52X2GTX6C" : { - "sku" : "TX7H54J52X2GTX6C", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.large", - "operation" : "RunInstances:000g", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PQSYKZPSZAFEZVK7" : { - "sku" : "PQSYKZPSZAFEZVK7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.medium", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "3.75 GiB", - "storage" : "1 x 4 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m3.medium", - "operation" : "RunInstances:0002", - "ecu" : "3", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XGC6ECJC7S6BUMKQ" : { - "sku" : "XGC6ECJC7S6BUMKQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "4 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:c5.large", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BA8XB9J4UJVPU6DS" : { - "sku" : "BA8XB9J4UJVPU6DS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:r4.xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "800 Mbps", - "ecu" : "Variable", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TZ5DAMR52CPHF2F6" : { - "sku" : "TZ5DAMR52CPHF2F6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7APFVGHQXR9QGJ23" : { - "sku" : "7APFVGHQXR9QGJ23", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:p3.16xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "W8BNBRKMXW7VU4BK" : { - "sku" : "W8BNBRKMXW7VU4BK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "15 GiB", - "storage" : "1 x 60 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:g2.2xlarge", - "operation" : "RunInstances:0010", - "ecu" : "26", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3EFSVCMF7TVMQPZ3" : { - "sku" : "3EFSVCMF7TVMQPZ3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "60 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.8xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "132", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PNUBVW4CPC8XA46W" : { - "sku" : "PNUBVW4CPC8XA46W", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "IntraRegion", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "US East (N. Virginia)", - "toLocationType" : "AWS Region", - "usagetype" : "DataTransfer-Regional-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "CNBCS3T6ZYW47Y8W" : { - "sku" : "CNBCS3T6ZYW47Y8W", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "8 x 1.9 NVMe SSD", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.16xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "V7TY6J97RFNXWD8V" : { - "sku" : "V7TY6J97RFNXWD8V", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:p3.2xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SG2J8TRQ57JQYCRA" : { - "sku" : "SG2J8TRQ57JQYCRA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "7.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "332GEN3V5S3FTKZJ" : { - "sku" : "332GEN3V5S3FTKZJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m3.xlarge", - "operation" : "RunInstances:000g", - "ecu" : "13", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "G9R9MZY25V8QGW6J" : { - "sku" : "G9R9MZY25V8QGW6J", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "15 GiB", - "storage" : "1 x 60 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:g2.2xlarge", - "operation" : "RunInstances:0202", - "ecu" : "26", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KR92PJED8B49G7EJ" : { - "sku" : "KR92PJED8B49G7EJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "60 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.8xlarge", - "operation" : "RunInstances:0002", - "ecu" : "108", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VA8Q43DVPX4YV6NG" : { - "sku" : "VA8Q43DVPX4YV6NG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.small", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.3 GHz", - "memory" : "2 GiB", - "storage" : "EBS only", - "networkPerformance" : "Low to Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.small", - "operation" : "RunInstances", - "ecu" : "Variable", - "normalizationSizeFactor" : "1", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CD2SCABAVGYKKGRQ" : { - "sku" : "CD2SCABAVGYKKGRQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cg1.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "GPU instance", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon x5570", - "memory" : "22.5 GiB", - "storage" : "2 x 840", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:cg1.4xlarge", - "operation" : "RunInstances:000g", - "ecu" : "33.5", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XBYJG3BUDTPN8NB9" : { - "sku" : "XBYJG3BUDTPN8NB9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cc2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670", - "clockSpeed" : "2.6 GHz", - "memory" : "60.5 GiB", - "storage" : "4 x 840", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:cc2.8xlarge", - "operation" : "RunInstances:0002", - "ecu" : "88", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DFJU7MKX4S9ZU689" : { - "sku" : "DFJU7MKX4S9ZU689", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "3,904 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.32xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "340", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4NYBH5BWKQ2W5ZQ5" : { - "sku" : "4NYBH5BWKQ2W5ZQ5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.medium", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "3.75 GiB", - "storage" : "1 x 4 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:m3.medium", - "operation" : "RunInstances:0800", - "ecu" : "3", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NARXYND9H74FTC7A" : { - "sku" : "NARXYND9H74FTC7A", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "8 x 800 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i2.8xlarge", - "operation" : "RunInstances", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XTNCFY9Y77D7WC9Y" : { - "sku" : "XTNCFY9Y77D7WC9Y", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YM5RNCFKGBB4T3QM" : { - "sku" : "YM5RNCFKGBB4T3QM", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "1 x 480", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.4xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "47", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RSN2RZ8JSX98HFVM" : { - "sku" : "RSN2RZ8JSX98HFVM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "1 x 320 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.4xlarge", - "operation" : "RunInstances", - "ecu" : "52", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QAMMQS9R5WC8PTN7" : { - "sku" : "QAMMQS9R5WC8PTN7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "8 x 1.9 NVMe SSD", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.16xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9M4946BDX6NVDS6R" : { - "sku" : "9M4946BDX6NVDS6R", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.4xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YS8Z2EM6AZQYWEY8" : { - "sku" : "YS8Z2EM6AZQYWEY8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "15 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.2xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "B8SBWVGGW2W6MUVG" : { - "sku" : "B8SBWVGGW2W6MUVG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "7.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BWPP6VPRP5NECMAA" : { - "sku" : "BWPP6VPRP5NECMAA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.0 GHz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.2xlarge", - "operation" : "RunInstances:000g", - "ecu" : "Variable", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FXDDR8N72HV8JWMF" : { - "sku" : "FXDDR8N72HV8JWMF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:p3.16xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "USYT2WUJN73X3QSZ" : { - "sku" : "USYT2WUJN73X3QSZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "60 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.8xlarge", - "operation" : "RunInstances:0006", - "ecu" : "108", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9QAKNX2JRT8D5B76" : { - "sku" : "9QAKNX2JRT8D5B76", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 80 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:r3.xlarge", - "operation" : "RunInstances:0800", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4QZ87TMBCWWNPSG4" : { - "sku" : "4QZ87TMBCWWNPSG4", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:p2.xlarge", - "operation" : "RunInstances:0800", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KNZCWW7PZRYSMJ6S" : { - "sku" : "KNZCWW7PZRYSMJ6S", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 0.475 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.large", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "425 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BZ7GFWTXT5ST7P4K" : { - "sku" : "BZ7GFWTXT5ST7P4K", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:r4.4xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "3000 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YA3C3GQF9SK75Y3V" : { - "sku" : "YA3C3GQF9SK75Y3V", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "800 Mbps", - "ecu" : "Variable", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TGH4GCMRQQNEDGCJ" : { - "sku" : "TGH4GCMRQQNEDGCJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.18xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "72", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "144 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.18xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "9000 Mbps", - "ecu" : "278", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "144", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SA3SBP2T8HCQWD6V" : { - "sku" : "SA3SBP2T8HCQWD6V", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.9xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "72 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.9xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "4500 Mbps", - "ecu" : "139", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "72", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TS9C3QP757SZ6Y65" : { - "sku" : "TS9C3QP757SZ6Y65", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.2xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "1600 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "G6V333UDG5YNV6DP" : { - "sku" : "G6V333UDG5YNV6DP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m3.2xlarge", - "operation" : "RunInstances:0102", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MR5MW694BZTU3QD6" : { - "sku" : "MR5MW694BZTU3QD6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1.16xlarge", - "operation" : "RunInstances:0102", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Ent", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MHMTSP3T6M2NU383" : { - "sku" : "MHMTSP3T6M2NU383", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:p3.16xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZMGP8SNR2VJEV8FJ" : { - "sku" : "ZMGP8SNR2VJEV8FJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.8xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "6000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "R6ZE4UJ2C8B36SBY" : { - "sku" : "R6ZE4UJ2C8B36SBY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c1.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "7 GiB", - "storage" : "4 x 420", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c1.xlarge", - "operation" : "RunInstances:0006", - "ecu" : "20", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GVHWDK4ADFF5B3WR" : { - "sku" : "GVHWDK4ADFF5B3WR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cr1.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670", - "memory" : "244 GiB", - "storage" : "2 x 120 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:cr1.8xlarge", - "operation" : "RunInstances:0010", - "ecu" : "88", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YW5M3UMGGY95EQKF" : { - "sku" : "YW5M3UMGGY95EQKF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m3.xlarge", - "operation" : "RunInstances", - "ecu" : "13", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CHYHEFYUM8H6G965" : { - "sku" : "CHYHEFYUM8H6G965", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "1 x 240", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:x1e.2xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "23", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5WSKPWBZAEKKQ6RB" : { - "sku" : "5WSKPWBZAEKKQ6RB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "1 x 320 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.4xlarge", - "operation" : "RunInstances:000g", - "ecu" : "52", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JC8C66GWV5KYJPAD" : { - "sku" : "JC8C66GWV5KYJPAD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "4 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i2.4xlarge", - "operation" : "RunInstances:0002", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DS6NATW2S9Q4UKZS" : { - "sku" : "DS6NATW2S9Q4UKZS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c1.medium", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "1.7 GiB", - "storage" : "1 x 350", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c1.medium", - "operation" : "RunInstances:0010", - "ecu" : "2", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MK3NYJPZ3RCV7QNY" : { - "sku" : "MK3NYJPZ3RCV7QNY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6SWWQPFNK6JG5AHS" : { - "sku" : "6SWWQPFNK6JG5AHS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m3.2xlarge", - "operation" : "RunInstances:0006", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YKQEND52YE639ZHB" : { - "sku" : "YKQEND52YE639ZHB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.16xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "12000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "68TFKFM9J33ZZB97" : { - "sku" : "68TFKFM9J33ZZB97", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.4xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "3000 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5B3GT4NNY7ZCKUY7" : { - "sku" : "5B3GT4NNY7ZCKUY7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "3,904 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.32xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "340", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PPNHZGKEWXG9QZV3" : { - "sku" : "PPNHZGKEWXG9QZV3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "256 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.16xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "10000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "T87WP8AU8KNBMRYM" : { - "sku" : "T87WP8AU8KNBMRYM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "2 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i2.2xlarge", - "operation" : "RunInstances:0102", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RSKUKWVCVPG8AZB5" : { - "sku" : "RSKUKWVCVPG8AZB5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "30.5 GiB", - "storage" : "3 x 2000 HDD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:d2.xlarge", - "operation" : "RunInstances", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TRGMRGV2R47AP6CQ" : { - "sku" : "TRGMRGV2R47AP6CQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:g3.4xlarge", - "operation" : "Hourly", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "0", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "95TPTPM37YTV8B2P" : { - "sku" : "95TPTPM37YTV8B2P", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "30 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.4xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XP36THJWHRJ7JUHM" : { - "sku" : "XP36THJWHRJ7JUHM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "1 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.2xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MSQ5AMG3XXYG534Q" : { - "sku" : "MSQ5AMG3XXYG534Q", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:p3.2xlarge", - "operation" : "Hourly", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PEEKBP32QZKKEGWF" : { - "sku" : "PEEKBP32QZKKEGWF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "8 x 1.9 NVMe SSD", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.16xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MAVGNUA5DQ5SM9C7" : { - "sku" : "MAVGNUA5DQ5SM9C7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m3.xlarge", - "operation" : "RunInstances:000g", - "ecu" : "13", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DMG3Z3PAUFNBRWWT" : { - "sku" : "DMG3Z3PAUFNBRWWT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "3.75 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.large", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "A5V9YQVUZMY5XA83" : { - "sku" : "A5V9YQVUZMY5XA83", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.2xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "J7QRRNJ6GRX8D5SH" : { - "sku" : "J7QRRNJ6GRX8D5SH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m3.xlarge", - "operation" : "RunInstances:0006", - "ecu" : "13", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MV64DNBJGVHEPRZX" : { - "sku" : "MV64DNBJGVHEPRZX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.4xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "3000 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3X6C8WE2N2TR8BTN" : { - "sku" : "3X6C8WE2N2TR8BTN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:m4.large", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "450 Mbps", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EXEUENAPGQHAQGBS" : { - "sku" : "EXEUENAPGQHAQGBS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "15 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:c4.2xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5SZ449G4YHET8NEX" : { - "sku" : "5SZ449G4YHET8NEX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.medium", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "3.75 GiB", - "storage" : "1 x 4 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m3.medium", - "operation" : "RunInstances", - "ecu" : "3", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "S6WMG2PUJJT43MCU" : { - "sku" : "S6WMG2PUJJT43MCU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1.16xlarge", - "operation" : "RunInstances", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BJMX7R52F3VNFNEH" : { - "sku" : "BJMX7R52F3VNFNEH", - "productFamily" : "Load Balancer-Application", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "group" : "ELB:Balancer", - "groupDescription" : "LoadBalancer hourly usage by Application Load Balancer", - "usagetype" : "LoadBalancerUsage", - "operation" : "LoadBalancing:Application", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UFNYR85GSNMJPAWG" : { - "sku" : "UFNYR85GSNMJPAWG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "4 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.large", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TB4MYGC7MSS5DCKM" : { - "sku" : "TB4MYGC7MSS5DCKM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.2xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GBSWCG32FV9G4PVY" : { - "sku" : "GBSWCG32FV9G4PVY", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Outbound", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "US East (Ohio)", - "toLocationType" : "AWS Region", - "usagetype" : "USE1-USE2-AWS-Out-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "58HUPRT96M5H8VUW" : { - "sku" : "58HUPRT96M5H8VUW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:p2.xlarge", - "operation" : "RunInstances", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EKUJM8CMFGA8AN48" : { - "sku" : "EKUJM8CMFGA8AN48", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.4xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2HFR6K6Q9KU8Q5YK" : { - "sku" : "2HFR6K6Q9KU8Q5YK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.large", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "400 Mbps", - "ecu" : "135", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UHM8B3D5UY4TJ8DU" : { - "sku" : "UHM8B3D5UY4TJ8DU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.2xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "1600 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UKZHD7X8AUPRMNQ7" : { - "sku" : "UKZHD7X8AUPRMNQ7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "7.5 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:c3.xlarge", - "operation" : "RunInstances:0800", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YGU2QZY8VPP94FSR" : { - "sku" : "YGU2QZY8VPP94FSR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "7.5 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m3.large", - "operation" : "RunInstances", - "ecu" : "6.5", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QPKCG2B2XC9C53GT" : { - "sku" : "QPKCG2B2XC9C53GT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.2xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DXZA4TZJFG2BW52U" : { - "sku" : "DXZA4TZJFG2BW52U", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.16xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "179", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YC7GJ8CDWFPWMK89" : { - "sku" : "YC7GJ8CDWFPWMK89", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.10xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "40", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "160 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.10xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "80", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6GASB9Z3J6ZHWKU5" : { - "sku" : "6GASB9Z3J6ZHWKU5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cr1.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670", - "memory" : "244 GiB", - "storage" : "2 x 120 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:cr1.8xlarge", - "operation" : "RunInstances:0002", - "ecu" : "88", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6N5AHFKQR9A49BXT" : { - "sku" : "6N5AHFKQR9A49BXT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:p2.8xlarge", - "operation" : "RunInstances:0102", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4EHZWPPGG7Y9CC73" : { - "sku" : "4EHZWPPGG7Y9CC73", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "15 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.2xlarge", - "operation" : "RunInstances:000g", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SDXF3BRYZZTH5K7Q" : { - "sku" : "SDXF3BRYZZTH5K7Q", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "3,904 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.32xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "340", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YBUQUQQV5SHSS34G" : { - "sku" : "YBUQUQQV5SHSS34G", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.2xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "WMZMV9VFMDY39S43" : { - "sku" : "WMZMV9VFMDY39S43", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "768 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:p2.16xlarge", - "operation" : "RunInstances:0002", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "16", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4Q997J8DQYG2634Z" : { - "sku" : "4Q997J8DQYG2634Z", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "68.4 GiB", - "storage" : "2 x 840", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m2.4xlarge", - "operation" : "RunInstances:0006", - "ecu" : "26", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "M9RJASMMSC92RM2J" : { - "sku" : "M9RJASMMSC92RM2J", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "7.5 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:m3.large", - "operation" : "RunInstances:0800", - "ecu" : "6.5", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "T3YPSF6NJ69JWWNM" : { - "sku" : "T3YPSF6NJ69JWWNM", - "productFamily" : "Load Balancer", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "group" : "ELB:Balancer", - "groupDescription" : "Standard Elastic Load Balancer", - "usagetype" : "LoadBalancerUsage", - "operation" : "LoadBalancing", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6CNJHBFSUT74HD2K" : { - "sku" : "6CNJHBFSUT74HD2K", - "productFamily" : "Load Balancer-Network", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "group" : "ELB:Balancer", - "groupDescription" : "Used Network load balancer capacity units-hr", - "usagetype" : "LCUUsage", - "operation" : "LoadBalancing:Network", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "M57UMFD3S77UZWZ3" : { - "sku" : "M57UMFD3S77UZWZ3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1.16xlarge", - "operation" : "RunInstances:0202", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Web", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VZ59SXRTT8GCK9N3" : { - "sku" : "VZ59SXRTT8GCK9N3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m3.2xlarge", - "operation" : "RunInstances:0010", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3EADMJNNJS3U42HF" : { - "sku" : "3EADMJNNJS3U42HF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:c5.2xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "V6MQGHYV9HMHTNFE" : { - "sku" : "V6MQGHYV9HMHTNFE", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "17.1 GiB", - "storage" : "1 x 420", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m2.xlarge", - "operation" : "RunInstances:0010", - "ecu" : "6.5", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QHEP8CAE9HJS33WN" : { - "sku" : "QHEP8CAE9HJS33WN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "15 GiB", - "storage" : "1 x 60 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:g2.2xlarge", - "operation" : "RunInstances:000g", - "ecu" : "26", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YP5VZWVE6N228WH8" : { - "sku" : "YP5VZWVE6N228WH8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1.32xlarge", - "operation" : "RunInstances:0006", - "ecu" : "349", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "SQL Std", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TNE6USZS8RUFQW28" : { - "sku" : "TNE6USZS8RUFQW28", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 800 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i2.xlarge", - "operation" : "RunInstances:000g", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CZ3H3JJEPGJZKTU9" : { - "sku" : "CZ3H3JJEPGJZKTU9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:r3.8xlarge", - "operation" : "RunInstances:0800", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "8QAR2NUMVX46Z9J5" : { - "sku" : "8QAR2NUMVX46Z9J5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "1 x 320 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.4xlarge", - "operation" : "RunInstances:0202", - "ecu" : "52", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VN3PHQUB842ETS6X" : { - "sku" : "VN3PHQUB842ETS6X", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "4 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i2.4xlarge", - "operation" : "RunInstances:000g", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ATP45XBTJS5DKRMF" : { - "sku" : "ATP45XBTJS5DKRMF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "60 GiB", - "storage" : "2 x 120 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:g2.8xlarge", - "operation" : "RunInstances:0006", - "ecu" : "104", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XFJWBADTXUKBRGTC" : { - "sku" : "XFJWBADTXUKBRGTC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.10xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "40", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "160 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.10xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "80", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3RTZAQ64564SNQ7T" : { - "sku" : "3RTZAQ64564SNQ7T", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.9xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "72 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.9xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "4500 Mbps", - "ecu" : "139", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "72", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "G6HSPJYKGG7P9NJR" : { - "sku" : "G6HSPJYKGG7P9NJR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "7.5 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.xlarge", - "operation" : "RunInstances:0010", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "783XD5AJCNJSV3H7" : { - "sku" : "783XD5AJCNJSV3H7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cr1.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670", - "memory" : "244 GiB", - "storage" : "2 x 120 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:cr1.8xlarge", - "operation" : "RunInstances:0002", - "ecu" : "88", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SSTT3HA4W7HHVR38" : { - "sku" : "SSTT3HA4W7HHVR38", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cc2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670", - "clockSpeed" : "2.6 GHz", - "memory" : "60.5 GiB", - "storage" : "4 x 840", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:cc2.8xlarge", - "operation" : "RunInstances:0006", - "ecu" : "88", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Std", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5E4JKRKRN35X4R5X" : { - "sku" : "5E4JKRKRN35X4R5X", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.9xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "72 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.9xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "4500 Mbps", - "ecu" : "139", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "72", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "H9KMFFHRW3R5NVSJ" : { - "sku" : "H9KMFFHRW3R5NVSJ", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 960", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.8xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "91", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UKGSFRXY8AQU42DQ" : { - "sku" : "UKGSFRXY8AQU42DQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.4xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4WS6PX29WVZCPFGT" : { - "sku" : "4WS6PX29WVZCPFGT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "17.1 GiB", - "storage" : "1 x 420", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:m2.xlarge", - "operation" : "RunInstances:0800", - "ecu" : "6.5", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3A65FUFDYWGRUUNU" : { - "sku" : "3A65FUFDYWGRUUNU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "1 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:i3.2xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TUK52HKAU24AGZAB" : { - "sku" : "TUK52HKAU24AGZAB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "3.75 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.large", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "M3C347MWQ8PPQ83Q" : { - "sku" : "M3C347MWQ8PPQ83Q", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "15 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.2xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Z35WNPQJZZCRRJYH" : { - "sku" : "Z35WNPQJZZCRRJYH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "34.2 GiB", - "storage" : "1 x 850", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m2.2xlarge", - "operation" : "RunInstances:0002", - "ecu" : "13", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SNK426EAU6XEHU6F" : { - "sku" : "SNK426EAU6XEHU6F", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:m4.xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NQXBP3Y49DB4QUFW" : { - "sku" : "NQXBP3Y49DB4QUFW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "1 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.2xlarge", - "operation" : "RunInstances:0006", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4EJ6YKYP3U22GDYZ" : { - "sku" : "4EJ6YKYP3U22GDYZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.9xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "72 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.9xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "4500 Mbps", - "ecu" : "139", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "72", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "63ADXUYM8Q7RHXYU" : { - "sku" : "63ADXUYM8Q7RHXYU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "244 GiB", - "storage" : "24 x 2000 HDD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:d2.8xlarge", - "operation" : "RunInstances:0010", - "ecu" : "116", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YY6BTZ5HW8FD5V6Q" : { - "sku" : "YY6BTZ5HW8FD5V6Q", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "244 GiB", - "storage" : "24 x 2000 HDD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:d2.8xlarge", - "operation" : "RunInstances:000g", - "ecu" : "116", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GXJXWPH2ZPJQ8XXJ" : { - "sku" : "GXJXWPH2ZPJQ8XXJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.2xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "1600 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3A8W7GXJJKZB5V45" : { - "sku" : "3A8W7GXJJKZB5V45", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.large", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "7.5 GiB", - "storage" : "2 x 420", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m1.large", - "operation" : "RunInstances:0010", - "ecu" : "4", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9MCJXY6ZTFBSRNZB" : { - "sku" : "9MCJXY6ZTFBSRNZB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cc2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670", - "clockSpeed" : "2.6 GHz", - "memory" : "60.5 GiB", - "storage" : "4 x 840", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:cc2.8xlarge", - "operation" : "RunInstances:0010", - "ecu" : "88", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RTF2UNENTQNKBZS3" : { - "sku" : "RTF2UNENTQNKBZS3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "2 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.4xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VMVDDQB5JVUS29SY" : { - "sku" : "VMVDDQB5JVUS29SY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "4 x 1.9 NVMe SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.8xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "8SPMKN7PWFUUUK25" : { - "sku" : "8SPMKN7PWFUUUK25", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "30 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.4xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "WD5HZXPHH8Z3VFSD" : { - "sku" : "WD5HZXPHH8Z3VFSD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "34.2 GiB", - "storage" : "1 x 850", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:m2.2xlarge", - "operation" : "RunInstances:0800", - "ecu" : "13", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "WBC9QMDGSSY2UNJA" : { - "sku" : "WBC9QMDGSSY2UNJA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "768 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:p2.16xlarge", - "operation" : "Hourly", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "16", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "F7E2CXKVAY923NDJ" : { - "sku" : "F7E2CXKVAY923NDJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m3.2xlarge", - "operation" : "RunInstances:0002", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SSME5U3BWQXEH2ES" : { - "sku" : "SSME5U3BWQXEH2ES", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.small", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "1.7 GiB", - "storage" : "1 x 160", - "networkPerformance" : "Low", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage", - "operation" : "RunInstances:000g", - "ecu" : "Variable", - "normalizationSizeFactor" : "1", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CDK4SMXRA7K87J58" : { - "sku" : "CDK4SMXRA7K87J58", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "7.5 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m3.large", - "operation" : "RunInstances", - "ecu" : "6.5", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "J7CC798XUX322NAB" : { - "sku" : "J7CC798XUX322NAB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.18xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "72", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "144 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:c5.18xlarge", - "operation" : "Hourly", - "dedicatedEbsThroughput" : "9000 Mbps", - "ecu" : "278", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "144", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MU4CDFJXM862BVJ3" : { - "sku" : "MU4CDFJXM862BVJ3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "1 x 120", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "76QZ6KV3AUVAJ4PP" : { - "sku" : "76QZ6KV3AUVAJ4PP", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 960", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.8xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "91", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "J4WQF46DKE3825ST" : { - "sku" : "J4WQF46DKE3825ST", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "30 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.4xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KBMDCRY5348X5TCN" : { - "sku" : "KBMDCRY5348X5TCN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "1 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.2xlarge", - "operation" : "RunInstances:000g", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "V57DX5BAS5NCGXY8" : { - "sku" : "V57DX5BAS5NCGXY8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "3.75 GiB", - "storage" : "2 x 16 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.large", - "operation" : "RunInstances:0006", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RJEQJTKJA4WCBCRN" : { - "sku" : "RJEQJTKJA4WCBCRN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "15 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.2xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "K48QRUR7K3WJWD3Y" : { - "sku" : "K48QRUR7K3WJWD3Y", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:p2.8xlarge", - "operation" : "RunInstances:0800", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Z684JBY4N78FZQ8Q" : { - "sku" : "Z684JBY4N78FZQ8Q", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.large", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "450 Mbps", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JDJYS4AM5CW779YH" : { - "sku" : "JDJYS4AM5CW779YH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "7.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:c4.xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TTS386B2SXKQXGZP" : { - "sku" : "TTS386B2SXKQXGZP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.8xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "6000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AWHZBBETT4RF387X" : { - "sku" : "AWHZBBETT4RF387X", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "34.2 GiB", - "storage" : "1 x 850", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m2.2xlarge", - "operation" : "RunInstances:0202", - "ecu" : "13", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZS78J2NQU7SMU7HB" : { - "sku" : "ZS78J2NQU7SMU7HB", - "productFamily" : "Dedicated Host", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "NA", - "storage" : "NA", - "networkPerformance" : "NA", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostUsage:r3", - "operation" : "RunInstances", - "ecu" : "NA", - "instanceCapacity2xlarge" : "4", - "instanceCapacity4xlarge" : "2", - "instanceCapacity8xlarge" : "1", - "instanceCapacityLarge" : "16", - "instanceCapacityXlarge" : "8", - "normalizationSizeFactor" : "NA", - "physicalCores" : "20", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UHW9QAKPPBUC6E5K" : { - "sku" : "UHW9QAKPPBUC6E5K", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "15 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.2xlarge", - "operation" : "RunInstances", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZWKFSQ2ZGE2PEHZQ" : { - "sku" : "ZWKFSQ2ZGE2PEHZQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "1 x 320 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.4xlarge", - "operation" : "RunInstances:0006", - "ecu" : "52", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AP8CRXEFDUCGR7QY" : { - "sku" : "AP8CRXEFDUCGR7QY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.large", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "450 Mbps", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JB6B8VEMWKJACNH2" : { - "sku" : "JB6B8VEMWKJACNH2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "15 GiB", - "storage" : "1 x 60 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "ebsOptimized" : "Yes", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:g2.2xlarge", - "operation" : "Hourly", - "ecu" : "26", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BYDPYVAT6B57HKJT" : { - "sku" : "BYDPYVAT6B57HKJT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "1 x 120", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BUBBYJ9CTGMQDCAN" : { - "sku" : "BUBBYJ9CTGMQDCAN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:g3.16xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "4", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TE86D77WEKH98NPZ" : { - "sku" : "TE86D77WEKH98NPZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "60 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.8xlarge", - "operation" : "RunInstances:0102", - "ecu" : "108", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "X2CZGDXUSRSFGZQ7" : { - "sku" : "X2CZGDXUSRSFGZQ7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "1 x 320 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.4xlarge", - "operation" : "RunInstances:0010", - "ecu" : "52", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VJ4XPF7YHUHKA3ZJ" : { - "sku" : "VJ4XPF7YHUHKA3ZJ", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 960", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.8xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "91", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7JWZZUN6V6RU9JES" : { - "sku" : "7JWZZUN6V6RU9JES", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cc2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670", - "clockSpeed" : "2.6 GHz", - "memory" : "60.5 GiB", - "storage" : "4 x 840", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:cc2.8xlarge", - "operation" : "RunInstances:000g", - "ecu" : "88", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6RTK76EDTUWSCDZ8" : { - "sku" : "6RTK76EDTUWSCDZ8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.9xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "72 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:c5.9xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "4500 Mbps", - "ecu" : "139", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "72", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NJGTPJ6BZDGQXTUY" : { - "sku" : "NJGTPJ6BZDGQXTUY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.9xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "72 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.9xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "4500 Mbps", - "ecu" : "139", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "72", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Y5HXB4JMEUSW7MKH" : { - "sku" : "Y5HXB4JMEUSW7MKH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "2 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:i3.4xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "H4ERZSZPBES3WKPY" : { - "sku" : "H4ERZSZPBES3WKPY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "256 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.16xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "10000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3RVR33X4EBZ55XDC" : { - "sku" : "3RVR33X4EBZ55XDC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.4xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "V9GRWABS3YTSNDT3" : { - "sku" : "V9GRWABS3YTSNDT3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "4 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.large", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QMW9CSCFTNV2H99M" : { - "sku" : "QMW9CSCFTNV2H99M", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "800 Mbps", - "ecu" : "Variable", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6BD6MNUEKG75NY7W" : { - "sku" : "6BD6MNUEKG75NY7W", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3X6QM8VEN9SGUP4E" : { - "sku" : "3X6QM8VEN9SGUP4E", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "68.4 GiB", - "storage" : "2 x 840", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m2.4xlarge", - "operation" : "RunInstances", - "ecu" : "26", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "E598E3ESM66XHVUP" : { - "sku" : "E598E3ESM66XHVUP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.medium", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "3.75 GiB", - "storage" : "1 x 4 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m3.medium", - "operation" : "RunInstances:0006", - "ecu" : "3", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HK2GMCFHXFH3NGAD" : { - "sku" : "HK2GMCFHXFH3NGAD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:p2.xlarge", - "operation" : "RunInstances:0010", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "N23UBSTNARQRHWES" : { - "sku" : "N23UBSTNARQRHWES", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.8xlarge", - "operation" : "RunInstances:000g", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6U6GZ2DN4RFCJ7D9" : { - "sku" : "6U6GZ2DN4RFCJ7D9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "4 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.large", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AXBKPP5M3DJRHZ89" : { - "sku" : "AXBKPP5M3DJRHZ89", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 960", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:x1e.8xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "91", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4V9HUNHYA5JHS8MD" : { - "sku" : "4V9HUNHYA5JHS8MD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.9xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "72 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.9xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "4500 Mbps", - "ecu" : "139", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "72", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MEMWYBVHG4M8SJQ8" : { - "sku" : "MEMWYBVHG4M8SJQ8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "122 GiB", - "storage" : "12 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:d2.4xlarge", - "operation" : "RunInstances:0800", - "ecu" : "56", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "T9TYJWD5FYY22EY9" : { - "sku" : "T9TYJWD5FYY22EY9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.9xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "72 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.9xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "4500 Mbps", - "ecu" : "139", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "72", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "R48KWC2ZSMSQE76W" : { - "sku" : "R48KWC2ZSMSQE76W", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 800 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i2.xlarge", - "operation" : "RunInstances", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RSYDZDVYE5V36ECZ" : { - "sku" : "RSYDZDVYE5V36ECZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "2 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i2.2xlarge", - "operation" : "RunInstances:000g", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CBEVSDJQW44MTAH9" : { - "sku" : "CBEVSDJQW44MTAH9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "800 Mbps", - "ecu" : "Variable", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YRB3EKJ97RGRBWWN" : { - "sku" : "YRB3EKJ97RGRBWWN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "7.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PXS7W75RUSBYTA74" : { - "sku" : "PXS7W75RUSBYTA74", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "7.5 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m3.large", - "operation" : "RunInstances:0006", - "ecu" : "6.5", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3BZUZ8TX5Q6KDMND" : { - "sku" : "3BZUZ8TX5Q6KDMND", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "17.1 GiB", - "storage" : "1 x 420", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m2.xlarge", - "operation" : "RunInstances:0010", - "ecu" : "6.5", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "U9GUPGBUQ64FG73U" : { - "sku" : "U9GUPGBUQ64FG73U", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DQKFGKR56DWDJFRK" : { - "sku" : "DQKFGKR56DWDJFRK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "8 x 800 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i2.8xlarge", - "operation" : "RunInstances:0102", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "X6FJM3B6HUSDM27X" : { - "sku" : "X6FJM3B6HUSDM27X", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "1 x 240", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.2xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "23", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XVCPRU82RU77VTVY" : { - "sku" : "XVCPRU82RU77VTVY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "4 x 1.9 NVMe SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.8xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JY3YATTYGNTRDKBA" : { - "sku" : "JY3YATTYGNTRDKBA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:p3.2xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "T9CM8EYXT4ZBVWNE" : { - "sku" : "T9CM8EYXT4ZBVWNE", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "4 x 1.9 NVMe SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:i3.8xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XC5ZWJZS84Q3XZTZ" : { - "sku" : "XC5ZWJZS84Q3XZTZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:g3.4xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "0", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "E7FZJRV7JXQJXFED" : { - "sku" : "E7FZJRV7JXQJXFED", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "30 GiB", - "storage" : "2 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.4xlarge", - "operation" : "RunInstances:0202", - "ecu" : "55", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "R7PB2UQAZQDARZ8X" : { - "sku" : "R7PB2UQAZQDARZ8X", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "1 x 480", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.4xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "47", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "429MR8T2YBX27EZR" : { - "sku" : "429MR8T2YBX27EZR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "30 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.4xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "65VXSY6D3U449E4W" : { - "sku" : "65VXSY6D3U449E4W", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "3,904 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.32xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "340", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FVBHJHDCMPPWYN7V" : { - "sku" : "FVBHJHDCMPPWYN7V", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 0.95 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "850 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "W7UEAU2BZ54FZMWV" : { - "sku" : "W7UEAU2BZ54FZMWV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "1 x 320 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.4xlarge", - "operation" : "RunInstances:0202", - "ecu" : "52", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XCS4G266BD9VMZE6" : { - "sku" : "XCS4G266BD9VMZE6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "8 x 1.9 NVMe SSD", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.16xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CE5S3J445F4X6VYF" : { - "sku" : "CE5S3J445F4X6VYF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.16xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "12000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "P6N8TE7UUQ73EHRS" : { - "sku" : "P6N8TE7UUQ73EHRS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "4 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.large", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YT69AAZT9MZJXMUB" : { - "sku" : "YT69AAZT9MZJXMUB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "1 x 120", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZPYBCRBFCYN9APCP" : { - "sku" : "ZPYBCRBFCYN9APCP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "30.5 GiB", - "storage" : "3 x 2000 HDD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:d2.xlarge", - "operation" : "RunInstances:000g", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NZFDNPR89WKZ6C5N" : { - "sku" : "NZFDNPR89WKZ6C5N", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "15 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.2xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7H6M5F6HHQ5YHT4V" : { - "sku" : "7H6M5F6HHQ5YHT4V", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "1 x 480", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.4xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "47", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZE2F35FX6PVMD63Y" : { - "sku" : "ZE2F35FX6PVMD63Y", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "30.5 GiB", - "storage" : "3 x 2000 HDD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:d2.xlarge", - "operation" : "RunInstances:000g", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4VV6V3MAZZGV47MU" : { - "sku" : "4VV6V3MAZZGV47MU", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "1 x 240", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.2xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "23", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5B3J35TKN9FFQAR9" : { - "sku" : "5B3J35TKN9FFQAR9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 800 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i2.xlarge", - "operation" : "RunInstances:000g", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9YBEBPDN4MSDTQMG" : { - "sku" : "9YBEBPDN4MSDTQMG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.4xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "3000 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "D35U33PKHD4MZRB5" : { - "sku" : "D35U33PKHD4MZRB5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 0.95 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "850 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "J6U6GMEFVH686HBN" : { - "sku" : "J6U6GMEFVH686HBN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "17.1 GiB", - "storage" : "1 x 420", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m2.xlarge", - "operation" : "RunInstances", - "ecu" : "6.5", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GHUDYUUVD52EBZW2" : { - "sku" : "GHUDYUUVD52EBZW2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "122 GiB", - "storage" : "12 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:d2.4xlarge", - "operation" : "RunInstances", - "ecu" : "56", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RVMQS6Z2ZKDKPUUX" : { - "sku" : "RVMQS6Z2ZKDKPUUX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "f1.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:f1.2xlarge", - "operation" : "RunInstances", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QEN4NKBP2QQKVJGV" : { - "sku" : "QEN4NKBP2QQKVJGV", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "1 x 480", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.4xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "47", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RKUUP7AYRVCXF3ZJ" : { - "sku" : "RKUUP7AYRVCXF3ZJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.large", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "7.5 GiB", - "storage" : "2 x 420", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m1.large", - "operation" : "RunInstances:0002", - "ecu" : "4", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "56STRVG6SNYJSZDZ" : { - "sku" : "56STRVG6SNYJSZDZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c1.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "7 GiB", - "storage" : "4 x 420", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:c1.xlarge", - "operation" : "RunInstances:0800", - "ecu" : "20", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "63BQRF7SF8WK9XJC" : { - "sku" : "63BQRF7SF8WK9XJC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "15 GiB", - "storage" : "1 x 60 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:g2.2xlarge", - "operation" : "RunInstances:0002", - "ecu" : "26", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FWCGRGHA7B5TAJDH" : { - "sku" : "FWCGRGHA7B5TAJDH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "4 x 1.9 NVMe SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.8xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KV8S83TSUZZQ2X2K" : { - "sku" : "KV8S83TSUZZQ2X2K", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 0.475 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.large", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "425 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Z65ZPSYYEJ69PVAM" : { - "sku" : "Z65ZPSYYEJ69PVAM", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 960", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.8xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "91", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3ZYHHAY9TXWX5S7X" : { - "sku" : "3ZYHHAY9TXWX5S7X", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QY3YSEST3C6FQNQH" : { - "sku" : "QY3YSEST3C6FQNQH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.medium", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.3 GHz", - "memory" : "4 GiB", - "storage" : "EBS only", - "networkPerformance" : "Low to Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.medium", - "operation" : "RunInstances", - "ecu" : "Variable", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PSF39FBPC6PFD9W3" : { - "sku" : "PSF39FBPC6PFD9W3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.4xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "C7UZ38M4P93WMCBP" : { - "sku" : "C7UZ38M4P93WMCBP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:p2.8xlarge", - "operation" : "RunInstances:000g", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TY2FBZ3Y8X8N6TXE" : { - "sku" : "TY2FBZ3Y8X8N6TXE", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "1 x 240", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.2xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "23", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BFXWBPUC878XX5WC" : { - "sku" : "BFXWBPUC878XX5WC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "2 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.4xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SZAG69AWYJF676BA" : { - "sku" : "SZAG69AWYJF676BA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "122 GiB", - "storage" : "12 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:d2.4xlarge", - "operation" : "RunInstances:0002", - "ecu" : "56", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SQKUUTYR8NCPCZQK" : { - "sku" : "SQKUUTYR8NCPCZQK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "244 GiB", - "storage" : "24 x 2000 HDD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:d2.8xlarge", - "operation" : "RunInstances:0202", - "ecu" : "116", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6SZSU4SPSN4VNV6H" : { - "sku" : "6SZSU4SPSN4VNV6H", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 800 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i2.xlarge", - "operation" : "RunInstances:0102", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TFQ5DSSKH395ATXV" : { - "sku" : "TFQ5DSSKH395ATXV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.2xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "P63NKZQXED5H7HUK" : { - "sku" : "P63NKZQXED5H7HUK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "61 GiB", - "storage" : "6 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:d2.2xlarge", - "operation" : "RunInstances", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UA4QBJUCBNHDQX2B" : { - "sku" : "UA4QBJUCBNHDQX2B", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "1 x 240", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.2xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "23", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7MVN3GT6EP25KDUJ" : { - "sku" : "7MVN3GT6EP25KDUJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cc2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670", - "clockSpeed" : "2.6 GHz", - "memory" : "60.5 GiB", - "storage" : "4 x 840", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:cc2.8xlarge", - "operation" : "RunInstances", - "ecu" : "88", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "N9AQNRUTKCFEVCJ6" : { - "sku" : "N9AQNRUTKCFEVCJ6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "1 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.2xlarge", - "operation" : "RunInstances", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XCXYQ48G7HXYYHAC" : { - "sku" : "XCXYQ48G7HXYYHAC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "15 GiB", - "storage" : "1 x 60 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:g2.2xlarge", - "operation" : "RunInstances:0010", - "ecu" : "26", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DT3ZK6NDAD7ADBVZ" : { - "sku" : "DT3ZK6NDAD7ADBVZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "4 x 1.9 NVMe SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.8xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YTTWW26ACBCFNQFW" : { - "sku" : "YTTWW26ACBCFNQFW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:x1.32xlarge", - "operation" : "RunInstances:0800", - "ecu" : "349", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Y5KA5VEADFSRVVYY" : { - "sku" : "Y5KA5VEADFSRVVYY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "64 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.4xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "53.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "K28MGJB7A9VHR5UW" : { - "sku" : "K28MGJB7A9VHR5UW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "1 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.2xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "APERCPEVDRU8YTTJ" : { - "sku" : "APERCPEVDRU8YTTJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "7.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UK3253N3FM8G9VRT" : { - "sku" : "UK3253N3FM8G9VRT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "2 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:i3.4xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PQQ53JZ8S758UUWS" : { - "sku" : "PQQ53JZ8S758UUWS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1.32xlarge", - "operation" : "RunInstances:0202", - "ecu" : "349", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "SQL Web", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9PA6CYJ4VMXA3MPV" : { - "sku" : "9PA6CYJ4VMXA3MPV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "61 GiB", - "storage" : "6 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:d2.2xlarge", - "operation" : "RunInstances:0102", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PFVCSMK3T7J3UAHB" : { - "sku" : "PFVCSMK3T7J3UAHB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 800 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i2.xlarge", - "operation" : "RunInstances:0006", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "8ZKTF27C8KTCX3VS" : { - "sku" : "8ZKTF27C8KTCX3VS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.9xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "72 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.9xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "4500 Mbps", - "ecu" : "139", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "72", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UEHZ36662EWM4RGB" : { - "sku" : "UEHZ36662EWM4RGB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "3,904 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.32xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "340", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JGBX8UHZUVP2AMXP" : { - "sku" : "JGBX8UHZUVP2AMXP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.18xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "72", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "144 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.18xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "9000 Mbps", - "ecu" : "278", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "144", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JF9QHW5XYZ9MK42R" : { - "sku" : "JF9QHW5XYZ9MK42R", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cr1.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670", - "memory" : "244 GiB", - "storage" : "2 x 120 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:cr1.8xlarge", - "operation" : "RunInstances:0006", - "ecu" : "88", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Std", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "62VQZ6W2YK7P5N9B" : { - "sku" : "62VQZ6W2YK7P5N9B", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "60 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.8xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "132", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "38G6R9HH2W74WD78" : { - "sku" : "38G6R9HH2W74WD78", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "2 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i2.2xlarge", - "operation" : "RunInstances:0002", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5BBSXXSX365HB5ME" : { - "sku" : "5BBSXXSX365HB5ME", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "2 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.4xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3XZGHRZ6YE3HHENC" : { - "sku" : "3XZGHRZ6YE3HHENC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "3,904 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.32xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "340", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GAAPZE44XKXJUATT" : { - "sku" : "GAAPZE44XKXJUATT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "2 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.4xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TA6DVCUX4BZXUYXM" : { - "sku" : "TA6DVCUX4BZXUYXM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.large", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "400 Mbps", - "ecu" : "135", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KCYHZ77Q583MP6ET" : { - "sku" : "KCYHZ77Q583MP6ET", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 960", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.8xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "91", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EEY67C7D4RJ9CHR3" : { - "sku" : "EEY67C7D4RJ9CHR3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.large", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "400 Mbps", - "ecu" : "135", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "B49ZJ7RVTVWQUJ85" : { - "sku" : "B49ZJ7RVTVWQUJ85", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:p3.2xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZTJAGDVB3B33WX4G" : { - "sku" : "ZTJAGDVB3B33WX4G", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "4 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.large", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EKX4XJYWHK3C9ZDP" : { - "sku" : "EKX4XJYWHK3C9ZDP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "3.75 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.large", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "8XS2K65N47Y67NAF" : { - "sku" : "8XS2K65N47Y67NAF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:r4.16xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "12000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VRTKB5F5VS4VGBMS" : { - "sku" : "VRTKB5F5VS4VGBMS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "64 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:m4.4xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "53.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "N48UCGS5YF8G8CCW" : { - "sku" : "N48UCGS5YF8G8CCW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:p2.8xlarge", - "operation" : "RunInstances:0010", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "8", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "A8NG2GF96A6WJPJW" : { - "sku" : "A8NG2GF96A6WJPJW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 0.95 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "850 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VU398KD2CYRQCGPP" : { - "sku" : "VU398KD2CYRQCGPP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "8 x 800 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i2.8xlarge", - "operation" : "RunInstances:0102", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Q49VKFFWC877GUFC" : { - "sku" : "Q49VKFFWC877GUFC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "64EUYDYDPNWKXQUX" : { - "sku" : "64EUYDYDPNWKXQUX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "hs1.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "17", - "physicalProcessor" : "Intel Xeon E5-2650", - "clockSpeed" : "2 GHz", - "memory" : "117 GiB", - "storage" : "24 x 2000", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:hs1.8xlarge", - "operation" : "RunInstances", - "ecu" : "35", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "B2S7FU4V6J386XED" : { - "sku" : "B2S7FU4V6J386XED", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.10xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "40", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "160 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:m4.10xlarge", - "operation" : "Hourly", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "80", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZRAA23N7FYQDZBNU" : { - "sku" : "ZRAA23N7FYQDZBNU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "768 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:p2.16xlarge", - "operation" : "RunInstances:0800", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "16", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5E9TGWTBKMHMQWQ2" : { - "sku" : "5E9TGWTBKMHMQWQ2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "3.75 GiB", - "storage" : "2 x 16 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.large", - "operation" : "RunInstances:000g", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XJZ34YAGC7UHGRHJ" : { - "sku" : "XJZ34YAGC7UHGRHJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:m4.xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "M8D9MPXPJGZE2NYV" : { - "sku" : "M8D9MPXPJGZE2NYV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "34.2 GiB", - "storage" : "1 x 850", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m2.2xlarge", - "operation" : "RunInstances", - "ecu" : "13", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "E52BDE5FYKFFMM6R" : { - "sku" : "E52BDE5FYKFFMM6R", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1.32xlarge", - "operation" : "RunInstances", - "ecu" : "349", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EK8RQK3XNDHYVHY2" : { - "sku" : "EK8RQK3XNDHYVHY2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.10xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "40", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "160 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.10xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "80", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XUVPNXCYKWF33FBW" : { - "sku" : "XUVPNXCYKWF33FBW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.9xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "72 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:c5.9xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "4500 Mbps", - "ecu" : "139", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "72", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "B29HW84ZHNQH6MAR" : { - "sku" : "B29HW84ZHNQH6MAR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "8 x 800 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i2.8xlarge", - "operation" : "RunInstances:0102", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9DFRVEWZ38WMEJVB" : { - "sku" : "9DFRVEWZ38WMEJVB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "800 Mbps", - "ecu" : "Variable", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Y6NKND98FNQAQ8K9" : { - "sku" : "Y6NKND98FNQAQ8K9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.medium", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "3.75 GiB", - "storage" : "1 x 4 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m3.medium", - "operation" : "RunInstances:0202", - "ecu" : "3", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UDYTM9QGGMXVAR7Y" : { - "sku" : "UDYTM9QGGMXVAR7Y", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:c5.4xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "B6RS3QA3WVNWUFKM" : { - "sku" : "B6RS3QA3WVNWUFKM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "61 GiB", - "storage" : "6 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:d2.2xlarge", - "operation" : "RunInstances:0102", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DM8QWYMUB3C3JJAR" : { - "sku" : "DM8QWYMUB3C3JJAR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "2 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i2.2xlarge", - "operation" : "RunInstances:0010", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DB68VE3TDETBPZZZ" : { - "sku" : "DB68VE3TDETBPZZZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "800 Mbps", - "ecu" : "Variable", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "U4ACUCANS9BM4R7H" : { - "sku" : "U4ACUCANS9BM4R7H", - "productFamily" : "Load Balancer-Application", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "group" : "ELB:Balancer", - "groupDescription" : "Used Application load balancer capacity units-hr", - "usagetype" : "LCUUsage", - "operation" : "LoadBalancing:Application", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CZY4WZCSMEYRT6BS" : { - "sku" : "CZY4WZCSMEYRT6BS", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "1 x 240", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.2xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "23", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SVKJPJ49D87Z4D8D" : { - "sku" : "SVKJPJ49D87Z4D8D", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HM82VKFH3K99HEA4" : { - "sku" : "HM82VKFH3K99HEA4", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 0.475 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.large", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "425 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "A83EBS2T67UP72G2" : { - "sku" : "A83EBS2T67UP72G2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m3.xlarge", - "operation" : "RunInstances", - "ecu" : "13", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EM3N7MRMRY4Z5BMR" : { - "sku" : "EM3N7MRMRY4Z5BMR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "3,904 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:x1e.32xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "340", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GAU68ZZUP6T8UDTP" : { - "sku" : "GAU68ZZUP6T8UDTP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "1 x 120", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:x1e.xlarge", - "operation" : "Hourly", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PQXUZFT763CBBFXN" : { - "sku" : "PQXUZFT763CBBFXN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "768 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:p2.16xlarge", - "operation" : "RunInstances:0002", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "16", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EWR4DWGXX5YW4B4M" : { - "sku" : "EWR4DWGXX5YW4B4M", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:g3.8xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "0", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "2", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XX2TZABY6QFVXNY9" : { - "sku" : "XX2TZABY6QFVXNY9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "34.2 GiB", - "storage" : "1 x 850", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m2.2xlarge", - "operation" : "RunInstances:0010", - "ecu" : "13", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6WKTRGBBJD2C2RZE" : { - "sku" : "6WKTRGBBJD2C2RZE", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 0.475 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.large", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "425 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "87Z6QV469BMNJV52" : { - "sku" : "87Z6QV469BMNJV52", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:p3.8xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6U2SB7CVRVWJEX22" : { - "sku" : "6U2SB7CVRVWJEX22", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1.32xlarge", - "operation" : "RunInstances:0010", - "ecu" : "349", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZVFV8KSWQPNVNYCW" : { - "sku" : "ZVFV8KSWQPNVNYCW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.large", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "400 Mbps", - "ecu" : "135", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "W84NR989M57Y5DZJ" : { - "sku" : "W84NR989M57Y5DZJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 0.95 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "850 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "H6T3SYB5G6QCVMZM" : { - "sku" : "H6T3SYB5G6QCVMZM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "60 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.8xlarge", - "operation" : "RunInstances", - "ecu" : "108", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "R4XHKDDZUJXABU4Z" : { - "sku" : "R4XHKDDZUJXABU4Z", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "3.75 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.large", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6767SWNDDU2CUUEJ" : { - "sku" : "6767SWNDDU2CUUEJ", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 960", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.8xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "91", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5EYCR4NNAWN9DZT3" : { - "sku" : "5EYCR4NNAWN9DZT3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c1.medium", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "1.7 GiB", - "storage" : "1 x 350", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c1.medium", - "operation" : "RunInstances:000g", - "ecu" : "2", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "F7H92E3N3TN52552" : { - "sku" : "F7H92E3N3TN52552", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.medium", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.3 GHz", - "memory" : "4 GiB", - "storage" : "EBS only", - "networkPerformance" : "Low to Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.medium", - "operation" : "RunInstances:0002", - "ecu" : "Variable", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FUPZEHMJB57T55W6" : { - "sku" : "FUPZEHMJB57T55W6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.2xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "WH9T6569SRYX7MN9" : { - "sku" : "WH9T6569SRYX7MN9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.8xlarge", - "operation" : "RunInstances:0006", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NXP3TET93CDDJX8W" : { - "sku" : "NXP3TET93CDDJX8W", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "122 GiB", - "storage" : "12 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:d2.4xlarge", - "operation" : "RunInstances:0006", - "ecu" : "56", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6VXGKV62HT3PPGUM" : { - "sku" : "6VXGKV62HT3PPGUM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 800 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i2.xlarge", - "operation" : "RunInstances:0002", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "P6GWCP7NZJR2VSTT" : { - "sku" : "P6GWCP7NZJR2VSTT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c1.medium", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "1.7 GiB", - "storage" : "1 x 350", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c1.medium", - "operation" : "RunInstances:000g", - "ecu" : "2", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9XSMT4DCCR64C6B8" : { - "sku" : "9XSMT4DCCR64C6B8", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "1 x 480", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.4xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "47", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "N3VSW4S7495SMAMS" : { - "sku" : "N3VSW4S7495SMAMS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.10xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "40", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "160 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.10xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "80", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "8A423BKQGUQM2JT7" : { - "sku" : "8A423BKQGUQM2JT7", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "1 x 480", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:x1e.4xlarge", - "operation" : "Hourly", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "47", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GTXYRWSN8RXE5ZBA" : { - "sku" : "GTXYRWSN8RXE5ZBA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "30 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.4xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "U7343ZA6ABZUXFZ9" : { - "sku" : "U7343ZA6ABZUXFZ9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "30.5 GiB", - "storage" : "3 x 2000 HDD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:d2.xlarge", - "operation" : "RunInstances", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GCU5MTJSYT27M7JU" : { - "sku" : "GCU5MTJSYT27M7JU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "15 GiB", - "storage" : "4 x 420", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m1.xlarge", - "operation" : "RunInstances:000g", - "ecu" : "8", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NT2P2VJM9AFTGQGE" : { - "sku" : "NT2P2VJM9AFTGQGE", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cr1.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670", - "memory" : "244 GiB", - "storage" : "2 x 120 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:cr1.8xlarge", - "operation" : "RunInstances:0800", - "ecu" : "88", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "32R9UMHRGUNFK9EM" : { - "sku" : "32R9UMHRGUNFK9EM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 80 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.xlarge", - "operation" : "RunInstances:000g", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZXVGNAHUW5AY3DYX" : { - "sku" : "ZXVGNAHUW5AY3DYX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c1.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "7 GiB", - "storage" : "4 x 420", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c1.xlarge", - "operation" : "RunInstances:0202", - "ecu" : "20", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VECSNYXG6RJ6YNH2" : { - "sku" : "VECSNYXG6RJ6YNH2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.medium", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "3.75 GiB", - "storage" : "1 x 4 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m3.medium", - "operation" : "RunInstances:0202", - "ecu" : "3", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "C8WRJP4N7N5CN6HS" : { - "sku" : "C8WRJP4N7N5CN6HS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.large", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "7.5 GiB", - "storage" : "2 x 420", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m1.large", - "operation" : "RunInstances:0202", - "ecu" : "4", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Web", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZJXKCMNRMSTSZTE8" : { - "sku" : "ZJXKCMNRMSTSZTE8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.16xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "12000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "D7U963P5YEKVSRHT" : { - "sku" : "D7U963P5YEKVSRHT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.large", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "450 Mbps", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TKSBGRRFANCGSQGJ" : { - "sku" : "TKSBGRRFANCGSQGJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cc2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670", - "clockSpeed" : "2.6 GHz", - "memory" : "60.5 GiB", - "storage" : "4 x 840", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:cc2.8xlarge", - "operation" : "RunInstances:0800", - "ecu" : "88", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "35JBFVAK8WGVGG7U" : { - "sku" : "35JBFVAK8WGVGG7U", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 960", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.8xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "91", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "8X7RVDXN67YREJTH" : { - "sku" : "8X7RVDXN67YREJTH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7GGEQ9QF87XSSGPH" : { - "sku" : "7GGEQ9QF87XSSGPH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "7.5 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.xlarge", - "operation" : "RunInstances:000g", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2CJFZEAKYQD4ZCJU" : { - "sku" : "2CJFZEAKYQD4ZCJU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.medium", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "3.75 GiB", - "storage" : "1 x 410", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m1.medium", - "operation" : "RunInstances:0002", - "ecu" : "2", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "D6N7KTJH42VTNPFJ" : { - "sku" : "D6N7KTJH42VTNPFJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "34.2 GiB", - "storage" : "1 x 850", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m2.2xlarge", - "operation" : "RunInstances:000g", - "ecu" : "13", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FFWF55NY7SRTUYUX" : { - "sku" : "FFWF55NY7SRTUYUX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "60 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.8xlarge", - "operation" : "RunInstances:0010", - "ecu" : "108", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6VG367TBGT66TM4N" : { - "sku" : "6VG367TBGT66TM4N", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.0 GHz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.xlarge", - "operation" : "RunInstances:000g", - "ecu" : "Variable", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EM4WENQDQTCE6CHN" : { - "sku" : "EM4WENQDQTCE6CHN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "4 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i2.4xlarge", - "operation" : "RunInstances:0010", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "47S8UCB86MXKYKKM" : { - "sku" : "47S8UCB86MXKYKKM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.2xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "1600 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BVY8N2S8YT6DK8AE" : { - "sku" : "BVY8N2S8YT6DK8AE", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "1 x 320 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "ebsOptimized" : "Yes", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:r3.4xlarge", - "operation" : "Hourly", - "ecu" : "52", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QFF26RH4D8T9V64T" : { - "sku" : "QFF26RH4D8T9V64T", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "15 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:c3.2xlarge", - "operation" : "RunInstances:0800", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SJGHN3P4PMXPP9SA" : { - "sku" : "SJGHN3P4PMXPP9SA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.4xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JEUDBWRRVYWVAQ8W" : { - "sku" : "JEUDBWRRVYWVAQ8W", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.small", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "1.7 GiB", - "storage" : "1 x 160", - "networkPerformance" : "Low", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage", - "operation" : "RunInstances:0010", - "ecu" : "Variable", - "normalizationSizeFactor" : "1", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YUXKRQ5SQSHVKD58" : { - "sku" : "YUXKRQ5SQSHVKD58", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.medium", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "3.75 GiB", - "storage" : "1 x 410", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m1.medium", - "operation" : "RunInstances", - "ecu" : "2", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BVA53SP54488TUC8" : { - "sku" : "BVA53SP54488TUC8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "7.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "K2UX3Q9DEX25YU7R" : { - "sku" : "K2UX3Q9DEX25YU7R", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.4xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "3000 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TTPFUQFE3Y5ZHJQU" : { - "sku" : "TTPFUQFE3Y5ZHJQU", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "1 x 240", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.2xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "23", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "R663DPH9T8Q89W88" : { - "sku" : "R663DPH9T8Q89W88", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "4 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i2.4xlarge", - "operation" : "RunInstances:0002", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3DX9M63484ZSZFJV" : { - "sku" : "3DX9M63484ZSZFJV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cc2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670", - "clockSpeed" : "2.6 GHz", - "memory" : "60.5 GiB", - "storage" : "4 x 840", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:cc2.8xlarge", - "operation" : "RunInstances", - "ecu" : "88", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NYB5S5CHCEM4EHBM" : { - "sku" : "NYB5S5CHCEM4EHBM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "15 GiB", - "storage" : "4 x 420", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "ebsOptimized" : "Yes", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:m1.xlarge", - "operation" : "Hourly", - "ecu" : "8", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "27HV9GJNZPAQHPXQ" : { - "sku" : "27HV9GJNZPAQHPXQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1.32xlarge", - "operation" : "RunInstances:0006", - "ecu" : "349", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "SQL Std", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RHMYCN6PD6GHSQUU" : { - "sku" : "RHMYCN6PD6GHSQUU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:p2.xlarge", - "operation" : "RunInstances", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JYVS4BZET85J8C7N" : { - "sku" : "JYVS4BZET85J8C7N", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "68.4 GiB", - "storage" : "2 x 840", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:m2.4xlarge", - "operation" : "RunInstances:0800", - "ecu" : "26", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MA94X27R3YTPE3NC" : { - "sku" : "MA94X27R3YTPE3NC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 0.475 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:i3.large", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "425 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TNZVJ6TD58FTD557" : { - "sku" : "TNZVJ6TD58FTD557", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "1 x 480", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:x1e.4xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "47", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NF67K4WANEWZZV22" : { - "sku" : "NF67K4WANEWZZV22", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cg1.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "GPU instance", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon x5570", - "memory" : "22.5 GiB", - "storage" : "2 x 840", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:cg1.4xlarge", - "operation" : "RunInstances", - "ecu" : "33.5", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7QQSWJDPGHJWXN69" : { - "sku" : "7QQSWJDPGHJWXN69", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:p3.8xlarge", - "operation" : "Hourly", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3AJKTZTHDW42GS66" : { - "sku" : "3AJKTZTHDW42GS66", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.large", - "operation" : "RunInstances:0006", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VRCAUVZXNVUK48Y2" : { - "sku" : "VRCAUVZXNVUK48Y2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "8 x 1.9 NVMe SSD", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.16xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "245DEJZVP4HBBUX3" : { - "sku" : "245DEJZVP4HBBUX3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:p3.2xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "M6T9NG7HTENPGTMK" : { - "sku" : "M6T9NG7HTENPGTMK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "244 GiB", - "storage" : "24 x 2000 HDD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:d2.8xlarge", - "operation" : "RunInstances:0102", - "ecu" : "116", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "62G57MU6KCQ2AQS8" : { - "sku" : "62G57MU6KCQ2AQS8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t1.micro", - "currentGeneration" : "No", - "instanceFamily" : "Micro instances", - "vcpu" : "1", - "physicalProcessor" : "Variable", - "memory" : "0.613 GiB", - "storage" : "EBS only", - "networkPerformance" : "Very Low", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t1.micro", - "operation" : "RunInstances:0010", - "ecu" : "26", - "normalizationSizeFactor" : "0.5", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UA3JWMHE5JCMQN3Z" : { - "sku" : "UA3JWMHE5JCMQN3Z", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "15 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.2xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CGJXHFUSGE546RV6" : { - "sku" : "CGJXHFUSGE546RV6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.large", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "400 Mbps", - "ecu" : "135", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HZEF7XT3HAKD5NEZ" : { - "sku" : "HZEF7XT3HAKD5NEZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.large", - "operation" : "RunInstances", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ATA6MJZDUQ53CRMP" : { - "sku" : "ATA6MJZDUQ53CRMP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.medium", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "3.75 GiB", - "storage" : "1 x 410", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m1.medium", - "operation" : "RunInstances:0202", - "ecu" : "2", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "SQL Web", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SVSVP5FJUTSNJXNJ" : { - "sku" : "SVSVP5FJUTSNJXNJ", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.16xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "179", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9HFHK6RECZZ4W92B" : { - "sku" : "9HFHK6RECZZ4W92B", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "1 x 120", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2EKFX2CKSTAYWT4G" : { - "sku" : "2EKFX2CKSTAYWT4G", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "883Q8VPBXGCX7MQC" : { - "sku" : "883Q8VPBXGCX7MQC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "4 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i2.4xlarge", - "operation" : "RunInstances:0006", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6MAMZMQ6FM3UK7P6" : { - "sku" : "6MAMZMQ6FM3UK7P6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.8xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "6000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9V4P3HXFJR9R93QT" : { - "sku" : "9V4P3HXFJR9R93QT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:r4.4xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "3000 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2T92AZQGNFAQHEXW" : { - "sku" : "2T92AZQGNFAQHEXW", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Outbound", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "Asia Pacific (Singapore)", - "toLocationType" : "AWS Region", - "usagetype" : "USE1-APS1-AWS-Out-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "CW2JQMRMB2W7GWB3" : { - "sku" : "CW2JQMRMB2W7GWB3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m3.2xlarge", - "operation" : "RunInstances:0202", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DNQP3UURB2QMZNV3" : { - "sku" : "DNQP3UURB2QMZNV3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "15 GiB", - "storage" : "4 x 420", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m1.xlarge", - "operation" : "RunInstances:0010", - "ecu" : "8", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GCJMZVKZNG7MAKT4" : { - "sku" : "GCJMZVKZNG7MAKT4", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "15 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:c3.2xlarge", - "operation" : "RunInstances:0800", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NVQ292F84D694PKT" : { - "sku" : "NVQ292F84D694PKT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.large", - "operation" : "RunInstances:0010", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3GAF7GUVFB6WDJQR" : { - "sku" : "3GAF7GUVFB6WDJQR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "15 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.2xlarge", - "operation" : "RunInstances:0006", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YGKQRRYEKC2NTSQT" : { - "sku" : "YGKQRRYEKC2NTSQT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "30 GiB", - "storage" : "2 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "ebsOptimized" : "Yes", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:c3.4xlarge", - "operation" : "Hourly", - "ecu" : "55", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AG87TQB4PQQPZXFK" : { - "sku" : "AG87TQB4PQQPZXFK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.small", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.3 GHz", - "memory" : "2 GiB", - "storage" : "EBS only", - "networkPerformance" : "Low to Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:t2.small", - "operation" : "RunInstances:0800", - "ecu" : "Variable", - "normalizationSizeFactor" : "1", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9J54RV93FDP84TGG" : { - "sku" : "9J54RV93FDP84TGG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "122 GiB", - "storage" : "12 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:d2.4xlarge", - "operation" : "RunInstances:0102", - "ecu" : "56", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3CAET66XVXDZHGQY" : { - "sku" : "3CAET66XVXDZHGQY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c1.medium", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "1.7 GiB", - "storage" : "1 x 350", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c1.medium", - "operation" : "RunInstances:0202", - "ecu" : "2", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "SQL Web", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "F7MKSFT7MRGHJF5U" : { - "sku" : "F7MKSFT7MRGHJF5U", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "768 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:p2.16xlarge", - "operation" : "RunInstances:0102", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "16", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EUZYYTAVEP8JDS42" : { - "sku" : "EUZYYTAVEP8JDS42", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "1 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.2xlarge", - "operation" : "RunInstances:0102", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "D6HGB9XUMNSDTB9G" : { - "sku" : "D6HGB9XUMNSDTB9G", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "f1.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "memory" : "976 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:f1.16xlarge", - "operation" : "RunInstances:000g", - "ecu" : "188", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TMQJ4GK6Z38D6DZU" : { - "sku" : "TMQJ4GK6Z38D6DZU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "3.75 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.large", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NCF2TWM2X9WTUPEG" : { - "sku" : "NCF2TWM2X9WTUPEG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "7.5 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.xlarge", - "operation" : "RunInstances:0006", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4YHC7A4CJ3HBPKDX" : { - "sku" : "4YHC7A4CJ3HBPKDX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "1 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.2xlarge", - "operation" : "RunInstances", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AKSFQX72CUFYMDSH" : { - "sku" : "AKSFQX72CUFYMDSH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "2 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.4xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HRE9N7QDXRK4WGK6" : { - "sku" : "HRE9N7QDXRK4WGK6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "61 GiB", - "storage" : "6 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:d2.2xlarge", - "operation" : "RunInstances:0006", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5J4A5X6Z5M3JUPTT" : { - "sku" : "5J4A5X6Z5M3JUPTT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "1 x 320 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.4xlarge", - "operation" : "RunInstances:0002", - "ecu" : "52", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HFDNWEZYQYRJQR8N" : { - "sku" : "HFDNWEZYQYRJQR8N", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.2xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "1600 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PY2CUEC5DXV8VV3Y" : { - "sku" : "PY2CUEC5DXV8VV3Y", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "30.5 GiB", - "storage" : "3 x 2000 HDD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:d2.xlarge", - "operation" : "Hourly", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TWMSTK9JU8ZP6G3X" : { - "sku" : "TWMSTK9JU8ZP6G3X", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "1 x 120", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VS9R2VWDK4T46YAC" : { - "sku" : "VS9R2VWDK4T46YAC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "256 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:m4.16xlarge", - "operation" : "Hourly", - "dedicatedEbsThroughput" : "10000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JR4AM7VS63CTEPMN" : { - "sku" : "JR4AM7VS63CTEPMN", - "productFamily" : "Storage", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "storageMedia" : "SSD-backed", - "volumeType" : "Provisioned IOPS", - "maxVolumeSize" : "16 TiB", - "maxIopsvolume" : "20000", - "maxThroughputvolume" : "320 MB/sec", - "usagetype" : "EBS:VolumeUsage.piops", - "operation" : "", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VP7WYZSF63TZQ25D" : { - "sku" : "VP7WYZSF63TZQ25D", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "34.2 GiB", - "storage" : "1 x 850", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m2.2xlarge", - "operation" : "RunInstances:0006", - "ecu" : "13", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6TY9KK9HGP4Z383Q" : { - "sku" : "6TY9KK9HGP4Z383Q", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "60 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.8xlarge", - "operation" : "RunInstances:0010", - "ecu" : "108", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2S47E3PRB8XVH9QV" : { - "sku" : "2S47E3PRB8XVH9QV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.0 GHz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.2xlarge", - "operation" : "RunInstances", - "ecu" : "Variable", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GQZCFDP9G7RHFB9X" : { - "sku" : "GQZCFDP9G7RHFB9X", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.16xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "12000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "G58S7QPRR2YBRCEW" : { - "sku" : "G58S7QPRR2YBRCEW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.8xlarge", - "operation" : "RunInstances:0102", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7YAZRK59RPPWSKMN" : { - "sku" : "7YAZRK59RPPWSKMN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "17.1 GiB", - "storage" : "1 x 420", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m2.xlarge", - "operation" : "RunInstances:0002", - "ecu" : "6.5", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VNX2EXRCP445NC9K" : { - "sku" : "VNX2EXRCP445NC9K", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "8 x 800 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i2.8xlarge", - "operation" : "RunInstances:0010", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TJN762HY6CCQEX25" : { - "sku" : "TJN762HY6CCQEX25", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "4 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i2.4xlarge", - "operation" : "RunInstances:0002", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JTDCCHG4KZ5M8H8N" : { - "sku" : "JTDCCHG4KZ5M8H8N", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.large", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "7.5 GiB", - "storage" : "2 x 420", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m1.large", - "operation" : "RunInstances:000g", - "ecu" : "4", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TYZADFBQUJ5K2FN7" : { - "sku" : "TYZADFBQUJ5K2FN7", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Outbound", - "fromLocation" : "Asia Pacific (Singapore)", - "fromLocationType" : "AWS Region", - "toLocation" : "US East (N. Virginia)", - "toLocationType" : "AWS Region", - "usagetype" : "APS1-USE1-AWS-Out-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "4CWD92A352MDCZ9Q" : { - "sku" : "4CWD92A352MDCZ9Q", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "7.5 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m3.large", - "operation" : "RunInstances:000g", - "ecu" : "6.5", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PHH3YFDMQYEVPEK4" : { - "sku" : "PHH3YFDMQYEVPEK4", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 960", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.8xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "91", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "B2SAE43884DJ529Q" : { - "sku" : "B2SAE43884DJ529Q", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:p2.xlarge", - "operation" : "RunInstances:0010", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MDWHVPMZ3JHUF4C8" : { - "sku" : "MDWHVPMZ3JHUF4C8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "17.1 GiB", - "storage" : "1 x 420", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m2.xlarge", - "operation" : "RunInstances:0006", - "ecu" : "6.5", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6NM6AHQ97YV7NWV2" : { - "sku" : "6NM6AHQ97YV7NWV2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "60 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.8xlarge", - "operation" : "RunInstances:000g", - "ecu" : "108", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VX7DJN9XPR7HMV2K" : { - "sku" : "VX7DJN9XPR7HMV2K", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:p2.xlarge", - "operation" : "RunInstances:000g", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RB56QANQ2YBHVFK2" : { - "sku" : "RB56QANQ2YBHVFK2", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:x1e.16xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "179", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "94UG4CXUHQVWH768" : { - "sku" : "94UG4CXUHQVWH768", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "8 x 1.9 NVMe SSD", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.16xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Z78M4CHWU3KRBC2H" : { - "sku" : "Z78M4CHWU3KRBC2H", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9VRMFY5RW5MYMD9F" : { - "sku" : "9VRMFY5RW5MYMD9F", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.18xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "72", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "144 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.18xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "9000 Mbps", - "ecu" : "278", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "144", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Z33PSF4NA7EKH68C" : { - "sku" : "Z33PSF4NA7EKH68C", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "8 x 800 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i2.8xlarge", - "operation" : "RunInstances:000g", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VK7DM9VN6XHH954M" : { - "sku" : "VK7DM9VN6XHH954M", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.16xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "12000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CZMS4AAZCDSZGNTD" : { - "sku" : "CZMS4AAZCDSZGNTD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.large", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "400 Mbps", - "ecu" : "135", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MYS2DJRWTYJAZ2G3" : { - "sku" : "MYS2DJRWTYJAZ2G3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "15 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.2xlarge", - "operation" : "RunInstances:0006", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "E3A2FAQ7KZXK2BME" : { - "sku" : "E3A2FAQ7KZXK2BME", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1.16xlarge", - "operation" : "RunInstances:0006", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Std", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TFK9JRBDPXTYU5ZM" : { - "sku" : "TFK9JRBDPXTYU5ZM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.8xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "6000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BQ3BGTNB2B9AK9XC" : { - "sku" : "BQ3BGTNB2B9AK9XC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 80 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "ebsOptimized" : "Yes", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:r3.xlarge", - "operation" : "Hourly", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CDHRWPJ4QQUN4CPP" : { - "sku" : "CDHRWPJ4QQUN4CPP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "68.4 GiB", - "storage" : "2 x 840", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m2.4xlarge", - "operation" : "RunInstances:0202", - "ecu" : "26", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "B36YBM4BFMUWZSG4" : { - "sku" : "B36YBM4BFMUWZSG4", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.large", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "7.5 GiB", - "storage" : "2 x 420", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m1.large", - "operation" : "RunInstances", - "ecu" : "4", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "22YA2RYTS4SSFJRY" : { - "sku" : "22YA2RYTS4SSFJRY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 800 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i2.xlarge", - "operation" : "RunInstances:0006", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "47GP959QAF69YPG5" : { - "sku" : "47GP959QAF69YPG5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YPSGG4AGGKWCT4F5" : { - "sku" : "YPSGG4AGGKWCT4F5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "1 x 120", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:x1e.xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VKHDPS8VTZRT43GD" : { - "sku" : "VKHDPS8VTZRT43GD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.9xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "72 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.9xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "4500 Mbps", - "ecu" : "139", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "72", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3E2DK2EWM3HWCYX7" : { - "sku" : "3E2DK2EWM3HWCYX7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "244 GiB", - "storage" : "24 x 2000 HDD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:d2.8xlarge", - "operation" : "RunInstances:0800", - "ecu" : "116", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JNEJWP3E6GZMD3DR" : { - "sku" : "JNEJWP3E6GZMD3DR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "60 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.8xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "132", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JZW848E84BCHGUHR" : { - "sku" : "JZW848E84BCHGUHR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:r4.large", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "400 Mbps", - "ecu" : "135", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9GWTW8S686K9W5FP" : { - "sku" : "9GWTW8S686K9W5FP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c1.medium", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "1.7 GiB", - "storage" : "1 x 350", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c1.medium", - "operation" : "RunInstances:0202", - "ecu" : "2", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "SQL Web", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7EQFT8UVNNKTV2AA" : { - "sku" : "7EQFT8UVNNKTV2AA", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Outbound", - "fromLocation" : "Asia Pacific (Tokyo)", - "fromLocationType" : "AWS Region", - "toLocation" : "US East (N. Virginia)", - "toLocationType" : "AWS Region", - "usagetype" : "APN1-USE1-AWS-Out-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "GH36ES6UF9N3TAPC" : { - "sku" : "GH36ES6UF9N3TAPC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "122 GiB", - "storage" : "12 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:d2.4xlarge", - "operation" : "RunInstances", - "ecu" : "56", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EEMNBPTSMJARKSKJ" : { - "sku" : "EEMNBPTSMJARKSKJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 80 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.xlarge", - "operation" : "RunInstances:0006", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "C8A3366T6RWMUWD6" : { - "sku" : "C8A3366T6RWMUWD6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "256 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.16xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "10000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NN2CMDZPNDJ4GWGU" : { - "sku" : "NN2CMDZPNDJ4GWGU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.large", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "400 Mbps", - "ecu" : "135", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PS7GTF4X2G9VEN36" : { - "sku" : "PS7GTF4X2G9VEN36", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "64 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.4xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "53.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JCAJXA8C736VK6KZ" : { - "sku" : "JCAJXA8C736VK6KZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.18xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "72", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "144 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.18xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "9000 Mbps", - "ecu" : "278", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "144", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4A3JNV4H2AJRA65Z" : { - "sku" : "4A3JNV4H2AJRA65Z", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "60 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:c4.8xlarge", - "operation" : "Hourly", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "132", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PRQPEPABCB4GFVSC" : { - "sku" : "PRQPEPABCB4GFVSC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "30 GiB", - "storage" : "2 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.4xlarge", - "operation" : "RunInstances:0002", - "ecu" : "55", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SVMA6TVRGD4B8MMP" : { - "sku" : "SVMA6TVRGD4B8MMP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "15 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.2xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AC2NWG73MEX4BBX3" : { - "sku" : "AC2NWG73MEX4BBX3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1.16xlarge", - "operation" : "RunInstances:000g", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UUX3B6ZG6M7C8N5A" : { - "sku" : "UUX3B6ZG6M7C8N5A", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "768 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:p2.16xlarge", - "operation" : "RunInstances:0800", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "16", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "J5HSGUZ5Y3QZKRJT" : { - "sku" : "J5HSGUZ5Y3QZKRJT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "4 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i2.4xlarge", - "operation" : "RunInstances:0102", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4J62B76AXGGMHG57" : { - "sku" : "4J62B76AXGGMHG57", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "7.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Y2TP2WYH8ZP2ZSNP" : { - "sku" : "Y2TP2WYH8ZP2ZSNP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "7.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZD2U9663ARS5XSMA" : { - "sku" : "ZD2U9663ARS5XSMA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "1 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:r3.2xlarge", - "operation" : "RunInstances:0800", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "K73JG8M9A8MW4QWP" : { - "sku" : "K73JG8M9A8MW4QWP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "8 x 1.9 NVMe SSD", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:i3.16xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XU7GMTDRK2VMN7K9" : { - "sku" : "XU7GMTDRK2VMN7K9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cr1.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670", - "memory" : "244 GiB", - "storage" : "2 x 120 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:cr1.8xlarge", - "operation" : "RunInstances:000g", - "ecu" : "88", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2NBCH8MGXY3QQ5ZH" : { - "sku" : "2NBCH8MGXY3QQ5ZH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.4xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5ZD4WU2CC6CZ2KXG" : { - "sku" : "5ZD4WU2CC6CZ2KXG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "7.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9HGFJGGDXTRDQUED" : { - "sku" : "9HGFJGGDXTRDQUED", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m3.2xlarge", - "operation" : "RunInstances:0002", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YHQ4HRT9DMUQV8QN" : { - "sku" : "YHQ4HRT9DMUQV8QN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "4 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.large", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QHXEDKXAPRFFF59N" : { - "sku" : "QHXEDKXAPRFFF59N", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "15 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.2xlarge", - "operation" : "RunInstances:0202", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5XB5GJ5E68GHCXVW" : { - "sku" : "5XB5GJ5E68GHCXVW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "7.5 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.xlarge", - "operation" : "RunInstances:0202", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "E22Q4PYY34TZ2E23" : { - "sku" : "E22Q4PYY34TZ2E23", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:r4.16xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "12000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "H446M8G8PYYV4XKM" : { - "sku" : "H446M8G8PYYV4XKM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:m4.2xlarge", - "operation" : "Hourly", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HKEJ2ZPKMXDAARWE" : { - "sku" : "HKEJ2ZPKMXDAARWE", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "8 x 800 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i2.8xlarge", - "operation" : "RunInstances:0202", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UPGE3ZJ573XGT9P7" : { - "sku" : "UPGE3ZJ573XGT9P7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cg1.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "GPU instance", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon x5570", - "memory" : "22.5 GiB", - "storage" : "2 x 840", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:cg1.4xlarge", - "operation" : "RunInstances:0006", - "ecu" : "33.5", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2E92X23Q6E3W4UYQ" : { - "sku" : "2E92X23Q6E3W4UYQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "61 GiB", - "storage" : "6 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:d2.2xlarge", - "operation" : "RunInstances:000g", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6U5VMCFHHMTH3QW6" : { - "sku" : "6U5VMCFHHMTH3QW6", - "productFamily" : "Storage", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "storageMedia" : "HDD-backed", - "volumeType" : "Cold HDD", - "maxVolumeSize" : "16 TiB", - "maxIopsvolume" : "250 - based on 1 MiB I/O size", - "maxThroughputvolume" : "250 MiB/s", - "usagetype" : "EBS:VolumeUsage.sc1", - "operation" : "", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "WXU9QBE38YNQDZE3" : { - "sku" : "WXU9QBE38YNQDZE3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "7.5 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m3.large", - "operation" : "RunInstances:0002", - "ecu" : "6.5", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TMS2BYDD3JMP8ZHP" : { - "sku" : "TMS2BYDD3JMP8ZHP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:r4.xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "800 Mbps", - "ecu" : "Variable", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7E7KNSKBJUR3PK9V" : { - "sku" : "7E7KNSKBJUR3PK9V", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:p3.8xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "94", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7YFC8DX6JB9UEFUF" : { - "sku" : "7YFC8DX6JB9UEFUF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "3,904 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.32xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "340", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VJVE25YH42K8TGEJ" : { - "sku" : "VJVE25YH42K8TGEJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "8 x 800 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i2.8xlarge", - "operation" : "RunInstances:0006", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "C92P55KXZZVQPVRT" : { - "sku" : "C92P55KXZZVQPVRT", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 960", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.8xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "91", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VHC3YWSZ6ZFZPJN4" : { - "sku" : "VHC3YWSZ6ZFZPJN4", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.2xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CTZ6QQ5C598KFDED" : { - "sku" : "CTZ6QQ5C598KFDED", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 0.95 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:i3.xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "850 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3D264ECCWU44GADE" : { - "sku" : "3D264ECCWU44GADE", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "17.1 GiB", - "storage" : "1 x 420", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m2.xlarge", - "operation" : "RunInstances:0006", - "ecu" : "6.5", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SXK3NYF7FUGNCYNW" : { - "sku" : "SXK3NYF7FUGNCYNW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "2 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i2.2xlarge", - "operation" : "RunInstances:0102", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "X9NV55CM3DDZH8WM" : { - "sku" : "X9NV55CM3DDZH8WM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "f1.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "memory" : "976 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:f1.16xlarge", - "operation" : "RunInstances:0800", - "ecu" : "188", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "M9J2DPTBA6842MJH" : { - "sku" : "M9J2DPTBA6842MJH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:r3.large", - "operation" : "RunInstances:0800", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7SQ2BQ8A45ARW92Z" : { - "sku" : "7SQ2BQ8A45ARW92Z", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:m4.large", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "450 Mbps", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NUX3MUG87XRK86AD" : { - "sku" : "NUX3MUG87XRK86AD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "8 x 800 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i2.8xlarge", - "operation" : "RunInstances:0202", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HZ8DFZSZ7N4XS65D" : { - "sku" : "HZ8DFZSZ7N4XS65D", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.16xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "179", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FVBNJRJQXKTZMPVR" : { - "sku" : "FVBNJRJQXKTZMPVR", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "1 x 480", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.4xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "47", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "X3Q7CMUEB38C83RH" : { - "sku" : "X3Q7CMUEB38C83RH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "4 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i2.4xlarge", - "operation" : "RunInstances", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VMMGB42RKPM3E742" : { - "sku" : "VMMGB42RKPM3E742", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "15 GiB", - "storage" : "4 x 420", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:m1.xlarge", - "operation" : "RunInstances:0800", - "ecu" : "8", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "R9PWNAHCDMYRXNMW" : { - "sku" : "R9PWNAHCDMYRXNMW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.2xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "89WDVYSF7M632K4P" : { - "sku" : "89WDVYSF7M632K4P", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:g3.16xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "4", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "V34YMXZ5WQ9WHREH" : { - "sku" : "V34YMXZ5WQ9WHREH", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.16xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "179", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MJKCR5ZSNFXJ35EA" : { - "sku" : "MJKCR5ZSNFXJ35EA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.4xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NCQEUP5F7MP2C7VT" : { - "sku" : "NCQEUP5F7MP2C7VT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "hs1.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "17", - "physicalProcessor" : "Intel Xeon E5-2650", - "clockSpeed" : "2 GHz", - "memory" : "117 GiB", - "storage" : "24 x 2000", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:hs1.8xlarge", - "operation" : "RunInstances:0002", - "ecu" : "35", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2RZ6RRUC3U8UVYP9" : { - "sku" : "2RZ6RRUC3U8UVYP9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m3.xlarge", - "operation" : "RunInstances:0102", - "ecu" : "13", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "X5T4377XTFNYDM3K" : { - "sku" : "X5T4377XTFNYDM3K", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4B63NWS2TS69S46X" : { - "sku" : "4B63NWS2TS69S46X", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "122 GiB", - "storage" : "12 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:d2.4xlarge", - "operation" : "RunInstances:0202", - "ecu" : "56", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "298AWKD7RC822MQJ" : { - "sku" : "298AWKD7RC822MQJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "768 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:p2.16xlarge", - "operation" : "RunInstances:0010", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "16", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QURFZDZRCJFUV9KZ" : { - "sku" : "QURFZDZRCJFUV9KZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "61 GiB", - "storage" : "6 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:d2.2xlarge", - "operation" : "RunInstances:0010", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YMR9864XJTF2JBSD" : { - "sku" : "YMR9864XJTF2JBSD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t1.micro", - "currentGeneration" : "No", - "instanceFamily" : "Micro instances", - "vcpu" : "1", - "physicalProcessor" : "Variable", - "memory" : "0.613 GiB", - "storage" : "EBS only", - "networkPerformance" : "Very Low", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t1.micro", - "operation" : "RunInstances:0002", - "ecu" : "26", - "normalizationSizeFactor" : "0.5", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FMN62RHYUNCFD57B" : { - "sku" : "FMN62RHYUNCFD57B", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.nano", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.3 GHz", - "memory" : "0.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "Low", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:t2.nano", - "operation" : "RunInstances:0800", - "ecu" : "Variable", - "normalizationSizeFactor" : "0.25", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PQPJ4CV7Q5CNYCFD" : { - "sku" : "PQPJ4CV7Q5CNYCFD", - "productFamily" : "Dedicated Host", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "memory" : "NA", - "storage" : "NA", - "networkPerformance" : "NA", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostUsage:p2", - "operation" : "RunInstances", - "ecu" : "NA", - "gpu" : "16", - "instanceCapacity16xlarge" : "1", - "instanceCapacity8xlarge" : "2", - "instanceCapacityXlarge" : "16", - "normalizationSizeFactor" : "NA", - "physicalCores" : "36", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4WKDEBCNFZKFEKEZ" : { - "sku" : "4WKDEBCNFZKFEKEZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "61 GiB", - "storage" : "6 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:d2.2xlarge", - "operation" : "RunInstances", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "KTX4HGW8878XMM7R" : { - "sku" : "KTX4HGW8878XMM7R", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "3.75 GiB", - "storage" : "2 x 16 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:c3.large", - "operation" : "RunInstances:0800", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AJVKWKD84J3BCR86" : { - "sku" : "AJVKWKD84J3BCR86", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "7.5 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m3.large", - "operation" : "RunInstances:0102", - "ecu" : "6.5", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "M3V33TUCANWGSDGH" : { - "sku" : "M3V33TUCANWGSDGH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "60 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.8xlarge", - "operation" : "RunInstances:0102", - "ecu" : "108", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CAJNJQPQHHFV48TD" : { - "sku" : "CAJNJQPQHHFV48TD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c5.xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RA5N9YR5B2CYJ8U7" : { - "sku" : "RA5N9YR5B2CYJ8U7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:c5.2xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BPK6ZJ9DW5BR885X" : { - "sku" : "BPK6ZJ9DW5BR885X", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 800 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i2.xlarge", - "operation" : "RunInstances:0202", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MJFVKRE8CR2DYKWF" : { - "sku" : "MJFVKRE8CR2DYKWF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "2 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i2.2xlarge", - "operation" : "RunInstances:0202", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SCM48G5B7MFU9DV3" : { - "sku" : "SCM48G5B7MFU9DV3", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Inbound", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "AWS GovCloud (US)", - "toLocationType" : "AWS Region", - "usagetype" : "USE1-UGW1-AWS-In-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "TBEWTV892NWKQS69" : { - "sku" : "TBEWTV892NWKQS69", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "1 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.2xlarge", - "operation" : "RunInstances:0006", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NBP9U2SVG37VG5S9" : { - "sku" : "NBP9U2SVG37VG5S9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "15 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.2xlarge", - "operation" : "RunInstances", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AW64VE5DA5MH4J22" : { - "sku" : "AW64VE5DA5MH4J22", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "15 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.2xlarge", - "operation" : "RunInstances:0102", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GJDDYRCUFGU7BA7D" : { - "sku" : "GJDDYRCUFGU7BA7D", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Inbound", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "EU (Frankfurt)", - "toLocationType" : "AWS Region", - "usagetype" : "USE1-EUC1-AWS-In-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "3J2VT9RG6ADN3BVK" : { - "sku" : "3J2VT9RG6ADN3BVK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "2 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:i2.2xlarge", - "operation" : "RunInstances:0800", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "U9A5GD49U2QWSB8N" : { - "sku" : "U9A5GD49U2QWSB8N", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.16xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "12000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TSDEZUXYZHBDK9YE" : { - "sku" : "TSDEZUXYZHBDK9YE", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "3,904 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:x1e.32xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "340", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3RUU5T58T7XAFAAF" : { - "sku" : "3RUU5T58T7XAFAAF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cr1.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670", - "memory" : "244 GiB", - "storage" : "2 x 120 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:cr1.8xlarge", - "operation" : "RunInstances", - "ecu" : "88", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "J5XXRJGFYZHJVQZJ" : { - "sku" : "J5XXRJGFYZHJVQZJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 80 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r3.xlarge", - "operation" : "RunInstances", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6S9PZ5AUPX5MV74N" : { - "sku" : "6S9PZ5AUPX5MV74N", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "7.5 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.xlarge", - "operation" : "RunInstances:0010", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TE2QPK3WJ4MBEASP" : { - "sku" : "TE2QPK3WJ4MBEASP", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.16xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "179", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "A2QSKG5CZVECRMUE" : { - "sku" : "A2QSKG5CZVECRMUE", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "64 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.4xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "53.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UY5E8NPU7EQX4UJD" : { - "sku" : "UY5E8NPU7EQX4UJD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "15 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.2xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QQ6P3Q6HJP7W7RYN" : { - "sku" : "QQ6P3Q6HJP7W7RYN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "1 x 320 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.4xlarge", - "operation" : "RunInstances:0010", - "ecu" : "52", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4YPVS7TMJF4ESQ24" : { - "sku" : "4YPVS7TMJF4ESQ24", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.4xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "S3H5EEV3EEF3YHPE" : { - "sku" : "S3H5EEV3EEF3YHPE", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "1 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.2xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Z926BDVSB7Q736SZ" : { - "sku" : "Z926BDVSB7Q736SZ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "8 x 1.9 NVMe SSD", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:i3.16xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4C7N4APU9GEUZ6H6" : { - "sku" : "4C7N4APU9GEUZ6H6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "3.75 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.large", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9Z79M3D9R4KBF3U2" : { - "sku" : "9Z79M3D9R4KBF3U2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:g3.4xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "0", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "T66YUXKX79359UWK" : { - "sku" : "T66YUXKX79359UWK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "17.1 GiB", - "storage" : "1 x 420", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:m2.xlarge", - "operation" : "RunInstances:0800", - "ecu" : "6.5", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AJPCC5PE24CKEBWW" : { - "sku" : "AJPCC5PE24CKEBWW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "61 GiB", - "storage" : "6 x 2000 HDD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:d2.2xlarge", - "operation" : "RunInstances:0800", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CZ9BHU45SGEFD4MA" : { - "sku" : "CZ9BHU45SGEFD4MA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "256 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.16xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "10000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RT74PXCRDW3YR4VQ" : { - "sku" : "RT74PXCRDW3YR4VQ", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "1 x 480", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:x1e.4xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "47", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SCK4YS7YAEFFVGNK" : { - "sku" : "SCK4YS7YAEFFVGNK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "256 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m4.16xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "10000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Z2FWTR8FP7YR4UXY" : { - "sku" : "Z2FWTR8FP7YR4UXY", - "productFamily" : "Dedicated Host", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2", - "instanceFamily" : "Storage optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "NA", - "storage" : "NA", - "networkPerformance" : "NA", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostUsage:d2", - "operation" : "RunInstances", - "ecu" : "NA", - "instanceCapacity2xlarge" : "4", - "instanceCapacity4xlarge" : "2", - "instanceCapacity8xlarge" : "1", - "instanceCapacityXlarge" : "8", - "normalizationSizeFactor" : "NA", - "physicalCores" : "24", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "A3G83M36QWPVFFSP" : { - "sku" : "A3G83M36QWPVFFSP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.small", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "1.7 GiB", - "storage" : "1 x 160", - "networkPerformance" : "Low", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage", - "operation" : "RunInstances:0002", - "ecu" : "Variable", - "normalizationSizeFactor" : "1", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "PJY6CW7GDQYM5RHH" : { - "sku" : "PJY6CW7GDQYM5RHH", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Inbound", - "fromLocation" : "US East (Ohio)", - "fromLocationType" : "AWS Region", - "toLocation" : "US East (N. Virginia)", - "toLocationType" : "AWS Region", - "usagetype" : "USE2-USE1-AWS-In-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "R48BU675BDZRSA46" : { - "sku" : "R48BU675BDZRSA46", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.medium", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "3.75 GiB", - "storage" : "1 x 410", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m1.medium", - "operation" : "RunInstances:0202", - "ecu" : "2", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "SQL Web", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "22BY823JMH3UZ9AS" : { - "sku" : "22BY823JMH3UZ9AS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.9xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "72 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.9xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "4500 Mbps", - "ecu" : "139", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "72", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ANHAK96GJ32FCXM9" : { - "sku" : "ANHAK96GJ32FCXM9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "4 x 1.9 NVMe SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.8xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DRXSTBE8SCECG53R" : { - "sku" : "DRXSTBE8SCECG53R", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.16xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "179", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "N7TBAPPYVJFAVWBC" : { - "sku" : "N7TBAPPYVJFAVWBC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:r4.large", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "400 Mbps", - "ecu" : "135", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "H4TBXNHHCPZMWURK" : { - "sku" : "H4TBXNHHCPZMWURK", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Inbound", - "fromLocation" : "EU (Ireland)", - "fromLocationType" : "AWS Region", - "toLocation" : "US East (N. Virginia)", - "toLocationType" : "AWS Region", - "usagetype" : "EU-USE1-AWS-In-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "WTV2MMMZFYFVHXYW" : { - "sku" : "WTV2MMMZFYFVHXYW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "1 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.2xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FP4BCUYCYE74237A" : { - "sku" : "FP4BCUYCYE74237A", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "256 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:m4.16xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "10000 Mbps", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "T5ZANFQ2RH352Q48" : { - "sku" : "T5ZANFQ2RH352Q48", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "15 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.2xlarge", - "operation" : "RunInstances:0102", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZUTU5QZ3PZY7BWCS" : { - "sku" : "ZUTU5QZ3PZY7BWCS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.9xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "72 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.9xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "4500 Mbps", - "ecu" : "139", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "72", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "B4JUK3U7ZG63RGSF" : { - "sku" : "B4JUK3U7ZG63RGSF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "30 GiB", - "storage" : "2 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.4xlarge", - "operation" : "RunInstances", - "ecu" : "55", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RG525W32DHGJSVCS" : { - "sku" : "RG525W32DHGJSVCS", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "68.4 GiB", - "storage" : "2 x 840", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m2.4xlarge", - "operation" : "RunInstances:000g", - "ecu" : "26", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7SE3X65CKC25URNP" : { - "sku" : "7SE3X65CKC25URNP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m3.2xlarge", - "operation" : "RunInstances:0102", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YHTMJU9RK3XB4R35" : { - "sku" : "YHTMJU9RK3XB4R35", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:p2.xlarge", - "operation" : "RunInstances:000g", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2R3TZFKRGVGPMMC9" : { - "sku" : "2R3TZFKRGVGPMMC9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:p3.2xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Q9SS9CE4RXPCX5KG" : { - "sku" : "Q9SS9CE4RXPCX5KG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 0.95 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "850 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BNQSZ9699GKWMJ72" : { - "sku" : "BNQSZ9699GKWMJ72", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "7.5 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "750 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MJH659788VC2CJYV" : { - "sku" : "MJH659788VC2CJYV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "15 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c4.2xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4QXRNM4XXHKD5KJH" : { - "sku" : "4QXRNM4XXHKD5KJH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 0.475 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.large", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "425 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "8744TF3WB3SSENYH" : { - "sku" : "8744TF3WB3SSENYH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "60 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.8xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "132", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "4U7JAK7UHS4DSAR8" : { - "sku" : "4U7JAK7UHS4DSAR8", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.4xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "3000 Mbps", - "ecu" : "99", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5JB8CSWXY6V42ECR" : { - "sku" : "5JB8CSWXY6V42ECR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:x1.16xlarge", - "operation" : "RunInstances:0800", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XVUGSEGTBYPTMD8N" : { - "sku" : "XVUGSEGTBYPTMD8N", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m3.2xlarge", - "operation" : "RunInstances:0006", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3SK2R9VZ8N24UV8B" : { - "sku" : "3SK2R9VZ8N24UV8B", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "1 x 240", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.2xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "23", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UBAX9CMEYA8JJEHX" : { - "sku" : "UBAX9CMEYA8JJEHX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "60 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:c3.8xlarge", - "operation" : "RunInstances:0800", - "ecu" : "108", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YGPA59CYGTE7GDPD" : { - "sku" : "YGPA59CYGTE7GDPD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "3,904 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.32xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "340", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RKEGB47DHY7WYBKQ" : { - "sku" : "RKEGB47DHY7WYBKQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.2xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "61 GiB", - "storage" : "2 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i2.2xlarge", - "operation" : "RunInstances:000g", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "P4S7RSCXQEBBBKQF" : { - "sku" : "P4S7RSCXQEBBBKQF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "t2.medium", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "clockSpeed" : "Up to 3.3 GHz", - "memory" : "4 GiB", - "storage" : "EBS only", - "networkPerformance" : "Low to Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:t2.medium", - "operation" : "RunInstances:000g", - "ecu" : "Variable", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "USG92YSEYUCAFZCC" : { - "sku" : "USG92YSEYUCAFZCC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:r4.16xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "12000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7AF3HUR3SD2EN693" : { - "sku" : "7AF3HUR3SD2EN693", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.10xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "40", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "160 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.10xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "80", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "6XRAZB77YRS54YH2" : { - "sku" : "6XRAZB77YRS54YH2", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.medium", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "3.75 GiB", - "storage" : "1 x 4 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m3.medium", - "operation" : "RunInstances:0010", - "ecu" : "3", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DMR9Q6F9N9PFPE9C" : { - "sku" : "DMR9Q6F9N9PFPE9C", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "1 x 120", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Y9MW2V2ZRXFQMQHU" : { - "sku" : "Y9MW2V2ZRXFQMQHU", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.medium", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "3.75 GiB", - "storage" : "1 x 410", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m1.medium", - "operation" : "RunInstances:0002", - "ecu" : "2", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "V2PCSTGVBXJBKMTJ" : { - "sku" : "V2PCSTGVBXJBKMTJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "4 x 1.9 NVMe SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.8xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JJR4TQHH8JY9D8BV" : { - "sku" : "JJR4TQHH8JY9D8BV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "4 x 1.9 NVMe SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.8xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2CPTVQN6QMQ24WAQ" : { - "sku" : "2CPTVQN6QMQ24WAQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.16xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "12000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QWBZPDE9BGTPCYWW" : { - "sku" : "QWBZPDE9BGTPCYWW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c1.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "7 GiB", - "storage" : "4 x 420", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c1.xlarge", - "operation" : "RunInstances", - "ecu" : "20", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BNBFMJCU6HWE4NK6" : { - "sku" : "BNBFMJCU6HWE4NK6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:c5.4xlarge", - "operation" : "Hourly", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "K9GNYJBAEBJGBE3S" : { - "sku" : "K9GNYJBAEBJGBE3S", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 0.475 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.large", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "425 Mbps", - "ecu" : "13", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "S8J79EPAU2WP28Z5" : { - "sku" : "S8J79EPAU2WP28Z5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.medium", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "3.75 GiB", - "storage" : "1 x 410", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:m1.medium", - "operation" : "RunInstances:0006", - "ecu" : "2", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "SQL Std", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "VV3ASRE8RPAY7C9U" : { - "sku" : "VV3ASRE8RPAY7C9U", - "productFamily" : "System Operation", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "provisioned" : "No", - "group" : "EBS I/O Requests", - "groupDescription" : "Input/Output Operation", - "usagetype" : "EBS:VolumeIOUsage", - "operation" : "", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XSCV3UUT79TB83MN" : { - "sku" : "XSCV3UUT79TB83MN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "8 x 800 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i2.8xlarge", - "operation" : "RunInstances:0002", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "H7NN7P9Z3E8KY8UD" : { - "sku" : "H7NN7P9Z3E8KY8UD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.18xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "72", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "144 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.18xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "9000 Mbps", - "ecu" : "278", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "144", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XNUKM2T6VT564KF3" : { - "sku" : "XNUKM2T6VT564KF3", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.9xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "72 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.9xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "4500 Mbps", - "ecu" : "139", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "72", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "B9MF6CH342MVWQRW" : { - "sku" : "B9MF6CH342MVWQRW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "15 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c3.2xlarge", - "operation" : "RunInstances:0010", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "UW7KAEYR4CZ6SHKM" : { - "sku" : "UW7KAEYR4CZ6SHKM", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Inbound", - "fromLocation" : "Asia Pacific (Tokyo)", - "fromLocationType" : "AWS Region", - "toLocation" : "US East (N. Virginia)", - "toLocationType" : "AWS Region", - "usagetype" : "APN1-USE1-AWS-In-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "SU7X27GC72VJG45S" : { - "sku" : "SU7X27GC72VJG45S", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "1 x 240", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.2xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "23", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NJ6JSD62VJ72A8GJ" : { - "sku" : "NJ6JSD62VJ72A8GJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m3.xlarge", - "operation" : "RunInstances:0202", - "ecu" : "13", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SFZ2UCQNRZD2WN5F" : { - "sku" : "SFZ2UCQNRZD2WN5F", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:x1e.16xlarge", - "operation" : "Hourly", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "179", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "DWKBVCX644ZFSPZC" : { - "sku" : "DWKBVCX644ZFSPZC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.medium", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "3.75 GiB", - "storage" : "1 x 4 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m3.medium", - "operation" : "RunInstances:0006", - "ecu" : "3", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "GTVQFYE9FHRN6U2Z" : { - "sku" : "GTVQFYE9FHRN6U2Z", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "15 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.2xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "EW588KWA3CB5EA96" : { - "sku" : "EW588KWA3CB5EA96", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "4 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.large", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3XXEP5YX5DYFE8HD" : { - "sku" : "3XXEP5YX5DYFE8HD", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "1 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.2xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MN9WQ6GC5TGSSY9E" : { - "sku" : "MN9WQ6GC5TGSSY9E", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 (Sandy Bridge)", - "clockSpeed" : "2.6 GHz", - "memory" : "60 GiB", - "storage" : "2 x 120 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:g2.8xlarge", - "operation" : "RunInstances:0002", - "ecu" : "104", - "gpu" : "4", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JNSD8R3ZBZZH9BMM" : { - "sku" : "JNSD8R3ZBZZH9BMM", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 0.95 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "850 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7DZ2ZNK9ZVM2D8RJ" : { - "sku" : "7DZ2ZNK9ZVM2D8RJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "4 x 1.9 NVMe SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i3.8xlarge", - "operation" : "RunInstances:0010", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9SSB4RSRXFF8HK42" : { - "sku" : "9SSB4RSRXFF8HK42", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "30 GiB", - "storage" : "2 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.4xlarge", - "operation" : "RunInstances:000g", - "ecu" : "55", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AQ4BJM4AR87GBQDX" : { - "sku" : "AQ4BJM4AR87GBQDX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "30 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.4xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CX88FC6J9JAZ8TJW" : { - "sku" : "CX88FC6J9JAZ8TJW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "16 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.2xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "NP6CAG27PTSDFJW4" : { - "sku" : "NP6CAG27PTSDFJW4", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "d2.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2676v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "244 GiB", - "storage" : "24 x 2000 HDD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:d2.8xlarge", - "operation" : "RunInstances:0800", - "ecu" : "116", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AS5YFH475AAXG3U6" : { - "sku" : "AS5YFH475AAXG3U6", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m4.2xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "K97AXAD4GAYGE99Y" : { - "sku" : "K97AXAD4GAYGE99Y", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "f1.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "memory" : "976 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:f1.16xlarge", - "operation" : "RunInstances:000g", - "ecu" : "188", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YCTHWE4X8352UUP7" : { - "sku" : "YCTHWE4X8352UUP7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 0.95 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:i3.xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "850 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "2Y3RARMUM73VYH92" : { - "sku" : "2Y3RARMUM73VYH92", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "30 GiB", - "storage" : "2 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c3.4xlarge", - "operation" : "RunInstances:0002", - "ecu" : "55", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "69HHGBJ3N8F7N3PN" : { - "sku" : "69HHGBJ3N8F7N3PN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:g3.8xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "0", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "2", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "C4ADNNGW2WA5AJWY" : { - "sku" : "C4ADNNGW2WA5AJWY", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "1 x 480", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:x1e.4xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "47", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9XSHJSECKR9ATRQG" : { - "sku" : "9XSHJSECKR9ATRQG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "f1.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:f1.2xlarge", - "operation" : "RunInstances", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QFJGATXWKZNECDMG" : { - "sku" : "QFJGATXWKZNECDMG", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:c5.4xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZVXTQDHA6WPZ4MZA" : { - "sku" : "ZVXTQDHA6WPZ4MZA", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "15 GiB", - "storage" : "2 x 80 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "ebsOptimized" : "Yes", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:c3.2xlarge", - "operation" : "Hourly", - "ecu" : "28", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5MJUCCSSP8MZ34U5" : { - "sku" : "5MJUCCSSP8MZ34U5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "7.5 GiB", - "storage" : "2 x 40 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.xlarge", - "operation" : "RunInstances:000g", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9VUNFNF2X9X7UC95" : { - "sku" : "9VUNFNF2X9X7UC95", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "15.25 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.large", - "operation" : "RunInstances:000g", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "HKQX2V6VYDVCQE4V" : { - "sku" : "HKQX2V6VYDVCQE4V", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "cc2.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670", - "clockSpeed" : "2.6 GHz", - "memory" : "60.5 GiB", - "storage" : "4 x 840", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "DedicatedUsage:cc2.8xlarge", - "operation" : "RunInstances:0800", - "ecu" : "88", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "77H9Y9KFP98VPQ8Y" : { - "sku" : "77H9Y9KFP98VPQ8Y", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.16xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "12000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5QUVP6VPNFNBWMDW" : { - "sku" : "5QUVP6VPNFNBWMDW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "g3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:g3.4xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "0", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TJYZERFDZ38JVQQW" : { - "sku" : "TJYZERFDZ38JVQQW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 800 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i2.xlarge", - "operation" : "RunInstances:0010", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3ARUYSTGB7ZSA582" : { - "sku" : "3ARUYSTGB7ZSA582", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "68.4 GiB", - "storage" : "2 x 840", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "NA", - "ebsOptimized" : "Yes", - "operatingSystem" : "NA", - "licenseModel" : "NA", - "usagetype" : "EBSOptimized:m2.4xlarge", - "operation" : "Hourly", - "ecu" : "26", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "3XXW5XAES8B7AAAP" : { - "sku" : "3XXW5XAES8B7AAAP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.8xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "6000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QTBCAR9ZB82ZM54B" : { - "sku" : "QTBCAR9ZB82ZM54B", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.large", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "450 Mbps", - "ecu" : "6.5", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZDQ8JPG9VUPFXHXJ" : { - "sku" : "ZDQ8JPG9VUPFXHXJ", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1e.16xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "7000 Mbps", - "ecu" : "179", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "385FHNM4MG8P3KGR" : { - "sku" : "385FHNM4MG8P3KGR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "4 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i2.4xlarge", - "operation" : "RunInstances:0102", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "87S4RVHRSZ8J8ZD5" : { - "sku" : "87S4RVHRSZ8J8ZD5", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "4 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.large", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "8", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BZBTYKT6J87853AW" : { - "sku" : "BZBTYKT6J87853AW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c1.medium", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "1.7 GiB", - "storage" : "1 x 350", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c1.medium", - "operation" : "RunInstances:0010", - "ecu" : "2", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "H9V234B3K9QAR4NJ" : { - "sku" : "H9V234B3K9QAR4NJ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:p2.xlarge", - "operation" : "RunInstances:0002", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "B7KQBWQQMASEJN3N" : { - "sku" : "B7KQBWQQMASEJN3N", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "30 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.4xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "2000 Mbps", - "ecu" : "62", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SGCXRY4DA899SRWQ" : { - "sku" : "SGCXRY4DA899SRWQ", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p2.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "768 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:p2.16xlarge", - "operation" : "RunInstances:0010", - "ecu" : "188", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "16", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MUSDPAYU48C7WCHN" : { - "sku" : "MUSDPAYU48C7WCHN", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c1.medium", - "currentGeneration" : "No", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "1.7 GiB", - "storage" : "1 x 350", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c1.medium", - "operation" : "RunInstances", - "ecu" : "2", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "TDJBW85D7BJ6AB9K" : { - "sku" : "TDJBW85D7BJ6AB9K", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 960", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:x1e.8xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "3500 Mbps", - "ecu" : "91", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "75XER897G2X2ZNFP" : { - "sku" : "75XER897G2X2ZNFP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "8 x 1.9 NVMe SSD", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.16xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "14000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CDBGJDEAQMWTZ2TB" : { - "sku" : "CDBGJDEAQMWTZ2TB", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "BoxUsage:x1.32xlarge", - "operation" : "RunInstances:0800", - "ecu" : "349", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "285FWCDXDE9KA35M" : { - "sku" : "285FWCDXDE9KA35M", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "7.5 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m3.large", - "operation" : "RunInstances:0202", - "ecu" : "6.5", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "WU8MR6W7VJJUBGWW" : { - "sku" : "WU8MR6W7VJJUBGWW", - "productFamily" : "Compute", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "8", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "1 x 240", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:x1e.2xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "23", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "5KHB4S5E8M74C6ES" : { - "sku" : "5KHB4S5E8M74C6ES", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 800 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:i2.xlarge", - "operation" : "RunInstances", - "ecu" : "14", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "QVZGU743YEW7J8ZP" : { - "sku" : "QVZGU743YEW7J8ZP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "4 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i2.4xlarge", - "operation" : "RunInstances:0006", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "U8B7D4SWAWCW5E9F" : { - "sku" : "U8B7D4SWAWCW5E9F", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1e.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "4", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "122 GiB", - "storage" : "1 x 120", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:x1e.xlarge", - "operation" : "RunInstances:0800", - "dedicatedEbsThroughput" : "500 Mbps", - "ecu" : "12", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YXBZYU573BYR2VBR" : { - "sku" : "YXBZYU573BYR2VBR", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "1 x 320 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.4xlarge", - "operation" : "RunInstances:0006", - "ecu" : "52", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9ZMBKXJZ46UNKSTH" : { - "sku" : "9ZMBKXJZ46UNKSTH", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.8xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "6000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "BUEPRDN9GYBNSP3F" : { - "sku" : "BUEPRDN9GYBNSP3F", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:p3.2xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Q7J8RTVDQ7R7AEP9" : { - "sku" : "Q7J8RTVDQ7R7AEP9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "3.75 GiB", - "storage" : "2 x 16 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "32-bit or 64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.large", - "operation" : "RunInstances:0202", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7V39RZQPSWWKKC2U" : { - "sku" : "7V39RZQPSWWKKC2U", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2680 v2 (Ivy Bridge)", - "clockSpeed" : "2.8 GHz", - "memory" : "30 GiB", - "storage" : "2 x 160 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c3.4xlarge", - "operation" : "RunInstances:0202", - "ecu" : "55", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "JTQJ2YNV8MN79SVF" : { - "sku" : "JTQJ2YNV8MN79SVF", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.18xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "72", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "144 GiB", - "storage" : "EBS only", - "networkPerformance" : "25 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:c5.18xlarge", - "operation" : "RunInstances", - "dedicatedEbsThroughput" : "9000 Mbps", - "ecu" : "278", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "144", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7P443J9REGZVNYQY" : { - "sku" : "7P443J9REGZVNYQY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "244 GiB", - "storage" : "2 x 320 SSD", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r3.8xlarge", - "operation" : "RunInstances:0010", - "ecu" : "104", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "9HPS57TE9XYPQEV9" : { - "sku" : "9HPS57TE9XYPQEV9", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.large", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "2", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "7.5 GiB", - "storage" : "1 x 32 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m3.large", - "operation" : "RunInstances:0202", - "ecu" : "6.5", - "normalizationSizeFactor" : "4", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "R4QE46FY6EGW3G4T" : { - "sku" : "R4QE46FY6EGW3G4T", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c5.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Platinum 8124M", - "clockSpeed" : "3.0 Ghz", - "memory" : "8 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c5.xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "Upto 2250 Mbps", - "ecu" : "16", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel AVX512, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "AJYJZ3X3S2AJ2D6D" : { - "sku" : "AJYJZ3X3S2AJ2D6D", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "p3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:p3.2xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "gpu" : "1", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "7MZTFYDPAUJUXG8R" : { - "sku" : "7MZTFYDPAUJUXG8R", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "f1.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "memory" : "122 GiB", - "storage" : "EBS only", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "RHEL", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:f1.2xlarge", - "operation" : "RunInstances:0010", - "ecu" : "26", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "RM8MDNG928Q7RY5N" : { - "sku" : "RM8MDNG928Q7RY5N", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed" : "2.4 GHz", - "memory" : "32 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:m4.2xlarge", - "operation" : "RunInstances:0002", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "XGXYRYWGNXSSEUVT" : { - "sku" : "XGXYRYWGNXSSEUVT", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Outbound", - "fromLocation" : "US East (N. Virginia)", - "fromLocationType" : "AWS Region", - "toLocation" : "US West (Oregon)", - "toLocationType" : "AWS Region", - "usagetype" : "USE1-USW2-AWS-Out-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "SUWG7U93QWGDKW8P" : { - "sku" : "SUWG7U93QWGDKW8P", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "SUSE", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:r4.8xlarge", - "operation" : "RunInstances:000g", - "dedicatedEbsThroughput" : "6000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "24EZ2DK36FZ2REKT" : { - "sku" : "24EZ2DK36FZ2REKT", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.8xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "6000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FYP43BRDNQ66J7E7" : { - "sku" : "FYP43BRDNQ66J7E7", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.32xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "128", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "1,952 GiB", - "storage" : "2 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1.32xlarge", - "operation" : "RunInstances:0102", - "ecu" : "349", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "256", - "preInstalledSw" : "SQL Ent", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "SZADZHSFYSRDW37F" : { - "sku" : "SZADZHSFYSRDW37F", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "36", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "60 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:c4.8xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "4000 Mbps", - "ecu" : "132", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "CRRB3H2DYHU6K9FV" : { - "sku" : "CRRB3H2DYHU6K9FV", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "hs1.8xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "17", - "physicalProcessor" : "Intel Xeon E5-2650", - "clockSpeed" : "2 GHz", - "memory" : "117 GiB", - "storage" : "24 x 2000", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:hs1.8xlarge", - "operation" : "RunInstances", - "ecu" : "35", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Y3Y6KWQHPWZMXFTW" : { - "sku" : "Y3Y6KWQHPWZMXFTW", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "61 GiB", - "storage" : "1 x 1.9 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.2xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "1750 Mbps", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MEWEMY6NUVGMP6AP" : { - "sku" : "MEWEMY6NUVGMP6AP", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m3.medium", - "currentGeneration" : "Yes", - "instanceFamily" : "General purpose", - "vcpu" : "1", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "3.75 GiB", - "storage" : "1 x 4 SSD", - "networkPerformance" : "Moderate", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "Bring your own license", - "usagetype" : "HostBoxUsage:m3.medium", - "operation" : "RunInstances:0800", - "ecu" : "3", - "normalizationSizeFactor" : "2", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "97BZM647G2XZPFCY" : { - "sku" : "97BZM647G2XZPFCY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i3.xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Storage optimized", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "30.5 GiB", - "storage" : "1 x 0.95 NVMe SSD", - "networkPerformance" : "Up to 10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i3.xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "850 Mbps", - "ecu" : "26", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "FFSCXMMMXUSSXA8W" : { - "sku" : "FFSCXMMMXUSSXA8W", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "c4.2xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Compute optimized", - "vcpu" : "8", - "physicalProcessor" : "Intel Xeon E5-2666 v3 (Haswell)", - "clockSpeed" : "2.9 GHz", - "memory" : "15 GiB", - "storage" : "EBS only", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:c4.2xlarge", - "operation" : "RunInstances:0202", - "dedicatedEbsThroughput" : "1000 Mbps", - "ecu" : "31", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "16", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel AVX2; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "YNCWT4YUEZJHAETE" : { - "sku" : "YNCWT4YUEZJHAETE", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "488 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r4.16xlarge", - "operation" : "RunInstances:0102", - "dedicatedEbsThroughput" : "12000 Mbps", - "ecu" : "27", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Ent", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "Y56F747HTG5NJVJ2" : { - "sku" : "Y56F747HTG5NJVJ2", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Inbound", - "fromLocation" : "EU (London)", - "fromLocationType" : "AWS Region", - "toLocation" : "US East (N. Virginia)", - "toLocationType" : "AWS Region", - "usagetype" : "EUW2-USE1-AWS-In-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "R5VPK73B6MUUM6YC" : { - "sku" : "R5VPK73B6MUUM6YC", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "i2.4xlarge", - "currentGeneration" : "No", - "instanceFamily" : "Storage optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "4 x 800 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:i2.4xlarge", - "operation" : "RunInstances:0202", - "ecu" : "53", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "SQL Web", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ZGMR5TZVDVP9BAJZ" : { - "sku" : "ZGMR5TZVDVP9BAJZ", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Outbound", - "fromLocation" : "Canada (Central)", - "fromLocationType" : "AWS Region", - "toLocation" : "US East (N. Virginia)", - "toLocationType" : "AWS Region", - "usagetype" : "CAN1-USE1-AWS-Out-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - }, - "2BU9UYZTGYW8M965" : { - "sku" : "2BU9UYZTGYW8M965", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "m1.xlarge", - "currentGeneration" : "No", - "instanceFamily" : "General purpose", - "vcpu" : "4", - "physicalProcessor" : "Intel Xeon Family", - "memory" : "15 GiB", - "storage" : "4 x 420", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Dedicated", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "DedicatedUsage:m1.xlarge", - "operation" : "RunInstances:0202", - "ecu" : "8", - "normalizationSizeFactor" : "8", - "preInstalledSw" : "SQL Web", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "73HRUT4W38285YYX" : { - "sku" : "73HRUT4W38285YYX", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r4.8xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "32", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed" : "2.3 GHz", - "memory" : "244 GiB", - "storage" : "EBS only", - "networkPerformance" : "10 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:r4.8xlarge", - "operation" : "RunInstances:0006", - "dedicatedEbsThroughput" : "6000 Mbps", - "ecu" : "7", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "64", - "preInstalledSw" : "SQL Std", - "processorFeatures" : "Intel AVX, Intel AVX2, Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "ED4J2JJZWVS4X9HY" : { - "sku" : "ED4J2JJZWVS4X9HY", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "r3.4xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "16", - "physicalProcessor" : "Intel Xeon E5-2670 v2 (Ivy Bridge)", - "clockSpeed" : "2.5 GHz", - "memory" : "122 GiB", - "storage" : "1 x 320 SSD", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:r3.4xlarge", - "operation" : "RunInstances", - "ecu" : "52", - "enhancedNetworkingSupported" : "Yes", - "normalizationSizeFactor" : "32", - "preInstalledSw" : "NA", - "processorFeatures" : "Intel AVX; Intel Turbo", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "MXS65NQ4H7WKNXGE" : { - "sku" : "MXS65NQ4H7WKNXGE", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "f1.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "GPU instance", - "vcpu" : "64", - "physicalProcessor" : "Intel Xeon E5-2686 v4 (Broadwell)", - "memory" : "976 GiB", - "storage" : "EBS only", - "networkPerformance" : "20 Gigabit", - "processorArchitecture" : "64-bit", - "tenancy" : "Host", - "operatingSystem" : "Linux", - "licenseModel" : "No License required", - "usagetype" : "HostBoxUsage:f1.16xlarge", - "operation" : "RunInstances", - "ecu" : "188", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "NA", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "D8HDF78JFRVMSXZK" : { - "sku" : "D8HDF78JFRVMSXZK", - "productFamily" : "Compute Instance", - "attributes" : { - "servicecode" : "AmazonEC2", - "location" : "US East (N. Virginia)", - "locationType" : "AWS Region", - "instanceType" : "x1.16xlarge", - "currentGeneration" : "Yes", - "instanceFamily" : "Memory optimized", - "vcpu" : "64", - "physicalProcessor" : "High Frequency Intel Xeon E7-8880 v3 (Haswell)", - "clockSpeed" : "2.3 GHz", - "memory" : "976 GiB", - "storage" : "1 x 1,920", - "networkPerformance" : "High", - "processorArchitecture" : "64-bit", - "tenancy" : "Shared", - "operatingSystem" : "Windows", - "licenseModel" : "No License required", - "usagetype" : "BoxUsage:x1.16xlarge", - "operation" : "RunInstances:0202", - "ecu" : "124.5", - "enhancedNetworkingSupported" : "Yes", - "intelAvxAvailable" : "Yes", - "intelAvx2Available" : "Yes", - "intelTurboAvailable" : "Yes", - "normalizationSizeFactor" : "128", - "preInstalledSw" : "SQL Web", - "servicename" : "Amazon Elastic Compute Cloud" - } - }, - "39FN83U7M4TB4352" : { - "sku" : "39FN83U7M4TB4352", - "productFamily" : "Data Transfer", - "attributes" : { - "servicecode" : "AWSDataTransfer", - "transferType" : "InterRegion Outbound", - "fromLocation" : "Asia Pacific (Seoul)", - "fromLocationType" : "AWS Region", - "toLocation" : "US East (N. Virginia)", - "toLocationType" : "AWS Region", - "usagetype" : "APN2-USE1-AWS-Out-Bytes", - "operation" : "", - "servicename" : "AWS Data Transfer" - } - } - }, - "terms" : { - "OnDemand" : { - "DQ578CGN99KG6ECF" : { - "DQ578CGN99KG6ECF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DQ578CGN99KG6ECF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DQ578CGN99KG6ECF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DQ578CGN99KG6ECF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.931 per On Demand Windows hs1.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PXS7W75RUSBYTA74" : { - "PXS7W75RUSBYTA74.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PXS7W75RUSBYTA74", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PXS7W75RUSBYTA74.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PXS7W75RUSBYTA74.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std m3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EP2SBMU2Z582EJNK" : { - "EP2SBMU2Z582EJNK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EP2SBMU2Z582EJNK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EP2SBMU2Z582EJNK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EP2SBMU2Z582EJNK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.924 per Dedicated Windows c1.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HX3SBKCTTNFU8UEG" : { - "HX3SBKCTTNFU8UEG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HX3SBKCTTNFU8UEG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HX3SBKCTTNFU8UEG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HX3SBKCTTNFU8UEG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Web i3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HYZTQKMNAKH6FG9C" : { - "HYZTQKMNAKH6FG9C.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HYZTQKMNAKH6FG9C", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HYZTQKMNAKH6FG9C.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HYZTQKMNAKH6FG9C.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.752 per Dedicated RHEL c5.9xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2BEAK4F883TCCQMS" : { - "2BEAK4F883TCCQMS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2BEAK4F883TCCQMS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2BEAK4F883TCCQMS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2BEAK4F883TCCQMS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.601 per Dedicated Windows with SQL Server Enterprise x1e.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Q3V4FNRZN9QKF6FC" : { - "Q3V4FNRZN9QKF6FC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Q3V4FNRZN9QKF6FC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Q3V4FNRZN9QKF6FC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Q3V4FNRZN9QKF6FC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.086 per GB - Asia Pacific (Mumbai) data transfer to US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3BZUZ8TX5Q6KDMND" : { - "3BZUZ8TX5Q6KDMND.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3BZUZ8TX5Q6KDMND", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3BZUZ8TX5Q6KDMND.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3BZUZ8TX5Q6KDMND.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.305 per On Demand RHEL m2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "F5GG77WYJNEW8T77" : { - "F5GG77WYJNEW8T77.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "F5GG77WYJNEW8T77", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "F5GG77WYJNEW8T77.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "F5GG77WYJNEW8T77.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per RHEL i3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KV46EU5KJGKB53ZX" : { - "KV46EU5KJGKB53ZX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KV46EU5KJGKB53ZX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KV46EU5KJGKB53ZX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KV46EU5KJGKB53ZX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.156 per Dedicated RHEL m1.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7QJJXQX9QWC5GEPD" : { - "7QJJXQX9QWC5GEPD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7QJJXQX9QWC5GEPD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7QJJXQX9QWC5GEPD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7QJJXQX9QWC5GEPD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.787 per On Demand Windows with SQL Web r4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DUHF29UDCPK7Z84H" : { - "DUHF29UDCPK7Z84H.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DUHF29UDCPK7Z84H", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DUHF29UDCPK7Z84H.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DUHF29UDCPK7Z84H.JRTCKXETXF.6YS6EN2CT7", - "description" : "$9.063 per Dedicated Windows with SQL Web i3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.0630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5AVR4REAWXYCDTBG" : { - "5AVR4REAWXYCDTBG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5AVR4REAWXYCDTBG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5AVR4REAWXYCDTBG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5AVR4REAWXYCDTBG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$30.144 per Dedicated Windows with SQL Server Enterprise m4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "30.1440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RA7GXBYJW245U7C5" : { - "RA7GXBYJW245U7C5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RA7GXBYJW245U7C5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RA7GXBYJW245U7C5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RA7GXBYJW245U7C5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$12.34 per On Demand SUSE p3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.3400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QC7Z34UZZ9GT65EJ" : { - "QC7Z34UZZ9GT65EJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QC7Z34UZZ9GT65EJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QC7Z34UZZ9GT65EJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QC7Z34UZZ9GT65EJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE p2.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TFK9JRBDPXTYU5ZM" : { - "TFK9JRBDPXTYU5ZM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TFK9JRBDPXTYU5ZM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TFK9JRBDPXTYU5ZM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TFK9JRBDPXTYU5ZM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.6528 per Dedicated Windows with SQL Std r4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.6528000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MSY2XU2REE8QSFZZ" : { - "MSY2XU2REE8QSFZZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MSY2XU2REE8QSFZZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MSY2XU2REE8QSFZZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MSY2XU2REE8QSFZZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Linux x1e.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CZVM5AM8JCW2BV2A" : { - "CZVM5AM8JCW2BV2A.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CZVM5AM8JCW2BV2A", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CZVM5AM8JCW2BV2A.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CZVM5AM8JCW2BV2A.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Server Enterprise x1e.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RF9FHSRZ3SVU59FJ" : { - "RF9FHSRZ3SVU59FJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RF9FHSRZ3SVU59FJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RF9FHSRZ3SVU59FJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RF9FHSRZ3SVU59FJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux r4.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AQK8CMMUKFD4JB69" : { - "AQK8CMMUKFD4JB69.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AQK8CMMUKFD4JB69", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AQK8CMMUKFD4JB69.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AQK8CMMUKFD4JB69.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL c4.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XZ79CEGC6NSB9FQ8" : { - "XZ79CEGC6NSB9FQ8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XZ79CEGC6NSB9FQ8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XZ79CEGC6NSB9FQ8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XZ79CEGC6NSB9FQ8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.728 per Dedicated Windows c5.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BQ3BGTNB2B9AK9XC" : { - "BQ3BGTNB2B9AK9XC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BQ3BGTNB2B9AK9XC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BQ3BGTNB2B9AK9XC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BQ3BGTNB2B9AK9XC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.02 for 400 Mbps per r3.xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2WRUKSBG6TN3PSR2" : { - "2WRUKSBG6TN3PSR2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2WRUKSBG6TN3PSR2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2WRUKSBG6TN3PSR2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2WRUKSBG6TN3PSR2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.398 per On Demand Windows BYOL c4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SN5UZ97VKJUAGEM5" : { - "SN5UZ97VKJUAGEM5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SN5UZ97VKJUAGEM5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SN5UZ97VKJUAGEM5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SN5UZ97VKJUAGEM5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Server Enterprise c5.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SQKVU3RSHDUKCC86" : { - "SQKVU3RSHDUKCC86.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SQKVU3RSHDUKCC86", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SQKVU3RSHDUKCC86.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SQKVU3RSHDUKCC86.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.600 per On Demand Windows cg1.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CDHRWPJ4QQUN4CPP" : { - "CDHRWPJ4QQUN4CPP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CDHRWPJ4QQUN4CPP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CDHRWPJ4QQUN4CPP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CDHRWPJ4QQUN4CPP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.870 per Dedicated SQL Web m2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EGSUTJB8BPPKZR2N" : { - "EGSUTJB8BPPKZR2N.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EGSUTJB8BPPKZR2N", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EGSUTJB8BPPKZR2N.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EGSUTJB8BPPKZR2N.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.078 per Dedicated Windows BYOL m2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "39SAA25CYWD748WC" : { - "39SAA25CYWD748WC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "39SAA25CYWD748WC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "39SAA25CYWD748WC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "39SAA25CYWD748WC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL c4.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6ZNK2Z79AEEBFV3M" : { - "6ZNK2Z79AEEBFV3M.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6ZNK2Z79AEEBFV3M", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6ZNK2Z79AEEBFV3M.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6ZNK2Z79AEEBFV3M.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per GB - US East (Northern Virginia) data transfer from EU (London)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YGC2QHNNR7NU4B88" : { - "YGC2QHNNR7NU4B88.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YGC2QHNNR7NU4B88", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YGC2QHNNR7NU4B88.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YGC2QHNNR7NU4B88.JRTCKXETXF.6YS6EN2CT7", - "description" : "$13.20 per Dedicated Linux f1.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.2000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "B36YBM4BFMUWZSG4" : { - "B36YBM4BFMUWZSG4.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "B36YBM4BFMUWZSG4", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "B36YBM4BFMUWZSG4.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "B36YBM4BFMUWZSG4.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.193 per Dedicated Linux m1.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "U9GUPGBUQ64FG73U" : { - "U9GUPGBUQ64FG73U.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "U9GUPGBUQ64FG73U", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "U9GUPGBUQ64FG73U.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "U9GUPGBUQ64FG73U.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Std c5.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "T72RDCVVMHKECZ63" : { - "T72RDCVVMHKECZ63.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "T72RDCVVMHKECZ63", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "T72RDCVVMHKECZ63.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "T72RDCVVMHKECZ63.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.976 per On Demand SQL Std m2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Q73NFXYCVJRVJD5P" : { - "Q73NFXYCVJRVJD5P.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Q73NFXYCVJRVJD5P", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Q73NFXYCVJRVJD5P.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Q73NFXYCVJRVJD5P.JRTCKXETXF.6YS6EN2CT7", - "description" : "$9.836 per Dedicated SQL Std i2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.8360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DQKFGKR56DWDJFRK" : { - "DQKFGKR56DWDJFRK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DQKFGKR56DWDJFRK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DQKFGKR56DWDJFRK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DQKFGKR56DWDJFRK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise i2.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "E92W6J6ZWCYNHQYK" : { - "E92W6J6ZWCYNHQYK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "E92W6J6ZWCYNHQYK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "E92W6J6ZWCYNHQYK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "E92W6J6ZWCYNHQYK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.96 per On Demand RHEL p2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SVUSEDJB94K6K37X" : { - "SVUSEDJB94K6K37X.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SVUSEDJB94K6K37X", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SVUSEDJB94K6K37X.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SVUSEDJB94K6K37X.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.881 per Dedicated Usage Windows with SQL Web c4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "X6FJM3B6HUSDM27X" : { - "X6FJM3B6HUSDM27X.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "X6FJM3B6HUSDM27X", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "X6FJM3B6HUSDM27X.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "X6FJM3B6HUSDM27X.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.935 per Dedicated SUSE x1e.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "W74H9N7H8NNRHRRV" : { - "W74H9N7H8NNRHRRV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "W74H9N7H8NNRHRRV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "W74H9N7H8NNRHRRV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "W74H9N7H8NNRHRRV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$26.818 per On Demand RHEL x1e.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "26.8180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JADXKP28ZPH5KPM8" : { - "JADXKP28ZPH5KPM8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JADXKP28ZPH5KPM8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JADXKP28ZPH5KPM8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JADXKP28ZPH5KPM8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL m3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "22YA2RYTS4SSFJRY" : { - "22YA2RYTS4SSFJRY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "22YA2RYTS4SSFJRY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "22YA2RYTS4SSFJRY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "22YA2RYTS4SSFJRY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std i2.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SBHS3JAQSXPZMQSH" : { - "SBHS3JAQSXPZMQSH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SBHS3JAQSXPZMQSH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SBHS3JAQSXPZMQSH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SBHS3JAQSXPZMQSH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.319 per Dedicated Usage SUSE c4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "A67CJDV9B3YBP6N6" : { - "A67CJDV9B3YBP6N6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "A67CJDV9B3YBP6N6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "A67CJDV9B3YBP6N6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "A67CJDV9B3YBP6N6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.6 per On Demand Linux g2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2VKUG32DUF246T8S" : { - "2VKUG32DUF246T8S.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2VKUG32DUF246T8S", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2VKUG32DUF246T8S.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2VKUG32DUF246T8S.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per GB - US East (Northern Virginia) data transfer from US East (Ohio)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QTWEYQU689QP4W2Y" : { - "QTWEYQU689QP4W2Y.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QTWEYQU689QP4W2Y", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QTWEYQU689QP4W2Y.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QTWEYQU689QP4W2Y.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows c5.9xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DA7QMR94RJ2CZC88" : { - "DA7QMR94RJ2CZC88.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DA7QMR94RJ2CZC88", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DA7QMR94RJ2CZC88.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DA7QMR94RJ2CZC88.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL r4.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SQZMQXR6THWASKYH" : { - "SQZMQXR6THWASKYH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SQZMQXR6THWASKYH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SQZMQXR6THWASKYH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SQZMQXR6THWASKYH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.74 per On Demand Windows with SQL Std r3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JY3YATTYGNTRDKBA" : { - "JY3YATTYGNTRDKBA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JY3YATTYGNTRDKBA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JY3YATTYGNTRDKBA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JY3YATTYGNTRDKBA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows p3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XVCPRU82RU77VTVY" : { - "XVCPRU82RU77VTVY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XVCPRU82RU77VTVY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XVCPRU82RU77VTVY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XVCPRU82RU77VTVY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$8.058 per Dedicated Windows with SQL Std i3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.0580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9RDKMFQK57E4CCGM" : { - "9RDKMFQK57E4CCGM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9RDKMFQK57E4CCGM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9RDKMFQK57E4CCGM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9RDKMFQK57E4CCGM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per SUSE x1e.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RKQ5SSVTNQ4ZKZUB" : { - "RKQ5SSVTNQ4ZKZUB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RKQ5SSVTNQ4ZKZUB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RKQ5SSVTNQ4ZKZUB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RKQ5SSVTNQ4ZKZUB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.52 per On Demand Windows BYOL c1.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZACFFWPPC668YV8A" : { - "ZACFFWPPC668YV8A.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZACFFWPPC668YV8A", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZACFFWPPC668YV8A.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZACFFWPPC668YV8A.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per GB - Asia Pacific (Sydney) data transfer from US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "47GP959QAF69YPG5" : { - "47GP959QAF69YPG5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "47GP959QAF69YPG5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "47GP959QAF69YPG5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "47GP959QAF69YPG5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.20 per On Demand Linux m4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PCMEF8PUJ2K4JEB5" : { - "PCMEF8PUJ2K4JEB5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PCMEF8PUJ2K4JEB5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PCMEF8PUJ2K4JEB5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PCMEF8PUJ2K4JEB5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.518 per Dedicated Windows m2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "T9CM8EYXT4ZBVWNE" : { - "T9CM8EYXT4ZBVWNE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "T9CM8EYXT4ZBVWNE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "T9CM8EYXT4ZBVWNE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "T9CM8EYXT4ZBVWNE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.746 per Dedicated Windows BYOL i3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XC5ZWJZS84Q3XZTZ" : { - "XC5ZWJZS84Q3XZTZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XC5ZWJZS84Q3XZTZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XC5ZWJZS84Q3XZTZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XC5ZWJZS84Q3XZTZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.384 per Dedicated RHEL g3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XMCTY6J8BEK2CTG2" : { - "XMCTY6J8BEK2CTG2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XMCTY6J8BEK2CTG2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XMCTY6J8BEK2CTG2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XMCTY6J8BEK2CTG2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.973 per On Demand Windows i2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "G7CNANS9EFDWRFTB" : { - "G7CNANS9EFDWRFTB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "G7CNANS9EFDWRFTB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "G7CNANS9EFDWRFTB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "G7CNANS9EFDWRFTB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL r3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "94FAEGR9U7X9TX7P" : { - "94FAEGR9U7X9TX7P.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "94FAEGR9U7X9TX7P", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "94FAEGR9U7X9TX7P.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "94FAEGR9U7X9TX7P.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE c4.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YQT3C842QHBG6XCU" : { - "YQT3C842QHBG6XCU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YQT3C842QHBG6XCU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YQT3C842QHBG6XCU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YQT3C842QHBG6XCU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.045 per GB-month of Throughput Optimized HDD (st1) provisioned storage - US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB-Mo", - "pricePerUnit" : { - "USD" : "0.0450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2BG23N2FNX3BKVFW" : { - "2BG23N2FNX3BKVFW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2BG23N2FNX3BKVFW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2BG23N2FNX3BKVFW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2BG23N2FNX3BKVFW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.02 per GB - US East (Northern Virginia) data transfer to EU (Germany)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YPSGG4AGGKWCT4F5" : { - "YPSGG4AGGKWCT4F5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YPSGG4AGGKWCT4F5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YPSGG4AGGKWCT4F5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YPSGG4AGGKWCT4F5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.834 per On Demand Windows BYOL x1e.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NSYRY4TWKKZQG94N" : { - "NSYRY4TWKKZQG94N.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NSYRY4TWKKZQG94N", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NSYRY4TWKKZQG94N.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NSYRY4TWKKZQG94N.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows BYOL i3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QPCQXM3E9RSBMMU9" : { - "QPCQXM3E9RSBMMU9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QPCQXM3E9RSBMMU9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QPCQXM3E9RSBMMU9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QPCQXM3E9RSBMMU9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.862 per Dedicated Usage RHEL r3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VKHDPS8VTZRT43GD" : { - "VKHDPS8VTZRT43GD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VKHDPS8VTZRT43GD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VKHDPS8VTZRT43GD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VKHDPS8VTZRT43GD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.886 per Dedicated Windows with SQL Web c5.9xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GAMAEGQGHSWC95UR" : { - "GAMAEGQGHSWC95UR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GAMAEGQGHSWC95UR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GAMAEGQGHSWC95UR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GAMAEGQGHSWC95UR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.968 per On Demand Windows i3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BYRRQU7P3FHKBRZR" : { - "BYRRQU7P3FHKBRZR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BYRRQU7P3FHKBRZR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BYRRQU7P3FHKBRZR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BYRRQU7P3FHKBRZR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.567 per On Demand Windows with SQL Web i3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3E2DK2EWM3HWCYX7" : { - "3E2DK2EWM3HWCYX7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3E2DK2EWM3HWCYX7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3E2DK2EWM3HWCYX7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3E2DK2EWM3HWCYX7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL d2.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JNEJWP3E6GZMD3DR" : { - "JNEJWP3E6GZMD3DR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JNEJWP3E6GZMD3DR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JNEJWP3E6GZMD3DR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JNEJWP3E6GZMD3DR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise c4.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZH5YZDSEMAZNXC2E" : { - "ZH5YZDSEMAZNXC2E.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZH5YZDSEMAZNXC2E", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZH5YZDSEMAZNXC2E.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZH5YZDSEMAZNXC2E.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux i2.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9VWFY2XSEFEGH78A" : { - "9VWFY2XSEFEGH78A.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9VWFY2XSEFEGH78A", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9VWFY2XSEFEGH78A.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9VWFY2XSEFEGH78A.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per RHEL c5.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "E7FZJRV7JXQJXFED" : { - "E7FZJRV7JXQJXFED.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "E7FZJRV7JXQJXFED", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "E7FZJRV7JXQJXFED.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "E7FZJRV7JXQJXFED.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.383 per Dedicated SQL Web c3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "F3MSPCKJ74QTGZ7J" : { - "F3MSPCKJ74QTGZ7J.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "F3MSPCKJ74QTGZ7J", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "F3MSPCKJ74QTGZ7J.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "F3MSPCKJ74QTGZ7J.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.53 per On Demand RHEL m4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "T64KKYA6S8ZUXCAT" : { - "T64KKYA6S8ZUXCAT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "T64KKYA6S8ZUXCAT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "T64KKYA6S8ZUXCAT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "T64KKYA6S8ZUXCAT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE c4.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "J95CCXETUZE5KFXR" : { - "J95CCXETUZE5KFXR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "J95CCXETUZE5KFXR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "J95CCXETUZE5KFXR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "J95CCXETUZE5KFXR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per SUSE p3.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "R7PB2UQAZQDARZ8X" : { - "R7PB2UQAZQDARZ8X.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "R7PB2UQAZQDARZ8X", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "R7PB2UQAZQDARZ8X.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "R7PB2UQAZQDARZ8X.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.406 per Dedicated Windows x1e.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.4060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2DACTCDEQHTNHX93" : { - "2DACTCDEQHTNHX93.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2DACTCDEQHTNHX93", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2DACTCDEQHTNHX93.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2DACTCDEQHTNHX93.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise i2.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "55BBGNQ587XXZTH4" : { - "55BBGNQ587XXZTH4.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "55BBGNQ587XXZTH4", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "55BBGNQ587XXZTH4.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "55BBGNQ587XXZTH4.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.500 per Dedicated Linux cr1.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AAY7WVV9ASN7U5CG" : { - "AAY7WVV9ASN7U5CG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AAY7WVV9ASN7U5CG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AAY7WVV9ASN7U5CG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AAY7WVV9ASN7U5CG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std c4.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "429MR8T2YBX27EZR" : { - "429MR8T2YBX27EZR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "429MR8T2YBX27EZR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "429MR8T2YBX27EZR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "429MR8T2YBX27EZR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.896 per On Demand SUSE c4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KP89XKS7BFTMVX77" : { - "KP89XKS7BFTMVX77.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KP89XKS7BFTMVX77", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KP89XKS7BFTMVX77.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KP89XKS7BFTMVX77.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.629 per On Demand SQL Std m1.small Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JZW848E84BCHGUHR" : { - "JZW848E84BCHGUHR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JZW848E84BCHGUHR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JZW848E84BCHGUHR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JZW848E84BCHGUHR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL r4.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "35QACGXEGWD9AZHY" : { - "35QACGXEGWD9AZHY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "35QACGXEGWD9AZHY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "35QACGXEGWD9AZHY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "35QACGXEGWD9AZHY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.177 per On Demand Windows c5.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QQMYSYW64K9VEPF5" : { - "QQMYSYW64K9VEPF5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QQMYSYW64K9VEPF5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QQMYSYW64K9VEPF5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QQMYSYW64K9VEPF5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.336 per Dedicated Usage Windows BYOL x1.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SS8ZSWSJUYBWBV7G" : { - "SS8ZSWSJUYBWBV7G.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SS8ZSWSJUYBWBV7G", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SS8ZSWSJUYBWBV7G.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SS8ZSWSJUYBWBV7G.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Web c5.18xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZJC9VZJF5NZNYSVK" : { - "ZJC9VZJF5NZNYSVK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZJC9VZJF5NZNYSVK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZJC9VZJF5NZNYSVK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZJC9VZJF5NZNYSVK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.76 per On Demand Linux d2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3EM3XGHPBHA5A7G9" : { - "3EM3XGHPBHA5A7G9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3EM3XGHPBHA5A7G9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3EM3XGHPBHA5A7G9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3EM3XGHPBHA5A7G9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.76 per On Demand SUSE r3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "65VXSY6D3U449E4W" : { - "65VXSY6D3U449E4W.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "65VXSY6D3U449E4W", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "65VXSY6D3U449E4W.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "65VXSY6D3U449E4W.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per RHEL x1e.32xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "V6J3XRHZNGUJMG3Z" : { - "V6J3XRHZNGUJMG3Z.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "V6J3XRHZNGUJMG3Z", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "V6J3XRHZNGUJMG3Z.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "V6J3XRHZNGUJMG3Z.JRTCKXETXF.6YS6EN2CT7", - "description" : "$10.406 per Dedicated Windows with SQL Server Enterprise x1e.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.4060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FVBHJHDCMPPWYN7V" : { - "FVBHJHDCMPPWYN7V.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FVBHJHDCMPPWYN7V", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FVBHJHDCMPPWYN7V.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FVBHJHDCMPPWYN7V.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.527 per Dedicated Windows i3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9GWTW8S686K9W5FP" : { - "9GWTW8S686K9W5FP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9GWTW8S686K9W5FP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9GWTW8S686K9W5FP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9GWTW8S686K9W5FP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.341 per Dedicated SQL Web c1.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "88VG68PMGN3M4ZEY" : { - "88VG68PMGN3M4ZEY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "88VG68PMGN3M4ZEY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "88VG68PMGN3M4ZEY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "88VG68PMGN3M4ZEY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$13.344 per On Demand Linux x1e.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.3440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "W7UEAU2BZ54FZMWV" : { - "W7UEAU2BZ54FZMWV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "W7UEAU2BZ54FZMWV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "W7UEAU2BZ54FZMWV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "W7UEAU2BZ54FZMWV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web r3.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "WT63RNHXYTKJPT3V" : { - "WT63RNHXYTKJPT3V.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "WT63RNHXYTKJPT3V", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "WT63RNHXYTKJPT3V.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "WT63RNHXYTKJPT3V.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.164 per On Demand SUSE r4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XKKYTV6J2N4E3GXA" : { - "XKKYTV6J2N4E3GXA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XKKYTV6J2N4E3GXA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XKKYTV6J2N4E3GXA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XKKYTV6J2N4E3GXA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$13.438 per Dedicated Usage SUSE x1.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.4380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HHBS2UFCC9G8F3DM" : { - "HHBS2UFCC9G8F3DM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HHBS2UFCC9G8F3DM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HHBS2UFCC9G8F3DM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HHBS2UFCC9G8F3DM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.0464 per On Demand Windows BYOL t2.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0464000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7KSR4DFTZFRCXGGH" : { - "7KSR4DFTZFRCXGGH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7KSR4DFTZFRCXGGH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7KSR4DFTZFRCXGGH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7KSR4DFTZFRCXGGH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$8.350 per On Demand SQL Std hs1.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.3500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7EQFT8UVNNKTV2AA" : { - "7EQFT8UVNNKTV2AA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7EQFT8UVNNKTV2AA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7EQFT8UVNNKTV2AA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7EQFT8UVNNKTV2AA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.09 per GB - Asia Pacific (Tokyo) data transfer to US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3B3UNRXVA6RCCGWP" : { - "3B3UNRXVA6RCCGWP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3B3UNRXVA6RCCGWP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3B3UNRXVA6RCCGWP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3B3UNRXVA6RCCGWP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$5.52 per On Demand Windows BYOL d2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.5200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "G7T27N57ERE3PVRC" : { - "G7T27N57ERE3PVRC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "G7T27N57ERE3PVRC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "G7T27N57ERE3PVRC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "G7T27N57ERE3PVRC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.827 per Dedicated Windows c3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9KA8YGU8KFGQ7ERN" : { - "9KA8YGU8KFGQ7ERN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9KA8YGU8KFGQ7ERN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9KA8YGU8KFGQ7ERN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9KA8YGU8KFGQ7ERN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.416 per On Demand Windows c5.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6PNPTZCGGYT2UXSS" : { - "6PNPTZCGGYT2UXSS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6PNPTZCGGYT2UXSS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6PNPTZCGGYT2UXSS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6PNPTZCGGYT2UXSS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.596 per Dedicated SQL Web c3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TMTUPBFYDNCYXCDK" : { - "TMTUPBFYDNCYXCDK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TMTUPBFYDNCYXCDK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TMTUPBFYDNCYXCDK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TMTUPBFYDNCYXCDK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$14.5 per On Demand SUSE p2.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.5000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GH36ES6UF9N3TAPC" : { - "GH36ES6UF9N3TAPC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GH36ES6UF9N3TAPC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GH36ES6UF9N3TAPC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GH36ES6UF9N3TAPC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.036 per Dedicated Usage Linux d2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FHFGWVJGRUAB5YUF" : { - "FHFGWVJGRUAB5YUF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FHFGWVJGRUAB5YUF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FHFGWVJGRUAB5YUF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FHFGWVJGRUAB5YUF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.06 per On Demand Linux c5.18xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2KNBBY32AX7JPE72" : { - "2KNBBY32AX7JPE72.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2KNBBY32AX7JPE72", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2KNBBY32AX7JPE72.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2KNBBY32AX7JPE72.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.682 per Dedicated Windows with SQL Server Enterprise c5.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QCQ27AYFPSSTJG55" : { - "QCQ27AYFPSSTJG55.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QCQ27AYFPSSTJG55", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QCQ27AYFPSSTJG55.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QCQ27AYFPSSTJG55.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.490 per On Demand Linux m2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Y6BQV4XBTAFVVV2A" : { - "Y6BQV4XBTAFVVV2A.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Y6BQV4XBTAFVVV2A", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Y6BQV4XBTAFVVV2A.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Y6BQV4XBTAFVVV2A.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.109 per Dedicated Windows i3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2TWQMPVA6E2FTADF" : { - "2TWQMPVA6E2FTADF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2TWQMPVA6E2FTADF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2TWQMPVA6E2FTADF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2TWQMPVA6E2FTADF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL m4.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XCS4G266BD9VMZE6" : { - "XCS4G266BD9VMZE6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XCS4G266BD9VMZE6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XCS4G266BD9VMZE6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XCS4G266BD9VMZE6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Linux i3.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "R8FEN7446FZH75Y5" : { - "R8FEN7446FZH75Y5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "R8FEN7446FZH75Y5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "R8FEN7446FZH75Y5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "R8FEN7446FZH75Y5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows r4.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "V3RF6UFJXPKZ5CNE" : { - "V3RF6UFJXPKZ5CNE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "V3RF6UFJXPKZ5CNE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "V3RF6UFJXPKZ5CNE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "V3RF6UFJXPKZ5CNE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.439 per Dedicated SUSE x1e.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UAKHM4ASYH9KFBED" : { - "UAKHM4ASYH9KFBED.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UAKHM4ASYH9KFBED", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UAKHM4ASYH9KFBED.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UAKHM4ASYH9KFBED.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.33 per On Demand RHEL p2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "29WJRTNV2QJXKUW5" : { - "29WJRTNV2QJXKUW5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "29WJRTNV2QJXKUW5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "29WJRTNV2QJXKUW5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "29WJRTNV2QJXKUW5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.965 per Dedicated RHEL x1e.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MDQWTP6HDQDFGNVZ" : { - "MDQWTP6HDQDFGNVZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MDQWTP6HDQDFGNVZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MDQWTP6HDQDFGNVZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MDQWTP6HDQDFGNVZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.708 per On Demand Windows with SQL Server Enterprise c5.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6W35NFYWJ6ZG37VX" : { - "6W35NFYWJ6ZG37VX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6W35NFYWJ6ZG37VX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6W35NFYWJ6ZG37VX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6W35NFYWJ6ZG37VX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.030 per On Demand SUSE t1.micro Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7AH58V9CNVM6SBXM" : { - "7AH58V9CNVM6SBXM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7AH58V9CNVM6SBXM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7AH58V9CNVM6SBXM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7AH58V9CNVM6SBXM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.676 per Dedicated Windows with SQL Web x1e.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.6760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HPSQPPJ249MHQR6A" : { - "HPSQPPJ249MHQR6A.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HPSQPPJ249MHQR6A", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HPSQPPJ249MHQR6A.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HPSQPPJ249MHQR6A.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.342 per On Demand Windows with SQL Web x1e.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.3420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CE5S3J445F4X6VYF" : { - "CE5S3J445F4X6VYF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CE5S3J445F4X6VYF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CE5S3J445F4X6VYF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CE5S3J445F4X6VYF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$8.327 per Dedicated Usage Windows with SQL Web r4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.3270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VETEGFEN68R236A6" : { - "VETEGFEN68R236A6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VETEGFEN68R236A6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VETEGFEN68R236A6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VETEGFEN68R236A6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 for 1 Mbps per x1e.8xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Z9AT4X8BA5YM4T7A" : { - "Z9AT4X8BA5YM4T7A.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Z9AT4X8BA5YM4T7A", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Z9AT4X8BA5YM4T7A.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Z9AT4X8BA5YM4T7A.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.42 per On Demand M4 Dedicated Host Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RN2BTZEEU3PRHGPQ" : { - "RN2BTZEEU3PRHGPQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RN2BTZEEU3PRHGPQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RN2BTZEEU3PRHGPQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RN2BTZEEU3PRHGPQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$8.066 per On Demand Windows with SQL Server Enterprise r3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.0660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XJQHREQ4GHZQKQU7" : { - "XJQHREQ4GHZQKQU7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XJQHREQ4GHZQKQU7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XJQHREQ4GHZQKQU7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XJQHREQ4GHZQKQU7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per GB - Asia Pacific (Seoul) data transfer from US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Q7J4FUMSN7DX2PHJ" : { - "Q7J4FUMSN7DX2PHJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Q7J4FUMSN7DX2PHJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Q7J4FUMSN7DX2PHJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Q7J4FUMSN7DX2PHJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise r4.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Q8V833FWUY52YX8W" : { - "Q8V833FWUY52YX8W.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Q8V833FWUY52YX8W", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Q8V833FWUY52YX8W.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Q8V833FWUY52YX8W.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web c3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SEEZD7FKBH2QXGYK" : { - "SEEZD7FKBH2QXGYK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SEEZD7FKBH2QXGYK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SEEZD7FKBH2QXGYK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SEEZD7FKBH2QXGYK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$24.48 per Dedicated Linux p3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "24.4800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EEMNBPTSMJARKSKJ" : { - "EEMNBPTSMJARKSKJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EEMNBPTSMJARKSKJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EEMNBPTSMJARKSKJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EEMNBPTSMJARKSKJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std r3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MGHXZ6GM47D23SUV" : { - "MGHXZ6GM47D23SUV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MGHXZ6GM47D23SUV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MGHXZ6GM47D23SUV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MGHXZ6GM47D23SUV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.6 per On Demand Windows BYOL hs1.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.6000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "R44YAG7V59VVJURM" : { - "R44YAG7V59VVJURM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "R44YAG7V59VVJURM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "R44YAG7V59VVJURM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "R44YAG7V59VVJURM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.876 per Dedicated RHEL i3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "E5SXHSF9V8H3MYZD" : { - "E5SXHSF9V8H3MYZD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "E5SXHSF9V8H3MYZD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "E5SXHSF9V8H3MYZD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "E5SXHSF9V8H3MYZD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.1 per On Demand Windows BYOL cg1.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SPK2TX869ZYTJYHY" : { - "SPK2TX869ZYTJYHY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SPK2TX869ZYTJYHY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SPK2TX869ZYTJYHY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SPK2TX869ZYTJYHY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows BYOL x1e.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KR7FACVV38RW2UPT" : { - "KR7FACVV38RW2UPT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KR7FACVV38RW2UPT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KR7FACVV38RW2UPT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KR7FACVV38RW2UPT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std r4.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8WJ6ATW98R4XURM2" : { - "8WJ6ATW98R4XURM2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8WJ6ATW98R4XURM2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8WJ6ATW98R4XURM2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8WJ6ATW98R4XURM2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.233 per On Demand SUSE r4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "C8A3366T6RWMUWD6" : { - "C8A3366T6RWMUWD6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "C8A3366T6RWMUWD6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "C8A3366T6RWMUWD6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "C8A3366T6RWMUWD6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$13.824 per Dedicated Windows with SQL Std m4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.8240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RP3ZUBNA3QZ7JHU5" : { - "RP3ZUBNA3QZ7JHU5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RP3ZUBNA3QZ7JHU5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RP3ZUBNA3QZ7JHU5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RP3ZUBNA3QZ7JHU5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per GB data transfer in to US East (Northern Virginia) from CloudFront", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4TCUDNKW7PMPSUT2" : { - "4TCUDNKW7PMPSUT2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4TCUDNKW7PMPSUT2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4TCUDNKW7PMPSUT2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4TCUDNKW7PMPSUT2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.66 per On Demand Linux r3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "P6N8TE7UUQ73EHRS" : { - "P6N8TE7UUQ73EHRS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "P6N8TE7UUQ73EHRS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "P6N8TE7UUQ73EHRS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "P6N8TE7UUQ73EHRS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.09 per Dedicated Linux c5.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UDEYV89RV6UUPFA2" : { - "UDEYV89RV6UUPFA2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UDEYV89RV6UUPFA2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UDEYV89RV6UUPFA2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UDEYV89RV6UUPFA2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per RHEL i3.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HXX5KQP8SE3AS5E2" : { - "HXX5KQP8SE3AS5E2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HXX5KQP8SE3AS5E2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HXX5KQP8SE3AS5E2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HXX5KQP8SE3AS5E2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.532 per On Demand Windows with SQL Server Enterprise c4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HFJ8JNVXU9Z88543" : { - "HFJ8JNVXU9Z88543.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HFJ8JNVXU9Z88543", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HFJ8JNVXU9Z88543.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HFJ8JNVXU9Z88543.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.608 per Dedicated SUSE g3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HBN8KMXQ2AA8Z2EV" : { - "HBN8KMXQ2AA8Z2EV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HBN8KMXQ2AA8Z2EV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HBN8KMXQ2AA8Z2EV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HBN8KMXQ2AA8Z2EV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.048 per Dedicated Windows BYOL m1.small Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "D5X7AACFHDWJ6DC4" : { - "D5X7AACFHDWJ6DC4.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "D5X7AACFHDWJ6DC4", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "D5X7AACFHDWJ6DC4.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "D5X7AACFHDWJ6DC4.JRTCKXETXF.6YS6EN2CT7", - "description" : "$24.48 per On Demand Windows BYOL p3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "24.4800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "W3WU9RECE72NMJ77" : { - "W3WU9RECE72NMJ77.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "W3WU9RECE72NMJ77", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "W3WU9RECE72NMJ77.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "W3WU9RECE72NMJ77.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.520 per On Demand SUSE c3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YT69AAZT9MZJXMUB" : { - "YT69AAZT9MZJXMUB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YT69AAZT9MZJXMUB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YT69AAZT9MZJXMUB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YT69AAZT9MZJXMUB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.498 per On Demand Windows with SQL Std x1e.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "B73TJ3GDPEVMDXTQ" : { - "B73TJ3GDPEVMDXTQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "B73TJ3GDPEVMDXTQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "B73TJ3GDPEVMDXTQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "B73TJ3GDPEVMDXTQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$31.2 per On Demand Windows with SQL Server Enterprise r4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "31.2000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7CWP6FB636NZ4578" : { - "7CWP6FB636NZ4578.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7CWP6FB636NZ4578", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7CWP6FB636NZ4578.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7CWP6FB636NZ4578.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Linux i3.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GSWT4ZQ4JNMRW7YU" : { - "GSWT4ZQ4JNMRW7YU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GSWT4ZQ4JNMRW7YU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GSWT4ZQ4JNMRW7YU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GSWT4ZQ4JNMRW7YU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows BYOL p3.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "932MRHTPXM73RZJM" : { - "932MRHTPXM73RZJM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "932MRHTPXM73RZJM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "932MRHTPXM73RZJM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "932MRHTPXM73RZJM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per RHEL i3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6UXYTS4EWKB6WXM9" : { - "6UXYTS4EWKB6WXM9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6UXYTS4EWKB6WXM9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6UXYTS4EWKB6WXM9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6UXYTS4EWKB6WXM9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.02 per GB - US East (Northern Virginia) data transfer to Asia Pacific (Sydney)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "N2ZR79PK3EYG8Y2Q" : { - "N2ZR79PK3EYG8Y2Q.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "N2ZR79PK3EYG8Y2Q", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "N2ZR79PK3EYG8Y2Q.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "N2ZR79PK3EYG8Y2Q.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.853 per On Demand Windows BYOL i2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZPYBCRBFCYN9APCP" : { - "ZPYBCRBFCYN9APCP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZPYBCRBFCYN9APCP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZPYBCRBFCYN9APCP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZPYBCRBFCYN9APCP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.869 per Dedicated Usage SUSE d2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RPZ8YUERRQ8JPNYQ" : { - "RPZ8YUERRQ8JPNYQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RPZ8YUERRQ8JPNYQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RPZ8YUERRQ8JPNYQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RPZ8YUERRQ8JPNYQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL r3.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "V8J7UTRH4P2HW8YW" : { - "V8J7UTRH4P2HW8YW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "V8J7UTRH4P2HW8YW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "V8J7UTRH4P2HW8YW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "V8J7UTRH4P2HW8YW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.715 per Dedicated Usage RHEL r4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QKYEBPNSRB9NX7TU" : { - "QKYEBPNSRB9NX7TU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QKYEBPNSRB9NX7TU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QKYEBPNSRB9NX7TU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QKYEBPNSRB9NX7TU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.585 per Dedicated Usage Windows BYOL m3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MB9M33K6AWVAZT8U" : { - "MB9M33K6AWVAZT8U.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MB9M33K6AWVAZT8U", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MB9M33K6AWVAZT8U.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MB9M33K6AWVAZT8U.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.138 per Dedicated Windows r3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8QZCKNB62EDMDT63" : { - "8QZCKNB62EDMDT63.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8QZCKNB62EDMDT63", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8QZCKNB62EDMDT63.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8QZCKNB62EDMDT63.JRTCKXETXF.6YS6EN2CT7", - "description" : "$13.338 per On Demand Linux x1.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.3380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "J4T9ZF4AJ2DXE7SA" : { - "J4T9ZF4AJ2DXE7SA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "J4T9ZF4AJ2DXE7SA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "J4T9ZF4AJ2DXE7SA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "J4T9ZF4AJ2DXE7SA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.00 per On Demand Linux m4.10xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "V972X7PY72ZHR6V3" : { - "V972X7PY72ZHR6V3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "V972X7PY72ZHR6V3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "V972X7PY72ZHR6V3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "V972X7PY72ZHR6V3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise r4.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "V7SRDNUCBKDMKD3M" : { - "V7SRDNUCBKDMKD3M.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "V7SRDNUCBKDMKD3M", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "V7SRDNUCBKDMKD3M.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "V7SRDNUCBKDMKD3M.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.876 per Dedicated Linux i2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2VHPXRTYGECESS2J" : { - "2VHPXRTYGECESS2J.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2VHPXRTYGECESS2J", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2VHPXRTYGECESS2J.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2VHPXRTYGECESS2J.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.366 per On Demand SUSE r4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "S7W47N2777Q8FW7S" : { - "S7W47N2777Q8FW7S.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "S7W47N2777Q8FW7S", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "S7W47N2777Q8FW7S.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "S7W47N2777Q8FW7S.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux r3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4DVV92GAW5VRCP2Y" : { - "4DVV92GAW5VRCP2Y.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4DVV92GAW5VRCP2Y", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4DVV92GAW5VRCP2Y.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4DVV92GAW5VRCP2Y.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std d2.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NZFDNPR89WKZ6C5N" : { - "NZFDNPR89WKZ6C5N.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NZFDNPR89WKZ6C5N", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NZFDNPR89WKZ6C5N.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NZFDNPR89WKZ6C5N.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.498 per On Demand SUSE c4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XHB4DJDY65SW2BN6" : { - "XHB4DJDY65SW2BN6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XHB4DJDY65SW2BN6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XHB4DJDY65SW2BN6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XHB4DJDY65SW2BN6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.210 per On Demand Windows c1.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZXT5RPKSX2EYYGJQ" : { - "ZXT5RPKSX2EYYGJQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZXT5RPKSX2EYYGJQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZXT5RPKSX2EYYGJQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZXT5RPKSX2EYYGJQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per SUSE i3.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XQJX4FHA6PK8JN3M" : { - "XQJX4FHA6PK8JN3M.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XQJX4FHA6PK8JN3M", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XQJX4FHA6PK8JN3M.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XQJX4FHA6PK8JN3M.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL m3.medium Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NEMESC9E58GMS89T" : { - "NEMESC9E58GMS89T.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NEMESC9E58GMS89T", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NEMESC9E58GMS89T.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NEMESC9E58GMS89T.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.264 per Dedicated Windows i3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7H6M5F6HHQ5YHT4V" : { - "7H6M5F6HHQ5YHT4V.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7H6M5F6HHQ5YHT4V", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7H6M5F6HHQ5YHT4V.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7H6M5F6HHQ5YHT4V.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.436 per On Demand SUSE x1e.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XV4ERE3TBNCX96M9" : { - "XV4ERE3TBNCX96M9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XV4ERE3TBNCX96M9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XV4ERE3TBNCX96M9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XV4ERE3TBNCX96M9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.27 per On Demand SUSE c5.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Z7DQXX2TTGQW7T5N" : { - "Z7DQXX2TTGQW7T5N.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Z7DQXX2TTGQW7T5N", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Z7DQXX2TTGQW7T5N.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Z7DQXX2TTGQW7T5N.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.02 per GB - US East (Northern Virginia) data transfer to Canada (Central)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZE2F35FX6PVMD63Y" : { - "ZE2F35FX6PVMD63Y.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZE2F35FX6PVMD63Y", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZE2F35FX6PVMD63Y.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZE2F35FX6PVMD63Y.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE d2.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "X8HSBS99N48YZKF3" : { - "X8HSBS99N48YZKF3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "X8HSBS99N48YZKF3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "X8HSBS99N48YZKF3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "X8HSBS99N48YZKF3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.19 per Dedicated SUSE c5.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7AGDS8PY7CBCQ8E4" : { - "7AGDS8PY7CBCQ8E4.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7AGDS8PY7CBCQ8E4", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7AGDS8PY7CBCQ8E4.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7AGDS8PY7CBCQ8E4.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.388 per Dedicated Usage Windows with SQL Std m3.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4VV6V3MAZZGV47MU" : { - "4VV6V3MAZZGV47MU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4VV6V3MAZZGV47MU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4VV6V3MAZZGV47MU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4VV6V3MAZZGV47MU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.036 per On Demand Windows x1e.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RGKA4HJHM5TUYE4N" : { - "RGKA4HJHM5TUYE4N.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RGKA4HJHM5TUYE4N", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RGKA4HJHM5TUYE4N.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RGKA4HJHM5TUYE4N.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.485 per Dedicated SUSE m1.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NN2CMDZPNDJ4GWGU" : { - "NN2CMDZPNDJ4GWGU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NN2CMDZPNDJ4GWGU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NN2CMDZPNDJ4GWGU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NN2CMDZPNDJ4GWGU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.705 per On Demand Windows with SQL Std r4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QNQNFXEZD4JV6K7J" : { - "QNQNFXEZD4JV6K7J.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QNQNFXEZD4JV6K7J", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QNQNFXEZD4JV6K7J.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QNQNFXEZD4JV6K7J.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.730 per Dedicated RHEL hs1.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.7300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8GM5MHF25FH6C87J" : { - "8GM5MHF25FH6C87J.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8GM5MHF25FH6C87J", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8GM5MHF25FH6C87J.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8GM5MHF25FH6C87J.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.143 per Dedicated Windows BYOL c1.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Z8KQMF3Z8ZFPNANM" : { - "Z8KQMF3Z8ZFPNANM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Z8KQMF3Z8ZFPNANM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Z8KQMF3Z8ZFPNANM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Z8KQMF3Z8ZFPNANM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows i2.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "34JBU9PXRB8RPKYX" : { - "34JBU9PXRB8RPKYX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "34JBU9PXRB8RPKYX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "34JBU9PXRB8RPKYX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "34JBU9PXRB8RPKYX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.0872 per On Demand Windows with SQL Web t2.micro Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "N24FYYRTPFBF3UTD" : { - "N24FYYRTPFBF3UTD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "N24FYYRTPFBF3UTD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "N24FYYRTPFBF3UTD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "N24FYYRTPFBF3UTD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL r3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GS3NHNTTTS84KQSP" : { - "GS3NHNTTTS84KQSP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GS3NHNTTTS84KQSP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GS3NHNTTTS84KQSP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GS3NHNTTTS84KQSP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$17.37 per On Demand Windows with SQL Web x1e.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "17.3700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5B3J35TKN9FFQAR9" : { - "5B3J35TKN9FFQAR9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5B3J35TKN9FFQAR9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5B3J35TKN9FFQAR9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5B3J35TKN9FFQAR9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE i2.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PS7GTF4X2G9VEN36" : { - "PS7GTF4X2G9VEN36.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PS7GTF4X2G9VEN36", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PS7GTF4X2G9VEN36.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PS7GTF4X2G9VEN36.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web m4.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BD398TEHQSUMAUDS" : { - "BD398TEHQSUMAUDS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BD398TEHQSUMAUDS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BD398TEHQSUMAUDS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BD398TEHQSUMAUDS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.946 per On Demand Windows with SQL Std r3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "U5PMX34FM7A6Y7VW" : { - "U5PMX34FM7A6Y7VW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "U5PMX34FM7A6Y7VW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "U5PMX34FM7A6Y7VW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "U5PMX34FM7A6Y7VW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.95 per On Demand Windows with SQL Server Enterprise m3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "S4DJNZYAC3UVKJKQ" : { - "S4DJNZYAC3UVKJKQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "S4DJNZYAC3UVKJKQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "S4DJNZYAC3UVKJKQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "S4DJNZYAC3UVKJKQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE m4.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XXD6BKTUGGN2547V" : { - "XXD6BKTUGGN2547V.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XXD6BKTUGGN2547V", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XXD6BKTUGGN2547V.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XXD6BKTUGGN2547V.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.732 per Dedicated Usage Windows BYOL r3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FMZ94AJH8354XRME" : { - "FMZ94AJH8354XRME.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FMZ94AJH8354XRME", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FMZ94AJH8354XRME.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FMZ94AJH8354XRME.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.75 per On Demand RHEL d2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8U8GT7P4FU5ABATQ" : { - "8U8GT7P4FU5ABATQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8U8GT7P4FU5ABATQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8U8GT7P4FU5ABATQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8U8GT7P4FU5ABATQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.80 per Dedicated RHEL x1e.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5W546BUFYA67MPSM" : { - "5W546BUFYA67MPSM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5W546BUFYA67MPSM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5W546BUFYA67MPSM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5W546BUFYA67MPSM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.68 per On Demand Windows BYOL c3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "F2NC9U5PH9XZD7CQ" : { - "F2NC9U5PH9XZD7CQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "F2NC9U5PH9XZD7CQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "F2NC9U5PH9XZD7CQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "F2NC9U5PH9XZD7CQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows r3.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RW6CPEJMXU8H79H3" : { - "RW6CPEJMXU8H79H3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RW6CPEJMXU8H79H3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RW6CPEJMXU8H79H3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RW6CPEJMXU8H79H3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.686 per Dedicated Linux i3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JCAJXA8C736VK6KZ" : { - "JCAJXA8C736VK6KZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JCAJXA8C736VK6KZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JCAJXA8C736VK6KZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JCAJXA8C736VK6KZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.16 per On Demand SUSE c5.18xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FZXWWWKE7AQGFDHX" : { - "FZXWWWKE7AQGFDHX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FZXWWWKE7AQGFDHX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FZXWWWKE7AQGFDHX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FZXWWWKE7AQGFDHX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.658 per Dedicated Windows m1.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KTZYT2QK3KRKX3XT" : { - "KTZYT2QK3KRKX3XT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KTZYT2QK3KRKX3XT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KTZYT2QK3KRKX3XT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KTZYT2QK3KRKX3XT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$13.712 per On Demand Windows p3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.7120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "X2XXBVJKW4AFD4PA" : { - "X2XXBVJKW4AFD4PA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "X2XXBVJKW4AFD4PA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "X2XXBVJKW4AFD4PA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "X2XXBVJKW4AFD4PA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.133 per On Demand Windows with SQL Web i3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3DKA632YPCBQAV5W" : { - "3DKA632YPCBQAV5W.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3DKA632YPCBQAV5W", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3DKA632YPCBQAV5W.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3DKA632YPCBQAV5W.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.500 per On Demand Windows r3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TKW4P5TMSVH4PAQ3" : { - "TKW4P5TMSVH4PAQ3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TKW4P5TMSVH4PAQ3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TKW4P5TMSVH4PAQ3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TKW4P5TMSVH4PAQ3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise r4.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "P6BRAB67QFNZCBXV" : { - "P6BRAB67QFNZCBXV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "P6BRAB67QFNZCBXV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "P6BRAB67QFNZCBXV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "P6BRAB67QFNZCBXV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 for 525 Mbps per c5.large instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5Q9H4XMF36Y7R6TM" : { - "5Q9H4XMF36Y7R6TM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5Q9H4XMF36Y7R6TM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5Q9H4XMF36Y7R6TM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5Q9H4XMF36Y7R6TM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$16.132 per Dedicated Usage Windows with SQL Server Enterprise r3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.1320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7BNV89HT66ESXJZR" : { - "7BNV89HT66ESXJZR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7BNV89HT66ESXJZR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7BNV89HT66ESXJZR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7BNV89HT66ESXJZR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Std i3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PT4B2E8NE5P3DWW9" : { - "PT4B2E8NE5P3DWW9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PT4B2E8NE5P3DWW9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PT4B2E8NE5P3DWW9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PT4B2E8NE5P3DWW9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows r4.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9YBEBPDN4MSDTQMG" : { - "9YBEBPDN4MSDTQMG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9YBEBPDN4MSDTQMG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9YBEBPDN4MSDTQMG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9YBEBPDN4MSDTQMG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.27 per Dedicated Usage SUSE r4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3FHKPAK9WZBH4HVY" : { - "3FHKPAK9WZBH4HVY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3FHKPAK9WZBH4HVY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3FHKPAK9WZBH4HVY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3FHKPAK9WZBH4HVY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std m4.10xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AB34GJVVFDYBBGDJ" : { - "AB34GJVVFDYBBGDJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AB34GJVVFDYBBGDJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AB34GJVVFDYBBGDJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AB34GJVVFDYBBGDJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.550 per On Demand RHEL c3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "H8WYYS7YF6HH44J2" : { - "H8WYYS7YF6HH44J2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "H8WYYS7YF6HH44J2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "H8WYYS7YF6HH44J2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "H8WYYS7YF6HH44J2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.1064 per On Demand RHEL t2.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1064000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "D35U33PKHD4MZRB5" : { - "D35U33PKHD4MZRB5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "D35U33PKHD4MZRB5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "D35U33PKHD4MZRB5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "D35U33PKHD4MZRB5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.412 per On Demand SUSE i3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "J6U6GMEFVH686HBN" : { - "J6U6GMEFVH686HBN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "J6U6GMEFVH686HBN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "J6U6GMEFVH686HBN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "J6U6GMEFVH686HBN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.245 per On Demand Linux m2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KQTYTC2BEFA3UQD7" : { - "KQTYTC2BEFA3UQD7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KQTYTC2BEFA3UQD7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KQTYTC2BEFA3UQD7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KQTYTC2BEFA3UQD7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.624 per On Demand Linux i3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9MG5B7V4UUU2WPAV" : { - "9MG5B7V4UUU2WPAV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9MG5B7V4UUU2WPAV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9MG5B7V4UUU2WPAV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9MG5B7V4UUU2WPAV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per GB - data transfer in per month", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SQ37ZQ2CZ2H95VDC" : { - "SQ37ZQ2CZ2H95VDC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SQ37ZQ2CZ2H95VDC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SQ37ZQ2CZ2H95VDC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SQ37ZQ2CZ2H95VDC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.14 per On Demand Linux g3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8XV97FS637CF8UU5" : { - "8XV97FS637CF8UU5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8XV97FS637CF8UU5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8XV97FS637CF8UU5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8XV97FS637CF8UU5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows m4.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "599NS97NVDVBQMHV" : { - "599NS97NVDVBQMHV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "599NS97NVDVBQMHV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "599NS97NVDVBQMHV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "599NS97NVDVBQMHV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$15.968 per On Demand Windows with SQL Server Enterprise i3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.9680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4A3JNV4H2AJRA65Z" : { - "4A3JNV4H2AJRA65Z.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4A3JNV4H2AJRA65Z", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4A3JNV4H2AJRA65Z.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4A3JNV4H2AJRA65Z.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 for 4000 Mbps per c4.8xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "482YDSG5GBVK93D9" : { - "482YDSG5GBVK93D9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "482YDSG5GBVK93D9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "482YDSG5GBVK93D9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "482YDSG5GBVK93D9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$17.293 per On Demand Windows with SQL Std x1.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "17.2930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PRQPEPABCB4GFVSC" : { - "PRQPEPABCB4GFVSC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PRQPEPABCB4GFVSC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PRQPEPABCB4GFVSC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PRQPEPABCB4GFVSC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.504 per On Demand Windows c3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5CUNSRC3R37KEBS7" : { - "5CUNSRC3R37KEBS7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5CUNSRC3R37KEBS7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5CUNSRC3R37KEBS7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5CUNSRC3R37KEBS7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.815 per Dedicated Windows BYOL f1.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CHD28PNGD4WRFZDU" : { - "CHD28PNGD4WRFZDU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CHD28PNGD4WRFZDU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CHD28PNGD4WRFZDU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CHD28PNGD4WRFZDU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$24.61 per On Demand RHEL p3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "24.6100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "W8TS7DJMAYZW9FYR" : { - "W8TS7DJMAYZW9FYR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "W8TS7DJMAYZW9FYR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "W8TS7DJMAYZW9FYR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "W8TS7DJMAYZW9FYR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.496 per On Demand Linux i3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KTK7J8VMUNWAGTMN" : { - "KTK7J8VMUNWAGTMN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KTK7J8VMUNWAGTMN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KTK7J8VMUNWAGTMN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KTK7J8VMUNWAGTMN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows c4.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8MH9R5J8CSVZTVPD" : { - "8MH9R5J8CSVZTVPD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8MH9R5J8CSVZTVPD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8MH9R5J8CSVZTVPD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8MH9R5J8CSVZTVPD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.263 per On Demand Windows with SQL Web m4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SVMA6TVRGD4B8MMP" : { - "SVMA6TVRGD4B8MMP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SVMA6TVRGD4B8MMP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SVMA6TVRGD4B8MMP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SVMA6TVRGD4B8MMP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.766 per On Demand Windows with SQL Server Enterprise c4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GHUDYUUVD52EBZW2" : { - "GHUDYUUVD52EBZW2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GHUDYUUVD52EBZW2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GHUDYUUVD52EBZW2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GHUDYUUVD52EBZW2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux d2.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AC2NWG73MEX4BBX3" : { - "AC2NWG73MEX4BBX3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AC2NWG73MEX4BBX3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AC2NWG73MEX4BBX3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AC2NWG73MEX4BBX3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$6.769 per On Demand SUSE x1.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.7690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KWHF9MHUCVG2FS5B" : { - "KWHF9MHUCVG2FS5B.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KWHF9MHUCVG2FS5B", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KWHF9MHUCVG2FS5B.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KWHF9MHUCVG2FS5B.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise m3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6TGXJKCAZTAFTYB9" : { - "6TGXJKCAZTAFTYB9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6TGXJKCAZTAFTYB9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6TGXJKCAZTAFTYB9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6TGXJKCAZTAFTYB9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.164 per On Demand Windows with SQL Web r4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.1640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2RXSDBKMUNNU9JA9" : { - "2RXSDBKMUNNU9JA9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2RXSDBKMUNNU9JA9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2RXSDBKMUNNU9JA9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2RXSDBKMUNNU9JA9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.28 per On Demand Windows BYOL g3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RVMQS6Z2ZKDKPUUX" : { - "RVMQS6Z2ZKDKPUUX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RVMQS6Z2ZKDKPUUX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RVMQS6Z2ZKDKPUUX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RVMQS6Z2ZKDKPUUX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Linux f1.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "T2A8DS9QR9R22WZ2" : { - "T2A8DS9QR9R22WZ2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "T2A8DS9QR9R22WZ2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "T2A8DS9QR9R22WZ2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "T2A8DS9QR9R22WZ2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.816 per Dedicated RHEL i3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "77PE9Y6MJW62DYCD" : { - "77PE9Y6MJW62DYCD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "77PE9Y6MJW62DYCD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "77PE9Y6MJW62DYCD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "77PE9Y6MJW62DYCD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.11 per Dedicated Windows BYOL m4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SXC4GWK8KEDB7F93" : { - "SXC4GWK8KEDB7F93.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SXC4GWK8KEDB7F93", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SXC4GWK8KEDB7F93.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SXC4GWK8KEDB7F93.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.473 per Dedicated SUSE i3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "W5JCPDDZFQ9MFMCP" : { - "W5JCPDDZFQ9MFMCP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "W5JCPDDZFQ9MFMCP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "W5JCPDDZFQ9MFMCP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "W5JCPDDZFQ9MFMCP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$80.576 per Dedicated Windows with SQL Server Enterprise x1e.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "80.5760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "F2Q73ZKZWDKZ25TB" : { - "F2Q73ZKZWDKZ25TB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "F2Q73ZKZWDKZ25TB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "F2Q73ZKZWDKZ25TB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "F2Q73ZKZWDKZ25TB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.279 per Dedicated Usage RHEL c4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "P4NKH8TTQ4BBNRDQ" : { - "P4NKH8TTQ4BBNRDQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "P4NKH8TTQ4BBNRDQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "P4NKH8TTQ4BBNRDQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "P4NKH8TTQ4BBNRDQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL m3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9MZCJAF77KSVMAC2" : { - "9MZCJAF77KSVMAC2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9MZCJAF77KSVMAC2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9MZCJAF77KSVMAC2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9MZCJAF77KSVMAC2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$40.288 per On Demand Windows with SQL Server Enterprise x1e.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "40.2880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Z53PYBHU83UZWMXA" : { - "Z53PYBHU83UZWMXA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Z53PYBHU83UZWMXA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Z53PYBHU83UZWMXA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Z53PYBHU83UZWMXA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.105 per On Demand Windows BYOL c3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "32XCE2AVYT82WZYJ" : { - "32XCE2AVYT82WZYJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "32XCE2AVYT82WZYJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "32XCE2AVYT82WZYJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "32XCE2AVYT82WZYJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$31.936 per On Demand Windows with SQL Server Enterprise i3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "31.9360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UUX3B6ZG6M7C8N5A" : { - "UUX3B6ZG6M7C8N5A.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UUX3B6ZG6M7C8N5A", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UUX3B6ZG6M7C8N5A.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UUX3B6ZG6M7C8N5A.JRTCKXETXF.6YS6EN2CT7", - "description" : "$14.4 per Dedicated Usage Windows BYOL p2.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.4000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "F3Z269CFGBSPE3TW" : { - "F3Z269CFGBSPE3TW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "F3Z269CFGBSPE3TW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "F3Z269CFGBSPE3TW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "F3Z269CFGBSPE3TW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Web i3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DCYZX6GSD65USD7D" : { - "DCYZX6GSD65USD7D.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DCYZX6GSD65USD7D", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DCYZX6GSD65USD7D.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DCYZX6GSD65USD7D.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Linux p3.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UGAW5CN698QFXJS9" : { - "UGAW5CN698QFXJS9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UGAW5CN698QFXJS9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UGAW5CN698QFXJS9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UGAW5CN698QFXJS9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.459 per On Demand SQL Std i2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "J5HSGUZ5Y3QZKRJT" : { - "J5HSGUZ5Y3QZKRJT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "J5HSGUZ5Y3QZKRJT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "J5HSGUZ5Y3QZKRJT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "J5HSGUZ5Y3QZKRJT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$10.146 per On Demand Windows with SQL Server Enterprise i2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.1460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5CT452VS74WXW77W" : { - "5CT452VS74WXW77W.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5CT452VS74WXW77W", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5CT452VS74WXW77W.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5CT452VS74WXW77W.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.952 per On Demand Windows with SQL Std i3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "J8FC8SEVZRJMDMBB" : { - "J8FC8SEVZRJMDMBB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "J8FC8SEVZRJMDMBB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "J8FC8SEVZRJMDMBB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "J8FC8SEVZRJMDMBB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$20.676 per On Demand Windows with SQL Server Enterprise d2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "20.6760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CVWS7EQD5PCXDCZ3" : { - "CVWS7EQD5PCXDCZ3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CVWS7EQD5PCXDCZ3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CVWS7EQD5PCXDCZ3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CVWS7EQD5PCXDCZ3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux r3.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YU6MR6S9Z249VF2X" : { - "YU6MR6S9Z249VF2X.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YU6MR6S9Z249VF2X", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YU6MR6S9Z249VF2X.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YU6MR6S9Z249VF2X.JRTCKXETXF.6YS6EN2CT7", - "description" : "$5.62 per Dedicated Usage SUSE d2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.6200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4J62B76AXGGMHG57" : { - "4J62B76AXGGMHG57.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4J62B76AXGGMHG57", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4J62B76AXGGMHG57.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4J62B76AXGGMHG57.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.199 per On Demand Linux c4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CE5UXUUUXVX4BZXY" : { - "CE5UXUUUXVX4BZXY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CE5UXUUUXVX4BZXY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CE5UXUUUXVX4BZXY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CE5UXUUUXVX4BZXY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.1528 per On Demand RHEL t2.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1528000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5YU9U4CS2QFKY4UW" : { - "5YU9U4CS2QFKY4UW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5YU9U4CS2QFKY4UW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5YU9U4CS2QFKY4UW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5YU9U4CS2QFKY4UW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.9132 per Dedicated Windows with SQL Std r4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9132000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AA67GCTD2ZXZBRNU" : { - "AA67GCTD2ZXZBRNU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AA67GCTD2ZXZBRNU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AA67GCTD2ZXZBRNU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AA67GCTD2ZXZBRNU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Web i3.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "C8UY35TVY9KH2ZPK" : { - "C8UY35TVY9KH2ZPK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "C8UY35TVY9KH2ZPK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "C8UY35TVY9KH2ZPK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "C8UY35TVY9KH2ZPK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux d2.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DXSPZRZ93HBNNHCJ" : { - "DXSPZRZ93HBNNHCJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DXSPZRZ93HBNNHCJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DXSPZRZ93HBNNHCJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DXSPZRZ93HBNNHCJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.915 per Dedicated Usage Windows with SQL Server Enterprise c3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "B5C2VWZ3WKXH29GV" : { - "B5C2VWZ3WKXH29GV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "B5C2VWZ3WKXH29GV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "B5C2VWZ3WKXH29GV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "B5C2VWZ3WKXH29GV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.092 per Dedicated SQL Web i2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QEN4NKBP2QQKVJGV" : { - "QEN4NKBP2QQKVJGV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QEN4NKBP2QQKVJGV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QEN4NKBP2QQKVJGV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QEN4NKBP2QQKVJGV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.466 per On Demand RHEL x1e.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BMW624PB2S9DK3CT" : { - "BMW624PB2S9DK3CT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BMW624PB2S9DK3CT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BMW624PB2S9DK3CT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BMW624PB2S9DK3CT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.585 per On Demand Windows with SQL Std r3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6A98KYSNMAGXRPPR" : { - "6A98KYSNMAGXRPPR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6A98KYSNMAGXRPPR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6A98KYSNMAGXRPPR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6A98KYSNMAGXRPPR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.498 per Dedicated SQL Std m1.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AZGXC7HPDQNS3725" : { - "AZGXC7HPDQNS3725.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AZGXC7HPDQNS3725", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AZGXC7HPDQNS3725.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AZGXC7HPDQNS3725.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.040 per GB - US East (Northern Virginia) Amazon S3 accelerated data transfer from US West (Oregon)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5G5Y2SDTS4FP8GX7" : { - "5G5Y2SDTS4FP8GX7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5G5Y2SDTS4FP8GX7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5G5Y2SDTS4FP8GX7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5G5Y2SDTS4FP8GX7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$6.82 per On Demand Windows BYOL i2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.8200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AYPJKSTN4WJQRZAK" : { - "AYPJKSTN4WJQRZAK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AYPJKSTN4WJQRZAK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AYPJKSTN4WJQRZAK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AYPJKSTN4WJQRZAK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.0162 per On Demand Windows t2.micro Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0162000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Y2TP2WYH8ZP2ZSNP" : { - "Y2TP2WYH8ZP2ZSNP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Y2TP2WYH8ZP2ZSNP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Y2TP2WYH8ZP2ZSNP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Y2TP2WYH8ZP2ZSNP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.883 per On Demand Windows with SQL Server Enterprise c4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UHDU9A8XN6ZW8X9D" : { - "UHDU9A8XN6ZW8X9D.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UHDU9A8XN6ZW8X9D", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UHDU9A8XN6ZW8X9D.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UHDU9A8XN6ZW8X9D.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Linux i3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CMJW5X9JZ98RXSMU" : { - "CMJW5X9JZ98RXSMU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CMJW5X9JZ98RXSMU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CMJW5X9JZ98RXSMU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CMJW5X9JZ98RXSMU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.21 per On Demand Windows BYOL c3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "F89CDKSSQ2AVMRYW" : { - "F89CDKSSQ2AVMRYW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "F89CDKSSQ2AVMRYW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "F89CDKSSQ2AVMRYW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "F89CDKSSQ2AVMRYW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows BYOL i3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8VCNEHQMSCQS4P39" : { - "8VCNEHQMSCQS4P39.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8VCNEHQMSCQS4P39", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8VCNEHQMSCQS4P39.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8VCNEHQMSCQS4P39.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.10 per On Demand Linux m4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZD2U9663ARS5XSMA" : { - "ZD2U9663ARS5XSMA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZD2U9663ARS5XSMA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZD2U9663ARS5XSMA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZD2U9663ARS5XSMA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL r3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "K73JG8M9A8MW4QWP" : { - "K73JG8M9A8MW4QWP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "K73JG8M9A8MW4QWP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "K73JG8M9A8MW4QWP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "K73JG8M9A8MW4QWP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.992 per On Demand Windows BYOL i3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2DKER9NNJBJDN6TX" : { - "2DKER9NNJBJDN6TX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2DKER9NNJBJDN6TX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2DKER9NNJBJDN6TX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2DKER9NNJBJDN6TX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL r4.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RKUUP7AYRVCXF3ZJ" : { - "RKUUP7AYRVCXF3ZJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RKUUP7AYRVCXF3ZJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RKUUP7AYRVCXF3ZJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RKUUP7AYRVCXF3ZJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.299 per On Demand Windows m1.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Y8HYRU3BZZ4QFJHH" : { - "Y8HYRU3BZZ4QFJHH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Y8HYRU3BZZ4QFJHH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Y8HYRU3BZZ4QFJHH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Y8HYRU3BZZ4QFJHH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.02 per GB - US East (Northern Virginia) data transfer to Asia Pacific (Seoul)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "U7RB8YXJ8WGXHNK3" : { - "U7RB8YXJ8WGXHNK3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "U7RB8YXJ8WGXHNK3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "U7RB8YXJ8WGXHNK3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "U7RB8YXJ8WGXHNK3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.490 per Dedicated SQL Web m2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5QR4TP35UWG5GTHK" : { - "5QR4TP35UWG5GTHK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5QR4TP35UWG5GTHK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5QR4TP35UWG5GTHK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5QR4TP35UWG5GTHK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows BYOL c5.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MTJM4P7NUQTD7TTY" : { - "MTJM4P7NUQTD7TTY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MTJM4P7NUQTD7TTY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MTJM4P7NUQTD7TTY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MTJM4P7NUQTD7TTY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Server Enterprise i3.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "C79HZMYRKTWS54VW" : { - "C79HZMYRKTWS54VW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "C79HZMYRKTWS54VW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "C79HZMYRKTWS54VW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "C79HZMYRKTWS54VW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows c5.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EKP8GMP6PAVZ6VVY" : { - "EKP8GMP6PAVZ6VVY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EKP8GMP6PAVZ6VVY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EKP8GMP6PAVZ6VVY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EKP8GMP6PAVZ6VVY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows m4.10xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9YVNCN8XCQ7NAPYJ" : { - "9YVNCN8XCQ7NAPYJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9YVNCN8XCQ7NAPYJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9YVNCN8XCQ7NAPYJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9YVNCN8XCQ7NAPYJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.40 per On Demand Windows BYOL m4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KWYNFA3ZNTZ3FWQA" : { - "KWYNFA3ZNTZ3FWQA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KWYNFA3ZNTZ3FWQA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KWYNFA3ZNTZ3FWQA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KWYNFA3ZNTZ3FWQA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.832 per Dedicated Usage SUSE r3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SQ7KCWAADJKDQN9W" : { - "SQ7KCWAADJKDQN9W.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SQ7KCWAADJKDQN9W", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SQ7KCWAADJKDQN9W.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SQ7KCWAADJKDQN9W.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.977 per Dedicated Usage Windows with SQL Server Enterprise r4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YUPSNN9JFU6UZYAS" : { - "YUPSNN9JFU6UZYAS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YUPSNN9JFU6UZYAS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YUPSNN9JFU6UZYAS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YUPSNN9JFU6UZYAS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.293 per Dedicated Usage Linux m3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "S44SURMZ8AJWTZYH" : { - "S44SURMZ8AJWTZYH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "S44SURMZ8AJWTZYH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "S44SURMZ8AJWTZYH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "S44SURMZ8AJWTZYH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows d2.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XU7GMTDRK2VMN7K9" : { - "XU7GMTDRK2VMN7K9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XU7GMTDRK2VMN7K9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XU7GMTDRK2VMN7K9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XU7GMTDRK2VMN7K9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.600 per On Demand SUSE cr1.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XHTGRKAAUAXJEMXS" : { - "XHTGRKAAUAXJEMXS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XHTGRKAAUAXJEMXS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XHTGRKAAUAXJEMXS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XHTGRKAAUAXJEMXS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$5.65 per Dedicated Usage RHEL d2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.6500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XK8PATGXFTCH3726" : { - "XK8PATGXFTCH3726.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XK8PATGXFTCH3726", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XK8PATGXFTCH3726.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XK8PATGXFTCH3726.JRTCKXETXF.6YS6EN2CT7", - "description" : "$12.485 per Dedicated Usage Windows with SQL Std c4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.4850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "WHYQJ8ZPHXUK6SXM" : { - "WHYQJ8ZPHXUK6SXM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "WHYQJ8ZPHXUK6SXM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "WHYQJ8ZPHXUK6SXM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "WHYQJ8ZPHXUK6SXM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.298 per Dedicated SQL Web c3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2VFDAQVRR43WD6VS" : { - "2VFDAQVRR43WD6VS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2VFDAQVRR43WD6VS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2VFDAQVRR43WD6VS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2VFDAQVRR43WD6VS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std r4.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JTHCG93HEJ7CXDPB" : { - "JTHCG93HEJ7CXDPB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JTHCG93HEJ7CXDPB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JTHCG93HEJ7CXDPB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JTHCG93HEJ7CXDPB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL i2.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2NBCH8MGXY3QQ5ZH" : { - "2NBCH8MGXY3QQ5ZH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2NBCH8MGXY3QQ5ZH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2NBCH8MGXY3QQ5ZH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2NBCH8MGXY3QQ5ZH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.336 per On Demand Windows with SQL Std c5.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PHZYKS4DKKZQTHE2" : { - "PHZYKS4DKKZQTHE2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PHZYKS4DKKZQTHE2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PHZYKS4DKKZQTHE2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PHZYKS4DKKZQTHE2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.92 per Dedicated Usage Linux p2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.9200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ECM8RSBXMC7F4WAS" : { - "ECM8RSBXMC7F4WAS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ECM8RSBXMC7F4WAS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ECM8RSBXMC7F4WAS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ECM8RSBXMC7F4WAS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.20 per On Demand Linux m4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9HUMJZVBNYX2RZS7" : { - "9HUMJZVBNYX2RZS7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9HUMJZVBNYX2RZS7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9HUMJZVBNYX2RZS7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9HUMJZVBNYX2RZS7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.835 per Dedicated Windows BYOL x1e.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AYWDVNJQKCDA6E7M" : { - "AYWDVNJQKCDA6E7M.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AYWDVNJQKCDA6E7M", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AYWDVNJQKCDA6E7M.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AYWDVNJQKCDA6E7M.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 for 500 Mbps per c4.large instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "M3EYMWB8284E38CQ" : { - "M3EYMWB8284E38CQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "M3EYMWB8284E38CQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "M3EYMWB8284E38CQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "M3EYMWB8284E38CQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$16.072 per Dedicated Usage Windows with SQL Server Enterprise g2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.0720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FQVPYK9V83HTQEXR" : { - "FQVPYK9V83HTQEXR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FQVPYK9V83HTQEXR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FQVPYK9V83HTQEXR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FQVPYK9V83HTQEXR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.193 per Dedicated Windows BYOL m1.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YD2QA7TB4GYV4U3P" : { - "YD2QA7TB4GYV4U3P.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YD2QA7TB4GYV4U3P", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YD2QA7TB4GYV4U3P.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YD2QA7TB4GYV4U3P.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL m3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9HPUN6CF83QX5EC3" : { - "9HPUN6CF83QX5EC3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9HPUN6CF83QX5EC3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9HPUN6CF83QX5EC3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9HPUN6CF83QX5EC3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.362 per On Demand SQL Std m1.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5ZD4WU2CC6CZ2KXG" : { - "5ZD4WU2CC6CZ2KXG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5ZD4WU2CC6CZ2KXG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5ZD4WU2CC6CZ2KXG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5ZD4WU2CC6CZ2KXG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web c4.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "N4AWRPYC2F4YT3WW" : { - "N4AWRPYC2F4YT3WW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "N4AWRPYC2F4YT3WW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "N4AWRPYC2F4YT3WW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "N4AWRPYC2F4YT3WW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.630 per Dedicated RHEL cr1.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VV5A7BNXRSZQJ6MG" : { - "VV5A7BNXRSZQJ6MG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VV5A7BNXRSZQJ6MG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VV5A7BNXRSZQJ6MG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VV5A7BNXRSZQJ6MG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.225 per On Demand Windows r4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9HGFJGGDXTRDQUED" : { - "9HGFJGGDXTRDQUED.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9HGFJGGDXTRDQUED", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9HGFJGGDXTRDQUED.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9HGFJGGDXTRDQUED.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.14 per Dedicated Usage Windows m3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5XHJPTC7E6NA5KGC" : { - "5XHJPTC7E6NA5KGC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5XHJPTC7E6NA5KGC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5XHJPTC7E6NA5KGC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5XHJPTC7E6NA5KGC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$6.820 per Dedicated Windows BYOL i2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.8200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "84S2KXJ69JV6DQFX" : { - "84S2KXJ69JV6DQFX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "84S2KXJ69JV6DQFX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "84S2KXJ69JV6DQFX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "84S2KXJ69JV6DQFX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.356 per On Demand SUSE r4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.3560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "D5JBSPHEHDXDUWJR" : { - "D5JBSPHEHDXDUWJR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "D5JBSPHEHDXDUWJR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "D5JBSPHEHDXDUWJR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "D5JBSPHEHDXDUWJR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.665 per On Demand Linux r3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UMJEA2FJR4MEZ7ZC" : { - "UMJEA2FJR4MEZ7ZC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UMJEA2FJR4MEZ7ZC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UMJEA2FJR4MEZ7ZC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UMJEA2FJR4MEZ7ZC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise r3.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "56STRVG6SNYJSZDZ" : { - "56STRVG6SNYJSZDZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "56STRVG6SNYJSZDZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "56STRVG6SNYJSZDZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "56STRVG6SNYJSZDZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.572 per Dedicated Windows BYOL c1.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7HB6PUR4SRPNKUUK" : { - "7HB6PUR4SRPNKUUK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7HB6PUR4SRPNKUUK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7HB6PUR4SRPNKUUK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7HB6PUR4SRPNKUUK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per GB - South America (Sao Paulo) data transfer from US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YHQ4HRT9DMUQV8QN" : { - "YHQ4HRT9DMUQV8QN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YHQ4HRT9DMUQV8QN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YHQ4HRT9DMUQV8QN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YHQ4HRT9DMUQV8QN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per RHEL c5.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZDSU8EJ7X5PVHMBU" : { - "ZDSU8EJ7X5PVHMBU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZDSU8EJ7X5PVHMBU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZDSU8EJ7X5PVHMBU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZDSU8EJ7X5PVHMBU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per RHEL x1e.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "63BQRF7SF8WK9XJC" : { - "63BQRF7SF8WK9XJC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "63BQRF7SF8WK9XJC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "63BQRF7SF8WK9XJC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "63BQRF7SF8WK9XJC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows g2.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QHXEDKXAPRFFF59N" : { - "QHXEDKXAPRFFF59N.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QHXEDKXAPRFFF59N", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QHXEDKXAPRFFF59N.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QHXEDKXAPRFFF59N.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.191 per Dedicated SQL Web c3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FWCGRGHA7B5TAJDH" : { - "FWCGRGHA7B5TAJDH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FWCGRGHA7B5TAJDH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FWCGRGHA7B5TAJDH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FWCGRGHA7B5TAJDH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.746 per Dedicated Linux i3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KV8S83TSUZZQ2X2K" : { - "KV8S83TSUZZQ2X2K.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KV8S83TSUZZQ2X2K", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KV8S83TSUZZQ2X2K.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KV8S83TSUZZQ2X2K.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.216 per On Demand RHEL i3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GCDTB8AS6VH4HTCD" : { - "GCDTB8AS6VH4HTCD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GCDTB8AS6VH4HTCD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GCDTB8AS6VH4HTCD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GCDTB8AS6VH4HTCD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL r4.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GMGKK582WT2TW2KT" : { - "GMGKK582WT2TW2KT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GMGKK582WT2TW2KT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GMGKK582WT2TW2KT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GMGKK582WT2TW2KT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$6.672 per On Demand Windows BYOL x1e.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.6720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Z65ZPSYYEJ69PVAM" : { - "Z65ZPSYYEJ69PVAM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Z65ZPSYYEJ69PVAM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Z65ZPSYYEJ69PVAM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Z65ZPSYYEJ69PVAM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$6.802 per On Demand RHEL x1e.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.8020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GVNK6UKCGGH82WUC" : { - "GVNK6UKCGGH82WUC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GVNK6UKCGGH82WUC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GVNK6UKCGGH82WUC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GVNK6UKCGGH82WUC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$8.64 per On Demand Windows with SQL Std m4.10xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.6400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "W832TY8QSXWJMAAY" : { - "W832TY8QSXWJMAAY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "W832TY8QSXWJMAAY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "W832TY8QSXWJMAAY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "W832TY8QSXWJMAAY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.128 per On Demand Windows BYOL r4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5XB5GJ5E68GHCXVW" : { - "5XB5GJ5E68GHCXVW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5XB5GJ5E68GHCXVW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5XB5GJ5E68GHCXVW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5XB5GJ5E68GHCXVW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web c3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "49KSPMGA5DCV6VC6" : { - "49KSPMGA5DCV6VC6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "49KSPMGA5DCV6VC6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "49KSPMGA5DCV6VC6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "49KSPMGA5DCV6VC6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.81 per On Demand RHEL c5.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RBSDAQVUVBS5AAS2" : { - "RBSDAQVUVBS5AAS2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RBSDAQVUVBS5AAS2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RBSDAQVUVBS5AAS2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RBSDAQVUVBS5AAS2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.062 per On Demand Windows d2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "E22Q4PYY34TZ2E23" : { - "E22Q4PYY34TZ2E23.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "E22Q4PYY34TZ2E23", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "E22Q4PYY34TZ2E23.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "E22Q4PYY34TZ2E23.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.256 per On Demand Windows BYOL r4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MKTYG4ZPBZEJP3T8" : { - "MKTYG4ZPBZEJP3T8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MKTYG4ZPBZEJP3T8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MKTYG4ZPBZEJP3T8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MKTYG4ZPBZEJP3T8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web m4.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6NHJBAA5ZJ25DJVN" : { - "6NHJBAA5ZJ25DJVN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6NHJBAA5ZJ25DJVN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6NHJBAA5ZJ25DJVN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6NHJBAA5ZJ25DJVN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.033 per On Demand Windows with SQL Server Enterprise r3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.0330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PG7N32NDHXVN79SC" : { - "PG7N32NDHXVN79SC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PG7N32NDHXVN79SC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PG7N32NDHXVN79SC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PG7N32NDHXVN79SC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$26.788 per On Demand SUSE x1e.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "26.7880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9HJ2ASV4W3SUZJEE" : { - "9HJ2ASV4W3SUZJEE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9HJ2ASV4W3SUZJEE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9HJ2ASV4W3SUZJEE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9HJ2ASV4W3SUZJEE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows BYOL c5.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MGQXS8Z3TAKPMGUM" : { - "MGQXS8Z3TAKPMGUM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MGQXS8Z3TAKPMGUM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MGQXS8Z3TAKPMGUM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MGQXS8Z3TAKPMGUM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.064 per On Demand Linux r4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VMVVV7NDFCNYYB5X" : { - "VMVVV7NDFCNYYB5X.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VMVVV7NDFCNYYB5X", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VMVVV7NDFCNYYB5X.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VMVVV7NDFCNYYB5X.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.184 per Dedicated Usage SUSE m3.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8VNJC4YN7JDXVN8W" : { - "8VNJC4YN7JDXVN8W.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8VNJC4YN7JDXVN8W", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8VNJC4YN7JDXVN8W.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8VNJC4YN7JDXVN8W.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise r4.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "H446M8G8PYYV4XKM" : { - "H446M8G8PYYV4XKM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "H446M8G8PYYV4XKM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "H446M8G8PYYV4XKM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "H446M8G8PYYV4XKM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 for 1000 Mbps per m4.2xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Q7DXWWF6MF8PNEWR" : { - "Q7DXWWF6MF8PNEWR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Q7DXWWF6MF8PNEWR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Q7DXWWF6MF8PNEWR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Q7DXWWF6MF8PNEWR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.585 per Dedicated Usage Linux m3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "N7JF33XCBEZEKJFQ" : { - "N7JF33XCBEZEKJFQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "N7JF33XCBEZEKJFQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "N7JF33XCBEZEKJFQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "N7JF33XCBEZEKJFQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.02 per GB - EU (Ireland) data transfer to US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JNRAY8EMZWNC3JNN" : { - "JNRAY8EMZWNC3JNN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JNRAY8EMZWNC3JNN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JNRAY8EMZWNC3JNN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JNRAY8EMZWNC3JNN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.110 per On Demand RHEL m2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "59S5R83GFPUAGVR5" : { - "59S5R83GFPUAGVR5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "59S5R83GFPUAGVR5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "59S5R83GFPUAGVR5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "59S5R83GFPUAGVR5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.045 per GB Data Processed by NAT Gateways", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3ZYHHAY9TXWX5S7X" : { - "3ZYHHAY9TXWX5S7X.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3ZYHHAY9TXWX5S7X", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3ZYHHAY9TXWX5S7X.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3ZYHHAY9TXWX5S7X.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Linux c5.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TF7VKDXQVWSCQYBK" : { - "TF7VKDXQVWSCQYBK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TF7VKDXQVWSCQYBK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TF7VKDXQVWSCQYBK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TF7VKDXQVWSCQYBK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.0158 per On Demand SUSE t2.nano Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0158000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "89ECMN7HXY7HZ9TN" : { - "89ECMN7HXY7HZ9TN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "89ECMN7HXY7HZ9TN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "89ECMN7HXY7HZ9TN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "89ECMN7HXY7HZ9TN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL c3.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FQFTKTSPGMBGY47W" : { - "FQFTKTSPGMBGY47W.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FQFTKTSPGMBGY47W", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FQFTKTSPGMBGY47W.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FQFTKTSPGMBGY47W.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.188 per Dedicated Usage Windows with SQL Web r4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "48VURD6MVAZ3M5JX" : { - "48VURD6MVAZ3M5JX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "48VURD6MVAZ3M5JX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "48VURD6MVAZ3M5JX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "48VURD6MVAZ3M5JX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.650 per On Demand Linux g2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6UG463TFGD9X4M5A" : { - "6UG463TFGD9X4M5A.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6UG463TFGD9X4M5A", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6UG463TFGD9X4M5A.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6UG463TFGD9X4M5A.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.293 per Dedicated Usage Windows BYOL m3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HKEJ2ZPKMXDAARWE" : { - "HKEJ2ZPKMXDAARWE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HKEJ2ZPKMXDAARWE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HKEJ2ZPKMXDAARWE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HKEJ2ZPKMXDAARWE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web i2.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MNCVCF2WMXJ3B7FB" : { - "MNCVCF2WMXJ3B7FB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MNCVCF2WMXJ3B7FB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MNCVCF2WMXJ3B7FB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MNCVCF2WMXJ3B7FB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.156 per On Demand Windows BYOL i3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "57XGZG7W7W67682J" : { - "57XGZG7W7W67682J.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "57XGZG7W7W67682J", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "57XGZG7W7W67682J.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "57XGZG7W7W67682J.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.17 per Dedicated RHEL m4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QY3YSEST3C6FQNQH" : { - "QY3YSEST3C6FQNQH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QY3YSEST3C6FQNQH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QY3YSEST3C6FQNQH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QY3YSEST3C6FQNQH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.0464 per On Demand Linux t2.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0464000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KVJ2TM3PPP6NB94R" : { - "KVJ2TM3PPP6NB94R.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KVJ2TM3PPP6NB94R", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KVJ2TM3PPP6NB94R.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KVJ2TM3PPP6NB94R.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL m4.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JRRHF5CXWN8M3MCY" : { - "JRRHF5CXWN8M3MCY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JRRHF5CXWN8M3MCY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JRRHF5CXWN8M3MCY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JRRHF5CXWN8M3MCY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.146 per Dedicated Usage SUSE d2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Q39AEGEKTSQKK4D3" : { - "Q39AEGEKTSQKK4D3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Q39AEGEKTSQKK4D3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Q39AEGEKTSQKK4D3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Q39AEGEKTSQKK4D3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Std i3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9CHFMGVK3AF7D8KU" : { - "9CHFMGVK3AF7D8KU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9CHFMGVK3AF7D8KU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9CHFMGVK3AF7D8KU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9CHFMGVK3AF7D8KU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.661 per Dedicated Usage RHEL d2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9YXTC4KPBJSYNVNU" : { - "9YXTC4KPBJSYNVNU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9YXTC4KPBJSYNVNU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9YXTC4KPBJSYNVNU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9YXTC4KPBJSYNVNU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$16.778 per Dedicated Windows with SQL Server Enterprise c5.9xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.7780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VCP5S8DX28AZ8RR2" : { - "VCP5S8DX28AZ8RR2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VCP5S8DX28AZ8RR2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VCP5S8DX28AZ8RR2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VCP5S8DX28AZ8RR2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.536 per On Demand Windows with SQL Server Enterprise m4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DPPVX7QQ3SGX3TED" : { - "DPPVX7QQ3SGX3TED.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DPPVX7QQ3SGX3TED", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DPPVX7QQ3SGX3TED.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DPPVX7QQ3SGX3TED.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.41 per On Demand RHEL g3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PSF39FBPC6PFD9W3" : { - "PSF39FBPC6PFD9W3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PSF39FBPC6PFD9W3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PSF39FBPC6PFD9W3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PSF39FBPC6PFD9W3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.457 per Dedicated Windows with SQL Server Enterprise c5.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Z7CW8886929Z9X5V" : { - "Z7CW8886929Z9X5V.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Z7CW8886929Z9X5V", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Z7CW8886929Z9X5V.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Z7CW8886929Z9X5V.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.88 per Dedicated Linux m4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MGFVS9REN5EG5F65" : { - "MGFVS9REN5EG5F65.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MGFVS9REN5EG5F65", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MGFVS9REN5EG5F65.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MGFVS9REN5EG5F65.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.49 per Dedicated RHEL c5.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UPGE3ZJ573XGT9P7" : { - "UPGE3ZJ573XGT9P7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UPGE3ZJ573XGT9P7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UPGE3ZJ573XGT9P7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UPGE3ZJ573XGT9P7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.850 per Dedicated SQL Std cg1.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DFF53P772NKJNMUW" : { - "DFF53P772NKJNMUW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DFF53P772NKJNMUW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DFF53P772NKJNMUW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DFF53P772NKJNMUW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$8.64 per Dedicated Windows with SQL Std m4.10xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.6400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GK3JQYYZHNZAHQ66" : { - "GK3JQYYZHNZAHQ66.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GK3JQYYZHNZAHQ66", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GK3JQYYZHNZAHQ66.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GK3JQYYZHNZAHQ66.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web r3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2E92X23Q6E3W4UYQ" : { - "2E92X23Q6E3W4UYQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2E92X23Q6E3W4UYQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2E92X23Q6E3W4UYQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2E92X23Q6E3W4UYQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE d2.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6U5VMCFHHMTH3QW6" : { - "6U5VMCFHHMTH3QW6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6U5VMCFHHMTH3QW6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6U5VMCFHHMTH3QW6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6U5VMCFHHMTH3QW6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.025 per GB-month of Cold HDD (sc1) provisioned storage - US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB-Mo", - "pricePerUnit" : { - "USD" : "0.0250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KNDB73D8XZCD246T" : { - "KNDB73D8XZCD246T.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KNDB73D8XZCD246T", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KNDB73D8XZCD246T.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KNDB73D8XZCD246T.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.489 per On Demand SQL Std m2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6B92TZ937DKQEP93" : { - "6B92TZ937DKQEP93.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6B92TZ937DKQEP93", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6B92TZ937DKQEP93.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6B92TZ937DKQEP93.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.834 per On Demand Windows with SQL Std c5.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "J28DJ6QCZ8VU7DZQ" : { - "J28DJ6QCZ8VU7DZQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "J28DJ6QCZ8VU7DZQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "J28DJ6QCZ8VU7DZQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "J28DJ6QCZ8VU7DZQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$6.198 per On Demand Windows d2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.1980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "K53MFK3A5RMBQM4F" : { - "K53MFK3A5RMBQM4F.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "K53MFK3A5RMBQM4F", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "K53MFK3A5RMBQM4F.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "K53MFK3A5RMBQM4F.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.56 per On Demand Windows BYOL g3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ES3XAJX5E6SRUWY5" : { - "ES3XAJX5E6SRUWY5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ES3XAJX5E6SRUWY5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ES3XAJX5E6SRUWY5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ES3XAJX5E6SRUWY5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.329 per Dedicated Usage Windows with SQL Std c4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZV6FCW29ACDSB8CF" : { - "ZV6FCW29ACDSB8CF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZV6FCW29ACDSB8CF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZV6FCW29ACDSB8CF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZV6FCW29ACDSB8CF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$18.84 per Dedicated Windows with SQL Server Enterprise m4.10xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "18.8400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Y4XD9NA45RXPDXY7" : { - "Y4XD9NA45RXPDXY7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Y4XD9NA45RXPDXY7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Y4XD9NA45RXPDXY7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Y4XD9NA45RXPDXY7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.750 per On Demand SUSE g2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EVFZ5VDSHTZYPX89" : { - "EVFZ5VDSHTZYPX89.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EVFZ5VDSHTZYPX89", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EVFZ5VDSHTZYPX89.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EVFZ5VDSHTZYPX89.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.178 per Dedicated SUSE m2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3CHY5ZRYJFN6TYQF" : { - "3CHY5ZRYJFN6TYQF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3CHY5ZRYJFN6TYQF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3CHY5ZRYJFN6TYQF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3CHY5ZRYJFN6TYQF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL r4.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TUYCY7SN3AZV7PVP" : { - "TUYCY7SN3AZV7PVP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TUYCY7SN3AZV7PVP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TUYCY7SN3AZV7PVP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TUYCY7SN3AZV7PVP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 for 4000 Mbps per d2.8xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RGN4FERZ8NXYWRDE" : { - "RGN4FERZ8NXYWRDE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RGN4FERZ8NXYWRDE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RGN4FERZ8NXYWRDE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RGN4FERZ8NXYWRDE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per GB - US West (Oregon) data transfer from US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "WXU9QBE38YNQDZE3" : { - "WXU9QBE38YNQDZE3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "WXU9QBE38YNQDZE3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "WXU9QBE38YNQDZE3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "WXU9QBE38YNQDZE3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.285 per Dedicated Usage Windows m3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZC3Y45SUG7K4RB8W" : { - "ZC3Y45SUG7K4RB8W.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZC3Y45SUG7K4RB8W", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZC3Y45SUG7K4RB8W.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZC3Y45SUG7K4RB8W.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.231 per Dedicated Windows c1.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "G78P4J48KHGMSX93" : { - "G78P4J48KHGMSX93.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "G78P4J48KHGMSX93", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "G78P4J48KHGMSX93.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "G78P4J48KHGMSX93.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Server Enterprise x1e.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "M2YSHUBETB3JX4M4" : { - "M2YSHUBETB3JX4M4.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "M2YSHUBETB3JX4M4", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "M2YSHUBETB3JX4M4.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "M2YSHUBETB3JX4M4.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.045 per NAT Gateway Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "G2A5K95XMCKDA9AT" : { - "G2A5K95XMCKDA9AT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "G2A5K95XMCKDA9AT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "G2A5K95XMCKDA9AT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "G2A5K95XMCKDA9AT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows i3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "C7UZ38M4P93WMCBP" : { - "C7UZ38M4P93WMCBP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "C7UZ38M4P93WMCBP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "C7UZ38M4P93WMCBP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "C7UZ38M4P93WMCBP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$8.02 per Dedicated Usage SUSE p2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "B6VB3UEXSBZ2WHBT" : { - "B6VB3UEXSBZ2WHBT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "B6VB3UEXSBZ2WHBT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "B6VB3UEXSBZ2WHBT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "B6VB3UEXSBZ2WHBT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL r3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "R9GDS3K2XNJM96RZ" : { - "R9GDS3K2XNJM96RZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "R9GDS3K2XNJM96RZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "R9GDS3K2XNJM96RZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "R9GDS3K2XNJM96RZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 for 1000 Mbps per d2.2xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NW4B786HNAH6HZ7R" : { - "NW4B786HNAH6HZ7R.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NW4B786HNAH6HZ7R", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NW4B786HNAH6HZ7R.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NW4B786HNAH6HZ7R.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.02 per GB - US East (Northern Virginia) data transfer to EU (Ireland)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "V7ZPECCN7AX2ME3K" : { - "V7ZPECCN7AX2ME3K.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "V7ZPECCN7AX2ME3K", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "V7ZPECCN7AX2ME3K.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "V7ZPECCN7AX2ME3K.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.0324 per On Demand Windows t2.small Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CCH8XMK5SWS2XV75" : { - "CCH8XMK5SWS2XV75.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CCH8XMK5SWS2XV75", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CCH8XMK5SWS2XV75.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CCH8XMK5SWS2XV75.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows c5.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TMS2BYDD3JMP8ZHP" : { - "TMS2BYDD3JMP8ZHP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TMS2BYDD3JMP8ZHP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TMS2BYDD3JMP8ZHP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TMS2BYDD3JMP8ZHP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL r4.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "H6JT2V67UAFS4Z2Y" : { - "H6JT2V67UAFS4Z2Y.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "H6JT2V67UAFS4Z2Y", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "H6JT2V67UAFS4Z2Y.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "H6JT2V67UAFS4Z2Y.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.775 per On Demand SQL Web cc2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DE3QV5WMKKGZRFHG" : { - "DE3QV5WMKKGZRFHG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DE3QV5WMKKGZRFHG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DE3QV5WMKKGZRFHG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DE3QV5WMKKGZRFHG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$16.747 per Dedicated Usage Windows with SQL Server Enterprise c4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.7470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TY2FBZ3Y8X8N6TXE" : { - "TY2FBZ3Y8X8N6TXE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TY2FBZ3Y8X8N6TXE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TY2FBZ3Y8X8N6TXE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TY2FBZ3Y8X8N6TXE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Linux x1e.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Y9WDY7HG6S2NXFSP" : { - "Y9WDY7HG6S2NXFSP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Y9WDY7HG6S2NXFSP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Y9WDY7HG6S2NXFSP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Y9WDY7HG6S2NXFSP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.593 per Dedicated Usage RHEL r3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7E7KNSKBJUR3PK9V" : { - "7E7KNSKBJUR3PK9V.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7E7KNSKBJUR3PK9V", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7E7KNSKBJUR3PK9V.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7E7KNSKBJUR3PK9V.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows p3.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BHX8HR3SKNMTY2Z6" : { - "BHX8HR3SKNMTY2Z6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BHX8HR3SKNMTY2Z6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BHX8HR3SKNMTY2Z6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BHX8HR3SKNMTY2Z6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.752 per On Demand Windows c3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YAPU23CHKA23RRR7" : { - "YAPU23CHKA23RRR7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YAPU23CHKA23RRR7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YAPU23CHKA23RRR7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YAPU23CHKA23RRR7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.30 per On Demand SUSE m4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TCG3S2HMU5VP2DFN" : { - "TCG3S2HMU5VP2DFN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TCG3S2HMU5VP2DFN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TCG3S2HMU5VP2DFN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TCG3S2HMU5VP2DFN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL c3.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ENFQDU23RKAAQR4R" : { - "ENFQDU23RKAAQR4R.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ENFQDU23RKAAQR4R", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ENFQDU23RKAAQR4R.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ENFQDU23RKAAQR4R.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows c3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "R6T5AVAY3H4NQFQ4" : { - "R6T5AVAY3H4NQFQ4.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "R6T5AVAY3H4NQFQ4", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "R6T5AVAY3H4NQFQ4.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "R6T5AVAY3H4NQFQ4.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.953 per Dedicated Usage Windows r4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HZC9FAP4F9Y8JW67" : { - "HZC9FAP4F9Y8JW67.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HZC9FAP4F9Y8JW67", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HZC9FAP4F9Y8JW67.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HZC9FAP4F9Y8JW67.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.0116 per On Demand Linux t2.micro Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0116000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QWZW5Y8P4TX97TGS" : { - "QWZW5Y8P4TX97TGS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QWZW5Y8P4TX97TGS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QWZW5Y8P4TX97TGS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QWZW5Y8P4TX97TGS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.378 per On Demand RHEL i3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BFXWBPUC878XX5WC" : { - "BFXWBPUC878XX5WC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BFXWBPUC878XX5WC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BFXWBPUC878XX5WC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BFXWBPUC878XX5WC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Server Enterprise i3.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "V8EJ2P6F3B8BQ4JZ" : { - "V8EJ2P6F3B8BQ4JZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "V8EJ2P6F3B8BQ4JZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "V8EJ2P6F3B8BQ4JZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "V8EJ2P6F3B8BQ4JZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.8264 per Dedicated Windows with SQL Std r4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8264000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KYPREJHGNMP6GVSA" : { - "KYPREJHGNMP6GVSA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KYPREJHGNMP6GVSA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KYPREJHGNMP6GVSA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KYPREJHGNMP6GVSA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.207 per Dedicated Windows c3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7YFC8DX6JB9UEFUF" : { - "7YFC8DX6JB9UEFUF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7YFC8DX6JB9UEFUF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7YFC8DX6JB9UEFUF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7YFC8DX6JB9UEFUF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$26.688 per On Demand Linux x1e.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "26.6880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QZ5WGYAMVW8QTQY4" : { - "QZ5WGYAMVW8QTQY4.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QZ5WGYAMVW8QTQY4", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QZ5WGYAMVW8QTQY4.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QZ5WGYAMVW8QTQY4.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux g2.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BFTE24AMMM45YVGQ" : { - "BFTE24AMMM45YVGQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BFTE24AMMM45YVGQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BFTE24AMMM45YVGQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BFTE24AMMM45YVGQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.924 per Dedicated Linux c3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "S73ZA9CU68E57ZAH" : { - "S73ZA9CU68E57ZAH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "S73ZA9CU68E57ZAH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "S73ZA9CU68E57ZAH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "S73ZA9CU68E57ZAH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.622 per Dedicated Usage Windows with SQL Server Enterprise i2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SZAG69AWYJF676BA" : { - "SZAG69AWYJF676BA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SZAG69AWYJF676BA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SZAG69AWYJF676BA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SZAG69AWYJF676BA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows d2.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZCJNXF2AJ56TTBVX" : { - "ZCJNXF2AJ56TTBVX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZCJNXF2AJ56TTBVX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZCJNXF2AJ56TTBVX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZCJNXF2AJ56TTBVX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.03 per GB - AWS GovCloud (US) data transfer to US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Y39GSVXFDVZTA5NW" : { - "Y39GSVXFDVZTA5NW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Y39GSVXFDVZTA5NW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Y39GSVXFDVZTA5NW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Y39GSVXFDVZTA5NW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise c4.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MQ6M7PWCD7PJTKHD" : { - "MQ6M7PWCD7PJTKHD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MQ6M7PWCD7PJTKHD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MQ6M7PWCD7PJTKHD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MQ6M7PWCD7PJTKHD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$14.5 per Dedicated Usage SUSE p2.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.5000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SQKUUTYR8NCPCZQK" : { - "SQKUUTYR8NCPCZQK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SQKUUTYR8NCPCZQK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SQKUUTYR8NCPCZQK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SQKUUTYR8NCPCZQK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web d2.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TJTQVWS5KE6W7NKV" : { - "TJTQVWS5KE6W7NKV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TJTQVWS5KE6W7NKV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TJTQVWS5KE6W7NKV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TJTQVWS5KE6W7NKV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$24.58 per Dedicated SUSE p3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "24.5800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VJVE25YH42K8TGEJ" : { - "VJVE25YH42K8TGEJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VJVE25YH42K8TGEJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VJVE25YH42K8TGEJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VJVE25YH42K8TGEJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$9.836 per On Demand SQL Std i2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.8360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BVX3DU7JUBDMJ5TW" : { - "BVX3DU7JUBDMJ5TW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BVX3DU7JUBDMJ5TW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BVX3DU7JUBDMJ5TW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BVX3DU7JUBDMJ5TW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.821 per On Demand Windows d2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "C92P55KXZZVQPVRT" : { - "C92P55KXZZVQPVRT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "C92P55KXZZVQPVRT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "C92P55KXZZVQPVRT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "C92P55KXZZVQPVRT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$12.651 per Dedicated Windows with SQL Std x1e.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.6510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KDHC3D74WA7UFHUU" : { - "KDHC3D74WA7UFHUU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KDHC3D74WA7UFHUU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KDHC3D74WA7UFHUU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KDHC3D74WA7UFHUU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.23 per On Demand RHEL c5.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VHC3YWSZ6ZFZPJN4" : { - "VHC3YWSZ6ZFZPJN4.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VHC3YWSZ6ZFZPJN4", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VHC3YWSZ6ZFZPJN4.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VHC3YWSZ6ZFZPJN4.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.40 per On Demand Linux m4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EN85M9PMPVGK77TA" : { - "EN85M9PMPVGK77TA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EN85M9PMPVGK77TA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EN85M9PMPVGK77TA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EN85M9PMPVGK77TA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$13.20 per On Demand Linux f1.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.2000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HY3BZPP2B6K8MSJF" : { - "HY3BZPP2B6K8MSJF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HY3BZPP2B6K8MSJF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HY3BZPP2B6K8MSJF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HY3BZPP2B6K8MSJF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.10 per GB-month of General Purpose SSD (gp2) provisioned storage - US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB-Mo", - "pricePerUnit" : { - "USD" : "0.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "R85D93TFFU8AU7WZ" : { - "R85D93TFFU8AU7WZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "R85D93TFFU8AU7WZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "R85D93TFFU8AU7WZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "R85D93TFFU8AU7WZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.16 per On Demand SUSE p3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RV7P78K2Q4CXVVP3" : { - "RV7P78K2Q4CXVVP3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RV7P78K2Q4CXVVP3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RV7P78K2Q4CXVVP3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RV7P78K2Q4CXVVP3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.722 per Dedicated SUSE c5.9xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FB2SHXY4CT6MW3FX" : { - "FB2SHXY4CT6MW3FX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FB2SHXY4CT6MW3FX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FB2SHXY4CT6MW3FX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FB2SHXY4CT6MW3FX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.368 per Dedicated Usage Windows d2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "68SDFG84HR8PCZY5" : { - "68SDFG84HR8PCZY5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "68SDFG84HR8PCZY5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "68SDFG84HR8PCZY5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "68SDFG84HR8PCZY5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.25 per Dedicated Windows with SQL Web c5.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9RK78KZK2N3R66EZ" : { - "9RK78KZK2N3R66EZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9RK78KZK2N3R66EZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9RK78KZK2N3R66EZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9RK78KZK2N3R66EZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.329 per Dedicated Windows m1.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FMHPC62WVZ9EB44Z" : { - "FMHPC62WVZ9EB44Z.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FMHPC62WVZ9EB44Z", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FMHPC62WVZ9EB44Z.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FMHPC62WVZ9EB44Z.JRTCKXETXF.6YS6EN2CT7", - "description" : "$17.622 per Dedicated Windows x1e.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "17.6220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZBVHTEDA4X8G6DPB" : { - "ZBVHTEDA4X8G6DPB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZBVHTEDA4X8G6DPB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZBVHTEDA4X8G6DPB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZBVHTEDA4X8G6DPB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.673 per Dedicated Usage Windows with SQL Web r3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CTZ6QQ5C598KFDED" : { - "CTZ6QQ5C598KFDED.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CTZ6QQ5C598KFDED", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CTZ6QQ5C598KFDED.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CTZ6QQ5C598KFDED.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows BYOL i3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3D264ECCWU44GADE" : { - "3D264ECCWU44GADE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3D264ECCWU44GADE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3D264ECCWU44GADE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3D264ECCWU44GADE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.084 per On Demand SQL Std m2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8X3QU4DYXVJAXZK3" : { - "8X3QU4DYXVJAXZK3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8X3QU4DYXVJAXZK3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8X3QU4DYXVJAXZK3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8X3QU4DYXVJAXZK3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.02 per GB - US East (Northern Virginia) data transfer to US West (Northern California)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6SZSU4SPSN4VNV6H" : { - "6SZSU4SPSN4VNV6H.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6SZSU4SPSN4VNV6H", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6SZSU4SPSN4VNV6H.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6SZSU4SPSN4VNV6H.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.537 per On Demand Windows with SQL Server Enterprise i2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5NPY8GZN5BFUPMDZ" : { - "5NPY8GZN5BFUPMDZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5NPY8GZN5BFUPMDZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5NPY8GZN5BFUPMDZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5NPY8GZN5BFUPMDZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.143 per Dedicated Usage Windows m3.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2JE46CBZYW8NSTTW" : { - "2JE46CBZYW8NSTTW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2JE46CBZYW8NSTTW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2JE46CBZYW8NSTTW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2JE46CBZYW8NSTTW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per GB - Canada (Central) data transfer from US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PZAZYRGRJEARRZEW" : { - "PZAZYRGRJEARRZEW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PZAZYRGRJEARRZEW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PZAZYRGRJEARRZEW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PZAZYRGRJEARRZEW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per RHEL i3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6R5GC45858YD7JK6" : { - "6R5GC45858YD7JK6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6R5GC45858YD7JK6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6R5GC45858YD7JK6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6R5GC45858YD7JK6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.083 per Dedicated Windows m1.small Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TFQ5DSSKH395ATXV" : { - "TFQ5DSSKH395ATXV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TFQ5DSSKH395ATXV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TFQ5DSSKH395ATXV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TFQ5DSSKH395ATXV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.688 per Dedicated Windows with SQL Std c5.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SXK3NYF7FUGNCYNW" : { - "SXK3NYF7FUGNCYNW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SXK3NYF7FUGNCYNW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SXK3NYF7FUGNCYNW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SXK3NYF7FUGNCYNW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise i2.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9MM8GACQ8HB29XKD" : { - "9MM8GACQ8HB29XKD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9MM8GACQ8HB29XKD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9MM8GACQ8HB29XKD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9MM8GACQ8HB29XKD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.715 per Dedicated Windows BYOL g2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6FWXGNKA63Z8BMCH" : { - "6FWXGNKA63Z8BMCH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6FWXGNKA63Z8BMCH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6FWXGNKA63Z8BMCH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6FWXGNKA63Z8BMCH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.130 per Dedicated RHEL cc2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "P63NKZQXED5H7HUK" : { - "P63NKZQXED5H7HUK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "P63NKZQXED5H7HUK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "P63NKZQXED5H7HUK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "P63NKZQXED5H7HUK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.38 per On Demand Linux d2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "C6HNR92XQ2JU8MSN" : { - "C6HNR92XQ2JU8MSN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "C6HNR92XQ2JU8MSN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "C6HNR92XQ2JU8MSN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "C6HNR92XQ2JU8MSN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL m4.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AJKJ4N4Q2WVCYJJN" : { - "AJKJ4N4Q2WVCYJJN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AJKJ4N4Q2WVCYJJN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AJKJ4N4Q2WVCYJJN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AJKJ4N4Q2WVCYJJN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 for 750 Mbps per c4.xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YBBWEV8UYE6E6N4Q" : { - "YBBWEV8UYE6E6N4Q.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YBBWEV8UYE6E6N4Q", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YBBWEV8UYE6E6N4Q.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YBBWEV8UYE6E6N4Q.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web g2.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "W43N2ZPS868KHX7Y" : { - "W43N2ZPS868KHX7Y.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "W43N2ZPS868KHX7Y", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "W43N2ZPS868KHX7Y.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "W43N2ZPS868KHX7Y.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.510 per On Demand SUSE i2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "X9NV55CM3DDZH8WM" : { - "X9NV55CM3DDZH8WM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "X9NV55CM3DDZH8WM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "X9NV55CM3DDZH8WM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "X9NV55CM3DDZH8WM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$13.20 per Dedicated Windows BYOL f1.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.2000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CVZN7PCT7EYTAUNH" : { - "CVZN7PCT7EYTAUNH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CVZN7PCT7EYTAUNH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CVZN7PCT7EYTAUNH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CVZN7PCT7EYTAUNH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.02 per On Demand Windows BYOL t1.micro Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "46RTKB3PY2USZ3JU" : { - "46RTKB3PY2USZ3JU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "46RTKB3PY2USZ3JU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "46RTKB3PY2USZ3JU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "46RTKB3PY2USZ3JU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.68 per On Demand Windows BYOL c5.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UKDR4WHMWWJ5CSDR" : { - "UKDR4WHMWWJ5CSDR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UKDR4WHMWWJ5CSDR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UKDR4WHMWWJ5CSDR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UKDR4WHMWWJ5CSDR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.0928 per On Demand Windows BYOL t2.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0928000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XKJ4XRAHPF6M7XD9" : { - "XKJ4XRAHPF6M7XD9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XKJ4XRAHPF6M7XD9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XKJ4XRAHPF6M7XD9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XKJ4XRAHPF6M7XD9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per GB - US East (Northern Virginia) data transfer from Canada (Central)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "M585HN87CC23QMVN" : { - "M585HN87CC23QMVN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "M585HN87CC23QMVN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "M585HN87CC23QMVN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "M585HN87CC23QMVN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.393 per Dedicated Usage SUSE r4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EGD7PR7MXJNRRR5M" : { - "EGD7PR7MXJNRRR5M.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EGD7PR7MXJNRRR5M", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EGD7PR7MXJNRRR5M.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EGD7PR7MXJNRRR5M.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL r3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Y44NT84DJSFFW437" : { - "Y44NT84DJSFFW437.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Y44NT84DJSFFW437", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Y44NT84DJSFFW437.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Y44NT84DJSFFW437.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.404 per Dedicated Windows m4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XG2EKBMRP7S226WS" : { - "XG2EKBMRP7S226WS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XG2EKBMRP7S226WS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XG2EKBMRP7S226WS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XG2EKBMRP7S226WS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise c3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UA4QBJUCBNHDQX2B" : { - "UA4QBJUCBNHDQX2B.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UA4QBJUCBNHDQX2B", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UA4QBJUCBNHDQX2B.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UA4QBJUCBNHDQX2B.JRTCKXETXF.6YS6EN2CT7", - "description" : "$5.036 per On Demand Windows with SQL Server Enterprise x1e.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.0360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RRRPJJTQ9JB8YF5W" : { - "RRRPJJTQ9JB8YF5W.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RRRPJJTQ9JB8YF5W", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RRRPJJTQ9JB8YF5W.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RRRPJJTQ9JB8YF5W.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.243 per Dedicated Usage RHEL r3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Z7AE49M8866J2GBA" : { - "Z7AE49M8866J2GBA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Z7AE49M8866J2GBA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Z7AE49M8866J2GBA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Z7AE49M8866J2GBA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE c3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KX42WEB78EWUHU8Q" : { - "KX42WEB78EWUHU8Q.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KX42WEB78EWUHU8Q", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KX42WEB78EWUHU8Q.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KX42WEB78EWUHU8Q.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.98 per Dedicated SUSE m4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BQZA2V9VZEE32ZTX" : { - "BQZA2V9VZEE32ZTX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BQZA2V9VZEE32ZTX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BQZA2V9VZEE32ZTX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BQZA2V9VZEE32ZTX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.955 per On Demand SQL Std m1.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "38AX843AAXNB6F95" : { - "38AX843AAXNB6F95.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "38AX843AAXNB6F95", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "38AX843AAXNB6F95.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "38AX843AAXNB6F95.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.271 per On Demand Windows with SQL Web m4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TDGFBAHXRZKBVVEK" : { - "TDGFBAHXRZKBVVEK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TDGFBAHXRZKBVVEK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TDGFBAHXRZKBVVEK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TDGFBAHXRZKBVVEK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$5.244 per Dedicated Usage Windows with SQL Server Enterprise i2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.2440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TRZ6E8JSBS5WZR6G" : { - "TRZ6E8JSBS5WZR6G.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TRZ6E8JSBS5WZR6G", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TRZ6E8JSBS5WZR6G.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TRZ6E8JSBS5WZR6G.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.466 per Dedicated Usage RHEL x1.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FUETJGKE44YRRDYN" : { - "FUETJGKE44YRRDYN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FUETJGKE44YRRDYN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FUETJGKE44YRRDYN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FUETJGKE44YRRDYN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.708 per On Demand Windows c5.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7MVN3GT6EP25KDUJ" : { - "7MVN3GT6EP25KDUJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7MVN3GT6EP25KDUJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7MVN3GT6EP25KDUJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7MVN3GT6EP25KDUJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.000 per Dedicated Linux cc2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9WGNK9JK96GFCM3E" : { - "9WGNK9JK96GFCM3E.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9WGNK9JK96GFCM3E", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9WGNK9JK96GFCM3E.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9WGNK9JK96GFCM3E.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.89 per On Demand RHEL d2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XDP9UAY59KP89W84" : { - "XDP9UAY59KP89W84.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XDP9UAY59KP89W84", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XDP9UAY59KP89W84.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XDP9UAY59KP89W84.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web c3.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TQV69AZUDVU7GUKY" : { - "TQV69AZUDVU7GUKY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TQV69AZUDVU7GUKY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TQV69AZUDVU7GUKY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TQV69AZUDVU7GUKY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.695 per Dedicated Usage SUSE m3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FSBXVV6Q3V6PKBSN" : { - "FSBXVV6Q3V6PKBSN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FSBXVV6Q3V6PKBSN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FSBXVV6Q3V6PKBSN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FSBXVV6Q3V6PKBSN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.864 per On Demand Windows with SQL Std m4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "N9AQNRUTKCFEVCJ6" : { - "N9AQNRUTKCFEVCJ6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "N9AQNRUTKCFEVCJ6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "N9AQNRUTKCFEVCJ6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "N9AQNRUTKCFEVCJ6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.732 per Dedicated Usage Linux r3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5U9FJ3JR532G32NE" : { - "5U9FJ3JR532G32NE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5U9FJ3JR532G32NE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5U9FJ3JR532G32NE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5U9FJ3JR532G32NE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$8.350 per Dedicated SQL Std hs1.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.3500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "F5ZPZV2EEY3FC3V9" : { - "F5ZPZV2EEY3FC3V9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "F5ZPZV2EEY3FC3V9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "F5ZPZV2EEY3FC3V9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "F5ZPZV2EEY3FC3V9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.850 per On Demand SQL Web m2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "URGXD2SFFV6PJGW7" : { - "URGXD2SFFV6PJGW7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "URGXD2SFFV6PJGW7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "URGXD2SFFV6PJGW7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "URGXD2SFFV6PJGW7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.208 per Dedicated RHEL m2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9Z7C9YEQ5U8P5GDZ" : { - "9Z7C9YEQ5U8P5GDZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9Z7C9YEQ5U8P5GDZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9Z7C9YEQ5U8P5GDZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9Z7C9YEQ5U8P5GDZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.78 per On Demand SUSE c5.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CNQRJ2XRQ5WYZJQ3" : { - "CNQRJ2XRQ5WYZJQ3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CNQRJ2XRQ5WYZJQ3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CNQRJ2XRQ5WYZJQ3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CNQRJ2XRQ5WYZJQ3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.992 per On Demand Windows i3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "M9J2DPTBA6842MJH" : { - "M9J2DPTBA6842MJH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "M9J2DPTBA6842MJH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "M9J2DPTBA6842MJH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "M9J2DPTBA6842MJH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.183 per Dedicated Usage Windows BYOL r3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XCXYQ48G7HXYYHAC" : { - "XCXYQ48G7HXYYHAC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XCXYQ48G7HXYYHAC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XCXYQ48G7HXYYHAC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XCXYQ48G7HXYYHAC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.845 per Dedicated RHEL g2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AMRJDA6P539Y5Q3X" : { - "AMRJDA6P539Y5Q3X.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AMRJDA6P539Y5Q3X", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AMRJDA6P539Y5Q3X.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AMRJDA6P539Y5Q3X.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.50 per On Demand SUSE m4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YFKXQVPA9X957EGE" : { - "YFKXQVPA9X957EGE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YFKXQVPA9X957EGE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YFKXQVPA9X957EGE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YFKXQVPA9X957EGE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE p2.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DT3ZK6NDAD7ADBVZ" : { - "DT3ZK6NDAD7ADBVZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DT3ZK6NDAD7ADBVZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DT3ZK6NDAD7ADBVZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DT3ZK6NDAD7ADBVZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.532 per On Demand Windows with SQL Web i3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "M9HNUU75T45RPFC6" : { - "M9HNUU75T45RPFC6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "M9HNUU75T45RPFC6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "M9HNUU75T45RPFC6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "M9HNUU75T45RPFC6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.233 per On Demand SUSE m3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VERRUXNQ656VFYCC" : { - "VERRUXNQ656VFYCC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VERRUXNQ656VFYCC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VERRUXNQ656VFYCC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VERRUXNQ656VFYCC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.1358 per On Demand Windows with SQL Web t2.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1358000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SCYNS2QNCRN89WMZ" : { - "SCYNS2QNCRN89WMZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SCYNS2QNCRN89WMZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SCYNS2QNCRN89WMZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SCYNS2QNCRN89WMZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.2456 per On Demand RHEL t2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2456000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6SB59AKPWK57QDT4" : { - "6SB59AKPWK57QDT4.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6SB59AKPWK57QDT4", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6SB59AKPWK57QDT4.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6SB59AKPWK57QDT4.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.759 per Dedicated Windows m2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SKGAAJVJUYA4XN4J" : { - "SKGAAJVJUYA4XN4J.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SKGAAJVJUYA4XN4J", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SKGAAJVJUYA4XN4J.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SKGAAJVJUYA4XN4J.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.06 per Dedicated Linux c5.18xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YB65BFK6JTN2AVK3" : { - "YB65BFK6JTN2AVK3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YB65BFK6JTN2AVK3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YB65BFK6JTN2AVK3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YB65BFK6JTN2AVK3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web c3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MBQPYDJSY3BY84BH" : { - "MBQPYDJSY3BY84BH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MBQPYDJSY3BY84BH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MBQPYDJSY3BY84BH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MBQPYDJSY3BY84BH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux c4.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DUFUABZJFHZ5SWBJ" : { - "DUFUABZJFHZ5SWBJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DUFUABZJFHZ5SWBJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DUFUABZJFHZ5SWBJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DUFUABZJFHZ5SWBJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.335 per Dedicated Windows with SQL Web i3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7MS6E9W2YWKJZRX5" : { - "7MS6E9W2YWKJZRX5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7MS6E9W2YWKJZRX5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7MS6E9W2YWKJZRX5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7MS6E9W2YWKJZRX5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.376 per On Demand Windows c3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6FVWSFZ39BEVJUVW" : { - "6FVWSFZ39BEVJUVW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6FVWSFZ39BEVJUVW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6FVWSFZ39BEVJUVW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6FVWSFZ39BEVJUVW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.246 per Dedicated Usage SUSE r4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HCMUNBKMY8ZTDFFE" : { - "HCMUNBKMY8ZTDFFE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HCMUNBKMY8ZTDFFE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HCMUNBKMY8ZTDFFE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HCMUNBKMY8ZTDFFE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.235 per On Demand RHEL m1.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YJAJYU26JMTDCU86" : { - "YJAJYU26JMTDCU86.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YJAJYU26JMTDCU86", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YJAJYU26JMTDCU86.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YJAJYU26JMTDCU86.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.677 per On Demand Windows with SQL Server Enterprise c5.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "WY2NRDKGBAP9WZHZ" : { - "WY2NRDKGBAP9WZHZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "WY2NRDKGBAP9WZHZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "WY2NRDKGBAP9WZHZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "WY2NRDKGBAP9WZHZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise d2.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "J5F97VTUKDBTW8X5" : { - "J5F97VTUKDBTW8X5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "J5F97VTUKDBTW8X5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "J5F97VTUKDBTW8X5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "J5F97VTUKDBTW8X5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.02 per GB - EU (London) data transfer to US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VRV65GYV3GNQWB7Z" : { - "VRV65GYV3GNQWB7Z.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VRV65GYV3GNQWB7Z", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VRV65GYV3GNQWB7Z.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VRV65GYV3GNQWB7Z.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL g2.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TX7H54J52X2GTX6C" : { - "TX7H54J52X2GTX6C.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TX7H54J52X2GTX6C", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TX7H54J52X2GTX6C.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TX7H54J52X2GTX6C.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.283 per Dedicated Usage SUSE r3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7SQ2BQ8A45ARW92Z" : { - "7SQ2BQ8A45ARW92Z.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7SQ2BQ8A45ARW92Z", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7SQ2BQ8A45ARW92Z.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7SQ2BQ8A45ARW92Z.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.10 per On Demand Windows BYOL m4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PAV3TCYGE4N3YT8E" : { - "PAV3TCYGE4N3YT8E.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PAV3TCYGE4N3YT8E", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PAV3TCYGE4N3YT8E.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PAV3TCYGE4N3YT8E.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per GB - AWS GovCloud (US) data transfer from US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "56836GB58CR7CVY9" : { - "56836GB58CR7CVY9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "56836GB58CR7CVY9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "56836GB58CR7CVY9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "56836GB58CR7CVY9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$19.226 per Dedicated Usage Windows x1.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "19.2260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YTTWW26ACBCFNQFW" : { - "YTTWW26ACBCFNQFW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YTTWW26ACBCFNQFW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YTTWW26ACBCFNQFW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YTTWW26ACBCFNQFW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$13.338 per Dedicated Usage Windows BYOL x1.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.3380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FWTR9MGD2XP654H6" : { - "FWTR9MGD2XP654H6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FWTR9MGD2XP654H6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FWTR9MGD2XP654H6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FWTR9MGD2XP654H6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE d2.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NUX3MUG87XRK86AD" : { - "NUX3MUG87XRK86AD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NUX3MUG87XRK86AD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NUX3MUG87XRK86AD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NUX3MUG87XRK86AD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.942 per Dedicated SQL Web i2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.9420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HZ8DFZSZ7N4XS65D" : { - "HZ8DFZSZ7N4XS65D.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HZ8DFZSZ7N4XS65D", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HZ8DFZSZ7N4XS65D.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HZ8DFZSZ7N4XS65D.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Web x1e.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8DAD556FD5NBRFC3" : { - "8DAD556FD5NBRFC3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8DAD556FD5NBRFC3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8DAD556FD5NBRFC3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8DAD556FD5NBRFC3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.589 per Dedicated Windows with SQL Web c5.18xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FVBNJRJQXKTZMPVR" : { - "FVBNJRJQXKTZMPVR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FVBNJRJQXKTZMPVR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FVBNJRJQXKTZMPVR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FVBNJRJQXKTZMPVR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$6.326 per Dedicated Windows with SQL Std x1e.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.3260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "266JF3S5TDUM4QX4" : { - "266JF3S5TDUM4QX4.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "266JF3S5TDUM4QX4", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "266JF3S5TDUM4QX4.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "266JF3S5TDUM4QX4.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.319 per On Demand Windows with SQL Std c4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JJMJT8KUKWT7YX58" : { - "JJMJT8KUKWT7YX58.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JJMJT8KUKWT7YX58", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JJMJT8KUKWT7YX58.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JJMJT8KUKWT7YX58.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux r4.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HS3PUQUMX2MJTFJA" : { - "HS3PUQUMX2MJTFJA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HS3PUQUMX2MJTFJA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HS3PUQUMX2MJTFJA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HS3PUQUMX2MJTFJA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$13.33 per Dedicated RHEL f1.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.3300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "X3Q7CMUEB38C83RH" : { - "X3Q7CMUEB38C83RH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "X3Q7CMUEB38C83RH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "X3Q7CMUEB38C83RH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "X3Q7CMUEB38C83RH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux i2.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Y5KA5VEADFSRVVYY" : { - "Y5KA5VEADFSRVVYY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Y5KA5VEADFSRVVYY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Y5KA5VEADFSRVVYY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Y5KA5VEADFSRVVYY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std m4.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Z4Y83SEHA9UDFDP2" : { - "Z4Y83SEHA9UDFDP2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Z4Y83SEHA9UDFDP2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Z4Y83SEHA9UDFDP2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Z4Y83SEHA9UDFDP2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.354 per Dedicated SUSE g3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QYS4PZ8A9Q32ZPH2" : { - "QYS4PZ8A9Q32ZPH2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QYS4PZ8A9Q32ZPH2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QYS4PZ8A9Q32ZPH2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QYS4PZ8A9Q32ZPH2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$13.036 per Dedicated Linux p3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.0360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VMMGB42RKPM3E742" : { - "VMMGB42RKPM3E742.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VMMGB42RKPM3E742", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VMMGB42RKPM3E742.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VMMGB42RKPM3E742.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.35 per On Demand Windows BYOL m1.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "69JW6QZ8TVS6R46R" : { - "69JW6QZ8TVS6R46R.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "69JW6QZ8TVS6R46R", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "69JW6QZ8TVS6R46R.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "69JW6QZ8TVS6R46R.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.02 for 400 Mbps per i2.xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PQSYKZPSZAFEZVK7" : { - "PQSYKZPSZAFEZVK7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PQSYKZPSZAFEZVK7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PQSYKZPSZAFEZVK7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PQSYKZPSZAFEZVK7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows m3.medium Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "R9PWNAHCDMYRXNMW" : { - "R9PWNAHCDMYRXNMW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "R9PWNAHCDMYRXNMW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "R9PWNAHCDMYRXNMW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "R9PWNAHCDMYRXNMW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.768 per Dedicated Windows with SQL Std m4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7UNGQGFQFJTYCG4P" : { - "7UNGQGFQFJTYCG4P.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7UNGQGFQFJTYCG4P", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7UNGQGFQFJTYCG4P.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7UNGQGFQFJTYCG4P.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows p3.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "K28MGJB7A9VHR5UW" : { - "K28MGJB7A9VHR5UW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "K28MGJB7A9VHR5UW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "K28MGJB7A9VHR5UW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "K28MGJB7A9VHR5UW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows i3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XGC6ECJC7S6BUMKQ" : { - "XGC6ECJC7S6BUMKQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XGC6ECJC7S6BUMKQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XGC6ECJC7S6BUMKQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XGC6ECJC7S6BUMKQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows BYOL c5.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "T6R594SDRM2DHYVF" : { - "T6R594SDRM2DHYVF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "T6R594SDRM2DHYVF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "T6R594SDRM2DHYVF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "T6R594SDRM2DHYVF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL d2.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "89WDVYSF7M632K4P" : { - "89WDVYSF7M632K4P.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "89WDVYSF7M632K4P", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "89WDVYSF7M632K4P.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "89WDVYSF7M632K4P.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.66 per On Demand SUSE g3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.6600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PPV5Q7DEDQX5ZEAC" : { - "PPV5Q7DEDQX5ZEAC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PPV5Q7DEDQX5ZEAC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PPV5Q7DEDQX5ZEAC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PPV5Q7DEDQX5ZEAC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux p2.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "V34YMXZ5WQ9WHREH" : { - "V34YMXZ5WQ9WHREH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "V34YMXZ5WQ9WHREH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "V34YMXZ5WQ9WHREH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "V34YMXZ5WQ9WHREH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$23.968 per On Demand Windows with SQL Std x1e.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "23.9680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KG9YWSKMK27V6W6V" : { - "KG9YWSKMK27V6W6V.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KG9YWSKMK27V6W6V", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KG9YWSKMK27V6W6V.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KG9YWSKMK27V6W6V.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.175 per On Demand Linux m1.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NW2F7XVYDCTPPGMJ" : { - "NW2F7XVYDCTPPGMJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NW2F7XVYDCTPPGMJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NW2F7XVYDCTPPGMJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NW2F7XVYDCTPPGMJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.884 per On Demand Windows with SQL Server Enterprise m4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "APERCPEVDRU8YTTJ" : { - "APERCPEVDRU8YTTJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "APERCPEVDRU8YTTJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "APERCPEVDRU8YTTJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "APERCPEVDRU8YTTJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise c4.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "H65MFZJT8RFNRRQK" : { - "H65MFZJT8RFNRRQK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "H65MFZJT8RFNRRQK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "H65MFZJT8RFNRRQK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "H65MFZJT8RFNRRQK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web d2.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FC6PRNUH98J5QR93" : { - "FC6PRNUH98J5QR93.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FC6PRNUH98J5QR93", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FC6PRNUH98J5QR93.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FC6PRNUH98J5QR93.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.508 per Dedicated Windows BYOL g3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JDDEXQUM9ZCJ8RDR" : { - "JDDEXQUM9ZCJ8RDR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JDDEXQUM9ZCJ8RDR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JDDEXQUM9ZCJ8RDR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JDDEXQUM9ZCJ8RDR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.72 per On Demand Windows with SQL Std r4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UK3253N3FM8G9VRT" : { - "UK3253N3FM8G9VRT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UK3253N3FM8G9VRT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UK3253N3FM8G9VRT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UK3253N3FM8G9VRT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.248 per On Demand Windows BYOL i3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZMYRWAJAX252Z8ZW" : { - "ZMYRWAJAX252Z8ZW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZMYRWAJAX252Z8ZW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZMYRWAJAX252Z8ZW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZMYRWAJAX252Z8ZW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.970 per On Demand RHEL c3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MJKCR5ZSNFXJ35EA" : { - "MJKCR5ZSNFXJ35EA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MJKCR5ZSNFXJ35EA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MJKCR5ZSNFXJ35EA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MJKCR5ZSNFXJ35EA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.457 per Dedicated Windows c5.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NCQEUP5F7MP2C7VT" : { - "NCQEUP5F7MP2C7VT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NCQEUP5F7MP2C7VT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NCQEUP5F7MP2C7VT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NCQEUP5F7MP2C7VT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.931 per Dedicated Windows hs1.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PQQ53JZ8S758UUWS" : { - "PQQ53JZ8S758UUWS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PQQ53JZ8S758UUWS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PQQ53JZ8S758UUWS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PQQ53JZ8S758UUWS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$21.88 per On Demand Windows with SQL Web x1.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "21.8800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MZHHAF4YCR5JMQ9C" : { - "MZHHAF4YCR5JMQ9C.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MZHHAF4YCR5JMQ9C", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MZHHAF4YCR5JMQ9C.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MZHHAF4YCR5JMQ9C.JRTCKXETXF.6YS6EN2CT7", - "description" : "$8.615 per Dedicated Usage Windows with SQL Std r3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.6150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BA8XB9J4UJVPU6DS" : { - "BA8XB9J4UJVPU6DS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BA8XB9J4UJVPU6DS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BA8XB9J4UJVPU6DS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BA8XB9J4UJVPU6DS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.293 per Dedicated Usage Windows BYOL r4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ENHSMTH854TGXCX2" : { - "ENHSMTH854TGXCX2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ENHSMTH854TGXCX2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ENHSMTH854TGXCX2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ENHSMTH854TGXCX2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 for 2000 Mbps per d2.4xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TZ5DAMR52CPHF2F6" : { - "TZ5DAMR52CPHF2F6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TZ5DAMR52CPHF2F6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TZ5DAMR52CPHF2F6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TZ5DAMR52CPHF2F6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per SUSE c5.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HD7DSDMNNNQAM7PK" : { - "HD7DSDMNNNQAM7PK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HD7DSDMNNNQAM7PK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HD7DSDMNNNQAM7PK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HD7DSDMNNNQAM7PK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.2 per On Demand Windows r4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.2000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AYYR654XYEDPM6TA" : { - "AYYR654XYEDPM6TA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AYYR654XYEDPM6TA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AYYR654XYEDPM6TA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AYYR654XYEDPM6TA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per SUSE f1.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9PA6CYJ4VMXA3MPV" : { - "9PA6CYJ4VMXA3MPV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9PA6CYJ4VMXA3MPV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9PA6CYJ4VMXA3MPV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9PA6CYJ4VMXA3MPV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise d2.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9MR4BWBNYFE4GCC3" : { - "9MR4BWBNYFE4GCC3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9MR4BWBNYFE4GCC3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9MR4BWBNYFE4GCC3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9MR4BWBNYFE4GCC3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Linux x1e.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MGX8XKF9UWBS8FMV" : { - "MGX8XKF9UWBS8FMV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MGX8XKF9UWBS8FMV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MGX8XKF9UWBS8FMV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MGX8XKF9UWBS8FMV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.30 per Dedicated SUSE m4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MW3YR4CA9XQU7PMV" : { - "MW3YR4CA9XQU7PMV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MW3YR4CA9XQU7PMV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MW3YR4CA9XQU7PMV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MW3YR4CA9XQU7PMV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.600 per Dedicated Windows cg1.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7EJUFSKMUWC5DSMS" : { - "7EJUFSKMUWC5DSMS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7EJUFSKMUWC5DSMS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7EJUFSKMUWC5DSMS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7EJUFSKMUWC5DSMS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.300 per Dedicated Windows BYOL cc1.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2RZ6RRUC3U8UVYP9" : { - "2RZ6RRUC3U8UVYP9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2RZ6RRUC3U8UVYP9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2RZ6RRUC3U8UVYP9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2RZ6RRUC3U8UVYP9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.977 per Dedicated Usage Windows with SQL Server Enterprise m3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "X5T4377XTFNYDM3K" : { - "X5T4377XTFNYDM3K.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "X5T4377XTFNYDM3K", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "X5T4377XTFNYDM3K.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "X5T4377XTFNYDM3K.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.904 per Dedicated Windows with SQL Server Enterprise m4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FPSSRYYG22AJKWQT" : { - "FPSSRYYG22AJKWQT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FPSSRYYG22AJKWQT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FPSSRYYG22AJKWQT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FPSSRYYG22AJKWQT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web i2.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KPX48D6YDFSDBE2Y" : { - "KPX48D6YDFSDBE2Y.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KPX48D6YDFSDBE2Y", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KPX48D6YDFSDBE2Y.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KPX48D6YDFSDBE2Y.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.266 per On Demand SUSE r3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PFVCSMK3T7J3UAHB" : { - "PFVCSMK3T7J3UAHB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PFVCSMK3T7J3UAHB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PFVCSMK3T7J3UAHB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PFVCSMK3T7J3UAHB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.353 per Dedicated SQL Std i2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7APFVGHQXR9QGJ23" : { - "7APFVGHQXR9QGJ23.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7APFVGHQXR9QGJ23", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7APFVGHQXR9QGJ23.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7APFVGHQXR9QGJ23.JRTCKXETXF.6YS6EN2CT7", - "description" : "$27.424 per On Demand Windows p3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "27.4240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8ZKTF27C8KTCX3VS" : { - "8ZKTF27C8KTCX3VS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8ZKTF27C8KTCX3VS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8ZKTF27C8KTCX3VS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8ZKTF27C8KTCX3VS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Web c5.9xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Q3B3QHUSMA9FRZZH" : { - "Q3B3QHUSMA9FRZZH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Q3B3QHUSMA9FRZZH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Q3B3QHUSMA9FRZZH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Q3B3QHUSMA9FRZZH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.591 per On Demand Windows BYOL c4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4B63NWS2TS69S46X" : { - "4B63NWS2TS69S46X.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4B63NWS2TS69S46X", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4B63NWS2TS69S46X.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4B63NWS2TS69S46X.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web d2.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TAAVXTAR4D2NPUA8" : { - "TAAVXTAR4D2NPUA8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TAAVXTAR4D2NPUA8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TAAVXTAR4D2NPUA8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TAAVXTAR4D2NPUA8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL d2.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "W3VESHWCSRCUY7WY" : { - "W3VESHWCSRCUY7WY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "W3VESHWCSRCUY7WY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "W3VESHWCSRCUY7WY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "W3VESHWCSRCUY7WY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.025 for 500 Mbps per m2.2xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "N449RKU6MSAPKBDX" : { - "N449RKU6MSAPKBDX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "N449RKU6MSAPKBDX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "N449RKU6MSAPKBDX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "N449RKU6MSAPKBDX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 for 2000 Mbps per m4.4xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "W8BNBRKMXW7VU4BK" : { - "W8BNBRKMXW7VU4BK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "W8BNBRKMXW7VU4BK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "W8BNBRKMXW7VU4BK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "W8BNBRKMXW7VU4BK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL g2.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3YMR7VMVAJWZPJVQ" : { - "3YMR7VMVAJWZPJVQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3YMR7VMVAJWZPJVQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3YMR7VMVAJWZPJVQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3YMR7VMVAJWZPJVQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.066 per On Demand SQL Std c3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YN6S4KGMAE64PQR5" : { - "YN6S4KGMAE64PQR5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YN6S4KGMAE64PQR5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YN6S4KGMAE64PQR5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YN6S4KGMAE64PQR5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.1856 per On Demand Windows BYOL t2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1856000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BUS2682V3FEX8NNV" : { - "BUS2682V3FEX8NNV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BUS2682V3FEX8NNV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BUS2682V3FEX8NNV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BUS2682V3FEX8NNV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.443 per Dedicated Usage Windows with SQL Server Enterprise d2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "S96SK9E6DW5X9ZCD" : { - "S96SK9E6DW5X9ZCD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "S96SK9E6DW5X9ZCD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "S96SK9E6DW5X9ZCD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "S96SK9E6DW5X9ZCD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.953 per On Demand SUSE i2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HVUDFQPHSTBP5QJC" : { - "HVUDFQPHSTBP5QJC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HVUDFQPHSTBP5QJC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HVUDFQPHSTBP5QJC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HVUDFQPHSTBP5QJC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$33.372 per On Demand Windows with SQL Server Enterprise c5.18xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "33.3720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UGMJ2EBAQ8A6XBDQ" : { - "UGMJ2EBAQ8A6XBDQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UGMJ2EBAQ8A6XBDQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UGMJ2EBAQ8A6XBDQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UGMJ2EBAQ8A6XBDQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.200 per On Demand SUSE cg1.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RUDWUCYJBCDYZNGV" : { - "RUDWUCYJBCDYZNGV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RUDWUCYJBCDYZNGV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RUDWUCYJBCDYZNGV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RUDWUCYJBCDYZNGV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.202 per Dedicated Usage Windows with SQL Web m3.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UEHZ36662EWM4RGB" : { - "UEHZ36662EWM4RGB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UEHZ36662EWM4RGB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UEHZ36662EWM4RGB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UEHZ36662EWM4RGB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$32.576 per Dedicated Windows x1e.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "32.5760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FRR3BPV6Y433HGXY" : { - "FRR3BPV6Y433HGXY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FRR3BPV6Y433HGXY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FRR3BPV6Y433HGXY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FRR3BPV6Y433HGXY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$6.198 per Dedicated Usage Windows d2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.1980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3EFSVCMF7TVMQPZ3" : { - "3EFSVCMF7TVMQPZ3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3EFSVCMF7TVMQPZ3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3EFSVCMF7TVMQPZ3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3EFSVCMF7TVMQPZ3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux c4.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "298AWKD7RC822MQJ" : { - "298AWKD7RC822MQJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "298AWKD7RC822MQJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "298AWKD7RC822MQJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "298AWKD7RC822MQJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$14.53 per Dedicated Usage RHEL p2.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.5300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "F3HZNTTFXFDM68NR" : { - "F3HZNTTFXFDM68NR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "F3HZNTTFXFDM68NR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "F3HZNTTFXFDM68NR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "F3HZNTTFXFDM68NR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.28 per Dedicated SUSE c5.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SV6J8GK44ZN2FKNF" : { - "SV6J8GK44ZN2FKNF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SV6J8GK44ZN2FKNF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SV6J8GK44ZN2FKNF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SV6J8GK44ZN2FKNF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.544 per Dedicated Windows with SQL Web m4.10xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JGBX8UHZUVP2AMXP" : { - "JGBX8UHZUVP2AMXP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JGBX8UHZUVP2AMXP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JGBX8UHZUVP2AMXP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JGBX8UHZUVP2AMXP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per RHEL c5.18xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RXE37MRXKF33M9T8" : { - "RXE37MRXKF33M9T8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RXE37MRXKF33M9T8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RXE37MRXKF33M9T8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RXE37MRXKF33M9T8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.024 per Dedicated SUSE c3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CDY4KCZ5UTDSGTGH" : { - "CDY4KCZ5UTDSGTGH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CDY4KCZ5UTDSGTGH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CDY4KCZ5UTDSGTGH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CDY4KCZ5UTDSGTGH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.6 per On Demand Windows BYOL g2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QURFZDZRCJFUV9KZ" : { - "QURFZDZRCJFUV9KZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QURFZDZRCJFUV9KZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QURFZDZRCJFUV9KZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QURFZDZRCJFUV9KZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.51 per On Demand RHEL d2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GEXPJU4GWZZ6DSTT" : { - "GEXPJU4GWZZ6DSTT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GEXPJU4GWZZ6DSTT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GEXPJU4GWZZ6DSTT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GEXPJU4GWZZ6DSTT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$33.613 per On Demand Windows with SQL Server Enterprise x1.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "33.6130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PNUBVW4CPC8XA46W" : { - "PNUBVW4CPC8XA46W.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PNUBVW4CPC8XA46W", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PNUBVW4CPC8XA46W.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PNUBVW4CPC8XA46W.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.010 per GB - regional data transfer - in/out/between EC2 AZs or using elastic IPs or ELB", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PS8T955EH7FMVZUG" : { - "PS8T955EH7FMVZUG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PS8T955EH7FMVZUG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PS8T955EH7FMVZUG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PS8T955EH7FMVZUG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.463 per Dedicated Usage Linux r3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HW84S2UTHHJ2R3UP" : { - "HW84S2UTHHJ2R3UP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HW84S2UTHHJ2R3UP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HW84S2UTHHJ2R3UP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HW84S2UTHHJ2R3UP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Std x1e.32xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "WAC5A9V7VNYMBPDR" : { - "WAC5A9V7VNYMBPDR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "WAC5A9V7VNYMBPDR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "WAC5A9V7VNYMBPDR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "WAC5A9V7VNYMBPDR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.904 per On Demand Windows with SQL Std i3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VBNNBXFKQ7Y722HK" : { - "VBNNBXFKQ7Y722HK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VBNNBXFKQ7Y722HK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VBNNBXFKQ7Y722HK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VBNNBXFKQ7Y722HK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL i2.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SG6RKNMKR45QPDJW" : { - "SG6RKNMKR45QPDJW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SG6RKNMKR45QPDJW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SG6RKNMKR45QPDJW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SG6RKNMKR45QPDJW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux i2.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "M27XKJYAEY2SPYUU" : { - "M27XKJYAEY2SPYUU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "M27XKJYAEY2SPYUU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "M27XKJYAEY2SPYUU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "M27XKJYAEY2SPYUU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.641 per Dedicated Usage Windows r3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YMR9864XJTF2JBSD" : { - "YMR9864XJTF2JBSD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YMR9864XJTF2JBSD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YMR9864XJTF2JBSD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YMR9864XJTF2JBSD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.020 per On Demand Windows t1.micro Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SE6PJRHUA462KM9T" : { - "SE6PJRHUA462KM9T.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SE6PJRHUA462KM9T", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SE6PJRHUA462KM9T.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SE6PJRHUA462KM9T.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per SUSE f1.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BWKDS9539ZWVQSVQ" : { - "BWKDS9539ZWVQSVQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BWKDS9539ZWVQSVQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BWKDS9539ZWVQSVQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BWKDS9539ZWVQSVQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.145 per On Demand RHEL c5.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "H48ZRU3X7FXGTGQM" : { - "H48ZRU3X7FXGTGQM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "H48ZRU3X7FXGTGQM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "H48ZRU3X7FXGTGQM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "H48ZRU3X7FXGTGQM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.105 per On Demand Linux c3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MNP9VWKTPKFPDQWK" : { - "MNP9VWKTPKFPDQWK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MNP9VWKTPKFPDQWK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MNP9VWKTPKFPDQWK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MNP9VWKTPKFPDQWK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.682 per On Demand R4 Dedicated Host Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.6820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CNBCS3T6ZYW47Y8W" : { - "CNBCS3T6ZYW47Y8W.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CNBCS3T6ZYW47Y8W", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CNBCS3T6ZYW47Y8W.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CNBCS3T6ZYW47Y8W.JRTCKXETXF.6YS6EN2CT7", - "description" : "$5.092 per On Demand SUSE i3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.0920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "R653AEFSC6MG23XK" : { - "R653AEFSC6MG23XK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "R653AEFSC6MG23XK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "R653AEFSC6MG23XK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "R653AEFSC6MG23XK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.146 per Dedicated Usage Windows BYOL r4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JF9QHW5XYZ9MK42R" : { - "JF9QHW5XYZ9MK42R.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JF9QHW5XYZ9MK42R", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JF9QHW5XYZ9MK42R.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JF9QHW5XYZ9MK42R.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.250 per On Demand SQL Std cr1.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.2500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "V7TY6J97RFNXWD8V" : { - "V7TY6J97RFNXWD8V.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "V7TY6J97RFNXWD8V", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "V7TY6J97RFNXWD8V.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "V7TY6J97RFNXWD8V.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.19 per On Demand RHEL p3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "62VQZ6W2YK7P5N9B" : { - "62VQZ6W2YK7P5N9B.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "62VQZ6W2YK7P5N9B", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "62VQZ6W2YK7P5N9B.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "62VQZ6W2YK7P5N9B.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.881 per On Demand Windows with SQL Web c4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "STRFBQS9QNUUSSCD" : { - "STRFBQS9QNUUSSCD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "STRFBQS9QNUUSSCD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "STRFBQS9QNUUSSCD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "STRFBQS9QNUUSSCD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.276 per Dedicated SQL Web c1.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "K5M8XEVN93GNAS5F" : { - "K5M8XEVN93GNAS5F.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "K5M8XEVN93GNAS5F", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "K5M8XEVN93GNAS5F.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "K5M8XEVN93GNAS5F.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 for 1125 Mbps per c5.2xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SG2J8TRQ57JQYCRA" : { - "SG2J8TRQ57JQYCRA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SG2J8TRQ57JQYCRA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SG2J8TRQ57JQYCRA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SG2J8TRQ57JQYCRA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.624 per On Demand Windows with SQL Web c4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "38G6R9HH2W74WD78" : { - "38G6R9HH2W74WD78.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "38G6R9HH2W74WD78", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "38G6R9HH2W74WD78.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "38G6R9HH2W74WD78.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.946 per On Demand Windows i2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FMN62RHYUNCFD57B" : { - "FMN62RHYUNCFD57B.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FMN62RHYUNCFD57B", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FMN62RHYUNCFD57B.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FMN62RHYUNCFD57B.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.0058 per On Demand Windows BYOL t2.nano Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0058000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PF95WR6DG26CSW2U" : { - "PF95WR6DG26CSW2U.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PF95WR6DG26CSW2U", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PF95WR6DG26CSW2U.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PF95WR6DG26CSW2U.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per GB Data Processed by NAT Gateways with Provisioned Bandwidth", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "332GEN3V5S3FTKZJ" : { - "332GEN3V5S3FTKZJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "332GEN3V5S3FTKZJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "332GEN3V5S3FTKZJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "332GEN3V5S3FTKZJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.403 per Dedicated Usage SUSE m3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PQPJ4CV7Q5CNYCFD" : { - "PQPJ4CV7Q5CNYCFD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PQPJ4CV7Q5CNYCFD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PQPJ4CV7Q5CNYCFD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PQPJ4CV7Q5CNYCFD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$15.84 per On Demand p2 Dedicated Host Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.8400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QYFXFTGTF3CQ3XKH" : { - "QYFXFTGTF3CQ3XKH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QYFXFTGTF3CQ3XKH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QYFXFTGTF3CQ3XKH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QYFXFTGTF3CQ3XKH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.0081 per On Demand Windows t2.nano Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0081000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4WKDEBCNFZKFEKEZ" : { - "4WKDEBCNFZKFEKEZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4WKDEBCNFZKFEKEZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4WKDEBCNFZKFEKEZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4WKDEBCNFZKFEKEZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.518 per Dedicated Usage Linux d2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VJAJFF3S48Y4ZK6H" : { - "VJAJFF3S48Y4ZK6H.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VJAJFF3S48Y4ZK6H", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VJAJFF3S48Y4ZK6H.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VJAJFF3S48Y4ZK6H.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.562 per Dedicated SUSE c3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KTX4HGW8878XMM7R" : { - "KTX4HGW8878XMM7R.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KTX4HGW8878XMM7R", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KTX4HGW8878XMM7R.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KTX4HGW8878XMM7R.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.116 per Dedicated Windows BYOL c3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7CHGSVMJ73UUBCGJ" : { - "7CHGSVMJ73UUBCGJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7CHGSVMJ73UUBCGJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7CHGSVMJ73UUBCGJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7CHGSVMJ73UUBCGJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0 for 1 Mbps per g3.8xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "D8RDVC722HKNR55G" : { - "D8RDVC722HKNR55G.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "D8RDVC722HKNR55G", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "D8RDVC722HKNR55G.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "D8RDVC722HKNR55G.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.065 per IOPS-month provisioned - US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "IOPS-Mo", - "pricePerUnit" : { - "USD" : "0.0650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "95B5M4Z5DF8F8PVC" : { - "95B5M4Z5DF8F8PVC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "95B5M4Z5DF8F8PVC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "95B5M4Z5DF8F8PVC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "95B5M4Z5DF8F8PVC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Server Enterprise i3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DUH49BWDXYJZKX4Z" : { - "DUH49BWDXYJZKX4Z.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DUH49BWDXYJZKX4Z", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DUH49BWDXYJZKX4Z.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DUH49BWDXYJZKX4Z.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.036 per Dedicated Windows BYOL d2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PSVDMQASMVK87NYB" : { - "PSVDMQASMVK87NYB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PSVDMQASMVK87NYB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PSVDMQASMVK87NYB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PSVDMQASMVK87NYB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$5.122 per Dedicated RHEL i3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.1220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BW6AXJST7E7P4GBA" : { - "BW6AXJST7E7P4GBA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BW6AXJST7E7P4GBA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BW6AXJST7E7P4GBA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BW6AXJST7E7P4GBA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$13.136 per Dedicated SUSE p3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.1360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AJVKWKD84J3BCR86" : { - "AJVKWKD84J3BCR86.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AJVKWKD84J3BCR86", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AJVKWKD84J3BCR86.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AJVKWKD84J3BCR86.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise m3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5BBSXXSX365HB5ME" : { - "5BBSXXSX365HB5ME.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5BBSXXSX365HB5ME", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5BBSXXSX365HB5ME.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5BBSXXSX365HB5ME.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Std i3.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "M3V33TUCANWGSDGH" : { - "M3V33TUCANWGSDGH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "M3V33TUCANWGSDGH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "M3V33TUCANWGSDGH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "M3V33TUCANWGSDGH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$15.152 per On Demand Windows with SQL Server Enterprise c3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.1520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "G9R9MZY25V8QGW6J" : { - "G9R9MZY25V8QGW6J.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "G9R9MZY25V8QGW6J", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "G9R9MZY25V8QGW6J.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "G9R9MZY25V8QGW6J.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.957 per On Demand SQL Web g2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7EN7RS9DVKDM4WXZ" : { - "7EN7RS9DVKDM4WXZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7EN7RS9DVKDM4WXZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7EN7RS9DVKDM4WXZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7EN7RS9DVKDM4WXZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.680 per Dedicated Linux c3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XCCBFY7VKRFREWQZ" : { - "XCCBFY7VKRFREWQZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XCCBFY7VKRFREWQZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XCCBFY7VKRFREWQZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XCCBFY7VKRFREWQZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.703 per On Demand SQL Web cg1.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "B99R452XS63YWAQ4" : { - "B99R452XS63YWAQ4.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "B99R452XS63YWAQ4", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "B99R452XS63YWAQ4.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "B99R452XS63YWAQ4.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.502 per On Demand I2 Dedicated Host Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "P2HREWU59F8JRCVB" : { - "P2HREWU59F8JRCVB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "P2HREWU59F8JRCVB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "P2HREWU59F8JRCVB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "P2HREWU59F8JRCVB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.386 per Dedicated Usage RHEL r4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.3860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YJQ6VUEJFXP5T23D" : { - "YJQ6VUEJFXP5T23D.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YJQ6VUEJFXP5T23D", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YJQ6VUEJFXP5T23D.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YJQ6VUEJFXP5T23D.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.52 per On Demand Windows with SQL Web r3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KR92PJED8B49G7EJ" : { - "KR92PJED8B49G7EJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KR92PJED8B49G7EJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KR92PJED8B49G7EJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KR92PJED8B49G7EJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.008 per Dedicated Windows c3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CAJNJQPQHHFV48TD" : { - "CAJNJQPQHHFV48TD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CAJNJQPQHHFV48TD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CAJNJQPQHHFV48TD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CAJNJQPQHHFV48TD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.844 per Dedicated Windows with SQL Std c5.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VA8Q43DVPX4YV6NG" : { - "VA8Q43DVPX4YV6NG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VA8Q43DVPX4YV6NG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VA8Q43DVPX4YV6NG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VA8Q43DVPX4YV6NG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.0232 per On Demand Linux t2.small Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RHSXCZ3G6S7CMC36" : { - "RHSXCZ3G6S7CMC36.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RHSXCZ3G6S7CMC36", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RHSXCZ3G6S7CMC36.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RHSXCZ3G6S7CMC36.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.299 per On Demand SUSE c4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CD2SCABAVGYKKGRQ" : { - "CD2SCABAVGYKKGRQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CD2SCABAVGYKKGRQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CD2SCABAVGYKKGRQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CD2SCABAVGYKKGRQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.200 per Dedicated SUSE cg1.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "24MXYDDDX5MFDX7E" : { - "24MXYDDDX5MFDX7E.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "24MXYDDDX5MFDX7E", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "24MXYDDDX5MFDX7E.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "24MXYDDDX5MFDX7E.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux c3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HESKMZUVTYYVD46R" : { - "HESKMZUVTYYVD46R.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HESKMZUVTYYVD46R", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HESKMZUVTYYVD46R.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HESKMZUVTYYVD46R.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.56 per Dedicated Linux g3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3TGYW692U4UVK8F4" : { - "3TGYW692U4UVK8F4.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3TGYW692U4UVK8F4", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3TGYW692U4UVK8F4.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3TGYW692U4UVK8F4.JRTCKXETXF.6YS6EN2CT7", - "description" : "$13.338 per Dedicated Usage Linux x1.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.3380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XBYJG3BUDTPN8NB9" : { - "XBYJG3BUDTPN8NB9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XBYJG3BUDTPN8NB9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XBYJG3BUDTPN8NB9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XBYJG3BUDTPN8NB9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.570 per On Demand Windows cc2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RA5N9YR5B2CYJ8U7" : { - "RA5N9YR5B2CYJ8U7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RA5N9YR5B2CYJ8U7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RA5N9YR5B2CYJ8U7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RA5N9YR5B2CYJ8U7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.36 per Dedicated Windows BYOL c5.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BPK6ZJ9DW5BR885X" : { - "BPK6ZJ9DW5BR885X.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BPK6ZJ9DW5BR885X", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BPK6ZJ9DW5BR885X.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BPK6ZJ9DW5BR885X.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.993 per On Demand SQL Web i2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "V8DBBCPMYRSW3JJY" : { - "V8DBBCPMYRSW3JJY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "V8DBBCPMYRSW3JJY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "V8DBBCPMYRSW3JJY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "V8DBBCPMYRSW3JJY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.665 per On Demand Windows BYOL r3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DFJU7MKX4S9ZU689" : { - "DFJU7MKX4S9ZU689.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DFJU7MKX4S9ZU689", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DFJU7MKX4S9ZU689.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DFJU7MKX4S9ZU689.JRTCKXETXF.6YS6EN2CT7", - "description" : "$26.818 per Dedicated RHEL x1e.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "26.8180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "M7CJ3KNC8SVT4Y6G" : { - "M7CJ3KNC8SVT4Y6G.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "M7CJ3KNC8SVT4Y6G", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "M7CJ3KNC8SVT4Y6G.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "M7CJ3KNC8SVT4Y6G.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows r3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "WZM4T9SQXM7SF7ZF" : { - "WZM4T9SQXM7SF7ZF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "WZM4T9SQXM7SF7ZF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "WZM4T9SQXM7SF7ZF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "WZM4T9SQXM7SF7ZF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.686 per On Demand Windows with SQL Web c5.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TUZ66NQWUUE3DQ3K" : { - "TUZ66NQWUUE3DQ3K.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TUZ66NQWUUE3DQ3K", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TUZ66NQWUUE3DQ3K.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TUZ66NQWUUE3DQ3K.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.05 for 1000 Mbps per r3.2xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "V56C6ZGR7E55RDBN" : { - "V56C6ZGR7E55RDBN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "V56C6ZGR7E55RDBN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "V56C6ZGR7E55RDBN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "V56C6ZGR7E55RDBN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.528 per On Demand RHEL c4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4NYBH5BWKQ2W5ZQ5" : { - "4NYBH5BWKQ2W5ZQ5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4NYBH5BWKQ2W5ZQ5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4NYBH5BWKQ2W5ZQ5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4NYBH5BWKQ2W5ZQ5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.067 per On Demand Windows BYOL m3.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MJFVKRE8CR2DYKWF" : { - "MJFVKRE8CR2DYKWF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MJFVKRE8CR2DYKWF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MJFVKRE8CR2DYKWF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MJFVKRE8CR2DYKWF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.986 per On Demand SQL Web i2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SURRSGSBEXVRX9RJ" : { - "SURRSGSBEXVRX9RJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SURRSGSBEXVRX9RJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SURRSGSBEXVRX9RJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SURRSGSBEXVRX9RJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.05 for 1000 Mbps per c1.xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NARXYND9H74FTC7A" : { - "NARXYND9H74FTC7A.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NARXYND9H74FTC7A", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NARXYND9H74FTC7A.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NARXYND9H74FTC7A.JRTCKXETXF.6YS6EN2CT7", - "description" : "$6.820 per On Demand Linux i2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.8200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XTNCFY9Y77D7WC9Y" : { - "XTNCFY9Y77D7WC9Y.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XTNCFY9Y77D7WC9Y", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XTNCFY9Y77D7WC9Y.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XTNCFY9Y77D7WC9Y.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.22 per Dedicated Linux m4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HJU8DJNB6BYWAMBG" : { - "HJU8DJNB6BYWAMBG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HJU8DJNB6BYWAMBG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HJU8DJNB6BYWAMBG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HJU8DJNB6BYWAMBG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.1 per On Demand Windows BYOL c4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SCM48G5B7MFU9DV3" : { - "SCM48G5B7MFU9DV3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SCM48G5B7MFU9DV3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SCM48G5B7MFU9DV3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SCM48G5B7MFU9DV3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per GB - US East (Northern Virginia) data transfer from AWS GovCloud (US)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3XZGHRZ6YE3HHENC" : { - "3XZGHRZ6YE3HHENC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3XZGHRZ6YE3HHENC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3XZGHRZ6YE3HHENC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3XZGHRZ6YE3HHENC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$47.936 per On Demand Windows with SQL Std x1e.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "47.9360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GNAPQZPVUSZ36KUU" : { - "GNAPQZPVUSZ36KUU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GNAPQZPVUSZ36KUU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GNAPQZPVUSZ36KUU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GNAPQZPVUSZ36KUU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.878 per On Demand Windows g2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GAAPZE44XKXJUATT" : { - "GAAPZE44XKXJUATT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GAAPZE44XKXJUATT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GAAPZE44XKXJUATT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GAAPZE44XKXJUATT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Linux i3.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YM5RNCFKGBB4T3QM" : { - "YM5RNCFKGBB4T3QM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YM5RNCFKGBB4T3QM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YM5RNCFKGBB4T3QM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YM5RNCFKGBB4T3QM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$5.992 per On Demand Windows with SQL Std x1e.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.9920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RSN2RZ8JSX98HFVM" : { - "RSN2RZ8JSX98HFVM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RSN2RZ8JSX98HFVM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RSN2RZ8JSX98HFVM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RSN2RZ8JSX98HFVM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.33 per On Demand Linux r3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TA6DVCUX4BZXUYXM" : { - "TA6DVCUX4BZXUYXM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TA6DVCUX4BZXUYXM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TA6DVCUX4BZXUYXM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TA6DVCUX4BZXUYXM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows r4.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KCYHZ77Q583MP6ET" : { - "KCYHZ77Q583MP6ET.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KCYHZ77Q583MP6ET", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KCYHZ77Q583MP6ET.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KCYHZ77Q583MP6ET.JRTCKXETXF.6YS6EN2CT7", - "description" : "$20.144 per On Demand Windows with SQL Server Enterprise x1e.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "20.1440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ARPJFM962U4P5HAT" : { - "ARPJFM962U4P5HAT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ARPJFM962U4P5HAT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ARPJFM962U4P5HAT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ARPJFM962U4P5HAT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.796 per On Demand Linux c4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4NZYXM2TKNFUFMFP" : { - "4NZYXM2TKNFUFMFP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4NZYXM2TKNFUFMFP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4NZYXM2TKNFUFMFP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4NZYXM2TKNFUFMFP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.385 per Dedicated Windows BYOL m1.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EEY67C7D4RJ9CHR3" : { - "EEY67C7D4RJ9CHR3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EEY67C7D4RJ9CHR3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EEY67C7D4RJ9CHR3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EEY67C7D4RJ9CHR3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.309 per Dedicated Usage Windows with SQL Web r4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8KGH3T8ZZRGT8BQF" : { - "8KGH3T8ZZRGT8BQF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8KGH3T8ZZRGT8BQF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8KGH3T8ZZRGT8BQF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8KGH3T8ZZRGT8BQF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.262 per On Demand SQL Std c3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TBEWTV892NWKQS69" : { - "TBEWTV892NWKQS69.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TBEWTV892NWKQS69", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TBEWTV892NWKQS69.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TBEWTV892NWKQS69.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.015 per Dedicated Usage Windows with SQL Std r3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "B49ZJ7RVTVWQUJ85" : { - "B49ZJ7RVTVWQUJ85.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "B49ZJ7RVTVWQUJ85", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "B49ZJ7RVTVWQUJ85.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "B49ZJ7RVTVWQUJ85.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows BYOL p3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YYT7SGG9WN5TE2P3" : { - "YYT7SGG9WN5TE2P3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YYT7SGG9WN5TE2P3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YYT7SGG9WN5TE2P3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YYT7SGG9WN5TE2P3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise d2.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QAMMQS9R5WC8PTN7" : { - "QAMMQS9R5WC8PTN7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QAMMQS9R5WC8PTN7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QAMMQS9R5WC8PTN7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QAMMQS9R5WC8PTN7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.936 per On Demand Windows i3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.9360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DJZE39FJBRGB2JNH" : { - "DJZE39FJBRGB2JNH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DJZE39FJBRGB2JNH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DJZE39FJBRGB2JNH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DJZE39FJBRGB2JNH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.688 per Dedicated SQL Std c3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.6880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ERPWM7KEFVQABEK6" : { - "ERPWM7KEFVQABEK6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ERPWM7KEFVQABEK6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ERPWM7KEFVQABEK6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ERPWM7KEFVQABEK6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std m3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7TCPFRQ8URKENK6F" : { - "7TCPFRQ8URKENK6F.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7TCPFRQ8URKENK6F", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7TCPFRQ8URKENK6F.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7TCPFRQ8URKENK6F.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.00 per On Demand Windows BYOL m4.10xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EYGMRBWWFGSQBSBZ" : { - "EYGMRBWWFGSQBSBZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EYGMRBWWFGSQBSBZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EYGMRBWWFGSQBSBZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EYGMRBWWFGSQBSBZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.350 per On Demand Linux m1.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZTJAGDVB3B33WX4G" : { - "ZTJAGDVB3B33WX4G.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZTJAGDVB3B33WX4G", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZTJAGDVB3B33WX4G.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZTJAGDVB3B33WX4G.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.245 per On Demand Windows with SQL Web c5.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KAH9XCCP3F226R57" : { - "KAH9XCCP3F226R57.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KAH9XCCP3F226R57", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KAH9XCCP3F226R57.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KAH9XCCP3F226R57.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.639 per Dedicated SUSE m2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6Z2HWHRBW2ZH7Z33" : { - "6Z2HWHRBW2ZH7Z33.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6Z2HWHRBW2ZH7Z33", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6Z2HWHRBW2ZH7Z33.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6Z2HWHRBW2ZH7Z33.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.403 per Dedicated RHEL i3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EKX4XJYWHK3C9ZDP" : { - "EKX4XJYWHK3C9ZDP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EKX4XJYWHK3C9ZDP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EKX4XJYWHK3C9ZDP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EKX4XJYWHK3C9ZDP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.202 per Dedicated Usage Windows c4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZDK96RPJGJ9MFZYU" : { - "ZDK96RPJGJ9MFZYU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZDK96RPJGJ9MFZYU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZDK96RPJGJ9MFZYU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZDK96RPJGJ9MFZYU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.992 per On Demand Linux i3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Q6R3PVH9UARHH828" : { - "Q6R3PVH9UARHH828.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Q6R3PVH9UARHH828", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Q6R3PVH9UARHH828.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Q6R3PVH9UARHH828.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.436 per Dedicated Usage SUSE x1.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9M4946BDX6NVDS6R" : { - "9M4946BDX6NVDS6R.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9M4946BDX6NVDS6R", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9M4946BDX6NVDS6R.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9M4946BDX6NVDS6R.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Server Enterprise c5.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RVFUWFSHJ76F8GFX" : { - "RVFUWFSHJ76F8GFX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RVFUWFSHJ76F8GFX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RVFUWFSHJ76F8GFX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RVFUWFSHJ76F8GFX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL g2.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NBP9U2SVG37VG5S9" : { - "NBP9U2SVG37VG5S9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NBP9U2SVG37VG5S9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NBP9U2SVG37VG5S9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NBP9U2SVG37VG5S9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.462 per Dedicated Linux c3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AW64VE5DA5MH4J22" : { - "AW64VE5DA5MH4J22.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AW64VE5DA5MH4J22", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AW64VE5DA5MH4J22.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AW64VE5DA5MH4J22.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.83 per Dedicated Usage Windows with SQL Server Enterprise c3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YS8Z2EM6AZQYWEY8" : { - "YS8Z2EM6AZQYWEY8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YS8Z2EM6AZQYWEY8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YS8Z2EM6AZQYWEY8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YS8Z2EM6AZQYWEY8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux c4.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6CB4U9QPSBPWD3PM" : { - "6CB4U9QPSBPWD3PM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6CB4U9QPSBPWD3PM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6CB4U9QPSBPWD3PM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6CB4U9QPSBPWD3PM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$14.672 per On Demand X1 Dedicated Host Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.6720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VWWDF9UY9DZAY2ZU" : { - "VWWDF9UY9DZAY2ZU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VWWDF9UY9DZAY2ZU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VWWDF9UY9DZAY2ZU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VWWDF9UY9DZAY2ZU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per SUSE x1e.32xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8XS2K65N47Y67NAF" : { - "8XS2K65N47Y67NAF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8XS2K65N47Y67NAF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8XS2K65N47Y67NAF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8XS2K65N47Y67NAF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.256 per Dedicated Usage Windows BYOL r4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "B8SBWVGGW2W6MUVG" : { - "B8SBWVGGW2W6MUVG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "B8SBWVGGW2W6MUVG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "B8SBWVGGW2W6MUVG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "B8SBWVGGW2W6MUVG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL c4.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KGZ5JY4FKTR75YN3" : { - "KGZ5JY4FKTR75YN3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KGZ5JY4FKTR75YN3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KGZ5JY4FKTR75YN3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KGZ5JY4FKTR75YN3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.14 per Dedicated Usage RHEL m3.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GJDDYRCUFGU7BA7D" : { - "GJDDYRCUFGU7BA7D.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GJDDYRCUFGU7BA7D", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GJDDYRCUFGU7BA7D.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GJDDYRCUFGU7BA7D.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per GB - US East (Northern Virginia) data transfer from EU (Germany)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "V7P8A57BFQNG5NH7" : { - "V7P8A57BFQNG5NH7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "V7P8A57BFQNG5NH7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "V7P8A57BFQNG5NH7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "V7P8A57BFQNG5NH7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows p2.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "M7W8H8ETF66PU3XA" : { - "M7W8H8ETF66PU3XA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "M7W8H8ETF66PU3XA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "M7W8H8ETF66PU3XA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "M7W8H8ETF66PU3XA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.356 per Dedicated Usage SUSE r4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.3560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "H82A2SJ6H4MSM5Q6" : { - "H82A2SJ6H4MSM5Q6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "H82A2SJ6H4MSM5Q6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "H82A2SJ6H4MSM5Q6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "H82A2SJ6H4MSM5Q6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.976 per On Demand Windows with SQL Std i3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BWPP6VPRP5NECMAA" : { - "BWPP6VPRP5NECMAA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BWPP6VPRP5NECMAA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BWPP6VPRP5NECMAA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BWPP6VPRP5NECMAA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.4712 per On Demand SUSE t2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4712000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FXDDR8N72HV8JWMF" : { - "FXDDR8N72HV8JWMF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FXDDR8N72HV8JWMF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FXDDR8N72HV8JWMF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FXDDR8N72HV8JWMF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$24.58 per On Demand SUSE p3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "24.5800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "K5TSDMZRHY2JN5F6" : { - "K5TSDMZRHY2JN5F6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "K5TSDMZRHY2JN5F6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "K5TSDMZRHY2JN5F6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "K5TSDMZRHY2JN5F6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows m3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "G6RMHZ78J5823WFT" : { - "G6RMHZ78J5823WFT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "G6RMHZ78J5823WFT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "G6RMHZ78J5823WFT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "G6RMHZ78J5823WFT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per SUSE i3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KGM6Q2CJFMEMKWQN" : { - "KGM6Q2CJFMEMKWQN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KGM6Q2CJFMEMKWQN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KGM6Q2CJFMEMKWQN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KGM6Q2CJFMEMKWQN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.0832 per On Demand RHEL t2.small Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3J2VT9RG6ADN3BVK" : { - "3J2VT9RG6ADN3BVK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3J2VT9RG6ADN3BVK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3J2VT9RG6ADN3BVK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3J2VT9RG6ADN3BVK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.876 per Dedicated Windows BYOL i2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "U9A5GD49U2QWSB8N" : { - "U9A5GD49U2QWSB8N.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "U9A5GD49U2QWSB8N", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "U9A5GD49U2QWSB8N.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "U9A5GD49U2QWSB8N.JRTCKXETXF.6YS6EN2CT7", - "description" : "$31.2 per Dedicated Usage Windows with SQL Server Enterprise r4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "31.2000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PNHWQABRRB4TBUYK" : { - "PNHWQABRRB4TBUYK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PNHWQABRRB4TBUYK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PNHWQABRRB4TBUYK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PNHWQABRRB4TBUYK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.525 per Dedicated Usage Windows with SQL Web r3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "USYT2WUJN73X3QSZ" : { - "USYT2WUJN73X3QSZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "USYT2WUJN73X3QSZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "USYT2WUJN73X3QSZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "USYT2WUJN73X3QSZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std c3.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VRTKB5F5VS4VGBMS" : { - "VRTKB5F5VS4VGBMS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VRTKB5F5VS4VGBMS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VRTKB5F5VS4VGBMS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VRTKB5F5VS4VGBMS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.80 per On Demand Windows BYOL m4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QA82VPGUZGU7KXVD" : { - "QA82VPGUZGU7KXVD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QA82VPGUZGU7KXVD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QA82VPGUZGU7KXVD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QA82VPGUZGU7KXVD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.16 per Dedicated SUSE c5.18xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9QAKNX2JRT8D5B76" : { - "9QAKNX2JRT8D5B76.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9QAKNX2JRT8D5B76", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9QAKNX2JRT8D5B76.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9QAKNX2JRT8D5B76.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL r3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TSDEZUXYZHBDK9YE" : { - "TSDEZUXYZHBDK9YE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TSDEZUXYZHBDK9YE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TSDEZUXYZHBDK9YE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TSDEZUXYZHBDK9YE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$26.688 per On Demand Windows BYOL x1e.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "26.6880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RHDHFX8Q8XYHVTC7" : { - "RHDHFX8Q8XYHVTC7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RHDHFX8Q8XYHVTC7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RHDHFX8Q8XYHVTC7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RHDHFX8Q8XYHVTC7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows BYOL x1e.32xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZKNV3YNZ7ETKWSWB" : { - "ZKNV3YNZ7ETKWSWB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZKNV3YNZ7ETKWSWB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZKNV3YNZ7ETKWSWB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZKNV3YNZ7ETKWSWB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.1208 per On Demand Windows t2.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1208000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4QZ87TMBCWWNPSG4" : { - "4QZ87TMBCWWNPSG4.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4QZ87TMBCWWNPSG4", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4QZ87TMBCWWNPSG4.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4QZ87TMBCWWNPSG4.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL p2.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3RUU5T58T7XAFAAF" : { - "3RUU5T58T7XAFAAF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3RUU5T58T7XAFAAF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3RUU5T58T7XAFAAF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3RUU5T58T7XAFAAF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.500 per On Demand Linux cr1.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4W9WDFJ5DZZ4Z4EJ" : { - "4W9WDFJ5DZZ4Z4EJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4W9WDFJ5DZZ4Z4EJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4W9WDFJ5DZZ4Z4EJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4W9WDFJ5DZZ4Z4EJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux g2.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KNZCWW7PZRYSMJ6S" : { - "KNZCWW7PZRYSMJ6S.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KNZCWW7PZRYSMJ6S", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KNZCWW7PZRYSMJ6S.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KNZCWW7PZRYSMJ6S.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.272 per Dedicated SUSE i3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "C3YH2XDN7TZMMA7P" : { - "C3YH2XDN7TZMMA7P.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "C3YH2XDN7TZMMA7P", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "C3YH2XDN7TZMMA7P.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "C3YH2XDN7TZMMA7P.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows BYOL i3.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "WE43EAHVMJU4ZVBT" : { - "WE43EAHVMJU4ZVBT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "WE43EAHVMJU4ZVBT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "WE43EAHVMJU4ZVBT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "WE43EAHVMJU4ZVBT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.007 per Dedicated Windows with SQL Std i3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KTQ9XV2KF6MVX7PJ" : { - "KTQ9XV2KF6MVX7PJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KTQ9XV2KF6MVX7PJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KTQ9XV2KF6MVX7PJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KTQ9XV2KF6MVX7PJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.24 per On Demand SUSE g3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "WSBQ3GQCNJDRXWWZ" : { - "WSBQ3GQCNJDRXWWZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "WSBQ3GQCNJDRXWWZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "WSBQ3GQCNJDRXWWZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "WSBQ3GQCNJDRXWWZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.585 per Dedicated Usage Linux r4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TDQNZBUHCYXTFDUS" : { - "TDQNZBUHCYXTFDUS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TDQNZBUHCYXTFDUS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TDQNZBUHCYXTFDUS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TDQNZBUHCYXTFDUS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.359 per Dedicated Usage RHEL m3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "N48UCGS5YF8G8CCW" : { - "N48UCGS5YF8G8CCW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "N48UCGS5YF8G8CCW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "N48UCGS5YF8G8CCW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "N48UCGS5YF8G8CCW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$8.05 per Dedicated Usage RHEL p2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.0500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8WMJSK8SESK57KMV" : { - "8WMJSK8SESK57KMV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8WMJSK8SESK57KMV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8WMJSK8SESK57KMV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8WMJSK8SESK57KMV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.504 per Dedicated Windows g3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XDG4DYSAQBVCPRJQ" : { - "XDG4DYSAQBVCPRJQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XDG4DYSAQBVCPRJQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XDG4DYSAQBVCPRJQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XDG4DYSAQBVCPRJQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.638 per Dedicated RHEL g3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "A8NG2GF96A6WJPJW" : { - "A8NG2GF96A6WJPJW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "A8NG2GF96A6WJPJW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "A8NG2GF96A6WJPJW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "A8NG2GF96A6WJPJW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.496 per On Demand Windows i3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KMP6N3WQVNDKNT4Q" : { - "KMP6N3WQVNDKNT4Q.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KMP6N3WQVNDKNT4Q", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KMP6N3WQVNDKNT4Q.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KMP6N3WQVNDKNT4Q.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux m4.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BZ7GFWTXT5ST7P4K" : { - "BZ7GFWTXT5ST7P4K.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BZ7GFWTXT5ST7P4K", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BZ7GFWTXT5ST7P4K.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BZ7GFWTXT5ST7P4K.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.17 per Dedicated Usage Windows BYOL r4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TN5GRYE6RHCET7M3" : { - "TN5GRYE6RHCET7M3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TN5GRYE6RHCET7M3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TN5GRYE6RHCET7M3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TN5GRYE6RHCET7M3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.668 per On Demand Linux x1e.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YA3C3GQF9SK75Y3V" : { - "YA3C3GQF9SK75Y3V.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YA3C3GQF9SK75Y3V", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YA3C3GQF9SK75Y3V.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YA3C3GQF9SK75Y3V.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web r4.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "42568WZBBYJBWCB3" : { - "42568WZBBYJBWCB3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "42568WZBBYJBWCB3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "42568WZBBYJBWCB3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "42568WZBBYJBWCB3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.536 per Dedicated Windows with SQL Std m4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AUEXKF3V3JXC7F22" : { - "AUEXKF3V3JXC7F22.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AUEXKF3V3JXC7F22", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AUEXKF3V3JXC7F22.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AUEXKF3V3JXC7F22.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.479 per Dedicated SQL Web m1.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VU398KD2CYRQCGPP" : { - "VU398KD2CYRQCGPP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VU398KD2CYRQCGPP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VU398KD2CYRQCGPP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VU398KD2CYRQCGPP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$20.292 per On Demand Windows with SQL Server Enterprise i2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "20.2920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TGH4GCMRQQNEDGCJ" : { - "TGH4GCMRQQNEDGCJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TGH4GCMRQQNEDGCJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TGH4GCMRQQNEDGCJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TGH4GCMRQQNEDGCJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$6.372 per Dedicated Windows c5.18xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.3720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Q49VKFFWC877GUFC" : { - "Q49VKFFWC877GUFC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Q49VKFFWC877GUFC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Q49VKFFWC877GUFC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Q49VKFFWC877GUFC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.384 per On Demand Windows m4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "WVXEZZPK3N9SFW9H" : { - "WVXEZZPK3N9SFW9H.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "WVXEZZPK3N9SFW9H", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "WVXEZZPK3N9SFW9H.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "WVXEZZPK3N9SFW9H.JRTCKXETXF.6YS6EN2CT7", - "description" : "$9.352 per Dedicated Windows with SQL Web x1e.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.3520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZTRYHCJDHUC65SBA" : { - "ZTRYHCJDHUC65SBA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZTRYHCJDHUC65SBA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZTRYHCJDHUC65SBA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZTRYHCJDHUC65SBA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.202 per Dedicated Windows m4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "B94BJ9BKFE3BAMJW" : { - "B94BJ9BKFE3BAMJW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "B94BJ9BKFE3BAMJW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "B94BJ9BKFE3BAMJW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "B94BJ9BKFE3BAMJW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.600 per Dedicated SUSE cr1.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "J5XXRJGFYZHJVQZJ" : { - "J5XXRJGFYZHJVQZJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "J5XXRJGFYZHJVQZJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "J5XXRJGFYZHJVQZJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "J5XXRJGFYZHJVQZJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.333 per On Demand Linux r3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SACDBTNC2KPVGJ8R" : { - "SACDBTNC2KPVGJ8R.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SACDBTNC2KPVGJ8R", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SACDBTNC2KPVGJ8R.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SACDBTNC2KPVGJ8R.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.02 per GB - EU (Germany) data transfer to US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SA3SBP2T8HCQWD6V" : { - "SA3SBP2T8HCQWD6V.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SA3SBP2T8HCQWD6V", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SA3SBP2T8HCQWD6V.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SA3SBP2T8HCQWD6V.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.186 per On Demand Windows c5.9xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "X7H5W7828HGJJPVY" : { - "X7H5W7828HGJJPVY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "X7H5W7828HGJJPVY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "X7H5W7828HGJJPVY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "X7H5W7828HGJJPVY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Web i3.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6S9PZ5AUPX5MV74N" : { - "6S9PZ5AUPX5MV74N.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6S9PZ5AUPX5MV74N", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6S9PZ5AUPX5MV74N.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6S9PZ5AUPX5MV74N.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.270 per On Demand RHEL c3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3753VU7A9Z8KFJ3N" : { - "3753VU7A9Z8KFJ3N.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3753VU7A9Z8KFJ3N", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3753VU7A9Z8KFJ3N.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3753VU7A9Z8KFJ3N.JRTCKXETXF.6YS6EN2CT7", - "description" : "$8.685 per On Demand Windows with SQL Web x1e.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.6850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XVYMD36W2Q986RBB" : { - "XVYMD36W2Q986RBB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XVYMD36W2Q986RBB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XVYMD36W2Q986RBB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XVYMD36W2Q986RBB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.18 per Dedicated Windows BYOL c5.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TS9C3QP757SZ6Y65" : { - "TS9C3QP757SZ6Y65.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TS9C3QP757SZ6Y65", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TS9C3QP757SZ6Y65.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TS9C3QP757SZ6Y65.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.9 per On Demand Windows with SQL Server Enterprise r4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8SB633RNEF7QTBRF" : { - "8SB633RNEF7QTBRF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8SB633RNEF7QTBRF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8SB633RNEF7QTBRF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8SB633RNEF7QTBRF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.851 per Dedicated SUSE i2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "G6V333UDG5YNV6DP" : { - "G6V333UDG5YNV6DP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "G6V333UDG5YNV6DP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "G6V333UDG5YNV6DP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "G6V333UDG5YNV6DP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.9 per On Demand Windows with SQL Server Enterprise m3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "N62CGU7P3H3TVWVG" : { - "N62CGU7P3H3TVWVG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "N62CGU7P3H3TVWVG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "N62CGU7P3H3TVWVG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "N62CGU7P3H3TVWVG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows x1e.32xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "64EUYDYDPNWKXQUX" : { - "64EUYDYDPNWKXQUX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "64EUYDYDPNWKXQUX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "64EUYDYDPNWKXQUX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "64EUYDYDPNWKXQUX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.600 per Dedicated Linux hs1.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.6000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "URVKD93M9ZPEGG7Z" : { - "URVKD93M9ZPEGG7Z.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "URVKD93M9ZPEGG7Z", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "URVKD93M9ZPEGG7Z.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "URVKD93M9ZPEGG7Z.JRTCKXETXF.6YS6EN2CT7", - "description" : "$13.474 per On Demand RHEL x1e.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.4740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "N8NT76W8DSVFQXZF" : { - "N8NT76W8DSVFQXZF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "N8NT76W8DSVFQXZF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "N8NT76W8DSVFQXZF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "N8NT76W8DSVFQXZF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$67.226 per Dedicated Usage Windows with SQL Server Enterprise x1.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "67.2260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "B2S7FU4V6J386XED" : { - "B2S7FU4V6J386XED.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "B2S7FU4V6J386XED", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "B2S7FU4V6J386XED.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "B2S7FU4V6J386XED.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 for 4000 Mbps per m4.10xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FD2MYJ67QXPYJGHF" : { - "FD2MYJ67QXPYJGHF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FD2MYJ67QXPYJGHF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FD2MYJ67QXPYJGHF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FD2MYJ67QXPYJGHF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.944 per On Demand Windows r3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MR5MW694BZTU3QD6" : { - "MR5MW694BZTU3QD6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MR5MW694BZTU3QD6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MR5MW694BZTU3QD6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MR5MW694BZTU3QD6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$34.28 per Dedicated Usage Windows with SQL Server Enterprise x1.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "34.2800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "A64H3T6VVR3C4SUA" : { - "A64H3T6VVR3C4SUA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "A64H3T6VVR3C4SUA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "A64H3T6VVR3C4SUA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "A64H3T6VVR3C4SUA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.5012 per On Demand RHEL t2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5012000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MHMTSP3T6M2NU383" : { - "MHMTSP3T6M2NU383.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MHMTSP3T6M2NU383", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MHMTSP3T6M2NU383.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MHMTSP3T6M2NU383.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows BYOL p3.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "S829SWJS7CDHWFZY" : { - "S829SWJS7CDHWFZY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "S829SWJS7CDHWFZY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "S829SWJS7CDHWFZY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "S829SWJS7CDHWFZY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$80.576 per On Demand Windows with SQL Server Enterprise x1e.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "80.5760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HNHRS6AFMYQWY26Y" : { - "HNHRS6AFMYQWY26Y.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HNHRS6AFMYQWY26Y", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HNHRS6AFMYQWY26Y.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HNHRS6AFMYQWY26Y.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows m4.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UFKUZG4FVYQCFGYG" : { - "UFKUZG4FVYQCFGYG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UFKUZG4FVYQCFGYG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UFKUZG4FVYQCFGYG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UFKUZG4FVYQCFGYG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows BYOL i3.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VHA3WETGYBUH3HCX" : { - "VHA3WETGYBUH3HCX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VHA3WETGYBUH3HCX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VHA3WETGYBUH3HCX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VHA3WETGYBUH3HCX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.463 per Dedicated Usage Windows BYOL r3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QRBKW8JQVD29EVBU" : { - "QRBKW8JQVD29EVBU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QRBKW8JQVD29EVBU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QRBKW8JQVD29EVBU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QRBKW8JQVD29EVBU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.171 per On Demand Windows with SQL Web x1e.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FDYDQJ8P2SCE3SD8" : { - "FDYDQJ8P2SCE3SD8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FDYDQJ8P2SCE3SD8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FDYDQJ8P2SCE3SD8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FDYDQJ8P2SCE3SD8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$5.203 per Dedicated Windows with SQL Server Enterprise x1e.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.2030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6V9UKEPJF6WP9M5K" : { - "6V9UKEPJF6WP9M5K.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6V9UKEPJF6WP9M5K", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6V9UKEPJF6WP9M5K.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6V9UKEPJF6WP9M5K.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.751 per Dedicated Linux i2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "C3VTCSXYNCNUKHPS" : { - "C3VTCSXYNCNUKHPS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "C3VTCSXYNCNUKHPS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "C3VTCSXYNCNUKHPS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "C3VTCSXYNCNUKHPS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.818 per Dedicated SQL Std m1.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8D8WEXZEQ37HKFNV" : { - "8D8WEXZEQ37HKFNV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8D8WEXZEQ37HKFNV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8D8WEXZEQ37HKFNV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8D8WEXZEQ37HKFNV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$21.88 per Dedicated Usage Windows with SQL Web x1.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "21.8800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XEM85KR3292VMY35" : { - "XEM85KR3292VMY35.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XEM85KR3292VMY35", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XEM85KR3292VMY35.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XEM85KR3292VMY35.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.598 per On Demand Windows m1.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9W95WEA2F9V4BVUJ" : { - "9W95WEA2F9V4BVUJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9W95WEA2F9V4BVUJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9W95WEA2F9V4BVUJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9W95WEA2F9V4BVUJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 for 750 Mbps per m4.xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JXT6YFU3KSU3C7ZV" : { - "JXT6YFU3KSU3C7ZV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JXT6YFU3KSU3C7ZV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JXT6YFU3KSU3C7ZV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JXT6YFU3KSU3C7ZV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.561 per On Demand SQL Std c3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7U7TWP44UP36AT3R" : { - "7U7TWP44UP36AT3R.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7U7TWP44UP36AT3R", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7U7TWP44UP36AT3R.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7U7TWP44UP36AT3R.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.05 per GB-Month of snapshot data stored - US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB-Mo", - "pricePerUnit" : { - "USD" : "0.0500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZMGP8SNR2VJEV8FJ" : { - "ZMGP8SNR2VJEV8FJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZMGP8SNR2VJEV8FJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZMGP8SNR2VJEV8FJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZMGP8SNR2VJEV8FJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$15.813 per Dedicated Usage Windows with SQL Server Enterprise r4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.8130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EJXKAGBARC5X44CV" : { - "EJXKAGBARC5X44CV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EJXKAGBARC5X44CV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EJXKAGBARC5X44CV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EJXKAGBARC5X44CV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.598 per Dedicated Windows with SQL Std c5.9xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Y4FKSUJMDV8DEFTS" : { - "Y4FKSUJMDV8DEFTS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Y4FKSUJMDV8DEFTS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Y4FKSUJMDV8DEFTS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Y4FKSUJMDV8DEFTS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.187 per On Demand SUSE m1.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9N4WQNFE4TP78PQF" : { - "9N4WQNFE4TP78PQF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9N4WQNFE4TP78PQF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9N4WQNFE4TP78PQF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9N4WQNFE4TP78PQF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.364 per Dedicated Usage Windows with SQL Web c4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "R6ZE4UJ2C8B36SBY" : { - "R6ZE4UJ2C8B36SBY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "R6ZE4UJ2C8B36SBY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "R6ZE4UJ2C8B36SBY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "R6ZE4UJ2C8B36SBY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.124 per On Demand SQL Std c1.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZRAA23N7FYQDZBNU" : { - "ZRAA23N7FYQDZBNU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZRAA23N7FYQDZBNU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZRAA23N7FYQDZBNU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZRAA23N7FYQDZBNU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$14.4 per On Demand Windows BYOL p2.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.4000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AJUJW25DAVRG4WEY" : { - "AJUJW25DAVRG4WEY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AJUJW25DAVRG4WEY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AJUJW25DAVRG4WEY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AJUJW25DAVRG4WEY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.231 per Dedicated Linux c3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EE7BATB9AU6WJQPT" : { - "EE7BATB9AU6WJQPT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EE7BATB9AU6WJQPT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EE7BATB9AU6WJQPT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EE7BATB9AU6WJQPT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$30.144 per On Demand Windows with SQL Server Enterprise m4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "30.1440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "864JFB48Z5WZN64X" : { - "864JFB48Z5WZN64X.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "864JFB48Z5WZN64X", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "864JFB48Z5WZN64X.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "864JFB48Z5WZN64X.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.372 per On Demand RHEL i3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TE2QPK3WJ4MBEASP" : { - "TE2QPK3WJ4MBEASP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TE2QPK3WJ4MBEASP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TE2QPK3WJ4MBEASP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TE2QPK3WJ4MBEASP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$14.808 per Dedicated RHEL x1e.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.8080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5E9TGWTBKMHMQWQ2" : { - "5E9TGWTBKMHMQWQ2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5E9TGWTBKMHMQWQ2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5E9TGWTBKMHMQWQ2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5E9TGWTBKMHMQWQ2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE c3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GVHWDK4ADFF5B3WR" : { - "GVHWDK4ADFF5B3WR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GVHWDK4ADFF5B3WR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GVHWDK4ADFF5B3WR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GVHWDK4ADFF5B3WR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.630 per On Demand RHEL cr1.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CF7GPWXNXHE4VJQX" : { - "CF7GPWXNXHE4VJQX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CF7GPWXNXHE4VJQX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CF7GPWXNXHE4VJQX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CF7GPWXNXHE4VJQX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows c4.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "G92C9VZA7CRCHVRC" : { - "G92C9VZA7CRCHVRC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "G92C9VZA7CRCHVRC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "G92C9VZA7CRCHVRC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "G92C9VZA7CRCHVRC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise c4.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KAMVJY7RYQ6K3M4A" : { - "KAMVJY7RYQ6K3M4A.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KAMVJY7RYQ6K3M4A", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KAMVJY7RYQ6K3M4A.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KAMVJY7RYQ6K3M4A.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux m3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "G8C4DK367XUB4P7B" : { - "G8C4DK367XUB4P7B.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "G8C4DK367XUB4P7B", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "G8C4DK367XUB4P7B.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "G8C4DK367XUB4P7B.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.9566 per Dedicated Windows with SQL Std r4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9566000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "USQAR36DHU6YZUCD" : { - "USQAR36DHU6YZUCD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "USQAR36DHU6YZUCD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "USQAR36DHU6YZUCD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "USQAR36DHU6YZUCD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.876 per Dedicated Usage Windows BYOL c4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YW5M3UMGGY95EQKF" : { - "YW5M3UMGGY95EQKF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YW5M3UMGGY95EQKF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YW5M3UMGGY95EQKF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YW5M3UMGGY95EQKF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux m3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "A28M9STN7TTR5DC8" : { - "A28M9STN7TTR5DC8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "A28M9STN7TTR5DC8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "A28M9STN7TTR5DC8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "A28M9STN7TTR5DC8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows BYOL x1e.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XJZ34YAGC7UHGRHJ" : { - "XJZ34YAGC7UHGRHJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XJZ34YAGC7UHGRHJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XJZ34YAGC7UHGRHJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XJZ34YAGC7UHGRHJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL m4.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3HSGZRDZXZZHNPJC" : { - "3HSGZRDZXZZHNPJC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3HSGZRDZXZZHNPJC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3HSGZRDZXZZHNPJC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3HSGZRDZXZZHNPJC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web c3.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Q7KRGX9524EXCE9T" : { - "Q7KRGX9524EXCE9T.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Q7KRGX9524EXCE9T", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Q7KRGX9524EXCE9T.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Q7KRGX9524EXCE9T.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.876 per On Demand Windows g3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AAWCKPS6CUV38XXA" : { - "AAWCKPS6CUV38XXA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AAWCKPS6CUV38XXA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AAWCKPS6CUV38XXA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AAWCKPS6CUV38XXA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.3 per Dedicated Usage RHEL r4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "M8D9MPXPJGZE2NYV" : { - "M8D9MPXPJGZE2NYV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "M8D9MPXPJGZE2NYV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "M8D9MPXPJGZE2NYV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "M8D9MPXPJGZE2NYV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.539 per Dedicated Linux m2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "A2QSKG5CZVECRMUE" : { - "A2QSKG5CZVECRMUE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "A2QSKG5CZVECRMUE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "A2QSKG5CZVECRMUE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "A2QSKG5CZVECRMUE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.616 per Dedicated Windows m4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XKREJETCK4Q363EE" : { - "XKREJETCK4Q363EE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XKREJETCK4Q363EE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XKREJETCK4Q363EE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XKREJETCK4Q363EE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.378 per On Demand Windows with SQL Std r3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NQZBX7B4JXMHGKCW" : { - "NQZBX7B4JXMHGKCW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NQZBX7B4JXMHGKCW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NQZBX7B4JXMHGKCW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NQZBX7B4JXMHGKCW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.38 per On Demand SUSE g3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UY5E8NPU7EQX4UJD" : { - "UY5E8NPU7EQX4UJD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UY5E8NPU7EQX4UJD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UY5E8NPU7EQX4UJD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UY5E8NPU7EQX4UJD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std c4.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VGM6EF7PXMSGNFP9" : { - "VGM6EF7PXMSGNFP9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VGM6EF7PXMSGNFP9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VGM6EF7PXMSGNFP9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VGM6EF7PXMSGNFP9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web m4.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EMT6SZKEDQPJRUQQ" : { - "EMT6SZKEDQPJRUQQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EMT6SZKEDQPJRUQQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EMT6SZKEDQPJRUQQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EMT6SZKEDQPJRUQQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.601 per On Demand Windows d2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "E52BDE5FYKFFMM6R" : { - "E52BDE5FYKFFMM6R.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "E52BDE5FYKFFMM6R", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "E52BDE5FYKFFMM6R.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "E52BDE5FYKFFMM6R.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux x1.32xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "N58RGQJW3EFKG6Q2" : { - "N58RGQJW3EFKG6Q2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "N58RGQJW3EFKG6Q2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "N58RGQJW3EFKG6Q2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "N58RGQJW3EFKG6Q2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.006 per Dedicated RHEL i2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CHYHEFYUM8H6G965" : { - "CHYHEFYUM8H6G965.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CHYHEFYUM8H6G965", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CHYHEFYUM8H6G965.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CHYHEFYUM8H6G965.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.668 per On Demand Windows BYOL x1e.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EK8RQK3XNDHYVHY2" : { - "EK8RQK3XNDHYVHY2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EK8RQK3XNDHYVHY2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EK8RQK3XNDHYVHY2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EK8RQK3XNDHYVHY2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.13 per Dedicated RHEL m4.10xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "A5GXEZ47W9A2SVY8" : { - "A5GXEZ47W9A2SVY8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "A5GXEZ47W9A2SVY8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "A5GXEZ47W9A2SVY8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "A5GXEZ47W9A2SVY8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.898 per Dedicated Windows with SQL Web m4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5WSKPWBZAEKKQ6RB" : { - "5WSKPWBZAEKKQ6RB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5WSKPWBZAEKKQ6RB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5WSKPWBZAEKKQ6RB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5WSKPWBZAEKKQ6RB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.43 per On Demand SUSE r3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QQ6P3Q6HJP7W7RYN" : { - "QQ6P3Q6HJP7W7RYN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QQ6P3Q6HJP7W7RYN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QQ6P3Q6HJP7W7RYN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QQ6P3Q6HJP7W7RYN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL r3.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4YPVS7TMJF4ESQ24" : { - "4YPVS7TMJF4ESQ24.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4YPVS7TMJF4ESQ24", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4YPVS7TMJF4ESQ24.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4YPVS7TMJF4ESQ24.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Web c5.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PSQDNQXHAZDS7XT9" : { - "PSQDNQXHAZDS7XT9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PSQDNQXHAZDS7XT9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PSQDNQXHAZDS7XT9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PSQDNQXHAZDS7XT9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE g2.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9X8YQSJK3UTFW3TV" : { - "9X8YQSJK3UTFW3TV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9X8YQSJK3UTFW3TV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9X8YQSJK3UTFW3TV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9X8YQSJK3UTFW3TV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$10.28 per Dedicated Usage Windows x1.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.2800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JC8C66GWV5KYJPAD" : { - "JC8C66GWV5KYJPAD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JC8C66GWV5KYJPAD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JC8C66GWV5KYJPAD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JC8C66GWV5KYJPAD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.891 per On Demand Windows i2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "S3H5EEV3EEF3YHPE" : { - "S3H5EEV3EEF3YHPE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "S3H5EEV3EEF3YHPE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "S3H5EEV3EEF3YHPE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "S3H5EEV3EEF3YHPE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.195 per Dedicated Windows with SQL Web i3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DS6NATW2S9Q4UKZS" : { - "DS6NATW2S9Q4UKZS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DS6NATW2S9Q4UKZS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DS6NATW2S9Q4UKZS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DS6NATW2S9Q4UKZS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.190 per On Demand RHEL c1.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Z926BDVSB7Q736SZ" : { - "Z926BDVSB7Q736SZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Z926BDVSB7Q736SZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Z926BDVSB7Q736SZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Z926BDVSB7Q736SZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.992 per Dedicated Windows BYOL i3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MK3NYJPZ3RCV7QNY" : { - "MK3NYJPZ3RCV7QNY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MK3NYJPZ3RCV7QNY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MK3NYJPZ3RCV7QNY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MK3NYJPZ3RCV7QNY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Web c5.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4C7N4APU9GEUZ6H6" : { - "4C7N4APU9GEUZ6H6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4C7N4APU9GEUZ6H6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4C7N4APU9GEUZ6H6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4C7N4APU9GEUZ6H6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.1 per On Demand Linux c4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Y8VTXM3N25VB943C" : { - "Y8VTXM3N25VB943C.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Y8VTXM3N25VB943C", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Y8VTXM3N25VB943C.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Y8VTXM3N25VB943C.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.563 per Dedicated Usage SUSE r3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RJJNTY6VUT5R56NM" : { - "RJJNTY6VUT5R56NM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RJJNTY6VUT5R56NM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RJJNTY6VUT5R56NM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RJJNTY6VUT5R56NM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 for 5 Gbps per p2.8xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6FNWHYYYSDGVQ87S" : { - "6FNWHYYYSDGVQ87S.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6FNWHYYYSDGVQ87S", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6FNWHYYYSDGVQ87S.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6FNWHYYYSDGVQ87S.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.843 per On Demand Windows with SQL Web c5.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DPCWVHKZ3AJBNM43" : { - "DPCWVHKZ3AJBNM43.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DPCWVHKZ3AJBNM43", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DPCWVHKZ3AJBNM43.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DPCWVHKZ3AJBNM43.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.1856 per On Demand Linux t2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1856000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9Z79M3D9R4KBF3U2" : { - "9Z79M3D9R4KBF3U2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9Z79M3D9R4KBF3U2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9Z79M3D9R4KBF3U2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9Z79M3D9R4KBF3U2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.27 per On Demand RHEL g3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3SNVUNEGB8BAMWDP" : { - "3SNVUNEGB8BAMWDP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3SNVUNEGB8BAMWDP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3SNVUNEGB8BAMWDP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3SNVUNEGB8BAMWDP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.938 per Dedicated Linux i2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GU6HKEMK86X9HZKT" : { - "GU6HKEMK86X9HZKT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GU6HKEMK86X9HZKT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GU6HKEMK86X9HZKT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GU6HKEMK86X9HZKT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.84 per Dedicated Usage Windows with SQL Web r4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FZFXDFC28N97MJBH" : { - "FZFXDFC28N97MJBH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FZFXDFC28N97MJBH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FZFXDFC28N97MJBH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FZFXDFC28N97MJBH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.685 per Dedicated Usage SUSE r4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "M3HZTEQVGDNSBKRF" : { - "M3HZTEQVGDNSBKRF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "M3HZTEQVGDNSBKRF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "M3HZTEQVGDNSBKRF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "M3HZTEQVGDNSBKRF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.025 for 500 Mbps per m1.large instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HJA24B3YK2EKQPEQ" : { - "HJA24B3YK2EKQPEQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HJA24B3YK2EKQPEQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HJA24B3YK2EKQPEQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HJA24B3YK2EKQPEQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Server Enterprise c5.18xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6SWWQPFNK6JG5AHS" : { - "6SWWQPFNK6JG5AHS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6SWWQPFNK6JG5AHS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6SWWQPFNK6JG5AHS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6SWWQPFNK6JG5AHS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.785 per Dedicated Usage Windows with SQL Std m3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YZ89W4FUGD48VKWX" : { - "YZ89W4FUGD48VKWX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YZ89W4FUGD48VKWX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YZ89W4FUGD48VKWX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YZ89W4FUGD48VKWX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.05 for 1000 Mbps per i2.2xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XUVPNXCYKWF33FBW" : { - "XUVPNXCYKWF33FBW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XUVPNXCYKWF33FBW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XUVPNXCYKWF33FBW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XUVPNXCYKWF33FBW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows BYOL c5.9xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CFPKDYHZCTKMWEKC" : { - "CFPKDYHZCTKMWEKC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CFPKDYHZCTKMWEKC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CFPKDYHZCTKMWEKC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CFPKDYHZCTKMWEKC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.721 per On Demand RHEL c4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5XD4G79GQT4HJ9K2" : { - "5XD4G79GQT4HJ9K2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5XD4G79GQT4HJ9K2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5XD4G79GQT4HJ9K2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5XD4G79GQT4HJ9K2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$5.092 per Dedicated SUSE i3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.0920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6555VGRWG4AP5HWV" : { - "6555VGRWG4AP5HWV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6555VGRWG4AP5HWV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6555VGRWG4AP5HWV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6555VGRWG4AP5HWV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.16 per On Demand RHEL m4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KBNWDNPNYX37C8BM" : { - "KBNWDNPNYX37C8BM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KBNWDNPNYX37C8BM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KBNWDNPNYX37C8BM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KBNWDNPNYX37C8BM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.354 per On Demand Windows c5.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CEN6ESY9DJ423GZM" : { - "CEN6ESY9DJ423GZM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CEN6ESY9DJ423GZM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CEN6ESY9DJ423GZM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CEN6ESY9DJ423GZM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std i2.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "T66YUXKX79359UWK" : { - "T66YUXKX79359UWK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "T66YUXKX79359UWK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "T66YUXKX79359UWK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "T66YUXKX79359UWK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.245 per On Demand Windows BYOL m2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AJPCC5PE24CKEBWW" : { - "AJPCC5PE24CKEBWW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AJPCC5PE24CKEBWW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AJPCC5PE24CKEBWW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AJPCC5PE24CKEBWW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.518 per Dedicated Windows BYOL d2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Q2WXMV82X42S7KB7" : { - "Q2WXMV82X42S7KB7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Q2WXMV82X42S7KB7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Q2WXMV82X42S7KB7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Q2WXMV82X42S7KB7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux d2.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CZ9BHU45SGEFD4MA" : { - "CZ9BHU45SGEFD4MA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CZ9BHU45SGEFD4MA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CZ9BHU45SGEFD4MA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CZ9BHU45SGEFD4MA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$6.144 per On Demand Windows m4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.1440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RT74PXCRDW3YR4VQ" : { - "RT74PXCRDW3YR4VQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RT74PXCRDW3YR4VQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RT74PXCRDW3YR4VQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RT74PXCRDW3YR4VQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows x1e.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZWRX2ZR95V6ZB42V" : { - "ZWRX2ZR95V6ZB42V.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZWRX2ZR95V6ZB42V", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZWRX2ZR95V6ZB42V.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZWRX2ZR95V6ZB42V.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.612 per Dedicated Usage Windows with SQL Server Enterprise c4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.6120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YAJW34A4DJF7KS9G" : { - "YAJW34A4DJF7KS9G.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YAJW34A4DJF7KS9G", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YAJW34A4DJF7KS9G.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YAJW34A4DJF7KS9G.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.230 per On Demand SQL Std i2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BKPRPT7V22GBZ4Z2" : { - "BKPRPT7V22GBZ4Z2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BKPRPT7V22GBZ4Z2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BKPRPT7V22GBZ4Z2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BKPRPT7V22GBZ4Z2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std c4.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "WHSMTPG2EQZT7C6G" : { - "WHSMTPG2EQZT7C6G.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "WHSMTPG2EQZT7C6G", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "WHSMTPG2EQZT7C6G.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "WHSMTPG2EQZT7C6G.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.054 per Dedicated RHEL c3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PH8HDZXB5PCGB9JY" : { - "PH8HDZXB5PCGB9JY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PH8HDZXB5PCGB9JY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PH8HDZXB5PCGB9JY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PH8HDZXB5PCGB9JY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.77 per Dedicated SUSE x1e.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "M585C29WB3HB866B" : { - "M585C29WB3HB866B.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "M585C29WB3HB866B", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "M585C29WB3HB866B.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "M585C29WB3HB866B.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.339 per Dedicated Linux x1e.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "R785FVDGR7QSRRKB" : { - "R785FVDGR7QSRRKB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "R785FVDGR7QSRRKB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "R785FVDGR7QSRRKB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "R785FVDGR7QSRRKB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$16.747 per On Demand Windows with SQL Server Enterprise c4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.7470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "B29HW84ZHNQH6MAR" : { - "B29HW84ZHNQH6MAR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "B29HW84ZHNQH6MAR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "B29HW84ZHNQH6MAR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "B29HW84ZHNQH6MAR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$20.292 per Dedicated Usage Windows with SQL Server Enterprise i2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "20.2920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SCK4YS7YAEFFVGNK" : { - "SCK4YS7YAEFFVGNK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SCK4YS7YAEFFVGNK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SCK4YS7YAEFFVGNK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SCK4YS7YAEFFVGNK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$13.824 per On Demand Windows with SQL Std m4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.8240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8QJEY5Y228R67A3N" : { - "8QJEY5Y228R67A3N.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8QJEY5Y228R67A3N", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8QJEY5Y228R67A3N.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8QJEY5Y228R67A3N.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.782 per Dedicated Windows with SQL Web i3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.7820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VNYB2GETE99SPEJJ" : { - "VNYB2GETE99SPEJJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VNYB2GETE99SPEJJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VNYB2GETE99SPEJJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VNYB2GETE99SPEJJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.848 per On Demand C3 Dedicated Host Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NWNWWPNWF6HRM3M4" : { - "NWNWWPNWF6HRM3M4.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NWNWWPNWF6HRM3M4", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NWNWWPNWF6HRM3M4.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NWNWWPNWF6HRM3M4.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std m4.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9SQP8ZU4V2K9UGTJ" : { - "9SQP8ZU4V2K9UGTJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9SQP8ZU4V2K9UGTJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9SQP8ZU4V2K9UGTJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9SQP8ZU4V2K9UGTJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.532 per On Demand Windows BYOL r4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HUCWZ5CCHQU7EEQU" : { - "HUCWZ5CCHQU7EEQU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HUCWZ5CCHQU7EEQU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HUCWZ5CCHQU7EEQU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HUCWZ5CCHQU7EEQU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.250 per Dedicated SQL Std cr1.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.2500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "33Y5KYZ4JQEF6J66" : { - "33Y5KYZ4JQEF6J66.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "33Y5KYZ4JQEF6J66", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "33Y5KYZ4JQEF6J66.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "33Y5KYZ4JQEF6J66.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per GB - US East (Northern Virginia) data transfer from US West (Oregon)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SWJUJ3JPRMDJSCZU" : { - "SWJUJ3JPRMDJSCZU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SWJUJ3JPRMDJSCZU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SWJUJ3JPRMDJSCZU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SWJUJ3JPRMDJSCZU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Linux x1e.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "D6XVUTGMGFQKNVF4" : { - "D6XVUTGMGFQKNVF4.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "D6XVUTGMGFQKNVF4", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "D6XVUTGMGFQKNVF4.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "D6XVUTGMGFQKNVF4.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL m4.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CA5RFBSY7MFBKHTZ" : { - "CA5RFBSY7MFBKHTZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CA5RFBSY7MFBKHTZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CA5RFBSY7MFBKHTZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CA5RFBSY7MFBKHTZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per GB - US East (Northern Virginia) data transfer from Asia Pacific (Mumbai)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RKV52SHBEQCC45W3" : { - "RKV52SHBEQCC45W3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RKV52SHBEQCC45W3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RKV52SHBEQCC45W3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RKV52SHBEQCC45W3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows m4.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "A3AVPUXAD6N4JXA9" : { - "A3AVPUXAD6N4JXA9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "A3AVPUXAD6N4JXA9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "A3AVPUXAD6N4JXA9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "A3AVPUXAD6N4JXA9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.017 per Dedicated SUSE x1e.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8D2QYF9WYWYEREWG" : { - "8D2QYF9WYWYEREWG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8D2QYF9WYWYEREWG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8D2QYF9WYWYEREWG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8D2QYF9WYWYEREWG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.16 per On Demand RHEL c4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9DFRVEWZ38WMEJVB" : { - "9DFRVEWZ38WMEJVB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9DFRVEWZ38WMEJVB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9DFRVEWZ38WMEJVB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9DFRVEWZ38WMEJVB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.521 per On Demand Windows with SQL Web r4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "648A8SVAZE8FVHRE" : { - "648A8SVAZE8FVHRE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "648A8SVAZE8FVHRE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "648A8SVAZE8FVHRE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "648A8SVAZE8FVHRE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux r4.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "F3MDY4T6HP6MHSY3" : { - "F3MDY4T6HP6MHSY3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "F3MDY4T6HP6MHSY3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "F3MDY4T6HP6MHSY3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "F3MDY4T6HP6MHSY3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per SUSE i3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "427555ENEC4F3EDG" : { - "427555ENEC4F3EDG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "427555ENEC4F3EDG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "427555ENEC4F3EDG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "427555ENEC4F3EDG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.782 per Dedicated Windows i2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.7820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Z2FWTR8FP7YR4UXY" : { - "Z2FWTR8FP7YR4UXY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Z2FWTR8FP7YR4UXY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Z2FWTR8FP7YR4UXY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Z2FWTR8FP7YR4UXY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$6.072 per On Demand D2 Dedicated Host Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.0720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "86FRG8MH7C6B944J" : { - "86FRG8MH7C6B944J.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "86FRG8MH7C6B944J", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "86FRG8MH7C6B944J.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "86FRG8MH7C6B944J.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Web i3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RATRP8MVJ9EVX6N7" : { - "RATRP8MVJ9EVX6N7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RATRP8MVJ9EVX6N7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RATRP8MVJ9EVX6N7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RATRP8MVJ9EVX6N7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL i2.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Y6NKND98FNQAQ8K9" : { - "Y6NKND98FNQAQ8K9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Y6NKND98FNQAQ8K9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Y6NKND98FNQAQ8K9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Y6NKND98FNQAQ8K9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web m3.medium Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DSG34N2933CDGRJJ" : { - "DSG34N2933CDGRJJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DSG34N2933CDGRJJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DSG34N2933CDGRJJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DSG34N2933CDGRJJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux c4.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YKQEND52YE639ZHB" : { - "YKQEND52YE639ZHB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YKQEND52YE639ZHB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YKQEND52YE639ZHB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YKQEND52YE639ZHB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.256 per Dedicated Usage Linux r4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "68TFKFM9J33ZZB97" : { - "68TFKFM9J33ZZB97.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "68TFKFM9J33ZZB97", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "68TFKFM9J33ZZB97.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "68TFKFM9J33ZZB97.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.8 per On Demand Windows r4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MHX8TSHV6Z45N5KU" : { - "MHX8TSHV6Z45N5KU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MHX8TSHV6Z45N5KU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MHX8TSHV6Z45N5KU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MHX8TSHV6Z45N5KU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.759 per Dedicated Windows BYOL d2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MDG4ZJ269VPQ6XSV" : { - "MDG4ZJ269VPQ6XSV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MDG4ZJ269VPQ6XSV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MDG4ZJ269VPQ6XSV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MDG4ZJ269VPQ6XSV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise g2.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UDYTM9QGGMXVAR7Y" : { - "UDYTM9QGGMXVAR7Y.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UDYTM9QGGMXVAR7Y", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UDYTM9QGGMXVAR7Y.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UDYTM9QGGMXVAR7Y.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows BYOL c5.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "WAWEH2Q4B3BTK68V" : { - "WAWEH2Q4B3BTK68V.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "WAWEH2Q4B3BTK68V", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "WAWEH2Q4B3BTK68V.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "WAWEH2Q4B3BTK68V.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.2 per On Demand Linux p2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.2000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5B3GT4NNY7ZCKUY7" : { - "5B3GT4NNY7ZCKUY7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5B3GT4NNY7ZCKUY7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5B3GT4NNY7ZCKUY7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5B3GT4NNY7ZCKUY7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$34.74 per On Demand Windows with SQL Web x1e.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "34.7400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "B6RS3QA3WVNWUFKM" : { - "B6RS3QA3WVNWUFKM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "B6RS3QA3WVNWUFKM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "B6RS3QA3WVNWUFKM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "B6RS3QA3WVNWUFKM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.886 per Dedicated Usage Windows with SQL Server Enterprise d2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.8860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PPNHZGKEWXG9QZV3" : { - "PPNHZGKEWXG9QZV3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PPNHZGKEWXG9QZV3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PPNHZGKEWXG9QZV3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PPNHZGKEWXG9QZV3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.271 per Dedicated Windows with SQL Web m4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7NHNWKWH69EZHFFD" : { - "7NHNWKWH69EZHFFD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7NHNWKWH69EZHFFD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7NHNWKWH69EZHFFD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7NHNWKWH69EZHFFD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.326 per On Demand RHEL m3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EZC8PDJ8658WHH9T" : { - "EZC8PDJ8658WHH9T.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EZC8PDJ8658WHH9T", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EZC8PDJ8658WHH9T.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EZC8PDJ8658WHH9T.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.471 per Dedicated Usage RHEL r4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "A3G83M36QWPVFFSP" : { - "A3G83M36QWPVFFSP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "A3G83M36QWPVFFSP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "A3G83M36QWPVFFSP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "A3G83M36QWPVFFSP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.075 per On Demand Windows m1.small Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GS7JMPJ9ZA8J6K6K" : { - "GS7JMPJ9ZA8J6K6K.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GS7JMPJ9ZA8J6K6K", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GS7JMPJ9ZA8J6K6K.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GS7JMPJ9ZA8J6K6K.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.385 per Dedicated Linux m1.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DM8QWYMUB3C3JJAR" : { - "DM8QWYMUB3C3JJAR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DM8QWYMUB3C3JJAR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DM8QWYMUB3C3JJAR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DM8QWYMUB3C3JJAR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL i2.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "T87WP8AU8KNBMRYM" : { - "T87WP8AU8KNBMRYM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "T87WP8AU8KNBMRYM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "T87WP8AU8KNBMRYM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "T87WP8AU8KNBMRYM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$5.073 per On Demand Windows with SQL Server Enterprise i2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.0730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "C6M58F98AZ4YZW7U" : { - "C6M58F98AZ4YZW7U.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "C6M58F98AZ4YZW7U", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "C6M58F98AZ4YZW7U.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "C6M58F98AZ4YZW7U.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.806 per Dedicated Usage Windows with SQL Server Enterprise c4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EW84HPN3QSBRVQGJ" : { - "EW84HPN3QSBRVQGJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EW84HPN3QSBRVQGJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EW84HPN3QSBRVQGJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EW84HPN3QSBRVQGJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Server Enterprise x1e.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DB68VE3TDETBPZZZ" : { - "DB68VE3TDETBPZZZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DB68VE3TDETBPZZZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DB68VE3TDETBPZZZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DB68VE3TDETBPZZZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std r4.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FUD3JZ9ZMGTAMQWY" : { - "FUD3JZ9ZMGTAMQWY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FUD3JZ9ZMGTAMQWY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FUD3JZ9ZMGTAMQWY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FUD3JZ9ZMGTAMQWY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.691 per On Demand SUSE c4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JV8XGJX4R2ZMWD28" : { - "JV8XGJX4R2ZMWD28.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JV8XGJX4R2ZMWD28", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JV8XGJX4R2ZMWD28.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JV8XGJX4R2ZMWD28.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.705 per Dedicated SQL Std i2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "U4ACUCANS9BM4R7H" : { - "U4ACUCANS9BM4R7H.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "U4ACUCANS9BM4R7H", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "U4ACUCANS9BM4R7H.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "U4ACUCANS9BM4R7H.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.008 per used Application load balancer capacity unit-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "LCU-Hrs", - "pricePerUnit" : { - "USD" : "0.0080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9E9PKC86XNNXZ5RW" : { - "9E9PKC86XNNXZ5RW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9E9PKC86XNNXZ5RW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9E9PKC86XNNXZ5RW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9E9PKC86XNNXZ5RW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$14.88 per Dedicated Windows with SQL Std r4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.8800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GT4TKK9K9AXX36E5" : { - "GT4TKK9K9AXX36E5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GT4TKK9K9AXX36E5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GT4TKK9K9AXX36E5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GT4TKK9K9AXX36E5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.179 per Dedicated Usage RHEL d2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3FV6G5BHBS5M6YUH" : { - "3FV6G5BHBS5M6YUH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3FV6G5BHBS5M6YUH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3FV6G5BHBS5M6YUH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3FV6G5BHBS5M6YUH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std m4.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TJ9229Z73AJSA43F" : { - "TJ9229Z73AJSA43F.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TJ9229Z73AJSA43F", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TJ9229Z73AJSA43F.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TJ9229Z73AJSA43F.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL c3.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RSKUKWVCVPG8AZB5" : { - "RSKUKWVCVPG8AZB5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RSKUKWVCVPG8AZB5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RSKUKWVCVPG8AZB5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RSKUKWVCVPG8AZB5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.759 per Dedicated Usage Linux d2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CZY4WZCSMEYRT6BS" : { - "CZY4WZCSMEYRT6BS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CZY4WZCSMEYRT6BS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CZY4WZCSMEYRT6BS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CZY4WZCSMEYRT6BS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Web x1e.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4AEAXDW4BC2SCXMG" : { - "4AEAXDW4BC2SCXMG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4AEAXDW4BC2SCXMG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4AEAXDW4BC2SCXMG.JRTCKXETXF.ETY2894C67" : { - "rateCode" : "4AEAXDW4BC2SCXMG.JRTCKXETXF.ETY2894C67", - "description" : "$0.00 per Elastic IP address remap - first 100 remaps / month", - "beginRange" : "0", - "endRange" : "100", - "unit" : "Count", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "4AEAXDW4BC2SCXMG.JRTCKXETXF.JBQRCS5NHT" : { - "rateCode" : "4AEAXDW4BC2SCXMG.JRTCKXETXF.JBQRCS5NHT", - "description" : "$0.10 per Elastic IP address remap - additional remap / month over 100", - "beginRange" : "100", - "endRange" : "Inf", - "unit" : "Count", - "pricePerUnit" : { - "USD" : "0.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SVKJPJ49D87Z4D8D" : { - "SVKJPJ49D87Z4D8D.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SVKJPJ49D87Z4D8D", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SVKJPJ49D87Z4D8D.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SVKJPJ49D87Z4D8D.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise m4.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PJY6CW7GDQYM5RHH" : { - "PJY6CW7GDQYM5RHH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PJY6CW7GDQYM5RHH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PJY6CW7GDQYM5RHH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PJY6CW7GDQYM5RHH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per GB - US East (Ohio) data transfer from US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RBN8F9Y5ZXEWGAXX" : { - "RBN8F9Y5ZXEWGAXX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RBN8F9Y5ZXEWGAXX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RBN8F9Y5ZXEWGAXX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RBN8F9Y5ZXEWGAXX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.087 per On Demand Windows BYOL m1.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "R48BU675BDZRSA46" : { - "R48BU675BDZRSA46.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "R48BU675BDZRSA46", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "R48BU675BDZRSA46.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "R48BU675BDZRSA46.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.237 per On Demand SQL Web m1.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HM82VKFH3K99HEA4" : { - "HM82VKFH3K99HEA4.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HM82VKFH3K99HEA4", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HM82VKFH3K99HEA4.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HM82VKFH3K99HEA4.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.728 per On Demand Windows with SQL Std i3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KCN6V5R2ZXCNYDBZ" : { - "KCN6V5R2ZXCNYDBZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KCN6V5R2ZXCNYDBZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KCN6V5R2ZXCNYDBZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KCN6V5R2ZXCNYDBZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.581 per Dedicated Windows with SQL Std x1e.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "22BY823JMH3UZ9AS" : { - "22BY823JMH3UZ9AS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "22BY823JMH3UZ9AS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "22BY823JMH3UZ9AS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "22BY823JMH3UZ9AS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.66 per On Demand RHEL c5.9xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9YKWHYHK8CJW6DNV" : { - "9YKWHYHK8CJW6DNV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9YKWHYHK8CJW6DNV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9YKWHYHK8CJW6DNV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9YKWHYHK8CJW6DNV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.02 per GB - US West (Northern California) data transfer to US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TRGMRGV2R47AP6CQ" : { - "TRGMRGV2R47AP6CQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TRGMRGV2R47AP6CQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TRGMRGV2R47AP6CQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TRGMRGV2R47AP6CQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0 for 1 Mbps per g3.4xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "95TPTPM37YTV8B2P" : { - "95TPTPM37YTV8B2P.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "95TPTPM37YTV8B2P", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "95TPTPM37YTV8B2P.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "95TPTPM37YTV8B2P.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows c4.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "X6X8ZCTUWB8NGENM" : { - "X6X8ZCTUWB8NGENM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "X6X8ZCTUWB8NGENM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "X6X8ZCTUWB8NGENM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "X6X8ZCTUWB8NGENM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Linux p3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "B77Q3B58P6KH3QKK" : { - "B77Q3B58P6KH3QKK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "B77Q3B58P6KH3QKK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "B77Q3B58P6KH3QKK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "B77Q3B58P6KH3QKK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Server Enterprise x1e.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ANHAK96GJ32FCXM9" : { - "ANHAK96GJ32FCXM9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ANHAK96GJ32FCXM9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ANHAK96GJ32FCXM9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ANHAK96GJ32FCXM9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.596 per On Demand SUSE i3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EVNBJQCCHQGV6XNB" : { - "EVNBJQCCHQGV6XNB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EVNBJQCCHQGV6XNB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EVNBJQCCHQGV6XNB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EVNBJQCCHQGV6XNB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1 per On Demand SUSE p2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Z3R6FENB6RXUUA7Z" : { - "Z3R6FENB6RXUUA7Z.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Z3R6FENB6RXUUA7Z", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Z3R6FENB6RXUUA7Z.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Z3R6FENB6RXUUA7Z.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.915 per Dedicated SUSE f1.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "73PG2QBG4QJ74BQG" : { - "73PG2QBG4QJ74BQG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "73PG2QBG4QJ74BQG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "73PG2QBG4QJ74BQG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "73PG2QBG4QJ74BQG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.017 per On Demand Windows with SQL Server Enterprise r3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VYJECTWWHZY57WXX" : { - "VYJECTWWHZY57WXX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VYJECTWWHZY57WXX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VYJECTWWHZY57WXX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VYJECTWWHZY57WXX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.070 per Dedicated Windows i2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XP36THJWHRJ7JUHM" : { - "XP36THJWHRJ7JUHM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XP36THJWHRJ7JUHM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XP36THJWHRJ7JUHM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XP36THJWHRJ7JUHM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.754 per On Demand RHEL i3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MSQ5AMG3XXYG534Q" : { - "MSQ5AMG3XXYG534Q.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MSQ5AMG3XXYG534Q", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MSQ5AMG3XXYG534Q.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MSQ5AMG3XXYG534Q.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 for 1 Gbps per p3.2xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TQYX838K5K3QH7KK" : { - "TQYX838K5K3QH7KK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TQYX838K5K3QH7KK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TQYX838K5K3QH7KK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TQYX838K5K3QH7KK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.131 per On Demand SQL Std c3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "U2FYDQN5UB6DJ9P6" : { - "U2FYDQN5UB6DJ9P6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "U2FYDQN5UB6DJ9P6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "U2FYDQN5UB6DJ9P6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "U2FYDQN5UB6DJ9P6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.172 per Dedicated Linux i3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PEEKBP32QZKKEGWF" : { - "PEEKBP32QZKKEGWF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PEEKBP32QZKKEGWF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PEEKBP32QZKKEGWF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PEEKBP32QZKKEGWF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$9.063 per On Demand Windows with SQL Web i3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.0630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DRXSTBE8SCECG53R" : { - "DRXSTBE8SCECG53R.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DRXSTBE8SCECG53R", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DRXSTBE8SCECG53R.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DRXSTBE8SCECG53R.JRTCKXETXF.6YS6EN2CT7", - "description" : "$25.302 per Dedicated Windows with SQL Std x1e.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "25.3020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "P3HMXPX59K45JP62" : { - "P3HMXPX59K45JP62.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "P3HMXPX59K45JP62", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "P3HMXPX59K45JP62.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "P3HMXPX59K45JP62.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.185 per On Demand SUSE c5.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "N7TBAPPYVJFAVWBC" : { - "N7TBAPPYVJFAVWBC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "N7TBAPPYVJFAVWBC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "N7TBAPPYVJFAVWBC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "N7TBAPPYVJFAVWBC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.133 per On Demand Windows BYOL r4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MAVGNUA5DQ5SM9C7" : { - "MAVGNUA5DQ5SM9C7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MAVGNUA5DQ5SM9C7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MAVGNUA5DQ5SM9C7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MAVGNUA5DQ5SM9C7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.366 per On Demand SUSE m3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "642BR46BHCZHCCZK" : { - "642BR46BHCZHCCZK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "642BR46BHCZHCCZK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "642BR46BHCZHCCZK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "642BR46BHCZHCCZK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.65 per On Demand Windows BYOL f1.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RX9PC8FR2YT42ZFG" : { - "RX9PC8FR2YT42ZFG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RX9PC8FR2YT42ZFG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RX9PC8FR2YT42ZFG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RX9PC8FR2YT42ZFG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std c4.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "H4TBXNHHCPZMWURK" : { - "H4TBXNHHCPZMWURK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "H4TBXNHHCPZMWURK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "H4TBXNHHCPZMWURK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "H4TBXNHHCPZMWURK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per GB - EU (Ireland) data transfer from US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "WTV2MMMZFYFVHXYW" : { - "WTV2MMMZFYFVHXYW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "WTV2MMMZFYFVHXYW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "WTV2MMMZFYFVHXYW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "WTV2MMMZFYFVHXYW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.054 per Dedicated Windows i3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VTRGBHUJVPMPXVJ5" : { - "VTRGBHUJVPMPXVJ5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VTRGBHUJVPMPXVJ5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VTRGBHUJVPMPXVJ5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VTRGBHUJVPMPXVJ5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$15.012 per Dedicated Windows with SQL Std c5.18xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.0120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FP4BCUYCYE74237A" : { - "FP4BCUYCYE74237A.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FP4BCUYCYE74237A", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FP4BCUYCYE74237A.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FP4BCUYCYE74237A.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.20 per On Demand Windows BYOL m4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8329EG456ZYK9UHU" : { - "8329EG456ZYK9UHU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8329EG456ZYK9UHU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8329EG456ZYK9UHU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8329EG456ZYK9UHU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$41.622 per Dedicated Windows with SQL Server Enterprise x1e.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "41.6220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SMK6B2NB8E64PZDV" : { - "SMK6B2NB8E64PZDV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SMK6B2NB8E64PZDV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SMK6B2NB8E64PZDV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SMK6B2NB8E64PZDV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL m3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CZEFYKJRS5KC69GA" : { - "CZEFYKJRS5KC69GA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CZEFYKJRS5KC69GA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CZEFYKJRS5KC69GA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CZEFYKJRS5KC69GA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$12.37 per On Demand RHEL p3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.3700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "A7J6GBKB42E7ZP99" : { - "A7J6GBKB42E7ZP99.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "A7J6GBKB42E7ZP99", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "A7J6GBKB42E7ZP99.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "A7J6GBKB42E7ZP99.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.8 per On Demand Windows with SQL Server Enterprise r4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.8000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VE3T3XPXTXR5FGJH" : { - "VE3T3XPXTXR5FGJH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VE3T3XPXTXR5FGJH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VE3T3XPXTXR5FGJH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VE3T3XPXTXR5FGJH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux r3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6SKVNRGYNDNJMWQA" : { - "6SKVNRGYNDNJMWQA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6SKVNRGYNDNJMWQA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6SKVNRGYNDNJMWQA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6SKVNRGYNDNJMWQA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows c3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DF8Q7FFWFQ7XFMWT" : { - "DF8Q7FFWFQ7XFMWT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DF8Q7FFWFQ7XFMWT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DF8Q7FFWFQ7XFMWT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DF8Q7FFWFQ7XFMWT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.894 per On Demand RHEL x1e.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "A83EBS2T67UP72G2" : { - "A83EBS2T67UP72G2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "A83EBS2T67UP72G2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "A83EBS2T67UP72G2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "A83EBS2T67UP72G2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.266 per On Demand Linux m3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DHYKJ8VFD83V8ETR" : { - "DHYKJ8VFD83V8ETR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DHYKJ8VFD83V8ETR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DHYKJ8VFD83V8ETR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DHYKJ8VFD83V8ETR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux r4.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "B7QBHF63SG76UXTS" : { - "B7QBHF63SG76UXTS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "B7QBHF63SG76UXTS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "B7QBHF63SG76UXTS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "B7QBHF63SG76UXTS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows BYOL i3.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EM3N7MRMRY4Z5BMR" : { - "EM3N7MRMRY4Z5BMR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EM3N7MRMRY4Z5BMR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EM3N7MRMRY4Z5BMR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EM3N7MRMRY4Z5BMR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$26.688 per Dedicated Windows BYOL x1e.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "26.6880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4RDK5GMP5336FHVU" : { - "4RDK5GMP5336FHVU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4RDK5GMP5336FHVU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4RDK5GMP5336FHVU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4RDK5GMP5336FHVU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.169 per Dedicated Windows with SQL Web x1e.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "E3GUDV3CG8QTVYVK" : { - "E3GUDV3CG8QTVYVK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "E3GUDV3CG8QTVYVK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "E3GUDV3CG8QTVYVK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "E3GUDV3CG8QTVYVK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.66 per Dedicated SUSE g3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.6600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "E39WJ4NFW33589ZS" : { - "E39WJ4NFW33589ZS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "E39WJ4NFW33589ZS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "E39WJ4NFW33589ZS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "E39WJ4NFW33589ZS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.86 per On Demand Windows with SQL Std r4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FEE2HQXAD6YH9EBE" : { - "FEE2HQXAD6YH9EBE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FEE2HQXAD6YH9EBE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FEE2HQXAD6YH9EBE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FEE2HQXAD6YH9EBE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.705 per On Demand Windows BYOL i2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "T5ZANFQ2RH352Q48" : { - "T5ZANFQ2RH352Q48.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "T5ZANFQ2RH352Q48", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "T5ZANFQ2RH352Q48.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "T5ZANFQ2RH352Q48.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise c3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DMG3Z3PAUFNBRWWT" : { - "DMG3Z3PAUFNBRWWT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DMG3Z3PAUFNBRWWT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DMG3Z3PAUFNBRWWT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DMG3Z3PAUFNBRWWT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.2 per On Demand SUSE c4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZUTU5QZ3PZY7BWCS" : { - "ZUTU5QZ3PZY7BWCS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZUTU5QZ3PZY7BWCS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZUTU5QZ3PZY7BWCS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZUTU5QZ3PZY7BWCS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$16.686 per On Demand Windows with SQL Server Enterprise c5.9xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.6860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BFQ697P5TXZG7V4S" : { - "BFQ697P5TXZG7V4S.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BFQ697P5TXZG7V4S", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BFQ697P5TXZG7V4S.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BFQ697P5TXZG7V4S.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.266 per On Demand Windows with SQL Std m3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HEF4JAUBGGF9GEHP" : { - "HEF4JAUBGGF9GEHP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HEF4JAUBGGF9GEHP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HEF4JAUBGGF9GEHP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HEF4JAUBGGF9GEHP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$5.62 per On Demand SUSE d2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.6200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GAU68ZZUP6T8UDTP" : { - "GAU68ZZUP6T8UDTP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GAU68ZZUP6T8UDTP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GAU68ZZUP6T8UDTP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GAU68ZZUP6T8UDTP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 for 1 Mbps per x1e.xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CZNF2F6CSUG2M7XY" : { - "CZNF2F6CSUG2M7XY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CZNF2F6CSUG2M7XY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CZNF2F6CSUG2M7XY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CZNF2F6CSUG2M7XY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.57 per Dedicated RHEL m4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BV77CKND4GMG6JUT" : { - "BV77CKND4GMG6JUT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BV77CKND4GMG6JUT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BV77CKND4GMG6JUT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BV77CKND4GMG6JUT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.074 per On Demand SUSE m1.small Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XYZXK8CJSF87RVWV" : { - "XYZXK8CJSF87RVWV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XYZXK8CJSF87RVWV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XYZXK8CJSF87RVWV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XYZXK8CJSF87RVWV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.380 per Dedicated Windows m2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PQXUZFT763CBBFXN" : { - "PQXUZFT763CBBFXN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PQXUZFT763CBBFXN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PQXUZFT763CBBFXN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PQXUZFT763CBBFXN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$17.344 per Dedicated Usage Windows p2.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "17.3440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8K8S8K92EHM2PHP6" : { - "8K8S8K92EHM2PHP6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8K8S8K92EHM2PHP6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8K8S8K92EHM2PHP6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8K8S8K92EHM2PHP6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.662 per On Demand RHEL r4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XUKM8UBN69JM7HAV" : { - "XUKM8UBN69JM7HAV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XUKM8UBN69JM7HAV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XUKM8UBN69JM7HAV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XUKM8UBN69JM7HAV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.1034 per On Demand Windows with SQL Web t2.small Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1034000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "B4JUK3U7ZG63RGSF" : { - "B4JUK3U7ZG63RGSF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "B4JUK3U7ZG63RGSF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "B4JUK3U7ZG63RGSF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "B4JUK3U7ZG63RGSF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.840 per On Demand Linux c3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "A5V9YQVUZMY5XA83" : { - "A5V9YQVUZMY5XA83.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "A5V9YQVUZMY5XA83", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "A5V9YQVUZMY5XA83.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "A5V9YQVUZMY5XA83.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.36 per Dedicated Linux c5.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4XKHFJVHSPER36XU" : { - "4XKHFJVHSPER36XU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4XKHFJVHSPER36XU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4XKHFJVHSPER36XU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4XKHFJVHSPER36XU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.293 per Dedicated Usage Linux r4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "K6TSS6QSQBWVHANR" : { - "K6TSS6QSQBWVHANR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "K6TSS6QSQBWVHANR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "K6TSS6QSQBWVHANR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "K6TSS6QSQBWVHANR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.632 per On Demand SUSE m3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RG525W32DHGJSVCS" : { - "RG525W32DHGJSVCS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RG525W32DHGJSVCS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RG525W32DHGJSVCS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RG525W32DHGJSVCS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.080 per On Demand SUSE m2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VYJYXGRA69WHNN6N" : { - "VYJYXGRA69WHNN6N.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VYJYXGRA69WHNN6N", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VYJYXGRA69WHNN6N.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VYJYXGRA69WHNN6N.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web d2.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FG8VFZ2BRHXVE3UE" : { - "FG8VFZ2BRHXVE3UE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FG8VFZ2BRHXVE3UE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FG8VFZ2BRHXVE3UE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FG8VFZ2BRHXVE3UE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows m3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7SE3X65CKC25URNP" : { - "7SE3X65CKC25URNP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7SE3X65CKC25URNP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7SE3X65CKC25URNP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7SE3X65CKC25URNP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.953 per Dedicated Usage Windows with SQL Server Enterprise m3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "P2X5CCNUGDNQVXV2" : { - "P2X5CCNUGDNQVXV2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "P2X5CCNUGDNQVXV2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "P2X5CCNUGDNQVXV2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "P2X5CCNUGDNQVXV2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.816 per On Demand SQL Std g2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XTPNAJDDCCQR3XRZ" : { - "XTPNAJDDCCQR3XRZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XTPNAJDDCCQR3XRZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XTPNAJDDCCQR3XRZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XTPNAJDDCCQR3XRZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.592 per Dedicated RHEL c3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "W2C299XDDHK5Q5HK" : { - "W2C299XDDHK5Q5HK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "W2C299XDDHK5Q5HK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "W2C299XDDHK5Q5HK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "W2C299XDDHK5Q5HK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$6.950 per Dedicated RHEL i2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.9500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VZB4MZEV7XEAF6US" : { - "VZB4MZEV7XEAF6US.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VZB4MZEV7XEAF6US", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VZB4MZEV7XEAF6US.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VZB4MZEV7XEAF6US.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.65 per On Demand Linux f1.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "P76K65KFZQNPR4CV" : { - "P76K65KFZQNPR4CV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "P76K65KFZQNPR4CV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "P76K65KFZQNPR4CV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "P76K65KFZQNPR4CV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL m4.10xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GSQJMJPK4SFYF63H" : { - "GSQJMJPK4SFYF63H.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GSQJMJPK4SFYF63H", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GSQJMJPK4SFYF63H.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GSQJMJPK4SFYF63H.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per GB - US East (Northern Virginia) data transfer from Asia Pacific (Sydney)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Q5KJSQ8D6YCWXG4R" : { - "Q5KJSQ8D6YCWXG4R.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Q5KJSQ8D6YCWXG4R", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Q5KJSQ8D6YCWXG4R.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Q5KJSQ8D6YCWXG4R.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.788 per On Demand Windows with SQL Server Enterprise c3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "J7QRRNJ6GRX8D5SH" : { - "J7QRRNJ6GRX8D5SH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "J7QRRNJ6GRX8D5SH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "J7QRRNJ6GRX8D5SH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "J7QRRNJ6GRX8D5SH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.393 per Dedicated Usage Windows with SQL Std m3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HWHBVKY9RQMK67F9" : { - "HWHBVKY9RQMK67F9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HWHBVKY9RQMK67F9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HWHBVKY9RQMK67F9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HWHBVKY9RQMK67F9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.13 per On Demand RHEL m4.10xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7VJXKNKUWTYUUJDQ" : { - "7VJXKNKUWTYUUJDQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7VJXKNKUWTYUUJDQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7VJXKNKUWTYUUJDQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7VJXKNKUWTYUUJDQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.984 per On Demand Windows i3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "33GEZXW546A5G39A" : { - "33GEZXW546A5G39A.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "33GEZXW546A5G39A", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "33GEZXW546A5G39A.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "33GEZXW546A5G39A.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux m4.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XFQT7FKTHK7R4MNC" : { - "XFQT7FKTHK7R4MNC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XFQT7FKTHK7R4MNC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XFQT7FKTHK7R4MNC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XFQT7FKTHK7R4MNC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE r4.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MV64DNBJGVHEPRZX" : { - "MV64DNBJGVHEPRZX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MV64DNBJGVHEPRZX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MV64DNBJGVHEPRZX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MV64DNBJGVHEPRZX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.082 per On Demand Windows with SQL Web r4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KDCQC5EHG2SRP6TU" : { - "KDCQC5EHG2SRP6TU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KDCQC5EHG2SRP6TU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KDCQC5EHG2SRP6TU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KDCQC5EHG2SRP6TU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.700 per On Demand SUSE hs1.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.7000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "U9S9CX6UESN4T4P2" : { - "U9S9CX6UESN4T4P2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "U9S9CX6UESN4T4P2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "U9S9CX6UESN4T4P2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "U9S9CX6UESN4T4P2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.05 per Dedicated Usage Windows with SQL Server Enterprise r3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EWR4DWGXX5YW4B4M" : { - "EWR4DWGXX5YW4B4M.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EWR4DWGXX5YW4B4M", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EWR4DWGXX5YW4B4M.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EWR4DWGXX5YW4B4M.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.752 per On Demand Windows g3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XX2TZABY6QFVXNY9" : { - "XX2TZABY6QFVXNY9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XX2TZABY6QFVXNY9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XX2TZABY6QFVXNY9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XX2TZABY6QFVXNY9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.599 per Dedicated RHEL m2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DVVFNW9ND93DVCKY" : { - "DVVFNW9ND93DVCKY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DVVFNW9ND93DVCKY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DVVFNW9ND93DVCKY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DVVFNW9ND93DVCKY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$26.928 per On Demand P3 Dedicated Host Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "26.9280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "X36E8MM7YF7JC38Y" : { - "X36E8MM7YF7JC38Y.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "X36E8MM7YF7JC38Y", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "X36E8MM7YF7JC38Y.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "X36E8MM7YF7JC38Y.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.41 per On Demand Windows BYOL i2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6WKTRGBBJD2C2RZE" : { - "6WKTRGBBJD2C2RZE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6WKTRGBBJD2C2RZE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6WKTRGBBJD2C2RZE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6WKTRGBBJD2C2RZE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.232 per Dedicated RHEL i3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZPUJSMGMEEHDRCWG" : { - "ZPUJSMGMEEHDRCWG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZPUJSMGMEEHDRCWG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZPUJSMGMEEHDRCWG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZPUJSMGMEEHDRCWG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.230 per Dedicated RHEL cg1.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ABJ9HJ6JXJ4MY26U" : { - "ABJ9HJ6JXJ4MY26U.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ABJ9HJ6JXJ4MY26U", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ABJ9HJ6JXJ4MY26U.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ABJ9HJ6JXJ4MY26U.JRTCKXETXF.6YS6EN2CT7", - "description" : "$8.109 per Dedicated Windows with SQL Server Enterprise i3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.1090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YHTMJU9RK3XB4R35" : { - "YHTMJU9RK3XB4R35.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YHTMJU9RK3XB4R35", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YHTMJU9RK3XB4R35.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YHTMJU9RK3XB4R35.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.09 per Dedicated Usage SUSE p2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2R3TZFKRGVGPMMC9" : { - "2R3TZFKRGVGPMMC9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2R3TZFKRGVGPMMC9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2R3TZFKRGVGPMMC9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2R3TZFKRGVGPMMC9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.359 per Dedicated SUSE p3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7NEQ4VTJKJUPEVYG" : { - "7NEQ4VTJKJUPEVYG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7NEQ4VTJKJUPEVYG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7NEQ4VTJKJUPEVYG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7NEQ4VTJKJUPEVYG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.348 per On Demand SUSE i3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "87Z6QV469BMNJV52" : { - "87Z6QV469BMNJV52.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "87Z6QV469BMNJV52", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "87Z6QV469BMNJV52.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "87Z6QV469BMNJV52.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Linux p3.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "35AEEWH98DECPC35" : { - "35AEEWH98DECPC35.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "35AEEWH98DECPC35", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "35AEEWH98DECPC35.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "35AEEWH98DECPC35.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.17 per On Demand Linux c5.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3X6C8WE2N2TR8BTN" : { - "3X6C8WE2N2TR8BTN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3X6C8WE2N2TR8BTN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3X6C8WE2N2TR8BTN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3X6C8WE2N2TR8BTN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL m4.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "K5J5FMBSS7S88WMV" : { - "K5J5FMBSS7S88WMV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "K5J5FMBSS7S88WMV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "K5J5FMBSS7S88WMV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "K5J5FMBSS7S88WMV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE c4.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Q9SS9CE4RXPCX5KG" : { - "Q9SS9CE4RXPCX5KG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Q9SS9CE4RXPCX5KG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Q9SS9CE4RXPCX5KG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Q9SS9CE4RXPCX5KG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.312 per On Demand Linux i3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BNQSZ9699GKWMJ72" : { - "BNQSZ9699GKWMJ72.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BNQSZ9699GKWMJ72", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BNQSZ9699GKWMJ72.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BNQSZ9699GKWMJ72.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.53 per Dedicated Usage Windows with SQL Std c4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DMEAKMC95469FYDS" : { - "DMEAKMC95469FYDS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DMEAKMC95469FYDS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DMEAKMC95469FYDS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DMEAKMC95469FYDS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.984 per On Demand Windows with SQL Server Enterprise i3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.9840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "82EETVJ33AH6DNH9" : { - "82EETVJ33AH6DNH9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "82EETVJ33AH6DNH9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "82EETVJ33AH6DNH9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "82EETVJ33AH6DNH9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.591 per Dedicated Usage Windows BYOL c4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6U2SB7CVRVWJEX22" : { - "6U2SB7CVRVWJEX22.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6U2SB7CVRVWJEX22", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6U2SB7CVRVWJEX22.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6U2SB7CVRVWJEX22.JRTCKXETXF.6YS6EN2CT7", - "description" : "$13.468 per Dedicated Usage RHEL x1.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.4680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EXEUENAPGQHAQGBS" : { - "EXEUENAPGQHAQGBS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EXEUENAPGQHAQGBS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EXEUENAPGQHAQGBS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EXEUENAPGQHAQGBS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.438 per Dedicated Usage Windows BYOL c4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HW5URJGXS94RYC7N" : { - "HW5URJGXS94RYC7N.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HW5URJGXS94RYC7N", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HW5URJGXS94RYC7N.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HW5URJGXS94RYC7N.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL r4.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5SZ449G4YHET8NEX" : { - "5SZ449G4YHET8NEX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5SZ449G4YHET8NEX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5SZ449G4YHET8NEX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5SZ449G4YHET8NEX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux m3.medium Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7G6ZVMHDU3FVW9D5" : { - "7G6ZVMHDU3FVW9D5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7G6ZVMHDU3FVW9D5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7G6ZVMHDU3FVW9D5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7G6ZVMHDU3FVW9D5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$10.072 per On Demand Windows with SQL Server Enterprise x1e.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.0720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZVZ4NWBV3CDP2G5H" : { - "ZVZ4NWBV3CDP2G5H.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZVZ4NWBV3CDP2G5H", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZVZ4NWBV3CDP2G5H.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZVZ4NWBV3CDP2G5H.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE m3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "D87JMYVFZXKJD58A" : { - "D87JMYVFZXKJD58A.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "D87JMYVFZXKJD58A", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "D87JMYVFZXKJD58A.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "D87JMYVFZXKJD58A.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.370 per Dedicated SUSE m2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XP5P8NMSB2W7KP3U" : { - "XP5P8NMSB2W7KP3U.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XP5P8NMSB2W7KP3U", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XP5P8NMSB2W7KP3U.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XP5P8NMSB2W7KP3U.JRTCKXETXF.6YS6EN2CT7", - "description" : "$5.52 per On Demand Linux d2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.5200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MJH659788VC2CJYV" : { - "MJH659788VC2CJYV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MJH659788VC2CJYV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MJH659788VC2CJYV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MJH659788VC2CJYV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web c4.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SMTQRSCDV7BY873H" : { - "SMTQRSCDV7BY873H.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SMTQRSCDV7BY873H", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SMTQRSCDV7BY873H.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SMTQRSCDV7BY873H.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.63 per On Demand SUSE c5.9xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "24XN5CF83RWVHY65" : { - "24XN5CF83RWVHY65.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "24XN5CF83RWVHY65", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "24XN5CF83RWVHY65.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "24XN5CF83RWVHY65.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.51 per On Demand Windows with SQL Std c4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HD5FKWRF3Y3UA5CY" : { - "HD5FKWRF3Y3UA5CY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HD5FKWRF3Y3UA5CY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HD5FKWRF3Y3UA5CY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HD5FKWRF3Y3UA5CY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.692 per Dedicated SQL Std m1.small Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "S6WMG2PUJJT43MCU" : { - "S6WMG2PUJJT43MCU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "S6WMG2PUJJT43MCU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "S6WMG2PUJJT43MCU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "S6WMG2PUJJT43MCU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.336 per Dedicated Usage Linux x1.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "J4UDT5BERQ92MHNK" : { - "J4UDT5BERQ92MHNK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "J4UDT5BERQ92MHNK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "J4UDT5BERQ92MHNK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "J4UDT5BERQ92MHNK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.864 per Dedicated Windows with SQL Web c5.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7FR6FMY2UUXQ9MPG" : { - "7FR6FMY2UUXQ9MPG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7FR6FMY2UUXQ9MPG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7FR6FMY2UUXQ9MPG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7FR6FMY2UUXQ9MPG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.49 per On Demand Windows BYOL m2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZBTSPT6YGG5E39RC" : { - "ZBTSPT6YGG5E39RC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZBTSPT6YGG5E39RC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZBTSPT6YGG5E39RC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZBTSPT6YGG5E39RC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.199 per On Demand Windows BYOL c4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "38HK7GA2PMZ3QFP2" : { - "38HK7GA2PMZ3QFP2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "38HK7GA2PMZ3QFP2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "38HK7GA2PMZ3QFP2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "38HK7GA2PMZ3QFP2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.366 per Dedicated Usage Windows BYOL r3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "S35ZU4TJVUPNKG6U" : { - "S35ZU4TJVUPNKG6U.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "S35ZU4TJVUPNKG6U", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "S35ZU4TJVUPNKG6U.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "S35ZU4TJVUPNKG6U.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.798 per On Demand RHEL x1e.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZVFV8KSWQPNVNYCW" : { - "ZVFV8KSWQPNVNYCW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZVFV8KSWQPNVNYCW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZVFV8KSWQPNVNYCW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZVFV8KSWQPNVNYCW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.206 per Dedicated Usage RHEL r4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "J3WUTF2TJ45F4344" : { - "J3WUTF2TJ45F4344.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "J3WUTF2TJ45F4344", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "J3WUTF2TJ45F4344.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "J3WUTF2TJ45F4344.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 for 14 Gbps per p3.16xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "D987U4EZH8SKPPQC" : { - "D987U4EZH8SKPPQC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "D987U4EZH8SKPPQC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "D987U4EZH8SKPPQC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "D987U4EZH8SKPPQC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.139 per On Demand SQL Web m1.small Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5QKUPV9RQN5Z98G7" : { - "5QKUPV9RQN5Z98G7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5QKUPV9RQN5Z98G7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5QKUPV9RQN5Z98G7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5QKUPV9RQN5Z98G7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise i2.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CEUJNVH6ZRW9Z3QW" : { - "CEUJNVH6ZRW9Z3QW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CEUJNVH6ZRW9Z3QW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CEUJNVH6ZRW9Z3QW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CEUJNVH6ZRW9Z3QW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Std c5.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "F6DTZSV5HTJ5SARF" : { - "F6DTZSV5HTJ5SARF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "F6DTZSV5HTJ5SARF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "F6DTZSV5HTJ5SARF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "F6DTZSV5HTJ5SARF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$5.538 per On Demand Windows with SQL Std c4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.5380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9G23QA9CK3NU3BRY" : { - "9G23QA9CK3NU3BRY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9G23QA9CK3NU3BRY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9G23QA9CK3NU3BRY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9G23QA9CK3NU3BRY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.591 per On Demand Linux c4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4QXRNM4XXHKD5KJH" : { - "4QXRNM4XXHKD5KJH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4QXRNM4XXHKD5KJH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4QXRNM4XXHKD5KJH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4QXRNM4XXHKD5KJH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.319 per On Demand Windows with SQL Web i3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UZHN722C5BU8DZ5W" : { - "UZHN722C5BU8DZ5W.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UZHN722C5BU8DZ5W", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UZHN722C5BU8DZ5W.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UZHN722C5BU8DZ5W.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.782 per On Demand Windows i2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.7820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DZHU5BKVVZXEHEYR" : { - "DZHU5BKVVZXEHEYR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DZHU5BKVVZXEHEYR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DZHU5BKVVZXEHEYR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DZHU5BKVVZXEHEYR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per GB - US East (Northern Virginia) data transfer from Asia Pacific (Singapore)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5USKDBRWNSU8R9RB" : { - "5USKDBRWNSU8R9RB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5USKDBRWNSU8R9RB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5USKDBRWNSU8R9RB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5USKDBRWNSU8R9RB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.532 per On Demand Windows BYOL m3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RQBBRPV8FS6G4KCZ" : { - "RQBBRPV8FS6G4KCZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RQBBRPV8FS6G4KCZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RQBBRPV8FS6G4KCZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RQBBRPV8FS6G4KCZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$29.357 per On Demand X1E Dedicated Host Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "29.3570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BJMX7R52F3VNFNEH" : { - "BJMX7R52F3VNFNEH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BJMX7R52F3VNFNEH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BJMX7R52F3VNFNEH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BJMX7R52F3VNFNEH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.0225 per Application LoadBalancer-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0225000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "F2K784WPSCB8RMWH" : { - "F2K784WPSCB8RMWH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "F2K784WPSCB8RMWH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "F2K784WPSCB8RMWH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "F2K784WPSCB8RMWH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows c3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XAJSBBR3F4CX756Z" : { - "XAJSBBR3F4CX756Z.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XAJSBBR3F4CX756Z", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XAJSBBR3F4CX756Z.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XAJSBBR3F4CX756Z.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per GB - EU (Germany) data transfer from US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CPC4739JBDJJ92RZ" : { - "CPC4739JBDJJ92RZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CPC4739JBDJJ92RZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CPC4739JBDJJ92RZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CPC4739JBDJJ92RZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux c3.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XFRVV8VCBT6YSWP9" : { - "XFRVV8VCBT6YSWP9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XFRVV8VCBT6YSWP9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XFRVV8VCBT6YSWP9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XFRVV8VCBT6YSWP9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows BYOL x1e.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "W84NR989M57Y5DZJ" : { - "W84NR989M57Y5DZJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "W84NR989M57Y5DZJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "W84NR989M57Y5DZJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "W84NR989M57Y5DZJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.443 per Dedicated SUSE i3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3YGFZFTB4F7JS7UX" : { - "3YGFZFTB4F7JS7UX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3YGFZFTB4F7JS7UX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3YGFZFTB4F7JS7UX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3YGFZFTB4F7JS7UX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.909 per On Demand Windows with SQL Web m4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9MSTVHD5FNUTQ99C" : { - "9MSTVHD5FNUTQ99C.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9MSTVHD5FNUTQ99C", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9MSTVHD5FNUTQ99C.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9MSTVHD5FNUTQ99C.JRTCKXETXF.6YS6EN2CT7", - "description" : "$14.508 per Dedicated Windows p3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.5080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5ESJGGVJ9BWYXAY9" : { - "5ESJGGVJ9BWYXAY9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5ESJGGVJ9BWYXAY9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5ESJGGVJ9BWYXAY9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5ESJGGVJ9BWYXAY9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.57 per Dedicated Usage Windows m3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "H6T3SYB5G6QCVMZM" : { - "H6T3SYB5G6QCVMZM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "H6T3SYB5G6QCVMZM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "H6T3SYB5G6QCVMZM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "H6T3SYB5G6QCVMZM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.680 per On Demand Linux c3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QUKA5FNRVVKN5422" : { - "QUKA5FNRVVKN5422.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QUKA5FNRVVKN5422", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QUKA5FNRVVKN5422.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QUKA5FNRVVKN5422.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.15 per Dedicated RHEL c5.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "C8282STGWSCNVJCC" : { - "C8282STGWSCNVJCC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "C8282STGWSCNVJCC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "C8282STGWSCNVJCC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "C8282STGWSCNVJCC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows c3.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YCB5ZDAPFSHHX97B" : { - "YCB5ZDAPFSHHX97B.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YCB5ZDAPFSHHX97B", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YCB5ZDAPFSHHX97B.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YCB5ZDAPFSHHX97B.JRTCKXETXF.6YS6EN2CT7", - "description" : "$9.613 per On Demand Windows x1.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.6130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4EZQG8BYPRTVKHRZ" : { - "4EZQG8BYPRTVKHRZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4EZQG8BYPRTVKHRZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4EZQG8BYPRTVKHRZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4EZQG8BYPRTVKHRZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL r4.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8744TF3WB3SSENYH" : { - "8744TF3WB3SSENYH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8744TF3WB3SSENYH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8744TF3WB3SSENYH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8744TF3WB3SSENYH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.091 per On Demand Windows c4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "REEFNGM3CZ2DRRN8" : { - "REEFNGM3CZ2DRRN8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "REEFNGM3CZ2DRRN8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "REEFNGM3CZ2DRRN8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "REEFNGM3CZ2DRRN8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.176 per Dedicated RHEL c3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "R4XHKDDZUJXABU4Z" : { - "R4XHKDDZUJXABU4Z.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "R4XHKDDZUJXABU4Z", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "R4XHKDDZUJXABU4Z.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "R4XHKDDZUJXABU4Z.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.192 per On Demand Windows c4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GXUGSHFHQFHUTQMM" : { - "GXUGSHFHQFHUTQMM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GXUGSHFHQFHUTQMM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GXUGSHFHQFHUTQMM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GXUGSHFHQFHUTQMM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.343 per Dedicated Linux i3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "N5J4FCEYTCJTEMNE" : { - "N5J4FCEYTCJTEMNE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "N5J4FCEYTCJTEMNE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "N5J4FCEYTCJTEMNE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "N5J4FCEYTCJTEMNE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.278 per Dedicated Windows c5.9xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "H338WENZAK73BM3E" : { - "H338WENZAK73BM3E.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "H338WENZAK73BM3E", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "H338WENZAK73BM3E.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "H338WENZAK73BM3E.JRTCKXETXF.6YS6EN2CT7", - "description" : "$15.152 per Dedicated Usage Windows with SQL Server Enterprise c3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.1520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BJKH3VYGVEEXSNAH" : { - "BJKH3VYGVEEXSNAH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BJKH3VYGVEEXSNAH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BJKH3VYGVEEXSNAH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BJKH3VYGVEEXSNAH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per GB - US East (Northern Virginia) data transfer from Asia Pacific (Tokyo)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UFNYR85GSNMJPAWG" : { - "UFNYR85GSNMJPAWG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UFNYR85GSNMJPAWG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UFNYR85GSNMJPAWG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UFNYR85GSNMJPAWG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.657 per On Demand Windows with SQL Std c5.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6767SWNDDU2CUUEJ" : { - "6767SWNDDU2CUUEJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6767SWNDDU2CUUEJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6767SWNDDU2CUUEJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6767SWNDDU2CUUEJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$8.811 per Dedicated Windows x1e.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.8110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "K2PF4AX5RJMVHBC9" : { - "K2PF4AX5RJMVHBC9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "K2PF4AX5RJMVHBC9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "K2PF4AX5RJMVHBC9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "K2PF4AX5RJMVHBC9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per SUSE x1e.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5EYCR4NNAWN9DZT3" : { - "5EYCR4NNAWN9DZT3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5EYCR4NNAWN9DZT3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5EYCR4NNAWN9DZT3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5EYCR4NNAWN9DZT3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.230 per On Demand SUSE c1.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VKZY87EJ294KXKWY" : { - "VKZY87EJ294KXKWY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VKZY87EJ294KXKWY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VKZY87EJ294KXKWY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VKZY87EJ294KXKWY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$8.672 per On Demand Windows p2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.6720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XES86TS9BX33Y86Y" : { - "XES86TS9BX33Y86Y.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XES86TS9BX33Y86Y", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XES86TS9BX33Y86Y.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XES86TS9BX33Y86Y.JRTCKXETXF.6YS6EN2CT7", - "description" : "$24.48 per On Demand Linux p3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "24.4800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UY23MW6DPAKU4KJ9" : { - "UY23MW6DPAKU4KJ9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UY23MW6DPAKU4KJ9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UY23MW6DPAKU4KJ9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UY23MW6DPAKU4KJ9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.4332 per On Demand Windows t2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4332000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PFVG5HVRU3HK5C4R" : { - "PFVG5HVRU3HK5C4R.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PFVG5HVRU3HK5C4R", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PFVG5HVRU3HK5C4R.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PFVG5HVRU3HK5C4R.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.21 per Dedicated Usage SUSE c4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YP22M5YTQ23BWN3Z" : { - "YP22M5YTQ23BWN3Z.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YP22M5YTQ23BWN3Z", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YP22M5YTQ23BWN3Z.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YP22M5YTQ23BWN3Z.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows x1e.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "APSTJRGAT44DWEJ8" : { - "APSTJRGAT44DWEJ8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "APSTJRGAT44DWEJ8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "APSTJRGAT44DWEJ8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "APSTJRGAT44DWEJ8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE c4.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4NP4X68DAN26TTQZ" : { - "4NP4X68DAN26TTQZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4NP4X68DAN26TTQZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4NP4X68DAN26TTQZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4NP4X68DAN26TTQZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.025 for 500 Mbps per m3.xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4U7JAK7UHS4DSAR8" : { - "4U7JAK7UHS4DSAR8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4U7JAK7UHS4DSAR8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4U7JAK7UHS4DSAR8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4U7JAK7UHS4DSAR8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.194 per On Demand RHEL r4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5JB8CSWXY6V42ECR" : { - "5JB8CSWXY6V42ECR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5JB8CSWXY6V42ECR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5JB8CSWXY6V42ECR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5JB8CSWXY6V42ECR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$6.669 per On Demand Windows BYOL x1.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.6690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TB4MYGC7MSS5DCKM" : { - "TB4MYGC7MSS5DCKM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TB4MYGC7MSS5DCKM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TB4MYGC7MSS5DCKM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TB4MYGC7MSS5DCKM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.768 per On Demand Windows m4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CB7SJGDA74NZ9PCE" : { - "CB7SJGDA74NZ9PCE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CB7SJGDA74NZ9PCE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CB7SJGDA74NZ9PCE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CB7SJGDA74NZ9PCE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows x1e.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8NKXTZ2DTZ67NZ5M" : { - "8NKXTZ2DTZ67NZ5M.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8NKXTZ2DTZ67NZ5M", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8NKXTZ2DTZ67NZ5M.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8NKXTZ2DTZ67NZ5M.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web r3.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VEYRGRFZB8WFUBH3" : { - "VEYRGRFZB8WFUBH3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VEYRGRFZB8WFUBH3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VEYRGRFZB8WFUBH3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VEYRGRFZB8WFUBH3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.851 per Dedicated RHEL c5.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RBTTMD5AP4CP4TEB" : { - "RBTTMD5AP4CP4TEB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RBTTMD5AP4CP4TEB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RBTTMD5AP4CP4TEB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RBTTMD5AP4CP4TEB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.748 per On Demand Windows with SQL Server Enterprise d2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.7480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JN3KK3Y79A6JZJNG" : { - "JN3KK3Y79A6JZJNG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JN3KK3Y79A6JZJNG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JN3KK3Y79A6JZJNG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JN3KK3Y79A6JZJNG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.216 per Dedicated SUSE c3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GBSWCG32FV9G4PVY" : { - "GBSWCG32FV9G4PVY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GBSWCG32FV9G4PVY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GBSWCG32FV9G4PVY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GBSWCG32FV9G4PVY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.01 per GB - US East (Northern Virginia) data transfer to US East (Ohio)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "58HUPRT96M5H8VUW" : { - "58HUPRT96M5H8VUW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "58HUPRT96M5H8VUW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "58HUPRT96M5H8VUW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "58HUPRT96M5H8VUW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.9 per On Demand Linux p2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "F7H92E3N3TN52552" : { - "F7H92E3N3TN52552.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "F7H92E3N3TN52552", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "F7H92E3N3TN52552.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "F7H92E3N3TN52552.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.0644 per On Demand Windows t2.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0644000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FUPZEHMJB57T55W6" : { - "FUPZEHMJB57T55W6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FUPZEHMJB57T55W6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FUPZEHMJB57T55W6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FUPZEHMJB57T55W6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.47 per On Demand RHEL c5.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QNZG4DHQSZ82BDNJ" : { - "QNZG4DHQSZ82BDNJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QNZG4DHQSZ82BDNJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QNZG4DHQSZ82BDNJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QNZG4DHQSZ82BDNJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.10 per On Demand SUSE m4.10xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "436TQXUY62HKEC4V" : { - "436TQXUY62HKEC4V.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "436TQXUY62HKEC4V", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "436TQXUY62HKEC4V.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "436TQXUY62HKEC4V.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per RHEL p3.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XVUGSEGTBYPTMD8N" : { - "XVUGSEGTBYPTMD8N.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XVUGSEGTBYPTMD8N", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XVUGSEGTBYPTMD8N.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XVUGSEGTBYPTMD8N.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std m3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EKUJM8CMFGA8AN48" : { - "EKUJM8CMFGA8AN48.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EKUJM8CMFGA8AN48", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EKUJM8CMFGA8AN48.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EKUJM8CMFGA8AN48.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.416 per On Demand Windows with SQL Server Enterprise c5.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BVM3C8VUB3CUM3XK" : { - "BVM3C8VUB3CUM3XK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BVM3C8VUB3CUM3XK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BVM3C8VUB3CUM3XK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BVM3C8VUB3CUM3XK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 for 775 Mbps per c5.xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2HFR6K6Q9KU8Q5YK" : { - "2HFR6K6Q9KU8Q5YK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2HFR6K6Q9KU8Q5YK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2HFR6K6Q9KU8Q5YK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2HFR6K6Q9KU8Q5YK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.296 per On Demand Windows with SQL Web r4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UHM8B3D5UY4TJ8DU" : { - "UHM8B3D5UY4TJ8DU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UHM8B3D5UY4TJ8DU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UHM8B3D5UY4TJ8DU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UHM8B3D5UY4TJ8DU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.953 per Dedicated Usage Windows with SQL Server Enterprise r4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UYBNK9BE67UCKSSW" : { - "UYBNK9BE67UCKSSW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UYBNK9BE67UCKSSW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UYBNK9BE67UCKSSW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UYBNK9BE67UCKSSW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL c4.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3SK2R9VZ8N24UV8B" : { - "3SK2R9VZ8N24UV8B.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3SK2R9VZ8N24UV8B", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3SK2R9VZ8N24UV8B.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3SK2R9VZ8N24UV8B.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.163 per Dedicated Windows with SQL Std x1e.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UBAX9CMEYA8JJEHX" : { - "UBAX9CMEYA8JJEHX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UBAX9CMEYA8JJEHX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UBAX9CMEYA8JJEHX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UBAX9CMEYA8JJEHX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.680 per Dedicated Windows BYOL c3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UKZHD7X8AUPRMNQ7" : { - "UKZHD7X8AUPRMNQ7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UKZHD7X8AUPRMNQ7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UKZHD7X8AUPRMNQ7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UKZHD7X8AUPRMNQ7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL c3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YGPA59CYGTE7GDPD" : { - "YGPA59CYGTE7GDPD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YGPA59CYGTE7GDPD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YGPA59CYGTE7GDPD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YGPA59CYGTE7GDPD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$26.788 per Dedicated SUSE x1e.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "26.7880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5KPSXJYCB44KZMV5" : { - "5KPSXJYCB44KZMV5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5KPSXJYCB44KZMV5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5KPSXJYCB44KZMV5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5KPSXJYCB44KZMV5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std r4.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "WH9T6569SRYX7MN9" : { - "WH9T6569SRYX7MN9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "WH9T6569SRYX7MN9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "WH9T6569SRYX7MN9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "WH9T6569SRYX7MN9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std r3.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "U29KTD6EKFTKBK6T" : { - "U29KTD6EKFTKBK6T.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "U29KTD6EKFTKBK6T", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "U29KTD6EKFTKBK6T.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "U29KTD6EKFTKBK6T.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.612 per Dedicated Usage Windows c4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NXP3TET93CDDJX8W" : { - "NXP3TET93CDDJX8W.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NXP3TET93CDDJX8W", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NXP3TET93CDDJX8W.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NXP3TET93CDDJX8W.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std d2.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6VXGKV62HT3PPGUM" : { - "6VXGKV62HT3PPGUM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6VXGKV62HT3PPGUM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6VXGKV62HT3PPGUM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6VXGKV62HT3PPGUM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows i2.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EBRWZVHDHP2KJAMQ" : { - "EBRWZVHDHP2KJAMQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EBRWZVHDHP2KJAMQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EBRWZVHDHP2KJAMQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EBRWZVHDHP2KJAMQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.336 per On Demand Linux x1e.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YGU2QZY8VPP94FSR" : { - "YGU2QZY8VPP94FSR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YGU2QZY8VPP94FSR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YGU2QZY8VPP94FSR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YGU2QZY8VPP94FSR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.133 per On Demand Linux m3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RKEGB47DHY7WYBKQ" : { - "RKEGB47DHY7WYBKQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RKEGB47DHY7WYBKQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RKEGB47DHY7WYBKQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RKEGB47DHY7WYBKQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.976 per Dedicated SUSE i2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "P3G8DU7HDSFEWNGN" : { - "P3G8DU7HDSFEWNGN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "P3G8DU7HDSFEWNGN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "P3G8DU7HDSFEWNGN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "P3G8DU7HDSFEWNGN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL i2.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZXQF4FMZPFD962D7" : { - "ZXQF4FMZPFD962D7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZXQF4FMZPFD962D7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZXQF4FMZPFD962D7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZXQF4FMZPFD962D7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.133 per On Demand Windows BYOL m3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QPKCG2B2XC9C53GT" : { - "QPKCG2B2XC9C53GT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QPKCG2B2XC9C53GT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QPKCG2B2XC9C53GT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QPKCG2B2XC9C53GT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.668 per On Demand Windows with SQL Std c5.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "P4S7RSCXQEBBBKQF" : { - "P4S7RSCXQEBBBKQF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "P4S7RSCXQEBBBKQF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "P4S7RSCXQEBBBKQF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "P4S7RSCXQEBBBKQF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.1464 per On Demand SUSE t2.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1464000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "M62BQXUWYDM97G4U" : { - "M62BQXUWYDM97G4U.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "M62BQXUWYDM97G4U", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "M62BQXUWYDM97G4U.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "M62BQXUWYDM97G4U.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.906 per Dedicated Usage Windows with SQL Server Enterprise r4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.9060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "P6GWCP7NZJR2VSTT" : { - "P6GWCP7NZJR2VSTT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "P6GWCP7NZJR2VSTT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "P6GWCP7NZJR2VSTT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "P6GWCP7NZJR2VSTT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.243 per Dedicated SUSE c1.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QCXEYVM3Y3JDE2QA" : { - "QCXEYVM3Y3JDE2QA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QCXEYVM3Y3JDE2QA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QCXEYVM3Y3JDE2QA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QCXEYVM3Y3JDE2QA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.091 per Dedicated Usage Windows c4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "W3ZH5EZCGFR6XWEV" : { - "W3ZH5EZCGFR6XWEV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "W3ZH5EZCGFR6XWEV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "W3ZH5EZCGFR6XWEV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "W3ZH5EZCGFR6XWEV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise m4.10xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "25A2HQUGG7F7ZU2J" : { - "25A2HQUGG7F7ZU2J.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "25A2HQUGG7F7ZU2J", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "25A2HQUGG7F7ZU2J.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "25A2HQUGG7F7ZU2J.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.917 per Dedicated Windows BYOL x1e.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "639ZEB9D49ASFB26" : { - "639ZEB9D49ASFB26.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "639ZEB9D49ASFB26", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "639ZEB9D49ASFB26.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "639ZEB9D49ASFB26.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.020 per On Demand Linux t1.micro Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KD8DVSJPFVSX354N" : { - "KD8DVSJPFVSX354N.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KD8DVSJPFVSX354N", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KD8DVSJPFVSX354N.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KD8DVSJPFVSX354N.JRTCKXETXF.6YS6EN2CT7", - "description" : "$11.984 per On Demand Windows with SQL Std x1e.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "11.9840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "39748UVFEUKY3MVQ" : { - "39748UVFEUKY3MVQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "39748UVFEUKY3MVQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "39748UVFEUKY3MVQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "39748UVFEUKY3MVQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.398 per On Demand Linux c4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9XSMT4DCCR64C6B8" : { - "9XSMT4DCCR64C6B8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9XSMT4DCCR64C6B8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9XSMT4DCCR64C6B8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9XSMT4DCCR64C6B8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Std x1e.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "USG92YSEYUCAFZCC" : { - "USG92YSEYUCAFZCC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "USG92YSEYUCAFZCC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "USG92YSEYUCAFZCC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "USG92YSEYUCAFZCC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL r4.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7AF3HUR3SD2EN693" : { - "7AF3HUR3SD2EN693.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7AF3HUR3SD2EN693", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7AF3HUR3SD2EN693.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7AF3HUR3SD2EN693.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web m4.10xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MDKVAJXMJGZFDJUE" : { - "MDKVAJXMJGZFDJUE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MDKVAJXMJGZFDJUE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MDKVAJXMJGZFDJUE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MDKVAJXMJGZFDJUE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.11 per Dedicated Usage Linux c4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "X4PYRTAZG2VJ5RJV" : { - "X4PYRTAZG2VJ5RJV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "X4PYRTAZG2VJ5RJV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "X4PYRTAZG2VJ5RJV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "X4PYRTAZG2VJ5RJV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.019 per On Demand Windows with SQL Std c4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "M7JDPTTFT6JUZ92Q" : { - "M7JDPTTFT6JUZ92Q.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "M7JDPTTFT6JUZ92Q", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "M7JDPTTFT6JUZ92Q.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "M7JDPTTFT6JUZ92Q.JRTCKXETXF.6YS6EN2CT7", - "description" : "$13.20 per On Demand F1 Dedicated Host Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.2000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2WG3ZVDRBDM6AXDY" : { - "2WG3ZVDRBDM6AXDY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2WG3ZVDRBDM6AXDY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2WG3ZVDRBDM6AXDY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2WG3ZVDRBDM6AXDY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.238 per Dedicated Usage Windows r4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "N3VSW4S7495SMAMS" : { - "N3VSW4S7495SMAMS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "N3VSW4S7495SMAMS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "N3VSW4S7495SMAMS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "N3VSW4S7495SMAMS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.84 per Dedicated Windows m4.10xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2WSBC7H546ERPK5X" : { - "2WSBC7H546ERPK5X.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2WSBC7H546ERPK5X", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2WSBC7H546ERPK5X.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2WSBC7H546ERPK5X.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.821 per Dedicated SUSE c5.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "C6RPVDY76QHZ9VB5" : { - "C6RPVDY76QHZ9VB5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "C6RPVDY76QHZ9VB5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "C6RPVDY76QHZ9VB5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "C6RPVDY76QHZ9VB5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.600 per Dedicated Windows BYOL hs1.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.6000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TB8JSDKA7MEGTRXV" : { - "TB8JSDKA7MEGTRXV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TB8JSDKA7MEGTRXV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TB8JSDKA7MEGTRXV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TB8JSDKA7MEGTRXV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.11 per Dedicated Linux m4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CSCB3RCZY9UUMWAN" : { - "CSCB3RCZY9UUMWAN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CSCB3RCZY9UUMWAN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CSCB3RCZY9UUMWAN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CSCB3RCZY9UUMWAN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Linux x1e.32xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "C3J6CAXEXRG66B2Y" : { - "C3J6CAXEXRG66B2Y.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "C3J6CAXEXRG66B2Y", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "C3J6CAXEXRG66B2Y.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "C3J6CAXEXRG66B2Y.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per GB - US West (Northern California) data transfer from US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RZRGZV8C4EBA9RFW" : { - "RZRGZV8C4EBA9RFW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RZRGZV8C4EBA9RFW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RZRGZV8C4EBA9RFW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RZRGZV8C4EBA9RFW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$8.327 per On Demand Windows with SQL Web r4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.3270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "WMP332VHSC4A9Z25" : { - "WMP332VHSC4A9Z25.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "WMP332VHSC4A9Z25", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "WMP332VHSC4A9Z25.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "WMP332VHSC4A9Z25.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.3712 per On Demand Windows BYOL t2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3712000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KT8ZEPCC5TRJCUKH" : { - "KT8ZEPCC5TRJCUKH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KT8ZEPCC5TRJCUKH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KT8ZEPCC5TRJCUKH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KT8ZEPCC5TRJCUKH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.728 per On Demand Windows with SQL Std m4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5ZCS4GNXFBKC3TU6" : { - "5ZCS4GNXFBKC3TU6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5ZCS4GNXFBKC3TU6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5ZCS4GNXFBKC3TU6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5ZCS4GNXFBKC3TU6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.786 per Dedicated SUSE i3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6XRAZB77YRS54YH2" : { - "6XRAZB77YRS54YH2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6XRAZB77YRS54YH2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6XRAZB77YRS54YH2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6XRAZB77YRS54YH2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.127 per On Demand RHEL m3.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8A423BKQGUQM2JT7" : { - "8A423BKQGUQM2JT7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8A423BKQGUQM2JT7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8A423BKQGUQM2JT7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8A423BKQGUQM2JT7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 for 1 Mbps per x1e.4xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KJ3MH4B6WKTQZE2W" : { - "KJ3MH4B6WKTQZE2W.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KJ3MH4B6WKTQZE2W", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KJ3MH4B6WKTQZE2W.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KJ3MH4B6WKTQZE2W.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Std x1e.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "K86YRT3FMXX5Q76Y" : { - "K86YRT3FMXX5Q76Y.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "K86YRT3FMXX5Q76Y", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "K86YRT3FMXX5Q76Y.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "K86YRT3FMXX5Q76Y.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.67 per Dedicated Linux x1e.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CHDYF9BYGFSAHSRK" : { - "CHDYF9BYGFSAHSRK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CHDYF9BYGFSAHSRK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CHDYF9BYGFSAHSRK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CHDYF9BYGFSAHSRK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.027 per Dedicated Windows with SQL Server Enterprise i3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TK4PD8NGZPE9EAZ3" : { - "TK4PD8NGZPE9EAZ3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TK4PD8NGZPE9EAZ3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TK4PD8NGZPE9EAZ3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TK4PD8NGZPE9EAZ3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.16 per GB - South America (Sao Paulo) data transfer to US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.1600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EQAYX5BGG5UU7TKF" : { - "EQAYX5BGG5UU7TKF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EQAYX5BGG5UU7TKF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EQAYX5BGG5UU7TKF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EQAYX5BGG5UU7TKF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web m3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DMR9Q6F9N9PFPE9C" : { - "DMR9Q6F9N9PFPE9C.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DMR9Q6F9N9PFPE9C", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DMR9Q6F9N9PFPE9C.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DMR9Q6F9N9PFPE9C.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.917 per Dedicated Linux x1e.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZQKQM4BJPUBCMDXD" : { - "ZQKQM4BJPUBCMDXD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZQKQM4BJPUBCMDXD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZQKQM4BJPUBCMDXD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZQKQM4BJPUBCMDXD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.730 per On Demand RHEL hs1.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.7300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "V2PCSTGVBXJBKMTJ" : { - "V2PCSTGVBXJBKMTJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "V2PCSTGVBXJBKMTJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "V2PCSTGVBXJBKMTJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "V2PCSTGVBXJBKMTJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$16.218 per Dedicated Windows with SQL Server Enterprise i3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.2180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Y9MW2V2ZRXFQMQHU" : { - "Y9MW2V2ZRXFQMQHU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Y9MW2V2ZRXFQMQHU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Y9MW2V2ZRXFQMQHU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Y9MW2V2ZRXFQMQHU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.164 per Dedicated Windows m1.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YSQ44UEJR3KC9UZ6" : { - "YSQ44UEJR3KC9UZ6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YSQ44UEJR3KC9UZ6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YSQ44UEJR3KC9UZ6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YSQ44UEJR3KC9UZ6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.583 per On Demand Windows r3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UMZX79C7JU2QYP8B" : { - "UMZX79C7JU2QYP8B.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UMZX79C7JU2QYP8B", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UMZX79C7JU2QYP8B.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UMZX79C7JU2QYP8B.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per SUSE x1e.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "99NCMXTASQBWBS5F" : { - "99NCMXTASQBWBS5F.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "99NCMXTASQBWBS5F", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "99NCMXTASQBWBS5F.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "99NCMXTASQBWBS5F.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std c4.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "H4R547VQJ55ZDDZ2" : { - "H4R547VQJ55ZDDZ2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "H4R547VQJ55ZDDZ2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "H4R547VQJ55ZDDZ2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "H4R547VQJ55ZDDZ2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.455 per On Demand Windows with SQL Web m4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GTXYRWSN8RXE5ZBA" : { - "GTXYRWSN8RXE5ZBA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GTXYRWSN8RXE5ZBA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GTXYRWSN8RXE5ZBA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GTXYRWSN8RXE5ZBA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$6.092 per Dedicated Usage Windows with SQL Std c4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.0920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JJR4TQHH8JY9D8BV" : { - "JJR4TQHH8JY9D8BV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JJR4TQHH8JY9D8BV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JJR4TQHH8JY9D8BV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JJR4TQHH8JY9D8BV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Server Enterprise i3.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2CPTVQN6QMQ24WAQ" : { - "2CPTVQN6QMQ24WAQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2CPTVQN6QMQ24WAQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2CPTVQN6QMQ24WAQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2CPTVQN6QMQ24WAQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows r4.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DXZA4TZJFG2BW52U" : { - "DXZA4TZJFG2BW52U.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DXZA4TZJFG2BW52U", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DXZA4TZJFG2BW52U.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DXZA4TZJFG2BW52U.JRTCKXETXF.6YS6EN2CT7", - "description" : "$14.778 per Dedicated SUSE x1e.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.7780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QWBZPDE9BGTPCYWW" : { - "QWBZPDE9BGTPCYWW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QWBZPDE9BGTPCYWW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QWBZPDE9BGTPCYWW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QWBZPDE9BGTPCYWW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.572 per Dedicated Linux c1.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8PWP644R45F4VKQ9" : { - "8PWP644R45F4VKQ9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8PWP644R45F4VKQ9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8PWP644R45F4VKQ9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8PWP644R45F4VKQ9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$19.226 per On Demand Windows x1.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "19.2260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "U7343ZA6ABZUXFZ9" : { - "U7343ZA6ABZUXFZ9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "U7343ZA6ABZUXFZ9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "U7343ZA6ABZUXFZ9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "U7343ZA6ABZUXFZ9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.69 per On Demand Linux d2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "WWPUYMRPHK6Y3WER" : { - "WWPUYMRPHK6Y3WER.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "WWPUYMRPHK6Y3WER", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "WWPUYMRPHK6Y3WER.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "WWPUYMRPHK6Y3WER.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise m4.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GCU5MTJSYT27M7JU" : { - "GCU5MTJSYT27M7JU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GCU5MTJSYT27M7JU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GCU5MTJSYT27M7JU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GCU5MTJSYT27M7JU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.450 per On Demand SUSE m1.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GC47ACDRS3ATDYYA" : { - "GC47ACDRS3ATDYYA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GC47ACDRS3ATDYYA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GC47ACDRS3ATDYYA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GC47ACDRS3ATDYYA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Server Enterprise x1e.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "42VGMPF8Y5PJ76X3" : { - "42VGMPF8Y5PJ76X3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "42VGMPF8Y5PJ76X3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "42VGMPF8Y5PJ76X3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "42VGMPF8Y5PJ76X3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.367 per On Demand Windows with SQL Web m3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NT2P2VJM9AFTGQGE" : { - "NT2P2VJM9AFTGQGE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NT2P2VJM9AFTGQGE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NT2P2VJM9AFTGQGE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NT2P2VJM9AFTGQGE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.500 per Dedicated Windows BYOL cr1.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "63U4EHGD76K6MYA6" : { - "63U4EHGD76K6MYA6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "63U4EHGD76K6MYA6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "63U4EHGD76K6MYA6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "63U4EHGD76K6MYA6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.086 per On Demand Windows with SQL Web x1e.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "K8NM7HNBAX7T4N5U" : { - "K8NM7HNBAX7T4N5U.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "K8NM7HNBAX7T4N5U", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "K8NM7HNBAX7T4N5U.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "K8NM7HNBAX7T4N5U.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.691 per Dedicated Usage SUSE c4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "P47VRQMUV2K4MN5Z" : { - "P47VRQMUV2K4MN5Z.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "P47VRQMUV2K4MN5Z", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "P47VRQMUV2K4MN5Z.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "P47VRQMUV2K4MN5Z.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.682 per Dedicated Windows with SQL Std m4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SKMRUUXXN2WKPFZ8" : { - "SKMRUUXXN2WKPFZ8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SKMRUUXXN2WKPFZ8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SKMRUUXXN2WKPFZ8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SKMRUUXXN2WKPFZ8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per RHEL i3.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BNBFMJCU6HWE4NK6" : { - "BNBFMJCU6HWE4NK6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BNBFMJCU6HWE4NK6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BNBFMJCU6HWE4NK6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BNBFMJCU6HWE4NK6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 for 2250 Mbps per c5.4xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "X4DNEZ99CC6GXAKU" : { - "X4DNEZ99CC6GXAKU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "X4DNEZ99CC6GXAKU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "X4DNEZ99CC6GXAKU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "X4DNEZ99CC6GXAKU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.366 per Dedicated Usage Linux r3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YC7GJ8CDWFPWMK89" : { - "YC7GJ8CDWFPWMK89.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YC7GJ8CDWFPWMK89", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YC7GJ8CDWFPWMK89.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YC7GJ8CDWFPWMK89.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux m4.10xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "K9GNYJBAEBJGBE3S" : { - "K9GNYJBAEBJGBE3S.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "K9GNYJBAEBJGBE3S", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "K9GNYJBAEBJGBE3S.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "K9GNYJBAEBJGBE3S.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.248 per On Demand Windows i3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6GASB9Z3J6ZHWKU5" : { - "6GASB9Z3J6ZHWKU5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6GASB9Z3J6ZHWKU5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6GASB9Z3J6ZHWKU5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6GASB9Z3J6ZHWKU5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.831 per On Demand Windows cr1.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "32R9UMHRGUNFK9EM" : { - "32R9UMHRGUNFK9EM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "32R9UMHRGUNFK9EM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "32R9UMHRGUNFK9EM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "32R9UMHRGUNFK9EM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.433 per On Demand SUSE r3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NS9APTDFJ7SPEAAV" : { - "NS9APTDFJ7SPEAAV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NS9APTDFJ7SPEAAV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NS9APTDFJ7SPEAAV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NS9APTDFJ7SPEAAV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.05 for 1000 Mbps per m3.2xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6N5AHFKQR9A49BXT" : { - "6N5AHFKQR9A49BXT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6N5AHFKQR9A49BXT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6N5AHFKQR9A49BXT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6N5AHFKQR9A49BXT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$20.672 per On Demand Windows with SQL Server Enterprise p2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "20.6720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4EHZWPPGG7Y9CC73" : { - "4EHZWPPGG7Y9CC73.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4EHZWPPGG7Y9CC73", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4EHZWPPGG7Y9CC73.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4EHZWPPGG7Y9CC73.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE c3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6NCC4FFQSR3WFGZZ" : { - "6NCC4FFQSR3WFGZZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6NCC4FFQSR3WFGZZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6NCC4FFQSR3WFGZZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6NCC4FFQSR3WFGZZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.096 per Dedicated Windows BYOL m1.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YD7GPEVXPWVDFDJ7" : { - "YD7GPEVXPWVDFDJ7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YD7GPEVXPWVDFDJ7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YD7GPEVXPWVDFDJ7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YD7GPEVXPWVDFDJ7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.761 per Dedicated Usage Windows d2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "S7XYZXB5D99A9Y8M" : { - "S7XYZXB5D99A9Y8M.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "S7XYZXB5D99A9Y8M", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "S7XYZXB5D99A9Y8M.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "S7XYZXB5D99A9Y8M.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.876 per Dedicated Usage Linux c4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YDP6AWC4ZPX5AANZ" : { - "YDP6AWC4ZPX5AANZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YDP6AWC4ZPX5AANZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YDP6AWC4ZPX5AANZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YDP6AWC4ZPX5AANZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.48 per On Demand SUSE d2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "S8J79EPAU2WP28Z5" : { - "S8J79EPAU2WP28Z5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "S8J79EPAU2WP28Z5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "S8J79EPAU2WP28Z5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "S8J79EPAU2WP28Z5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.744 per On Demand SQL Std m1.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YBUQUQQV5SHSS34G" : { - "YBUQUQQV5SHSS34G.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YBUQUQQV5SHSS34G", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YBUQUQQV5SHSS34G.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YBUQUQQV5SHSS34G.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per SUSE c5.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SDXF3BRYZZTH5K7Q" : { - "SDXF3BRYZZTH5K7Q.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SDXF3BRYZZTH5K7Q", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SDXF3BRYZZTH5K7Q.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SDXF3BRYZZTH5K7Q.JRTCKXETXF.6YS6EN2CT7", - "description" : "$47.936 per Dedicated Windows with SQL Std x1e.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "47.9360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EFFHYDTSJGNSYAVJ" : { - "EFFHYDTSJGNSYAVJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EFFHYDTSJGNSYAVJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EFFHYDTSJGNSYAVJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EFFHYDTSJGNSYAVJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE m3.medium Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZXVGNAHUW5AY3DYX" : { - "ZXVGNAHUW5AY3DYX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZXVGNAHUW5AY3DYX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZXVGNAHUW5AY3DYX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZXVGNAHUW5AY3DYX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.160 per On Demand SQL Web c1.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VECSNYXG6RJ6YNH2" : { - "VECSNYXG6RJ6YNH2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VECSNYXG6RJ6YNH2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VECSNYXG6RJ6YNH2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VECSNYXG6RJ6YNH2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.184 per On Demand Windows with SQL Web m3.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "C8WRJP4N7N5CN6HS" : { - "C8WRJP4N7N5CN6HS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "C8WRJP4N7N5CN6HS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "C8WRJP4N7N5CN6HS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "C8WRJP4N7N5CN6HS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.435 per On Demand SQL Web m1.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5YBKCYT5H6J77KYT" : { - "5YBKCYT5H6J77KYT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5YBKCYT5H6J77KYT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5YBKCYT5H6J77KYT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5YBKCYT5H6J77KYT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.830 per On Demand SQL Web m1.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "H9ZN7EUEHC2S7YH5" : { - "H9ZN7EUEHC2S7YH5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "H9ZN7EUEHC2S7YH5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "H9ZN7EUEHC2S7YH5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "H9ZN7EUEHC2S7YH5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.34 per On Demand Linux c5.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AA7ZX8UEQ6R54FN8" : { - "AA7ZX8UEQ6R54FN8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AA7ZX8UEQ6R54FN8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AA7ZX8UEQ6R54FN8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AA7ZX8UEQ6R54FN8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.438 per Dedicated Usage Linux c4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "D2UN9TFKVYBF6AUM" : { - "D2UN9TFKVYBF6AUM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "D2UN9TFKVYBF6AUM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "D2UN9TFKVYBF6AUM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "D2UN9TFKVYBF6AUM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.75 per On Demand SUSE f1.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FTHQYJFCP3DPSYCY" : { - "FTHQYJFCP3DPSYCY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FTHQYJFCP3DPSYCY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FTHQYJFCP3DPSYCY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FTHQYJFCP3DPSYCY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.01 per Dedicated RHEL m4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4QN7HTACSM3CFNUX" : { - "4QN7HTACSM3CFNUX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4QN7HTACSM3CFNUX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4QN7HTACSM3CFNUX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4QN7HTACSM3CFNUX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.9 per On Demand Windows BYOL p2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZJXKCMNRMSTSZTE8" : { - "ZJXKCMNRMSTSZTE8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZJXKCMNRMSTSZTE8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZJXKCMNRMSTSZTE8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZJXKCMNRMSTSZTE8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.386 per On Demand RHEL r4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.3860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4BJYGSAQ24CQWAT9" : { - "4BJYGSAQ24CQWAT9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4BJYGSAQ24CQWAT9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4BJYGSAQ24CQWAT9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4BJYGSAQ24CQWAT9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL m4.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "N8CRYUBTUE378VHJ" : { - "N8CRYUBTUE378VHJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "N8CRYUBTUE378VHJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "N8CRYUBTUE378VHJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "N8CRYUBTUE378VHJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.734 per On Demand Windows with SQL Web m3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DJEXMYSZ7CJSUDPF" : { - "DJEXMYSZ7CJSUDPF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DJEXMYSZ7CJSUDPF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DJEXMYSZ7CJSUDPF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DJEXMYSZ7CJSUDPF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.0116 per On Demand Windows BYOL t2.micro Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0116000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "N6734AQ5CQHVEMES" : { - "N6734AQ5CQHVEMES.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "N6734AQ5CQHVEMES", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "N6734AQ5CQHVEMES.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "N6734AQ5CQHVEMES.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.796 per On Demand Windows BYOL c4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "D7U963P5YEKVSRHT" : { - "D7U963P5YEKVSRHT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "D7U963P5YEKVSRHT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "D7U963P5YEKVSRHT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "D7U963P5YEKVSRHT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise m4.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QEK6WMVB3Q3SRE4E" : { - "QEK6WMVB3Q3SRE4E.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QEK6WMVB3Q3SRE4E", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QEK6WMVB3Q3SRE4E.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QEK6WMVB3Q3SRE4E.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Server Enterprise i3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZEJBXPHEDWRE3FE8" : { - "ZEJBXPHEDWRE3FE8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZEJBXPHEDWRE3FE8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZEJBXPHEDWRE3FE8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZEJBXPHEDWRE3FE8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows i3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PQ44QRGZYQ87XPN2" : { - "PQ44QRGZYQ87XPN2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PQ44QRGZYQ87XPN2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PQ44QRGZYQ87XPN2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PQ44QRGZYQ87XPN2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.0225 per Network LoadBalancer-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0225000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TKSBGRRFANCGSQGJ" : { - "TKSBGRRFANCGSQGJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TKSBGRRFANCGSQGJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TKSBGRRFANCGSQGJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TKSBGRRFANCGSQGJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2 per On Demand Windows BYOL cc2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VV3ASRE8RPAY7C9U" : { - "VV3ASRE8RPAY7C9U.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VV3ASRE8RPAY7C9U", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VV3ASRE8RPAY7C9U.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VV3ASRE8RPAY7C9U.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.05 per 1 million I/O requests - US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "IOs", - "pricePerUnit" : { - "USD" : "0.0000000500" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8D82FZE3BZCS4SXV" : { - "8D82FZE3BZCS4SXV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8D82FZE3BZCS4SXV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8D82FZE3BZCS4SXV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8D82FZE3BZCS4SXV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per SUSE i3.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "WMZMV9VFMDY39S43" : { - "WMZMV9VFMDY39S43.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "WMZMV9VFMDY39S43", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "WMZMV9VFMDY39S43.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "WMZMV9VFMDY39S43.JRTCKXETXF.6YS6EN2CT7", - "description" : "$17.344 per On Demand Windows p2.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "17.3440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4Q997J8DQYG2634Z" : { - "4Q997J8DQYG2634Z.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4Q997J8DQYG2634Z", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4Q997J8DQYG2634Z.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4Q997J8DQYG2634Z.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.274 per Dedicated SQL Std m2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "35JBFVAK8WGVGG7U" : { - "35JBFVAK8WGVGG7U.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "35JBFVAK8WGVGG7U", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "35JBFVAK8WGVGG7U.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "35JBFVAK8WGVGG7U.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per RHEL x1e.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8X7RVDXN67YREJTH" : { - "8X7RVDXN67YREJTH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8X7RVDXN67YREJTH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8X7RVDXN67YREJTH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8X7RVDXN67YREJTH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.18 per Dedicated Linux c5.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CMNW6M9D7DPHUTDD" : { - "CMNW6M9D7DPHUTDD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CMNW6M9D7DPHUTDD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CMNW6M9D7DPHUTDD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CMNW6M9D7DPHUTDD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.632 per On Demand SUSE r4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YT5JTCAUXT587YW7" : { - "YT5JTCAUXT587YW7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YT5JTCAUXT587YW7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YT5JTCAUXT587YW7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YT5JTCAUXT587YW7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.212 per Dedicated Usage RHEL m3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XSCV3UUT79TB83MN" : { - "XSCV3UUT79TB83MN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XSCV3UUT79TB83MN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XSCV3UUT79TB83MN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XSCV3UUT79TB83MN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows i2.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "H7NN7P9Z3E8KY8UD" : { - "H7NN7P9Z3E8KY8UD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "H7NN7P9Z3E8KY8UD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "H7NN7P9Z3E8KY8UD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "H7NN7P9Z3E8KY8UD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per SUSE c5.18xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7GGEQ9QF87XSSGPH" : { - "7GGEQ9QF87XSSGPH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7GGEQ9QF87XSSGPH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7GGEQ9QF87XSSGPH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7GGEQ9QF87XSSGPH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.331 per Dedicated SUSE c3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RCQDAE4337AGCJV8" : { - "RCQDAE4337AGCJV8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RCQDAE4337AGCJV8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RCQDAE4337AGCJV8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RCQDAE4337AGCJV8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.3 per On Demand SUSE p2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2CJFZEAKYQD4ZCJU" : { - "2CJFZEAKYQD4ZCJU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2CJFZEAKYQD4ZCJU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2CJFZEAKYQD4ZCJU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2CJFZEAKYQD4ZCJU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.149 per On Demand Windows m1.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XNUKM2T6VT564KF3" : { - "XNUKM2T6VT564KF3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XNUKM2T6VT564KF3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XNUKM2T6VT564KF3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XNUKM2T6VT564KF3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per SUSE c5.9xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "D6N7KTJH42VTNPFJ" : { - "D6N7KTJH42VTNPFJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "D6N7KTJH42VTNPFJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "D6N7KTJH42VTNPFJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "D6N7KTJH42VTNPFJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.590 per On Demand SUSE m2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "J89JWM6V2G7N25FR" : { - "J89JWM6V2G7N25FR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "J89JWM6V2G7N25FR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "J89JWM6V2G7N25FR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "J89JWM6V2G7N25FR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux c4.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "86FEVXHAJVJ75D5R" : { - "86FEVXHAJVJ75D5R.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "86FEVXHAJVJ75D5R", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "86FEVXHAJVJ75D5R.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "86FEVXHAJVJ75D5R.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.766 per On Demand Windows c4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "M9RJASMMSC92RM2J" : { - "M9RJASMMSC92RM2J.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "M9RJASMMSC92RM2J", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "M9RJASMMSC92RM2J.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "M9RJASMMSC92RM2J.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.146 per Dedicated Usage Windows BYOL m3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "B9MF6CH342MVWQRW" : { - "B9MF6CH342MVWQRW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "B9MF6CH342MVWQRW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "B9MF6CH342MVWQRW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "B9MF6CH342MVWQRW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL c3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "U55BDVR9QF3VHRGZ" : { - "U55BDVR9QF3VHRGZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "U55BDVR9QF3VHRGZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "U55BDVR9QF3VHRGZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "U55BDVR9QF3VHRGZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.380 per On Demand Windows m2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JH77489982R9B75M" : { - "JH77489982R9B75M.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JH77489982R9B75M", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JH77489982R9B75M.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JH77489982R9B75M.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.20 per Dedicated Linux m4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ECGX6UUV4NV7ZXGQ" : { - "ECGX6UUV4NV7ZXGQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ECGX6UUV4NV7ZXGQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ECGX6UUV4NV7ZXGQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ECGX6UUV4NV7ZXGQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL d2.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "R86DSK536TMRVK4T" : { - "R86DSK536TMRVK4T.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "R86DSK536TMRVK4T", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "R86DSK536TMRVK4T.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "R86DSK536TMRVK4T.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.570 per Dedicated Windows cc2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QP7VG66RCTU7M632" : { - "QP7VG66RCTU7M632.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QP7VG66RCTU7M632", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QP7VG66RCTU7M632.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QP7VG66RCTU7M632.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.104 per On Demand RHEL m1.small Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UW7KAEYR4CZ6SHKM" : { - "UW7KAEYR4CZ6SHKM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UW7KAEYR4CZ6SHKM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UW7KAEYR4CZ6SHKM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UW7KAEYR4CZ6SHKM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per GB - Asia Pacific (Tokyo) data transfer from US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "T3YPSF6NJ69JWWNM" : { - "T3YPSF6NJ69JWWNM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "T3YPSF6NJ69JWWNM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "T3YPSF6NJ69JWWNM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "T3YPSF6NJ69JWWNM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.025 per LoadBalancer-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6CNJHBFSUT74HD2K" : { - "6CNJHBFSUT74HD2K.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6CNJHBFSUT74HD2K", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6CNJHBFSUT74HD2K.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6CNJHBFSUT74HD2K.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.006 per used Network load balancer capacity unit-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "LCU-Hrs", - "pricePerUnit" : { - "USD" : "0.0060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SU7X27GC72VJG45S" : { - "SU7X27GC72VJG45S.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SU7X27GC72VJG45S", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SU7X27GC72VJG45S.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SU7X27GC72VJG45S.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.203 per Dedicated Windows x1e.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3KAFWJNHJ6VKA77T" : { - "3KAFWJNHJ6VKA77T.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3KAFWJNHJ6VKA77T", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3KAFWJNHJ6VKA77T.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3KAFWJNHJ6VKA77T.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.44 per Dedicated Linux m4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VN8JS6C4CHVEY8WD" : { - "VN8JS6C4CHVEY8WD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VN8JS6C4CHVEY8WD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VN8JS6C4CHVEY8WD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VN8JS6C4CHVEY8WD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.10 for 2000 Mbps per i2.4xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FFWF55NY7SRTUYUX" : { - "FFWF55NY7SRTUYUX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FFWF55NY7SRTUYUX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FFWF55NY7SRTUYUX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FFWF55NY7SRTUYUX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.810 per On Demand RHEL c3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "T9EWKN7MGMP23VG7" : { - "T9EWKN7MGMP23VG7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "T9EWKN7MGMP23VG7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "T9EWKN7MGMP23VG7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "T9EWKN7MGMP23VG7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per RHEL f1.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EDJPFY8K3AW2AD23" : { - "EDJPFY8K3AW2AD23.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EDJPFY8K3AW2AD23", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EDJPFY8K3AW2AD23.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EDJPFY8K3AW2AD23.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.02 per GB - US East (Northern Virginia) data transfer to Asia Pacific (Tokyo)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6SNHPAN3YKSWBAJB" : { - "6SNHPAN3YKSWBAJB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6SNHPAN3YKSWBAJB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6SNHPAN3YKSWBAJB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6SNHPAN3YKSWBAJB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.9 per On Demand Windows r4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6VG367TBGT66TM4N" : { - "6VG367TBGT66TM4N.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6VG367TBGT66TM4N", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6VG367TBGT66TM4N.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6VG367TBGT66TM4N.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.2856 per On Demand SUSE t2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2856000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CYF7KMJTP6KF6443" : { - "CYF7KMJTP6KF6443.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CYF7KMJTP6KF6443", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CYF7KMJTP6KF6443.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CYF7KMJTP6KF6443.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.06 per On Demand Windows BYOL p3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TBC4ECWPWM5TJCUA" : { - "TBC4ECWPWM5TJCUA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TBC4ECWPWM5TJCUA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TBC4ECWPWM5TJCUA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TBC4ECWPWM5TJCUA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.44 per On Demand SUSE c5.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5C78VXN9F5U4WPSN" : { - "5C78VXN9F5U4WPSN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5C78VXN9F5U4WPSN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5C78VXN9F5U4WPSN.JRTCKXETXF.8EEUB22XNJ" : { - "rateCode" : "5C78VXN9F5U4WPSN.JRTCKXETXF.8EEUB22XNJ", - "description" : "$0.00 per Elastic IP address not attached to a running instance for the first hour", - "beginRange" : "0", - "endRange" : "1", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "5C78VXN9F5U4WPSN.JRTCKXETXF.JTU8TKNAMW" : { - "rateCode" : "5C78VXN9F5U4WPSN.JRTCKXETXF.JTU8TKNAMW", - "description" : "$0.005 per Elastic IP address not attached to a running instance per hour (prorated)", - "beginRange" : "1", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "332WCJF3R5J2RH67" : { - "332WCJF3R5J2RH67.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "332WCJF3R5J2RH67", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "332WCJF3R5J2RH67.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "332WCJF3R5J2RH67.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web r3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "H4SWC23NZ6GQ2RR9" : { - "H4SWC23NZ6GQ2RR9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "H4SWC23NZ6GQ2RR9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "H4SWC23NZ6GQ2RR9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "H4SWC23NZ6GQ2RR9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.396 per On Demand RHEL r4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EM4WENQDQTCE6CHN" : { - "EM4WENQDQTCE6CHN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EM4WENQDQTCE6CHN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EM4WENQDQTCE6CHN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EM4WENQDQTCE6CHN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.881 per Dedicated RHEL i2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ER3NUVD4WF36NZTQ" : { - "ER3NUVD4WF36NZTQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ER3NUVD4WF36NZTQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ER3NUVD4WF36NZTQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ER3NUVD4WF36NZTQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.65 per On Demand Windows BYOL g2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NJ6JSD62VJ72A8GJ" : { - "NJ6JSD62VJ72A8GJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NJ6JSD62VJ72A8GJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NJ6JSD62VJ72A8GJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NJ6JSD62VJ72A8GJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web m3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "47S8UCB86MXKYKKM" : { - "47S8UCB86MXKYKKM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "47S8UCB86MXKYKKM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "47S8UCB86MXKYKKM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "47S8UCB86MXKYKKM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web r4.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "N7DSK6NF5W734PPK" : { - "N7DSK6NF5W734PPK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "N7DSK6NF5W734PPK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "N7DSK6NF5W734PPK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "N7DSK6NF5W734PPK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per RHEL x1e.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BN987XH7R93S9FFN" : { - "BN987XH7R93S9FFN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BN987XH7R93S9FFN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BN987XH7R93S9FFN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BN987XH7R93S9FFN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.844 per Dedicated Windows g2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DBDH9RXEHD3FBJTR" : { - "DBDH9RXEHD3FBJTR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DBDH9RXEHD3FBJTR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DBDH9RXEHD3FBJTR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DBDH9RXEHD3FBJTR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.56 per Dedicated Windows BYOL g3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MCVQU48QPHRDXMRT" : { - "MCVQU48QPHRDXMRT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MCVQU48QPHRDXMRT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MCVQU48QPHRDXMRT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MCVQU48QPHRDXMRT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$14.4 per Dedicated Usage Linux p2.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.4000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BVY8N2S8YT6DK8AE" : { - "BVY8N2S8YT6DK8AE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BVY8N2S8YT6DK8AE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BVY8N2S8YT6DK8AE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BVY8N2S8YT6DK8AE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.10 for 2000 Mbps per r3.4xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QFF26RH4D8T9V64T" : { - "QFF26RH4D8T9V64T.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QFF26RH4D8T9V64T", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QFF26RH4D8T9V64T.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QFF26RH4D8T9V64T.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.42 per On Demand Windows BYOL c3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "P9DZZQU4NVYMBDKA" : { - "P9DZZQU4NVYMBDKA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "P9DZZQU4NVYMBDKA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "P9DZZQU4NVYMBDKA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "P9DZZQU4NVYMBDKA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Server Enterprise x1e.32xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2GCTBU78G22TGEXZ" : { - "2GCTBU78G22TGEXZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2GCTBU78G22TGEXZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2GCTBU78G22TGEXZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2GCTBU78G22TGEXZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.044 per On Demand Linux m1.small Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2QU9K6YAGYT2B3FK" : { - "2QU9K6YAGYT2B3FK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2QU9K6YAGYT2B3FK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2QU9K6YAGYT2B3FK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2QU9K6YAGYT2B3FK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise m3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "M57UMFD3S77UZWZ3" : { - "M57UMFD3S77UZWZ3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "M57UMFD3S77UZWZ3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "M57UMFD3S77UZWZ3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "M57UMFD3S77UZWZ3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$11.607 per Dedicated Usage Windows with SQL Web x1.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "11.6070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MK9AMH7NU69KFAYJ" : { - "MK9AMH7NU69KFAYJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MK9AMH7NU69KFAYJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MK9AMH7NU69KFAYJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MK9AMH7NU69KFAYJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.508 per Dedicated Linux g3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SJGHN3P4PMXPP9SA" : { - "SJGHN3P4PMXPP9SA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SJGHN3P4PMXPP9SA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SJGHN3P4PMXPP9SA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SJGHN3P4PMXPP9SA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.377 per Dedicated Windows with SQL Std c5.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SFZ2UCQNRZD2WN5F" : { - "SFZ2UCQNRZD2WN5F.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SFZ2UCQNRZD2WN5F", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SFZ2UCQNRZD2WN5F.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SFZ2UCQNRZD2WN5F.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 for 1 Mbps per x1e.16xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TRJZT878WSTAV924" : { - "TRJZT878WSTAV924.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TRJZT878WSTAV924", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TRJZT878WSTAV924.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TRJZT878WSTAV924.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.976 per Dedicated Usage SUSE c4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MDMR23U3WGXF3XNN" : { - "MDMR23U3WGXF3XNN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MDMR23U3WGXF3XNN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MDMR23U3WGXF3XNN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MDMR23U3WGXF3XNN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise c3.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VZ59SXRTT8GCK9N3" : { - "VZ59SXRTT8GCK9N3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VZ59SXRTT8GCK9N3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VZ59SXRTT8GCK9N3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VZ59SXRTT8GCK9N3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.728 per Dedicated Usage RHEL m3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3EADMJNNJS3U42HF" : { - "3EADMJNNJS3U42HF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3EADMJNNJS3U42HF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3EADMJNNJS3U42HF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3EADMJNNJS3U42HF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.34 per On Demand Windows BYOL c5.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JEUDBWRRVYWVAQ8W" : { - "JEUDBWRRVYWVAQ8W.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JEUDBWRRVYWVAQ8W", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JEUDBWRRVYWVAQ8W.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JEUDBWRRVYWVAQ8W.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.108 per Dedicated RHEL m1.small Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "B6SAEPP6NFMFCUU3" : { - "B6SAEPP6NFMFCUU3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "B6SAEPP6NFMFCUU3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "B6SAEPP6NFMFCUU3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "B6SAEPP6NFMFCUU3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.219 per Dedicated Usage Linux c4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "N8Q3DXFKSXBK5NQR" : { - "N8Q3DXFKSXBK5NQR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "N8Q3DXFKSXBK5NQR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "N8Q3DXFKSXBK5NQR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "N8Q3DXFKSXBK5NQR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.343 per Dedicated Windows BYOL i3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "H3H6PVAND793CJ85" : { - "H3H6PVAND793CJ85.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "H3H6PVAND793CJ85", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "H3H6PVAND793CJ85.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "H3H6PVAND793CJ85.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL c4.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SR2X29MBY6K3S2UM" : { - "SR2X29MBY6K3S2UM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SR2X29MBY6K3S2UM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SR2X29MBY6K3S2UM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SR2X29MBY6K3S2UM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.423 per Dedicated Usage RHEL r4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "V6MQGHYV9HMHTNFE" : { - "V6MQGHYV9HMHTNFE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "V6MQGHYV9HMHTNFE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "V6MQGHYV9HMHTNFE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "V6MQGHYV9HMHTNFE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.330 per Dedicated RHEL m2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "E9BJT9V6S2SW8D9F" : { - "E9BJT9V6S2SW8D9F.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "E9BJT9V6S2SW8D9F", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "E9BJT9V6S2SW8D9F.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "E9BJT9V6S2SW8D9F.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.90 per On Demand SUSE m4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RDXB855WSYGQHXSB" : { - "RDXB855WSYGQHXSB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RDXB855WSYGQHXSB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RDXB855WSYGQHXSB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RDXB855WSYGQHXSB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows p2.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XJF7B8BASZ9KBAC4" : { - "XJF7B8BASZ9KBAC4.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XJF7B8BASZ9KBAC4", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XJF7B8BASZ9KBAC4.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XJF7B8BASZ9KBAC4.JRTCKXETXF.6YS6EN2CT7", - "description" : "$31.936 per Dedicated Windows with SQL Server Enterprise i3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "31.9360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "URQPKMKKWVYXRDR3" : { - "URQPKMKKWVYXRDR3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "URQPKMKKWVYXRDR3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "URQPKMKKWVYXRDR3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "URQPKMKKWVYXRDR3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.32 per Dedicated SUSE m4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "C7XDWJNQJCHH2ZQT" : { - "C7XDWJNQJCHH2ZQT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "C7XDWJNQJCHH2ZQT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "C7XDWJNQJCHH2ZQT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "C7XDWJNQJCHH2ZQT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per GB - US East (Northern Virginia) data transfer from Asia Pacific (Seoul)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DWKBVCX644ZFSPZC" : { - "DWKBVCX644ZFSPZC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DWKBVCX644ZFSPZC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DWKBVCX644ZFSPZC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DWKBVCX644ZFSPZC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std m3.medium Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GTVQFYE9FHRN6U2Z" : { - "GTVQFYE9FHRN6U2Z.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GTVQFYE9FHRN6U2Z", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GTVQFYE9FHRN6U2Z.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GTVQFYE9FHRN6U2Z.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.568 per Dedicated Usage RHEL c4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "T2S6PU6V3NXVX7X2" : { - "T2S6PU6V3NXVX7X2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "T2S6PU6V3NXVX7X2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "T2S6PU6V3NXVX7X2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "T2S6PU6V3NXVX7X2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.036 per On Demand Windows m3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FZCQH9HE5YJHXGM4" : { - "FZCQH9HE5YJHXGM4.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FZCQH9HE5YJHXGM4", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FZCQH9HE5YJHXGM4.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FZCQH9HE5YJHXGM4.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux p2.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2YXG22APZA6TC2QW" : { - "2YXG22APZA6TC2QW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2YXG22APZA6TC2QW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2YXG22APZA6TC2QW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2YXG22APZA6TC2QW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.475 per Dedicated Windows with SQL Web m4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EW588KWA3CB5EA96" : { - "EW588KWA3CB5EA96.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EW588KWA3CB5EA96", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EW588KWA3CB5EA96.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EW588KWA3CB5EA96.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per SUSE c5.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5YVC4WAQGG4WW22Q" : { - "5YVC4WAQGG4WW22Q.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5YVC4WAQGG4WW22Q", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5YVC4WAQGG4WW22Q.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5YVC4WAQGG4WW22Q.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.75 per On Demand C4 Dedicated Host Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YUXKRQ5SQSHVKD58" : { - "YUXKRQ5SQSHVKD58.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YUXKRQ5SQSHVKD58", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YUXKRQ5SQSHVKD58.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YUXKRQ5SQSHVKD58.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.087 per On Demand Linux m1.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JVAJTRPTQ2TMRVRR" : { - "JVAJTRPTQ2TMRVRR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JVAJTRPTQ2TMRVRR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JVAJTRPTQ2TMRVRR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JVAJTRPTQ2TMRVRR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Linux x1e.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8W89WZF8F2RMTQFG" : { - "8W89WZF8F2RMTQFG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8W89WZF8F2RMTQFG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8W89WZF8F2RMTQFG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8W89WZF8F2RMTQFG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.312 per On Demand Windows BYOL i3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MBDEK77AM97QDASM" : { - "MBDEK77AM97QDASM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MBDEK77AM97QDASM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MBDEK77AM97QDASM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MBDEK77AM97QDASM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.17 per Dedicated Usage Linux r4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6898Z5WFTX5GEKYT" : { - "6898Z5WFTX5GEKYT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6898Z5WFTX5GEKYT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6898Z5WFTX5GEKYT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6898Z5WFTX5GEKYT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.072 per On Demand Windows x1e.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.0720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "A6ZFW8EK3D8FCRUW" : { - "A6ZFW8EK3D8FCRUW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "A6ZFW8EK3D8FCRUW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "A6ZFW8EK3D8FCRUW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "A6ZFW8EK3D8FCRUW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per RHEL i3.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HMNJVFAEBVXVF64D" : { - "HMNJVFAEBVXVF64D.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HMNJVFAEBVXVF64D", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HMNJVFAEBVXVF64D.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HMNJVFAEBVXVF64D.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.291 per Dedicated RHEL c3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BVA53SP54488TUC8" : { - "BVA53SP54488TUC8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BVA53SP54488TUC8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BVA53SP54488TUC8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BVA53SP54488TUC8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.383 per On Demand Windows c4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3XXEP5YX5DYFE8HD" : { - "3XXEP5YX5DYFE8HD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3XXEP5YX5DYFE8HD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3XXEP5YX5DYFE8HD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3XXEP5YX5DYFE8HD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.724 per On Demand SUSE i3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MN9WQ6GC5TGSSY9E" : { - "MN9WQ6GC5TGSSY9E.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MN9WQ6GC5TGSSY9E", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MN9WQ6GC5TGSSY9E.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MN9WQ6GC5TGSSY9E.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows g2.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QHEP8CAE9HJS33WN" : { - "QHEP8CAE9HJS33WN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QHEP8CAE9HJS33WN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QHEP8CAE9HJS33WN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QHEP8CAE9HJS33WN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.815 per Dedicated SUSE g2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XFYWQUTA9A757A82" : { - "XFYWQUTA9A757A82.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XFYWQUTA9A757A82", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XFYWQUTA9A757A82.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XFYWQUTA9A757A82.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per RHEL c5.9xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VENWXFAH6ZT534EX" : { - "VENWXFAH6ZT534EX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VENWXFAH6ZT534EX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VENWXFAH6ZT534EX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VENWXFAH6ZT534EX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL c4.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VNV2TU2Q7ZCZ374Z" : { - "VNV2TU2Q7ZCZ374Z.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VNV2TU2Q7ZCZ374Z", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VNV2TU2Q7ZCZ374Z.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VNV2TU2Q7ZCZ374Z.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL m3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "K2UX3Q9DEX25YU7R" : { - "K2UX3Q9DEX25YU7R.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "K2UX3Q9DEX25YU7R", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "K2UX3Q9DEX25YU7R.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "K2UX3Q9DEX25YU7R.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.906 per Dedicated Usage Windows r4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JNSD8R3ZBZZH9BMM" : { - "JNSD8R3ZBZZH9BMM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JNSD8R3ZBZZH9BMM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JNSD8R3ZBZZH9BMM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JNSD8R3ZBZZH9BMM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Linux i3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AHXYB8F5F4C9BS49" : { - "AHXYB8F5F4C9BS49.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AHXYB8F5F4C9BS49", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AHXYB8F5F4C9BS49.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AHXYB8F5F4C9BS49.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE c3.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6MK3U3SATG93CSHN" : { - "6MK3U3SATG93CSHN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6MK3U3SATG93CSHN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6MK3U3SATG93CSHN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6MK3U3SATG93CSHN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE r4.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7DZ2ZNK9ZVM2D8RJ" : { - "7DZ2ZNK9ZVM2D8RJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7DZ2ZNK9ZVM2D8RJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7DZ2ZNK9ZVM2D8RJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7DZ2ZNK9ZVM2D8RJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.626 per On Demand RHEL i3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "73WCSETYKTR78DFE" : { - "73WCSETYKTR78DFE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "73WCSETYKTR78DFE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "73WCSETYKTR78DFE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "73WCSETYKTR78DFE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows BYOL f1.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6A5H8V2W7HVVXSB7" : { - "6A5H8V2W7HVVXSB7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6A5H8V2W7HVVXSB7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6A5H8V2W7HVVXSB7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6A5H8V2W7HVVXSB7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$12.24 per On Demand Windows BYOL p3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.2400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3Y79JQPCM8NG9MKS" : { - "3Y79JQPCM8NG9MKS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3Y79JQPCM8NG9MKS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3Y79JQPCM8NG9MKS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3Y79JQPCM8NG9MKS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows c4.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7GZHH8G9CD4XD8TM" : { - "7GZHH8G9CD4XD8TM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7GZHH8G9CD4XD8TM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7GZHH8G9CD4XD8TM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7GZHH8G9CD4XD8TM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.918 per On Demand SQL Std i2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YMKYAYKBFT6QURTQ" : { - "YMKYAYKBFT6QURTQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YMKYAYKBFT6QURTQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YMKYAYKBFT6QURTQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YMKYAYKBFT6QURTQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE g2.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4BUZB6KWPTJTVSB7" : { - "4BUZB6KWPTJTVSB7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4BUZB6KWPTJTVSB7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4BUZB6KWPTJTVSB7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4BUZB6KWPTJTVSB7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per SUSE x1e.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "96GP335H4PPFX6P2" : { - "96GP335H4PPFX6P2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "96GP335H4PPFX6P2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "96GP335H4PPFX6P2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "96GP335H4PPFX6P2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.86 per On Demand SUSE d2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DEEJRV3WVFPZTXRD" : { - "DEEJRV3WVFPZTXRD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DEEJRV3WVFPZTXRD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DEEJRV3WVFPZTXRD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DEEJRV3WVFPZTXRD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.20 per On Demand Windows BYOL m4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YP5VZWVE6N228WH8" : { - "YP5VZWVE6N228WH8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YP5VZWVE6N228WH8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YP5VZWVE6N228WH8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YP5VZWVE6N228WH8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$34.586 per On Demand Windows with SQL Std x1.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "34.5860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CNM382ND78XDQQAK" : { - "CNM382ND78XDQQAK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CNM382ND78XDQQAK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CNM382ND78XDQQAK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CNM382ND78XDQQAK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$6.820 per Dedicated Linux i2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.8200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XERQGANK8Y3TXRRY" : { - "XERQGANK8Y3TXRRY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XERQGANK8Y3TXRRY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XERQGANK8Y3TXRRY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XERQGANK8Y3TXRRY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.0532 per On Demand SUSE t2.small Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9SSB4RSRXFF8HK42" : { - "9SSB4RSRXFF8HK42.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9SSB4RSRXFF8HK42", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9SSB4RSRXFF8HK42.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9SSB4RSRXFF8HK42.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.940 per On Demand SUSE c3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TTPFUQFE3Y5ZHJQU" : { - "TTPFUQFE3Y5ZHJQU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TTPFUQFE3Y5ZHJQU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TTPFUQFE3Y5ZHJQU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TTPFUQFE3Y5ZHJQU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.996 per On Demand Windows with SQL Std x1e.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Y2UXNGAEK992YZMH" : { - "Y2UXNGAEK992YZMH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Y2UXNGAEK992YZMH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Y2UXNGAEK992YZMH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Y2UXNGAEK992YZMH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.66 per Dedicated Usage Windows with SQL Server Enterprise c3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.6600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "WCAVWCRVUD56G7JJ" : { - "WCAVWCRVUD56G7JJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "WCAVWCRVUD56G7JJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "WCAVWCRVUD56G7JJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "WCAVWCRVUD56G7JJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.188 per On Demand Windows c3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EEJY25ZRYKB8MXQ7" : { - "EEJY25ZRYKB8MXQ7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EEJY25ZRYKB8MXQ7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EEJY25ZRYKB8MXQ7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EEJY25ZRYKB8MXQ7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$8.615 per On Demand Windows with SQL Std r3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.6150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DJEY5GTEWFQSU2H3" : { - "DJEY5GTEWFQSU2H3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DJEY5GTEWFQSU2H3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DJEY5GTEWFQSU2H3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DJEY5GTEWFQSU2H3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.95 per On Demand Windows with SQL Server Enterprise r4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "R663DPH9T8Q89W88" : { - "R663DPH9T8Q89W88.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "R663DPH9T8Q89W88", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "R663DPH9T8Q89W88.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "R663DPH9T8Q89W88.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.280 per Dedicated Windows i2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AQ4BJM4AR87GBQDX" : { - "AQ4BJM4AR87GBQDX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AQ4BJM4AR87GBQDX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AQ4BJM4AR87GBQDX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AQ4BJM4AR87GBQDX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.532 per On Demand Windows c4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3DX9M63484ZSZFJV" : { - "3DX9M63484ZSZFJV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3DX9M63484ZSZFJV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3DX9M63484ZSZFJV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3DX9M63484ZSZFJV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.000 per On Demand Linux cc2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YNFV4A5QUAMVDGKX" : { - "YNFV4A5QUAMVDGKX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YNFV4A5QUAMVDGKX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YNFV4A5QUAMVDGKX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YNFV4A5QUAMVDGKX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$6.669 per On Demand Linux x1.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.6690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "J2FKWQYCNWT2R2V7" : { - "J2FKWQYCNWT2R2V7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "J2FKWQYCNWT2R2V7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "J2FKWQYCNWT2R2V7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "J2FKWQYCNWT2R2V7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.02 per GB - US East (Northern Virginia) data transfer to AWS GovCloud (US)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TNE6USZS8RUFQW28" : { - "TNE6USZS8RUFQW28.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TNE6USZS8RUFQW28", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TNE6USZS8RUFQW28.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TNE6USZS8RUFQW28.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.038 per Dedicated SUSE i2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4YYNPC2WZJJXCMPG" : { - "4YYNPC2WZJJXCMPG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4YYNPC2WZJJXCMPG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4YYNPC2WZJJXCMPG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4YYNPC2WZJJXCMPG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.008 per GB Data Processed by the LoadBalancer", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RWRSW4Q7WCASA2W9" : { - "RWRSW4Q7WCASA2W9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RWRSW4Q7WCASA2W9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RWRSW4Q7WCASA2W9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RWRSW4Q7WCASA2W9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.173 per Dedicated SQL Std c3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NYB5S5CHCEM4EHBM" : { - "NYB5S5CHCEM4EHBM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NYB5S5CHCEM4EHBM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NYB5S5CHCEM4EHBM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NYB5S5CHCEM4EHBM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.05 for 1000 Mbps per m1.xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QT2HSTX3NZ4XCM9E" : { - "QT2HSTX3NZ4XCM9E.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QT2HSTX3NZ4XCM9E", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QT2HSTX3NZ4XCM9E.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QT2HSTX3NZ4XCM9E.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.20 per On Demand SUSE m4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7MYCC33ZAHEJPS24" : { - "7MYCC33ZAHEJPS24.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7MYCC33ZAHEJPS24", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7MYCC33ZAHEJPS24.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7MYCC33ZAHEJPS24.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.807 per Dedicated Usage Windows with SQL Web m3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CX88FC6J9JAZ8TJW" : { - "CX88FC6J9JAZ8TJW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CX88FC6J9JAZ8TJW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CX88FC6J9JAZ8TJW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CX88FC6J9JAZ8TJW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Std c5.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6S9GKQW48P8VUTJ9" : { - "6S9GKQW48P8VUTJ9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6S9GKQW48P8VUTJ9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6S9GKQW48P8VUTJ9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6S9GKQW48P8VUTJ9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$9.392 per Dedicated Usage Windows p2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.3920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SKBEBKWYFZHQHM9H" : { - "SKBEBKWYFZHQHM9H.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SKBEBKWYFZHQHM9H", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SKBEBKWYFZHQHM9H.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SKBEBKWYFZHQHM9H.JRTCKXETXF.6YS6EN2CT7", - "description" : "$13.438 per On Demand SUSE x1.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.4380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SDH7JHR69GKRHZE7" : { - "SDH7JHR69GKRHZE7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SDH7JHR69GKRHZE7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SDH7JHR69GKRHZE7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SDH7JHR69GKRHZE7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.834 per On Demand Linux x1e.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NP6CAG27PTSDFJW4" : { - "NP6CAG27PTSDFJW4.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NP6CAG27PTSDFJW4", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NP6CAG27PTSDFJW4.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NP6CAG27PTSDFJW4.JRTCKXETXF.6YS6EN2CT7", - "description" : "$5.52 per Dedicated Windows BYOL d2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.5200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CTE4Z3ZVEMX6UBMZ" : { - "CTE4Z3ZVEMX6UBMZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CTE4Z3ZVEMX6UBMZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CTE4Z3ZVEMX6UBMZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CTE4Z3ZVEMX6UBMZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE r4.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "E8Q8HF3P3ZT76NBP" : { - "E8Q8HF3P3ZT76NBP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "E8Q8HF3P3ZT76NBP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "E8Q8HF3P3ZT76NBP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "E8Q8HF3P3ZT76NBP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Std i3.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AS5YFH475AAXG3U6" : { - "AS5YFH475AAXG3U6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AS5YFH475AAXG3U6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AS5YFH475AAXG3U6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AS5YFH475AAXG3U6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.808 per Dedicated Windows m4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CZ3H3JJEPGJZKTU9" : { - "CZ3H3JJEPGJZKTU9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CZ3H3JJEPGJZKTU9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CZ3H3JJEPGJZKTU9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CZ3H3JJEPGJZKTU9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.66 per Dedicated Usage Windows BYOL r3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "K97AXAD4GAYGE99Y" : { - "K97AXAD4GAYGE99Y.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "K97AXAD4GAYGE99Y", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "K97AXAD4GAYGE99Y.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "K97AXAD4GAYGE99Y.JRTCKXETXF.6YS6EN2CT7", - "description" : "$13.30 per Dedicated SUSE f1.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.3000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8QAR2NUMVX46Z9J5" : { - "8QAR2NUMVX46Z9J5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8QAR2NUMVX46Z9J5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8QAR2NUMVX46Z9J5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8QAR2NUMVX46Z9J5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.295 per On Demand Windows with SQL Web r3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TB387UEUFCNJQBC7" : { - "TB387UEUFCNJQBC7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TB387UEUFCNJQBC7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TB387UEUFCNJQBC7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TB387UEUFCNJQBC7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.228 per On Demand SUSE r4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FEZXX3JK34ZK8J5N" : { - "FEZXX3JK34ZK8J5N.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FEZXX3JK34ZK8J5N", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FEZXX3JK34ZK8J5N.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FEZXX3JK34ZK8J5N.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE r3.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "WWNXU2QJU9XYEM5Z" : { - "WWNXU2QJU9XYEM5Z.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "WWNXU2QJU9XYEM5Z", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "WWNXU2QJU9XYEM5Z.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "WWNXU2QJU9XYEM5Z.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.2266 per On Demand Windows t2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2266000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "27HV9GJNZPAQHPXQ" : { - "27HV9GJNZPAQHPXQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "27HV9GJNZPAQHPXQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "27HV9GJNZPAQHPXQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "27HV9GJNZPAQHPXQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$34.586 per Dedicated Windows with SQL Std x1.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "34.5860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GJ4X2G4FDXPBB6U8" : { - "GJ4X2G4FDXPBB6U8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GJ4X2G4FDXPBB6U8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GJ4X2G4FDXPBB6U8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GJ4X2G4FDXPBB6U8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 for 2000 Mbps per c4.4xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VN3PHQUB842ETS6X" : { - "VN3PHQUB842ETS6X.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VN3PHQUB842ETS6X", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VN3PHQUB842ETS6X.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VN3PHQUB842ETS6X.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE i2.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3NXCSDASD23BBNGJ" : { - "3NXCSDASD23BBNGJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3NXCSDASD23BBNGJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3NXCSDASD23BBNGJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3NXCSDASD23BBNGJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL r3.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RHMYCN6PD6GHSQUU" : { - "RHMYCN6PD6GHSQUU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RHMYCN6PD6GHSQUU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RHMYCN6PD6GHSQUU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RHMYCN6PD6GHSQUU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.99 per Dedicated Usage Linux p2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "X54X2EBSMKMH8KGR" : { - "X54X2EBSMKMH8KGR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "X54X2EBSMKMH8KGR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "X54X2EBSMKMH8KGR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "X54X2EBSMKMH8KGR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL g2.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FUJ2WGMJU3VK73ZN" : { - "FUJ2WGMJU3VK73ZN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FUJ2WGMJU3VK73ZN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FUJ2WGMJU3VK73ZN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FUJ2WGMJU3VK73ZN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.628 per Dedicated Usage SUSE d2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KZTDUURKCC3R7F95" : { - "KZTDUURKCC3R7F95.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KZTDUURKCC3R7F95", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KZTDUURKCC3R7F95.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KZTDUURKCC3R7F95.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.727 per Dedicated Windows with SQL Web c5.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SKRG28YJJD7F7ACS" : { - "SKRG28YJJD7F7ACS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SKRG28YJJD7F7ACS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SKRG28YJJD7F7ACS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SKRG28YJJD7F7ACS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std r4.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ATP45XBTJS5DKRMF" : { - "ATP45XBTJS5DKRMF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ATP45XBTJS5DKRMF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ATP45XBTJS5DKRMF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ATP45XBTJS5DKRMF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std g2.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BTQ2BXHDBD3MTARJ" : { - "BTQ2BXHDBD3MTARJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BTQ2BXHDBD3MTARJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BTQ2BXHDBD3MTARJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BTQ2BXHDBD3MTARJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE m3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "G6S6S5QMYJ4RMXEZ" : { - "G6S6S5QMYJ4RMXEZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "G6S6S5QMYJ4RMXEZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "G6S6S5QMYJ4RMXEZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "G6S6S5QMYJ4RMXEZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise g2.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XFJWBADTXUKBRGTC" : { - "XFJWBADTXUKBRGTC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XFJWBADTXUKBRGTC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XFJWBADTXUKBRGTC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XFJWBADTXUKBRGTC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.84 per On Demand Windows m4.10xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CS26JSU2ZC88WXHJ" : { - "CS26JSU2ZC88WXHJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CS26JSU2ZC88WXHJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CS26JSU2ZC88WXHJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CS26JSU2ZC88WXHJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.147 per On Demand RHEL m1.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JYVS4BZET85J8C7N" : { - "JYVS4BZET85J8C7N.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JYVS4BZET85J8C7N", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JYVS4BZET85J8C7N.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JYVS4BZET85J8C7N.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.98 per On Demand Windows BYOL m2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YSGQ6AZH4GU6W9TM" : { - "YSGQ6AZH4GU6W9TM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YSGQ6AZH4GU6W9TM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YSGQ6AZH4GU6W9TM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YSGQ6AZH4GU6W9TM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.903 per Dedicated Usage Windows with SQL Server Enterprise c4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "M4YGUC8KPPJRRCRJ" : { - "M4YGUC8KPPJRRCRJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "M4YGUC8KPPJRRCRJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "M4YGUC8KPPJRRCRJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "M4YGUC8KPPJRRCRJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.231 per Dedicated Windows BYOL c3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YCTHWE4X8352UUP7" : { - "YCTHWE4X8352UUP7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YCTHWE4X8352UUP7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YCTHWE4X8352UUP7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YCTHWE4X8352UUP7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Server Enterprise i3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RZS5FY9ANEA8TU3F" : { - "RZS5FY9ANEA8TU3F.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RZS5FY9ANEA8TU3F", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RZS5FY9ANEA8TU3F.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RZS5FY9ANEA8TU3F.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux m4.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MA94X27R3YTPE3NC" : { - "MA94X27R3YTPE3NC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MA94X27R3YTPE3NC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MA94X27R3YTPE3NC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MA94X27R3YTPE3NC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.172 per Dedicated Windows BYOL i3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2Y3RARMUM73VYH92" : { - "2Y3RARMUM73VYH92.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2Y3RARMUM73VYH92", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2Y3RARMUM73VYH92.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2Y3RARMUM73VYH92.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.654 per Dedicated Windows c3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7ATPZU2G6QRQFTXN" : { - "7ATPZU2G6QRQFTXN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7ATPZU2G6QRQFTXN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7ATPZU2G6QRQFTXN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7ATPZU2G6QRQFTXN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$5.122 per On Demand RHEL i3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.1220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BJ9999E62JPQN34Q" : { - "BJ9999E62JPQN34Q.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BJ9999E62JPQN34Q", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BJ9999E62JPQN34Q.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BJ9999E62JPQN34Q.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.298 per On Demand Windows with SQL Web t2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FJ3G5WT7J4G7GT23" : { - "FJ3G5WT7J4G7GT23.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FJ3G5WT7J4G7GT23", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FJ3G5WT7J4G7GT23.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FJ3G5WT7J4G7GT23.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.044 per On Demand SQL Web cr1.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.0440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "P5RN9BCZJT39XF2F" : { - "P5RN9BCZJT39XF2F.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "P5RN9BCZJT39XF2F", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "P5RN9BCZJT39XF2F.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "P5RN9BCZJT39XF2F.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.175 per On Demand Windows BYOL m1.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QF49GBEQA86P5DD3" : { - "QF49GBEQA86P5DD3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QF49GBEQA86P5DD3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QF49GBEQA86P5DD3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QF49GBEQA86P5DD3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE c3.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "69HHGBJ3N8F7N3PN" : { - "69HHGBJ3N8F7N3PN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "69HHGBJ3N8F7N3PN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "69HHGBJ3N8F7N3PN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "69HHGBJ3N8F7N3PN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.98 per Dedicated Windows g3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "C4ADNNGW2WA5AJWY" : { - "C4ADNNGW2WA5AJWY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "C4ADNNGW2WA5AJWY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "C4ADNNGW2WA5AJWY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "C4ADNNGW2WA5AJWY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.336 per On Demand Windows BYOL x1e.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UC54XWQVHQPRYB9K" : { - "UC54XWQVHQPRYB9K.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UC54XWQVHQPRYB9K", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UC54XWQVHQPRYB9K.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UC54XWQVHQPRYB9K.JRTCKXETXF.6YS6EN2CT7", - "description" : "$6.672 per On Demand Linux x1e.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.6720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XMKFQV8DFSMWGQ5G" : { - "XMKFQV8DFSMWGQ5G.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XMKFQV8DFSMWGQ5G", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XMKFQV8DFSMWGQ5G.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XMKFQV8DFSMWGQ5G.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.254 per Dedicated Windows BYOL g3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TNZVJ6TD58FTD557" : { - "TNZVJ6TD58FTD557.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TNZVJ6TD58FTD557", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TNZVJ6TD58FTD557.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TNZVJ6TD58FTD557.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.67 per Dedicated Windows BYOL x1e.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Q47MRW8XVZXWXPE6" : { - "Q47MRW8XVZXWXPE6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Q47MRW8XVZXWXPE6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Q47MRW8XVZXWXPE6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Q47MRW8XVZXWXPE6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Web c5.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3RTZAQ64564SNQ7T" : { - "3RTZAQ64564SNQ7T.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3RTZAQ64564SNQ7T", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3RTZAQ64564SNQ7T.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3RTZAQ64564SNQ7T.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.622 per Dedicated Linux c5.9xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HQEH3ZWJVT46JHRG" : { - "HQEH3ZWJVT46JHRG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HQEH3ZWJVT46JHRG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HQEH3ZWJVT46JHRG.JRTCKXETXF.WVV8R9FH29" : { - "rateCode" : "HQEH3ZWJVT46JHRG.JRTCKXETXF.WVV8R9FH29", - "description" : "$0.090 per GB - first 10 TB / month data transfer out beyond the global free tier", - "beginRange" : "1", - "endRange" : "10240", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0900000000" - }, - "appliesTo" : [ ] - }, - "HQEH3ZWJVT46JHRG.JRTCKXETXF.8EEUB22XNJ" : { - "rateCode" : "HQEH3ZWJVT46JHRG.JRTCKXETXF.8EEUB22XNJ", - "description" : "$0.000 per GB - first 1 GB of data transferred out per month", - "beginRange" : "0", - "endRange" : "1", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "HQEH3ZWJVT46JHRG.JRTCKXETXF.VF6T3GAUKQ" : { - "rateCode" : "HQEH3ZWJVT46JHRG.JRTCKXETXF.VF6T3GAUKQ", - "description" : "$0.085 per GB - next 40 TB / month data transfer out", - "beginRange" : "10240", - "endRange" : "51200", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0850000000" - }, - "appliesTo" : [ ] - }, - "HQEH3ZWJVT46JHRG.JRTCKXETXF.GPHXDESFBB" : { - "rateCode" : "HQEH3ZWJVT46JHRG.JRTCKXETXF.GPHXDESFBB", - "description" : "$0.050 per GB - greater than 150 TB / month data transfer out", - "beginRange" : "153600", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0500000000" - }, - "appliesTo" : [ ] - }, - "HQEH3ZWJVT46JHRG.JRTCKXETXF.N9EW5UVVPA" : { - "rateCode" : "HQEH3ZWJVT46JHRG.JRTCKXETXF.N9EW5UVVPA", - "description" : "$0.070 per GB - next 100 TB / month data transfer out", - "beginRange" : "51200", - "endRange" : "153600", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FAFFPMHQDMTENZE8" : { - "FAFFPMHQDMTENZE8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FAFFPMHQDMTENZE8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FAFFPMHQDMTENZE8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FAFFPMHQDMTENZE8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Server Enterprise c5.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TDU6B3KE7HWTXURF" : { - "TDU6B3KE7HWTXURF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TDU6B3KE7HWTXURF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TDU6B3KE7HWTXURF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TDU6B3KE7HWTXURF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise m3.medium Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SJ2H8X62JZ6P6N48" : { - "SJ2H8X62JZ6P6N48.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SJ2H8X62JZ6P6N48", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SJ2H8X62JZ6P6N48.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SJ2H8X62JZ6P6N48.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.721 per Dedicated Usage RHEL c4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "U35UAX5SUJURKCT4" : { - "U35UAX5SUJURKCT4.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "U35UAX5SUJURKCT4", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "U35UAX5SUJURKCT4.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "U35UAX5SUJURKCT4.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.338 per Dedicated Windows with SQL Web x1e.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4PRP277ZT2QSK84X" : { - "4PRP277ZT2QSK84X.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4PRP277ZT2QSK84X", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4PRP277ZT2QSK84X.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4PRP277ZT2QSK84X.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per SUSE p3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DFZPYYVFYF45BSQ3" : { - "DFZPYYVFYF45BSQ3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DFZPYYVFYF45BSQ3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DFZPYYVFYF45BSQ3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DFZPYYVFYF45BSQ3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.971 per On Demand SQL Web i2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SQD4BVC5RS7DWN7S" : { - "SQD4BVC5RS7DWN7S.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SQD4BVC5RS7DWN7S", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SQD4BVC5RS7DWN7S.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SQD4BVC5RS7DWN7S.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL p2.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "A9YZTVBT2EH2RHUW" : { - "A9YZTVBT2EH2RHUW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "A9YZTVBT2EH2RHUW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "A9YZTVBT2EH2RHUW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "A9YZTVBT2EH2RHUW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.88 per Dedicated Windows BYOL m4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XCMMYCWQYMYT84XG" : { - "XCMMYCWQYMYT84XG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XCMMYCWQYMYT84XG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XCMMYCWQYMYT84XG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XCMMYCWQYMYT84XG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.992 per On Demand Windows with SQL Server Enterprise i3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GY7YBGWY6UY9H8G3" : { - "GY7YBGWY6UY9H8G3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GY7YBGWY6UY9H8G3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GY7YBGWY6UY9H8G3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GY7YBGWY6UY9H8G3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.386 per On Demand Windows with SQL Web r3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9XSHJSECKR9ATRQG" : { - "9XSHJSECKR9ATRQG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9XSHJSECKR9ATRQG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9XSHJSECKR9ATRQG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9XSHJSECKR9ATRQG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.815 per Dedicated Linux f1.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ENS9X5UYSE8HHJGX" : { - "ENS9X5UYSE8HHJGX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ENS9X5UYSE8HHJGX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ENS9X5UYSE8HHJGX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ENS9X5UYSE8HHJGX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.083 per On Demand SQL Web c3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "G6HSPJYKGG7P9NJR" : { - "G6HSPJYKGG7P9NJR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "G6HSPJYKGG7P9NJR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "G6HSPJYKGG7P9NJR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "G6HSPJYKGG7P9NJR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL c3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JABV4QCJFZRBR8JA" : { - "JABV4QCJFZRBR8JA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JABV4QCJFZRBR8JA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JABV4QCJFZRBR8JA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JABV4QCJFZRBR8JA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$9.496 per On Demand Windows with SQL Server Enterprise d2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.4960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TA7UVX8V5EKCNAFA" : { - "TA7UVX8V5EKCNAFA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TA7UVX8V5EKCNAFA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TA7UVX8V5EKCNAFA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TA7UVX8V5EKCNAFA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.06 per Dedicated Windows BYOL c5.18xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SH6G48SE9H3R9TQT" : { - "SH6G48SE9H3R9TQT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SH6G48SE9H3R9TQT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SH6G48SE9H3R9TQT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SH6G48SE9H3R9TQT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.650 per On Demand RHEL c1.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "25T439HS4WV9KRN4" : { - "25T439HS4WV9KRN4.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "25T439HS4WV9KRN4", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "25T439HS4WV9KRN4.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "25T439HS4WV9KRN4.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.041 per Dedicated Usage Windows with SQL Std r3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NF67K4WANEWZZV22" : { - "NF67K4WANEWZZV22.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NF67K4WANEWZZV22", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NF67K4WANEWZZV22.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NF67K4WANEWZZV22.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.100 per On Demand Linux cg1.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FENJBKVQ4CNCQN3M" : { - "FENJBKVQ4CNCQN3M.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FENJBKVQ4CNCQN3M", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FENJBKVQ4CNCQN3M.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FENJBKVQ4CNCQN3M.JRTCKXETXF.6YS6EN2CT7", - "description" : "$18.704 per Dedicated Windows with SQL Web x1e.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "18.7040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UW8KGBXJYHZFRWWG" : { - "UW8KGBXJYHZFRWWG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UW8KGBXJYHZFRWWG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UW8KGBXJYHZFRWWG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UW8KGBXJYHZFRWWG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux p2.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "783XD5AJCNJSV3H7" : { - "783XD5AJCNJSV3H7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "783XD5AJCNJSV3H7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "783XD5AJCNJSV3H7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "783XD5AJCNJSV3H7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.831 per Dedicated Windows cr1.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7QQSWJDPGHJWXN69" : { - "7QQSWJDPGHJWXN69.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7QQSWJDPGHJWXN69", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7QQSWJDPGHJWXN69.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7QQSWJDPGHJWXN69.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 for 7 Gbps per p3.8xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZJE4Q2AHZQ5TC873" : { - "ZJE4Q2AHZQ5TC873.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZJE4Q2AHZQ5TC873", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZJE4Q2AHZQ5TC873.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZJE4Q2AHZQ5TC873.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.00 per Dedicated Windows BYOL m4.10xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3AJKTZTHDW42GS66" : { - "3AJKTZTHDW42GS66.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3AJKTZTHDW42GS66", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3AJKTZTHDW42GS66.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3AJKTZTHDW42GS66.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std r3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7GUHNB4GSSZNUVY2" : { - "7GUHNB4GSSZNUVY2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7GUHNB4GSSZNUVY2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7GUHNB4GSSZNUVY2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7GUHNB4GSSZNUVY2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.615 per Dedicated Usage Windows with SQL Web m3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YKZXQZPGPVZNNRHA" : { - "YKZXQZPGPVZNNRHA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YKZXQZPGPVZNNRHA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YKZXQZPGPVZNNRHA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YKZXQZPGPVZNNRHA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.270 per Dedicated Linux m2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KE8V44XRQ8CWNHEV" : { - "KE8V44XRQ8CWNHEV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KE8V44XRQ8CWNHEV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KE8V44XRQ8CWNHEV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KE8V44XRQ8CWNHEV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.795 per On Demand RHEL r3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YXVKN9CCKCPCSTST" : { - "YXVKN9CCKCPCSTST.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YXVKN9CCKCPCSTST", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YXVKN9CCKCPCSTST.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YXVKN9CCKCPCSTST.JRTCKXETXF.6YS6EN2CT7", - "description" : "$8.523 per On Demand SQL Std c3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.5230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "J7XM6UBQVT7UKF3T" : { - "J7XM6UBQVT7UKF3T.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "J7XM6UBQVT7UKF3T", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "J7XM6UBQVT7UKF3T.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "J7XM6UBQVT7UKF3T.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.219 per Dedicated Usage Windows BYOL c4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SSTT3HA4W7HHVR38" : { - "SSTT3HA4W7HHVR38.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SSTT3HA4W7HHVR38", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SSTT3HA4W7HHVR38.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SSTT3HA4W7HHVR38.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.410 per On Demand SQL Std cc2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.4100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "U3KDJRF6FGANNG5Z" : { - "U3KDJRF6FGANNG5Z.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "U3KDJRF6FGANNG5Z", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "U3KDJRF6FGANNG5Z.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "U3KDJRF6FGANNG5Z.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.166 per On Demand Linux r3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FMGXVRPJP5ZBNB2U" : { - "FMGXVRPJP5ZBNB2U.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FMGXVRPJP5ZBNB2U", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FMGXVRPJP5ZBNB2U.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FMGXVRPJP5ZBNB2U.JRTCKXETXF.6YS6EN2CT7", - "description" : "$5.52 per Dedicated Usage Linux d2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.5200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PH52NYAMKMVT6ARR" : { - "PH52NYAMKMVT6ARR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PH52NYAMKMVT6ARR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PH52NYAMKMVT6ARR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PH52NYAMKMVT6ARR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$21.392 per Dedicated Usage Windows with SQL Server Enterprise p2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "21.3920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8QXEMJ9C47K755H8" : { - "8QXEMJ9C47K755H8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8QXEMJ9C47K755H8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8QXEMJ9C47K755H8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8QXEMJ9C47K755H8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.259 per Dedicated Windows BYOL p3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RSMWKBGGTAAEV4RH" : { - "RSMWKBGGTAAEV4RH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RSMWKBGGTAAEV4RH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RSMWKBGGTAAEV4RH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RSMWKBGGTAAEV4RH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.28 per On Demand Linux g3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "URH8Q5S2UVXB3ZCQ" : { - "URH8Q5S2UVXB3ZCQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "URH8Q5S2UVXB3ZCQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "URH8Q5S2UVXB3ZCQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "URH8Q5S2UVXB3ZCQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL d2.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VRCAUVZXNVUK48Y2" : { - "VRCAUVZXNVUK48Y2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VRCAUVZXNVUK48Y2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VRCAUVZXNVUK48Y2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VRCAUVZXNVUK48Y2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per SUSE i3.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "725FHGTUB3P2B9EU" : { - "725FHGTUB3P2B9EU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "725FHGTUB3P2B9EU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "725FHGTUB3P2B9EU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "725FHGTUB3P2B9EU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per GB - US East (Northern Virginia) data transfer from EU (Ireland)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SESWDZQB6R8ZGXJK" : { - "SESWDZQB6R8ZGXJK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SESWDZQB6R8ZGXJK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SESWDZQB6R8ZGXJK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SESWDZQB6R8ZGXJK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows c5.18xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FXKTTJ7YWYEXQKUG" : { - "FXKTTJ7YWYEXQKUG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FXKTTJ7YWYEXQKUG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FXKTTJ7YWYEXQKUG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FXKTTJ7YWYEXQKUG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise r4.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ASB6HFGHT3SUVED9" : { - "ASB6HFGHT3SUVED9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ASB6HFGHT3SUVED9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ASB6HFGHT3SUVED9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ASB6HFGHT3SUVED9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.780 per On Demand SUSE c3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "K7CXCBYXYBR3P73G" : { - "K7CXCBYXYBR3P73G.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "K7CXCBYXYBR3P73G", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "K7CXCBYXYBR3P73G.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "K7CXCBYXYBR3P73G.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.751 per Dedicated Windows BYOL i2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "385ZWS8QDHMYGMFJ" : { - "385ZWS8QDHMYGMFJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "385ZWS8QDHMYGMFJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "385ZWS8QDHMYGMFJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "385ZWS8QDHMYGMFJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.6 per Dedicated Windows BYOL g2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "A3CMMJ5XHG8YDXAU" : { - "A3CMMJ5XHG8YDXAU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "A3CMMJ5XHG8YDXAU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "A3CMMJ5XHG8YDXAU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "A3CMMJ5XHG8YDXAU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.045 per On Demand Windows r3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SVFBAAERCQTFD96J" : { - "SVFBAAERCQTFD96J.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SVFBAAERCQTFD96J", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SVFBAAERCQTFD96J.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SVFBAAERCQTFD96J.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.728 per Dedicated Windows with SQL Server Enterprise c5.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "33FHBWNHWMUJDK7G" : { - "33FHBWNHWMUJDK7G.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "33FHBWNHWMUJDK7G", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "33FHBWNHWMUJDK7G.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "33FHBWNHWMUJDK7G.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 for 1000 Mbps per c4.2xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "WQS4N692QYT65JPA" : { - "WQS4N692QYT65JPA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "WQS4N692QYT65JPA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "WQS4N692QYT65JPA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "WQS4N692QYT65JPA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.585 per Dedicated Usage Windows BYOL r4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5E4JKRKRN35X4R5X" : { - "5E4JKRKRN35X4R5X.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5E4JKRKRN35X4R5X", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5E4JKRKRN35X4R5X.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5E4JKRKRN35X4R5X.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Linux c5.9xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NR96G3WS4WXEXUW4" : { - "NR96G3WS4WXEXUW4.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NR96G3WS4WXEXUW4", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NR96G3WS4WXEXUW4.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NR96G3WS4WXEXUW4.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.332 per Dedicated SQL Web c3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.3320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "87NE3BBF7KA8H7NM" : { - "87NE3BBF7KA8H7NM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "87NE3BBF7KA8H7NM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "87NE3BBF7KA8H7NM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "87NE3BBF7KA8H7NM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL c3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "245DEJZVP4HBBUX3" : { - "245DEJZVP4HBBUX3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "245DEJZVP4HBBUX3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "245DEJZVP4HBBUX3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "245DEJZVP4HBBUX3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per RHEL p3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QFJGATXWKZNECDMG" : { - "QFJGATXWKZNECDMG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QFJGATXWKZNECDMG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QFJGATXWKZNECDMG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QFJGATXWKZNECDMG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.721 per Dedicated Windows BYOL c5.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "W7AKAG7V86UE38RF" : { - "W7AKAG7V86UE38RF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "W7AKAG7V86UE38RF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "W7AKAG7V86UE38RF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "W7AKAG7V86UE38RF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.332 per On Demand SQL Web c3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.3320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "H9KMFFHRW3R5NVSJ" : { - "H9KMFFHRW3R5NVSJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "H9KMFFHRW3R5NVSJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "H9KMFFHRW3R5NVSJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "H9KMFFHRW3R5NVSJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$20.811 per Dedicated Windows with SQL Server Enterprise x1e.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "20.8110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UKGSFRXY8AQU42DQ" : { - "UKGSFRXY8AQU42DQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UKGSFRXY8AQU42DQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UKGSFRXY8AQU42DQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UKGSFRXY8AQU42DQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows c5.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BGEHNPNUMJPPS6UY" : { - "BGEHNPNUMJPPS6UY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BGEHNPNUMJPPS6UY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BGEHNPNUMJPPS6UY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BGEHNPNUMJPPS6UY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows x1e.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "K8E96EKZVDS2C7SM" : { - "K8E96EKZVDS2C7SM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "K8E96EKZVDS2C7SM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "K8E96EKZVDS2C7SM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "K8E96EKZVDS2C7SM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL m4.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "M6T9NG7HTENPGTMK" : { - "M6T9NG7HTENPGTMK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "M6T9NG7HTENPGTMK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "M6T9NG7HTENPGTMK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "M6T9NG7HTENPGTMK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$20.676 per Dedicated Usage Windows with SQL Server Enterprise d2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "20.6760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "62G57MU6KCQ2AQS8" : { - "62G57MU6KCQ2AQS8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "62G57MU6KCQ2AQS8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "62G57MU6KCQ2AQS8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "62G57MU6KCQ2AQS8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.080 per On Demand RHEL t1.micro Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "378CVEQGDCKSJYEU" : { - "378CVEQGDCKSJYEU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "378CVEQGDCKSJYEU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "378CVEQGDCKSJYEU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "378CVEQGDCKSJYEU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows p2.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6NDY9AE4VQNGEMV4" : { - "6NDY9AE4VQNGEMV4.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6NDY9AE4VQNGEMV4", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6NDY9AE4VQNGEMV4.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6NDY9AE4VQNGEMV4.JRTCKXETXF.6YS6EN2CT7", - "description" : "$33.372 per Dedicated Windows with SQL Server Enterprise c5.18xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "33.3720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TT84KWCJTYXTFX54" : { - "TT84KWCJTYXTFX54.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TT84KWCJTYXTFX54", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TT84KWCJTYXTFX54.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TT84KWCJTYXTFX54.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.432 per Dedicated Windows with SQL Web c5.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "WN9SBQRYAU953YAV" : { - "WN9SBQRYAU953YAV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "WN9SBQRYAU953YAV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "WN9SBQRYAU953YAV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "WN9SBQRYAU953YAV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL c3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4WS6PX29WVZCPFGT" : { - "4WS6PX29WVZCPFGT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4WS6PX29WVZCPFGT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4WS6PX29WVZCPFGT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4WS6PX29WVZCPFGT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.270 per Dedicated Windows BYOL m2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RKCQDTMY5DZS4JWT" : { - "RKCQDTMY5DZS4JWT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RKCQDTMY5DZS4JWT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RKCQDTMY5DZS4JWT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RKCQDTMY5DZS4JWT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.980 per On Demand Linux m2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5P8A9S7FHZ9Q44SE" : { - "5P8A9S7FHZ9Q44SE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5P8A9S7FHZ9Q44SE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5P8A9S7FHZ9Q44SE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5P8A9S7FHZ9Q44SE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$24.48 per Dedicated Windows BYOL p3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "24.4800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EU9WUWRRH3Z8Z25B" : { - "EU9WUWRRH3Z8Z25B.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EU9WUWRRH3Z8Z25B", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EU9WUWRRH3Z8Z25B.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EU9WUWRRH3Z8Z25B.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows r3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2WVXMQUWAFQDPJNS" : { - "2WVXMQUWAFQDPJNS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2WVXMQUWAFQDPJNS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2WVXMQUWAFQDPJNS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2WVXMQUWAFQDPJNS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.532 per On Demand Windows with SQL Std m3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Q48JUPPFZD9KDMH3" : { - "Q48JUPPFZD9KDMH3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Q48JUPPFZD9KDMH3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Q48JUPPFZD9KDMH3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Q48JUPPFZD9KDMH3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.46 per Dedicated SUSE c5.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QG5G45WKDWDDHTFV" : { - "QG5G45WKDWDDHTFV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QG5G45WKDWDDHTFV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QG5G45WKDWDDHTFV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QG5G45WKDWDDHTFV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.0928 per On Demand Linux t2.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0928000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3A65FUFDYWGRUUNU" : { - "3A65FUFDYWGRUUNU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3A65FUFDYWGRUUNU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3A65FUFDYWGRUUNU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3A65FUFDYWGRUUNU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.686 per Dedicated Windows BYOL i3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TSQYYQMSKWVB64XU" : { - "TSQYYQMSKWVB64XU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TSQYYQMSKWVB64XU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TSQYYQMSKWVB64XU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TSQYYQMSKWVB64XU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.73 per On Demand RHEL g2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YP54Q9FFYE6AUN7A" : { - "YP54Q9FFYE6AUN7A.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YP54Q9FFYE6AUN7A", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YP54Q9FFYE6AUN7A.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YP54Q9FFYE6AUN7A.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.7183 per Dedicated Windows with SQL Std r4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7183000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZVXTQDHA6WPZ4MZA" : { - "ZVXTQDHA6WPZ4MZA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZVXTQDHA6WPZ4MZA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZVXTQDHA6WPZ4MZA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZVXTQDHA6WPZ4MZA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.05 for 1000 Mbps per c3.2xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3JTKQKQVWWVVZF93" : { - "3JTKQKQVWWVVZF93.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3JTKQKQVWWVVZF93", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3JTKQKQVWWVVZF93.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3JTKQKQVWWVVZF93.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE m4.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5MJUCCSSP8MZ34U5" : { - "5MJUCCSSP8MZ34U5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5MJUCCSSP8MZ34U5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5MJUCCSSP8MZ34U5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5MJUCCSSP8MZ34U5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.310 per On Demand SUSE c3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TUK52HKAU24AGZAB" : { - "TUK52HKAU24AGZAB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TUK52HKAU24AGZAB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TUK52HKAU24AGZAB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TUK52HKAU24AGZAB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.331 per On Demand Windows with SQL Web c4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4CYRKREB7U8REQP5" : { - "4CYRKREB7U8REQP5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4CYRKREB7U8REQP5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4CYRKREB7U8REQP5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4CYRKREB7U8REQP5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.374 per On Demand Windows with SQL Server Enterprise d2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "M3C347MWQ8PPQ83Q" : { - "M3C347MWQ8PPQ83Q.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "M3C347MWQ8PPQ83Q", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "M3C347MWQ8PPQ83Q.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "M3C347MWQ8PPQ83Q.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE c4.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7H3YAVFCE5P4TFBT" : { - "7H3YAVFCE5P4TFBT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7H3YAVFCE5P4TFBT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7H3YAVFCE5P4TFBT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7H3YAVFCE5P4TFBT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$15.012 per On Demand Windows with SQL Std c5.18xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.0120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PYM3KA9YWBXZT4WT" : { - "PYM3KA9YWBXZT4WT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PYM3KA9YWBXZT4WT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PYM3KA9YWBXZT4WT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PYM3KA9YWBXZT4WT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.765 per On Demand SUSE r3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "V9ZFC4WMNYSWFHRQ" : { - "V9ZFC4WMNYSWFHRQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "V9ZFC4WMNYSWFHRQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "V9ZFC4WMNYSWFHRQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "V9ZFC4WMNYSWFHRQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows d2.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UA3JWMHE5JCMQN3Z" : { - "UA3JWMHE5JCMQN3Z.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UA3JWMHE5JCMQN3Z", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UA3JWMHE5JCMQN3Z.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UA3JWMHE5JCMQN3Z.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.538 per Dedicated Usage SUSE c4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GN43Y4P6APPBFGM8" : { - "GN43Y4P6APPBFGM8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GN43Y4P6APPBFGM8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GN43Y4P6APPBFGM8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GN43Y4P6APPBFGM8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$8.523 per Dedicated SQL Std c3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.5230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UEJ864RYGQM7EWS4" : { - "UEJ864RYGQM7EWS4.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UEJ864RYGQM7EWS4", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UEJ864RYGQM7EWS4.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UEJ864RYGQM7EWS4.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.13 per On Demand Windows BYOL c1.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Z35WNPQJZZCRRJYH" : { - "Z35WNPQJZZCRRJYH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Z35WNPQJZZCRRJYH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Z35WNPQJZZCRRJYH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Z35WNPQJZZCRRJYH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.690 per On Demand Windows m2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SNK426EAU6XEHU6F" : { - "SNK426EAU6XEHU6F.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SNK426EAU6XEHU6F", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SNK426EAU6XEHU6F.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SNK426EAU6XEHU6F.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.22 per Dedicated Windows BYOL m4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5N3MEPSFNAD33R3K" : { - "5N3MEPSFNAD33R3K.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5N3MEPSFNAD33R3K", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5N3MEPSFNAD33R3K.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5N3MEPSFNAD33R3K.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.624 per On Demand Windows BYOL i3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9VUNFNF2X9X7UC95" : { - "9VUNFNF2X9X7UC95.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9VUNFNF2X9X7UC95", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9VUNFNF2X9X7UC95.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9VUNFNF2X9X7UC95.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE r3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MTH9HCPYR8DT5RJ2" : { - "MTH9HCPYR8DT5RJ2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MTH9HCPYR8DT5RJ2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MTH9HCPYR8DT5RJ2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MTH9HCPYR8DT5RJ2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.414 per Dedicated Windows c3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "W58JQDZKEMS87E3Y" : { - "W58JQDZKEMS87E3Y.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "W58JQDZKEMS87E3Y", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "W58JQDZKEMS87E3Y.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "W58JQDZKEMS87E3Y.JRTCKXETXF.6YS6EN2CT7", - "description" : "$26.688 per Dedicated Linux x1e.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "26.6880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XGBGHMXAG9HECAGE" : { - "XGBGHMXAG9HECAGE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XGBGHMXAG9HECAGE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XGBGHMXAG9HECAGE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XGBGHMXAG9HECAGE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows d2.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NQXBP3Y49DB4QUFW" : { - "NQXBP3Y49DB4QUFW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NQXBP3Y49DB4QUFW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NQXBP3Y49DB4QUFW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NQXBP3Y49DB4QUFW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std r3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HKQX2V6VYDVCQE4V" : { - "HKQX2V6VYDVCQE4V.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HKQX2V6VYDVCQE4V", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HKQX2V6VYDVCQE4V.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HKQX2V6VYDVCQE4V.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.000 per Dedicated Windows BYOL cc2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7WXY6Y9EMWKMGGWT" : { - "7WXY6Y9EMWKMGGWT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7WXY6Y9EMWKMGGWT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7WXY6Y9EMWKMGGWT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7WXY6Y9EMWKMGGWT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.466 per Dedicated Usage SUSE r3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6AHJNWJK7N3CKJ6D" : { - "6AHJNWJK7N3CKJ6D.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6AHJNWJK7N3CKJ6D", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6AHJNWJK7N3CKJ6D.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6AHJNWJK7N3CKJ6D.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.794 per On Demand Windows with SQL Web c5.9xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "77H9Y9KFP98VPQ8Y" : { - "77H9Y9KFP98VPQ8Y.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "77H9Y9KFP98VPQ8Y", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "77H9Y9KFP98VPQ8Y.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "77H9Y9KFP98VPQ8Y.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE r4.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PYHA3PVTP85MS7AS" : { - "PYHA3PVTP85MS7AS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PYHA3PVTP85MS7AS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PYHA3PVTP85MS7AS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PYHA3PVTP85MS7AS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise r3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "WWYHV89KB5YJVTSF" : { - "WWYHV89KB5YJVTSF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "WWYHV89KB5YJVTSF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "WWYHV89KB5YJVTSF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "WWYHV89KB5YJVTSF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.744 per Dedicated Windows with SQL Std i3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5QUVP6VPNFNBWMDW" : { - "5QUVP6VPNFNBWMDW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5QUVP6VPNFNBWMDW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5QUVP6VPNFNBWMDW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5QUVP6VPNFNBWMDW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.14 per On Demand Windows BYOL g3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FSV8GFFRA53K2PPC" : { - "FSV8GFFRA53K2PPC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FSV8GFFRA53K2PPC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FSV8GFFRA53K2PPC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FSV8GFFRA53K2PPC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per SUSE x1e.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "979YHCUCHTSAM3HF" : { - "979YHCUCHTSAM3HF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "979YHCUCHTSAM3HF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "979YHCUCHTSAM3HF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "979YHCUCHTSAM3HF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$6.920 per On Demand SUSE i2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.9200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5WWYB7MN3STCHEGY" : { - "5WWYB7MN3STCHEGY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5WWYB7MN3STCHEGY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5WWYB7MN3STCHEGY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5WWYB7MN3STCHEGY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL r4.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TJYZERFDZ38JVQQW" : { - "TJYZERFDZ38JVQQW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TJYZERFDZ38JVQQW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TJYZERFDZ38JVQQW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TJYZERFDZ38JVQQW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.998 per Dedicated RHEL i2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AYSR4P45C3BGQFUC" : { - "AYSR4P45C3BGQFUC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AYSR4P45C3BGQFUC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AYSR4P45C3BGQFUC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AYSR4P45C3BGQFUC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.864 per Dedicated Windows with SQL Server Enterprise c5.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PM7SF7GUUSEM94ZC" : { - "PM7SF7GUUSEM94ZC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PM7SF7GUUSEM94ZC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PM7SF7GUUSEM94ZC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PM7SF7GUUSEM94ZC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.14 per GB - Asia Pacific (Sydney) data transfer to US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.1400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8EJJ843PNMRKMSZC" : { - "8EJJ843PNMRKMSZC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8EJJ843PNMRKMSZC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8EJJ843PNMRKMSZC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8EJJ843PNMRKMSZC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.070 per On Demand SQL Web t1.micro Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SM2N6WCVK5EXAYJ9" : { - "SM2N6WCVK5EXAYJ9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SM2N6WCVK5EXAYJ9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SM2N6WCVK5EXAYJ9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SM2N6WCVK5EXAYJ9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.840 per On Demand Windows c1.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CGJXHFUSGE546RV6" : { - "CGJXHFUSGE546RV6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CGJXHFUSGE546RV6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CGJXHFUSGE546RV6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CGJXHFUSGE546RV6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.133 per On Demand Linux r4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3ARUYSTGB7ZSA582" : { - "3ARUYSTGB7ZSA582.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3ARUYSTGB7ZSA582", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3ARUYSTGB7ZSA582.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3ARUYSTGB7ZSA582.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.05 for 1000 Mbps per m2.4xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "K4QSF4H4QQGJSSK7" : { - "K4QSF4H4QQGJSSK7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "K4QSF4H4QQGJSSK7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "K4QSF4H4QQGJSSK7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "K4QSF4H4QQGJSSK7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$14.53 per On Demand RHEL p2.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.5300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5GXT3Y9MYUCWS59J" : { - "5GXT3Y9MYUCWS59J.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5GXT3Y9MYUCWS59J", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5GXT3Y9MYUCWS59J.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5GXT3Y9MYUCWS59J.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux m3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HZEF7XT3HAKD5NEZ" : { - "HZEF7XT3HAKD5NEZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HZEF7XT3HAKD5NEZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HZEF7XT3HAKD5NEZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HZEF7XT3HAKD5NEZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.183 per Dedicated Usage Linux r3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JVT9JXEVPBRUMA3N" : { - "JVT9JXEVPBRUMA3N.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JVT9JXEVPBRUMA3N", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JVT9JXEVPBRUMA3N.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JVT9JXEVPBRUMA3N.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.156 per On Demand Linux i3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5R3VUZC6A5EED78S" : { - "5R3VUZC6A5EED78S.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5R3VUZC6A5EED78S", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5R3VUZC6A5EED78S.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5R3VUZC6A5EED78S.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.518 per On Demand Windows with SQL Server Enterprise x1e.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "D9S2YAG2HUF7C3PC" : { - "D9S2YAG2HUF7C3PC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "D9S2YAG2HUF7C3PC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "D9S2YAG2HUF7C3PC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "D9S2YAG2HUF7C3PC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.074 per Dedicated Usage Linux m3.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MJJTVPTXAH26VK8A" : { - "MJJTVPTXAH26VK8A.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MJJTVPTXAH26VK8A", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MJJTVPTXAH26VK8A.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MJJTVPTXAH26VK8A.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.11 per Dedicated Usage Windows BYOL c4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2ZE6H5B8N6EJTXEZ" : { - "2ZE6H5B8N6EJTXEZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2ZE6H5B8N6EJTXEZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2ZE6H5B8N6EJTXEZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2ZE6H5B8N6EJTXEZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.38 per On Demand Windows BYOL d2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "85VBBX5K6EY4TRRG" : { - "85VBBX5K6EY4TRRG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "85VBBX5K6EY4TRRG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "85VBBX5K6EY4TRRG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "85VBBX5K6EY4TRRG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.516 per Dedicated Usage Windows with SQL Std r3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UFN38GHQREY7C7SB" : { - "UFN38GHQREY7C7SB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UFN38GHQREY7C7SB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UFN38GHQREY7C7SB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UFN38GHQREY7C7SB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL p2.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "T55J69CYMKUV3MQC" : { - "T55J69CYMKUV3MQC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "T55J69CYMKUV3MQC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "T55J69CYMKUV3MQC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "T55J69CYMKUV3MQC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.15 per Dedicated Usage Windows r3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4EJ6YKYP3U22GDYZ" : { - "4EJ6YKYP3U22GDYZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4EJ6YKYP3U22GDYZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4EJ6YKYP3U22GDYZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4EJ6YKYP3U22GDYZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.53 per On Demand Linux c5.9xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3XXW5XAES8B7AAAP" : { - "3XXW5XAES8B7AAAP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3XXW5XAES8B7AAAP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3XXW5XAES8B7AAAP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3XXW5XAES8B7AAAP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.341 per Dedicated Usage Linux r4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZU8N8MJR36FHWUGA" : { - "ZU8N8MJR36FHWUGA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZU8N8MJR36FHWUGA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZU8N8MJR36FHWUGA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZU8N8MJR36FHWUGA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.230 per On Demand RHEL cg1.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "R9EGFXUGURH2UNA2" : { - "R9EGFXUGURH2UNA2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "R9EGFXUGURH2UNA2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "R9EGFXUGURH2UNA2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "R9EGFXUGURH2UNA2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.059 per Dedicated Usage Windows with SQL Std c4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ATA6MJZDUQ53CRMP" : { - "ATA6MJZDUQ53CRMP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ATA6MJZDUQ53CRMP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ATA6MJZDUQ53CRMP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ATA6MJZDUQ53CRMP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.261 per Dedicated SQL Web m1.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "P2X2N5M2PU9A9XS4" : { - "P2X2N5M2PU9A9XS4.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "P2X2N5M2PU9A9XS4", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "P2X2N5M2PU9A9XS4.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "P2X2N5M2PU9A9XS4.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.825 per Dedicated Usage RHEL d2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "63ADXUYM8Q7RHXYU" : { - "63ADXUYM8Q7RHXYU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "63ADXUYM8Q7RHXYU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "63ADXUYM8Q7RHXYU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "63ADXUYM8Q7RHXYU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$5.65 per On Demand RHEL d2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.6500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YMRN5MTGT97CSMR5" : { - "YMRN5MTGT97CSMR5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YMRN5MTGT97CSMR5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YMRN5MTGT97CSMR5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YMRN5MTGT97CSMR5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.167 per On Demand SUSE m3.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YY6BTZ5HW8FD5V6Q" : { - "YY6BTZ5HW8FD5V6Q.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YY6BTZ5HW8FD5V6Q", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YY6BTZ5HW8FD5V6Q.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YY6BTZ5HW8FD5V6Q.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE d2.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Z73XYJRRH5CMMR8R" : { - "Z73XYJRRH5CMMR8R.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Z73XYJRRH5CMMR8R", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Z73XYJRRH5CMMR8R.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Z73XYJRRH5CMMR8R.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.687 per Dedicated Usage Windows with SQL Web c4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VMRHNZ3YYYGM22ZW" : { - "VMRHNZ3YYYGM22ZW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VMRHNZ3YYYGM22ZW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VMRHNZ3YYYGM22ZW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VMRHNZ3YYYGM22ZW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.86 per On Demand G2 Dedicated Host Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FCJS875MBNBNKGZB" : { - "FCJS875MBNBNKGZB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FCJS875MBNBNKGZB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FCJS875MBNBNKGZB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FCJS875MBNBNKGZB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Web x1e.32xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZQ8ZP9Y9DGFD6M45" : { - "ZQ8ZP9Y9DGFD6M45.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZQ8ZP9Y9DGFD6M45", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZQ8ZP9Y9DGFD6M45.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZQ8ZP9Y9DGFD6M45.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.949 per Dedicated Windows with SQL Web m4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YHVCZK7UAVDZMX92" : { - "YHVCZK7UAVDZMX92.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YHVCZK7UAVDZMX92", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YHVCZK7UAVDZMX92.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YHVCZK7UAVDZMX92.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.410 per Dedicated SQL Std cc2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.4100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FP9695TT873RFND7" : { - "FP9695TT873RFND7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FP9695TT873RFND7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FP9695TT873RFND7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FP9695TT873RFND7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.591 per Dedicated Usage Linux c4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YPB7U95RTVHKX59T" : { - "YPB7U95RTVHKX59T.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YPB7U95RTVHKX59T", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YPB7U95RTVHKX59T.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YPB7U95RTVHKX59T.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Web c5.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DJHEPZFBQWFDH3PZ" : { - "DJHEPZFBQWFDH3PZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DJHEPZFBQWFDH3PZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DJHEPZFBQWFDH3PZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DJHEPZFBQWFDH3PZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per RHEL f1.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QTBCAR9ZB82ZM54B" : { - "QTBCAR9ZB82ZM54B.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QTBCAR9ZB82ZM54B", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QTBCAR9ZB82ZM54B.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QTBCAR9ZB82ZM54B.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web m4.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SVSVP5FJUTSNJXNJ" : { - "SVSVP5FJUTSNJXNJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SVSVP5FJUTSNJXNJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SVSVP5FJUTSNJXNJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SVSVP5FJUTSNJXNJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per RHEL x1e.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZY733QB4MX5V3J68" : { - "ZY733QB4MX5V3J68.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZY733QB4MX5V3J68", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZY733QB4MX5V3J68.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZY733QB4MX5V3J68.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.0716 per On Demand RHEL t2.micro Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0716000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9HFHK6RECZZ4W92B" : { - "9HFHK6RECZZ4W92B.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9HFHK6RECZZ4W92B", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9HFHK6RECZZ4W92B.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9HFHK6RECZZ4W92B.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.018 per On Demand Windows x1e.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NA5BT4DMBGMMK5MT" : { - "NA5BT4DMBGMMK5MT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NA5BT4DMBGMMK5MT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NA5BT4DMBGMMK5MT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NA5BT4DMBGMMK5MT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.005 per Additional Elastic IP address attached to a running instance per hour (prorated)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8CXE6S2Y9CVQRTRQ" : { - "8CXE6S2Y9CVQRTRQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8CXE6S2Y9CVQRTRQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8CXE6S2Y9CVQRTRQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8CXE6S2Y9CVQRTRQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.341 per On Demand M3 Dedicated Host Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AD2QCCRBSPBJMXXV" : { - "AD2QCCRBSPBJMXXV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AD2QCCRBSPBJMXXV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AD2QCCRBSPBJMXXV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AD2QCCRBSPBJMXXV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.044 per On Demand Windows BYOL m1.small Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GXJXWPH2ZPJQ8XXJ" : { - "GXJXWPH2ZPJQ8XXJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GXJXWPH2ZPJQ8XXJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GXJXWPH2ZPJQ8XXJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GXJXWPH2ZPJQ8XXJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows r4.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "U69YCUGUWRE45CVF" : { - "U69YCUGUWRE45CVF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "U69YCUGUWRE45CVF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "U69YCUGUWRE45CVF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "U69YCUGUWRE45CVF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.715 per Dedicated Linux g2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TCSVX6EBPRF578KP" : { - "TCSVX6EBPRF578KP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TCSVX6EBPRF578KP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TCSVX6EBPRF578KP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TCSVX6EBPRF578KP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per RHEL x1e.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9DK6BK45W6CJ9A5X" : { - "9DK6BK45W6CJ9A5X.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9DK6BK45W6CJ9A5X", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9DK6BK45W6CJ9A5X.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9DK6BK45W6CJ9A5X.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.165 per On Demand RHEL c3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2EKFX2CKSTAYWT4G" : { - "2EKFX2CKSTAYWT4G.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2EKFX2CKSTAYWT4G", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2EKFX2CKSTAYWT4G.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2EKFX2CKSTAYWT4G.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.854 per On Demand Windows with SQL Server Enterprise c5.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZDQ8JPG9VUPFXHXJ" : { - "ZDQ8JPG9VUPFXHXJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZDQ8JPG9VUPFXHXJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZDQ8JPG9VUPFXHXJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZDQ8JPG9VUPFXHXJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$13.444 per On Demand SUSE x1e.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.4440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3A8W7GXJJKZB5V45" : { - "3A8W7GXJJKZB5V45.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3A8W7GXJJKZB5V45", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3A8W7GXJJKZB5V45.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3A8W7GXJJKZB5V45.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.253 per Dedicated RHEL m1.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9MCJXY6ZTFBSRNZB" : { - "9MCJXY6ZTFBSRNZB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9MCJXY6ZTFBSRNZB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9MCJXY6ZTFBSRNZB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9MCJXY6ZTFBSRNZB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.130 per On Demand RHEL cc2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CXWQTSDJMF3AP864" : { - "CXWQTSDJMF3AP864.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CXWQTSDJMF3AP864", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CXWQTSDJMF3AP864.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CXWQTSDJMF3AP864.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.945 per Dedicated RHEL f1.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "X67HWFH8QVT6NSW7" : { - "X67HWFH8QVT6NSW7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "X67HWFH8QVT6NSW7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "X67HWFH8QVT6NSW7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "X67HWFH8QVT6NSW7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.02 per GB - US East (Northern Virginia) data transfer to South America (Sao Paulo)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RTF2UNENTQNKBZS3" : { - "RTF2UNENTQNKBZS3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RTF2UNENTQNKBZS3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RTF2UNENTQNKBZS3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RTF2UNENTQNKBZS3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.266 per On Demand Windows with SQL Web i3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "84EGZ3JUNG2TSSNT" : { - "84EGZ3JUNG2TSSNT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "84EGZ3JUNG2TSSNT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "84EGZ3JUNG2TSSNT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "84EGZ3JUNG2TSSNT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL r4.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JRQSPKHTPKSDNFSM" : { - "JRQSPKHTPKSDNFSM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JRQSPKHTPKSDNFSM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JRQSPKHTPKSDNFSM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JRQSPKHTPKSDNFSM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.456 per On Demand Windows with SQL Std m4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GSFCFZ283SFGMM8F" : { - "GSFCFZ283SFGMM8F.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GSFCFZ283SFGMM8F", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GSFCFZ283SFGMM8F.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GSFCFZ283SFGMM8F.JRTCKXETXF.6YS6EN2CT7", - "description" : "$6.144 per Dedicated Windows m4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.1440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "B36TB4HQKCE3PSVX" : { - "B36TB4HQKCE3PSVX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "B36TB4HQKCE3PSVX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "B36TB4HQKCE3PSVX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "B36TB4HQKCE3PSVX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per GB - Asia Pacific (Mumbai) data transfer from US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Z8YWRZHR75GJ2KSV" : { - "Z8YWRZHR75GJ2KSV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Z8YWRZHR75GJ2KSV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Z8YWRZHR75GJ2KSV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Z8YWRZHR75GJ2KSV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.850 per On Demand SQL Std cg1.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "X894WEFHKGGUVR52" : { - "X894WEFHKGGUVR52.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "X894WEFHKGGUVR52", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "X894WEFHKGGUVR52.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "X894WEFHKGGUVR52.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.66 per Dedicated Usage Linux r3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VMVDDQB5JVUS29SY" : { - "VMVDDQB5JVUS29SY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VMVDDQB5JVUS29SY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VMVDDQB5JVUS29SY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VMVDDQB5JVUS29SY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.218 per Dedicated Windows i3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZK49TH4Z5ZFFPMXJ" : { - "ZK49TH4Z5ZFFPMXJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZK49TH4Z5ZFFPMXJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZK49TH4Z5ZFFPMXJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZK49TH4Z5ZFFPMXJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.100 per Dedicated Linux cg1.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PA99ECAE74DADX5J" : { - "PA99ECAE74DADX5J.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PA99ECAE74DADX5J", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PA99ECAE74DADX5J.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PA99ECAE74DADX5J.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.991 per Dedicated Usage Windows with SQL Web c4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "883Q8VPBXGCX7MQC" : { - "883Q8VPBXGCX7MQC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "883Q8VPBXGCX7MQC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "883Q8VPBXGCX7MQC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "883Q8VPBXGCX7MQC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std i2.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6MAMZMQ6FM3UK7P6" : { - "6MAMZMQ6FM3UK7P6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6MAMZMQ6FM3UK7P6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6MAMZMQ6FM3UK7P6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6MAMZMQ6FM3UK7P6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.258 per On Demand RHEL r4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9V4P3HXFJR9R93QT" : { - "9V4P3HXFJR9R93QT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9V4P3HXFJR9R93QT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9V4P3HXFJR9R93QT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9V4P3HXFJR9R93QT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.064 per On Demand Windows BYOL r4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5TGRKMTBQMH42KUS" : { - "5TGRKMTBQMH42KUS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5TGRKMTBQMH42KUS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5TGRKMTBQMH42KUS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5TGRKMTBQMH42KUS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.373 per Dedicated Linux i3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "385FHNM4MG8P3KGR" : { - "385FHNM4MG8P3KGR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "385FHNM4MG8P3KGR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "385FHNM4MG8P3KGR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "385FHNM4MG8P3KGR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$10.487 per Dedicated Usage Windows with SQL Server Enterprise i2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.4870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2T92AZQGNFAQHEXW" : { - "2T92AZQGNFAQHEXW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2T92AZQGNFAQHEXW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2T92AZQGNFAQHEXW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2T92AZQGNFAQHEXW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.02 per GB - US East (Northern Virginia) data transfer to Asia Pacific (Singapore)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "33PWMNWFU7HHUVCS" : { - "33PWMNWFU7HHUVCS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "33PWMNWFU7HHUVCS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "33PWMNWFU7HHUVCS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "33PWMNWFU7HHUVCS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Std i3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MU4QGTJYWR6T73MZ" : { - "MU4QGTJYWR6T73MZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MU4QGTJYWR6T73MZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MU4QGTJYWR6T73MZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MU4QGTJYWR6T73MZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.705 per On Demand Linux i2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "V6W3V2B2AEWTCSUG" : { - "V6W3V2B2AEWTCSUG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "V6W3V2B2AEWTCSUG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "V6W3V2B2AEWTCSUG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "V6W3V2B2AEWTCSUG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows c5.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8SPMKN7PWFUUUK25" : { - "8SPMKN7PWFUUUK25.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8SPMKN7PWFUUUK25", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8SPMKN7PWFUUUK25.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8SPMKN7PWFUUUK25.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.926 per On Demand RHEL c4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2YVYS3RPY25EY4XR" : { - "2YVYS3RPY25EY4XR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2YVYS3RPY25EY4XR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2YVYS3RPY25EY4XR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2YVYS3RPY25EY4XR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE m4.10xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YQXXJJ49N744B7HM" : { - "YQXXJJ49N744B7HM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YQXXJJ49N744B7HM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YQXXJJ49N744B7HM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YQXXJJ49N744B7HM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.259 per Dedicated Linux p3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "K7D23FF53A36EYWB" : { - "K7D23FF53A36EYWB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "K7D23FF53A36EYWB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "K7D23FF53A36EYWB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "K7D23FF53A36EYWB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows r4.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5KPPP37EUJ6SDK38" : { - "5KPPP37EUJ6SDK38.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5KPPP37EUJ6SDK38", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5KPPP37EUJ6SDK38.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5KPPP37EUJ6SDK38.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.768 per On Demand Windows with SQL Server Enterprise m4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "87S4RVHRSZ8J8ZD5" : { - "87S4RVHRSZ8J8ZD5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "87S4RVHRSZ8J8ZD5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "87S4RVHRSZ8J8ZD5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "87S4RVHRSZ8J8ZD5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Linux c5.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CW2JQMRMB2W7GWB3" : { - "CW2JQMRMB2W7GWB3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CW2JQMRMB2W7GWB3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CW2JQMRMB2W7GWB3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CW2JQMRMB2W7GWB3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.468 per On Demand Windows with SQL Web m3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DNQP3UURB2QMZNV3" : { - "DNQP3UURB2QMZNV3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DNQP3UURB2QMZNV3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DNQP3UURB2QMZNV3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DNQP3UURB2QMZNV3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.410 per On Demand RHEL m1.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YZU87WTY449E2C2T" : { - "YZU87WTY449E2C2T.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YZU87WTY449E2C2T", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YZU87WTY449E2C2T.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YZU87WTY449E2C2T.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 for 4500 Mbps per c5.9xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "WD5HZXPHH8Z3VFSD" : { - "WD5HZXPHH8Z3VFSD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "WD5HZXPHH8Z3VFSD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "WD5HZXPHH8Z3VFSD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "WD5HZXPHH8Z3VFSD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.539 per Dedicated Windows BYOL m2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HSDKMG6XBMBSSBZ9" : { - "HSDKMG6XBMBSSBZ9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HSDKMG6XBMBSSBZ9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HSDKMG6XBMBSSBZ9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HSDKMG6XBMBSSBZ9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web i2.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JWPZDXTPDMBACQS9" : { - "JWPZDXTPDMBACQS9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JWPZDXTPDMBACQS9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JWPZDXTPDMBACQS9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JWPZDXTPDMBACQS9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux c3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2G7QY8K5DB7ZC8PD" : { - "2G7QY8K5DB7ZC8PD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2G7QY8K5DB7ZC8PD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2G7QY8K5DB7ZC8PD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2G7QY8K5DB7ZC8PD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.616 per Dedicated Windows with SQL Server Enterprise m4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.6160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QSNKQ8P78YXPTAH8" : { - "QSNKQ8P78YXPTAH8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QSNKQ8P78YXPTAH8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QSNKQ8P78YXPTAH8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QSNKQ8P78YXPTAH8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.532 per On Demand Linux m3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TAUPPUG4Z5RWGJYB" : { - "TAUPPUG4Z5RWGJYB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TAUPPUG4Z5RWGJYB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TAUPPUG4Z5RWGJYB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TAUPPUG4Z5RWGJYB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.393 per On Demand RHEL r3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GCJMZVKZNG7MAKT4" : { - "GCJMZVKZNG7MAKT4.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GCJMZVKZNG7MAKT4", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GCJMZVKZNG7MAKT4.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GCJMZVKZNG7MAKT4.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.462 per Dedicated Windows BYOL c3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "WBC9QMDGSSY2UNJA" : { - "WBC9QMDGSSY2UNJA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "WBC9QMDGSSY2UNJA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "WBC9QMDGSSY2UNJA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "WBC9QMDGSSY2UNJA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 for 10 Gbps per p2.16xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BZBTYKT6J87853AW" : { - "BZBTYKT6J87853AW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BZBTYKT6J87853AW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BZBTYKT6J87853AW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BZBTYKT6J87853AW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.203 per Dedicated RHEL c1.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4HTGDWXZE6KRTGSR" : { - "4HTGDWXZE6KRTGSR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4HTGDWXZE6KRTGSR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4HTGDWXZE6KRTGSR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4HTGDWXZE6KRTGSR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.193 per On Demand RHEL m3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VJ2DAWV6S9PPWZZA" : { - "VJ2DAWV6S9PPWZZA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VJ2DAWV6S9PPWZZA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VJ2DAWV6S9PPWZZA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VJ2DAWV6S9PPWZZA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std g2.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Q65EXUN6VVKKRUQ6" : { - "Q65EXUN6VVKKRUQ6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Q65EXUN6VVKKRUQ6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Q65EXUN6VVKKRUQ6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Q65EXUN6VVKKRUQ6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.254 per Dedicated Linux g3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NE4JZMMMGJZH869R" : { - "NE4JZMMMGJZH869R.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NE4JZMMMGJZH869R", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NE4JZMMMGJZH869R.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NE4JZMMMGJZH869R.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.17 per On Demand Windows BYOL c5.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XP7U4PW6TG4NXAZS" : { - "XP7U4PW6TG4NXAZS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XP7U4PW6TG4NXAZS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XP7U4PW6TG4NXAZS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XP7U4PW6TG4NXAZS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise m4.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "P4TPDGNQH5SAQPSP" : { - "P4TPDGNQH5SAQPSP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "P4TPDGNQH5SAQPSP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "P4TPDGNQH5SAQPSP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "P4TPDGNQH5SAQPSP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.536 per On Demand Windows m4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "43SVRH2NZVAKYEXT" : { - "43SVRH2NZVAKYEXT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "43SVRH2NZVAKYEXT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "43SVRH2NZVAKYEXT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "43SVRH2NZVAKYEXT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.01 per GB - US East (Ohio) data transfer to US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VW78UGRTYRQ6EVC9" : { - "VW78UGRTYRQ6EVC9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VW78UGRTYRQ6EVC9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VW78UGRTYRQ6EVC9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VW78UGRTYRQ6EVC9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.266 per On Demand Windows BYOL r4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CDV3MB4FK98PAYP9" : { - "CDV3MB4FK98PAYP9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CDV3MB4FK98PAYP9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CDV3MB4FK98PAYP9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CDV3MB4FK98PAYP9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL c4.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5CS4EJVK2TSXGHNX" : { - "5CS4EJVK2TSXGHNX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5CS4EJVK2TSXGHNX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5CS4EJVK2TSXGHNX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5CS4EJVK2TSXGHNX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$13.468 per On Demand RHEL x1.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.4680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MC5VZN6RJJJRB2CW" : { - "MC5VZN6RJJJRB2CW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MC5VZN6RJJJRB2CW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MC5VZN6RJJJRB2CW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MC5VZN6RJJJRB2CW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.100 per On Demand SUSE cc2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AKXXTUNGEUFY2NYA" : { - "AKXXTUNGEUFY2NYA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AKXXTUNGEUFY2NYA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AKXXTUNGEUFY2NYA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AKXXTUNGEUFY2NYA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.296 per On Demand Windows with SQL Web c4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "H9V234B3K9QAR4NJ" : { - "H9V234B3K9QAR4NJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "H9V234B3K9QAR4NJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "H9V234B3K9QAR4NJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "H9V234B3K9QAR4NJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.174 per Dedicated Usage Windows p2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GPTGBM5JNED7SKZW" : { - "GPTGBM5JNED7SKZW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GPTGBM5JNED7SKZW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GPTGBM5JNED7SKZW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GPTGBM5JNED7SKZW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.391 per Dedicated Windows with SQL Web i3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ASDZTDFMC5425T7P" : { - "ASDZTDFMC5425T7P.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ASDZTDFMC5425T7P", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ASDZTDFMC5425T7P.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ASDZTDFMC5425T7P.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.067 per On Demand Linux m3.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2Y6EVK4CR7GZUMHR" : { - "2Y6EVK4CR7GZUMHR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2Y6EVK4CR7GZUMHR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2Y6EVK4CR7GZUMHR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2Y6EVK4CR7GZUMHR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.259 per On Demand Windows m3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JKUR5KFWCTQXCJKH" : { - "JKUR5KFWCTQXCJKH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JKUR5KFWCTQXCJKH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JKUR5KFWCTQXCJKH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JKUR5KFWCTQXCJKH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.1 per Dedicated Usage Windows with SQL Server Enterprise r3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NVQ292F84D694PKT" : { - "NVQ292F84D694PKT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NVQ292F84D694PKT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NVQ292F84D694PKT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NVQ292F84D694PKT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.226 per On Demand RHEL r3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GKGWHEUHTS4PWNPE" : { - "GKGWHEUHTS4PWNPE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GKGWHEUHTS4PWNPE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GKGWHEUHTS4PWNPE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GKGWHEUHTS4PWNPE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL i2.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SMTM4XWYH27FGA26" : { - "SMTM4XWYH27FGA26.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SMTM4XWYH27FGA26", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SMTM4XWYH27FGA26.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SMTM4XWYH27FGA26.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.198 per Dedicated SQL Std g2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.1980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3UP33R2RXCADSPSX" : { - "3UP33R2RXCADSPSX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3UP33R2RXCADSPSX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3UP33R2RXCADSPSX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3UP33R2RXCADSPSX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.80 per On Demand Linux m4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YN9T2DVCE7TVTX8J" : { - "YN9T2DVCE7TVTX8J.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YN9T2DVCE7TVTX8J", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YN9T2DVCE7TVTX8J.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YN9T2DVCE7TVTX8J.JRTCKXETXF.6YS6EN2CT7", - "description" : "$5.491 per On Demand I3 Dedicated Host Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.4910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JNYSB2CFFU532DFN" : { - "JNYSB2CFFU532DFN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JNYSB2CFFU532DFN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JNYSB2CFFU532DFN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JNYSB2CFFU532DFN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.02 per GB - US East (Northern Virginia) data transfer to EU (London)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NCNT25B6JEQBVF9P" : { - "NCNT25B6JEQBVF9P.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NCNT25B6JEQBVF9P", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NCNT25B6JEQBVF9P.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NCNT25B6JEQBVF9P.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web r4.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "F7E2CXKVAY923NDJ" : { - "F7E2CXKVAY923NDJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "F7E2CXKVAY923NDJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "F7E2CXKVAY923NDJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "F7E2CXKVAY923NDJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows m3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "H7FHBN6ZTC6EJQ2N" : { - "H7FHBN6ZTC6EJQ2N.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "H7FHBN6ZTC6EJQ2N", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "H7FHBN6ZTC6EJQ2N.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "H7FHBN6ZTC6EJQ2N.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.846 per Dedicated SUSE i3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5RDXQSEVV5YEEYS6" : { - "5RDXQSEVV5YEEYS6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5RDXQSEVV5YEEYS6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5RDXQSEVV5YEEYS6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5RDXQSEVV5YEEYS6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE r3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MC5Y8Q7EUMRZTRZE" : { - "MC5Y8Q7EUMRZTRZE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MC5Y8Q7EUMRZTRZE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MC5Y8Q7EUMRZTRZE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MC5Y8Q7EUMRZTRZE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.808 per On Demand Windows with SQL Std i3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.8080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JRFGUQ324DZG472D" : { - "JRFGUQ324DZG472D.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JRFGUQ324DZG472D", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JRFGUQ324DZG472D.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JRFGUQ324DZG472D.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web c4.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "S6MPFZZYQH2JQDPJ" : { - "S6MPFZZYQH2JQDPJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "S6MPFZZYQH2JQDPJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "S6MPFZZYQH2JQDPJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "S6MPFZZYQH2JQDPJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Std c5.18xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YAQ9JKWS8Q8NSPYJ" : { - "YAQ9JKWS8Q8NSPYJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YAQ9JKWS8Q8NSPYJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YAQ9JKWS8Q8NSPYJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YAQ9JKWS8Q8NSPYJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.1918 per On Demand Windows with SQL Web t2.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1918000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3GAF7GUVFB6WDJQR" : { - "3GAF7GUVFB6WDJQR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3GAF7GUVFB6WDJQR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3GAF7GUVFB6WDJQR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3GAF7GUVFB6WDJQR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.344 per Dedicated SQL Std c3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "B7KQBWQQMASEJN3N" : { - "B7KQBWQQMASEJN3N.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "B7KQBWQQMASEJN3N", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "B7KQBWQQMASEJN3N.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "B7KQBWQQMASEJN3N.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.814 per On Demand Windows with SQL Web c4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "D8R4U4YGJ7FBAM9V" : { - "D8R4U4YGJ7FBAM9V.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "D8R4U4YGJ7FBAM9V", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "D8R4U4YGJ7FBAM9V.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "D8R4U4YGJ7FBAM9V.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.855 per On Demand Windows with SQL Web r3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SSME5U3BWQXEH2ES" : { - "SSME5U3BWQXEH2ES.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SSME5U3BWQXEH2ES", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SSME5U3BWQXEH2ES.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SSME5U3BWQXEH2ES.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.078 per Dedicated SUSE m1.small Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VWMNXYV7FJNWU55C" : { - "VWMNXYV7FJNWU55C.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VWMNXYV7FJNWU55C", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VWMNXYV7FJNWU55C.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VWMNXYV7FJNWU55C.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.672 per Dedicated SUSE c1.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PYCJPPPYA7FXP2KM" : { - "PYCJPPPYA7FXP2KM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PYCJPPPYA7FXP2KM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PYCJPPPYA7FXP2KM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PYCJPPPYA7FXP2KM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 for 450 Mbps per m4.large instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7J6XFQYCHJDQXR63" : { - "7J6XFQYCHJDQXR63.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7J6XFQYCHJDQXR63", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7J6XFQYCHJDQXR63.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7J6XFQYCHJDQXR63.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.66 per On Demand Windows BYOL r3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YGKQRRYEKC2NTSQT" : { - "YGKQRRYEKC2NTSQT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YGKQRRYEKC2NTSQT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YGKQRRYEKC2NTSQT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YGKQRRYEKC2NTSQT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.10 for 2000 Mbps per c3.4xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TD3RKXS2B3BMGKXR" : { - "TD3RKXS2B3BMGKXR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TD3RKXS2B3BMGKXR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TD3RKXS2B3BMGKXR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TD3RKXS2B3BMGKXR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows i3.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AG87TQB4PQQPZXFK" : { - "AG87TQB4PQQPZXFK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AG87TQB4PQQPZXFK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AG87TQB4PQQPZXFK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AG87TQB4PQQPZXFK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.0232 per On Demand Windows BYOL t2.small Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QMCSUNX7MQVY9UVN" : { - "QMCSUNX7MQVY9UVN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QMCSUNX7MQVY9UVN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QMCSUNX7MQVY9UVN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QMCSUNX7MQVY9UVN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.291 per On Demand Windows r3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SGCXRY4DA899SRWQ" : { - "SGCXRY4DA899SRWQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SGCXRY4DA899SRWQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SGCXRY4DA899SRWQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SGCXRY4DA899SRWQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL p2.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QNBV9PBG5RAKHKFW" : { - "QNBV9PBG5RAKHKFW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QNBV9PBG5RAKHKFW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QNBV9PBG5RAKHKFW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QNBV9PBG5RAKHKFW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.93 per On Demand RHEL m4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "T9G44MU9TAHQW69C" : { - "T9G44MU9TAHQW69C.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "T9G44MU9TAHQW69C", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "T9G44MU9TAHQW69C.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "T9G44MU9TAHQW69C.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL d2.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9J54RV93FDP84TGG" : { - "9J54RV93FDP84TGG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9J54RV93FDP84TGG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9J54RV93FDP84TGG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9J54RV93FDP84TGG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$9.772 per Dedicated Usage Windows with SQL Server Enterprise d2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.7720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3CAET66XVXDZHGQY" : { - "3CAET66XVXDZHGQY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3CAET66XVXDZHGQY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3CAET66XVXDZHGQY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3CAET66XVXDZHGQY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.310 per On Demand SQL Web c1.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "F7MKSFT7MRGHJF5U" : { - "F7MKSFT7MRGHJF5U.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "F7MKSFT7MRGHJF5U", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "F7MKSFT7MRGHJF5U.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "F7MKSFT7MRGHJF5U.JRTCKXETXF.6YS6EN2CT7", - "description" : "$41.344 per On Demand Windows with SQL Server Enterprise p2.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "41.3440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CDK4SMXRA7K87J58" : { - "CDK4SMXRA7K87J58.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CDK4SMXRA7K87J58", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CDK4SMXRA7K87J58.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CDK4SMXRA7K87J58.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.146 per Dedicated Usage Linux m3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ARQG8GDGKQUYVY5C" : { - "ARQG8GDGKQUYVY5C.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ARQG8GDGKQUYVY5C", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ARQG8GDGKQUYVY5C.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ARQG8GDGKQUYVY5C.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Server Enterprise c5.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NUMNVV4X9PJW42JH" : { - "NUMNVV4X9PJW42JH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NUMNVV4X9PJW42JH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NUMNVV4X9PJW42JH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NUMNVV4X9PJW42JH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.389 per Dedicated RHEL p3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZA8X9PK3KYPXZSEC" : { - "ZA8X9PK3KYPXZSEC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZA8X9PK3KYPXZSEC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZA8X9PK3KYPXZSEC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZA8X9PK3KYPXZSEC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL r3.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "T8WDU2BB3QKC577Z" : { - "T8WDU2BB3QKC577Z.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "T8WDU2BB3QKC577Z", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "T8WDU2BB3QKC577Z.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "T8WDU2BB3QKC577Z.JRTCKXETXF.6YS6EN2CT7", - "description" : "$6.920 per Dedicated SUSE i2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.9200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MUSDPAYU48C7WCHN" : { - "MUSDPAYU48C7WCHN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MUSDPAYU48C7WCHN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MUSDPAYU48C7WCHN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MUSDPAYU48C7WCHN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.143 per Dedicated Linux c1.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZS7S83VF4T4BSSC4" : { - "ZS7S83VF4T4BSSC4.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZS7S83VF4T4BSSC4", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZS7S83VF4T4BSSC4.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZS7S83VF4T4BSSC4.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.341 per Dedicated Usage Windows BYOL r4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "J7CC798XUX322NAB" : { - "J7CC798XUX322NAB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "J7CC798XUX322NAB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "J7CC798XUX322NAB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "J7CC798XUX322NAB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 for 9000 Mbps per c5.18xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3GCSD3HHQWFGV39C" : { - "3GCSD3HHQWFGV39C.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3GCSD3HHQWFGV39C", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3GCSD3HHQWFGV39C.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3GCSD3HHQWFGV39C.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.702 per Dedicated RHEL c1.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EBPBHYCSY9TBSKNQ" : { - "EBPBHYCSY9TBSKNQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EBPBHYCSY9TBSKNQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EBPBHYCSY9TBSKNQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EBPBHYCSY9TBSKNQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.146 per Dedicated Usage Linux r4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CTWGRH5ACPDTJT2H" : { - "CTWGRH5ACPDTJT2H.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CTWGRH5ACPDTJT2H", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CTWGRH5ACPDTJT2H.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CTWGRH5ACPDTJT2H.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows BYOL c5.18xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2MS9BQ29TD8ZPX2B" : { - "2MS9BQ29TD8ZPX2B.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2MS9BQ29TD8ZPX2B", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2MS9BQ29TD8ZPX2B.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2MS9BQ29TD8ZPX2B.JRTCKXETXF.6YS6EN2CT7", - "description" : "$32.576 per On Demand Windows x1e.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "32.5760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MU4CDFJXM862BVJ3" : { - "MU4CDFJXM862BVJ3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MU4CDFJXM862BVJ3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MU4CDFJXM862BVJ3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MU4CDFJXM862BVJ3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.101 per Dedicated Windows x1e.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TDJBW85D7BJ6AB9K" : { - "TDJBW85D7BJ6AB9K.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TDJBW85D7BJ6AB9K", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TDJBW85D7BJ6AB9K.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TDJBW85D7BJ6AB9K.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows BYOL x1e.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6VVPWTSHET4XF7T9" : { - "6VVPWTSHET4XF7T9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6VVPWTSHET4XF7T9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6VVPWTSHET4XF7T9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6VVPWTSHET4XF7T9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL c4.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ABGVRF96RZJ9FHTF" : { - "ABGVRF96RZJ9FHTF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ABGVRF96RZJ9FHTF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ABGVRF96RZJ9FHTF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ABGVRF96RZJ9FHTF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.053 per Dedicated SQL Web g2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "76QZ6KV3AUVAJ4PP" : { - "76QZ6KV3AUVAJ4PP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "76QZ6KV3AUVAJ4PP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "76QZ6KV3AUVAJ4PP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "76QZ6KV3AUVAJ4PP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Web x1e.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6QCMSW96MRVU6K5U" : { - "6QCMSW96MRVU6K5U.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6QCMSW96MRVU6K5U", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6QCMSW96MRVU6K5U.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6QCMSW96MRVU6K5U.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 for 750 Mbps per p2.xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DM52VSGUXWMC72XW" : { - "DM52VSGUXWMC72XW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DM52VSGUXWMC72XW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DM52VSGUXWMC72XW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DM52VSGUXWMC72XW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.913 per On Demand RHEL i2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "75XER897G2X2ZNFP" : { - "75XER897G2X2ZNFP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "75XER897G2X2ZNFP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "75XER897G2X2ZNFP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "75XER897G2X2ZNFP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.936 per Dedicated Windows i3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.9360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "V6A93PBRF8JRMDU8" : { - "V6A93PBRF8JRMDU8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "V6A93PBRF8JRMDU8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "V6A93PBRF8JRMDU8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "V6A93PBRF8JRMDU8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 for 1 Mbps per x1e.2xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SUXHXAPA9KC5QKGF" : { - "SUXHXAPA9KC5QKGF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SUXHXAPA9KC5QKGF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SUXHXAPA9KC5QKGF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SUXHXAPA9KC5QKGF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.934 per On Demand SUSE x1e.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CDBGJDEAQMWTZ2TB" : { - "CDBGJDEAQMWTZ2TB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CDBGJDEAQMWTZ2TB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CDBGJDEAQMWTZ2TB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CDBGJDEAQMWTZ2TB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$13.338 per On Demand Windows BYOL x1.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.3380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "J29VH4DHMCPGPWS6" : { - "J29VH4DHMCPGPWS6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "J29VH4DHMCPGPWS6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "J29VH4DHMCPGPWS6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "J29VH4DHMCPGPWS6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std r4.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "285FWCDXDE9KA35M" : { - "285FWCDXDE9KA35M.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "285FWCDXDE9KA35M", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "285FWCDXDE9KA35M.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "285FWCDXDE9KA35M.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.404 per Dedicated Usage Windows with SQL Web m3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ADJRHP9DZHM7DJPS" : { - "ADJRHP9DZHM7DJPS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ADJRHP9DZHM7DJPS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ADJRHP9DZHM7DJPS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ADJRHP9DZHM7DJPS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$13.036 per Dedicated Windows BYOL p3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.0360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EUZYYTAVEP8JDS42" : { - "EUZYYTAVEP8JDS42.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EUZYYTAVEP8JDS42", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EUZYYTAVEP8JDS42.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EUZYYTAVEP8JDS42.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise r3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QSAWD9QW3658YB28" : { - "QSAWD9QW3658YB28.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QSAWD9QW3658YB28", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QSAWD9QW3658YB28.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QSAWD9QW3658YB28.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.92 per Dedicated Usage Windows BYOL p2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.9200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TMDSK7VAE2TT3ECF" : { - "TMDSK7VAE2TT3ECF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TMDSK7VAE2TT3ECF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TMDSK7VAE2TT3ECF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TMDSK7VAE2TT3ECF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.84 per On Demand Windows BYOL c3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XVDMNM2WMYBYVW3T" : { - "XVDMNM2WMYBYVW3T.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XVDMNM2WMYBYVW3T", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XVDMNM2WMYBYVW3T.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XVDMNM2WMYBYVW3T.JRTCKXETXF.6YS6EN2CT7", - "description" : "$14.4 per On Demand Linux p2.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.4000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MCUV5B88GT577CFE" : { - "MCUV5B88GT577CFE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MCUV5B88GT577CFE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MCUV5B88GT577CFE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MCUV5B88GT577CFE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.00 once per hour when you're running at least one Dedicated Instance in the US East Region", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VC8RXUKPQB42NMCF" : { - "VC8RXUKPQB42NMCF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VC8RXUKPQB42NMCF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VC8RXUKPQB42NMCF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VC8RXUKPQB42NMCF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.17 per Dedicated Usage RHEL c4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "WU8MR6W7VJJUBGWW" : { - "WU8MR6W7VJJUBGWW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "WU8MR6W7VJJUBGWW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "WU8MR6W7VJJUBGWW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "WU8MR6W7VJJUBGWW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.835 per Dedicated Linux x1e.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "J4WQF46DKE3825ST" : { - "J4WQF46DKE3825ST.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "J4WQF46DKE3825ST", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "J4WQF46DKE3825ST.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "J4WQF46DKE3825ST.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.006 per Dedicated Usage RHEL c4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NKJ4NNEJMKDJ54KC" : { - "NKJ4NNEJMKDJ54KC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NKJ4NNEJMKDJ54KC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NKJ4NNEJMKDJ54KC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NKJ4NNEJMKDJ54KC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.7 per On Demand SUSE g2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KBMDCRY5348X5TCN" : { - "KBMDCRY5348X5TCN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KBMDCRY5348X5TCN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KBMDCRY5348X5TCN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KBMDCRY5348X5TCN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE r3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "D6HGB9XUMNSDTB9G" : { - "D6HGB9XUMNSDTB9G.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "D6HGB9XUMNSDTB9G", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "D6HGB9XUMNSDTB9G.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "D6HGB9XUMNSDTB9G.JRTCKXETXF.6YS6EN2CT7", - "description" : "$13.30 per On Demand SUSE f1.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.3000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZESHW7CZVERW2BN2" : { - "ZESHW7CZVERW2BN2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZESHW7CZVERW2BN2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZESHW7CZVERW2BN2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZESHW7CZVERW2BN2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.410 per On Demand Linux i2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "232CDFDW89ENUXRB" : { - "232CDFDW89ENUXRB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "232CDFDW89ENUXRB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "232CDFDW89ENUXRB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "232CDFDW89ENUXRB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux d2.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "T66DXZFUDZ8KW7UG" : { - "T66DXZFUDZ8KW7UG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "T66DXZFUDZ8KW7UG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "T66DXZFUDZ8KW7UG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "T66DXZFUDZ8KW7UG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.810 per Dedicated RHEL c3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XGQ9DRFV2RNYQE43" : { - "XGQ9DRFV2RNYQE43.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XGQ9DRFV2RNYQE43", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XGQ9DRFV2RNYQE43.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XGQ9DRFV2RNYQE43.JRTCKXETXF.6YS6EN2CT7", - "description" : "$15.616 per Dedicated Windows with SQL Std i3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.6160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2QF2GD6XUCJHFMKF" : { - "2QF2GD6XUCJHFMKF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2QF2GD6XUCJHFMKF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2QF2GD6XUCJHFMKF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2QF2GD6XUCJHFMKF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.076 per Gbps-hour of NAT Gateways with Provisioned Bandwidth", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Gbps-hrs", - "pricePerUnit" : { - "USD" : "1.0760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JKH75GSYK4EQQ6ZK" : { - "JKH75GSYK4EQQ6ZK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JKH75GSYK4EQQ6ZK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JKH75GSYK4EQQ6ZK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JKH75GSYK4EQQ6ZK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise d2.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5KHB4S5E8M74C6ES" : { - "5KHB4S5E8M74C6ES.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5KHB4S5E8M74C6ES", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5KHB4S5E8M74C6ES.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5KHB4S5E8M74C6ES.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.853 per On Demand Linux i2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QC767KVGEA4QJZVP" : { - "QC767KVGEA4QJZVP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QC767KVGEA4QJZVP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QC767KVGEA4QJZVP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QC767KVGEA4QJZVP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.02 for 400 Mbps per c3.xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "G2Y7JD8J9KR378JW" : { - "G2Y7JD8J9KR378JW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "G2Y7JD8J9KR378JW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "G2Y7JD8J9KR378JW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "G2Y7JD8J9KR378JW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.503 per Dedicated RHEL i3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PDEUGZC7QK7AETP6" : { - "PDEUGZC7QK7AETP6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PDEUGZC7QK7AETP6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PDEUGZC7QK7AETP6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PDEUGZC7QK7AETP6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.704 per On Demand Windows with SQL Std m3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "V57DX5BAS5NCGXY8" : { - "V57DX5BAS5NCGXY8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "V57DX5BAS5NCGXY8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "V57DX5BAS5NCGXY8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "V57DX5BAS5NCGXY8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.617 per Dedicated SQL Std c3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CJC3SAFYHNB2FRUU" : { - "CJC3SAFYHNB2FRUU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CJC3SAFYHNB2FRUU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CJC3SAFYHNB2FRUU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CJC3SAFYHNB2FRUU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.377 per Dedicated Usage Windows with SQL Web r4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.3770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DAVYF6BBKWXMDDGD" : { - "DAVYF6BBKWXMDDGD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DAVYF6BBKWXMDDGD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DAVYF6BBKWXMDDGD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DAVYF6BBKWXMDDGD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$13.33 per On Demand RHEL f1.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.3300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VDQX9KJN5DYBTUQJ" : { - "VDQX9KJN5DYBTUQJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VDQX9KJN5DYBTUQJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VDQX9KJN5DYBTUQJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VDQX9KJN5DYBTUQJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.500 per Dedicated Windows r3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QVZGU743YEW7J8ZP" : { - "QVZGU743YEW7J8ZP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QVZGU743YEW7J8ZP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QVZGU743YEW7J8ZP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QVZGU743YEW7J8ZP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$5.410 per Dedicated SQL Std i2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.4100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TJCB42XUUBBP8KKF" : { - "TJCB42XUUBBP8KKF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TJCB42XUUBBP8KKF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TJCB42XUUBBP8KKF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TJCB42XUUBBP8KKF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.256 per On Demand Linux r4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4XQSHVJTBAK4RP7T" : { - "4XQSHVJTBAK4RP7T.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4XQSHVJTBAK4RP7T", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4XQSHVJTBAK4RP7T.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4XQSHVJTBAK4RP7T.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.44 per Dedicated Windows BYOL m4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FXA6QJGGCY7KRFGC" : { - "FXA6QJGGCY7KRFGC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FXA6QJGGCY7KRFGC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FXA6QJGGCY7KRFGC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FXA6QJGGCY7KRFGC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std m4.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4TE6EMDQEPCBNFAE" : { - "4TE6EMDQEPCBNFAE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4TE6EMDQEPCBNFAE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4TE6EMDQEPCBNFAE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4TE6EMDQEPCBNFAE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.540 per On Demand RHEL i2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QQXUWBKQH3U8F6KT" : { - "QQXUWBKQH3U8F6KT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QQXUWBKQH3U8F6KT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QQXUWBKQH3U8F6KT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QQXUWBKQH3U8F6KT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.345 per On Demand SUSE m2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TMQJ4GK6Z38D6DZU" : { - "TMQJ4GK6Z38D6DZU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TMQJ4GK6Z38D6DZU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TMQJ4GK6Z38D6DZU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TMQJ4GK6Z38D6DZU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web c4.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MD88Y4BYY57EECUZ" : { - "MD88Y4BYY57EECUZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MD88Y4BYY57EECUZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MD88Y4BYY57EECUZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MD88Y4BYY57EECUZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.806 per Dedicated Usage Windows c4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NWRPWAZ545BCP5YE" : { - "NWRPWAZ545BCP5YE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NWRPWAZ545BCP5YE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NWRPWAZ545BCP5YE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NWRPWAZ545BCP5YE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.589 per On Demand Windows with SQL Web c5.18xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EQGP4KYME9PWXUCS" : { - "EQGP4KYME9PWXUCS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EQGP4KYME9PWXUCS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EQGP4KYME9PWXUCS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EQGP4KYME9PWXUCS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux x1.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "44BFC6CSKFS3KEJP" : { - "44BFC6CSKFS3KEJP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "44BFC6CSKFS3KEJP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "44BFC6CSKFS3KEJP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "44BFC6CSKFS3KEJP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.248 per On Demand Linux i3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NCF2TWM2X9WTUPEG" : { - "NCF2TWM2X9WTUPEG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NCF2TWM2X9WTUPEG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NCF2TWM2X9WTUPEG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NCF2TWM2X9WTUPEG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std c3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RJEQJTKJA4WCBCRN" : { - "RJEQJTKJA4WCBCRN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RJEQJTKJA4WCBCRN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RJEQJTKJA4WCBCRN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RJEQJTKJA4WCBCRN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise c4.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MSN4QHE8TBV8XBD2" : { - "MSN4QHE8TBV8XBD2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MSN4QHE8TBV8XBD2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MSN4QHE8TBV8XBD2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MSN4QHE8TBV8XBD2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.445 per Dedicated RHEL m1.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BQ5EKEX4RRBCH5MY" : { - "BQ5EKEX4RRBCH5MY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BQ5EKEX4RRBCH5MY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BQ5EKEX4RRBCH5MY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BQ5EKEX4RRBCH5MY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.903 per Dedicated Usage Windows d2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "K48QRUR7K3WJWD3Y" : { - "K48QRUR7K3WJWD3Y.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "K48QRUR7K3WJWD3Y", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "K48QRUR7K3WJWD3Y.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "K48QRUR7K3WJWD3Y.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.2 per On Demand Windows BYOL p2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.2000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QBBBEFQPVEBWTH4F" : { - "QBBBEFQPVEBWTH4F.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QBBBEFQPVEBWTH4F", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QBBBEFQPVEBWTH4F.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QBBBEFQPVEBWTH4F.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.835 per On Demand RHEL i2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2E6TFSUWJVXJ9TK8" : { - "2E6TFSUWJVXJ9TK8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2E6TFSUWJVXJ9TK8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2E6TFSUWJVXJ9TK8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2E6TFSUWJVXJ9TK8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.06 per On Demand Windows BYOL c5.18xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "A633GX9XTPAPFK68" : { - "A633GX9XTPAPFK68.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "A633GX9XTPAPFK68", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "A633GX9XTPAPFK68.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "A633GX9XTPAPFK68.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.029 per Dedicated Windows with SQL Std i3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.0290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "355G43EUBXD5NEFF" : { - "355G43EUBXD5NEFF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "355G43EUBXD5NEFF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "355G43EUBXD5NEFF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "355G43EUBXD5NEFF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.99 per Dedicated Windows g3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4YHC7A4CJ3HBPKDX" : { - "4YHC7A4CJ3HBPKDX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4YHC7A4CJ3HBPKDX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4YHC7A4CJ3HBPKDX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4YHC7A4CJ3HBPKDX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux r3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UG8JKJZ5R9J4CW2Z" : { - "UG8JKJZ5R9J4CW2Z.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UG8JKJZ5R9J4CW2Z", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UG8JKJZ5R9J4CW2Z.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UG8JKJZ5R9J4CW2Z.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.20 per Dedicated Windows BYOL m4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "565K5EPDPPX9K6TV" : { - "565K5EPDPPX9K6TV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "565K5EPDPPX9K6TV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "565K5EPDPPX9K6TV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "565K5EPDPPX9K6TV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Std x1e.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NDTH66N9XMTJ3CP6" : { - "NDTH66N9XMTJ3CP6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NDTH66N9XMTJ3CP6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NDTH66N9XMTJ3CP6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NDTH66N9XMTJ3CP6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL p2.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Z684JBY4N78FZQ8Q" : { - "Z684JBY4N78FZQ8Q.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Z684JBY4N78FZQ8Q", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Z684JBY4N78FZQ8Q.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Z684JBY4N78FZQ8Q.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.21 per Dedicated SUSE m4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7WRGXK63YR8UUHF8" : { - "7WRGXK63YR8UUHF8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7WRGXK63YR8UUHF8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7WRGXK63YR8UUHF8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7WRGXK63YR8UUHF8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.996 per On Demand Windows with SQL Server Enterprise i3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EAAU7VGSNXDD23Q8" : { - "EAAU7VGSNXDD23Q8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EAAU7VGSNXDD23Q8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EAAU7VGSNXDD23Q8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EAAU7VGSNXDD23Q8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.99 per Dedicated Usage Windows BYOL p2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "U8B7D4SWAWCW5E9F" : { - "U8B7D4SWAWCW5E9F.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "U8B7D4SWAWCW5E9F", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "U8B7D4SWAWCW5E9F.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "U8B7D4SWAWCW5E9F.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows BYOL x1e.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "8B7CXDY69FGHQH62" : { - "8B7CXDY69FGHQH62.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "8B7CXDY69FGHQH62", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "8B7CXDY69FGHQH62.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "8B7CXDY69FGHQH62.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.333 per On Demand Windows BYOL r3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JDJYS4AM5CW779YH" : { - "JDJYS4AM5CW779YH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JDJYS4AM5CW779YH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JDJYS4AM5CW779YH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JDJYS4AM5CW779YH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL c4.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AKSFQX72CUFYMDSH" : { - "AKSFQX72CUFYMDSH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AKSFQX72CUFYMDSH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AKSFQX72CUFYMDSH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AKSFQX72CUFYMDSH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows i3.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DRMGTKKSRFBNB2TD" : { - "DRMGTKKSRFBNB2TD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DRMGTKKSRFBNB2TD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DRMGTKKSRFBNB2TD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DRMGTKKSRFBNB2TD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.426 per Dedicated Usage RHEL r3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TTS386B2SXKQXGZP" : { - "TTS386B2SXKQXGZP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TTS386B2SXKQXGZP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TTS386B2SXKQXGZP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TTS386B2SXKQXGZP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.6 per On Demand Windows r4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YXBZYU573BYR2VBR" : { - "YXBZYU573BYR2VBR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YXBZYU573BYR2VBR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YXBZYU573BYR2VBR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YXBZYU573BYR2VBR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std r3.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9NJKDTFRDQH4YFJ6" : { - "9NJKDTFRDQH4YFJ6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9NJKDTFRDQH4YFJ6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9NJKDTFRDQH4YFJ6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9NJKDTFRDQH4YFJ6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0 for 1 Mbps per g3.16xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9ZMBKXJZ46UNKSTH" : { - "9ZMBKXJZ46UNKSTH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9ZMBKXJZ46UNKSTH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9ZMBKXJZ46UNKSTH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9ZMBKXJZ46UNKSTH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux r4.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "67X6UH937GWQTMF7" : { - "67X6UH937GWQTMF7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "67X6UH937GWQTMF7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "67X6UH937GWQTMF7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "67X6UH937GWQTMF7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows BYOL f1.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AWHZBBETT4RF387X" : { - "AWHZBBETT4RF387X.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AWHZBBETT4RF387X", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AWHZBBETT4RF387X.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AWHZBBETT4RF387X.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.935 per Dedicated SQL Web m2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3H63S5QV423QAHHQ" : { - "3H63S5QV423QAHHQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3H63S5QV423QAHHQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3H63S5QV423QAHHQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3H63S5QV423QAHHQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.56 per On Demand Linux g3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4WH4EK5RUS7PPQCA" : { - "4WH4EK5RUS7PPQCA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4WH4EK5RUS7PPQCA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4WH4EK5RUS7PPQCA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4WH4EK5RUS7PPQCA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per RHEL c5.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "T5BZ33K73P9U93J6" : { - "T5BZ33K73P9U93J6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "T5BZ33K73P9U93J6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "T5BZ33K73P9U93J6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "T5BZ33K73P9U93J6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL i2.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BUEPRDN9GYBNSP3F" : { - "BUEPRDN9GYBNSP3F.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BUEPRDN9GYBNSP3F", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BUEPRDN9GYBNSP3F.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BUEPRDN9GYBNSP3F.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.627 per Dedicated Windows p3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SZQV42HNDR8AXTGV" : { - "SZQV42HNDR8AXTGV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SZQV42HNDR8AXTGV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SZQV42HNDR8AXTGV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SZQV42HNDR8AXTGV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$18.84 per On Demand Windows with SQL Server Enterprise m4.10xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "18.8400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HRE9N7QDXRK4WGK6" : { - "HRE9N7QDXRK4WGK6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HRE9N7QDXRK4WGK6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HRE9N7QDXRK4WGK6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HRE9N7QDXRK4WGK6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std d2.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3S465DABJFVVXWJG" : { - "3S465DABJFVVXWJG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3S465DABJFVVXWJG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3S465DABJFVVXWJG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3S465DABJFVVXWJG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.19 per On Demand RHEL c5.18xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RH7Y6HVXZXB4UY8U" : { - "RH7Y6HVXZXB4UY8U.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RH7Y6HVXZXB4UY8U", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RH7Y6HVXZXB4UY8U.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RH7Y6HVXZXB4UY8U.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.074 per Dedicated Usage Windows BYOL m3.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "W4HNTDUW2525QNYX" : { - "W4HNTDUW2525QNYX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "W4HNTDUW2525QNYX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "W4HNTDUW2525QNYX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "W4HNTDUW2525QNYX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.622 per Dedicated Windows BYOL c5.9xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5J4A5X6Z5M3JUPTT" : { - "5J4A5X6Z5M3JUPTT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5J4A5X6Z5M3JUPTT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5J4A5X6Z5M3JUPTT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5J4A5X6Z5M3JUPTT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows r3.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GTJ44D58C728KCTE" : { - "GTJ44D58C728KCTE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GTJ44D58C728KCTE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GTJ44D58C728KCTE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GTJ44D58C728KCTE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$13.344 per On Demand Windows BYOL x1e.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.3440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9GNEUQUQYHH95HXP" : { - "9GNEUQUQYHH95HXP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9GNEUQUQYHH95HXP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9GNEUQUQYHH95HXP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9GNEUQUQYHH95HXP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux r4.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "V2ZSDPZ5ANEBUE99" : { - "V2ZSDPZ5ANEBUE99.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "V2ZSDPZ5ANEBUE99", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "V2ZSDPZ5ANEBUE99.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "V2ZSDPZ5ANEBUE99.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.620 per On Demand SUSE c1.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Q7J8RTVDQ7R7AEP9" : { - "Q7J8RTVDQ7R7AEP9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Q7J8RTVDQ7R7AEP9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Q7J8RTVDQ7R7AEP9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Q7J8RTVDQ7R7AEP9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.271 per On Demand SQL Web c3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "WNE7QVTQ353JW53G" : { - "WNE7QVTQ353JW53G.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "WNE7QVTQ353JW53G", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "WNE7QVTQ353JW53G.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "WNE7QVTQ353JW53G.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.93 per On Demand Windows with SQL Std r4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QR4WEBVA44K4VYE6" : { - "QR4WEBVA44K4VYE6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QR4WEBVA44K4VYE6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QR4WEBVA44K4VYE6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QR4WEBVA44K4VYE6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std c3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7DUQ3HEEEBV8YX9T" : { - "7DUQ3HEEEBV8YX9T.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7DUQ3HEEEBV8YX9T", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7DUQ3HEEEBV8YX9T.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7DUQ3HEEEBV8YX9T.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.166 per On Demand Windows BYOL r3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7VB9795V9MTDDCBF" : { - "7VB9795V9MTDDCBF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7VB9795V9MTDDCBF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7VB9795V9MTDDCBF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7VB9795V9MTDDCBF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise c3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HFDNWEZYQYRJQR8N" : { - "HFDNWEZYQYRJQR8N.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HFDNWEZYQYRJQR8N", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HFDNWEZYQYRJQR8N.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HFDNWEZYQYRJQR8N.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE r4.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QG8MPRPSA2WNM57J" : { - "QG8MPRPSA2WNM57J.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QG8MPRPSA2WNM57J", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QG8MPRPSA2WNM57J.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QG8MPRPSA2WNM57J.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.205 per On Demand SUSE c3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2QVB6NSAF3S5JVJW" : { - "2QVB6NSAF3S5JVJW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2QVB6NSAF3S5JVJW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2QVB6NSAF3S5JVJW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2QVB6NSAF3S5JVJW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web c4.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZS78J2NQU7SMU7HB" : { - "ZS78J2NQU7SMU7HB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZS78J2NQU7SMU7HB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZS78J2NQU7SMU7HB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZS78J2NQU7SMU7HB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.926 per On Demand R3 Dedicated Host Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PY2CUEC5DXV8VV3Y" : { - "PY2CUEC5DXV8VV3Y.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PY2CUEC5DXV8VV3Y", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PY2CUEC5DXV8VV3Y.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PY2CUEC5DXV8VV3Y.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 for 750 Mbps per d2.xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "WEJJ8BVQUW2CFG55" : { - "WEJJ8BVQUW2CFG55.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "WEJJ8BVQUW2CFG55", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "WEJJ8BVQUW2CFG55.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "WEJJ8BVQUW2CFG55.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.24 per Dedicated RHEL c5.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CG5KRXYBD8PDWRA7" : { - "CG5KRXYBD8PDWRA7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CG5KRXYBD8PDWRA7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CG5KRXYBD8PDWRA7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CG5KRXYBD8PDWRA7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL d2.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TWMSTK9JU8ZP6G3X" : { - "TWMSTK9JU8ZP6G3X.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TWMSTK9JU8ZP6G3X", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TWMSTK9JU8ZP6G3X.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TWMSTK9JU8ZP6G3X.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Std x1e.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UHW9QAKPPBUC6E5K" : { - "UHW9QAKPPBUC6E5K.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UHW9QAKPPBUC6E5K", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UHW9QAKPPBUC6E5K.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UHW9QAKPPBUC6E5K.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux c3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VS9R2VWDK4T46YAC" : { - "VS9R2VWDK4T46YAC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VS9R2VWDK4T46YAC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VS9R2VWDK4T46YAC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VS9R2VWDK4T46YAC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 for 10000 Mbps per m4.large instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZWKFSQ2ZGE2PEHZQ" : { - "ZWKFSQ2ZGE2PEHZQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZWKFSQ2ZGE2PEHZQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZWKFSQ2ZGE2PEHZQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZWKFSQ2ZGE2PEHZQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$5.044 per Dedicated Usage Windows with SQL Std r3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.0440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZG4JRPCC4VZQWHCQ" : { - "ZG4JRPCC4VZQWHCQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZG4JRPCC4VZQWHCQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZG4JRPCC4VZQWHCQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZG4JRPCC4VZQWHCQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.45 per On Demand Windows r4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7V39RZQPSWWKKC2U" : { - "7V39RZQPSWWKKC2U.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7V39RZQPSWWKKC2U", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7V39RZQPSWWKKC2U.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7V39RZQPSWWKKC2U.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.166 per On Demand SQL Web c3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JR4AM7VS63CTEPMN" : { - "JR4AM7VS63CTEPMN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JR4AM7VS63CTEPMN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JR4AM7VS63CTEPMN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JR4AM7VS63CTEPMN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.125 per GB-month of Provisioned IOPS SSD (io1) provisioned storage - US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB-Mo", - "pricePerUnit" : { - "USD" : "0.1250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FMDFEJP7NHC74DVF" : { - "FMDFEJP7NHC74DVF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FMDFEJP7NHC74DVF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FMDFEJP7NHC74DVF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FMDFEJP7NHC74DVF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.293 per Dedicated SUSE m1.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AP8CRXEFDUCGR7QY" : { - "AP8CRXEFDUCGR7QY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AP8CRXEFDUCGR7QY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AP8CRXEFDUCGR7QY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AP8CRXEFDUCGR7QY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.192 per On Demand Windows m4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JB6B8VEMWKJACNH2" : { - "JB6B8VEMWKJACNH2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JB6B8VEMWKJACNH2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JB6B8VEMWKJACNH2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JB6B8VEMWKJACNH2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.050 for 1000 Mbps per g2.2xlarge instance-hour (or partial hour)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JTQJ2YNV8MN79SVF" : { - "JTQJ2YNV8MN79SVF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JTQJ2YNV8MN79SVF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JTQJ2YNV8MN79SVF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JTQJ2YNV8MN79SVF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Linux c5.18xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "26EZN83WFYW935BY" : { - "26EZN83WFYW935BY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "26EZN83WFYW935BY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "26EZN83WFYW935BY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "26EZN83WFYW935BY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.662 per On Demand RHEL m3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YRUVJDC2XTW5YRU3" : { - "YRUVJDC2XTW5YRU3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YRUVJDC2XTW5YRU3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YRUVJDC2XTW5YRU3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YRUVJDC2XTW5YRU3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$5.144 per On Demand SQL Web hs1.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.1440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BYDPYVAT6B57HKJT" : { - "BYDPYVAT6B57HKJT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BYDPYVAT6B57HKJT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BYDPYVAT6B57HKJT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BYDPYVAT6B57HKJT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.977 per Dedicated RHEL x1e.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "X4RWGEB2DKQGCWC2" : { - "X4RWGEB2DKQGCWC2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "X4RWGEB2DKQGCWC2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "X4RWGEB2DKQGCWC2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "X4RWGEB2DKQGCWC2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.130 per On Demand Linux c1.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XDBQD4Z97Q72N97A" : { - "XDBQD4Z97Q72N97A.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XDBQD4Z97Q72N97A", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XDBQD4Z97Q72N97A.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XDBQD4Z97Q72N97A.JRTCKXETXF.6YS6EN2CT7", - "description" : "$34.74 per Dedicated Windows with SQL Web x1e.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "34.7400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SUJ3QNNHT5BXCCWP" : { - "SUJ3QNNHT5BXCCWP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SUJ3QNNHT5BXCCWP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SUJ3QNNHT5BXCCWP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SUJ3QNNHT5BXCCWP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.738 per On Demand Windows with SQL Web r3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "433RA7YYXTQK4NPN" : { - "433RA7YYXTQK4NPN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "433RA7YYXTQK4NPN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "433RA7YYXTQK4NPN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "433RA7YYXTQK4NPN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE m4.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BUBBYJ9CTGMQDCAN" : { - "BUBBYJ9CTGMQDCAN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BUBBYJ9CTGMQDCAN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BUBBYJ9CTGMQDCAN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BUBBYJ9CTGMQDCAN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.69 per On Demand RHEL g3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.6900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Z6NT2VUPAUJTCBJV" : { - "Z6NT2VUPAUJTCBJV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Z6NT2VUPAUJTCBJV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Z6NT2VUPAUJTCBJV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Z6NT2VUPAUJTCBJV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web g2.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TE86D77WEKH98NPZ" : { - "TE86D77WEKH98NPZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TE86D77WEKH98NPZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TE86D77WEKH98NPZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TE86D77WEKH98NPZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise c3.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VP7WYZSF63TZQ25D" : { - "VP7WYZSF63TZQ25D.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VP7WYZSF63TZQ25D", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VP7WYZSF63TZQ25D.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VP7WYZSF63TZQ25D.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.638 per Dedicated SQL Std m2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "U333877KGJA25DEX" : { - "U333877KGJA25DEX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "U333877KGJA25DEX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "U333877KGJA25DEX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "U333877KGJA25DEX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.30 per On Demand SUSE m4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ERSKB3J598DCE2QB" : { - "ERSKB3J598DCE2QB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ERSKB3J598DCE2QB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ERSKB3J598DCE2QB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ERSKB3J598DCE2QB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$16.132 per On Demand Windows with SQL Server Enterprise r3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.1320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "X2CZGDXUSRSFGZQ7" : { - "X2CZGDXUSRSFGZQ7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "X2CZGDXUSRSFGZQ7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "X2CZGDXUSRSFGZQ7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "X2CZGDXUSRSFGZQ7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.46 per On Demand RHEL r3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KCTR9Z2CY7MTZPGS" : { - "KCTR9Z2CY7MTZPGS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KCTR9Z2CY7MTZPGS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KCTR9Z2CY7MTZPGS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KCTR9Z2CY7MTZPGS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$8.199 per Dedicated Usage Windows with SQL Server Enterprise r3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.1990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VJ4XPF7YHUHKA3ZJ" : { - "VJ4XPF7YHUHKA3ZJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VJ4XPF7YHUHKA3ZJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VJ4XPF7YHUHKA3ZJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VJ4XPF7YHUHKA3ZJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.469 per Dedicated RHEL x1e.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7JWZZUN6V6RU9JES" : { - "7JWZZUN6V6RU9JES.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7JWZZUN6V6RU9JES", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7JWZZUN6V6RU9JES.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7JWZZUN6V6RU9JES.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.100 per Dedicated SUSE cc2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2MAPZERKCXRGMU4P" : { - "2MAPZERKCXRGMU4P.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2MAPZERKCXRGMU4P", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2MAPZERKCXRGMU4P.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2MAPZERKCXRGMU4P.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.366 per On Demand C5 Dedicated Host Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SMS2RQFVUU6VDNFP" : { - "SMS2RQFVUU6VDNFP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SMS2RQFVUU6VDNFP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SMS2RQFVUU6VDNFP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SMS2RQFVUU6VDNFP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.364 per Dedicated Windows c5.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7P443J9REGZVNYQY" : { - "7P443J9REGZVNYQY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7P443J9REGZVNYQY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7P443J9REGZVNYQY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7P443J9REGZVNYQY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.79 per Dedicated Usage RHEL r3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YRY7U9ETRK6GWQEU" : { - "YRY7U9ETRK6GWQEU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YRY7U9ETRK6GWQEU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YRY7U9ETRK6GWQEU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YRY7U9ETRK6GWQEU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.774 per Dedicated Usage Windows with SQL Std m3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9HPS57TE9XYPQEV9" : { - "9HPS57TE9XYPQEV9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9HPS57TE9XYPQEV9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9HPS57TE9XYPQEV9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9HPS57TE9XYPQEV9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web m3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KNFTFJY262DHDG36" : { - "KNFTFJY262DHDG36.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KNFTFJY262DHDG36", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KNFTFJY262DHDG36.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KNFTFJY262DHDG36.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.79 per On Demand RHEL r3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CGHFTKH25J86C64Y" : { - "CGHFTKH25J86C64Y.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CGHFTKH25J86C64Y", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CGHFTKH25J86C64Y.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CGHFTKH25J86C64Y.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.813 per Dedicated Usage Windows r4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Q7XJ7URGAZ8RWDX7" : { - "Q7XJ7URGAZ8RWDX7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Q7XJ7URGAZ8RWDX7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Q7XJ7URGAZ8RWDX7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Q7XJ7URGAZ8RWDX7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.700 per Dedicated SUSE hs1.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.7000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RS5KEAYU8MER5RSM" : { - "RS5KEAYU8MER5RSM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RS5KEAYU8MER5RSM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RS5KEAYU8MER5RSM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RS5KEAYU8MER5RSM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE r4.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6RTK76EDTUWSCDZ8" : { - "6RTK76EDTUWSCDZ8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6RTK76EDTUWSCDZ8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6RTK76EDTUWSCDZ8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6RTK76EDTUWSCDZ8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.53 per On Demand Windows BYOL c5.9xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6TY9KK9HGP4Z383Q" : { - "6TY9KK9HGP4Z383Q.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6TY9KK9HGP4Z383Q", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6TY9KK9HGP4Z383Q.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6TY9KK9HGP4Z383Q.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL c3.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7VQV76T5CW2D2S7E" : { - "7VQV76T5CW2D2S7E.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7VQV76T5CW2D2S7E", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7VQV76T5CW2D2S7E.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7VQV76T5CW2D2S7E.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.3 per On Demand Windows BYOL cc1.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5XKKG2W7WCHSD7VK" : { - "5XKKG2W7WCHSD7VK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5XKKG2W7WCHSD7VK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5XKKG2W7WCHSD7VK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5XKKG2W7WCHSD7VK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Web x1e.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FYEGBZ26B3KMNACW" : { - "FYEGBZ26B3KMNACW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FYEGBZ26B3KMNACW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FYEGBZ26B3KMNACW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FYEGBZ26B3KMNACW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.703 per Dedicated SQL Web cg1.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6NR8XUQNBC8BXB6C" : { - "6NR8XUQNBC8BXB6C.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6NR8XUQNBC8BXB6C", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6NR8XUQNBC8BXB6C.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6NR8XUQNBC8BXB6C.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.5 per On Demand Windows BYOL cr1.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MGQK9YE98AEGCFNM" : { - "MGQK9YE98AEGCFNM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MGQK9YE98AEGCFNM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MGQK9YE98AEGCFNM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MGQK9YE98AEGCFNM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.942 per On Demand SQL Web i2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.9420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Y8GH4ZVR4XW8623W" : { - "Y8GH4ZVR4XW8623W.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Y8GH4ZVR4XW8623W", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Y8GH4ZVR4XW8623W.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Y8GH4ZVR4XW8623W.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.116 per Dedicated Linux c3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "R4QE46FY6EGW3G4T" : { - "R4QE46FY6EGW3G4T.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "R4QE46FY6EGW3G4T", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "R4QE46FY6EGW3G4T.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "R4QE46FY6EGW3G4T.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.422 per On Demand Windows with SQL Web c5.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "V6XZ8Q6G3WH46NAH" : { - "V6XZ8Q6G3WH46NAH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "V6XZ8Q6G3WH46NAH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "V6XZ8Q6G3WH46NAH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "V6XZ8Q6G3WH46NAH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.672 per On Demand Windows with SQL Std m4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BKJP7BSW4MHQHNVV" : { - "BKJP7BSW4MHQHNVV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BKJP7BSW4MHQHNVV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BKJP7BSW4MHQHNVV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BKJP7BSW4MHQHNVV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux m4.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AJYJZ3X3S2AJ2D6D" : { - "AJYJZ3X3S2AJ2D6D.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AJYJZ3X3S2AJ2D6D", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AJYJZ3X3S2AJ2D6D.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AJYJZ3X3S2AJ2D6D.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.428 per On Demand Windows p3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7MZTFYDPAUJUXG8R" : { - "7MZTFYDPAUJUXG8R.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7MZTFYDPAUJUXG8R", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7MZTFYDPAUJUXG8R.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7MZTFYDPAUJUXG8R.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.78 per On Demand RHEL f1.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9RBZ58Y8EJXERRGT" : { - "9RBZ58Y8EJXERRGT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9RBZ58Y8EJXERRGT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9RBZ58Y8EJXERRGT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9RBZ58Y8EJXERRGT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web r3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NJGTPJ6BZDGQXTUY" : { - "NJGTPJ6BZDGQXTUY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NJGTPJ6BZDGQXTUY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NJGTPJ6BZDGQXTUY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NJGTPJ6BZDGQXTUY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Server Enterprise c5.9xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "WJ879Q9A4WW7T6Y3" : { - "WJ879Q9A4WW7T6Y3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "WJ879Q9A4WW7T6Y3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "WJ879Q9A4WW7T6Y3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "WJ879Q9A4WW7T6Y3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web r4.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Y5HXB4JMEUSW7MKH" : { - "Y5HXB4JMEUSW7MKH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Y5HXB4JMEUSW7MKH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Y5HXB4JMEUSW7MKH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Y5HXB4JMEUSW7MKH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.373 per Dedicated Windows BYOL i3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2NCC7B83WHP39NK5" : { - "2NCC7B83WHP39NK5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2NCC7B83WHP39NK5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2NCC7B83WHP39NK5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2NCC7B83WHP39NK5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.780 per On Demand RHEL g2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RM8MDNG928Q7RY5N" : { - "RM8MDNG928Q7RY5N.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RM8MDNG928Q7RY5N", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RM8MDNG928Q7RY5N.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RM8MDNG928Q7RY5N.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows m4.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "K9GMF5NPRDG654FW" : { - "K9GMF5NPRDG654FW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "K9GMF5NPRDG654FW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "K9GMF5NPRDG654FW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "K9GMF5NPRDG654FW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.266 per On Demand Windows BYOL m3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7WKKM2PCFQV7UGX4" : { - "7WKKM2PCFQV7UGX4.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7WKKM2PCFQV7UGX4", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7WKKM2PCFQV7UGX4.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7WKKM2PCFQV7UGX4.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.336 per Dedicated SQL Std c1.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2S47E3PRB8XVH9QV" : { - "2S47E3PRB8XVH9QV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2S47E3PRB8XVH9QV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2S47E3PRB8XVH9QV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2S47E3PRB8XVH9QV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.3712 per On Demand Linux t2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3712000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XGXYRYWGNXSSEUVT" : { - "XGXYRYWGNXSSEUVT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XGXYRYWGNXSSEUVT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XGXYRYWGNXSSEUVT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XGXYRYWGNXSSEUVT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.02 per GB - US East (Northern Virginia) data transfer to US West (Oregon)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SUWG7U93QWGDKW8P" : { - "SUWG7U93QWGDKW8P.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SUWG7U93QWGDKW8P", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SUWG7U93QWGDKW8P.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SUWG7U93QWGDKW8P.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.441 per Dedicated Usage SUSE r4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BHM7BATGW8NG4NZ4" : { - "BHM7BATGW8NG4NZ4.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BHM7BATGW8NG4NZ4", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BHM7BATGW8NG4NZ4.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BHM7BATGW8NG4NZ4.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.02 per GB - US East (Northern Virginia) data transfer to Asia Pacific (Mumbai)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GQZCFDP9G7RHFB9X" : { - "GQZCFDP9G7RHFB9X.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GQZCFDP9G7RHFB9X", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GQZCFDP9G7RHFB9X.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GQZCFDP9G7RHFB9X.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web r4.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4C2WZDUPRUA5S7YC" : { - "4C2WZDUPRUA5S7YC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4C2WZDUPRUA5S7YC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4C2WZDUPRUA5S7YC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4C2WZDUPRUA5S7YC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE r3.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "H4ERZSZPBES3WKPY" : { - "H4ERZSZPBES3WKPY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "H4ERZSZPBES3WKPY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "H4ERZSZPBES3WKPY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "H4ERZSZPBES3WKPY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.33 per Dedicated RHEL m4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DX44AJZKPEUWHF3H" : { - "DX44AJZKPEUWHF3H.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DX44AJZKPEUWHF3H", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DX44AJZKPEUWHF3H.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DX44AJZKPEUWHF3H.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.768 per On Demand SUSE x1e.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FN8H3W6RA9EGGSDT" : { - "FN8H3W6RA9EGGSDT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FN8H3W6RA9EGGSDT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FN8H3W6RA9EGGSDT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FN8H3W6RA9EGGSDT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.721 per Dedicated Linux c5.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "G58S7QPRR2YBRCEW" : { - "G58S7QPRR2YBRCEW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "G58S7QPRR2YBRCEW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "G58S7QPRR2YBRCEW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "G58S7QPRR2YBRCEW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise r3.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "24EZ2DK36FZ2REKT" : { - "24EZ2DK36FZ2REKT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "24EZ2DK36FZ2REKT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "24EZ2DK36FZ2REKT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "24EZ2DK36FZ2REKT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$15.6 per On Demand Windows with SQL Server Enterprise r4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.6000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QW4FHUGEZYB74TW8" : { - "QW4FHUGEZYB74TW8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QW4FHUGEZYB74TW8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QW4FHUGEZYB74TW8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QW4FHUGEZYB74TW8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.68 per On Demand Linux c5.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YVR4R7XCGTF5BWVS" : { - "YVR4R7XCGTF5BWVS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YVR4R7XCGTF5BWVS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YVR4R7XCGTF5BWVS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YVR4R7XCGTF5BWVS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.051 per Dedicated SQL Std m1.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DN4D2SAMCUHNKK2B" : { - "DN4D2SAMCUHNKK2B.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DN4D2SAMCUHNKK2B", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DN4D2SAMCUHNKK2B.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DN4D2SAMCUHNKK2B.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.818 per On Demand Windows with SQL Web m4.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CR9BJ8YMV2HGWRBH" : { - "CR9BJ8YMV2HGWRBH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CR9BJ8YMV2HGWRBH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CR9BJ8YMV2HGWRBH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CR9BJ8YMV2HGWRBH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.532 per On Demand Linux r4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3RVR33X4EBZ55XDC" : { - "3RVR33X4EBZ55XDC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3RVR33X4EBZ55XDC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3RVR33X4EBZ55XDC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3RVR33X4EBZ55XDC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Linux c5.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FYP43BRDNQ66J7E7" : { - "FYP43BRDNQ66J7E7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FYP43BRDNQ66J7E7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FYP43BRDNQ66J7E7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FYP43BRDNQ66J7E7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$67.226 per On Demand Windows with SQL Server Enterprise x1.32xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "67.2260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HXSNUHZ63WJ98R8B" : { - "HXSNUHZ63WJ98R8B.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HXSNUHZ63WJ98R8B", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HXSNUHZ63WJ98R8B.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HXSNUHZ63WJ98R8B.JRTCKXETXF.6YS6EN2CT7", - "description" : "$13.20 per On Demand Windows BYOL f1.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.2000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "W22DG9FACE6C38MS" : { - "W22DG9FACE6C38MS.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "W22DG9FACE6C38MS", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "W22DG9FACE6C38MS.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "W22DG9FACE6C38MS.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.273 per Dedicated Windows with SQL Web m4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VNX2EXRCP445NC9K" : { - "VNX2EXRCP445NC9K.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VNX2EXRCP445NC9K", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VNX2EXRCP445NC9K.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VNX2EXRCP445NC9K.JRTCKXETXF.6YS6EN2CT7", - "description" : "$6.950 per On Demand RHEL i2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.9500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7YAZRK59RPPWSKMN" : { - "7YAZRK59RPPWSKMN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7YAZRK59RPPWSKMN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7YAZRK59RPPWSKMN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7YAZRK59RPPWSKMN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.345 per On Demand Windows m2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VQ9NZ966GW3FJN84" : { - "VQ9NZ966GW3FJN84.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VQ9NZ966GW3FJN84", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VQ9NZ966GW3FJN84.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VQ9NZ966GW3FJN84.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.576 per On Demand Windows with SQL Server Enterprise c3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "D6YAK3JVF2VWSDJ9" : { - "D6YAK3JVF2VWSDJ9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "D6YAK3JVF2VWSDJ9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "D6YAK3JVF2VWSDJ9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "D6YAK3JVF2VWSDJ9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.13 per On Demand Windows m3.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NBUQPTSYHSXS2EB6" : { - "NBUQPTSYHSXS2EB6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NBUQPTSYHSXS2EB6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NBUQPTSYHSXS2EB6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NBUQPTSYHSXS2EB6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per GB - US East (Northern Virginia) data transfer from US West (Northern California)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HU3VQPHQ79Z4SYU9" : { - "HU3VQPHQ79Z4SYU9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HU3VQPHQ79Z4SYU9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HU3VQPHQ79Z4SYU9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HU3VQPHQ79Z4SYU9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.33 per On Demand RHEL m4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TJN762HY6CCQEX25" : { - "TJN762HY6CCQEX25.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TJN762HY6CCQEX25", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TJN762HY6CCQEX25.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TJN762HY6CCQEX25.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows i2.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SZADZHSFYSRDW37F" : { - "SZADZHSFYSRDW37F.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SZADZHSFYSRDW37F", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SZADZHSFYSRDW37F.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SZADZHSFYSRDW37F.JRTCKXETXF.6YS6EN2CT7", - "description" : "$12.485 per On Demand Windows with SQL Std c4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.4850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "V9GRWABS3YTSNDT3" : { - "V9GRWABS3YTSNDT3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "V9GRWABS3YTSNDT3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "V9GRWABS3YTSNDT3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "V9GRWABS3YTSNDT3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.182 per Dedicated Windows c5.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JMY8QZUVY8MRJ29G" : { - "JMY8QZUVY8MRJ29G.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JMY8QZUVY8MRJ29G", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JMY8QZUVY8MRJ29G.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JMY8QZUVY8MRJ29G.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per SUSE i3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AZ53HKVHTCDJVZZ5" : { - "AZ53HKVHTCDJVZZ5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AZ53HKVHTCDJVZZ5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AZ53HKVHTCDJVZZ5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AZ53HKVHTCDJVZZ5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.79 per On Demand SUSE d2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QMW9CSCFTNV2H99M" : { - "QMW9CSCFTNV2H99M.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QMW9CSCFTNV2H99M", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QMW9CSCFTNV2H99M.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QMW9CSCFTNV2H99M.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.266 per On Demand Linux r4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GA5PWJF9UF3X7YVH" : { - "GA5PWJF9UF3X7YVH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GA5PWJF9UF3X7YVH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GA5PWJF9UF3X7YVH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GA5PWJF9UF3X7YVH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.445 per On Demand SQL Web m2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VTKYCWG47S8NZFFH" : { - "VTKYCWG47S8NZFFH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VTKYCWG47S8NZFFH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VTKYCWG47S8NZFFH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VTKYCWG47S8NZFFH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.054 per Dedicated Windows with SQL Server Enterprise i3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.0540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CRRB3H2DYHU6K9FV" : { - "CRRB3H2DYHU6K9FV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CRRB3H2DYHU6K9FV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CRRB3H2DYHU6K9FV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CRRB3H2DYHU6K9FV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.600 per On Demand Linux hs1.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.6000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2XTPEFBB8H3K4XFX" : { - "2XTPEFBB8H3K4XFX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2XTPEFBB8H3K4XFX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2XTPEFBB8H3K4XFX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2XTPEFBB8H3K4XFX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std c3.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "G24JGV5VNDJ37S5F" : { - "G24JGV5VNDJ37S5F.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "G24JGV5VNDJ37S5F", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "G24JGV5VNDJ37S5F.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "G24JGV5VNDJ37S5F.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL m4.10xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "K28HPP98RVTNWAAD" : { - "K28HPP98RVTNWAAD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "K28HPP98RVTNWAAD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "K28HPP98RVTNWAAD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "K28HPP98RVTNWAAD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.10 per Dedicated SUSE m4.10xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Y3Y6KWQHPWZMXFTW" : { - "Y3Y6KWQHPWZMXFTW.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Y3Y6KWQHPWZMXFTW", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Y3Y6KWQHPWZMXFTW.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Y3Y6KWQHPWZMXFTW.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.014 per Dedicated Windows with SQL Std i3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MEWEMY6NUVGMP6AP" : { - "MEWEMY6NUVGMP6AP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MEWEMY6NUVGMP6AP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MEWEMY6NUVGMP6AP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MEWEMY6NUVGMP6AP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL m3.medium Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AEGXDVRPAPWQ229X" : { - "AEGXDVRPAPWQ229X.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AEGXDVRPAPWQ229X", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AEGXDVRPAPWQ229X.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AEGXDVRPAPWQ229X.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.100 per Dedicated Windows BYOL cg1.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6BD6MNUEKG75NY7W" : { - "6BD6MNUEKG75NY7W.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6BD6MNUEKG75NY7W", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6BD6MNUEKG75NY7W.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6BD6MNUEKG75NY7W.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.884 per Dedicated Windows with SQL Std m4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VECCJJE6R85MP4ET" : { - "VECCJJE6R85MP4ET.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VECCJJE6R85MP4ET", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VECCJJE6R85MP4ET.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VECCJJE6R85MP4ET.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.69 per On Demand Windows BYOL d2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FDH7AF66PWQFC4ZX" : { - "FDH7AF66PWQFC4ZX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FDH7AF66PWQFC4ZX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FDH7AF66PWQFC4ZX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FDH7AF66PWQFC4ZX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$27.424 per Dedicated Windows p3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "27.4240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JTDCCHG4KZ5M8H8N" : { - "JTDCCHG4KZ5M8H8N.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JTDCCHG4KZ5M8H8N", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JTDCCHG4KZ5M8H8N.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JTDCCHG4KZ5M8H8N.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.275 per On Demand SUSE m1.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "97BZM647G2XZPFCY" : { - "97BZM647G2XZPFCY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "97BZM647G2XZPFCY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "97BZM647G2XZPFCY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "97BZM647G2XZPFCY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.598 per Dedicated Windows with SQL Web i3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TYZADFBQUJ5K2FN7" : { - "TYZADFBQUJ5K2FN7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TYZADFBQUJ5K2FN7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TYZADFBQUJ5K2FN7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TYZADFBQUJ5K2FN7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.09 per GB - Asia Pacific (Singapore) data transfer to US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "86VC54YVHZCQW5AC" : { - "86VC54YVHZCQW5AC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "86VC54YVHZCQW5AC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "86VC54YVHZCQW5AC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "86VC54YVHZCQW5AC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.403 per Dedicated Usage Windows c4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "R8DGVR4A52UQ7VP6" : { - "R8DGVR4A52UQ7VP6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "R8DGVR4A52UQ7VP6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "R8DGVR4A52UQ7VP6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "R8DGVR4A52UQ7VP6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per GB - US East (Northern Virginia) data transfer from South America (Sao Paulo)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DRAB8D3XCC6DBS2S" : { - "DRAB8D3XCC6DBS2S.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DRAB8D3XCC6DBS2S", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DRAB8D3XCC6DBS2S.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DRAB8D3XCC6DBS2S.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per SUSE p3.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TW7YX8U2PR5YVTFK" : { - "TW7YX8U2PR5YVTFK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TW7YX8U2PR5YVTFK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TW7YX8U2PR5YVTFK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TW7YX8U2PR5YVTFK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows c3.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XNHWHA56JBG8ZQZQ" : { - "XNHWHA56JBG8ZQZQ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XNHWHA56JBG8ZQZQ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XNHWHA56JBG8ZQZQ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XNHWHA56JBG8ZQZQ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Std x1e.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "5S2R8NPMY3DY32FC" : { - "5S2R8NPMY3DY32FC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "5S2R8NPMY3DY32FC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "5S2R8NPMY3DY32FC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "5S2R8NPMY3DY32FC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Std c5.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4CWD92A352MDCZ9Q" : { - "4CWD92A352MDCZ9Q.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4CWD92A352MDCZ9Q", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4CWD92A352MDCZ9Q.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4CWD92A352MDCZ9Q.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.256 per Dedicated Usage SUSE m3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PHH3YFDMQYEVPEK4" : { - "PHH3YFDMQYEVPEK4.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PHH3YFDMQYEVPEK4", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PHH3YFDMQYEVPEK4.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PHH3YFDMQYEVPEK4.JRTCKXETXF.6YS6EN2CT7", - "description" : "$6.772 per On Demand SUSE x1e.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.7720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "B2SAE43884DJ529Q" : { - "B2SAE43884DJ529Q.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "B2SAE43884DJ529Q", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "B2SAE43884DJ529Q.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "B2SAE43884DJ529Q.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL p2.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "E3V2KVENAFSFNH7J" : { - "E3V2KVENAFSFNH7J.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "E3V2KVENAFSFNH7J", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "E3V2KVENAFSFNH7J.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "E3V2KVENAFSFNH7J.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per GB - Asia Pacific (Singapore) data transfer from US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "M9PVZPV4MHCKEKFH" : { - "M9PVZPV4MHCKEKFH.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "M9PVZPV4MHCKEKFH", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "M9PVZPV4MHCKEKFH.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "M9PVZPV4MHCKEKFH.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.26 per On Demand RHEL m4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "269VXUCZZ7E6JNXT" : { - "269VXUCZZ7E6JNXT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "269VXUCZZ7E6JNXT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "269VXUCZZ7E6JNXT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "269VXUCZZ7E6JNXT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.05 per GB-month of Magnetic provisioned storage - US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB-Mo", - "pricePerUnit" : { - "USD" : "0.0500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6UGXE3NSRP2KMUVK" : { - "6UGXE3NSRP2KMUVK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6UGXE3NSRP2KMUVK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6UGXE3NSRP2KMUVK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6UGXE3NSRP2KMUVK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std i2.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TTPHQSRWDV7SEYMT" : { - "TTPHQSRWDV7SEYMT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TTPHQSRWDV7SEYMT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TTPHQSRWDV7SEYMT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TTPHQSRWDV7SEYMT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.938 per Dedicated Windows BYOL i2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MDWHVPMZ3JHUF4C8" : { - "MDWHVPMZ3JHUF4C8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MDWHVPMZ3JHUF4C8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MDWHVPMZ3JHUF4C8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MDWHVPMZ3JHUF4C8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.192 per Dedicated SQL Std m2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3X6QM8VEN9SGUP4E" : { - "3X6QM8VEN9SGUP4E.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3X6QM8VEN9SGUP4E", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3X6QM8VEN9SGUP4E.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3X6QM8VEN9SGUP4E.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.078 per Dedicated Linux m2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "FFSCXMMMXUSSXA8W" : { - "FFSCXMMMXUSSXA8W.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "FFSCXMMMXUSSXA8W", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "FFSCXMMMXUSSXA8W.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "FFSCXMMMXUSSXA8W.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.426 per Dedicated Usage Windows with SQL Web c4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VNT94W34YSHKDST8" : { - "VNT94W34YSHKDST8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VNT94W34YSHKDST8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VNT94W34YSHKDST8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VNT94W34YSHKDST8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$24.61 per Dedicated RHEL p3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "24.6100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "E598E3ESM66XHVUP" : { - "E598E3ESM66XHVUP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "E598E3ESM66XHVUP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "E598E3ESM66XHVUP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "E598E3ESM66XHVUP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.353 per On Demand Windows with SQL Std m3.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CNBDW56G9K7XSBK4" : { - "CNBDW56G9K7XSBK4.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CNBDW56G9K7XSBK4", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CNBDW56G9K7XSBK4.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CNBDW56G9K7XSBK4.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.894 per On Demand Windows with SQL Server Enterprise c3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NRK8WGZ9YPVJGC38" : { - "NRK8WGZ9YPVJGC38.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NRK8WGZ9YPVJGC38", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NRK8WGZ9YPVJGC38.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NRK8WGZ9YPVJGC38.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Linux i3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "HK2GMCFHXFH3NGAD" : { - "HK2GMCFHXFH3NGAD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "HK2GMCFHXFH3NGAD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "HK2GMCFHXFH3NGAD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "HK2GMCFHXFH3NGAD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.05 per Dedicated Usage RHEL p2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "D3DQYQJXGDG9DV7G" : { - "D3DQYQJXGDG9DV7G.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "D3DQYQJXGDG9DV7G", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "D3DQYQJXGDG9DV7G.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "D3DQYQJXGDG9DV7G.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.141 per Dedicated Windows i2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Z5UJJBU6GS6N6Y27" : { - "Z5UJJBU6GS6N6Y27.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Z5UJJBU6GS6N6Y27", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Z5UJJBU6GS6N6Y27.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Z5UJJBU6GS6N6Y27.JRTCKXETXF.6YS6EN2CT7", - "description" : "$14.88 per On Demand Windows with SQL Std r4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.8800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PEZSCPW7MSBPD29U" : { - "PEZSCPW7MSBPD29U.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PEZSCPW7MSBPD29U", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PEZSCPW7MSBPD29U.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PEZSCPW7MSBPD29U.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web r4.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YNCWT4YUEZJHAETE" : { - "YNCWT4YUEZJHAETE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YNCWT4YUEZJHAETE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YNCWT4YUEZJHAETE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YNCWT4YUEZJHAETE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise r4.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6NM6AHQ97YV7NWV2" : { - "6NM6AHQ97YV7NWV2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6NM6AHQ97YV7NWV2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6NM6AHQ97YV7NWV2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6NM6AHQ97YV7NWV2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.780 per Dedicated SUSE c3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZA47RH8PF27SDZKP" : { - "ZA47RH8PF27SDZKP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZA47RH8PF27SDZKP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZA47RH8PF27SDZKP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZA47RH8PF27SDZKP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.420 per On Demand Linux c3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9S3T4JTQ45TQKNTE" : { - "9S3T4JTQ45TQKNTE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9S3T4JTQ45TQKNTE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9S3T4JTQ45TQKNTE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9S3T4JTQ45TQKNTE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.544 per On Demand Windows with SQL Web m4.10xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9NMZ5HGTS2QHKR4V" : { - "9NMZ5HGTS2QHKR4V.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9NMZ5HGTS2QHKR4V", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9NMZ5HGTS2QHKR4V.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9NMZ5HGTS2QHKR4V.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.0216 per On Demand SUSE t2.micro Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0216000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZQQM88TCYA932EPG" : { - "ZQQM88TCYA932EPG.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZQQM88TCYA932EPG", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZQQM88TCYA932EPG.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZQQM88TCYA932EPG.JRTCKXETXF.6YS6EN2CT7", - "description" : "$14.678 per Dedicated Linux x1e.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.6780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "785SBWPX67SS7DW5" : { - "785SBWPX67SS7DW5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "785SBWPX67SS7DW5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "785SBWPX67SS7DW5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "785SBWPX67SS7DW5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per RHEL c5.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3X4XPPD8AEXYQCJ7" : { - "3X4XPPD8AEXYQCJ7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3X4XPPD8AEXYQCJ7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3X4XPPD8AEXYQCJ7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3X4XPPD8AEXYQCJ7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.54 per Dedicated SUSE m4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Y56F747HTG5NJVJ2" : { - "Y56F747HTG5NJVJ2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Y56F747HTG5NJVJ2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Y56F747HTG5NJVJ2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Y56F747HTG5NJVJ2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per GB - EU (London) data transfer from US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VX7DJN9XPR7HMV2K" : { - "VX7DJN9XPR7HMV2K.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VX7DJN9XPR7HMV2K", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VX7DJN9XPR7HMV2K.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VX7DJN9XPR7HMV2K.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE p2.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JHPHDAYNUFXJTVZB" : { - "JHPHDAYNUFXJTVZB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JHPHDAYNUFXJTVZB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JHPHDAYNUFXJTVZB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JHPHDAYNUFXJTVZB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.153 per Dedicated SQL Web m1.small Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "68JXBV5UF5AMUV4X" : { - "68JXBV5UF5AMUV4X.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "68JXBV5UF5AMUV4X", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "68JXBV5UF5AMUV4X.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "68JXBV5UF5AMUV4X.JRTCKXETXF.6YS6EN2CT7", - "description" : "$8.144 per On Demand Windows x1e.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.1440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "R5VPK73B6MUUM6YC" : { - "R5VPK73B6MUUM6YC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "R5VPK73B6MUUM6YC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "R5VPK73B6MUUM6YC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "R5VPK73B6MUUM6YC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.368 per Dedicated SQL Web i2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.3680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZGMR5TZVDVP9BAJZ" : { - "ZGMR5TZVDVP9BAJZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZGMR5TZVDVP9BAJZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZGMR5TZVDVP9BAJZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZGMR5TZVDVP9BAJZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.02 per GB - Canada (Central) data transfer to US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BAFH9QBR62G3RHWT" : { - "BAFH9QBR62G3RHWT.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BAFH9QBR62G3RHWT", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BAFH9QBR62G3RHWT.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BAFH9QBR62G3RHWT.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per SUSE c5.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4EBV6P5EQBBDFNKX" : { - "4EBV6P5EQBBDFNKX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4EBV6P5EQBBDFNKX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4EBV6P5EQBBDFNKX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4EBV6P5EQBBDFNKX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.808 per Dedicated Windows with SQL Server Enterprise m4.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "22SBKEJ8F25GCA2X" : { - "22SBKEJ8F25GCA2X.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "22SBKEJ8F25GCA2X", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "22SBKEJ8F25GCA2X.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "22SBKEJ8F25GCA2X.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.662 per Dedicated Windows with SQL Std c5.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6TEX73KEE94WMEED" : { - "6TEX73KEE94WMEED.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6TEX73KEE94WMEED", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6TEX73KEE94WMEED.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6TEX73KEE94WMEED.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.520 per On Demand Linux c1.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GTXM83ZHJ4EVYY9U" : { - "GTXM83ZHJ4EVYY9U.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GTXM83ZHJ4EVYY9U", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GTXM83ZHJ4EVYY9U.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GTXM83ZHJ4EVYY9U.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.008 per On Demand Windows c3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KVUGTJ5SYPS9UYG6" : { - "KVUGTJ5SYPS9UYG6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KVUGTJ5SYPS9UYG6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KVUGTJ5SYPS9UYG6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KVUGTJ5SYPS9UYG6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Web x1e.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QBZMZDA3WBTDVYJ7" : { - "QBZMZDA3WBTDVYJ7.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QBZMZDA3WBTDVYJ7", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QBZMZDA3WBTDVYJ7.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QBZMZDA3WBTDVYJ7.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.185 per Dedicated SQL Web i2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2BU9UYZTGYW8M965" : { - "2BU9UYZTGYW8M965.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2BU9UYZTGYW8M965", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2BU9UYZTGYW8M965.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2BU9UYZTGYW8M965.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.913 per Dedicated SQL Web m1.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RB56QANQ2YBHVFK2" : { - "RB56QANQ2YBHVFK2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RB56QANQ2YBHVFK2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RB56QANQ2YBHVFK2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RB56QANQ2YBHVFK2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$14.678 per Dedicated Windows BYOL x1e.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.6780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XERSDU2TVYCQWYRV" : { - "XERSDU2TVYCQWYRV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XERSDU2TVYCQWYRV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XERSDU2TVYCQWYRV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XERSDU2TVYCQWYRV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.477 per Dedicated Usage Windows r4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "73HRUT4W38285YYX" : { - "73HRUT4W38285YYX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "73HRUT4W38285YYX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "73HRUT4W38285YYX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "73HRUT4W38285YYX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.44 per On Demand Windows with SQL Std r4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GXY7B6YFCHHVPBQX" : { - "GXY7B6YFCHHVPBQX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GXY7B6YFCHHVPBQX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GXY7B6YFCHHVPBQX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GXY7B6YFCHHVPBQX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Std i3.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "984E6K3QWKATY2P9" : { - "984E6K3QWKATY2P9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "984E6K3QWKATY2P9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "984E6K3QWKATY2P9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "984E6K3QWKATY2P9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows i3.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KBAHSDRSVP6ZT96X" : { - "KBAHSDRSVP6ZT96X.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KBAHSDRSVP6ZT96X", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KBAHSDRSVP6ZT96X.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KBAHSDRSVP6ZT96X.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.048 per Dedicated Linux m1.small Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "N23UBSTNARQRHWES" : { - "N23UBSTNARQRHWES.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "N23UBSTNARQRHWES", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "N23UBSTNARQRHWES.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "N23UBSTNARQRHWES.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.76 per Dedicated Usage SUSE r3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2SN6CBPKJWMJK4W8" : { - "2SN6CBPKJWMJK4W8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2SN6CBPKJWMJK4W8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2SN6CBPKJWMJK4W8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2SN6CBPKJWMJK4W8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$6.372 per On Demand Windows c5.18xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.3720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TA9V737SGNW5GKAK" : { - "TA9V737SGNW5GKAK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TA9V737SGNW5GKAK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TA9V737SGNW5GKAK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TA9V737SGNW5GKAK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$41.344 per Dedicated Usage Windows with SQL Server Enterprise p2.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "41.3440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MRRD2QZTJZU8NEUN" : { - "MRRD2QZTJZU8NEUN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MRRD2QZTJZU8NEUN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MRRD2QZTJZU8NEUN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MRRD2QZTJZU8NEUN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Web i3.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SGYUS9N7VCKNAXVB" : { - "SGYUS9N7VCKNAXVB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SGYUS9N7VCKNAXVB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SGYUS9N7VCKNAXVB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SGYUS9N7VCKNAXVB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.504 per On Demand Windows g3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NTS9R3ZEX6FDMW8S" : { - "NTS9R3ZEX6FDMW8S.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NTS9R3ZEX6FDMW8S", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NTS9R3ZEX6FDMW8S.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NTS9R3ZEX6FDMW8S.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Web i2.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TYB68AE89KN6D5QZ" : { - "TYB68AE89KN6D5QZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TYB68AE89KN6D5QZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TYB68AE89KN6D5QZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TYB68AE89KN6D5QZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL c4.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4WQD6GEAM4NRC7U3" : { - "4WQD6GEAM4NRC7U3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4WQD6GEAM4NRC7U3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4WQD6GEAM4NRC7U3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4WQD6GEAM4NRC7U3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.096 per Dedicated Linux m1.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3P2M6AUE8TUFCQEM" : { - "3P2M6AUE8TUFCQEM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3P2M6AUE8TUFCQEM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3P2M6AUE8TUFCQEM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3P2M6AUE8TUFCQEM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows x1e.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "94UG4CXUHQVWH768" : { - "94UG4CXUHQVWH768.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "94UG4CXUHQVWH768", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "94UG4CXUHQVWH768.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "94UG4CXUHQVWH768.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.992 per Dedicated Linux i3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6BD786EZRWD4UZTB" : { - "6BD786EZRWD4UZTB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6BD786EZRWD4UZTB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6BD786EZRWD4UZTB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6BD786EZRWD4UZTB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.518 per On Demand Windows m3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MZHWDXN9MH59MH34" : { - "MZHWDXN9MH59MH34.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MZHWDXN9MH59MH34", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MZHWDXN9MH59MH34.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MZHWDXN9MH59MH34.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.700 per On Demand SQL Web m2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Z78M4CHWU3KRBC2H" : { - "Z78M4CHWU3KRBC2H.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Z78M4CHWU3KRBC2H", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Z78M4CHWU3KRBC2H.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Z78M4CHWU3KRBC2H.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.28 per Dedicated RHEL m4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TZPJVS2GCV8M5FXM" : { - "TZPJVS2GCV8M5FXM.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TZPJVS2GCV8M5FXM", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TZPJVS2GCV8M5FXM.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TZPJVS2GCV8M5FXM.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per GB data transfer out of US East (Northern Virginia) to CloudFront", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4GRDB56V2W7EVFSU" : { - "4GRDB56V2W7EVFSU.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4GRDB56V2W7EVFSU", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4GRDB56V2W7EVFSU.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4GRDB56V2W7EVFSU.JRTCKXETXF.6YS6EN2CT7", - "description" : "$4.69 per Dedicated RHEL g3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.6900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UNDMB8TE7VGADM8X" : { - "UNDMB8TE7VGADM8X.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UNDMB8TE7VGADM8X", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UNDMB8TE7VGADM8X.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UNDMB8TE7VGADM8X.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux c3.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "TJESF5VS9JX8WXEN" : { - "TJESF5VS9JX8WXEN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "TJESF5VS9JX8WXEN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "TJESF5VS9JX8WXEN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "TJESF5VS9JX8WXEN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE m4.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6AUAERFUWRVM7MMK" : { - "6AUAERFUWRVM7MMK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6AUAERFUWRVM7MMK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6AUAERFUWRVM7MMK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6AUAERFUWRVM7MMK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.06 per On Demand Linux p3.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "EAUDKWWNQJZTV253" : { - "EAUDKWWNQJZTV253.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "EAUDKWWNQJZTV253", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "EAUDKWWNQJZTV253.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "EAUDKWWNQJZTV253.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.02 per GB - US West (Oregon) data transfer to US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ED4J2JJZWVS4X9HY" : { - "ED4J2JJZWVS4X9HY.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ED4J2JJZWVS4X9HY", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ED4J2JJZWVS4X9HY.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ED4J2JJZWVS4X9HY.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux r3.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "X6RTWQ5CB38FVRKJ" : { - "X6RTWQ5CB38FVRKJ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "X6RTWQ5CB38FVRKJ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "X6RTWQ5CB38FVRKJ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "X6RTWQ5CB38FVRKJ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows r3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "9VRMFY5RW5MYMD9F" : { - "9VRMFY5RW5MYMD9F.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "9VRMFY5RW5MYMD9F", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "9VRMFY5RW5MYMD9F.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "9VRMFY5RW5MYMD9F.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.19 per Dedicated RHEL c5.18xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Z33PSF4NA7EKH68C" : { - "Z33PSF4NA7EKH68C.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Z33PSF4NA7EKH68C", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Z33PSF4NA7EKH68C.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Z33PSF4NA7EKH68C.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE i2.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XDMQUDGKMFD5ZV6E" : { - "XDMQUDGKMFD5ZV6E.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XDMQUDGKMFD5ZV6E", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XDMQUDGKMFD5ZV6E.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XDMQUDGKMFD5ZV6E.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL r4.4xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "VK7DM9VN6XHH954M" : { - "VK7DM9VN6XHH954M.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "VK7DM9VN6XHH954M", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "VK7DM9VN6XHH954M.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "VK7DM9VN6XHH954M.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.2 per Dedicated Usage Windows r4.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.2000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JUW4W8N3V4M8BP4F" : { - "JUW4W8N3V4M8BP4F.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JUW4W8N3V4M8BP4F", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JUW4W8N3V4M8BP4F.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JUW4W8N3V4M8BP4F.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per RHEL p3.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2BCVUC7VFQV76XRN" : { - "2BCVUC7VFQV76XRN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2BCVUC7VFQV76XRN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2BCVUC7VFQV76XRN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2BCVUC7VFQV76XRN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std d2.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MXS65NQ4H7WKNXGE" : { - "MXS65NQ4H7WKNXGE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MXS65NQ4H7WKNXGE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MXS65NQ4H7WKNXGE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MXS65NQ4H7WKNXGE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Linux f1.16xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3P9SFGQNFGEFVPCX" : { - "3P9SFGQNFGEFVPCX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3P9SFGQNFGEFVPCX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3P9SFGQNFGEFVPCX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3P9SFGQNFGEFVPCX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.1928 per On Demand SUSE t2.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1928000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AN49H8NYXWHMRMMP" : { - "AN49H8NYXWHMRMMP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AN49H8NYXWHMRMMP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AN49H8NYXWHMRMMP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AN49H8NYXWHMRMMP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.09 per Dedicated Windows BYOL c5.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "63SCWY92BSEPEYVC" : { - "63SCWY92BSEPEYVC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "63SCWY92BSEPEYVC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "63SCWY92BSEPEYVC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "63SCWY92BSEPEYVC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.767 per On Demand Windows g2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CZMS4AAZCDSZGNTD" : { - "CZMS4AAZCDSZGNTD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CZMS4AAZCDSZGNTD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CZMS4AAZCDSZGNTD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CZMS4AAZCDSZGNTD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.193 per On Demand RHEL r4.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4TYUSVW2SFT4SYCV" : { - "4TYUSVW2SFT4SYCV.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4TYUSVW2SFT4SYCV", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4TYUSVW2SFT4SYCV.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4TYUSVW2SFT4SYCV.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.425 per Dedicated Usage Windows with SQL Web r3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3M86JWNYP8BSN55W" : { - "3M86JWNYP8BSN55W.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3M86JWNYP8BSN55W", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3M86JWNYP8BSN55W.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3M86JWNYP8BSN55W.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.550 per On Demand RHEL m2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "7XDBWG89WM5JF367" : { - "7XDBWG89WM5JF367.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "7XDBWG89WM5JF367", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "7XDBWG89WM5JF367.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "7XDBWG89WM5JF367.JRTCKXETXF.6YS6EN2CT7", - "description" : "$15.616 per On Demand Windows with SQL Std i3.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.6160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KC3PFUW2U3T5RRSR" : { - "KC3PFUW2U3T5RRSR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KC3PFUW2U3T5RRSR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KC3PFUW2U3T5RRSR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KC3PFUW2U3T5RRSR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$16.288 per On Demand Windows x1e.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.2880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "6U6GZ2DN4RFCJ7D9" : { - "6U6GZ2DN4RFCJ7D9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "6U6GZ2DN4RFCJ7D9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "6U6GZ2DN4RFCJ7D9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "6U6GZ2DN4RFCJ7D9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.085 per On Demand Linux c5.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "Z73VPF4R8N955QMR" : { - "Z73VPF4R8N955QMR.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "Z73VPF4R8N955QMR", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "Z73VPF4R8N955QMR.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "Z73VPF4R8N955QMR.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.128 per On Demand Linux r4.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "KAZBRUMA5WBV7S69" : { - "KAZBRUMA5WBV7S69.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "KAZBRUMA5WBV7S69", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "KAZBRUMA5WBV7S69.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "KAZBRUMA5WBV7S69.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.5742 per On Demand Windows with SQL Web t2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5742000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "GEDBVWHPGWMPYFMC" : { - "GEDBVWHPGWMPYFMC.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "GEDBVWHPGWMPYFMC", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "GEDBVWHPGWMPYFMC.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "GEDBVWHPGWMPYFMC.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.210 per On Demand Linux c3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MYS2DJRWTYJAZ2G3" : { - "MYS2DJRWTYJAZ2G3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MYS2DJRWTYJAZ2G3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MYS2DJRWTYJAZ2G3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MYS2DJRWTYJAZ2G3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Std c3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "3PNERBF8KG8M4GQ2" : { - "3PNERBF8KG8M4GQ2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "3PNERBF8KG8M4GQ2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "3PNERBF8KG8M4GQ2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "3PNERBF8KG8M4GQ2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.33 per On Demand Windows BYOL r3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "D8HDF78JFRVMSXZK" : { - "D8HDF78JFRVMSXZK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "D8HDF78JFRVMSXZK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "D8HDF78JFRVMSXZK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "D8HDF78JFRVMSXZK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$10.94 per On Demand Windows with SQL Web x1.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.9400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PWKZ9X73UG7P4PFN" : { - "PWKZ9X73UG7P4PFN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PWKZ9X73UG7P4PFN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PWKZ9X73UG7P4PFN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PWKZ9X73UG7P4PFN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL d2.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AXBKPP5M3DJRHZ89" : { - "AXBKPP5M3DJRHZ89.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AXBKPP5M3DJRHZ89", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AXBKPP5M3DJRHZ89.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AXBKPP5M3DJRHZ89.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.339 per Dedicated Windows BYOL x1e.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "4V9HUNHYA5JHS8MD" : { - "4V9HUNHYA5JHS8MD.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "4V9HUNHYA5JHS8MD", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "4V9HUNHYA5JHS8MD.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "4V9HUNHYA5JHS8MD.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Windows with SQL Std c5.9xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "PRPF3JAXJK67A625" : { - "PRPF3JAXJK67A625.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "PRPF3JAXJK67A625", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "PRPF3JAXJK67A625.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "PRPF3JAXJK67A625.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows c4.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "ZA2GJ3U6RCX4Q6HE" : { - "ZA2GJ3U6RCX4Q6HE.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "ZA2GJ3U6RCX4Q6HE", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "ZA2GJ3U6RCX4Q6HE.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "ZA2GJ3U6RCX4Q6HE.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.256 per On Demand SUSE i3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "US4KNUGYQKAD8SVF" : { - "US4KNUGYQKAD8SVF.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "US4KNUGYQKAD8SVF", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "US4KNUGYQKAD8SVF.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "US4KNUGYQKAD8SVF.JRTCKXETXF.6YS6EN2CT7", - "description" : "$12.24 per On Demand Linux p3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.2400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QYDN54PY6Q429VJA" : { - "QYDN54PY6Q429VJA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QYDN54PY6Q429VJA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QYDN54PY6Q429VJA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QYDN54PY6Q429VJA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE i2.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "2Q55CNPTGCQPP362" : { - "2Q55CNPTGCQPP362.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "2Q55CNPTGCQPP362", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "2Q55CNPTGCQPP362.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "2Q55CNPTGCQPP362.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.812 per Dedicated Usage Windows with SQL Web r3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "NPXGF3ETGHQX3T5Z" : { - "NPXGF3ETGHQX3T5Z.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "NPXGF3ETGHQX3T5Z", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "NPXGF3ETGHQX3T5Z.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "NPXGF3ETGHQX3T5Z.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.196 per Dedicated SUSE m1.medium Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "MEMWYBVHG4M8SJQ8" : { - "MEMWYBVHG4M8SJQ8.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "MEMWYBVHG4M8SJQ8", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "MEMWYBVHG4M8SJQ8.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "MEMWYBVHG4M8SJQ8.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.76 per On Demand Windows BYOL d2.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "QE6TWY9JZPAAAFX6" : { - "QE6TWY9JZPAAAFX6.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "QE6TWY9JZPAAAFX6", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "QE6TWY9JZPAAAFX6.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "QE6TWY9JZPAAAFX6.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per RHEL m3.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "K4FQKJH96JE6DDW2" : { - "K4FQKJH96JE6DDW2.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "K4FQKJH96JE6DDW2", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "K4FQKJH96JE6DDW2.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "K4FQKJH96JE6DDW2.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per SUSE m3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "AGHHWVT6KDRBWTWP" : { - "AGHHWVT6KDRBWTWP.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "AGHHWVT6KDRBWTWP", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "AGHHWVT6KDRBWTWP.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "AGHHWVT6KDRBWTWP.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.0058 per On Demand Linux t2.nano Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0058000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "N9VCZ7667JZZWNF5" : { - "N9VCZ7667JZZWNF5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "N9VCZ7667JZZWNF5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "N9VCZ7667JZZWNF5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "N9VCZ7667JZZWNF5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.496 per On Demand Windows BYOL i3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "T9TYJWD5FYY22EY9" : { - "T9TYJWD5FYY22EY9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "T9TYJWD5FYY22EY9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "T9TYJWD5FYY22EY9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "T9TYJWD5FYY22EY9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$7.506 per On Demand Windows with SQL Std c5.9xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "R48KWC2ZSMSQE76W" : { - "R48KWC2ZSMSQE76W.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "R48KWC2ZSMSQE76W", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "R48KWC2ZSMSQE76W.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "R48KWC2ZSMSQE76W.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Linux i2.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "DJHVN6BK8VNTW74G" : { - "DJHVN6BK8VNTW74G.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "DJHVN6BK8VNTW74G", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "DJHVN6BK8VNTW74G.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "DJHVN6BK8VNTW74G.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL c3.large Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "M5Q2FGMPJ4Q6PA2G" : { - "M5Q2FGMPJ4Q6PA2G.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "M5Q2FGMPJ4Q6PA2G", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "M5Q2FGMPJ4Q6PA2G.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "M5Q2FGMPJ4Q6PA2G.JRTCKXETXF.6YS6EN2CT7", - "description" : "$6.799 per On Demand RHEL x1.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.7990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "RSYDZDVYE5V36ECZ" : { - "RSYDZDVYE5V36ECZ.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "RSYDZDVYE5V36ECZ", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "RSYDZDVYE5V36ECZ.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "RSYDZDVYE5V36ECZ.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.805 per On Demand SUSE i2.2xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YDKCXGKCG5THW77R" : { - "YDKCXGKCG5THW77R.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YDKCXGKCG5THW77R", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YDKCXGKCG5THW77R.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YDKCXGKCG5THW77R.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.924 per Dedicated Windows BYOL c3.4xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "E3A2FAQ7KZXK2BME" : { - "E3A2FAQ7KZXK2BME.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "E3A2FAQ7KZXK2BME", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "E3A2FAQ7KZXK2BME.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "E3A2FAQ7KZXK2BME.JRTCKXETXF.6YS6EN2CT7", - "description" : "$17.96 per Dedicated Windows with SQL Std x1.16xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "17.9600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "53K4ZCP8C6KM9F2C" : { - "53K4ZCP8C6KM9F2C.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "53K4ZCP8C6KM9F2C", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "53K4ZCP8C6KM9F2C.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "53K4ZCP8C6KM9F2C.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.32 per Dedicated Usage Windows r3.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "96UUST8GZ7QZZ2Z3" : { - "96UUST8GZ7QZZ2Z3.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "96UUST8GZ7QZZ2Z3", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "96UUST8GZ7QZZ2Z3.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "96UUST8GZ7QZZ2Z3.JRTCKXETXF.6YS6EN2CT7", - "description" : "$16.072 per On Demand Windows with SQL Server Enterprise g2.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.0720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "UEMM3EBWG9B8QGPK" : { - "UEMM3EBWG9B8QGPK.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "UEMM3EBWG9B8QGPK", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "UEMM3EBWG9B8QGPK.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "UEMM3EBWG9B8QGPK.JRTCKXETXF.6YS6EN2CT7", - "description" : "$2.00 per Dedicated Linux m4.10xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XBZH83GR86H4PK4U" : { - "XBZH83GR86H4PK4U.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XBZH83GR86H4PK4U", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XBZH83GR86H4PK4U.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XBZH83GR86H4PK4U.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.00 per Linux c5.2xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "SYFUF8QKH77BHGHX" : { - "SYFUF8QKH77BHGHX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "SYFUF8QKH77BHGHX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "SYFUF8QKH77BHGHX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "SYFUF8QKH77BHGHX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.085 per On Demand Windows BYOL c5.large Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "39FN83U7M4TB4352" : { - "39FN83U7M4TB4352.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "39FN83U7M4TB4352", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "39FN83U7M4TB4352.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "39FN83U7M4TB4352.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.080 per GB - Asia Pacific (Seoul) data transfer to US East (Northern Virginia)", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "GB", - "pricePerUnit" : { - "USD" : "0.0800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "JEV4RPZQUJDFUUG5" : { - "JEV4RPZQUJDFUUG5.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "JEV4RPZQUJDFUUG5", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "JEV4RPZQUJDFUUG5.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "JEV4RPZQUJDFUUG5.JRTCKXETXF.6YS6EN2CT7", - "description" : "$3.855 per Dedicated Usage Windows with SQL Web r3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "CBEVSDJQW44MTAH9" : { - "CBEVSDJQW44MTAH9.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "CBEVSDJQW44MTAH9", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "CBEVSDJQW44MTAH9.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "CBEVSDJQW44MTAH9.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.548 per Dedicated Usage Windows with SQL Web r4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "49B7W7H2P8FD3T53" : { - "49B7W7H2P8FD3T53.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "49B7W7H2P8FD3T53", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "49B7W7H2P8FD3T53.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "49B7W7H2P8FD3T53.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows BYOL i2.8xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "XKP8XXFGKBFRSGFX" : { - "XKP8XXFGKBFRSGFX.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "XKP8XXFGKBFRSGFX", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "XKP8XXFGKBFRSGFX.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "XKP8XXFGKBFRSGFX.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.542 per On Demand SQL Web c3.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "BGU9UG7QCNNGBKAB" : { - "BGU9UG7QCNNGBKAB.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "BGU9UG7QCNNGBKAB", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "BGU9UG7QCNNGBKAB.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "BGU9UG7QCNNGBKAB.JRTCKXETXF.6YS6EN2CT7", - "description" : "$1.084 per On Demand Windows p2.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "X6PQNCEPYKKQHDCA" : { - "X6PQNCEPYKKQHDCA.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "X6PQNCEPYKKQHDCA", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "X6PQNCEPYKKQHDCA.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "X6PQNCEPYKKQHDCA.JRTCKXETXF.6YS6EN2CT7", - "description" : "$13.166 per Dedicated RHEL p3.8xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.1660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "YRB3EKJ97RGRBWWN" : { - "YRB3EKJ97RGRBWWN.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "YRB3EKJ97RGRBWWN", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "YRB3EKJ97RGRBWWN.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "YRB3EKJ97RGRBWWN.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.259 per On Demand RHEL c4.xlarge Instance Hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - }, - "G7WBD4E4RJYGHKER" : { - "G7WBD4E4RJYGHKER.JRTCKXETXF" : { - "offerTermCode" : "JRTCKXETXF", - "sku" : "G7WBD4E4RJYGHKER", - "effectiveDate" : "2017-11-01T00:00:00Z", - "priceDimensions" : { - "G7WBD4E4RJYGHKER.JRTCKXETXF.6YS6EN2CT7" : { - "rateCode" : "G7WBD4E4RJYGHKER.JRTCKXETXF.6YS6EN2CT7", - "description" : "$0.000 per Windows with SQL Server Enterprise r3.xlarge Dedicated Host Instance hour", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { } - } - } - }, - "Reserved" : { - "DQ578CGN99KG6ECF" : { - "DQ578CGN99KG6ECF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "DQ578CGN99KG6ECF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "DQ578CGN99KG6ECF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "DQ578CGN99KG6ECF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11213" - }, - "appliesTo" : [ ] - }, - "DQ578CGN99KG6ECF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "DQ578CGN99KG6ECF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DQ578CGN99KG6ECF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "DQ578CGN99KG6ECF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "DQ578CGN99KG6ECF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "DQ578CGN99KG6ECF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16924" - }, - "appliesTo" : [ ] - }, - "DQ578CGN99KG6ECF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "DQ578CGN99KG6ECF.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DQ578CGN99KG6ECF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "DQ578CGN99KG6ECF", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "DQ578CGN99KG6ECF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "DQ578CGN99KG6ECF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21728" - }, - "appliesTo" : [ ] - }, - "DQ578CGN99KG6ECF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "DQ578CGN99KG6ECF.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DQ578CGN99KG6ECF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "DQ578CGN99KG6ECF", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "DQ578CGN99KG6ECF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "DQ578CGN99KG6ECF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "DQ578CGN99KG6ECF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "DQ578CGN99KG6ECF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "42860" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DQ578CGN99KG6ECF.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "DQ578CGN99KG6ECF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "DQ578CGN99KG6ECF.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "DQ578CGN99KG6ECF.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "DMEAKMC95469FYDS" : { - "DMEAKMC95469FYDS.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "DMEAKMC95469FYDS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DMEAKMC95469FYDS.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "DMEAKMC95469FYDS.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "DMEAKMC95469FYDS.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "DMEAKMC95469FYDS.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "193608" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DMEAKMC95469FYDS.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "DMEAKMC95469FYDS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DMEAKMC95469FYDS.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "DMEAKMC95469FYDS.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DMEAKMC95469FYDS.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "DMEAKMC95469FYDS", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "DMEAKMC95469FYDS.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "DMEAKMC95469FYDS.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "95890" - }, - "appliesTo" : [ ] - }, - "DMEAKMC95469FYDS.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "DMEAKMC95469FYDS.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DMEAKMC95469FYDS.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "DMEAKMC95469FYDS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DMEAKMC95469FYDS.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "DMEAKMC95469FYDS.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "96973" - }, - "appliesTo" : [ ] - }, - "DMEAKMC95469FYDS.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "DMEAKMC95469FYDS.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DMEAKMC95469FYDS.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "DMEAKMC95469FYDS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DMEAKMC95469FYDS.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "DMEAKMC95469FYDS.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "190895" - }, - "appliesTo" : [ ] - }, - "DMEAKMC95469FYDS.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "DMEAKMC95469FYDS.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DMEAKMC95469FYDS.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "DMEAKMC95469FYDS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DMEAKMC95469FYDS.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "DMEAKMC95469FYDS.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DMEAKMC95469FYDS.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "DMEAKMC95469FYDS", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "DMEAKMC95469FYDS.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "DMEAKMC95469FYDS.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "DMEAKMC95469FYDS.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "DMEAKMC95469FYDS.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "65971" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DMEAKMC95469FYDS.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "DMEAKMC95469FYDS", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "DMEAKMC95469FYDS.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "DMEAKMC95469FYDS.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33057" - }, - "appliesTo" : [ ] - }, - "DMEAKMC95469FYDS.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "DMEAKMC95469FYDS.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DMEAKMC95469FYDS.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "DMEAKMC95469FYDS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DMEAKMC95469FYDS.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "DMEAKMC95469FYDS.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "DMEAKMC95469FYDS.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "DMEAKMC95469FYDS.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "67063" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DMEAKMC95469FYDS.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "DMEAKMC95469FYDS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DMEAKMC95469FYDS.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "DMEAKMC95469FYDS.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.7210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DMEAKMC95469FYDS.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "DMEAKMC95469FYDS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DMEAKMC95469FYDS.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "DMEAKMC95469FYDS.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DMEAKMC95469FYDS.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "DMEAKMC95469FYDS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DMEAKMC95469FYDS.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "DMEAKMC95469FYDS.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8370000000" - }, - "appliesTo" : [ ] - }, - "DMEAKMC95469FYDS.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "DMEAKMC95469FYDS.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33614" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "EP2SBMU2Z582EJNK" : { - "EP2SBMU2Z582EJNK.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "EP2SBMU2Z582EJNK", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "EP2SBMU2Z582EJNK.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "EP2SBMU2Z582EJNK.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "EP2SBMU2Z582EJNK.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "EP2SBMU2Z582EJNK", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "EP2SBMU2Z582EJNK.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "EP2SBMU2Z582EJNK.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4200000000" - }, - "appliesTo" : [ ] - }, - "EP2SBMU2Z582EJNK.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "EP2SBMU2Z582EJNK.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3258" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EP2SBMU2Z582EJNK.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "EP2SBMU2Z582EJNK", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "EP2SBMU2Z582EJNK.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "EP2SBMU2Z582EJNK.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "EP2SBMU2Z582EJNK.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "EP2SBMU2Z582EJNK.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5801" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EP2SBMU2Z582EJNK.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "EP2SBMU2Z582EJNK", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "EP2SBMU2Z582EJNK.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "EP2SBMU2Z582EJNK.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "EP2SBMU2Z582EJNK.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "EP2SBMU2Z582EJNK.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13443" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EP2SBMU2Z582EJNK.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "EP2SBMU2Z582EJNK", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "EP2SBMU2Z582EJNK.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "EP2SBMU2Z582EJNK.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2085" - }, - "appliesTo" : [ ] - }, - "EP2SBMU2Z582EJNK.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "EP2SBMU2Z582EJNK.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "6U2SB7CVRVWJEX22" : { - "6U2SB7CVRVWJEX22.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6U2SB7CVRVWJEX22", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6U2SB7CVRVWJEX22.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6U2SB7CVRVWJEX22.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "68338" - }, - "appliesTo" : [ ] - }, - "6U2SB7CVRVWJEX22.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6U2SB7CVRVWJEX22.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6U2SB7CVRVWJEX22.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6U2SB7CVRVWJEX22", - "effectiveDate" : "2016-06-30T23:59:59Z", - "priceDimensions" : { - "6U2SB7CVRVWJEX22.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6U2SB7CVRVWJEX22.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34285" - }, - "appliesTo" : [ ] - }, - "6U2SB7CVRVWJEX22.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6U2SB7CVRVWJEX22.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.0440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6U2SB7CVRVWJEX22.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "6U2SB7CVRVWJEX22", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6U2SB7CVRVWJEX22.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "6U2SB7CVRVWJEX22.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "78420" - }, - "appliesTo" : [ ] - }, - "6U2SB7CVRVWJEX22.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "6U2SB7CVRVWJEX22.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6U2SB7CVRVWJEX22.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "6U2SB7CVRVWJEX22", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6U2SB7CVRVWJEX22.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "6U2SB7CVRVWJEX22.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.5820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6U2SB7CVRVWJEX22.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "6U2SB7CVRVWJEX22", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6U2SB7CVRVWJEX22.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "6U2SB7CVRVWJEX22.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39429" - }, - "appliesTo" : [ ] - }, - "6U2SB7CVRVWJEX22.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "6U2SB7CVRVWJEX22.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.6310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6U2SB7CVRVWJEX22.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "6U2SB7CVRVWJEX22", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6U2SB7CVRVWJEX22.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "6U2SB7CVRVWJEX22.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "120997" - }, - "appliesTo" : [ ] - }, - "6U2SB7CVRVWJEX22.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "6U2SB7CVRVWJEX22.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6U2SB7CVRVWJEX22.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "6U2SB7CVRVWJEX22", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6U2SB7CVRVWJEX22.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "6U2SB7CVRVWJEX22.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.4180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6U2SB7CVRVWJEX22.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6U2SB7CVRVWJEX22", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "6U2SB7CVRVWJEX22.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6U2SB7CVRVWJEX22.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1150000000" - }, - "appliesTo" : [ ] - }, - "6U2SB7CVRVWJEX22.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6U2SB7CVRVWJEX22.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "52166" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6U2SB7CVRVWJEX22.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6U2SB7CVRVWJEX22", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6U2SB7CVRVWJEX22.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6U2SB7CVRVWJEX22.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.3490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6U2SB7CVRVWJEX22.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "6U2SB7CVRVWJEX22", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6U2SB7CVRVWJEX22.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "6U2SB7CVRVWJEX22.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.0610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6U2SB7CVRVWJEX22.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "6U2SB7CVRVWJEX22", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6U2SB7CVRVWJEX22.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "6U2SB7CVRVWJEX22.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "59990" - }, - "appliesTo" : [ ] - }, - "6U2SB7CVRVWJEX22.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "6U2SB7CVRVWJEX22.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6U2SB7CVRVWJEX22.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6U2SB7CVRVWJEX22", - "effectiveDate" : "2016-06-30T23:59:59Z", - "priceDimensions" : { - "6U2SB7CVRVWJEX22.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6U2SB7CVRVWJEX22.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "101488" - }, - "appliesTo" : [ ] - }, - "6U2SB7CVRVWJEX22.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6U2SB7CVRVWJEX22.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "7G6ZVMHDU3FVW9D5" : { - "7G6ZVMHDU3FVW9D5.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "7G6ZVMHDU3FVW9D5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7G6ZVMHDU3FVW9D5.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "7G6ZVMHDU3FVW9D5.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "78337" - }, - "appliesTo" : [ ] - }, - "7G6ZVMHDU3FVW9D5.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "7G6ZVMHDU3FVW9D5.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7G6ZVMHDU3FVW9D5.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "7G6ZVMHDU3FVW9D5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7G6ZVMHDU3FVW9D5.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "7G6ZVMHDU3FVW9D5.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9390000000" - }, - "appliesTo" : [ ] - }, - "7G6ZVMHDU3FVW9D5.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "7G6ZVMHDU3FVW9D5.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "103515" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7G6ZVMHDU3FVW9D5.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "7G6ZVMHDU3FVW9D5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7G6ZVMHDU3FVW9D5.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "7G6ZVMHDU3FVW9D5.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.9690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7G6ZVMHDU3FVW9D5.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "7G6ZVMHDU3FVW9D5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7G6ZVMHDU3FVW9D5.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "7G6ZVMHDU3FVW9D5.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8640000000" - }, - "appliesTo" : [ ] - }, - "7G6ZVMHDU3FVW9D5.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "7G6ZVMHDU3FVW9D5.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "101558" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7G6ZVMHDU3FVW9D5.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "7G6ZVMHDU3FVW9D5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7G6ZVMHDU3FVW9D5.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "7G6ZVMHDU3FVW9D5.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "75815" - }, - "appliesTo" : [ ] - }, - "7G6ZVMHDU3FVW9D5.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "7G6ZVMHDU3FVW9D5.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7G6ZVMHDU3FVW9D5.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "7G6ZVMHDU3FVW9D5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7G6ZVMHDU3FVW9D5.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "7G6ZVMHDU3FVW9D5.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "7G6ZVMHDU3FVW9D5.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "7G6ZVMHDU3FVW9D5.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "201551" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7G6ZVMHDU3FVW9D5.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "7G6ZVMHDU3FVW9D5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7G6ZVMHDU3FVW9D5.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "7G6ZVMHDU3FVW9D5.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7G6ZVMHDU3FVW9D5.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "7G6ZVMHDU3FVW9D5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7G6ZVMHDU3FVW9D5.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "7G6ZVMHDU3FVW9D5.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.4940000000" - }, - "appliesTo" : [ ] - }, - "7G6ZVMHDU3FVW9D5.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "7G6ZVMHDU3FVW9D5.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39366" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7G6ZVMHDU3FVW9D5.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "7G6ZVMHDU3FVW9D5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7G6ZVMHDU3FVW9D5.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "7G6ZVMHDU3FVW9D5.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.7920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7G6ZVMHDU3FVW9D5.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "7G6ZVMHDU3FVW9D5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7G6ZVMHDU3FVW9D5.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "7G6ZVMHDU3FVW9D5.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38079" - }, - "appliesTo" : [ ] - }, - "7G6ZVMHDU3FVW9D5.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "7G6ZVMHDU3FVW9D5.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.3470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7G6ZVMHDU3FVW9D5.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "7G6ZVMHDU3FVW9D5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7G6ZVMHDU3FVW9D5.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "7G6ZVMHDU3FVW9D5.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "206431" - }, - "appliesTo" : [ ] - }, - "7G6ZVMHDU3FVW9D5.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "7G6ZVMHDU3FVW9D5.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7G6ZVMHDU3FVW9D5.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "7G6ZVMHDU3FVW9D5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7G6ZVMHDU3FVW9D5.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "7G6ZVMHDU3FVW9D5.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.8080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "D87JMYVFZXKJD58A" : { - "D87JMYVFZXKJD58A.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "D87JMYVFZXKJD58A", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "D87JMYVFZXKJD58A.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "D87JMYVFZXKJD58A.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "D87JMYVFZXKJD58A.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "D87JMYVFZXKJD58A", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "D87JMYVFZXKJD58A.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "D87JMYVFZXKJD58A.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "714" - }, - "appliesTo" : [ ] - }, - "D87JMYVFZXKJD58A.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "D87JMYVFZXKJD58A.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "D87JMYVFZXKJD58A.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "D87JMYVFZXKJD58A", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "D87JMYVFZXKJD58A.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "D87JMYVFZXKJD58A.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1190" - }, - "appliesTo" : [ ] - }, - "D87JMYVFZXKJD58A.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "D87JMYVFZXKJD58A.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "D87JMYVFZXKJD58A.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "D87JMYVFZXKJD58A", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "D87JMYVFZXKJD58A.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "D87JMYVFZXKJD58A.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2274" - }, - "appliesTo" : [ ] - }, - "D87JMYVFZXKJD58A.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "D87JMYVFZXKJD58A.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "D87JMYVFZXKJD58A.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "D87JMYVFZXKJD58A", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "D87JMYVFZXKJD58A.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "D87JMYVFZXKJD58A.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1178" - }, - "appliesTo" : [ ] - }, - "D87JMYVFZXKJD58A.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "D87JMYVFZXKJD58A.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "HYZTQKMNAKH6FG9C" : { - "HYZTQKMNAKH6FG9C.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "HYZTQKMNAKH6FG9C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HYZTQKMNAKH6FG9C.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "HYZTQKMNAKH6FG9C.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9007" - }, - "appliesTo" : [ ] - }, - "HYZTQKMNAKH6FG9C.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "HYZTQKMNAKH6FG9C.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HYZTQKMNAKH6FG9C.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "HYZTQKMNAKH6FG9C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HYZTQKMNAKH6FG9C.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "HYZTQKMNAKH6FG9C.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23443" - }, - "appliesTo" : [ ] - }, - "HYZTQKMNAKH6FG9C.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "HYZTQKMNAKH6FG9C.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "HYZTQKMNAKH6FG9C.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "HYZTQKMNAKH6FG9C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HYZTQKMNAKH6FG9C.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "HYZTQKMNAKH6FG9C.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10193" - }, - "appliesTo" : [ ] - }, - "HYZTQKMNAKH6FG9C.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "HYZTQKMNAKH6FG9C.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HYZTQKMNAKH6FG9C.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "HYZTQKMNAKH6FG9C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HYZTQKMNAKH6FG9C.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "HYZTQKMNAKH6FG9C.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "HYZTQKMNAKH6FG9C.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "HYZTQKMNAKH6FG9C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HYZTQKMNAKH6FG9C.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "HYZTQKMNAKH6FG9C.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20494" - }, - "appliesTo" : [ ] - }, - "HYZTQKMNAKH6FG9C.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "HYZTQKMNAKH6FG9C.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HYZTQKMNAKH6FG9C.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "HYZTQKMNAKH6FG9C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HYZTQKMNAKH6FG9C.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "HYZTQKMNAKH6FG9C.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "HYZTQKMNAKH6FG9C.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "HYZTQKMNAKH6FG9C.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9824" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HYZTQKMNAKH6FG9C.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "HYZTQKMNAKH6FG9C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HYZTQKMNAKH6FG9C.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "HYZTQKMNAKH6FG9C.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7040000000" - }, - "appliesTo" : [ ] - }, - "HYZTQKMNAKH6FG9C.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "HYZTQKMNAKH6FG9C.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5026" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HYZTQKMNAKH6FG9C.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "HYZTQKMNAKH6FG9C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HYZTQKMNAKH6FG9C.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "HYZTQKMNAKH6FG9C.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "HYZTQKMNAKH6FG9C.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "HYZTQKMNAKH6FG9C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HYZTQKMNAKH6FG9C.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "HYZTQKMNAKH6FG9C.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "HYZTQKMNAKH6FG9C.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "HYZTQKMNAKH6FG9C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HYZTQKMNAKH6FG9C.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "HYZTQKMNAKH6FG9C.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6350000000" - }, - "appliesTo" : [ ] - }, - "HYZTQKMNAKH6FG9C.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "HYZTQKMNAKH6FG9C.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4423" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HYZTQKMNAKH6FG9C.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "HYZTQKMNAKH6FG9C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HYZTQKMNAKH6FG9C.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "HYZTQKMNAKH6FG9C.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11006" - }, - "appliesTo" : [ ] - }, - "HYZTQKMNAKH6FG9C.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "HYZTQKMNAKH6FG9C.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "HYZTQKMNAKH6FG9C.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "HYZTQKMNAKH6FG9C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HYZTQKMNAKH6FG9C.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "HYZTQKMNAKH6FG9C.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "2BEAK4F883TCCQMS" : { - "2BEAK4F883TCCQMS.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "2BEAK4F883TCCQMS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2BEAK4F883TCCQMS.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "2BEAK4F883TCCQMS.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1110000000" - }, - "appliesTo" : [ ] - }, - "2BEAK4F883TCCQMS.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "2BEAK4F883TCCQMS.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9734" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2BEAK4F883TCCQMS.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "2BEAK4F883TCCQMS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2BEAK4F883TCCQMS.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "2BEAK4F883TCCQMS.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "2BEAK4F883TCCQMS.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "2BEAK4F883TCCQMS.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19374" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2BEAK4F883TCCQMS.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "2BEAK4F883TCCQMS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2BEAK4F883TCCQMS.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "2BEAK4F883TCCQMS.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "2BEAK4F883TCCQMS.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "2BEAK4F883TCCQMS.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "51001" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2BEAK4F883TCCQMS.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "2BEAK4F883TCCQMS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2BEAK4F883TCCQMS.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "2BEAK4F883TCCQMS.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2BEAK4F883TCCQMS.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "2BEAK4F883TCCQMS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2BEAK4F883TCCQMS.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "2BEAK4F883TCCQMS.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9790000000" - }, - "appliesTo" : [ ] - }, - "2BEAK4F883TCCQMS.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "2BEAK4F883TCCQMS.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25716" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2BEAK4F883TCCQMS.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "2BEAK4F883TCCQMS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2BEAK4F883TCCQMS.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "2BEAK4F883TCCQMS.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "52343" - }, - "appliesTo" : [ ] - }, - "2BEAK4F883TCCQMS.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "2BEAK4F883TCCQMS.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2BEAK4F883TCCQMS.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "2BEAK4F883TCCQMS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2BEAK4F883TCCQMS.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "2BEAK4F883TCCQMS.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26254" - }, - "appliesTo" : [ ] - }, - "2BEAK4F883TCCQMS.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "2BEAK4F883TCCQMS.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2BEAK4F883TCCQMS.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "2BEAK4F883TCCQMS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2BEAK4F883TCCQMS.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "2BEAK4F883TCCQMS.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2BEAK4F883TCCQMS.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "2BEAK4F883TCCQMS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2BEAK4F883TCCQMS.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "2BEAK4F883TCCQMS.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1520000000" - }, - "appliesTo" : [ ] - }, - "2BEAK4F883TCCQMS.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "2BEAK4F883TCCQMS.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10088" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2BEAK4F883TCCQMS.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "2BEAK4F883TCCQMS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2BEAK4F883TCCQMS.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "2BEAK4F883TCCQMS.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20067" - }, - "appliesTo" : [ ] - }, - "2BEAK4F883TCCQMS.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "2BEAK4F883TCCQMS.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2BEAK4F883TCCQMS.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "2BEAK4F883TCCQMS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2BEAK4F883TCCQMS.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "2BEAK4F883TCCQMS.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2BEAK4F883TCCQMS.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "2BEAK4F883TCCQMS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2BEAK4F883TCCQMS.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "2BEAK4F883TCCQMS.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "3BZUZ8TX5Q6KDMND" : { - "3BZUZ8TX5Q6KDMND.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "3BZUZ8TX5Q6KDMND", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3BZUZ8TX5Q6KDMND.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "3BZUZ8TX5Q6KDMND.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "3BZUZ8TX5Q6KDMND.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "3BZUZ8TX5Q6KDMND.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1330" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3BZUZ8TX5Q6KDMND.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "3BZUZ8TX5Q6KDMND", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "3BZUZ8TX5Q6KDMND.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "3BZUZ8TX5Q6KDMND.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1010000000" - }, - "appliesTo" : [ ] - }, - "3BZUZ8TX5Q6KDMND.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "3BZUZ8TX5Q6KDMND.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "473" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3BZUZ8TX5Q6KDMND.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "3BZUZ8TX5Q6KDMND", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3BZUZ8TX5Q6KDMND.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "3BZUZ8TX5Q6KDMND.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3BZUZ8TX5Q6KDMND.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "3BZUZ8TX5Q6KDMND", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "3BZUZ8TX5Q6KDMND.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "3BZUZ8TX5Q6KDMND.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2948" - }, - "appliesTo" : [ ] - }, - "3BZUZ8TX5Q6KDMND.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "3BZUZ8TX5Q6KDMND.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3BZUZ8TX5Q6KDMND.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "3BZUZ8TX5Q6KDMND", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "3BZUZ8TX5Q6KDMND.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "3BZUZ8TX5Q6KDMND.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "719" - }, - "appliesTo" : [ ] - }, - "3BZUZ8TX5Q6KDMND.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "3BZUZ8TX5Q6KDMND.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "XP5P8NMSB2W7KP3U" : { - "XP5P8NMSB2W7KP3U.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "XP5P8NMSB2W7KP3U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XP5P8NMSB2W7KP3U.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "XP5P8NMSB2W7KP3U.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27248" - }, - "appliesTo" : [ ] - }, - "XP5P8NMSB2W7KP3U.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "XP5P8NMSB2W7KP3U.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XP5P8NMSB2W7KP3U.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "XP5P8NMSB2W7KP3U", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "XP5P8NMSB2W7KP3U.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "XP5P8NMSB2W7KP3U.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XP5P8NMSB2W7KP3U.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XP5P8NMSB2W7KP3U", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XP5P8NMSB2W7KP3U.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XP5P8NMSB2W7KP3U.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3760000000" - }, - "appliesTo" : [ ] - }, - "XP5P8NMSB2W7KP3U.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XP5P8NMSB2W7KP3U.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12048" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XP5P8NMSB2W7KP3U.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "XP5P8NMSB2W7KP3U", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "XP5P8NMSB2W7KP3U.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "XP5P8NMSB2W7KP3U.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32530" - }, - "appliesTo" : [ ] - }, - "XP5P8NMSB2W7KP3U.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "XP5P8NMSB2W7KP3U.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XP5P8NMSB2W7KP3U.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XP5P8NMSB2W7KP3U", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XP5P8NMSB2W7KP3U.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XP5P8NMSB2W7KP3U.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "41560" - }, - "appliesTo" : [ ] - }, - "XP5P8NMSB2W7KP3U.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XP5P8NMSB2W7KP3U.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XP5P8NMSB2W7KP3U.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XP5P8NMSB2W7KP3U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XP5P8NMSB2W7KP3U.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XP5P8NMSB2W7KP3U.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23616" - }, - "appliesTo" : [ ] - }, - "XP5P8NMSB2W7KP3U.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XP5P8NMSB2W7KP3U.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XP5P8NMSB2W7KP3U.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "XP5P8NMSB2W7KP3U", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "XP5P8NMSB2W7KP3U.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "XP5P8NMSB2W7KP3U.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "63763" - }, - "appliesTo" : [ ] - }, - "XP5P8NMSB2W7KP3U.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "XP5P8NMSB2W7KP3U.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XP5P8NMSB2W7KP3U.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "XP5P8NMSB2W7KP3U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XP5P8NMSB2W7KP3U.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "XP5P8NMSB2W7KP3U.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XP5P8NMSB2W7KP3U.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XP5P8NMSB2W7KP3U", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XP5P8NMSB2W7KP3U.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XP5P8NMSB2W7KP3U.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XP5P8NMSB2W7KP3U.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "XP5P8NMSB2W7KP3U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XP5P8NMSB2W7KP3U.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "XP5P8NMSB2W7KP3U.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13902" - }, - "appliesTo" : [ ] - }, - "XP5P8NMSB2W7KP3U.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "XP5P8NMSB2W7KP3U.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XP5P8NMSB2W7KP3U.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XP5P8NMSB2W7KP3U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XP5P8NMSB2W7KP3U.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XP5P8NMSB2W7KP3U.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22136" - }, - "appliesTo" : [ ] - }, - "XP5P8NMSB2W7KP3U.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XP5P8NMSB2W7KP3U.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "SMTQRSCDV7BY873H" : { - "SMTQRSCDV7BY873H.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SMTQRSCDV7BY873H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SMTQRSCDV7BY873H.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SMTQRSCDV7BY873H.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8171" - }, - "appliesTo" : [ ] - }, - "SMTQRSCDV7BY873H.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SMTQRSCDV7BY873H.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SMTQRSCDV7BY873H.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SMTQRSCDV7BY873H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SMTQRSCDV7BY873H.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SMTQRSCDV7BY873H.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4197" - }, - "appliesTo" : [ ] - }, - "SMTQRSCDV7BY873H.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SMTQRSCDV7BY873H.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SMTQRSCDV7BY873H.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SMTQRSCDV7BY873H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SMTQRSCDV7BY873H.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SMTQRSCDV7BY873H.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15359" - }, - "appliesTo" : [ ] - }, - "SMTQRSCDV7BY873H.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SMTQRSCDV7BY873H.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SMTQRSCDV7BY873H.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "SMTQRSCDV7BY873H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SMTQRSCDV7BY873H.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "SMTQRSCDV7BY873H.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SMTQRSCDV7BY873H.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SMTQRSCDV7BY873H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SMTQRSCDV7BY873H.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SMTQRSCDV7BY873H.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8152" - }, - "appliesTo" : [ ] - }, - "SMTQRSCDV7BY873H.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SMTQRSCDV7BY873H.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SMTQRSCDV7BY873H.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "SMTQRSCDV7BY873H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SMTQRSCDV7BY873H.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "SMTQRSCDV7BY873H.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SMTQRSCDV7BY873H.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "SMTQRSCDV7BY873H.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18308" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SMTQRSCDV7BY873H.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "SMTQRSCDV7BY873H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SMTQRSCDV7BY873H.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "SMTQRSCDV7BY873H.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9339" - }, - "appliesTo" : [ ] - }, - "SMTQRSCDV7BY873H.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "SMTQRSCDV7BY873H.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SMTQRSCDV7BY873H.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SMTQRSCDV7BY873H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SMTQRSCDV7BY873H.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SMTQRSCDV7BY873H.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SMTQRSCDV7BY873H.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "SMTQRSCDV7BY873H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SMTQRSCDV7BY873H.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "SMTQRSCDV7BY873H.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SMTQRSCDV7BY873H.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "SMTQRSCDV7BY873H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SMTQRSCDV7BY873H.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "SMTQRSCDV7BY873H.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SMTQRSCDV7BY873H.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "SMTQRSCDV7BY873H.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9353" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SMTQRSCDV7BY873H.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "SMTQRSCDV7BY873H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SMTQRSCDV7BY873H.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "SMTQRSCDV7BY873H.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SMTQRSCDV7BY873H.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "SMTQRSCDV7BY873H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SMTQRSCDV7BY873H.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "SMTQRSCDV7BY873H.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4800" - }, - "appliesTo" : [ ] - }, - "SMTQRSCDV7BY873H.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "SMTQRSCDV7BY873H.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "24XN5CF83RWVHY65" : { - "24XN5CF83RWVHY65.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "24XN5CF83RWVHY65", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "24XN5CF83RWVHY65.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "24XN5CF83RWVHY65.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9318" - }, - "appliesTo" : [ ] - }, - "24XN5CF83RWVHY65.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "24XN5CF83RWVHY65.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "24XN5CF83RWVHY65.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "24XN5CF83RWVHY65", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "24XN5CF83RWVHY65.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "24XN5CF83RWVHY65.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12669" - }, - "appliesTo" : [ ] - }, - "24XN5CF83RWVHY65.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "24XN5CF83RWVHY65.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "24XN5CF83RWVHY65.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "24XN5CF83RWVHY65", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "24XN5CF83RWVHY65.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "24XN5CF83RWVHY65.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4755" - }, - "appliesTo" : [ ] - }, - "24XN5CF83RWVHY65.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "24XN5CF83RWVHY65.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "24XN5CF83RWVHY65.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "24XN5CF83RWVHY65", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "24XN5CF83RWVHY65.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "24XN5CF83RWVHY65.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14088" - }, - "appliesTo" : [ ] - }, - "24XN5CF83RWVHY65.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "24XN5CF83RWVHY65.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "24XN5CF83RWVHY65.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "24XN5CF83RWVHY65", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "24XN5CF83RWVHY65.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "24XN5CF83RWVHY65.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20236" - }, - "appliesTo" : [ ] - }, - "24XN5CF83RWVHY65.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "24XN5CF83RWVHY65.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "24XN5CF83RWVHY65.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "24XN5CF83RWVHY65", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "24XN5CF83RWVHY65.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "24XN5CF83RWVHY65.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "24XN5CF83RWVHY65.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "24XN5CF83RWVHY65", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "24XN5CF83RWVHY65.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "24XN5CF83RWVHY65.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "24XN5CF83RWVHY65.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "24XN5CF83RWVHY65", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "24XN5CF83RWVHY65.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "24XN5CF83RWVHY65.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10759" - }, - "appliesTo" : [ ] - }, - "24XN5CF83RWVHY65.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "24XN5CF83RWVHY65.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "24XN5CF83RWVHY65.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "24XN5CF83RWVHY65", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "24XN5CF83RWVHY65.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "24XN5CF83RWVHY65.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "24XN5CF83RWVHY65.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "24XN5CF83RWVHY65", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "24XN5CF83RWVHY65.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "24XN5CF83RWVHY65.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "24XN5CF83RWVHY65.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "24XN5CF83RWVHY65.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27609" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "24XN5CF83RWVHY65.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "24XN5CF83RWVHY65", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "24XN5CF83RWVHY65.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "24XN5CF83RWVHY65.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "24XN5CF83RWVHY65.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "24XN5CF83RWVHY65", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "24XN5CF83RWVHY65.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "24XN5CF83RWVHY65.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6347" - }, - "appliesTo" : [ ] - }, - "24XN5CF83RWVHY65.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "24XN5CF83RWVHY65.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "7QJJXQX9QWC5GEPD" : { - "7QJJXQX9QWC5GEPD.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "7QJJXQX9QWC5GEPD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7QJJXQX9QWC5GEPD.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "7QJJXQX9QWC5GEPD.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7QJJXQX9QWC5GEPD.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "7QJJXQX9QWC5GEPD", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "7QJJXQX9QWC5GEPD.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "7QJJXQX9QWC5GEPD.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11958" - }, - "appliesTo" : [ ] - }, - "7QJJXQX9QWC5GEPD.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "7QJJXQX9QWC5GEPD.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7QJJXQX9QWC5GEPD.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "7QJJXQX9QWC5GEPD", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "7QJJXQX9QWC5GEPD.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "7QJJXQX9QWC5GEPD.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7QJJXQX9QWC5GEPD.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "7QJJXQX9QWC5GEPD", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "7QJJXQX9QWC5GEPD.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "7QJJXQX9QWC5GEPD.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2710000000" - }, - "appliesTo" : [ ] - }, - "7QJJXQX9QWC5GEPD.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "7QJJXQX9QWC5GEPD.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7126" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7QJJXQX9QWC5GEPD.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "7QJJXQX9QWC5GEPD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7QJJXQX9QWC5GEPD.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "7QJJXQX9QWC5GEPD.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5389" - }, - "appliesTo" : [ ] - }, - "7QJJXQX9QWC5GEPD.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "7QJJXQX9QWC5GEPD.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7QJJXQX9QWC5GEPD.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "7QJJXQX9QWC5GEPD", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "7QJJXQX9QWC5GEPD.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "7QJJXQX9QWC5GEPD.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14100" - }, - "appliesTo" : [ ] - }, - "7QJJXQX9QWC5GEPD.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "7QJJXQX9QWC5GEPD.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7QJJXQX9QWC5GEPD.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "7QJJXQX9QWC5GEPD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7QJJXQX9QWC5GEPD.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "7QJJXQX9QWC5GEPD.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2515" - }, - "appliesTo" : [ ] - }, - "7QJJXQX9QWC5GEPD.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "7QJJXQX9QWC5GEPD.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7QJJXQX9QWC5GEPD.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "7QJJXQX9QWC5GEPD", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "7QJJXQX9QWC5GEPD.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "7QJJXQX9QWC5GEPD.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7QJJXQX9QWC5GEPD.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "7QJJXQX9QWC5GEPD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7QJJXQX9QWC5GEPD.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "7QJJXQX9QWC5GEPD.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6409000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7QJJXQX9QWC5GEPD.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "7QJJXQX9QWC5GEPD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7QJJXQX9QWC5GEPD.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "7QJJXQX9QWC5GEPD.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2727" - }, - "appliesTo" : [ ] - }, - "7QJJXQX9QWC5GEPD.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "7QJJXQX9QWC5GEPD.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3113000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7QJJXQX9QWC5GEPD.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "7QJJXQX9QWC5GEPD", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "7QJJXQX9QWC5GEPD.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "7QJJXQX9QWC5GEPD.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4974" - }, - "appliesTo" : [ ] - }, - "7QJJXQX9QWC5GEPD.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "7QJJXQX9QWC5GEPD.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7QJJXQX9QWC5GEPD.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "7QJJXQX9QWC5GEPD", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "7QJJXQX9QWC5GEPD.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "7QJJXQX9QWC5GEPD.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6147" - }, - "appliesTo" : [ ] - }, - "7QJJXQX9QWC5GEPD.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "7QJJXQX9QWC5GEPD.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "KV46EU5KJGKB53ZX" : { - "KV46EU5KJGKB53ZX.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "KV46EU5KJGKB53ZX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "KV46EU5KJGKB53ZX.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "KV46EU5KJGKB53ZX.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0880000000" - }, - "appliesTo" : [ ] - }, - "KV46EU5KJGKB53ZX.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "KV46EU5KJGKB53ZX.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "272" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KV46EU5KJGKB53ZX.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "KV46EU5KJGKB53ZX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "KV46EU5KJGKB53ZX.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "KV46EU5KJGKB53ZX.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KV46EU5KJGKB53ZX.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "KV46EU5KJGKB53ZX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "KV46EU5KJGKB53ZX.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "KV46EU5KJGKB53ZX.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "413" - }, - "appliesTo" : [ ] - }, - "KV46EU5KJGKB53ZX.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "KV46EU5KJGKB53ZX.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KV46EU5KJGKB53ZX.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "KV46EU5KJGKB53ZX", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "KV46EU5KJGKB53ZX.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "KV46EU5KJGKB53ZX.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1020" - }, - "appliesTo" : [ ] - }, - "KV46EU5KJGKB53ZX.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "KV46EU5KJGKB53ZX.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KV46EU5KJGKB53ZX.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "KV46EU5KJGKB53ZX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "KV46EU5KJGKB53ZX.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "KV46EU5KJGKB53ZX.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2479" - }, - "appliesTo" : [ ] - }, - "KV46EU5KJGKB53ZX.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "KV46EU5KJGKB53ZX.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "HD5FKWRF3Y3UA5CY" : { - "HD5FKWRF3Y3UA5CY.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "HD5FKWRF3Y3UA5CY", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "HD5FKWRF3Y3UA5CY.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "HD5FKWRF3Y3UA5CY.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2570000000" - }, - "appliesTo" : [ ] - }, - "HD5FKWRF3Y3UA5CY.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "HD5FKWRF3Y3UA5CY.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4510" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HD5FKWRF3Y3UA5CY.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "HD5FKWRF3Y3UA5CY", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "HD5FKWRF3Y3UA5CY.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "HD5FKWRF3Y3UA5CY.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "HD5FKWRF3Y3UA5CY.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "HD5FKWRF3Y3UA5CY.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10598" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HD5FKWRF3Y3UA5CY.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "HD5FKWRF3Y3UA5CY", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "HD5FKWRF3Y3UA5CY.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "HD5FKWRF3Y3UA5CY.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "HD5FKWRF3Y3UA5CY.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "HD5FKWRF3Y3UA5CY", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "HD5FKWRF3Y3UA5CY.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "HD5FKWRF3Y3UA5CY.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1562" - }, - "appliesTo" : [ ] - }, - "HD5FKWRF3Y3UA5CY.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "HD5FKWRF3Y3UA5CY.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HD5FKWRF3Y3UA5CY.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "HD5FKWRF3Y3UA5CY", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "HD5FKWRF3Y3UA5CY.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "HD5FKWRF3Y3UA5CY.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3815" - }, - "appliesTo" : [ ] - }, - "HD5FKWRF3Y3UA5CY.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "HD5FKWRF3Y3UA5CY.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "DUHF29UDCPK7Z84H" : { - "DUHF29UDCPK7Z84H.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "DUHF29UDCPK7Z84H", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "DUHF29UDCPK7Z84H.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "DUHF29UDCPK7Z84H.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "63518" - }, - "appliesTo" : [ ] - }, - "DUHF29UDCPK7Z84H.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "DUHF29UDCPK7Z84H.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DUHF29UDCPK7Z84H.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "DUHF29UDCPK7Z84H", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DUHF29UDCPK7Z84H.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "DUHF29UDCPK7Z84H.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.8530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DUHF29UDCPK7Z84H.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "DUHF29UDCPK7Z84H", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DUHF29UDCPK7Z84H.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "DUHF29UDCPK7Z84H.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "87342" - }, - "appliesTo" : [ ] - }, - "DUHF29UDCPK7Z84H.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "DUHF29UDCPK7Z84H.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DUHF29UDCPK7Z84H.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "DUHF29UDCPK7Z84H", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "DUHF29UDCPK7Z84H.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "DUHF29UDCPK7Z84H.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "162479" - }, - "appliesTo" : [ ] - }, - "DUHF29UDCPK7Z84H.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "DUHF29UDCPK7Z84H.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DUHF29UDCPK7Z84H.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "DUHF29UDCPK7Z84H", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DUHF29UDCPK7Z84H.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "DUHF29UDCPK7Z84H.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "83011" - }, - "appliesTo" : [ ] - }, - "DUHF29UDCPK7Z84H.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "DUHF29UDCPK7Z84H.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DUHF29UDCPK7Z84H.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "DUHF29UDCPK7Z84H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DUHF29UDCPK7Z84H.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "DUHF29UDCPK7Z84H.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.0120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DUHF29UDCPK7Z84H.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "DUHF29UDCPK7Z84H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DUHF29UDCPK7Z84H.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "DUHF29UDCPK7Z84H.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34272" - }, - "appliesTo" : [ ] - }, - "DUHF29UDCPK7Z84H.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "DUHF29UDCPK7Z84H.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DUHF29UDCPK7Z84H.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "DUHF29UDCPK7Z84H", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DUHF29UDCPK7Z84H.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "DUHF29UDCPK7Z84H.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "DUHF29UDCPK7Z84H.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "DUHF29UDCPK7Z84H.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "173330" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DUHF29UDCPK7Z84H.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "DUHF29UDCPK7Z84H", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DUHF29UDCPK7Z84H.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "DUHF29UDCPK7Z84H.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.4900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DUHF29UDCPK7Z84H.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "DUHF29UDCPK7Z84H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DUHF29UDCPK7Z84H.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "DUHF29UDCPK7Z84H.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "67886" - }, - "appliesTo" : [ ] - }, - "DUHF29UDCPK7Z84H.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "DUHF29UDCPK7Z84H.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DUHF29UDCPK7Z84H.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "DUHF29UDCPK7Z84H", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DUHF29UDCPK7Z84H.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "DUHF29UDCPK7Z84H.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DUHF29UDCPK7Z84H.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "DUHF29UDCPK7Z84H", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "DUHF29UDCPK7Z84H.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "DUHF29UDCPK7Z84H.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6580000000" - }, - "appliesTo" : [ ] - }, - "DUHF29UDCPK7Z84H.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "DUHF29UDCPK7Z84H.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32043" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "S6WMG2PUJJT43MCU" : { - "S6WMG2PUJJT43MCU.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "S6WMG2PUJJT43MCU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "S6WMG2PUJJT43MCU.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "S6WMG2PUJJT43MCU.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0920000000" - }, - "appliesTo" : [ ] - }, - "S6WMG2PUJJT43MCU.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "S6WMG2PUJJT43MCU.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28692" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "S6WMG2PUJJT43MCU.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "S6WMG2PUJJT43MCU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "S6WMG2PUJJT43MCU.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "S6WMG2PUJJT43MCU.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "64669" - }, - "appliesTo" : [ ] - }, - "S6WMG2PUJJT43MCU.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "S6WMG2PUJJT43MCU.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "S6WMG2PUJJT43MCU.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "S6WMG2PUJJT43MCU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "S6WMG2PUJJT43MCU.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "S6WMG2PUJJT43MCU.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "S6WMG2PUJJT43MCU.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "S6WMG2PUJJT43MCU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "S6WMG2PUJJT43MCU.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "S6WMG2PUJJT43MCU.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32995" - }, - "appliesTo" : [ ] - }, - "S6WMG2PUJJT43MCU.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "S6WMG2PUJJT43MCU.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "S6WMG2PUJJT43MCU.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "S6WMG2PUJJT43MCU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "S6WMG2PUJJT43MCU.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "S6WMG2PUJJT43MCU.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "S6WMG2PUJJT43MCU.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "S6WMG2PUJJT43MCU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "S6WMG2PUJJT43MCU.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "S6WMG2PUJJT43MCU.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21686" - }, - "appliesTo" : [ ] - }, - "S6WMG2PUJJT43MCU.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "S6WMG2PUJJT43MCU.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "S6WMG2PUJJT43MCU.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "S6WMG2PUJJT43MCU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "S6WMG2PUJJT43MCU.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "S6WMG2PUJJT43MCU.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.1990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "S6WMG2PUJJT43MCU.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "S6WMG2PUJJT43MCU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "S6WMG2PUJJT43MCU.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "S6WMG2PUJJT43MCU.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "36962" - }, - "appliesTo" : [ ] - }, - "S6WMG2PUJJT43MCU.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "S6WMG2PUJJT43MCU.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "S6WMG2PUJJT43MCU.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "S6WMG2PUJJT43MCU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "S6WMG2PUJJT43MCU.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "S6WMG2PUJJT43MCU.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "42505" - }, - "appliesTo" : [ ] - }, - "S6WMG2PUJJT43MCU.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "S6WMG2PUJJT43MCU.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "S6WMG2PUJJT43MCU.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "S6WMG2PUJJT43MCU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "S6WMG2PUJJT43MCU.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "S6WMG2PUJJT43MCU.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18858" - }, - "appliesTo" : [ ] - }, - "S6WMG2PUJJT43MCU.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "S6WMG2PUJJT43MCU.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "S6WMG2PUJJT43MCU.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "S6WMG2PUJJT43MCU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "S6WMG2PUJJT43MCU.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "S6WMG2PUJJT43MCU.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "S6WMG2PUJJT43MCU.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "S6WMG2PUJJT43MCU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "S6WMG2PUJJT43MCU.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "S6WMG2PUJJT43MCU.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "S6WMG2PUJJT43MCU.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "S6WMG2PUJJT43MCU.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "53940" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "5AVR4REAWXYCDTBG" : { - "5AVR4REAWXYCDTBG.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "5AVR4REAWXYCDTBG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5AVR4REAWXYCDTBG.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "5AVR4REAWXYCDTBG.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "29.2238000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "5AVR4REAWXYCDTBG.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "5AVR4REAWXYCDTBG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5AVR4REAWXYCDTBG.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "5AVR4REAWXYCDTBG.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "127525" - }, - "appliesTo" : [ ] - }, - "5AVR4REAWXYCDTBG.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "5AVR4REAWXYCDTBG.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.5576000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "5AVR4REAWXYCDTBG.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "5AVR4REAWXYCDTBG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5AVR4REAWXYCDTBG.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "5AVR4REAWXYCDTBG.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "126284" - }, - "appliesTo" : [ ] - }, - "5AVR4REAWXYCDTBG.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "5AVR4REAWXYCDTBG.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.4160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5AVR4REAWXYCDTBG.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "5AVR4REAWXYCDTBG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5AVR4REAWXYCDTBG.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "5AVR4REAWXYCDTBG.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "28.9264000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "5AVR4REAWXYCDTBG.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "5AVR4REAWXYCDTBG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5AVR4REAWXYCDTBG.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "5AVR4REAWXYCDTBG.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "28.5338000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "5AVR4REAWXYCDTBG.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "5AVR4REAWXYCDTBG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5AVR4REAWXYCDTBG.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "5AVR4REAWXYCDTBG.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.2080000000" - }, - "appliesTo" : [ ] - }, - "5AVR4REAWXYCDTBG.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "5AVR4REAWXYCDTBG.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "373386" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "5AVR4REAWXYCDTBG.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "5AVR4REAWXYCDTBG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5AVR4REAWXYCDTBG.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "5AVR4REAWXYCDTBG.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "254669" - }, - "appliesTo" : [ ] - }, - "5AVR4REAWXYCDTBG.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "5AVR4REAWXYCDTBG.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "5AVR4REAWXYCDTBG.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "5AVR4REAWXYCDTBG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5AVR4REAWXYCDTBG.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "5AVR4REAWXYCDTBG.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "745999" - }, - "appliesTo" : [ ] - }, - "5AVR4REAWXYCDTBG.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "5AVR4REAWXYCDTBG.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "5AVR4REAWXYCDTBG.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "5AVR4REAWXYCDTBG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5AVR4REAWXYCDTBG.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "5AVR4REAWXYCDTBG.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "739708" - }, - "appliesTo" : [ ] - }, - "5AVR4REAWXYCDTBG.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "5AVR4REAWXYCDTBG.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5AVR4REAWXYCDTBG.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "5AVR4REAWXYCDTBG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5AVR4REAWXYCDTBG.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "5AVR4REAWXYCDTBG.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "28.3264000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "5AVR4REAWXYCDTBG.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "5AVR4REAWXYCDTBG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5AVR4REAWXYCDTBG.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "5AVR4REAWXYCDTBG.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "252238" - }, - "appliesTo" : [ ] - }, - "5AVR4REAWXYCDTBG.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "5AVR4REAWXYCDTBG.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5AVR4REAWXYCDTBG.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "5AVR4REAWXYCDTBG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5AVR4REAWXYCDTBG.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "5AVR4REAWXYCDTBG.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "370863" - }, - "appliesTo" : [ ] - }, - "5AVR4REAWXYCDTBG.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "5AVR4REAWXYCDTBG.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.1120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "J4UDT5BERQ92MHNK" : { - "J4UDT5BERQ92MHNK.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "J4UDT5BERQ92MHNK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J4UDT5BERQ92MHNK.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "J4UDT5BERQ92MHNK.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "J4UDT5BERQ92MHNK.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "J4UDT5BERQ92MHNK.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17674" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "J4UDT5BERQ92MHNK.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "J4UDT5BERQ92MHNK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J4UDT5BERQ92MHNK.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "J4UDT5BERQ92MHNK.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8877" - }, - "appliesTo" : [ ] - }, - "J4UDT5BERQ92MHNK.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "J4UDT5BERQ92MHNK.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "J4UDT5BERQ92MHNK.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "J4UDT5BERQ92MHNK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J4UDT5BERQ92MHNK.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "J4UDT5BERQ92MHNK.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8614" - }, - "appliesTo" : [ ] - }, - "J4UDT5BERQ92MHNK.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "J4UDT5BERQ92MHNK.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "J4UDT5BERQ92MHNK.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "J4UDT5BERQ92MHNK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J4UDT5BERQ92MHNK.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "J4UDT5BERQ92MHNK.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "J4UDT5BERQ92MHNK.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "J4UDT5BERQ92MHNK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J4UDT5BERQ92MHNK.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "J4UDT5BERQ92MHNK.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "J4UDT5BERQ92MHNK.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "J4UDT5BERQ92MHNK.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6601" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "J4UDT5BERQ92MHNK.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "J4UDT5BERQ92MHNK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J4UDT5BERQ92MHNK.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "J4UDT5BERQ92MHNK.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "J4UDT5BERQ92MHNK.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "J4UDT5BERQ92MHNK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J4UDT5BERQ92MHNK.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "J4UDT5BERQ92MHNK.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "J4UDT5BERQ92MHNK.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "J4UDT5BERQ92MHNK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J4UDT5BERQ92MHNK.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "J4UDT5BERQ92MHNK.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3321" - }, - "appliesTo" : [ ] - }, - "J4UDT5BERQ92MHNK.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "J4UDT5BERQ92MHNK.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "J4UDT5BERQ92MHNK.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "J4UDT5BERQ92MHNK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J4UDT5BERQ92MHNK.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "J4UDT5BERQ92MHNK.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "J4UDT5BERQ92MHNK.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "J4UDT5BERQ92MHNK.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6338" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "J4UDT5BERQ92MHNK.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "J4UDT5BERQ92MHNK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J4UDT5BERQ92MHNK.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "J4UDT5BERQ92MHNK.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3187" - }, - "appliesTo" : [ ] - }, - "J4UDT5BERQ92MHNK.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "J4UDT5BERQ92MHNK.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "J4UDT5BERQ92MHNK.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "J4UDT5BERQ92MHNK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J4UDT5BERQ92MHNK.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "J4UDT5BERQ92MHNK.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17019" - }, - "appliesTo" : [ ] - }, - "J4UDT5BERQ92MHNK.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "J4UDT5BERQ92MHNK.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "J4UDT5BERQ92MHNK.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "J4UDT5BERQ92MHNK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J4UDT5BERQ92MHNK.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "J4UDT5BERQ92MHNK.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "S35ZU4TJVUPNKG6U" : { - "S35ZU4TJVUPNKG6U.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "S35ZU4TJVUPNKG6U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "S35ZU4TJVUPNKG6U.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "S35ZU4TJVUPNKG6U.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6524" - }, - "appliesTo" : [ ] - }, - "S35ZU4TJVUPNKG6U.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "S35ZU4TJVUPNKG6U.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "S35ZU4TJVUPNKG6U.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "S35ZU4TJVUPNKG6U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "S35ZU4TJVUPNKG6U.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "S35ZU4TJVUPNKG6U.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "S35ZU4TJVUPNKG6U.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "S35ZU4TJVUPNKG6U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "S35ZU4TJVUPNKG6U.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "S35ZU4TJVUPNKG6U.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15681" - }, - "appliesTo" : [ ] - }, - "S35ZU4TJVUPNKG6U.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "S35ZU4TJVUPNKG6U.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "S35ZU4TJVUPNKG6U.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "S35ZU4TJVUPNKG6U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "S35ZU4TJVUPNKG6U.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "S35ZU4TJVUPNKG6U.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9543" - }, - "appliesTo" : [ ] - }, - "S35ZU4TJVUPNKG6U.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "S35ZU4TJVUPNKG6U.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "S35ZU4TJVUPNKG6U.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "S35ZU4TJVUPNKG6U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "S35ZU4TJVUPNKG6U.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "S35ZU4TJVUPNKG6U.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7502" - }, - "appliesTo" : [ ] - }, - "S35ZU4TJVUPNKG6U.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "S35ZU4TJVUPNKG6U.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "S35ZU4TJVUPNKG6U.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "S35ZU4TJVUPNKG6U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "S35ZU4TJVUPNKG6U.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "S35ZU4TJVUPNKG6U.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "S35ZU4TJVUPNKG6U.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "S35ZU4TJVUPNKG6U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "S35ZU4TJVUPNKG6U.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "S35ZU4TJVUPNKG6U.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10803" - }, - "appliesTo" : [ ] - }, - "S35ZU4TJVUPNKG6U.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "S35ZU4TJVUPNKG6U.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "S35ZU4TJVUPNKG6U.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "S35ZU4TJVUPNKG6U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "S35ZU4TJVUPNKG6U.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "S35ZU4TJVUPNKG6U.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6930000000" - }, - "appliesTo" : [ ] - }, - "S35ZU4TJVUPNKG6U.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "S35ZU4TJVUPNKG6U.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4931" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "S35ZU4TJVUPNKG6U.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "S35ZU4TJVUPNKG6U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "S35ZU4TJVUPNKG6U.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "S35ZU4TJVUPNKG6U.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "S35ZU4TJVUPNKG6U.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "S35ZU4TJVUPNKG6U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "S35ZU4TJVUPNKG6U.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "S35ZU4TJVUPNKG6U.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6190000000" - }, - "appliesTo" : [ ] - }, - "S35ZU4TJVUPNKG6U.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "S35ZU4TJVUPNKG6U.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4288" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "S35ZU4TJVUPNKG6U.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "S35ZU4TJVUPNKG6U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "S35ZU4TJVUPNKG6U.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "S35ZU4TJVUPNKG6U.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "S35ZU4TJVUPNKG6U.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "S35ZU4TJVUPNKG6U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "S35ZU4TJVUPNKG6U.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "S35ZU4TJVUPNKG6U.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "S35ZU4TJVUPNKG6U.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "S35ZU4TJVUPNKG6U.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18121" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "RA7GXBYJW245U7C5" : { - "RA7GXBYJW245U7C5.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "RA7GXBYJW245U7C5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RA7GXBYJW245U7C5.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "RA7GXBYJW245U7C5.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "78888" - }, - "appliesTo" : [ ] - }, - "RA7GXBYJW245U7C5.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "RA7GXBYJW245U7C5.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RA7GXBYJW245U7C5.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "RA7GXBYJW245U7C5", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "RA7GXBYJW245U7C5.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "RA7GXBYJW245U7C5.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.3600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RA7GXBYJW245U7C5.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "RA7GXBYJW245U7C5", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "RA7GXBYJW245U7C5.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "RA7GXBYJW245U7C5.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3360000000" - }, - "appliesTo" : [ ] - }, - "RA7GXBYJW245U7C5.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "RA7GXBYJW245U7C5.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "87685" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RA7GXBYJW245U7C5.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "RA7GXBYJW245U7C5", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "RA7GXBYJW245U7C5.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "RA7GXBYJW245U7C5.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "68591" - }, - "appliesTo" : [ ] - }, - "RA7GXBYJW245U7C5.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "RA7GXBYJW245U7C5.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RA7GXBYJW245U7C5.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "RA7GXBYJW245U7C5", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "RA7GXBYJW245U7C5.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "RA7GXBYJW245U7C5.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "122548" - }, - "appliesTo" : [ ] - }, - "RA7GXBYJW245U7C5.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "RA7GXBYJW245U7C5.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RA7GXBYJW245U7C5.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "RA7GXBYJW245U7C5", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "RA7GXBYJW245U7C5.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "RA7GXBYJW245U7C5.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35023" - }, - "appliesTo" : [ ] - }, - "RA7GXBYJW245U7C5.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "RA7GXBYJW245U7C5.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RA7GXBYJW245U7C5.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "RA7GXBYJW245U7C5", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "RA7GXBYJW245U7C5.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "RA7GXBYJW245U7C5.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "171866" - }, - "appliesTo" : [ ] - }, - "RA7GXBYJW245U7C5.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "RA7GXBYJW245U7C5.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RA7GXBYJW245U7C5.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "RA7GXBYJW245U7C5", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "RA7GXBYJW245U7C5.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "RA7GXBYJW245U7C5.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "65168" - }, - "appliesTo" : [ ] - }, - "RA7GXBYJW245U7C5.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "RA7GXBYJW245U7C5.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RA7GXBYJW245U7C5.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "RA7GXBYJW245U7C5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RA7GXBYJW245U7C5.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "RA7GXBYJW245U7C5.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.6460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RA7GXBYJW245U7C5.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "RA7GXBYJW245U7C5", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "RA7GXBYJW245U7C5.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "RA7GXBYJW245U7C5.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.3870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RA7GXBYJW245U7C5.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "RA7GXBYJW245U7C5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RA7GXBYJW245U7C5.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "RA7GXBYJW245U7C5.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "40277" - }, - "appliesTo" : [ ] - }, - "RA7GXBYJW245U7C5.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "RA7GXBYJW245U7C5.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RA7GXBYJW245U7C5.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "RA7GXBYJW245U7C5", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "RA7GXBYJW245U7C5.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "RA7GXBYJW245U7C5.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.2110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "ZVFV8KSWQPNVNYCW" : { - "ZVFV8KSWQPNVNYCW.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ZVFV8KSWQPNVNYCW", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "ZVFV8KSWQPNVNYCW.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ZVFV8KSWQPNVNYCW.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "384" - }, - "appliesTo" : [ ] - }, - "ZVFV8KSWQPNVNYCW.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ZVFV8KSWQPNVNYCW.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZVFV8KSWQPNVNYCW.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ZVFV8KSWQPNVNYCW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZVFV8KSWQPNVNYCW.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ZVFV8KSWQPNVNYCW.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ZVFV8KSWQPNVNYCW.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ZVFV8KSWQPNVNYCW.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1394" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZVFV8KSWQPNVNYCW.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ZVFV8KSWQPNVNYCW", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "ZVFV8KSWQPNVNYCW.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ZVFV8KSWQPNVNYCW.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ZVFV8KSWQPNVNYCW.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ZVFV8KSWQPNVNYCW.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1278" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZVFV8KSWQPNVNYCW.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ZVFV8KSWQPNVNYCW", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "ZVFV8KSWQPNVNYCW.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ZVFV8KSWQPNVNYCW.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3019" - }, - "appliesTo" : [ ] - }, - "ZVFV8KSWQPNVNYCW.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ZVFV8KSWQPNVNYCW.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZVFV8KSWQPNVNYCW.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "ZVFV8KSWQPNVNYCW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZVFV8KSWQPNVNYCW.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "ZVFV8KSWQPNVNYCW.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZVFV8KSWQPNVNYCW.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ZVFV8KSWQPNVNYCW", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "ZVFV8KSWQPNVNYCW.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ZVFV8KSWQPNVNYCW.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "767" - }, - "appliesTo" : [ ] - }, - "ZVFV8KSWQPNVNYCW.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ZVFV8KSWQPNVNYCW.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZVFV8KSWQPNVNYCW.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ZVFV8KSWQPNVNYCW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZVFV8KSWQPNVNYCW.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ZVFV8KSWQPNVNYCW.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "881" - }, - "appliesTo" : [ ] - }, - "ZVFV8KSWQPNVNYCW.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ZVFV8KSWQPNVNYCW.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0935000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZVFV8KSWQPNVNYCW.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ZVFV8KSWQPNVNYCW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZVFV8KSWQPNVNYCW.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ZVFV8KSWQPNVNYCW.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1524000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZVFV8KSWQPNVNYCW.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ZVFV8KSWQPNVNYCW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZVFV8KSWQPNVNYCW.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ZVFV8KSWQPNVNYCW.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1106000000" - }, - "appliesTo" : [ ] - }, - "ZVFV8KSWQPNVNYCW.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ZVFV8KSWQPNVNYCW.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "443" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZVFV8KSWQPNVNYCW.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ZVFV8KSWQPNVNYCW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZVFV8KSWQPNVNYCW.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ZVFV8KSWQPNVNYCW.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1663000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZVFV8KSWQPNVNYCW.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ZVFV8KSWQPNVNYCW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZVFV8KSWQPNVNYCW.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ZVFV8KSWQPNVNYCW.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ZVFV8KSWQPNVNYCW.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ZVFV8KSWQPNVNYCW.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3304" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZVFV8KSWQPNVNYCW.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ZVFV8KSWQPNVNYCW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZVFV8KSWQPNVNYCW.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ZVFV8KSWQPNVNYCW.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1324000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "D987U4EZH8SKPPQC" : { - "D987U4EZH8SKPPQC.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "D987U4EZH8SKPPQC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "D987U4EZH8SKPPQC.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "D987U4EZH8SKPPQC.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "D987U4EZH8SKPPQC.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "D987U4EZH8SKPPQC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "D987U4EZH8SKPPQC.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "D987U4EZH8SKPPQC.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "690" - }, - "appliesTo" : [ ] - }, - "D987U4EZH8SKPPQC.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "D987U4EZH8SKPPQC.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "D987U4EZH8SKPPQC.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "D987U4EZH8SKPPQC", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "D987U4EZH8SKPPQC.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "D987U4EZH8SKPPQC.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1637" - }, - "appliesTo" : [ ] - }, - "D987U4EZH8SKPPQC.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "D987U4EZH8SKPPQC.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "D987U4EZH8SKPPQC.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "D987U4EZH8SKPPQC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "D987U4EZH8SKPPQC.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "D987U4EZH8SKPPQC.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "686" - }, - "appliesTo" : [ ] - }, - "D987U4EZH8SKPPQC.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "D987U4EZH8SKPPQC.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "D987U4EZH8SKPPQC.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "D987U4EZH8SKPPQC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "D987U4EZH8SKPPQC.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "D987U4EZH8SKPPQC.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "280" - }, - "appliesTo" : [ ] - }, - "D987U4EZH8SKPPQC.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "D987U4EZH8SKPPQC.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "TFK9JRBDPXTYU5ZM" : { - "TFK9JRBDPXTYU5ZM.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TFK9JRBDPXTYU5ZM", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "TFK9JRBDPXTYU5ZM.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TFK9JRBDPXTYU5ZM.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29434" - }, - "appliesTo" : [ ] - }, - "TFK9JRBDPXTYU5ZM.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TFK9JRBDPXTYU5ZM.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TFK9JRBDPXTYU5ZM.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "TFK9JRBDPXTYU5ZM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TFK9JRBDPXTYU5ZM.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "TFK9JRBDPXTYU5ZM.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.0121000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TFK9JRBDPXTYU5ZM.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "TFK9JRBDPXTYU5ZM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TFK9JRBDPXTYU5ZM.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "TFK9JRBDPXTYU5ZM.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "60434" - }, - "appliesTo" : [ ] - }, - "TFK9JRBDPXTYU5ZM.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "TFK9JRBDPXTYU5ZM.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TFK9JRBDPXTYU5ZM.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "TFK9JRBDPXTYU5ZM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TFK9JRBDPXTYU5ZM.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "TFK9JRBDPXTYU5ZM.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30359" - }, - "appliesTo" : [ ] - }, - "TFK9JRBDPXTYU5ZM.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "TFK9JRBDPXTYU5ZM.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4656000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TFK9JRBDPXTYU5ZM.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "TFK9JRBDPXTYU5ZM", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "TFK9JRBDPXTYU5ZM.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "TFK9JRBDPXTYU5ZM.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.3194000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TFK9JRBDPXTYU5ZM.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "TFK9JRBDPXTYU5ZM", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "TFK9JRBDPXTYU5ZM.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "TFK9JRBDPXTYU5ZM.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "167227" - }, - "appliesTo" : [ ] - }, - "TFK9JRBDPXTYU5ZM.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "TFK9JRBDPXTYU5ZM.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TFK9JRBDPXTYU5ZM.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TFK9JRBDPXTYU5ZM", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "TFK9JRBDPXTYU5ZM.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TFK9JRBDPXTYU5ZM.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1224000000" - }, - "appliesTo" : [ ] - }, - "TFK9JRBDPXTYU5ZM.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TFK9JRBDPXTYU5ZM.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "82057" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TFK9JRBDPXTYU5ZM.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TFK9JRBDPXTYU5ZM", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "TFK9JRBDPXTYU5ZM.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TFK9JRBDPXTYU5ZM.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.7904000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TFK9JRBDPXTYU5ZM.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "TFK9JRBDPXTYU5ZM", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "TFK9JRBDPXTYU5ZM.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "TFK9JRBDPXTYU5ZM.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.4705000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TFK9JRBDPXTYU5ZM.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "TFK9JRBDPXTYU5ZM", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "TFK9JRBDPXTYU5ZM.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "TFK9JRBDPXTYU5ZM.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1924000000" - }, - "appliesTo" : [ ] - }, - "TFK9JRBDPXTYU5ZM.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "TFK9JRBDPXTYU5ZM.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "83895" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TFK9JRBDPXTYU5ZM.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TFK9JRBDPXTYU5ZM", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "TFK9JRBDPXTYU5ZM.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TFK9JRBDPXTYU5ZM.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "162643" - }, - "appliesTo" : [ ] - }, - "TFK9JRBDPXTYU5ZM.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TFK9JRBDPXTYU5ZM.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TFK9JRBDPXTYU5ZM.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TFK9JRBDPXTYU5ZM", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "TFK9JRBDPXTYU5ZM.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TFK9JRBDPXTYU5ZM.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "58620" - }, - "appliesTo" : [ ] - }, - "TFK9JRBDPXTYU5ZM.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TFK9JRBDPXTYU5ZM.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "F6DTZSV5HTJ5SARF" : { - "F6DTZSV5HTJ5SARF.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "F6DTZSV5HTJ5SARF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "F6DTZSV5HTJ5SARF.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "F6DTZSV5HTJ5SARF.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "F6DTZSV5HTJ5SARF.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "F6DTZSV5HTJ5SARF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "F6DTZSV5HTJ5SARF.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "F6DTZSV5HTJ5SARF.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16032" - }, - "appliesTo" : [ ] - }, - "F6DTZSV5HTJ5SARF.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "F6DTZSV5HTJ5SARF.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "F6DTZSV5HTJ5SARF.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "F6DTZSV5HTJ5SARF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "F6DTZSV5HTJ5SARF.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "F6DTZSV5HTJ5SARF.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "91129" - }, - "appliesTo" : [ ] - }, - "F6DTZSV5HTJ5SARF.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "F6DTZSV5HTJ5SARF.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "F6DTZSV5HTJ5SARF.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "F6DTZSV5HTJ5SARF", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "F6DTZSV5HTJ5SARF.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "F6DTZSV5HTJ5SARF.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "F6DTZSV5HTJ5SARF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "F6DTZSV5HTJ5SARF", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "F6DTZSV5HTJ5SARF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "F6DTZSV5HTJ5SARF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15732" - }, - "appliesTo" : [ ] - }, - "F6DTZSV5HTJ5SARF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "F6DTZSV5HTJ5SARF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "F6DTZSV5HTJ5SARF.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "F6DTZSV5HTJ5SARF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "F6DTZSV5HTJ5SARF.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "F6DTZSV5HTJ5SARF.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31968" - }, - "appliesTo" : [ ] - }, - "F6DTZSV5HTJ5SARF.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "F6DTZSV5HTJ5SARF.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "F6DTZSV5HTJ5SARF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "F6DTZSV5HTJ5SARF", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "F6DTZSV5HTJ5SARF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "F6DTZSV5HTJ5SARF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "66638" - }, - "appliesTo" : [ ] - }, - "F6DTZSV5HTJ5SARF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "F6DTZSV5HTJ5SARF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "F6DTZSV5HTJ5SARF.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "F6DTZSV5HTJ5SARF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "F6DTZSV5HTJ5SARF.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "F6DTZSV5HTJ5SARF.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6978000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "F6DTZSV5HTJ5SARF.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "F6DTZSV5HTJ5SARF", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "F6DTZSV5HTJ5SARF.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "F6DTZSV5HTJ5SARF.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.1410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "F6DTZSV5HTJ5SARF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "F6DTZSV5HTJ5SARF", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "F6DTZSV5HTJ5SARF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "F6DTZSV5HTJ5SARF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30837" - }, - "appliesTo" : [ ] - }, - "F6DTZSV5HTJ5SARF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "F6DTZSV5HTJ5SARF.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "F6DTZSV5HTJ5SARF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "F6DTZSV5HTJ5SARF", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "F6DTZSV5HTJ5SARF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "F6DTZSV5HTJ5SARF.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3490000000" - }, - "appliesTo" : [ ] - }, - "F6DTZSV5HTJ5SARF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "F6DTZSV5HTJ5SARF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35446" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "F6DTZSV5HTJ5SARF.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "F6DTZSV5HTJ5SARF", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "F6DTZSV5HTJ5SARF.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "F6DTZSV5HTJ5SARF.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46488" - }, - "appliesTo" : [ ] - }, - "F6DTZSV5HTJ5SARF.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "F6DTZSV5HTJ5SARF.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "9G23QA9CK3NU3BRY" : { - "9G23QA9CK3NU3BRY.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "9G23QA9CK3NU3BRY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9G23QA9CK3NU3BRY.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "9G23QA9CK3NU3BRY.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9G23QA9CK3NU3BRY.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "9G23QA9CK3NU3BRY", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "9G23QA9CK3NU3BRY.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "9G23QA9CK3NU3BRY.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16329" - }, - "appliesTo" : [ ] - }, - "9G23QA9CK3NU3BRY.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "9G23QA9CK3NU3BRY.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9G23QA9CK3NU3BRY.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "9G23QA9CK3NU3BRY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9G23QA9CK3NU3BRY.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "9G23QA9CK3NU3BRY.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9G23QA9CK3NU3BRY.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "9G23QA9CK3NU3BRY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9G23QA9CK3NU3BRY.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "9G23QA9CK3NU3BRY.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3770000000" - }, - "appliesTo" : [ ] - }, - "9G23QA9CK3NU3BRY.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "9G23QA9CK3NU3BRY.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9913" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9G23QA9CK3NU3BRY.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "9G23QA9CK3NU3BRY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9G23QA9CK3NU3BRY.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "9G23QA9CK3NU3BRY.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9478" - }, - "appliesTo" : [ ] - }, - "9G23QA9CK3NU3BRY.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "9G23QA9CK3NU3BRY.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9G23QA9CK3NU3BRY.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "9G23QA9CK3NU3BRY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9G23QA9CK3NU3BRY.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "9G23QA9CK3NU3BRY.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19429" - }, - "appliesTo" : [ ] - }, - "9G23QA9CK3NU3BRY.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "9G23QA9CK3NU3BRY.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9G23QA9CK3NU3BRY.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "9G23QA9CK3NU3BRY", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "9G23QA9CK3NU3BRY.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "9G23QA9CK3NU3BRY.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4231" - }, - "appliesTo" : [ ] - }, - "9G23QA9CK3NU3BRY.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "9G23QA9CK3NU3BRY.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9G23QA9CK3NU3BRY.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "9G23QA9CK3NU3BRY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9G23QA9CK3NU3BRY.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "9G23QA9CK3NU3BRY.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9G23QA9CK3NU3BRY.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "9G23QA9CK3NU3BRY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9G23QA9CK3NU3BRY.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "9G23QA9CK3NU3BRY.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9G23QA9CK3NU3BRY.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "9G23QA9CK3NU3BRY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9G23QA9CK3NU3BRY.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "9G23QA9CK3NU3BRY.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4836" - }, - "appliesTo" : [ ] - }, - "9G23QA9CK3NU3BRY.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "9G23QA9CK3NU3BRY.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9G23QA9CK3NU3BRY.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "9G23QA9CK3NU3BRY", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "9G23QA9CK3NU3BRY.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "9G23QA9CK3NU3BRY.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8293" - }, - "appliesTo" : [ ] - }, - "9G23QA9CK3NU3BRY.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "9G23QA9CK3NU3BRY.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9G23QA9CK3NU3BRY.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "9G23QA9CK3NU3BRY", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "9G23QA9CK3NU3BRY.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "9G23QA9CK3NU3BRY.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3300000000" - }, - "appliesTo" : [ ] - }, - "9G23QA9CK3NU3BRY.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "9G23QA9CK3NU3BRY.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8686" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "4QXRNM4XXHKD5KJH" : { - "4QXRNM4XXHKD5KJH.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "4QXRNM4XXHKD5KJH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4QXRNM4XXHKD5KJH.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "4QXRNM4XXHKD5KJH.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "4QXRNM4XXHKD5KJH.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "4QXRNM4XXHKD5KJH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4QXRNM4XXHKD5KJH.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "4QXRNM4XXHKD5KJH.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "4QXRNM4XXHKD5KJH.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "4QXRNM4XXHKD5KJH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4QXRNM4XXHKD5KJH.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "4QXRNM4XXHKD5KJH.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6357" - }, - "appliesTo" : [ ] - }, - "4QXRNM4XXHKD5KJH.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "4QXRNM4XXHKD5KJH.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4QXRNM4XXHKD5KJH.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "4QXRNM4XXHKD5KJH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4QXRNM4XXHKD5KJH.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "4QXRNM4XXHKD5KJH.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1228" - }, - "appliesTo" : [ ] - }, - "4QXRNM4XXHKD5KJH.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "4QXRNM4XXHKD5KJH.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4QXRNM4XXHKD5KJH.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "4QXRNM4XXHKD5KJH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4QXRNM4XXHKD5KJH.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "4QXRNM4XXHKD5KJH.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2435" - }, - "appliesTo" : [ ] - }, - "4QXRNM4XXHKD5KJH.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "4QXRNM4XXHKD5KJH.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4QXRNM4XXHKD5KJH.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "4QXRNM4XXHKD5KJH", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "4QXRNM4XXHKD5KJH.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "4QXRNM4XXHKD5KJH.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "4QXRNM4XXHKD5KJH.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "4QXRNM4XXHKD5KJH.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6018" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4QXRNM4XXHKD5KJH.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "4QXRNM4XXHKD5KJH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4QXRNM4XXHKD5KJH.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "4QXRNM4XXHKD5KJH.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "4QXRNM4XXHKD5KJH.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "4QXRNM4XXHKD5KJH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4QXRNM4XXHKD5KJH.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "4QXRNM4XXHKD5KJH.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3200" - }, - "appliesTo" : [ ] - }, - "4QXRNM4XXHKD5KJH.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "4QXRNM4XXHKD5KJH.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4QXRNM4XXHKD5KJH.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "4QXRNM4XXHKD5KJH", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "4QXRNM4XXHKD5KJH.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "4QXRNM4XXHKD5KJH.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1320000000" - }, - "appliesTo" : [ ] - }, - "4QXRNM4XXHKD5KJH.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "4QXRNM4XXHKD5KJH.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1158" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4QXRNM4XXHKD5KJH.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "4QXRNM4XXHKD5KJH", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "4QXRNM4XXHKD5KJH.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "4QXRNM4XXHKD5KJH.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3064" - }, - "appliesTo" : [ ] - }, - "4QXRNM4XXHKD5KJH.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "4QXRNM4XXHKD5KJH.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4QXRNM4XXHKD5KJH.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "4QXRNM4XXHKD5KJH", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "4QXRNM4XXHKD5KJH.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "4QXRNM4XXHKD5KJH.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "4QXRNM4XXHKD5KJH.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "4QXRNM4XXHKD5KJH.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2298" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4QXRNM4XXHKD5KJH.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "4QXRNM4XXHKD5KJH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4QXRNM4XXHKD5KJH.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "4QXRNM4XXHKD5KJH.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "UZHN722C5BU8DZ5W" : { - "UZHN722C5BU8DZ5W.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "UZHN722C5BU8DZ5W", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "UZHN722C5BU8DZ5W.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "UZHN722C5BU8DZ5W.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "UZHN722C5BU8DZ5W.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "UZHN722C5BU8DZ5W.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33173" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "UZHN722C5BU8DZ5W.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "UZHN722C5BU8DZ5W", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "UZHN722C5BU8DZ5W.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "UZHN722C5BU8DZ5W.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.1820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "UZHN722C5BU8DZ5W.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "UZHN722C5BU8DZ5W", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "UZHN722C5BU8DZ5W.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "UZHN722C5BU8DZ5W.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "UZHN722C5BU8DZ5W.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "UZHN722C5BU8DZ5W.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "68134" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "UZHN722C5BU8DZ5W.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "UZHN722C5BU8DZ5W", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "UZHN722C5BU8DZ5W.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "UZHN722C5BU8DZ5W.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21920" - }, - "appliesTo" : [ ] - }, - "UZHN722C5BU8DZ5W.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "UZHN722C5BU8DZ5W.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "UZHN722C5BU8DZ5W.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "UZHN722C5BU8DZ5W", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "UZHN722C5BU8DZ5W.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "UZHN722C5BU8DZ5W.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39312" - }, - "appliesTo" : [ ] - }, - "UZHN722C5BU8DZ5W.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "UZHN722C5BU8DZ5W.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "UZHN722C5BU8DZ5W.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "UZHN722C5BU8DZ5W", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UZHN722C5BU8DZ5W.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "UZHN722C5BU8DZ5W.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21067" - }, - "appliesTo" : [ ] - }, - "UZHN722C5BU8DZ5W.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "UZHN722C5BU8DZ5W.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "UZHN722C5BU8DZ5W.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "UZHN722C5BU8DZ5W", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UZHN722C5BU8DZ5W.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "UZHN722C5BU8DZ5W.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "UZHN722C5BU8DZ5W.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "UZHN722C5BU8DZ5W", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "UZHN722C5BU8DZ5W.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "UZHN722C5BU8DZ5W.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "UZHN722C5BU8DZ5W.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "UZHN722C5BU8DZ5W", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "UZHN722C5BU8DZ5W.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "UZHN722C5BU8DZ5W.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "92040" - }, - "appliesTo" : [ ] - }, - "UZHN722C5BU8DZ5W.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "UZHN722C5BU8DZ5W.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "UZHN722C5BU8DZ5W.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "UZHN722C5BU8DZ5W", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "UZHN722C5BU8DZ5W.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "UZHN722C5BU8DZ5W.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2020000000" - }, - "appliesTo" : [ ] - }, - "UZHN722C5BU8DZ5W.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "UZHN722C5BU8DZ5W.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14560" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "UZHN722C5BU8DZ5W.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "UZHN722C5BU8DZ5W", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UZHN722C5BU8DZ5W.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "UZHN722C5BU8DZ5W.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "UZHN722C5BU8DZ5W.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "UZHN722C5BU8DZ5W.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "41549" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "XZ79CEGC6NSB9FQ8" : { - "XZ79CEGC6NSB9FQ8.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "XZ79CEGC6NSB9FQ8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XZ79CEGC6NSB9FQ8.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "XZ79CEGC6NSB9FQ8.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14121" - }, - "appliesTo" : [ ] - }, - "XZ79CEGC6NSB9FQ8.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "XZ79CEGC6NSB9FQ8.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XZ79CEGC6NSB9FQ8.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XZ79CEGC6NSB9FQ8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XZ79CEGC6NSB9FQ8.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XZ79CEGC6NSB9FQ8.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XZ79CEGC6NSB9FQ8.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "XZ79CEGC6NSB9FQ8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XZ79CEGC6NSB9FQ8.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "XZ79CEGC6NSB9FQ8.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7101" - }, - "appliesTo" : [ ] - }, - "XZ79CEGC6NSB9FQ8.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "XZ79CEGC6NSB9FQ8.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XZ79CEGC6NSB9FQ8.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XZ79CEGC6NSB9FQ8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XZ79CEGC6NSB9FQ8.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XZ79CEGC6NSB9FQ8.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6837" - }, - "appliesTo" : [ ] - }, - "XZ79CEGC6NSB9FQ8.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XZ79CEGC6NSB9FQ8.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XZ79CEGC6NSB9FQ8.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "XZ79CEGC6NSB9FQ8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XZ79CEGC6NSB9FQ8.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "XZ79CEGC6NSB9FQ8.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5416" - }, - "appliesTo" : [ ] - }, - "XZ79CEGC6NSB9FQ8.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "XZ79CEGC6NSB9FQ8.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XZ79CEGC6NSB9FQ8.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "XZ79CEGC6NSB9FQ8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XZ79CEGC6NSB9FQ8.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "XZ79CEGC6NSB9FQ8.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XZ79CEGC6NSB9FQ8.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "XZ79CEGC6NSB9FQ8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XZ79CEGC6NSB9FQ8.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "XZ79CEGC6NSB9FQ8.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2729" - }, - "appliesTo" : [ ] - }, - "XZ79CEGC6NSB9FQ8.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "XZ79CEGC6NSB9FQ8.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XZ79CEGC6NSB9FQ8.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "XZ79CEGC6NSB9FQ8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XZ79CEGC6NSB9FQ8.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "XZ79CEGC6NSB9FQ8.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XZ79CEGC6NSB9FQ8.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XZ79CEGC6NSB9FQ8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XZ79CEGC6NSB9FQ8.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XZ79CEGC6NSB9FQ8.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5154" - }, - "appliesTo" : [ ] - }, - "XZ79CEGC6NSB9FQ8.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XZ79CEGC6NSB9FQ8.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XZ79CEGC6NSB9FQ8.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XZ79CEGC6NSB9FQ8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XZ79CEGC6NSB9FQ8.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XZ79CEGC6NSB9FQ8.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2595" - }, - "appliesTo" : [ ] - }, - "XZ79CEGC6NSB9FQ8.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XZ79CEGC6NSB9FQ8.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XZ79CEGC6NSB9FQ8.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XZ79CEGC6NSB9FQ8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XZ79CEGC6NSB9FQ8.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XZ79CEGC6NSB9FQ8.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13466" - }, - "appliesTo" : [ ] - }, - "XZ79CEGC6NSB9FQ8.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XZ79CEGC6NSB9FQ8.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XZ79CEGC6NSB9FQ8.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "XZ79CEGC6NSB9FQ8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XZ79CEGC6NSB9FQ8.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "XZ79CEGC6NSB9FQ8.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "CDHRWPJ4QQUN4CPP" : { - "CDHRWPJ4QQUN4CPP.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "CDHRWPJ4QQUN4CPP", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "CDHRWPJ4QQUN4CPP.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "CDHRWPJ4QQUN4CPP.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10045" - }, - "appliesTo" : [ ] - }, - "CDHRWPJ4QQUN4CPP.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "CDHRWPJ4QQUN4CPP.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CDHRWPJ4QQUN4CPP.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "CDHRWPJ4QQUN4CPP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "CDHRWPJ4QQUN4CPP.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "CDHRWPJ4QQUN4CPP.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7020000000" - }, - "appliesTo" : [ ] - }, - "CDHRWPJ4QQUN4CPP.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "CDHRWPJ4QQUN4CPP.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4102" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CDHRWPJ4QQUN4CPP.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "CDHRWPJ4QQUN4CPP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "CDHRWPJ4QQUN4CPP.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "CDHRWPJ4QQUN4CPP.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "CDHRWPJ4QQUN4CPP.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "CDHRWPJ4QQUN4CPP.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21226" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CDHRWPJ4QQUN4CPP.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "CDHRWPJ4QQUN4CPP", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "CDHRWPJ4QQUN4CPP.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "CDHRWPJ4QQUN4CPP.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CDHRWPJ4QQUN4CPP.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "CDHRWPJ4QQUN4CPP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "CDHRWPJ4QQUN4CPP.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "CDHRWPJ4QQUN4CPP.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9023" - }, - "appliesTo" : [ ] - }, - "CDHRWPJ4QQUN4CPP.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "CDHRWPJ4QQUN4CPP.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "YGC2QHNNR7NU4B88" : { - "YGC2QHNNR7NU4B88.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YGC2QHNNR7NU4B88", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "YGC2QHNNR7NU4B88.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YGC2QHNNR7NU4B88.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.9250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YGC2QHNNR7NU4B88.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YGC2QHNNR7NU4B88", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "YGC2QHNNR7NU4B88.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YGC2QHNNR7NU4B88.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "80154" - }, - "appliesTo" : [ ] - }, - "YGC2QHNNR7NU4B88.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YGC2QHNNR7NU4B88.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YGC2QHNNR7NU4B88.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "YGC2QHNNR7NU4B88", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YGC2QHNNR7NU4B88.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "YGC2QHNNR7NU4B88.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.5880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YGC2QHNNR7NU4B88.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "YGC2QHNNR7NU4B88", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YGC2QHNNR7NU4B88.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "YGC2QHNNR7NU4B88.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "180664" - }, - "appliesTo" : [ ] - }, - "YGC2QHNNR7NU4B88.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "YGC2QHNNR7NU4B88.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YGC2QHNNR7NU4B88.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "YGC2QHNNR7NU4B88", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YGC2QHNNR7NU4B88.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "YGC2QHNNR7NU4B88.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.2636000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YGC2QHNNR7NU4B88.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "YGC2QHNNR7NU4B88", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YGC2QHNNR7NU4B88.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "YGC2QHNNR7NU4B88.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "42814" - }, - "appliesTo" : [ ] - }, - "YGC2QHNNR7NU4B88.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "YGC2QHNNR7NU4B88.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.8874000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YGC2QHNNR7NU4B88.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YGC2QHNNR7NU4B88", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "YGC2QHNNR7NU4B88.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YGC2QHNNR7NU4B88.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "72971" - }, - "appliesTo" : [ ] - }, - "YGC2QHNNR7NU4B88.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YGC2QHNNR7NU4B88.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YGC2QHNNR7NU4B88.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "YGC2QHNNR7NU4B88", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YGC2QHNNR7NU4B88.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "YGC2QHNNR7NU4B88.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "83915" - }, - "appliesTo" : [ ] - }, - "YGC2QHNNR7NU4B88.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "YGC2QHNNR7NU4B88.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YGC2QHNNR7NU4B88.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "YGC2QHNNR7NU4B88", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YGC2QHNNR7NU4B88.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "YGC2QHNNR7NU4B88.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "92175" - }, - "appliesTo" : [ ] - }, - "YGC2QHNNR7NU4B88.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "YGC2QHNNR7NU4B88.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5074000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YGC2QHNNR7NU4B88.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YGC2QHNNR7NU4B88", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "YGC2QHNNR7NU4B88.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YGC2QHNNR7NU4B88.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37230" - }, - "appliesTo" : [ ] - }, - "YGC2QHNNR7NU4B88.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YGC2QHNNR7NU4B88.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YGC2QHNNR7NU4B88.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YGC2QHNNR7NU4B88", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "YGC2QHNNR7NU4B88.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YGC2QHNNR7NU4B88.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "150690" - }, - "appliesTo" : [ ] - }, - "YGC2QHNNR7NU4B88.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YGC2QHNNR7NU4B88.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YGC2QHNNR7NU4B88.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "YGC2QHNNR7NU4B88", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YGC2QHNNR7NU4B88.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "YGC2QHNNR7NU4B88.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5761000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "B36YBM4BFMUWZSG4" : { - "B36YBM4BFMUWZSG4.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "B36YBM4BFMUWZSG4", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "B36YBM4BFMUWZSG4.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "B36YBM4BFMUWZSG4.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "B36YBM4BFMUWZSG4.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "B36YBM4BFMUWZSG4", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "B36YBM4BFMUWZSG4.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "B36YBM4BFMUWZSG4.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0370000000" - }, - "appliesTo" : [ ] - }, - "B36YBM4BFMUWZSG4.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "B36YBM4BFMUWZSG4.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "825" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "B36YBM4BFMUWZSG4.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "B36YBM4BFMUWZSG4", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "B36YBM4BFMUWZSG4.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "B36YBM4BFMUWZSG4.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "B36YBM4BFMUWZSG4.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "B36YBM4BFMUWZSG4.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1698" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "B36YBM4BFMUWZSG4.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "B36YBM4BFMUWZSG4", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "B36YBM4BFMUWZSG4.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "B36YBM4BFMUWZSG4.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "918" - }, - "appliesTo" : [ ] - }, - "B36YBM4BFMUWZSG4.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "B36YBM4BFMUWZSG4.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "B36YBM4BFMUWZSG4.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "B36YBM4BFMUWZSG4", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "B36YBM4BFMUWZSG4.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "B36YBM4BFMUWZSG4.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "542" - }, - "appliesTo" : [ ] - }, - "B36YBM4BFMUWZSG4.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "B36YBM4BFMUWZSG4.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "W84NR989M57Y5DZJ" : { - "W84NR989M57Y5DZJ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "W84NR989M57Y5DZJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W84NR989M57Y5DZJ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "W84NR989M57Y5DZJ.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "W84NR989M57Y5DZJ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "W84NR989M57Y5DZJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W84NR989M57Y5DZJ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "W84NR989M57Y5DZJ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1306" - }, - "appliesTo" : [ ] - }, - "W84NR989M57Y5DZJ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "W84NR989M57Y5DZJ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "W84NR989M57Y5DZJ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "W84NR989M57Y5DZJ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "W84NR989M57Y5DZJ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "W84NR989M57Y5DZJ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4509" - }, - "appliesTo" : [ ] - }, - "W84NR989M57Y5DZJ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "W84NR989M57Y5DZJ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "W84NR989M57Y5DZJ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "W84NR989M57Y5DZJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "W84NR989M57Y5DZJ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "W84NR989M57Y5DZJ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1020000000" - }, - "appliesTo" : [ ] - }, - "W84NR989M57Y5DZJ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "W84NR989M57Y5DZJ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2679" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "W84NR989M57Y5DZJ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "W84NR989M57Y5DZJ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "W84NR989M57Y5DZJ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "W84NR989M57Y5DZJ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2381" - }, - "appliesTo" : [ ] - }, - "W84NR989M57Y5DZJ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "W84NR989M57Y5DZJ.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "W84NR989M57Y5DZJ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "W84NR989M57Y5DZJ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "W84NR989M57Y5DZJ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "W84NR989M57Y5DZJ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1153" - }, - "appliesTo" : [ ] - }, - "W84NR989M57Y5DZJ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "W84NR989M57Y5DZJ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "W84NR989M57Y5DZJ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "W84NR989M57Y5DZJ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "W84NR989M57Y5DZJ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "W84NR989M57Y5DZJ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2205" - }, - "appliesTo" : [ ] - }, - "W84NR989M57Y5DZJ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "W84NR989M57Y5DZJ.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "W84NR989M57Y5DZJ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "W84NR989M57Y5DZJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "W84NR989M57Y5DZJ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "W84NR989M57Y5DZJ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "W84NR989M57Y5DZJ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "W84NR989M57Y5DZJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "W84NR989M57Y5DZJ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "W84NR989M57Y5DZJ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "W84NR989M57Y5DZJ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "W84NR989M57Y5DZJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "W84NR989M57Y5DZJ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "W84NR989M57Y5DZJ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5255" - }, - "appliesTo" : [ ] - }, - "W84NR989M57Y5DZJ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "W84NR989M57Y5DZJ.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "W84NR989M57Y5DZJ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "W84NR989M57Y5DZJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W84NR989M57Y5DZJ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "W84NR989M57Y5DZJ.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "W84NR989M57Y5DZJ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "W84NR989M57Y5DZJ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2505" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "W84NR989M57Y5DZJ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "W84NR989M57Y5DZJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "W84NR989M57Y5DZJ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "W84NR989M57Y5DZJ.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "3YGFZFTB4F7JS7UX" : { - "3YGFZFTB4F7JS7UX.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "3YGFZFTB4F7JS7UX", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "3YGFZFTB4F7JS7UX.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "3YGFZFTB4F7JS7UX.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2580" - }, - "appliesTo" : [ ] - }, - "3YGFZFTB4F7JS7UX.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "3YGFZFTB4F7JS7UX.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3YGFZFTB4F7JS7UX.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "3YGFZFTB4F7JS7UX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3YGFZFTB4F7JS7UX.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "3YGFZFTB4F7JS7UX.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5056" - }, - "appliesTo" : [ ] - }, - "3YGFZFTB4F7JS7UX.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "3YGFZFTB4F7JS7UX.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3YGFZFTB4F7JS7UX.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "3YGFZFTB4F7JS7UX", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "3YGFZFTB4F7JS7UX.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "3YGFZFTB4F7JS7UX.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3YGFZFTB4F7JS7UX.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "3YGFZFTB4F7JS7UX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3YGFZFTB4F7JS7UX.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "3YGFZFTB4F7JS7UX.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4935000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3YGFZFTB4F7JS7UX.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "3YGFZFTB4F7JS7UX", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "3YGFZFTB4F7JS7UX.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "3YGFZFTB4F7JS7UX.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7371" - }, - "appliesTo" : [ ] - }, - "3YGFZFTB4F7JS7UX.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "3YGFZFTB4F7JS7UX.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3YGFZFTB4F7JS7UX.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "3YGFZFTB4F7JS7UX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3YGFZFTB4F7JS7UX.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "3YGFZFTB4F7JS7UX.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12178" - }, - "appliesTo" : [ ] - }, - "3YGFZFTB4F7JS7UX.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "3YGFZFTB4F7JS7UX.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3YGFZFTB4F7JS7UX.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "3YGFZFTB4F7JS7UX", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "3YGFZFTB4F7JS7UX.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "3YGFZFTB4F7JS7UX.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3YGFZFTB4F7JS7UX.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "3YGFZFTB4F7JS7UX", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "3YGFZFTB4F7JS7UX.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "3YGFZFTB4F7JS7UX.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6478" - }, - "appliesTo" : [ ] - }, - "3YGFZFTB4F7JS7UX.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "3YGFZFTB4F7JS7UX.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3YGFZFTB4F7JS7UX.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "3YGFZFTB4F7JS7UX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3YGFZFTB4F7JS7UX.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "3YGFZFTB4F7JS7UX.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6789" - }, - "appliesTo" : [ ] - }, - "3YGFZFTB4F7JS7UX.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "3YGFZFTB4F7JS7UX.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3YGFZFTB4F7JS7UX.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "3YGFZFTB4F7JS7UX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3YGFZFTB4F7JS7UX.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "3YGFZFTB4F7JS7UX.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14444" - }, - "appliesTo" : [ ] - }, - "3YGFZFTB4F7JS7UX.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "3YGFZFTB4F7JS7UX.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3YGFZFTB4F7JS7UX.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "3YGFZFTB4F7JS7UX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3YGFZFTB4F7JS7UX.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "3YGFZFTB4F7JS7UX.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3418" - }, - "appliesTo" : [ ] - }, - "3YGFZFTB4F7JS7UX.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "3YGFZFTB4F7JS7UX.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3902000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3YGFZFTB4F7JS7UX.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "3YGFZFTB4F7JS7UX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3YGFZFTB4F7JS7UX.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "3YGFZFTB4F7JS7UX.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "5ESJGGVJ9BWYXAY9" : { - "5ESJGGVJ9BWYXAY9.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "5ESJGGVJ9BWYXAY9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5ESJGGVJ9BWYXAY9.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "5ESJGGVJ9BWYXAY9.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1960000000" - }, - "appliesTo" : [ ] - }, - "5ESJGGVJ9BWYXAY9.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "5ESJGGVJ9BWYXAY9.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1717" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "5ESJGGVJ9BWYXAY9.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "5ESJGGVJ9BWYXAY9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5ESJGGVJ9BWYXAY9.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "5ESJGGVJ9BWYXAY9.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "5ESJGGVJ9BWYXAY9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "5ESJGGVJ9BWYXAY9", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "5ESJGGVJ9BWYXAY9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "5ESJGGVJ9BWYXAY9.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "5ESJGGVJ9BWYXAY9.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "5ESJGGVJ9BWYXAY9", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "5ESJGGVJ9BWYXAY9.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "5ESJGGVJ9BWYXAY9.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9138" - }, - "appliesTo" : [ ] - }, - "5ESJGGVJ9BWYXAY9.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "5ESJGGVJ9BWYXAY9.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "5ESJGGVJ9BWYXAY9.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "5ESJGGVJ9BWYXAY9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5ESJGGVJ9BWYXAY9.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "5ESJGGVJ9BWYXAY9.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3397" - }, - "appliesTo" : [ ] - }, - "5ESJGGVJ9BWYXAY9.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "5ESJGGVJ9BWYXAY9.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "5ESJGGVJ9BWYXAY9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "5ESJGGVJ9BWYXAY9", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "5ESJGGVJ9BWYXAY9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "5ESJGGVJ9BWYXAY9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1287" - }, - "appliesTo" : [ ] - }, - "5ESJGGVJ9BWYXAY9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "5ESJGGVJ9BWYXAY9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5ESJGGVJ9BWYXAY9.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "5ESJGGVJ9BWYXAY9", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "5ESJGGVJ9BWYXAY9.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "5ESJGGVJ9BWYXAY9.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3583" - }, - "appliesTo" : [ ] - }, - "5ESJGGVJ9BWYXAY9.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "5ESJGGVJ9BWYXAY9.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "5ESJGGVJ9BWYXAY9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "5ESJGGVJ9BWYXAY9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "5ESJGGVJ9BWYXAY9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "5ESJGGVJ9BWYXAY9.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2190000000" - }, - "appliesTo" : [ ] - }, - "5ESJGGVJ9BWYXAY9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "5ESJGGVJ9BWYXAY9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2097" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5ESJGGVJ9BWYXAY9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "5ESJGGVJ9BWYXAY9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "5ESJGGVJ9BWYXAY9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "5ESJGGVJ9BWYXAY9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "5ESJGGVJ9BWYXAY9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "5ESJGGVJ9BWYXAY9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7378" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5ESJGGVJ9BWYXAY9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "5ESJGGVJ9BWYXAY9", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "5ESJGGVJ9BWYXAY9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "5ESJGGVJ9BWYXAY9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3203" - }, - "appliesTo" : [ ] - }, - "5ESJGGVJ9BWYXAY9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "5ESJGGVJ9BWYXAY9.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5ESJGGVJ9BWYXAY9.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "5ESJGGVJ9BWYXAY9", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "5ESJGGVJ9BWYXAY9.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "5ESJGGVJ9BWYXAY9.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "9MSTVHD5FNUTQ99C" : { - "9MSTVHD5FNUTQ99C.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "9MSTVHD5FNUTQ99C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9MSTVHD5FNUTQ99C.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "9MSTVHD5FNUTQ99C.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "9MSTVHD5FNUTQ99C.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "9MSTVHD5FNUTQ99C.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "98462" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9MSTVHD5FNUTQ99C.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "9MSTVHD5FNUTQ99C", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "9MSTVHD5FNUTQ99C.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "9MSTVHD5FNUTQ99C.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "9MSTVHD5FNUTQ99C.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "9MSTVHD5FNUTQ99C.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "88165" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9MSTVHD5FNUTQ99C.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "9MSTVHD5FNUTQ99C", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "9MSTVHD5FNUTQ99C.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "9MSTVHD5FNUTQ99C.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.4460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9MSTVHD5FNUTQ99C.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "9MSTVHD5FNUTQ99C", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "9MSTVHD5FNUTQ99C.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "9MSTVHD5FNUTQ99C.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9MSTVHD5FNUTQ99C.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "9MSTVHD5FNUTQ99C", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "9MSTVHD5FNUTQ99C.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "9MSTVHD5FNUTQ99C.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "9MSTVHD5FNUTQ99C.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "9MSTVHD5FNUTQ99C.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "181446" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9MSTVHD5FNUTQ99C.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "9MSTVHD5FNUTQ99C", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "9MSTVHD5FNUTQ99C.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "9MSTVHD5FNUTQ99C.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "94612" - }, - "appliesTo" : [ ] - }, - "9MSTVHD5FNUTQ99C.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "9MSTVHD5FNUTQ99C.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9MSTVHD5FNUTQ99C.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "9MSTVHD5FNUTQ99C", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "9MSTVHD5FNUTQ99C.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "9MSTVHD5FNUTQ99C.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "117129" - }, - "appliesTo" : [ ] - }, - "9MSTVHD5FNUTQ99C.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "9MSTVHD5FNUTQ99C.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.4570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9MSTVHD5FNUTQ99C.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "9MSTVHD5FNUTQ99C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9MSTVHD5FNUTQ99C.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "9MSTVHD5FNUTQ99C.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.7120000000" - }, - "appliesTo" : [ ] - }, - "9MSTVHD5FNUTQ99C.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "9MSTVHD5FNUTQ99C.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "50033" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9MSTVHD5FNUTQ99C.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "9MSTVHD5FNUTQ99C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9MSTVHD5FNUTQ99C.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "9MSTVHD5FNUTQ99C.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "11.8810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9MSTVHD5FNUTQ99C.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "9MSTVHD5FNUTQ99C", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "9MSTVHD5FNUTQ99C.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "9MSTVHD5FNUTQ99C.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "9MSTVHD5FNUTQ99C.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "9MSTVHD5FNUTQ99C.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "230765" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9MSTVHD5FNUTQ99C.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "9MSTVHD5FNUTQ99C", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "9MSTVHD5FNUTQ99C.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "9MSTVHD5FNUTQ99C.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "44779" - }, - "appliesTo" : [ ] - }, - "9MSTVHD5FNUTQ99C.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "9MSTVHD5FNUTQ99C.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.1120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9MSTVHD5FNUTQ99C.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "9MSTVHD5FNUTQ99C", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "9MSTVHD5FNUTQ99C.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "9MSTVHD5FNUTQ99C.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.6210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "H6T3SYB5G6QCVMZM" : { - "H6T3SYB5G6QCVMZM.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "H6T3SYB5G6QCVMZM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H6T3SYB5G6QCVMZM.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "H6T3SYB5G6QCVMZM.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "H6T3SYB5G6QCVMZM.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "H6T3SYB5G6QCVMZM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H6T3SYB5G6QCVMZM.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "H6T3SYB5G6QCVMZM.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5093" - }, - "appliesTo" : [ ] - }, - "H6T3SYB5G6QCVMZM.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "H6T3SYB5G6QCVMZM.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "H6T3SYB5G6QCVMZM.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "H6T3SYB5G6QCVMZM", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "H6T3SYB5G6QCVMZM.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "H6T3SYB5G6QCVMZM.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23466" - }, - "appliesTo" : [ ] - }, - "H6T3SYB5G6QCVMZM.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "H6T3SYB5G6QCVMZM.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "H6T3SYB5G6QCVMZM.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "H6T3SYB5G6QCVMZM", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "H6T3SYB5G6QCVMZM.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "H6T3SYB5G6QCVMZM.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5216" - }, - "appliesTo" : [ ] - }, - "H6T3SYB5G6QCVMZM.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "H6T3SYB5G6QCVMZM.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "H6T3SYB5G6QCVMZM.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "H6T3SYB5G6QCVMZM", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "H6T3SYB5G6QCVMZM.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "H6T3SYB5G6QCVMZM.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "H6T3SYB5G6QCVMZM.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "H6T3SYB5G6QCVMZM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H6T3SYB5G6QCVMZM.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "H6T3SYB5G6QCVMZM.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "H6T3SYB5G6QCVMZM.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "H6T3SYB5G6QCVMZM.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9983" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "H6T3SYB5G6QCVMZM.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "H6T3SYB5G6QCVMZM", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "H6T3SYB5G6QCVMZM.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "H6T3SYB5G6QCVMZM.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16506" - }, - "appliesTo" : [ ] - }, - "H6T3SYB5G6QCVMZM.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "H6T3SYB5G6QCVMZM.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "H6T3SYB5G6QCVMZM.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "H6T3SYB5G6QCVMZM", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "H6T3SYB5G6QCVMZM.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "H6T3SYB5G6QCVMZM.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "H6T3SYB5G6QCVMZM.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "H6T3SYB5G6QCVMZM", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "H6T3SYB5G6QCVMZM.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "H6T3SYB5G6QCVMZM.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8691" - }, - "appliesTo" : [ ] - }, - "H6T3SYB5G6QCVMZM.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "H6T3SYB5G6QCVMZM.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "H6T3SYB5G6QCVMZM.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "H6T3SYB5G6QCVMZM", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "H6T3SYB5G6QCVMZM.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "H6T3SYB5G6QCVMZM.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3590000000" - }, - "appliesTo" : [ ] - }, - "H6T3SYB5G6QCVMZM.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "H6T3SYB5G6QCVMZM.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8126" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "H6T3SYB5G6QCVMZM.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "H6T3SYB5G6QCVMZM", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "H6T3SYB5G6QCVMZM.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "H6T3SYB5G6QCVMZM.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14083" - }, - "appliesTo" : [ ] - }, - "H6T3SYB5G6QCVMZM.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "H6T3SYB5G6QCVMZM.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "QUKA5FNRVVKN5422" : { - "QUKA5FNRVVKN5422.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "QUKA5FNRVVKN5422", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QUKA5FNRVVKN5422.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "QUKA5FNRVVKN5422.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2689" - }, - "appliesTo" : [ ] - }, - "QUKA5FNRVVKN5422.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "QUKA5FNRVVKN5422.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QUKA5FNRVVKN5422.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "QUKA5FNRVVKN5422", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QUKA5FNRVVKN5422.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "QUKA5FNRVVKN5422.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "566" - }, - "appliesTo" : [ ] - }, - "QUKA5FNRVVKN5422.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "QUKA5FNRVVKN5422.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QUKA5FNRVVKN5422.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QUKA5FNRVVKN5422", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QUKA5FNRVVKN5422.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QUKA5FNRVVKN5422.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QUKA5FNRVVKN5422.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QUKA5FNRVVKN5422", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QUKA5FNRVVKN5422.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QUKA5FNRVVKN5422.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "500" - }, - "appliesTo" : [ ] - }, - "QUKA5FNRVVKN5422.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QUKA5FNRVVKN5422.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QUKA5FNRVVKN5422.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QUKA5FNRVVKN5422", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QUKA5FNRVVKN5422.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QUKA5FNRVVKN5422.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2526" - }, - "appliesTo" : [ ] - }, - "QUKA5FNRVVKN5422.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QUKA5FNRVVKN5422.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QUKA5FNRVVKN5422.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "QUKA5FNRVVKN5422", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QUKA5FNRVVKN5422.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "QUKA5FNRVVKN5422.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QUKA5FNRVVKN5422.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QUKA5FNRVVKN5422", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QUKA5FNRVVKN5422.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QUKA5FNRVVKN5422.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1008" - }, - "appliesTo" : [ ] - }, - "QUKA5FNRVVKN5422.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QUKA5FNRVVKN5422.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QUKA5FNRVVKN5422.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QUKA5FNRVVKN5422", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QUKA5FNRVVKN5422.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QUKA5FNRVVKN5422.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "246" - }, - "appliesTo" : [ ] - }, - "QUKA5FNRVVKN5422.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QUKA5FNRVVKN5422.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QUKA5FNRVVKN5422.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "QUKA5FNRVVKN5422", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QUKA5FNRVVKN5422.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "QUKA5FNRVVKN5422.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QUKA5FNRVVKN5422.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "QUKA5FNRVVKN5422", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QUKA5FNRVVKN5422.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "QUKA5FNRVVKN5422.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1074" - }, - "appliesTo" : [ ] - }, - "QUKA5FNRVVKN5422.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "QUKA5FNRVVKN5422.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QUKA5FNRVVKN5422.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "QUKA5FNRVVKN5422", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QUKA5FNRVVKN5422.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "QUKA5FNRVVKN5422.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QUKA5FNRVVKN5422.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "QUKA5FNRVVKN5422", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QUKA5FNRVVKN5422.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "QUKA5FNRVVKN5422.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "279" - }, - "appliesTo" : [ ] - }, - "QUKA5FNRVVKN5422.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "QUKA5FNRVVKN5422.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "T72RDCVVMHKECZ63" : { - "T72RDCVVMHKECZ63.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "T72RDCVVMHKECZ63", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "T72RDCVVMHKECZ63.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "T72RDCVVMHKECZ63.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14076" - }, - "appliesTo" : [ ] - }, - "T72RDCVVMHKECZ63.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "T72RDCVVMHKECZ63.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "T72RDCVVMHKECZ63.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "T72RDCVVMHKECZ63", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "T72RDCVVMHKECZ63.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "T72RDCVVMHKECZ63.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33093" - }, - "appliesTo" : [ ] - }, - "T72RDCVVMHKECZ63.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "T72RDCVVMHKECZ63.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "T72RDCVVMHKECZ63.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "T72RDCVVMHKECZ63", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "T72RDCVVMHKECZ63.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "T72RDCVVMHKECZ63.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13849" - }, - "appliesTo" : [ ] - }, - "T72RDCVVMHKECZ63.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "T72RDCVVMHKECZ63.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "T72RDCVVMHKECZ63.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "T72RDCVVMHKECZ63", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "T72RDCVVMHKECZ63.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "T72RDCVVMHKECZ63.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "T72RDCVVMHKECZ63.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "T72RDCVVMHKECZ63", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "T72RDCVVMHKECZ63.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "T72RDCVVMHKECZ63.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5652" - }, - "appliesTo" : [ ] - }, - "T72RDCVVMHKECZ63.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "T72RDCVVMHKECZ63.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "Q73NFXYCVJRVJD5P" : { - "Q73NFXYCVJRVJD5P.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Q73NFXYCVJRVJD5P", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "Q73NFXYCVJRVJD5P.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Q73NFXYCVJRVJD5P.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18394" - }, - "appliesTo" : [ ] - }, - "Q73NFXYCVJRVJD5P.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Q73NFXYCVJRVJD5P.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q73NFXYCVJRVJD5P.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Q73NFXYCVJRVJD5P", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "Q73NFXYCVJRVJD5P.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Q73NFXYCVJRVJD5P.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "45068" - }, - "appliesTo" : [ ] - }, - "Q73NFXYCVJRVJD5P.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Q73NFXYCVJRVJD5P.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Q73NFXYCVJRVJD5P.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Q73NFXYCVJRVJD5P", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "Q73NFXYCVJRVJD5P.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Q73NFXYCVJRVJD5P.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "102344" - }, - "appliesTo" : [ ] - }, - "Q73NFXYCVJRVJD5P.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Q73NFXYCVJRVJD5P.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Q73NFXYCVJRVJD5P.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "Q73NFXYCVJRVJD5P", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "Q73NFXYCVJRVJD5P.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "Q73NFXYCVJRVJD5P.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0260000000" - }, - "appliesTo" : [ ] - }, - "Q73NFXYCVJRVJD5P.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "Q73NFXYCVJRVJD5P.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "50814" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q73NFXYCVJRVJD5P.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "Q73NFXYCVJRVJD5P", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "Q73NFXYCVJRVJD5P.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "Q73NFXYCVJRVJD5P.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "127725" - }, - "appliesTo" : [ ] - }, - "Q73NFXYCVJRVJD5P.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "Q73NFXYCVJRVJD5P.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Q73NFXYCVJRVJD5P.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "Q73NFXYCVJRVJD5P", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q73NFXYCVJRVJD5P.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "Q73NFXYCVJRVJD5P.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "49202" - }, - "appliesTo" : [ ] - }, - "Q73NFXYCVJRVJD5P.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "Q73NFXYCVJRVJD5P.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Q73NFXYCVJRVJD5P.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Q73NFXYCVJRVJD5P", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "Q73NFXYCVJRVJD5P.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Q73NFXYCVJRVJD5P.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "43544" - }, - "appliesTo" : [ ] - }, - "Q73NFXYCVJRVJD5P.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Q73NFXYCVJRVJD5P.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q73NFXYCVJRVJD5P.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "Q73NFXYCVJRVJD5P", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q73NFXYCVJRVJD5P.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "Q73NFXYCVJRVJD5P.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.8500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Q73NFXYCVJRVJD5P.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "Q73NFXYCVJRVJD5P", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q73NFXYCVJRVJD5P.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "Q73NFXYCVJRVJD5P.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24893" - }, - "appliesTo" : [ ] - }, - "Q73NFXYCVJRVJD5P.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "Q73NFXYCVJRVJD5P.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q73NFXYCVJRVJD5P.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Q73NFXYCVJRVJD5P", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "Q73NFXYCVJRVJD5P.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Q73NFXYCVJRVJD5P.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.1420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Q73NFXYCVJRVJD5P.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "Q73NFXYCVJRVJD5P", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "Q73NFXYCVJRVJD5P.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "Q73NFXYCVJRVJD5P.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.8030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "YCB5ZDAPFSHHX97B" : { - "YCB5ZDAPFSHHX97B.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YCB5ZDAPFSHHX97B", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "YCB5ZDAPFSHHX97B.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YCB5ZDAPFSHHX97B.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30038" - }, - "appliesTo" : [ ] - }, - "YCB5ZDAPFSHHX97B.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YCB5ZDAPFSHHX97B.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YCB5ZDAPFSHHX97B.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "YCB5ZDAPFSHHX97B", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YCB5ZDAPFSHHX97B.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "YCB5ZDAPFSHHX97B.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "68679" - }, - "appliesTo" : [ ] - }, - "YCB5ZDAPFSHHX97B.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "YCB5ZDAPFSHHX97B.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YCB5ZDAPFSHHX97B.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YCB5ZDAPFSHHX97B", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YCB5ZDAPFSHHX97B.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YCB5ZDAPFSHHX97B.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4640000000" - }, - "appliesTo" : [ ] - }, - "YCB5ZDAPFSHHX97B.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YCB5ZDAPFSHHX97B.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "64767" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YCB5ZDAPFSHHX97B.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "YCB5ZDAPFSHHX97B", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YCB5ZDAPFSHHX97B.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "YCB5ZDAPFSHHX97B.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.4090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YCB5ZDAPFSHHX97B.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YCB5ZDAPFSHHX97B", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YCB5ZDAPFSHHX97B.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YCB5ZDAPFSHHX97B.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YCB5ZDAPFSHHX97B.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YCB5ZDAPFSHHX97B.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "59390" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YCB5ZDAPFSHHX97B.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YCB5ZDAPFSHHX97B", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "YCB5ZDAPFSHHX97B.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YCB5ZDAPFSHHX97B.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YCB5ZDAPFSHHX97B.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YCB5ZDAPFSHHX97B.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "126404" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YCB5ZDAPFSHHX97B.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "YCB5ZDAPFSHHX97B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YCB5ZDAPFSHHX97B.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "YCB5ZDAPFSHHX97B.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7230000000" - }, - "appliesTo" : [ ] - }, - "YCB5ZDAPFSHHX97B.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "YCB5ZDAPFSHHX97B.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32609" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YCB5ZDAPFSHHX97B.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YCB5ZDAPFSHHX97B", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YCB5ZDAPFSHHX97B.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YCB5ZDAPFSHHX97B.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.0540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YCB5ZDAPFSHHX97B.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "YCB5ZDAPFSHHX97B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YCB5ZDAPFSHHX97B.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "YCB5ZDAPFSHHX97B.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.6700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YCB5ZDAPFSHHX97B.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "YCB5ZDAPFSHHX97B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YCB5ZDAPFSHHX97B.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "YCB5ZDAPFSHHX97B.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "64430" - }, - "appliesTo" : [ ] - }, - "YCB5ZDAPFSHHX97B.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "YCB5ZDAPFSHHX97B.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YCB5ZDAPFSHHX97B.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "YCB5ZDAPFSHHX97B", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YCB5ZDAPFSHHX97B.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "YCB5ZDAPFSHHX97B.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.0880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YCB5ZDAPFSHHX97B.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "YCB5ZDAPFSHHX97B", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YCB5ZDAPFSHHX97B.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "YCB5ZDAPFSHHX97B.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "136159" - }, - "appliesTo" : [ ] - }, - "YCB5ZDAPFSHHX97B.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "YCB5ZDAPFSHHX97B.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "8744TF3WB3SSENYH" : { - "8744TF3WB3SSENYH.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "8744TF3WB3SSENYH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8744TF3WB3SSENYH.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "8744TF3WB3SSENYH.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8744TF3WB3SSENYH.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "8744TF3WB3SSENYH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8744TF3WB3SSENYH.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "8744TF3WB3SSENYH.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12089" - }, - "appliesTo" : [ ] - }, - "8744TF3WB3SSENYH.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "8744TF3WB3SSENYH.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8744TF3WB3SSENYH.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "8744TF3WB3SSENYH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "8744TF3WB3SSENYH.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "8744TF3WB3SSENYH.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20312" - }, - "appliesTo" : [ ] - }, - "8744TF3WB3SSENYH.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "8744TF3WB3SSENYH.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8744TF3WB3SSENYH.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "8744TF3WB3SSENYH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8744TF3WB3SSENYH.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "8744TF3WB3SSENYH.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25231" - }, - "appliesTo" : [ ] - }, - "8744TF3WB3SSENYH.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "8744TF3WB3SSENYH.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8744TF3WB3SSENYH.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "8744TF3WB3SSENYH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8744TF3WB3SSENYH.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "8744TF3WB3SSENYH.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29678" - }, - "appliesTo" : [ ] - }, - "8744TF3WB3SSENYH.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "8744TF3WB3SSENYH.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8744TF3WB3SSENYH.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "8744TF3WB3SSENYH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8744TF3WB3SSENYH.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "8744TF3WB3SSENYH.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "58172" - }, - "appliesTo" : [ ] - }, - "8744TF3WB3SSENYH.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "8744TF3WB3SSENYH.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8744TF3WB3SSENYH.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "8744TF3WB3SSENYH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "8744TF3WB3SSENYH.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "8744TF3WB3SSENYH.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47433" - }, - "appliesTo" : [ ] - }, - "8744TF3WB3SSENYH.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "8744TF3WB3SSENYH.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8744TF3WB3SSENYH.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "8744TF3WB3SSENYH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8744TF3WB3SSENYH.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "8744TF3WB3SSENYH.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8744TF3WB3SSENYH.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "8744TF3WB3SSENYH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8744TF3WB3SSENYH.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "8744TF3WB3SSENYH.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8744TF3WB3SSENYH.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "8744TF3WB3SSENYH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8744TF3WB3SSENYH.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "8744TF3WB3SSENYH.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8744TF3WB3SSENYH.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "8744TF3WB3SSENYH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8744TF3WB3SSENYH.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "8744TF3WB3SSENYH.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23984" - }, - "appliesTo" : [ ] - }, - "8744TF3WB3SSENYH.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "8744TF3WB3SSENYH.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8744TF3WB3SSENYH.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "8744TF3WB3SSENYH", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "8744TF3WB3SSENYH.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "8744TF3WB3SSENYH.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1830000000" - }, - "appliesTo" : [ ] - }, - "8744TF3WB3SSENYH.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "8744TF3WB3SSENYH.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10365" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "REEFNGM3CZ2DRRN8" : { - "REEFNGM3CZ2DRRN8.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "REEFNGM3CZ2DRRN8", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "REEFNGM3CZ2DRRN8.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "REEFNGM3CZ2DRRN8.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "REEFNGM3CZ2DRRN8.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "REEFNGM3CZ2DRRN8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "REEFNGM3CZ2DRRN8.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "REEFNGM3CZ2DRRN8.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "350" - }, - "appliesTo" : [ ] - }, - "REEFNGM3CZ2DRRN8.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "REEFNGM3CZ2DRRN8.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "REEFNGM3CZ2DRRN8.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "REEFNGM3CZ2DRRN8", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "REEFNGM3CZ2DRRN8.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "REEFNGM3CZ2DRRN8.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "559" - }, - "appliesTo" : [ ] - }, - "REEFNGM3CZ2DRRN8.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "REEFNGM3CZ2DRRN8.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "REEFNGM3CZ2DRRN8.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "REEFNGM3CZ2DRRN8", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "REEFNGM3CZ2DRRN8.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "REEFNGM3CZ2DRRN8.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3307" - }, - "appliesTo" : [ ] - }, - "REEFNGM3CZ2DRRN8.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "REEFNGM3CZ2DRRN8.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "REEFNGM3CZ2DRRN8.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "REEFNGM3CZ2DRRN8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "REEFNGM3CZ2DRRN8.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "REEFNGM3CZ2DRRN8.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "REEFNGM3CZ2DRRN8.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "REEFNGM3CZ2DRRN8", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "REEFNGM3CZ2DRRN8.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "REEFNGM3CZ2DRRN8.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1162" - }, - "appliesTo" : [ ] - }, - "REEFNGM3CZ2DRRN8.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "REEFNGM3CZ2DRRN8.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "REEFNGM3CZ2DRRN8.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "REEFNGM3CZ2DRRN8", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "REEFNGM3CZ2DRRN8.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "REEFNGM3CZ2DRRN8.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "359" - }, - "appliesTo" : [ ] - }, - "REEFNGM3CZ2DRRN8.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "REEFNGM3CZ2DRRN8.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "REEFNGM3CZ2DRRN8.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "REEFNGM3CZ2DRRN8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "REEFNGM3CZ2DRRN8.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "REEFNGM3CZ2DRRN8.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1212" - }, - "appliesTo" : [ ] - }, - "REEFNGM3CZ2DRRN8.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "REEFNGM3CZ2DRRN8.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "REEFNGM3CZ2DRRN8.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "REEFNGM3CZ2DRRN8", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "REEFNGM3CZ2DRRN8.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "REEFNGM3CZ2DRRN8.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0920000000" - }, - "appliesTo" : [ ] - }, - "REEFNGM3CZ2DRRN8.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "REEFNGM3CZ2DRRN8.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "969" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "REEFNGM3CZ2DRRN8.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "REEFNGM3CZ2DRRN8", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "REEFNGM3CZ2DRRN8.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "REEFNGM3CZ2DRRN8.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2753" - }, - "appliesTo" : [ ] - }, - "REEFNGM3CZ2DRRN8.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "REEFNGM3CZ2DRRN8.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "REEFNGM3CZ2DRRN8.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "REEFNGM3CZ2DRRN8", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "REEFNGM3CZ2DRRN8.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "REEFNGM3CZ2DRRN8.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "E92W6J6ZWCYNHQYK" : { - "E92W6J6ZWCYNHQYK.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "E92W6J6ZWCYNHQYK", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "E92W6J6ZWCYNHQYK.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "E92W6J6ZWCYNHQYK.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12076" - }, - "appliesTo" : [ ] - }, - "E92W6J6ZWCYNHQYK.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "E92W6J6ZWCYNHQYK.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "E92W6J6ZWCYNHQYK.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "E92W6J6ZWCYNHQYK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "E92W6J6ZWCYNHQYK.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "E92W6J6ZWCYNHQYK.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "E92W6J6ZWCYNHQYK.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "E92W6J6ZWCYNHQYK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "E92W6J6ZWCYNHQYK.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "E92W6J6ZWCYNHQYK.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6422" - }, - "appliesTo" : [ ] - }, - "E92W6J6ZWCYNHQYK.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "E92W6J6ZWCYNHQYK.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "E92W6J6ZWCYNHQYK.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "E92W6J6ZWCYNHQYK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "E92W6J6ZWCYNHQYK.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "E92W6J6ZWCYNHQYK.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "E92W6J6ZWCYNHQYK.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "E92W6J6ZWCYNHQYK", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "E92W6J6ZWCYNHQYK.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "E92W6J6ZWCYNHQYK.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2562" - }, - "appliesTo" : [ ] - }, - "E92W6J6ZWCYNHQYK.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "E92W6J6ZWCYNHQYK.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "E92W6J6ZWCYNHQYK.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "E92W6J6ZWCYNHQYK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "E92W6J6ZWCYNHQYK.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "E92W6J6ZWCYNHQYK.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2947" - }, - "appliesTo" : [ ] - }, - "E92W6J6ZWCYNHQYK.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "E92W6J6ZWCYNHQYK.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "E92W6J6ZWCYNHQYK.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "E92W6J6ZWCYNHQYK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "E92W6J6ZWCYNHQYK.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "E92W6J6ZWCYNHQYK.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "E92W6J6ZWCYNHQYK.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "E92W6J6ZWCYNHQYK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "E92W6J6ZWCYNHQYK.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "E92W6J6ZWCYNHQYK.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14164" - }, - "appliesTo" : [ ] - }, - "E92W6J6ZWCYNHQYK.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "E92W6J6ZWCYNHQYK.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "E92W6J6ZWCYNHQYK.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "E92W6J6ZWCYNHQYK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "E92W6J6ZWCYNHQYK.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "E92W6J6ZWCYNHQYK.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6301" - }, - "appliesTo" : [ ] - }, - "E92W6J6ZWCYNHQYK.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "E92W6J6ZWCYNHQYK.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "E92W6J6ZWCYNHQYK.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "E92W6J6ZWCYNHQYK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "E92W6J6ZWCYNHQYK.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "E92W6J6ZWCYNHQYK.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "E92W6J6ZWCYNHQYK.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "E92W6J6ZWCYNHQYK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "E92W6J6ZWCYNHQYK.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "E92W6J6ZWCYNHQYK.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5548" - }, - "appliesTo" : [ ] - }, - "E92W6J6ZWCYNHQYK.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "E92W6J6ZWCYNHQYK.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "E92W6J6ZWCYNHQYK.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "E92W6J6ZWCYNHQYK", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "E92W6J6ZWCYNHQYK.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "E92W6J6ZWCYNHQYK.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2720000000" - }, - "appliesTo" : [ ] - }, - "E92W6J6ZWCYNHQYK.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "E92W6J6ZWCYNHQYK.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5584" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "R4XHKDDZUJXABU4Z" : { - "R4XHKDDZUJXABU4Z.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "R4XHKDDZUJXABU4Z", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "R4XHKDDZUJXABU4Z.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "R4XHKDDZUJXABU4Z.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1273" - }, - "appliesTo" : [ ] - }, - "R4XHKDDZUJXABU4Z.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "R4XHKDDZUJXABU4Z.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "R4XHKDDZUJXABU4Z.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "R4XHKDDZUJXABU4Z", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "R4XHKDDZUJXABU4Z.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "R4XHKDDZUJXABU4Z.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "R4XHKDDZUJXABU4Z.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "R4XHKDDZUJXABU4Z", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "R4XHKDDZUJXABU4Z.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "R4XHKDDZUJXABU4Z.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2959" - }, - "appliesTo" : [ ] - }, - "R4XHKDDZUJXABU4Z.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "R4XHKDDZUJXABU4Z.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "R4XHKDDZUJXABU4Z.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "R4XHKDDZUJXABU4Z", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "R4XHKDDZUJXABU4Z.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "R4XHKDDZUJXABU4Z.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1828" - }, - "appliesTo" : [ ] - }, - "R4XHKDDZUJXABU4Z.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "R4XHKDDZUJXABU4Z.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "R4XHKDDZUJXABU4Z.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "R4XHKDDZUJXABU4Z", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "R4XHKDDZUJXABU4Z.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "R4XHKDDZUJXABU4Z.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1572" - }, - "appliesTo" : [ ] - }, - "R4XHKDDZUJXABU4Z.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "R4XHKDDZUJXABU4Z.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "R4XHKDDZUJXABU4Z.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "R4XHKDDZUJXABU4Z", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "R4XHKDDZUJXABU4Z.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "R4XHKDDZUJXABU4Z.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "R4XHKDDZUJXABU4Z.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "R4XHKDDZUJXABU4Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R4XHKDDZUJXABU4Z.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "R4XHKDDZUJXABU4Z.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "R4XHKDDZUJXABU4Z.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "R4XHKDDZUJXABU4Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R4XHKDDZUJXABU4Z.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "R4XHKDDZUJXABU4Z.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "705" - }, - "appliesTo" : [ ] - }, - "R4XHKDDZUJXABU4Z.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "R4XHKDDZUJXABU4Z.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "R4XHKDDZUJXABU4Z.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "R4XHKDDZUJXABU4Z", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "R4XHKDDZUJXABU4Z.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "R4XHKDDZUJXABU4Z.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "R4XHKDDZUJXABU4Z.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "R4XHKDDZUJXABU4Z", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "R4XHKDDZUJXABU4Z.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "R4XHKDDZUJXABU4Z.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3632" - }, - "appliesTo" : [ ] - }, - "R4XHKDDZUJXABU4Z.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "R4XHKDDZUJXABU4Z.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "R4XHKDDZUJXABU4Z.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "R4XHKDDZUJXABU4Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R4XHKDDZUJXABU4Z.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "R4XHKDDZUJXABU4Z.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1398" - }, - "appliesTo" : [ ] - }, - "R4XHKDDZUJXABU4Z.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "R4XHKDDZUJXABU4Z.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "R4XHKDDZUJXABU4Z.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "R4XHKDDZUJXABU4Z", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "R4XHKDDZUJXABU4Z.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "R4XHKDDZUJXABU4Z.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0740000000" - }, - "appliesTo" : [ ] - }, - "R4XHKDDZUJXABU4Z.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "R4XHKDDZUJXABU4Z.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "649" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "SVUSEDJB94K6K37X" : { - "SVUSEDJB94K6K37X.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "SVUSEDJB94K6K37X", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "SVUSEDJB94K6K37X.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "SVUSEDJB94K6K37X.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SVUSEDJB94K6K37X.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SVUSEDJB94K6K37X", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "SVUSEDJB94K6K37X.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SVUSEDJB94K6K37X.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28448" - }, - "appliesTo" : [ ] - }, - "SVUSEDJB94K6K37X.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SVUSEDJB94K6K37X.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SVUSEDJB94K6K37X.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "SVUSEDJB94K6K37X", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "SVUSEDJB94K6K37X.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "SVUSEDJB94K6K37X.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33980" - }, - "appliesTo" : [ ] - }, - "SVUSEDJB94K6K37X.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "SVUSEDJB94K6K37X.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SVUSEDJB94K6K37X.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "SVUSEDJB94K6K37X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SVUSEDJB94K6K37X.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "SVUSEDJB94K6K37X.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29538" - }, - "appliesTo" : [ ] - }, - "SVUSEDJB94K6K37X.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "SVUSEDJB94K6K37X.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SVUSEDJB94K6K37X.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SVUSEDJB94K6K37X", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "SVUSEDJB94K6K37X.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SVUSEDJB94K6K37X.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "53485" - }, - "appliesTo" : [ ] - }, - "SVUSEDJB94K6K37X.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SVUSEDJB94K6K37X.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SVUSEDJB94K6K37X.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "SVUSEDJB94K6K37X", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SVUSEDJB94K6K37X.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "SVUSEDJB94K6K37X.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SVUSEDJB94K6K37X.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "SVUSEDJB94K6K37X", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SVUSEDJB94K6K37X.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "SVUSEDJB94K6K37X.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "66626" - }, - "appliesTo" : [ ] - }, - "SVUSEDJB94K6K37X.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "SVUSEDJB94K6K37X.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SVUSEDJB94K6K37X.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SVUSEDJB94K6K37X", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "SVUSEDJB94K6K37X.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SVUSEDJB94K6K37X.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SVUSEDJB94K6K37X.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SVUSEDJB94K6K37X", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SVUSEDJB94K6K37X.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SVUSEDJB94K6K37X.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11799" - }, - "appliesTo" : [ ] - }, - "SVUSEDJB94K6K37X.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SVUSEDJB94K6K37X.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SVUSEDJB94K6K37X.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SVUSEDJB94K6K37X", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SVUSEDJB94K6K37X.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SVUSEDJB94K6K37X.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23130" - }, - "appliesTo" : [ ] - }, - "SVUSEDJB94K6K37X.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SVUSEDJB94K6K37X.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SVUSEDJB94K6K37X.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "SVUSEDJB94K6K37X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SVUSEDJB94K6K37X.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "SVUSEDJB94K6K37X.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14866" - }, - "appliesTo" : [ ] - }, - "SVUSEDJB94K6K37X.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "SVUSEDJB94K6K37X.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SVUSEDJB94K6K37X.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "SVUSEDJB94K6K37X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SVUSEDJB94K6K37X.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "SVUSEDJB94K6K37X.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "X6FJM3B6HUSDM27X" : { - "X6FJM3B6HUSDM27X.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "X6FJM3B6HUSDM27X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X6FJM3B6HUSDM27X.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "X6FJM3B6HUSDM27X.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9534" - }, - "appliesTo" : [ ] - }, - "X6FJM3B6HUSDM27X.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "X6FJM3B6HUSDM27X.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "X6FJM3B6HUSDM27X.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "X6FJM3B6HUSDM27X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X6FJM3B6HUSDM27X.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "X6FJM3B6HUSDM27X.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5510000000" - }, - "appliesTo" : [ ] - }, - "X6FJM3B6HUSDM27X.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "X6FJM3B6HUSDM27X.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4893" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "X6FJM3B6HUSDM27X.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "X6FJM3B6HUSDM27X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X6FJM3B6HUSDM27X.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "X6FJM3B6HUSDM27X.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14185" - }, - "appliesTo" : [ ] - }, - "X6FJM3B6HUSDM27X.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "X6FJM3B6HUSDM27X.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "X6FJM3B6HUSDM27X.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "X6FJM3B6HUSDM27X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X6FJM3B6HUSDM27X.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "X6FJM3B6HUSDM27X.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8604" - }, - "appliesTo" : [ ] - }, - "X6FJM3B6HUSDM27X.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "X6FJM3B6HUSDM27X.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "X6FJM3B6HUSDM27X.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "X6FJM3B6HUSDM27X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X6FJM3B6HUSDM27X.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "X6FJM3B6HUSDM27X.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "X6FJM3B6HUSDM27X.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "X6FJM3B6HUSDM27X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X6FJM3B6HUSDM27X.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "X6FJM3B6HUSDM27X.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7528" - }, - "appliesTo" : [ ] - }, - "X6FJM3B6HUSDM27X.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "X6FJM3B6HUSDM27X.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "X6FJM3B6HUSDM27X.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "X6FJM3B6HUSDM27X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X6FJM3B6HUSDM27X.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "X6FJM3B6HUSDM27X.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5600" - }, - "appliesTo" : [ ] - }, - "X6FJM3B6HUSDM27X.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "X6FJM3B6HUSDM27X.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "X6FJM3B6HUSDM27X.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "X6FJM3B6HUSDM27X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X6FJM3B6HUSDM27X.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "X6FJM3B6HUSDM27X.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "X6FJM3B6HUSDM27X.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "X6FJM3B6HUSDM27X.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16869" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "X6FJM3B6HUSDM27X.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "X6FJM3B6HUSDM27X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X6FJM3B6HUSDM27X.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "X6FJM3B6HUSDM27X.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "X6FJM3B6HUSDM27X.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "X6FJM3B6HUSDM27X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X6FJM3B6HUSDM27X.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "X6FJM3B6HUSDM27X.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "X6FJM3B6HUSDM27X.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "X6FJM3B6HUSDM27X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X6FJM3B6HUSDM27X.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "X6FJM3B6HUSDM27X.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10921" - }, - "appliesTo" : [ ] - }, - "X6FJM3B6HUSDM27X.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "X6FJM3B6HUSDM27X.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "X6FJM3B6HUSDM27X.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "X6FJM3B6HUSDM27X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X6FJM3B6HUSDM27X.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "X6FJM3B6HUSDM27X.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "GXUGSHFHQFHUTQMM" : { - "GXUGSHFHQFHUTQMM.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "GXUGSHFHQFHUTQMM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GXUGSHFHQFHUTQMM.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "GXUGSHFHQFHUTQMM.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "GXUGSHFHQFHUTQMM.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "GXUGSHFHQFHUTQMM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GXUGSHFHQFHUTQMM.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "GXUGSHFHQFHUTQMM.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1290000000" - }, - "appliesTo" : [ ] - }, - "GXUGSHFHQFHUTQMM.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "GXUGSHFHQFHUTQMM.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1130" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GXUGSHFHQFHUTQMM.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "GXUGSHFHQFHUTQMM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GXUGSHFHQFHUTQMM.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "GXUGSHFHQFHUTQMM.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4561" - }, - "appliesTo" : [ ] - }, - "GXUGSHFHQFHUTQMM.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "GXUGSHFHQFHUTQMM.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "GXUGSHFHQFHUTQMM.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "GXUGSHFHQFHUTQMM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GXUGSHFHQFHUTQMM.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "GXUGSHFHQFHUTQMM.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GXUGSHFHQFHUTQMM.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "GXUGSHFHQFHUTQMM", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "GXUGSHFHQFHUTQMM.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "GXUGSHFHQFHUTQMM.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "977" - }, - "appliesTo" : [ ] - }, - "GXUGSHFHQFHUTQMM.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "GXUGSHFHQFHUTQMM.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GXUGSHFHQFHUTQMM.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "GXUGSHFHQFHUTQMM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GXUGSHFHQFHUTQMM.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "GXUGSHFHQFHUTQMM.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2215" - }, - "appliesTo" : [ ] - }, - "GXUGSHFHQFHUTQMM.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "GXUGSHFHQFHUTQMM.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "GXUGSHFHQFHUTQMM.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "GXUGSHFHQFHUTQMM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GXUGSHFHQFHUTQMM.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "GXUGSHFHQFHUTQMM.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GXUGSHFHQFHUTQMM.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "GXUGSHFHQFHUTQMM", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "GXUGSHFHQFHUTQMM.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "GXUGSHFHQFHUTQMM.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "GXUGSHFHQFHUTQMM.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "GXUGSHFHQFHUTQMM.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3815" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GXUGSHFHQFHUTQMM.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "GXUGSHFHQFHUTQMM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GXUGSHFHQFHUTQMM.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "GXUGSHFHQFHUTQMM.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "GXUGSHFHQFHUTQMM.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "GXUGSHFHQFHUTQMM", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "GXUGSHFHQFHUTQMM.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "GXUGSHFHQFHUTQMM.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "GXUGSHFHQFHUTQMM.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "GXUGSHFHQFHUTQMM.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1915" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GXUGSHFHQFHUTQMM.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "GXUGSHFHQFHUTQMM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GXUGSHFHQFHUTQMM.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "GXUGSHFHQFHUTQMM.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0770000000" - }, - "appliesTo" : [ ] - }, - "GXUGSHFHQFHUTQMM.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "GXUGSHFHQFHUTQMM.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2029" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GXUGSHFHQFHUTQMM.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "GXUGSHFHQFHUTQMM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GXUGSHFHQFHUTQMM.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "GXUGSHFHQFHUTQMM.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2327" - }, - "appliesTo" : [ ] - }, - "GXUGSHFHQFHUTQMM.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "GXUGSHFHQFHUTQMM.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "N5J4FCEYTCJTEMNE" : { - "N5J4FCEYTCJTEMNE.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "N5J4FCEYTCJTEMNE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N5J4FCEYTCJTEMNE.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "N5J4FCEYTCJTEMNE.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3330000000" - }, - "appliesTo" : [ ] - }, - "N5J4FCEYTCJTEMNE.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "N5J4FCEYTCJTEMNE.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11676" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "N5J4FCEYTCJTEMNE.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "N5J4FCEYTCJTEMNE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N5J4FCEYTCJTEMNE.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "N5J4FCEYTCJTEMNE.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23192" - }, - "appliesTo" : [ ] - }, - "N5J4FCEYTCJTEMNE.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "N5J4FCEYTCJTEMNE.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "N5J4FCEYTCJTEMNE.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "N5J4FCEYTCJTEMNE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N5J4FCEYTCJTEMNE.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "N5J4FCEYTCJTEMNE.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "N5J4FCEYTCJTEMNE.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "N5J4FCEYTCJTEMNE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N5J4FCEYTCJTEMNE.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "N5J4FCEYTCJTEMNE.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24374" - }, - "appliesTo" : [ ] - }, - "N5J4FCEYTCJTEMNE.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "N5J4FCEYTCJTEMNE.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "N5J4FCEYTCJTEMNE.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "N5J4FCEYTCJTEMNE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N5J4FCEYTCJTEMNE.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "N5J4FCEYTCJTEMNE.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "N5J4FCEYTCJTEMNE.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "N5J4FCEYTCJTEMNE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N5J4FCEYTCJTEMNE.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "N5J4FCEYTCJTEMNE.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4020000000" - }, - "appliesTo" : [ ] - }, - "N5J4FCEYTCJTEMNE.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "N5J4FCEYTCJTEMNE.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12279" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "N5J4FCEYTCJTEMNE.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "N5J4FCEYTCJTEMNE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N5J4FCEYTCJTEMNE.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "N5J4FCEYTCJTEMNE.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "63546" - }, - "appliesTo" : [ ] - }, - "N5J4FCEYTCJTEMNE.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "N5J4FCEYTCJTEMNE.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "N5J4FCEYTCJTEMNE.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "N5J4FCEYTCJTEMNE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N5J4FCEYTCJTEMNE.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "N5J4FCEYTCJTEMNE.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "N5J4FCEYTCJTEMNE.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "N5J4FCEYTCJTEMNE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N5J4FCEYTCJTEMNE.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "N5J4FCEYTCJTEMNE.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1710000000" - }, - "appliesTo" : [ ] - }, - "N5J4FCEYTCJTEMNE.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "N5J4FCEYTCJTEMNE.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30767" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "N5J4FCEYTCJTEMNE.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "N5J4FCEYTCJTEMNE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N5J4FCEYTCJTEMNE.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "N5J4FCEYTCJTEMNE.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "N5J4FCEYTCJTEMNE.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "N5J4FCEYTCJTEMNE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N5J4FCEYTCJTEMNE.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "N5J4FCEYTCJTEMNE.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31953" - }, - "appliesTo" : [ ] - }, - "N5J4FCEYTCJTEMNE.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "N5J4FCEYTCJTEMNE.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "N5J4FCEYTCJTEMNE.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "N5J4FCEYTCJTEMNE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N5J4FCEYTCJTEMNE.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "N5J4FCEYTCJTEMNE.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "60597" - }, - "appliesTo" : [ ] - }, - "N5J4FCEYTCJTEMNE.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "N5J4FCEYTCJTEMNE.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "UFNYR85GSNMJPAWG" : { - "UFNYR85GSNMJPAWG.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "UFNYR85GSNMJPAWG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UFNYR85GSNMJPAWG.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "UFNYR85GSNMJPAWG.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5514" - }, - "appliesTo" : [ ] - }, - "UFNYR85GSNMJPAWG.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "UFNYR85GSNMJPAWG.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "UFNYR85GSNMJPAWG.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "UFNYR85GSNMJPAWG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UFNYR85GSNMJPAWG.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "UFNYR85GSNMJPAWG.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "UFNYR85GSNMJPAWG.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "UFNYR85GSNMJPAWG.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15847" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "UFNYR85GSNMJPAWG.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "UFNYR85GSNMJPAWG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UFNYR85GSNMJPAWG.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "UFNYR85GSNMJPAWG.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "UFNYR85GSNMJPAWG.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "UFNYR85GSNMJPAWG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UFNYR85GSNMJPAWG.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "UFNYR85GSNMJPAWG.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "UFNYR85GSNMJPAWG.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "UFNYR85GSNMJPAWG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UFNYR85GSNMJPAWG.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "UFNYR85GSNMJPAWG.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16011" - }, - "appliesTo" : [ ] - }, - "UFNYR85GSNMJPAWG.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "UFNYR85GSNMJPAWG.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "UFNYR85GSNMJPAWG.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "UFNYR85GSNMJPAWG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UFNYR85GSNMJPAWG.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "UFNYR85GSNMJPAWG.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "UFNYR85GSNMJPAWG.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "UFNYR85GSNMJPAWG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UFNYR85GSNMJPAWG.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "UFNYR85GSNMJPAWG.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2729" - }, - "appliesTo" : [ ] - }, - "UFNYR85GSNMJPAWG.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "UFNYR85GSNMJPAWG.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "UFNYR85GSNMJPAWG.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "UFNYR85GSNMJPAWG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UFNYR85GSNMJPAWG.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "UFNYR85GSNMJPAWG.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2762" - }, - "appliesTo" : [ ] - }, - "UFNYR85GSNMJPAWG.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "UFNYR85GSNMJPAWG.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "UFNYR85GSNMJPAWG.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "UFNYR85GSNMJPAWG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UFNYR85GSNMJPAWG.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "UFNYR85GSNMJPAWG.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "UFNYR85GSNMJPAWG.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "UFNYR85GSNMJPAWG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UFNYR85GSNMJPAWG.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "UFNYR85GSNMJPAWG.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5449" - }, - "appliesTo" : [ ] - }, - "UFNYR85GSNMJPAWG.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "UFNYR85GSNMJPAWG.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "UFNYR85GSNMJPAWG.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "UFNYR85GSNMJPAWG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UFNYR85GSNMJPAWG.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "UFNYR85GSNMJPAWG.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8015" - }, - "appliesTo" : [ ] - }, - "UFNYR85GSNMJPAWG.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "UFNYR85GSNMJPAWG.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "UFNYR85GSNMJPAWG.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "UFNYR85GSNMJPAWG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UFNYR85GSNMJPAWG.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "UFNYR85GSNMJPAWG.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3020000000" - }, - "appliesTo" : [ ] - }, - "UFNYR85GSNMJPAWG.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "UFNYR85GSNMJPAWG.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7949" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "H338WENZAK73BM3E" : { - "H338WENZAK73BM3E.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "H338WENZAK73BM3E", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "H338WENZAK73BM3E.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "H338WENZAK73BM3E.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "126706" - }, - "appliesTo" : [ ] - }, - "H338WENZAK73BM3E.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "H338WENZAK73BM3E.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "H338WENZAK73BM3E.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "H338WENZAK73BM3E", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "H338WENZAK73BM3E.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "H338WENZAK73BM3E.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "63442" - }, - "appliesTo" : [ ] - }, - "H338WENZAK73BM3E.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "H338WENZAK73BM3E.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.2420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "H338WENZAK73BM3E.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "H338WENZAK73BM3E", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "H338WENZAK73BM3E.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "H338WENZAK73BM3E.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "H338WENZAK73BM3E.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "H338WENZAK73BM3E.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "370551" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "H338WENZAK73BM3E.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "H338WENZAK73BM3E", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "H338WENZAK73BM3E.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "H338WENZAK73BM3E.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.5380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "H338WENZAK73BM3E.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "H338WENZAK73BM3E", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "H338WENZAK73BM3E.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "H338WENZAK73BM3E.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "377511" - }, - "appliesTo" : [ ] - }, - "H338WENZAK73BM3E.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "H338WENZAK73BM3E.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "H338WENZAK73BM3E.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "H338WENZAK73BM3E", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "H338WENZAK73BM3E.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "H338WENZAK73BM3E.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.6570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "H338WENZAK73BM3E.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "H338WENZAK73BM3E", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "H338WENZAK73BM3E.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "H338WENZAK73BM3E.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.1920000000" - }, - "appliesTo" : [ ] - }, - "H338WENZAK73BM3E.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "H338WENZAK73BM3E.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "188995" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "H338WENZAK73BM3E.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "H338WENZAK73BM3E", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "H338WENZAK73BM3E.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "H338WENZAK73BM3E.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.0700000000" - }, - "appliesTo" : [ ] - }, - "H338WENZAK73BM3E.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "H338WENZAK73BM3E.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "185802" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "H338WENZAK73BM3E.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "H338WENZAK73BM3E", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H338WENZAK73BM3E.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "H338WENZAK73BM3E.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "127998" - }, - "appliesTo" : [ ] - }, - "H338WENZAK73BM3E.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "H338WENZAK73BM3E.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "H338WENZAK73BM3E.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "H338WENZAK73BM3E", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H338WENZAK73BM3E.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "H338WENZAK73BM3E.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.6930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "H338WENZAK73BM3E.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "H338WENZAK73BM3E", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H338WENZAK73BM3E.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "H338WENZAK73BM3E.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "64101" - }, - "appliesTo" : [ ] - }, - "H338WENZAK73BM3E.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "H338WENZAK73BM3E.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "6767SWNDDU2CUUEJ" : { - "6767SWNDDU2CUUEJ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "6767SWNDDU2CUUEJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6767SWNDDU2CUUEJ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "6767SWNDDU2CUUEJ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "6767SWNDDU2CUUEJ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "6767SWNDDU2CUUEJ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "55419" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6767SWNDDU2CUUEJ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6767SWNDDU2CUUEJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6767SWNDDU2CUUEJ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6767SWNDDU2CUUEJ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "92648" - }, - "appliesTo" : [ ] - }, - "6767SWNDDU2CUUEJ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6767SWNDDU2CUUEJ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6767SWNDDU2CUUEJ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "6767SWNDDU2CUUEJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6767SWNDDU2CUUEJ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "6767SWNDDU2CUUEJ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6767SWNDDU2CUUEJ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "6767SWNDDU2CUUEJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6767SWNDDU2CUUEJ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "6767SWNDDU2CUUEJ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "52352" - }, - "appliesTo" : [ ] - }, - "6767SWNDDU2CUUEJ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "6767SWNDDU2CUUEJ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6767SWNDDU2CUUEJ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6767SWNDDU2CUUEJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6767SWNDDU2CUUEJ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6767SWNDDU2CUUEJ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8900000000" - }, - "appliesTo" : [ ] - }, - "6767SWNDDU2CUUEJ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6767SWNDDU2CUUEJ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25313" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6767SWNDDU2CUUEJ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6767SWNDDU2CUUEJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6767SWNDDU2CUUEJ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6767SWNDDU2CUUEJ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "48046" - }, - "appliesTo" : [ ] - }, - "6767SWNDDU2CUUEJ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6767SWNDDU2CUUEJ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6767SWNDDU2CUUEJ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "6767SWNDDU2CUUEJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6767SWNDDU2CUUEJ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "6767SWNDDU2CUUEJ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "103383" - }, - "appliesTo" : [ ] - }, - "6767SWNDDU2CUUEJ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "6767SWNDDU2CUUEJ.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6767SWNDDU2CUUEJ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "6767SWNDDU2CUUEJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6767SWNDDU2CUUEJ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "6767SWNDDU2CUUEJ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28143" - }, - "appliesTo" : [ ] - }, - "6767SWNDDU2CUUEJ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "6767SWNDDU2CUUEJ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6767SWNDDU2CUUEJ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "6767SWNDDU2CUUEJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6767SWNDDU2CUUEJ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "6767SWNDDU2CUUEJ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.6730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6767SWNDDU2CUUEJ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6767SWNDDU2CUUEJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6767SWNDDU2CUUEJ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6767SWNDDU2CUUEJ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.9950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6767SWNDDU2CUUEJ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6767SWNDDU2CUUEJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6767SWNDDU2CUUEJ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6767SWNDDU2CUUEJ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "49872" - }, - "appliesTo" : [ ] - }, - "6767SWNDDU2CUUEJ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6767SWNDDU2CUUEJ.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6767SWNDDU2CUUEJ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "6767SWNDDU2CUUEJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6767SWNDDU2CUUEJ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "6767SWNDDU2CUUEJ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.1850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "W74H9N7H8NNRHRRV" : { - "W74H9N7H8NNRHRRV.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "W74H9N7H8NNRHRRV", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "W74H9N7H8NNRHRRV.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "W74H9N7H8NNRHRRV.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "68604" - }, - "appliesTo" : [ ] - }, - "W74H9N7H8NNRHRRV.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "W74H9N7H8NNRHRRV.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.9620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "W74H9N7H8NNRHRRV.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "W74H9N7H8NNRHRRV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W74H9N7H8NNRHRRV.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "W74H9N7H8NNRHRRV.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "19.0430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "W74H9N7H8NNRHRRV.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "W74H9N7H8NNRHRRV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W74H9N7H8NNRHRRV.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "W74H9N7H8NNRHRRV.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "155773" - }, - "appliesTo" : [ ] - }, - "W74H9N7H8NNRHRRV.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "W74H9N7H8NNRHRRV.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "W74H9N7H8NNRHRRV.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "W74H9N7H8NNRHRRV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W74H9N7H8NNRHRRV.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "W74H9N7H8NNRHRRV.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "78895" - }, - "appliesTo" : [ ] - }, - "W74H9N7H8NNRHRRV.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "W74H9N7H8NNRHRRV.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.1360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "W74H9N7H8NNRHRRV.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "W74H9N7H8NNRHRRV", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "W74H9N7H8NNRHRRV.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "W74H9N7H8NNRHRRV.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "238686" - }, - "appliesTo" : [ ] - }, - "W74H9N7H8NNRHRRV.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "W74H9N7H8NNRHRRV.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "W74H9N7H8NNRHRRV.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "W74H9N7H8NNRHRRV", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "W74H9N7H8NNRHRRV.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "W74H9N7H8NNRHRRV.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.7090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "W74H9N7H8NNRHRRV.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "W74H9N7H8NNRHRRV", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "W74H9N7H8NNRHRRV.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "W74H9N7H8NNRHRRV.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "104379" - }, - "appliesTo" : [ ] - }, - "W74H9N7H8NNRHRRV.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "W74H9N7H8NNRHRRV.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.1020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "W74H9N7H8NNRHRRV.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "W74H9N7H8NNRHRRV", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "W74H9N7H8NNRHRRV.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "W74H9N7H8NNRHRRV.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.5760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "W74H9N7H8NNRHRRV.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "W74H9N7H8NNRHRRV", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "W74H9N7H8NNRHRRV.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "W74H9N7H8NNRHRRV.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "120035" - }, - "appliesTo" : [ ] - }, - "W74H9N7H8NNRHRRV.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "W74H9N7H8NNRHRRV.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.6980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "W74H9N7H8NNRHRRV.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "W74H9N7H8NNRHRRV", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "W74H9N7H8NNRHRRV.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "W74H9N7H8NNRHRRV.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "135603" - }, - "appliesTo" : [ ] - }, - "W74H9N7H8NNRHRRV.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "W74H9N7H8NNRHRRV.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "W74H9N7H8NNRHRRV.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "W74H9N7H8NNRHRRV", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "W74H9N7H8NNRHRRV.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "W74H9N7H8NNRHRRV.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "199648" - }, - "appliesTo" : [ ] - }, - "W74H9N7H8NNRHRRV.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "W74H9N7H8NNRHRRV.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "5EYCR4NNAWN9DZT3" : { - "5EYCR4NNAWN9DZT3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "5EYCR4NNAWN9DZT3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "5EYCR4NNAWN9DZT3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "5EYCR4NNAWN9DZT3.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "5EYCR4NNAWN9DZT3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "5EYCR4NNAWN9DZT3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "5EYCR4NNAWN9DZT3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "5EYCR4NNAWN9DZT3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1887" - }, - "appliesTo" : [ ] - }, - "5EYCR4NNAWN9DZT3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "5EYCR4NNAWN9DZT3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5EYCR4NNAWN9DZT3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "5EYCR4NNAWN9DZT3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "5EYCR4NNAWN9DZT3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "5EYCR4NNAWN9DZT3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "938" - }, - "appliesTo" : [ ] - }, - "5EYCR4NNAWN9DZT3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "5EYCR4NNAWN9DZT3.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5EYCR4NNAWN9DZT3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "5EYCR4NNAWN9DZT3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "5EYCR4NNAWN9DZT3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "5EYCR4NNAWN9DZT3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "581" - }, - "appliesTo" : [ ] - }, - "5EYCR4NNAWN9DZT3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "5EYCR4NNAWN9DZT3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5EYCR4NNAWN9DZT3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "5EYCR4NNAWN9DZT3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "5EYCR4NNAWN9DZT3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "5EYCR4NNAWN9DZT3.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0390000000" - }, - "appliesTo" : [ ] - }, - "5EYCR4NNAWN9DZT3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "5EYCR4NNAWN9DZT3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "983" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "VKZY87EJ294KXKWY" : { - "VKZY87EJ294KXKWY.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "VKZY87EJ294KXKWY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VKZY87EJ294KXKWY.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "VKZY87EJ294KXKWY.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30021" - }, - "appliesTo" : [ ] - }, - "VKZY87EJ294KXKWY.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "VKZY87EJ294KXKWY.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VKZY87EJ294KXKWY.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "VKZY87EJ294KXKWY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VKZY87EJ294KXKWY.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "VKZY87EJ294KXKWY.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.1230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VKZY87EJ294KXKWY.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "VKZY87EJ294KXKWY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VKZY87EJ294KXKWY.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "VKZY87EJ294KXKWY.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.3860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VKZY87EJ294KXKWY.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "VKZY87EJ294KXKWY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VKZY87EJ294KXKWY.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "VKZY87EJ294KXKWY.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "64018" - }, - "appliesTo" : [ ] - }, - "VKZY87EJ294KXKWY.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "VKZY87EJ294KXKWY.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VKZY87EJ294KXKWY.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "VKZY87EJ294KXKWY", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "VKZY87EJ294KXKWY.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "VKZY87EJ294KXKWY.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "122675" - }, - "appliesTo" : [ ] - }, - "VKZY87EJ294KXKWY.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "VKZY87EJ294KXKWY.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VKZY87EJ294KXKWY.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "VKZY87EJ294KXKWY", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "VKZY87EJ294KXKWY.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "VKZY87EJ294KXKWY.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "53072" - }, - "appliesTo" : [ ] - }, - "VKZY87EJ294KXKWY.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "VKZY87EJ294KXKWY.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VKZY87EJ294KXKWY.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "VKZY87EJ294KXKWY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VKZY87EJ294KXKWY.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "VKZY87EJ294KXKWY.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.6950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VKZY87EJ294KXKWY.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "VKZY87EJ294KXKWY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VKZY87EJ294KXKWY.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "VKZY87EJ294KXKWY.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "VKZY87EJ294KXKWY.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "VKZY87EJ294KXKWY.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "59098" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VKZY87EJ294KXKWY.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "VKZY87EJ294KXKWY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VKZY87EJ294KXKWY.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "VKZY87EJ294KXKWY.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "70720" - }, - "appliesTo" : [ ] - }, - "VKZY87EJ294KXKWY.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "VKZY87EJ294KXKWY.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VKZY87EJ294KXKWY.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "VKZY87EJ294KXKWY", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "VKZY87EJ294KXKWY.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "VKZY87EJ294KXKWY.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26946" - }, - "appliesTo" : [ ] - }, - "VKZY87EJ294KXKWY.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "VKZY87EJ294KXKWY.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VKZY87EJ294KXKWY.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "VKZY87EJ294KXKWY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VKZY87EJ294KXKWY.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "VKZY87EJ294KXKWY.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "139385" - }, - "appliesTo" : [ ] - }, - "VKZY87EJ294KXKWY.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "VKZY87EJ294KXKWY.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VKZY87EJ294KXKWY.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "VKZY87EJ294KXKWY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VKZY87EJ294KXKWY.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "VKZY87EJ294KXKWY.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.1440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "SBHS3JAQSXPZMQSH" : { - "SBHS3JAQSXPZMQSH.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SBHS3JAQSXPZMQSH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "SBHS3JAQSXPZMQSH.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SBHS3JAQSXPZMQSH.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "759" - }, - "appliesTo" : [ ] - }, - "SBHS3JAQSXPZMQSH.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SBHS3JAQSXPZMQSH.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SBHS3JAQSXPZMQSH.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "SBHS3JAQSXPZMQSH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SBHS3JAQSXPZMQSH.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "SBHS3JAQSXPZMQSH.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SBHS3JAQSXPZMQSH.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "SBHS3JAQSXPZMQSH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SBHS3JAQSXPZMQSH.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "SBHS3JAQSXPZMQSH.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1593" - }, - "appliesTo" : [ ] - }, - "SBHS3JAQSXPZMQSH.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "SBHS3JAQSXPZMQSH.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SBHS3JAQSXPZMQSH.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "SBHS3JAQSXPZMQSH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SBHS3JAQSXPZMQSH.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "SBHS3JAQSXPZMQSH.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SBHS3JAQSXPZMQSH.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "SBHS3JAQSXPZMQSH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SBHS3JAQSXPZMQSH.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "SBHS3JAQSXPZMQSH.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0890000000" - }, - "appliesTo" : [ ] - }, - "SBHS3JAQSXPZMQSH.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "SBHS3JAQSXPZMQSH.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "841" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SBHS3JAQSXPZMQSH.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SBHS3JAQSXPZMQSH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "SBHS3JAQSXPZMQSH.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SBHS3JAQSXPZMQSH.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0590000000" - }, - "appliesTo" : [ ] - }, - "SBHS3JAQSXPZMQSH.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SBHS3JAQSXPZMQSH.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1552" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SBHS3JAQSXPZMQSH.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "SBHS3JAQSXPZMQSH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SBHS3JAQSXPZMQSH.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "SBHS3JAQSXPZMQSH.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3366" - }, - "appliesTo" : [ ] - }, - "SBHS3JAQSXPZMQSH.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "SBHS3JAQSXPZMQSH.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SBHS3JAQSXPZMQSH.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "SBHS3JAQSXPZMQSH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SBHS3JAQSXPZMQSH.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "SBHS3JAQSXPZMQSH.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1715" - }, - "appliesTo" : [ ] - }, - "SBHS3JAQSXPZMQSH.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "SBHS3JAQSXPZMQSH.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SBHS3JAQSXPZMQSH.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SBHS3JAQSXPZMQSH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SBHS3JAQSXPZMQSH.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SBHS3JAQSXPZMQSH.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SBHS3JAQSXPZMQSH.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "SBHS3JAQSXPZMQSH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SBHS3JAQSXPZMQSH.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "SBHS3JAQSXPZMQSH.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SBHS3JAQSXPZMQSH.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SBHS3JAQSXPZMQSH", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "SBHS3JAQSXPZMQSH.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SBHS3JAQSXPZMQSH.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SBHS3JAQSXPZMQSH.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SBHS3JAQSXPZMQSH.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2950" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SBHS3JAQSXPZMQSH.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SBHS3JAQSXPZMQSH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "SBHS3JAQSXPZMQSH.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SBHS3JAQSXPZMQSH.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SBHS3JAQSXPZMQSH.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SBHS3JAQSXPZMQSH.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1433" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "A67CJDV9B3YBP6N6" : { - "A67CJDV9B3YBP6N6.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "A67CJDV9B3YBP6N6", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "A67CJDV9B3YBP6N6.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "A67CJDV9B3YBP6N6.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24905" - }, - "appliesTo" : [ ] - }, - "A67CJDV9B3YBP6N6.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "A67CJDV9B3YBP6N6.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "A67CJDV9B3YBP6N6.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "A67CJDV9B3YBP6N6", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "A67CJDV9B3YBP6N6.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "A67CJDV9B3YBP6N6.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "A67CJDV9B3YBP6N6.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "A67CJDV9B3YBP6N6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "A67CJDV9B3YBP6N6.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "A67CJDV9B3YBP6N6.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29640" - }, - "appliesTo" : [ ] - }, - "A67CJDV9B3YBP6N6.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "A67CJDV9B3YBP6N6.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "A67CJDV9B3YBP6N6.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "A67CJDV9B3YBP6N6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A67CJDV9B3YBP6N6.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "A67CJDV9B3YBP6N6.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16001" - }, - "appliesTo" : [ ] - }, - "A67CJDV9B3YBP6N6.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "A67CJDV9B3YBP6N6.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "A67CJDV9B3YBP6N6.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "A67CJDV9B3YBP6N6", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "A67CJDV9B3YBP6N6.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "A67CJDV9B3YBP6N6.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "A67CJDV9B3YBP6N6.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "A67CJDV9B3YBP6N6.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37562" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "A67CJDV9B3YBP6N6.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "A67CJDV9B3YBP6N6", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "A67CJDV9B3YBP6N6.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "A67CJDV9B3YBP6N6.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9224" - }, - "appliesTo" : [ ] - }, - "A67CJDV9B3YBP6N6.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "A67CJDV9B3YBP6N6.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "A67CJDV9B3YBP6N6.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "A67CJDV9B3YBP6N6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "A67CJDV9B3YBP6N6.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "A67CJDV9B3YBP6N6.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "A67CJDV9B3YBP6N6.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "A67CJDV9B3YBP6N6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A67CJDV9B3YBP6N6.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "A67CJDV9B3YBP6N6.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "A67CJDV9B3YBP6N6.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "A67CJDV9B3YBP6N6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A67CJDV9B3YBP6N6.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "A67CJDV9B3YBP6N6.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8164" - }, - "appliesTo" : [ ] - }, - "A67CJDV9B3YBP6N6.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "A67CJDV9B3YBP6N6.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "A67CJDV9B3YBP6N6.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "A67CJDV9B3YBP6N6", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "A67CJDV9B3YBP6N6.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "A67CJDV9B3YBP6N6.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13912" - }, - "appliesTo" : [ ] - }, - "A67CJDV9B3YBP6N6.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "A67CJDV9B3YBP6N6.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "A67CJDV9B3YBP6N6.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "A67CJDV9B3YBP6N6", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "A67CJDV9B3YBP6N6.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "A67CJDV9B3YBP6N6.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25228" - }, - "appliesTo" : [ ] - }, - "A67CJDV9B3YBP6N6.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "A67CJDV9B3YBP6N6.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "SQZMQXR6THWASKYH" : { - "SQZMQXR6THWASKYH.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "SQZMQXR6THWASKYH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SQZMQXR6THWASKYH.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "SQZMQXR6THWASKYH.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9260" - }, - "appliesTo" : [ ] - }, - "SQZMQXR6THWASKYH.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "SQZMQXR6THWASKYH.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SQZMQXR6THWASKYH.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "SQZMQXR6THWASKYH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SQZMQXR6THWASKYH.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "SQZMQXR6THWASKYH.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SQZMQXR6THWASKYH.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SQZMQXR6THWASKYH", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "SQZMQXR6THWASKYH.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SQZMQXR6THWASKYH.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11741" - }, - "appliesTo" : [ ] - }, - "SQZMQXR6THWASKYH.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SQZMQXR6THWASKYH.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SQZMQXR6THWASKYH.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SQZMQXR6THWASKYH", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "SQZMQXR6THWASKYH.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SQZMQXR6THWASKYH.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SQZMQXR6THWASKYH.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "SQZMQXR6THWASKYH", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "SQZMQXR6THWASKYH.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "SQZMQXR6THWASKYH.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "52170" - }, - "appliesTo" : [ ] - }, - "SQZMQXR6THWASKYH.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "SQZMQXR6THWASKYH.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SQZMQXR6THWASKYH.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "SQZMQXR6THWASKYH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SQZMQXR6THWASKYH.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "SQZMQXR6THWASKYH.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18448" - }, - "appliesTo" : [ ] - }, - "SQZMQXR6THWASKYH.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "SQZMQXR6THWASKYH.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SQZMQXR6THWASKYH.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "SQZMQXR6THWASKYH", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "SQZMQXR6THWASKYH.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "SQZMQXR6THWASKYH.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34606" - }, - "appliesTo" : [ ] - }, - "SQZMQXR6THWASKYH.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "SQZMQXR6THWASKYH.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SQZMQXR6THWASKYH.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SQZMQXR6THWASKYH", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "SQZMQXR6THWASKYH.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SQZMQXR6THWASKYH.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "45608" - }, - "appliesTo" : [ ] - }, - "SQZMQXR6THWASKYH.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SQZMQXR6THWASKYH.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SQZMQXR6THWASKYH.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "SQZMQXR6THWASKYH", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "SQZMQXR6THWASKYH.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "SQZMQXR6THWASKYH.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SQZMQXR6THWASKYH.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SQZMQXR6THWASKYH", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "SQZMQXR6THWASKYH.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SQZMQXR6THWASKYH.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17699" - }, - "appliesTo" : [ ] - }, - "SQZMQXR6THWASKYH.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SQZMQXR6THWASKYH.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SQZMQXR6THWASKYH.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SQZMQXR6THWASKYH", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "SQZMQXR6THWASKYH.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SQZMQXR6THWASKYH.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6460000000" - }, - "appliesTo" : [ ] - }, - "SQZMQXR6THWASKYH.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SQZMQXR6THWASKYH.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31548" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "XES86TS9BX33Y86Y" : { - "XES86TS9BX33Y86Y.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "XES86TS9BX33Y86Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XES86TS9BX33Y86Y.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "XES86TS9BX33Y86Y.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "19.2270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XES86TS9BX33Y86Y.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XES86TS9BX33Y86Y", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "XES86TS9BX33Y86Y.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XES86TS9BX33Y86Y.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "136601" - }, - "appliesTo" : [ ] - }, - "XES86TS9BX33Y86Y.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XES86TS9BX33Y86Y.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XES86TS9BX33Y86Y.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XES86TS9BX33Y86Y", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "XES86TS9BX33Y86Y.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XES86TS9BX33Y86Y.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "243708" - }, - "appliesTo" : [ ] - }, - "XES86TS9BX33Y86Y.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XES86TS9BX33Y86Y.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XES86TS9BX33Y86Y.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "XES86TS9BX33Y86Y", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "XES86TS9BX33Y86Y.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "XES86TS9BX33Y86Y.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.6460000000" - }, - "appliesTo" : [ ] - }, - "XES86TS9BX33Y86Y.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "XES86TS9BX33Y86Y.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "174665" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XES86TS9BX33Y86Y.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XES86TS9BX33Y86Y", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "XES86TS9BX33Y86Y.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XES86TS9BX33Y86Y.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "129632" - }, - "appliesTo" : [ ] - }, - "XES86TS9BX33Y86Y.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XES86TS9BX33Y86Y.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XES86TS9BX33Y86Y.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "XES86TS9BX33Y86Y", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "XES86TS9BX33Y86Y.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "XES86TS9BX33Y86Y.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.3560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XES86TS9BX33Y86Y.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "XES86TS9BX33Y86Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XES86TS9BX33Y86Y.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "XES86TS9BX33Y86Y.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "80202" - }, - "appliesTo" : [ ] - }, - "XES86TS9BX33Y86Y.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "XES86TS9BX33Y86Y.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.1560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XES86TS9BX33Y86Y.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XES86TS9BX33Y86Y", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "XES86TS9BX33Y86Y.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XES86TS9BX33Y86Y.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.7080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XES86TS9BX33Y86Y.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XES86TS9BX33Y86Y", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "XES86TS9BX33Y86Y.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XES86TS9BX33Y86Y.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "69695" - }, - "appliesTo" : [ ] - }, - "XES86TS9BX33Y86Y.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XES86TS9BX33Y86Y.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.9560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XES86TS9BX33Y86Y.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "XES86TS9BX33Y86Y", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "XES86TS9BX33Y86Y.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "XES86TS9BX33Y86Y.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.6550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XES86TS9BX33Y86Y.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "XES86TS9BX33Y86Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XES86TS9BX33Y86Y.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "XES86TS9BX33Y86Y.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "157197" - }, - "appliesTo" : [ ] - }, - "XES86TS9BX33Y86Y.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "XES86TS9BX33Y86Y.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XES86TS9BX33Y86Y.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "XES86TS9BX33Y86Y", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "XES86TS9BX33Y86Y.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "XES86TS9BX33Y86Y.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "342344" - }, - "appliesTo" : [ ] - }, - "XES86TS9BX33Y86Y.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "XES86TS9BX33Y86Y.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "XVCPRU82RU77VTVY" : { - "XVCPRU82RU77VTVY.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XVCPRU82RU77VTVY", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XVCPRU82RU77VTVY.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XVCPRU82RU77VTVY.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31130" - }, - "appliesTo" : [ ] - }, - "XVCPRU82RU77VTVY.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XVCPRU82RU77VTVY.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XVCPRU82RU77VTVY.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XVCPRU82RU77VTVY", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XVCPRU82RU77VTVY.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XVCPRU82RU77VTVY.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "61945" - }, - "appliesTo" : [ ] - }, - "XVCPRU82RU77VTVY.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XVCPRU82RU77VTVY.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XVCPRU82RU77VTVY.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "XVCPRU82RU77VTVY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XVCPRU82RU77VTVY.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "XVCPRU82RU77VTVY.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "64256" - }, - "appliesTo" : [ ] - }, - "XVCPRU82RU77VTVY.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "XVCPRU82RU77VTVY.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XVCPRU82RU77VTVY.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "XVCPRU82RU77VTVY", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XVCPRU82RU77VTVY.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "XVCPRU82RU77VTVY.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.8420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XVCPRU82RU77VTVY.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XVCPRU82RU77VTVY", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XVCPRU82RU77VTVY.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XVCPRU82RU77VTVY.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.1970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XVCPRU82RU77VTVY.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XVCPRU82RU77VTVY", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XVCPRU82RU77VTVY.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XVCPRU82RU77VTVY.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "85988" - }, - "appliesTo" : [ ] - }, - "XVCPRU82RU77VTVY.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XVCPRU82RU77VTVY.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XVCPRU82RU77VTVY.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "XVCPRU82RU77VTVY", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XVCPRU82RU77VTVY.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "XVCPRU82RU77VTVY.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "176089" - }, - "appliesTo" : [ ] - }, - "XVCPRU82RU77VTVY.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "XVCPRU82RU77VTVY.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XVCPRU82RU77VTVY.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "XVCPRU82RU77VTVY", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XVCPRU82RU77VTVY.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "XVCPRU82RU77VTVY.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.6430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XVCPRU82RU77VTVY.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XVCPRU82RU77VTVY", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XVCPRU82RU77VTVY.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XVCPRU82RU77VTVY.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "170034" - }, - "appliesTo" : [ ] - }, - "XVCPRU82RU77VTVY.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XVCPRU82RU77VTVY.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XVCPRU82RU77VTVY.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "XVCPRU82RU77VTVY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XVCPRU82RU77VTVY.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "XVCPRU82RU77VTVY.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XVCPRU82RU77VTVY.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "XVCPRU82RU77VTVY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XVCPRU82RU77VTVY.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "XVCPRU82RU77VTVY.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32309" - }, - "appliesTo" : [ ] - }, - "XVCPRU82RU77VTVY.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "XVCPRU82RU77VTVY.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XVCPRU82RU77VTVY.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "XVCPRU82RU77VTVY", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XVCPRU82RU77VTVY.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "XVCPRU82RU77VTVY.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3640000000" - }, - "appliesTo" : [ ] - }, - "XVCPRU82RU77VTVY.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "XVCPRU82RU77VTVY.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "88417" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "UY23MW6DPAKU4KJ9" : { - "UY23MW6DPAKU4KJ9.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "UY23MW6DPAKU4KJ9", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "UY23MW6DPAKU4KJ9.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "UY23MW6DPAKU4KJ9.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3058" - }, - "appliesTo" : [ ] - }, - "UY23MW6DPAKU4KJ9.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "UY23MW6DPAKU4KJ9.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1164000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "UY23MW6DPAKU4KJ9.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "UY23MW6DPAKU4KJ9", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "UY23MW6DPAKU4KJ9.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "UY23MW6DPAKU4KJ9.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2464000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "UY23MW6DPAKU4KJ9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "UY23MW6DPAKU4KJ9", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "UY23MW6DPAKU4KJ9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "UY23MW6DPAKU4KJ9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5297" - }, - "appliesTo" : [ ] - }, - "UY23MW6DPAKU4KJ9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "UY23MW6DPAKU4KJ9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "UY23MW6DPAKU4KJ9.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "UY23MW6DPAKU4KJ9", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "UY23MW6DPAKU4KJ9.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "UY23MW6DPAKU4KJ9.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2224000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "UY23MW6DPAKU4KJ9.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "UY23MW6DPAKU4KJ9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UY23MW6DPAKU4KJ9.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "UY23MW6DPAKU4KJ9.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2705" - }, - "appliesTo" : [ ] - }, - "UY23MW6DPAKU4KJ9.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "UY23MW6DPAKU4KJ9.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "UY23MW6DPAKU4KJ9.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "UY23MW6DPAKU4KJ9", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "UY23MW6DPAKU4KJ9.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "UY23MW6DPAKU4KJ9.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6027" - }, - "appliesTo" : [ ] - }, - "UY23MW6DPAKU4KJ9.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "UY23MW6DPAKU4KJ9.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "UY23MW6DPAKU4KJ9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "UY23MW6DPAKU4KJ9", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "UY23MW6DPAKU4KJ9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "UY23MW6DPAKU4KJ9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1405000000" - }, - "appliesTo" : [ ] - }, - "UY23MW6DPAKU4KJ9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "UY23MW6DPAKU4KJ9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1231" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "UY23MW6DPAKU4KJ9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "UY23MW6DPAKU4KJ9", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "UY23MW6DPAKU4KJ9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "UY23MW6DPAKU4KJ9.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "UY23MW6DPAKU4KJ9.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "UY23MW6DPAKU4KJ9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UY23MW6DPAKU4KJ9.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "UY23MW6DPAKU4KJ9.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3265000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "UY23MW6DPAKU4KJ9.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "UY23MW6DPAKU4KJ9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UY23MW6DPAKU4KJ9.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "UY23MW6DPAKU4KJ9.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1569000000" - }, - "appliesTo" : [ ] - }, - "UY23MW6DPAKU4KJ9.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "UY23MW6DPAKU4KJ9.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1375" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "UY23MW6DPAKU4KJ9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "UY23MW6DPAKU4KJ9", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "UY23MW6DPAKU4KJ9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "UY23MW6DPAKU4KJ9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2423" - }, - "appliesTo" : [ ] - }, - "UY23MW6DPAKU4KJ9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "UY23MW6DPAKU4KJ9.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "UY23MW6DPAKU4KJ9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "UY23MW6DPAKU4KJ9", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "UY23MW6DPAKU4KJ9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "UY23MW6DPAKU4KJ9.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1052000000" - }, - "appliesTo" : [ ] - }, - "UY23MW6DPAKU4KJ9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "UY23MW6DPAKU4KJ9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2766" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "PFVG5HVRU3HK5C4R" : { - "PFVG5HVRU3HK5C4R.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "PFVG5HVRU3HK5C4R", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PFVG5HVRU3HK5C4R.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "PFVG5HVRU3HK5C4R.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "PFVG5HVRU3HK5C4R.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "PFVG5HVRU3HK5C4R.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2030" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PFVG5HVRU3HK5C4R.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "PFVG5HVRU3HK5C4R", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PFVG5HVRU3HK5C4R.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "PFVG5HVRU3HK5C4R.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1034" - }, - "appliesTo" : [ ] - }, - "PFVG5HVRU3HK5C4R.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "PFVG5HVRU3HK5C4R.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PFVG5HVRU3HK5C4R.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "PFVG5HVRU3HK5C4R", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "PFVG5HVRU3HK5C4R.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "PFVG5HVRU3HK5C4R.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "945" - }, - "appliesTo" : [ ] - }, - "PFVG5HVRU3HK5C4R.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "PFVG5HVRU3HK5C4R.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PFVG5HVRU3HK5C4R.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "PFVG5HVRU3HK5C4R", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PFVG5HVRU3HK5C4R.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "PFVG5HVRU3HK5C4R.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "PFVG5HVRU3HK5C4R.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "PFVG5HVRU3HK5C4R", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PFVG5HVRU3HK5C4R.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "PFVG5HVRU3HK5C4R.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "PFVG5HVRU3HK5C4R.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "PFVG5HVRU3HK5C4R", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "PFVG5HVRU3HK5C4R.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "PFVG5HVRU3HK5C4R.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1808" - }, - "appliesTo" : [ ] - }, - "PFVG5HVRU3HK5C4R.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "PFVG5HVRU3HK5C4R.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PFVG5HVRU3HK5C4R.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "PFVG5HVRU3HK5C4R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PFVG5HVRU3HK5C4R.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "PFVG5HVRU3HK5C4R.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "508" - }, - "appliesTo" : [ ] - }, - "PFVG5HVRU3HK5C4R.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "PFVG5HVRU3HK5C4R.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PFVG5HVRU3HK5C4R.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "PFVG5HVRU3HK5C4R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PFVG5HVRU3HK5C4R.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "PFVG5HVRU3HK5C4R.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "PFVG5HVRU3HK5C4R.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "PFVG5HVRU3HK5C4R", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "PFVG5HVRU3HK5C4R.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "PFVG5HVRU3HK5C4R.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "857" - }, - "appliesTo" : [ ] - }, - "PFVG5HVRU3HK5C4R.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "PFVG5HVRU3HK5C4R.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PFVG5HVRU3HK5C4R.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "PFVG5HVRU3HK5C4R", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PFVG5HVRU3HK5C4R.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "PFVG5HVRU3HK5C4R.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "PFVG5HVRU3HK5C4R.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "PFVG5HVRU3HK5C4R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PFVG5HVRU3HK5C4R.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "PFVG5HVRU3HK5C4R.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "PFVG5HVRU3HK5C4R.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "PFVG5HVRU3HK5C4R.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "942" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PFVG5HVRU3HK5C4R.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "PFVG5HVRU3HK5C4R", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "PFVG5HVRU3HK5C4R.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "PFVG5HVRU3HK5C4R.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "465" - }, - "appliesTo" : [ ] - }, - "PFVG5HVRU3HK5C4R.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "PFVG5HVRU3HK5C4R.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "47GP959QAF69YPG5" : { - "47GP959QAF69YPG5.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "47GP959QAF69YPG5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "47GP959QAF69YPG5.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "47GP959QAF69YPG5.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0679000000" - }, - "appliesTo" : [ ] - }, - "47GP959QAF69YPG5.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "47GP959QAF69YPG5.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "594" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "47GP959QAF69YPG5.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "47GP959QAF69YPG5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "47GP959QAF69YPG5.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "47GP959QAF69YPG5.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1425000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "47GP959QAF69YPG5.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "47GP959QAF69YPG5", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "47GP959QAF69YPG5.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "47GP959QAF69YPG5.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1013" - }, - "appliesTo" : [ ] - }, - "47GP959QAF69YPG5.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "47GP959QAF69YPG5.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "47GP959QAF69YPG5.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "47GP959QAF69YPG5", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "47GP959QAF69YPG5.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "47GP959QAF69YPG5.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1051" - }, - "appliesTo" : [ ] - }, - "47GP959QAF69YPG5.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "47GP959QAF69YPG5.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "47GP959QAF69YPG5.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "47GP959QAF69YPG5", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "47GP959QAF69YPG5.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "47GP959QAF69YPG5.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "47GP959QAF69YPG5.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "47GP959QAF69YPG5.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1976" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "47GP959QAF69YPG5.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "47GP959QAF69YPG5", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "47GP959QAF69YPG5.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "47GP959QAF69YPG5.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1209" - }, - "appliesTo" : [ ] - }, - "47GP959QAF69YPG5.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "47GP959QAF69YPG5.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "47GP959QAF69YPG5.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "47GP959QAF69YPG5", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "47GP959QAF69YPG5.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "47GP959QAF69YPG5.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0864000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "47GP959QAF69YPG5.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "47GP959QAF69YPG5", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "47GP959QAF69YPG5.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "47GP959QAF69YPG5.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0994000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "47GP959QAF69YPG5.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "47GP959QAF69YPG5", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "47GP959QAF69YPG5.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "47GP959QAF69YPG5.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "517" - }, - "appliesTo" : [ ] - }, - "47GP959QAF69YPG5.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "47GP959QAF69YPG5.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "47GP959QAF69YPG5.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "47GP959QAF69YPG5", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "47GP959QAF69YPG5.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "47GP959QAF69YPG5.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1239000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "47GP959QAF69YPG5.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "47GP959QAF69YPG5", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "47GP959QAF69YPG5.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "47GP959QAF69YPG5.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "47GP959QAF69YPG5.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "47GP959QAF69YPG5.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2369" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "47GP959QAF69YPG5.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "47GP959QAF69YPG5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "47GP959QAF69YPG5.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "47GP959QAF69YPG5.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1165" - }, - "appliesTo" : [ ] - }, - "47GP959QAF69YPG5.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "47GP959QAF69YPG5.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "PCMEF8PUJ2K4JEB5" : { - "PCMEF8PUJ2K4JEB5.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "PCMEF8PUJ2K4JEB5", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "PCMEF8PUJ2K4JEB5.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "PCMEF8PUJ2K4JEB5.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4940000000" - }, - "appliesTo" : [ ] - }, - "PCMEF8PUJ2K4JEB5.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "PCMEF8PUJ2K4JEB5.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5466" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PCMEF8PUJ2K4JEB5.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "PCMEF8PUJ2K4JEB5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "PCMEF8PUJ2K4JEB5.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "PCMEF8PUJ2K4JEB5.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7999" - }, - "appliesTo" : [ ] - }, - "PCMEF8PUJ2K4JEB5.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "PCMEF8PUJ2K4JEB5.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PCMEF8PUJ2K4JEB5.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "PCMEF8PUJ2K4JEB5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "PCMEF8PUJ2K4JEB5.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "PCMEF8PUJ2K4JEB5.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "PCMEF8PUJ2K4JEB5.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "PCMEF8PUJ2K4JEB5.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17339" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PCMEF8PUJ2K4JEB5.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "PCMEF8PUJ2K4JEB5", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "PCMEF8PUJ2K4JEB5.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "PCMEF8PUJ2K4JEB5.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "PCMEF8PUJ2K4JEB5.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "PCMEF8PUJ2K4JEB5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "PCMEF8PUJ2K4JEB5.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "PCMEF8PUJ2K4JEB5.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3489" - }, - "appliesTo" : [ ] - }, - "PCMEF8PUJ2K4JEB5.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "PCMEF8PUJ2K4JEB5.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "4U7JAK7UHS4DSAR8" : { - "4U7JAK7UHS4DSAR8.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "4U7JAK7UHS4DSAR8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4U7JAK7UHS4DSAR8.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "4U7JAK7UHS4DSAR8.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "4U7JAK7UHS4DSAR8.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "4U7JAK7UHS4DSAR8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4U7JAK7UHS4DSAR8.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "4U7JAK7UHS4DSAR8.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4980000000" - }, - "appliesTo" : [ ] - }, - "4U7JAK7UHS4DSAR8.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "4U7JAK7UHS4DSAR8.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3224" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4U7JAK7UHS4DSAR8.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "4U7JAK7UHS4DSAR8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4U7JAK7UHS4DSAR8.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "4U7JAK7UHS4DSAR8.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9028000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "4U7JAK7UHS4DSAR8.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "4U7JAK7UHS4DSAR8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4U7JAK7UHS4DSAR8.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "4U7JAK7UHS4DSAR8.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6566000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "4U7JAK7UHS4DSAR8.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "4U7JAK7UHS4DSAR8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4U7JAK7UHS4DSAR8.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "4U7JAK7UHS4DSAR8.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6407" - }, - "appliesTo" : [ ] - }, - "4U7JAK7UHS4DSAR8.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "4U7JAK7UHS4DSAR8.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3738000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4U7JAK7UHS4DSAR8.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "4U7JAK7UHS4DSAR8", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "4U7JAK7UHS4DSAR8.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "4U7JAK7UHS4DSAR8.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5592" - }, - "appliesTo" : [ ] - }, - "4U7JAK7UHS4DSAR8.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "4U7JAK7UHS4DSAR8.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4U7JAK7UHS4DSAR8.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "4U7JAK7UHS4DSAR8", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "4U7JAK7UHS4DSAR8.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "4U7JAK7UHS4DSAR8.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13930" - }, - "appliesTo" : [ ] - }, - "4U7JAK7UHS4DSAR8.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "4U7JAK7UHS4DSAR8.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4U7JAK7UHS4DSAR8.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "4U7JAK7UHS4DSAR8", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "4U7JAK7UHS4DSAR8.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "4U7JAK7UHS4DSAR8.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "4U7JAK7UHS4DSAR8.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "4U7JAK7UHS4DSAR8.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6619" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4U7JAK7UHS4DSAR8.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "4U7JAK7UHS4DSAR8", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "4U7JAK7UHS4DSAR8.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "4U7JAK7UHS4DSAR8.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2796" - }, - "appliesTo" : [ ] - }, - "4U7JAK7UHS4DSAR8.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "4U7JAK7UHS4DSAR8.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4U7JAK7UHS4DSAR8.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "4U7JAK7UHS4DSAR8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4U7JAK7UHS4DSAR8.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "4U7JAK7UHS4DSAR8.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "4U7JAK7UHS4DSAR8.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "4U7JAK7UHS4DSAR8.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7457" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4U7JAK7UHS4DSAR8.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "4U7JAK7UHS4DSAR8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4U7JAK7UHS4DSAR8.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "4U7JAK7UHS4DSAR8.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15974" - }, - "appliesTo" : [ ] - }, - "4U7JAK7UHS4DSAR8.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "4U7JAK7UHS4DSAR8.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4U7JAK7UHS4DSAR8.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "4U7JAK7UHS4DSAR8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4U7JAK7UHS4DSAR8.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "4U7JAK7UHS4DSAR8.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5879000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "XC5ZWJZS84Q3XZTZ" : { - "XC5ZWJZS84Q3XZTZ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XC5ZWJZS84Q3XZTZ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XC5ZWJZS84Q3XZTZ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XC5ZWJZS84Q3XZTZ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9859000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XC5ZWJZS84Q3XZTZ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XC5ZWJZS84Q3XZTZ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XC5ZWJZS84Q3XZTZ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XC5ZWJZS84Q3XZTZ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7776" - }, - "appliesTo" : [ ] - }, - "XC5ZWJZS84Q3XZTZ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XC5ZWJZS84Q3XZTZ.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4259000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XC5ZWJZS84Q3XZTZ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XC5ZWJZS84Q3XZTZ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XC5ZWJZS84Q3XZTZ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XC5ZWJZS84Q3XZTZ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18035" - }, - "appliesTo" : [ ] - }, - "XC5ZWJZS84Q3XZTZ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XC5ZWJZS84Q3XZTZ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XC5ZWJZS84Q3XZTZ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "XC5ZWJZS84Q3XZTZ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XC5ZWJZS84Q3XZTZ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "XC5ZWJZS84Q3XZTZ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XC5ZWJZS84Q3XZTZ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "XC5ZWJZS84Q3XZTZ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XC5ZWJZS84Q3XZTZ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "XC5ZWJZS84Q3XZTZ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8942" - }, - "appliesTo" : [ ] - }, - "XC5ZWJZS84Q3XZTZ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "XC5ZWJZS84Q3XZTZ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4703000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XC5ZWJZS84Q3XZTZ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XC5ZWJZS84Q3XZTZ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XC5ZWJZS84Q3XZTZ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XC5ZWJZS84Q3XZTZ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3570" - }, - "appliesTo" : [ ] - }, - "XC5ZWJZS84Q3XZTZ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XC5ZWJZS84Q3XZTZ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5376000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XC5ZWJZS84Q3XZTZ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XC5ZWJZS84Q3XZTZ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XC5ZWJZS84Q3XZTZ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XC5ZWJZS84Q3XZTZ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8136" - }, - "appliesTo" : [ ] - }, - "XC5ZWJZS84Q3XZTZ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XC5ZWJZS84Q3XZTZ.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XC5ZWJZS84Q3XZTZ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "XC5ZWJZS84Q3XZTZ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XC5ZWJZS84Q3XZTZ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "XC5ZWJZS84Q3XZTZ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7691000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XC5ZWJZS84Q3XZTZ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "XC5ZWJZS84Q3XZTZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XC5ZWJZS84Q3XZTZ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "XC5ZWJZS84Q3XZTZ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9186" - }, - "appliesTo" : [ ] - }, - "XC5ZWJZS84Q3XZTZ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "XC5ZWJZS84Q3XZTZ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XC5ZWJZS84Q3XZTZ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "XC5ZWJZS84Q3XZTZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XC5ZWJZS84Q3XZTZ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "XC5ZWJZS84Q3XZTZ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1142000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XC5ZWJZS84Q3XZTZ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "XC5ZWJZS84Q3XZTZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XC5ZWJZS84Q3XZTZ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "XC5ZWJZS84Q3XZTZ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5987000000" - }, - "appliesTo" : [ ] - }, - "XC5ZWJZS84Q3XZTZ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "XC5ZWJZS84Q3XZTZ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4106" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XC5ZWJZS84Q3XZTZ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "XC5ZWJZS84Q3XZTZ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XC5ZWJZS84Q3XZTZ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "XC5ZWJZS84Q3XZTZ.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "XC5ZWJZS84Q3XZTZ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "XC5ZWJZS84Q3XZTZ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20943" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "TB4MYGC7MSS5DCKM" : { - "TB4MYGC7MSS5DCKM.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TB4MYGC7MSS5DCKM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TB4MYGC7MSS5DCKM.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TB4MYGC7MSS5DCKM.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2646" - }, - "appliesTo" : [ ] - }, - "TB4MYGC7MSS5DCKM.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TB4MYGC7MSS5DCKM.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TB4MYGC7MSS5DCKM.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TB4MYGC7MSS5DCKM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TB4MYGC7MSS5DCKM.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TB4MYGC7MSS5DCKM.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5250" - }, - "appliesTo" : [ ] - }, - "TB4MYGC7MSS5DCKM.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TB4MYGC7MSS5DCKM.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TB4MYGC7MSS5DCKM.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "TB4MYGC7MSS5DCKM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TB4MYGC7MSS5DCKM.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "TB4MYGC7MSS5DCKM.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5408000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TB4MYGC7MSS5DCKM.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "TB4MYGC7MSS5DCKM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TB4MYGC7MSS5DCKM.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "TB4MYGC7MSS5DCKM.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5554" - }, - "appliesTo" : [ ] - }, - "TB4MYGC7MSS5DCKM.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "TB4MYGC7MSS5DCKM.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TB4MYGC7MSS5DCKM.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "TB4MYGC7MSS5DCKM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TB4MYGC7MSS5DCKM.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "TB4MYGC7MSS5DCKM.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TB4MYGC7MSS5DCKM.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "TB4MYGC7MSS5DCKM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TB4MYGC7MSS5DCKM.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "TB4MYGC7MSS5DCKM.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3197000000" - }, - "appliesTo" : [ ] - }, - "TB4MYGC7MSS5DCKM.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "TB4MYGC7MSS5DCKM.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2801" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TB4MYGC7MSS5DCKM.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "TB4MYGC7MSS5DCKM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TB4MYGC7MSS5DCKM.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "TB4MYGC7MSS5DCKM.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TB4MYGC7MSS5DCKM.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "TB4MYGC7MSS5DCKM.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14410" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TB4MYGC7MSS5DCKM.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TB4MYGC7MSS5DCKM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TB4MYGC7MSS5DCKM.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TB4MYGC7MSS5DCKM.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6158000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TB4MYGC7MSS5DCKM.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TB4MYGC7MSS5DCKM", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "TB4MYGC7MSS5DCKM.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TB4MYGC7MSS5DCKM.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6842" - }, - "appliesTo" : [ ] - }, - "TB4MYGC7MSS5DCKM.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TB4MYGC7MSS5DCKM.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TB4MYGC7MSS5DCKM.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "TB4MYGC7MSS5DCKM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TB4MYGC7MSS5DCKM.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "TB4MYGC7MSS5DCKM.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5667000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TB4MYGC7MSS5DCKM.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TB4MYGC7MSS5DCKM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TB4MYGC7MSS5DCKM.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TB4MYGC7MSS5DCKM.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12863" - }, - "appliesTo" : [ ] - }, - "TB4MYGC7MSS5DCKM.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TB4MYGC7MSS5DCKM.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TB4MYGC7MSS5DCKM.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "TB4MYGC7MSS5DCKM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TB4MYGC7MSS5DCKM.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "TB4MYGC7MSS5DCKM.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7253" - }, - "appliesTo" : [ ] - }, - "TB4MYGC7MSS5DCKM.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "TB4MYGC7MSS5DCKM.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "XMCTY6J8BEK2CTG2" : { - "XMCTY6J8BEK2CTG2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XMCTY6J8BEK2CTG2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XMCTY6J8BEK2CTG2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XMCTY6J8BEK2CTG2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8529" - }, - "appliesTo" : [ ] - }, - "XMCTY6J8BEK2CTG2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XMCTY6J8BEK2CTG2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XMCTY6J8BEK2CTG2.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "XMCTY6J8BEK2CTG2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "XMCTY6J8BEK2CTG2.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "XMCTY6J8BEK2CTG2.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XMCTY6J8BEK2CTG2.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "XMCTY6J8BEK2CTG2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "XMCTY6J8BEK2CTG2.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "XMCTY6J8BEK2CTG2.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11498" - }, - "appliesTo" : [ ] - }, - "XMCTY6J8BEK2CTG2.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "XMCTY6J8BEK2CTG2.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XMCTY6J8BEK2CTG2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XMCTY6J8BEK2CTG2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "XMCTY6J8BEK2CTG2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XMCTY6J8BEK2CTG2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2740" - }, - "appliesTo" : [ ] - }, - "XMCTY6J8BEK2CTG2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XMCTY6J8BEK2CTG2.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XMCTY6J8BEK2CTG2.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "XMCTY6J8BEK2CTG2", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "XMCTY6J8BEK2CTG2.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "XMCTY6J8BEK2CTG2.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4914" - }, - "appliesTo" : [ ] - }, - "XMCTY6J8BEK2CTG2.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "XMCTY6J8BEK2CTG2.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XMCTY6J8BEK2CTG2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XMCTY6J8BEK2CTG2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XMCTY6J8BEK2CTG2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XMCTY6J8BEK2CTG2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1820" - }, - "appliesTo" : [ ] - }, - "XMCTY6J8BEK2CTG2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XMCTY6J8BEK2CTG2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XMCTY6J8BEK2CTG2.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "XMCTY6J8BEK2CTG2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XMCTY6J8BEK2CTG2.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "XMCTY6J8BEK2CTG2.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "XMCTY6J8BEK2CTG2.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "XMCTY6J8BEK2CTG2.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5194" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XMCTY6J8BEK2CTG2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XMCTY6J8BEK2CTG2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XMCTY6J8BEK2CTG2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XMCTY6J8BEK2CTG2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4144" - }, - "appliesTo" : [ ] - }, - "XMCTY6J8BEK2CTG2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XMCTY6J8BEK2CTG2.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XMCTY6J8BEK2CTG2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XMCTY6J8BEK2CTG2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XMCTY6J8BEK2CTG2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XMCTY6J8BEK2CTG2.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XMCTY6J8BEK2CTG2.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "XMCTY6J8BEK2CTG2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XMCTY6J8BEK2CTG2.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "XMCTY6J8BEK2CTG2.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2633" - }, - "appliesTo" : [ ] - }, - "XMCTY6J8BEK2CTG2.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "XMCTY6J8BEK2CTG2.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XMCTY6J8BEK2CTG2.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "XMCTY6J8BEK2CTG2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XMCTY6J8BEK2CTG2.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "XMCTY6J8BEK2CTG2.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "VEYRGRFZB8WFUBH3" : { - "VEYRGRFZB8WFUBH3.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "VEYRGRFZB8WFUBH3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VEYRGRFZB8WFUBH3.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "VEYRGRFZB8WFUBH3.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5524" - }, - "appliesTo" : [ ] - }, - "VEYRGRFZB8WFUBH3.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "VEYRGRFZB8WFUBH3.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VEYRGRFZB8WFUBH3.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "VEYRGRFZB8WFUBH3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VEYRGRFZB8WFUBH3.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "VEYRGRFZB8WFUBH3.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4530" - }, - "appliesTo" : [ ] - }, - "VEYRGRFZB8WFUBH3.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "VEYRGRFZB8WFUBH3.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VEYRGRFZB8WFUBH3.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "VEYRGRFZB8WFUBH3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VEYRGRFZB8WFUBH3.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "VEYRGRFZB8WFUBH3.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VEYRGRFZB8WFUBH3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "VEYRGRFZB8WFUBH3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VEYRGRFZB8WFUBH3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "VEYRGRFZB8WFUBH3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3540000000" - }, - "appliesTo" : [ ] - }, - "VEYRGRFZB8WFUBH3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "VEYRGRFZB8WFUBH3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1966" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VEYRGRFZB8WFUBH3.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "VEYRGRFZB8WFUBH3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VEYRGRFZB8WFUBH3.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "VEYRGRFZB8WFUBH3.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12317" - }, - "appliesTo" : [ ] - }, - "VEYRGRFZB8WFUBH3.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "VEYRGRFZB8WFUBH3.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VEYRGRFZB8WFUBH3.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "VEYRGRFZB8WFUBH3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VEYRGRFZB8WFUBH3.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "VEYRGRFZB8WFUBH3.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VEYRGRFZB8WFUBH3.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "VEYRGRFZB8WFUBH3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VEYRGRFZB8WFUBH3.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "VEYRGRFZB8WFUBH3.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VEYRGRFZB8WFUBH3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "VEYRGRFZB8WFUBH3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VEYRGRFZB8WFUBH3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "VEYRGRFZB8WFUBH3.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VEYRGRFZB8WFUBH3.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "VEYRGRFZB8WFUBH3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VEYRGRFZB8WFUBH3.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "VEYRGRFZB8WFUBH3.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2234" - }, - "appliesTo" : [ ] - }, - "VEYRGRFZB8WFUBH3.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "VEYRGRFZB8WFUBH3.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VEYRGRFZB8WFUBH3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "VEYRGRFZB8WFUBH3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VEYRGRFZB8WFUBH3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "VEYRGRFZB8WFUBH3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4003" - }, - "appliesTo" : [ ] - }, - "VEYRGRFZB8WFUBH3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "VEYRGRFZB8WFUBH3.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VEYRGRFZB8WFUBH3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "VEYRGRFZB8WFUBH3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VEYRGRFZB8WFUBH3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "VEYRGRFZB8WFUBH3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11006" - }, - "appliesTo" : [ ] - }, - "VEYRGRFZB8WFUBH3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "VEYRGRFZB8WFUBH3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VEYRGRFZB8WFUBH3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "VEYRGRFZB8WFUBH3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VEYRGRFZB8WFUBH3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "VEYRGRFZB8WFUBH3.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "VEYRGRFZB8WFUBH3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "VEYRGRFZB8WFUBH3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4999" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "RBTTMD5AP4CP4TEB" : { - "RBTTMD5AP4CP4TEB.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "RBTTMD5AP4CP4TEB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RBTTMD5AP4CP4TEB.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "RBTTMD5AP4CP4TEB.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RBTTMD5AP4CP4TEB.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "RBTTMD5AP4CP4TEB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RBTTMD5AP4CP4TEB.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "RBTTMD5AP4CP4TEB.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0810000000" - }, - "appliesTo" : [ ] - }, - "RBTTMD5AP4CP4TEB.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "RBTTMD5AP4CP4TEB.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18227" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RBTTMD5AP4CP4TEB.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "RBTTMD5AP4CP4TEB", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "RBTTMD5AP4CP4TEB.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "RBTTMD5AP4CP4TEB.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "104454" - }, - "appliesTo" : [ ] - }, - "RBTTMD5AP4CP4TEB.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "RBTTMD5AP4CP4TEB.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RBTTMD5AP4CP4TEB.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "RBTTMD5AP4CP4TEB", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "RBTTMD5AP4CP4TEB.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "RBTTMD5AP4CP4TEB.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17764" - }, - "appliesTo" : [ ] - }, - "RBTTMD5AP4CP4TEB.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "RBTTMD5AP4CP4TEB.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RBTTMD5AP4CP4TEB.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "RBTTMD5AP4CP4TEB", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "RBTTMD5AP4CP4TEB.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "RBTTMD5AP4CP4TEB.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.1730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RBTTMD5AP4CP4TEB.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "RBTTMD5AP4CP4TEB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RBTTMD5AP4CP4TEB.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "RBTTMD5AP4CP4TEB.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "36316" - }, - "appliesTo" : [ ] - }, - "RBTTMD5AP4CP4TEB.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "RBTTMD5AP4CP4TEB.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RBTTMD5AP4CP4TEB.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "RBTTMD5AP4CP4TEB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RBTTMD5AP4CP4TEB.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "RBTTMD5AP4CP4TEB.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "98901" - }, - "appliesTo" : [ ] - }, - "RBTTMD5AP4CP4TEB.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "RBTTMD5AP4CP4TEB.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RBTTMD5AP4CP4TEB.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "RBTTMD5AP4CP4TEB", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "RBTTMD5AP4CP4TEB.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "RBTTMD5AP4CP4TEB.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.0920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RBTTMD5AP4CP4TEB.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "RBTTMD5AP4CP4TEB", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "RBTTMD5AP4CP4TEB.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "RBTTMD5AP4CP4TEB.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "RBTTMD5AP4CP4TEB.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "RBTTMD5AP4CP4TEB.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35408" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RBTTMD5AP4CP4TEB.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "RBTTMD5AP4CP4TEB", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "RBTTMD5AP4CP4TEB.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "RBTTMD5AP4CP4TEB.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9940000000" - }, - "appliesTo" : [ ] - }, - "RBTTMD5AP4CP4TEB.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "RBTTMD5AP4CP4TEB.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "52389" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RBTTMD5AP4CP4TEB.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "RBTTMD5AP4CP4TEB", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "RBTTMD5AP4CP4TEB.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "RBTTMD5AP4CP4TEB.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "49782" - }, - "appliesTo" : [ ] - }, - "RBTTMD5AP4CP4TEB.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "RBTTMD5AP4CP4TEB.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "YPSGG4AGGKWCT4F5" : { - "YPSGG4AGGKWCT4F5.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YPSGG4AGGKWCT4F5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YPSGG4AGGKWCT4F5.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YPSGG4AGGKWCT4F5.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3262" - }, - "appliesTo" : [ ] - }, - "YPSGG4AGGKWCT4F5.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YPSGG4AGGKWCT4F5.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YPSGG4AGGKWCT4F5.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YPSGG4AGGKWCT4F5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YPSGG4AGGKWCT4F5.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YPSGG4AGGKWCT4F5.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6132" - }, - "appliesTo" : [ ] - }, - "YPSGG4AGGKWCT4F5.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YPSGG4AGGKWCT4F5.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YPSGG4AGGKWCT4F5.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YPSGG4AGGKWCT4F5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YPSGG4AGGKWCT4F5.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YPSGG4AGGKWCT4F5.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YPSGG4AGGKWCT4F5.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YPSGG4AGGKWCT4F5.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4202" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YPSGG4AGGKWCT4F5.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "YPSGG4AGGKWCT4F5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YPSGG4AGGKWCT4F5.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "YPSGG4AGGKWCT4F5.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YPSGG4AGGKWCT4F5.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YPSGG4AGGKWCT4F5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YPSGG4AGGKWCT4F5.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YPSGG4AGGKWCT4F5.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2144" - }, - "appliesTo" : [ ] - }, - "YPSGG4AGGKWCT4F5.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YPSGG4AGGKWCT4F5.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YPSGG4AGGKWCT4F5.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YPSGG4AGGKWCT4F5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YPSGG4AGGKWCT4F5.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YPSGG4AGGKWCT4F5.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "JN3KK3Y79A6JZJNG" : { - "JN3KK3Y79A6JZJNG.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "JN3KK3Y79A6JZJNG", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "JN3KK3Y79A6JZJNG.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "JN3KK3Y79A6JZJNG.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "JN3KK3Y79A6JZJNG.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "JN3KK3Y79A6JZJNG", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "JN3KK3Y79A6JZJNG.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "JN3KK3Y79A6JZJNG.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1356" - }, - "appliesTo" : [ ] - }, - "JN3KK3Y79A6JZJNG.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "JN3KK3Y79A6JZJNG.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "JN3KK3Y79A6JZJNG.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "JN3KK3Y79A6JZJNG", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JN3KK3Y79A6JZJNG.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "JN3KK3Y79A6JZJNG.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0360000000" - }, - "appliesTo" : [ ] - }, - "JN3KK3Y79A6JZJNG.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "JN3KK3Y79A6JZJNG.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "946" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "JN3KK3Y79A6JZJNG.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "JN3KK3Y79A6JZJNG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JN3KK3Y79A6JZJNG.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "JN3KK3Y79A6JZJNG.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "976" - }, - "appliesTo" : [ ] - }, - "JN3KK3Y79A6JZJNG.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "JN3KK3Y79A6JZJNG.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "JN3KK3Y79A6JZJNG.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "JN3KK3Y79A6JZJNG", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JN3KK3Y79A6JZJNG.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "JN3KK3Y79A6JZJNG.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "JN3KK3Y79A6JZJNG.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "JN3KK3Y79A6JZJNG.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1785" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JN3KK3Y79A6JZJNG.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "JN3KK3Y79A6JZJNG", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "JN3KK3Y79A6JZJNG.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "JN3KK3Y79A6JZJNG.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2272" - }, - "appliesTo" : [ ] - }, - "JN3KK3Y79A6JZJNG.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "JN3KK3Y79A6JZJNG.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "JN3KK3Y79A6JZJNG.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "JN3KK3Y79A6JZJNG", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JN3KK3Y79A6JZJNG.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "JN3KK3Y79A6JZJNG.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "JN3KK3Y79A6JZJNG.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "JN3KK3Y79A6JZJNG", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JN3KK3Y79A6JZJNG.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "JN3KK3Y79A6JZJNG.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "552" - }, - "appliesTo" : [ ] - }, - "JN3KK3Y79A6JZJNG.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "JN3KK3Y79A6JZJNG.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "JN3KK3Y79A6JZJNG.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "JN3KK3Y79A6JZJNG", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "JN3KK3Y79A6JZJNG.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "JN3KK3Y79A6JZJNG.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "889" - }, - "appliesTo" : [ ] - }, - "JN3KK3Y79A6JZJNG.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "JN3KK3Y79A6JZJNG.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JN3KK3Y79A6JZJNG.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "JN3KK3Y79A6JZJNG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JN3KK3Y79A6JZJNG.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "JN3KK3Y79A6JZJNG.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0530000000" - }, - "appliesTo" : [ ] - }, - "JN3KK3Y79A6JZJNG.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "JN3KK3Y79A6JZJNG.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "526" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "JN3KK3Y79A6JZJNG.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "JN3KK3Y79A6JZJNG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JN3KK3Y79A6JZJNG.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "JN3KK3Y79A6JZJNG.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "QPCQXM3E9RSBMMU9" : { - "QPCQXM3E9RSBMMU9.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "QPCQXM3E9RSBMMU9", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "QPCQXM3E9RSBMMU9.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "QPCQXM3E9RSBMMU9.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12858" - }, - "appliesTo" : [ ] - }, - "QPCQXM3E9RSBMMU9.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "QPCQXM3E9RSBMMU9.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QPCQXM3E9RSBMMU9.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "QPCQXM3E9RSBMMU9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QPCQXM3E9RSBMMU9.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "QPCQXM3E9RSBMMU9.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1988" - }, - "appliesTo" : [ ] - }, - "QPCQXM3E9RSBMMU9.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "QPCQXM3E9RSBMMU9.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QPCQXM3E9RSBMMU9.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "QPCQXM3E9RSBMMU9", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "QPCQXM3E9RSBMMU9.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "QPCQXM3E9RSBMMU9.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QPCQXM3E9RSBMMU9.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "QPCQXM3E9RSBMMU9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QPCQXM3E9RSBMMU9.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "QPCQXM3E9RSBMMU9.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5035" - }, - "appliesTo" : [ ] - }, - "QPCQXM3E9RSBMMU9.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "QPCQXM3E9RSBMMU9.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QPCQXM3E9RSBMMU9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QPCQXM3E9RSBMMU9", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "QPCQXM3E9RSBMMU9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QPCQXM3E9RSBMMU9.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QPCQXM3E9RSBMMU9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QPCQXM3E9RSBMMU9", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "QPCQXM3E9RSBMMU9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QPCQXM3E9RSBMMU9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4626" - }, - "appliesTo" : [ ] - }, - "QPCQXM3E9RSBMMU9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QPCQXM3E9RSBMMU9.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QPCQXM3E9RSBMMU9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QPCQXM3E9RSBMMU9", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "QPCQXM3E9RSBMMU9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QPCQXM3E9RSBMMU9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2261" - }, - "appliesTo" : [ ] - }, - "QPCQXM3E9RSBMMU9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QPCQXM3E9RSBMMU9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QPCQXM3E9RSBMMU9.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "QPCQXM3E9RSBMMU9", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "QPCQXM3E9RSBMMU9.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "QPCQXM3E9RSBMMU9.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6105" - }, - "appliesTo" : [ ] - }, - "QPCQXM3E9RSBMMU9.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "QPCQXM3E9RSBMMU9.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QPCQXM3E9RSBMMU9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QPCQXM3E9RSBMMU9", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "QPCQXM3E9RSBMMU9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QPCQXM3E9RSBMMU9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QPCQXM3E9RSBMMU9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QPCQXM3E9RSBMMU9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10275" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QPCQXM3E9RSBMMU9.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "QPCQXM3E9RSBMMU9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QPCQXM3E9RSBMMU9.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "QPCQXM3E9RSBMMU9.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QPCQXM3E9RSBMMU9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QPCQXM3E9RSBMMU9", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "QPCQXM3E9RSBMMU9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QPCQXM3E9RSBMMU9.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2510000000" - }, - "appliesTo" : [ ] - }, - "QPCQXM3E9RSBMMU9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QPCQXM3E9RSBMMU9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4318" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "58HUPRT96M5H8VUW" : { - "58HUPRT96M5H8VUW.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "58HUPRT96M5H8VUW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "58HUPRT96M5H8VUW.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "58HUPRT96M5H8VUW.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "58HUPRT96M5H8VUW.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "58HUPRT96M5H8VUW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "58HUPRT96M5H8VUW.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "58HUPRT96M5H8VUW.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2947" - }, - "appliesTo" : [ ] - }, - "58HUPRT96M5H8VUW.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "58HUPRT96M5H8VUW.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "58HUPRT96M5H8VUW.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "58HUPRT96M5H8VUW", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "58HUPRT96M5H8VUW.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "58HUPRT96M5H8VUW.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2562" - }, - "appliesTo" : [ ] - }, - "58HUPRT96M5H8VUW.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "58HUPRT96M5H8VUW.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "58HUPRT96M5H8VUW.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "58HUPRT96M5H8VUW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "58HUPRT96M5H8VUW.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "58HUPRT96M5H8VUW.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "58HUPRT96M5H8VUW.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "58HUPRT96M5H8VUW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "58HUPRT96M5H8VUW.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "58HUPRT96M5H8VUW.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5775" - }, - "appliesTo" : [ ] - }, - "58HUPRT96M5H8VUW.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "58HUPRT96M5H8VUW.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "58HUPRT96M5H8VUW.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "58HUPRT96M5H8VUW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "58HUPRT96M5H8VUW.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "58HUPRT96M5H8VUW.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "58HUPRT96M5H8VUW.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "58HUPRT96M5H8VUW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "58HUPRT96M5H8VUW.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "58HUPRT96M5H8VUW.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12588" - }, - "appliesTo" : [ ] - }, - "58HUPRT96M5H8VUW.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "58HUPRT96M5H8VUW.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "58HUPRT96M5H8VUW.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "58HUPRT96M5H8VUW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "58HUPRT96M5H8VUW.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "58HUPRT96M5H8VUW.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6422" - }, - "appliesTo" : [ ] - }, - "58HUPRT96M5H8VUW.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "58HUPRT96M5H8VUW.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "58HUPRT96M5H8VUW.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "58HUPRT96M5H8VUW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "58HUPRT96M5H8VUW.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "58HUPRT96M5H8VUW.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5584" - }, - "appliesTo" : [ ] - }, - "58HUPRT96M5H8VUW.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "58HUPRT96M5H8VUW.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "58HUPRT96M5H8VUW.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "58HUPRT96M5H8VUW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "58HUPRT96M5H8VUW.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "58HUPRT96M5H8VUW.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "58HUPRT96M5H8VUW.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "58HUPRT96M5H8VUW", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "58HUPRT96M5H8VUW.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "58HUPRT96M5H8VUW.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10499" - }, - "appliesTo" : [ ] - }, - "58HUPRT96M5H8VUW.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "58HUPRT96M5H8VUW.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "58HUPRT96M5H8VUW.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "58HUPRT96M5H8VUW", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "58HUPRT96M5H8VUW.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "58HUPRT96M5H8VUW.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5022" - }, - "appliesTo" : [ ] - }, - "58HUPRT96M5H8VUW.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "58HUPRT96M5H8VUW.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "F7H92E3N3TN52552" : { - "F7H92E3N3TN52552.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "F7H92E3N3TN52552", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "F7H92E3N3TN52552.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "F7H92E3N3TN52552.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "393" - }, - "appliesTo" : [ ] - }, - "F7H92E3N3TN52552.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "F7H92E3N3TN52552.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "F7H92E3N3TN52552.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "F7H92E3N3TN52552", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "F7H92E3N3TN52552.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "F7H92E3N3TN52552.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "199" - }, - "appliesTo" : [ ] - }, - "F7H92E3N3TN52552.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "F7H92E3N3TN52552.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0227000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "F7H92E3N3TN52552.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "F7H92E3N3TN52552", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "F7H92E3N3TN52552.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "F7H92E3N3TN52552.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "217" - }, - "appliesTo" : [ ] - }, - "F7H92E3N3TN52552.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "F7H92E3N3TN52552.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0247000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "F7H92E3N3TN52552.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "F7H92E3N3TN52552", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "F7H92E3N3TN52552.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "F7H92E3N3TN52552.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0511000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "F7H92E3N3TN52552.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "F7H92E3N3TN52552", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "F7H92E3N3TN52552.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "F7H92E3N3TN52552.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "F7H92E3N3TN52552.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "F7H92E3N3TN52552.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1023" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "F7H92E3N3TN52552.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "F7H92E3N3TN52552", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "F7H92E3N3TN52552.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "F7H92E3N3TN52552.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "859" - }, - "appliesTo" : [ ] - }, - "F7H92E3N3TN52552.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "F7H92E3N3TN52552.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "F7H92E3N3TN52552.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "F7H92E3N3TN52552", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "F7H92E3N3TN52552.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "F7H92E3N3TN52552.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "F7H92E3N3TN52552.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "F7H92E3N3TN52552", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "F7H92E3N3TN52552.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "F7H92E3N3TN52552.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "546" - }, - "appliesTo" : [ ] - }, - "F7H92E3N3TN52552.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "F7H92E3N3TN52552.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "F7H92E3N3TN52552.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "F7H92E3N3TN52552", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "F7H92E3N3TN52552.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "F7H92E3N3TN52552.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "F7H92E3N3TN52552.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "F7H92E3N3TN52552.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "428" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "F7H92E3N3TN52552.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "F7H92E3N3TN52552", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "F7H92E3N3TN52552.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "F7H92E3N3TN52552.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0197000000" - }, - "appliesTo" : [ ] - }, - "F7H92E3N3TN52552.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "F7H92E3N3TN52552.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "517" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "F7H92E3N3TN52552.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "F7H92E3N3TN52552", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "F7H92E3N3TN52552.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "F7H92E3N3TN52552.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0467000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "F7H92E3N3TN52552.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "F7H92E3N3TN52552", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "F7H92E3N3TN52552.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "F7H92E3N3TN52552.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0411000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "VKHDPS8VTZRT43GD" : { - "VKHDPS8VTZRT43GD.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "VKHDPS8VTZRT43GD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VKHDPS8VTZRT43GD.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "VKHDPS8VTZRT43GD.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38761" - }, - "appliesTo" : [ ] - }, - "VKHDPS8VTZRT43GD.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "VKHDPS8VTZRT43GD.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VKHDPS8VTZRT43GD.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "VKHDPS8VTZRT43GD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VKHDPS8VTZRT43GD.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "VKHDPS8VTZRT43GD.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VKHDPS8VTZRT43GD.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "VKHDPS8VTZRT43GD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VKHDPS8VTZRT43GD.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "VKHDPS8VTZRT43GD.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VKHDPS8VTZRT43GD.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "VKHDPS8VTZRT43GD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VKHDPS8VTZRT43GD.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "VKHDPS8VTZRT43GD.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VKHDPS8VTZRT43GD.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "VKHDPS8VTZRT43GD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VKHDPS8VTZRT43GD.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "VKHDPS8VTZRT43GD.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14944" - }, - "appliesTo" : [ ] - }, - "VKHDPS8VTZRT43GD.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "VKHDPS8VTZRT43GD.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VKHDPS8VTZRT43GD.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "VKHDPS8VTZRT43GD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VKHDPS8VTZRT43GD.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "VKHDPS8VTZRT43GD.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VKHDPS8VTZRT43GD.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "VKHDPS8VTZRT43GD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VKHDPS8VTZRT43GD.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "VKHDPS8VTZRT43GD.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6370000000" - }, - "appliesTo" : [ ] - }, - "VKHDPS8VTZRT43GD.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "VKHDPS8VTZRT43GD.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14341" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VKHDPS8VTZRT43GD.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "VKHDPS8VTZRT43GD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VKHDPS8VTZRT43GD.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "VKHDPS8VTZRT43GD.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "79535" - }, - "appliesTo" : [ ] - }, - "VKHDPS8VTZRT43GD.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "VKHDPS8VTZRT43GD.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VKHDPS8VTZRT43GD.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "VKHDPS8VTZRT43GD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VKHDPS8VTZRT43GD.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "VKHDPS8VTZRT43GD.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29703" - }, - "appliesTo" : [ ] - }, - "VKHDPS8VTZRT43GD.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "VKHDPS8VTZRT43GD.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VKHDPS8VTZRT43GD.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "VKHDPS8VTZRT43GD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VKHDPS8VTZRT43GD.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "VKHDPS8VTZRT43GD.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "76586" - }, - "appliesTo" : [ ] - }, - "VKHDPS8VTZRT43GD.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "VKHDPS8VTZRT43GD.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VKHDPS8VTZRT43GD.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "VKHDPS8VTZRT43GD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VKHDPS8VTZRT43GD.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "VKHDPS8VTZRT43GD.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39947" - }, - "appliesTo" : [ ] - }, - "VKHDPS8VTZRT43GD.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "VKHDPS8VTZRT43GD.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VKHDPS8VTZRT43GD.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "VKHDPS8VTZRT43GD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VKHDPS8VTZRT43GD.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "VKHDPS8VTZRT43GD.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28521" - }, - "appliesTo" : [ ] - }, - "VKHDPS8VTZRT43GD.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "VKHDPS8VTZRT43GD.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "FUPZEHMJB57T55W6" : { - "FUPZEHMJB57T55W6.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "FUPZEHMJB57T55W6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FUPZEHMJB57T55W6.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "FUPZEHMJB57T55W6.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FUPZEHMJB57T55W6.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "FUPZEHMJB57T55W6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FUPZEHMJB57T55W6.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "FUPZEHMJB57T55W6.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1997" - }, - "appliesTo" : [ ] - }, - "FUPZEHMJB57T55W6.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "FUPZEHMJB57T55W6.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FUPZEHMJB57T55W6.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "FUPZEHMJB57T55W6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FUPZEHMJB57T55W6.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "FUPZEHMJB57T55W6.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FUPZEHMJB57T55W6.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "FUPZEHMJB57T55W6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FUPZEHMJB57T55W6.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "FUPZEHMJB57T55W6.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6675" - }, - "appliesTo" : [ ] - }, - "FUPZEHMJB57T55W6.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "FUPZEHMJB57T55W6.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FUPZEHMJB57T55W6.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "FUPZEHMJB57T55W6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FUPZEHMJB57T55W6.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "FUPZEHMJB57T55W6.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3153" - }, - "appliesTo" : [ ] - }, - "FUPZEHMJB57T55W6.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "FUPZEHMJB57T55W6.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FUPZEHMJB57T55W6.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "FUPZEHMJB57T55W6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FUPZEHMJB57T55W6.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "FUPZEHMJB57T55W6.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1733" - }, - "appliesTo" : [ ] - }, - "FUPZEHMJB57T55W6.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "FUPZEHMJB57T55W6.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FUPZEHMJB57T55W6.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "FUPZEHMJB57T55W6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FUPZEHMJB57T55W6.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "FUPZEHMJB57T55W6.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2890" - }, - "appliesTo" : [ ] - }, - "FUPZEHMJB57T55W6.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "FUPZEHMJB57T55W6.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FUPZEHMJB57T55W6.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "FUPZEHMJB57T55W6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FUPZEHMJB57T55W6.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "FUPZEHMJB57T55W6.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FUPZEHMJB57T55W6.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "FUPZEHMJB57T55W6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FUPZEHMJB57T55W6.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "FUPZEHMJB57T55W6.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FUPZEHMJB57T55W6.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "FUPZEHMJB57T55W6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FUPZEHMJB57T55W6.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "FUPZEHMJB57T55W6.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "894" - }, - "appliesTo" : [ ] - }, - "FUPZEHMJB57T55W6.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "FUPZEHMJB57T55W6.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FUPZEHMJB57T55W6.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "FUPZEHMJB57T55W6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FUPZEHMJB57T55W6.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "FUPZEHMJB57T55W6.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1028" - }, - "appliesTo" : [ ] - }, - "FUPZEHMJB57T55W6.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "FUPZEHMJB57T55W6.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FUPZEHMJB57T55W6.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "FUPZEHMJB57T55W6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FUPZEHMJB57T55W6.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "FUPZEHMJB57T55W6.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7331" - }, - "appliesTo" : [ ] - }, - "FUPZEHMJB57T55W6.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "FUPZEHMJB57T55W6.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "GAMAEGQGHSWC95UR" : { - "GAMAEGQGHSWC95UR.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "GAMAEGQGHSWC95UR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GAMAEGQGHSWC95UR.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "GAMAEGQGHSWC95UR.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "36267" - }, - "appliesTo" : [ ] - }, - "GAMAEGQGHSWC95UR.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "GAMAEGQGHSWC95UR.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GAMAEGQGHSWC95UR.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "GAMAEGQGHSWC95UR", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "GAMAEGQGHSWC95UR.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "GAMAEGQGHSWC95UR.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5470000000" - }, - "appliesTo" : [ ] - }, - "GAMAEGQGHSWC95UR.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "GAMAEGQGHSWC95UR.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13553" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GAMAEGQGHSWC95UR.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "GAMAEGQGHSWC95UR", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "GAMAEGQGHSWC95UR.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "GAMAEGQGHSWC95UR.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26823" - }, - "appliesTo" : [ ] - }, - "GAMAEGQGHSWC95UR.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "GAMAEGQGHSWC95UR.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GAMAEGQGHSWC95UR.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "GAMAEGQGHSWC95UR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GAMAEGQGHSWC95UR.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "GAMAEGQGHSWC95UR.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GAMAEGQGHSWC95UR.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "GAMAEGQGHSWC95UR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GAMAEGQGHSWC95UR.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "GAMAEGQGHSWC95UR.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "66431" - }, - "appliesTo" : [ ] - }, - "GAMAEGQGHSWC95UR.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "GAMAEGQGHSWC95UR.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GAMAEGQGHSWC95UR.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "GAMAEGQGHSWC95UR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GAMAEGQGHSWC95UR.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "GAMAEGQGHSWC95UR.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29007" - }, - "appliesTo" : [ ] - }, - "GAMAEGQGHSWC95UR.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "GAMAEGQGHSWC95UR.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "GAMAEGQGHSWC95UR.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "GAMAEGQGHSWC95UR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GAMAEGQGHSWC95UR.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "GAMAEGQGHSWC95UR.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "GAMAEGQGHSWC95UR.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "GAMAEGQGHSWC95UR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GAMAEGQGHSWC95UR.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "GAMAEGQGHSWC95UR.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14668" - }, - "appliesTo" : [ ] - }, - "GAMAEGQGHSWC95UR.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "GAMAEGQGHSWC95UR.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GAMAEGQGHSWC95UR.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "GAMAEGQGHSWC95UR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GAMAEGQGHSWC95UR.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "GAMAEGQGHSWC95UR.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GAMAEGQGHSWC95UR.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "GAMAEGQGHSWC95UR", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "GAMAEGQGHSWC95UR.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "GAMAEGQGHSWC95UR.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34101" - }, - "appliesTo" : [ ] - }, - "GAMAEGQGHSWC95UR.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "GAMAEGQGHSWC95UR.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GAMAEGQGHSWC95UR.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "GAMAEGQGHSWC95UR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GAMAEGQGHSWC95UR.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "GAMAEGQGHSWC95UR.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "71856" - }, - "appliesTo" : [ ] - }, - "GAMAEGQGHSWC95UR.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "GAMAEGQGHSWC95UR.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "GAMAEGQGHSWC95UR.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "GAMAEGQGHSWC95UR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GAMAEGQGHSWC95UR.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "GAMAEGQGHSWC95UR.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "BYRRQU7P3FHKBRZR" : { - "BYRRQU7P3FHKBRZR.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "BYRRQU7P3FHKBRZR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BYRRQU7P3FHKBRZR.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "BYRRQU7P3FHKBRZR.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BYRRQU7P3FHKBRZR.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "BYRRQU7P3FHKBRZR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BYRRQU7P3FHKBRZR.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "BYRRQU7P3FHKBRZR.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2144" - }, - "appliesTo" : [ ] - }, - "BYRRQU7P3FHKBRZR.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "BYRRQU7P3FHKBRZR.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BYRRQU7P3FHKBRZR.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "BYRRQU7P3FHKBRZR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "BYRRQU7P3FHKBRZR.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "BYRRQU7P3FHKBRZR.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BYRRQU7P3FHKBRZR.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "BYRRQU7P3FHKBRZR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BYRRQU7P3FHKBRZR.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "BYRRQU7P3FHKBRZR.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4248" - }, - "appliesTo" : [ ] - }, - "BYRRQU7P3FHKBRZR.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "BYRRQU7P3FHKBRZR.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BYRRQU7P3FHKBRZR.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "BYRRQU7P3FHKBRZR", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "BYRRQU7P3FHKBRZR.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "BYRRQU7P3FHKBRZR.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2005" - }, - "appliesTo" : [ ] - }, - "BYRRQU7P3FHKBRZR.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "BYRRQU7P3FHKBRZR.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BYRRQU7P3FHKBRZR.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "BYRRQU7P3FHKBRZR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "BYRRQU7P3FHKBRZR.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "BYRRQU7P3FHKBRZR.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10848" - }, - "appliesTo" : [ ] - }, - "BYRRQU7P3FHKBRZR.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "BYRRQU7P3FHKBRZR.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BYRRQU7P3FHKBRZR.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "BYRRQU7P3FHKBRZR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "BYRRQU7P3FHKBRZR.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "BYRRQU7P3FHKBRZR.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10170" - }, - "appliesTo" : [ ] - }, - "BYRRQU7P3FHKBRZR.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "BYRRQU7P3FHKBRZR.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BYRRQU7P3FHKBRZR.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "BYRRQU7P3FHKBRZR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "BYRRQU7P3FHKBRZR.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "BYRRQU7P3FHKBRZR.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BYRRQU7P3FHKBRZR.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "BYRRQU7P3FHKBRZR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "BYRRQU7P3FHKBRZR.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "BYRRQU7P3FHKBRZR.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BYRRQU7P3FHKBRZR.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "BYRRQU7P3FHKBRZR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "BYRRQU7P3FHKBRZR.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "BYRRQU7P3FHKBRZR.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3975" - }, - "appliesTo" : [ ] - }, - "BYRRQU7P3FHKBRZR.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "BYRRQU7P3FHKBRZR.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BYRRQU7P3FHKBRZR.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "BYRRQU7P3FHKBRZR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "BYRRQU7P3FHKBRZR.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "BYRRQU7P3FHKBRZR.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5466" - }, - "appliesTo" : [ ] - }, - "BYRRQU7P3FHKBRZR.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "BYRRQU7P3FHKBRZR.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BYRRQU7P3FHKBRZR.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "BYRRQU7P3FHKBRZR", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "BYRRQU7P3FHKBRZR.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "BYRRQU7P3FHKBRZR.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5196" - }, - "appliesTo" : [ ] - }, - "BYRRQU7P3FHKBRZR.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "BYRRQU7P3FHKBRZR.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "QNZG4DHQSZ82BDNJ" : { - "QNZG4DHQSZ82BDNJ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "QNZG4DHQSZ82BDNJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QNZG4DHQSZ82BDNJ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "QNZG4DHQSZ82BDNJ.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QNZG4DHQSZ82BDNJ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "QNZG4DHQSZ82BDNJ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24388" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QNZG4DHQSZ82BDNJ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "QNZG4DHQSZ82BDNJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QNZG4DHQSZ82BDNJ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "QNZG4DHQSZ82BDNJ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QNZG4DHQSZ82BDNJ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QNZG4DHQSZ82BDNJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QNZG4DHQSZ82BDNJ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QNZG4DHQSZ82BDNJ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20457" - }, - "appliesTo" : [ ] - }, - "QNZG4DHQSZ82BDNJ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QNZG4DHQSZ82BDNJ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QNZG4DHQSZ82BDNJ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "QNZG4DHQSZ82BDNJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QNZG4DHQSZ82BDNJ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "QNZG4DHQSZ82BDNJ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0266000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QNZG4DHQSZ82BDNJ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QNZG4DHQSZ82BDNJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QNZG4DHQSZ82BDNJ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QNZG4DHQSZ82BDNJ.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QNZG4DHQSZ82BDNJ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QNZG4DHQSZ82BDNJ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10420" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QNZG4DHQSZ82BDNJ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QNZG4DHQSZ82BDNJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QNZG4DHQSZ82BDNJ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QNZG4DHQSZ82BDNJ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10864" - }, - "appliesTo" : [ ] - }, - "QNZG4DHQSZ82BDNJ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QNZG4DHQSZ82BDNJ.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QNZG4DHQSZ82BDNJ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "QNZG4DHQSZ82BDNJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QNZG4DHQSZ82BDNJ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "QNZG4DHQSZ82BDNJ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12441" - }, - "appliesTo" : [ ] - }, - "QNZG4DHQSZ82BDNJ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "QNZG4DHQSZ82BDNJ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QNZG4DHQSZ82BDNJ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "QNZG4DHQSZ82BDNJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QNZG4DHQSZ82BDNJ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "QNZG4DHQSZ82BDNJ.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4579000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QNZG4DHQSZ82BDNJ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "QNZG4DHQSZ82BDNJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QNZG4DHQSZ82BDNJ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "QNZG4DHQSZ82BDNJ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6120" - }, - "appliesTo" : [ ] - }, - "QNZG4DHQSZ82BDNJ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "QNZG4DHQSZ82BDNJ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6915000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QNZG4DHQSZ82BDNJ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QNZG4DHQSZ82BDNJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QNZG4DHQSZ82BDNJ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QNZG4DHQSZ82BDNJ.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QNZG4DHQSZ82BDNJ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "QNZG4DHQSZ82BDNJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QNZG4DHQSZ82BDNJ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "QNZG4DHQSZ82BDNJ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11940" - }, - "appliesTo" : [ ] - }, - "QNZG4DHQSZ82BDNJ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "QNZG4DHQSZ82BDNJ.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QNZG4DHQSZ82BDNJ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QNZG4DHQSZ82BDNJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QNZG4DHQSZ82BDNJ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QNZG4DHQSZ82BDNJ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6030000000" - }, - "appliesTo" : [ ] - }, - "QNZG4DHQSZ82BDNJ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QNZG4DHQSZ82BDNJ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5344" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "EKUJM8CMFGA8AN48" : { - "EKUJM8CMFGA8AN48.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "EKUJM8CMFGA8AN48", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EKUJM8CMFGA8AN48.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "EKUJM8CMFGA8AN48.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31291" - }, - "appliesTo" : [ ] - }, - "EKUJM8CMFGA8AN48.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "EKUJM8CMFGA8AN48.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EKUJM8CMFGA8AN48.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "EKUJM8CMFGA8AN48", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EKUJM8CMFGA8AN48.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "EKUJM8CMFGA8AN48.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "63035" - }, - "appliesTo" : [ ] - }, - "EKUJM8CMFGA8AN48.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "EKUJM8CMFGA8AN48.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "EKUJM8CMFGA8AN48.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "EKUJM8CMFGA8AN48", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EKUJM8CMFGA8AN48.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "EKUJM8CMFGA8AN48.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "EKUJM8CMFGA8AN48.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "EKUJM8CMFGA8AN48.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "183540" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EKUJM8CMFGA8AN48.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "EKUJM8CMFGA8AN48", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EKUJM8CMFGA8AN48.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "EKUJM8CMFGA8AN48.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "62510" - }, - "appliesTo" : [ ] - }, - "EKUJM8CMFGA8AN48.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "EKUJM8CMFGA8AN48.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EKUJM8CMFGA8AN48.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "EKUJM8CMFGA8AN48", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EKUJM8CMFGA8AN48.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "EKUJM8CMFGA8AN48.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.0210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "EKUJM8CMFGA8AN48.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "EKUJM8CMFGA8AN48", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EKUJM8CMFGA8AN48.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "EKUJM8CMFGA8AN48.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5000000000" - }, - "appliesTo" : [ ] - }, - "EKUJM8CMFGA8AN48.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "EKUJM8CMFGA8AN48.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "91978" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EKUJM8CMFGA8AN48.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "EKUJM8CMFGA8AN48", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EKUJM8CMFGA8AN48.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "EKUJM8CMFGA8AN48.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "92505" - }, - "appliesTo" : [ ] - }, - "EKUJM8CMFGA8AN48.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "EKUJM8CMFGA8AN48.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "EKUJM8CMFGA8AN48.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "EKUJM8CMFGA8AN48", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EKUJM8CMFGA8AN48.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "EKUJM8CMFGA8AN48.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.1640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "EKUJM8CMFGA8AN48.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "EKUJM8CMFGA8AN48", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EKUJM8CMFGA8AN48.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "EKUJM8CMFGA8AN48.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31559" - }, - "appliesTo" : [ ] - }, - "EKUJM8CMFGA8AN48.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "EKUJM8CMFGA8AN48.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "EKUJM8CMFGA8AN48.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "EKUJM8CMFGA8AN48", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EKUJM8CMFGA8AN48.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "EKUJM8CMFGA8AN48.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.2290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "EKUJM8CMFGA8AN48.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "EKUJM8CMFGA8AN48", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EKUJM8CMFGA8AN48.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "EKUJM8CMFGA8AN48.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "184850" - }, - "appliesTo" : [ ] - }, - "EKUJM8CMFGA8AN48.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "EKUJM8CMFGA8AN48.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "EKUJM8CMFGA8AN48.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "EKUJM8CMFGA8AN48", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EKUJM8CMFGA8AN48.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "EKUJM8CMFGA8AN48.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.0640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "2HFR6K6Q9KU8Q5YK" : { - "2HFR6K6Q9KU8Q5YK.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "2HFR6K6Q9KU8Q5YK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2HFR6K6Q9KU8Q5YK.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "2HFR6K6Q9KU8Q5YK.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2596000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2HFR6K6Q9KU8Q5YK.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "2HFR6K6Q9KU8Q5YK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2HFR6K6Q9KU8Q5YK.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "2HFR6K6Q9KU8Q5YK.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1117" - }, - "appliesTo" : [ ] - }, - "2HFR6K6Q9KU8Q5YK.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "2HFR6K6Q9KU8Q5YK.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1275000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2HFR6K6Q9KU8Q5YK.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "2HFR6K6Q9KU8Q5YK", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "2HFR6K6Q9KU8Q5YK.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "2HFR6K6Q9KU8Q5YK.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2113" - }, - "appliesTo" : [ ] - }, - "2HFR6K6Q9KU8Q5YK.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "2HFR6K6Q9KU8Q5YK.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2HFR6K6Q9KU8Q5YK.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "2HFR6K6Q9KU8Q5YK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2HFR6K6Q9KU8Q5YK.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "2HFR6K6Q9KU8Q5YK.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2943" - }, - "appliesTo" : [ ] - }, - "2HFR6K6Q9KU8Q5YK.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "2HFR6K6Q9KU8Q5YK.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2HFR6K6Q9KU8Q5YK.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "2HFR6K6Q9KU8Q5YK", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "2HFR6K6Q9KU8Q5YK.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "2HFR6K6Q9KU8Q5YK.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1080000000" - }, - "appliesTo" : [ ] - }, - "2HFR6K6Q9KU8Q5YK.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "2HFR6K6Q9KU8Q5YK.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2841" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2HFR6K6Q9KU8Q5YK.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "2HFR6K6Q9KU8Q5YK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2HFR6K6Q9KU8Q5YK.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "2HFR6K6Q9KU8Q5YK.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2218" - }, - "appliesTo" : [ ] - }, - "2HFR6K6Q9KU8Q5YK.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "2HFR6K6Q9KU8Q5YK.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2HFR6K6Q9KU8Q5YK.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "2HFR6K6Q9KU8Q5YK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2HFR6K6Q9KU8Q5YK.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "2HFR6K6Q9KU8Q5YK.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2202000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2HFR6K6Q9KU8Q5YK.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "2HFR6K6Q9KU8Q5YK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2HFR6K6Q9KU8Q5YK.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "2HFR6K6Q9KU8Q5YK.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "2HFR6K6Q9KU8Q5YK.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "2HFR6K6Q9KU8Q5YK.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5598" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2HFR6K6Q9KU8Q5YK.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "2HFR6K6Q9KU8Q5YK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2HFR6K6Q9KU8Q5YK.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "2HFR6K6Q9KU8Q5YK.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2288000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2HFR6K6Q9KU8Q5YK.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "2HFR6K6Q9KU8Q5YK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2HFR6K6Q9KU8Q5YK.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "2HFR6K6Q9KU8Q5YK.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5853" - }, - "appliesTo" : [ ] - }, - "2HFR6K6Q9KU8Q5YK.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "2HFR6K6Q9KU8Q5YK.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2HFR6K6Q9KU8Q5YK.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "2HFR6K6Q9KU8Q5YK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2HFR6K6Q9KU8Q5YK.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "2HFR6K6Q9KU8Q5YK.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2HFR6K6Q9KU8Q5YK.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "2HFR6K6Q9KU8Q5YK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2HFR6K6Q9KU8Q5YK.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "2HFR6K6Q9KU8Q5YK.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1063" - }, - "appliesTo" : [ ] - }, - "2HFR6K6Q9KU8Q5YK.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "2HFR6K6Q9KU8Q5YK.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "E7FZJRV7JXQJXFED" : { - "E7FZJRV7JXQJXFED.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "E7FZJRV7JXQJXFED", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "E7FZJRV7JXQJXFED.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "E7FZJRV7JXQJXFED.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12427" - }, - "appliesTo" : [ ] - }, - "E7FZJRV7JXQJXFED.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "E7FZJRV7JXQJXFED.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "E7FZJRV7JXQJXFED.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "E7FZJRV7JXQJXFED", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "E7FZJRV7JXQJXFED.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "E7FZJRV7JXQJXFED.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5069" - }, - "appliesTo" : [ ] - }, - "E7FZJRV7JXQJXFED.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "E7FZJRV7JXQJXFED.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "E7FZJRV7JXQJXFED.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "E7FZJRV7JXQJXFED", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "E7FZJRV7JXQJXFED.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "E7FZJRV7JXQJXFED.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "E7FZJRV7JXQJXFED.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "E7FZJRV7JXQJXFED", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "E7FZJRV7JXQJXFED.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "E7FZJRV7JXQJXFED.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "E7FZJRV7JXQJXFED.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "E7FZJRV7JXQJXFED.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35846" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "E7FZJRV7JXQJXFED.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "E7FZJRV7JXQJXFED", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "E7FZJRV7JXQJXFED.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "E7FZJRV7JXQJXFED.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "E7FZJRV7JXQJXFED.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "E7FZJRV7JXQJXFED.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14408" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "E7FZJRV7JXQJXFED.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "E7FZJRV7JXQJXFED", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "E7FZJRV7JXQJXFED.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "E7FZJRV7JXQJXFED.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7260" - }, - "appliesTo" : [ ] - }, - "E7FZJRV7JXQJXFED.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "E7FZJRV7JXQJXFED.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "E7FZJRV7JXQJXFED.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "E7FZJRV7JXQJXFED", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "E7FZJRV7JXQJXFED.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "E7FZJRV7JXQJXFED.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "E7FZJRV7JXQJXFED.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "E7FZJRV7JXQJXFED", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "E7FZJRV7JXQJXFED.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "E7FZJRV7JXQJXFED.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "E7FZJRV7JXQJXFED.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "E7FZJRV7JXQJXFED", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "E7FZJRV7JXQJXFED.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "E7FZJRV7JXQJXFED.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29063" - }, - "appliesTo" : [ ] - }, - "E7FZJRV7JXQJXFED.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "E7FZJRV7JXQJXFED.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "E7FZJRV7JXQJXFED.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "E7FZJRV7JXQJXFED", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "E7FZJRV7JXQJXFED.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "E7FZJRV7JXQJXFED.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12360" - }, - "appliesTo" : [ ] - }, - "E7FZJRV7JXQJXFED.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "E7FZJRV7JXQJXFED.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "E7FZJRV7JXQJXFED.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "E7FZJRV7JXQJXFED", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "E7FZJRV7JXQJXFED.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "E7FZJRV7JXQJXFED.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14346" - }, - "appliesTo" : [ ] - }, - "E7FZJRV7JXQJXFED.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "E7FZJRV7JXQJXFED.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "F3MSPCKJ74QTGZ7J" : { - "F3MSPCKJ74QTGZ7J.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "F3MSPCKJ74QTGZ7J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "F3MSPCKJ74QTGZ7J.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "F3MSPCKJ74QTGZ7J.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2657000000" - }, - "appliesTo" : [ ] - }, - "F3MSPCKJ74QTGZ7J.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "F3MSPCKJ74QTGZ7J.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1189" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "F3MSPCKJ74QTGZ7J.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "F3MSPCKJ74QTGZ7J", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "F3MSPCKJ74QTGZ7J.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "F3MSPCKJ74QTGZ7J.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3778000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "F3MSPCKJ74QTGZ7J.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "F3MSPCKJ74QTGZ7J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "F3MSPCKJ74QTGZ7J.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "F3MSPCKJ74QTGZ7J.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "F3MSPCKJ74QTGZ7J.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "F3MSPCKJ74QTGZ7J", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "F3MSPCKJ74QTGZ7J.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "F3MSPCKJ74QTGZ7J.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2418" - }, - "appliesTo" : [ ] - }, - "F3MSPCKJ74QTGZ7J.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "F3MSPCKJ74QTGZ7J.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "F3MSPCKJ74QTGZ7J.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "F3MSPCKJ74QTGZ7J", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "F3MSPCKJ74QTGZ7J.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "F3MSPCKJ74QTGZ7J.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2102" - }, - "appliesTo" : [ ] - }, - "F3MSPCKJ74QTGZ7J.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "F3MSPCKJ74QTGZ7J.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "F3MSPCKJ74QTGZ7J.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "F3MSPCKJ74QTGZ7J", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "F3MSPCKJ74QTGZ7J.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "F3MSPCKJ74QTGZ7J.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3287000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "F3MSPCKJ74QTGZ7J.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "F3MSPCKJ74QTGZ7J", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "F3MSPCKJ74QTGZ7J.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "F3MSPCKJ74QTGZ7J.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "F3MSPCKJ74QTGZ7J.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "F3MSPCKJ74QTGZ7J.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3165" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "F3MSPCKJ74QTGZ7J.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "F3MSPCKJ74QTGZ7J", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "F3MSPCKJ74QTGZ7J.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "F3MSPCKJ74QTGZ7J.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "F3MSPCKJ74QTGZ7J.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "F3MSPCKJ74QTGZ7J.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7369" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "F3MSPCKJ74QTGZ7J.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "F3MSPCKJ74QTGZ7J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "F3MSPCKJ74QTGZ7J.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "F3MSPCKJ74QTGZ7J.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3469" - }, - "appliesTo" : [ ] - }, - "F3MSPCKJ74QTGZ7J.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "F3MSPCKJ74QTGZ7J.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "F3MSPCKJ74QTGZ7J.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "F3MSPCKJ74QTGZ7J", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "F3MSPCKJ74QTGZ7J.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "F3MSPCKJ74QTGZ7J.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1034" - }, - "appliesTo" : [ ] - }, - "F3MSPCKJ74QTGZ7J.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "F3MSPCKJ74QTGZ7J.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "F3MSPCKJ74QTGZ7J.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "F3MSPCKJ74QTGZ7J", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "F3MSPCKJ74QTGZ7J.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "F3MSPCKJ74QTGZ7J.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8155" - }, - "appliesTo" : [ ] - }, - "F3MSPCKJ74QTGZ7J.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "F3MSPCKJ74QTGZ7J.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "F3MSPCKJ74QTGZ7J.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "F3MSPCKJ74QTGZ7J", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "F3MSPCKJ74QTGZ7J.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "F3MSPCKJ74QTGZ7J.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3028000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "UHM8B3D5UY4TJ8DU" : { - "UHM8B3D5UY4TJ8DU.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "UHM8B3D5UY4TJ8DU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "UHM8B3D5UY4TJ8DU.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "UHM8B3D5UY4TJ8DU.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7376000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "UHM8B3D5UY4TJ8DU.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "UHM8B3D5UY4TJ8DU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UHM8B3D5UY4TJ8DU.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "UHM8B3D5UY4TJ8DU.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16525" - }, - "appliesTo" : [ ] - }, - "UHM8B3D5UY4TJ8DU.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "UHM8B3D5UY4TJ8DU.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8864000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "UHM8B3D5UY4TJ8DU.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "UHM8B3D5UY4TJ8DU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UHM8B3D5UY4TJ8DU.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "UHM8B3D5UY4TJ8DU.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "UHM8B3D5UY4TJ8DU.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "UHM8B3D5UY4TJ8DU", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "UHM8B3D5UY4TJ8DU.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "UHM8B3D5UY4TJ8DU.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47330" - }, - "appliesTo" : [ ] - }, - "UHM8B3D5UY4TJ8DU.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "UHM8B3D5UY4TJ8DU.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "UHM8B3D5UY4TJ8DU.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "UHM8B3D5UY4TJ8DU", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "UHM8B3D5UY4TJ8DU.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "UHM8B3D5UY4TJ8DU.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "94292" - }, - "appliesTo" : [ ] - }, - "UHM8B3D5UY4TJ8DU.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "UHM8B3D5UY4TJ8DU.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "UHM8B3D5UY4TJ8DU.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "UHM8B3D5UY4TJ8DU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "UHM8B3D5UY4TJ8DU.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "UHM8B3D5UY4TJ8DU.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6576000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "UHM8B3D5UY4TJ8DU.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "UHM8B3D5UY4TJ8DU", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "UHM8B3D5UY4TJ8DU.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "UHM8B3D5UY4TJ8DU.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32517" - }, - "appliesTo" : [ ] - }, - "UHM8B3D5UY4TJ8DU.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "UHM8B3D5UY4TJ8DU.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "UHM8B3D5UY4TJ8DU.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "UHM8B3D5UY4TJ8DU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UHM8B3D5UY4TJ8DU.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "UHM8B3D5UY4TJ8DU.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "UHM8B3D5UY4TJ8DU.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "UHM8B3D5UY4TJ8DU.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32979" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "UHM8B3D5UY4TJ8DU.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "UHM8B3D5UY4TJ8DU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "UHM8B3D5UY4TJ8DU.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "UHM8B3D5UY4TJ8DU.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47779" - }, - "appliesTo" : [ ] - }, - "UHM8B3D5UY4TJ8DU.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "UHM8B3D5UY4TJ8DU.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8181000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "UHM8B3D5UY4TJ8DU.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "UHM8B3D5UY4TJ8DU", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "UHM8B3D5UY4TJ8DU.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "UHM8B3D5UY4TJ8DU.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8600000000" - }, - "appliesTo" : [ ] - }, - "UHM8B3D5UY4TJ8DU.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "UHM8B3D5UY4TJ8DU.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16289" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "UHM8B3D5UY4TJ8DU.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "UHM8B3D5UY4TJ8DU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "UHM8B3D5UY4TJ8DU.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "UHM8B3D5UY4TJ8DU.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "95418" - }, - "appliesTo" : [ ] - }, - "UHM8B3D5UY4TJ8DU.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "UHM8B3D5UY4TJ8DU.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "UHM8B3D5UY4TJ8DU.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "UHM8B3D5UY4TJ8DU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "UHM8B3D5UY4TJ8DU.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "UHM8B3D5UY4TJ8DU.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6199000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "R7PB2UQAZQDARZ8X" : { - "R7PB2UQAZQDARZ8X.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "R7PB2UQAZQDARZ8X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R7PB2UQAZQDARZ8X.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "R7PB2UQAZQDARZ8X.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4450000000" - }, - "appliesTo" : [ ] - }, - "R7PB2UQAZQDARZ8X.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "R7PB2UQAZQDARZ8X.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12657" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "R7PB2UQAZQDARZ8X.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "R7PB2UQAZQDARZ8X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R7PB2UQAZQDARZ8X.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "R7PB2UQAZQDARZ8X.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26176" - }, - "appliesTo" : [ ] - }, - "R7PB2UQAZQDARZ8X.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "R7PB2UQAZQDARZ8X.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "R7PB2UQAZQDARZ8X.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "R7PB2UQAZQDARZ8X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R7PB2UQAZQDARZ8X.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "R7PB2UQAZQDARZ8X.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "R7PB2UQAZQDARZ8X.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "R7PB2UQAZQDARZ8X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R7PB2UQAZQDARZ8X.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "R7PB2UQAZQDARZ8X.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46324" - }, - "appliesTo" : [ ] - }, - "R7PB2UQAZQDARZ8X.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "R7PB2UQAZQDARZ8X.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "R7PB2UQAZQDARZ8X.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "R7PB2UQAZQDARZ8X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R7PB2UQAZQDARZ8X.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "R7PB2UQAZQDARZ8X.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24936" - }, - "appliesTo" : [ ] - }, - "R7PB2UQAZQDARZ8X.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "R7PB2UQAZQDARZ8X.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "R7PB2UQAZQDARZ8X.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "R7PB2UQAZQDARZ8X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R7PB2UQAZQDARZ8X.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "R7PB2UQAZQDARZ8X.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24023" - }, - "appliesTo" : [ ] - }, - "R7PB2UQAZQDARZ8X.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "R7PB2UQAZQDARZ8X.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "R7PB2UQAZQDARZ8X.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "R7PB2UQAZQDARZ8X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R7PB2UQAZQDARZ8X.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "R7PB2UQAZQDARZ8X.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "R7PB2UQAZQDARZ8X.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "R7PB2UQAZQDARZ8X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R7PB2UQAZQDARZ8X.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "R7PB2UQAZQDARZ8X.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "R7PB2UQAZQDARZ8X.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "R7PB2UQAZQDARZ8X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R7PB2UQAZQDARZ8X.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "R7PB2UQAZQDARZ8X.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27709" - }, - "appliesTo" : [ ] - }, - "R7PB2UQAZQDARZ8X.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "R7PB2UQAZQDARZ8X.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "R7PB2UQAZQDARZ8X.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "R7PB2UQAZQDARZ8X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R7PB2UQAZQDARZ8X.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "R7PB2UQAZQDARZ8X.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14072" - }, - "appliesTo" : [ ] - }, - "R7PB2UQAZQDARZ8X.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "R7PB2UQAZQDARZ8X.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "R7PB2UQAZQDARZ8X.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "R7PB2UQAZQDARZ8X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R7PB2UQAZQDARZ8X.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "R7PB2UQAZQDARZ8X.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "51692" - }, - "appliesTo" : [ ] - }, - "R7PB2UQAZQDARZ8X.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "R7PB2UQAZQDARZ8X.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "R7PB2UQAZQDARZ8X.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "R7PB2UQAZQDARZ8X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R7PB2UQAZQDARZ8X.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "R7PB2UQAZQDARZ8X.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "55BBGNQ587XXZTH4" : { - "55BBGNQ587XXZTH4.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "55BBGNQ587XXZTH4", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "55BBGNQ587XXZTH4.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "55BBGNQ587XXZTH4.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10880" - }, - "appliesTo" : [ ] - }, - "55BBGNQ587XXZTH4.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "55BBGNQ587XXZTH4.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "55BBGNQ587XXZTH4.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "55BBGNQ587XXZTH4", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "55BBGNQ587XXZTH4.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "55BBGNQ587XXZTH4.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22331" - }, - "appliesTo" : [ ] - }, - "55BBGNQ587XXZTH4.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "55BBGNQ587XXZTH4.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "55BBGNQ587XXZTH4.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "55BBGNQ587XXZTH4", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "55BBGNQ587XXZTH4.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "55BBGNQ587XXZTH4.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12398" - }, - "appliesTo" : [ ] - }, - "55BBGNQ587XXZTH4.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "55BBGNQ587XXZTH4.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "55BBGNQ587XXZTH4.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "55BBGNQ587XXZTH4", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "55BBGNQ587XXZTH4.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "55BBGNQ587XXZTH4.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "55BBGNQ587XXZTH4.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "55BBGNQ587XXZTH4", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "55BBGNQ587XXZTH4.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "55BBGNQ587XXZTH4.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7220" - }, - "appliesTo" : [ ] - }, - "55BBGNQ587XXZTH4.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "55BBGNQ587XXZTH4.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "3SK2R9VZ8N24UV8B" : { - "3SK2R9VZ8N24UV8B.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "3SK2R9VZ8N24UV8B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3SK2R9VZ8N24UV8B.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "3SK2R9VZ8N24UV8B.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2830000000" - }, - "appliesTo" : [ ] - }, - "3SK2R9VZ8N24UV8B.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "3SK2R9VZ8N24UV8B.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11241" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3SK2R9VZ8N24UV8B.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "3SK2R9VZ8N24UV8B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3SK2R9VZ8N24UV8B.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "3SK2R9VZ8N24UV8B.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3SK2R9VZ8N24UV8B.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "3SK2R9VZ8N24UV8B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3SK2R9VZ8N24UV8B.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "3SK2R9VZ8N24UV8B.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20878" - }, - "appliesTo" : [ ] - }, - "3SK2R9VZ8N24UV8B.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "3SK2R9VZ8N24UV8B.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3SK2R9VZ8N24UV8B.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "3SK2R9VZ8N24UV8B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3SK2R9VZ8N24UV8B.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "3SK2R9VZ8N24UV8B.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9370000000" - }, - "appliesTo" : [ ] - }, - "3SK2R9VZ8N24UV8B.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "3SK2R9VZ8N24UV8B.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24626" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3SK2R9VZ8N24UV8B.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "3SK2R9VZ8N24UV8B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3SK2R9VZ8N24UV8B.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "3SK2R9VZ8N24UV8B.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25702" - }, - "appliesTo" : [ ] - }, - "3SK2R9VZ8N24UV8B.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "3SK2R9VZ8N24UV8B.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3SK2R9VZ8N24UV8B.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "3SK2R9VZ8N24UV8B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3SK2R9VZ8N24UV8B.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "3SK2R9VZ8N24UV8B.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3SK2R9VZ8N24UV8B.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "3SK2R9VZ8N24UV8B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3SK2R9VZ8N24UV8B.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "3SK2R9VZ8N24UV8B.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3SK2R9VZ8N24UV8B.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "3SK2R9VZ8N24UV8B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3SK2R9VZ8N24UV8B.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "3SK2R9VZ8N24UV8B.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "3SK2R9VZ8N24UV8B.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "3SK2R9VZ8N24UV8B.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "48391" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3SK2R9VZ8N24UV8B.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "3SK2R9VZ8N24UV8B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3SK2R9VZ8N24UV8B.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "3SK2R9VZ8N24UV8B.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10533" - }, - "appliesTo" : [ ] - }, - "3SK2R9VZ8N24UV8B.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "3SK2R9VZ8N24UV8B.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3SK2R9VZ8N24UV8B.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "3SK2R9VZ8N24UV8B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3SK2R9VZ8N24UV8B.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "3SK2R9VZ8N24UV8B.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "51075" - }, - "appliesTo" : [ ] - }, - "3SK2R9VZ8N24UV8B.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "3SK2R9VZ8N24UV8B.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3SK2R9VZ8N24UV8B.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "3SK2R9VZ8N24UV8B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3SK2R9VZ8N24UV8B.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "3SK2R9VZ8N24UV8B.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3SK2R9VZ8N24UV8B.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "3SK2R9VZ8N24UV8B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3SK2R9VZ8N24UV8B.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "3SK2R9VZ8N24UV8B.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22264" - }, - "appliesTo" : [ ] - }, - "3SK2R9VZ8N24UV8B.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "3SK2R9VZ8N24UV8B.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "YGPA59CYGTE7GDPD" : { - "YGPA59CYGTE7GDPD.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "YGPA59CYGTE7GDPD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YGPA59CYGTE7GDPD.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "YGPA59CYGTE7GDPD.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "154924" - }, - "appliesTo" : [ ] - }, - "YGPA59CYGTE7GDPD.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "YGPA59CYGTE7GDPD.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YGPA59CYGTE7GDPD.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YGPA59CYGTE7GDPD", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "YGPA59CYGTE7GDPD.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YGPA59CYGTE7GDPD.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "196926" - }, - "appliesTo" : [ ] - }, - "YGPA59CYGTE7GDPD.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YGPA59CYGTE7GDPD.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YGPA59CYGTE7GDPD.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "YGPA59CYGTE7GDPD", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "YGPA59CYGTE7GDPD.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "YGPA59CYGTE7GDPD.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.6120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YGPA59CYGTE7GDPD.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "YGPA59CYGTE7GDPD", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "YGPA59CYGTE7GDPD.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "YGPA59CYGTE7GDPD.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.8990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YGPA59CYGTE7GDPD.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YGPA59CYGTE7GDPD", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "YGPA59CYGTE7GDPD.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YGPA59CYGTE7GDPD.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "134754" - }, - "appliesTo" : [ ] - }, - "YGPA59CYGTE7GDPD.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YGPA59CYGTE7GDPD.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YGPA59CYGTE7GDPD.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "YGPA59CYGTE7GDPD", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "YGPA59CYGTE7GDPD.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "YGPA59CYGTE7GDPD.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5810000000" - }, - "appliesTo" : [ ] - }, - "YGPA59CYGTE7GDPD.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "YGPA59CYGTE7GDPD.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "120387" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YGPA59CYGTE7GDPD.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YGPA59CYGTE7GDPD", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "YGPA59CYGTE7GDPD.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YGPA59CYGTE7GDPD.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "104731" - }, - "appliesTo" : [ ] - }, - "YGPA59CYGTE7GDPD.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YGPA59CYGTE7GDPD.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YGPA59CYGTE7GDPD.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "YGPA59CYGTE7GDPD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YGPA59CYGTE7GDPD.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "YGPA59CYGTE7GDPD.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "18.9460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YGPA59CYGTE7GDPD.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "YGPA59CYGTE7GDPD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YGPA59CYGTE7GDPD.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "YGPA59CYGTE7GDPD.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "79071" - }, - "appliesTo" : [ ] - }, - "YGPA59CYGTE7GDPD.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "YGPA59CYGTE7GDPD.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.0190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YGPA59CYGTE7GDPD.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "YGPA59CYGTE7GDPD", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "YGPA59CYGTE7GDPD.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "YGPA59CYGTE7GDPD.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "235963" - }, - "appliesTo" : [ ] - }, - "YGPA59CYGTE7GDPD.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "YGPA59CYGTE7GDPD.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YGPA59CYGTE7GDPD.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YGPA59CYGTE7GDPD", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "YGPA59CYGTE7GDPD.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YGPA59CYGTE7GDPD.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.4790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YGPA59CYGTE7GDPD.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YGPA59CYGTE7GDPD", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "YGPA59CYGTE7GDPD.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YGPA59CYGTE7GDPD.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "68780" - }, - "appliesTo" : [ ] - }, - "YGPA59CYGTE7GDPD.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YGPA59CYGTE7GDPD.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.8450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "429MR8T2YBX27EZR" : { - "429MR8T2YBX27EZR.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "429MR8T2YBX27EZR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "429MR8T2YBX27EZR.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "429MR8T2YBX27EZR.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2594" - }, - "appliesTo" : [ ] - }, - "429MR8T2YBX27EZR.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "429MR8T2YBX27EZR.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "429MR8T2YBX27EZR.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "429MR8T2YBX27EZR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "429MR8T2YBX27EZR.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "429MR8T2YBX27EZR.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "429MR8T2YBX27EZR.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "429MR8T2YBX27EZR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "429MR8T2YBX27EZR.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "429MR8T2YBX27EZR.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "429MR8T2YBX27EZR.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "429MR8T2YBX27EZR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "429MR8T2YBX27EZR.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "429MR8T2YBX27EZR.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10409" - }, - "appliesTo" : [ ] - }, - "429MR8T2YBX27EZR.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "429MR8T2YBX27EZR.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "429MR8T2YBX27EZR.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "429MR8T2YBX27EZR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "429MR8T2YBX27EZR.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "429MR8T2YBX27EZR.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "429MR8T2YBX27EZR.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "429MR8T2YBX27EZR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "429MR8T2YBX27EZR.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "429MR8T2YBX27EZR.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5029" - }, - "appliesTo" : [ ] - }, - "429MR8T2YBX27EZR.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "429MR8T2YBX27EZR.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "429MR8T2YBX27EZR.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "429MR8T2YBX27EZR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "429MR8T2YBX27EZR.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "429MR8T2YBX27EZR.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5308" - }, - "appliesTo" : [ ] - }, - "429MR8T2YBX27EZR.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "429MR8T2YBX27EZR.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "429MR8T2YBX27EZR.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "429MR8T2YBX27EZR", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "429MR8T2YBX27EZR.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "429MR8T2YBX27EZR.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2292" - }, - "appliesTo" : [ ] - }, - "429MR8T2YBX27EZR.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "429MR8T2YBX27EZR.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "429MR8T2YBX27EZR.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "429MR8T2YBX27EZR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "429MR8T2YBX27EZR.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "429MR8T2YBX27EZR.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4688" - }, - "appliesTo" : [ ] - }, - "429MR8T2YBX27EZR.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "429MR8T2YBX27EZR.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "429MR8T2YBX27EZR.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "429MR8T2YBX27EZR", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "429MR8T2YBX27EZR.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "429MR8T2YBX27EZR.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8846" - }, - "appliesTo" : [ ] - }, - "429MR8T2YBX27EZR.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "429MR8T2YBX27EZR.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "429MR8T2YBX27EZR.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "429MR8T2YBX27EZR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "429MR8T2YBX27EZR.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "429MR8T2YBX27EZR.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "429MR8T2YBX27EZR.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "429MR8T2YBX27EZR", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "429MR8T2YBX27EZR.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "429MR8T2YBX27EZR.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "429MR8T2YBX27EZR.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "429MR8T2YBX27EZR.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4436" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "KP89XKS7BFTMVX77" : { - "KP89XKS7BFTMVX77.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "KP89XKS7BFTMVX77", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "KP89XKS7BFTMVX77.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "KP89XKS7BFTMVX77.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "KP89XKS7BFTMVX77.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "KP89XKS7BFTMVX77.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9635" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KP89XKS7BFTMVX77.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "KP89XKS7BFTMVX77", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "KP89XKS7BFTMVX77.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "KP89XKS7BFTMVX77.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4100" - }, - "appliesTo" : [ ] - }, - "KP89XKS7BFTMVX77.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "KP89XKS7BFTMVX77.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KP89XKS7BFTMVX77.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "KP89XKS7BFTMVX77", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "KP89XKS7BFTMVX77.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "KP89XKS7BFTMVX77.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1420" - }, - "appliesTo" : [ ] - }, - "KP89XKS7BFTMVX77.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "KP89XKS7BFTMVX77.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KP89XKS7BFTMVX77.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "KP89XKS7BFTMVX77", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "KP89XKS7BFTMVX77.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "KP89XKS7BFTMVX77.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KP89XKS7BFTMVX77.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "KP89XKS7BFTMVX77", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "KP89XKS7BFTMVX77.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "KP89XKS7BFTMVX77.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3469" - }, - "appliesTo" : [ ] - }, - "KP89XKS7BFTMVX77.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "KP89XKS7BFTMVX77.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "U29KTD6EKFTKBK6T" : { - "U29KTD6EKFTKBK6T.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "U29KTD6EKFTKBK6T", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "U29KTD6EKFTKBK6T.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "U29KTD6EKFTKBK6T.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15123" - }, - "appliesTo" : [ ] - }, - "U29KTD6EKFTKBK6T.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "U29KTD6EKFTKBK6T.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "U29KTD6EKFTKBK6T.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "U29KTD6EKFTKBK6T", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "U29KTD6EKFTKBK6T.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "U29KTD6EKFTKBK6T.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "U29KTD6EKFTKBK6T.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "U29KTD6EKFTKBK6T", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "U29KTD6EKFTKBK6T.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "U29KTD6EKFTKBK6T.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "U29KTD6EKFTKBK6T.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "U29KTD6EKFTKBK6T.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26096" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "U29KTD6EKFTKBK6T.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "U29KTD6EKFTKBK6T", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "U29KTD6EKFTKBK6T.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "U29KTD6EKFTKBK6T.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "U29KTD6EKFTKBK6T.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "U29KTD6EKFTKBK6T", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "U29KTD6EKFTKBK6T.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "U29KTD6EKFTKBK6T.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5280000000" - }, - "appliesTo" : [ ] - }, - "U29KTD6EKFTKBK6T.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "U29KTD6EKFTKBK6T.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13886" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "U29KTD6EKFTKBK6T.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "U29KTD6EKFTKBK6T", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "U29KTD6EKFTKBK6T.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "U29KTD6EKFTKBK6T.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30028" - }, - "appliesTo" : [ ] - }, - "U29KTD6EKFTKBK6T.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "U29KTD6EKFTKBK6T.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "U29KTD6EKFTKBK6T.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "U29KTD6EKFTKBK6T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U29KTD6EKFTKBK6T.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "U29KTD6EKFTKBK6T.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11660" - }, - "appliesTo" : [ ] - }, - "U29KTD6EKFTKBK6T.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "U29KTD6EKFTKBK6T.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "U29KTD6EKFTKBK6T.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "U29KTD6EKFTKBK6T", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "U29KTD6EKFTKBK6T.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "U29KTD6EKFTKBK6T.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11011" - }, - "appliesTo" : [ ] - }, - "U29KTD6EKFTKBK6T.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "U29KTD6EKFTKBK6T.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "U29KTD6EKFTKBK6T.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "U29KTD6EKFTKBK6T", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "U29KTD6EKFTKBK6T.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "U29KTD6EKFTKBK6T.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5554" - }, - "appliesTo" : [ ] - }, - "U29KTD6EKFTKBK6T.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "U29KTD6EKFTKBK6T.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "U29KTD6EKFTKBK6T.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "U29KTD6EKFTKBK6T", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "U29KTD6EKFTKBK6T.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "U29KTD6EKFTKBK6T.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "U29KTD6EKFTKBK6T.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "U29KTD6EKFTKBK6T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U29KTD6EKFTKBK6T.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "U29KTD6EKFTKBK6T.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5883" - }, - "appliesTo" : [ ] - }, - "U29KTD6EKFTKBK6T.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "U29KTD6EKFTKBK6T.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "U29KTD6EKFTKBK6T.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "U29KTD6EKFTKBK6T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U29KTD6EKFTKBK6T.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "U29KTD6EKFTKBK6T.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "35QACGXEGWD9AZHY" : { - "35QACGXEGWD9AZHY.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "35QACGXEGWD9AZHY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "35QACGXEGWD9AZHY.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "35QACGXEGWD9AZHY.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "35QACGXEGWD9AZHY.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "35QACGXEGWD9AZHY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "35QACGXEGWD9AZHY.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "35QACGXEGWD9AZHY.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1309" - }, - "appliesTo" : [ ] - }, - "35QACGXEGWD9AZHY.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "35QACGXEGWD9AZHY.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "35QACGXEGWD9AZHY.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "35QACGXEGWD9AZHY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "35QACGXEGWD9AZHY.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "35QACGXEGWD9AZHY.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0750000000" - }, - "appliesTo" : [ ] - }, - "35QACGXEGWD9AZHY.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "35QACGXEGWD9AZHY.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "660" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "35QACGXEGWD9AZHY.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "35QACGXEGWD9AZHY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "35QACGXEGWD9AZHY.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "35QACGXEGWD9AZHY.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "35QACGXEGWD9AZHY.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "35QACGXEGWD9AZHY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "35QACGXEGWD9AZHY.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "35QACGXEGWD9AZHY.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "35QACGXEGWD9AZHY.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "35QACGXEGWD9AZHY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "35QACGXEGWD9AZHY.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "35QACGXEGWD9AZHY.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0720000000" - }, - "appliesTo" : [ ] - }, - "35QACGXEGWD9AZHY.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "35QACGXEGWD9AZHY.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "626" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "35QACGXEGWD9AZHY.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "35QACGXEGWD9AZHY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "35QACGXEGWD9AZHY.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "35QACGXEGWD9AZHY.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3396" - }, - "appliesTo" : [ ] - }, - "35QACGXEGWD9AZHY.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "35QACGXEGWD9AZHY.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "35QACGXEGWD9AZHY.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "35QACGXEGWD9AZHY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "35QACGXEGWD9AZHY.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "35QACGXEGWD9AZHY.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0620000000" - }, - "appliesTo" : [ ] - }, - "35QACGXEGWD9AZHY.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "35QACGXEGWD9AZHY.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1642" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "35QACGXEGWD9AZHY.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "35QACGXEGWD9AZHY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "35QACGXEGWD9AZHY.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "35QACGXEGWD9AZHY.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "35QACGXEGWD9AZHY.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "35QACGXEGWD9AZHY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "35QACGXEGWD9AZHY.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "35QACGXEGWD9AZHY.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3232" - }, - "appliesTo" : [ ] - }, - "35QACGXEGWD9AZHY.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "35QACGXEGWD9AZHY.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "35QACGXEGWD9AZHY.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "35QACGXEGWD9AZHY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "35QACGXEGWD9AZHY.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "35QACGXEGWD9AZHY.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1708" - }, - "appliesTo" : [ ] - }, - "35QACGXEGWD9AZHY.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "35QACGXEGWD9AZHY.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "35QACGXEGWD9AZHY.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "35QACGXEGWD9AZHY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "35QACGXEGWD9AZHY.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "35QACGXEGWD9AZHY.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1244" - }, - "appliesTo" : [ ] - }, - "35QACGXEGWD9AZHY.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "35QACGXEGWD9AZHY.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "YGU2QZY8VPP94FSR" : { - "YGU2QZY8VPP94FSR.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "YGU2QZY8VPP94FSR", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "YGU2QZY8VPP94FSR.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "YGU2QZY8VPP94FSR.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YGU2QZY8VPP94FSR.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YGU2QZY8VPP94FSR", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YGU2QZY8VPP94FSR.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YGU2QZY8VPP94FSR.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1373" - }, - "appliesTo" : [ ] - }, - "YGU2QZY8VPP94FSR.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YGU2QZY8VPP94FSR.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YGU2QZY8VPP94FSR.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "YGU2QZY8VPP94FSR", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YGU2QZY8VPP94FSR.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "YGU2QZY8VPP94FSR.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1137" - }, - "appliesTo" : [ ] - }, - "YGU2QZY8VPP94FSR.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "YGU2QZY8VPP94FSR.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YGU2QZY8VPP94FSR.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YGU2QZY8VPP94FSR", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YGU2QZY8VPP94FSR.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YGU2QZY8VPP94FSR.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "673" - }, - "appliesTo" : [ ] - }, - "YGU2QZY8VPP94FSR.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YGU2QZY8VPP94FSR.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YGU2QZY8VPP94FSR.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "YGU2QZY8VPP94FSR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YGU2QZY8VPP94FSR.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "YGU2QZY8VPP94FSR.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YGU2QZY8VPP94FSR.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "YGU2QZY8VPP94FSR.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "812" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YGU2QZY8VPP94FSR.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "YGU2QZY8VPP94FSR", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YGU2QZY8VPP94FSR.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "YGU2QZY8VPP94FSR.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1925" - }, - "appliesTo" : [ ] - }, - "YGU2QZY8VPP94FSR.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "YGU2QZY8VPP94FSR.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YGU2QZY8VPP94FSR.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YGU2QZY8VPP94FSR", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "YGU2QZY8VPP94FSR.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YGU2QZY8VPP94FSR.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "421" - }, - "appliesTo" : [ ] - }, - "YGU2QZY8VPP94FSR.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YGU2QZY8VPP94FSR.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YGU2QZY8VPP94FSR.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YGU2QZY8VPP94FSR", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "YGU2QZY8VPP94FSR.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YGU2QZY8VPP94FSR.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YGU2QZY8VPP94FSR.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YGU2QZY8VPP94FSR", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "YGU2QZY8VPP94FSR.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YGU2QZY8VPP94FSR.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "713" - }, - "appliesTo" : [ ] - }, - "YGU2QZY8VPP94FSR.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YGU2QZY8VPP94FSR.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YGU2QZY8VPP94FSR.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "YGU2QZY8VPP94FSR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YGU2QZY8VPP94FSR.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "YGU2QZY8VPP94FSR.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "414" - }, - "appliesTo" : [ ] - }, - "YGU2QZY8VPP94FSR.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "YGU2QZY8VPP94FSR.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YGU2QZY8VPP94FSR.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "YGU2QZY8VPP94FSR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YGU2QZY8VPP94FSR.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "YGU2QZY8VPP94FSR.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "EBRWZVHDHP2KJAMQ" : { - "EBRWZVHDHP2KJAMQ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "EBRWZVHDHP2KJAMQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EBRWZVHDHP2KJAMQ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "EBRWZVHDHP2KJAMQ.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4960000000" - }, - "appliesTo" : [ ] - }, - "EBRWZVHDHP2KJAMQ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "EBRWZVHDHP2KJAMQ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13047" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EBRWZVHDHP2KJAMQ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "EBRWZVHDHP2KJAMQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EBRWZVHDHP2KJAMQ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "EBRWZVHDHP2KJAMQ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "EBRWZVHDHP2KJAMQ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "EBRWZVHDHP2KJAMQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EBRWZVHDHP2KJAMQ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "EBRWZVHDHP2KJAMQ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "EBRWZVHDHP2KJAMQ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "EBRWZVHDHP2KJAMQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EBRWZVHDHP2KJAMQ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "EBRWZVHDHP2KJAMQ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "EBRWZVHDHP2KJAMQ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "EBRWZVHDHP2KJAMQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EBRWZVHDHP2KJAMQ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "EBRWZVHDHP2KJAMQ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19329" - }, - "appliesTo" : [ ] - }, - "EBRWZVHDHP2KJAMQ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "EBRWZVHDHP2KJAMQ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "EBRWZVHDHP2KJAMQ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "EBRWZVHDHP2KJAMQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EBRWZVHDHP2KJAMQ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "EBRWZVHDHP2KJAMQ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9862" - }, - "appliesTo" : [ ] - }, - "EBRWZVHDHP2KJAMQ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "EBRWZVHDHP2KJAMQ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "EBRWZVHDHP2KJAMQ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "EBRWZVHDHP2KJAMQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EBRWZVHDHP2KJAMQ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "EBRWZVHDHP2KJAMQ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29409" - }, - "appliesTo" : [ ] - }, - "EBRWZVHDHP2KJAMQ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "EBRWZVHDHP2KJAMQ.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "EBRWZVHDHP2KJAMQ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "EBRWZVHDHP2KJAMQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EBRWZVHDHP2KJAMQ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "EBRWZVHDHP2KJAMQ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8576" - }, - "appliesTo" : [ ] - }, - "EBRWZVHDHP2KJAMQ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "EBRWZVHDHP2KJAMQ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EBRWZVHDHP2KJAMQ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "EBRWZVHDHP2KJAMQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EBRWZVHDHP2KJAMQ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "EBRWZVHDHP2KJAMQ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16808" - }, - "appliesTo" : [ ] - }, - "EBRWZVHDHP2KJAMQ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "EBRWZVHDHP2KJAMQ.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EBRWZVHDHP2KJAMQ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "EBRWZVHDHP2KJAMQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EBRWZVHDHP2KJAMQ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "EBRWZVHDHP2KJAMQ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24529" - }, - "appliesTo" : [ ] - }, - "EBRWZVHDHP2KJAMQ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "EBRWZVHDHP2KJAMQ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EBRWZVHDHP2KJAMQ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "EBRWZVHDHP2KJAMQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EBRWZVHDHP2KJAMQ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "EBRWZVHDHP2KJAMQ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5710000000" - }, - "appliesTo" : [ ] - }, - "EBRWZVHDHP2KJAMQ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "EBRWZVHDHP2KJAMQ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15004" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "EBRWZVHDHP2KJAMQ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "EBRWZVHDHP2KJAMQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EBRWZVHDHP2KJAMQ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "EBRWZVHDHP2KJAMQ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "RKEGB47DHY7WYBKQ" : { - "RKEGB47DHY7WYBKQ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "RKEGB47DHY7WYBKQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RKEGB47DHY7WYBKQ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "RKEGB47DHY7WYBKQ.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RKEGB47DHY7WYBKQ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "RKEGB47DHY7WYBKQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RKEGB47DHY7WYBKQ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "RKEGB47DHY7WYBKQ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4196" - }, - "appliesTo" : [ ] - }, - "RKEGB47DHY7WYBKQ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "RKEGB47DHY7WYBKQ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RKEGB47DHY7WYBKQ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "RKEGB47DHY7WYBKQ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RKEGB47DHY7WYBKQ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "RKEGB47DHY7WYBKQ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4198" - }, - "appliesTo" : [ ] - }, - "RKEGB47DHY7WYBKQ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "RKEGB47DHY7WYBKQ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RKEGB47DHY7WYBKQ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "RKEGB47DHY7WYBKQ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "RKEGB47DHY7WYBKQ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "RKEGB47DHY7WYBKQ.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RKEGB47DHY7WYBKQ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "RKEGB47DHY7WYBKQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RKEGB47DHY7WYBKQ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "RKEGB47DHY7WYBKQ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8170" - }, - "appliesTo" : [ ] - }, - "RKEGB47DHY7WYBKQ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "RKEGB47DHY7WYBKQ.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RKEGB47DHY7WYBKQ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "RKEGB47DHY7WYBKQ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "RKEGB47DHY7WYBKQ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "RKEGB47DHY7WYBKQ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3210000000" - }, - "appliesTo" : [ ] - }, - "RKEGB47DHY7WYBKQ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "RKEGB47DHY7WYBKQ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11198" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RKEGB47DHY7WYBKQ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "RKEGB47DHY7WYBKQ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "RKEGB47DHY7WYBKQ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "RKEGB47DHY7WYBKQ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RKEGB47DHY7WYBKQ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "RKEGB47DHY7WYBKQ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "RKEGB47DHY7WYBKQ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "RKEGB47DHY7WYBKQ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19212" - }, - "appliesTo" : [ ] - }, - "RKEGB47DHY7WYBKQ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "RKEGB47DHY7WYBKQ.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RKEGB47DHY7WYBKQ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "RKEGB47DHY7WYBKQ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RKEGB47DHY7WYBKQ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "RKEGB47DHY7WYBKQ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7163" - }, - "appliesTo" : [ ] - }, - "RKEGB47DHY7WYBKQ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "RKEGB47DHY7WYBKQ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RKEGB47DHY7WYBKQ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "RKEGB47DHY7WYBKQ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RKEGB47DHY7WYBKQ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "RKEGB47DHY7WYBKQ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12904" - }, - "appliesTo" : [ ] - }, - "RKEGB47DHY7WYBKQ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "RKEGB47DHY7WYBKQ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RKEGB47DHY7WYBKQ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "RKEGB47DHY7WYBKQ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RKEGB47DHY7WYBKQ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "RKEGB47DHY7WYBKQ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6415" - }, - "appliesTo" : [ ] - }, - "RKEGB47DHY7WYBKQ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "RKEGB47DHY7WYBKQ.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "ZJC9VZJF5NZNYSVK" : { - "ZJC9VZJF5NZNYSVK.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ZJC9VZJF5NZNYSVK", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "ZJC9VZJF5NZNYSVK.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ZJC9VZJF5NZNYSVK.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16265" - }, - "appliesTo" : [ ] - }, - "ZJC9VZJF5NZNYSVK.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ZJC9VZJF5NZNYSVK.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZJC9VZJF5NZNYSVK.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ZJC9VZJF5NZNYSVK", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "ZJC9VZJF5NZNYSVK.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ZJC9VZJF5NZNYSVK.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZJC9VZJF5NZNYSVK.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ZJC9VZJF5NZNYSVK", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "ZJC9VZJF5NZNYSVK.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ZJC9VZJF5NZNYSVK.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20780" - }, - "appliesTo" : [ ] - }, - "ZJC9VZJF5NZNYSVK.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ZJC9VZJF5NZNYSVK.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZJC9VZJF5NZNYSVK.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ZJC9VZJF5NZNYSVK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZJC9VZJF5NZNYSVK.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ZJC9VZJF5NZNYSVK.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13624" - }, - "appliesTo" : [ ] - }, - "ZJC9VZJF5NZNYSVK.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ZJC9VZJF5NZNYSVK.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZJC9VZJF5NZNYSVK.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ZJC9VZJF5NZNYSVK", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "ZJC9VZJF5NZNYSVK.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ZJC9VZJF5NZNYSVK.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31882" - }, - "appliesTo" : [ ] - }, - "ZJC9VZJF5NZNYSVK.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ZJC9VZJF5NZNYSVK.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZJC9VZJF5NZNYSVK.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ZJC9VZJF5NZNYSVK", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "ZJC9VZJF5NZNYSVK.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ZJC9VZJF5NZNYSVK.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11808" - }, - "appliesTo" : [ ] - }, - "ZJC9VZJF5NZNYSVK.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ZJC9VZJF5NZNYSVK.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZJC9VZJF5NZNYSVK.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ZJC9VZJF5NZNYSVK", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "ZJC9VZJF5NZNYSVK.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ZJC9VZJF5NZNYSVK.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11068" - }, - "appliesTo" : [ ] - }, - "ZJC9VZJF5NZNYSVK.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ZJC9VZJF5NZNYSVK.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZJC9VZJF5NZNYSVK.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ZJC9VZJF5NZNYSVK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZJC9VZJF5NZNYSVK.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ZJC9VZJF5NZNYSVK.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZJC9VZJF5NZNYSVK.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ZJC9VZJF5NZNYSVK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZJC9VZJF5NZNYSVK.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ZJC9VZJF5NZNYSVK.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7940000000" - }, - "appliesTo" : [ ] - }, - "ZJC9VZJF5NZNYSVK.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ZJC9VZJF5NZNYSVK.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6951" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZJC9VZJF5NZNYSVK.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ZJC9VZJF5NZNYSVK", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ZJC9VZJF5NZNYSVK.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ZJC9VZJF5NZNYSVK.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6024" - }, - "appliesTo" : [ ] - }, - "ZJC9VZJF5NZNYSVK.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ZJC9VZJF5NZNYSVK.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZJC9VZJF5NZNYSVK.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ZJC9VZJF5NZNYSVK", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "ZJC9VZJF5NZNYSVK.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ZJC9VZJF5NZNYSVK.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "QPKCG2B2XC9C53GT" : { - "QPKCG2B2XC9C53GT.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "QPKCG2B2XC9C53GT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QPKCG2B2XC9C53GT.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "QPKCG2B2XC9C53GT.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19447" - }, - "appliesTo" : [ ] - }, - "QPKCG2B2XC9C53GT.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "QPKCG2B2XC9C53GT.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QPKCG2B2XC9C53GT.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "QPKCG2B2XC9C53GT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QPKCG2B2XC9C53GT.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "QPKCG2B2XC9C53GT.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QPKCG2B2XC9C53GT.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QPKCG2B2XC9C53GT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QPKCG2B2XC9C53GT.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QPKCG2B2XC9C53GT.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QPKCG2B2XC9C53GT.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QPKCG2B2XC9C53GT.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38159" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QPKCG2B2XC9C53GT.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "QPKCG2B2XC9C53GT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QPKCG2B2XC9C53GT.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "QPKCG2B2XC9C53GT.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38814" - }, - "appliesTo" : [ ] - }, - "QPKCG2B2XC9C53GT.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "QPKCG2B2XC9C53GT.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QPKCG2B2XC9C53GT.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "QPKCG2B2XC9C53GT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QPKCG2B2XC9C53GT.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "QPKCG2B2XC9C53GT.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QPKCG2B2XC9C53GT.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QPKCG2B2XC9C53GT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QPKCG2B2XC9C53GT.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QPKCG2B2XC9C53GT.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13385" - }, - "appliesTo" : [ ] - }, - "QPKCG2B2XC9C53GT.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QPKCG2B2XC9C53GT.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QPKCG2B2XC9C53GT.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QPKCG2B2XC9C53GT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QPKCG2B2XC9C53GT.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QPKCG2B2XC9C53GT.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7300000000" - }, - "appliesTo" : [ ] - }, - "QPKCG2B2XC9C53GT.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QPKCG2B2XC9C53GT.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19183" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QPKCG2B2XC9C53GT.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "QPKCG2B2XC9C53GT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QPKCG2B2XC9C53GT.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "QPKCG2B2XC9C53GT.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QPKCG2B2XC9C53GT.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "QPKCG2B2XC9C53GT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QPKCG2B2XC9C53GT.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "QPKCG2B2XC9C53GT.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6844" - }, - "appliesTo" : [ ] - }, - "QPKCG2B2XC9C53GT.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "QPKCG2B2XC9C53GT.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QPKCG2B2XC9C53GT.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QPKCG2B2XC9C53GT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QPKCG2B2XC9C53GT.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QPKCG2B2XC9C53GT.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6710" - }, - "appliesTo" : [ ] - }, - "QPKCG2B2XC9C53GT.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QPKCG2B2XC9C53GT.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QPKCG2B2XC9C53GT.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "QPKCG2B2XC9C53GT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QPKCG2B2XC9C53GT.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "QPKCG2B2XC9C53GT.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13647" - }, - "appliesTo" : [ ] - }, - "QPKCG2B2XC9C53GT.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "QPKCG2B2XC9C53GT.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QPKCG2B2XC9C53GT.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QPKCG2B2XC9C53GT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QPKCG2B2XC9C53GT.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QPKCG2B2XC9C53GT.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "3EM3XGHPBHA5A7G9" : { - "3EM3XGHPBHA5A7G9.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "3EM3XGHPBHA5A7G9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3EM3XGHPBHA5A7G9.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "3EM3XGHPBHA5A7G9.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14459" - }, - "appliesTo" : [ ] - }, - "3EM3XGHPBHA5A7G9.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "3EM3XGHPBHA5A7G9.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3EM3XGHPBHA5A7G9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "3EM3XGHPBHA5A7G9", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "3EM3XGHPBHA5A7G9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "3EM3XGHPBHA5A7G9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "3EM3XGHPBHA5A7G9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "3EM3XGHPBHA5A7G9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25215" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3EM3XGHPBHA5A7G9.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "3EM3XGHPBHA5A7G9", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "3EM3XGHPBHA5A7G9.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "3EM3XGHPBHA5A7G9.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3EM3XGHPBHA5A7G9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "3EM3XGHPBHA5A7G9", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "3EM3XGHPBHA5A7G9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "3EM3XGHPBHA5A7G9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16054" - }, - "appliesTo" : [ ] - }, - "3EM3XGHPBHA5A7G9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "3EM3XGHPBHA5A7G9.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3EM3XGHPBHA5A7G9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "3EM3XGHPBHA5A7G9", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "3EM3XGHPBHA5A7G9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "3EM3XGHPBHA5A7G9.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "3EM3XGHPBHA5A7G9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "3EM3XGHPBHA5A7G9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12654" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3EM3XGHPBHA5A7G9.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "3EM3XGHPBHA5A7G9", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "3EM3XGHPBHA5A7G9.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "3EM3XGHPBHA5A7G9.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22554" - }, - "appliesTo" : [ ] - }, - "3EM3XGHPBHA5A7G9.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "3EM3XGHPBHA5A7G9.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3EM3XGHPBHA5A7G9.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "3EM3XGHPBHA5A7G9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3EM3XGHPBHA5A7G9.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "3EM3XGHPBHA5A7G9.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3EM3XGHPBHA5A7G9.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "3EM3XGHPBHA5A7G9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3EM3XGHPBHA5A7G9.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "3EM3XGHPBHA5A7G9.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8380000000" - }, - "appliesTo" : [ ] - }, - "3EM3XGHPBHA5A7G9.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "3EM3XGHPBHA5A7G9.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7405" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3EM3XGHPBHA5A7G9.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "3EM3XGHPBHA5A7G9", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "3EM3XGHPBHA5A7G9.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "3EM3XGHPBHA5A7G9.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "3EM3XGHPBHA5A7G9.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "3EM3XGHPBHA5A7G9.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34077" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3EM3XGHPBHA5A7G9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "3EM3XGHPBHA5A7G9", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "3EM3XGHPBHA5A7G9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "3EM3XGHPBHA5A7G9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8399" - }, - "appliesTo" : [ ] - }, - "3EM3XGHPBHA5A7G9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "3EM3XGHPBHA5A7G9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3EM3XGHPBHA5A7G9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "3EM3XGHPBHA5A7G9", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "3EM3XGHPBHA5A7G9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "3EM3XGHPBHA5A7G9.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "P4S7RSCXQEBBBKQF" : { - "P4S7RSCXQEBBBKQF.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "P4S7RSCXQEBBBKQF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "P4S7RSCXQEBBBKQF.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "P4S7RSCXQEBBBKQF.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0561000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "P4S7RSCXQEBBBKQF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "P4S7RSCXQEBBBKQF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "P4S7RSCXQEBBBKQF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "P4S7RSCXQEBBBKQF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "596" - }, - "appliesTo" : [ ] - }, - "P4S7RSCXQEBBBKQF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "P4S7RSCXQEBBBKQF.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0223000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "P4S7RSCXQEBBBKQF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "P4S7RSCXQEBBBKQF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "P4S7RSCXQEBBBKQF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "P4S7RSCXQEBBBKQF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "525" - }, - "appliesTo" : [ ] - }, - "P4S7RSCXQEBBBKQF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "P4S7RSCXQEBBBKQF.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "P4S7RSCXQEBBBKQF.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "P4S7RSCXQEBBBKQF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "P4S7RSCXQEBBBKQF.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "P4S7RSCXQEBBBKQF.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "632" - }, - "appliesTo" : [ ] - }, - "P4S7RSCXQEBBBKQF.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "P4S7RSCXQEBBBKQF.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0237000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "P4S7RSCXQEBBBKQF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "P4S7RSCXQEBBBKQF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "P4S7RSCXQEBBBKQF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "P4S7RSCXQEBBBKQF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1152" - }, - "appliesTo" : [ ] - }, - "P4S7RSCXQEBBBKQF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "P4S7RSCXQEBBBKQF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "P4S7RSCXQEBBBKQF.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "P4S7RSCXQEBBBKQF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P4S7RSCXQEBBBKQF.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "P4S7RSCXQEBBBKQF.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "314" - }, - "appliesTo" : [ ] - }, - "P4S7RSCXQEBBBKQF.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "P4S7RSCXQEBBBKQF.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0287000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "P4S7RSCXQEBBBKQF.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "P4S7RSCXQEBBBKQF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "P4S7RSCXQEBBBKQF.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "P4S7RSCXQEBBBKQF.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0617000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "P4S7RSCXQEBBBKQF.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "P4S7RSCXQEBBBKQF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P4S7RSCXQEBBBKQF.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "P4S7RSCXQEBBBKQF.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0661000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "P4S7RSCXQEBBBKQF.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "P4S7RSCXQEBBBKQF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "P4S7RSCXQEBBBKQF.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "P4S7RSCXQEBBBKQF.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "P4S7RSCXQEBBBKQF.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "P4S7RSCXQEBBBKQF.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1244" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "P4S7RSCXQEBBBKQF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "P4S7RSCXQEBBBKQF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "P4S7RSCXQEBBBKQF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "P4S7RSCXQEBBBKQF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "296" - }, - "appliesTo" : [ ] - }, - "P4S7RSCXQEBBBKQF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "P4S7RSCXQEBBBKQF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0267000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "P4S7RSCXQEBBBKQF.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "P4S7RSCXQEBBBKQF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "P4S7RSCXQEBBBKQF.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "P4S7RSCXQEBBBKQF.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "P4S7RSCXQEBBBKQF.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "P4S7RSCXQEBBBKQF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P4S7RSCXQEBBBKQF.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "P4S7RSCXQEBBBKQF.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "P4S7RSCXQEBBBKQF.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "P4S7RSCXQEBBBKQF.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "560" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "M62BQXUWYDM97G4U" : { - "M62BQXUWYDM97G4U.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "M62BQXUWYDM97G4U", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "M62BQXUWYDM97G4U.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "M62BQXUWYDM97G4U.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "94661" - }, - "appliesTo" : [ ] - }, - "M62BQXUWYDM97G4U.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "M62BQXUWYDM97G4U.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "M62BQXUWYDM97G4U.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "M62BQXUWYDM97G4U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M62BQXUWYDM97G4U.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "M62BQXUWYDM97G4U.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3153000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "M62BQXUWYDM97G4U.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "M62BQXUWYDM97G4U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M62BQXUWYDM97G4U.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "M62BQXUWYDM97G4U.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "95559" - }, - "appliesTo" : [ ] - }, - "M62BQXUWYDM97G4U.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "M62BQXUWYDM97G4U.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6362000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "M62BQXUWYDM97G4U.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "M62BQXUWYDM97G4U", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "M62BQXUWYDM97G4U.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "M62BQXUWYDM97G4U.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "M62BQXUWYDM97G4U.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "M62BQXUWYDM97G4U.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "65034" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "M62BQXUWYDM97G4U.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "M62BQXUWYDM97G4U", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "M62BQXUWYDM97G4U.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "M62BQXUWYDM97G4U.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "188583" - }, - "appliesTo" : [ ] - }, - "M62BQXUWYDM97G4U.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "M62BQXUWYDM97G4U.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "M62BQXUWYDM97G4U.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "M62BQXUWYDM97G4U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M62BQXUWYDM97G4U.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "M62BQXUWYDM97G4U.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5861000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "M62BQXUWYDM97G4U.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "M62BQXUWYDM97G4U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M62BQXUWYDM97G4U.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "M62BQXUWYDM97G4U.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4752000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "M62BQXUWYDM97G4U.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "M62BQXUWYDM97G4U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M62BQXUWYDM97G4U.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "M62BQXUWYDM97G4U.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33050" - }, - "appliesTo" : [ ] - }, - "M62BQXUWYDM97G4U.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "M62BQXUWYDM97G4U.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7728000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "M62BQXUWYDM97G4U.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "M62BQXUWYDM97G4U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M62BQXUWYDM97G4U.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "M62BQXUWYDM97G4U.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.2397000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "M62BQXUWYDM97G4U.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "M62BQXUWYDM97G4U", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "M62BQXUWYDM97G4U.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "M62BQXUWYDM97G4U.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7190000000" - }, - "appliesTo" : [ ] - }, - "M62BQXUWYDM97G4U.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "M62BQXUWYDM97G4U.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32578" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "M62BQXUWYDM97G4U.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "M62BQXUWYDM97G4U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M62BQXUWYDM97G4U.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "M62BQXUWYDM97G4U.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "190836" - }, - "appliesTo" : [ ] - }, - "M62BQXUWYDM97G4U.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "M62BQXUWYDM97G4U.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "M62BQXUWYDM97G4U.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "M62BQXUWYDM97G4U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M62BQXUWYDM97G4U.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "M62BQXUWYDM97G4U.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "65958" - }, - "appliesTo" : [ ] - }, - "M62BQXUWYDM97G4U.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "M62BQXUWYDM97G4U.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "V6J3XRHZNGUJMG3Z" : { - "V6J3XRHZNGUJMG3Z.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "V6J3XRHZNGUJMG3Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V6J3XRHZNGUJMG3Z.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "V6J3XRHZNGUJMG3Z.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "209372" - }, - "appliesTo" : [ ] - }, - "V6J3XRHZNGUJMG3Z.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "V6J3XRHZNGUJMG3Z.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "V6J3XRHZNGUJMG3Z.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "V6J3XRHZNGUJMG3Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V6J3XRHZNGUJMG3Z.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "V6J3XRHZNGUJMG3Z.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "102863" - }, - "appliesTo" : [ ] - }, - "V6J3XRHZNGUJMG3Z.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "V6J3XRHZNGUJMG3Z.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "V6J3XRHZNGUJMG3Z.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "V6J3XRHZNGUJMG3Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V6J3XRHZNGUJMG3Z.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "V6J3XRHZNGUJMG3Z.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "204004" - }, - "appliesTo" : [ ] - }, - "V6J3XRHZNGUJMG3Z.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "V6J3XRHZNGUJMG3Z.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "V6J3XRHZNGUJMG3Z.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "V6J3XRHZNGUJMG3Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V6J3XRHZNGUJMG3Z.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "V6J3XRHZNGUJMG3Z.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9960000000" - }, - "appliesTo" : [ ] - }, - "V6J3XRHZNGUJMG3Z.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "V6J3XRHZNGUJMG3Z.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "105016" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "V6J3XRHZNGUJMG3Z.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "V6J3XRHZNGUJMG3Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V6J3XRHZNGUJMG3Z.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "V6J3XRHZNGUJMG3Z.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.9160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "V6J3XRHZNGUJMG3Z.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "V6J3XRHZNGUJMG3Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V6J3XRHZNGUJMG3Z.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "V6J3XRHZNGUJMG3Z.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "80269" - }, - "appliesTo" : [ ] - }, - "V6J3XRHZNGUJMG3Z.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "V6J3XRHZNGUJMG3Z.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "V6J3XRHZNGUJMG3Z.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "V6J3XRHZNGUJMG3Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V6J3XRHZNGUJMG3Z.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "V6J3XRHZNGUJMG3Z.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "40352" - }, - "appliesTo" : [ ] - }, - "V6J3XRHZNGUJMG3Z.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "V6J3XRHZNGUJMG3Z.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.6060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "V6J3XRHZNGUJMG3Z.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "V6J3XRHZNGUJMG3Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V6J3XRHZNGUJMG3Z.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "V6J3XRHZNGUJMG3Z.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.3370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "V6J3XRHZNGUJMG3Z.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "V6J3XRHZNGUJMG3Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V6J3XRHZNGUJMG3Z.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "V6J3XRHZNGUJMG3Z.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38937" - }, - "appliesTo" : [ ] - }, - "V6J3XRHZNGUJMG3Z.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "V6J3XRHZNGUJMG3Z.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.4450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "V6J3XRHZNGUJMG3Z.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "V6J3XRHZNGUJMG3Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V6J3XRHZNGUJMG3Z.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "V6J3XRHZNGUJMG3Z.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "77496" - }, - "appliesTo" : [ ] - }, - "V6J3XRHZNGUJMG3Z.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "V6J3XRHZNGUJMG3Z.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "V6J3XRHZNGUJMG3Z.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "V6J3XRHZNGUJMG3Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V6J3XRHZNGUJMG3Z.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "V6J3XRHZNGUJMG3Z.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.9970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "V6J3XRHZNGUJMG3Z.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "V6J3XRHZNGUJMG3Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V6J3XRHZNGUJMG3Z.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "V6J3XRHZNGUJMG3Z.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.0930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "FVBHJHDCMPPWYN7V" : { - "FVBHJHDCMPPWYN7V.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "FVBHJHDCMPPWYN7V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FVBHJHDCMPPWYN7V.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "FVBHJHDCMPPWYN7V.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2210000000" - }, - "appliesTo" : [ ] - }, - "FVBHJHDCMPPWYN7V.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "FVBHJHDCMPPWYN7V.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1936" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FVBHJHDCMPPWYN7V.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "FVBHJHDCMPPWYN7V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FVBHJHDCMPPWYN7V.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "FVBHJHDCMPPWYN7V.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FVBHJHDCMPPWYN7V.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "FVBHJHDCMPPWYN7V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FVBHJHDCMPPWYN7V.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "FVBHJHDCMPPWYN7V.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FVBHJHDCMPPWYN7V.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "FVBHJHDCMPPWYN7V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FVBHJHDCMPPWYN7V.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "FVBHJHDCMPPWYN7V.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9397" - }, - "appliesTo" : [ ] - }, - "FVBHJHDCMPPWYN7V.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "FVBHJHDCMPPWYN7V.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FVBHJHDCMPPWYN7V.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "FVBHJHDCMPPWYN7V", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "FVBHJHDCMPPWYN7V.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "FVBHJHDCMPPWYN7V.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1783" - }, - "appliesTo" : [ ] - }, - "FVBHJHDCMPPWYN7V.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "FVBHJHDCMPPWYN7V.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FVBHJHDCMPPWYN7V.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "FVBHJHDCMPPWYN7V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FVBHJHDCMPPWYN7V.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "FVBHJHDCMPPWYN7V.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "FVBHJHDCMPPWYN7V.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "FVBHJHDCMPPWYN7V.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3827" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FVBHJHDCMPPWYN7V.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "FVBHJHDCMPPWYN7V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FVBHJHDCMPPWYN7V.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "FVBHJHDCMPPWYN7V.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FVBHJHDCMPPWYN7V.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "FVBHJHDCMPPWYN7V", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "FVBHJHDCMPPWYN7V.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "FVBHJHDCMPPWYN7V.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "FVBHJHDCMPPWYN7V.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "FVBHJHDCMPPWYN7V.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3527" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FVBHJHDCMPPWYN7V.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "FVBHJHDCMPPWYN7V", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "FVBHJHDCMPPWYN7V.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "FVBHJHDCMPPWYN7V.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8651" - }, - "appliesTo" : [ ] - }, - "FVBHJHDCMPPWYN7V.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "FVBHJHDCMPPWYN7V.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FVBHJHDCMPPWYN7V.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "FVBHJHDCMPPWYN7V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FVBHJHDCMPPWYN7V.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "FVBHJHDCMPPWYN7V.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FVBHJHDCMPPWYN7V.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "FVBHJHDCMPPWYN7V", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "FVBHJHDCMPPWYN7V.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "FVBHJHDCMPPWYN7V.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4447" - }, - "appliesTo" : [ ] - }, - "FVBHJHDCMPPWYN7V.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "FVBHJHDCMPPWYN7V.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FVBHJHDCMPPWYN7V.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "FVBHJHDCMPPWYN7V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FVBHJHDCMPPWYN7V.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "FVBHJHDCMPPWYN7V.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4745" - }, - "appliesTo" : [ ] - }, - "FVBHJHDCMPPWYN7V.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "FVBHJHDCMPPWYN7V.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "P6GWCP7NZJR2VSTT" : { - "P6GWCP7NZJR2VSTT.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "P6GWCP7NZJR2VSTT", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "P6GWCP7NZJR2VSTT.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "P6GWCP7NZJR2VSTT.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1031" - }, - "appliesTo" : [ ] - }, - "P6GWCP7NZJR2VSTT.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "P6GWCP7NZJR2VSTT.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "P6GWCP7NZJR2VSTT.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "P6GWCP7NZJR2VSTT", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "P6GWCP7NZJR2VSTT.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "P6GWCP7NZJR2VSTT.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2075" - }, - "appliesTo" : [ ] - }, - "P6GWCP7NZJR2VSTT.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "P6GWCP7NZJR2VSTT.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "P6GWCP7NZJR2VSTT.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "P6GWCP7NZJR2VSTT", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "P6GWCP7NZJR2VSTT.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "P6GWCP7NZJR2VSTT.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0430000000" - }, - "appliesTo" : [ ] - }, - "P6GWCP7NZJR2VSTT.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "P6GWCP7NZJR2VSTT.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1081" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "P6GWCP7NZJR2VSTT.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "P6GWCP7NZJR2VSTT", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "P6GWCP7NZJR2VSTT.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "P6GWCP7NZJR2VSTT.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "639" - }, - "appliesTo" : [ ] - }, - "P6GWCP7NZJR2VSTT.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "P6GWCP7NZJR2VSTT.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "P6GWCP7NZJR2VSTT.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "P6GWCP7NZJR2VSTT", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "P6GWCP7NZJR2VSTT.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "P6GWCP7NZJR2VSTT.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "QCXEYVM3Y3JDE2QA" : { - "QCXEYVM3Y3JDE2QA.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QCXEYVM3Y3JDE2QA", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "QCXEYVM3Y3JDE2QA.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QCXEYVM3Y3JDE2QA.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1830000000" - }, - "appliesTo" : [ ] - }, - "QCXEYVM3Y3JDE2QA.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QCXEYVM3Y3JDE2QA.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10365" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QCXEYVM3Y3JDE2QA.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "QCXEYVM3Y3JDE2QA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QCXEYVM3Y3JDE2QA.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "QCXEYVM3Y3JDE2QA.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QCXEYVM3Y3JDE2QA.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "QCXEYVM3Y3JDE2QA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QCXEYVM3Y3JDE2QA.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "QCXEYVM3Y3JDE2QA.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23984" - }, - "appliesTo" : [ ] - }, - "QCXEYVM3Y3JDE2QA.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "QCXEYVM3Y3JDE2QA.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QCXEYVM3Y3JDE2QA.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "QCXEYVM3Y3JDE2QA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QCXEYVM3Y3JDE2QA.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "QCXEYVM3Y3JDE2QA.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "58172" - }, - "appliesTo" : [ ] - }, - "QCXEYVM3Y3JDE2QA.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "QCXEYVM3Y3JDE2QA.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QCXEYVM3Y3JDE2QA.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QCXEYVM3Y3JDE2QA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QCXEYVM3Y3JDE2QA.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QCXEYVM3Y3JDE2QA.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QCXEYVM3Y3JDE2QA.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "QCXEYVM3Y3JDE2QA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QCXEYVM3Y3JDE2QA.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "QCXEYVM3Y3JDE2QA.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3800000000" - }, - "appliesTo" : [ ] - }, - "QCXEYVM3Y3JDE2QA.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "QCXEYVM3Y3JDE2QA.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12089" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QCXEYVM3Y3JDE2QA.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "QCXEYVM3Y3JDE2QA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QCXEYVM3Y3JDE2QA.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "QCXEYVM3Y3JDE2QA.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QCXEYVM3Y3JDE2QA.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QCXEYVM3Y3JDE2QA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QCXEYVM3Y3JDE2QA.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QCXEYVM3Y3JDE2QA.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QCXEYVM3Y3JDE2QA.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QCXEYVM3Y3JDE2QA.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47433" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QCXEYVM3Y3JDE2QA.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "QCXEYVM3Y3JDE2QA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QCXEYVM3Y3JDE2QA.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "QCXEYVM3Y3JDE2QA.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29678" - }, - "appliesTo" : [ ] - }, - "QCXEYVM3Y3JDE2QA.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "QCXEYVM3Y3JDE2QA.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QCXEYVM3Y3JDE2QA.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "QCXEYVM3Y3JDE2QA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QCXEYVM3Y3JDE2QA.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "QCXEYVM3Y3JDE2QA.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QCXEYVM3Y3JDE2QA.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QCXEYVM3Y3JDE2QA", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "QCXEYVM3Y3JDE2QA.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QCXEYVM3Y3JDE2QA.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25231" - }, - "appliesTo" : [ ] - }, - "QCXEYVM3Y3JDE2QA.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QCXEYVM3Y3JDE2QA.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QCXEYVM3Y3JDE2QA.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QCXEYVM3Y3JDE2QA", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "QCXEYVM3Y3JDE2QA.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QCXEYVM3Y3JDE2QA.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QCXEYVM3Y3JDE2QA.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QCXEYVM3Y3JDE2QA.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20312" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "9GWTW8S686K9W5FP" : { - "9GWTW8S686K9W5FP.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "9GWTW8S686K9W5FP", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "9GWTW8S686K9W5FP.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "9GWTW8S686K9W5FP.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "704" - }, - "appliesTo" : [ ] - }, - "9GWTW8S686K9W5FP.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "9GWTW8S686K9W5FP.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9GWTW8S686K9W5FP.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "9GWTW8S686K9W5FP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9GWTW8S686K9W5FP.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "9GWTW8S686K9W5FP.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9GWTW8S686K9W5FP.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "9GWTW8S686K9W5FP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9GWTW8S686K9W5FP.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "9GWTW8S686K9W5FP.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1749" - }, - "appliesTo" : [ ] - }, - "9GWTW8S686K9W5FP.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "9GWTW8S686K9W5FP.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9GWTW8S686K9W5FP.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "9GWTW8S686K9W5FP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9GWTW8S686K9W5FP.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "9GWTW8S686K9W5FP.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4117" - }, - "appliesTo" : [ ] - }, - "9GWTW8S686K9W5FP.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "9GWTW8S686K9W5FP.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9GWTW8S686K9W5FP.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "9GWTW8S686K9W5FP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9GWTW8S686K9W5FP.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "9GWTW8S686K9W5FP.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1738" - }, - "appliesTo" : [ ] - }, - "9GWTW8S686K9W5FP.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "9GWTW8S686K9W5FP.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "25A2HQUGG7F7ZU2J" : { - "25A2HQUGG7F7ZU2J.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "25A2HQUGG7F7ZU2J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "25A2HQUGG7F7ZU2J.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "25A2HQUGG7F7ZU2J.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "25A2HQUGG7F7ZU2J.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "25A2HQUGG7F7ZU2J.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4622" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "25A2HQUGG7F7ZU2J.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "25A2HQUGG7F7ZU2J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "25A2HQUGG7F7ZU2J.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "25A2HQUGG7F7ZU2J.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "25A2HQUGG7F7ZU2J.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "25A2HQUGG7F7ZU2J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "25A2HQUGG7F7ZU2J.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "25A2HQUGG7F7ZU2J.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2358" - }, - "appliesTo" : [ ] - }, - "25A2HQUGG7F7ZU2J.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "25A2HQUGG7F7ZU2J.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "25A2HQUGG7F7ZU2J.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "25A2HQUGG7F7ZU2J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "25A2HQUGG7F7ZU2J.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "25A2HQUGG7F7ZU2J.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3588" - }, - "appliesTo" : [ ] - }, - "25A2HQUGG7F7ZU2J.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "25A2HQUGG7F7ZU2J.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "25A2HQUGG7F7ZU2J.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "25A2HQUGG7F7ZU2J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "25A2HQUGG7F7ZU2J.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "25A2HQUGG7F7ZU2J.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6745" - }, - "appliesTo" : [ ] - }, - "25A2HQUGG7F7ZU2J.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "25A2HQUGG7F7ZU2J.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "25A2HQUGG7F7ZU2J.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "25A2HQUGG7F7ZU2J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "25A2HQUGG7F7ZU2J.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "25A2HQUGG7F7ZU2J.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "88VG68PMGN3M4ZEY" : { - "88VG68PMGN3M4ZEY.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "88VG68PMGN3M4ZEY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "88VG68PMGN3M4ZEY.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "88VG68PMGN3M4ZEY.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "67232" - }, - "appliesTo" : [ ] - }, - "88VG68PMGN3M4ZEY.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "88VG68PMGN3M4ZEY.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "88VG68PMGN3M4ZEY.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "88VG68PMGN3M4ZEY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "88VG68PMGN3M4ZEY.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "88VG68PMGN3M4ZEY.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "88VG68PMGN3M4ZEY.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "88VG68PMGN3M4ZEY.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "77317" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "88VG68PMGN3M4ZEY.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "88VG68PMGN3M4ZEY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "88VG68PMGN3M4ZEY.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "88VG68PMGN3M4ZEY.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "88VG68PMGN3M4ZEY.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "88VG68PMGN3M4ZEY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "88VG68PMGN3M4ZEY.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "88VG68PMGN3M4ZEY.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.2230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "88VG68PMGN3M4ZEY.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "88VG68PMGN3M4ZEY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "88VG68PMGN3M4ZEY.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "88VG68PMGN3M4ZEY.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34302" - }, - "appliesTo" : [ ] - }, - "88VG68PMGN3M4ZEY.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "88VG68PMGN3M4ZEY.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "88VG68PMGN3M4ZEY.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "88VG68PMGN3M4ZEY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "88VG68PMGN3M4ZEY.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "88VG68PMGN3M4ZEY.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "117635" - }, - "appliesTo" : [ ] - }, - "88VG68PMGN3M4ZEY.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "88VG68PMGN3M4ZEY.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "88VG68PMGN3M4ZEY.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "88VG68PMGN3M4ZEY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "88VG68PMGN3M4ZEY.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "88VG68PMGN3M4ZEY.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5030000000" - }, - "appliesTo" : [ ] - }, - "88VG68PMGN3M4ZEY.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "88VG68PMGN3M4ZEY.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39447" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "88VG68PMGN3M4ZEY.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "88VG68PMGN3M4ZEY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "88VG68PMGN3M4ZEY.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "88VG68PMGN3M4ZEY.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "88VG68PMGN3M4ZEY.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "88VG68PMGN3M4ZEY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "88VG68PMGN3M4ZEY.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "88VG68PMGN3M4ZEY.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.4570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "88VG68PMGN3M4ZEY.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "88VG68PMGN3M4ZEY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "88VG68PMGN3M4ZEY.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "88VG68PMGN3M4ZEY.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "98116" - }, - "appliesTo" : [ ] - }, - "88VG68PMGN3M4ZEY.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "88VG68PMGN3M4ZEY.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "88VG68PMGN3M4ZEY.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "88VG68PMGN3M4ZEY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "88VG68PMGN3M4ZEY.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "88VG68PMGN3M4ZEY.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "52189" - }, - "appliesTo" : [ ] - }, - "88VG68PMGN3M4ZEY.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "88VG68PMGN3M4ZEY.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "88VG68PMGN3M4ZEY.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "88VG68PMGN3M4ZEY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "88VG68PMGN3M4ZEY.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "88VG68PMGN3M4ZEY.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "60018" - }, - "appliesTo" : [ ] - }, - "88VG68PMGN3M4ZEY.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "88VG68PMGN3M4ZEY.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "639ZEB9D49ASFB26" : { - "639ZEB9D49ASFB26.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "639ZEB9D49ASFB26", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "639ZEB9D49ASFB26.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "639ZEB9D49ASFB26.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), t1.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "639ZEB9D49ASFB26.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "639ZEB9D49ASFB26.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "103" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "639ZEB9D49ASFB26.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "639ZEB9D49ASFB26", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "639ZEB9D49ASFB26.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "639ZEB9D49ASFB26.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "62" - }, - "appliesTo" : [ ] - }, - "639ZEB9D49ASFB26.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "639ZEB9D49ASFB26.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t1.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "639ZEB9D49ASFB26.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "639ZEB9D49ASFB26", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "639ZEB9D49ASFB26.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "639ZEB9D49ASFB26.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "217" - }, - "appliesTo" : [ ] - }, - "639ZEB9D49ASFB26.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "639ZEB9D49ASFB26.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), t1.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "639ZEB9D49ASFB26.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "639ZEB9D49ASFB26", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "639ZEB9D49ASFB26.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "639ZEB9D49ASFB26.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t1.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "639ZEB9D49ASFB26.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "639ZEB9D49ASFB26", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "639ZEB9D49ASFB26.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "639ZEB9D49ASFB26.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "100" - }, - "appliesTo" : [ ] - }, - "639ZEB9D49ASFB26.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "639ZEB9D49ASFB26.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t1.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "XKKYTV6J2N4E3GXA" : { - "XKKYTV6J2N4E3GXA.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XKKYTV6J2N4E3GXA", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "XKKYTV6J2N4E3GXA.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XKKYTV6J2N4E3GXA.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "67489" - }, - "appliesTo" : [ ] - }, - "XKKYTV6J2N4E3GXA.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XKKYTV6J2N4E3GXA.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XKKYTV6J2N4E3GXA.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XKKYTV6J2N4E3GXA", - "effectiveDate" : "2016-06-30T23:59:59Z", - "priceDimensions" : { - "XKKYTV6J2N4E3GXA.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XKKYTV6J2N4E3GXA.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9270000000" - }, - "appliesTo" : [ ] - }, - "XKKYTV6J2N4E3GXA.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XKKYTV6J2N4E3GXA.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34461" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XKKYTV6J2N4E3GXA.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "XKKYTV6J2N4E3GXA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XKKYTV6J2N4E3GXA.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "XKKYTV6J2N4E3GXA.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "77571" - }, - "appliesTo" : [ ] - }, - "XKKYTV6J2N4E3GXA.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "XKKYTV6J2N4E3GXA.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XKKYTV6J2N4E3GXA.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "XKKYTV6J2N4E3GXA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XKKYTV6J2N4E3GXA.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "XKKYTV6J2N4E3GXA.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "60342" - }, - "appliesTo" : [ ] - }, - "XKKYTV6J2N4E3GXA.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "XKKYTV6J2N4E3GXA.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XKKYTV6J2N4E3GXA.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "XKKYTV6J2N4E3GXA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XKKYTV6J2N4E3GXA.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "XKKYTV6J2N4E3GXA.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.3210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XKKYTV6J2N4E3GXA.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "XKKYTV6J2N4E3GXA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XKKYTV6J2N4E3GXA.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "XKKYTV6J2N4E3GXA.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39605" - }, - "appliesTo" : [ ] - }, - "XKKYTV6J2N4E3GXA.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "XKKYTV6J2N4E3GXA.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XKKYTV6J2N4E3GXA.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "XKKYTV6J2N4E3GXA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XKKYTV6J2N4E3GXA.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "XKKYTV6J2N4E3GXA.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.4850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XKKYTV6J2N4E3GXA.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XKKYTV6J2N4E3GXA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XKKYTV6J2N4E3GXA.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XKKYTV6J2N4E3GXA.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.2520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XKKYTV6J2N4E3GXA.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XKKYTV6J2N4E3GXA", - "effectiveDate" : "2016-05-31T23:59:59Z", - "priceDimensions" : { - "XKKYTV6J2N4E3GXA.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XKKYTV6J2N4E3GXA.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "52518" - }, - "appliesTo" : [ ] - }, - "XKKYTV6J2N4E3GXA.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XKKYTV6J2N4E3GXA.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XKKYTV6J2N4E3GXA.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "XKKYTV6J2N4E3GXA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XKKYTV6J2N4E3GXA.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "XKKYTV6J2N4E3GXA.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "118275" - }, - "appliesTo" : [ ] - }, - "XKKYTV6J2N4E3GXA.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "XKKYTV6J2N4E3GXA.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XKKYTV6J2N4E3GXA.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "XKKYTV6J2N4E3GXA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XKKYTV6J2N4E3GXA.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "XKKYTV6J2N4E3GXA.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XKKYTV6J2N4E3GXA.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XKKYTV6J2N4E3GXA", - "effectiveDate" : "2016-06-30T23:59:59Z", - "priceDimensions" : { - "XKKYTV6J2N4E3GXA.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XKKYTV6J2N4E3GXA.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "98766" - }, - "appliesTo" : [ ] - }, - "XKKYTV6J2N4E3GXA.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XKKYTV6J2N4E3GXA.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "WT63RNHXYTKJPT3V" : { - "WT63RNHXYTKJPT3V.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "WT63RNHXYTKJPT3V", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "WT63RNHXYTKJPT3V.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "WT63RNHXYTKJPT3V.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5771" - }, - "appliesTo" : [ ] - }, - "WT63RNHXYTKJPT3V.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "WT63RNHXYTKJPT3V.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WT63RNHXYTKJPT3V.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "WT63RNHXYTKJPT3V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WT63RNHXYTKJPT3V.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "WT63RNHXYTKJPT3V.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8058000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WT63RNHXYTKJPT3V.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "WT63RNHXYTKJPT3V", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "WT63RNHXYTKJPT3V.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "WT63RNHXYTKJPT3V.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "WT63RNHXYTKJPT3V.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "WT63RNHXYTKJPT3V.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11208" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WT63RNHXYTKJPT3V.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "WT63RNHXYTKJPT3V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "WT63RNHXYTKJPT3V.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "WT63RNHXYTKJPT3V.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6759" - }, - "appliesTo" : [ ] - }, - "WT63RNHXYTKJPT3V.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "WT63RNHXYTKJPT3V.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2568000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WT63RNHXYTKJPT3V.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "WT63RNHXYTKJPT3V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "WT63RNHXYTKJPT3V.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "WT63RNHXYTKJPT3V.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2260000000" - }, - "appliesTo" : [ ] - }, - "WT63RNHXYTKJPT3V.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "WT63RNHXYTKJPT3V.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5944" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WT63RNHXYTKJPT3V.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "WT63RNHXYTKJPT3V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "WT63RNHXYTKJPT3V.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "WT63RNHXYTKJPT3V.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13252" - }, - "appliesTo" : [ ] - }, - "WT63RNHXYTKJPT3V.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "WT63RNHXYTKJPT3V.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WT63RNHXYTKJPT3V.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "WT63RNHXYTKJPT3V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WT63RNHXYTKJPT3V.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "WT63RNHXYTKJPT3V.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3810000000" - }, - "appliesTo" : [ ] - }, - "WT63RNHXYTKJPT3V.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "WT63RNHXYTKJPT3V.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3400" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WT63RNHXYTKJPT3V.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "WT63RNHXYTKJPT3V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "WT63RNHXYTKJPT3V.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "WT63RNHXYTKJPT3V.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5596000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WT63RNHXYTKJPT3V.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "WT63RNHXYTKJPT3V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WT63RNHXYTKJPT3V.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "WT63RNHXYTKJPT3V.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6608" - }, - "appliesTo" : [ ] - }, - "WT63RNHXYTKJPT3V.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "WT63RNHXYTKJPT3V.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WT63RNHXYTKJPT3V.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "WT63RNHXYTKJPT3V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "WT63RNHXYTKJPT3V.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "WT63RNHXYTKJPT3V.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4909000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "WT63RNHXYTKJPT3V.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "WT63RNHXYTKJPT3V", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "WT63RNHXYTKJPT3V.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "WT63RNHXYTKJPT3V.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2972" - }, - "appliesTo" : [ ] - }, - "WT63RNHXYTKJPT3V.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "WT63RNHXYTKJPT3V.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WT63RNHXYTKJPT3V.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "WT63RNHXYTKJPT3V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "WT63RNHXYTKJPT3V.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "WT63RNHXYTKJPT3V.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "HHBS2UFCC9G8F3DM" : { - "HHBS2UFCC9G8F3DM.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "HHBS2UFCC9G8F3DM", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "HHBS2UFCC9G8F3DM.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "HHBS2UFCC9G8F3DM.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "235" - }, - "appliesTo" : [ ] - }, - "HHBS2UFCC9G8F3DM.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "HHBS2UFCC9G8F3DM.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HHBS2UFCC9G8F3DM.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "HHBS2UFCC9G8F3DM", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "HHBS2UFCC9G8F3DM.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "HHBS2UFCC9G8F3DM.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "HHBS2UFCC9G8F3DM.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "HHBS2UFCC9G8F3DM", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "HHBS2UFCC9G8F3DM.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "HHBS2UFCC9G8F3DM.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "458" - }, - "appliesTo" : [ ] - }, - "HHBS2UFCC9G8F3DM.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "HHBS2UFCC9G8F3DM.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HHBS2UFCC9G8F3DM.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "HHBS2UFCC9G8F3DM", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "HHBS2UFCC9G8F3DM.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "HHBS2UFCC9G8F3DM.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "120" - }, - "appliesTo" : [ ] - }, - "HHBS2UFCC9G8F3DM.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "HHBS2UFCC9G8F3DM.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0137000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HHBS2UFCC9G8F3DM.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "HHBS2UFCC9G8F3DM", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "HHBS2UFCC9G8F3DM.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "HHBS2UFCC9G8F3DM.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0287000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "HHBS2UFCC9G8F3DM.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "HHBS2UFCC9G8F3DM", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "HHBS2UFCC9G8F3DM.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "HHBS2UFCC9G8F3DM.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "244" - }, - "appliesTo" : [ ] - }, - "HHBS2UFCC9G8F3DM.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "HHBS2UFCC9G8F3DM.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0093000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "KD8DVSJPFVSX354N" : { - "KD8DVSJPFVSX354N.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "KD8DVSJPFVSX354N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KD8DVSJPFVSX354N.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "KD8DVSJPFVSX354N.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "198417" - }, - "appliesTo" : [ ] - }, - "KD8DVSJPFVSX354N.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "KD8DVSJPFVSX354N.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KD8DVSJPFVSX354N.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "KD8DVSJPFVSX354N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KD8DVSJPFVSX354N.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "KD8DVSJPFVSX354N.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.4240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KD8DVSJPFVSX354N.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "KD8DVSJPFVSX354N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KD8DVSJPFVSX354N.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "KD8DVSJPFVSX354N.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6490000000" - }, - "appliesTo" : [ ] - }, - "KD8DVSJPFVSX354N.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "KD8DVSJPFVSX354N.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "95894" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KD8DVSJPFVSX354N.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "KD8DVSJPFVSX354N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KD8DVSJPFVSX354N.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "KD8DVSJPFVSX354N.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "99809" - }, - "appliesTo" : [ ] - }, - "KD8DVSJPFVSX354N.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "KD8DVSJPFVSX354N.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KD8DVSJPFVSX354N.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "KD8DVSJPFVSX354N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KD8DVSJPFVSX354N.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "KD8DVSJPFVSX354N.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "KD8DVSJPFVSX354N.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "KD8DVSJPFVSX354N.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "188657" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KD8DVSJPFVSX354N.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "KD8DVSJPFVSX354N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KD8DVSJPFVSX354N.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "KD8DVSJPFVSX354N.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.7780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KD8DVSJPFVSX354N.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "KD8DVSJPFVSX354N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KD8DVSJPFVSX354N.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "KD8DVSJPFVSX354N.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "80149" - }, - "appliesTo" : [ ] - }, - "KD8DVSJPFVSX354N.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "KD8DVSJPFVSX354N.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KD8DVSJPFVSX354N.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "KD8DVSJPFVSX354N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KD8DVSJPFVSX354N.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "KD8DVSJPFVSX354N.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "40418" - }, - "appliesTo" : [ ] - }, - "KD8DVSJPFVSX354N.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "KD8DVSJPFVSX354N.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.6140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KD8DVSJPFVSX354N.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "KD8DVSJPFVSX354N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KD8DVSJPFVSX354N.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "KD8DVSJPFVSX354N.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.0400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KD8DVSJPFVSX354N.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "KD8DVSJPFVSX354N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KD8DVSJPFVSX354N.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "KD8DVSJPFVSX354N.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "85192" - }, - "appliesTo" : [ ] - }, - "KD8DVSJPFVSX354N.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "KD8DVSJPFVSX354N.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KD8DVSJPFVSX354N.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "KD8DVSJPFVSX354N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KD8DVSJPFVSX354N.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "KD8DVSJPFVSX354N.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KD8DVSJPFVSX354N.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "KD8DVSJPFVSX354N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KD8DVSJPFVSX354N.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "KD8DVSJPFVSX354N.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "42990" - }, - "appliesTo" : [ ] - }, - "KD8DVSJPFVSX354N.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "KD8DVSJPFVSX354N.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "39748UVFEUKY3MVQ" : { - "39748UVFEUKY3MVQ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "39748UVFEUKY3MVQ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "39748UVFEUKY3MVQ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "39748UVFEUKY3MVQ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "39748UVFEUKY3MVQ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "39748UVFEUKY3MVQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "39748UVFEUKY3MVQ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "39748UVFEUKY3MVQ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1209" - }, - "appliesTo" : [ ] - }, - "39748UVFEUKY3MVQ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "39748UVFEUKY3MVQ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "39748UVFEUKY3MVQ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "39748UVFEUKY3MVQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "39748UVFEUKY3MVQ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "39748UVFEUKY3MVQ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "39748UVFEUKY3MVQ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "39748UVFEUKY3MVQ", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "39748UVFEUKY3MVQ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "39748UVFEUKY3MVQ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2168" - }, - "appliesTo" : [ ] - }, - "39748UVFEUKY3MVQ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "39748UVFEUKY3MVQ.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "39748UVFEUKY3MVQ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "39748UVFEUKY3MVQ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "39748UVFEUKY3MVQ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "39748UVFEUKY3MVQ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2478" - }, - "appliesTo" : [ ] - }, - "39748UVFEUKY3MVQ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "39748UVFEUKY3MVQ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "39748UVFEUKY3MVQ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "39748UVFEUKY3MVQ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "39748UVFEUKY3MVQ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "39748UVFEUKY3MVQ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4076" - }, - "appliesTo" : [ ] - }, - "39748UVFEUKY3MVQ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "39748UVFEUKY3MVQ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "39748UVFEUKY3MVQ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "39748UVFEUKY3MVQ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "39748UVFEUKY3MVQ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "39748UVFEUKY3MVQ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "39748UVFEUKY3MVQ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "39748UVFEUKY3MVQ", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "39748UVFEUKY3MVQ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "39748UVFEUKY3MVQ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2078" - }, - "appliesTo" : [ ] - }, - "39748UVFEUKY3MVQ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "39748UVFEUKY3MVQ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "39748UVFEUKY3MVQ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "39748UVFEUKY3MVQ", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "39748UVFEUKY3MVQ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "39748UVFEUKY3MVQ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1060" - }, - "appliesTo" : [ ] - }, - "39748UVFEUKY3MVQ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "39748UVFEUKY3MVQ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "39748UVFEUKY3MVQ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "39748UVFEUKY3MVQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "39748UVFEUKY3MVQ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "39748UVFEUKY3MVQ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "39748UVFEUKY3MVQ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "39748UVFEUKY3MVQ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2369" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "39748UVFEUKY3MVQ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "39748UVFEUKY3MVQ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "39748UVFEUKY3MVQ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "39748UVFEUKY3MVQ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4857" - }, - "appliesTo" : [ ] - }, - "39748UVFEUKY3MVQ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "39748UVFEUKY3MVQ.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "39748UVFEUKY3MVQ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "39748UVFEUKY3MVQ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "39748UVFEUKY3MVQ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "39748UVFEUKY3MVQ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "7KSR4DFTZFRCXGGH" : { - "7KSR4DFTZFRCXGGH.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "7KSR4DFTZFRCXGGH", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7KSR4DFTZFRCXGGH.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "7KSR4DFTZFRCXGGH.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "7KSR4DFTZFRCXGGH.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "7KSR4DFTZFRCXGGH.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "51077" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7KSR4DFTZFRCXGGH.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "7KSR4DFTZFRCXGGH", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7KSR4DFTZFRCXGGH.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "7KSR4DFTZFRCXGGH.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "70253" - }, - "appliesTo" : [ ] - }, - "7KSR4DFTZFRCXGGH.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "7KSR4DFTZFRCXGGH.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7KSR4DFTZFRCXGGH.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "7KSR4DFTZFRCXGGH", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7KSR4DFTZFRCXGGH.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "7KSR4DFTZFRCXGGH.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "127326" - }, - "appliesTo" : [ ] - }, - "7KSR4DFTZFRCXGGH.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "7KSR4DFTZFRCXGGH.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7KSR4DFTZFRCXGGH.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "7KSR4DFTZFRCXGGH", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7KSR4DFTZFRCXGGH.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "7KSR4DFTZFRCXGGH.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4880000000" - }, - "appliesTo" : [ ] - }, - "7KSR4DFTZFRCXGGH.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "7KSR4DFTZFRCXGGH.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30324" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7KSR4DFTZFRCXGGH.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "7KSR4DFTZFRCXGGH", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "7KSR4DFTZFRCXGGH.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "7KSR4DFTZFRCXGGH.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.9610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "G7T27N57ERE3PVRC" : { - "G7T27N57ERE3PVRC.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "G7T27N57ERE3PVRC", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "G7T27N57ERE3PVRC.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "G7T27N57ERE3PVRC.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15202" - }, - "appliesTo" : [ ] - }, - "G7T27N57ERE3PVRC.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "G7T27N57ERE3PVRC.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "G7T27N57ERE3PVRC.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "G7T27N57ERE3PVRC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "G7T27N57ERE3PVRC.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "G7T27N57ERE3PVRC.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "G7T27N57ERE3PVRC.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "G7T27N57ERE3PVRC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "G7T27N57ERE3PVRC.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "G7T27N57ERE3PVRC.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3062" - }, - "appliesTo" : [ ] - }, - "G7T27N57ERE3PVRC.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "G7T27N57ERE3PVRC.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "G7T27N57ERE3PVRC.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "G7T27N57ERE3PVRC", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "G7T27N57ERE3PVRC.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "G7T27N57ERE3PVRC.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5291" - }, - "appliesTo" : [ ] - }, - "G7T27N57ERE3PVRC.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "G7T27N57ERE3PVRC.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "G7T27N57ERE3PVRC.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "G7T27N57ERE3PVRC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "G7T27N57ERE3PVRC.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "G7T27N57ERE3PVRC.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12633" - }, - "appliesTo" : [ ] - }, - "G7T27N57ERE3PVRC.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "G7T27N57ERE3PVRC.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "G7T27N57ERE3PVRC.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "G7T27N57ERE3PVRC", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "G7T27N57ERE3PVRC.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "G7T27N57ERE3PVRC.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "G7T27N57ERE3PVRC.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "G7T27N57ERE3PVRC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "G7T27N57ERE3PVRC.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "G7T27N57ERE3PVRC.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5306" - }, - "appliesTo" : [ ] - }, - "G7T27N57ERE3PVRC.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "G7T27N57ERE3PVRC.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "G7T27N57ERE3PVRC.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "G7T27N57ERE3PVRC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "G7T27N57ERE3PVRC.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "G7T27N57ERE3PVRC.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1907" - }, - "appliesTo" : [ ] - }, - "G7T27N57ERE3PVRC.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "G7T27N57ERE3PVRC.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "G7T27N57ERE3PVRC.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "G7T27N57ERE3PVRC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "G7T27N57ERE3PVRC.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "G7T27N57ERE3PVRC.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "G7T27N57ERE3PVRC.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "G7T27N57ERE3PVRC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "G7T27N57ERE3PVRC.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "G7T27N57ERE3PVRC.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5969" - }, - "appliesTo" : [ ] - }, - "G7T27N57ERE3PVRC.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "G7T27N57ERE3PVRC.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "G7T27N57ERE3PVRC.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "G7T27N57ERE3PVRC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "G7T27N57ERE3PVRC.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "G7T27N57ERE3PVRC.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3013" - }, - "appliesTo" : [ ] - }, - "G7T27N57ERE3PVRC.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "G7T27N57ERE3PVRC.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "9KA8YGU8KFGQ7ERN" : { - "9KA8YGU8KFGQ7ERN.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "9KA8YGU8KFGQ7ERN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9KA8YGU8KFGQ7ERN.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "9KA8YGU8KFGQ7ERN.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10475" - }, - "appliesTo" : [ ] - }, - "9KA8YGU8KFGQ7ERN.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "9KA8YGU8KFGQ7ERN.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9KA8YGU8KFGQ7ERN.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "9KA8YGU8KFGQ7ERN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9KA8YGU8KFGQ7ERN.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "9KA8YGU8KFGQ7ERN.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9KA8YGU8KFGQ7ERN.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "9KA8YGU8KFGQ7ERN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9KA8YGU8KFGQ7ERN.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "9KA8YGU8KFGQ7ERN.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "9KA8YGU8KFGQ7ERN.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "9KA8YGU8KFGQ7ERN.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25860" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9KA8YGU8KFGQ7ERN.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "9KA8YGU8KFGQ7ERN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9KA8YGU8KFGQ7ERN.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "9KA8YGU8KFGQ7ERN.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9KA8YGU8KFGQ7ERN.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "9KA8YGU8KFGQ7ERN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9KA8YGU8KFGQ7ERN.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "9KA8YGU8KFGQ7ERN.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "9KA8YGU8KFGQ7ERN.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "9KA8YGU8KFGQ7ERN.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9950" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9KA8YGU8KFGQ7ERN.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "9KA8YGU8KFGQ7ERN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9KA8YGU8KFGQ7ERN.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "9KA8YGU8KFGQ7ERN.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5000000000" - }, - "appliesTo" : [ ] - }, - "9KA8YGU8KFGQ7ERN.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "9KA8YGU8KFGQ7ERN.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13138" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9KA8YGU8KFGQ7ERN.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "9KA8YGU8KFGQ7ERN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9KA8YGU8KFGQ7ERN.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "9KA8YGU8KFGQ7ERN.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13665" - }, - "appliesTo" : [ ] - }, - "9KA8YGU8KFGQ7ERN.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "9KA8YGU8KFGQ7ERN.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9KA8YGU8KFGQ7ERN.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "9KA8YGU8KFGQ7ERN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9KA8YGU8KFGQ7ERN.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "9KA8YGU8KFGQ7ERN.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9KA8YGU8KFGQ7ERN.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "9KA8YGU8KFGQ7ERN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9KA8YGU8KFGQ7ERN.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "9KA8YGU8KFGQ7ERN.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6030000000" - }, - "appliesTo" : [ ] - }, - "9KA8YGU8KFGQ7ERN.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "9KA8YGU8KFGQ7ERN.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5279" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9KA8YGU8KFGQ7ERN.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "9KA8YGU8KFGQ7ERN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9KA8YGU8KFGQ7ERN.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "9KA8YGU8KFGQ7ERN.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27170" - }, - "appliesTo" : [ ] - }, - "9KA8YGU8KFGQ7ERN.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "9KA8YGU8KFGQ7ERN.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9KA8YGU8KFGQ7ERN.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "9KA8YGU8KFGQ7ERN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9KA8YGU8KFGQ7ERN.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "9KA8YGU8KFGQ7ERN.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9KA8YGU8KFGQ7ERN.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "9KA8YGU8KFGQ7ERN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9KA8YGU8KFGQ7ERN.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "9KA8YGU8KFGQ7ERN.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5011" - }, - "appliesTo" : [ ] - }, - "9KA8YGU8KFGQ7ERN.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "9KA8YGU8KFGQ7ERN.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "6PNPTZCGGYT2UXSS" : { - "6PNPTZCGGYT2UXSS.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6PNPTZCGGYT2UXSS", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6PNPTZCGGYT2UXSS.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6PNPTZCGGYT2UXSS.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "6PNPTZCGGYT2UXSS.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6PNPTZCGGYT2UXSS.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3111" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6PNPTZCGGYT2UXSS.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6PNPTZCGGYT2UXSS", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "6PNPTZCGGYT2UXSS.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6PNPTZCGGYT2UXSS.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1267" - }, - "appliesTo" : [ ] - }, - "6PNPTZCGGYT2UXSS.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6PNPTZCGGYT2UXSS.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6PNPTZCGGYT2UXSS.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "6PNPTZCGGYT2UXSS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6PNPTZCGGYT2UXSS.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "6PNPTZCGGYT2UXSS.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3606" - }, - "appliesTo" : [ ] - }, - "6PNPTZCGGYT2UXSS.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "6PNPTZCGGYT2UXSS.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6PNPTZCGGYT2UXSS.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "6PNPTZCGGYT2UXSS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6PNPTZCGGYT2UXSS.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "6PNPTZCGGYT2UXSS.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6PNPTZCGGYT2UXSS.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "6PNPTZCGGYT2UXSS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6PNPTZCGGYT2UXSS.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "6PNPTZCGGYT2UXSS.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2070000000" - }, - "appliesTo" : [ ] - }, - "6PNPTZCGGYT2UXSS.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "6PNPTZCGGYT2UXSS.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1817" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6PNPTZCGGYT2UXSS.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "6PNPTZCGGYT2UXSS", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "6PNPTZCGGYT2UXSS.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "6PNPTZCGGYT2UXSS.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8972" - }, - "appliesTo" : [ ] - }, - "6PNPTZCGGYT2UXSS.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "6PNPTZCGGYT2UXSS.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6PNPTZCGGYT2UXSS.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6PNPTZCGGYT2UXSS", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6PNPTZCGGYT2UXSS.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6PNPTZCGGYT2UXSS.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6PNPTZCGGYT2UXSS.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "6PNPTZCGGYT2UXSS", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "6PNPTZCGGYT2UXSS.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "6PNPTZCGGYT2UXSS.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3586" - }, - "appliesTo" : [ ] - }, - "6PNPTZCGGYT2UXSS.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "6PNPTZCGGYT2UXSS.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6PNPTZCGGYT2UXSS.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6PNPTZCGGYT2UXSS", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "6PNPTZCGGYT2UXSS.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6PNPTZCGGYT2UXSS.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3090" - }, - "appliesTo" : [ ] - }, - "6PNPTZCGGYT2UXSS.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6PNPTZCGGYT2UXSS.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6PNPTZCGGYT2UXSS.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6PNPTZCGGYT2UXSS", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "6PNPTZCGGYT2UXSS.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6PNPTZCGGYT2UXSS.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7252" - }, - "appliesTo" : [ ] - }, - "6PNPTZCGGYT2UXSS.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6PNPTZCGGYT2UXSS.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6PNPTZCGGYT2UXSS.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "6PNPTZCGGYT2UXSS", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "6PNPTZCGGYT2UXSS.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "6PNPTZCGGYT2UXSS.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "TMTUPBFYDNCYXCDK" : { - "TMTUPBFYDNCYXCDK.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TMTUPBFYDNCYXCDK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TMTUPBFYDNCYXCDK.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TMTUPBFYDNCYXCDK.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TMTUPBFYDNCYXCDK.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TMTUPBFYDNCYXCDK.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "168676" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TMTUPBFYDNCYXCDK.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "TMTUPBFYDNCYXCDK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TMTUPBFYDNCYXCDK.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "TMTUPBFYDNCYXCDK.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "103108" - }, - "appliesTo" : [ ] - }, - "TMTUPBFYDNCYXCDK.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "TMTUPBFYDNCYXCDK.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TMTUPBFYDNCYXCDK.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "TMTUPBFYDNCYXCDK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TMTUPBFYDNCYXCDK.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "TMTUPBFYDNCYXCDK.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.4790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TMTUPBFYDNCYXCDK.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "TMTUPBFYDNCYXCDK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TMTUPBFYDNCYXCDK.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "TMTUPBFYDNCYXCDK.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TMTUPBFYDNCYXCDK.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TMTUPBFYDNCYXCDK", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "TMTUPBFYDNCYXCDK.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TMTUPBFYDNCYXCDK.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TMTUPBFYDNCYXCDK.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TMTUPBFYDNCYXCDK.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "80644" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TMTUPBFYDNCYXCDK.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TMTUPBFYDNCYXCDK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TMTUPBFYDNCYXCDK.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TMTUPBFYDNCYXCDK.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4130000000" - }, - "appliesTo" : [ ] - }, - "TMTUPBFYDNCYXCDK.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TMTUPBFYDNCYXCDK.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "89704" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TMTUPBFYDNCYXCDK.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "TMTUPBFYDNCYXCDK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TMTUPBFYDNCYXCDK.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "TMTUPBFYDNCYXCDK.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.3950000000" - }, - "appliesTo" : [ ] - }, - "TMTUPBFYDNCYXCDK.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "TMTUPBFYDNCYXCDK.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47322" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TMTUPBFYDNCYXCDK.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "TMTUPBFYDNCYXCDK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TMTUPBFYDNCYXCDK.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "TMTUPBFYDNCYXCDK.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "11.3350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TMTUPBFYDNCYXCDK.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TMTUPBFYDNCYXCDK", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "TMTUPBFYDNCYXCDK.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TMTUPBFYDNCYXCDK.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "41173" - }, - "appliesTo" : [ ] - }, - "TMTUPBFYDNCYXCDK.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TMTUPBFYDNCYXCDK.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.6930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TMTUPBFYDNCYXCDK.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TMTUPBFYDNCYXCDK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TMTUPBFYDNCYXCDK.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TMTUPBFYDNCYXCDK.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.8610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TMTUPBFYDNCYXCDK.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "TMTUPBFYDNCYXCDK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TMTUPBFYDNCYXCDK.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "TMTUPBFYDNCYXCDK.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "202095" - }, - "appliesTo" : [ ] - }, - "TMTUPBFYDNCYXCDK.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "TMTUPBFYDNCYXCDK.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TMTUPBFYDNCYXCDK.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "TMTUPBFYDNCYXCDK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TMTUPBFYDNCYXCDK.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "TMTUPBFYDNCYXCDK.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "92697" - }, - "appliesTo" : [ ] - }, - "TMTUPBFYDNCYXCDK.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "TMTUPBFYDNCYXCDK.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "GH36ES6UF9N3TAPC" : { - "GH36ES6UF9N3TAPC.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "GH36ES6UF9N3TAPC", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "GH36ES6UF9N3TAPC.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "GH36ES6UF9N3TAPC.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12989" - }, - "appliesTo" : [ ] - }, - "GH36ES6UF9N3TAPC.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "GH36ES6UF9N3TAPC.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GH36ES6UF9N3TAPC.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "GH36ES6UF9N3TAPC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GH36ES6UF9N3TAPC.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "GH36ES6UF9N3TAPC.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6626" - }, - "appliesTo" : [ ] - }, - "GH36ES6UF9N3TAPC.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "GH36ES6UF9N3TAPC.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GH36ES6UF9N3TAPC.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "GH36ES6UF9N3TAPC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GH36ES6UF9N3TAPC.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "GH36ES6UF9N3TAPC.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14986" - }, - "appliesTo" : [ ] - }, - "GH36ES6UF9N3TAPC.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "GH36ES6UF9N3TAPC.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "GH36ES6UF9N3TAPC.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "GH36ES6UF9N3TAPC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GH36ES6UF9N3TAPC.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "GH36ES6UF9N3TAPC.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "GH36ES6UF9N3TAPC.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "GH36ES6UF9N3TAPC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GH36ES6UF9N3TAPC.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "GH36ES6UF9N3TAPC.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7646" - }, - "appliesTo" : [ ] - }, - "GH36ES6UF9N3TAPC.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "GH36ES6UF9N3TAPC.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GH36ES6UF9N3TAPC.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "GH36ES6UF9N3TAPC", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "GH36ES6UF9N3TAPC.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "GH36ES6UF9N3TAPC.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GH36ES6UF9N3TAPC.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "GH36ES6UF9N3TAPC", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GH36ES6UF9N3TAPC.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "GH36ES6UF9N3TAPC.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35070" - }, - "appliesTo" : [ ] - }, - "GH36ES6UF9N3TAPC.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "GH36ES6UF9N3TAPC.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "GH36ES6UF9N3TAPC.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "GH36ES6UF9N3TAPC", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "GH36ES6UF9N3TAPC.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "GH36ES6UF9N3TAPC.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6810000000" - }, - "appliesTo" : [ ] - }, - "GH36ES6UF9N3TAPC.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "GH36ES6UF9N3TAPC.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17890" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GH36ES6UF9N3TAPC.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "GH36ES6UF9N3TAPC", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GH36ES6UF9N3TAPC.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "GH36ES6UF9N3TAPC.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12175" - }, - "appliesTo" : [ ] - }, - "GH36ES6UF9N3TAPC.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "GH36ES6UF9N3TAPC.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GH36ES6UF9N3TAPC.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "GH36ES6UF9N3TAPC", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "GH36ES6UF9N3TAPC.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "GH36ES6UF9N3TAPC.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22858" - }, - "appliesTo" : [ ] - }, - "GH36ES6UF9N3TAPC.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "GH36ES6UF9N3TAPC.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GH36ES6UF9N3TAPC.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "GH36ES6UF9N3TAPC", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "GH36ES6UF9N3TAPC.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "GH36ES6UF9N3TAPC.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "FHFGWVJGRUAB5YUF" : { - "FHFGWVJGRUAB5YUF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "FHFGWVJGRUAB5YUF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FHFGWVJGRUAB5YUF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "FHFGWVJGRUAB5YUF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8042" - }, - "appliesTo" : [ ] - }, - "FHFGWVJGRUAB5YUF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "FHFGWVJGRUAB5YUF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FHFGWVJGRUAB5YUF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "FHFGWVJGRUAB5YUF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FHFGWVJGRUAB5YUF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "FHFGWVJGRUAB5YUF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15762" - }, - "appliesTo" : [ ] - }, - "FHFGWVJGRUAB5YUF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "FHFGWVJGRUAB5YUF.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FHFGWVJGRUAB5YUF.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "FHFGWVJGRUAB5YUF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FHFGWVJGRUAB5YUF.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "FHFGWVJGRUAB5YUF.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FHFGWVJGRUAB5YUF.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "FHFGWVJGRUAB5YUF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FHFGWVJGRUAB5YUF.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "FHFGWVJGRUAB5YUF.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6840000000" - }, - "appliesTo" : [ ] - }, - "FHFGWVJGRUAB5YUF.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "FHFGWVJGRUAB5YUF.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17973" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FHFGWVJGRUAB5YUF.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "FHFGWVJGRUAB5YUF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FHFGWVJGRUAB5YUF.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "FHFGWVJGRUAB5YUF.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9248" - }, - "appliesTo" : [ ] - }, - "FHFGWVJGRUAB5YUF.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "FHFGWVJGRUAB5YUF.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FHFGWVJGRUAB5YUF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "FHFGWVJGRUAB5YUF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FHFGWVJGRUAB5YUF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "FHFGWVJGRUAB5YUF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15601" - }, - "appliesTo" : [ ] - }, - "FHFGWVJGRUAB5YUF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "FHFGWVJGRUAB5YUF.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FHFGWVJGRUAB5YUF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "FHFGWVJGRUAB5YUF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FHFGWVJGRUAB5YUF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "FHFGWVJGRUAB5YUF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29330" - }, - "appliesTo" : [ ] - }, - "FHFGWVJGRUAB5YUF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "FHFGWVJGRUAB5YUF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FHFGWVJGRUAB5YUF.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "FHFGWVJGRUAB5YUF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FHFGWVJGRUAB5YUF.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "FHFGWVJGRUAB5YUF.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FHFGWVJGRUAB5YUF.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "FHFGWVJGRUAB5YUF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FHFGWVJGRUAB5YUF.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "FHFGWVJGRUAB5YUF.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "FHFGWVJGRUAB5YUF.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "FHFGWVJGRUAB5YUF.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35227" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FHFGWVJGRUAB5YUF.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "FHFGWVJGRUAB5YUF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FHFGWVJGRUAB5YUF.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "FHFGWVJGRUAB5YUF.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "FHFGWVJGRUAB5YUF.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "FHFGWVJGRUAB5YUF.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18126" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FHFGWVJGRUAB5YUF.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "FHFGWVJGRUAB5YUF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FHFGWVJGRUAB5YUF.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "FHFGWVJGRUAB5YUF.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FHFGWVJGRUAB5YUF.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "FHFGWVJGRUAB5YUF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FHFGWVJGRUAB5YUF.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "FHFGWVJGRUAB5YUF.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "MDKVAJXMJGZFDJUE" : { - "MDKVAJXMJGZFDJUE.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "MDKVAJXMJGZFDJUE", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "MDKVAJXMJGZFDJUE.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "MDKVAJXMJGZFDJUE.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "567" - }, - "appliesTo" : [ ] - }, - "MDKVAJXMJGZFDJUE.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "MDKVAJXMJGZFDJUE.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MDKVAJXMJGZFDJUE.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "MDKVAJXMJGZFDJUE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MDKVAJXMJGZFDJUE.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "MDKVAJXMJGZFDJUE.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0380000000" - }, - "appliesTo" : [ ] - }, - "MDKVAJXMJGZFDJUE.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "MDKVAJXMJGZFDJUE.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "332" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MDKVAJXMJGZFDJUE.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "MDKVAJXMJGZFDJUE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MDKVAJXMJGZFDJUE.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "MDKVAJXMJGZFDJUE.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MDKVAJXMJGZFDJUE.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "MDKVAJXMJGZFDJUE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MDKVAJXMJGZFDJUE.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "MDKVAJXMJGZFDJUE.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "682" - }, - "appliesTo" : [ ] - }, - "MDKVAJXMJGZFDJUE.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "MDKVAJXMJGZFDJUE.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MDKVAJXMJGZFDJUE.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "MDKVAJXMJGZFDJUE", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "MDKVAJXMJGZFDJUE.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "MDKVAJXMJGZFDJUE.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "593" - }, - "appliesTo" : [ ] - }, - "MDKVAJXMJGZFDJUE.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "MDKVAJXMJGZFDJUE.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MDKVAJXMJGZFDJUE.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "MDKVAJXMJGZFDJUE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MDKVAJXMJGZFDJUE.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "MDKVAJXMJGZFDJUE.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MDKVAJXMJGZFDJUE.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "MDKVAJXMJGZFDJUE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MDKVAJXMJGZFDJUE.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "MDKVAJXMJGZFDJUE.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "MDKVAJXMJGZFDJUE.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "MDKVAJXMJGZFDJUE.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "652" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MDKVAJXMJGZFDJUE.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "MDKVAJXMJGZFDJUE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MDKVAJXMJGZFDJUE.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "MDKVAJXMJGZFDJUE.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1336" - }, - "appliesTo" : [ ] - }, - "MDKVAJXMJGZFDJUE.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "MDKVAJXMJGZFDJUE.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MDKVAJXMJGZFDJUE.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "MDKVAJXMJGZFDJUE", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "MDKVAJXMJGZFDJUE.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "MDKVAJXMJGZFDJUE.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1114" - }, - "appliesTo" : [ ] - }, - "MDKVAJXMJGZFDJUE.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "MDKVAJXMJGZFDJUE.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MDKVAJXMJGZFDJUE.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "MDKVAJXMJGZFDJUE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MDKVAJXMJGZFDJUE.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "MDKVAJXMJGZFDJUE.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MDKVAJXMJGZFDJUE.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "MDKVAJXMJGZFDJUE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MDKVAJXMJGZFDJUE.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "MDKVAJXMJGZFDJUE.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MDKVAJXMJGZFDJUE.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "MDKVAJXMJGZFDJUE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MDKVAJXMJGZFDJUE.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "MDKVAJXMJGZFDJUE.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "289" - }, - "appliesTo" : [ ] - }, - "MDKVAJXMJGZFDJUE.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "MDKVAJXMJGZFDJUE.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "2KNBBY32AX7JPE72" : { - "2KNBBY32AX7JPE72.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "2KNBBY32AX7JPE72", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2KNBBY32AX7JPE72.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "2KNBBY32AX7JPE72.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21419" - }, - "appliesTo" : [ ] - }, - "2KNBBY32AX7JPE72.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "2KNBBY32AX7JPE72.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2KNBBY32AX7JPE72.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "2KNBBY32AX7JPE72", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2KNBBY32AX7JPE72.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "2KNBBY32AX7JPE72.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "42950" - }, - "appliesTo" : [ ] - }, - "2KNBBY32AX7JPE72.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "2KNBBY32AX7JPE72.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2KNBBY32AX7JPE72.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "2KNBBY32AX7JPE72", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2KNBBY32AX7JPE72.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "2KNBBY32AX7JPE72.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21485" - }, - "appliesTo" : [ ] - }, - "2KNBBY32AX7JPE72.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "2KNBBY32AX7JPE72.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2KNBBY32AX7JPE72.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "2KNBBY32AX7JPE72", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2KNBBY32AX7JPE72.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "2KNBBY32AX7JPE72.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2KNBBY32AX7JPE72.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "2KNBBY32AX7JPE72", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2KNBBY32AX7JPE72.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "2KNBBY32AX7JPE72.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2KNBBY32AX7JPE72.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "2KNBBY32AX7JPE72", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2KNBBY32AX7JPE72.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "2KNBBY32AX7JPE72.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "2KNBBY32AX7JPE72.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "2KNBBY32AX7JPE72.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14494" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2KNBBY32AX7JPE72.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "2KNBBY32AX7JPE72", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2KNBBY32AX7JPE72.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "2KNBBY32AX7JPE72.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2KNBBY32AX7JPE72.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "2KNBBY32AX7JPE72", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2KNBBY32AX7JPE72.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "2KNBBY32AX7JPE72.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8280000000" - }, - "appliesTo" : [ ] - }, - "2KNBBY32AX7JPE72.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "2KNBBY32AX7JPE72.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7252" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2KNBBY32AX7JPE72.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "2KNBBY32AX7JPE72", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2KNBBY32AX7JPE72.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "2KNBBY32AX7JPE72.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7219" - }, - "appliesTo" : [ ] - }, - "2KNBBY32AX7JPE72.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "2KNBBY32AX7JPE72.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2KNBBY32AX7JPE72.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "2KNBBY32AX7JPE72", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2KNBBY32AX7JPE72.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "2KNBBY32AX7JPE72.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2KNBBY32AX7JPE72.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "2KNBBY32AX7JPE72", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2KNBBY32AX7JPE72.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "2KNBBY32AX7JPE72.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "42786" - }, - "appliesTo" : [ ] - }, - "2KNBBY32AX7JPE72.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "2KNBBY32AX7JPE72.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2KNBBY32AX7JPE72.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "2KNBBY32AX7JPE72", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2KNBBY32AX7JPE72.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "2KNBBY32AX7JPE72.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "2KNBBY32AX7JPE72.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "2KNBBY32AX7JPE72.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14428" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "QCQ27AYFPSSTJG55" : { - "QCQ27AYFPSSTJG55.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QCQ27AYFPSSTJG55", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QCQ27AYFPSSTJG55.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QCQ27AYFPSSTJG55.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1632" - }, - "appliesTo" : [ ] - }, - "QCQ27AYFPSSTJG55.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QCQ27AYFPSSTJG55.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QCQ27AYFPSSTJG55.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QCQ27AYFPSSTJG55", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "QCQ27AYFPSSTJG55.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QCQ27AYFPSSTJG55.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "947" - }, - "appliesTo" : [ ] - }, - "QCQ27AYFPSSTJG55.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QCQ27AYFPSSTJG55.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QCQ27AYFPSSTJG55.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QCQ27AYFPSSTJG55", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "QCQ27AYFPSSTJG55.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QCQ27AYFPSSTJG55.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QCQ27AYFPSSTJG55.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QCQ27AYFPSSTJG55", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QCQ27AYFPSSTJG55.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QCQ27AYFPSSTJG55.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QCQ27AYFPSSTJG55.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QCQ27AYFPSSTJG55.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2932" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QCQ27AYFPSSTJG55.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QCQ27AYFPSSTJG55", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "QCQ27AYFPSSTJG55.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QCQ27AYFPSSTJG55.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1438" - }, - "appliesTo" : [ ] - }, - "QCQ27AYFPSSTJG55.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QCQ27AYFPSSTJG55.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "Y6BQV4XBTAFVVV2A" : { - "Y6BQV4XBTAFVVV2A.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "Y6BQV4XBTAFVVV2A", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Y6BQV4XBTAFVVV2A.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "Y6BQV4XBTAFVVV2A.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7220000000" - }, - "appliesTo" : [ ] - }, - "Y6BQV4XBTAFVVV2A.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "Y6BQV4XBTAFVVV2A.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18979" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y6BQV4XBTAFVVV2A.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "Y6BQV4XBTAFVVV2A", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Y6BQV4XBTAFVVV2A.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "Y6BQV4XBTAFVVV2A.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37587" - }, - "appliesTo" : [ ] - }, - "Y6BQV4XBTAFVVV2A.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "Y6BQV4XBTAFVVV2A.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Y6BQV4XBTAFVVV2A.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Y6BQV4XBTAFVVV2A", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "Y6BQV4XBTAFVVV2A.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Y6BQV4XBTAFVVV2A.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34603" - }, - "appliesTo" : [ ] - }, - "Y6BQV4XBTAFVVV2A.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Y6BQV4XBTAFVVV2A.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Y6BQV4XBTAFVVV2A.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "Y6BQV4XBTAFVVV2A", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Y6BQV4XBTAFVVV2A.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "Y6BQV4XBTAFVVV2A.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Y6BQV4XBTAFVVV2A.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Y6BQV4XBTAFVVV2A", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "Y6BQV4XBTAFVVV2A.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Y6BQV4XBTAFVVV2A.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17788" - }, - "appliesTo" : [ ] - }, - "Y6BQV4XBTAFVVV2A.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Y6BQV4XBTAFVVV2A.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y6BQV4XBTAFVVV2A.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "Y6BQV4XBTAFVVV2A", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Y6BQV4XBTAFVVV2A.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "Y6BQV4XBTAFVVV2A.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15309" - }, - "appliesTo" : [ ] - }, - "Y6BQV4XBTAFVVV2A.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "Y6BQV4XBTAFVVV2A.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Y6BQV4XBTAFVVV2A.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Y6BQV4XBTAFVVV2A", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "Y6BQV4XBTAFVVV2A.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Y6BQV4XBTAFVVV2A.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14108" - }, - "appliesTo" : [ ] - }, - "Y6BQV4XBTAFVVV2A.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Y6BQV4XBTAFVVV2A.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Y6BQV4XBTAFVVV2A.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "Y6BQV4XBTAFVVV2A", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Y6BQV4XBTAFVVV2A.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "Y6BQV4XBTAFVVV2A.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Y6BQV4XBTAFVVV2A.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Y6BQV4XBTAFVVV2A", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Y6BQV4XBTAFVVV2A.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Y6BQV4XBTAFVVV2A.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Y6BQV4XBTAFVVV2A.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Y6BQV4XBTAFVVV2A", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Y6BQV4XBTAFVVV2A.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Y6BQV4XBTAFVVV2A.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8140000000" - }, - "appliesTo" : [ ] - }, - "Y6BQV4XBTAFVVV2A.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Y6BQV4XBTAFVVV2A.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7132" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y6BQV4XBTAFVVV2A.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "Y6BQV4XBTAFVVV2A", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Y6BQV4XBTAFVVV2A.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "Y6BQV4XBTAFVVV2A.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Y6BQV4XBTAFVVV2A.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "Y6BQV4XBTAFVVV2A", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Y6BQV4XBTAFVVV2A.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "Y6BQV4XBTAFVVV2A.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7745" - }, - "appliesTo" : [ ] - }, - "Y6BQV4XBTAFVVV2A.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "Y6BQV4XBTAFVVV2A.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "X4PYRTAZG2VJ5RJV" : { - "X4PYRTAZG2VJ5RJV.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "X4PYRTAZG2VJ5RJV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X4PYRTAZG2VJ5RJV.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "X4PYRTAZG2VJ5RJV.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12689" - }, - "appliesTo" : [ ] - }, - "X4PYRTAZG2VJ5RJV.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "X4PYRTAZG2VJ5RJV.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "X4PYRTAZG2VJ5RJV.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "X4PYRTAZG2VJ5RJV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "X4PYRTAZG2VJ5RJV.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "X4PYRTAZG2VJ5RJV.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "54854" - }, - "appliesTo" : [ ] - }, - "X4PYRTAZG2VJ5RJV.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "X4PYRTAZG2VJ5RJV.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "X4PYRTAZG2VJ5RJV.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "X4PYRTAZG2VJ5RJV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "X4PYRTAZG2VJ5RJV.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "X4PYRTAZG2VJ5RJV.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "X4PYRTAZG2VJ5RJV.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "X4PYRTAZG2VJ5RJV", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "X4PYRTAZG2VJ5RJV.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "X4PYRTAZG2VJ5RJV.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "X4PYRTAZG2VJ5RJV.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "X4PYRTAZG2VJ5RJV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X4PYRTAZG2VJ5RJV.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "X4PYRTAZG2VJ5RJV.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25329" - }, - "appliesTo" : [ ] - }, - "X4PYRTAZG2VJ5RJV.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "X4PYRTAZG2VJ5RJV.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "X4PYRTAZG2VJ5RJV.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "X4PYRTAZG2VJ5RJV", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "X4PYRTAZG2VJ5RJV.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "X4PYRTAZG2VJ5RJV.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "X4PYRTAZG2VJ5RJV.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "X4PYRTAZG2VJ5RJV", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "X4PYRTAZG2VJ5RJV.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "X4PYRTAZG2VJ5RJV.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9448" - }, - "appliesTo" : [ ] - }, - "X4PYRTAZG2VJ5RJV.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "X4PYRTAZG2VJ5RJV.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "X4PYRTAZG2VJ5RJV.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "X4PYRTAZG2VJ5RJV", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "X4PYRTAZG2VJ5RJV.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "X4PYRTAZG2VJ5RJV.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18515" - }, - "appliesTo" : [ ] - }, - "X4PYRTAZG2VJ5RJV.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "X4PYRTAZG2VJ5RJV.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "X4PYRTAZG2VJ5RJV.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "X4PYRTAZG2VJ5RJV", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "X4PYRTAZG2VJ5RJV.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "X4PYRTAZG2VJ5RJV.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "X4PYRTAZG2VJ5RJV.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "X4PYRTAZG2VJ5RJV.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "40187" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "X4PYRTAZG2VJ5RJV.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "X4PYRTAZG2VJ5RJV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "X4PYRTAZG2VJ5RJV.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "X4PYRTAZG2VJ5RJV.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27990" - }, - "appliesTo" : [ ] - }, - "X4PYRTAZG2VJ5RJV.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "X4PYRTAZG2VJ5RJV.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "X4PYRTAZG2VJ5RJV.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "X4PYRTAZG2VJ5RJV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X4PYRTAZG2VJ5RJV.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "X4PYRTAZG2VJ5RJV.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "X4PYRTAZG2VJ5RJV.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "X4PYRTAZG2VJ5RJV", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "X4PYRTAZG2VJ5RJV.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "X4PYRTAZG2VJ5RJV.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21376" - }, - "appliesTo" : [ ] - }, - "X4PYRTAZG2VJ5RJV.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "X4PYRTAZG2VJ5RJV.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "V3RF6UFJXPKZ5CNE" : { - "V3RF6UFJXPKZ5CNE.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "V3RF6UFJXPKZ5CNE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V3RF6UFJXPKZ5CNE.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "V3RF6UFJXPKZ5CNE.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.2340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "V3RF6UFJXPKZ5CNE.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "V3RF6UFJXPKZ5CNE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V3RF6UFJXPKZ5CNE.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "V3RF6UFJXPKZ5CNE.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "V3RF6UFJXPKZ5CNE.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "V3RF6UFJXPKZ5CNE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V3RF6UFJXPKZ5CNE.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "V3RF6UFJXPKZ5CNE.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19042" - }, - "appliesTo" : [ ] - }, - "V3RF6UFJXPKZ5CNE.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "V3RF6UFJXPKZ5CNE.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "V3RF6UFJXPKZ5CNE.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "V3RF6UFJXPKZ5CNE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V3RF6UFJXPKZ5CNE.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "V3RF6UFJXPKZ5CNE.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "V3RF6UFJXPKZ5CNE.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "V3RF6UFJXPKZ5CNE.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "65393" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "V3RF6UFJXPKZ5CNE.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "V3RF6UFJXPKZ5CNE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V3RF6UFJXPKZ5CNE.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "V3RF6UFJXPKZ5CNE.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21872" - }, - "appliesTo" : [ ] - }, - "V3RF6UFJXPKZ5CNE.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "V3RF6UFJXPKZ5CNE.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "V3RF6UFJXPKZ5CNE.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "V3RF6UFJXPKZ5CNE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V3RF6UFJXPKZ5CNE.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "V3RF6UFJXPKZ5CNE.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "V3RF6UFJXPKZ5CNE.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "V3RF6UFJXPKZ5CNE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V3RF6UFJXPKZ5CNE.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "V3RF6UFJXPKZ5CNE.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "V3RF6UFJXPKZ5CNE.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "V3RF6UFJXPKZ5CNE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V3RF6UFJXPKZ5CNE.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "V3RF6UFJXPKZ5CNE.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "54658" - }, - "appliesTo" : [ ] - }, - "V3RF6UFJXPKZ5CNE.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "V3RF6UFJXPKZ5CNE.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "V3RF6UFJXPKZ5CNE.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "V3RF6UFJXPKZ5CNE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V3RF6UFJXPKZ5CNE.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "V3RF6UFJXPKZ5CNE.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2690000000" - }, - "appliesTo" : [ ] - }, - "V3RF6UFJXPKZ5CNE.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "V3RF6UFJXPKZ5CNE.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33362" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "V3RF6UFJXPKZ5CNE.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "V3RF6UFJXPKZ5CNE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V3RF6UFJXPKZ5CNE.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "V3RF6UFJXPKZ5CNE.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "V3RF6UFJXPKZ5CNE.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "V3RF6UFJXPKZ5CNE.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "42814" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "V3RF6UFJXPKZ5CNE.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "V3RF6UFJXPKZ5CNE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V3RF6UFJXPKZ5CNE.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "V3RF6UFJXPKZ5CNE.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29056" - }, - "appliesTo" : [ ] - }, - "V3RF6UFJXPKZ5CNE.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "V3RF6UFJXPKZ5CNE.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "V3RF6UFJXPKZ5CNE.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "V3RF6UFJXPKZ5CNE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V3RF6UFJXPKZ5CNE.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "V3RF6UFJXPKZ5CNE.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37268" - }, - "appliesTo" : [ ] - }, - "V3RF6UFJXPKZ5CNE.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "V3RF6UFJXPKZ5CNE.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "UAKHM4ASYH9KFBED" : { - "UAKHM4ASYH9KFBED.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "UAKHM4ASYH9KFBED", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UAKHM4ASYH9KFBED.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "UAKHM4ASYH9KFBED.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.7810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "UAKHM4ASYH9KFBED.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "UAKHM4ASYH9KFBED", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UAKHM4ASYH9KFBED.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "UAKHM4ASYH9KFBED.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23573" - }, - "appliesTo" : [ ] - }, - "UAKHM4ASYH9KFBED.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "UAKHM4ASYH9KFBED.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "UAKHM4ASYH9KFBED.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "UAKHM4ASYH9KFBED", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "UAKHM4ASYH9KFBED.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "UAKHM4ASYH9KFBED.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "UAKHM4ASYH9KFBED.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "UAKHM4ASYH9KFBED.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "41316" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "UAKHM4ASYH9KFBED.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "UAKHM4ASYH9KFBED", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "UAKHM4ASYH9KFBED.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "UAKHM4ASYH9KFBED.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "44676" - }, - "appliesTo" : [ ] - }, - "UAKHM4ASYH9KFBED.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "UAKHM4ASYH9KFBED.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "UAKHM4ASYH9KFBED.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "UAKHM4ASYH9KFBED", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "UAKHM4ASYH9KFBED.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "UAKHM4ASYH9KFBED.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "51378" - }, - "appliesTo" : [ ] - }, - "UAKHM4ASYH9KFBED.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "UAKHM4ASYH9KFBED.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "UAKHM4ASYH9KFBED.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "UAKHM4ASYH9KFBED", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "UAKHM4ASYH9KFBED.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "UAKHM4ASYH9KFBED.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "87407" - }, - "appliesTo" : [ ] - }, - "UAKHM4ASYH9KFBED.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "UAKHM4ASYH9KFBED.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "UAKHM4ASYH9KFBED.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "UAKHM4ASYH9KFBED", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "UAKHM4ASYH9KFBED.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "UAKHM4ASYH9KFBED.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "UAKHM4ASYH9KFBED.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "UAKHM4ASYH9KFBED", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "UAKHM4ASYH9KFBED.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "UAKHM4ASYH9KFBED.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "104117" - }, - "appliesTo" : [ ] - }, - "UAKHM4ASYH9KFBED.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "UAKHM4ASYH9KFBED.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "UAKHM4ASYH9KFBED.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "UAKHM4ASYH9KFBED", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "UAKHM4ASYH9KFBED.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "UAKHM4ASYH9KFBED.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.3530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "UAKHM4ASYH9KFBED.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "UAKHM4ASYH9KFBED", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UAKHM4ASYH9KFBED.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "UAKHM4ASYH9KFBED.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47342" - }, - "appliesTo" : [ ] - }, - "UAKHM4ASYH9KFBED.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "UAKHM4ASYH9KFBED.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "UAKHM4ASYH9KFBED.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "UAKHM4ASYH9KFBED", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "UAKHM4ASYH9KFBED.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "UAKHM4ASYH9KFBED.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4700000000" - }, - "appliesTo" : [ ] - }, - "UAKHM4ASYH9KFBED.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "UAKHM4ASYH9KFBED.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20498" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "UAKHM4ASYH9KFBED.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "UAKHM4ASYH9KFBED", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "UAKHM4ASYH9KFBED.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "UAKHM4ASYH9KFBED.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.0440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "2WG3ZVDRBDM6AXDY" : { - "2WG3ZVDRBDM6AXDY.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "2WG3ZVDRBDM6AXDY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2WG3ZVDRBDM6AXDY.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "2WG3ZVDRBDM6AXDY.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2WG3ZVDRBDM6AXDY.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "2WG3ZVDRBDM6AXDY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2WG3ZVDRBDM6AXDY.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "2WG3ZVDRBDM6AXDY.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "2WG3ZVDRBDM6AXDY.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "2WG3ZVDRBDM6AXDY.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4144" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2WG3ZVDRBDM6AXDY.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "2WG3ZVDRBDM6AXDY", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "2WG3ZVDRBDM6AXDY.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "2WG3ZVDRBDM6AXDY.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3860" - }, - "appliesTo" : [ ] - }, - "2WG3ZVDRBDM6AXDY.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "2WG3ZVDRBDM6AXDY.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2WG3ZVDRBDM6AXDY.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "2WG3ZVDRBDM6AXDY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2WG3ZVDRBDM6AXDY.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "2WG3ZVDRBDM6AXDY.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1644000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2WG3ZVDRBDM6AXDY.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "2WG3ZVDRBDM6AXDY", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "2WG3ZVDRBDM6AXDY.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "2WG3ZVDRBDM6AXDY.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1558" - }, - "appliesTo" : [ ] - }, - "2WG3ZVDRBDM6AXDY.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "2WG3ZVDRBDM6AXDY.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2WG3ZVDRBDM6AXDY.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "2WG3ZVDRBDM6AXDY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2WG3ZVDRBDM6AXDY.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "2WG3ZVDRBDM6AXDY.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2090" - }, - "appliesTo" : [ ] - }, - "2WG3ZVDRBDM6AXDY.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "2WG3ZVDRBDM6AXDY.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0795000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2WG3ZVDRBDM6AXDY.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "2WG3ZVDRBDM6AXDY", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "2WG3ZVDRBDM6AXDY.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "2WG3ZVDRBDM6AXDY.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1976" - }, - "appliesTo" : [ ] - }, - "2WG3ZVDRBDM6AXDY.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "2WG3ZVDRBDM6AXDY.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2WG3ZVDRBDM6AXDY.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "2WG3ZVDRBDM6AXDY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2WG3ZVDRBDM6AXDY.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "2WG3ZVDRBDM6AXDY.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1983000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2WG3ZVDRBDM6AXDY.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "2WG3ZVDRBDM6AXDY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2WG3ZVDRBDM6AXDY.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "2WG3ZVDRBDM6AXDY.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "846" - }, - "appliesTo" : [ ] - }, - "2WG3ZVDRBDM6AXDY.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "2WG3ZVDRBDM6AXDY.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0966000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2WG3ZVDRBDM6AXDY.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "2WG3ZVDRBDM6AXDY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2WG3ZVDRBDM6AXDY.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "2WG3ZVDRBDM6AXDY.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "2WG3ZVDRBDM6AXDY.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "2WG3ZVDRBDM6AXDY.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1675" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2WG3ZVDRBDM6AXDY.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "2WG3ZVDRBDM6AXDY", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "2WG3ZVDRBDM6AXDY.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "2WG3ZVDRBDM6AXDY.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "787" - }, - "appliesTo" : [ ] - }, - "2WG3ZVDRBDM6AXDY.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "2WG3ZVDRBDM6AXDY.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2WG3ZVDRBDM6AXDY.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "2WG3ZVDRBDM6AXDY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2WG3ZVDRBDM6AXDY.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "2WG3ZVDRBDM6AXDY.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1844000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "N3VSW4S7495SMAMS" : { - "N3VSW4S7495SMAMS.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "N3VSW4S7495SMAMS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "N3VSW4S7495SMAMS.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "N3VSW4S7495SMAMS.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "72049" - }, - "appliesTo" : [ ] - }, - "N3VSW4S7495SMAMS.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "N3VSW4S7495SMAMS.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "N3VSW4S7495SMAMS.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "N3VSW4S7495SMAMS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "N3VSW4S7495SMAMS.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "N3VSW4S7495SMAMS.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "N3VSW4S7495SMAMS.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "N3VSW4S7495SMAMS.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "64315" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "N3VSW4S7495SMAMS.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "N3VSW4S7495SMAMS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "N3VSW4S7495SMAMS.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "N3VSW4S7495SMAMS.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "N3VSW4S7495SMAMS.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "N3VSW4S7495SMAMS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N3VSW4S7495SMAMS.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "N3VSW4S7495SMAMS.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27768" - }, - "appliesTo" : [ ] - }, - "N3VSW4S7495SMAMS.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "N3VSW4S7495SMAMS.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "N3VSW4S7495SMAMS.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "N3VSW4S7495SMAMS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "N3VSW4S7495SMAMS.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "N3VSW4S7495SMAMS.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3800000000" - }, - "appliesTo" : [ ] - }, - "N3VSW4S7495SMAMS.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "N3VSW4S7495SMAMS.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "36266" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "N3VSW4S7495SMAMS.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "N3VSW4S7495SMAMS", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "N3VSW4S7495SMAMS.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "N3VSW4S7495SMAMS.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3020000000" - }, - "appliesTo" : [ ] - }, - "N3VSW4S7495SMAMS.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "N3VSW4S7495SMAMS.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34210" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "N3VSW4S7495SMAMS.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "N3VSW4S7495SMAMS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "N3VSW4S7495SMAMS.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "N3VSW4S7495SMAMS.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "N3VSW4S7495SMAMS.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "N3VSW4S7495SMAMS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "N3VSW4S7495SMAMS.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "N3VSW4S7495SMAMS.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26248" - }, - "appliesTo" : [ ] - }, - "N3VSW4S7495SMAMS.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "N3VSW4S7495SMAMS.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "N3VSW4S7495SMAMS.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "N3VSW4S7495SMAMS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "N3VSW4S7495SMAMS.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "N3VSW4S7495SMAMS.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8336000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "N3VSW4S7495SMAMS.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "N3VSW4S7495SMAMS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "N3VSW4S7495SMAMS.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "N3VSW4S7495SMAMS.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13228" - }, - "appliesTo" : [ ] - }, - "N3VSW4S7495SMAMS.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "N3VSW4S7495SMAMS.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "N3VSW4S7495SMAMS.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "N3VSW4S7495SMAMS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N3VSW4S7495SMAMS.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "N3VSW4S7495SMAMS.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2649000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "N3VSW4S7495SMAMS.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "N3VSW4S7495SMAMS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N3VSW4S7495SMAMS.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "N3VSW4S7495SMAMS.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14003" - }, - "appliesTo" : [ ] - }, - "N3VSW4S7495SMAMS.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "N3VSW4S7495SMAMS.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5985000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "2WSBC7H546ERPK5X" : { - "2WSBC7H546ERPK5X.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "2WSBC7H546ERPK5X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2WSBC7H546ERPK5X.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "2WSBC7H546ERPK5X.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2WSBC7H546ERPK5X.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "2WSBC7H546ERPK5X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2WSBC7H546ERPK5X.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "2WSBC7H546ERPK5X.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2WSBC7H546ERPK5X.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "2WSBC7H546ERPK5X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2WSBC7H546ERPK5X.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "2WSBC7H546ERPK5X.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2410" - }, - "appliesTo" : [ ] - }, - "2WSBC7H546ERPK5X.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "2WSBC7H546ERPK5X.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2WSBC7H546ERPK5X.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "2WSBC7H546ERPK5X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2WSBC7H546ERPK5X.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "2WSBC7H546ERPK5X.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4675" - }, - "appliesTo" : [ ] - }, - "2WSBC7H546ERPK5X.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "2WSBC7H546ERPK5X.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2WSBC7H546ERPK5X.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "2WSBC7H546ERPK5X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2WSBC7H546ERPK5X.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "2WSBC7H546ERPK5X.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2WSBC7H546ERPK5X.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "2WSBC7H546ERPK5X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2WSBC7H546ERPK5X.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "2WSBC7H546ERPK5X.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2WSBC7H546ERPK5X.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "2WSBC7H546ERPK5X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2WSBC7H546ERPK5X.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "2WSBC7H546ERPK5X.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2370000000" - }, - "appliesTo" : [ ] - }, - "2WSBC7H546ERPK5X.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "2WSBC7H546ERPK5X.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2142" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2WSBC7H546ERPK5X.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "2WSBC7H546ERPK5X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2WSBC7H546ERPK5X.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "2WSBC7H546ERPK5X.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4882" - }, - "appliesTo" : [ ] - }, - "2WSBC7H546ERPK5X.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "2WSBC7H546ERPK5X.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2WSBC7H546ERPK5X.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "2WSBC7H546ERPK5X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2WSBC7H546ERPK5X.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "2WSBC7H546ERPK5X.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "2WSBC7H546ERPK5X.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "2WSBC7H546ERPK5X.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4150" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2WSBC7H546ERPK5X.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "2WSBC7H546ERPK5X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2WSBC7H546ERPK5X.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "2WSBC7H546ERPK5X.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9595" - }, - "appliesTo" : [ ] - }, - "2WSBC7H546ERPK5X.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "2WSBC7H546ERPK5X.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2WSBC7H546ERPK5X.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "2WSBC7H546ERPK5X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2WSBC7H546ERPK5X.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "2WSBC7H546ERPK5X.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8284" - }, - "appliesTo" : [ ] - }, - "2WSBC7H546ERPK5X.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "2WSBC7H546ERPK5X.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2WSBC7H546ERPK5X.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "2WSBC7H546ERPK5X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2WSBC7H546ERPK5X.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "2WSBC7H546ERPK5X.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4355" - }, - "appliesTo" : [ ] - }, - "2WSBC7H546ERPK5X.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "2WSBC7H546ERPK5X.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "29WJRTNV2QJXKUW5" : { - "29WJRTNV2QJXKUW5.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "29WJRTNV2QJXKUW5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "29WJRTNV2QJXKUW5.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "29WJRTNV2QJXKUW5.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4717" - }, - "appliesTo" : [ ] - }, - "29WJRTNV2QJXKUW5.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "29WJRTNV2QJXKUW5.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "29WJRTNV2QJXKUW5.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "29WJRTNV2QJXKUW5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "29WJRTNV2QJXKUW5.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "29WJRTNV2QJXKUW5.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11770" - }, - "appliesTo" : [ ] - }, - "29WJRTNV2QJXKUW5.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "29WJRTNV2QJXKUW5.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "29WJRTNV2QJXKUW5.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "29WJRTNV2QJXKUW5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "29WJRTNV2QJXKUW5.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "29WJRTNV2QJXKUW5.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "29WJRTNV2QJXKUW5.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "29WJRTNV2QJXKUW5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "29WJRTNV2QJXKUW5.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "29WJRTNV2QJXKUW5.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16907" - }, - "appliesTo" : [ ] - }, - "29WJRTNV2QJXKUW5.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "29WJRTNV2QJXKUW5.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "29WJRTNV2QJXKUW5.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "29WJRTNV2QJXKUW5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "29WJRTNV2QJXKUW5.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "29WJRTNV2QJXKUW5.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "29WJRTNV2QJXKUW5.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "29WJRTNV2QJXKUW5.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10383" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "29WJRTNV2QJXKUW5.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "29WJRTNV2QJXKUW5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "29WJRTNV2QJXKUW5.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "29WJRTNV2QJXKUW5.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7176" - }, - "appliesTo" : [ ] - }, - "29WJRTNV2QJXKUW5.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "29WJRTNV2QJXKUW5.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "29WJRTNV2QJXKUW5.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "29WJRTNV2QJXKUW5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "29WJRTNV2QJXKUW5.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "29WJRTNV2QJXKUW5.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4440000000" - }, - "appliesTo" : [ ] - }, - "29WJRTNV2QJXKUW5.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "29WJRTNV2QJXKUW5.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8252" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "29WJRTNV2QJXKUW5.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "29WJRTNV2QJXKUW5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "29WJRTNV2QJXKUW5.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "29WJRTNV2QJXKUW5.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "29WJRTNV2QJXKUW5.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "29WJRTNV2QJXKUW5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "29WJRTNV2QJXKUW5.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "29WJRTNV2QJXKUW5.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "29WJRTNV2QJXKUW5.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "29WJRTNV2QJXKUW5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "29WJRTNV2QJXKUW5.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "29WJRTNV2QJXKUW5.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7490000000" - }, - "appliesTo" : [ ] - }, - "29WJRTNV2QJXKUW5.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "29WJRTNV2QJXKUW5.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5424" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "29WJRTNV2QJXKUW5.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "29WJRTNV2QJXKUW5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "29WJRTNV2QJXKUW5.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "29WJRTNV2QJXKUW5.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19591" - }, - "appliesTo" : [ ] - }, - "29WJRTNV2QJXKUW5.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "29WJRTNV2QJXKUW5.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "29WJRTNV2QJXKUW5.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "29WJRTNV2QJXKUW5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "29WJRTNV2QJXKUW5.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "29WJRTNV2QJXKUW5.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "TB8JSDKA7MEGTRXV" : { - "TB8JSDKA7MEGTRXV.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TB8JSDKA7MEGTRXV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TB8JSDKA7MEGTRXV.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TB8JSDKA7MEGTRXV.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0681000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TB8JSDKA7MEGTRXV.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "TB8JSDKA7MEGTRXV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TB8JSDKA7MEGTRXV.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "TB8JSDKA7MEGTRXV.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0373000000" - }, - "appliesTo" : [ ] - }, - "TB8JSDKA7MEGTRXV.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "TB8JSDKA7MEGTRXV.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "327" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TB8JSDKA7MEGTRXV.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "TB8JSDKA7MEGTRXV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TB8JSDKA7MEGTRXV.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "TB8JSDKA7MEGTRXV.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0784000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TB8JSDKA7MEGTRXV.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TB8JSDKA7MEGTRXV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TB8JSDKA7MEGTRXV.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TB8JSDKA7MEGTRXV.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TB8JSDKA7MEGTRXV.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TB8JSDKA7MEGTRXV.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1087" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TB8JSDKA7MEGTRXV.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "TB8JSDKA7MEGTRXV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TB8JSDKA7MEGTRXV.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "TB8JSDKA7MEGTRXV.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0546000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TB8JSDKA7MEGTRXV.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "TB8JSDKA7MEGTRXV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TB8JSDKA7MEGTRXV.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "TB8JSDKA7MEGTRXV.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "665" - }, - "appliesTo" : [ ] - }, - "TB8JSDKA7MEGTRXV.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "TB8JSDKA7MEGTRXV.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0253000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TB8JSDKA7MEGTRXV.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TB8JSDKA7MEGTRXV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TB8JSDKA7MEGTRXV.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TB8JSDKA7MEGTRXV.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "578" - }, - "appliesTo" : [ ] - }, - "TB8JSDKA7MEGTRXV.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TB8JSDKA7MEGTRXV.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TB8JSDKA7MEGTRXV.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TB8JSDKA7MEGTRXV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TB8JSDKA7MEGTRXV.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TB8JSDKA7MEGTRXV.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TB8JSDKA7MEGTRXV.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TB8JSDKA7MEGTRXV.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "557" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TB8JSDKA7MEGTRXV.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TB8JSDKA7MEGTRXV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TB8JSDKA7MEGTRXV.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TB8JSDKA7MEGTRXV.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0325000000" - }, - "appliesTo" : [ ] - }, - "TB8JSDKA7MEGTRXV.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TB8JSDKA7MEGTRXV.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "284" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TB8JSDKA7MEGTRXV.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "TB8JSDKA7MEGTRXV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TB8JSDKA7MEGTRXV.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "TB8JSDKA7MEGTRXV.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0475000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TB8JSDKA7MEGTRXV.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "TB8JSDKA7MEGTRXV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TB8JSDKA7MEGTRXV.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "TB8JSDKA7MEGTRXV.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1303" - }, - "appliesTo" : [ ] - }, - "TB8JSDKA7MEGTRXV.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "TB8JSDKA7MEGTRXV.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TB8JSDKA7MEGTRXV.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "TB8JSDKA7MEGTRXV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TB8JSDKA7MEGTRXV.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "TB8JSDKA7MEGTRXV.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "641" - }, - "appliesTo" : [ ] - }, - "TB8JSDKA7MEGTRXV.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "TB8JSDKA7MEGTRXV.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "RZRGZV8C4EBA9RFW" : { - "RZRGZV8C4EBA9RFW.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "RZRGZV8C4EBA9RFW", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "RZRGZV8C4EBA9RFW.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "RZRGZV8C4EBA9RFW.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8870000000" - }, - "appliesTo" : [ ] - }, - "RZRGZV8C4EBA9RFW.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "RZRGZV8C4EBA9RFW.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "75862" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RZRGZV8C4EBA9RFW.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "RZRGZV8C4EBA9RFW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RZRGZV8C4EBA9RFW.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "RZRGZV8C4EBA9RFW.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.7590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RZRGZV8C4EBA9RFW.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "RZRGZV8C4EBA9RFW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RZRGZV8C4EBA9RFW.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "RZRGZV8C4EBA9RFW.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.1622000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RZRGZV8C4EBA9RFW.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "RZRGZV8C4EBA9RFW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RZRGZV8C4EBA9RFW.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "RZRGZV8C4EBA9RFW.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "60935" - }, - "appliesTo" : [ ] - }, - "RZRGZV8C4EBA9RFW.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "RZRGZV8C4EBA9RFW.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RZRGZV8C4EBA9RFW.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "RZRGZV8C4EBA9RFW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RZRGZV8C4EBA9RFW.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "RZRGZV8C4EBA9RFW.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30726" - }, - "appliesTo" : [ ] - }, - "RZRGZV8C4EBA9RFW.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "RZRGZV8C4EBA9RFW.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5075000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RZRGZV8C4EBA9RFW.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "RZRGZV8C4EBA9RFW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RZRGZV8C4EBA9RFW.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "RZRGZV8C4EBA9RFW.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "157217" - }, - "appliesTo" : [ ] - }, - "RZRGZV8C4EBA9RFW.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "RZRGZV8C4EBA9RFW.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RZRGZV8C4EBA9RFW.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "RZRGZV8C4EBA9RFW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RZRGZV8C4EBA9RFW.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "RZRGZV8C4EBA9RFW.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.9027000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RZRGZV8C4EBA9RFW.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "RZRGZV8C4EBA9RFW", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "RZRGZV8C4EBA9RFW.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "RZRGZV8C4EBA9RFW.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "57584" - }, - "appliesTo" : [ ] - }, - "RZRGZV8C4EBA9RFW.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "RZRGZV8C4EBA9RFW.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RZRGZV8C4EBA9RFW.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "RZRGZV8C4EBA9RFW", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "RZRGZV8C4EBA9RFW.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "RZRGZV8C4EBA9RFW.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29016" - }, - "appliesTo" : [ ] - }, - "RZRGZV8C4EBA9RFW.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "RZRGZV8C4EBA9RFW.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RZRGZV8C4EBA9RFW.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "RZRGZV8C4EBA9RFW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RZRGZV8C4EBA9RFW.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "RZRGZV8C4EBA9RFW.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.1774000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RZRGZV8C4EBA9RFW.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "RZRGZV8C4EBA9RFW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RZRGZV8C4EBA9RFW.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "RZRGZV8C4EBA9RFW.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0107000000" - }, - "appliesTo" : [ ] - }, - "RZRGZV8C4EBA9RFW.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "RZRGZV8C4EBA9RFW.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "79121" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RZRGZV8C4EBA9RFW.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "RZRGZV8C4EBA9RFW", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "RZRGZV8C4EBA9RFW.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "RZRGZV8C4EBA9RFW.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "149041" - }, - "appliesTo" : [ ] - }, - "RZRGZV8C4EBA9RFW.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "RZRGZV8C4EBA9RFW.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "WMP332VHSC4A9Z25" : { - "WMP332VHSC4A9Z25.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "WMP332VHSC4A9Z25", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "WMP332VHSC4A9Z25.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "WMP332VHSC4A9Z25.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "WMP332VHSC4A9Z25.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "WMP332VHSC4A9Z25", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "WMP332VHSC4A9Z25.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "WMP332VHSC4A9Z25.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "WMP332VHSC4A9Z25.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "WMP332VHSC4A9Z25.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3668" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WMP332VHSC4A9Z25.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "WMP332VHSC4A9Z25", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "WMP332VHSC4A9Z25.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "WMP332VHSC4A9Z25.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1951" - }, - "appliesTo" : [ ] - }, - "WMP332VHSC4A9Z25.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "WMP332VHSC4A9Z25.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0742000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WMP332VHSC4A9Z25.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "WMP332VHSC4A9Z25", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "WMP332VHSC4A9Z25.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "WMP332VHSC4A9Z25.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "959" - }, - "appliesTo" : [ ] - }, - "WMP332VHSC4A9Z25.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "WMP332VHSC4A9Z25.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1095000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WMP332VHSC4A9Z25.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "WMP332VHSC4A9Z25", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "WMP332VHSC4A9Z25.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "WMP332VHSC4A9Z25.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "WMP332VHSC4A9Z25.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "WMP332VHSC4A9Z25.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1880" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WMP332VHSC4A9Z25.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "WMP332VHSC4A9Z25", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "WMP332VHSC4A9Z25.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "WMP332VHSC4A9Z25.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1604000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "KT8ZEPCC5TRJCUKH" : { - "KT8ZEPCC5TRJCUKH.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "KT8ZEPCC5TRJCUKH", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "KT8ZEPCC5TRJCUKH.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "KT8ZEPCC5TRJCUKH.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5267000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KT8ZEPCC5TRJCUKH.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "KT8ZEPCC5TRJCUKH", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "KT8ZEPCC5TRJCUKH.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "KT8ZEPCC5TRJCUKH.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39639" - }, - "appliesTo" : [ ] - }, - "KT8ZEPCC5TRJCUKH.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "KT8ZEPCC5TRJCUKH.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KT8ZEPCC5TRJCUKH.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "KT8ZEPCC5TRJCUKH", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "KT8ZEPCC5TRJCUKH.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "KT8ZEPCC5TRJCUKH.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7820000000" - }, - "appliesTo" : [ ] - }, - "KT8ZEPCC5TRJCUKH.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "KT8ZEPCC5TRJCUKH.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6850" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KT8ZEPCC5TRJCUKH.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "KT8ZEPCC5TRJCUKH", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "KT8ZEPCC5TRJCUKH.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "KT8ZEPCC5TRJCUKH.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5008000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KT8ZEPCC5TRJCUKH.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "KT8ZEPCC5TRJCUKH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KT8ZEPCC5TRJCUKH.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "KT8ZEPCC5TRJCUKH.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13963" - }, - "appliesTo" : [ ] - }, - "KT8ZEPCC5TRJCUKH.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "KT8ZEPCC5TRJCUKH.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KT8ZEPCC5TRJCUKH.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "KT8ZEPCC5TRJCUKH", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "KT8ZEPCC5TRJCUKH.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "KT8ZEPCC5TRJCUKH.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5758000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KT8ZEPCC5TRJCUKH.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "KT8ZEPCC5TRJCUKH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KT8ZEPCC5TRJCUKH.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "KT8ZEPCC5TRJCUKH.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7005" - }, - "appliesTo" : [ ] - }, - "KT8ZEPCC5TRJCUKH.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "KT8ZEPCC5TRJCUKH.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7997000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KT8ZEPCC5TRJCUKH.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "KT8ZEPCC5TRJCUKH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KT8ZEPCC5TRJCUKH.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "KT8ZEPCC5TRJCUKH.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KT8ZEPCC5TRJCUKH.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "KT8ZEPCC5TRJCUKH", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "KT8ZEPCC5TRJCUKH.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "KT8ZEPCC5TRJCUKH.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19552" - }, - "appliesTo" : [ ] - }, - "KT8ZEPCC5TRJCUKH.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "KT8ZEPCC5TRJCUKH.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KT8ZEPCC5TRJCUKH.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "KT8ZEPCC5TRJCUKH", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "KT8ZEPCC5TRJCUKH.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "KT8ZEPCC5TRJCUKH.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19868" - }, - "appliesTo" : [ ] - }, - "KT8ZEPCC5TRJCUKH.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "KT8ZEPCC5TRJCUKH.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KT8ZEPCC5TRJCUKH.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "KT8ZEPCC5TRJCUKH", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "KT8ZEPCC5TRJCUKH.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "KT8ZEPCC5TRJCUKH.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38339" - }, - "appliesTo" : [ ] - }, - "KT8ZEPCC5TRJCUKH.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "KT8ZEPCC5TRJCUKH.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KT8ZEPCC5TRJCUKH.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "KT8ZEPCC5TRJCUKH", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "KT8ZEPCC5TRJCUKH.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "KT8ZEPCC5TRJCUKH.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13659" - }, - "appliesTo" : [ ] - }, - "KT8ZEPCC5TRJCUKH.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "KT8ZEPCC5TRJCUKH.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "6W35NFYWJ6ZG37VX" : { - "6W35NFYWJ6ZG37VX.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6W35NFYWJ6ZG37VX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6W35NFYWJ6ZG37VX.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6W35NFYWJ6ZG37VX.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t1.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6W35NFYWJ6ZG37VX.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6W35NFYWJ6ZG37VX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6W35NFYWJ6ZG37VX.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6W35NFYWJ6ZG37VX.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "84" - }, - "appliesTo" : [ ] - }, - "6W35NFYWJ6ZG37VX.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6W35NFYWJ6ZG37VX.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t1.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6W35NFYWJ6ZG37VX.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6W35NFYWJ6ZG37VX", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "6W35NFYWJ6ZG37VX.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6W35NFYWJ6ZG37VX.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "176" - }, - "appliesTo" : [ ] - }, - "6W35NFYWJ6ZG37VX.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6W35NFYWJ6ZG37VX.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), t1.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6W35NFYWJ6ZG37VX.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6W35NFYWJ6ZG37VX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6W35NFYWJ6ZG37VX.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6W35NFYWJ6ZG37VX.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "407" - }, - "appliesTo" : [ ] - }, - "6W35NFYWJ6ZG37VX.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6W35NFYWJ6ZG37VX.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), t1.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6W35NFYWJ6ZG37VX.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6W35NFYWJ6ZG37VX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6W35NFYWJ6ZG37VX.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6W35NFYWJ6ZG37VX.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "144" - }, - "appliesTo" : [ ] - }, - "6W35NFYWJ6ZG37VX.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6W35NFYWJ6ZG37VX.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t1.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "MDQWTP6HDQDFGNVZ" : { - "MDQWTP6HDQDFGNVZ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "MDQWTP6HDQDFGNVZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MDQWTP6HDQDFGNVZ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "MDQWTP6HDQDFGNVZ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "45989" - }, - "appliesTo" : [ ] - }, - "MDQWTP6HDQDFGNVZ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "MDQWTP6HDQDFGNVZ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MDQWTP6HDQDFGNVZ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "MDQWTP6HDQDFGNVZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MDQWTP6HDQDFGNVZ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "MDQWTP6HDQDFGNVZ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "92425" - }, - "appliesTo" : [ ] - }, - "MDQWTP6HDQDFGNVZ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "MDQWTP6HDQDFGNVZ.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MDQWTP6HDQDFGNVZ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "MDQWTP6HDQDFGNVZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MDQWTP6HDQDFGNVZ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "MDQWTP6HDQDFGNVZ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MDQWTP6HDQDFGNVZ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "MDQWTP6HDQDFGNVZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MDQWTP6HDQDFGNVZ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "MDQWTP6HDQDFGNVZ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46253" - }, - "appliesTo" : [ ] - }, - "MDQWTP6HDQDFGNVZ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "MDQWTP6HDQDFGNVZ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MDQWTP6HDQDFGNVZ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "MDQWTP6HDQDFGNVZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MDQWTP6HDQDFGNVZ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "MDQWTP6HDQDFGNVZ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MDQWTP6HDQDFGNVZ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "MDQWTP6HDQDFGNVZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MDQWTP6HDQDFGNVZ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "MDQWTP6HDQDFGNVZ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15779" - }, - "appliesTo" : [ ] - }, - "MDQWTP6HDQDFGNVZ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "MDQWTP6HDQDFGNVZ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MDQWTP6HDQDFGNVZ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "MDQWTP6HDQDFGNVZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MDQWTP6HDQDFGNVZ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "MDQWTP6HDQDFGNVZ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MDQWTP6HDQDFGNVZ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "MDQWTP6HDQDFGNVZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MDQWTP6HDQDFGNVZ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "MDQWTP6HDQDFGNVZ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31255" - }, - "appliesTo" : [ ] - }, - "MDQWTP6HDQDFGNVZ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "MDQWTP6HDQDFGNVZ.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MDQWTP6HDQDFGNVZ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "MDQWTP6HDQDFGNVZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MDQWTP6HDQDFGNVZ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "MDQWTP6HDQDFGNVZ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15645" - }, - "appliesTo" : [ ] - }, - "MDQWTP6HDQDFGNVZ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "MDQWTP6HDQDFGNVZ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MDQWTP6HDQDFGNVZ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "MDQWTP6HDQDFGNVZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MDQWTP6HDQDFGNVZ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "MDQWTP6HDQDFGNVZ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "MDQWTP6HDQDFGNVZ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "MDQWTP6HDQDFGNVZ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31518" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MDQWTP6HDQDFGNVZ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "MDQWTP6HDQDFGNVZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MDQWTP6HDQDFGNVZ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "MDQWTP6HDQDFGNVZ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "91770" - }, - "appliesTo" : [ ] - }, - "MDQWTP6HDQDFGNVZ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "MDQWTP6HDQDFGNVZ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MDQWTP6HDQDFGNVZ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "MDQWTP6HDQDFGNVZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MDQWTP6HDQDFGNVZ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "MDQWTP6HDQDFGNVZ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "7AH58V9CNVM6SBXM" : { - "7AH58V9CNVM6SBXM.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "7AH58V9CNVM6SBXM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7AH58V9CNVM6SBXM.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "7AH58V9CNVM6SBXM.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30078" - }, - "appliesTo" : [ ] - }, - "7AH58V9CNVM6SBXM.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "7AH58V9CNVM6SBXM.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7AH58V9CNVM6SBXM.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "7AH58V9CNVM6SBXM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7AH58V9CNVM6SBXM.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "7AH58V9CNVM6SBXM.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7AH58V9CNVM6SBXM.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "7AH58V9CNVM6SBXM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7AH58V9CNVM6SBXM.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "7AH58V9CNVM6SBXM.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1310000000" - }, - "appliesTo" : [ ] - }, - "7AH58V9CNVM6SBXM.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "7AH58V9CNVM6SBXM.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29729" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7AH58V9CNVM6SBXM.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "7AH58V9CNVM6SBXM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7AH58V9CNVM6SBXM.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "7AH58V9CNVM6SBXM.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13841" - }, - "appliesTo" : [ ] - }, - "7AH58V9CNVM6SBXM.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "7AH58V9CNVM6SBXM.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7AH58V9CNVM6SBXM.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "7AH58V9CNVM6SBXM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7AH58V9CNVM6SBXM.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "7AH58V9CNVM6SBXM.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "58798" - }, - "appliesTo" : [ ] - }, - "7AH58V9CNVM6SBXM.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "7AH58V9CNVM6SBXM.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7AH58V9CNVM6SBXM.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "7AH58V9CNVM6SBXM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7AH58V9CNVM6SBXM.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "7AH58V9CNVM6SBXM.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15256" - }, - "appliesTo" : [ ] - }, - "7AH58V9CNVM6SBXM.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "7AH58V9CNVM6SBXM.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7AH58V9CNVM6SBXM.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "7AH58V9CNVM6SBXM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7AH58V9CNVM6SBXM.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "7AH58V9CNVM6SBXM.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7AH58V9CNVM6SBXM.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "7AH58V9CNVM6SBXM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7AH58V9CNVM6SBXM.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "7AH58V9CNVM6SBXM.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7AH58V9CNVM6SBXM.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "7AH58V9CNVM6SBXM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7AH58V9CNVM6SBXM.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "7AH58V9CNVM6SBXM.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7AH58V9CNVM6SBXM.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "7AH58V9CNVM6SBXM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7AH58V9CNVM6SBXM.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "7AH58V9CNVM6SBXM.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27576" - }, - "appliesTo" : [ ] - }, - "7AH58V9CNVM6SBXM.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "7AH58V9CNVM6SBXM.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7AH58V9CNVM6SBXM.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "7AH58V9CNVM6SBXM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7AH58V9CNVM6SBXM.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "7AH58V9CNVM6SBXM.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27305" - }, - "appliesTo" : [ ] - }, - "7AH58V9CNVM6SBXM.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "7AH58V9CNVM6SBXM.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7AH58V9CNVM6SBXM.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "7AH58V9CNVM6SBXM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7AH58V9CNVM6SBXM.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "7AH58V9CNVM6SBXM.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "53430" - }, - "appliesTo" : [ ] - }, - "7AH58V9CNVM6SBXM.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "7AH58V9CNVM6SBXM.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "5ZCS4GNXFBKC3TU6" : { - "5ZCS4GNXFBKC3TU6.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "5ZCS4GNXFBKC3TU6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5ZCS4GNXFBKC3TU6.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "5ZCS4GNXFBKC3TU6.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2437" - }, - "appliesTo" : [ ] - }, - "5ZCS4GNXFBKC3TU6.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "5ZCS4GNXFBKC3TU6.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "5ZCS4GNXFBKC3TU6.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "5ZCS4GNXFBKC3TU6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5ZCS4GNXFBKC3TU6.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "5ZCS4GNXFBKC3TU6.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "5ZCS4GNXFBKC3TU6.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "5ZCS4GNXFBKC3TU6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5ZCS4GNXFBKC3TU6.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "5ZCS4GNXFBKC3TU6.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "5ZCS4GNXFBKC3TU6.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "5ZCS4GNXFBKC3TU6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5ZCS4GNXFBKC3TU6.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "5ZCS4GNXFBKC3TU6.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "5ZCS4GNXFBKC3TU6.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "5ZCS4GNXFBKC3TU6.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9816" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "5ZCS4GNXFBKC3TU6.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "5ZCS4GNXFBKC3TU6", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "5ZCS4GNXFBKC3TU6.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "5ZCS4GNXFBKC3TU6.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2130" - }, - "appliesTo" : [ ] - }, - "5ZCS4GNXFBKC3TU6.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "5ZCS4GNXFBKC3TU6.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5ZCS4GNXFBKC3TU6.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "5ZCS4GNXFBKC3TU6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5ZCS4GNXFBKC3TU6.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "5ZCS4GNXFBKC3TU6.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "5ZCS4GNXFBKC3TU6.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "5ZCS4GNXFBKC3TU6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5ZCS4GNXFBKC3TU6.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "5ZCS4GNXFBKC3TU6.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4721" - }, - "appliesTo" : [ ] - }, - "5ZCS4GNXFBKC3TU6.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "5ZCS4GNXFBKC3TU6.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "5ZCS4GNXFBKC3TU6.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "5ZCS4GNXFBKC3TU6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5ZCS4GNXFBKC3TU6.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "5ZCS4GNXFBKC3TU6.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "5ZCS4GNXFBKC3TU6.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "5ZCS4GNXFBKC3TU6", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "5ZCS4GNXFBKC3TU6.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "5ZCS4GNXFBKC3TU6.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4411" - }, - "appliesTo" : [ ] - }, - "5ZCS4GNXFBKC3TU6.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "5ZCS4GNXFBKC3TU6.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5ZCS4GNXFBKC3TU6.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "5ZCS4GNXFBKC3TU6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5ZCS4GNXFBKC3TU6.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "5ZCS4GNXFBKC3TU6.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5006" - }, - "appliesTo" : [ ] - }, - "5ZCS4GNXFBKC3TU6.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "5ZCS4GNXFBKC3TU6.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "5ZCS4GNXFBKC3TU6.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "5ZCS4GNXFBKC3TU6", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "5ZCS4GNXFBKC3TU6.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "5ZCS4GNXFBKC3TU6.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4120" - }, - "appliesTo" : [ ] - }, - "5ZCS4GNXFBKC3TU6.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "5ZCS4GNXFBKC3TU6.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5ZCS4GNXFBKC3TU6.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "5ZCS4GNXFBKC3TU6", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "5ZCS4GNXFBKC3TU6.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "5ZCS4GNXFBKC3TU6.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8324" - }, - "appliesTo" : [ ] - }, - "5ZCS4GNXFBKC3TU6.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "5ZCS4GNXFBKC3TU6.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "6XRAZB77YRS54YH2" : { - "6XRAZB77YRS54YH2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6XRAZB77YRS54YH2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "6XRAZB77YRS54YH2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6XRAZB77YRS54YH2.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6XRAZB77YRS54YH2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6XRAZB77YRS54YH2", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "6XRAZB77YRS54YH2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6XRAZB77YRS54YH2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "211" - }, - "appliesTo" : [ ] - }, - "6XRAZB77YRS54YH2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6XRAZB77YRS54YH2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6XRAZB77YRS54YH2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6XRAZB77YRS54YH2", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "6XRAZB77YRS54YH2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6XRAZB77YRS54YH2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "879" - }, - "appliesTo" : [ ] - }, - "6XRAZB77YRS54YH2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6XRAZB77YRS54YH2.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6XRAZB77YRS54YH2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6XRAZB77YRS54YH2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6XRAZB77YRS54YH2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6XRAZB77YRS54YH2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2169" - }, - "appliesTo" : [ ] - }, - "6XRAZB77YRS54YH2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6XRAZB77YRS54YH2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6XRAZB77YRS54YH2.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "6XRAZB77YRS54YH2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "6XRAZB77YRS54YH2.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "6XRAZB77YRS54YH2.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6XRAZB77YRS54YH2.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "6XRAZB77YRS54YH2", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "6XRAZB77YRS54YH2.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "6XRAZB77YRS54YH2.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "570" - }, - "appliesTo" : [ ] - }, - "6XRAZB77YRS54YH2.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "6XRAZB77YRS54YH2.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6XRAZB77YRS54YH2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6XRAZB77YRS54YH2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6XRAZB77YRS54YH2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6XRAZB77YRS54YH2.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0750000000" - }, - "appliesTo" : [ ] - }, - "6XRAZB77YRS54YH2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6XRAZB77YRS54YH2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "337" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6XRAZB77YRS54YH2.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "6XRAZB77YRS54YH2", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "6XRAZB77YRS54YH2.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "6XRAZB77YRS54YH2.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2531" - }, - "appliesTo" : [ ] - }, - "6XRAZB77YRS54YH2.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "6XRAZB77YRS54YH2.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6XRAZB77YRS54YH2.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "6XRAZB77YRS54YH2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6XRAZB77YRS54YH2.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "6XRAZB77YRS54YH2.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "6XRAZB77YRS54YH2.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "6XRAZB77YRS54YH2.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "931" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6XRAZB77YRS54YH2.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "6XRAZB77YRS54YH2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6XRAZB77YRS54YH2.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "6XRAZB77YRS54YH2.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "207" - }, - "appliesTo" : [ ] - }, - "6XRAZB77YRS54YH2.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "6XRAZB77YRS54YH2.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6XRAZB77YRS54YH2.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "6XRAZB77YRS54YH2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6XRAZB77YRS54YH2.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "6XRAZB77YRS54YH2.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "CE5S3J445F4X6VYF" : { - "CE5S3J445F4X6VYF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "CE5S3J445F4X6VYF", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "CE5S3J445F4X6VYF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "CE5S3J445F4X6VYF.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8870000000" - }, - "appliesTo" : [ ] - }, - "CE5S3J445F4X6VYF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "CE5S3J445F4X6VYF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "75862" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CE5S3J445F4X6VYF.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "CE5S3J445F4X6VYF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CE5S3J445F4X6VYF.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "CE5S3J445F4X6VYF.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "157217" - }, - "appliesTo" : [ ] - }, - "CE5S3J445F4X6VYF.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "CE5S3J445F4X6VYF.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CE5S3J445F4X6VYF.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "CE5S3J445F4X6VYF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CE5S3J445F4X6VYF.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "CE5S3J445F4X6VYF.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0107000000" - }, - "appliesTo" : [ ] - }, - "CE5S3J445F4X6VYF.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "CE5S3J445F4X6VYF.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "79121" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CE5S3J445F4X6VYF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "CE5S3J445F4X6VYF", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "CE5S3J445F4X6VYF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "CE5S3J445F4X6VYF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "149041" - }, - "appliesTo" : [ ] - }, - "CE5S3J445F4X6VYF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "CE5S3J445F4X6VYF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CE5S3J445F4X6VYF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "CE5S3J445F4X6VYF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CE5S3J445F4X6VYF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "CE5S3J445F4X6VYF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "57584" - }, - "appliesTo" : [ ] - }, - "CE5S3J445F4X6VYF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "CE5S3J445F4X6VYF.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CE5S3J445F4X6VYF.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "CE5S3J445F4X6VYF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CE5S3J445F4X6VYF.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "CE5S3J445F4X6VYF.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.1774000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CE5S3J445F4X6VYF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "CE5S3J445F4X6VYF", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "CE5S3J445F4X6VYF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "CE5S3J445F4X6VYF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29016" - }, - "appliesTo" : [ ] - }, - "CE5S3J445F4X6VYF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "CE5S3J445F4X6VYF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CE5S3J445F4X6VYF.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "CE5S3J445F4X6VYF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CE5S3J445F4X6VYF.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "CE5S3J445F4X6VYF.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.7590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CE5S3J445F4X6VYF.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "CE5S3J445F4X6VYF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CE5S3J445F4X6VYF.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "CE5S3J445F4X6VYF.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30726" - }, - "appliesTo" : [ ] - }, - "CE5S3J445F4X6VYF.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "CE5S3J445F4X6VYF.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5075000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CE5S3J445F4X6VYF.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "CE5S3J445F4X6VYF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CE5S3J445F4X6VYF.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "CE5S3J445F4X6VYF.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "CE5S3J445F4X6VYF.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "CE5S3J445F4X6VYF.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "60935" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CE5S3J445F4X6VYF.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "CE5S3J445F4X6VYF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CE5S3J445F4X6VYF.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "CE5S3J445F4X6VYF.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.1622000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CE5S3J445F4X6VYF.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "CE5S3J445F4X6VYF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CE5S3J445F4X6VYF.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "CE5S3J445F4X6VYF.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.9027000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "HPSQPPJ249MHQR6A" : { - "HPSQPPJ249MHQR6A.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "HPSQPPJ249MHQR6A", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HPSQPPJ249MHQR6A.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "HPSQPPJ249MHQR6A.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "HPSQPPJ249MHQR6A.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "HPSQPPJ249MHQR6A", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HPSQPPJ249MHQR6A.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "HPSQPPJ249MHQR6A.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14270" - }, - "appliesTo" : [ ] - }, - "HPSQPPJ249MHQR6A.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "HPSQPPJ249MHQR6A.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HPSQPPJ249MHQR6A.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "HPSQPPJ249MHQR6A", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HPSQPPJ249MHQR6A.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "HPSQPPJ249MHQR6A.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12984" - }, - "appliesTo" : [ ] - }, - "HPSQPPJ249MHQR6A.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "HPSQPPJ249MHQR6A.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HPSQPPJ249MHQR6A.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "HPSQPPJ249MHQR6A", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HPSQPPJ249MHQR6A.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "HPSQPPJ249MHQR6A.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "HPSQPPJ249MHQR6A.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "HPSQPPJ249MHQR6A", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HPSQPPJ249MHQR6A.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "HPSQPPJ249MHQR6A.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "HPSQPPJ249MHQR6A.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "HPSQPPJ249MHQR6A", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HPSQPPJ249MHQR6A.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "HPSQPPJ249MHQR6A.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0740000000" - }, - "appliesTo" : [ ] - }, - "HPSQPPJ249MHQR6A.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "HPSQPPJ249MHQR6A.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28229" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HPSQPPJ249MHQR6A.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "HPSQPPJ249MHQR6A", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HPSQPPJ249MHQR6A.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "HPSQPPJ249MHQR6A.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28145" - }, - "appliesTo" : [ ] - }, - "HPSQPPJ249MHQR6A.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "HPSQPPJ249MHQR6A.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "HPSQPPJ249MHQR6A.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "HPSQPPJ249MHQR6A", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HPSQPPJ249MHQR6A.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "HPSQPPJ249MHQR6A.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "55857" - }, - "appliesTo" : [ ] - }, - "HPSQPPJ249MHQR6A.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "HPSQPPJ249MHQR6A.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "HPSQPPJ249MHQR6A.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "HPSQPPJ249MHQR6A", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HPSQPPJ249MHQR6A.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "HPSQPPJ249MHQR6A.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "HPSQPPJ249MHQR6A.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "HPSQPPJ249MHQR6A", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HPSQPPJ249MHQR6A.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "HPSQPPJ249MHQR6A.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "50977" - }, - "appliesTo" : [ ] - }, - "HPSQPPJ249MHQR6A.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "HPSQPPJ249MHQR6A.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HPSQPPJ249MHQR6A.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "HPSQPPJ249MHQR6A", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HPSQPPJ249MHQR6A.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "HPSQPPJ249MHQR6A.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25624" - }, - "appliesTo" : [ ] - }, - "HPSQPPJ249MHQR6A.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "HPSQPPJ249MHQR6A.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HPSQPPJ249MHQR6A.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "HPSQPPJ249MHQR6A", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HPSQPPJ249MHQR6A.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "HPSQPPJ249MHQR6A.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26271" - }, - "appliesTo" : [ ] - }, - "HPSQPPJ249MHQR6A.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "HPSQPPJ249MHQR6A.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "RN2BTZEEU3PRHGPQ" : { - "RN2BTZEEU3PRHGPQ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "RN2BTZEEU3PRHGPQ", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "RN2BTZEEU3PRHGPQ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "RN2BTZEEU3PRHGPQ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "95038" - }, - "appliesTo" : [ ] - }, - "RN2BTZEEU3PRHGPQ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "RN2BTZEEU3PRHGPQ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RN2BTZEEU3PRHGPQ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "RN2BTZEEU3PRHGPQ", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "RN2BTZEEU3PRHGPQ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "RN2BTZEEU3PRHGPQ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RN2BTZEEU3PRHGPQ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "RN2BTZEEU3PRHGPQ", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "RN2BTZEEU3PRHGPQ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "RN2BTZEEU3PRHGPQ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "97030" - }, - "appliesTo" : [ ] - }, - "RN2BTZEEU3PRHGPQ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "RN2BTZEEU3PRHGPQ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RN2BTZEEU3PRHGPQ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "RN2BTZEEU3PRHGPQ", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "RN2BTZEEU3PRHGPQ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "RN2BTZEEU3PRHGPQ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "189292" - }, - "appliesTo" : [ ] - }, - "RN2BTZEEU3PRHGPQ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "RN2BTZEEU3PRHGPQ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RN2BTZEEU3PRHGPQ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "RN2BTZEEU3PRHGPQ", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "RN2BTZEEU3PRHGPQ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "RN2BTZEEU3PRHGPQ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "65192" - }, - "appliesTo" : [ ] - }, - "RN2BTZEEU3PRHGPQ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "RN2BTZEEU3PRHGPQ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RN2BTZEEU3PRHGPQ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "RN2BTZEEU3PRHGPQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RN2BTZEEU3PRHGPQ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "RN2BTZEEU3PRHGPQ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.6030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RN2BTZEEU3PRHGPQ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "RN2BTZEEU3PRHGPQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RN2BTZEEU3PRHGPQ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "RN2BTZEEU3PRHGPQ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33118" - }, - "appliesTo" : [ ] - }, - "RN2BTZEEU3PRHGPQ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "RN2BTZEEU3PRHGPQ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RN2BTZEEU3PRHGPQ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "RN2BTZEEU3PRHGPQ", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "RN2BTZEEU3PRHGPQ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "RN2BTZEEU3PRHGPQ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RN2BTZEEU3PRHGPQ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "RN2BTZEEU3PRHGPQ", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "RN2BTZEEU3PRHGPQ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "RN2BTZEEU3PRHGPQ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7280000000" - }, - "appliesTo" : [ ] - }, - "RN2BTZEEU3PRHGPQ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "RN2BTZEEU3PRHGPQ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32659" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RN2BTZEEU3PRHGPQ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "RN2BTZEEU3PRHGPQ", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "RN2BTZEEU3PRHGPQ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "RN2BTZEEU3PRHGPQ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "193720" - }, - "appliesTo" : [ ] - }, - "RN2BTZEEU3PRHGPQ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "RN2BTZEEU3PRHGPQ.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RN2BTZEEU3PRHGPQ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "RN2BTZEEU3PRHGPQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RN2BTZEEU3PRHGPQ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "RN2BTZEEU3PRHGPQ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "66092" - }, - "appliesTo" : [ ] - }, - "RN2BTZEEU3PRHGPQ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "RN2BTZEEU3PRHGPQ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "SEEZD7FKBH2QXGYK" : { - "SEEZD7FKBH2QXGYK.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SEEZD7FKBH2QXGYK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "SEEZD7FKBH2QXGYK.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SEEZD7FKBH2QXGYK.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "243708" - }, - "appliesTo" : [ ] - }, - "SEEZD7FKBH2QXGYK.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SEEZD7FKBH2QXGYK.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SEEZD7FKBH2QXGYK.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "SEEZD7FKBH2QXGYK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "SEEZD7FKBH2QXGYK.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "SEEZD7FKBH2QXGYK.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "174665" - }, - "appliesTo" : [ ] - }, - "SEEZD7FKBH2QXGYK.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "SEEZD7FKBH2QXGYK.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.6460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SEEZD7FKBH2QXGYK.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "SEEZD7FKBH2QXGYK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "SEEZD7FKBH2QXGYK.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "SEEZD7FKBH2QXGYK.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.3560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SEEZD7FKBH2QXGYK.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "SEEZD7FKBH2QXGYK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "SEEZD7FKBH2QXGYK.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "SEEZD7FKBH2QXGYK.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.6550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SEEZD7FKBH2QXGYK.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SEEZD7FKBH2QXGYK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "SEEZD7FKBH2QXGYK.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SEEZD7FKBH2QXGYK.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "69695" - }, - "appliesTo" : [ ] - }, - "SEEZD7FKBH2QXGYK.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SEEZD7FKBH2QXGYK.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.9560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SEEZD7FKBH2QXGYK.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SEEZD7FKBH2QXGYK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "SEEZD7FKBH2QXGYK.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SEEZD7FKBH2QXGYK.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.7080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SEEZD7FKBH2QXGYK.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "SEEZD7FKBH2QXGYK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "SEEZD7FKBH2QXGYK.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "SEEZD7FKBH2QXGYK.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SEEZD7FKBH2QXGYK.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "SEEZD7FKBH2QXGYK.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "342344" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SEEZD7FKBH2QXGYK.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "SEEZD7FKBH2QXGYK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SEEZD7FKBH2QXGYK.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "SEEZD7FKBH2QXGYK.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SEEZD7FKBH2QXGYK.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "SEEZD7FKBH2QXGYK.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "157197" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SEEZD7FKBH2QXGYK.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "SEEZD7FKBH2QXGYK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SEEZD7FKBH2QXGYK.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "SEEZD7FKBH2QXGYK.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.1560000000" - }, - "appliesTo" : [ ] - }, - "SEEZD7FKBH2QXGYK.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "SEEZD7FKBH2QXGYK.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "80202" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SEEZD7FKBH2QXGYK.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "SEEZD7FKBH2QXGYK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SEEZD7FKBH2QXGYK.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "SEEZD7FKBH2QXGYK.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "19.2270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SEEZD7FKBH2QXGYK.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SEEZD7FKBH2QXGYK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "SEEZD7FKBH2QXGYK.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SEEZD7FKBH2QXGYK.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "136601" - }, - "appliesTo" : [ ] - }, - "SEEZD7FKBH2QXGYK.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SEEZD7FKBH2QXGYK.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SEEZD7FKBH2QXGYK.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SEEZD7FKBH2QXGYK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "SEEZD7FKBH2QXGYK.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SEEZD7FKBH2QXGYK.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "129632" - }, - "appliesTo" : [ ] - }, - "SEEZD7FKBH2QXGYK.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SEEZD7FKBH2QXGYK.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "K86YRT3FMXX5Q76Y" : { - "K86YRT3FMXX5Q76Y.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "K86YRT3FMXX5Q76Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K86YRT3FMXX5Q76Y.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "K86YRT3FMXX5Q76Y.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "K86YRT3FMXX5Q76Y.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "K86YRT3FMXX5Q76Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K86YRT3FMXX5Q76Y.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "K86YRT3FMXX5Q76Y.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10848" - }, - "appliesTo" : [ ] - }, - "K86YRT3FMXX5Q76Y.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "K86YRT3FMXX5Q76Y.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "K86YRT3FMXX5Q76Y.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "K86YRT3FMXX5Q76Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K86YRT3FMXX5Q76Y.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "K86YRT3FMXX5Q76Y.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32350" - }, - "appliesTo" : [ ] - }, - "K86YRT3FMXX5Q76Y.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "K86YRT3FMXX5Q76Y.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "K86YRT3FMXX5Q76Y.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "K86YRT3FMXX5Q76Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K86YRT3FMXX5Q76Y.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "K86YRT3FMXX5Q76Y.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14352" - }, - "appliesTo" : [ ] - }, - "K86YRT3FMXX5Q76Y.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "K86YRT3FMXX5Q76Y.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "K86YRT3FMXX5Q76Y.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "K86YRT3FMXX5Q76Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K86YRT3FMXX5Q76Y.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "K86YRT3FMXX5Q76Y.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "K86YRT3FMXX5Q76Y.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "K86YRT3FMXX5Q76Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K86YRT3FMXX5Q76Y.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "K86YRT3FMXX5Q76Y.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18489" - }, - "appliesTo" : [ ] - }, - "K86YRT3FMXX5Q76Y.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "K86YRT3FMXX5Q76Y.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "K86YRT3FMXX5Q76Y.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "K86YRT3FMXX5Q76Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K86YRT3FMXX5Q76Y.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "K86YRT3FMXX5Q76Y.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "K86YRT3FMXX5Q76Y.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "K86YRT3FMXX5Q76Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K86YRT3FMXX5Q76Y.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "K86YRT3FMXX5Q76Y.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26982" - }, - "appliesTo" : [ ] - }, - "K86YRT3FMXX5Q76Y.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "K86YRT3FMXX5Q76Y.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "K86YRT3FMXX5Q76Y.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "K86YRT3FMXX5Q76Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K86YRT3FMXX5Q76Y.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "K86YRT3FMXX5Q76Y.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9433" - }, - "appliesTo" : [ ] - }, - "K86YRT3FMXX5Q76Y.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "K86YRT3FMXX5Q76Y.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "K86YRT3FMXX5Q76Y.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "K86YRT3FMXX5Q76Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K86YRT3FMXX5Q76Y.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "K86YRT3FMXX5Q76Y.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6280000000" - }, - "appliesTo" : [ ] - }, - "K86YRT3FMXX5Q76Y.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "K86YRT3FMXX5Q76Y.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16505" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "K86YRT3FMXX5Q76Y.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "K86YRT3FMXX5Q76Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K86YRT3FMXX5Q76Y.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "K86YRT3FMXX5Q76Y.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21262" - }, - "appliesTo" : [ ] - }, - "K86YRT3FMXX5Q76Y.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "K86YRT3FMXX5Q76Y.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "K86YRT3FMXX5Q76Y.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "K86YRT3FMXX5Q76Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K86YRT3FMXX5Q76Y.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "K86YRT3FMXX5Q76Y.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "R44YAG7V59VVJURM" : { - "R44YAG7V59VVJURM.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "R44YAG7V59VVJURM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R44YAG7V59VVJURM.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "R44YAG7V59VVJURM.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "R44YAG7V59VVJURM.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "R44YAG7V59VVJURM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R44YAG7V59VVJURM.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "R44YAG7V59VVJURM.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9042" - }, - "appliesTo" : [ ] - }, - "R44YAG7V59VVJURM.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "R44YAG7V59VVJURM.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "R44YAG7V59VVJURM.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "R44YAG7V59VVJURM", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "R44YAG7V59VVJURM.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "R44YAG7V59VVJURM.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16460" - }, - "appliesTo" : [ ] - }, - "R44YAG7V59VVJURM.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "R44YAG7V59VVJURM.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "R44YAG7V59VVJURM.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "R44YAG7V59VVJURM", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "R44YAG7V59VVJURM.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "R44YAG7V59VVJURM.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16235" - }, - "appliesTo" : [ ] - }, - "R44YAG7V59VVJURM.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "R44YAG7V59VVJURM.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "R44YAG7V59VVJURM.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "R44YAG7V59VVJURM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "R44YAG7V59VVJURM.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "R44YAG7V59VVJURM.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "R44YAG7V59VVJURM.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "R44YAG7V59VVJURM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "R44YAG7V59VVJURM.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "R44YAG7V59VVJURM.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8380000000" - }, - "appliesTo" : [ ] - }, - "R44YAG7V59VVJURM.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "R44YAG7V59VVJURM.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18617" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "R44YAG7V59VVJURM.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "R44YAG7V59VVJURM", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "R44YAG7V59VVJURM.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "R44YAG7V59VVJURM.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33938" - }, - "appliesTo" : [ ] - }, - "R44YAG7V59VVJURM.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "R44YAG7V59VVJURM.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "R44YAG7V59VVJURM.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "R44YAG7V59VVJURM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "R44YAG7V59VVJURM.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "R44YAG7V59VVJURM.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "R44YAG7V59VVJURM.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "R44YAG7V59VVJURM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R44YAG7V59VVJURM.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "R44YAG7V59VVJURM.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18862" - }, - "appliesTo" : [ ] - }, - "R44YAG7V59VVJURM.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "R44YAG7V59VVJURM.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "R44YAG7V59VVJURM.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "R44YAG7V59VVJURM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "R44YAG7V59VVJURM.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "R44YAG7V59VVJURM.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39906" - }, - "appliesTo" : [ ] - }, - "R44YAG7V59VVJURM.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "R44YAG7V59VVJURM.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "R44YAG7V59VVJURM.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "R44YAG7V59VVJURM", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "R44YAG7V59VVJURM.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "R44YAG7V59VVJURM.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7817" - }, - "appliesTo" : [ ] - }, - "R44YAG7V59VVJURM.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "R44YAG7V59VVJURM.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "R44YAG7V59VVJURM.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "R44YAG7V59VVJURM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "R44YAG7V59VVJURM.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "R44YAG7V59VVJURM.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "CHDYF9BYGFSAHSRK" : { - "CHDYF9BYGFSAHSRK.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "CHDYF9BYGFSAHSRK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CHDYF9BYGFSAHSRK.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "CHDYF9BYGFSAHSRK.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16967" - }, - "appliesTo" : [ ] - }, - "CHDYF9BYGFSAHSRK.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "CHDYF9BYGFSAHSRK.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CHDYF9BYGFSAHSRK.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "CHDYF9BYGFSAHSRK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CHDYF9BYGFSAHSRK.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "CHDYF9BYGFSAHSRK.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CHDYF9BYGFSAHSRK.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "CHDYF9BYGFSAHSRK", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "CHDYF9BYGFSAHSRK.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "CHDYF9BYGFSAHSRK.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "48071" - }, - "appliesTo" : [ ] - }, - "CHDYF9BYGFSAHSRK.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "CHDYF9BYGFSAHSRK.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CHDYF9BYGFSAHSRK.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "CHDYF9BYGFSAHSRK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CHDYF9BYGFSAHSRK.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "CHDYF9BYGFSAHSRK.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CHDYF9BYGFSAHSRK.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "CHDYF9BYGFSAHSRK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CHDYF9BYGFSAHSRK.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "CHDYF9BYGFSAHSRK.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "48817" - }, - "appliesTo" : [ ] - }, - "CHDYF9BYGFSAHSRK.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "CHDYF9BYGFSAHSRK.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CHDYF9BYGFSAHSRK.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "CHDYF9BYGFSAHSRK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CHDYF9BYGFSAHSRK.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "CHDYF9BYGFSAHSRK.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CHDYF9BYGFSAHSRK.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "CHDYF9BYGFSAHSRK", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "CHDYF9BYGFSAHSRK.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "CHDYF9BYGFSAHSRK.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8353" - }, - "appliesTo" : [ ] - }, - "CHDYF9BYGFSAHSRK.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "CHDYF9BYGFSAHSRK.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CHDYF9BYGFSAHSRK.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "CHDYF9BYGFSAHSRK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CHDYF9BYGFSAHSRK.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "CHDYF9BYGFSAHSRK.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CHDYF9BYGFSAHSRK.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "CHDYF9BYGFSAHSRK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CHDYF9BYGFSAHSRK.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "CHDYF9BYGFSAHSRK.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8506" - }, - "appliesTo" : [ ] - }, - "CHDYF9BYGFSAHSRK.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "CHDYF9BYGFSAHSRK.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CHDYF9BYGFSAHSRK.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "CHDYF9BYGFSAHSRK", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "CHDYF9BYGFSAHSRK.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "CHDYF9BYGFSAHSRK.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "CHDYF9BYGFSAHSRK.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "CHDYF9BYGFSAHSRK.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16667" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CHDYF9BYGFSAHSRK.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "CHDYF9BYGFSAHSRK", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "CHDYF9BYGFSAHSRK.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "CHDYF9BYGFSAHSRK.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9190000000" - }, - "appliesTo" : [ ] - }, - "CHDYF9BYGFSAHSRK.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "CHDYF9BYGFSAHSRK.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24157" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CHDYF9BYGFSAHSRK.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "CHDYF9BYGFSAHSRK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CHDYF9BYGFSAHSRK.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "CHDYF9BYGFSAHSRK.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9310000000" - }, - "appliesTo" : [ ] - }, - "CHDYF9BYGFSAHSRK.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "CHDYF9BYGFSAHSRK.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24455" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "8WJ6ATW98R4XURM2" : { - "8WJ6ATW98R4XURM2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "8WJ6ATW98R4XURM2", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "8WJ6ATW98R4XURM2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "8WJ6ATW98R4XURM2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "975" - }, - "appliesTo" : [ ] - }, - "8WJ6ATW98R4XURM2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "8WJ6ATW98R4XURM2.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8WJ6ATW98R4XURM2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "8WJ6ATW98R4XURM2", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "8WJ6ATW98R4XURM2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "8WJ6ATW98R4XURM2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0530000000" - }, - "appliesTo" : [ ] - }, - "8WJ6ATW98R4XURM2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "8WJ6ATW98R4XURM2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "526" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8WJ6ATW98R4XURM2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "8WJ6ATW98R4XURM2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8WJ6ATW98R4XURM2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "8WJ6ATW98R4XURM2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2008" - }, - "appliesTo" : [ ] - }, - "8WJ6ATW98R4XURM2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "8WJ6ATW98R4XURM2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8WJ6ATW98R4XURM2.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "8WJ6ATW98R4XURM2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8WJ6ATW98R4XURM2.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "8WJ6ATW98R4XURM2.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1296000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8WJ6ATW98R4XURM2.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "8WJ6ATW98R4XURM2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8WJ6ATW98R4XURM2.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "8WJ6ATW98R4XURM2.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1153" - }, - "appliesTo" : [ ] - }, - "8WJ6ATW98R4XURM2.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "8WJ6ATW98R4XURM2.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0435000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8WJ6ATW98R4XURM2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "8WJ6ATW98R4XURM2", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "8WJ6ATW98R4XURM2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "8WJ6ATW98R4XURM2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1051" - }, - "appliesTo" : [ ] - }, - "8WJ6ATW98R4XURM2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "8WJ6ATW98R4XURM2.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8WJ6ATW98R4XURM2.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "8WJ6ATW98R4XURM2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8WJ6ATW98R4XURM2.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "8WJ6ATW98R4XURM2.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "579" - }, - "appliesTo" : [ ] - }, - "8WJ6ATW98R4XURM2.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "8WJ6ATW98R4XURM2.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8WJ6ATW98R4XURM2.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "8WJ6ATW98R4XURM2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8WJ6ATW98R4XURM2.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "8WJ6ATW98R4XURM2.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "8WJ6ATW98R4XURM2.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "8WJ6ATW98R4XURM2.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2264" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8WJ6ATW98R4XURM2.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "8WJ6ATW98R4XURM2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8WJ6ATW98R4XURM2.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "8WJ6ATW98R4XURM2.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0902000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8WJ6ATW98R4XURM2.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "8WJ6ATW98R4XURM2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8WJ6ATW98R4XURM2.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "8WJ6ATW98R4XURM2.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0988000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8WJ6ATW98R4XURM2.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "8WJ6ATW98R4XURM2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8WJ6ATW98R4XURM2.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "8WJ6ATW98R4XURM2.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "8WJ6ATW98R4XURM2.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "8WJ6ATW98R4XURM2.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1080" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8WJ6ATW98R4XURM2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "8WJ6ATW98R4XURM2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8WJ6ATW98R4XURM2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "8WJ6ATW98R4XURM2.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "C8A3366T6RWMUWD6" : { - "C8A3366T6RWMUWD6.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "C8A3366T6RWMUWD6", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "C8A3366T6RWMUWD6.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "C8A3366T6RWMUWD6.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.6064000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "C8A3366T6RWMUWD6.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "C8A3366T6RWMUWD6", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "C8A3366T6RWMUWD6.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "C8A3366T6RWMUWD6.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "156419" - }, - "appliesTo" : [ ] - }, - "C8A3366T6RWMUWD6.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "C8A3366T6RWMUWD6.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.9520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "C8A3366T6RWMUWD6.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "C8A3366T6RWMUWD6", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "C8A3366T6RWMUWD6.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "C8A3366T6RWMUWD6.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.0064000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "C8A3366T6RWMUWD6.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "C8A3366T6RWMUWD6", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "C8A3366T6RWMUWD6.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "C8A3366T6RWMUWD6.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "C8A3366T6RWMUWD6.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "C8A3366T6RWMUWD6.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "317109" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "C8A3366T6RWMUWD6.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "C8A3366T6RWMUWD6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "C8A3366T6RWMUWD6.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "C8A3366T6RWMUWD6.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.9038000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "C8A3366T6RWMUWD6.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "C8A3366T6RWMUWD6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "C8A3366T6RWMUWD6.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "C8A3366T6RWMUWD6.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.3976000000" - }, - "appliesTo" : [ ] - }, - "C8A3366T6RWMUWD6.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "C8A3366T6RWMUWD6.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "56043" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "C8A3366T6RWMUWD6.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "C8A3366T6RWMUWD6", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "C8A3366T6RWMUWD6.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "C8A3366T6RWMUWD6.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "109274" - }, - "appliesTo" : [ ] - }, - "C8A3366T6RWMUWD6.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "C8A3366T6RWMUWD6.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "C8A3366T6RWMUWD6.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "C8A3366T6RWMUWD6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "C8A3366T6RWMUWD6.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "C8A3366T6RWMUWD6.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "111706" - }, - "appliesTo" : [ ] - }, - "C8A3366T6RWMUWD6.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "C8A3366T6RWMUWD6.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "C8A3366T6RWMUWD6.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "C8A3366T6RWMUWD6", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "C8A3366T6RWMUWD6.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "C8A3366T6RWMUWD6.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.2560000000" - }, - "appliesTo" : [ ] - }, - "C8A3366T6RWMUWD6.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "C8A3366T6RWMUWD6.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "54803" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "C8A3366T6RWMUWD6.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "C8A3366T6RWMUWD6", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "C8A3366T6RWMUWD6.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "C8A3366T6RWMUWD6.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "158941" - }, - "appliesTo" : [ ] - }, - "C8A3366T6RWMUWD6.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "C8A3366T6RWMUWD6.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.0480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "C8A3366T6RWMUWD6.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "C8A3366T6RWMUWD6", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "C8A3366T6RWMUWD6.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "C8A3366T6RWMUWD6.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "C8A3366T6RWMUWD6.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "C8A3366T6RWMUWD6.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "306635" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "C8A3366T6RWMUWD6.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "C8A3366T6RWMUWD6", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "C8A3366T6RWMUWD6.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "C8A3366T6RWMUWD6.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.2138000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "4TCUDNKW7PMPSUT2" : { - "4TCUDNKW7PMPSUT2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "4TCUDNKW7PMPSUT2", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "4TCUDNKW7PMPSUT2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "4TCUDNKW7PMPSUT2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12364" - }, - "appliesTo" : [ ] - }, - "4TCUDNKW7PMPSUT2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "4TCUDNKW7PMPSUT2.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4TCUDNKW7PMPSUT2.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "4TCUDNKW7PMPSUT2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "4TCUDNKW7PMPSUT2.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "4TCUDNKW7PMPSUT2.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "4TCUDNKW7PMPSUT2.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "4TCUDNKW7PMPSUT2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "4TCUDNKW7PMPSUT2.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "4TCUDNKW7PMPSUT2.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "4TCUDNKW7PMPSUT2.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "4TCUDNKW7PMPSUT2.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33383" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4TCUDNKW7PMPSUT2.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "4TCUDNKW7PMPSUT2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4TCUDNKW7PMPSUT2.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "4TCUDNKW7PMPSUT2.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14169" - }, - "appliesTo" : [ ] - }, - "4TCUDNKW7PMPSUT2.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "4TCUDNKW7PMPSUT2.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4TCUDNKW7PMPSUT2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "4TCUDNKW7PMPSUT2", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "4TCUDNKW7PMPSUT2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "4TCUDNKW7PMPSUT2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8223" - }, - "appliesTo" : [ ] - }, - "4TCUDNKW7PMPSUT2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "4TCUDNKW7PMPSUT2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4TCUDNKW7PMPSUT2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "4TCUDNKW7PMPSUT2", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "4TCUDNKW7PMPSUT2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "4TCUDNKW7PMPSUT2.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "4TCUDNKW7PMPSUT2.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "4TCUDNKW7PMPSUT2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4TCUDNKW7PMPSUT2.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "4TCUDNKW7PMPSUT2.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "4TCUDNKW7PMPSUT2.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "4TCUDNKW7PMPSUT2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4TCUDNKW7PMPSUT2.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "4TCUDNKW7PMPSUT2.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8250000000" - }, - "appliesTo" : [ ] - }, - "4TCUDNKW7PMPSUT2.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "4TCUDNKW7PMPSUT2.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7229" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4TCUDNKW7PMPSUT2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "4TCUDNKW7PMPSUT2", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "4TCUDNKW7PMPSUT2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "4TCUDNKW7PMPSUT2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24521" - }, - "appliesTo" : [ ] - }, - "4TCUDNKW7PMPSUT2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "4TCUDNKW7PMPSUT2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4TCUDNKW7PMPSUT2.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "4TCUDNKW7PMPSUT2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "4TCUDNKW7PMPSUT2.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "4TCUDNKW7PMPSUT2.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22202" - }, - "appliesTo" : [ ] - }, - "4TCUDNKW7PMPSUT2.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "4TCUDNKW7PMPSUT2.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4TCUDNKW7PMPSUT2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "4TCUDNKW7PMPSUT2", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "4TCUDNKW7PMPSUT2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "4TCUDNKW7PMPSUT2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15702" - }, - "appliesTo" : [ ] - }, - "4TCUDNKW7PMPSUT2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "4TCUDNKW7PMPSUT2.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "DMR9Q6F9N9PFPE9C" : { - "DMR9Q6F9N9PFPE9C.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "DMR9Q6F9N9PFPE9C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DMR9Q6F9N9PFPE9C.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "DMR9Q6F9N9PFPE9C.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2358" - }, - "appliesTo" : [ ] - }, - "DMR9Q6F9N9PFPE9C.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "DMR9Q6F9N9PFPE9C.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DMR9Q6F9N9PFPE9C.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "DMR9Q6F9N9PFPE9C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DMR9Q6F9N9PFPE9C.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "DMR9Q6F9N9PFPE9C.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4622" - }, - "appliesTo" : [ ] - }, - "DMR9Q6F9N9PFPE9C.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "DMR9Q6F9N9PFPE9C.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DMR9Q6F9N9PFPE9C.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "DMR9Q6F9N9PFPE9C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DMR9Q6F9N9PFPE9C.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "DMR9Q6F9N9PFPE9C.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DMR9Q6F9N9PFPE9C.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "DMR9Q6F9N9PFPE9C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DMR9Q6F9N9PFPE9C.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "DMR9Q6F9N9PFPE9C.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3100000000" - }, - "appliesTo" : [ ] - }, - "DMR9Q6F9N9PFPE9C.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "DMR9Q6F9N9PFPE9C.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2712" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DMR9Q6F9N9PFPE9C.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "DMR9Q6F9N9PFPE9C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DMR9Q6F9N9PFPE9C.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "DMR9Q6F9N9PFPE9C.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1570000000" - }, - "appliesTo" : [ ] - }, - "DMR9Q6F9N9PFPE9C.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "DMR9Q6F9N9PFPE9C.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4126" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DMR9Q6F9N9PFPE9C.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "DMR9Q6F9N9PFPE9C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DMR9Q6F9N9PFPE9C.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "DMR9Q6F9N9PFPE9C.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1370000000" - }, - "appliesTo" : [ ] - }, - "DMR9Q6F9N9PFPE9C.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "DMR9Q6F9N9PFPE9C.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3588" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DMR9Q6F9N9PFPE9C.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "DMR9Q6F9N9PFPE9C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DMR9Q6F9N9PFPE9C.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "DMR9Q6F9N9PFPE9C.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DMR9Q6F9N9PFPE9C.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "DMR9Q6F9N9PFPE9C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DMR9Q6F9N9PFPE9C.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "DMR9Q6F9N9PFPE9C.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "DMR9Q6F9N9PFPE9C.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "DMR9Q6F9N9PFPE9C.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6745" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DMR9Q6F9N9PFPE9C.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "DMR9Q6F9N9PFPE9C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DMR9Q6F9N9PFPE9C.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "DMR9Q6F9N9PFPE9C.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8087" - }, - "appliesTo" : [ ] - }, - "DMR9Q6F9N9PFPE9C.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "DMR9Q6F9N9PFPE9C.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DMR9Q6F9N9PFPE9C.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "DMR9Q6F9N9PFPE9C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DMR9Q6F9N9PFPE9C.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "DMR9Q6F9N9PFPE9C.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5316" - }, - "appliesTo" : [ ] - }, - "DMR9Q6F9N9PFPE9C.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "DMR9Q6F9N9PFPE9C.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DMR9Q6F9N9PFPE9C.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "DMR9Q6F9N9PFPE9C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DMR9Q6F9N9PFPE9C.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "DMR9Q6F9N9PFPE9C.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DMR9Q6F9N9PFPE9C.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "DMR9Q6F9N9PFPE9C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DMR9Q6F9N9PFPE9C.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "DMR9Q6F9N9PFPE9C.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "ZQKQM4BJPUBCMDXD" : { - "ZQKQM4BJPUBCMDXD.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ZQKQM4BJPUBCMDXD", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ZQKQM4BJPUBCMDXD.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ZQKQM4BJPUBCMDXD.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ZQKQM4BJPUBCMDXD.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ZQKQM4BJPUBCMDXD.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19745" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZQKQM4BJPUBCMDXD.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ZQKQM4BJPUBCMDXD", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "ZQKQM4BJPUBCMDXD.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ZQKQM4BJPUBCMDXD.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11213" - }, - "appliesTo" : [ ] - }, - "ZQKQM4BJPUBCMDXD.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ZQKQM4BJPUBCMDXD.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZQKQM4BJPUBCMDXD.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ZQKQM4BJPUBCMDXD", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ZQKQM4BJPUBCMDXD.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ZQKQM4BJPUBCMDXD.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37153" - }, - "appliesTo" : [ ] - }, - "ZQKQM4BJPUBCMDXD.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ZQKQM4BJPUBCMDXD.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZQKQM4BJPUBCMDXD.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ZQKQM4BJPUBCMDXD", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "ZQKQM4BJPUBCMDXD.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ZQKQM4BJPUBCMDXD.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16924" - }, - "appliesTo" : [ ] - }, - "ZQKQM4BJPUBCMDXD.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ZQKQM4BJPUBCMDXD.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZQKQM4BJPUBCMDXD.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ZQKQM4BJPUBCMDXD", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ZQKQM4BJPUBCMDXD.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ZQKQM4BJPUBCMDXD.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "P6N8TE7UUQ73EHRS" : { - "P6N8TE7UUQ73EHRS.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "P6N8TE7UUQ73EHRS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P6N8TE7UUQ73EHRS.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "P6N8TE7UUQ73EHRS.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "P6N8TE7UUQ73EHRS.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "P6N8TE7UUQ73EHRS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P6N8TE7UUQ73EHRS.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "P6N8TE7UUQ73EHRS.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "P6N8TE7UUQ73EHRS.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "P6N8TE7UUQ73EHRS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P6N8TE7UUQ73EHRS.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "P6N8TE7UUQ73EHRS.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "P6N8TE7UUQ73EHRS.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "P6N8TE7UUQ73EHRS.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "483" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "P6N8TE7UUQ73EHRS.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "P6N8TE7UUQ73EHRS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P6N8TE7UUQ73EHRS.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "P6N8TE7UUQ73EHRS.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "P6N8TE7UUQ73EHRS.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "P6N8TE7UUQ73EHRS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P6N8TE7UUQ73EHRS.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "P6N8TE7UUQ73EHRS.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "548" - }, - "appliesTo" : [ ] - }, - "P6N8TE7UUQ73EHRS.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "P6N8TE7UUQ73EHRS.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "P6N8TE7UUQ73EHRS.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "P6N8TE7UUQ73EHRS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P6N8TE7UUQ73EHRS.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "P6N8TE7UUQ73EHRS.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "P6N8TE7UUQ73EHRS.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "P6N8TE7UUQ73EHRS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P6N8TE7UUQ73EHRS.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "P6N8TE7UUQ73EHRS.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "P6N8TE7UUQ73EHRS.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "P6N8TE7UUQ73EHRS.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "949" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "P6N8TE7UUQ73EHRS.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "P6N8TE7UUQ73EHRS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P6N8TE7UUQ73EHRS.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "P6N8TE7UUQ73EHRS.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "566" - }, - "appliesTo" : [ ] - }, - "P6N8TE7UUQ73EHRS.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "P6N8TE7UUQ73EHRS.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "P6N8TE7UUQ73EHRS.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "P6N8TE7UUQ73EHRS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P6N8TE7UUQ73EHRS.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "P6N8TE7UUQ73EHRS.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "500" - }, - "appliesTo" : [ ] - }, - "P6N8TE7UUQ73EHRS.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "P6N8TE7UUQ73EHRS.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "P6N8TE7UUQ73EHRS.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "P6N8TE7UUQ73EHRS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P6N8TE7UUQ73EHRS.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "P6N8TE7UUQ73EHRS.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "246" - }, - "appliesTo" : [ ] - }, - "P6N8TE7UUQ73EHRS.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "P6N8TE7UUQ73EHRS.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "P6N8TE7UUQ73EHRS.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "P6N8TE7UUQ73EHRS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P6N8TE7UUQ73EHRS.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "P6N8TE7UUQ73EHRS.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1113" - }, - "appliesTo" : [ ] - }, - "P6N8TE7UUQ73EHRS.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "P6N8TE7UUQ73EHRS.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "P6N8TE7UUQ73EHRS.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "P6N8TE7UUQ73EHRS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P6N8TE7UUQ73EHRS.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "P6N8TE7UUQ73EHRS.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "279" - }, - "appliesTo" : [ ] - }, - "P6N8TE7UUQ73EHRS.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "P6N8TE7UUQ73EHRS.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "Y9MW2V2ZRXFQMQHU" : { - "Y9MW2V2ZRXFQMQHU.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Y9MW2V2ZRXFQMQHU", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "Y9MW2V2ZRXFQMQHU.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Y9MW2V2ZRXFQMQHU.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Y9MW2V2ZRXFQMQHU.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Y9MW2V2ZRXFQMQHU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "Y9MW2V2ZRXFQMQHU.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Y9MW2V2ZRXFQMQHU.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "360" - }, - "appliesTo" : [ ] - }, - "Y9MW2V2ZRXFQMQHU.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Y9MW2V2ZRXFQMQHU.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y9MW2V2ZRXFQMQHU.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Y9MW2V2ZRXFQMQHU", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "Y9MW2V2ZRXFQMQHU.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Y9MW2V2ZRXFQMQHU.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "571" - }, - "appliesTo" : [ ] - }, - "Y9MW2V2ZRXFQMQHU.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Y9MW2V2ZRXFQMQHU.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y9MW2V2ZRXFQMQHU.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Y9MW2V2ZRXFQMQHU", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "Y9MW2V2ZRXFQMQHU.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Y9MW2V2ZRXFQMQHU.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "928" - }, - "appliesTo" : [ ] - }, - "Y9MW2V2ZRXFQMQHU.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Y9MW2V2ZRXFQMQHU.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Y9MW2V2ZRXFQMQHU.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Y9MW2V2ZRXFQMQHU", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "Y9MW2V2ZRXFQMQHU.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Y9MW2V2ZRXFQMQHU.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2085" - }, - "appliesTo" : [ ] - }, - "Y9MW2V2ZRXFQMQHU.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Y9MW2V2ZRXFQMQHU.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "V2PCSTGVBXJBKMTJ" : { - "V2PCSTGVBXJBKMTJ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "V2PCSTGVBXJBKMTJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V2PCSTGVBXJBKMTJ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "V2PCSTGVBXJBKMTJ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.6400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "V2PCSTGVBXJBKMTJ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "V2PCSTGVBXJBKMTJ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "V2PCSTGVBXJBKMTJ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "V2PCSTGVBXJBKMTJ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "133335" - }, - "appliesTo" : [ ] - }, - "V2PCSTGVBXJBKMTJ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "V2PCSTGVBXJBKMTJ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "V2PCSTGVBXJBKMTJ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "V2PCSTGVBXJBKMTJ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "V2PCSTGVBXJBKMTJ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "V2PCSTGVBXJBKMTJ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "384565" - }, - "appliesTo" : [ ] - }, - "V2PCSTGVBXJBKMTJ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "V2PCSTGVBXJBKMTJ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "V2PCSTGVBXJBKMTJ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "V2PCSTGVBXJBKMTJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "V2PCSTGVBXJBKMTJ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "V2PCSTGVBXJBKMTJ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "195639" - }, - "appliesTo" : [ ] - }, - "V2PCSTGVBXJBKMTJ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "V2PCSTGVBXJBKMTJ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "V2PCSTGVBXJBKMTJ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "V2PCSTGVBXJBKMTJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "V2PCSTGVBXJBKMTJ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "V2PCSTGVBXJBKMTJ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.0020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "V2PCSTGVBXJBKMTJ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "V2PCSTGVBXJBKMTJ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "V2PCSTGVBXJBKMTJ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "V2PCSTGVBXJBKMTJ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "193257" - }, - "appliesTo" : [ ] - }, - "V2PCSTGVBXJBKMTJ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "V2PCSTGVBXJBKMTJ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "V2PCSTGVBXJBKMTJ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "V2PCSTGVBXJBKMTJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "V2PCSTGVBXJBKMTJ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "V2PCSTGVBXJBKMTJ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.3570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "V2PCSTGVBXJBKMTJ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "V2PCSTGVBXJBKMTJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "V2PCSTGVBXJBKMTJ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "V2PCSTGVBXJBKMTJ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "66824" - }, - "appliesTo" : [ ] - }, - "V2PCSTGVBXJBKMTJ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "V2PCSTGVBXJBKMTJ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.6280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "V2PCSTGVBXJBKMTJ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "V2PCSTGVBXJBKMTJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V2PCSTGVBXJBKMTJ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "V2PCSTGVBXJBKMTJ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "68050" - }, - "appliesTo" : [ ] - }, - "V2PCSTGVBXJBKMTJ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "V2PCSTGVBXJBKMTJ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.7680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "V2PCSTGVBXJBKMTJ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "V2PCSTGVBXJBKMTJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V2PCSTGVBXJBKMTJ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "V2PCSTGVBXJBKMTJ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "135738" - }, - "appliesTo" : [ ] - }, - "V2PCSTGVBXJBKMTJ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "V2PCSTGVBXJBKMTJ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "V2PCSTGVBXJBKMTJ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "V2PCSTGVBXJBKMTJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "V2PCSTGVBXJBKMTJ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "V2PCSTGVBXJBKMTJ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "390533" - }, - "appliesTo" : [ ] - }, - "V2PCSTGVBXJBKMTJ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "V2PCSTGVBXJBKMTJ.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "V2PCSTGVBXJBKMTJ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "V2PCSTGVBXJBKMTJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "V2PCSTGVBXJBKMTJ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "V2PCSTGVBXJBKMTJ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.8030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "YSQ44UEJR3KC9UZ6" : { - "YSQ44UEJR3KC9UZ6.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YSQ44UEJR3KC9UZ6", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "YSQ44UEJR3KC9UZ6.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YSQ44UEJR3KC9UZ6.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4415" - }, - "appliesTo" : [ ] - }, - "YSQ44UEJR3KC9UZ6.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YSQ44UEJR3KC9UZ6.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YSQ44UEJR3KC9UZ6.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "YSQ44UEJR3KC9UZ6", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "YSQ44UEJR3KC9UZ6.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "YSQ44UEJR3KC9UZ6.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5938" - }, - "appliesTo" : [ ] - }, - "YSQ44UEJR3KC9UZ6.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "YSQ44UEJR3KC9UZ6.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YSQ44UEJR3KC9UZ6.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YSQ44UEJR3KC9UZ6", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "YSQ44UEJR3KC9UZ6.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YSQ44UEJR3KC9UZ6.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6917" - }, - "appliesTo" : [ ] - }, - "YSQ44UEJR3KC9UZ6.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YSQ44UEJR3KC9UZ6.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YSQ44UEJR3KC9UZ6.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "YSQ44UEJR3KC9UZ6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YSQ44UEJR3KC9UZ6.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "YSQ44UEJR3KC9UZ6.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YSQ44UEJR3KC9UZ6.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "YSQ44UEJR3KC9UZ6.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3383" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YSQ44UEJR3KC9UZ6.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "YSQ44UEJR3KC9UZ6", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YSQ44UEJR3KC9UZ6.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "YSQ44UEJR3KC9UZ6.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YSQ44UEJR3KC9UZ6.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "YSQ44UEJR3KC9UZ6.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9008" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YSQ44UEJR3KC9UZ6.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "YSQ44UEJR3KC9UZ6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YSQ44UEJR3KC9UZ6.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "YSQ44UEJR3KC9UZ6.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YSQ44UEJR3KC9UZ6.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "YSQ44UEJR3KC9UZ6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YSQ44UEJR3KC9UZ6.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "YSQ44UEJR3KC9UZ6.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1710" - }, - "appliesTo" : [ ] - }, - "YSQ44UEJR3KC9UZ6.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "YSQ44UEJR3KC9UZ6.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YSQ44UEJR3KC9UZ6.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YSQ44UEJR3KC9UZ6", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "YSQ44UEJR3KC9UZ6.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YSQ44UEJR3KC9UZ6.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2082" - }, - "appliesTo" : [ ] - }, - "YSQ44UEJR3KC9UZ6.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YSQ44UEJR3KC9UZ6.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YSQ44UEJR3KC9UZ6.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YSQ44UEJR3KC9UZ6", - "effectiveDate" : "2017-07-31T23:59:59Z", - "priceDimensions" : { - "YSQ44UEJR3KC9UZ6.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YSQ44UEJR3KC9UZ6.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3157" - }, - "appliesTo" : [ ] - }, - "YSQ44UEJR3KC9UZ6.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YSQ44UEJR3KC9UZ6.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YSQ44UEJR3KC9UZ6.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YSQ44UEJR3KC9UZ6", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "YSQ44UEJR3KC9UZ6.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YSQ44UEJR3KC9UZ6.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YSQ44UEJR3KC9UZ6.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "YSQ44UEJR3KC9UZ6", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "YSQ44UEJR3KC9UZ6.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "YSQ44UEJR3KC9UZ6.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "HXX5KQP8SE3AS5E2" : { - "HXX5KQP8SE3AS5E2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "HXX5KQP8SE3AS5E2", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "HXX5KQP8SE3AS5E2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "HXX5KQP8SE3AS5E2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "63386" - }, - "appliesTo" : [ ] - }, - "HXX5KQP8SE3AS5E2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "HXX5KQP8SE3AS5E2.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HXX5KQP8SE3AS5E2.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "HXX5KQP8SE3AS5E2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HXX5KQP8SE3AS5E2.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "HXX5KQP8SE3AS5E2.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "63746" - }, - "appliesTo" : [ ] - }, - "HXX5KQP8SE3AS5E2.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "HXX5KQP8SE3AS5E2.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "HXX5KQP8SE3AS5E2.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "HXX5KQP8SE3AS5E2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HXX5KQP8SE3AS5E2.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "HXX5KQP8SE3AS5E2.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "93467" - }, - "appliesTo" : [ ] - }, - "HXX5KQP8SE3AS5E2.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "HXX5KQP8SE3AS5E2.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HXX5KQP8SE3AS5E2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "HXX5KQP8SE3AS5E2", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "HXX5KQP8SE3AS5E2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "HXX5KQP8SE3AS5E2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31737" - }, - "appliesTo" : [ ] - }, - "HXX5KQP8SE3AS5E2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "HXX5KQP8SE3AS5E2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HXX5KQP8SE3AS5E2.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "HXX5KQP8SE3AS5E2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HXX5KQP8SE3AS5E2.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "HXX5KQP8SE3AS5E2.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.0900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "HXX5KQP8SE3AS5E2.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "HXX5KQP8SE3AS5E2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HXX5KQP8SE3AS5E2.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "HXX5KQP8SE3AS5E2.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "HXX5KQP8SE3AS5E2.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "HXX5KQP8SE3AS5E2.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "186737" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "HXX5KQP8SE3AS5E2.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "HXX5KQP8SE3AS5E2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HXX5KQP8SE3AS5E2.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "HXX5KQP8SE3AS5E2.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "HXX5KQP8SE3AS5E2.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "HXX5KQP8SE3AS5E2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HXX5KQP8SE3AS5E2.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "HXX5KQP8SE3AS5E2.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6440000000" - }, - "appliesTo" : [ ] - }, - "HXX5KQP8SE3AS5E2.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "HXX5KQP8SE3AS5E2.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31921" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HXX5KQP8SE3AS5E2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "HXX5KQP8SE3AS5E2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HXX5KQP8SE3AS5E2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "HXX5KQP8SE3AS5E2.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.2400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "HXX5KQP8SE3AS5E2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "HXX5KQP8SE3AS5E2", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "HXX5KQP8SE3AS5E2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "HXX5KQP8SE3AS5E2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "92847" - }, - "appliesTo" : [ ] - }, - "HXX5KQP8SE3AS5E2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "HXX5KQP8SE3AS5E2.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HXX5KQP8SE3AS5E2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "HXX5KQP8SE3AS5E2", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "HXX5KQP8SE3AS5E2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "HXX5KQP8SE3AS5E2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "185174" - }, - "appliesTo" : [ ] - }, - "HXX5KQP8SE3AS5E2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "HXX5KQP8SE3AS5E2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HXX5KQP8SE3AS5E2.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "HXX5KQP8SE3AS5E2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HXX5KQP8SE3AS5E2.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "HXX5KQP8SE3AS5E2.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.1430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "HFJ8JNVXU9Z88543" : { - "HFJ8JNVXU9Z88543.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "HFJ8JNVXU9Z88543", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "HFJ8JNVXU9Z88543.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "HFJ8JNVXU9Z88543.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15904" - }, - "appliesTo" : [ ] - }, - "HFJ8JNVXU9Z88543.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "HFJ8JNVXU9Z88543.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6048000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HFJ8JNVXU9Z88543.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "HFJ8JNVXU9Z88543", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "HFJ8JNVXU9Z88543.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "HFJ8JNVXU9Z88543.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35748" - }, - "appliesTo" : [ ] - }, - "HFJ8JNVXU9Z88543.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "HFJ8JNVXU9Z88543.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "HFJ8JNVXU9Z88543.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "HFJ8JNVXU9Z88543", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "HFJ8JNVXU9Z88543.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "HFJ8JNVXU9Z88543.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3112000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "HFJ8JNVXU9Z88543.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "HFJ8JNVXU9Z88543", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "HFJ8JNVXU9Z88543.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "HFJ8JNVXU9Z88543.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29931" - }, - "appliesTo" : [ ] - }, - "HFJ8JNVXU9Z88543.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "HFJ8JNVXU9Z88543.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HFJ8JNVXU9Z88543.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "HFJ8JNVXU9Z88543", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HFJ8JNVXU9Z88543.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "HFJ8JNVXU9Z88543.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "HFJ8JNVXU9Z88543.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "HFJ8JNVXU9Z88543.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16384" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "HFJ8JNVXU9Z88543.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "HFJ8JNVXU9Z88543", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "HFJ8JNVXU9Z88543.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "HFJ8JNVXU9Z88543.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6935000000" - }, - "appliesTo" : [ ] - }, - "HFJ8JNVXU9Z88543.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "HFJ8JNVXU9Z88543.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18237" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HFJ8JNVXU9Z88543.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "HFJ8JNVXU9Z88543", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "HFJ8JNVXU9Z88543.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "HFJ8JNVXU9Z88543.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7447000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "HFJ8JNVXU9Z88543.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "HFJ8JNVXU9Z88543", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "HFJ8JNVXU9Z88543.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "HFJ8JNVXU9Z88543.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "HFJ8JNVXU9Z88543.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "HFJ8JNVXU9Z88543", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "HFJ8JNVXU9Z88543.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "HFJ8JNVXU9Z88543.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14285" - }, - "appliesTo" : [ ] - }, - "HFJ8JNVXU9Z88543.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "HFJ8JNVXU9Z88543.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HFJ8JNVXU9Z88543.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "HFJ8JNVXU9Z88543", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "HFJ8JNVXU9Z88543.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "HFJ8JNVXU9Z88543.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7316" - }, - "appliesTo" : [ ] - }, - "HFJ8JNVXU9Z88543.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "HFJ8JNVXU9Z88543.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8281000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HFJ8JNVXU9Z88543.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "HFJ8JNVXU9Z88543", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HFJ8JNVXU9Z88543.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "HFJ8JNVXU9Z88543.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8387" - }, - "appliesTo" : [ ] - }, - "HFJ8JNVXU9Z88543.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "HFJ8JNVXU9Z88543.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9504000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HFJ8JNVXU9Z88543.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "HFJ8JNVXU9Z88543", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HFJ8JNVXU9Z88543.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "HFJ8JNVXU9Z88543.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0015000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "H4R547VQJ55ZDDZ2" : { - "H4R547VQJ55ZDDZ2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "H4R547VQJ55ZDDZ2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "H4R547VQJ55ZDDZ2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "H4R547VQJ55ZDDZ2.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "H4R547VQJ55ZDDZ2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "H4R547VQJ55ZDDZ2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2541" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "H4R547VQJ55ZDDZ2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "H4R547VQJ55ZDDZ2", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "H4R547VQJ55ZDDZ2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "H4R547VQJ55ZDDZ2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1296" - }, - "appliesTo" : [ ] - }, - "H4R547VQJ55ZDDZ2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "H4R547VQJ55ZDDZ2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "H4R547VQJ55ZDDZ2.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "H4R547VQJ55ZDDZ2", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "H4R547VQJ55ZDDZ2.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "H4R547VQJ55ZDDZ2.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "H4R547VQJ55ZDDZ2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "H4R547VQJ55ZDDZ2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "H4R547VQJ55ZDDZ2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "H4R547VQJ55ZDDZ2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6126" - }, - "appliesTo" : [ ] - }, - "H4R547VQJ55ZDDZ2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "H4R547VQJ55ZDDZ2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "H4R547VQJ55ZDDZ2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "H4R547VQJ55ZDDZ2", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "H4R547VQJ55ZDDZ2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "H4R547VQJ55ZDDZ2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3259" - }, - "appliesTo" : [ ] - }, - "H4R547VQJ55ZDDZ2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "H4R547VQJ55ZDDZ2.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "H4R547VQJ55ZDDZ2.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "H4R547VQJ55ZDDZ2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "H4R547VQJ55ZDDZ2.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "H4R547VQJ55ZDDZ2.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7261" - }, - "appliesTo" : [ ] - }, - "H4R547VQJ55ZDDZ2.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "H4R547VQJ55ZDDZ2.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "H4R547VQJ55ZDDZ2.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "H4R547VQJ55ZDDZ2", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "H4R547VQJ55ZDDZ2.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "H4R547VQJ55ZDDZ2.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3703" - }, - "appliesTo" : [ ] - }, - "H4R547VQJ55ZDDZ2.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "H4R547VQJ55ZDDZ2.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "H4R547VQJ55ZDDZ2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "H4R547VQJ55ZDDZ2", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "H4R547VQJ55ZDDZ2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "H4R547VQJ55ZDDZ2.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "H4R547VQJ55ZDDZ2.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "H4R547VQJ55ZDDZ2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H4R547VQJ55ZDDZ2.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "H4R547VQJ55ZDDZ2.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "H4R547VQJ55ZDDZ2.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "H4R547VQJ55ZDDZ2.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3399" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "H4R547VQJ55ZDDZ2.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "H4R547VQJ55ZDDZ2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H4R547VQJ55ZDDZ2.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "H4R547VQJ55ZDDZ2.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3975000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "H4R547VQJ55ZDDZ2.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "H4R547VQJ55ZDDZ2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "H4R547VQJ55ZDDZ2.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "H4R547VQJ55ZDDZ2.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "H4R547VQJ55ZDDZ2.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "H4R547VQJ55ZDDZ2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H4R547VQJ55ZDDZ2.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "H4R547VQJ55ZDDZ2.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1711" - }, - "appliesTo" : [ ] - }, - "H4R547VQJ55ZDDZ2.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "H4R547VQJ55ZDDZ2.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1954000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "GTXYRWSN8RXE5ZBA" : { - "GTXYRWSN8RXE5ZBA.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "GTXYRWSN8RXE5ZBA", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "GTXYRWSN8RXE5ZBA.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "GTXYRWSN8RXE5ZBA.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33920" - }, - "appliesTo" : [ ] - }, - "GTXYRWSN8RXE5ZBA.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "GTXYRWSN8RXE5ZBA.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GTXYRWSN8RXE5ZBA.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "GTXYRWSN8RXE5ZBA", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "GTXYRWSN8RXE5ZBA.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "GTXYRWSN8RXE5ZBA.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17305" - }, - "appliesTo" : [ ] - }, - "GTXYRWSN8RXE5ZBA.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "GTXYRWSN8RXE5ZBA.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GTXYRWSN8RXE5ZBA.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "GTXYRWSN8RXE5ZBA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GTXYRWSN8RXE5ZBA.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "GTXYRWSN8RXE5ZBA.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.8800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "GTXYRWSN8RXE5ZBA.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "GTXYRWSN8RXE5ZBA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GTXYRWSN8RXE5ZBA.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "GTXYRWSN8RXE5ZBA.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "GTXYRWSN8RXE5ZBA.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "GTXYRWSN8RXE5ZBA.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "51133" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "GTXYRWSN8RXE5ZBA.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "GTXYRWSN8RXE5ZBA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GTXYRWSN8RXE5ZBA.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "GTXYRWSN8RXE5ZBA.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.6320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GTXYRWSN8RXE5ZBA.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "GTXYRWSN8RXE5ZBA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GTXYRWSN8RXE5ZBA.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "GTXYRWSN8RXE5ZBA.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25619" - }, - "appliesTo" : [ ] - }, - "GTXYRWSN8RXE5ZBA.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "GTXYRWSN8RXE5ZBA.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GTXYRWSN8RXE5ZBA.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "GTXYRWSN8RXE5ZBA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GTXYRWSN8RXE5ZBA.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "GTXYRWSN8RXE5ZBA.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "100240" - }, - "appliesTo" : [ ] - }, - "GTXYRWSN8RXE5ZBA.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "GTXYRWSN8RXE5ZBA.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "GTXYRWSN8RXE5ZBA.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "GTXYRWSN8RXE5ZBA", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "GTXYRWSN8RXE5ZBA.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "GTXYRWSN8RXE5ZBA.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9470000000" - }, - "appliesTo" : [ ] - }, - "GTXYRWSN8RXE5ZBA.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "GTXYRWSN8RXE5ZBA.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "51136" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GTXYRWSN8RXE5ZBA.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "GTXYRWSN8RXE5ZBA", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "GTXYRWSN8RXE5ZBA.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "GTXYRWSN8RXE5ZBA.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38991" - }, - "appliesTo" : [ ] - }, - "GTXYRWSN8RXE5ZBA.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "GTXYRWSN8RXE5ZBA.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GTXYRWSN8RXE5ZBA.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "GTXYRWSN8RXE5ZBA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GTXYRWSN8RXE5ZBA.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "GTXYRWSN8RXE5ZBA.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.6240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GTXYRWSN8RXE5ZBA.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "GTXYRWSN8RXE5ZBA", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "GTXYRWSN8RXE5ZBA.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "GTXYRWSN8RXE5ZBA.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "73303" - }, - "appliesTo" : [ ] - }, - "GTXYRWSN8RXE5ZBA.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "GTXYRWSN8RXE5ZBA.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GTXYRWSN8RXE5ZBA.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "GTXYRWSN8RXE5ZBA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GTXYRWSN8RXE5ZBA.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "GTXYRWSN8RXE5ZBA.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "D5X7AACFHDWJ6DC4" : { - "D5X7AACFHDWJ6DC4.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "D5X7AACFHDWJ6DC4", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "D5X7AACFHDWJ6DC4.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "D5X7AACFHDWJ6DC4.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.7080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "D5X7AACFHDWJ6DC4.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "D5X7AACFHDWJ6DC4", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "D5X7AACFHDWJ6DC4.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "D5X7AACFHDWJ6DC4.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "69695" - }, - "appliesTo" : [ ] - }, - "D5X7AACFHDWJ6DC4.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "D5X7AACFHDWJ6DC4.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.9560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "D5X7AACFHDWJ6DC4.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "D5X7AACFHDWJ6DC4", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "D5X7AACFHDWJ6DC4.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "D5X7AACFHDWJ6DC4.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.6550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "D5X7AACFHDWJ6DC4.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "D5X7AACFHDWJ6DC4", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "D5X7AACFHDWJ6DC4.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "D5X7AACFHDWJ6DC4.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "243708" - }, - "appliesTo" : [ ] - }, - "D5X7AACFHDWJ6DC4.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "D5X7AACFHDWJ6DC4.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "D5X7AACFHDWJ6DC4.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "D5X7AACFHDWJ6DC4", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "D5X7AACFHDWJ6DC4.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "D5X7AACFHDWJ6DC4.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "D5X7AACFHDWJ6DC4.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "D5X7AACFHDWJ6DC4.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "136601" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "D5X7AACFHDWJ6DC4.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "D5X7AACFHDWJ6DC4", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "D5X7AACFHDWJ6DC4.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "D5X7AACFHDWJ6DC4.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "129632" - }, - "appliesTo" : [ ] - }, - "D5X7AACFHDWJ6DC4.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "D5X7AACFHDWJ6DC4.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "W3WU9RECE72NMJ77" : { - "W3WU9RECE72NMJ77.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "W3WU9RECE72NMJ77", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "W3WU9RECE72NMJ77.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "W3WU9RECE72NMJ77.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "W3WU9RECE72NMJ77.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "W3WU9RECE72NMJ77", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "W3WU9RECE72NMJ77.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "W3WU9RECE72NMJ77.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1050000000" - }, - "appliesTo" : [ ] - }, - "W3WU9RECE72NMJ77.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "W3WU9RECE72NMJ77.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3873" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "W3WU9RECE72NMJ77.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "W3WU9RECE72NMJ77", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "W3WU9RECE72NMJ77.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "W3WU9RECE72NMJ77.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "W3WU9RECE72NMJ77.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "W3WU9RECE72NMJ77.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4735" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "W3WU9RECE72NMJ77.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "W3WU9RECE72NMJ77", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W3WU9RECE72NMJ77.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "W3WU9RECE72NMJ77.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2786" - }, - "appliesTo" : [ ] - }, - "W3WU9RECE72NMJ77.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "W3WU9RECE72NMJ77.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "W3WU9RECE72NMJ77.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "W3WU9RECE72NMJ77", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "W3WU9RECE72NMJ77.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "W3WU9RECE72NMJ77.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2383" - }, - "appliesTo" : [ ] - }, - "W3WU9RECE72NMJ77.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "W3WU9RECE72NMJ77.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "W3WU9RECE72NMJ77.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "W3WU9RECE72NMJ77", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "W3WU9RECE72NMJ77.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "W3WU9RECE72NMJ77.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1480" - }, - "appliesTo" : [ ] - }, - "W3WU9RECE72NMJ77.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "W3WU9RECE72NMJ77.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "W3WU9RECE72NMJ77.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "W3WU9RECE72NMJ77", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "W3WU9RECE72NMJ77.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "W3WU9RECE72NMJ77.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6462" - }, - "appliesTo" : [ ] - }, - "W3WU9RECE72NMJ77.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "W3WU9RECE72NMJ77.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "W3WU9RECE72NMJ77.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "W3WU9RECE72NMJ77", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W3WU9RECE72NMJ77.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "W3WU9RECE72NMJ77.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1580000000" - }, - "appliesTo" : [ ] - }, - "W3WU9RECE72NMJ77.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "W3WU9RECE72NMJ77.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1449" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "W3WU9RECE72NMJ77.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "W3WU9RECE72NMJ77", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W3WU9RECE72NMJ77.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "W3WU9RECE72NMJ77.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "W3WU9RECE72NMJ77.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "W3WU9RECE72NMJ77", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "W3WU9RECE72NMJ77.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "W3WU9RECE72NMJ77.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "W3WU9RECE72NMJ77.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "W3WU9RECE72NMJ77", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "W3WU9RECE72NMJ77.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "W3WU9RECE72NMJ77.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2437" - }, - "appliesTo" : [ ] - }, - "W3WU9RECE72NMJ77.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "W3WU9RECE72NMJ77.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "DXZA4TZJFG2BW52U" : { - "DXZA4TZJFG2BW52U.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "DXZA4TZJFG2BW52U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DXZA4TZJFG2BW52U.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "DXZA4TZJFG2BW52U.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.4350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DXZA4TZJFG2BW52U.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "DXZA4TZJFG2BW52U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DXZA4TZJFG2BW52U.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "DXZA4TZJFG2BW52U.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "DXZA4TZJFG2BW52U.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "DXZA4TZJFG2BW52U.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "108621" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DXZA4TZJFG2BW52U.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "DXZA4TZJFG2BW52U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DXZA4TZJFG2BW52U.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "DXZA4TZJFG2BW52U.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "DXZA4TZJFG2BW52U.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "DXZA4TZJFG2BW52U.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "74245" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DXZA4TZJFG2BW52U.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "DXZA4TZJFG2BW52U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DXZA4TZJFG2BW52U.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "DXZA4TZJFG2BW52U.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "66371" - }, - "appliesTo" : [ ] - }, - "DXZA4TZJFG2BW52U.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "DXZA4TZJFG2BW52U.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DXZA4TZJFG2BW52U.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "DXZA4TZJFG2BW52U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DXZA4TZJFG2BW52U.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "DXZA4TZJFG2BW52U.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "57760" - }, - "appliesTo" : [ ] - }, - "DXZA4TZJFG2BW52U.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "DXZA4TZJFG2BW52U.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DXZA4TZJFG2BW52U.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "DXZA4TZJFG2BW52U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DXZA4TZJFG2BW52U.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "DXZA4TZJFG2BW52U.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.4590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DXZA4TZJFG2BW52U.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "DXZA4TZJFG2BW52U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DXZA4TZJFG2BW52U.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "DXZA4TZJFG2BW52U.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37908" - }, - "appliesTo" : [ ] - }, - "DXZA4TZJFG2BW52U.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "DXZA4TZJFG2BW52U.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.3200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DXZA4TZJFG2BW52U.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "DXZA4TZJFG2BW52U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DXZA4TZJFG2BW52U.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "DXZA4TZJFG2BW52U.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9660000000" - }, - "appliesTo" : [ ] - }, - "DXZA4TZJFG2BW52U.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "DXZA4TZJFG2BW52U.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "43568" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DXZA4TZJFG2BW52U.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "DXZA4TZJFG2BW52U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DXZA4TZJFG2BW52U.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "DXZA4TZJFG2BW52U.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.0780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DXZA4TZJFG2BW52U.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "DXZA4TZJFG2BW52U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DXZA4TZJFG2BW52U.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "DXZA4TZJFG2BW52U.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "85339" - }, - "appliesTo" : [ ] - }, - "DXZA4TZJFG2BW52U.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "DXZA4TZJFG2BW52U.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DXZA4TZJFG2BW52U.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "DXZA4TZJFG2BW52U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DXZA4TZJFG2BW52U.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "DXZA4TZJFG2BW52U.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.7510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DXZA4TZJFG2BW52U.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "DXZA4TZJFG2BW52U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DXZA4TZJFG2BW52U.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "DXZA4TZJFG2BW52U.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "130092" - }, - "appliesTo" : [ ] - }, - "DXZA4TZJFG2BW52U.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "DXZA4TZJFG2BW52U.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "YT69AAZT9MZJXMUB" : { - "YT69AAZT9MZJXMUB.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YT69AAZT9MZJXMUB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YT69AAZT9MZJXMUB.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YT69AAZT9MZJXMUB.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10019" - }, - "appliesTo" : [ ] - }, - "YT69AAZT9MZJXMUB.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YT69AAZT9MZJXMUB.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YT69AAZT9MZJXMUB.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "YT69AAZT9MZJXMUB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YT69AAZT9MZJXMUB.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "YT69AAZT9MZJXMUB.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10649" - }, - "appliesTo" : [ ] - }, - "YT69AAZT9MZJXMUB.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "YT69AAZT9MZJXMUB.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YT69AAZT9MZJXMUB.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "YT69AAZT9MZJXMUB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YT69AAZT9MZJXMUB.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "YT69AAZT9MZJXMUB.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12476" - }, - "appliesTo" : [ ] - }, - "YT69AAZT9MZJXMUB.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "YT69AAZT9MZJXMUB.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YT69AAZT9MZJXMUB.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YT69AAZT9MZJXMUB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YT69AAZT9MZJXMUB.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YT69AAZT9MZJXMUB.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5052" - }, - "appliesTo" : [ ] - }, - "YT69AAZT9MZJXMUB.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YT69AAZT9MZJXMUB.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YT69AAZT9MZJXMUB.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YT69AAZT9MZJXMUB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YT69AAZT9MZJXMUB.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YT69AAZT9MZJXMUB.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23582" - }, - "appliesTo" : [ ] - }, - "YT69AAZT9MZJXMUB.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YT69AAZT9MZJXMUB.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YT69AAZT9MZJXMUB.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "YT69AAZT9MZJXMUB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YT69AAZT9MZJXMUB.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "YT69AAZT9MZJXMUB.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YT69AAZT9MZJXMUB.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YT69AAZT9MZJXMUB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YT69AAZT9MZJXMUB.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YT69AAZT9MZJXMUB.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4560000000" - }, - "appliesTo" : [ ] - }, - "YT69AAZT9MZJXMUB.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YT69AAZT9MZJXMUB.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11987" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YT69AAZT9MZJXMUB.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YT69AAZT9MZJXMUB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YT69AAZT9MZJXMUB.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YT69AAZT9MZJXMUB.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YT69AAZT9MZJXMUB.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "YT69AAZT9MZJXMUB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YT69AAZT9MZJXMUB.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "YT69AAZT9MZJXMUB.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24802" - }, - "appliesTo" : [ ] - }, - "YT69AAZT9MZJXMUB.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "YT69AAZT9MZJXMUB.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YT69AAZT9MZJXMUB.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "YT69AAZT9MZJXMUB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YT69AAZT9MZJXMUB.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "YT69AAZT9MZJXMUB.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YT69AAZT9MZJXMUB.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "YT69AAZT9MZJXMUB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YT69AAZT9MZJXMUB.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "YT69AAZT9MZJXMUB.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YT69AAZT9MZJXMUB.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "YT69AAZT9MZJXMUB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YT69AAZT9MZJXMUB.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "YT69AAZT9MZJXMUB.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5374" - }, - "appliesTo" : [ ] - }, - "YT69AAZT9MZJXMUB.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "YT69AAZT9MZJXMUB.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "B73TJ3GDPEVMDXTQ" : { - "B73TJ3GDPEVMDXTQ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "B73TJ3GDPEVMDXTQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "B73TJ3GDPEVMDXTQ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "B73TJ3GDPEVMDXTQ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.9440000000" - }, - "appliesTo" : [ ] - }, - "B73TJ3GDPEVMDXTQ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "B73TJ3GDPEVMDXTQ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "130909" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "B73TJ3GDPEVMDXTQ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "B73TJ3GDPEVMDXTQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "B73TJ3GDPEVMDXTQ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "B73TJ3GDPEVMDXTQ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "30.0352000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "B73TJ3GDPEVMDXTQ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "B73TJ3GDPEVMDXTQ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "B73TJ3GDPEVMDXTQ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "B73TJ3GDPEVMDXTQ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "29.6320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "B73TJ3GDPEVMDXTQ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "B73TJ3GDPEVMDXTQ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "B73TJ3GDPEVMDXTQ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "B73TJ3GDPEVMDXTQ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "758320" - }, - "appliesTo" : [ ] - }, - "B73TJ3GDPEVMDXTQ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "B73TJ3GDPEVMDXTQ.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "B73TJ3GDPEVMDXTQ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "B73TJ3GDPEVMDXTQ", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "B73TJ3GDPEVMDXTQ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "B73TJ3GDPEVMDXTQ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.7490000000" - }, - "appliesTo" : [ ] - }, - "B73TJ3GDPEVMDXTQ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "B73TJ3GDPEVMDXTQ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "129199" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "B73TJ3GDPEVMDXTQ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "B73TJ3GDPEVMDXTQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "B73TJ3GDPEVMDXTQ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "B73TJ3GDPEVMDXTQ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "261303" - }, - "appliesTo" : [ ] - }, - "B73TJ3GDPEVMDXTQ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "B73TJ3GDPEVMDXTQ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "B73TJ3GDPEVMDXTQ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "B73TJ3GDPEVMDXTQ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "B73TJ3GDPEVMDXTQ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "B73TJ3GDPEVMDXTQ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "750143" - }, - "appliesTo" : [ ] - }, - "B73TJ3GDPEVMDXTQ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "B73TJ3GDPEVMDXTQ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "B73TJ3GDPEVMDXTQ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "B73TJ3GDPEVMDXTQ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "B73TJ3GDPEVMDXTQ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "B73TJ3GDPEVMDXTQ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "28.7757000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "B73TJ3GDPEVMDXTQ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "B73TJ3GDPEVMDXTQ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "B73TJ3GDPEVMDXTQ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "B73TJ3GDPEVMDXTQ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "29.0504000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "B73TJ3GDPEVMDXTQ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "B73TJ3GDPEVMDXTQ", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "B73TJ3GDPEVMDXTQ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "B73TJ3GDPEVMDXTQ.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "B73TJ3GDPEVMDXTQ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "B73TJ3GDPEVMDXTQ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "257952" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "B73TJ3GDPEVMDXTQ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "B73TJ3GDPEVMDXTQ", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "B73TJ3GDPEVMDXTQ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "B73TJ3GDPEVMDXTQ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "376414" - }, - "appliesTo" : [ ] - }, - "B73TJ3GDPEVMDXTQ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "B73TJ3GDPEVMDXTQ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.3230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "B73TJ3GDPEVMDXTQ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "B73TJ3GDPEVMDXTQ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "B73TJ3GDPEVMDXTQ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "B73TJ3GDPEVMDXTQ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "379672" - }, - "appliesTo" : [ ] - }, - "B73TJ3GDPEVMDXTQ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "B73TJ3GDPEVMDXTQ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.4472000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "QWBZPDE9BGTPCYWW" : { - "QWBZPDE9BGTPCYWW.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QWBZPDE9BGTPCYWW", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "QWBZPDE9BGTPCYWW.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QWBZPDE9BGTPCYWW.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2776" - }, - "appliesTo" : [ ] - }, - "QWBZPDE9BGTPCYWW.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QWBZPDE9BGTPCYWW.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QWBZPDE9BGTPCYWW.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QWBZPDE9BGTPCYWW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QWBZPDE9BGTPCYWW.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QWBZPDE9BGTPCYWW.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QWBZPDE9BGTPCYWW.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QWBZPDE9BGTPCYWW", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "QWBZPDE9BGTPCYWW.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QWBZPDE9BGTPCYWW.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1430000000" - }, - "appliesTo" : [ ] - }, - "QWBZPDE9BGTPCYWW.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QWBZPDE9BGTPCYWW.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1782" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QWBZPDE9BGTPCYWW.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QWBZPDE9BGTPCYWW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QWBZPDE9BGTPCYWW.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QWBZPDE9BGTPCYWW.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QWBZPDE9BGTPCYWW.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QWBZPDE9BGTPCYWW.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2973" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QWBZPDE9BGTPCYWW.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QWBZPDE9BGTPCYWW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QWBZPDE9BGTPCYWW.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QWBZPDE9BGTPCYWW.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5652" - }, - "appliesTo" : [ ] - }, - "QWBZPDE9BGTPCYWW.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QWBZPDE9BGTPCYWW.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "8PWP644R45F4VKQ9" : { - "8PWP644R45F4VKQ9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "8PWP644R45F4VKQ9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8PWP644R45F4VKQ9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "8PWP644R45F4VKQ9.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "8PWP644R45F4VKQ9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "8PWP644R45F4VKQ9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "118778" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8PWP644R45F4VKQ9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "8PWP644R45F4VKQ9", - "effectiveDate" : "2016-06-30T23:59:59Z", - "priceDimensions" : { - "8PWP644R45F4VKQ9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "8PWP644R45F4VKQ9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "60075" - }, - "appliesTo" : [ ] - }, - "8PWP644R45F4VKQ9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "8PWP644R45F4VKQ9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.8580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8PWP644R45F4VKQ9.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "8PWP644R45F4VKQ9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8PWP644R45F4VKQ9.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "8PWP644R45F4VKQ9.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "128860" - }, - "appliesTo" : [ ] - }, - "8PWP644R45F4VKQ9.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "8PWP644R45F4VKQ9.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8PWP644R45F4VKQ9.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "8PWP644R45F4VKQ9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8PWP644R45F4VKQ9.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "8PWP644R45F4VKQ9.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.1760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8PWP644R45F4VKQ9.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "8PWP644R45F4VKQ9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8PWP644R45F4VKQ9.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "8PWP644R45F4VKQ9.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.2270000000" - }, - "appliesTo" : [ ] - }, - "8PWP644R45F4VKQ9.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "8PWP644R45F4VKQ9.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "137359" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8PWP644R45F4VKQ9.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "8PWP644R45F4VKQ9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8PWP644R45F4VKQ9.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "8PWP644R45F4VKQ9.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4450000000" - }, - "appliesTo" : [ ] - }, - "8PWP644R45F4VKQ9.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "8PWP644R45F4VKQ9.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "65219" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8PWP644R45F4VKQ9.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "8PWP644R45F4VKQ9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8PWP644R45F4VKQ9.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "8PWP644R45F4VKQ9.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.3400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8PWP644R45F4VKQ9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "8PWP644R45F4VKQ9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8PWP644R45F4VKQ9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "8PWP644R45F4VKQ9.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.1070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8PWP644R45F4VKQ9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "8PWP644R45F4VKQ9", - "effectiveDate" : "2016-06-30T23:59:59Z", - "priceDimensions" : { - "8PWP644R45F4VKQ9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "8PWP644R45F4VKQ9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "129534" - }, - "appliesTo" : [ ] - }, - "8PWP644R45F4VKQ9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "8PWP644R45F4VKQ9.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8PWP644R45F4VKQ9.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "8PWP644R45F4VKQ9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8PWP644R45F4VKQ9.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "8PWP644R45F4VKQ9.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "272317" - }, - "appliesTo" : [ ] - }, - "8PWP644R45F4VKQ9.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "8PWP644R45F4VKQ9.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8PWP644R45F4VKQ9.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "8PWP644R45F4VKQ9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8PWP644R45F4VKQ9.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "8PWP644R45F4VKQ9.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.8190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8PWP644R45F4VKQ9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "8PWP644R45F4VKQ9", - "effectiveDate" : "2016-06-30T23:59:59Z", - "priceDimensions" : { - "8PWP644R45F4VKQ9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "8PWP644R45F4VKQ9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "252808" - }, - "appliesTo" : [ ] - }, - "8PWP644R45F4VKQ9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "8PWP644R45F4VKQ9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "ZPYBCRBFCYN9APCP" : { - "ZPYBCRBFCYN9APCP.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ZPYBCRBFCYN9APCP", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "ZPYBCRBFCYN9APCP.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ZPYBCRBFCYN9APCP.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9484" - }, - "appliesTo" : [ ] - }, - "ZPYBCRBFCYN9APCP.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ZPYBCRBFCYN9APCP.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZPYBCRBFCYN9APCP.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ZPYBCRBFCYN9APCP", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "ZPYBCRBFCYN9APCP.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ZPYBCRBFCYN9APCP.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4861" - }, - "appliesTo" : [ ] - }, - "ZPYBCRBFCYN9APCP.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ZPYBCRBFCYN9APCP.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZPYBCRBFCYN9APCP.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ZPYBCRBFCYN9APCP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ZPYBCRBFCYN9APCP.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ZPYBCRBFCYN9APCP.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3431" - }, - "appliesTo" : [ ] - }, - "ZPYBCRBFCYN9APCP.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ZPYBCRBFCYN9APCP.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZPYBCRBFCYN9APCP.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ZPYBCRBFCYN9APCP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZPYBCRBFCYN9APCP.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ZPYBCRBFCYN9APCP.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZPYBCRBFCYN9APCP.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ZPYBCRBFCYN9APCP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZPYBCRBFCYN9APCP.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ZPYBCRBFCYN9APCP.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ZPYBCRBFCYN9APCP.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ZPYBCRBFCYN9APCP.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6432" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZPYBCRBFCYN9APCP.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ZPYBCRBFCYN9APCP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ZPYBCRBFCYN9APCP.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ZPYBCRBFCYN9APCP.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZPYBCRBFCYN9APCP.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ZPYBCRBFCYN9APCP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ZPYBCRBFCYN9APCP.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ZPYBCRBFCYN9APCP.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2040000000" - }, - "appliesTo" : [ ] - }, - "ZPYBCRBFCYN9APCP.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ZPYBCRBFCYN9APCP.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1850" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZPYBCRBFCYN9APCP.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ZPYBCRBFCYN9APCP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZPYBCRBFCYN9APCP.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ZPYBCRBFCYN9APCP.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ZPYBCRBFCYN9APCP.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ZPYBCRBFCYN9APCP.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4037" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZPYBCRBFCYN9APCP.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ZPYBCRBFCYN9APCP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ZPYBCRBFCYN9APCP.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ZPYBCRBFCYN9APCP.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ZPYBCRBFCYN9APCP.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ZPYBCRBFCYN9APCP.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3561" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZPYBCRBFCYN9APCP.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ZPYBCRBFCYN9APCP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZPYBCRBFCYN9APCP.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ZPYBCRBFCYN9APCP.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2088" - }, - "appliesTo" : [ ] - }, - "ZPYBCRBFCYN9APCP.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ZPYBCRBFCYN9APCP.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZPYBCRBFCYN9APCP.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ZPYBCRBFCYN9APCP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZPYBCRBFCYN9APCP.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ZPYBCRBFCYN9APCP.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "U7343ZA6ABZUXFZ9" : { - "U7343ZA6ABZUXFZ9.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "U7343ZA6ABZUXFZ9", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "U7343ZA6ABZUXFZ9.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "U7343ZA6ABZUXFZ9.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "U7343ZA6ABZUXFZ9.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "U7343ZA6ABZUXFZ9", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "U7343ZA6ABZUXFZ9.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "U7343ZA6ABZUXFZ9.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4066" - }, - "appliesTo" : [ ] - }, - "U7343ZA6ABZUXFZ9.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "U7343ZA6ABZUXFZ9.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "U7343ZA6ABZUXFZ9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "U7343ZA6ABZUXFZ9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "U7343ZA6ABZUXFZ9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "U7343ZA6ABZUXFZ9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5195" - }, - "appliesTo" : [ ] - }, - "U7343ZA6ABZUXFZ9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "U7343ZA6ABZUXFZ9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "U7343ZA6ABZUXFZ9.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "U7343ZA6ABZUXFZ9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U7343ZA6ABZUXFZ9.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "U7343ZA6ABZUXFZ9.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3406" - }, - "appliesTo" : [ ] - }, - "U7343ZA6ABZUXFZ9.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "U7343ZA6ABZUXFZ9.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "U7343ZA6ABZUXFZ9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "U7343ZA6ABZUXFZ9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "U7343ZA6ABZUXFZ9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "U7343ZA6ABZUXFZ9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2767" - }, - "appliesTo" : [ ] - }, - "U7343ZA6ABZUXFZ9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "U7343ZA6ABZUXFZ9.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "U7343ZA6ABZUXFZ9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "U7343ZA6ABZUXFZ9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "U7343ZA6ABZUXFZ9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "U7343ZA6ABZUXFZ9.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "U7343ZA6ABZUXFZ9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "U7343ZA6ABZUXFZ9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2952" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "U7343ZA6ABZUXFZ9.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "U7343ZA6ABZUXFZ9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U7343ZA6ABZUXFZ9.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "U7343ZA6ABZUXFZ9.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "U7343ZA6ABZUXFZ9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "U7343ZA6ABZUXFZ9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "U7343ZA6ABZUXFZ9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "U7343ZA6ABZUXFZ9.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "U7343ZA6ABZUXFZ9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "U7343ZA6ABZUXFZ9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "U7343ZA6ABZUXFZ9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "U7343ZA6ABZUXFZ9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1720000000" - }, - "appliesTo" : [ ] - }, - "U7343ZA6ABZUXFZ9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "U7343ZA6ABZUXFZ9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1506" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "U7343ZA6ABZUXFZ9.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "U7343ZA6ABZUXFZ9", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "U7343ZA6ABZUXFZ9.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "U7343ZA6ABZUXFZ9.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "U7343ZA6ABZUXFZ9.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "U7343ZA6ABZUXFZ9.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7970" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "U7343ZA6ABZUXFZ9.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "U7343ZA6ABZUXFZ9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U7343ZA6ABZUXFZ9.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "U7343ZA6ABZUXFZ9.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1738" - }, - "appliesTo" : [ ] - }, - "U7343ZA6ABZUXFZ9.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "U7343ZA6ABZUXFZ9.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "V8J7UTRH4P2HW8YW" : { - "V8J7UTRH4P2HW8YW.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "V8J7UTRH4P2HW8YW", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "V8J7UTRH4P2HW8YW.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "V8J7UTRH4P2HW8YW.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3075" - }, - "appliesTo" : [ ] - }, - "V8J7UTRH4P2HW8YW.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "V8J7UTRH4P2HW8YW.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "V8J7UTRH4P2HW8YW.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "V8J7UTRH4P2HW8YW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "V8J7UTRH4P2HW8YW.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "V8J7UTRH4P2HW8YW.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9713" - }, - "appliesTo" : [ ] - }, - "V8J7UTRH4P2HW8YW.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "V8J7UTRH4P2HW8YW.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "V8J7UTRH4P2HW8YW.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "V8J7UTRH4P2HW8YW", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "V8J7UTRH4P2HW8YW.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "V8J7UTRH4P2HW8YW.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2180000000" - }, - "appliesTo" : [ ] - }, - "V8J7UTRH4P2HW8YW.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "V8J7UTRH4P2HW8YW.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4151" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "V8J7UTRH4P2HW8YW.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "V8J7UTRH4P2HW8YW", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "V8J7UTRH4P2HW8YW.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "V8J7UTRH4P2HW8YW.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "V8J7UTRH4P2HW8YW.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "V8J7UTRH4P2HW8YW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V8J7UTRH4P2HW8YW.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "V8J7UTRH4P2HW8YW.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "V8J7UTRH4P2HW8YW.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "V8J7UTRH4P2HW8YW.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4614" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "V8J7UTRH4P2HW8YW.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "V8J7UTRH4P2HW8YW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V8J7UTRH4P2HW8YW.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "V8J7UTRH4P2HW8YW.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "V8J7UTRH4P2HW8YW.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "V8J7UTRH4P2HW8YW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "V8J7UTRH4P2HW8YW.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "V8J7UTRH4P2HW8YW.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3819000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "V8J7UTRH4P2HW8YW.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "V8J7UTRH4P2HW8YW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V8J7UTRH4P2HW8YW.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "V8J7UTRH4P2HW8YW.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1773" - }, - "appliesTo" : [ ] - }, - "V8J7UTRH4P2HW8YW.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "V8J7UTRH4P2HW8YW.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3324000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "V8J7UTRH4P2HW8YW.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "V8J7UTRH4P2HW8YW", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "V8J7UTRH4P2HW8YW.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "V8J7UTRH4P2HW8YW.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3539" - }, - "appliesTo" : [ ] - }, - "V8J7UTRH4P2HW8YW.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "V8J7UTRH4P2HW8YW.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "V8J7UTRH4P2HW8YW.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "V8J7UTRH4P2HW8YW", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "V8J7UTRH4P2HW8YW.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "V8J7UTRH4P2HW8YW.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1537" - }, - "appliesTo" : [ ] - }, - "V8J7UTRH4P2HW8YW.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "V8J7UTRH4P2HW8YW.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "V8J7UTRH4P2HW8YW.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "V8J7UTRH4P2HW8YW", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "V8J7UTRH4P2HW8YW.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "V8J7UTRH4P2HW8YW.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7357" - }, - "appliesTo" : [ ] - }, - "V8J7UTRH4P2HW8YW.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "V8J7UTRH4P2HW8YW.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "V8J7UTRH4P2HW8YW.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "V8J7UTRH4P2HW8YW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "V8J7UTRH4P2HW8YW.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "V8J7UTRH4P2HW8YW.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4196000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "GCU5MTJSYT27M7JU" : { - "GCU5MTJSYT27M7JU.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "GCU5MTJSYT27M7JU", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GCU5MTJSYT27M7JU.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "GCU5MTJSYT27M7JU.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1163" - }, - "appliesTo" : [ ] - }, - "GCU5MTJSYT27M7JU.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "GCU5MTJSYT27M7JU.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GCU5MTJSYT27M7JU.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "GCU5MTJSYT27M7JU", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "GCU5MTJSYT27M7JU.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "GCU5MTJSYT27M7JU.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "GCU5MTJSYT27M7JU.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "GCU5MTJSYT27M7JU.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1938" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GCU5MTJSYT27M7JU.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "GCU5MTJSYT27M7JU", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GCU5MTJSYT27M7JU.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "GCU5MTJSYT27M7JU.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GCU5MTJSYT27M7JU.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "GCU5MTJSYT27M7JU", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GCU5MTJSYT27M7JU.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "GCU5MTJSYT27M7JU.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1853" - }, - "appliesTo" : [ ] - }, - "GCU5MTJSYT27M7JU.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "GCU5MTJSYT27M7JU.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GCU5MTJSYT27M7JU.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "GCU5MTJSYT27M7JU", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GCU5MTJSYT27M7JU.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "GCU5MTJSYT27M7JU.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "GCU5MTJSYT27M7JU.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "GCU5MTJSYT27M7JU.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3668" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "42VGMPF8Y5PJ76X3" : { - "42VGMPF8Y5PJ76X3.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "42VGMPF8Y5PJ76X3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "42VGMPF8Y5PJ76X3.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "42VGMPF8Y5PJ76X3.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "42VGMPF8Y5PJ76X3.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "42VGMPF8Y5PJ76X3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "42VGMPF8Y5PJ76X3.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "42VGMPF8Y5PJ76X3.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1128" - }, - "appliesTo" : [ ] - }, - "42VGMPF8Y5PJ76X3.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "42VGMPF8Y5PJ76X3.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "42VGMPF8Y5PJ76X3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "42VGMPF8Y5PJ76X3", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "42VGMPF8Y5PJ76X3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "42VGMPF8Y5PJ76X3.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "42VGMPF8Y5PJ76X3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "42VGMPF8Y5PJ76X3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "42VGMPF8Y5PJ76X3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "42VGMPF8Y5PJ76X3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1677" - }, - "appliesTo" : [ ] - }, - "42VGMPF8Y5PJ76X3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "42VGMPF8Y5PJ76X3.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "42VGMPF8Y5PJ76X3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "42VGMPF8Y5PJ76X3", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "42VGMPF8Y5PJ76X3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "42VGMPF8Y5PJ76X3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1749" - }, - "appliesTo" : [ ] - }, - "42VGMPF8Y5PJ76X3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "42VGMPF8Y5PJ76X3.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "42VGMPF8Y5PJ76X3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "42VGMPF8Y5PJ76X3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "42VGMPF8Y5PJ76X3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "42VGMPF8Y5PJ76X3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3948" - }, - "appliesTo" : [ ] - }, - "42VGMPF8Y5PJ76X3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "42VGMPF8Y5PJ76X3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "42VGMPF8Y5PJ76X3.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "42VGMPF8Y5PJ76X3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "42VGMPF8Y5PJ76X3.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "42VGMPF8Y5PJ76X3.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2239" - }, - "appliesTo" : [ ] - }, - "42VGMPF8Y5PJ76X3.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "42VGMPF8Y5PJ76X3.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "42VGMPF8Y5PJ76X3.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "42VGMPF8Y5PJ76X3", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "42VGMPF8Y5PJ76X3.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "42VGMPF8Y5PJ76X3.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1200000000" - }, - "appliesTo" : [ ] - }, - "42VGMPF8Y5PJ76X3.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "42VGMPF8Y5PJ76X3.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2028" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "42VGMPF8Y5PJ76X3.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "42VGMPF8Y5PJ76X3", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "42VGMPF8Y5PJ76X3.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "42VGMPF8Y5PJ76X3.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "42VGMPF8Y5PJ76X3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "42VGMPF8Y5PJ76X3", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "42VGMPF8Y5PJ76X3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "42VGMPF8Y5PJ76X3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "718" - }, - "appliesTo" : [ ] - }, - "42VGMPF8Y5PJ76X3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "42VGMPF8Y5PJ76X3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "42VGMPF8Y5PJ76X3.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "42VGMPF8Y5PJ76X3", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "42VGMPF8Y5PJ76X3.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "42VGMPF8Y5PJ76X3.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5033" - }, - "appliesTo" : [ ] - }, - "42VGMPF8Y5PJ76X3.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "42VGMPF8Y5PJ76X3.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "MB9M33K6AWVAZT8U" : { - "MB9M33K6AWVAZT8U.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "MB9M33K6AWVAZT8U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MB9M33K6AWVAZT8U.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "MB9M33K6AWVAZT8U.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "MB9M33K6AWVAZT8U.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "MB9M33K6AWVAZT8U.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14240" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MB9M33K6AWVAZT8U.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "MB9M33K6AWVAZT8U", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "MB9M33K6AWVAZT8U.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "MB9M33K6AWVAZT8U.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MB9M33K6AWVAZT8U.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "MB9M33K6AWVAZT8U", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "MB9M33K6AWVAZT8U.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "MB9M33K6AWVAZT8U.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7973" - }, - "appliesTo" : [ ] - }, - "MB9M33K6AWVAZT8U.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "MB9M33K6AWVAZT8U.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MB9M33K6AWVAZT8U.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "MB9M33K6AWVAZT8U", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "MB9M33K6AWVAZT8U.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "MB9M33K6AWVAZT8U.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "MB9M33K6AWVAZT8U.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "MB9M33K6AWVAZT8U.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34035" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MB9M33K6AWVAZT8U.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "MB9M33K6AWVAZT8U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MB9M33K6AWVAZT8U.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "MB9M33K6AWVAZT8U.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MB9M33K6AWVAZT8U.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "MB9M33K6AWVAZT8U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MB9M33K6AWVAZT8U.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "MB9M33K6AWVAZT8U.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7200" - }, - "appliesTo" : [ ] - }, - "MB9M33K6AWVAZT8U.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "MB9M33K6AWVAZT8U.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MB9M33K6AWVAZT8U.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "MB9M33K6AWVAZT8U", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "MB9M33K6AWVAZT8U.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "MB9M33K6AWVAZT8U.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MB9M33K6AWVAZT8U.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "MB9M33K6AWVAZT8U", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "MB9M33K6AWVAZT8U.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "MB9M33K6AWVAZT8U.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16478" - }, - "appliesTo" : [ ] - }, - "MB9M33K6AWVAZT8U.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "MB9M33K6AWVAZT8U.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MB9M33K6AWVAZT8U.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "MB9M33K6AWVAZT8U", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "MB9M33K6AWVAZT8U.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "MB9M33K6AWVAZT8U.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25814" - }, - "appliesTo" : [ ] - }, - "MB9M33K6AWVAZT8U.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "MB9M33K6AWVAZT8U.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MB9M33K6AWVAZT8U.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "MB9M33K6AWVAZT8U", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "MB9M33K6AWVAZT8U.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "MB9M33K6AWVAZT8U.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22562" - }, - "appliesTo" : [ ] - }, - "MB9M33K6AWVAZT8U.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "MB9M33K6AWVAZT8U.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MB9M33K6AWVAZT8U.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "MB9M33K6AWVAZT8U", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "MB9M33K6AWVAZT8U.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "MB9M33K6AWVAZT8U.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12025" - }, - "appliesTo" : [ ] - }, - "MB9M33K6AWVAZT8U.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "MB9M33K6AWVAZT8U.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "8QZCKNB62EDMDT63" : { - "8QZCKNB62EDMDT63.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "8QZCKNB62EDMDT63", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "8QZCKNB62EDMDT63.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "8QZCKNB62EDMDT63.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "52166" - }, - "appliesTo" : [ ] - }, - "8QZCKNB62EDMDT63.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "8QZCKNB62EDMDT63.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8QZCKNB62EDMDT63.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "8QZCKNB62EDMDT63", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8QZCKNB62EDMDT63.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "8QZCKNB62EDMDT63.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "59990" - }, - "appliesTo" : [ ] - }, - "8QZCKNB62EDMDT63.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "8QZCKNB62EDMDT63.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8QZCKNB62EDMDT63.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "8QZCKNB62EDMDT63", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8QZCKNB62EDMDT63.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "8QZCKNB62EDMDT63.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8QZCKNB62EDMDT63.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "8QZCKNB62EDMDT63", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8QZCKNB62EDMDT63.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "8QZCKNB62EDMDT63.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "8QZCKNB62EDMDT63.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "8QZCKNB62EDMDT63.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "98072" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8QZCKNB62EDMDT63.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "8QZCKNB62EDMDT63", - "effectiveDate" : "2016-05-31T23:59:59Z", - "priceDimensions" : { - "8QZCKNB62EDMDT63.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "8QZCKNB62EDMDT63.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "67199" - }, - "appliesTo" : [ ] - }, - "8QZCKNB62EDMDT63.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "8QZCKNB62EDMDT63.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8QZCKNB62EDMDT63.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "8QZCKNB62EDMDT63", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "8QZCKNB62EDMDT63.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "8QZCKNB62EDMDT63.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34285" - }, - "appliesTo" : [ ] - }, - "8QZCKNB62EDMDT63.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "8QZCKNB62EDMDT63.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8QZCKNB62EDMDT63.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "8QZCKNB62EDMDT63", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8QZCKNB62EDMDT63.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "8QZCKNB62EDMDT63.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.4520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8QZCKNB62EDMDT63.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "8QZCKNB62EDMDT63", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8QZCKNB62EDMDT63.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "8QZCKNB62EDMDT63.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "77281" - }, - "appliesTo" : [ ] - }, - "8QZCKNB62EDMDT63.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "8QZCKNB62EDMDT63.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8QZCKNB62EDMDT63.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "8QZCKNB62EDMDT63", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8QZCKNB62EDMDT63.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "8QZCKNB62EDMDT63.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5010000000" - }, - "appliesTo" : [ ] - }, - "8QZCKNB62EDMDT63.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "8QZCKNB62EDMDT63.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39429" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8QZCKNB62EDMDT63.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "8QZCKNB62EDMDT63", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8QZCKNB62EDMDT63.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "8QZCKNB62EDMDT63.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.2190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8QZCKNB62EDMDT63.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "8QZCKNB62EDMDT63", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8QZCKNB62EDMDT63.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "8QZCKNB62EDMDT63.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8QZCKNB62EDMDT63.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "8QZCKNB62EDMDT63", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8QZCKNB62EDMDT63.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "8QZCKNB62EDMDT63.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "8QZCKNB62EDMDT63.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "8QZCKNB62EDMDT63.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "117581" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "J4T9ZF4AJ2DXE7SA" : { - "J4T9ZF4AJ2DXE7SA.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "J4T9ZF4AJ2DXE7SA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "J4T9ZF4AJ2DXE7SA.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "J4T9ZF4AJ2DXE7SA.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "J4T9ZF4AJ2DXE7SA.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "J4T9ZF4AJ2DXE7SA.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10130" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "J4T9ZF4AJ2DXE7SA.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "J4T9ZF4AJ2DXE7SA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "J4T9ZF4AJ2DXE7SA.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "J4T9ZF4AJ2DXE7SA.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9936000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "J4T9ZF4AJ2DXE7SA.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "J4T9ZF4AJ2DXE7SA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "J4T9ZF4AJ2DXE7SA.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "J4T9ZF4AJ2DXE7SA.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "J4T9ZF4AJ2DXE7SA.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "J4T9ZF4AJ2DXE7SA.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23694" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "J4T9ZF4AJ2DXE7SA.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "J4T9ZF4AJ2DXE7SA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "J4T9ZF4AJ2DXE7SA.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "J4T9ZF4AJ2DXE7SA.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "J4T9ZF4AJ2DXE7SA.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "J4T9ZF4AJ2DXE7SA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J4T9ZF4AJ2DXE7SA.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "J4T9ZF4AJ2DXE7SA.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11650" - }, - "appliesTo" : [ ] - }, - "J4T9ZF4AJ2DXE7SA.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "J4T9ZF4AJ2DXE7SA.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "J4T9ZF4AJ2DXE7SA.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "J4T9ZF4AJ2DXE7SA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "J4T9ZF4AJ2DXE7SA.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "J4T9ZF4AJ2DXE7SA.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5900000000" - }, - "appliesTo" : [ ] - }, - "J4T9ZF4AJ2DXE7SA.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "J4T9ZF4AJ2DXE7SA.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5168" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "J4T9ZF4AJ2DXE7SA.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "J4T9ZF4AJ2DXE7SA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "J4T9ZF4AJ2DXE7SA.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "J4T9ZF4AJ2DXE7SA.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "J4T9ZF4AJ2DXE7SA.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "J4T9ZF4AJ2DXE7SA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J4T9ZF4AJ2DXE7SA.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "J4T9ZF4AJ2DXE7SA.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5944" - }, - "appliesTo" : [ ] - }, - "J4T9ZF4AJ2DXE7SA.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "J4T9ZF4AJ2DXE7SA.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6785000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "J4T9ZF4AJ2DXE7SA.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "J4T9ZF4AJ2DXE7SA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J4T9ZF4AJ2DXE7SA.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "J4T9ZF4AJ2DXE7SA.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4249000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "J4T9ZF4AJ2DXE7SA.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "J4T9ZF4AJ2DXE7SA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "J4T9ZF4AJ2DXE7SA.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "J4T9ZF4AJ2DXE7SA.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19763" - }, - "appliesTo" : [ ] - }, - "J4T9ZF4AJ2DXE7SA.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "J4T9ZF4AJ2DXE7SA.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "J4T9ZF4AJ2DXE7SA.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "J4T9ZF4AJ2DXE7SA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "J4T9ZF4AJ2DXE7SA.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "J4T9ZF4AJ2DXE7SA.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12089" - }, - "appliesTo" : [ ] - }, - "J4T9ZF4AJ2DXE7SA.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "J4T9ZF4AJ2DXE7SA.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "J4T9ZF4AJ2DXE7SA.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "J4T9ZF4AJ2DXE7SA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "J4T9ZF4AJ2DXE7SA.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "J4T9ZF4AJ2DXE7SA.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10512" - }, - "appliesTo" : [ ] - }, - "J4T9ZF4AJ2DXE7SA.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "J4T9ZF4AJ2DXE7SA.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "63U4EHGD76K6MYA6" : { - "63U4EHGD76K6MYA6.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "63U4EHGD76K6MYA6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "63U4EHGD76K6MYA6.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "63U4EHGD76K6MYA6.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4070000000" - }, - "appliesTo" : [ ] - }, - "63U4EHGD76K6MYA6.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "63U4EHGD76K6MYA6.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3567" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "63U4EHGD76K6MYA6.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "63U4EHGD76K6MYA6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "63U4EHGD76K6MYA6.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "63U4EHGD76K6MYA6.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "63U4EHGD76K6MYA6.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "63U4EHGD76K6MYA6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "63U4EHGD76K6MYA6.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "63U4EHGD76K6MYA6.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "63U4EHGD76K6MYA6.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "63U4EHGD76K6MYA6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "63U4EHGD76K6MYA6.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "63U4EHGD76K6MYA6.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7036" - }, - "appliesTo" : [ ] - }, - "63U4EHGD76K6MYA6.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "63U4EHGD76K6MYA6.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "63U4EHGD76K6MYA6.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "63U4EHGD76K6MYA6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "63U4EHGD76K6MYA6.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "63U4EHGD76K6MYA6.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "63U4EHGD76K6MYA6.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "63U4EHGD76K6MYA6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "63U4EHGD76K6MYA6.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "63U4EHGD76K6MYA6.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13964" - }, - "appliesTo" : [ ] - }, - "63U4EHGD76K6MYA6.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "63U4EHGD76K6MYA6.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "63U4EHGD76K6MYA6.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "63U4EHGD76K6MYA6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "63U4EHGD76K6MYA6.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "63U4EHGD76K6MYA6.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "63U4EHGD76K6MYA6.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "63U4EHGD76K6MYA6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "63U4EHGD76K6MYA6.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "63U4EHGD76K6MYA6.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3246" - }, - "appliesTo" : [ ] - }, - "63U4EHGD76K6MYA6.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "63U4EHGD76K6MYA6.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "63U4EHGD76K6MYA6.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "63U4EHGD76K6MYA6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "63U4EHGD76K6MYA6.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "63U4EHGD76K6MYA6.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6406" - }, - "appliesTo" : [ ] - }, - "63U4EHGD76K6MYA6.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "63U4EHGD76K6MYA6.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "63U4EHGD76K6MYA6.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "63U4EHGD76K6MYA6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "63U4EHGD76K6MYA6.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "63U4EHGD76K6MYA6.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "63U4EHGD76K6MYA6.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "63U4EHGD76K6MYA6.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12744" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "63U4EHGD76K6MYA6.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "63U4EHGD76K6MYA6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "63U4EHGD76K6MYA6.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "63U4EHGD76K6MYA6.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7057" - }, - "appliesTo" : [ ] - }, - "63U4EHGD76K6MYA6.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "63U4EHGD76K6MYA6.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "63U4EHGD76K6MYA6.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "63U4EHGD76K6MYA6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "63U4EHGD76K6MYA6.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "63U4EHGD76K6MYA6.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2500000000" - }, - "appliesTo" : [ ] - }, - "63U4EHGD76K6MYA6.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "63U4EHGD76K6MYA6.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6568" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "K8NM7HNBAX7T4N5U" : { - "K8NM7HNBAX7T4N5U.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "K8NM7HNBAX7T4N5U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K8NM7HNBAX7T4N5U.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "K8NM7HNBAX7T4N5U.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "K8NM7HNBAX7T4N5U.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "K8NM7HNBAX7T4N5U.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9768" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "K8NM7HNBAX7T4N5U.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "K8NM7HNBAX7T4N5U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K8NM7HNBAX7T4N5U.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "K8NM7HNBAX7T4N5U.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10265" - }, - "appliesTo" : [ ] - }, - "K8NM7HNBAX7T4N5U.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "K8NM7HNBAX7T4N5U.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "K8NM7HNBAX7T4N5U.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "K8NM7HNBAX7T4N5U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K8NM7HNBAX7T4N5U.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "K8NM7HNBAX7T4N5U.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4407" - }, - "appliesTo" : [ ] - }, - "K8NM7HNBAX7T4N5U.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "K8NM7HNBAX7T4N5U.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "K8NM7HNBAX7T4N5U.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "K8NM7HNBAX7T4N5U", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "K8NM7HNBAX7T4N5U.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "K8NM7HNBAX7T4N5U.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9038" - }, - "appliesTo" : [ ] - }, - "K8NM7HNBAX7T4N5U.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "K8NM7HNBAX7T4N5U.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "K8NM7HNBAX7T4N5U.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "K8NM7HNBAX7T4N5U", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "K8NM7HNBAX7T4N5U.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "K8NM7HNBAX7T4N5U.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17023" - }, - "appliesTo" : [ ] - }, - "K8NM7HNBAX7T4N5U.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "K8NM7HNBAX7T4N5U.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "K8NM7HNBAX7T4N5U.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "K8NM7HNBAX7T4N5U", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "K8NM7HNBAX7T4N5U.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "K8NM7HNBAX7T4N5U.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8583" - }, - "appliesTo" : [ ] - }, - "K8NM7HNBAX7T4N5U.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "K8NM7HNBAX7T4N5U.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "K8NM7HNBAX7T4N5U.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "K8NM7HNBAX7T4N5U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K8NM7HNBAX7T4N5U.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "K8NM7HNBAX7T4N5U.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "K8NM7HNBAX7T4N5U.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "K8NM7HNBAX7T4N5U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K8NM7HNBAX7T4N5U.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "K8NM7HNBAX7T4N5U.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5012" - }, - "appliesTo" : [ ] - }, - "K8NM7HNBAX7T4N5U.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "K8NM7HNBAX7T4N5U.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "K8NM7HNBAX7T4N5U.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "K8NM7HNBAX7T4N5U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K8NM7HNBAX7T4N5U.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "K8NM7HNBAX7T4N5U.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "K8NM7HNBAX7T4N5U.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "K8NM7HNBAX7T4N5U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K8NM7HNBAX7T4N5U.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "K8NM7HNBAX7T4N5U.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "K8NM7HNBAX7T4N5U.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "K8NM7HNBAX7T4N5U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K8NM7HNBAX7T4N5U.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "K8NM7HNBAX7T4N5U.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20123" - }, - "appliesTo" : [ ] - }, - "K8NM7HNBAX7T4N5U.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "K8NM7HNBAX7T4N5U.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "K8NM7HNBAX7T4N5U.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "K8NM7HNBAX7T4N5U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K8NM7HNBAX7T4N5U.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "K8NM7HNBAX7T4N5U.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "V7SRDNUCBKDMKD3M" : { - "V7SRDNUCBKDMKD3M.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "V7SRDNUCBKDMKD3M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V7SRDNUCBKDMKD3M.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "V7SRDNUCBKDMKD3M.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7880" - }, - "appliesTo" : [ ] - }, - "V7SRDNUCBKDMKD3M.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "V7SRDNUCBKDMKD3M.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "V7SRDNUCBKDMKD3M.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "V7SRDNUCBKDMKD3M", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "V7SRDNUCBKDMKD3M.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "V7SRDNUCBKDMKD3M.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "V7SRDNUCBKDMKD3M.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "V7SRDNUCBKDMKD3M", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "V7SRDNUCBKDMKD3M.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "V7SRDNUCBKDMKD3M.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "V7SRDNUCBKDMKD3M.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "V7SRDNUCBKDMKD3M.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12214" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "V7SRDNUCBKDMKD3M.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "V7SRDNUCBKDMKD3M", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "V7SRDNUCBKDMKD3M.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "V7SRDNUCBKDMKD3M.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6860" - }, - "appliesTo" : [ ] - }, - "V7SRDNUCBKDMKD3M.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "V7SRDNUCBKDMKD3M.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "V7SRDNUCBKDMKD3M.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "V7SRDNUCBKDMKD3M", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "V7SRDNUCBKDMKD3M.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "V7SRDNUCBKDMKD3M.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18522" - }, - "appliesTo" : [ ] - }, - "V7SRDNUCBKDMKD3M.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "V7SRDNUCBKDMKD3M.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "V7SRDNUCBKDMKD3M.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "V7SRDNUCBKDMKD3M", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "V7SRDNUCBKDMKD3M.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "V7SRDNUCBKDMKD3M.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4004" - }, - "appliesTo" : [ ] - }, - "V7SRDNUCBKDMKD3M.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "V7SRDNUCBKDMKD3M.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "V7SRDNUCBKDMKD3M.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "V7SRDNUCBKDMKD3M", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "V7SRDNUCBKDMKD3M.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "V7SRDNUCBKDMKD3M.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "V7SRDNUCBKDMKD3M.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "V7SRDNUCBKDMKD3M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V7SRDNUCBKDMKD3M.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "V7SRDNUCBKDMKD3M.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4020" - }, - "appliesTo" : [ ] - }, - "V7SRDNUCBKDMKD3M.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "V7SRDNUCBKDMKD3M.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "V7SRDNUCBKDMKD3M.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "V7SRDNUCBKDMKD3M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V7SRDNUCBKDMKD3M.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "V7SRDNUCBKDMKD3M.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "V7SRDNUCBKDMKD3M.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "V7SRDNUCBKDMKD3M", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "V7SRDNUCBKDMKD3M.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "V7SRDNUCBKDMKD3M.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2650000000" - }, - "appliesTo" : [ ] - }, - "V7SRDNUCBKDMKD3M.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "V7SRDNUCBKDMKD3M.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6028" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "V7SRDNUCBKDMKD3M.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "V7SRDNUCBKDMKD3M", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "V7SRDNUCBKDMKD3M.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "V7SRDNUCBKDMKD3M.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10811" - }, - "appliesTo" : [ ] - }, - "V7SRDNUCBKDMKD3M.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "V7SRDNUCBKDMKD3M.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "2VHPXRTYGECESS2J" : { - "2VHPXRTYGECESS2J.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "2VHPXRTYGECESS2J", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2VHPXRTYGECESS2J.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "2VHPXRTYGECESS2J.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1954" - }, - "appliesTo" : [ ] - }, - "2VHPXRTYGECESS2J.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "2VHPXRTYGECESS2J.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0739000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2VHPXRTYGECESS2J.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "2VHPXRTYGECESS2J", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2VHPXRTYGECESS2J.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "2VHPXRTYGECESS2J.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1647000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2VHPXRTYGECESS2J.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "2VHPXRTYGECESS2J", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "2VHPXRTYGECESS2J.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "2VHPXRTYGECESS2J.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0660000000" - }, - "appliesTo" : [ ] - }, - "2VHPXRTYGECESS2J.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "2VHPXRTYGECESS2J.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1750" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2VHPXRTYGECESS2J.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "2VHPXRTYGECESS2J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2VHPXRTYGECESS2J.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "2VHPXRTYGECESS2J.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1870" - }, - "appliesTo" : [ ] - }, - "2VHPXRTYGECESS2J.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "2VHPXRTYGECESS2J.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2VHPXRTYGECESS2J.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "2VHPXRTYGECESS2J", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2VHPXRTYGECESS2J.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "2VHPXRTYGECESS2J.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3833" - }, - "appliesTo" : [ ] - }, - "2VHPXRTYGECESS2J.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "2VHPXRTYGECESS2J.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2VHPXRTYGECESS2J.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "2VHPXRTYGECESS2J", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "2VHPXRTYGECESS2J.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "2VHPXRTYGECESS2J.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "2VHPXRTYGECESS2J.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "2VHPXRTYGECESS2J.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3322" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2VHPXRTYGECESS2J.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "2VHPXRTYGECESS2J", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2VHPXRTYGECESS2J.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "2VHPXRTYGECESS2J.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1475000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2VHPXRTYGECESS2J.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "2VHPXRTYGECESS2J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2VHPXRTYGECESS2J.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "2VHPXRTYGECESS2J.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1050000000" - }, - "appliesTo" : [ ] - }, - "2VHPXRTYGECESS2J.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "2VHPXRTYGECESS2J.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "982" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2VHPXRTYGECESS2J.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "2VHPXRTYGECESS2J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2VHPXRTYGECESS2J.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "2VHPXRTYGECESS2J.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2262000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2VHPXRTYGECESS2J.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "2VHPXRTYGECESS2J", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "2VHPXRTYGECESS2J.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "2VHPXRTYGECESS2J.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1660" - }, - "appliesTo" : [ ] - }, - "2VHPXRTYGECESS2J.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "2VHPXRTYGECESS2J.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2VHPXRTYGECESS2J.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "2VHPXRTYGECESS2J", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2VHPXRTYGECESS2J.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "2VHPXRTYGECESS2J.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "875" - }, - "appliesTo" : [ ] - }, - "2VHPXRTYGECESS2J.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "2VHPXRTYGECESS2J.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2VHPXRTYGECESS2J.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "2VHPXRTYGECESS2J", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2VHPXRTYGECESS2J.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "2VHPXRTYGECESS2J.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "P47VRQMUV2K4MN5Z" : { - "P47VRQMUV2K4MN5Z.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "P47VRQMUV2K4MN5Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P47VRQMUV2K4MN5Z.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "P47VRQMUV2K4MN5Z.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2832" - }, - "appliesTo" : [ ] - }, - "P47VRQMUV2K4MN5Z.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "P47VRQMUV2K4MN5Z.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3233000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "P47VRQMUV2K4MN5Z.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "P47VRQMUV2K4MN5Z", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "P47VRQMUV2K4MN5Z.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "P47VRQMUV2K4MN5Z.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6401000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "P47VRQMUV2K4MN5Z.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "P47VRQMUV2K4MN5Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P47VRQMUV2K4MN5Z.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "P47VRQMUV2K4MN5Z.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6504000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "P47VRQMUV2K4MN5Z.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "P47VRQMUV2K4MN5Z", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "P47VRQMUV2K4MN5Z.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "P47VRQMUV2K4MN5Z.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3113000000" - }, - "appliesTo" : [ ] - }, - "P47VRQMUV2K4MN5Z.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "P47VRQMUV2K4MN5Z.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8181" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "P47VRQMUV2K4MN5Z.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "P47VRQMUV2K4MN5Z", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "P47VRQMUV2K4MN5Z.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "P47VRQMUV2K4MN5Z.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3080000000" - }, - "appliesTo" : [ ] - }, - "P47VRQMUV2K4MN5Z.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "P47VRQMUV2K4MN5Z.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8094" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "P47VRQMUV2K4MN5Z.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "P47VRQMUV2K4MN5Z", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "P47VRQMUV2K4MN5Z.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "P47VRQMUV2K4MN5Z.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2790" - }, - "appliesTo" : [ ] - }, - "P47VRQMUV2K4MN5Z.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "P47VRQMUV2K4MN5Z.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3185000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "P47VRQMUV2K4MN5Z.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "P47VRQMUV2K4MN5Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P47VRQMUV2K4MN5Z.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "P47VRQMUV2K4MN5Z.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "P47VRQMUV2K4MN5Z.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "P47VRQMUV2K4MN5Z.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5651" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "P47VRQMUV2K4MN5Z.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "P47VRQMUV2K4MN5Z", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "P47VRQMUV2K4MN5Z.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "P47VRQMUV2K4MN5Z.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6266000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "P47VRQMUV2K4MN5Z.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "P47VRQMUV2K4MN5Z", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "P47VRQMUV2K4MN5Z.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "P47VRQMUV2K4MN5Z.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5568" - }, - "appliesTo" : [ ] - }, - "P47VRQMUV2K4MN5Z.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "P47VRQMUV2K4MN5Z.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "P47VRQMUV2K4MN5Z.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "P47VRQMUV2K4MN5Z", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "P47VRQMUV2K4MN5Z.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "P47VRQMUV2K4MN5Z.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16119" - }, - "appliesTo" : [ ] - }, - "P47VRQMUV2K4MN5Z.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "P47VRQMUV2K4MN5Z.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "P47VRQMUV2K4MN5Z.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "P47VRQMUV2K4MN5Z", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "P47VRQMUV2K4MN5Z.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "P47VRQMUV2K4MN5Z.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6195000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "P47VRQMUV2K4MN5Z.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "P47VRQMUV2K4MN5Z", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "P47VRQMUV2K4MN5Z.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "P47VRQMUV2K4MN5Z.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16335" - }, - "appliesTo" : [ ] - }, - "P47VRQMUV2K4MN5Z.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "P47VRQMUV2K4MN5Z.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "X4DNEZ99CC6GXAKU" : { - "X4DNEZ99CC6GXAKU.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "X4DNEZ99CC6GXAKU", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "X4DNEZ99CC6GXAKU.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "X4DNEZ99CC6GXAKU.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1699" - }, - "appliesTo" : [ ] - }, - "X4DNEZ99CC6GXAKU.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "X4DNEZ99CC6GXAKU.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "X4DNEZ99CC6GXAKU.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "X4DNEZ99CC6GXAKU", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "X4DNEZ99CC6GXAKU.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "X4DNEZ99CC6GXAKU.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "X4DNEZ99CC6GXAKU.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "X4DNEZ99CC6GXAKU.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3371" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "X4DNEZ99CC6GXAKU.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "X4DNEZ99CC6GXAKU", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "X4DNEZ99CC6GXAKU.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "X4DNEZ99CC6GXAKU.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2159" - }, - "appliesTo" : [ ] - }, - "X4DNEZ99CC6GXAKU.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "X4DNEZ99CC6GXAKU.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "X4DNEZ99CC6GXAKU.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "X4DNEZ99CC6GXAKU", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "X4DNEZ99CC6GXAKU.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "X4DNEZ99CC6GXAKU.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3054" - }, - "appliesTo" : [ ] - }, - "X4DNEZ99CC6GXAKU.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "X4DNEZ99CC6GXAKU.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "X4DNEZ99CC6GXAKU.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "X4DNEZ99CC6GXAKU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X4DNEZ99CC6GXAKU.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "X4DNEZ99CC6GXAKU.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1130000000" - }, - "appliesTo" : [ ] - }, - "X4DNEZ99CC6GXAKU.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "X4DNEZ99CC6GXAKU.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "994" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "X4DNEZ99CC6GXAKU.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "X4DNEZ99CC6GXAKU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X4DNEZ99CC6GXAKU.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "X4DNEZ99CC6GXAKU.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "X4DNEZ99CC6GXAKU.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "X4DNEZ99CC6GXAKU", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "X4DNEZ99CC6GXAKU.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "X4DNEZ99CC6GXAKU.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "X4DNEZ99CC6GXAKU.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "X4DNEZ99CC6GXAKU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X4DNEZ99CC6GXAKU.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "X4DNEZ99CC6GXAKU.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "X4DNEZ99CC6GXAKU.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "X4DNEZ99CC6GXAKU.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1948" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "X4DNEZ99CC6GXAKU.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "X4DNEZ99CC6GXAKU", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "X4DNEZ99CC6GXAKU.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "X4DNEZ99CC6GXAKU.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4587" - }, - "appliesTo" : [ ] - }, - "X4DNEZ99CC6GXAKU.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "X4DNEZ99CC6GXAKU.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "X4DNEZ99CC6GXAKU.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "X4DNEZ99CC6GXAKU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "X4DNEZ99CC6GXAKU.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "X4DNEZ99CC6GXAKU.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "X4DNEZ99CC6GXAKU.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "X4DNEZ99CC6GXAKU", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "X4DNEZ99CC6GXAKU.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "X4DNEZ99CC6GXAKU.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1131" - }, - "appliesTo" : [ ] - }, - "X4DNEZ99CC6GXAKU.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "X4DNEZ99CC6GXAKU.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "NZFDNPR89WKZ6C5N" : { - "NZFDNPR89WKZ6C5N.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "NZFDNPR89WKZ6C5N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NZFDNPR89WKZ6C5N.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "NZFDNPR89WKZ6C5N.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "NZFDNPR89WKZ6C5N.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "NZFDNPR89WKZ6C5N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NZFDNPR89WKZ6C5N.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "NZFDNPR89WKZ6C5N.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1385" - }, - "appliesTo" : [ ] - }, - "NZFDNPR89WKZ6C5N.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "NZFDNPR89WKZ6C5N.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "NZFDNPR89WKZ6C5N.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "NZFDNPR89WKZ6C5N", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "NZFDNPR89WKZ6C5N.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "NZFDNPR89WKZ6C5N.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2368" - }, - "appliesTo" : [ ] - }, - "NZFDNPR89WKZ6C5N.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "NZFDNPR89WKZ6C5N.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "NZFDNPR89WKZ6C5N.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "NZFDNPR89WKZ6C5N", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "NZFDNPR89WKZ6C5N.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "NZFDNPR89WKZ6C5N.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2520" - }, - "appliesTo" : [ ] - }, - "NZFDNPR89WKZ6C5N.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "NZFDNPR89WKZ6C5N.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "NZFDNPR89WKZ6C5N.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "NZFDNPR89WKZ6C5N", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "NZFDNPR89WKZ6C5N.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "NZFDNPR89WKZ6C5N.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2830" - }, - "appliesTo" : [ ] - }, - "NZFDNPR89WKZ6C5N.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "NZFDNPR89WKZ6C5N.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "NZFDNPR89WKZ6C5N.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "NZFDNPR89WKZ6C5N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NZFDNPR89WKZ6C5N.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "NZFDNPR89WKZ6C5N.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "NZFDNPR89WKZ6C5N.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "NZFDNPR89WKZ6C5N.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2659" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "NZFDNPR89WKZ6C5N.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "NZFDNPR89WKZ6C5N", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "NZFDNPR89WKZ6C5N.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "NZFDNPR89WKZ6C5N.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "NZFDNPR89WKZ6C5N.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "NZFDNPR89WKZ6C5N", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "NZFDNPR89WKZ6C5N.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "NZFDNPR89WKZ6C5N.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4770" - }, - "appliesTo" : [ ] - }, - "NZFDNPR89WKZ6C5N.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "NZFDNPR89WKZ6C5N.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "NZFDNPR89WKZ6C5N.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "NZFDNPR89WKZ6C5N", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "NZFDNPR89WKZ6C5N.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "NZFDNPR89WKZ6C5N.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "NZFDNPR89WKZ6C5N.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "NZFDNPR89WKZ6C5N", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "NZFDNPR89WKZ6C5N.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "NZFDNPR89WKZ6C5N.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5551" - }, - "appliesTo" : [ ] - }, - "NZFDNPR89WKZ6C5N.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "NZFDNPR89WKZ6C5N.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "NZFDNPR89WKZ6C5N.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "NZFDNPR89WKZ6C5N", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "NZFDNPR89WKZ6C5N.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "NZFDNPR89WKZ6C5N.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "NZFDNPR89WKZ6C5N.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "NZFDNPR89WKZ6C5N", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "NZFDNPR89WKZ6C5N.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "NZFDNPR89WKZ6C5N.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1236" - }, - "appliesTo" : [ ] - }, - "NZFDNPR89WKZ6C5N.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "NZFDNPR89WKZ6C5N.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "K9GNYJBAEBJGBE3S" : { - "K9GNYJBAEBJGBE3S.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "K9GNYJBAEBJGBE3S", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "K9GNYJBAEBJGBE3S.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "K9GNYJBAEBJGBE3S.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "847" - }, - "appliesTo" : [ ] - }, - "K9GNYJBAEBJGBE3S.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "K9GNYJBAEBJGBE3S.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "K9GNYJBAEBJGBE3S.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "K9GNYJBAEBJGBE3S", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "K9GNYJBAEBJGBE3S.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "K9GNYJBAEBJGBE3S.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1676" - }, - "appliesTo" : [ ] - }, - "K9GNYJBAEBJGBE3S.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "K9GNYJBAEBJGBE3S.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "K9GNYJBAEBJGBE3S.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "K9GNYJBAEBJGBE3S", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K9GNYJBAEBJGBE3S.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "K9GNYJBAEBJGBE3S.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "K9GNYJBAEBJGBE3S.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "K9GNYJBAEBJGBE3S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K9GNYJBAEBJGBE3S.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "K9GNYJBAEBJGBE3S.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1813" - }, - "appliesTo" : [ ] - }, - "K9GNYJBAEBJGBE3S.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "K9GNYJBAEBJGBE3S.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "K9GNYJBAEBJGBE3S.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "K9GNYJBAEBJGBE3S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K9GNYJBAEBJGBE3S.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "K9GNYJBAEBJGBE3S.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "K9GNYJBAEBJGBE3S.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "K9GNYJBAEBJGBE3S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K9GNYJBAEBJGBE3S.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "K9GNYJBAEBJGBE3S.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "917" - }, - "appliesTo" : [ ] - }, - "K9GNYJBAEBJGBE3S.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "K9GNYJBAEBJGBE3S.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "K9GNYJBAEBJGBE3S.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "K9GNYJBAEBJGBE3S", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K9GNYJBAEBJGBE3S.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "K9GNYJBAEBJGBE3S.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4491" - }, - "appliesTo" : [ ] - }, - "K9GNYJBAEBJGBE3S.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "K9GNYJBAEBJGBE3S.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "K9GNYJBAEBJGBE3S.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "K9GNYJBAEBJGBE3S", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "K9GNYJBAEBJGBE3S.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "K9GNYJBAEBJGBE3S.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0810000000" - }, - "appliesTo" : [ ] - }, - "K9GNYJBAEBJGBE3S.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "K9GNYJBAEBJGBE3S.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2131" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "K9GNYJBAEBJGBE3S.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "K9GNYJBAEBJGBE3S", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K9GNYJBAEBJGBE3S.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "K9GNYJBAEBJGBE3S.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "K9GNYJBAEBJGBE3S.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "K9GNYJBAEBJGBE3S", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K9GNYJBAEBJGBE3S.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "K9GNYJBAEBJGBE3S.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "K9GNYJBAEBJGBE3S.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "K9GNYJBAEBJGBE3S", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K9GNYJBAEBJGBE3S.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "K9GNYJBAEBJGBE3S.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2267" - }, - "appliesTo" : [ ] - }, - "K9GNYJBAEBJGBE3S.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "K9GNYJBAEBJGBE3S.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "K9GNYJBAEBJGBE3S.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "K9GNYJBAEBJGBE3S", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "K9GNYJBAEBJGBE3S.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "K9GNYJBAEBJGBE3S.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4152" - }, - "appliesTo" : [ ] - }, - "K9GNYJBAEBJGBE3S.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "K9GNYJBAEBJGBE3S.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "6GASB9Z3J6ZHWKU5" : { - "6GASB9Z3J6ZHWKU5.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6GASB9Z3J6ZHWKU5", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "6GASB9Z3J6ZHWKU5.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6GASB9Z3J6ZHWKU5.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6GASB9Z3J6ZHWKU5.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6GASB9Z3J6ZHWKU5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6GASB9Z3J6ZHWKU5.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6GASB9Z3J6ZHWKU5.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7220" - }, - "appliesTo" : [ ] - }, - "6GASB9Z3J6ZHWKU5.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6GASB9Z3J6ZHWKU5.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6GASB9Z3J6ZHWKU5.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6GASB9Z3J6ZHWKU5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6GASB9Z3J6ZHWKU5.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6GASB9Z3J6ZHWKU5.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10880" - }, - "appliesTo" : [ ] - }, - "6GASB9Z3J6ZHWKU5.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6GASB9Z3J6ZHWKU5.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6GASB9Z3J6ZHWKU5.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6GASB9Z3J6ZHWKU5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6GASB9Z3J6ZHWKU5.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6GASB9Z3J6ZHWKU5.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15240" - }, - "appliesTo" : [ ] - }, - "6GASB9Z3J6ZHWKU5.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6GASB9Z3J6ZHWKU5.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6GASB9Z3J6ZHWKU5.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6GASB9Z3J6ZHWKU5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6GASB9Z3J6ZHWKU5.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6GASB9Z3J6ZHWKU5.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30509" - }, - "appliesTo" : [ ] - }, - "6GASB9Z3J6ZHWKU5.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6GASB9Z3J6ZHWKU5.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "32R9UMHRGUNFK9EM" : { - "32R9UMHRGUNFK9EM.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "32R9UMHRGUNFK9EM", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "32R9UMHRGUNFK9EM.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "32R9UMHRGUNFK9EM.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4866" - }, - "appliesTo" : [ ] - }, - "32R9UMHRGUNFK9EM.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "32R9UMHRGUNFK9EM.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "32R9UMHRGUNFK9EM.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "32R9UMHRGUNFK9EM", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "32R9UMHRGUNFK9EM.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "32R9UMHRGUNFK9EM.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "32R9UMHRGUNFK9EM.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "32R9UMHRGUNFK9EM.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3759" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "32R9UMHRGUNFK9EM.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "32R9UMHRGUNFK9EM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "32R9UMHRGUNFK9EM.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "32R9UMHRGUNFK9EM.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2061" - }, - "appliesTo" : [ ] - }, - "32R9UMHRGUNFK9EM.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "32R9UMHRGUNFK9EM.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "32R9UMHRGUNFK9EM.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "32R9UMHRGUNFK9EM", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "32R9UMHRGUNFK9EM.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "32R9UMHRGUNFK9EM.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0700000000" - }, - "appliesTo" : [ ] - }, - "32R9UMHRGUNFK9EM.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "32R9UMHRGUNFK9EM.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3128" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "32R9UMHRGUNFK9EM.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "32R9UMHRGUNFK9EM", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "32R9UMHRGUNFK9EM.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "32R9UMHRGUNFK9EM.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2315" - }, - "appliesTo" : [ ] - }, - "32R9UMHRGUNFK9EM.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "32R9UMHRGUNFK9EM.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "32R9UMHRGUNFK9EM.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "32R9UMHRGUNFK9EM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "32R9UMHRGUNFK9EM.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "32R9UMHRGUNFK9EM.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1160000000" - }, - "appliesTo" : [ ] - }, - "32R9UMHRGUNFK9EM.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "32R9UMHRGUNFK9EM.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1080" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "32R9UMHRGUNFK9EM.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "32R9UMHRGUNFK9EM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "32R9UMHRGUNFK9EM.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "32R9UMHRGUNFK9EM.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "32R9UMHRGUNFK9EM.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "32R9UMHRGUNFK9EM", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "32R9UMHRGUNFK9EM.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "32R9UMHRGUNFK9EM.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1835" - }, - "appliesTo" : [ ] - }, - "32R9UMHRGUNFK9EM.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "32R9UMHRGUNFK9EM.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "32R9UMHRGUNFK9EM.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "32R9UMHRGUNFK9EM", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "32R9UMHRGUNFK9EM.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "32R9UMHRGUNFK9EM.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1204" - }, - "appliesTo" : [ ] - }, - "32R9UMHRGUNFK9EM.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "32R9UMHRGUNFK9EM.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "32R9UMHRGUNFK9EM.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "32R9UMHRGUNFK9EM", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "32R9UMHRGUNFK9EM.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "32R9UMHRGUNFK9EM.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "32R9UMHRGUNFK9EM.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "32R9UMHRGUNFK9EM", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "32R9UMHRGUNFK9EM.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "32R9UMHRGUNFK9EM.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "XHB4DJDY65SW2BN6" : { - "XHB4DJDY65SW2BN6.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XHB4DJDY65SW2BN6", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XHB4DJDY65SW2BN6.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XHB4DJDY65SW2BN6.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "739" - }, - "appliesTo" : [ ] - }, - "XHB4DJDY65SW2BN6.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XHB4DJDY65SW2BN6.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XHB4DJDY65SW2BN6.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XHB4DJDY65SW2BN6", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XHB4DJDY65SW2BN6.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XHB4DJDY65SW2BN6.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3041" - }, - "appliesTo" : [ ] - }, - "XHB4DJDY65SW2BN6.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XHB4DJDY65SW2BN6.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XHB4DJDY65SW2BN6.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XHB4DJDY65SW2BN6", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XHB4DJDY65SW2BN6.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XHB4DJDY65SW2BN6.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XHB4DJDY65SW2BN6.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XHB4DJDY65SW2BN6", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XHB4DJDY65SW2BN6.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XHB4DJDY65SW2BN6.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "472" - }, - "appliesTo" : [ ] - }, - "XHB4DJDY65SW2BN6.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XHB4DJDY65SW2BN6.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XHB4DJDY65SW2BN6.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XHB4DJDY65SW2BN6", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XHB4DJDY65SW2BN6.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XHB4DJDY65SW2BN6.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1312" - }, - "appliesTo" : [ ] - }, - "XHB4DJDY65SW2BN6.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XHB4DJDY65SW2BN6.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "NEMESC9E58GMS89T" : { - "NEMESC9E58GMS89T.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "NEMESC9E58GMS89T", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "NEMESC9E58GMS89T.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "NEMESC9E58GMS89T.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "NEMESC9E58GMS89T.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "NEMESC9E58GMS89T.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4698" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "NEMESC9E58GMS89T.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "NEMESC9E58GMS89T", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "NEMESC9E58GMS89T.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "NEMESC9E58GMS89T.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "NEMESC9E58GMS89T.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "NEMESC9E58GMS89T", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "NEMESC9E58GMS89T.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "NEMESC9E58GMS89T.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4325" - }, - "appliesTo" : [ ] - }, - "NEMESC9E58GMS89T.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "NEMESC9E58GMS89T.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "NEMESC9E58GMS89T.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "NEMESC9E58GMS89T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NEMESC9E58GMS89T.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "NEMESC9E58GMS89T.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1914" - }, - "appliesTo" : [ ] - }, - "NEMESC9E58GMS89T.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "NEMESC9E58GMS89T.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "NEMESC9E58GMS89T.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "NEMESC9E58GMS89T", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "NEMESC9E58GMS89T.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "NEMESC9E58GMS89T.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2224" - }, - "appliesTo" : [ ] - }, - "NEMESC9E58GMS89T.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "NEMESC9E58GMS89T.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "NEMESC9E58GMS89T.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "NEMESC9E58GMS89T", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "NEMESC9E58GMS89T.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "NEMESC9E58GMS89T.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2372" - }, - "appliesTo" : [ ] - }, - "NEMESC9E58GMS89T.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "NEMESC9E58GMS89T.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "NEMESC9E58GMS89T.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "NEMESC9E58GMS89T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NEMESC9E58GMS89T.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "NEMESC9E58GMS89T.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "NEMESC9E58GMS89T.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "NEMESC9E58GMS89T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NEMESC9E58GMS89T.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "NEMESC9E58GMS89T.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "968" - }, - "appliesTo" : [ ] - }, - "NEMESC9E58GMS89T.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "NEMESC9E58GMS89T.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "NEMESC9E58GMS89T.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "NEMESC9E58GMS89T", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "NEMESC9E58GMS89T.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "NEMESC9E58GMS89T.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1020000000" - }, - "appliesTo" : [ ] - }, - "NEMESC9E58GMS89T.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "NEMESC9E58GMS89T.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "892" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "NEMESC9E58GMS89T.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "NEMESC9E58GMS89T", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "NEMESC9E58GMS89T.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "NEMESC9E58GMS89T.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "NEMESC9E58GMS89T.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "NEMESC9E58GMS89T", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "NEMESC9E58GMS89T.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "NEMESC9E58GMS89T.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1763" - }, - "appliesTo" : [ ] - }, - "NEMESC9E58GMS89T.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "NEMESC9E58GMS89T.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "NEMESC9E58GMS89T.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "NEMESC9E58GMS89T", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "NEMESC9E58GMS89T.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "NEMESC9E58GMS89T.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "7H6M5F6HHQ5YHT4V" : { - "7H6M5F6HHQ5YHT4V.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "7H6M5F6HHQ5YHT4V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7H6M5F6HHQ5YHT4V.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "7H6M5F6HHQ5YHT4V.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7H6M5F6HHQ5YHT4V.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "7H6M5F6HHQ5YHT4V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7H6M5F6HHQ5YHT4V.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "7H6M5F6HHQ5YHT4V.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15356" - }, - "appliesTo" : [ ] - }, - "7H6M5F6HHQ5YHT4V.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "7H6M5F6HHQ5YHT4V.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7H6M5F6HHQ5YHT4V.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "7H6M5F6HHQ5YHT4V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7H6M5F6HHQ5YHT4V.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "7H6M5F6HHQ5YHT4V.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17098" - }, - "appliesTo" : [ ] - }, - "7H6M5F6HHQ5YHT4V.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "7H6M5F6HHQ5YHT4V.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7H6M5F6HHQ5YHT4V.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "7H6M5F6HHQ5YHT4V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7H6M5F6HHQ5YHT4V.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "7H6M5F6HHQ5YHT4V.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25223" - }, - "appliesTo" : [ ] - }, - "7H6M5F6HHQ5YHT4V.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "7H6M5F6HHQ5YHT4V.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7H6M5F6HHQ5YHT4V.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "7H6M5F6HHQ5YHT4V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7H6M5F6HHQ5YHT4V.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "7H6M5F6HHQ5YHT4V.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30103" - }, - "appliesTo" : [ ] - }, - "7H6M5F6HHQ5YHT4V.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "7H6M5F6HHQ5YHT4V.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7H6M5F6HHQ5YHT4V.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "7H6M5F6HHQ5YHT4V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7H6M5F6HHQ5YHT4V.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "7H6M5F6HHQ5YHT4V.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5090000000" - }, - "appliesTo" : [ ] - }, - "7H6M5F6HHQ5YHT4V.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "7H6M5F6HHQ5YHT4V.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13399" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7H6M5F6HHQ5YHT4V.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "7H6M5F6HHQ5YHT4V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7H6M5F6HHQ5YHT4V.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "7H6M5F6HHQ5YHT4V.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7H6M5F6HHQ5YHT4V.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "7H6M5F6HHQ5YHT4V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7H6M5F6HHQ5YHT4V.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "7H6M5F6HHQ5YHT4V.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10038" - }, - "appliesTo" : [ ] - }, - "7H6M5F6HHQ5YHT4V.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "7H6M5F6HHQ5YHT4V.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7H6M5F6HHQ5YHT4V.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "7H6M5F6HHQ5YHT4V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7H6M5F6HHQ5YHT4V.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "7H6M5F6HHQ5YHT4V.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7H6M5F6HHQ5YHT4V.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "7H6M5F6HHQ5YHT4V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7H6M5F6HHQ5YHT4V.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "7H6M5F6HHQ5YHT4V.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7H6M5F6HHQ5YHT4V.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "7H6M5F6HHQ5YHT4V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7H6M5F6HHQ5YHT4V.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "7H6M5F6HHQ5YHT4V.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9920000000" - }, - "appliesTo" : [ ] - }, - "7H6M5F6HHQ5YHT4V.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "7H6M5F6HHQ5YHT4V.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8752" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7H6M5F6HHQ5YHT4V.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "7H6M5F6HHQ5YHT4V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7H6M5F6HHQ5YHT4V.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "7H6M5F6HHQ5YHT4V.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19619" - }, - "appliesTo" : [ ] - }, - "7H6M5F6HHQ5YHT4V.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "7H6M5F6HHQ5YHT4V.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "6N5AHFKQR9A49BXT" : { - "6N5AHFKQR9A49BXT.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6N5AHFKQR9A49BXT", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "6N5AHFKQR9A49BXT.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6N5AHFKQR9A49BXT.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "158192" - }, - "appliesTo" : [ ] - }, - "6N5AHFKQR9A49BXT.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6N5AHFKQR9A49BXT.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6N5AHFKQR9A49BXT.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6N5AHFKQR9A49BXT", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "6N5AHFKQR9A49BXT.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6N5AHFKQR9A49BXT.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "79506" - }, - "appliesTo" : [ ] - }, - "6N5AHFKQR9A49BXT.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6N5AHFKQR9A49BXT.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.0760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6N5AHFKQR9A49BXT.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "6N5AHFKQR9A49BXT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6N5AHFKQR9A49BXT.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "6N5AHFKQR9A49BXT.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "17.6950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6N5AHFKQR9A49BXT.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "6N5AHFKQR9A49BXT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6N5AHFKQR9A49BXT.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "6N5AHFKQR9A49BXT.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "228400" - }, - "appliesTo" : [ ] - }, - "6N5AHFKQR9A49BXT.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "6N5AHFKQR9A49BXT.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.6910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6N5AHFKQR9A49BXT.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6N5AHFKQR9A49BXT", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "6N5AHFKQR9A49BXT.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6N5AHFKQR9A49BXT.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "6N5AHFKQR9A49BXT.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6N5AHFKQR9A49BXT.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "438035" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6N5AHFKQR9A49BXT.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6N5AHFKQR9A49BXT", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "6N5AHFKQR9A49BXT.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6N5AHFKQR9A49BXT.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "221698" - }, - "appliesTo" : [ ] - }, - "6N5AHFKQR9A49BXT.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6N5AHFKQR9A49BXT.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.4360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6N5AHFKQR9A49BXT.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6N5AHFKQR9A49BXT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6N5AHFKQR9A49BXT.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6N5AHFKQR9A49BXT.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "18.3860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6N5AHFKQR9A49BXT.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "6N5AHFKQR9A49BXT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6N5AHFKQR9A49BXT.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "6N5AHFKQR9A49BXT.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "82581" - }, - "appliesTo" : [ ] - }, - "6N5AHFKQR9A49BXT.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "6N5AHFKQR9A49BXT.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.4270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6N5AHFKQR9A49BXT.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "6N5AHFKQR9A49BXT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6N5AHFKQR9A49BXT.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "6N5AHFKQR9A49BXT.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "19.1230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6N5AHFKQR9A49BXT.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "6N5AHFKQR9A49BXT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6N5AHFKQR9A49BXT.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "6N5AHFKQR9A49BXT.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "17.1440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6N5AHFKQR9A49BXT.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "6N5AHFKQR9A49BXT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6N5AHFKQR9A49BXT.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "6N5AHFKQR9A49BXT.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "454745" - }, - "appliesTo" : [ ] - }, - "6N5AHFKQR9A49BXT.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "6N5AHFKQR9A49BXT.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6N5AHFKQR9A49BXT.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "6N5AHFKQR9A49BXT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6N5AHFKQR9A49BXT.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "6N5AHFKQR9A49BXT.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "164218" - }, - "appliesTo" : [ ] - }, - "6N5AHFKQR9A49BXT.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "6N5AHFKQR9A49BXT.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "XV4ERE3TBNCX96M9" : { - "XV4ERE3TBNCX96M9.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "XV4ERE3TBNCX96M9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XV4ERE3TBNCX96M9.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "XV4ERE3TBNCX96M9.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "690" - }, - "appliesTo" : [ ] - }, - "XV4ERE3TBNCX96M9.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "XV4ERE3TBNCX96M9.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XV4ERE3TBNCX96M9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XV4ERE3TBNCX96M9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XV4ERE3TBNCX96M9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XV4ERE3TBNCX96M9.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XV4ERE3TBNCX96M9.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "XV4ERE3TBNCX96M9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XV4ERE3TBNCX96M9.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "XV4ERE3TBNCX96M9.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2651" - }, - "appliesTo" : [ ] - }, - "XV4ERE3TBNCX96M9.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "XV4ERE3TBNCX96M9.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XV4ERE3TBNCX96M9.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "XV4ERE3TBNCX96M9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XV4ERE3TBNCX96M9.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "XV4ERE3TBNCX96M9.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1351" - }, - "appliesTo" : [ ] - }, - "XV4ERE3TBNCX96M9.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "XV4ERE3TBNCX96M9.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XV4ERE3TBNCX96M9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XV4ERE3TBNCX96M9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XV4ERE3TBNCX96M9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XV4ERE3TBNCX96M9.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0460000000" - }, - "appliesTo" : [ ] - }, - "XV4ERE3TBNCX96M9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XV4ERE3TBNCX96M9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1219" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XV4ERE3TBNCX96M9.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "XV4ERE3TBNCX96M9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XV4ERE3TBNCX96M9.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "XV4ERE3TBNCX96M9.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XV4ERE3TBNCX96M9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XV4ERE3TBNCX96M9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XV4ERE3TBNCX96M9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XV4ERE3TBNCX96M9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "623" - }, - "appliesTo" : [ ] - }, - "XV4ERE3TBNCX96M9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XV4ERE3TBNCX96M9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XV4ERE3TBNCX96M9.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "XV4ERE3TBNCX96M9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XV4ERE3TBNCX96M9.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "XV4ERE3TBNCX96M9.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1297" - }, - "appliesTo" : [ ] - }, - "XV4ERE3TBNCX96M9.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "XV4ERE3TBNCX96M9.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XV4ERE3TBNCX96M9.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "XV4ERE3TBNCX96M9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XV4ERE3TBNCX96M9.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "XV4ERE3TBNCX96M9.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XV4ERE3TBNCX96M9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XV4ERE3TBNCX96M9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XV4ERE3TBNCX96M9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XV4ERE3TBNCX96M9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "XV4ERE3TBNCX96M9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XV4ERE3TBNCX96M9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2323" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XV4ERE3TBNCX96M9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XV4ERE3TBNCX96M9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XV4ERE3TBNCX96M9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XV4ERE3TBNCX96M9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1166" - }, - "appliesTo" : [ ] - }, - "XV4ERE3TBNCX96M9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XV4ERE3TBNCX96M9.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XV4ERE3TBNCX96M9.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "XV4ERE3TBNCX96M9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XV4ERE3TBNCX96M9.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "XV4ERE3TBNCX96M9.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "YD7GPEVXPWVDFDJ7" : { - "YD7GPEVXPWVDFDJ7.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "YD7GPEVXPWVDFDJ7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YD7GPEVXPWVDFDJ7.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "YD7GPEVXPWVDFDJ7.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6200000000" - }, - "appliesTo" : [ ] - }, - "YD7GPEVXPWVDFDJ7.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "YD7GPEVXPWVDFDJ7.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5435" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YD7GPEVXPWVDFDJ7.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YD7GPEVXPWVDFDJ7", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YD7GPEVXPWVDFDJ7.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YD7GPEVXPWVDFDJ7.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YD7GPEVXPWVDFDJ7.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "YD7GPEVXPWVDFDJ7", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "YD7GPEVXPWVDFDJ7.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "YD7GPEVXPWVDFDJ7.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YD7GPEVXPWVDFDJ7.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "YD7GPEVXPWVDFDJ7", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "YD7GPEVXPWVDFDJ7.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "YD7GPEVXPWVDFDJ7.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9947" - }, - "appliesTo" : [ ] - }, - "YD7GPEVXPWVDFDJ7.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "YD7GPEVXPWVDFDJ7.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YD7GPEVXPWVDFDJ7.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YD7GPEVXPWVDFDJ7", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "YD7GPEVXPWVDFDJ7.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YD7GPEVXPWVDFDJ7.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7147" - }, - "appliesTo" : [ ] - }, - "YD7GPEVXPWVDFDJ7.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YD7GPEVXPWVDFDJ7.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YD7GPEVXPWVDFDJ7.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YD7GPEVXPWVDFDJ7", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YD7GPEVXPWVDFDJ7.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YD7GPEVXPWVDFDJ7.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13303" - }, - "appliesTo" : [ ] - }, - "YD7GPEVXPWVDFDJ7.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YD7GPEVXPWVDFDJ7.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YD7GPEVXPWVDFDJ7.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YD7GPEVXPWVDFDJ7", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YD7GPEVXPWVDFDJ7.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YD7GPEVXPWVDFDJ7.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4160000000" - }, - "appliesTo" : [ ] - }, - "YD7GPEVXPWVDFDJ7.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YD7GPEVXPWVDFDJ7.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3647" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YD7GPEVXPWVDFDJ7.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "YD7GPEVXPWVDFDJ7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YD7GPEVXPWVDFDJ7.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "YD7GPEVXPWVDFDJ7.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YD7GPEVXPWVDFDJ7.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "YD7GPEVXPWVDFDJ7.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10717" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YD7GPEVXPWVDFDJ7.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "YD7GPEVXPWVDFDJ7", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "YD7GPEVXPWVDFDJ7.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "YD7GPEVXPWVDFDJ7.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YD7GPEVXPWVDFDJ7.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "YD7GPEVXPWVDFDJ7.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19493" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YD7GPEVXPWVDFDJ7.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YD7GPEVXPWVDFDJ7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YD7GPEVXPWVDFDJ7.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YD7GPEVXPWVDFDJ7.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7076" - }, - "appliesTo" : [ ] - }, - "YD7GPEVXPWVDFDJ7.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YD7GPEVXPWVDFDJ7.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YD7GPEVXPWVDFDJ7.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "YD7GPEVXPWVDFDJ7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YD7GPEVXPWVDFDJ7.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "YD7GPEVXPWVDFDJ7.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "S7XYZXB5D99A9Y8M" : { - "S7XYZXB5D99A9Y8M.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "S7XYZXB5D99A9Y8M", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "S7XYZXB5D99A9Y8M.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "S7XYZXB5D99A9Y8M.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "S7XYZXB5D99A9Y8M.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "S7XYZXB5D99A9Y8M", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "S7XYZXB5D99A9Y8M.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "S7XYZXB5D99A9Y8M.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4772" - }, - "appliesTo" : [ ] - }, - "S7XYZXB5D99A9Y8M.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "S7XYZXB5D99A9Y8M.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "S7XYZXB5D99A9Y8M.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "S7XYZXB5D99A9Y8M", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "S7XYZXB5D99A9Y8M.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "S7XYZXB5D99A9Y8M.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5452" - }, - "appliesTo" : [ ] - }, - "S7XYZXB5D99A9Y8M.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "S7XYZXB5D99A9Y8M.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "S7XYZXB5D99A9Y8M.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "S7XYZXB5D99A9Y8M", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "S7XYZXB5D99A9Y8M.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "S7XYZXB5D99A9Y8M.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "S7XYZXB5D99A9Y8M.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "S7XYZXB5D99A9Y8M.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4563" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "S7XYZXB5D99A9Y8M.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "S7XYZXB5D99A9Y8M", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "S7XYZXB5D99A9Y8M.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "S7XYZXB5D99A9Y8M.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8971" - }, - "appliesTo" : [ ] - }, - "S7XYZXB5D99A9Y8M.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "S7XYZXB5D99A9Y8M.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "S7XYZXB5D99A9Y8M.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "S7XYZXB5D99A9Y8M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "S7XYZXB5D99A9Y8M.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "S7XYZXB5D99A9Y8M.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2660" - }, - "appliesTo" : [ ] - }, - "S7XYZXB5D99A9Y8M.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "S7XYZXB5D99A9Y8M.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "S7XYZXB5D99A9Y8M.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "S7XYZXB5D99A9Y8M", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "S7XYZXB5D99A9Y8M.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "S7XYZXB5D99A9Y8M.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "S7XYZXB5D99A9Y8M.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "S7XYZXB5D99A9Y8M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "S7XYZXB5D99A9Y8M.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "S7XYZXB5D99A9Y8M.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "S7XYZXB5D99A9Y8M.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "S7XYZXB5D99A9Y8M", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "S7XYZXB5D99A9Y8M.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "S7XYZXB5D99A9Y8M.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "S7XYZXB5D99A9Y8M.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "S7XYZXB5D99A9Y8M.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10686" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "S7XYZXB5D99A9Y8M.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "S7XYZXB5D99A9Y8M", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "S7XYZXB5D99A9Y8M.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "S7XYZXB5D99A9Y8M.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2660000000" - }, - "appliesTo" : [ ] - }, - "S7XYZXB5D99A9Y8M.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "S7XYZXB5D99A9Y8M.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2328" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "S7XYZXB5D99A9Y8M.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "S7XYZXB5D99A9Y8M", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "S7XYZXB5D99A9Y8M.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "S7XYZXB5D99A9Y8M.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "S7XYZXB5D99A9Y8M.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "S7XYZXB5D99A9Y8M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "S7XYZXB5D99A9Y8M.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "S7XYZXB5D99A9Y8M.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5213" - }, - "appliesTo" : [ ] - }, - "S7XYZXB5D99A9Y8M.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "S7XYZXB5D99A9Y8M.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "S8J79EPAU2WP28Z5" : { - "S8J79EPAU2WP28Z5.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "S8J79EPAU2WP28Z5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "S8J79EPAU2WP28Z5.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "S8J79EPAU2WP28Z5.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3983" - }, - "appliesTo" : [ ] - }, - "S8J79EPAU2WP28Z5.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "S8J79EPAU2WP28Z5.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "S8J79EPAU2WP28Z5.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "S8J79EPAU2WP28Z5", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "S8J79EPAU2WP28Z5.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "S8J79EPAU2WP28Z5.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1620" - }, - "appliesTo" : [ ] - }, - "S8J79EPAU2WP28Z5.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "S8J79EPAU2WP28Z5.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "S8J79EPAU2WP28Z5.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "S8J79EPAU2WP28Z5", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "S8J79EPAU2WP28Z5.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "S8J79EPAU2WP28Z5.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10743" - }, - "appliesTo" : [ ] - }, - "S8J79EPAU2WP28Z5.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "S8J79EPAU2WP28Z5.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "S8J79EPAU2WP28Z5.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "S8J79EPAU2WP28Z5", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "S8J79EPAU2WP28Z5.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "S8J79EPAU2WP28Z5.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "S8J79EPAU2WP28Z5.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "S8J79EPAU2WP28Z5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "S8J79EPAU2WP28Z5.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "S8J79EPAU2WP28Z5.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4570" - }, - "appliesTo" : [ ] - }, - "S8J79EPAU2WP28Z5.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "S8J79EPAU2WP28Z5.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "YDP6AWC4ZPX5AANZ" : { - "YDP6AWC4ZPX5AANZ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "YDP6AWC4ZPX5AANZ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YDP6AWC4ZPX5AANZ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "YDP6AWC4ZPX5AANZ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8484" - }, - "appliesTo" : [ ] - }, - "YDP6AWC4ZPX5AANZ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "YDP6AWC4ZPX5AANZ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YDP6AWC4ZPX5AANZ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YDP6AWC4ZPX5AANZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YDP6AWC4ZPX5AANZ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YDP6AWC4ZPX5AANZ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11042" - }, - "appliesTo" : [ ] - }, - "YDP6AWC4ZPX5AANZ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YDP6AWC4ZPX5AANZ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YDP6AWC4ZPX5AANZ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "YDP6AWC4ZPX5AANZ", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "YDP6AWC4ZPX5AANZ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "YDP6AWC4ZPX5AANZ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YDP6AWC4ZPX5AANZ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YDP6AWC4ZPX5AANZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YDP6AWC4ZPX5AANZ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YDP6AWC4ZPX5AANZ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5886" - }, - "appliesTo" : [ ] - }, - "YDP6AWC4ZPX5AANZ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YDP6AWC4ZPX5AANZ.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YDP6AWC4ZPX5AANZ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "YDP6AWC4ZPX5AANZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YDP6AWC4ZPX5AANZ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "YDP6AWC4ZPX5AANZ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7102" - }, - "appliesTo" : [ ] - }, - "YDP6AWC4ZPX5AANZ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "YDP6AWC4ZPX5AANZ.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YDP6AWC4ZPX5AANZ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "YDP6AWC4ZPX5AANZ", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "YDP6AWC4ZPX5AANZ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "YDP6AWC4ZPX5AANZ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16593" - }, - "appliesTo" : [ ] - }, - "YDP6AWC4ZPX5AANZ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "YDP6AWC4ZPX5AANZ.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YDP6AWC4ZPX5AANZ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YDP6AWC4ZPX5AANZ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "YDP6AWC4ZPX5AANZ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YDP6AWC4ZPX5AANZ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3188" - }, - "appliesTo" : [ ] - }, - "YDP6AWC4ZPX5AANZ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YDP6AWC4ZPX5AANZ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YDP6AWC4ZPX5AANZ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YDP6AWC4ZPX5AANZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YDP6AWC4ZPX5AANZ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YDP6AWC4ZPX5AANZ.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YDP6AWC4ZPX5AANZ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YDP6AWC4ZPX5AANZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YDP6AWC4ZPX5AANZ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YDP6AWC4ZPX5AANZ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YDP6AWC4ZPX5AANZ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YDP6AWC4ZPX5AANZ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6189" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YDP6AWC4ZPX5AANZ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "YDP6AWC4ZPX5AANZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YDP6AWC4ZPX5AANZ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "YDP6AWC4ZPX5AANZ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3652" - }, - "appliesTo" : [ ] - }, - "YDP6AWC4ZPX5AANZ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "YDP6AWC4ZPX5AANZ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YDP6AWC4ZPX5AANZ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "YDP6AWC4ZPX5AANZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YDP6AWC4ZPX5AANZ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "YDP6AWC4ZPX5AANZ.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "SDXF3BRYZZTH5K7Q" : { - "SDXF3BRYZZTH5K7Q.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "SDXF3BRYZZTH5K7Q", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SDXF3BRYZZTH5K7Q.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "SDXF3BRYZZTH5K7Q.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SDXF3BRYZZTH5K7Q.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "SDXF3BRYZZTH5K7Q.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "340766" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SDXF3BRYZZTH5K7Q.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SDXF3BRYZZTH5K7Q", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "SDXF3BRYZZTH5K7Q.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SDXF3BRYZZTH5K7Q.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "754629" - }, - "appliesTo" : [ ] - }, - "SDXF3BRYZZTH5K7Q.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SDXF3BRYZZTH5K7Q.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SDXF3BRYZZTH5K7Q.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "SDXF3BRYZZTH5K7Q", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "SDXF3BRYZZTH5K7Q.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "SDXF3BRYZZTH5K7Q.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "29.8270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SDXF3BRYZZTH5K7Q.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SDXF3BRYZZTH5K7Q", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "SDXF3BRYZZTH5K7Q.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SDXF3BRYZZTH5K7Q.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "320597" - }, - "appliesTo" : [ ] - }, - "SDXF3BRYZZTH5K7Q.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SDXF3BRYZZTH5K7Q.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SDXF3BRYZZTH5K7Q.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "SDXF3BRYZZTH5K7Q", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "SDXF3BRYZZTH5K7Q.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "SDXF3BRYZZTH5K7Q.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "399234" - }, - "appliesTo" : [ ] - }, - "SDXF3BRYZZTH5K7Q.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "SDXF3BRYZZTH5K7Q.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.1920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SDXF3BRYZZTH5K7Q.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "SDXF3BRYZZTH5K7Q", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SDXF3BRYZZTH5K7Q.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "SDXF3BRYZZTH5K7Q.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "40.1610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SDXF3BRYZZTH5K7Q.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "SDXF3BRYZZTH5K7Q", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SDXF3BRYZZTH5K7Q.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "SDXF3BRYZZTH5K7Q.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "171961" - }, - "appliesTo" : [ ] - }, - "SDXF3BRYZZTH5K7Q.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "SDXF3BRYZZTH5K7Q.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "19.6300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SDXF3BRYZZTH5K7Q.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "SDXF3BRYZZTH5K7Q", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "SDXF3BRYZZTH5K7Q.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "SDXF3BRYZZTH5K7Q.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "793667" - }, - "appliesTo" : [ ] - }, - "SDXF3BRYZZTH5K7Q.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "SDXF3BRYZZTH5K7Q.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SDXF3BRYZZTH5K7Q.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SDXF3BRYZZTH5K7Q", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "SDXF3BRYZZTH5K7Q.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SDXF3BRYZZTH5K7Q.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "161670" - }, - "appliesTo" : [ ] - }, - "SDXF3BRYZZTH5K7Q.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SDXF3BRYZZTH5K7Q.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "18.4560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SDXF3BRYZZTH5K7Q.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SDXF3BRYZZTH5K7Q", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "SDXF3BRYZZTH5K7Q.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SDXF3BRYZZTH5K7Q.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "37.6940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "X8HSBS99N48YZKF3" : { - "X8HSBS99N48YZKF3.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "X8HSBS99N48YZKF3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X8HSBS99N48YZKF3.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "X8HSBS99N48YZKF3.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "X8HSBS99N48YZKF3.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "X8HSBS99N48YZKF3.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1807" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "X8HSBS99N48YZKF3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "X8HSBS99N48YZKF3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X8HSBS99N48YZKF3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "X8HSBS99N48YZKF3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "852" - }, - "appliesTo" : [ ] - }, - "X8HSBS99N48YZKF3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "X8HSBS99N48YZKF3.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "X8HSBS99N48YZKF3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "X8HSBS99N48YZKF3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X8HSBS99N48YZKF3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "X8HSBS99N48YZKF3.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "X8HSBS99N48YZKF3.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "X8HSBS99N48YZKF3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X8HSBS99N48YZKF3.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "X8HSBS99N48YZKF3.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "918" - }, - "appliesTo" : [ ] - }, - "X8HSBS99N48YZKF3.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "X8HSBS99N48YZKF3.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "X8HSBS99N48YZKF3.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "X8HSBS99N48YZKF3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X8HSBS99N48YZKF3.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "X8HSBS99N48YZKF3.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "X8HSBS99N48YZKF3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "X8HSBS99N48YZKF3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X8HSBS99N48YZKF3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "X8HSBS99N48YZKF3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1643" - }, - "appliesTo" : [ ] - }, - "X8HSBS99N48YZKF3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "X8HSBS99N48YZKF3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "X8HSBS99N48YZKF3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "X8HSBS99N48YZKF3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X8HSBS99N48YZKF3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "X8HSBS99N48YZKF3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "773" - }, - "appliesTo" : [ ] - }, - "X8HSBS99N48YZKF3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "X8HSBS99N48YZKF3.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "X8HSBS99N48YZKF3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "X8HSBS99N48YZKF3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X8HSBS99N48YZKF3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "X8HSBS99N48YZKF3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "422" - }, - "appliesTo" : [ ] - }, - "X8HSBS99N48YZKF3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "X8HSBS99N48YZKF3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "X8HSBS99N48YZKF3.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "X8HSBS99N48YZKF3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X8HSBS99N48YZKF3.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "X8HSBS99N48YZKF3.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "X8HSBS99N48YZKF3.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "X8HSBS99N48YZKF3.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "838" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "X8HSBS99N48YZKF3.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "X8HSBS99N48YZKF3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X8HSBS99N48YZKF3.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "X8HSBS99N48YZKF3.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "X8HSBS99N48YZKF3.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "X8HSBS99N48YZKF3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X8HSBS99N48YZKF3.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "X8HSBS99N48YZKF3.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "455" - }, - "appliesTo" : [ ] - }, - "X8HSBS99N48YZKF3.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "X8HSBS99N48YZKF3.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "X8HSBS99N48YZKF3.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "X8HSBS99N48YZKF3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X8HSBS99N48YZKF3.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "X8HSBS99N48YZKF3.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "7AGDS8PY7CBCQ8E4" : { - "7AGDS8PY7CBCQ8E4.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "7AGDS8PY7CBCQ8E4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7AGDS8PY7CBCQ8E4.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "7AGDS8PY7CBCQ8E4.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "872" - }, - "appliesTo" : [ ] - }, - "7AGDS8PY7CBCQ8E4.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "7AGDS8PY7CBCQ8E4.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7AGDS8PY7CBCQ8E4.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "7AGDS8PY7CBCQ8E4", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "7AGDS8PY7CBCQ8E4.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "7AGDS8PY7CBCQ8E4.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7AGDS8PY7CBCQ8E4.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "7AGDS8PY7CBCQ8E4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7AGDS8PY7CBCQ8E4.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "7AGDS8PY7CBCQ8E4.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7AGDS8PY7CBCQ8E4.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "7AGDS8PY7CBCQ8E4", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "7AGDS8PY7CBCQ8E4.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "7AGDS8PY7CBCQ8E4.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "7AGDS8PY7CBCQ8E4.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "7AGDS8PY7CBCQ8E4.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5200" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7AGDS8PY7CBCQ8E4.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "7AGDS8PY7CBCQ8E4", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7AGDS8PY7CBCQ8E4.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "7AGDS8PY7CBCQ8E4.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1240000000" - }, - "appliesTo" : [ ] - }, - "7AGDS8PY7CBCQ8E4.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "7AGDS8PY7CBCQ8E4.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "725" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7AGDS8PY7CBCQ8E4.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "7AGDS8PY7CBCQ8E4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7AGDS8PY7CBCQ8E4.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "7AGDS8PY7CBCQ8E4.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1735" - }, - "appliesTo" : [ ] - }, - "7AGDS8PY7CBCQ8E4.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "7AGDS8PY7CBCQ8E4.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7AGDS8PY7CBCQ8E4.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "7AGDS8PY7CBCQ8E4", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7AGDS8PY7CBCQ8E4.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "7AGDS8PY7CBCQ8E4.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7AGDS8PY7CBCQ8E4.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "7AGDS8PY7CBCQ8E4", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7AGDS8PY7CBCQ8E4.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "7AGDS8PY7CBCQ8E4.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1904" - }, - "appliesTo" : [ ] - }, - "7AGDS8PY7CBCQ8E4.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "7AGDS8PY7CBCQ8E4.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7AGDS8PY7CBCQ8E4.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "7AGDS8PY7CBCQ8E4", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "7AGDS8PY7CBCQ8E4.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "7AGDS8PY7CBCQ8E4.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1772" - }, - "appliesTo" : [ ] - }, - "7AGDS8PY7CBCQ8E4.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "7AGDS8PY7CBCQ8E4.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7AGDS8PY7CBCQ8E4.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "7AGDS8PY7CBCQ8E4", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "7AGDS8PY7CBCQ8E4.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "7AGDS8PY7CBCQ8E4.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2105" - }, - "appliesTo" : [ ] - }, - "7AGDS8PY7CBCQ8E4.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "7AGDS8PY7CBCQ8E4.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7AGDS8PY7CBCQ8E4.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "7AGDS8PY7CBCQ8E4", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7AGDS8PY7CBCQ8E4.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "7AGDS8PY7CBCQ8E4.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4480" - }, - "appliesTo" : [ ] - }, - "7AGDS8PY7CBCQ8E4.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "7AGDS8PY7CBCQ8E4.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "4VV6V3MAZZGV47MU" : { - "4VV6V3MAZZGV47MU.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "4VV6V3MAZZGV47MU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4VV6V3MAZZGV47MU.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "4VV6V3MAZZGV47MU.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5900" - }, - "appliesTo" : [ ] - }, - "4VV6V3MAZZGV47MU.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "4VV6V3MAZZGV47MU.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4VV6V3MAZZGV47MU.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "4VV6V3MAZZGV47MU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4VV6V3MAZZGV47MU.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "4VV6V3MAZZGV47MU.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12888" - }, - "appliesTo" : [ ] - }, - "4VV6V3MAZZGV47MU.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "4VV6V3MAZZGV47MU.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4VV6V3MAZZGV47MU.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "4VV6V3MAZZGV47MU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4VV6V3MAZZGV47MU.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "4VV6V3MAZZGV47MU.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "4VV6V3MAZZGV47MU.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "4VV6V3MAZZGV47MU.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21936" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4VV6V3MAZZGV47MU.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "4VV6V3MAZZGV47MU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4VV6V3MAZZGV47MU.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "4VV6V3MAZZGV47MU.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "4VV6V3MAZZGV47MU.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "4VV6V3MAZZGV47MU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4VV6V3MAZZGV47MU.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "4VV6V3MAZZGV47MU.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11628" - }, - "appliesTo" : [ ] - }, - "4VV6V3MAZZGV47MU.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "4VV6V3MAZZGV47MU.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4VV6V3MAZZGV47MU.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "4VV6V3MAZZGV47MU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4VV6V3MAZZGV47MU.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "4VV6V3MAZZGV47MU.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "4VV6V3MAZZGV47MU.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "4VV6V3MAZZGV47MU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4VV6V3MAZZGV47MU.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "4VV6V3MAZZGV47MU.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6543" - }, - "appliesTo" : [ ] - }, - "4VV6V3MAZZGV47MU.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "4VV6V3MAZZGV47MU.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4VV6V3MAZZGV47MU.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "4VV6V3MAZZGV47MU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4VV6V3MAZZGV47MU.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "4VV6V3MAZZGV47MU.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "4VV6V3MAZZGV47MU.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "4VV6V3MAZZGV47MU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4VV6V3MAZZGV47MU.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "4VV6V3MAZZGV47MU.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24375" - }, - "appliesTo" : [ ] - }, - "4VV6V3MAZZGV47MU.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "4VV6V3MAZZGV47MU.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4VV6V3MAZZGV47MU.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "4VV6V3MAZZGV47MU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4VV6V3MAZZGV47MU.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "4VV6V3MAZZGV47MU.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12338" - }, - "appliesTo" : [ ] - }, - "4VV6V3MAZZGV47MU.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "4VV6V3MAZZGV47MU.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4VV6V3MAZZGV47MU.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "4VV6V3MAZZGV47MU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4VV6V3MAZZGV47MU.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "4VV6V3MAZZGV47MU.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4320000000" - }, - "appliesTo" : [ ] - }, - "4VV6V3MAZZGV47MU.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "4VV6V3MAZZGV47MU.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11359" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4VV6V3MAZZGV47MU.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "4VV6V3MAZZGV47MU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4VV6V3MAZZGV47MU.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "4VV6V3MAZZGV47MU.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "RGKA4HJHM5TUYE4N" : { - "RGKA4HJHM5TUYE4N.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "RGKA4HJHM5TUYE4N", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RGKA4HJHM5TUYE4N.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "RGKA4HJHM5TUYE4N.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2038" - }, - "appliesTo" : [ ] - }, - "RGKA4HJHM5TUYE4N.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "RGKA4HJHM5TUYE4N.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RGKA4HJHM5TUYE4N.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "RGKA4HJHM5TUYE4N", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "RGKA4HJHM5TUYE4N.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "RGKA4HJHM5TUYE4N.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4034" - }, - "appliesTo" : [ ] - }, - "RGKA4HJHM5TUYE4N.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "RGKA4HJHM5TUYE4N.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RGKA4HJHM5TUYE4N.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "RGKA4HJHM5TUYE4N", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RGKA4HJHM5TUYE4N.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "RGKA4HJHM5TUYE4N.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "RGKA4HJHM5TUYE4N.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "RGKA4HJHM5TUYE4N.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2131" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RGKA4HJHM5TUYE4N.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "RGKA4HJHM5TUYE4N", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "RGKA4HJHM5TUYE4N.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "RGKA4HJHM5TUYE4N.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1020000000" - }, - "appliesTo" : [ ] - }, - "RGKA4HJHM5TUYE4N.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "RGKA4HJHM5TUYE4N.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1279" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RGKA4HJHM5TUYE4N.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "RGKA4HJHM5TUYE4N", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "RGKA4HJHM5TUYE4N.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "RGKA4HJHM5TUYE4N.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "ZXVGNAHUW5AY3DYX" : { - "ZXVGNAHUW5AY3DYX.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ZXVGNAHUW5AY3DYX", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "ZXVGNAHUW5AY3DYX.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ZXVGNAHUW5AY3DYX.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ZXVGNAHUW5AY3DYX.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ZXVGNAHUW5AY3DYX.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5819" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZXVGNAHUW5AY3DYX.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ZXVGNAHUW5AY3DYX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ZXVGNAHUW5AY3DYX.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ZXVGNAHUW5AY3DYX.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2372" - }, - "appliesTo" : [ ] - }, - "ZXVGNAHUW5AY3DYX.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ZXVGNAHUW5AY3DYX.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZXVGNAHUW5AY3DYX.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ZXVGNAHUW5AY3DYX", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "ZXVGNAHUW5AY3DYX.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ZXVGNAHUW5AY3DYX.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ZXVGNAHUW5AY3DYX.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ZXVGNAHUW5AY3DYX.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13587" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZXVGNAHUW5AY3DYX.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ZXVGNAHUW5AY3DYX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ZXVGNAHUW5AY3DYX.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ZXVGNAHUW5AY3DYX.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZXVGNAHUW5AY3DYX.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ZXVGNAHUW5AY3DYX", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "ZXVGNAHUW5AY3DYX.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ZXVGNAHUW5AY3DYX.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3300000000" - }, - "appliesTo" : [ ] - }, - "ZXVGNAHUW5AY3DYX.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ZXVGNAHUW5AY3DYX.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5782" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "VECSNYXG6RJ6YNH2" : { - "VECSNYXG6RJ6YNH2.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "VECSNYXG6RJ6YNH2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VECSNYXG6RJ6YNH2.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "VECSNYXG6RJ6YNH2.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1229" - }, - "appliesTo" : [ ] - }, - "VECSNYXG6RJ6YNH2.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "VECSNYXG6RJ6YNH2.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VECSNYXG6RJ6YNH2.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "VECSNYXG6RJ6YNH2", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "VECSNYXG6RJ6YNH2.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "VECSNYXG6RJ6YNH2.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VECSNYXG6RJ6YNH2.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "VECSNYXG6RJ6YNH2", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "VECSNYXG6RJ6YNH2.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "VECSNYXG6RJ6YNH2.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1071" - }, - "appliesTo" : [ ] - }, - "VECSNYXG6RJ6YNH2.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "VECSNYXG6RJ6YNH2.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VECSNYXG6RJ6YNH2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "VECSNYXG6RJ6YNH2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "VECSNYXG6RJ6YNH2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "VECSNYXG6RJ6YNH2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "882" - }, - "appliesTo" : [ ] - }, - "VECSNYXG6RJ6YNH2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "VECSNYXG6RJ6YNH2.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VECSNYXG6RJ6YNH2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "VECSNYXG6RJ6YNH2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "VECSNYXG6RJ6YNH2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "VECSNYXG6RJ6YNH2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2064" - }, - "appliesTo" : [ ] - }, - "VECSNYXG6RJ6YNH2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "VECSNYXG6RJ6YNH2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VECSNYXG6RJ6YNH2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "VECSNYXG6RJ6YNH2", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "VECSNYXG6RJ6YNH2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "VECSNYXG6RJ6YNH2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "927" - }, - "appliesTo" : [ ] - }, - "VECSNYXG6RJ6YNH2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "VECSNYXG6RJ6YNH2.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VECSNYXG6RJ6YNH2.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "VECSNYXG6RJ6YNH2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VECSNYXG6RJ6YNH2.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "VECSNYXG6RJ6YNH2.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VECSNYXG6RJ6YNH2.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "VECSNYXG6RJ6YNH2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VECSNYXG6RJ6YNH2.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "VECSNYXG6RJ6YNH2.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "619" - }, - "appliesTo" : [ ] - }, - "VECSNYXG6RJ6YNH2.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "VECSNYXG6RJ6YNH2.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VECSNYXG6RJ6YNH2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "VECSNYXG6RJ6YNH2", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "VECSNYXG6RJ6YNH2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "VECSNYXG6RJ6YNH2.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VECSNYXG6RJ6YNH2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "VECSNYXG6RJ6YNH2", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "VECSNYXG6RJ6YNH2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "VECSNYXG6RJ6YNH2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0650000000" - }, - "appliesTo" : [ ] - }, - "VECSNYXG6RJ6YNH2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "VECSNYXG6RJ6YNH2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "378" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VECSNYXG6RJ6YNH2.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "VECSNYXG6RJ6YNH2", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "VECSNYXG6RJ6YNH2.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "VECSNYXG6RJ6YNH2.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "VECSNYXG6RJ6YNH2.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "VECSNYXG6RJ6YNH2.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2675" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "C8WRJP4N7N5CN6HS" : { - "C8WRJP4N7N5CN6HS.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "C8WRJP4N7N5CN6HS", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "C8WRJP4N7N5CN6HS.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "C8WRJP4N7N5CN6HS.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "C8WRJP4N7N5CN6HS.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "C8WRJP4N7N5CN6HS", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "C8WRJP4N7N5CN6HS.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "C8WRJP4N7N5CN6HS.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "855" - }, - "appliesTo" : [ ] - }, - "C8WRJP4N7N5CN6HS.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "C8WRJP4N7N5CN6HS.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "C8WRJP4N7N5CN6HS.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "C8WRJP4N7N5CN6HS", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "C8WRJP4N7N5CN6HS.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "C8WRJP4N7N5CN6HS.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4683" - }, - "appliesTo" : [ ] - }, - "C8WRJP4N7N5CN6HS.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "C8WRJP4N7N5CN6HS.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "C8WRJP4N7N5CN6HS.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "C8WRJP4N7N5CN6HS", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "C8WRJP4N7N5CN6HS.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "C8WRJP4N7N5CN6HS.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1986" - }, - "appliesTo" : [ ] - }, - "C8WRJP4N7N5CN6HS.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "C8WRJP4N7N5CN6HS.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "C8WRJP4N7N5CN6HS.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "C8WRJP4N7N5CN6HS", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "C8WRJP4N7N5CN6HS.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "C8WRJP4N7N5CN6HS.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2083" - }, - "appliesTo" : [ ] - }, - "C8WRJP4N7N5CN6HS.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "C8WRJP4N7N5CN6HS.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "NN2CMDZPNDJ4GWGU" : { - "NN2CMDZPNDJ4GWGU.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "NN2CMDZPNDJ4GWGU", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "NN2CMDZPNDJ4GWGU.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "NN2CMDZPNDJ4GWGU.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16602" - }, - "appliesTo" : [ ] - }, - "NN2CMDZPNDJ4GWGU.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "NN2CMDZPNDJ4GWGU.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "NN2CMDZPNDJ4GWGU.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "NN2CMDZPNDJ4GWGU", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "NN2CMDZPNDJ4GWGU.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "NN2CMDZPNDJ4GWGU.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6292000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "NN2CMDZPNDJ4GWGU.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "NN2CMDZPNDJ4GWGU", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "NN2CMDZPNDJ4GWGU.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "NN2CMDZPNDJ4GWGU.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "NN2CMDZPNDJ4GWGU.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "NN2CMDZPNDJ4GWGU.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16341" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "NN2CMDZPNDJ4GWGU.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "NN2CMDZPNDJ4GWGU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NN2CMDZPNDJ4GWGU.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "NN2CMDZPNDJ4GWGU.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5801" - }, - "appliesTo" : [ ] - }, - "NN2CMDZPNDJ4GWGU.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "NN2CMDZPNDJ4GWGU.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "NN2CMDZPNDJ4GWGU.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "NN2CMDZPNDJ4GWGU", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "NN2CMDZPNDJ4GWGU.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "NN2CMDZPNDJ4GWGU.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8213" - }, - "appliesTo" : [ ] - }, - "NN2CMDZPNDJ4GWGU.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "NN2CMDZPNDJ4GWGU.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3125000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "NN2CMDZPNDJ4GWGU.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "NN2CMDZPNDJ4GWGU", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "NN2CMDZPNDJ4GWGU.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "NN2CMDZPNDJ4GWGU.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8317" - }, - "appliesTo" : [ ] - }, - "NN2CMDZPNDJ4GWGU.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "NN2CMDZPNDJ4GWGU.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3165000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "NN2CMDZPNDJ4GWGU.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "NN2CMDZPNDJ4GWGU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NN2CMDZPNDJ4GWGU.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "NN2CMDZPNDJ4GWGU.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3320000000" - }, - "appliesTo" : [ ] - }, - "NN2CMDZPNDJ4GWGU.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "NN2CMDZPNDJ4GWGU.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2908" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "NN2CMDZPNDJ4GWGU.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "NN2CMDZPNDJ4GWGU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NN2CMDZPNDJ4GWGU.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "NN2CMDZPNDJ4GWGU.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6686000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "NN2CMDZPNDJ4GWGU.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "NN2CMDZPNDJ4GWGU", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "NN2CMDZPNDJ4GWGU.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "NN2CMDZPNDJ4GWGU.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2856" - }, - "appliesTo" : [ ] - }, - "NN2CMDZPNDJ4GWGU.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "NN2CMDZPNDJ4GWGU.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "NN2CMDZPNDJ4GWGU.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "NN2CMDZPNDJ4GWGU", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "NN2CMDZPNDJ4GWGU.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "NN2CMDZPNDJ4GWGU.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "NN2CMDZPNDJ4GWGU.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "NN2CMDZPNDJ4GWGU", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "NN2CMDZPNDJ4GWGU.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "NN2CMDZPNDJ4GWGU.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5697" - }, - "appliesTo" : [ ] - }, - "NN2CMDZPNDJ4GWGU.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "NN2CMDZPNDJ4GWGU.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "NN2CMDZPNDJ4GWGU.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "NN2CMDZPNDJ4GWGU", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "NN2CMDZPNDJ4GWGU.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "NN2CMDZPNDJ4GWGU.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6378000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "QNQNFXEZD4JV6K7J" : { - "QNQNFXEZD4JV6K7J.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QNQNFXEZD4JV6K7J", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "QNQNFXEZD4JV6K7J.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QNQNFXEZD4JV6K7J.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QNQNFXEZD4JV6K7J.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QNQNFXEZD4JV6K7J", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QNQNFXEZD4JV6K7J.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QNQNFXEZD4JV6K7J.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16924" - }, - "appliesTo" : [ ] - }, - "QNQNFXEZD4JV6K7J.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QNQNFXEZD4JV6K7J.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QNQNFXEZD4JV6K7J.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QNQNFXEZD4JV6K7J", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QNQNFXEZD4JV6K7J.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QNQNFXEZD4JV6K7J.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11213" - }, - "appliesTo" : [ ] - }, - "QNQNFXEZD4JV6K7J.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QNQNFXEZD4JV6K7J.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QNQNFXEZD4JV6K7J.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QNQNFXEZD4JV6K7J", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QNQNFXEZD4JV6K7J.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QNQNFXEZD4JV6K7J.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37153" - }, - "appliesTo" : [ ] - }, - "QNQNFXEZD4JV6K7J.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QNQNFXEZD4JV6K7J.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QNQNFXEZD4JV6K7J.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QNQNFXEZD4JV6K7J", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "QNQNFXEZD4JV6K7J.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QNQNFXEZD4JV6K7J.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19745" - }, - "appliesTo" : [ ] - }, - "QNQNFXEZD4JV6K7J.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QNQNFXEZD4JV6K7J.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "34JBU9PXRB8RPKYX" : { - "34JBU9PXRB8RPKYX.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "34JBU9PXRB8RPKYX", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "34JBU9PXRB8RPKYX.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "34JBU9PXRB8RPKYX.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0365000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "34JBU9PXRB8RPKYX.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "34JBU9PXRB8RPKYX", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "34JBU9PXRB8RPKYX.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "34JBU9PXRB8RPKYX.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "34JBU9PXRB8RPKYX.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "34JBU9PXRB8RPKYX.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "901" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "34JBU9PXRB8RPKYX.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "34JBU9PXRB8RPKYX", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "34JBU9PXRB8RPKYX.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "34JBU9PXRB8RPKYX.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "612" - }, - "appliesTo" : [ ] - }, - "34JBU9PXRB8RPKYX.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "34JBU9PXRB8RPKYX.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "34JBU9PXRB8RPKYX.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "34JBU9PXRB8RPKYX", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "34JBU9PXRB8RPKYX.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "34JBU9PXRB8RPKYX.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "34JBU9PXRB8RPKYX.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "34JBU9PXRB8RPKYX", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "34JBU9PXRB8RPKYX.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "34JBU9PXRB8RPKYX.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0180000000" - }, - "appliesTo" : [ ] - }, - "34JBU9PXRB8RPKYX.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "34JBU9PXRB8RPKYX.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "486" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "34JBU9PXRB8RPKYX.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "34JBU9PXRB8RPKYX", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "34JBU9PXRB8RPKYX.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "34JBU9PXRB8RPKYX.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "34JBU9PXRB8RPKYX.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "34JBU9PXRB8RPKYX.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "342" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "34JBU9PXRB8RPKYX.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "34JBU9PXRB8RPKYX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "34JBU9PXRB8RPKYX.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "34JBU9PXRB8RPKYX.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0413000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "34JBU9PXRB8RPKYX.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "34JBU9PXRB8RPKYX", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "34JBU9PXRB8RPKYX.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "34JBU9PXRB8RPKYX.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "209" - }, - "appliesTo" : [ ] - }, - "34JBU9PXRB8RPKYX.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "34JBU9PXRB8RPKYX.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "34JBU9PXRB8RPKYX.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "34JBU9PXRB8RPKYX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "34JBU9PXRB8RPKYX.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "34JBU9PXRB8RPKYX.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0205000000" - }, - "appliesTo" : [ ] - }, - "34JBU9PXRB8RPKYX.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "34JBU9PXRB8RPKYX.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "179" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "34JBU9PXRB8RPKYX.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "34JBU9PXRB8RPKYX", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "34JBU9PXRB8RPKYX.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "34JBU9PXRB8RPKYX.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "34JBU9PXRB8RPKYX.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "34JBU9PXRB8RPKYX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "34JBU9PXRB8RPKYX.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "34JBU9PXRB8RPKYX.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "357" - }, - "appliesTo" : [ ] - }, - "34JBU9PXRB8RPKYX.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "34JBU9PXRB8RPKYX.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "34JBU9PXRB8RPKYX.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "34JBU9PXRB8RPKYX", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "34JBU9PXRB8RPKYX.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "34JBU9PXRB8RPKYX.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1004" - }, - "appliesTo" : [ ] - }, - "34JBU9PXRB8RPKYX.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "34JBU9PXRB8RPKYX.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "H9ZN7EUEHC2S7YH5" : { - "H9ZN7EUEHC2S7YH5.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "H9ZN7EUEHC2S7YH5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H9ZN7EUEHC2S7YH5.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "H9ZN7EUEHC2S7YH5.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "H9ZN7EUEHC2S7YH5.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "H9ZN7EUEHC2S7YH5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H9ZN7EUEHC2S7YH5.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "H9ZN7EUEHC2S7YH5.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1170000000" - }, - "appliesTo" : [ ] - }, - "H9ZN7EUEHC2S7YH5.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "H9ZN7EUEHC2S7YH5.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1028" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "H9ZN7EUEHC2S7YH5.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "H9ZN7EUEHC2S7YH5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H9ZN7EUEHC2S7YH5.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "H9ZN7EUEHC2S7YH5.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1751" - }, - "appliesTo" : [ ] - }, - "H9ZN7EUEHC2S7YH5.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "H9ZN7EUEHC2S7YH5.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "H9ZN7EUEHC2S7YH5.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "H9ZN7EUEHC2S7YH5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H9ZN7EUEHC2S7YH5.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "H9ZN7EUEHC2S7YH5.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1733" - }, - "appliesTo" : [ ] - }, - "H9ZN7EUEHC2S7YH5.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "H9ZN7EUEHC2S7YH5.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "H9ZN7EUEHC2S7YH5.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "H9ZN7EUEHC2S7YH5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H9ZN7EUEHC2S7YH5.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "H9ZN7EUEHC2S7YH5.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3259" - }, - "appliesTo" : [ ] - }, - "H9ZN7EUEHC2S7YH5.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "H9ZN7EUEHC2S7YH5.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "H9ZN7EUEHC2S7YH5.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "H9ZN7EUEHC2S7YH5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H9ZN7EUEHC2S7YH5.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "H9ZN7EUEHC2S7YH5.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1997" - }, - "appliesTo" : [ ] - }, - "H9ZN7EUEHC2S7YH5.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "H9ZN7EUEHC2S7YH5.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "H9ZN7EUEHC2S7YH5.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "H9ZN7EUEHC2S7YH5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H9ZN7EUEHC2S7YH5.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "H9ZN7EUEHC2S7YH5.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "H9ZN7EUEHC2S7YH5.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "H9ZN7EUEHC2S7YH5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H9ZN7EUEHC2S7YH5.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "H9ZN7EUEHC2S7YH5.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "H9ZN7EUEHC2S7YH5.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "H9ZN7EUEHC2S7YH5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H9ZN7EUEHC2S7YH5.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "H9ZN7EUEHC2S7YH5.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2014" - }, - "appliesTo" : [ ] - }, - "H9ZN7EUEHC2S7YH5.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "H9ZN7EUEHC2S7YH5.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "H9ZN7EUEHC2S7YH5.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "H9ZN7EUEHC2S7YH5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H9ZN7EUEHC2S7YH5.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "H9ZN7EUEHC2S7YH5.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "H9ZN7EUEHC2S7YH5.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "H9ZN7EUEHC2S7YH5.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3914" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "H9ZN7EUEHC2S7YH5.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "H9ZN7EUEHC2S7YH5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H9ZN7EUEHC2S7YH5.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "H9ZN7EUEHC2S7YH5.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1020000000" - }, - "appliesTo" : [ ] - }, - "H9ZN7EUEHC2S7YH5.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "H9ZN7EUEHC2S7YH5.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "894" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "H9ZN7EUEHC2S7YH5.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "H9ZN7EUEHC2S7YH5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H9ZN7EUEHC2S7YH5.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "H9ZN7EUEHC2S7YH5.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "5YBKCYT5H6J77KYT" : { - "5YBKCYT5H6J77KYT.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "5YBKCYT5H6J77KYT", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "5YBKCYT5H6J77KYT.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "5YBKCYT5H6J77KYT.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3762" - }, - "appliesTo" : [ ] - }, - "5YBKCYT5H6J77KYT.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "5YBKCYT5H6J77KYT.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5YBKCYT5H6J77KYT.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "5YBKCYT5H6J77KYT", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "5YBKCYT5H6J77KYT.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "5YBKCYT5H6J77KYT.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8847" - }, - "appliesTo" : [ ] - }, - "5YBKCYT5H6J77KYT.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "5YBKCYT5H6J77KYT.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5YBKCYT5H6J77KYT.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "5YBKCYT5H6J77KYT", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "5YBKCYT5H6J77KYT.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "5YBKCYT5H6J77KYT.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3988" - }, - "appliesTo" : [ ] - }, - "5YBKCYT5H6J77KYT.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "5YBKCYT5H6J77KYT.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5YBKCYT5H6J77KYT.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "5YBKCYT5H6J77KYT", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "5YBKCYT5H6J77KYT.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "5YBKCYT5H6J77KYT.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1634" - }, - "appliesTo" : [ ] - }, - "5YBKCYT5H6J77KYT.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "5YBKCYT5H6J77KYT.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5YBKCYT5H6J77KYT.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "5YBKCYT5H6J77KYT", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "5YBKCYT5H6J77KYT.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "5YBKCYT5H6J77KYT.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "AA7ZX8UEQ6R54FN8" : { - "AA7ZX8UEQ6R54FN8.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "AA7ZX8UEQ6R54FN8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AA7ZX8UEQ6R54FN8.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "AA7ZX8UEQ6R54FN8.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "AA7ZX8UEQ6R54FN8.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "AA7ZX8UEQ6R54FN8.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2606" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "AA7ZX8UEQ6R54FN8.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "AA7ZX8UEQ6R54FN8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AA7ZX8UEQ6R54FN8.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "AA7ZX8UEQ6R54FN8.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1166" - }, - "appliesTo" : [ ] - }, - "AA7ZX8UEQ6R54FN8.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "AA7ZX8UEQ6R54FN8.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AA7ZX8UEQ6R54FN8.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "AA7ZX8UEQ6R54FN8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AA7ZX8UEQ6R54FN8.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "AA7ZX8UEQ6R54FN8.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2726" - }, - "appliesTo" : [ ] - }, - "AA7ZX8UEQ6R54FN8.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "AA7ZX8UEQ6R54FN8.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "AA7ZX8UEQ6R54FN8.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "AA7ZX8UEQ6R54FN8", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "AA7ZX8UEQ6R54FN8.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "AA7ZX8UEQ6R54FN8.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2386" - }, - "appliesTo" : [ ] - }, - "AA7ZX8UEQ6R54FN8.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "AA7ZX8UEQ6R54FN8.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AA7ZX8UEQ6R54FN8.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "AA7ZX8UEQ6R54FN8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AA7ZX8UEQ6R54FN8.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "AA7ZX8UEQ6R54FN8.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "AA7ZX8UEQ6R54FN8.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "AA7ZX8UEQ6R54FN8", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "AA7ZX8UEQ6R54FN8.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "AA7ZX8UEQ6R54FN8.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2286" - }, - "appliesTo" : [ ] - }, - "AA7ZX8UEQ6R54FN8.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "AA7ZX8UEQ6R54FN8.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AA7ZX8UEQ6R54FN8.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "AA7ZX8UEQ6R54FN8", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "AA7ZX8UEQ6R54FN8.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "AA7ZX8UEQ6R54FN8.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4486" - }, - "appliesTo" : [ ] - }, - "AA7ZX8UEQ6R54FN8.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "AA7ZX8UEQ6R54FN8.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AA7ZX8UEQ6R54FN8.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "AA7ZX8UEQ6R54FN8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AA7ZX8UEQ6R54FN8.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "AA7ZX8UEQ6R54FN8.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1330" - }, - "appliesTo" : [ ] - }, - "AA7ZX8UEQ6R54FN8.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "AA7ZX8UEQ6R54FN8.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "AA7ZX8UEQ6R54FN8.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "AA7ZX8UEQ6R54FN8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AA7ZX8UEQ6R54FN8.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "AA7ZX8UEQ6R54FN8.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "AA7ZX8UEQ6R54FN8.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "AA7ZX8UEQ6R54FN8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AA7ZX8UEQ6R54FN8.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "AA7ZX8UEQ6R54FN8.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "AA7ZX8UEQ6R54FN8.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "AA7ZX8UEQ6R54FN8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AA7ZX8UEQ6R54FN8.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "AA7ZX8UEQ6R54FN8.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5343" - }, - "appliesTo" : [ ] - }, - "AA7ZX8UEQ6R54FN8.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "AA7ZX8UEQ6R54FN8.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "AA7ZX8UEQ6R54FN8.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "AA7ZX8UEQ6R54FN8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AA7ZX8UEQ6R54FN8.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "AA7ZX8UEQ6R54FN8.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "GS3NHNTTTS84KQSP" : { - "GS3NHNTTTS84KQSP.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "GS3NHNTTTS84KQSP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GS3NHNTTTS84KQSP.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "GS3NHNTTTS84KQSP.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "51934" - }, - "appliesTo" : [ ] - }, - "GS3NHNTTTS84KQSP.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "GS3NHNTTTS84KQSP.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.9290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GS3NHNTTTS84KQSP.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "GS3NHNTTTS84KQSP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GS3NHNTTTS84KQSP.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "GS3NHNTTTS84KQSP.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "102496" - }, - "appliesTo" : [ ] - }, - "GS3NHNTTTS84KQSP.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "GS3NHNTTTS84KQSP.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GS3NHNTTTS84KQSP.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "GS3NHNTTTS84KQSP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GS3NHNTTTS84KQSP.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "GS3NHNTTTS84KQSP.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.3150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GS3NHNTTTS84KQSP.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "GS3NHNTTTS84KQSP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GS3NHNTTTS84KQSP.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "GS3NHNTTTS84KQSP.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.2490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GS3NHNTTTS84KQSP.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "GS3NHNTTTS84KQSP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GS3NHNTTTS84KQSP.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "GS3NHNTTTS84KQSP.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "223427" - }, - "appliesTo" : [ ] - }, - "GS3NHNTTTS84KQSP.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "GS3NHNTTTS84KQSP.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "GS3NHNTTTS84KQSP.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "GS3NHNTTTS84KQSP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GS3NHNTTTS84KQSP.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "GS3NHNTTTS84KQSP.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "GS3NHNTTTS84KQSP.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "GS3NHNTTTS84KQSP.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "112581" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "GS3NHNTTTS84KQSP.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "GS3NHNTTTS84KQSP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GS3NHNTTTS84KQSP.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "GS3NHNTTTS84KQSP.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "57080" - }, - "appliesTo" : [ ] - }, - "GS3NHNTTTS84KQSP.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "GS3NHNTTTS84KQSP.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.5160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GS3NHNTTTS84KQSP.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "GS3NHNTTTS84KQSP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GS3NHNTTTS84KQSP.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "GS3NHNTTTS84KQSP.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.4820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "GS3NHNTTTS84KQSP.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "GS3NHNTTTS84KQSP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GS3NHNTTTS84KQSP.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "GS3NHNTTTS84KQSP.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.9590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "GS3NHNTTTS84KQSP.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "GS3NHNTTTS84KQSP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GS3NHNTTTS84KQSP.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "GS3NHNTTTS84KQSP.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "203909" - }, - "appliesTo" : [ ] - }, - "GS3NHNTTTS84KQSP.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "GS3NHNTTTS84KQSP.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GS3NHNTTTS84KQSP.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "GS3NHNTTTS84KQSP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GS3NHNTTTS84KQSP.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "GS3NHNTTTS84KQSP.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "112914" - }, - "appliesTo" : [ ] - }, - "GS3NHNTTTS84KQSP.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "GS3NHNTTTS84KQSP.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GS3NHNTTTS84KQSP.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "GS3NHNTTTS84KQSP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GS3NHNTTTS84KQSP.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "GS3NHNTTTS84KQSP.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "105086" - }, - "appliesTo" : [ ] - }, - "GS3NHNTTTS84KQSP.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "GS3NHNTTTS84KQSP.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "D2UN9TFKVYBF6AUM" : { - "D2UN9TFKVYBF6AUM.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "D2UN9TFKVYBF6AUM", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "D2UN9TFKVYBF6AUM.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "D2UN9TFKVYBF6AUM.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9411" - }, - "appliesTo" : [ ] - }, - "D2UN9TFKVYBF6AUM.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "D2UN9TFKVYBF6AUM.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "D2UN9TFKVYBF6AUM.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "D2UN9TFKVYBF6AUM", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "D2UN9TFKVYBF6AUM.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "D2UN9TFKVYBF6AUM.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4830" - }, - "appliesTo" : [ ] - }, - "D2UN9TFKVYBF6AUM.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "D2UN9TFKVYBF6AUM.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "D2UN9TFKVYBF6AUM.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "D2UN9TFKVYBF6AUM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "D2UN9TFKVYBF6AUM.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "D2UN9TFKVYBF6AUM.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "D2UN9TFKVYBF6AUM.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "D2UN9TFKVYBF6AUM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "D2UN9TFKVYBF6AUM.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "D2UN9TFKVYBF6AUM.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "D2UN9TFKVYBF6AUM.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "D2UN9TFKVYBF6AUM.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10779" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "D2UN9TFKVYBF6AUM.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "D2UN9TFKVYBF6AUM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "D2UN9TFKVYBF6AUM.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "D2UN9TFKVYBF6AUM.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8565000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "D2UN9TFKVYBF6AUM.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "D2UN9TFKVYBF6AUM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "D2UN9TFKVYBF6AUM.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "D2UN9TFKVYBF6AUM.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6239000000" - }, - "appliesTo" : [ ] - }, - "D2UN9TFKVYBF6AUM.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "D2UN9TFKVYBF6AUM.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5528" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "D2UN9TFKVYBF6AUM.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "D2UN9TFKVYBF6AUM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "D2UN9TFKVYBF6AUM.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "D2UN9TFKVYBF6AUM.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "D2UN9TFKVYBF6AUM.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "D2UN9TFKVYBF6AUM.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23277" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "D2UN9TFKVYBF6AUM.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "D2UN9TFKVYBF6AUM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "D2UN9TFKVYBF6AUM.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "D2UN9TFKVYBF6AUM.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11874" - }, - "appliesTo" : [ ] - }, - "D2UN9TFKVYBF6AUM.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "D2UN9TFKVYBF6AUM.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4514000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "D2UN9TFKVYBF6AUM.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "D2UN9TFKVYBF6AUM", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "D2UN9TFKVYBF6AUM.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "D2UN9TFKVYBF6AUM.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "D2UN9TFKVYBF6AUM.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "D2UN9TFKVYBF6AUM", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "D2UN9TFKVYBF6AUM.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "D2UN9TFKVYBF6AUM.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10371" - }, - "appliesTo" : [ ] - }, - "D2UN9TFKVYBF6AUM.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "D2UN9TFKVYBF6AUM.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "D2UN9TFKVYBF6AUM.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "D2UN9TFKVYBF6AUM", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "D2UN9TFKVYBF6AUM.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "D2UN9TFKVYBF6AUM.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "D2UN9TFKVYBF6AUM.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "D2UN9TFKVYBF6AUM.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19530" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "D2UN9TFKVYBF6AUM.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "D2UN9TFKVYBF6AUM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "D2UN9TFKVYBF6AUM.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "D2UN9TFKVYBF6AUM.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "FTHQYJFCP3DPSYCY" : { - "FTHQYJFCP3DPSYCY.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "FTHQYJFCP3DPSYCY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FTHQYJFCP3DPSYCY.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "FTHQYJFCP3DPSYCY.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6752000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FTHQYJFCP3DPSYCY.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "FTHQYJFCP3DPSYCY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FTHQYJFCP3DPSYCY.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "FTHQYJFCP3DPSYCY.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3896000000" - }, - "appliesTo" : [ ] - }, - "FTHQYJFCP3DPSYCY.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "FTHQYJFCP3DPSYCY.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2274" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FTHQYJFCP3DPSYCY.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "FTHQYJFCP3DPSYCY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FTHQYJFCP3DPSYCY.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "FTHQYJFCP3DPSYCY.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7569000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FTHQYJFCP3DPSYCY.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "FTHQYJFCP3DPSYCY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FTHQYJFCP3DPSYCY.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "FTHQYJFCP3DPSYCY.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2615" - }, - "appliesTo" : [ ] - }, - "FTHQYJFCP3DPSYCY.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "FTHQYJFCP3DPSYCY.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4285000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FTHQYJFCP3DPSYCY.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "FTHQYJFCP3DPSYCY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FTHQYJFCP3DPSYCY.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "FTHQYJFCP3DPSYCY.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5102000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FTHQYJFCP3DPSYCY.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "FTHQYJFCP3DPSYCY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FTHQYJFCP3DPSYCY.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "FTHQYJFCP3DPSYCY.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12112" - }, - "appliesTo" : [ ] - }, - "FTHQYJFCP3DPSYCY.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "FTHQYJFCP3DPSYCY.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FTHQYJFCP3DPSYCY.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "FTHQYJFCP3DPSYCY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FTHQYJFCP3DPSYCY.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "FTHQYJFCP3DPSYCY.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5319" - }, - "appliesTo" : [ ] - }, - "FTHQYJFCP3DPSYCY.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "FTHQYJFCP3DPSYCY.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3324000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FTHQYJFCP3DPSYCY.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "FTHQYJFCP3DPSYCY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FTHQYJFCP3DPSYCY.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "FTHQYJFCP3DPSYCY.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "FTHQYJFCP3DPSYCY.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "FTHQYJFCP3DPSYCY.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13842" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FTHQYJFCP3DPSYCY.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "FTHQYJFCP3DPSYCY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FTHQYJFCP3DPSYCY.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "FTHQYJFCP3DPSYCY.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6265" - }, - "appliesTo" : [ ] - }, - "FTHQYJFCP3DPSYCY.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "FTHQYJFCP3DPSYCY.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FTHQYJFCP3DPSYCY.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "FTHQYJFCP3DPSYCY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FTHQYJFCP3DPSYCY.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "FTHQYJFCP3DPSYCY.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4625" - }, - "appliesTo" : [ ] - }, - "FTHQYJFCP3DPSYCY.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "FTHQYJFCP3DPSYCY.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FTHQYJFCP3DPSYCY.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "FTHQYJFCP3DPSYCY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FTHQYJFCP3DPSYCY.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "FTHQYJFCP3DPSYCY.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5596" - }, - "appliesTo" : [ ] - }, - "FTHQYJFCP3DPSYCY.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "FTHQYJFCP3DPSYCY.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FTHQYJFCP3DPSYCY.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "FTHQYJFCP3DPSYCY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FTHQYJFCP3DPSYCY.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "FTHQYJFCP3DPSYCY.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5672000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "BD398TEHQSUMAUDS" : { - "BD398TEHQSUMAUDS.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "BD398TEHQSUMAUDS", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BD398TEHQSUMAUDS.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "BD398TEHQSUMAUDS.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2490000000" - }, - "appliesTo" : [ ] - }, - "BD398TEHQSUMAUDS.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "BD398TEHQSUMAUDS.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4050" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BD398TEHQSUMAUDS.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "BD398TEHQSUMAUDS", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "BD398TEHQSUMAUDS.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "BD398TEHQSUMAUDS.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BD398TEHQSUMAUDS.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "BD398TEHQSUMAUDS", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BD398TEHQSUMAUDS.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "BD398TEHQSUMAUDS.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "BD398TEHQSUMAUDS.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "BD398TEHQSUMAUDS.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6109" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BD398TEHQSUMAUDS.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "BD398TEHQSUMAUDS", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BD398TEHQSUMAUDS.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "BD398TEHQSUMAUDS.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BD398TEHQSUMAUDS.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "BD398TEHQSUMAUDS", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BD398TEHQSUMAUDS.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "BD398TEHQSUMAUDS.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "BD398TEHQSUMAUDS.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "BD398TEHQSUMAUDS.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18095" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BD398TEHQSUMAUDS.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "BD398TEHQSUMAUDS", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "BD398TEHQSUMAUDS.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "BD398TEHQSUMAUDS.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15729" - }, - "appliesTo" : [ ] - }, - "BD398TEHQSUMAUDS.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "BD398TEHQSUMAUDS.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BD398TEHQSUMAUDS.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "BD398TEHQSUMAUDS", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "BD398TEHQSUMAUDS.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "BD398TEHQSUMAUDS.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10880" - }, - "appliesTo" : [ ] - }, - "BD398TEHQSUMAUDS.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "BD398TEHQSUMAUDS.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BD398TEHQSUMAUDS.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "BD398TEHQSUMAUDS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BD398TEHQSUMAUDS.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "BD398TEHQSUMAUDS.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6331" - }, - "appliesTo" : [ ] - }, - "BD398TEHQSUMAUDS.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "BD398TEHQSUMAUDS.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BD398TEHQSUMAUDS.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "BD398TEHQSUMAUDS", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "BD398TEHQSUMAUDS.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "BD398TEHQSUMAUDS.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11996" - }, - "appliesTo" : [ ] - }, - "BD398TEHQSUMAUDS.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "BD398TEHQSUMAUDS.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BD398TEHQSUMAUDS.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "BD398TEHQSUMAUDS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BD398TEHQSUMAUDS.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "BD398TEHQSUMAUDS.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3175" - }, - "appliesTo" : [ ] - }, - "BD398TEHQSUMAUDS.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "BD398TEHQSUMAUDS.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BD398TEHQSUMAUDS.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "BD398TEHQSUMAUDS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BD398TEHQSUMAUDS.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "BD398TEHQSUMAUDS.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "ZJXKCMNRMSTSZTE8" : { - "ZJXKCMNRMSTSZTE8.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ZJXKCMNRMSTSZTE8", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "ZJXKCMNRMSTSZTE8.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ZJXKCMNRMSTSZTE8.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23061" - }, - "appliesTo" : [ ] - }, - "ZJXKCMNRMSTSZTE8.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ZJXKCMNRMSTSZTE8.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZJXKCMNRMSTSZTE8.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "ZJXKCMNRMSTSZTE8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZJXKCMNRMSTSZTE8.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "ZJXKCMNRMSTSZTE8.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9617000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZJXKCMNRMSTSZTE8.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ZJXKCMNRMSTSZTE8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZJXKCMNRMSTSZTE8.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ZJXKCMNRMSTSZTE8.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "53648" - }, - "appliesTo" : [ ] - }, - "ZJXKCMNRMSTSZTE8.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ZJXKCMNRMSTSZTE8.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZJXKCMNRMSTSZTE8.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ZJXKCMNRMSTSZTE8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZJXKCMNRMSTSZTE8.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ZJXKCMNRMSTSZTE8.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZJXKCMNRMSTSZTE8.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ZJXKCMNRMSTSZTE8", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "ZJXKCMNRMSTSZTE8.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ZJXKCMNRMSTSZTE8.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11185" - }, - "appliesTo" : [ ] - }, - "ZJXKCMNRMSTSZTE8.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ZJXKCMNRMSTSZTE8.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZJXKCMNRMSTSZTE8.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ZJXKCMNRMSTSZTE8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZJXKCMNRMSTSZTE8.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ZJXKCMNRMSTSZTE8.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26412" - }, - "appliesTo" : [ ] - }, - "ZJXKCMNRMSTSZTE8.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ZJXKCMNRMSTSZTE8.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZJXKCMNRMSTSZTE8.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ZJXKCMNRMSTSZTE8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZJXKCMNRMSTSZTE8.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ZJXKCMNRMSTSZTE8.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12895" - }, - "appliesTo" : [ ] - }, - "ZJXKCMNRMSTSZTE8.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ZJXKCMNRMSTSZTE8.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZJXKCMNRMSTSZTE8.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ZJXKCMNRMSTSZTE8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZJXKCMNRMSTSZTE8.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ZJXKCMNRMSTSZTE8.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2212000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZJXKCMNRMSTSZTE8.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ZJXKCMNRMSTSZTE8", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "ZJXKCMNRMSTSZTE8.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ZJXKCMNRMSTSZTE8.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ZJXKCMNRMSTSZTE8.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ZJXKCMNRMSTSZTE8.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "45471" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZJXKCMNRMSTSZTE8.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ZJXKCMNRMSTSZTE8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZJXKCMNRMSTSZTE8.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ZJXKCMNRMSTSZTE8.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2364000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZJXKCMNRMSTSZTE8.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ZJXKCMNRMSTSZTE8", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "ZJXKCMNRMSTSZTE8.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ZJXKCMNRMSTSZTE8.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9810000000" - }, - "appliesTo" : [ ] - }, - "ZJXKCMNRMSTSZTE8.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ZJXKCMNRMSTSZTE8.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22370" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZJXKCMNRMSTSZTE8.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ZJXKCMNRMSTSZTE8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZJXKCMNRMSTSZTE8.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ZJXKCMNRMSTSZTE8.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25628" - }, - "appliesTo" : [ ] - }, - "ZJXKCMNRMSTSZTE8.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ZJXKCMNRMSTSZTE8.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1052000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "U5PMX34FM7A6Y7VW" : { - "U5PMX34FM7A6Y7VW.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "U5PMX34FM7A6Y7VW", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "U5PMX34FM7A6Y7VW.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "U5PMX34FM7A6Y7VW.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8104" - }, - "appliesTo" : [ ] - }, - "U5PMX34FM7A6Y7VW.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "U5PMX34FM7A6Y7VW.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "U5PMX34FM7A6Y7VW.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "U5PMX34FM7A6Y7VW", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "U5PMX34FM7A6Y7VW.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "U5PMX34FM7A6Y7VW.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16179" - }, - "appliesTo" : [ ] - }, - "U5PMX34FM7A6Y7VW.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "U5PMX34FM7A6Y7VW.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "U5PMX34FM7A6Y7VW.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "U5PMX34FM7A6Y7VW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U5PMX34FM7A6Y7VW.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "U5PMX34FM7A6Y7VW.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "U5PMX34FM7A6Y7VW.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "U5PMX34FM7A6Y7VW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U5PMX34FM7A6Y7VW.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "U5PMX34FM7A6Y7VW.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8204" - }, - "appliesTo" : [ ] - }, - "U5PMX34FM7A6Y7VW.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "U5PMX34FM7A6Y7VW.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "U5PMX34FM7A6Y7VW.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "U5PMX34FM7A6Y7VW", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "U5PMX34FM7A6Y7VW.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "U5PMX34FM7A6Y7VW.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23589" - }, - "appliesTo" : [ ] - }, - "U5PMX34FM7A6Y7VW.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "U5PMX34FM7A6Y7VW.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "U5PMX34FM7A6Y7VW.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "U5PMX34FM7A6Y7VW", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "U5PMX34FM7A6Y7VW.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "U5PMX34FM7A6Y7VW.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24093" - }, - "appliesTo" : [ ] - }, - "U5PMX34FM7A6Y7VW.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "U5PMX34FM7A6Y7VW.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "U5PMX34FM7A6Y7VW.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "U5PMX34FM7A6Y7VW", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "U5PMX34FM7A6Y7VW.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "U5PMX34FM7A6Y7VW.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "U5PMX34FM7A6Y7VW.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "U5PMX34FM7A6Y7VW.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47003" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "U5PMX34FM7A6Y7VW.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "U5PMX34FM7A6Y7VW", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "U5PMX34FM7A6Y7VW.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "U5PMX34FM7A6Y7VW.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "48108" - }, - "appliesTo" : [ ] - }, - "U5PMX34FM7A6Y7VW.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "U5PMX34FM7A6Y7VW.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "U5PMX34FM7A6Y7VW.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "U5PMX34FM7A6Y7VW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U5PMX34FM7A6Y7VW.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "U5PMX34FM7A6Y7VW.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16375" - }, - "appliesTo" : [ ] - }, - "U5PMX34FM7A6Y7VW.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "U5PMX34FM7A6Y7VW.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "U5PMX34FM7A6Y7VW.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "U5PMX34FM7A6Y7VW", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "U5PMX34FM7A6Y7VW.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "U5PMX34FM7A6Y7VW.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "U5PMX34FM7A6Y7VW.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "U5PMX34FM7A6Y7VW", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "U5PMX34FM7A6Y7VW.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "U5PMX34FM7A6Y7VW.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "N8CRYUBTUE378VHJ" : { - "N8CRYUBTUE378VHJ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "N8CRYUBTUE378VHJ", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "N8CRYUBTUE378VHJ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "N8CRYUBTUE378VHJ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3516" - }, - "appliesTo" : [ ] - }, - "N8CRYUBTUE378VHJ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "N8CRYUBTUE378VHJ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "N8CRYUBTUE378VHJ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "N8CRYUBTUE378VHJ", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "N8CRYUBTUE378VHJ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "N8CRYUBTUE378VHJ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "N8CRYUBTUE378VHJ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "N8CRYUBTUE378VHJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N8CRYUBTUE378VHJ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "N8CRYUBTUE378VHJ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "N8CRYUBTUE378VHJ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "N8CRYUBTUE378VHJ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3857" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "N8CRYUBTUE378VHJ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "N8CRYUBTUE378VHJ", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "N8CRYUBTUE378VHJ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "N8CRYUBTUE378VHJ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1433" - }, - "appliesTo" : [ ] - }, - "N8CRYUBTUE378VHJ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "N8CRYUBTUE378VHJ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "N8CRYUBTUE378VHJ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "N8CRYUBTUE378VHJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "N8CRYUBTUE378VHJ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "N8CRYUBTUE378VHJ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3353" - }, - "appliesTo" : [ ] - }, - "N8CRYUBTUE378VHJ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "N8CRYUBTUE378VHJ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "N8CRYUBTUE378VHJ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "N8CRYUBTUE378VHJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "N8CRYUBTUE378VHJ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "N8CRYUBTUE378VHJ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10120" - }, - "appliesTo" : [ ] - }, - "N8CRYUBTUE378VHJ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "N8CRYUBTUE378VHJ.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "N8CRYUBTUE378VHJ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "N8CRYUBTUE378VHJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "N8CRYUBTUE378VHJ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "N8CRYUBTUE378VHJ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7870" - }, - "appliesTo" : [ ] - }, - "N8CRYUBTUE378VHJ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "N8CRYUBTUE378VHJ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "N8CRYUBTUE378VHJ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "N8CRYUBTUE378VHJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "N8CRYUBTUE378VHJ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "N8CRYUBTUE378VHJ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "N8CRYUBTUE378VHJ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "N8CRYUBTUE378VHJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N8CRYUBTUE378VHJ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "N8CRYUBTUE378VHJ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1945" - }, - "appliesTo" : [ ] - }, - "N8CRYUBTUE378VHJ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "N8CRYUBTUE378VHJ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "N8CRYUBTUE378VHJ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "N8CRYUBTUE378VHJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N8CRYUBTUE378VHJ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "N8CRYUBTUE378VHJ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "N8CRYUBTUE378VHJ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "N8CRYUBTUE378VHJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "N8CRYUBTUE378VHJ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "N8CRYUBTUE378VHJ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4046" - }, - "appliesTo" : [ ] - }, - "N8CRYUBTUE378VHJ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "N8CRYUBTUE378VHJ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "FMZ94AJH8354XRME" : { - "FMZ94AJH8354XRME.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "FMZ94AJH8354XRME", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FMZ94AJH8354XRME.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "FMZ94AJH8354XRME.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FMZ94AJH8354XRME.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "FMZ94AJH8354XRME", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FMZ94AJH8354XRME.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "FMZ94AJH8354XRME.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2580000000" - }, - "appliesTo" : [ ] - }, - "FMZ94AJH8354XRME.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "FMZ94AJH8354XRME.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1738" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FMZ94AJH8354XRME.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "FMZ94AJH8354XRME", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "FMZ94AJH8354XRME.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "FMZ94AJH8354XRME.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "FMZ94AJH8354XRME.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "FMZ94AJH8354XRME.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3468" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FMZ94AJH8354XRME.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "FMZ94AJH8354XRME", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "FMZ94AJH8354XRME.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "FMZ94AJH8354XRME.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2767" - }, - "appliesTo" : [ ] - }, - "FMZ94AJH8354XRME.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "FMZ94AJH8354XRME.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FMZ94AJH8354XRME.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "FMZ94AJH8354XRME", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "FMZ94AJH8354XRME.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "FMZ94AJH8354XRME.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4066" - }, - "appliesTo" : [ ] - }, - "FMZ94AJH8354XRME.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "FMZ94AJH8354XRME.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FMZ94AJH8354XRME.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "FMZ94AJH8354XRME", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FMZ94AJH8354XRME.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "FMZ94AJH8354XRME.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "FMZ94AJH8354XRME.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "FMZ94AJH8354XRME.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3932" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FMZ94AJH8354XRME.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "FMZ94AJH8354XRME", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "FMZ94AJH8354XRME.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "FMZ94AJH8354XRME.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6677" - }, - "appliesTo" : [ ] - }, - "FMZ94AJH8354XRME.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "FMZ94AJH8354XRME.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FMZ94AJH8354XRME.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "FMZ94AJH8354XRME", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FMZ94AJH8354XRME.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "FMZ94AJH8354XRME.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FMZ94AJH8354XRME.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "FMZ94AJH8354XRME", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "FMZ94AJH8354XRME.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "FMZ94AJH8354XRME.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9518" - }, - "appliesTo" : [ ] - }, - "FMZ94AJH8354XRME.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "FMZ94AJH8354XRME.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FMZ94AJH8354XRME.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "FMZ94AJH8354XRME", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "FMZ94AJH8354XRME.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "FMZ94AJH8354XRME.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FMZ94AJH8354XRME.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "FMZ94AJH8354XRME", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "FMZ94AJH8354XRME.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "FMZ94AJH8354XRME.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1506" - }, - "appliesTo" : [ ] - }, - "FMZ94AJH8354XRME.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "FMZ94AJH8354XRME.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "8U8GT7P4FU5ABATQ" : { - "8U8GT7P4FU5ABATQ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "8U8GT7P4FU5ABATQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8U8GT7P4FU5ABATQ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "8U8GT7P4FU5ABATQ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14352" - }, - "appliesTo" : [ ] - }, - "8U8GT7P4FU5ABATQ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "8U8GT7P4FU5ABATQ.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8U8GT7P4FU5ABATQ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "8U8GT7P4FU5ABATQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8U8GT7P4FU5ABATQ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "8U8GT7P4FU5ABATQ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8U8GT7P4FU5ABATQ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "8U8GT7P4FU5ABATQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8U8GT7P4FU5ABATQ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "8U8GT7P4FU5ABATQ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7580000000" - }, - "appliesTo" : [ ] - }, - "8U8GT7P4FU5ABATQ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "8U8GT7P4FU5ABATQ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16505" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8U8GT7P4FU5ABATQ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "8U8GT7P4FU5ABATQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8U8GT7P4FU5ABATQ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "8U8GT7P4FU5ABATQ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8U8GT7P4FU5ABATQ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "8U8GT7P4FU5ABATQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8U8GT7P4FU5ABATQ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "8U8GT7P4FU5ABATQ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30398" - }, - "appliesTo" : [ ] - }, - "8U8GT7P4FU5ABATQ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "8U8GT7P4FU5ABATQ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8U8GT7P4FU5ABATQ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "8U8GT7P4FU5ABATQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8U8GT7P4FU5ABATQ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "8U8GT7P4FU5ABATQ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19628" - }, - "appliesTo" : [ ] - }, - "8U8GT7P4FU5ABATQ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "8U8GT7P4FU5ABATQ.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8U8GT7P4FU5ABATQ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "8U8GT7P4FU5ABATQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8U8GT7P4FU5ABATQ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "8U8GT7P4FU5ABATQ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9433" - }, - "appliesTo" : [ ] - }, - "8U8GT7P4FU5ABATQ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "8U8GT7P4FU5ABATQ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8U8GT7P4FU5ABATQ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "8U8GT7P4FU5ABATQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8U8GT7P4FU5ABATQ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "8U8GT7P4FU5ABATQ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8U8GT7P4FU5ABATQ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "8U8GT7P4FU5ABATQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8U8GT7P4FU5ABATQ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "8U8GT7P4FU5ABATQ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22401" - }, - "appliesTo" : [ ] - }, - "8U8GT7P4FU5ABATQ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "8U8GT7P4FU5ABATQ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8U8GT7P4FU5ABATQ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "8U8GT7P4FU5ABATQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8U8GT7P4FU5ABATQ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "8U8GT7P4FU5ABATQ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10848" - }, - "appliesTo" : [ ] - }, - "8U8GT7P4FU5ABATQ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "8U8GT7P4FU5ABATQ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8U8GT7P4FU5ABATQ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "8U8GT7P4FU5ABATQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8U8GT7P4FU5ABATQ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "8U8GT7P4FU5ABATQ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35766" - }, - "appliesTo" : [ ] - }, - "8U8GT7P4FU5ABATQ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "8U8GT7P4FU5ABATQ.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8U8GT7P4FU5ABATQ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "8U8GT7P4FU5ABATQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8U8GT7P4FU5ABATQ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "8U8GT7P4FU5ABATQ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "DJEXMYSZ7CJSUDPF" : { - "DJEXMYSZ7CJSUDPF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "DJEXMYSZ7CJSUDPF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "DJEXMYSZ7CJSUDPF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "DJEXMYSZ7CJSUDPF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "61" - }, - "appliesTo" : [ ] - }, - "DJEXMYSZ7CJSUDPF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "DJEXMYSZ7CJSUDPF.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0023000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DJEXMYSZ7CJSUDPF.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "DJEXMYSZ7CJSUDPF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "DJEXMYSZ7CJSUDPF.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "DJEXMYSZ7CJSUDPF.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0072000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DJEXMYSZ7CJSUDPF.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "DJEXMYSZ7CJSUDPF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "DJEXMYSZ7CJSUDPF.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "DJEXMYSZ7CJSUDPF.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DJEXMYSZ7CJSUDPF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "DJEXMYSZ7CJSUDPF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "DJEXMYSZ7CJSUDPF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "DJEXMYSZ7CJSUDPF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30" - }, - "appliesTo" : [ ] - }, - "DJEXMYSZ7CJSUDPF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "DJEXMYSZ7CJSUDPF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0034000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DJEXMYSZ7CJSUDPF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "DJEXMYSZ7CJSUDPF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "DJEXMYSZ7CJSUDPF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "DJEXMYSZ7CJSUDPF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "59" - }, - "appliesTo" : [ ] - }, - "DJEXMYSZ7CJSUDPF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "DJEXMYSZ7CJSUDPF.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DJEXMYSZ7CJSUDPF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "DJEXMYSZ7CJSUDPF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "DJEXMYSZ7CJSUDPF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "DJEXMYSZ7CJSUDPF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "115" - }, - "appliesTo" : [ ] - }, - "DJEXMYSZ7CJSUDPF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "DJEXMYSZ7CJSUDPF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "RW6CPEJMXU8H79H3" : { - "RW6CPEJMXU8H79H3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "RW6CPEJMXU8H79H3", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "RW6CPEJMXU8H79H3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "RW6CPEJMXU8H79H3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2230000000" - }, - "appliesTo" : [ ] - }, - "RW6CPEJMXU8H79H3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "RW6CPEJMXU8H79H3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1954" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RW6CPEJMXU8H79H3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "RW6CPEJMXU8H79H3", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "RW6CPEJMXU8H79H3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "RW6CPEJMXU8H79H3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3830" - }, - "appliesTo" : [ ] - }, - "RW6CPEJMXU8H79H3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "RW6CPEJMXU8H79H3.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RW6CPEJMXU8H79H3.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "RW6CPEJMXU8H79H3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RW6CPEJMXU8H79H3.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "RW6CPEJMXU8H79H3.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4431" - }, - "appliesTo" : [ ] - }, - "RW6CPEJMXU8H79H3.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "RW6CPEJMXU8H79H3.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RW6CPEJMXU8H79H3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "RW6CPEJMXU8H79H3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RW6CPEJMXU8H79H3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "RW6CPEJMXU8H79H3.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RW6CPEJMXU8H79H3.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "RW6CPEJMXU8H79H3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RW6CPEJMXU8H79H3.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "RW6CPEJMXU8H79H3.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RW6CPEJMXU8H79H3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "RW6CPEJMXU8H79H3", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "RW6CPEJMXU8H79H3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "RW6CPEJMXU8H79H3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4059" - }, - "appliesTo" : [ ] - }, - "RW6CPEJMXU8H79H3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "RW6CPEJMXU8H79H3.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RW6CPEJMXU8H79H3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "RW6CPEJMXU8H79H3", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "RW6CPEJMXU8H79H3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "RW6CPEJMXU8H79H3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7609" - }, - "appliesTo" : [ ] - }, - "RW6CPEJMXU8H79H3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "RW6CPEJMXU8H79H3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RW6CPEJMXU8H79H3.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "RW6CPEJMXU8H79H3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RW6CPEJMXU8H79H3.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "RW6CPEJMXU8H79H3.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9122" - }, - "appliesTo" : [ ] - }, - "RW6CPEJMXU8H79H3.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "RW6CPEJMXU8H79H3.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RW6CPEJMXU8H79H3.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "RW6CPEJMXU8H79H3", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "RW6CPEJMXU8H79H3.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "RW6CPEJMXU8H79H3.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RW6CPEJMXU8H79H3.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "RW6CPEJMXU8H79H3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RW6CPEJMXU8H79H3.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "RW6CPEJMXU8H79H3.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RW6CPEJMXU8H79H3.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "RW6CPEJMXU8H79H3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RW6CPEJMXU8H79H3.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "RW6CPEJMXU8H79H3.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2261" - }, - "appliesTo" : [ ] - }, - "RW6CPEJMXU8H79H3.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "RW6CPEJMXU8H79H3.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RW6CPEJMXU8H79H3.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "RW6CPEJMXU8H79H3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RW6CPEJMXU8H79H3.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "RW6CPEJMXU8H79H3.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4654" - }, - "appliesTo" : [ ] - }, - "RW6CPEJMXU8H79H3.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "RW6CPEJMXU8H79H3.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "JCAJXA8C736VK6KZ" : { - "JCAJXA8C736VK6KZ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "JCAJXA8C736VK6KZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JCAJXA8C736VK6KZ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "JCAJXA8C736VK6KZ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0690000000" - }, - "appliesTo" : [ ] - }, - "JCAJXA8C736VK6KZ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "JCAJXA8C736VK6KZ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9424" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "JCAJXA8C736VK6KZ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "JCAJXA8C736VK6KZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JCAJXA8C736VK6KZ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "JCAJXA8C736VK6KZ.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "JCAJXA8C736VK6KZ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "JCAJXA8C736VK6KZ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35921" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "JCAJXA8C736VK6KZ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "JCAJXA8C736VK6KZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JCAJXA8C736VK6KZ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "JCAJXA8C736VK6KZ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30024" - }, - "appliesTo" : [ ] - }, - "JCAJXA8C736VK6KZ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "JCAJXA8C736VK6KZ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JCAJXA8C736VK6KZ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "JCAJXA8C736VK6KZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JCAJXA8C736VK6KZ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "JCAJXA8C736VK6KZ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18325" - }, - "appliesTo" : [ ] - }, - "JCAJXA8C736VK6KZ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "JCAJXA8C736VK6KZ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "JCAJXA8C736VK6KZ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "JCAJXA8C736VK6KZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JCAJXA8C736VK6KZ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "JCAJXA8C736VK6KZ.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "JCAJXA8C736VK6KZ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "JCAJXA8C736VK6KZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JCAJXA8C736VK6KZ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "JCAJXA8C736VK6KZ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15953" - }, - "appliesTo" : [ ] - }, - "JCAJXA8C736VK6KZ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "JCAJXA8C736VK6KZ.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "JCAJXA8C736VK6KZ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "JCAJXA8C736VK6KZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JCAJXA8C736VK6KZ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "JCAJXA8C736VK6KZ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8218" - }, - "appliesTo" : [ ] - }, - "JCAJXA8C736VK6KZ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "JCAJXA8C736VK6KZ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "JCAJXA8C736VK6KZ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "JCAJXA8C736VK6KZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JCAJXA8C736VK6KZ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "JCAJXA8C736VK6KZ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16052" - }, - "appliesTo" : [ ] - }, - "JCAJXA8C736VK6KZ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "JCAJXA8C736VK6KZ.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JCAJXA8C736VK6KZ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "JCAJXA8C736VK6KZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JCAJXA8C736VK6KZ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "JCAJXA8C736VK6KZ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "JCAJXA8C736VK6KZ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "JCAJXA8C736VK6KZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JCAJXA8C736VK6KZ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "JCAJXA8C736VK6KZ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "JCAJXA8C736VK6KZ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "JCAJXA8C736VK6KZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JCAJXA8C736VK6KZ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "JCAJXA8C736VK6KZ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18416" - }, - "appliesTo" : [ ] - }, - "JCAJXA8C736VK6KZ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "JCAJXA8C736VK6KZ.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "JCAJXA8C736VK6KZ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "JCAJXA8C736VK6KZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JCAJXA8C736VK6KZ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "JCAJXA8C736VK6KZ.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "FZXWWWKE7AQGFDHX" : { - "FZXWWWKE7AQGFDHX.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "FZXWWWKE7AQGFDHX", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "FZXWWWKE7AQGFDHX.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "FZXWWWKE7AQGFDHX.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8409" - }, - "appliesTo" : [ ] - }, - "FZXWWWKE7AQGFDHX.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "FZXWWWKE7AQGFDHX.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FZXWWWKE7AQGFDHX.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "FZXWWWKE7AQGFDHX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "FZXWWWKE7AQGFDHX.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "FZXWWWKE7AQGFDHX.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1455" - }, - "appliesTo" : [ ] - }, - "FZXWWWKE7AQGFDHX.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "FZXWWWKE7AQGFDHX.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FZXWWWKE7AQGFDHX.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "FZXWWWKE7AQGFDHX", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "FZXWWWKE7AQGFDHX.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "FZXWWWKE7AQGFDHX.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2298" - }, - "appliesTo" : [ ] - }, - "FZXWWWKE7AQGFDHX.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "FZXWWWKE7AQGFDHX.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FZXWWWKE7AQGFDHX.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "FZXWWWKE7AQGFDHX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "FZXWWWKE7AQGFDHX.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "FZXWWWKE7AQGFDHX.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FZXWWWKE7AQGFDHX.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "FZXWWWKE7AQGFDHX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "FZXWWWKE7AQGFDHX.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "FZXWWWKE7AQGFDHX.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "FZXWWWKE7AQGFDHX.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "FZXWWWKE7AQGFDHX.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3748" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "KTZYT2QK3KRKX3XT" : { - "KTZYT2QK3KRKX3XT.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "KTZYT2QK3KRKX3XT", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "KTZYT2QK3KRKX3XT.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "KTZYT2QK3KRKX3XT.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "81195" - }, - "appliesTo" : [ ] - }, - "KTZYT2QK3KRKX3XT.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "KTZYT2QK3KRKX3XT.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KTZYT2QK3KRKX3XT.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "KTZYT2QK3KRKX3XT", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "KTZYT2QK3KRKX3XT.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "KTZYT2QK3KRKX3XT.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.6500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KTZYT2QK3KRKX3XT.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "KTZYT2QK3KRKX3XT", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "KTZYT2QK3KRKX3XT.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "KTZYT2QK3KRKX3XT.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "KTZYT2QK3KRKX3XT.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "KTZYT2QK3KRKX3XT.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "160538" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KTZYT2QK3KRKX3XT.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "KTZYT2QK3KRKX3XT", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "KTZYT2QK3KRKX3XT.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "KTZYT2QK3KRKX3XT.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.0590000000" - }, - "appliesTo" : [ ] - }, - "KTZYT2QK3KRKX3XT.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "KTZYT2QK3KRKX3XT.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "106675" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KTZYT2QK3KRKX3XT.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "KTZYT2QK3KRKX3XT", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "KTZYT2QK3KRKX3XT.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "KTZYT2QK3KRKX3XT.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2020000000" - }, - "appliesTo" : [ ] - }, - "KTZYT2QK3KRKX3XT.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "KTZYT2QK3KRKX3XT.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "84158" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KTZYT2QK3KRKX3XT.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "KTZYT2QK3KRKX3XT", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "KTZYT2QK3KRKX3XT.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "KTZYT2QK3KRKX3XT.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.8260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KTZYT2QK3KRKX3XT.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "KTZYT2QK3KRKX3XT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KTZYT2QK3KRKX3XT.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "KTZYT2QK3KRKX3XT.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "11.0850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KTZYT2QK3KRKX3XT.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "KTZYT2QK3KRKX3XT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KTZYT2QK3KRKX3XT.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "KTZYT2QK3KRKX3XT.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46549" - }, - "appliesTo" : [ ] - }, - "KTZYT2QK3KRKX3XT.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "KTZYT2QK3KRKX3XT.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.3140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KTZYT2QK3KRKX3XT.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "KTZYT2QK3KRKX3XT", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "KTZYT2QK3KRKX3XT.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "KTZYT2QK3KRKX3XT.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.7990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KTZYT2QK3KRKX3XT.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "KTZYT2QK3KRKX3XT", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "KTZYT2QK3KRKX3XT.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "KTZYT2QK3KRKX3XT.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "209856" - }, - "appliesTo" : [ ] - }, - "KTZYT2QK3KRKX3XT.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "KTZYT2QK3KRKX3XT.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KTZYT2QK3KRKX3XT.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "KTZYT2QK3KRKX3XT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KTZYT2QK3KRKX3XT.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "KTZYT2QK3KRKX3XT.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "91493" - }, - "appliesTo" : [ ] - }, - "KTZYT2QK3KRKX3XT.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "KTZYT2QK3KRKX3XT.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KTZYT2QK3KRKX3XT.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "KTZYT2QK3KRKX3XT", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "KTZYT2QK3KRKX3XT.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "KTZYT2QK3KRKX3XT.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "41295" - }, - "appliesTo" : [ ] - }, - "KTZYT2QK3KRKX3XT.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "KTZYT2QK3KRKX3XT.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.7140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "X2XXBVJKW4AFD4PA" : { - "X2XXBVJKW4AFD4PA.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "X2XXBVJKW4AFD4PA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "X2XXBVJKW4AFD4PA.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "X2XXBVJKW4AFD4PA.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "X2XXBVJKW4AFD4PA.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "X2XXBVJKW4AFD4PA", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "X2XXBVJKW4AFD4PA.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "X2XXBVJKW4AFD4PA.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10378" - }, - "appliesTo" : [ ] - }, - "X2XXBVJKW4AFD4PA.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "X2XXBVJKW4AFD4PA.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "X2XXBVJKW4AFD4PA.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "X2XXBVJKW4AFD4PA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "X2XXBVJKW4AFD4PA.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "X2XXBVJKW4AFD4PA.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "X2XXBVJKW4AFD4PA.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "X2XXBVJKW4AFD4PA", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "X2XXBVJKW4AFD4PA.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "X2XXBVJKW4AFD4PA.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20313" - }, - "appliesTo" : [ ] - }, - "X2XXBVJKW4AFD4PA.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "X2XXBVJKW4AFD4PA.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "X2XXBVJKW4AFD4PA.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "X2XXBVJKW4AFD4PA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "X2XXBVJKW4AFD4PA.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "X2XXBVJKW4AFD4PA.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10919" - }, - "appliesTo" : [ ] - }, - "X2XXBVJKW4AFD4PA.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "X2XXBVJKW4AFD4PA.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "X2XXBVJKW4AFD4PA.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "X2XXBVJKW4AFD4PA", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "X2XXBVJKW4AFD4PA.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "X2XXBVJKW4AFD4PA.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7941" - }, - "appliesTo" : [ ] - }, - "X2XXBVJKW4AFD4PA.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "X2XXBVJKW4AFD4PA.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "X2XXBVJKW4AFD4PA.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "X2XXBVJKW4AFD4PA", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "X2XXBVJKW4AFD4PA.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "X2XXBVJKW4AFD4PA.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4570000000" - }, - "appliesTo" : [ ] - }, - "X2XXBVJKW4AFD4PA.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "X2XXBVJKW4AFD4PA.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4006" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "X2XXBVJKW4AFD4PA.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "X2XXBVJKW4AFD4PA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "X2XXBVJKW4AFD4PA.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "X2XXBVJKW4AFD4PA.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "X2XXBVJKW4AFD4PA.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "X2XXBVJKW4AFD4PA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X2XXBVJKW4AFD4PA.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "X2XXBVJKW4AFD4PA.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "X2XXBVJKW4AFD4PA.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "X2XXBVJKW4AFD4PA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X2XXBVJKW4AFD4PA.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "X2XXBVJKW4AFD4PA.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "X2XXBVJKW4AFD4PA.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "X2XXBVJKW4AFD4PA.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8487" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "X2XXBVJKW4AFD4PA.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "X2XXBVJKW4AFD4PA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "X2XXBVJKW4AFD4PA.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "X2XXBVJKW4AFD4PA.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "X2XXBVJKW4AFD4PA.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "X2XXBVJKW4AFD4PA.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21670" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "X2XXBVJKW4AFD4PA.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "X2XXBVJKW4AFD4PA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X2XXBVJKW4AFD4PA.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "X2XXBVJKW4AFD4PA.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4890000000" - }, - "appliesTo" : [ ] - }, - "X2XXBVJKW4AFD4PA.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "X2XXBVJKW4AFD4PA.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4285" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "3DKA632YPCBQAV5W" : { - "3DKA632YPCBQAV5W.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "3DKA632YPCBQAV5W", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "3DKA632YPCBQAV5W.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "3DKA632YPCBQAV5W.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14594" - }, - "appliesTo" : [ ] - }, - "3DKA632YPCBQAV5W.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "3DKA632YPCBQAV5W.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3DKA632YPCBQAV5W.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "3DKA632YPCBQAV5W", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "3DKA632YPCBQAV5W.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "3DKA632YPCBQAV5W.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9680" - }, - "appliesTo" : [ ] - }, - "3DKA632YPCBQAV5W.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "3DKA632YPCBQAV5W.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3DKA632YPCBQAV5W.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "3DKA632YPCBQAV5W", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "3DKA632YPCBQAV5W.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "3DKA632YPCBQAV5W.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3DKA632YPCBQAV5W.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "3DKA632YPCBQAV5W", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3DKA632YPCBQAV5W.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "3DKA632YPCBQAV5W.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27064" - }, - "appliesTo" : [ ] - }, - "3DKA632YPCBQAV5W.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "3DKA632YPCBQAV5W.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3DKA632YPCBQAV5W.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "3DKA632YPCBQAV5W", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "3DKA632YPCBQAV5W.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "3DKA632YPCBQAV5W.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "3DKA632YPCBQAV5W.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "3DKA632YPCBQAV5W.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "40073" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3DKA632YPCBQAV5W.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "3DKA632YPCBQAV5W", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "3DKA632YPCBQAV5W.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "3DKA632YPCBQAV5W.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3DKA632YPCBQAV5W.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "3DKA632YPCBQAV5W", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3DKA632YPCBQAV5W.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "3DKA632YPCBQAV5W.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3DKA632YPCBQAV5W.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "3DKA632YPCBQAV5W", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3DKA632YPCBQAV5W.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "3DKA632YPCBQAV5W.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5610000000" - }, - "appliesTo" : [ ] - }, - "3DKA632YPCBQAV5W.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "3DKA632YPCBQAV5W.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13676" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3DKA632YPCBQAV5W.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "3DKA632YPCBQAV5W", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "3DKA632YPCBQAV5W.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "3DKA632YPCBQAV5W.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26573" - }, - "appliesTo" : [ ] - }, - "3DKA632YPCBQAV5W.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "3DKA632YPCBQAV5W.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3DKA632YPCBQAV5W.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "3DKA632YPCBQAV5W", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "3DKA632YPCBQAV5W.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "3DKA632YPCBQAV5W.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30385" - }, - "appliesTo" : [ ] - }, - "3DKA632YPCBQAV5W.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "3DKA632YPCBQAV5W.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3DKA632YPCBQAV5W.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "3DKA632YPCBQAV5W", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "3DKA632YPCBQAV5W.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "3DKA632YPCBQAV5W.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19395" - }, - "appliesTo" : [ ] - }, - "3DKA632YPCBQAV5W.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "3DKA632YPCBQAV5W.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "5Q9H4XMF36Y7R6TM" : { - "5Q9H4XMF36Y7R6TM.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "5Q9H4XMF36Y7R6TM", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "5Q9H4XMF36Y7R6TM.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "5Q9H4XMF36Y7R6TM.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "5Q9H4XMF36Y7R6TM.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "5Q9H4XMF36Y7R6TM.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "387438" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "5Q9H4XMF36Y7R6TM.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "5Q9H4XMF36Y7R6TM", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "5Q9H4XMF36Y7R6TM.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "5Q9H4XMF36Y7R6TM.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "190064" - }, - "appliesTo" : [ ] - }, - "5Q9H4XMF36Y7R6TM.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "5Q9H4XMF36Y7R6TM.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.2320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5Q9H4XMF36Y7R6TM.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "5Q9H4XMF36Y7R6TM", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "5Q9H4XMF36Y7R6TM.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "5Q9H4XMF36Y7R6TM.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.9890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "5Q9H4XMF36Y7R6TM.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "5Q9H4XMF36Y7R6TM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5Q9H4XMF36Y7R6TM.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "5Q9H4XMF36Y7R6TM.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "66236" - }, - "appliesTo" : [ ] - }, - "5Q9H4XMF36Y7R6TM.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "5Q9H4XMF36Y7R6TM.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "5Q9H4XMF36Y7R6TM.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "5Q9H4XMF36Y7R6TM", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "5Q9H4XMF36Y7R6TM.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "5Q9H4XMF36Y7R6TM.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.1580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "5Q9H4XMF36Y7R6TM.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "5Q9H4XMF36Y7R6TM", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "5Q9H4XMF36Y7R6TM.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "5Q9H4XMF36Y7R6TM.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4560000000" - }, - "appliesTo" : [ ] - }, - "5Q9H4XMF36Y7R6TM.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "5Q9H4XMF36Y7R6TM.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "65318" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5Q9H4XMF36Y7R6TM.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "5Q9H4XMF36Y7R6TM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5Q9H4XMF36Y7R6TM.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "5Q9H4XMF36Y7R6TM.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "132184" - }, - "appliesTo" : [ ] - }, - "5Q9H4XMF36Y7R6TM.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "5Q9H4XMF36Y7R6TM.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "5Q9H4XMF36Y7R6TM.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "5Q9H4XMF36Y7R6TM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5Q9H4XMF36Y7R6TM.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "5Q9H4XMF36Y7R6TM.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.2050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "5Q9H4XMF36Y7R6TM.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "5Q9H4XMF36Y7R6TM", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "5Q9H4XMF36Y7R6TM.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "5Q9H4XMF36Y7R6TM.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "194060" - }, - "appliesTo" : [ ] - }, - "5Q9H4XMF36Y7R6TM.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "5Q9H4XMF36Y7R6TM.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "5Q9H4XMF36Y7R6TM.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "5Q9H4XMF36Y7R6TM", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "5Q9H4XMF36Y7R6TM.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "5Q9H4XMF36Y7R6TM.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "130383" - }, - "appliesTo" : [ ] - }, - "5Q9H4XMF36Y7R6TM.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "5Q9H4XMF36Y7R6TM.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5Q9H4XMF36Y7R6TM.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "5Q9H4XMF36Y7R6TM", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "5Q9H4XMF36Y7R6TM.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "5Q9H4XMF36Y7R6TM.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "378562" - }, - "appliesTo" : [ ] - }, - "5Q9H4XMF36Y7R6TM.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "5Q9H4XMF36Y7R6TM.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "9YBEBPDN4MSDTQMG" : { - "9YBEBPDN4MSDTQMG.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "9YBEBPDN4MSDTQMG", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "9YBEBPDN4MSDTQMG.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "9YBEBPDN4MSDTQMG.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3251" - }, - "appliesTo" : [ ] - }, - "9YBEBPDN4MSDTQMG.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "9YBEBPDN4MSDTQMG.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9YBEBPDN4MSDTQMG.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "9YBEBPDN4MSDTQMG", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "9YBEBPDN4MSDTQMG.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "9YBEBPDN4MSDTQMG.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6317" - }, - "appliesTo" : [ ] - }, - "9YBEBPDN4MSDTQMG.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "9YBEBPDN4MSDTQMG.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9YBEBPDN4MSDTQMG.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "9YBEBPDN4MSDTQMG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9YBEBPDN4MSDTQMG.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "9YBEBPDN4MSDTQMG.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7722000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9YBEBPDN4MSDTQMG.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "9YBEBPDN4MSDTQMG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9YBEBPDN4MSDTQMG.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "9YBEBPDN4MSDTQMG.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6123000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9YBEBPDN4MSDTQMG.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "9YBEBPDN4MSDTQMG", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "9YBEBPDN4MSDTQMG.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "9YBEBPDN4MSDTQMG.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6502" - }, - "appliesTo" : [ ] - }, - "9YBEBPDN4MSDTQMG.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "9YBEBPDN4MSDTQMG.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9YBEBPDN4MSDTQMG.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "9YBEBPDN4MSDTQMG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9YBEBPDN4MSDTQMG.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "9YBEBPDN4MSDTQMG.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2812000000" - }, - "appliesTo" : [ ] - }, - "9YBEBPDN4MSDTQMG.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "9YBEBPDN4MSDTQMG.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7400" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9YBEBPDN4MSDTQMG.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "9YBEBPDN4MSDTQMG", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "9YBEBPDN4MSDTQMG.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "9YBEBPDN4MSDTQMG.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12255" - }, - "appliesTo" : [ ] - }, - "9YBEBPDN4MSDTQMG.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "9YBEBPDN4MSDTQMG.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9YBEBPDN4MSDTQMG.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "9YBEBPDN4MSDTQMG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9YBEBPDN4MSDTQMG.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "9YBEBPDN4MSDTQMG.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5367000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9YBEBPDN4MSDTQMG.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "9YBEBPDN4MSDTQMG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9YBEBPDN4MSDTQMG.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "9YBEBPDN4MSDTQMG.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14508" - }, - "appliesTo" : [ ] - }, - "9YBEBPDN4MSDTQMG.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "9YBEBPDN4MSDTQMG.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9YBEBPDN4MSDTQMG.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "9YBEBPDN4MSDTQMG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9YBEBPDN4MSDTQMG.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "9YBEBPDN4MSDTQMG.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7240" - }, - "appliesTo" : [ ] - }, - "9YBEBPDN4MSDTQMG.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "9YBEBPDN4MSDTQMG.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9YBEBPDN4MSDTQMG.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "9YBEBPDN4MSDTQMG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9YBEBPDN4MSDTQMG.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "9YBEBPDN4MSDTQMG.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8831000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9YBEBPDN4MSDTQMG.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "9YBEBPDN4MSDTQMG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9YBEBPDN4MSDTQMG.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "9YBEBPDN4MSDTQMG.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3722" - }, - "appliesTo" : [ ] - }, - "9YBEBPDN4MSDTQMG.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "9YBEBPDN4MSDTQMG.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4178000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "AB34GJVVFDYBBGDJ" : { - "AB34GJVVFDYBBGDJ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "AB34GJVVFDYBBGDJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "AB34GJVVFDYBBGDJ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "AB34GJVVFDYBBGDJ.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2200000000" - }, - "appliesTo" : [ ] - }, - "AB34GJVVFDYBBGDJ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "AB34GJVVFDYBBGDJ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2031" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AB34GJVVFDYBBGDJ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "AB34GJVVFDYBBGDJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "AB34GJVVFDYBBGDJ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "AB34GJVVFDYBBGDJ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9207" - }, - "appliesTo" : [ ] - }, - "AB34GJVVFDYBBGDJ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "AB34GJVVFDYBBGDJ.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "AB34GJVVFDYBBGDJ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "AB34GJVVFDYBBGDJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "AB34GJVVFDYBBGDJ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "AB34GJVVFDYBBGDJ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "AB34GJVVFDYBBGDJ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "AB34GJVVFDYBBGDJ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7343" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AB34GJVVFDYBBGDJ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "AB34GJVVFDYBBGDJ", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "AB34GJVVFDYBBGDJ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "AB34GJVVFDYBBGDJ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "AB34GJVVFDYBBGDJ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "AB34GJVVFDYBBGDJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "AB34GJVVFDYBBGDJ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "AB34GJVVFDYBBGDJ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "AB34GJVVFDYBBGDJ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "AB34GJVVFDYBBGDJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AB34GJVVFDYBBGDJ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "AB34GJVVFDYBBGDJ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3635" - }, - "appliesTo" : [ ] - }, - "AB34GJVVFDYBBGDJ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "AB34GJVVFDYBBGDJ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "AB34GJVVFDYBBGDJ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "AB34GJVVFDYBBGDJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "AB34GJVVFDYBBGDJ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "AB34GJVVFDYBBGDJ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1304" - }, - "appliesTo" : [ ] - }, - "AB34GJVVFDYBBGDJ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "AB34GJVVFDYBBGDJ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AB34GJVVFDYBBGDJ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "AB34GJVVFDYBBGDJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "AB34GJVVFDYBBGDJ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "AB34GJVVFDYBBGDJ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3286" - }, - "appliesTo" : [ ] - }, - "AB34GJVVFDYBBGDJ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "AB34GJVVFDYBBGDJ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AB34GJVVFDYBBGDJ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "AB34GJVVFDYBBGDJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AB34GJVVFDYBBGDJ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "AB34GJVVFDYBBGDJ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2750000000" - }, - "appliesTo" : [ ] - }, - "AB34GJVVFDYBBGDJ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "AB34GJVVFDYBBGDJ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1273" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "AB34GJVVFDYBBGDJ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "AB34GJVVFDYBBGDJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AB34GJVVFDYBBGDJ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "AB34GJVVFDYBBGDJ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "AB34GJVVFDYBBGDJ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "AB34GJVVFDYBBGDJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "AB34GJVVFDYBBGDJ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "AB34GJVVFDYBBGDJ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3521" - }, - "appliesTo" : [ ] - }, - "AB34GJVVFDYBBGDJ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "AB34GJVVFDYBBGDJ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "WMZMV9VFMDY39S43" : { - "WMZMV9VFMDY39S43.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "WMZMV9VFMDY39S43", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "WMZMV9VFMDY39S43.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "WMZMV9VFMDY39S43.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "WMZMV9VFMDY39S43.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "WMZMV9VFMDY39S43.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "245350" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WMZMV9VFMDY39S43.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "WMZMV9VFMDY39S43", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "WMZMV9VFMDY39S43.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "WMZMV9VFMDY39S43.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "141440" - }, - "appliesTo" : [ ] - }, - "WMZMV9VFMDY39S43.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "WMZMV9VFMDY39S43.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.3820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WMZMV9VFMDY39S43.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "WMZMV9VFMDY39S43", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "WMZMV9VFMDY39S43.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "WMZMV9VFMDY39S43.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.2880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "WMZMV9VFMDY39S43.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "WMZMV9VFMDY39S43", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "WMZMV9VFMDY39S43.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "WMZMV9VFMDY39S43.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "11.3900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WMZMV9VFMDY39S43.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "WMZMV9VFMDY39S43", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WMZMV9VFMDY39S43.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "WMZMV9VFMDY39S43.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "118196" - }, - "appliesTo" : [ ] - }, - "WMZMV9VFMDY39S43.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "WMZMV9VFMDY39S43.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WMZMV9VFMDY39S43.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "WMZMV9VFMDY39S43", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "WMZMV9VFMDY39S43.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "WMZMV9VFMDY39S43.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "278769" - }, - "appliesTo" : [ ] - }, - "WMZMV9VFMDY39S43.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "WMZMV9VFMDY39S43.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WMZMV9VFMDY39S43.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "WMZMV9VFMDY39S43", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "WMZMV9VFMDY39S43.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "WMZMV9VFMDY39S43.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.1520000000" - }, - "appliesTo" : [ ] - }, - "WMZMV9VFMDY39S43.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "WMZMV9VFMDY39S43.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "53892" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WMZMV9VFMDY39S43.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "WMZMV9VFMDY39S43", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "WMZMV9VFMDY39S43.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "WMZMV9VFMDY39S43.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.7720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "WMZMV9VFMDY39S43.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "WMZMV9VFMDY39S43", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WMZMV9VFMDY39S43.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "WMZMV9VFMDY39S43.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.2460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WMZMV9VFMDY39S43.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "WMZMV9VFMDY39S43", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WMZMV9VFMDY39S43.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "WMZMV9VFMDY39S43.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.8540000000" - }, - "appliesTo" : [ ] - }, - "WMZMV9VFMDY39S43.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "WMZMV9VFMDY39S43.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "60041" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WMZMV9VFMDY39S43.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "WMZMV9VFMDY39S43", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "WMZMV9VFMDY39S43.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "WMZMV9VFMDY39S43.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "106143" - }, - "appliesTo" : [ ] - }, - "WMZMV9VFMDY39S43.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "WMZMV9VFMDY39S43.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WMZMV9VFMDY39S43.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "WMZMV9VFMDY39S43", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "WMZMV9VFMDY39S43.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "WMZMV9VFMDY39S43.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.8720000000" - }, - "appliesTo" : [ ] - }, - "WMZMV9VFMDY39S43.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "WMZMV9VFMDY39S43.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "128036" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "H8WYYS7YF6HH44J2" : { - "H8WYYS7YF6HH44J2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "H8WYYS7YF6HH44J2", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "H8WYYS7YF6HH44J2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "H8WYYS7YF6HH44J2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "761" - }, - "appliesTo" : [ ] - }, - "H8WYYS7YF6HH44J2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "H8WYYS7YF6HH44J2.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "H8WYYS7YF6HH44J2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "H8WYYS7YF6HH44J2", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "H8WYYS7YF6HH44J2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "H8WYYS7YF6HH44J2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "120" - }, - "appliesTo" : [ ] - }, - "H8WYYS7YF6HH44J2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "H8WYYS7YF6HH44J2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0737000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "H8WYYS7YF6HH44J2.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "H8WYYS7YF6HH44J2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H8WYYS7YF6HH44J2.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "H8WYYS7YF6HH44J2.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "796" - }, - "appliesTo" : [ ] - }, - "H8WYYS7YF6HH44J2.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "H8WYYS7YF6HH44J2.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "H8WYYS7YF6HH44J2.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "H8WYYS7YF6HH44J2", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "H8WYYS7YF6HH44J2.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "H8WYYS7YF6HH44J2.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "280" - }, - "appliesTo" : [ ] - }, - "H8WYYS7YF6HH44J2.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "H8WYYS7YF6HH44J2.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0707000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "H8WYYS7YF6HH44J2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "H8WYYS7YF6HH44J2", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "H8WYYS7YF6HH44J2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "H8WYYS7YF6HH44J2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2035" - }, - "appliesTo" : [ ] - }, - "H8WYYS7YF6HH44J2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "H8WYYS7YF6HH44J2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "H8WYYS7YF6HH44J2.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "H8WYYS7YF6HH44J2", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "H8WYYS7YF6HH44J2.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "H8WYYS7YF6HH44J2.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0831000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "H8WYYS7YF6HH44J2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "H8WYYS7YF6HH44J2", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "H8WYYS7YF6HH44J2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "H8WYYS7YF6HH44J2.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0887000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "H8WYYS7YF6HH44J2.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "H8WYYS7YF6HH44J2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H8WYYS7YF6HH44J2.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "H8WYYS7YF6HH44J2.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "138" - }, - "appliesTo" : [ ] - }, - "H8WYYS7YF6HH44J2.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "H8WYYS7YF6HH44J2.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0757000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "H8WYYS7YF6HH44J2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "H8WYYS7YF6HH44J2", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "H8WYYS7YF6HH44J2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "H8WYYS7YF6HH44J2.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0693000000" - }, - "appliesTo" : [ ] - }, - "H8WYYS7YF6HH44J2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "H8WYYS7YF6HH44J2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "244" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "H8WYYS7YF6HH44J2.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "H8WYYS7YF6HH44J2", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "H8WYYS7YF6HH44J2.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "H8WYYS7YF6HH44J2.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2127" - }, - "appliesTo" : [ ] - }, - "H8WYYS7YF6HH44J2.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "H8WYYS7YF6HH44J2.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "H8WYYS7YF6HH44J2.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "H8WYYS7YF6HH44J2", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "H8WYYS7YF6HH44J2.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "H8WYYS7YF6HH44J2.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "H8WYYS7YF6HH44J2.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "H8WYYS7YF6HH44J2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H8WYYS7YF6HH44J2.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "H8WYYS7YF6HH44J2.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0931000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "4Q997J8DQYG2634Z" : { - "4Q997J8DQYG2634Z.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "4Q997J8DQYG2634Z", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "4Q997J8DQYG2634Z.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "4Q997J8DQYG2634Z.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15484" - }, - "appliesTo" : [ ] - }, - "4Q997J8DQYG2634Z.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "4Q997J8DQYG2634Z.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4Q997J8DQYG2634Z.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "4Q997J8DQYG2634Z", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "4Q997J8DQYG2634Z.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "4Q997J8DQYG2634Z.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "4Q997J8DQYG2634Z.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "4Q997J8DQYG2634Z", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "4Q997J8DQYG2634Z.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "4Q997J8DQYG2634Z.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "36402" - }, - "appliesTo" : [ ] - }, - "4Q997J8DQYG2634Z.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "4Q997J8DQYG2634Z.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4Q997J8DQYG2634Z.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "4Q997J8DQYG2634Z", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "4Q997J8DQYG2634Z.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "4Q997J8DQYG2634Z.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15233" - }, - "appliesTo" : [ ] - }, - "4Q997J8DQYG2634Z.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "4Q997J8DQYG2634Z.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4Q997J8DQYG2634Z.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "4Q997J8DQYG2634Z", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "4Q997J8DQYG2634Z.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "4Q997J8DQYG2634Z.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6217" - }, - "appliesTo" : [ ] - }, - "4Q997J8DQYG2634Z.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "4Q997J8DQYG2634Z.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "D35U33PKHD4MZRB5" : { - "D35U33PKHD4MZRB5.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "D35U33PKHD4MZRB5", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "D35U33PKHD4MZRB5.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "D35U33PKHD4MZRB5.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "D35U33PKHD4MZRB5.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "D35U33PKHD4MZRB5", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "D35U33PKHD4MZRB5.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "D35U33PKHD4MZRB5.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0940000000" - }, - "appliesTo" : [ ] - }, - "D35U33PKHD4MZRB5.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "D35U33PKHD4MZRB5.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2468" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "D35U33PKHD4MZRB5.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "D35U33PKHD4MZRB5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "D35U33PKHD4MZRB5.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "D35U33PKHD4MZRB5.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2304" - }, - "appliesTo" : [ ] - }, - "D35U33PKHD4MZRB5.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "D35U33PKHD4MZRB5.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "D35U33PKHD4MZRB5.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "D35U33PKHD4MZRB5", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "D35U33PKHD4MZRB5.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "D35U33PKHD4MZRB5.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4840" - }, - "appliesTo" : [ ] - }, - "D35U33PKHD4MZRB5.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "D35U33PKHD4MZRB5.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "D35U33PKHD4MZRB5.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "D35U33PKHD4MZRB5", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "D35U33PKHD4MZRB5.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "D35U33PKHD4MZRB5.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "D35U33PKHD4MZRB5.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "D35U33PKHD4MZRB5", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "D35U33PKHD4MZRB5.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "D35U33PKHD4MZRB5.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4162" - }, - "appliesTo" : [ ] - }, - "D35U33PKHD4MZRB5.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "D35U33PKHD4MZRB5.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "D35U33PKHD4MZRB5.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "D35U33PKHD4MZRB5", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "D35U33PKHD4MZRB5.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "D35U33PKHD4MZRB5.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2031" - }, - "appliesTo" : [ ] - }, - "D35U33PKHD4MZRB5.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "D35U33PKHD4MZRB5.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "D35U33PKHD4MZRB5.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "D35U33PKHD4MZRB5", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "D35U33PKHD4MZRB5.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "D35U33PKHD4MZRB5.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2197" - }, - "appliesTo" : [ ] - }, - "D35U33PKHD4MZRB5.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "D35U33PKHD4MZRB5.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "D35U33PKHD4MZRB5.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "D35U33PKHD4MZRB5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "D35U33PKHD4MZRB5.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "D35U33PKHD4MZRB5.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "D35U33PKHD4MZRB5.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "D35U33PKHD4MZRB5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "D35U33PKHD4MZRB5.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "D35U33PKHD4MZRB5.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1204" - }, - "appliesTo" : [ ] - }, - "D35U33PKHD4MZRB5.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "D35U33PKHD4MZRB5.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "D35U33PKHD4MZRB5.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "D35U33PKHD4MZRB5", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "D35U33PKHD4MZRB5.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "D35U33PKHD4MZRB5.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1064" - }, - "appliesTo" : [ ] - }, - "D35U33PKHD4MZRB5.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "D35U33PKHD4MZRB5.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "D35U33PKHD4MZRB5.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "D35U33PKHD4MZRB5", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "D35U33PKHD4MZRB5.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "D35U33PKHD4MZRB5.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "8X7RVDXN67YREJTH" : { - "8X7RVDXN67YREJTH.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "8X7RVDXN67YREJTH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8X7RVDXN67YREJTH.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "8X7RVDXN67YREJTH.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8X7RVDXN67YREJTH.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "8X7RVDXN67YREJTH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8X7RVDXN67YREJTH.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "8X7RVDXN67YREJTH.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1897" - }, - "appliesTo" : [ ] - }, - "8X7RVDXN67YREJTH.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "8X7RVDXN67YREJTH.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8X7RVDXN67YREJTH.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "8X7RVDXN67YREJTH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8X7RVDXN67YREJTH.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "8X7RVDXN67YREJTH.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2225" - }, - "appliesTo" : [ ] - }, - "8X7RVDXN67YREJTH.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "8X7RVDXN67YREJTH.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8X7RVDXN67YREJTH.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "8X7RVDXN67YREJTH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8X7RVDXN67YREJTH.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "8X7RVDXN67YREJTH.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8X7RVDXN67YREJTH.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "8X7RVDXN67YREJTH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8X7RVDXN67YREJTH.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "8X7RVDXN67YREJTH.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "965" - }, - "appliesTo" : [ ] - }, - "8X7RVDXN67YREJTH.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "8X7RVDXN67YREJTH.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8X7RVDXN67YREJTH.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "8X7RVDXN67YREJTH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8X7RVDXN67YREJTH.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "8X7RVDXN67YREJTH.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0380000000" - }, - "appliesTo" : [ ] - }, - "8X7RVDXN67YREJTH.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "8X7RVDXN67YREJTH.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1001" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8X7RVDXN67YREJTH.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "8X7RVDXN67YREJTH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8X7RVDXN67YREJTH.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "8X7RVDXN67YREJTH.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1133" - }, - "appliesTo" : [ ] - }, - "8X7RVDXN67YREJTH.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "8X7RVDXN67YREJTH.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8X7RVDXN67YREJTH.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "8X7RVDXN67YREJTH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8X7RVDXN67YREJTH.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "8X7RVDXN67YREJTH.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8X7RVDXN67YREJTH.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "8X7RVDXN67YREJTH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8X7RVDXN67YREJTH.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "8X7RVDXN67YREJTH.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "558" - }, - "appliesTo" : [ ] - }, - "8X7RVDXN67YREJTH.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "8X7RVDXN67YREJTH.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8X7RVDXN67YREJTH.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "8X7RVDXN67YREJTH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8X7RVDXN67YREJTH.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "8X7RVDXN67YREJTH.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8X7RVDXN67YREJTH.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "8X7RVDXN67YREJTH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8X7RVDXN67YREJTH.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "8X7RVDXN67YREJTH.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1096" - }, - "appliesTo" : [ ] - }, - "8X7RVDXN67YREJTH.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "8X7RVDXN67YREJTH.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8X7RVDXN67YREJTH.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "8X7RVDXN67YREJTH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8X7RVDXN67YREJTH.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "8X7RVDXN67YREJTH.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "491" - }, - "appliesTo" : [ ] - }, - "8X7RVDXN67YREJTH.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "8X7RVDXN67YREJTH.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "CMNW6M9D7DPHUTDD" : { - "CMNW6M9D7DPHUTDD.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "CMNW6M9D7DPHUTDD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CMNW6M9D7DPHUTDD.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "CMNW6M9D7DPHUTDD.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CMNW6M9D7DPHUTDD.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "CMNW6M9D7DPHUTDD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CMNW6M9D7DPHUTDD.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "CMNW6M9D7DPHUTDD.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1788" - }, - "appliesTo" : [ ] - }, - "CMNW6M9D7DPHUTDD.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "CMNW6M9D7DPHUTDD.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CMNW6M9D7DPHUTDD.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "CMNW6M9D7DPHUTDD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CMNW6M9D7DPHUTDD.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "CMNW6M9D7DPHUTDD.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6973" - }, - "appliesTo" : [ ] - }, - "CMNW6M9D7DPHUTDD.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "CMNW6M9D7DPHUTDD.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CMNW6M9D7DPHUTDD.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "CMNW6M9D7DPHUTDD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CMNW6M9D7DPHUTDD.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "CMNW6M9D7DPHUTDD.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2963000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CMNW6M9D7DPHUTDD.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "CMNW6M9D7DPHUTDD", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "CMNW6M9D7DPHUTDD.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "CMNW6M9D7DPHUTDD.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1574" - }, - "appliesTo" : [ ] - }, - "CMNW6M9D7DPHUTDD.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "CMNW6M9D7DPHUTDD.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CMNW6M9D7DPHUTDD.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "CMNW6M9D7DPHUTDD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CMNW6M9D7DPHUTDD.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "CMNW6M9D7DPHUTDD.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3449" - }, - "appliesTo" : [ ] - }, - "CMNW6M9D7DPHUTDD.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "CMNW6M9D7DPHUTDD.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CMNW6M9D7DPHUTDD.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "CMNW6M9D7DPHUTDD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CMNW6M9D7DPHUTDD.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "CMNW6M9D7DPHUTDD.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CMNW6M9D7DPHUTDD.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "CMNW6M9D7DPHUTDD", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "CMNW6M9D7DPHUTDD.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "CMNW6M9D7DPHUTDD.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5951" - }, - "appliesTo" : [ ] - }, - "CMNW6M9D7DPHUTDD.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "CMNW6M9D7DPHUTDD.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CMNW6M9D7DPHUTDD.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "CMNW6M9D7DPHUTDD", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "CMNW6M9D7DPHUTDD.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "CMNW6M9D7DPHUTDD.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3030" - }, - "appliesTo" : [ ] - }, - "CMNW6M9D7DPHUTDD.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "CMNW6M9D7DPHUTDD.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CMNW6M9D7DPHUTDD.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "CMNW6M9D7DPHUTDD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CMNW6M9D7DPHUTDD.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "CMNW6M9D7DPHUTDD.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1349000000" - }, - "appliesTo" : [ ] - }, - "CMNW6M9D7DPHUTDD.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "CMNW6M9D7DPHUTDD.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3556" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CMNW6M9D7DPHUTDD.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "CMNW6M9D7DPHUTDD", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "CMNW6M9D7DPHUTDD.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "CMNW6M9D7DPHUTDD.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3148" - }, - "appliesTo" : [ ] - }, - "CMNW6M9D7DPHUTDD.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "CMNW6M9D7DPHUTDD.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CMNW6M9D7DPHUTDD.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "CMNW6M9D7DPHUTDD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CMNW6M9D7DPHUTDD.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "CMNW6M9D7DPHUTDD.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4194000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "J6U6GMEFVH686HBN" : { - "J6U6GMEFVH686HBN.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "J6U6GMEFVH686HBN", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "J6U6GMEFVH686HBN.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "J6U6GMEFVH686HBN.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1466" - }, - "appliesTo" : [ ] - }, - "J6U6GMEFVH686HBN.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "J6U6GMEFVH686HBN.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "J6U6GMEFVH686HBN.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "J6U6GMEFVH686HBN", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "J6U6GMEFVH686HBN.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "J6U6GMEFVH686HBN.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "815" - }, - "appliesTo" : [ ] - }, - "J6U6GMEFVH686HBN.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "J6U6GMEFVH686HBN.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "J6U6GMEFVH686HBN.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "J6U6GMEFVH686HBN", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "J6U6GMEFVH686HBN.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "J6U6GMEFVH686HBN.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "719" - }, - "appliesTo" : [ ] - }, - "J6U6GMEFVH686HBN.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "J6U6GMEFVH686HBN.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "J6U6GMEFVH686HBN.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "J6U6GMEFVH686HBN", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "J6U6GMEFVH686HBN.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "J6U6GMEFVH686HBN.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "J6U6GMEFVH686HBN.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "J6U6GMEFVH686HBN", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "J6U6GMEFVH686HBN.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "J6U6GMEFVH686HBN.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0410000000" - }, - "appliesTo" : [ ] - }, - "J6U6GMEFVH686HBN.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "J6U6GMEFVH686HBN.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "473" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "YT5JTCAUXT587YW7" : { - "YT5JTCAUXT587YW7.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YT5JTCAUXT587YW7", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "YT5JTCAUXT587YW7.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YT5JTCAUXT587YW7.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1050000000" - }, - "appliesTo" : [ ] - }, - "YT5JTCAUXT587YW7.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YT5JTCAUXT587YW7.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "463" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YT5JTCAUXT587YW7.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YT5JTCAUXT587YW7", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YT5JTCAUXT587YW7.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YT5JTCAUXT587YW7.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1363" - }, - "appliesTo" : [ ] - }, - "YT5JTCAUXT587YW7.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YT5JTCAUXT587YW7.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YT5JTCAUXT587YW7.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YT5JTCAUXT587YW7", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YT5JTCAUXT587YW7.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YT5JTCAUXT587YW7.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YT5JTCAUXT587YW7.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "YT5JTCAUXT587YW7", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YT5JTCAUXT587YW7.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "YT5JTCAUXT587YW7.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YT5JTCAUXT587YW7.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YT5JTCAUXT587YW7", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YT5JTCAUXT587YW7.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YT5JTCAUXT587YW7.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "740" - }, - "appliesTo" : [ ] - }, - "YT5JTCAUXT587YW7.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YT5JTCAUXT587YW7.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YT5JTCAUXT587YW7.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "YT5JTCAUXT587YW7", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "YT5JTCAUXT587YW7.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "YT5JTCAUXT587YW7.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3854" - }, - "appliesTo" : [ ] - }, - "YT5JTCAUXT587YW7.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "YT5JTCAUXT587YW7.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YT5JTCAUXT587YW7.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YT5JTCAUXT587YW7", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YT5JTCAUXT587YW7.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YT5JTCAUXT587YW7.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3140" - }, - "appliesTo" : [ ] - }, - "YT5JTCAUXT587YW7.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YT5JTCAUXT587YW7.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YT5JTCAUXT587YW7.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "YT5JTCAUXT587YW7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YT5JTCAUXT587YW7.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "YT5JTCAUXT587YW7.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1418" - }, - "appliesTo" : [ ] - }, - "YT5JTCAUXT587YW7.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "YT5JTCAUXT587YW7.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YT5JTCAUXT587YW7.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "YT5JTCAUXT587YW7", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "YT5JTCAUXT587YW7.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "YT5JTCAUXT587YW7.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1010000000" - }, - "appliesTo" : [ ] - }, - "YT5JTCAUXT587YW7.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "YT5JTCAUXT587YW7.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1250" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YT5JTCAUXT587YW7.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "YT5JTCAUXT587YW7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YT5JTCAUXT587YW7.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "YT5JTCAUXT587YW7.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "455" - }, - "appliesTo" : [ ] - }, - "YT5JTCAUXT587YW7.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "YT5JTCAUXT587YW7.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YT5JTCAUXT587YW7.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "YT5JTCAUXT587YW7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YT5JTCAUXT587YW7.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "YT5JTCAUXT587YW7.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "7GGEQ9QF87XSSGPH" : { - "7GGEQ9QF87XSSGPH.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "7GGEQ9QF87XSSGPH", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7GGEQ9QF87XSSGPH.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "7GGEQ9QF87XSSGPH.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7GGEQ9QF87XSSGPH.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "7GGEQ9QF87XSSGPH", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7GGEQ9QF87XSSGPH.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "7GGEQ9QF87XSSGPH.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0620000000" - }, - "appliesTo" : [ ] - }, - "7GGEQ9QF87XSSGPH.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "7GGEQ9QF87XSSGPH.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1505" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7GGEQ9QF87XSSGPH.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "7GGEQ9QF87XSSGPH", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7GGEQ9QF87XSSGPH.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "7GGEQ9QF87XSSGPH.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3908" - }, - "appliesTo" : [ ] - }, - "7GGEQ9QF87XSSGPH.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "7GGEQ9QF87XSSGPH.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7GGEQ9QF87XSSGPH.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "7GGEQ9QF87XSSGPH", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7GGEQ9QF87XSSGPH.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "7GGEQ9QF87XSSGPH.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7GGEQ9QF87XSSGPH.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "7GGEQ9QF87XSSGPH", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7GGEQ9QF87XSSGPH.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "7GGEQ9QF87XSSGPH.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2935" - }, - "appliesTo" : [ ] - }, - "7GGEQ9QF87XSSGPH.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "7GGEQ9QF87XSSGPH.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7GGEQ9QF87XSSGPH.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "7GGEQ9QF87XSSGPH", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7GGEQ9QF87XSSGPH.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "7GGEQ9QF87XSSGPH.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "911" - }, - "appliesTo" : [ ] - }, - "7GGEQ9QF87XSSGPH.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "7GGEQ9QF87XSSGPH.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7GGEQ9QF87XSSGPH.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "7GGEQ9QF87XSSGPH", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7GGEQ9QF87XSSGPH.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "7GGEQ9QF87XSSGPH.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1496" - }, - "appliesTo" : [ ] - }, - "7GGEQ9QF87XSSGPH.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "7GGEQ9QF87XSSGPH.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7GGEQ9QF87XSSGPH.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "7GGEQ9QF87XSSGPH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7GGEQ9QF87XSSGPH.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "7GGEQ9QF87XSSGPH.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "7GGEQ9QF87XSSGPH.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "7GGEQ9QF87XSSGPH.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1663" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7GGEQ9QF87XSSGPH.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "7GGEQ9QF87XSSGPH", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7GGEQ9QF87XSSGPH.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "7GGEQ9QF87XSSGPH.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2323" - }, - "appliesTo" : [ ] - }, - "7GGEQ9QF87XSSGPH.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "7GGEQ9QF87XSSGPH.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7GGEQ9QF87XSSGPH.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "7GGEQ9QF87XSSGPH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7GGEQ9QF87XSSGPH.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "7GGEQ9QF87XSSGPH.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "876" - }, - "appliesTo" : [ ] - }, - "7GGEQ9QF87XSSGPH.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "7GGEQ9QF87XSSGPH.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7GGEQ9QF87XSSGPH.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "7GGEQ9QF87XSSGPH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7GGEQ9QF87XSSGPH.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "7GGEQ9QF87XSSGPH.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "KQTYTC2BEFA3UQD7" : { - "KQTYTC2BEFA3UQD7.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "KQTYTC2BEFA3UQD7", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "KQTYTC2BEFA3UQD7.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "KQTYTC2BEFA3UQD7.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1777" - }, - "appliesTo" : [ ] - }, - "KQTYTC2BEFA3UQD7.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "KQTYTC2BEFA3UQD7.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KQTYTC2BEFA3UQD7.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "KQTYTC2BEFA3UQD7", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "KQTYTC2BEFA3UQD7.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "KQTYTC2BEFA3UQD7.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3482" - }, - "appliesTo" : [ ] - }, - "KQTYTC2BEFA3UQD7.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "KQTYTC2BEFA3UQD7.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KQTYTC2BEFA3UQD7.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "KQTYTC2BEFA3UQD7", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "KQTYTC2BEFA3UQD7.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "KQTYTC2BEFA3UQD7.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KQTYTC2BEFA3UQD7.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "KQTYTC2BEFA3UQD7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "KQTYTC2BEFA3UQD7.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "KQTYTC2BEFA3UQD7.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KQTYTC2BEFA3UQD7.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "KQTYTC2BEFA3UQD7", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "KQTYTC2BEFA3UQD7.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "KQTYTC2BEFA3UQD7.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3690" - }, - "appliesTo" : [ ] - }, - "KQTYTC2BEFA3UQD7.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "KQTYTC2BEFA3UQD7.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KQTYTC2BEFA3UQD7.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "KQTYTC2BEFA3UQD7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "KQTYTC2BEFA3UQD7.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "KQTYTC2BEFA3UQD7.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KQTYTC2BEFA3UQD7.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "KQTYTC2BEFA3UQD7", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "KQTYTC2BEFA3UQD7.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "KQTYTC2BEFA3UQD7.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6937" - }, - "appliesTo" : [ ] - }, - "KQTYTC2BEFA3UQD7.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "KQTYTC2BEFA3UQD7.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KQTYTC2BEFA3UQD7.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "KQTYTC2BEFA3UQD7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "KQTYTC2BEFA3UQD7.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "KQTYTC2BEFA3UQD7.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1610000000" - }, - "appliesTo" : [ ] - }, - "KQTYTC2BEFA3UQD7.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "KQTYTC2BEFA3UQD7.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4231" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KQTYTC2BEFA3UQD7.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "KQTYTC2BEFA3UQD7", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "KQTYTC2BEFA3UQD7.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "KQTYTC2BEFA3UQD7.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4028" - }, - "appliesTo" : [ ] - }, - "KQTYTC2BEFA3UQD7.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "KQTYTC2BEFA3UQD7.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KQTYTC2BEFA3UQD7.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "KQTYTC2BEFA3UQD7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "KQTYTC2BEFA3UQD7.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "KQTYTC2BEFA3UQD7.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8293" - }, - "appliesTo" : [ ] - }, - "KQTYTC2BEFA3UQD7.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "KQTYTC2BEFA3UQD7.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KQTYTC2BEFA3UQD7.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "KQTYTC2BEFA3UQD7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KQTYTC2BEFA3UQD7.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "KQTYTC2BEFA3UQD7.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2055" - }, - "appliesTo" : [ ] - }, - "KQTYTC2BEFA3UQD7.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "KQTYTC2BEFA3UQD7.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KQTYTC2BEFA3UQD7.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "KQTYTC2BEFA3UQD7", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "KQTYTC2BEFA3UQD7.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "KQTYTC2BEFA3UQD7.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "2CJFZEAKYQD4ZCJU" : { - "2CJFZEAKYQD4ZCJU.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "2CJFZEAKYQD4ZCJU", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "2CJFZEAKYQD4ZCJU.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "2CJFZEAKYQD4ZCJU.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1896" - }, - "appliesTo" : [ ] - }, - "2CJFZEAKYQD4ZCJU.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "2CJFZEAKYQD4ZCJU.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2CJFZEAKYQD4ZCJU.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "2CJFZEAKYQD4ZCJU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "2CJFZEAKYQD4ZCJU.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "2CJFZEAKYQD4ZCJU.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "844" - }, - "appliesTo" : [ ] - }, - "2CJFZEAKYQD4ZCJU.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "2CJFZEAKYQD4ZCJU.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2CJFZEAKYQD4ZCJU.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "2CJFZEAKYQD4ZCJU", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "2CJFZEAKYQD4ZCJU.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "2CJFZEAKYQD4ZCJU.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "519" - }, - "appliesTo" : [ ] - }, - "2CJFZEAKYQD4ZCJU.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "2CJFZEAKYQD4ZCJU.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2CJFZEAKYQD4ZCJU.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "2CJFZEAKYQD4ZCJU", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "2CJFZEAKYQD4ZCJU.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "2CJFZEAKYQD4ZCJU.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2CJFZEAKYQD4ZCJU.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "2CJFZEAKYQD4ZCJU", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "2CJFZEAKYQD4ZCJU.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "2CJFZEAKYQD4ZCJU.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "327" - }, - "appliesTo" : [ ] - }, - "2CJFZEAKYQD4ZCJU.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "2CJFZEAKYQD4ZCJU.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "RCQDAE4337AGCJV8" : { - "RCQDAE4337AGCJV8.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "RCQDAE4337AGCJV8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RCQDAE4337AGCJV8.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "RCQDAE4337AGCJV8.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.6840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RCQDAE4337AGCJV8.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "RCQDAE4337AGCJV8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RCQDAE4337AGCJV8.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "RCQDAE4337AGCJV8.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23749" - }, - "appliesTo" : [ ] - }, - "RCQDAE4337AGCJV8.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "RCQDAE4337AGCJV8.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RCQDAE4337AGCJV8.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "RCQDAE4337AGCJV8", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "RCQDAE4337AGCJV8.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "RCQDAE4337AGCJV8.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20674" - }, - "appliesTo" : [ ] - }, - "RCQDAE4337AGCJV8.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "RCQDAE4337AGCJV8.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RCQDAE4337AGCJV8.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "RCQDAE4337AGCJV8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RCQDAE4337AGCJV8.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "RCQDAE4337AGCJV8.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RCQDAE4337AGCJV8.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "RCQDAE4337AGCJV8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RCQDAE4337AGCJV8.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "RCQDAE4337AGCJV8.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46493" - }, - "appliesTo" : [ ] - }, - "RCQDAE4337AGCJV8.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "RCQDAE4337AGCJV8.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RCQDAE4337AGCJV8.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "RCQDAE4337AGCJV8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RCQDAE4337AGCJV8.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "RCQDAE4337AGCJV8.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "51730" - }, - "appliesTo" : [ ] - }, - "RCQDAE4337AGCJV8.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "RCQDAE4337AGCJV8.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RCQDAE4337AGCJV8.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "RCQDAE4337AGCJV8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RCQDAE4337AGCJV8.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "RCQDAE4337AGCJV8.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RCQDAE4337AGCJV8.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "RCQDAE4337AGCJV8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RCQDAE4337AGCJV8.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "RCQDAE4337AGCJV8.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "101395" - }, - "appliesTo" : [ ] - }, - "RCQDAE4337AGCJV8.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "RCQDAE4337AGCJV8.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RCQDAE4337AGCJV8.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "RCQDAE4337AGCJV8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RCQDAE4337AGCJV8.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "RCQDAE4337AGCJV8.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "84685" - }, - "appliesTo" : [ ] - }, - "RCQDAE4337AGCJV8.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "RCQDAE4337AGCJV8.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RCQDAE4337AGCJV8.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "RCQDAE4337AGCJV8", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "RCQDAE4337AGCJV8.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "RCQDAE4337AGCJV8.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "40467" - }, - "appliesTo" : [ ] - }, - "RCQDAE4337AGCJV8.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "RCQDAE4337AGCJV8.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RCQDAE4337AGCJV8.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "RCQDAE4337AGCJV8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RCQDAE4337AGCJV8.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "RCQDAE4337AGCJV8.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RCQDAE4337AGCJV8.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "RCQDAE4337AGCJV8", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "RCQDAE4337AGCJV8.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "RCQDAE4337AGCJV8.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "45028" - }, - "appliesTo" : [ ] - }, - "RCQDAE4337AGCJV8.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "RCQDAE4337AGCJV8.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "SQ37ZQ2CZ2H95VDC" : { - "SQ37ZQ2CZ2H95VDC.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "SQ37ZQ2CZ2H95VDC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SQ37ZQ2CZ2H95VDC.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "SQ37ZQ2CZ2H95VDC.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8948000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SQ37ZQ2CZ2H95VDC.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SQ37ZQ2CZ2H95VDC", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "SQ37ZQ2CZ2H95VDC.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SQ37ZQ2CZ2H95VDC.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7781000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SQ37ZQ2CZ2H95VDC.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SQ37ZQ2CZ2H95VDC", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "SQ37ZQ2CZ2H95VDC.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SQ37ZQ2CZ2H95VDC.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7069" - }, - "appliesTo" : [ ] - }, - "SQ37ZQ2CZ2H95VDC.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SQ37ZQ2CZ2H95VDC.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SQ37ZQ2CZ2H95VDC.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SQ37ZQ2CZ2H95VDC", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "SQ37ZQ2CZ2H95VDC.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SQ37ZQ2CZ2H95VDC.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6361" - }, - "appliesTo" : [ ] - }, - "SQ37ZQ2CZ2H95VDC.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SQ37ZQ2CZ2H95VDC.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SQ37ZQ2CZ2H95VDC.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SQ37ZQ2CZ2H95VDC", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "SQ37ZQ2CZ2H95VDC.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SQ37ZQ2CZ2H95VDC.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SQ37ZQ2CZ2H95VDC.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SQ37ZQ2CZ2H95VDC.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13289" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SQ37ZQ2CZ2H95VDC.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "SQ37ZQ2CZ2H95VDC", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "SQ37ZQ2CZ2H95VDC.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "SQ37ZQ2CZ2H95VDC.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6682000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SQ37ZQ2CZ2H95VDC.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "SQ37ZQ2CZ2H95VDC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SQ37ZQ2CZ2H95VDC.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "SQ37ZQ2CZ2H95VDC.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7316" - }, - "appliesTo" : [ ] - }, - "SQ37ZQ2CZ2H95VDC.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "SQ37ZQ2CZ2H95VDC.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SQ37ZQ2CZ2H95VDC.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SQ37ZQ2CZ2H95VDC", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "SQ37ZQ2CZ2H95VDC.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SQ37ZQ2CZ2H95VDC.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3246" - }, - "appliesTo" : [ ] - }, - "SQ37ZQ2CZ2H95VDC.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SQ37ZQ2CZ2H95VDC.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3705000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SQ37ZQ2CZ2H95VDC.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "SQ37ZQ2CZ2H95VDC", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "SQ37ZQ2CZ2H95VDC.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "SQ37ZQ2CZ2H95VDC.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8129" - }, - "appliesTo" : [ ] - }, - "SQ37ZQ2CZ2H95VDC.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "SQ37ZQ2CZ2H95VDC.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3093000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SQ37ZQ2CZ2H95VDC.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "SQ37ZQ2CZ2H95VDC", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "SQ37ZQ2CZ2H95VDC.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "SQ37ZQ2CZ2H95VDC.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15934" - }, - "appliesTo" : [ ] - }, - "SQ37ZQ2CZ2H95VDC.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "SQ37ZQ2CZ2H95VDC.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SQ37ZQ2CZ2H95VDC.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "SQ37ZQ2CZ2H95VDC", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "SQ37ZQ2CZ2H95VDC.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "SQ37ZQ2CZ2H95VDC.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SQ37ZQ2CZ2H95VDC.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "SQ37ZQ2CZ2H95VDC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SQ37ZQ2CZ2H95VDC.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "SQ37ZQ2CZ2H95VDC.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3732" - }, - "appliesTo" : [ ] - }, - "SQ37ZQ2CZ2H95VDC.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "SQ37ZQ2CZ2H95VDC.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4261000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "599NS97NVDVBQMHV" : { - "599NS97NVDVBQMHV.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "599NS97NVDVBQMHV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "599NS97NVDVBQMHV.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "599NS97NVDVBQMHV.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "599NS97NVDVBQMHV.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "599NS97NVDVBQMHV.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "387216" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "599NS97NVDVBQMHV.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "599NS97NVDVBQMHV", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "599NS97NVDVBQMHV.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "599NS97NVDVBQMHV.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "191781" - }, - "appliesTo" : [ ] - }, - "599NS97NVDVBQMHV.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "599NS97NVDVBQMHV.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.2980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "599NS97NVDVBQMHV.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "599NS97NVDVBQMHV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "599NS97NVDVBQMHV.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "599NS97NVDVBQMHV.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.8630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "599NS97NVDVBQMHV.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "599NS97NVDVBQMHV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "599NS97NVDVBQMHV.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "599NS97NVDVBQMHV.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "193947" - }, - "appliesTo" : [ ] - }, - "599NS97NVDVBQMHV.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "599NS97NVDVBQMHV.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "599NS97NVDVBQMHV.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "599NS97NVDVBQMHV", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "599NS97NVDVBQMHV.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "599NS97NVDVBQMHV.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "381791" - }, - "appliesTo" : [ ] - }, - "599NS97NVDVBQMHV.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "599NS97NVDVBQMHV.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "599NS97NVDVBQMHV.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "599NS97NVDVBQMHV", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "599NS97NVDVBQMHV.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "599NS97NVDVBQMHV.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "131943" - }, - "appliesTo" : [ ] - }, - "599NS97NVDVBQMHV.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "599NS97NVDVBQMHV.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "599NS97NVDVBQMHV.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "599NS97NVDVBQMHV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "599NS97NVDVBQMHV.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "599NS97NVDVBQMHV.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.4430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "599NS97NVDVBQMHV.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "599NS97NVDVBQMHV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "599NS97NVDVBQMHV.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "599NS97NVDVBQMHV.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "67228" - }, - "appliesTo" : [ ] - }, - "599NS97NVDVBQMHV.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "599NS97NVDVBQMHV.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.6740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "599NS97NVDVBQMHV.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "599NS97NVDVBQMHV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "599NS97NVDVBQMHV.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "599NS97NVDVBQMHV.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.1860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "599NS97NVDVBQMHV.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "599NS97NVDVBQMHV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "599NS97NVDVBQMHV.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "599NS97NVDVBQMHV.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5470000000" - }, - "appliesTo" : [ ] - }, - "599NS97NVDVBQMHV.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "599NS97NVDVBQMHV.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "66113" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "599NS97NVDVBQMHV.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "599NS97NVDVBQMHV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "599NS97NVDVBQMHV.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "599NS97NVDVBQMHV.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.6820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "599NS97NVDVBQMHV.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "599NS97NVDVBQMHV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "599NS97NVDVBQMHV.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "599NS97NVDVBQMHV.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "134127" - }, - "appliesTo" : [ ] - }, - "599NS97NVDVBQMHV.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "599NS97NVDVBQMHV.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "482YDSG5GBVK93D9" : { - "482YDSG5GBVK93D9.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "482YDSG5GBVK93D9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "482YDSG5GBVK93D9.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "482YDSG5GBVK93D9.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "482YDSG5GBVK93D9.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "482YDSG5GBVK93D9.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "131707" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "482YDSG5GBVK93D9.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "482YDSG5GBVK93D9", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "482YDSG5GBVK93D9.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "482YDSG5GBVK93D9.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.7680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "482YDSG5GBVK93D9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "482YDSG5GBVK93D9", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "482YDSG5GBVK93D9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "482YDSG5GBVK93D9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "328235" - }, - "appliesTo" : [ ] - }, - "482YDSG5GBVK93D9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "482YDSG5GBVK93D9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "482YDSG5GBVK93D9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "482YDSG5GBVK93D9", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "482YDSG5GBVK93D9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "482YDSG5GBVK93D9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.2690000000" - }, - "appliesTo" : [ ] - }, - "482YDSG5GBVK93D9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "482YDSG5GBVK93D9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "63676" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "482YDSG5GBVK93D9.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "482YDSG5GBVK93D9", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "482YDSG5GBVK93D9.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "482YDSG5GBVK93D9.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "169594" - }, - "appliesTo" : [ ] - }, - "482YDSG5GBVK93D9.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "482YDSG5GBVK93D9.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.4530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "482YDSG5GBVK93D9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "482YDSG5GBVK93D9", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "482YDSG5GBVK93D9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "482YDSG5GBVK93D9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "165683" - }, - "appliesTo" : [ ] - }, - "482YDSG5GBVK93D9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "482YDSG5GBVK93D9.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.3050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "482YDSG5GBVK93D9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "482YDSG5GBVK93D9", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "482YDSG5GBVK93D9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "482YDSG5GBVK93D9.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "482YDSG5GBVK93D9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "482YDSG5GBVK93D9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "126667" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "482YDSG5GBVK93D9.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "482YDSG5GBVK93D9", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "482YDSG5GBVK93D9.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "482YDSG5GBVK93D9.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.0890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "482YDSG5GBVK93D9.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "482YDSG5GBVK93D9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "482YDSG5GBVK93D9.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "482YDSG5GBVK93D9.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.3500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "482YDSG5GBVK93D9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "482YDSG5GBVK93D9", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "482YDSG5GBVK93D9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "482YDSG5GBVK93D9.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.7340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "482YDSG5GBVK93D9.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "482YDSG5GBVK93D9", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "482YDSG5GBVK93D9.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "482YDSG5GBVK93D9.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "337989" - }, - "appliesTo" : [ ] - }, - "482YDSG5GBVK93D9.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "482YDSG5GBVK93D9.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "482YDSG5GBVK93D9.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "482YDSG5GBVK93D9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "482YDSG5GBVK93D9.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "482YDSG5GBVK93D9.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "66248" - }, - "appliesTo" : [ ] - }, - "482YDSG5GBVK93D9.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "482YDSG5GBVK93D9.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "D6N7KTJH42VTNPFJ" : { - "D6N7KTJH42VTNPFJ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "D6N7KTJH42VTNPFJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "D6N7KTJH42VTNPFJ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "D6N7KTJH42VTNPFJ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1898" - }, - "appliesTo" : [ ] - }, - "D6N7KTJH42VTNPFJ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "D6N7KTJH42VTNPFJ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "D6N7KTJH42VTNPFJ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "D6N7KTJH42VTNPFJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "D6N7KTJH42VTNPFJ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "D6N7KTJH42VTNPFJ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1123" - }, - "appliesTo" : [ ] - }, - "D6N7KTJH42VTNPFJ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "D6N7KTJH42VTNPFJ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "D6N7KTJH42VTNPFJ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "D6N7KTJH42VTNPFJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "D6N7KTJH42VTNPFJ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "D6N7KTJH42VTNPFJ.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "D6N7KTJH42VTNPFJ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "D6N7KTJH42VTNPFJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "D6N7KTJH42VTNPFJ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "D6N7KTJH42VTNPFJ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "D6N7KTJH42VTNPFJ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "D6N7KTJH42VTNPFJ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3535" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "D6N7KTJH42VTNPFJ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "D6N7KTJH42VTNPFJ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "D6N7KTJH42VTNPFJ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "D6N7KTJH42VTNPFJ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1790" - }, - "appliesTo" : [ ] - }, - "D6N7KTJH42VTNPFJ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "D6N7KTJH42VTNPFJ.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "PRQPEPABCB4GFVSC" : { - "PRQPEPABCB4GFVSC.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "PRQPEPABCB4GFVSC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "PRQPEPABCB4GFVSC.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "PRQPEPABCB4GFVSC.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9663" - }, - "appliesTo" : [ ] - }, - "PRQPEPABCB4GFVSC.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "PRQPEPABCB4GFVSC.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PRQPEPABCB4GFVSC.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "PRQPEPABCB4GFVSC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PRQPEPABCB4GFVSC.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "PRQPEPABCB4GFVSC.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5770" - }, - "appliesTo" : [ ] - }, - "PRQPEPABCB4GFVSC.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "PRQPEPABCB4GFVSC.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PRQPEPABCB4GFVSC.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "PRQPEPABCB4GFVSC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PRQPEPABCB4GFVSC.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "PRQPEPABCB4GFVSC.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "PRQPEPABCB4GFVSC.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "PRQPEPABCB4GFVSC", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "PRQPEPABCB4GFVSC.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "PRQPEPABCB4GFVSC.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27684" - }, - "appliesTo" : [ ] - }, - "PRQPEPABCB4GFVSC.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "PRQPEPABCB4GFVSC.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PRQPEPABCB4GFVSC.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "PRQPEPABCB4GFVSC", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "PRQPEPABCB4GFVSC.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "PRQPEPABCB4GFVSC.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9640" - }, - "appliesTo" : [ ] - }, - "PRQPEPABCB4GFVSC.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "PRQPEPABCB4GFVSC.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PRQPEPABCB4GFVSC.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "PRQPEPABCB4GFVSC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "PRQPEPABCB4GFVSC.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "PRQPEPABCB4GFVSC.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5561" - }, - "appliesTo" : [ ] - }, - "PRQPEPABCB4GFVSC.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "PRQPEPABCB4GFVSC.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PRQPEPABCB4GFVSC.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "PRQPEPABCB4GFVSC", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "PRQPEPABCB4GFVSC.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "PRQPEPABCB4GFVSC.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "PRQPEPABCB4GFVSC.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "PRQPEPABCB4GFVSC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "PRQPEPABCB4GFVSC.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "PRQPEPABCB4GFVSC.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22964" - }, - "appliesTo" : [ ] - }, - "PRQPEPABCB4GFVSC.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "PRQPEPABCB4GFVSC.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PRQPEPABCB4GFVSC.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "PRQPEPABCB4GFVSC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "PRQPEPABCB4GFVSC.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "PRQPEPABCB4GFVSC.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "PRQPEPABCB4GFVSC.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "PRQPEPABCB4GFVSC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "PRQPEPABCB4GFVSC.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "PRQPEPABCB4GFVSC.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7290000000" - }, - "appliesTo" : [ ] - }, - "PRQPEPABCB4GFVSC.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "PRQPEPABCB4GFVSC.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3474" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PRQPEPABCB4GFVSC.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "PRQPEPABCB4GFVSC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PRQPEPABCB4GFVSC.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "PRQPEPABCB4GFVSC.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "PRQPEPABCB4GFVSC.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "PRQPEPABCB4GFVSC.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11439" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "86FEVXHAJVJ75D5R" : { - "86FEVXHAJVJ75D5R.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "86FEVXHAJVJ75D5R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "86FEVXHAJVJ75D5R.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "86FEVXHAJVJ75D5R.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3220000000" - }, - "appliesTo" : [ ] - }, - "86FEVXHAJVJ75D5R.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "86FEVXHAJVJ75D5R.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2821" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "86FEVXHAJVJ75D5R.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "86FEVXHAJVJ75D5R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "86FEVXHAJVJ75D5R.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "86FEVXHAJVJ75D5R.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "86FEVXHAJVJ75D5R.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "86FEVXHAJVJ75D5R", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "86FEVXHAJVJ75D5R.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "86FEVXHAJVJ75D5R.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5076" - }, - "appliesTo" : [ ] - }, - "86FEVXHAJVJ75D5R.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "86FEVXHAJVJ75D5R.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "86FEVXHAJVJ75D5R.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "86FEVXHAJVJ75D5R", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "86FEVXHAJVJ75D5R.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "86FEVXHAJVJ75D5R.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6314" - }, - "appliesTo" : [ ] - }, - "86FEVXHAJVJ75D5R.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "86FEVXHAJVJ75D5R.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "86FEVXHAJVJ75D5R.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "86FEVXHAJVJ75D5R", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "86FEVXHAJVJ75D5R.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "86FEVXHAJVJ75D5R.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7314" - }, - "appliesTo" : [ ] - }, - "86FEVXHAJVJ75D5R.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "86FEVXHAJVJ75D5R.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "86FEVXHAJVJ75D5R.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "86FEVXHAJVJ75D5R", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "86FEVXHAJVJ75D5R.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "86FEVXHAJVJ75D5R.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "86FEVXHAJVJ75D5R.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "86FEVXHAJVJ75D5R", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "86FEVXHAJVJ75D5R.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "86FEVXHAJVJ75D5R.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "86FEVXHAJVJ75D5R.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "86FEVXHAJVJ75D5R", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "86FEVXHAJVJ75D5R.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "86FEVXHAJVJ75D5R.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "86FEVXHAJVJ75D5R.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "86FEVXHAJVJ75D5R.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11863" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "86FEVXHAJVJ75D5R.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "86FEVXHAJVJ75D5R", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "86FEVXHAJVJ75D5R.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "86FEVXHAJVJ75D5R.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "86FEVXHAJVJ75D5R.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "86FEVXHAJVJ75D5R", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "86FEVXHAJVJ75D5R.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "86FEVXHAJVJ75D5R.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "86FEVXHAJVJ75D5R.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "86FEVXHAJVJ75D5R.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14537" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "86FEVXHAJVJ75D5R.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "86FEVXHAJVJ75D5R", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "86FEVXHAJVJ75D5R.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "86FEVXHAJVJ75D5R.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2590" - }, - "appliesTo" : [ ] - }, - "86FEVXHAJVJ75D5R.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "86FEVXHAJVJ75D5R.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "86FEVXHAJVJ75D5R.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "86FEVXHAJVJ75D5R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "86FEVXHAJVJ75D5R.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "86FEVXHAJVJ75D5R.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5593" - }, - "appliesTo" : [ ] - }, - "86FEVXHAJVJ75D5R.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "86FEVXHAJVJ75D5R.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "CHD28PNGD4WRFZDU" : { - "CHD28PNGD4WRFZDU.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "CHD28PNGD4WRFZDU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CHD28PNGD4WRFZDU.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "CHD28PNGD4WRFZDU.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "158335" - }, - "appliesTo" : [ ] - }, - "CHD28PNGD4WRFZDU.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "CHD28PNGD4WRFZDU.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CHD28PNGD4WRFZDU.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "CHD28PNGD4WRFZDU", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CHD28PNGD4WRFZDU.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "CHD28PNGD4WRFZDU.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.4860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CHD28PNGD4WRFZDU.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "CHD28PNGD4WRFZDU", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CHD28PNGD4WRFZDU.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "CHD28PNGD4WRFZDU.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.7760000000" - }, - "appliesTo" : [ ] - }, - "CHD28PNGD4WRFZDU.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "CHD28PNGD4WRFZDU.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "174665" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CHD28PNGD4WRFZDU.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "CHD28PNGD4WRFZDU", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CHD28PNGD4WRFZDU.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "CHD28PNGD4WRFZDU.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "69695" - }, - "appliesTo" : [ ] - }, - "CHD28PNGD4WRFZDU.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "CHD28PNGD4WRFZDU.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.0860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CHD28PNGD4WRFZDU.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "CHD28PNGD4WRFZDU", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CHD28PNGD4WRFZDU.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "CHD28PNGD4WRFZDU.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "CHD28PNGD4WRFZDU.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "CHD28PNGD4WRFZDU.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "345760" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CHD28PNGD4WRFZDU.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "CHD28PNGD4WRFZDU", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CHD28PNGD4WRFZDU.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "CHD28PNGD4WRFZDU.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.7850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CHD28PNGD4WRFZDU.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "CHD28PNGD4WRFZDU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CHD28PNGD4WRFZDU.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "CHD28PNGD4WRFZDU.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "19.3570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CHD28PNGD4WRFZDU.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "CHD28PNGD4WRFZDU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CHD28PNGD4WRFZDU.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "CHD28PNGD4WRFZDU.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "80202" - }, - "appliesTo" : [ ] - }, - "CHD28PNGD4WRFZDU.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "CHD28PNGD4WRFZDU.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.2860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CHD28PNGD4WRFZDU.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "CHD28PNGD4WRFZDU", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CHD28PNGD4WRFZDU.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "CHD28PNGD4WRFZDU.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.8380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CHD28PNGD4WRFZDU.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "CHD28PNGD4WRFZDU", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CHD28PNGD4WRFZDU.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "CHD28PNGD4WRFZDU.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "129632" - }, - "appliesTo" : [ ] - }, - "CHD28PNGD4WRFZDU.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "CHD28PNGD4WRFZDU.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.0630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CHD28PNGD4WRFZDU.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "CHD28PNGD4WRFZDU", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CHD28PNGD4WRFZDU.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "CHD28PNGD4WRFZDU.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "247124" - }, - "appliesTo" : [ ] - }, - "CHD28PNGD4WRFZDU.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "CHD28PNGD4WRFZDU.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CHD28PNGD4WRFZDU.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "CHD28PNGD4WRFZDU", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CHD28PNGD4WRFZDU.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "CHD28PNGD4WRFZDU.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "137740" - }, - "appliesTo" : [ ] - }, - "CHD28PNGD4WRFZDU.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "CHD28PNGD4WRFZDU.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "W8TS7DJMAYZW9FYR" : { - "W8TS7DJMAYZW9FYR.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "W8TS7DJMAYZW9FYR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W8TS7DJMAYZW9FYR.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "W8TS7DJMAYZW9FYR.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16112" - }, - "appliesTo" : [ ] - }, - "W8TS7DJMAYZW9FYR.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "W8TS7DJMAYZW9FYR.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "W8TS7DJMAYZW9FYR.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "W8TS7DJMAYZW9FYR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "W8TS7DJMAYZW9FYR.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "W8TS7DJMAYZW9FYR.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "W8TS7DJMAYZW9FYR.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "W8TS7DJMAYZW9FYR", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "W8TS7DJMAYZW9FYR.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "W8TS7DJMAYZW9FYR.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "W8TS7DJMAYZW9FYR.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "W8TS7DJMAYZW9FYR.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27747" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "W8TS7DJMAYZW9FYR.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "W8TS7DJMAYZW9FYR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "W8TS7DJMAYZW9FYR.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "W8TS7DJMAYZW9FYR.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14759" - }, - "appliesTo" : [ ] - }, - "W8TS7DJMAYZW9FYR.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "W8TS7DJMAYZW9FYR.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "W8TS7DJMAYZW9FYR.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "W8TS7DJMAYZW9FYR", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "W8TS7DJMAYZW9FYR.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "W8TS7DJMAYZW9FYR.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8110000000" - }, - "appliesTo" : [ ] - }, - "W8TS7DJMAYZW9FYR.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "W8TS7DJMAYZW9FYR.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7106" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "W8TS7DJMAYZW9FYR.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "W8TS7DJMAYZW9FYR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "W8TS7DJMAYZW9FYR.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "W8TS7DJMAYZW9FYR.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16924" - }, - "appliesTo" : [ ] - }, - "W8TS7DJMAYZW9FYR.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "W8TS7DJMAYZW9FYR.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "W8TS7DJMAYZW9FYR.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "W8TS7DJMAYZW9FYR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "W8TS7DJMAYZW9FYR.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "W8TS7DJMAYZW9FYR.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33172" - }, - "appliesTo" : [ ] - }, - "W8TS7DJMAYZW9FYR.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "W8TS7DJMAYZW9FYR.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "W8TS7DJMAYZW9FYR.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "W8TS7DJMAYZW9FYR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W8TS7DJMAYZW9FYR.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "W8TS7DJMAYZW9FYR.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8220" - }, - "appliesTo" : [ ] - }, - "W8TS7DJMAYZW9FYR.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "W8TS7DJMAYZW9FYR.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "W8TS7DJMAYZW9FYR.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "W8TS7DJMAYZW9FYR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W8TS7DJMAYZW9FYR.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "W8TS7DJMAYZW9FYR.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "W8TS7DJMAYZW9FYR.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "W8TS7DJMAYZW9FYR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "W8TS7DJMAYZW9FYR.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "W8TS7DJMAYZW9FYR.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "W8TS7DJMAYZW9FYR.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "W8TS7DJMAYZW9FYR", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "W8TS7DJMAYZW9FYR.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "W8TS7DJMAYZW9FYR.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "W8TS7DJMAYZW9FYR.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "W8TS7DJMAYZW9FYR.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13928" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "W8TS7DJMAYZW9FYR.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "W8TS7DJMAYZW9FYR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "W8TS7DJMAYZW9FYR.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "W8TS7DJMAYZW9FYR.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "U55BDVR9QF3VHRGZ" : { - "U55BDVR9QF3VHRGZ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "U55BDVR9QF3VHRGZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "U55BDVR9QF3VHRGZ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "U55BDVR9QF3VHRGZ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "U55BDVR9QF3VHRGZ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "U55BDVR9QF3VHRGZ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15763" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "U55BDVR9QF3VHRGZ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "U55BDVR9QF3VHRGZ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "U55BDVR9QF3VHRGZ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "U55BDVR9QF3VHRGZ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4490000000" - }, - "appliesTo" : [ ] - }, - "U55BDVR9QF3VHRGZ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "U55BDVR9QF3VHRGZ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4969" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "U55BDVR9QF3VHRGZ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "U55BDVR9QF3VHRGZ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "U55BDVR9QF3VHRGZ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "U55BDVR9QF3VHRGZ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7272" - }, - "appliesTo" : [ ] - }, - "U55BDVR9QF3VHRGZ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "U55BDVR9QF3VHRGZ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "U55BDVR9QF3VHRGZ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "U55BDVR9QF3VHRGZ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "U55BDVR9QF3VHRGZ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "U55BDVR9QF3VHRGZ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "U55BDVR9QF3VHRGZ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "U55BDVR9QF3VHRGZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "U55BDVR9QF3VHRGZ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "U55BDVR9QF3VHRGZ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3172" - }, - "appliesTo" : [ ] - }, - "U55BDVR9QF3VHRGZ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "U55BDVR9QF3VHRGZ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "JH77489982R9B75M" : { - "JH77489982R9B75M.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "JH77489982R9B75M", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "JH77489982R9B75M.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "JH77489982R9B75M.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9824000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "JH77489982R9B75M.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "JH77489982R9B75M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JH77489982R9B75M.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "JH77489982R9B75M.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9510" - }, - "appliesTo" : [ ] - }, - "JH77489982R9B75M.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "JH77489982R9B75M.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0856000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "JH77489982R9B75M.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "JH77489982R9B75M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JH77489982R9B75M.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "JH77489982R9B75M.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2798000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "JH77489982R9B75M.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "JH77489982R9B75M", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "JH77489982R9B75M.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "JH77489982R9B75M.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "JH77489982R9B75M.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "JH77489982R9B75M.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37910" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "JH77489982R9B75M.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "JH77489982R9B75M", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "JH77489982R9B75M.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "JH77489982R9B75M.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3824000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "JH77489982R9B75M.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "JH77489982R9B75M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JH77489982R9B75M.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "JH77489982R9B75M.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18639" - }, - "appliesTo" : [ ] - }, - "JH77489982R9B75M.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "JH77489982R9B75M.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "JH77489982R9B75M.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "JH77489982R9B75M", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "JH77489982R9B75M.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "JH77489982R9B75M.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8269" - }, - "appliesTo" : [ ] - }, - "JH77489982R9B75M.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "JH77489982R9B75M.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "JH77489982R9B75M.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "JH77489982R9B75M", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "JH77489982R9B75M.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "JH77489982R9B75M.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16208" - }, - "appliesTo" : [ ] - }, - "JH77489982R9B75M.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "JH77489982R9B75M.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JH77489982R9B75M.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "JH77489982R9B75M", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "JH77489982R9B75M.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "JH77489982R9B75M.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5898000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "JH77489982R9B75M.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "JH77489982R9B75M", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "JH77489982R9B75M.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "JH77489982R9B75M.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "JH77489982R9B75M.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "JH77489982R9B75M.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31620" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JH77489982R9B75M.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "JH77489982R9B75M", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "JH77489982R9B75M.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "JH77489982R9B75M.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19342" - }, - "appliesTo" : [ ] - }, - "JH77489982R9B75M.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "JH77489982R9B75M.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "JH77489982R9B75M.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "JH77489982R9B75M", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "JH77489982R9B75M.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "JH77489982R9B75M.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16819" - }, - "appliesTo" : [ ] - }, - "JH77489982R9B75M.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "JH77489982R9B75M.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "8MH9R5J8CSVZTVPD" : { - "8MH9R5J8CSVZTVPD.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "8MH9R5J8CSVZTVPD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8MH9R5J8CSVZTVPD.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "8MH9R5J8CSVZTVPD.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8MH9R5J8CSVZTVPD.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "8MH9R5J8CSVZTVPD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8MH9R5J8CSVZTVPD.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "8MH9R5J8CSVZTVPD.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3508" - }, - "appliesTo" : [ ] - }, - "8MH9R5J8CSVZTVPD.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "8MH9R5J8CSVZTVPD.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8MH9R5J8CSVZTVPD.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "8MH9R5J8CSVZTVPD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8MH9R5J8CSVZTVPD.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "8MH9R5J8CSVZTVPD.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0800000000" - }, - "appliesTo" : [ ] - }, - "8MH9R5J8CSVZTVPD.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "8MH9R5J8CSVZTVPD.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2089" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8MH9R5J8CSVZTVPD.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "8MH9R5J8CSVZTVPD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8MH9R5J8CSVZTVPD.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "8MH9R5J8CSVZTVPD.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8MH9R5J8CSVZTVPD.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "8MH9R5J8CSVZTVPD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8MH9R5J8CSVZTVPD.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "8MH9R5J8CSVZTVPD.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0710000000" - }, - "appliesTo" : [ ] - }, - "8MH9R5J8CSVZTVPD.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "8MH9R5J8CSVZTVPD.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1866" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8MH9R5J8CSVZTVPD.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "8MH9R5J8CSVZTVPD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8MH9R5J8CSVZTVPD.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "8MH9R5J8CSVZTVPD.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1425" - }, - "appliesTo" : [ ] - }, - "8MH9R5J8CSVZTVPD.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "8MH9R5J8CSVZTVPD.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8MH9R5J8CSVZTVPD.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "8MH9R5J8CSVZTVPD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8MH9R5J8CSVZTVPD.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "8MH9R5J8CSVZTVPD.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2342000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8MH9R5J8CSVZTVPD.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "8MH9R5J8CSVZTVPD", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "8MH9R5J8CSVZTVPD.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "8MH9R5J8CSVZTVPD.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "727" - }, - "appliesTo" : [ ] - }, - "8MH9R5J8CSVZTVPD.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "8MH9R5J8CSVZTVPD.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8MH9R5J8CSVZTVPD.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "8MH9R5J8CSVZTVPD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8MH9R5J8CSVZTVPD.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "8MH9R5J8CSVZTVPD.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1011" - }, - "appliesTo" : [ ] - }, - "8MH9R5J8CSVZTVPD.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "8MH9R5J8CSVZTVPD.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1154000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8MH9R5J8CSVZTVPD.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "8MH9R5J8CSVZTVPD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8MH9R5J8CSVZTVPD.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "8MH9R5J8CSVZTVPD.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8MH9R5J8CSVZTVPD.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "8MH9R5J8CSVZTVPD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8MH9R5J8CSVZTVPD.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "8MH9R5J8CSVZTVPD.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2010" - }, - "appliesTo" : [ ] - }, - "8MH9R5J8CSVZTVPD.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "8MH9R5J8CSVZTVPD.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8MH9R5J8CSVZTVPD.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "8MH9R5J8CSVZTVPD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8MH9R5J8CSVZTVPD.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "8MH9R5J8CSVZTVPD.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4094" - }, - "appliesTo" : [ ] - }, - "8MH9R5J8CSVZTVPD.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "8MH9R5J8CSVZTVPD.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "R86DSK536TMRVK4T" : { - "R86DSK536TMRVK4T.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "R86DSK536TMRVK4T", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "R86DSK536TMRVK4T.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "R86DSK536TMRVK4T.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5710000000" - }, - "appliesTo" : [ ] - }, - "R86DSK536TMRVK4T.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "R86DSK536TMRVK4T.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "R86DSK536TMRVK4T.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "R86DSK536TMRVK4T", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "R86DSK536TMRVK4T.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "R86DSK536TMRVK4T.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "R86DSK536TMRVK4T.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "R86DSK536TMRVK4T", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "R86DSK536TMRVK4T.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "R86DSK536TMRVK4T.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "R86DSK536TMRVK4T.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "R86DSK536TMRVK4T.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9802" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "R86DSK536TMRVK4T.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "R86DSK536TMRVK4T", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "R86DSK536TMRVK4T.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "R86DSK536TMRVK4T.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21315" - }, - "appliesTo" : [ ] - }, - "R86DSK536TMRVK4T.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "R86DSK536TMRVK4T.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "R86DSK536TMRVK4T.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "R86DSK536TMRVK4T", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "R86DSK536TMRVK4T.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "R86DSK536TMRVK4T.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7670" - }, - "appliesTo" : [ ] - }, - "R86DSK536TMRVK4T.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "R86DSK536TMRVK4T.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "QP7VG66RCTU7M632" : { - "QP7VG66RCTU7M632.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QP7VG66RCTU7M632", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QP7VG66RCTU7M632.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QP7VG66RCTU7M632.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "123" - }, - "appliesTo" : [ ] - }, - "QP7VG66RCTU7M632.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QP7VG66RCTU7M632.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QP7VG66RCTU7M632.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QP7VG66RCTU7M632", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QP7VG66RCTU7M632.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QP7VG66RCTU7M632.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "721" - }, - "appliesTo" : [ ] - }, - "QP7VG66RCTU7M632.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QP7VG66RCTU7M632.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QP7VG66RCTU7M632.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QP7VG66RCTU7M632", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QP7VG66RCTU7M632.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QP7VG66RCTU7M632.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QP7VG66RCTU7M632.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QP7VG66RCTU7M632", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QP7VG66RCTU7M632.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QP7VG66RCTU7M632.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "188" - }, - "appliesTo" : [ ] - }, - "QP7VG66RCTU7M632.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QP7VG66RCTU7M632.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QP7VG66RCTU7M632.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QP7VG66RCTU7M632", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QP7VG66RCTU7M632.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QP7VG66RCTU7M632.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QP7VG66RCTU7M632.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QP7VG66RCTU7M632.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1881" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "SVMA6TVRGD4B8MMP" : { - "SVMA6TVRGD4B8MMP.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SVMA6TVRGD4B8MMP", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "SVMA6TVRGD4B8MMP.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SVMA6TVRGD4B8MMP.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46424" - }, - "appliesTo" : [ ] - }, - "SVMA6TVRGD4B8MMP.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SVMA6TVRGD4B8MMP.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SVMA6TVRGD4B8MMP.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "SVMA6TVRGD4B8MMP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SVMA6TVRGD4B8MMP.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "SVMA6TVRGD4B8MMP.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "93368" - }, - "appliesTo" : [ ] - }, - "SVMA6TVRGD4B8MMP.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "SVMA6TVRGD4B8MMP.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SVMA6TVRGD4B8MMP.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SVMA6TVRGD4B8MMP", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "SVMA6TVRGD4B8MMP.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SVMA6TVRGD4B8MMP.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "92587" - }, - "appliesTo" : [ ] - }, - "SVMA6TVRGD4B8MMP.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SVMA6TVRGD4B8MMP.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SVMA6TVRGD4B8MMP.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "SVMA6TVRGD4B8MMP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SVMA6TVRGD4B8MMP.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "SVMA6TVRGD4B8MMP.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SVMA6TVRGD4B8MMP.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "SVMA6TVRGD4B8MMP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SVMA6TVRGD4B8MMP.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "SVMA6TVRGD4B8MMP.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7780000000" - }, - "appliesTo" : [ ] - }, - "SVMA6TVRGD4B8MMP.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "SVMA6TVRGD4B8MMP.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46734" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SVMA6TVRGD4B8MMP.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "SVMA6TVRGD4B8MMP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SVMA6TVRGD4B8MMP.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "SVMA6TVRGD4B8MMP.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31873" - }, - "appliesTo" : [ ] - }, - "SVMA6TVRGD4B8MMP.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "SVMA6TVRGD4B8MMP.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SVMA6TVRGD4B8MMP.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "SVMA6TVRGD4B8MMP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SVMA6TVRGD4B8MMP.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "SVMA6TVRGD4B8MMP.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15961" - }, - "appliesTo" : [ ] - }, - "SVMA6TVRGD4B8MMP.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "SVMA6TVRGD4B8MMP.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SVMA6TVRGD4B8MMP.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "SVMA6TVRGD4B8MMP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SVMA6TVRGD4B8MMP.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "SVMA6TVRGD4B8MMP.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SVMA6TVRGD4B8MMP.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SVMA6TVRGD4B8MMP", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "SVMA6TVRGD4B8MMP.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SVMA6TVRGD4B8MMP.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SVMA6TVRGD4B8MMP.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SVMA6TVRGD4B8MMP.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31693" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SVMA6TVRGD4B8MMP.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SVMA6TVRGD4B8MMP", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "SVMA6TVRGD4B8MMP.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SVMA6TVRGD4B8MMP.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15869" - }, - "appliesTo" : [ ] - }, - "SVMA6TVRGD4B8MMP.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SVMA6TVRGD4B8MMP.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SVMA6TVRGD4B8MMP.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SVMA6TVRGD4B8MMP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SVMA6TVRGD4B8MMP.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SVMA6TVRGD4B8MMP.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SVMA6TVRGD4B8MMP.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "SVMA6TVRGD4B8MMP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SVMA6TVRGD4B8MMP.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "SVMA6TVRGD4B8MMP.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "SU7X27GC72VJG45S" : { - "SU7X27GC72VJG45S.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "SU7X27GC72VJG45S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SU7X27GC72VJG45S.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "SU7X27GC72VJG45S.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SU7X27GC72VJG45S.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "SU7X27GC72VJG45S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SU7X27GC72VJG45S.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "SU7X27GC72VJG45S.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7036" - }, - "appliesTo" : [ ] - }, - "SU7X27GC72VJG45S.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "SU7X27GC72VJG45S.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SU7X27GC72VJG45S.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SU7X27GC72VJG45S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SU7X27GC72VJG45S.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SU7X27GC72VJG45S.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12012" - }, - "appliesTo" : [ ] - }, - "SU7X27GC72VJG45S.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SU7X27GC72VJG45S.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SU7X27GC72VJG45S.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "SU7X27GC72VJG45S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SU7X27GC72VJG45S.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "SU7X27GC72VJG45S.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13855" - }, - "appliesTo" : [ ] - }, - "SU7X27GC72VJG45S.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "SU7X27GC72VJG45S.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SU7X27GC72VJG45S.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "SU7X27GC72VJG45S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SU7X27GC72VJG45S.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "SU7X27GC72VJG45S.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SU7X27GC72VJG45S.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "SU7X27GC72VJG45S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SU7X27GC72VJG45S.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "SU7X27GC72VJG45S.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13088" - }, - "appliesTo" : [ ] - }, - "SU7X27GC72VJG45S.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "SU7X27GC72VJG45S.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SU7X27GC72VJG45S.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SU7X27GC72VJG45S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SU7X27GC72VJG45S.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SU7X27GC72VJG45S.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SU7X27GC72VJG45S.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SU7X27GC72VJG45S.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12468" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SU7X27GC72VJG45S.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "SU7X27GC72VJG45S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SU7X27GC72VJG45S.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "SU7X27GC72VJG45S.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25846" - }, - "appliesTo" : [ ] - }, - "SU7X27GC72VJG45S.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "SU7X27GC72VJG45S.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SU7X27GC72VJG45S.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SU7X27GC72VJG45S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SU7X27GC72VJG45S.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SU7X27GC72VJG45S.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23162" - }, - "appliesTo" : [ ] - }, - "SU7X27GC72VJG45S.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SU7X27GC72VJG45S.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SU7X27GC72VJG45S.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "SU7X27GC72VJG45S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SU7X27GC72VJG45S.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "SU7X27GC72VJG45S.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SU7X27GC72VJG45S.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SU7X27GC72VJG45S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SU7X27GC72VJG45S.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SU7X27GC72VJG45S.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7220000000" - }, - "appliesTo" : [ ] - }, - "SU7X27GC72VJG45S.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SU7X27GC72VJG45S.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6328" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SU7X27GC72VJG45S.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SU7X27GC72VJG45S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SU7X27GC72VJG45S.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SU7X27GC72VJG45S.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "AC2NWG73MEX4BBX3" : { - "AC2NWG73MEX4BBX3.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "AC2NWG73MEX4BBX3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AC2NWG73MEX4BBX3.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "AC2NWG73MEX4BBX3.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30347" - }, - "appliesTo" : [ ] - }, - "AC2NWG73MEX4BBX3.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "AC2NWG73MEX4BBX3.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "AC2NWG73MEX4BBX3.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "AC2NWG73MEX4BBX3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AC2NWG73MEX4BBX3.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "AC2NWG73MEX4BBX3.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "AC2NWG73MEX4BBX3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "AC2NWG73MEX4BBX3", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "AC2NWG73MEX4BBX3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "AC2NWG73MEX4BBX3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "49730" - }, - "appliesTo" : [ ] - }, - "AC2NWG73MEX4BBX3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "AC2NWG73MEX4BBX3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AC2NWG73MEX4BBX3.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "AC2NWG73MEX4BBX3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AC2NWG73MEX4BBX3.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "AC2NWG73MEX4BBX3.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "AC2NWG73MEX4BBX3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "AC2NWG73MEX4BBX3", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "AC2NWG73MEX4BBX3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "AC2NWG73MEX4BBX3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33891" - }, - "appliesTo" : [ ] - }, - "AC2NWG73MEX4BBX3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "AC2NWG73MEX4BBX3.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AC2NWG73MEX4BBX3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "AC2NWG73MEX4BBX3", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "AC2NWG73MEX4BBX3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "AC2NWG73MEX4BBX3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26435" - }, - "appliesTo" : [ ] - }, - "AC2NWG73MEX4BBX3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "AC2NWG73MEX4BBX3.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AC2NWG73MEX4BBX3.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "AC2NWG73MEX4BBX3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AC2NWG73MEX4BBX3.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "AC2NWG73MEX4BBX3.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19891" - }, - "appliesTo" : [ ] - }, - "AC2NWG73MEX4BBX3.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "AC2NWG73MEX4BBX3.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "AC2NWG73MEX4BBX3.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "AC2NWG73MEX4BBX3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AC2NWG73MEX4BBX3.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "AC2NWG73MEX4BBX3.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.7590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "AC2NWG73MEX4BBX3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "AC2NWG73MEX4BBX3", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "AC2NWG73MEX4BBX3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "AC2NWG73MEX4BBX3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17319" - }, - "appliesTo" : [ ] - }, - "AC2NWG73MEX4BBX3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "AC2NWG73MEX4BBX3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AC2NWG73MEX4BBX3.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "AC2NWG73MEX4BBX3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AC2NWG73MEX4BBX3.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "AC2NWG73MEX4BBX3.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "59484" - }, - "appliesTo" : [ ] - }, - "AC2NWG73MEX4BBX3.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "AC2NWG73MEX4BBX3.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "AC2NWG73MEX4BBX3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "AC2NWG73MEX4BBX3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AC2NWG73MEX4BBX3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "AC2NWG73MEX4BBX3.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.1430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "AC2NWG73MEX4BBX3.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "AC2NWG73MEX4BBX3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AC2NWG73MEX4BBX3.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "AC2NWG73MEX4BBX3.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38931" - }, - "appliesTo" : [ ] - }, - "AC2NWG73MEX4BBX3.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "AC2NWG73MEX4BBX3.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "3KAFWJNHJ6VKA77T" : { - "3KAFWJNHJ6VKA77T.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "3KAFWJNHJ6VKA77T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3KAFWJNHJ6VKA77T.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "3KAFWJNHJ6VKA77T.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3135000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3KAFWJNHJ6VKA77T.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "3KAFWJNHJ6VKA77T", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3KAFWJNHJ6VKA77T.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "3KAFWJNHJ6VKA77T.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "3KAFWJNHJ6VKA77T.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "3KAFWJNHJ6VKA77T.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2229" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3KAFWJNHJ6VKA77T.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "3KAFWJNHJ6VKA77T", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3KAFWJNHJ6VKA77T.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "3KAFWJNHJ6VKA77T.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4348" - }, - "appliesTo" : [ ] - }, - "3KAFWJNHJ6VKA77T.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "3KAFWJNHJ6VKA77T.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3KAFWJNHJ6VKA77T.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "3KAFWJNHJ6VKA77T", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3KAFWJNHJ6VKA77T.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "3KAFWJNHJ6VKA77T.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1012000000" - }, - "appliesTo" : [ ] - }, - "3KAFWJNHJ6VKA77T.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "3KAFWJNHJ6VKA77T.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2660" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3KAFWJNHJ6VKA77T.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "3KAFWJNHJ6VKA77T", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3KAFWJNHJ6VKA77T.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "3KAFWJNHJ6VKA77T.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2313" - }, - "appliesTo" : [ ] - }, - "3KAFWJNHJ6VKA77T.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "3KAFWJNHJ6VKA77T.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3KAFWJNHJ6VKA77T.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "3KAFWJNHJ6VKA77T", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3KAFWJNHJ6VKA77T.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "3KAFWJNHJ6VKA77T.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5213" - }, - "appliesTo" : [ ] - }, - "3KAFWJNHJ6VKA77T.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "3KAFWJNHJ6VKA77T.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3KAFWJNHJ6VKA77T.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "3KAFWJNHJ6VKA77T", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3KAFWJNHJ6VKA77T.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "3KAFWJNHJ6VKA77T.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2186000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3KAFWJNHJ6VKA77T.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "3KAFWJNHJ6VKA77T", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3KAFWJNHJ6VKA77T.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "3KAFWJNHJ6VKA77T.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2726000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3KAFWJNHJ6VKA77T.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "3KAFWJNHJ6VKA77T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3KAFWJNHJ6VKA77T.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "3KAFWJNHJ6VKA77T.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1308" - }, - "appliesTo" : [ ] - }, - "3KAFWJNHJ6VKA77T.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "3KAFWJNHJ6VKA77T.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1493000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3KAFWJNHJ6VKA77T.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "3KAFWJNHJ6VKA77T", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3KAFWJNHJ6VKA77T.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "3KAFWJNHJ6VKA77T.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1901000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3KAFWJNHJ6VKA77T.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "3KAFWJNHJ6VKA77T", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3KAFWJNHJ6VKA77T.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "3KAFWJNHJ6VKA77T.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1298000000" - }, - "appliesTo" : [ ] - }, - "3KAFWJNHJ6VKA77T.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "3KAFWJNHJ6VKA77T.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1137" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3KAFWJNHJ6VKA77T.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "3KAFWJNHJ6VKA77T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3KAFWJNHJ6VKA77T.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "3KAFWJNHJ6VKA77T.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2563" - }, - "appliesTo" : [ ] - }, - "3KAFWJNHJ6VKA77T.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "3KAFWJNHJ6VKA77T.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "FFWF55NY7SRTUYUX" : { - "FFWF55NY7SRTUYUX.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "FFWF55NY7SRTUYUX", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "FFWF55NY7SRTUYUX.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "FFWF55NY7SRTUYUX.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5216" - }, - "appliesTo" : [ ] - }, - "FFWF55NY7SRTUYUX.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "FFWF55NY7SRTUYUX.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FFWF55NY7SRTUYUX.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "FFWF55NY7SRTUYUX", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "FFWF55NY7SRTUYUX.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "FFWF55NY7SRTUYUX.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14083" - }, - "appliesTo" : [ ] - }, - "FFWF55NY7SRTUYUX.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "FFWF55NY7SRTUYUX.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FFWF55NY7SRTUYUX.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "FFWF55NY7SRTUYUX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "FFWF55NY7SRTUYUX.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "FFWF55NY7SRTUYUX.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19718" - }, - "appliesTo" : [ ] - }, - "FFWF55NY7SRTUYUX.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "FFWF55NY7SRTUYUX.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FFWF55NY7SRTUYUX.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "FFWF55NY7SRTUYUX", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "FFWF55NY7SRTUYUX.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "FFWF55NY7SRTUYUX.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FFWF55NY7SRTUYUX.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "FFWF55NY7SRTUYUX", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "FFWF55NY7SRTUYUX.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "FFWF55NY7SRTUYUX.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4890000000" - }, - "appliesTo" : [ ] - }, - "FFWF55NY7SRTUYUX.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "FFWF55NY7SRTUYUX.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8126" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FFWF55NY7SRTUYUX.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "FFWF55NY7SRTUYUX", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "FFWF55NY7SRTUYUX.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "FFWF55NY7SRTUYUX.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9807" - }, - "appliesTo" : [ ] - }, - "FFWF55NY7SRTUYUX.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "FFWF55NY7SRTUYUX.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FFWF55NY7SRTUYUX.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "FFWF55NY7SRTUYUX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "FFWF55NY7SRTUYUX.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "FFWF55NY7SRTUYUX.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FFWF55NY7SRTUYUX.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "FFWF55NY7SRTUYUX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FFWF55NY7SRTUYUX.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "FFWF55NY7SRTUYUX.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5093" - }, - "appliesTo" : [ ] - }, - "FFWF55NY7SRTUYUX.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "FFWF55NY7SRTUYUX.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FFWF55NY7SRTUYUX.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "FFWF55NY7SRTUYUX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FFWF55NY7SRTUYUX.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "FFWF55NY7SRTUYUX.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FFWF55NY7SRTUYUX.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "FFWF55NY7SRTUYUX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FFWF55NY7SRTUYUX.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "FFWF55NY7SRTUYUX.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "FFWF55NY7SRTUYUX.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "FFWF55NY7SRTUYUX.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11122" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FFWF55NY7SRTUYUX.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "FFWF55NY7SRTUYUX", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "FFWF55NY7SRTUYUX.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "FFWF55NY7SRTUYUX.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26814" - }, - "appliesTo" : [ ] - }, - "FFWF55NY7SRTUYUX.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "FFWF55NY7SRTUYUX.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "6TGXJKCAZTAFTYB9" : { - "6TGXJKCAZTAFTYB9.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "6TGXJKCAZTAFTYB9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6TGXJKCAZTAFTYB9.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "6TGXJKCAZTAFTYB9.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "78622" - }, - "appliesTo" : [ ] - }, - "6TGXJKCAZTAFTYB9.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "6TGXJKCAZTAFTYB9.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6TGXJKCAZTAFTYB9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6TGXJKCAZTAFTYB9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6TGXJKCAZTAFTYB9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6TGXJKCAZTAFTYB9.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6TGXJKCAZTAFTYB9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6TGXJKCAZTAFTYB9", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "6TGXJKCAZTAFTYB9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6TGXJKCAZTAFTYB9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37938" - }, - "appliesTo" : [ ] - }, - "6TGXJKCAZTAFTYB9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6TGXJKCAZTAFTYB9.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6TGXJKCAZTAFTYB9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6TGXJKCAZTAFTYB9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6TGXJKCAZTAFTYB9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6TGXJKCAZTAFTYB9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "74533" - }, - "appliesTo" : [ ] - }, - "6TGXJKCAZTAFTYB9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6TGXJKCAZTAFTYB9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6TGXJKCAZTAFTYB9.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "6TGXJKCAZTAFTYB9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6TGXJKCAZTAFTYB9.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "6TGXJKCAZTAFTYB9.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0892000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6TGXJKCAZTAFTYB9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6TGXJKCAZTAFTYB9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6TGXJKCAZTAFTYB9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6TGXJKCAZTAFTYB9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14510" - }, - "appliesTo" : [ ] - }, - "6TGXJKCAZTAFTYB9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6TGXJKCAZTAFTYB9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6TGXJKCAZTAFTYB9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6TGXJKCAZTAFTYB9", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "6TGXJKCAZTAFTYB9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6TGXJKCAZTAFTYB9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28796" - }, - "appliesTo" : [ ] - }, - "6TGXJKCAZTAFTYB9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6TGXJKCAZTAFTYB9.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6TGXJKCAZTAFTYB9.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "6TGXJKCAZTAFTYB9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6TGXJKCAZTAFTYB9.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "6TGXJKCAZTAFTYB9.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30472" - }, - "appliesTo" : [ ] - }, - "6TGXJKCAZTAFTYB9.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "6TGXJKCAZTAFTYB9.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6TGXJKCAZTAFTYB9.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "6TGXJKCAZTAFTYB9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6TGXJKCAZTAFTYB9.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "6TGXJKCAZTAFTYB9.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39567" - }, - "appliesTo" : [ ] - }, - "6TGXJKCAZTAFTYB9.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "6TGXJKCAZTAFTYB9.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5056000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6TGXJKCAZTAFTYB9.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "6TGXJKCAZTAFTYB9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6TGXJKCAZTAFTYB9.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "6TGXJKCAZTAFTYB9.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9518000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6TGXJKCAZTAFTYB9.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "6TGXJKCAZTAFTYB9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6TGXJKCAZTAFTYB9.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "6TGXJKCAZTAFTYB9.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15365" - }, - "appliesTo" : [ ] - }, - "6TGXJKCAZTAFTYB9.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "6TGXJKCAZTAFTYB9.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6TGXJKCAZTAFTYB9.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "6TGXJKCAZTAFTYB9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6TGXJKCAZTAFTYB9.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "6TGXJKCAZTAFTYB9.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5816000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "6SNHPAN3YKSWBAJB" : { - "6SNHPAN3YKSWBAJB.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6SNHPAN3YKSWBAJB", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "6SNHPAN3YKSWBAJB.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6SNHPAN3YKSWBAJB.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7632" - }, - "appliesTo" : [ ] - }, - "6SNHPAN3YKSWBAJB.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6SNHPAN3YKSWBAJB.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6SNHPAN3YKSWBAJB.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "6SNHPAN3YKSWBAJB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6SNHPAN3YKSWBAJB.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "6SNHPAN3YKSWBAJB.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6313000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6SNHPAN3YKSWBAJB.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6SNHPAN3YKSWBAJB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6SNHPAN3YKSWBAJB.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6SNHPAN3YKSWBAJB.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "6SNHPAN3YKSWBAJB.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6SNHPAN3YKSWBAJB.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5964" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6SNHPAN3YKSWBAJB.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6SNHPAN3YKSWBAJB", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "6SNHPAN3YKSWBAJB.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6SNHPAN3YKSWBAJB.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14928" - }, - "appliesTo" : [ ] - }, - "6SNHPAN3YKSWBAJB.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6SNHPAN3YKSWBAJB.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6SNHPAN3YKSWBAJB.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "6SNHPAN3YKSWBAJB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6SNHPAN3YKSWBAJB.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "6SNHPAN3YKSWBAJB.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8039" - }, - "appliesTo" : [ ] - }, - "6SNHPAN3YKSWBAJB.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "6SNHPAN3YKSWBAJB.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3059000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6SNHPAN3YKSWBAJB.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "6SNHPAN3YKSWBAJB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6SNHPAN3YKSWBAJB.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "6SNHPAN3YKSWBAJB.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7544000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6SNHPAN3YKSWBAJB.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "6SNHPAN3YKSWBAJB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6SNHPAN3YKSWBAJB.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "6SNHPAN3YKSWBAJB.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3224" - }, - "appliesTo" : [ ] - }, - "6SNHPAN3YKSWBAJB.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "6SNHPAN3YKSWBAJB.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6SNHPAN3YKSWBAJB.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6SNHPAN3YKSWBAJB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6SNHPAN3YKSWBAJB.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6SNHPAN3YKSWBAJB.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6SNHPAN3YKSWBAJB.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6SNHPAN3YKSWBAJB", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "6SNHPAN3YKSWBAJB.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6SNHPAN3YKSWBAJB.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3440000000" - }, - "appliesTo" : [ ] - }, - "6SNHPAN3YKSWBAJB.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6SNHPAN3YKSWBAJB.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3010" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6SNHPAN3YKSWBAJB.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "6SNHPAN3YKSWBAJB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6SNHPAN3YKSWBAJB.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "6SNHPAN3YKSWBAJB.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6SNHPAN3YKSWBAJB.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "6SNHPAN3YKSWBAJB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6SNHPAN3YKSWBAJB.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "6SNHPAN3YKSWBAJB.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15950" - }, - "appliesTo" : [ ] - }, - "6SNHPAN3YKSWBAJB.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "6SNHPAN3YKSWBAJB.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6SNHPAN3YKSWBAJB.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "6SNHPAN3YKSWBAJB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6SNHPAN3YKSWBAJB.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "6SNHPAN3YKSWBAJB.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6383" - }, - "appliesTo" : [ ] - }, - "6SNHPAN3YKSWBAJB.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "6SNHPAN3YKSWBAJB.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "6VG367TBGT66TM4N" : { - "6VG367TBGT66TM4N.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6VG367TBGT66TM4N", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "6VG367TBGT66TM4N.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6VG367TBGT66TM4N.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1230" - }, - "appliesTo" : [ ] - }, - "6VG367TBGT66TM4N.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6VG367TBGT66TM4N.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6VG367TBGT66TM4N.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6VG367TBGT66TM4N", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "6VG367TBGT66TM4N.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6VG367TBGT66TM4N.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6VG367TBGT66TM4N.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6VG367TBGT66TM4N", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "6VG367TBGT66TM4N.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6VG367TBGT66TM4N.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "656" - }, - "appliesTo" : [ ] - }, - "6VG367TBGT66TM4N.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6VG367TBGT66TM4N.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0678000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6VG367TBGT66TM4N.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "6VG367TBGT66TM4N", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "6VG367TBGT66TM4N.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "6VG367TBGT66TM4N.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2893" - }, - "appliesTo" : [ ] - }, - "6VG367TBGT66TM4N.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "6VG367TBGT66TM4N.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6VG367TBGT66TM4N.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "6VG367TBGT66TM4N", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "6VG367TBGT66TM4N.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "6VG367TBGT66TM4N.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1474" - }, - "appliesTo" : [ ] - }, - "6VG367TBGT66TM4N.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "6VG367TBGT66TM4N.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0557000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6VG367TBGT66TM4N.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "6VG367TBGT66TM4N", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "6VG367TBGT66TM4N.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "6VG367TBGT66TM4N.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1252000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6VG367TBGT66TM4N.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6VG367TBGT66TM4N", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "6VG367TBGT66TM4N.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6VG367TBGT66TM4N.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1328" - }, - "appliesTo" : [ ] - }, - "6VG367TBGT66TM4N.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6VG367TBGT66TM4N.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0501000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6VG367TBGT66TM4N.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "6VG367TBGT66TM4N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6VG367TBGT66TM4N.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "6VG367TBGT66TM4N.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "6VG367TBGT66TM4N.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "6VG367TBGT66TM4N.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1371" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6VG367TBGT66TM4N.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6VG367TBGT66TM4N", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "6VG367TBGT66TM4N.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6VG367TBGT66TM4N.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2528" - }, - "appliesTo" : [ ] - }, - "6VG367TBGT66TM4N.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6VG367TBGT66TM4N.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6VG367TBGT66TM4N.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "6VG367TBGT66TM4N", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "6VG367TBGT66TM4N.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "6VG367TBGT66TM4N.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1132000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6VG367TBGT66TM4N.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "6VG367TBGT66TM4N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6VG367TBGT66TM4N.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "6VG367TBGT66TM4N.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "728" - }, - "appliesTo" : [ ] - }, - "6VG367TBGT66TM4N.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "6VG367TBGT66TM4N.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6VG367TBGT66TM4N.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "6VG367TBGT66TM4N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6VG367TBGT66TM4N.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "6VG367TBGT66TM4N.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1652000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "T2A8DS9QR9R22WZ2" : { - "T2A8DS9QR9R22WZ2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "T2A8DS9QR9R22WZ2", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "T2A8DS9QR9R22WZ2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "T2A8DS9QR9R22WZ2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3530000000" - }, - "appliesTo" : [ ] - }, - "T2A8DS9QR9R22WZ2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "T2A8DS9QR9R22WZ2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1954" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "T2A8DS9QR9R22WZ2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "T2A8DS9QR9R22WZ2", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "T2A8DS9QR9R22WZ2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "T2A8DS9QR9R22WZ2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4969" - }, - "appliesTo" : [ ] - }, - "T2A8DS9QR9R22WZ2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "T2A8DS9QR9R22WZ2.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "T2A8DS9QR9R22WZ2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "T2A8DS9QR9R22WZ2", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "T2A8DS9QR9R22WZ2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "T2A8DS9QR9R22WZ2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11047" - }, - "appliesTo" : [ ] - }, - "T2A8DS9QR9R22WZ2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "T2A8DS9QR9R22WZ2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "T2A8DS9QR9R22WZ2.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "T2A8DS9QR9R22WZ2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "T2A8DS9QR9R22WZ2.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "T2A8DS9QR9R22WZ2.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4654" - }, - "appliesTo" : [ ] - }, - "T2A8DS9QR9R22WZ2.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "T2A8DS9QR9R22WZ2.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "T2A8DS9QR9R22WZ2.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "T2A8DS9QR9R22WZ2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "T2A8DS9QR9R22WZ2.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "T2A8DS9QR9R22WZ2.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "T2A8DS9QR9R22WZ2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "T2A8DS9QR9R22WZ2", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "T2A8DS9QR9R22WZ2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "T2A8DS9QR9R22WZ2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4059" - }, - "appliesTo" : [ ] - }, - "T2A8DS9QR9R22WZ2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "T2A8DS9QR9R22WZ2.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "T2A8DS9QR9R22WZ2.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "T2A8DS9QR9R22WZ2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "T2A8DS9QR9R22WZ2.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "T2A8DS9QR9R22WZ2.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2261" - }, - "appliesTo" : [ ] - }, - "T2A8DS9QR9R22WZ2.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "T2A8DS9QR9R22WZ2.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "T2A8DS9QR9R22WZ2.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "T2A8DS9QR9R22WZ2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "T2A8DS9QR9R22WZ2.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "T2A8DS9QR9R22WZ2.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "T2A8DS9QR9R22WZ2.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "T2A8DS9QR9R22WZ2.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12539" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "T2A8DS9QR9R22WZ2.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "T2A8DS9QR9R22WZ2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "T2A8DS9QR9R22WZ2.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "T2A8DS9QR9R22WZ2.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "T2A8DS9QR9R22WZ2.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "T2A8DS9QR9R22WZ2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "T2A8DS9QR9R22WZ2.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "T2A8DS9QR9R22WZ2.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "T2A8DS9QR9R22WZ2.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "T2A8DS9QR9R22WZ2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "T2A8DS9QR9R22WZ2.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "T2A8DS9QR9R22WZ2.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5570" - }, - "appliesTo" : [ ] - }, - "T2A8DS9QR9R22WZ2.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "T2A8DS9QR9R22WZ2.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "T2A8DS9QR9R22WZ2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "T2A8DS9QR9R22WZ2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "T2A8DS9QR9R22WZ2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "T2A8DS9QR9R22WZ2.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "SXC4GWK8KEDB7F93" : { - "SXC4GWK8KEDB7F93.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SXC4GWK8KEDB7F93", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SXC4GWK8KEDB7F93.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SXC4GWK8KEDB7F93.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4084" - }, - "appliesTo" : [ ] - }, - "SXC4GWK8KEDB7F93.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SXC4GWK8KEDB7F93.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SXC4GWK8KEDB7F93.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SXC4GWK8KEDB7F93", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SXC4GWK8KEDB7F93.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SXC4GWK8KEDB7F93.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SXC4GWK8KEDB7F93.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SXC4GWK8KEDB7F93", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "SXC4GWK8KEDB7F93.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SXC4GWK8KEDB7F93.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7950" - }, - "appliesTo" : [ ] - }, - "SXC4GWK8KEDB7F93.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SXC4GWK8KEDB7F93.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SXC4GWK8KEDB7F93.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "SXC4GWK8KEDB7F93", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SXC4GWK8KEDB7F93.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "SXC4GWK8KEDB7F93.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SXC4GWK8KEDB7F93.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "SXC4GWK8KEDB7F93", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SXC4GWK8KEDB7F93.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "SXC4GWK8KEDB7F93.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SXC4GWK8KEDB7F93.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "SXC4GWK8KEDB7F93", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SXC4GWK8KEDB7F93.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "SXC4GWK8KEDB7F93.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18939" - }, - "appliesTo" : [ ] - }, - "SXC4GWK8KEDB7F93.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "SXC4GWK8KEDB7F93.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SXC4GWK8KEDB7F93.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SXC4GWK8KEDB7F93", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "SXC4GWK8KEDB7F93.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SXC4GWK8KEDB7F93.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15955" - }, - "appliesTo" : [ ] - }, - "SXC4GWK8KEDB7F93.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SXC4GWK8KEDB7F93.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SXC4GWK8KEDB7F93.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "SXC4GWK8KEDB7F93", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SXC4GWK8KEDB7F93.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "SXC4GWK8KEDB7F93.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9152" - }, - "appliesTo" : [ ] - }, - "SXC4GWK8KEDB7F93.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "SXC4GWK8KEDB7F93.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SXC4GWK8KEDB7F93.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SXC4GWK8KEDB7F93", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "SXC4GWK8KEDB7F93.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SXC4GWK8KEDB7F93.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8469" - }, - "appliesTo" : [ ] - }, - "SXC4GWK8KEDB7F93.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SXC4GWK8KEDB7F93.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SXC4GWK8KEDB7F93.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "SXC4GWK8KEDB7F93", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SXC4GWK8KEDB7F93.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "SXC4GWK8KEDB7F93.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3670000000" - }, - "appliesTo" : [ ] - }, - "SXC4GWK8KEDB7F93.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "SXC4GWK8KEDB7F93.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9660" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SXC4GWK8KEDB7F93.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "SXC4GWK8KEDB7F93", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SXC4GWK8KEDB7F93.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "SXC4GWK8KEDB7F93.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SXC4GWK8KEDB7F93.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "SXC4GWK8KEDB7F93", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SXC4GWK8KEDB7F93.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "SXC4GWK8KEDB7F93.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4697" - }, - "appliesTo" : [ ] - }, - "SXC4GWK8KEDB7F93.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "SXC4GWK8KEDB7F93.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "W5JCPDDZFQ9MFMCP" : { - "W5JCPDDZFQ9MFMCP.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "W5JCPDDZFQ9MFMCP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W5JCPDDZFQ9MFMCP.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "W5JCPDDZFQ9MFMCP.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "314924" - }, - "appliesTo" : [ ] - }, - "W5JCPDDZFQ9MFMCP.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "W5JCPDDZFQ9MFMCP.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "35.9500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "W5JCPDDZFQ9MFMCP.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "W5JCPDDZFQ9MFMCP", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "W5JCPDDZFQ9MFMCP.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "W5JCPDDZFQ9MFMCP.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "70.3340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "W5JCPDDZFQ9MFMCP.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "W5JCPDDZFQ9MFMCP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W5JCPDDZFQ9MFMCP.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "W5JCPDDZFQ9MFMCP.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "72.8010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "W5JCPDDZFQ9MFMCP.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "W5JCPDDZFQ9MFMCP", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "W5JCPDDZFQ9MFMCP.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "W5JCPDDZFQ9MFMCP.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "812467" - }, - "appliesTo" : [ ] - }, - "W5JCPDDZFQ9MFMCP.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "W5JCPDDZFQ9MFMCP.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "30.9160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "W5JCPDDZFQ9MFMCP.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "W5JCPDDZFQ9MFMCP", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "W5JCPDDZFQ9MFMCP.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "W5JCPDDZFQ9MFMCP.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1612408" - }, - "appliesTo" : [ ] - }, - "W5JCPDDZFQ9MFMCP.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "W5JCPDDZFQ9MFMCP.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "W5JCPDDZFQ9MFMCP.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "W5JCPDDZFQ9MFMCP", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "W5JCPDDZFQ9MFMCP.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "W5JCPDDZFQ9MFMCP.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "31.5120000000" - }, - "appliesTo" : [ ] - }, - "W5JCPDDZFQ9MFMCP.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "W5JCPDDZFQ9MFMCP.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "828124" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "W5JCPDDZFQ9MFMCP.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "W5JCPDDZFQ9MFMCP", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "W5JCPDDZFQ9MFMCP.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "W5JCPDDZFQ9MFMCP.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "606523" - }, - "appliesTo" : [ ] - }, - "W5JCPDDZFQ9MFMCP.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "W5JCPDDZFQ9MFMCP.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "W5JCPDDZFQ9MFMCP.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "W5JCPDDZFQ9MFMCP", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "W5JCPDDZFQ9MFMCP.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "W5JCPDDZFQ9MFMCP.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "63.7540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "W5JCPDDZFQ9MFMCP.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "W5JCPDDZFQ9MFMCP", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "W5JCPDDZFQ9MFMCP.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "W5JCPDDZFQ9MFMCP.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1651446" - }, - "appliesTo" : [ ] - }, - "W5JCPDDZFQ9MFMCP.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "W5JCPDDZFQ9MFMCP.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "W5JCPDDZFQ9MFMCP.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "W5JCPDDZFQ9MFMCP", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "W5JCPDDZFQ9MFMCP.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "W5JCPDDZFQ9MFMCP.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "62.4670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "W5JCPDDZFQ9MFMCP.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "W5JCPDDZFQ9MFMCP", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "W5JCPDDZFQ9MFMCP.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "W5JCPDDZFQ9MFMCP.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "304634" - }, - "appliesTo" : [ ] - }, - "W5JCPDDZFQ9MFMCP.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "W5JCPDDZFQ9MFMCP.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "34.7760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "W5JCPDDZFQ9MFMCP.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "W5JCPDDZFQ9MFMCP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W5JCPDDZFQ9MFMCP.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "W5JCPDDZFQ9MFMCP.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "W5JCPDDZFQ9MFMCP.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "W5JCPDDZFQ9MFMCP.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "626693" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "CYF7KMJTP6KF6443" : { - "CYF7KMJTP6KF6443.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "CYF7KMJTP6KF6443", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CYF7KMJTP6KF6443.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "CYF7KMJTP6KF6443.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8712" - }, - "appliesTo" : [ ] - }, - "CYF7KMJTP6KF6443.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "CYF7KMJTP6KF6443.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CYF7KMJTP6KF6443.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "CYF7KMJTP6KF6443", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CYF7KMJTP6KF6443.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "CYF7KMJTP6KF6443.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CYF7KMJTP6KF6443.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "CYF7KMJTP6KF6443", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CYF7KMJTP6KF6443.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "CYF7KMJTP6KF6443.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30463" - }, - "appliesTo" : [ ] - }, - "CYF7KMJTP6KF6443.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "CYF7KMJTP6KF6443.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CYF7KMJTP6KF6443.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "CYF7KMJTP6KF6443", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CYF7KMJTP6KF6443.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "CYF7KMJTP6KF6443.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "CYF7KMJTP6KF6443.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "CYF7KMJTP6KF6443.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17075" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CYF7KMJTP6KF6443.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "CYF7KMJTP6KF6443", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CYF7KMJTP6KF6443.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "CYF7KMJTP6KF6443.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16204" - }, - "appliesTo" : [ ] - }, - "CYF7KMJTP6KF6443.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "CYF7KMJTP6KF6443.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CYF7KMJTP6KF6443.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "CYF7KMJTP6KF6443", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CYF7KMJTP6KF6443.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "CYF7KMJTP6KF6443.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "TBC4ECWPWM5TJCUA" : { - "TBC4ECWPWM5TJCUA.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "TBC4ECWPWM5TJCUA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TBC4ECWPWM5TJCUA.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "TBC4ECWPWM5TJCUA.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2304" - }, - "appliesTo" : [ ] - }, - "TBC4ECWPWM5TJCUA.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "TBC4ECWPWM5TJCUA.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TBC4ECWPWM5TJCUA.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "TBC4ECWPWM5TJCUA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TBC4ECWPWM5TJCUA.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "TBC4ECWPWM5TJCUA.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2349" - }, - "appliesTo" : [ ] - }, - "TBC4ECWPWM5TJCUA.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "TBC4ECWPWM5TJCUA.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TBC4ECWPWM5TJCUA.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "TBC4ECWPWM5TJCUA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TBC4ECWPWM5TJCUA.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "TBC4ECWPWM5TJCUA.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TBC4ECWPWM5TJCUA.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TBC4ECWPWM5TJCUA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TBC4ECWPWM5TJCUA.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TBC4ECWPWM5TJCUA.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2085" - }, - "appliesTo" : [ ] - }, - "TBC4ECWPWM5TJCUA.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TBC4ECWPWM5TJCUA.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TBC4ECWPWM5TJCUA.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TBC4ECWPWM5TJCUA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TBC4ECWPWM5TJCUA.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TBC4ECWPWM5TJCUA.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TBC4ECWPWM5TJCUA.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TBC4ECWPWM5TJCUA.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3953" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TBC4ECWPWM5TJCUA.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TBC4ECWPWM5TJCUA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TBC4ECWPWM5TJCUA.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TBC4ECWPWM5TJCUA.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2041" - }, - "appliesTo" : [ ] - }, - "TBC4ECWPWM5TJCUA.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TBC4ECWPWM5TJCUA.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TBC4ECWPWM5TJCUA.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "TBC4ECWPWM5TJCUA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TBC4ECWPWM5TJCUA.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "TBC4ECWPWM5TJCUA.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TBC4ECWPWM5TJCUA.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "TBC4ECWPWM5TJCUA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TBC4ECWPWM5TJCUA.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "TBC4ECWPWM5TJCUA.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1204" - }, - "appliesTo" : [ ] - }, - "TBC4ECWPWM5TJCUA.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "TBC4ECWPWM5TJCUA.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TBC4ECWPWM5TJCUA.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TBC4ECWPWM5TJCUA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TBC4ECWPWM5TJCUA.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TBC4ECWPWM5TJCUA.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TBC4ECWPWM5TJCUA.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TBC4ECWPWM5TJCUA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TBC4ECWPWM5TJCUA.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TBC4ECWPWM5TJCUA.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1070" - }, - "appliesTo" : [ ] - }, - "TBC4ECWPWM5TJCUA.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TBC4ECWPWM5TJCUA.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TBC4ECWPWM5TJCUA.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "TBC4ECWPWM5TJCUA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TBC4ECWPWM5TJCUA.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "TBC4ECWPWM5TJCUA.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TBC4ECWPWM5TJCUA.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "TBC4ECWPWM5TJCUA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TBC4ECWPWM5TJCUA.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "TBC4ECWPWM5TJCUA.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4608" - }, - "appliesTo" : [ ] - }, - "TBC4ECWPWM5TJCUA.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "TBC4ECWPWM5TJCUA.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "F2Q73ZKZWDKZ25TB" : { - "F2Q73ZKZWDKZ25TB.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "F2Q73ZKZWDKZ25TB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "F2Q73ZKZWDKZ25TB.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "F2Q73ZKZWDKZ25TB.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "F2Q73ZKZWDKZ25TB.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "F2Q73ZKZWDKZ25TB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "F2Q73ZKZWDKZ25TB.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "F2Q73ZKZWDKZ25TB.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "665" - }, - "appliesTo" : [ ] - }, - "F2Q73ZKZWDKZ25TB.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "F2Q73ZKZWDKZ25TB.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "F2Q73ZKZWDKZ25TB.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "F2Q73ZKZWDKZ25TB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "F2Q73ZKZWDKZ25TB.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "F2Q73ZKZWDKZ25TB.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "F2Q73ZKZWDKZ25TB.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "F2Q73ZKZWDKZ25TB", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "F2Q73ZKZWDKZ25TB.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "F2Q73ZKZWDKZ25TB.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1200" - }, - "appliesTo" : [ ] - }, - "F2Q73ZKZWDKZ25TB.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "F2Q73ZKZWDKZ25TB.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "F2Q73ZKZWDKZ25TB.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "F2Q73ZKZWDKZ25TB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "F2Q73ZKZWDKZ25TB.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "F2Q73ZKZWDKZ25TB.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1363" - }, - "appliesTo" : [ ] - }, - "F2Q73ZKZWDKZ25TB.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "F2Q73ZKZWDKZ25TB.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "F2Q73ZKZWDKZ25TB.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "F2Q73ZKZWDKZ25TB", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "F2Q73ZKZWDKZ25TB.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "F2Q73ZKZWDKZ25TB.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "583" - }, - "appliesTo" : [ ] - }, - "F2Q73ZKZWDKZ25TB.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "F2Q73ZKZWDKZ25TB.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "F2Q73ZKZWDKZ25TB.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "F2Q73ZKZWDKZ25TB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "F2Q73ZKZWDKZ25TB.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "F2Q73ZKZWDKZ25TB.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1829" - }, - "appliesTo" : [ ] - }, - "F2Q73ZKZWDKZ25TB.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "F2Q73ZKZWDKZ25TB.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "F2Q73ZKZWDKZ25TB.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "F2Q73ZKZWDKZ25TB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "F2Q73ZKZWDKZ25TB.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "F2Q73ZKZWDKZ25TB.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "F2Q73ZKZWDKZ25TB.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "F2Q73ZKZWDKZ25TB", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "F2Q73ZKZWDKZ25TB.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "F2Q73ZKZWDKZ25TB.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3833" - }, - "appliesTo" : [ ] - }, - "F2Q73ZKZWDKZ25TB.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "F2Q73ZKZWDKZ25TB.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "F2Q73ZKZWDKZ25TB.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "F2Q73ZKZWDKZ25TB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "F2Q73ZKZWDKZ25TB.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "F2Q73ZKZWDKZ25TB.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1669" - }, - "appliesTo" : [ ] - }, - "F2Q73ZKZWDKZ25TB.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "F2Q73ZKZWDKZ25TB.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "F2Q73ZKZWDKZ25TB.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "F2Q73ZKZWDKZ25TB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "F2Q73ZKZWDKZ25TB.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "F2Q73ZKZWDKZ25TB.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "F2Q73ZKZWDKZ25TB.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "F2Q73ZKZWDKZ25TB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "F2Q73ZKZWDKZ25TB.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "F2Q73ZKZWDKZ25TB.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4248" - }, - "appliesTo" : [ ] - }, - "F2Q73ZKZWDKZ25TB.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "F2Q73ZKZWDKZ25TB.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "9MZCJAF77KSVMAC2" : { - "9MZCJAF77KSVMAC2.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "9MZCJAF77KSVMAC2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9MZCJAF77KSVMAC2.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "9MZCJAF77KSVMAC2.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "31.2340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9MZCJAF77KSVMAC2.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "9MZCJAF77KSVMAC2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9MZCJAF77KSVMAC2.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "9MZCJAF77KSVMAC2.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "414062" - }, - "appliesTo" : [ ] - }, - "9MZCJAF77KSVMAC2.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "9MZCJAF77KSVMAC2.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.7560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9MZCJAF77KSVMAC2.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "9MZCJAF77KSVMAC2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9MZCJAF77KSVMAC2.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "9MZCJAF77KSVMAC2.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "31.8770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9MZCJAF77KSVMAC2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "9MZCJAF77KSVMAC2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9MZCJAF77KSVMAC2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "9MZCJAF77KSVMAC2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "806204" - }, - "appliesTo" : [ ] - }, - "9MZCJAF77KSVMAC2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "9MZCJAF77KSVMAC2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9MZCJAF77KSVMAC2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "9MZCJAF77KSVMAC2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9MZCJAF77KSVMAC2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "9MZCJAF77KSVMAC2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "406233" - }, - "appliesTo" : [ ] - }, - "9MZCJAF77KSVMAC2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "9MZCJAF77KSVMAC2.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.4580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9MZCJAF77KSVMAC2.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "9MZCJAF77KSVMAC2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9MZCJAF77KSVMAC2.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "9MZCJAF77KSVMAC2.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "825723" - }, - "appliesTo" : [ ] - }, - "9MZCJAF77KSVMAC2.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "9MZCJAF77KSVMAC2.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9MZCJAF77KSVMAC2.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "9MZCJAF77KSVMAC2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9MZCJAF77KSVMAC2.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "9MZCJAF77KSVMAC2.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "9MZCJAF77KSVMAC2.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "9MZCJAF77KSVMAC2.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "313346" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9MZCJAF77KSVMAC2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "9MZCJAF77KSVMAC2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9MZCJAF77KSVMAC2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "9MZCJAF77KSVMAC2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "303261" - }, - "appliesTo" : [ ] - }, - "9MZCJAF77KSVMAC2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "9MZCJAF77KSVMAC2.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9MZCJAF77KSVMAC2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "9MZCJAF77KSVMAC2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9MZCJAF77KSVMAC2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "9MZCJAF77KSVMAC2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "152317" - }, - "appliesTo" : [ ] - }, - "9MZCJAF77KSVMAC2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "9MZCJAF77KSVMAC2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "17.3880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9MZCJAF77KSVMAC2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "9MZCJAF77KSVMAC2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9MZCJAF77KSVMAC2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "9MZCJAF77KSVMAC2.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "35.1670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9MZCJAF77KSVMAC2.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "9MZCJAF77KSVMAC2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9MZCJAF77KSVMAC2.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "9MZCJAF77KSVMAC2.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "157462" - }, - "appliesTo" : [ ] - }, - "9MZCJAF77KSVMAC2.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "9MZCJAF77KSVMAC2.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "17.9750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9MZCJAF77KSVMAC2.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "9MZCJAF77KSVMAC2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9MZCJAF77KSVMAC2.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "9MZCJAF77KSVMAC2.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "36.4010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "32XCE2AVYT82WZYJ" : { - "32XCE2AVYT82WZYJ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "32XCE2AVYT82WZYJ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "32XCE2AVYT82WZYJ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "32XCE2AVYT82WZYJ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "132227" - }, - "appliesTo" : [ ] - }, - "32XCE2AVYT82WZYJ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "32XCE2AVYT82WZYJ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.0940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "32XCE2AVYT82WZYJ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "32XCE2AVYT82WZYJ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "32XCE2AVYT82WZYJ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "32XCE2AVYT82WZYJ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "263885" - }, - "appliesTo" : [ ] - }, - "32XCE2AVYT82WZYJ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "32XCE2AVYT82WZYJ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "32XCE2AVYT82WZYJ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "32XCE2AVYT82WZYJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "32XCE2AVYT82WZYJ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "32XCE2AVYT82WZYJ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "29.7260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "32XCE2AVYT82WZYJ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "32XCE2AVYT82WZYJ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "32XCE2AVYT82WZYJ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "32XCE2AVYT82WZYJ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "763582" - }, - "appliesTo" : [ ] - }, - "32XCE2AVYT82WZYJ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "32XCE2AVYT82WZYJ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "32XCE2AVYT82WZYJ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "32XCE2AVYT82WZYJ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "32XCE2AVYT82WZYJ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "32XCE2AVYT82WZYJ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "383562" - }, - "appliesTo" : [ ] - }, - "32XCE2AVYT82WZYJ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "32XCE2AVYT82WZYJ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.5950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "32XCE2AVYT82WZYJ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "32XCE2AVYT82WZYJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "32XCE2AVYT82WZYJ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "32XCE2AVYT82WZYJ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "774432" - }, - "appliesTo" : [ ] - }, - "32XCE2AVYT82WZYJ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "32XCE2AVYT82WZYJ.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "32XCE2AVYT82WZYJ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "32XCE2AVYT82WZYJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "32XCE2AVYT82WZYJ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "32XCE2AVYT82WZYJ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "387893" - }, - "appliesTo" : [ ] - }, - "32XCE2AVYT82WZYJ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "32XCE2AVYT82WZYJ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.7600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "32XCE2AVYT82WZYJ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "32XCE2AVYT82WZYJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "32XCE2AVYT82WZYJ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "32XCE2AVYT82WZYJ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "30.3710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "32XCE2AVYT82WZYJ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "32XCE2AVYT82WZYJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "32XCE2AVYT82WZYJ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "32XCE2AVYT82WZYJ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "30.8850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "32XCE2AVYT82WZYJ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "32XCE2AVYT82WZYJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "32XCE2AVYT82WZYJ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "32XCE2AVYT82WZYJ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "32XCE2AVYT82WZYJ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "32XCE2AVYT82WZYJ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "268254" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "32XCE2AVYT82WZYJ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "32XCE2AVYT82WZYJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "32XCE2AVYT82WZYJ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "32XCE2AVYT82WZYJ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "29.3630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "32XCE2AVYT82WZYJ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "32XCE2AVYT82WZYJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "32XCE2AVYT82WZYJ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "32XCE2AVYT82WZYJ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "134456" - }, - "appliesTo" : [ ] - }, - "32XCE2AVYT82WZYJ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "32XCE2AVYT82WZYJ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.3490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "H4SWC23NZ6GQ2RR9" : { - "H4SWC23NZ6GQ2RR9.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "H4SWC23NZ6GQ2RR9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H4SWC23NZ6GQ2RR9.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "H4SWC23NZ6GQ2RR9.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "H4SWC23NZ6GQ2RR9.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "H4SWC23NZ6GQ2RR9.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2105" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "H4SWC23NZ6GQ2RR9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "H4SWC23NZ6GQ2RR9", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "H4SWC23NZ6GQ2RR9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "H4SWC23NZ6GQ2RR9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "699" - }, - "appliesTo" : [ ] - }, - "H4SWC23NZ6GQ2RR9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "H4SWC23NZ6GQ2RR9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "H4SWC23NZ6GQ2RR9.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "H4SWC23NZ6GQ2RR9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "H4SWC23NZ6GQ2RR9.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "H4SWC23NZ6GQ2RR9.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1602" - }, - "appliesTo" : [ ] - }, - "H4SWC23NZ6GQ2RR9.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "H4SWC23NZ6GQ2RR9.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1209000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "H4SWC23NZ6GQ2RR9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "H4SWC23NZ6GQ2RR9", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "H4SWC23NZ6GQ2RR9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "H4SWC23NZ6GQ2RR9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1398" - }, - "appliesTo" : [ ] - }, - "H4SWC23NZ6GQ2RR9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "H4SWC23NZ6GQ2RR9.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "H4SWC23NZ6GQ2RR9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "H4SWC23NZ6GQ2RR9", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "H4SWC23NZ6GQ2RR9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "H4SWC23NZ6GQ2RR9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1896" - }, - "appliesTo" : [ ] - }, - "H4SWC23NZ6GQ2RR9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "H4SWC23NZ6GQ2RR9.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "H4SWC23NZ6GQ2RR9.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "H4SWC23NZ6GQ2RR9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "H4SWC23NZ6GQ2RR9.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "H4SWC23NZ6GQ2RR9.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1917000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "H4SWC23NZ6GQ2RR9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "H4SWC23NZ6GQ2RR9", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "H4SWC23NZ6GQ2RR9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "H4SWC23NZ6GQ2RR9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4205" - }, - "appliesTo" : [ ] - }, - "H4SWC23NZ6GQ2RR9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "H4SWC23NZ6GQ2RR9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "H4SWC23NZ6GQ2RR9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "H4SWC23NZ6GQ2RR9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "H4SWC23NZ6GQ2RR9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "H4SWC23NZ6GQ2RR9.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "H4SWC23NZ6GQ2RR9.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "H4SWC23NZ6GQ2RR9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H4SWC23NZ6GQ2RR9.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "H4SWC23NZ6GQ2RR9.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "806" - }, - "appliesTo" : [ ] - }, - "H4SWC23NZ6GQ2RR9.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "H4SWC23NZ6GQ2RR9.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "H4SWC23NZ6GQ2RR9.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "H4SWC23NZ6GQ2RR9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H4SWC23NZ6GQ2RR9.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "H4SWC23NZ6GQ2RR9.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2532000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "H4SWC23NZ6GQ2RR9.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "H4SWC23NZ6GQ2RR9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "H4SWC23NZ6GQ2RR9.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "H4SWC23NZ6GQ2RR9.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4716" - }, - "appliesTo" : [ ] - }, - "H4SWC23NZ6GQ2RR9.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "H4SWC23NZ6GQ2RR9.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "H4SWC23NZ6GQ2RR9.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "H4SWC23NZ6GQ2RR9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "H4SWC23NZ6GQ2RR9.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "H4SWC23NZ6GQ2RR9.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1745000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "EM4WENQDQTCE6CHN" : { - "EM4WENQDQTCE6CHN.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "EM4WENQDQTCE6CHN", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "EM4WENQDQTCE6CHN.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "EM4WENQDQTCE6CHN.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21622" - }, - "appliesTo" : [ ] - }, - "EM4WENQDQTCE6CHN.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "EM4WENQDQTCE6CHN.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "EM4WENQDQTCE6CHN.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "EM4WENQDQTCE6CHN", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "EM4WENQDQTCE6CHN.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "EM4WENQDQTCE6CHN.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "EM4WENQDQTCE6CHN.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "EM4WENQDQTCE6CHN", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "EM4WENQDQTCE6CHN.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "EM4WENQDQTCE6CHN.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5960000000" - }, - "appliesTo" : [ ] - }, - "EM4WENQDQTCE6CHN.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "EM4WENQDQTCE6CHN.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12056" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EM4WENQDQTCE6CHN.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "EM4WENQDQTCE6CHN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EM4WENQDQTCE6CHN.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "EM4WENQDQTCE6CHN.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16899" - }, - "appliesTo" : [ ] - }, - "EM4WENQDQTCE6CHN.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "EM4WENQDQTCE6CHN.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "EM4WENQDQTCE6CHN.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "EM4WENQDQTCE6CHN", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "EM4WENQDQTCE6CHN.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "EM4WENQDQTCE6CHN.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38721" - }, - "appliesTo" : [ ] - }, - "EM4WENQDQTCE6CHN.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "EM4WENQDQTCE6CHN.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "EM4WENQDQTCE6CHN.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "EM4WENQDQTCE6CHN", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "EM4WENQDQTCE6CHN.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "EM4WENQDQTCE6CHN.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "EM4WENQDQTCE6CHN.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "EM4WENQDQTCE6CHN.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26060" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EM4WENQDQTCE6CHN.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "EM4WENQDQTCE6CHN", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "EM4WENQDQTCE6CHN.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "EM4WENQDQTCE6CHN.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8008" - }, - "appliesTo" : [ ] - }, - "EM4WENQDQTCE6CHN.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "EM4WENQDQTCE6CHN.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EM4WENQDQTCE6CHN.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "EM4WENQDQTCE6CHN", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "EM4WENQDQTCE6CHN.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "EM4WENQDQTCE6CHN.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "EM4WENQDQTCE6CHN.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "EM4WENQDQTCE6CHN", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "EM4WENQDQTCE6CHN.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "EM4WENQDQTCE6CHN.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14278" - }, - "appliesTo" : [ ] - }, - "EM4WENQDQTCE6CHN.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "EM4WENQDQTCE6CHN.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EM4WENQDQTCE6CHN.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "EM4WENQDQTCE6CHN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EM4WENQDQTCE6CHN.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "EM4WENQDQTCE6CHN.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8041" - }, - "appliesTo" : [ ] - }, - "EM4WENQDQTCE6CHN.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "EM4WENQDQTCE6CHN.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "EM4WENQDQTCE6CHN.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "EM4WENQDQTCE6CHN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EM4WENQDQTCE6CHN.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "EM4WENQDQTCE6CHN.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "UGAW5CN698QFXJS9" : { - "UGAW5CN698QFXJS9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "UGAW5CN698QFXJS9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "UGAW5CN698QFXJS9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "UGAW5CN698QFXJS9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11272" - }, - "appliesTo" : [ ] - }, - "UGAW5CN698QFXJS9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "UGAW5CN698QFXJS9.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "UGAW5CN698QFXJS9.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "UGAW5CN698QFXJS9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UGAW5CN698QFXJS9.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "UGAW5CN698QFXJS9.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12301" - }, - "appliesTo" : [ ] - }, - "UGAW5CN698QFXJS9.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "UGAW5CN698QFXJS9.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "UGAW5CN698QFXJS9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "UGAW5CN698QFXJS9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "UGAW5CN698QFXJS9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "UGAW5CN698QFXJS9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4599" - }, - "appliesTo" : [ ] - }, - "UGAW5CN698QFXJS9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "UGAW5CN698QFXJS9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "UGAW5CN698QFXJS9.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "UGAW5CN698QFXJS9", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "UGAW5CN698QFXJS9.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "UGAW5CN698QFXJS9.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12705" - }, - "appliesTo" : [ ] - }, - "UGAW5CN698QFXJS9.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "UGAW5CN698QFXJS9.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "UGAW5CN698QFXJS9.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "UGAW5CN698QFXJS9", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "UGAW5CN698QFXJS9.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "UGAW5CN698QFXJS9.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "UGAW5CN698QFXJS9.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "UGAW5CN698QFXJS9.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31945" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "UGAW5CN698QFXJS9.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "UGAW5CN698QFXJS9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UGAW5CN698QFXJS9.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "UGAW5CN698QFXJS9.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "UGAW5CN698QFXJS9.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "UGAW5CN698QFXJS9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UGAW5CN698QFXJS9.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "UGAW5CN698QFXJS9.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6224" - }, - "appliesTo" : [ ] - }, - "UGAW5CN698QFXJS9.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "UGAW5CN698QFXJS9.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "UGAW5CN698QFXJS9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "UGAW5CN698QFXJS9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "UGAW5CN698QFXJS9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "UGAW5CN698QFXJS9.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "UGAW5CN698QFXJS9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "UGAW5CN698QFXJS9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "UGAW5CN698QFXJS9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "UGAW5CN698QFXJS9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10886" - }, - "appliesTo" : [ ] - }, - "UGAW5CN698QFXJS9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "UGAW5CN698QFXJS9.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "UGAW5CN698QFXJS9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "UGAW5CN698QFXJS9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "UGAW5CN698QFXJS9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "UGAW5CN698QFXJS9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25598" - }, - "appliesTo" : [ ] - }, - "UGAW5CN698QFXJS9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "UGAW5CN698QFXJS9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "UGAW5CN698QFXJS9.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "UGAW5CN698QFXJS9", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "UGAW5CN698QFXJS9.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "UGAW5CN698QFXJS9.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "J5HSGUZ5Y3QZKRJT" : { - "J5HSGUZ5Y3QZKRJT.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "J5HSGUZ5Y3QZKRJT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J5HSGUZ5Y3QZKRJT.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "J5HSGUZ5Y3QZKRJT.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "73334" - }, - "appliesTo" : [ ] - }, - "J5HSGUZ5Y3QZKRJT.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "J5HSGUZ5Y3QZKRJT.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "J5HSGUZ5Y3QZKRJT.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "J5HSGUZ5Y3QZKRJT", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "J5HSGUZ5Y3QZKRJT.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "J5HSGUZ5Y3QZKRJT.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "199230" - }, - "appliesTo" : [ ] - }, - "J5HSGUZ5Y3QZKRJT.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "J5HSGUZ5Y3QZKRJT.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "J5HSGUZ5Y3QZKRJT.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "J5HSGUZ5Y3QZKRJT", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "J5HSGUZ5Y3QZKRJT.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "J5HSGUZ5Y3QZKRJT.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.0940000000" - }, - "appliesTo" : [ ] - }, - "J5HSGUZ5Y3QZKRJT.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "J5HSGUZ5Y3QZKRJT.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35864" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "J5HSGUZ5Y3QZKRJT.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "J5HSGUZ5Y3QZKRJT", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "J5HSGUZ5Y3QZKRJT.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "J5HSGUZ5Y3QZKRJT.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "105684" - }, - "appliesTo" : [ ] - }, - "J5HSGUZ5Y3QZKRJT.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "J5HSGUZ5Y3QZKRJT.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.0210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "J5HSGUZ5Y3QZKRJT.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "J5HSGUZ5Y3QZKRJT", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "J5HSGUZ5Y3QZKRJT.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "J5HSGUZ5Y3QZKRJT.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "100324" - }, - "appliesTo" : [ ] - }, - "J5HSGUZ5Y3QZKRJT.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "J5HSGUZ5Y3QZKRJT.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "J5HSGUZ5Y3QZKRJT.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "J5HSGUZ5Y3QZKRJT", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "J5HSGUZ5Y3QZKRJT.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "J5HSGUZ5Y3QZKRJT.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "210680" - }, - "appliesTo" : [ ] - }, - "J5HSGUZ5Y3QZKRJT.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "J5HSGUZ5Y3QZKRJT.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "J5HSGUZ5Y3QZKRJT.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "J5HSGUZ5Y3QZKRJT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J5HSGUZ5Y3QZKRJT.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "J5HSGUZ5Y3QZKRJT.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2020000000" - }, - "appliesTo" : [ ] - }, - "J5HSGUZ5Y3QZKRJT.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "J5HSGUZ5Y3QZKRJT.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "36813" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "J5HSGUZ5Y3QZKRJT.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "J5HSGUZ5Y3QZKRJT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J5HSGUZ5Y3QZKRJT.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "J5HSGUZ5Y3QZKRJT.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.4880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "J5HSGUZ5Y3QZKRJT.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "J5HSGUZ5Y3QZKRJT", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "J5HSGUZ5Y3QZKRJT.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "J5HSGUZ5Y3QZKRJT.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.4350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "J5HSGUZ5Y3QZKRJT.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "J5HSGUZ5Y3QZKRJT", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "J5HSGUZ5Y3QZKRJT.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "J5HSGUZ5Y3QZKRJT.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "J5HSGUZ5Y3QZKRJT.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "J5HSGUZ5Y3QZKRJT.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "71473" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "J5HSGUZ5Y3QZKRJT.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "J5HSGUZ5Y3QZKRJT", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "J5HSGUZ5Y3QZKRJT.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "J5HSGUZ5Y3QZKRJT.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.2650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "5CT452VS74WXW77W" : { - "5CT452VS74WXW77W.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "5CT452VS74WXW77W", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5CT452VS74WXW77W.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "5CT452VS74WXW77W.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "5CT452VS74WXW77W.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "5CT452VS74WXW77W", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5CT452VS74WXW77W.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "5CT452VS74WXW77W.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7872" - }, - "appliesTo" : [ ] - }, - "5CT452VS74WXW77W.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "5CT452VS74WXW77W.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "5CT452VS74WXW77W.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "5CT452VS74WXW77W", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "5CT452VS74WXW77W.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "5CT452VS74WXW77W.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15136" - }, - "appliesTo" : [ ] - }, - "5CT452VS74WXW77W.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "5CT452VS74WXW77W.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5CT452VS74WXW77W.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "5CT452VS74WXW77W", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "5CT452VS74WXW77W.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "5CT452VS74WXW77W.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21129" - }, - "appliesTo" : [ ] - }, - "5CT452VS74WXW77W.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "5CT452VS74WXW77W.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5CT452VS74WXW77W.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "5CT452VS74WXW77W", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "5CT452VS74WXW77W.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "5CT452VS74WXW77W.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "5CT452VS74WXW77W.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "5CT452VS74WXW77W", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "5CT452VS74WXW77W.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "5CT452VS74WXW77W.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "5CT452VS74WXW77W.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "5CT452VS74WXW77W", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "5CT452VS74WXW77W.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "5CT452VS74WXW77W.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "41817" - }, - "appliesTo" : [ ] - }, - "5CT452VS74WXW77W.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "5CT452VS74WXW77W.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5CT452VS74WXW77W.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "5CT452VS74WXW77W", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "5CT452VS74WXW77W.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "5CT452VS74WXW77W.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8250000000" - }, - "appliesTo" : [ ] - }, - "5CT452VS74WXW77W.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "5CT452VS74WXW77W.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21681" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "5CT452VS74WXW77W.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "5CT452VS74WXW77W", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5CT452VS74WXW77W.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "5CT452VS74WXW77W.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15661" - }, - "appliesTo" : [ ] - }, - "5CT452VS74WXW77W.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "5CT452VS74WXW77W.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "5CT452VS74WXW77W.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "5CT452VS74WXW77W", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "5CT452VS74WXW77W.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "5CT452VS74WXW77W.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "5CT452VS74WXW77W.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "5CT452VS74WXW77W.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "43193" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "5CT452VS74WXW77W.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "5CT452VS74WXW77W", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "5CT452VS74WXW77W.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "5CT452VS74WXW77W.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7604" - }, - "appliesTo" : [ ] - }, - "5CT452VS74WXW77W.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "5CT452VS74WXW77W.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5CT452VS74WXW77W.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "5CT452VS74WXW77W", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "5CT452VS74WXW77W.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "5CT452VS74WXW77W.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "J8FC8SEVZRJMDMBB" : { - "J8FC8SEVZRJMDMBB.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "J8FC8SEVZRJMDMBB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J8FC8SEVZRJMDMBB.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "J8FC8SEVZRJMDMBB.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "80285" - }, - "appliesTo" : [ ] - }, - "J8FC8SEVZRJMDMBB.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "J8FC8SEVZRJMDMBB.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.1650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "J8FC8SEVZRJMDMBB.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "J8FC8SEVZRJMDMBB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "J8FC8SEVZRJMDMBB.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "J8FC8SEVZRJMDMBB.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "18.0530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "J8FC8SEVZRJMDMBB.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "J8FC8SEVZRJMDMBB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J8FC8SEVZRJMDMBB.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "J8FC8SEVZRJMDMBB.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "18.4890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "J8FC8SEVZRJMDMBB.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "J8FC8SEVZRJMDMBB", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "J8FC8SEVZRJMDMBB.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "J8FC8SEVZRJMDMBB.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "439858" - }, - "appliesTo" : [ ] - }, - "J8FC8SEVZRJMDMBB.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "J8FC8SEVZRJMDMBB.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "J8FC8SEVZRJMDMBB.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "J8FC8SEVZRJMDMBB", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "J8FC8SEVZRJMDMBB.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "J8FC8SEVZRJMDMBB.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "221255" - }, - "appliesTo" : [ ] - }, - "J8FC8SEVZRJMDMBB.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "J8FC8SEVZRJMDMBB.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.4190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "J8FC8SEVZRJMDMBB.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "J8FC8SEVZRJMDMBB", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "J8FC8SEVZRJMDMBB.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "J8FC8SEVZRJMDMBB.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "231687" - }, - "appliesTo" : [ ] - }, - "J8FC8SEVZRJMDMBB.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "J8FC8SEVZRJMDMBB.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.8160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "J8FC8SEVZRJMDMBB.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "J8FC8SEVZRJMDMBB", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "J8FC8SEVZRJMDMBB.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "J8FC8SEVZRJMDMBB.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "J8FC8SEVZRJMDMBB.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "J8FC8SEVZRJMDMBB.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "156386" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "J8FC8SEVZRJMDMBB.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "J8FC8SEVZRJMDMBB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J8FC8SEVZRJMDMBB.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "J8FC8SEVZRJMDMBB.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "J8FC8SEVZRJMDMBB.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "J8FC8SEVZRJMDMBB.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "160015" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "J8FC8SEVZRJMDMBB.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "J8FC8SEVZRJMDMBB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "J8FC8SEVZRJMDMBB.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "J8FC8SEVZRJMDMBB.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "462072" - }, - "appliesTo" : [ ] - }, - "J8FC8SEVZRJMDMBB.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "J8FC8SEVZRJMDMBB.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "J8FC8SEVZRJMDMBB.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "J8FC8SEVZRJMDMBB", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "J8FC8SEVZRJMDMBB.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "J8FC8SEVZRJMDMBB.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "18.3750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "J8FC8SEVZRJMDMBB.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "J8FC8SEVZRJMDMBB", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "J8FC8SEVZRJMDMBB.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "J8FC8SEVZRJMDMBB.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "78434" - }, - "appliesTo" : [ ] - }, - "J8FC8SEVZRJMDMBB.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "J8FC8SEVZRJMDMBB.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.9540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "YU6MR6S9Z249VF2X" : { - "YU6MR6S9Z249VF2X.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YU6MR6S9Z249VF2X", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YU6MR6S9Z249VF2X.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YU6MR6S9Z249VF2X.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22488" - }, - "appliesTo" : [ ] - }, - "YU6MR6S9Z249VF2X.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YU6MR6S9Z249VF2X.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YU6MR6S9Z249VF2X.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "YU6MR6S9Z249VF2X", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YU6MR6S9Z249VF2X.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "YU6MR6S9Z249VF2X.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YU6MR6S9Z249VF2X.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "YU6MR6S9Z249VF2X.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "64414" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YU6MR6S9Z249VF2X.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YU6MR6S9Z249VF2X", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YU6MR6S9Z249VF2X.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YU6MR6S9Z249VF2X.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "42211" - }, - "appliesTo" : [ ] - }, - "YU6MR6S9Z249VF2X.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YU6MR6S9Z249VF2X.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YU6MR6S9Z249VF2X.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "YU6MR6S9Z249VF2X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YU6MR6S9Z249VF2X.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "YU6MR6S9Z249VF2X.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YU6MR6S9Z249VF2X.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "YU6MR6S9Z249VF2X.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27538" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YU6MR6S9Z249VF2X.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "YU6MR6S9Z249VF2X", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "YU6MR6S9Z249VF2X.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "YU6MR6S9Z249VF2X.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YU6MR6S9Z249VF2X.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YU6MR6S9Z249VF2X", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YU6MR6S9Z249VF2X.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YU6MR6S9Z249VF2X.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YU6MR6S9Z249VF2X.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YU6MR6S9Z249VF2X", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YU6MR6S9Z249VF2X.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YU6MR6S9Z249VF2X.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12224" - }, - "appliesTo" : [ ] - }, - "YU6MR6S9Z249VF2X.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YU6MR6S9Z249VF2X.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YU6MR6S9Z249VF2X.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YU6MR6S9Z249VF2X", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YU6MR6S9Z249VF2X.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YU6MR6S9Z249VF2X.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23904" - }, - "appliesTo" : [ ] - }, - "YU6MR6S9Z249VF2X.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YU6MR6S9Z249VF2X.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YU6MR6S9Z249VF2X.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "YU6MR6S9Z249VF2X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YU6MR6S9Z249VF2X.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "YU6MR6S9Z249VF2X.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YU6MR6S9Z249VF2X.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "YU6MR6S9Z249VF2X", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YU6MR6S9Z249VF2X.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "YU6MR6S9Z249VF2X.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32882" - }, - "appliesTo" : [ ] - }, - "YU6MR6S9Z249VF2X.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "YU6MR6S9Z249VF2X.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YU6MR6S9Z249VF2X.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "YU6MR6S9Z249VF2X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YU6MR6S9Z249VF2X.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "YU6MR6S9Z249VF2X.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14078" - }, - "appliesTo" : [ ] - }, - "YU6MR6S9Z249VF2X.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "YU6MR6S9Z249VF2X.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "4J62B76AXGGMHG57" : { - "4J62B76AXGGMHG57.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "4J62B76AXGGMHG57", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4J62B76AXGGMHG57.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "4J62B76AXGGMHG57.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1185" - }, - "appliesTo" : [ ] - }, - "4J62B76AXGGMHG57.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "4J62B76AXGGMHG57.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4J62B76AXGGMHG57.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "4J62B76AXGGMHG57", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4J62B76AXGGMHG57.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "4J62B76AXGGMHG57.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "4J62B76AXGGMHG57.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "4J62B76AXGGMHG57", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "4J62B76AXGGMHG57.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "4J62B76AXGGMHG57.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1091" - }, - "appliesTo" : [ ] - }, - "4J62B76AXGGMHG57.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "4J62B76AXGGMHG57.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4J62B76AXGGMHG57.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "4J62B76AXGGMHG57", - "effectiveDate" : "2017-01-31T23:59:59Z", - "priceDimensions" : { - "4J62B76AXGGMHG57.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "4J62B76AXGGMHG57.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1039" - }, - "appliesTo" : [ ] - }, - "4J62B76AXGGMHG57.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "4J62B76AXGGMHG57.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4J62B76AXGGMHG57.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "4J62B76AXGGMHG57", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "4J62B76AXGGMHG57.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "4J62B76AXGGMHG57.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2050" - }, - "appliesTo" : [ ] - }, - "4J62B76AXGGMHG57.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "4J62B76AXGGMHG57.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4J62B76AXGGMHG57.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "4J62B76AXGGMHG57", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4J62B76AXGGMHG57.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "4J62B76AXGGMHG57.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0470000000" - }, - "appliesTo" : [ ] - }, - "4J62B76AXGGMHG57.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "4J62B76AXGGMHG57.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1239" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4J62B76AXGGMHG57.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "4J62B76AXGGMHG57", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4J62B76AXGGMHG57.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "4J62B76AXGGMHG57.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "4J62B76AXGGMHG57.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "4J62B76AXGGMHG57", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4J62B76AXGGMHG57.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "4J62B76AXGGMHG57.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "604" - }, - "appliesTo" : [ ] - }, - "4J62B76AXGGMHG57.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "4J62B76AXGGMHG57.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4J62B76AXGGMHG57.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "4J62B76AXGGMHG57", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4J62B76AXGGMHG57.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "4J62B76AXGGMHG57.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "4J62B76AXGGMHG57.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "4J62B76AXGGMHG57", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4J62B76AXGGMHG57.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "4J62B76AXGGMHG57.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "4J62B76AXGGMHG57.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "4J62B76AXGGMHG57", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "4J62B76AXGGMHG57.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "4J62B76AXGGMHG57.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "530" - }, - "appliesTo" : [ ] - }, - "4J62B76AXGGMHG57.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "4J62B76AXGGMHG57.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4J62B76AXGGMHG57.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "4J62B76AXGGMHG57", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4J62B76AXGGMHG57.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "4J62B76AXGGMHG57.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2429" - }, - "appliesTo" : [ ] - }, - "4J62B76AXGGMHG57.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "4J62B76AXGGMHG57.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "CE5UXUUUXVX4BZXY" : { - "CE5UXUUUXVX4BZXY.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "CE5UXUUUXVX4BZXY", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CE5UXUUUXVX4BZXY.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "CE5UXUUUXVX4BZXY.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2676" - }, - "appliesTo" : [ ] - }, - "CE5UXUUUXVX4BZXY.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "CE5UXUUUXVX4BZXY.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CE5UXUUUXVX4BZXY.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "CE5UXUUUXVX4BZXY", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CE5UXUUUXVX4BZXY.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "CE5UXUUUXVX4BZXY.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0786000000" - }, - "appliesTo" : [ ] - }, - "CE5UXUUUXVX4BZXY.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "CE5UXUUUXVX4BZXY.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "488" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CE5UXUUUXVX4BZXY.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "CE5UXUUUXVX4BZXY", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CE5UXUUUXVX4BZXY.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "CE5UXUUUXVX4BZXY.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1061000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CE5UXUUUXVX4BZXY.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "CE5UXUUUXVX4BZXY", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CE5UXUUUXVX4BZXY.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "CE5UXUUUXVX4BZXY.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2494" - }, - "appliesTo" : [ ] - }, - "CE5UXUUUXVX4BZXY.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "CE5UXUUUXVX4BZXY.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CE5UXUUUXVX4BZXY.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "CE5UXUUUXVX4BZXY", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CE5UXUUUXVX4BZXY.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "CE5UXUUUXVX4BZXY.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "996" - }, - "appliesTo" : [ ] - }, - "CE5UXUUUXVX4BZXY.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "CE5UXUUUXVX4BZXY.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CE5UXUUUXVX4BZXY.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "CE5UXUUUXVX4BZXY", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CE5UXUUUXVX4BZXY.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "CE5UXUUUXVX4BZXY.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "561" - }, - "appliesTo" : [ ] - }, - "CE5UXUUUXVX4BZXY.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "CE5UXUUUXVX4BZXY.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0813000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CE5UXUUUXVX4BZXY.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "CE5UXUUUXVX4BZXY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CE5UXUUUXVX4BZXY.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "CE5UXUUUXVX4BZXY.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1261000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CE5UXUUUXVX4BZXY.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "CE5UXUUUXVX4BZXY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CE5UXUUUXVX4BZXY.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "CE5UXUUUXVX4BZXY.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0915000000" - }, - "appliesTo" : [ ] - }, - "CE5UXUUUXVX4BZXY.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "CE5UXUUUXVX4BZXY.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "276" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CE5UXUUUXVX4BZXY.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "CE5UXUUUXVX4BZXY", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CE5UXUUUXVX4BZXY.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "CE5UXUUUXVX4BZXY.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1175000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CE5UXUUUXVX4BZXY.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "CE5UXUUUXVX4BZXY", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CE5UXUUUXVX4BZXY.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "CE5UXUUUXVX4BZXY.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "240" - }, - "appliesTo" : [ ] - }, - "CE5UXUUUXVX4BZXY.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "CE5UXUUUXVX4BZXY.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0874000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CE5UXUUUXVX4BZXY.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "CE5UXUUUXVX4BZXY", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CE5UXUUUXVX4BZXY.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "CE5UXUUUXVX4BZXY.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1001000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CE5UXUUUXVX4BZXY.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "CE5UXUUUXVX4BZXY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CE5UXUUUXVX4BZXY.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "CE5UXUUUXVX4BZXY.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1066" - }, - "appliesTo" : [ ] - }, - "CE5UXUUUXVX4BZXY.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "CE5UXUUUXVX4BZXY.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "BN987XH7R93S9FFN" : { - "BN987XH7R93S9FFN.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "BN987XH7R93S9FFN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BN987XH7R93S9FFN.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "BN987XH7R93S9FFN.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2759" - }, - "appliesTo" : [ ] - }, - "BN987XH7R93S9FFN.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "BN987XH7R93S9FFN.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BN987XH7R93S9FFN.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "BN987XH7R93S9FFN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BN987XH7R93S9FFN.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "BN987XH7R93S9FFN.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BN987XH7R93S9FFN.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "BN987XH7R93S9FFN", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "BN987XH7R93S9FFN.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "BN987XH7R93S9FFN.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13655" - }, - "appliesTo" : [ ] - }, - "BN987XH7R93S9FFN.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "BN987XH7R93S9FFN.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BN987XH7R93S9FFN.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "BN987XH7R93S9FFN", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BN987XH7R93S9FFN.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "BN987XH7R93S9FFN.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BN987XH7R93S9FFN.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "BN987XH7R93S9FFN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BN987XH7R93S9FFN.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "BN987XH7R93S9FFN.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "BN987XH7R93S9FFN.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "BN987XH7R93S9FFN.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5428" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BN987XH7R93S9FFN.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "BN987XH7R93S9FFN", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BN987XH7R93S9FFN.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "BN987XH7R93S9FFN.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3271" - }, - "appliesTo" : [ ] - }, - "BN987XH7R93S9FFN.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "BN987XH7R93S9FFN.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BN987XH7R93S9FFN.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "BN987XH7R93S9FFN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "BN987XH7R93S9FFN.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "BN987XH7R93S9FFN.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4934" - }, - "appliesTo" : [ ] - }, - "BN987XH7R93S9FFN.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "BN987XH7R93S9FFN.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BN987XH7R93S9FFN.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "BN987XH7R93S9FFN", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BN987XH7R93S9FFN.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "BN987XH7R93S9FFN.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9052" - }, - "appliesTo" : [ ] - }, - "BN987XH7R93S9FFN.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "BN987XH7R93S9FFN.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BN987XH7R93S9FFN.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "BN987XH7R93S9FFN", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "BN987XH7R93S9FFN.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "BN987XH7R93S9FFN.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BN987XH7R93S9FFN.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "BN987XH7R93S9FFN", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BN987XH7R93S9FFN.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "BN987XH7R93S9FFN.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11341" - }, - "appliesTo" : [ ] - }, - "BN987XH7R93S9FFN.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "BN987XH7R93S9FFN.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BN987XH7R93S9FFN.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "BN987XH7R93S9FFN", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BN987XH7R93S9FFN.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "BN987XH7R93S9FFN.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1610000000" - }, - "appliesTo" : [ ] - }, - "BN987XH7R93S9FFN.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "BN987XH7R93S9FFN.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7844" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "5YU9U4CS2QFKY4UW" : { - "5YU9U4CS2QFKY4UW.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "5YU9U4CS2QFKY4UW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5YU9U4CS2QFKY4UW.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "5YU9U4CS2QFKY4UW.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15108" - }, - "appliesTo" : [ ] - }, - "5YU9U4CS2QFKY4UW.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "5YU9U4CS2QFKY4UW.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "5YU9U4CS2QFKY4UW.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "5YU9U4CS2QFKY4UW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "5YU9U4CS2QFKY4UW.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "5YU9U4CS2QFKY4UW.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6176000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "5YU9U4CS2QFKY4UW.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "5YU9U4CS2QFKY4UW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "5YU9U4CS2QFKY4UW.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "5YU9U4CS2QFKY4UW.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20301" - }, - "appliesTo" : [ ] - }, - "5YU9U4CS2QFKY4UW.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "5YU9U4CS2QFKY4UW.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5YU9U4CS2QFKY4UW.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "5YU9U4CS2QFKY4UW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "5YU9U4CS2QFKY4UW.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "5YU9U4CS2QFKY4UW.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7981000000" - }, - "appliesTo" : [ ] - }, - "5YU9U4CS2QFKY4UW.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "5YU9U4CS2QFKY4UW.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20974" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "5YU9U4CS2QFKY4UW.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "5YU9U4CS2QFKY4UW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "5YU9U4CS2QFKY4UW.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "5YU9U4CS2QFKY4UW.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14498" - }, - "appliesTo" : [ ] - }, - "5YU9U4CS2QFKY4UW.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "5YU9U4CS2QFKY4UW.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5YU9U4CS2QFKY4UW.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "5YU9U4CS2QFKY4UW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "5YU9U4CS2QFKY4UW.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "5YU9U4CS2QFKY4UW.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "40234" - }, - "appliesTo" : [ ] - }, - "5YU9U4CS2QFKY4UW.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "5YU9U4CS2QFKY4UW.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5YU9U4CS2QFKY4UW.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "5YU9U4CS2QFKY4UW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5YU9U4CS2QFKY4UW.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "5YU9U4CS2QFKY4UW.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "5YU9U4CS2QFKY4UW.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "5YU9U4CS2QFKY4UW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5YU9U4CS2QFKY4UW.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "5YU9U4CS2QFKY4UW.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7590" - }, - "appliesTo" : [ ] - }, - "5YU9U4CS2QFKY4UW.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "5YU9U4CS2QFKY4UW.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8664000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "5YU9U4CS2QFKY4UW.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "5YU9U4CS2QFKY4UW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "5YU9U4CS2QFKY4UW.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "5YU9U4CS2QFKY4UW.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6976000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "5YU9U4CS2QFKY4UW.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "5YU9U4CS2QFKY4UW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "5YU9U4CS2QFKY4UW.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "5YU9U4CS2QFKY4UW.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7280" - }, - "appliesTo" : [ ] - }, - "5YU9U4CS2QFKY4UW.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "5YU9U4CS2QFKY4UW.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5YU9U4CS2QFKY4UW.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "5YU9U4CS2QFKY4UW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "5YU9U4CS2QFKY4UW.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "5YU9U4CS2QFKY4UW.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "41807" - }, - "appliesTo" : [ ] - }, - "5YU9U4CS2QFKY4UW.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "5YU9U4CS2QFKY4UW.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "5YU9U4CS2QFKY4UW.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "5YU9U4CS2QFKY4UW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "5YU9U4CS2QFKY4UW.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "5YU9U4CS2QFKY4UW.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "MCVQU48QPHRDXMRT" : { - "MCVQU48QPHRDXMRT.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "MCVQU48QPHRDXMRT", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "MCVQU48QPHRDXMRT.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "MCVQU48QPHRDXMRT.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "80354" - }, - "appliesTo" : [ ] - }, - "MCVQU48QPHRDXMRT.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "MCVQU48QPHRDXMRT.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MCVQU48QPHRDXMRT.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "MCVQU48QPHRDXMRT", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "MCVQU48QPHRDXMRT.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "MCVQU48QPHRDXMRT.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "40997" - }, - "appliesTo" : [ ] - }, - "MCVQU48QPHRDXMRT.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "MCVQU48QPHRDXMRT.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.6800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MCVQU48QPHRDXMRT.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "MCVQU48QPHRDXMRT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MCVQU48QPHRDXMRT.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "MCVQU48QPHRDXMRT.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MCVQU48QPHRDXMRT.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "MCVQU48QPHRDXMRT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MCVQU48QPHRDXMRT.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "MCVQU48QPHRDXMRT.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "92407" - }, - "appliesTo" : [ ] - }, - "MCVQU48QPHRDXMRT.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "MCVQU48QPHRDXMRT.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MCVQU48QPHRDXMRT.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "MCVQU48QPHRDXMRT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MCVQU48QPHRDXMRT.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "MCVQU48QPHRDXMRT.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "11.3020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MCVQU48QPHRDXMRT.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "MCVQU48QPHRDXMRT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MCVQU48QPHRDXMRT.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "MCVQU48QPHRDXMRT.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "201401" - }, - "appliesTo" : [ ] - }, - "MCVQU48QPHRDXMRT.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "MCVQU48QPHRDXMRT.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MCVQU48QPHRDXMRT.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "MCVQU48QPHRDXMRT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MCVQU48QPHRDXMRT.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "MCVQU48QPHRDXMRT.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47146" - }, - "appliesTo" : [ ] - }, - "MCVQU48QPHRDXMRT.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "MCVQU48QPHRDXMRT.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.3820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MCVQU48QPHRDXMRT.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "MCVQU48QPHRDXMRT", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "MCVQU48QPHRDXMRT.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "MCVQU48QPHRDXMRT.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4000000000" - }, - "appliesTo" : [ ] - }, - "MCVQU48QPHRDXMRT.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "MCVQU48QPHRDXMRT.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "89352" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MCVQU48QPHRDXMRT.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "MCVQU48QPHRDXMRT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MCVQU48QPHRDXMRT.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "MCVQU48QPHRDXMRT.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.8280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MCVQU48QPHRDXMRT.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "MCVQU48QPHRDXMRT", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "MCVQU48QPHRDXMRT.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "MCVQU48QPHRDXMRT.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "167982" - }, - "appliesTo" : [ ] - }, - "MCVQU48QPHRDXMRT.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "MCVQU48QPHRDXMRT.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MCVQU48QPHRDXMRT.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "MCVQU48QPHRDXMRT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MCVQU48QPHRDXMRT.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "MCVQU48QPHRDXMRT.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.4460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MCVQU48QPHRDXMRT.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "MCVQU48QPHRDXMRT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MCVQU48QPHRDXMRT.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "MCVQU48QPHRDXMRT.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9100000000" - }, - "appliesTo" : [ ] - }, - "MCVQU48QPHRDXMRT.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "MCVQU48QPHRDXMRT.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "102756" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "2GCTBU78G22TGEXZ" : { - "2GCTBU78G22TGEXZ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "2GCTBU78G22TGEXZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "2GCTBU78G22TGEXZ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "2GCTBU78G22TGEXZ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "399" - }, - "appliesTo" : [ ] - }, - "2GCTBU78G22TGEXZ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "2GCTBU78G22TGEXZ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2GCTBU78G22TGEXZ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "2GCTBU78G22TGEXZ", - "effectiveDate" : "2017-01-31T23:59:59Z", - "priceDimensions" : { - "2GCTBU78G22TGEXZ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "2GCTBU78G22TGEXZ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "188" - }, - "appliesTo" : [ ] - }, - "2GCTBU78G22TGEXZ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "2GCTBU78G22TGEXZ.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2GCTBU78G22TGEXZ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "2GCTBU78G22TGEXZ", - "effectiveDate" : "2017-01-31T23:59:59Z", - "priceDimensions" : { - "2GCTBU78G22TGEXZ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "2GCTBU78G22TGEXZ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "123" - }, - "appliesTo" : [ ] - }, - "2GCTBU78G22TGEXZ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "2GCTBU78G22TGEXZ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2GCTBU78G22TGEXZ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "2GCTBU78G22TGEXZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "2GCTBU78G22TGEXZ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "2GCTBU78G22TGEXZ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "206" - }, - "appliesTo" : [ ] - }, - "2GCTBU78G22TGEXZ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "2GCTBU78G22TGEXZ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2GCTBU78G22TGEXZ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "2GCTBU78G22TGEXZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "2GCTBU78G22TGEXZ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "2GCTBU78G22TGEXZ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "M57UMFD3S77UZWZ3" : { - "M57UMFD3S77UZWZ3.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "M57UMFD3S77UZWZ3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M57UMFD3S77UZWZ3.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "M57UMFD3S77UZWZ3.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.2710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "M57UMFD3S77UZWZ3.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "M57UMFD3S77UZWZ3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M57UMFD3S77UZWZ3.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "M57UMFD3S77UZWZ3.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39521" - }, - "appliesTo" : [ ] - }, - "M57UMFD3S77UZWZ3.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "M57UMFD3S77UZWZ3.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "M57UMFD3S77UZWZ3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "M57UMFD3S77UZWZ3", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "M57UMFD3S77UZWZ3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "M57UMFD3S77UZWZ3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "74375" - }, - "appliesTo" : [ ] - }, - "M57UMFD3S77UZWZ3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "M57UMFD3S77UZWZ3.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "M57UMFD3S77UZWZ3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "M57UMFD3S77UZWZ3", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "M57UMFD3S77UZWZ3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "M57UMFD3S77UZWZ3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "84813" - }, - "appliesTo" : [ ] - }, - "M57UMFD3S77UZWZ3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "M57UMFD3S77UZWZ3.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "M57UMFD3S77UZWZ3.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "M57UMFD3S77UZWZ3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M57UMFD3S77UZWZ3.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "M57UMFD3S77UZWZ3.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.7380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "M57UMFD3S77UZWZ3.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "M57UMFD3S77UZWZ3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M57UMFD3S77UZWZ3.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "M57UMFD3S77UZWZ3.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "85896" - }, - "appliesTo" : [ ] - }, - "M57UMFD3S77UZWZ3.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "M57UMFD3S77UZWZ3.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "M57UMFD3S77UZWZ3.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "M57UMFD3S77UZWZ3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M57UMFD3S77UZWZ3.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "M57UMFD3S77UZWZ3.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.3840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "M57UMFD3S77UZWZ3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "M57UMFD3S77UZWZ3", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "M57UMFD3S77UZWZ3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "M57UMFD3S77UZWZ3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "166182" - }, - "appliesTo" : [ ] - }, - "M57UMFD3S77UZWZ3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "M57UMFD3S77UZWZ3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "M57UMFD3S77UZWZ3.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "M57UMFD3S77UZWZ3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M57UMFD3S77UZWZ3.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "M57UMFD3S77UZWZ3.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "78176" - }, - "appliesTo" : [ ] - }, - "M57UMFD3S77UZWZ3.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "M57UMFD3S77UZWZ3.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "M57UMFD3S77UZWZ3.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "M57UMFD3S77UZWZ3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M57UMFD3S77UZWZ3.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "M57UMFD3S77UZWZ3.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "170473" - }, - "appliesTo" : [ ] - }, - "M57UMFD3S77UZWZ3.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "M57UMFD3S77UZWZ3.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "M57UMFD3S77UZWZ3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "M57UMFD3S77UZWZ3", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "M57UMFD3S77UZWZ3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "M57UMFD3S77UZWZ3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37565" - }, - "appliesTo" : [ ] - }, - "M57UMFD3S77UZWZ3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "M57UMFD3S77UZWZ3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "M57UMFD3S77UZWZ3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "M57UMFD3S77UZWZ3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M57UMFD3S77UZWZ3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "M57UMFD3S77UZWZ3.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.5470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "MK9AMH7NU69KFAYJ" : { - "MK9AMH7NU69KFAYJ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "MK9AMH7NU69KFAYJ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "MK9AMH7NU69KFAYJ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "MK9AMH7NU69KFAYJ.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "MK9AMH7NU69KFAYJ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "MK9AMH7NU69KFAYJ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35054" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MK9AMH7NU69KFAYJ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "MK9AMH7NU69KFAYJ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "MK9AMH7NU69KFAYJ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "MK9AMH7NU69KFAYJ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MK9AMH7NU69KFAYJ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "MK9AMH7NU69KFAYJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MK9AMH7NU69KFAYJ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "MK9AMH7NU69KFAYJ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8211" - }, - "appliesTo" : [ ] - }, - "MK9AMH7NU69KFAYJ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "MK9AMH7NU69KFAYJ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9374000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MK9AMH7NU69KFAYJ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "MK9AMH7NU69KFAYJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MK9AMH7NU69KFAYJ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "MK9AMH7NU69KFAYJ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "MK9AMH7NU69KFAYJ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "MK9AMH7NU69KFAYJ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16094" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MK9AMH7NU69KFAYJ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "MK9AMH7NU69KFAYJ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "MK9AMH7NU69KFAYJ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "MK9AMH7NU69KFAYJ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2782000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MK9AMH7NU69KFAYJ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "MK9AMH7NU69KFAYJ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "MK9AMH7NU69KFAYJ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "MK9AMH7NU69KFAYJ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7117000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MK9AMH7NU69KFAYJ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "MK9AMH7NU69KFAYJ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "MK9AMH7NU69KFAYJ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "MK9AMH7NU69KFAYJ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7140" - }, - "appliesTo" : [ ] - }, - "MK9AMH7NU69KFAYJ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "MK9AMH7NU69KFAYJ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8151000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MK9AMH7NU69KFAYJ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "MK9AMH7NU69KFAYJ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "MK9AMH7NU69KFAYJ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "MK9AMH7NU69KFAYJ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13995" - }, - "appliesTo" : [ ] - }, - "MK9AMH7NU69KFAYJ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "MK9AMH7NU69KFAYJ.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MK9AMH7NU69KFAYJ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "MK9AMH7NU69KFAYJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MK9AMH7NU69KFAYJ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "MK9AMH7NU69KFAYJ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9685000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MK9AMH7NU69KFAYJ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "MK9AMH7NU69KFAYJ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "MK9AMH7NU69KFAYJ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "MK9AMH7NU69KFAYJ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29237" - }, - "appliesTo" : [ ] - }, - "MK9AMH7NU69KFAYJ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "MK9AMH7NU69KFAYJ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MK9AMH7NU69KFAYJ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "MK9AMH7NU69KFAYJ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "MK9AMH7NU69KFAYJ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "MK9AMH7NU69KFAYJ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15552" - }, - "appliesTo" : [ ] - }, - "MK9AMH7NU69KFAYJ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "MK9AMH7NU69KFAYJ.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5918000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MK9AMH7NU69KFAYJ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "MK9AMH7NU69KFAYJ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "MK9AMH7NU69KFAYJ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "MK9AMH7NU69KFAYJ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17885" - }, - "appliesTo" : [ ] - }, - "MK9AMH7NU69KFAYJ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "MK9AMH7NU69KFAYJ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6805000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "SJGHN3P4PMXPP9SA" : { - "SJGHN3P4PMXPP9SA.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SJGHN3P4PMXPP9SA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SJGHN3P4PMXPP9SA.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SJGHN3P4PMXPP9SA.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SJGHN3P4PMXPP9SA.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SJGHN3P4PMXPP9SA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SJGHN3P4PMXPP9SA.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SJGHN3P4PMXPP9SA.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38903" - }, - "appliesTo" : [ ] - }, - "SJGHN3P4PMXPP9SA.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SJGHN3P4PMXPP9SA.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SJGHN3P4PMXPP9SA.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "SJGHN3P4PMXPP9SA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SJGHN3P4PMXPP9SA.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "SJGHN3P4PMXPP9SA.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "78700" - }, - "appliesTo" : [ ] - }, - "SJGHN3P4PMXPP9SA.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "SJGHN3P4PMXPP9SA.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SJGHN3P4PMXPP9SA.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "SJGHN3P4PMXPP9SA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SJGHN3P4PMXPP9SA.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "SJGHN3P4PMXPP9SA.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SJGHN3P4PMXPP9SA.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "SJGHN3P4PMXPP9SA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SJGHN3P4PMXPP9SA.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "SJGHN3P4PMXPP9SA.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39430" - }, - "appliesTo" : [ ] - }, - "SJGHN3P4PMXPP9SA.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "SJGHN3P4PMXPP9SA.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SJGHN3P4PMXPP9SA.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "SJGHN3P4PMXPP9SA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SJGHN3P4PMXPP9SA.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "SJGHN3P4PMXPP9SA.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5830000000" - }, - "appliesTo" : [ ] - }, - "SJGHN3P4PMXPP9SA.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "SJGHN3P4PMXPP9SA.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13867" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SJGHN3P4PMXPP9SA.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "SJGHN3P4PMXPP9SA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SJGHN3P4PMXPP9SA.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "SJGHN3P4PMXPP9SA.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SJGHN3P4PMXPP9SA.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SJGHN3P4PMXPP9SA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SJGHN3P4PMXPP9SA.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SJGHN3P4PMXPP9SA.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SJGHN3P4PMXPP9SA.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SJGHN3P4PMXPP9SA.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27127" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SJGHN3P4PMXPP9SA.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SJGHN3P4PMXPP9SA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SJGHN3P4PMXPP9SA.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SJGHN3P4PMXPP9SA.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13599" - }, - "appliesTo" : [ ] - }, - "SJGHN3P4PMXPP9SA.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SJGHN3P4PMXPP9SA.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SJGHN3P4PMXPP9SA.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "SJGHN3P4PMXPP9SA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SJGHN3P4PMXPP9SA.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "SJGHN3P4PMXPP9SA.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SJGHN3P4PMXPP9SA.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "SJGHN3P4PMXPP9SA.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27652" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SJGHN3P4PMXPP9SA.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SJGHN3P4PMXPP9SA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SJGHN3P4PMXPP9SA.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SJGHN3P4PMXPP9SA.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "77390" - }, - "appliesTo" : [ ] - }, - "SJGHN3P4PMXPP9SA.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SJGHN3P4PMXPP9SA.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SJGHN3P4PMXPP9SA.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "SJGHN3P4PMXPP9SA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SJGHN3P4PMXPP9SA.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "SJGHN3P4PMXPP9SA.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "DXSPZRZ93HBNNHCJ" : { - "DXSPZRZ93HBNNHCJ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "DXSPZRZ93HBNNHCJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DXSPZRZ93HBNNHCJ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "DXSPZRZ93HBNNHCJ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16125" - }, - "appliesTo" : [ ] - }, - "DXSPZRZ93HBNNHCJ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "DXSPZRZ93HBNNHCJ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DXSPZRZ93HBNNHCJ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "DXSPZRZ93HBNNHCJ", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "DXSPZRZ93HBNNHCJ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "DXSPZRZ93HBNNHCJ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DXSPZRZ93HBNNHCJ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "DXSPZRZ93HBNNHCJ", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "DXSPZRZ93HBNNHCJ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "DXSPZRZ93HBNNHCJ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9120000000" - }, - "appliesTo" : [ ] - }, - "DXSPZRZ93HBNNHCJ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "DXSPZRZ93HBNNHCJ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7990" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DXSPZRZ93HBNNHCJ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "DXSPZRZ93HBNNHCJ", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "DXSPZRZ93HBNNHCJ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "DXSPZRZ93HBNNHCJ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46530" - }, - "appliesTo" : [ ] - }, - "DXSPZRZ93HBNNHCJ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "DXSPZRZ93HBNNHCJ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DXSPZRZ93HBNNHCJ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "DXSPZRZ93HBNNHCJ", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "DXSPZRZ93HBNNHCJ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "DXSPZRZ93HBNNHCJ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23785" - }, - "appliesTo" : [ ] - }, - "DXSPZRZ93HBNNHCJ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "DXSPZRZ93HBNNHCJ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DXSPZRZ93HBNNHCJ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "DXSPZRZ93HBNNHCJ", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "DXSPZRZ93HBNNHCJ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "DXSPZRZ93HBNNHCJ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "DXSPZRZ93HBNNHCJ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "DXSPZRZ93HBNNHCJ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15955" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DXSPZRZ93HBNNHCJ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "DXSPZRZ93HBNNHCJ", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "DXSPZRZ93HBNNHCJ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "DXSPZRZ93HBNNHCJ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47504" - }, - "appliesTo" : [ ] - }, - "DXSPZRZ93HBNNHCJ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "DXSPZRZ93HBNNHCJ.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DXSPZRZ93HBNNHCJ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "DXSPZRZ93HBNNHCJ", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "DXSPZRZ93HBNNHCJ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "DXSPZRZ93HBNNHCJ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23338" - }, - "appliesTo" : [ ] - }, - "DXSPZRZ93HBNNHCJ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "DXSPZRZ93HBNNHCJ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DXSPZRZ93HBNNHCJ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "DXSPZRZ93HBNNHCJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DXSPZRZ93HBNNHCJ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "DXSPZRZ93HBNNHCJ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DXSPZRZ93HBNNHCJ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "DXSPZRZ93HBNNHCJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DXSPZRZ93HBNNHCJ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "DXSPZRZ93HBNNHCJ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8076" - }, - "appliesTo" : [ ] - }, - "DXSPZRZ93HBNNHCJ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "DXSPZRZ93HBNNHCJ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DXSPZRZ93HBNNHCJ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "DXSPZRZ93HBNNHCJ", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "DXSPZRZ93HBNNHCJ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "DXSPZRZ93HBNNHCJ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "B5C2VWZ3WKXH29GV" : { - "B5C2VWZ3WKXH29GV.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "B5C2VWZ3WKXH29GV", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "B5C2VWZ3WKXH29GV.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "B5C2VWZ3WKXH29GV.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3187" - }, - "appliesTo" : [ ] - }, - "B5C2VWZ3WKXH29GV.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "B5C2VWZ3WKXH29GV.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "B5C2VWZ3WKXH29GV.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "B5C2VWZ3WKXH29GV", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "B5C2VWZ3WKXH29GV.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "B5C2VWZ3WKXH29GV.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "B5C2VWZ3WKXH29GV.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "B5C2VWZ3WKXH29GV", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "B5C2VWZ3WKXH29GV.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "B5C2VWZ3WKXH29GV.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12959" - }, - "appliesTo" : [ ] - }, - "B5C2VWZ3WKXH29GV.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "B5C2VWZ3WKXH29GV.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "B5C2VWZ3WKXH29GV.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "B5C2VWZ3WKXH29GV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "B5C2VWZ3WKXH29GV.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "B5C2VWZ3WKXH29GV.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "B5C2VWZ3WKXH29GV.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "B5C2VWZ3WKXH29GV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "B5C2VWZ3WKXH29GV.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "B5C2VWZ3WKXH29GV.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3127" - }, - "appliesTo" : [ ] - }, - "B5C2VWZ3WKXH29GV.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "B5C2VWZ3WKXH29GV.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "B5C2VWZ3WKXH29GV.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "B5C2VWZ3WKXH29GV", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "B5C2VWZ3WKXH29GV.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "B5C2VWZ3WKXH29GV.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3160000000" - }, - "appliesTo" : [ ] - }, - "B5C2VWZ3WKXH29GV.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "B5C2VWZ3WKXH29GV.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1999" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "B5C2VWZ3WKXH29GV.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "B5C2VWZ3WKXH29GV", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "B5C2VWZ3WKXH29GV.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "B5C2VWZ3WKXH29GV.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "B5C2VWZ3WKXH29GV.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "B5C2VWZ3WKXH29GV.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4662" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "B5C2VWZ3WKXH29GV.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "B5C2VWZ3WKXH29GV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "B5C2VWZ3WKXH29GV.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "B5C2VWZ3WKXH29GV.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6174" - }, - "appliesTo" : [ ] - }, - "B5C2VWZ3WKXH29GV.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "B5C2VWZ3WKXH29GV.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "B5C2VWZ3WKXH29GV.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "B5C2VWZ3WKXH29GV", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "B5C2VWZ3WKXH29GV.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "B5C2VWZ3WKXH29GV.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "B5C2VWZ3WKXH29GV.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "B5C2VWZ3WKXH29GV", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "B5C2VWZ3WKXH29GV.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "B5C2VWZ3WKXH29GV.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9652" - }, - "appliesTo" : [ ] - }, - "B5C2VWZ3WKXH29GV.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "B5C2VWZ3WKXH29GV.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "B5C2VWZ3WKXH29GV.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "B5C2VWZ3WKXH29GV", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "B5C2VWZ3WKXH29GV.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "B5C2VWZ3WKXH29GV.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2990000000" - }, - "appliesTo" : [ ] - }, - "B5C2VWZ3WKXH29GV.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "B5C2VWZ3WKXH29GV.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5396" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "TRJZT878WSTAV924" : { - "TRJZT878WSTAV924.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TRJZT878WSTAV924", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "TRJZT878WSTAV924.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TRJZT878WSTAV924.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2504" - }, - "appliesTo" : [ ] - }, - "TRJZT878WSTAV924.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TRJZT878WSTAV924.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TRJZT878WSTAV924.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "TRJZT878WSTAV924", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TRJZT878WSTAV924.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "TRJZT878WSTAV924.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2836" - }, - "appliesTo" : [ ] - }, - "TRJZT878WSTAV924.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "TRJZT878WSTAV924.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TRJZT878WSTAV924.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "TRJZT878WSTAV924", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TRJZT878WSTAV924.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "TRJZT878WSTAV924.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TRJZT878WSTAV924.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "TRJZT878WSTAV924.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5503" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TRJZT878WSTAV924.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "TRJZT878WSTAV924", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TRJZT878WSTAV924.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "TRJZT878WSTAV924.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TRJZT878WSTAV924.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "TRJZT878WSTAV924", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TRJZT878WSTAV924.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "TRJZT878WSTAV924.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TRJZT878WSTAV924.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TRJZT878WSTAV924", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TRJZT878WSTAV924.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TRJZT878WSTAV924.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5124" - }, - "appliesTo" : [ ] - }, - "TRJZT878WSTAV924.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TRJZT878WSTAV924.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TRJZT878WSTAV924.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "TRJZT878WSTAV924", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TRJZT878WSTAV924.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "TRJZT878WSTAV924.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TRJZT878WSTAV924.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "TRJZT878WSTAV924.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11380" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TRJZT878WSTAV924.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "TRJZT878WSTAV924", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TRJZT878WSTAV924.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "TRJZT878WSTAV924.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5804" - }, - "appliesTo" : [ ] - }, - "TRJZT878WSTAV924.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "TRJZT878WSTAV924.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TRJZT878WSTAV924.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TRJZT878WSTAV924", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TRJZT878WSTAV924.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TRJZT878WSTAV924.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TRJZT878WSTAV924.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TRJZT878WSTAV924", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "TRJZT878WSTAV924.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TRJZT878WSTAV924.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4853" - }, - "appliesTo" : [ ] - }, - "TRJZT878WSTAV924.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TRJZT878WSTAV924.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TRJZT878WSTAV924.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "TRJZT878WSTAV924", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TRJZT878WSTAV924.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "TRJZT878WSTAV924.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TRJZT878WSTAV924.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TRJZT878WSTAV924", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TRJZT878WSTAV924.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TRJZT878WSTAV924.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9665" - }, - "appliesTo" : [ ] - }, - "TRJZT878WSTAV924.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TRJZT878WSTAV924.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "QEN4NKBP2QQKVJGV" : { - "QEN4NKBP2QQKVJGV.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "QEN4NKBP2QQKVJGV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QEN4NKBP2QQKVJGV.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "QEN4NKBP2QQKVJGV.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QEN4NKBP2QQKVJGV.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QEN4NKBP2QQKVJGV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QEN4NKBP2QQKVJGV.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QEN4NKBP2QQKVJGV.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8576" - }, - "appliesTo" : [ ] - }, - "QEN4NKBP2QQKVJGV.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QEN4NKBP2QQKVJGV.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QEN4NKBP2QQKVJGV.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "QEN4NKBP2QQKVJGV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QEN4NKBP2QQKVJGV.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "QEN4NKBP2QQKVJGV.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9862" - }, - "appliesTo" : [ ] - }, - "QEN4NKBP2QQKVJGV.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "QEN4NKBP2QQKVJGV.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QEN4NKBP2QQKVJGV.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QEN4NKBP2QQKVJGV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QEN4NKBP2QQKVJGV.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QEN4NKBP2QQKVJGV.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QEN4NKBP2QQKVJGV.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "QEN4NKBP2QQKVJGV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QEN4NKBP2QQKVJGV.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "QEN4NKBP2QQKVJGV.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QEN4NKBP2QQKVJGV.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "QEN4NKBP2QQKVJGV.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20468" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QEN4NKBP2QQKVJGV.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "QEN4NKBP2QQKVJGV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QEN4NKBP2QQKVJGV.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "QEN4NKBP2QQKVJGV.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QEN4NKBP2QQKVJGV.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "QEN4NKBP2QQKVJGV.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32825" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QEN4NKBP2QQKVJGV.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "QEN4NKBP2QQKVJGV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QEN4NKBP2QQKVJGV.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "QEN4NKBP2QQKVJGV.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QEN4NKBP2QQKVJGV.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QEN4NKBP2QQKVJGV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QEN4NKBP2QQKVJGV.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QEN4NKBP2QQKVJGV.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13047" - }, - "appliesTo" : [ ] - }, - "QEN4NKBP2QQKVJGV.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QEN4NKBP2QQKVJGV.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QEN4NKBP2QQKVJGV.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "QEN4NKBP2QQKVJGV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QEN4NKBP2QQKVJGV.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "QEN4NKBP2QQKVJGV.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QEN4NKBP2QQKVJGV.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "QEN4NKBP2QQKVJGV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QEN4NKBP2QQKVJGV.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "QEN4NKBP2QQKVJGV.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15004" - }, - "appliesTo" : [ ] - }, - "QEN4NKBP2QQKVJGV.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "QEN4NKBP2QQKVJGV.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QEN4NKBP2QQKVJGV.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QEN4NKBP2QQKVJGV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QEN4NKBP2QQKVJGV.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QEN4NKBP2QQKVJGV.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27945" - }, - "appliesTo" : [ ] - }, - "QEN4NKBP2QQKVJGV.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QEN4NKBP2QQKVJGV.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QEN4NKBP2QQKVJGV.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QEN4NKBP2QQKVJGV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QEN4NKBP2QQKVJGV.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QEN4NKBP2QQKVJGV.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17947" - }, - "appliesTo" : [ ] - }, - "QEN4NKBP2QQKVJGV.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QEN4NKBP2QQKVJGV.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "BMW624PB2S9DK3CT" : { - "BMW624PB2S9DK3CT.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "BMW624PB2S9DK3CT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BMW624PB2S9DK3CT.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "BMW624PB2S9DK3CT.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "BMW624PB2S9DK3CT.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "BMW624PB2S9DK3CT.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31027" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BMW624PB2S9DK3CT.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "BMW624PB2S9DK3CT", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BMW624PB2S9DK3CT.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "BMW624PB2S9DK3CT.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19662" - }, - "appliesTo" : [ ] - }, - "BMW624PB2S9DK3CT.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "BMW624PB2S9DK3CT.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BMW624PB2S9DK3CT.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "BMW624PB2S9DK3CT", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "BMW624PB2S9DK3CT.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "BMW624PB2S9DK3CT.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "57752" - }, - "appliesTo" : [ ] - }, - "BMW624PB2S9DK3CT.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "BMW624PB2S9DK3CT.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BMW624PB2S9DK3CT.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "BMW624PB2S9DK3CT", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BMW624PB2S9DK3CT.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "BMW624PB2S9DK3CT.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "87083" - }, - "appliesTo" : [ ] - }, - "BMW624PB2S9DK3CT.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "BMW624PB2S9DK3CT.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BMW624PB2S9DK3CT.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "BMW624PB2S9DK3CT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BMW624PB2S9DK3CT.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "BMW624PB2S9DK3CT.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7790000000" - }, - "appliesTo" : [ ] - }, - "BMW624PB2S9DK3CT.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "BMW624PB2S9DK3CT.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15586" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BMW624PB2S9DK3CT.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "BMW624PB2S9DK3CT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BMW624PB2S9DK3CT.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "BMW624PB2S9DK3CT.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BMW624PB2S9DK3CT.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "BMW624PB2S9DK3CT", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "BMW624PB2S9DK3CT.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "BMW624PB2S9DK3CT.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.0410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BMW624PB2S9DK3CT.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "BMW624PB2S9DK3CT", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "BMW624PB2S9DK3CT.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "BMW624PB2S9DK3CT.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "52866" - }, - "appliesTo" : [ ] - }, - "BMW624PB2S9DK3CT.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "BMW624PB2S9DK3CT.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BMW624PB2S9DK3CT.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "BMW624PB2S9DK3CT", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "BMW624PB2S9DK3CT.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "BMW624PB2S9DK3CT.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "BMW624PB2S9DK3CT.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "BMW624PB2S9DK3CT.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29646" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BMW624PB2S9DK3CT.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "BMW624PB2S9DK3CT", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BMW624PB2S9DK3CT.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "BMW624PB2S9DK3CT.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BMW624PB2S9DK3CT.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "BMW624PB2S9DK3CT", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BMW624PB2S9DK3CT.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "BMW624PB2S9DK3CT.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "BMW624PB2S9DK3CT.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "BMW624PB2S9DK3CT.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "76413" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "VZ59SXRTT8GCK9N3" : { - "VZ59SXRTT8GCK9N3.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "VZ59SXRTT8GCK9N3", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "VZ59SXRTT8GCK9N3.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "VZ59SXRTT8GCK9N3.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VZ59SXRTT8GCK9N3.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "VZ59SXRTT8GCK9N3", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "VZ59SXRTT8GCK9N3.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "VZ59SXRTT8GCK9N3.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4998" - }, - "appliesTo" : [ ] - }, - "VZ59SXRTT8GCK9N3.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "VZ59SXRTT8GCK9N3.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VZ59SXRTT8GCK9N3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "VZ59SXRTT8GCK9N3", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "VZ59SXRTT8GCK9N3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "VZ59SXRTT8GCK9N3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9575" - }, - "appliesTo" : [ ] - }, - "VZ59SXRTT8GCK9N3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "VZ59SXRTT8GCK9N3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VZ59SXRTT8GCK9N3.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "VZ59SXRTT8GCK9N3", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "VZ59SXRTT8GCK9N3.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "VZ59SXRTT8GCK9N3.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "VZ59SXRTT8GCK9N3.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "VZ59SXRTT8GCK9N3.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12194" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VZ59SXRTT8GCK9N3.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "VZ59SXRTT8GCK9N3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VZ59SXRTT8GCK9N3.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "VZ59SXRTT8GCK9N3.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4709" - }, - "appliesTo" : [ ] - }, - "VZ59SXRTT8GCK9N3.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "VZ59SXRTT8GCK9N3.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VZ59SXRTT8GCK9N3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "VZ59SXRTT8GCK9N3", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "VZ59SXRTT8GCK9N3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "VZ59SXRTT8GCK9N3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4377" - }, - "appliesTo" : [ ] - }, - "VZ59SXRTT8GCK9N3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "VZ59SXRTT8GCK9N3.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VZ59SXRTT8GCK9N3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "VZ59SXRTT8GCK9N3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "VZ59SXRTT8GCK9N3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "VZ59SXRTT8GCK9N3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2960" - }, - "appliesTo" : [ ] - }, - "VZ59SXRTT8GCK9N3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "VZ59SXRTT8GCK9N3.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VZ59SXRTT8GCK9N3.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "VZ59SXRTT8GCK9N3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VZ59SXRTT8GCK9N3.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "VZ59SXRTT8GCK9N3.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VZ59SXRTT8GCK9N3.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "VZ59SXRTT8GCK9N3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VZ59SXRTT8GCK9N3.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "VZ59SXRTT8GCK9N3.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1822" - }, - "appliesTo" : [ ] - }, - "VZ59SXRTT8GCK9N3.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "VZ59SXRTT8GCK9N3.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VZ59SXRTT8GCK9N3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "VZ59SXRTT8GCK9N3", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "VZ59SXRTT8GCK9N3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "VZ59SXRTT8GCK9N3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1851" - }, - "appliesTo" : [ ] - }, - "VZ59SXRTT8GCK9N3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "VZ59SXRTT8GCK9N3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VZ59SXRTT8GCK9N3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "VZ59SXRTT8GCK9N3", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "VZ59SXRTT8GCK9N3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "VZ59SXRTT8GCK9N3.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "3EADMJNNJS3U42HF" : { - "3EADMJNNJS3U42HF.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "3EADMJNNJS3U42HF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3EADMJNNJS3U42HF.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "3EADMJNNJS3U42HF.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3EADMJNNJS3U42HF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "3EADMJNNJS3U42HF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3EADMJNNJS3U42HF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "3EADMJNNJS3U42HF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "894" - }, - "appliesTo" : [ ] - }, - "3EADMJNNJS3U42HF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "3EADMJNNJS3U42HF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3EADMJNNJS3U42HF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "3EADMJNNJS3U42HF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3EADMJNNJS3U42HF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "3EADMJNNJS3U42HF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3259" - }, - "appliesTo" : [ ] - }, - "3EADMJNNJS3U42HF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "3EADMJNNJS3U42HF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3EADMJNNJS3U42HF.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "3EADMJNNJS3U42HF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3EADMJNNJS3U42HF.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "3EADMJNNJS3U42HF.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3EADMJNNJS3U42HF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "3EADMJNNJS3U42HF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3EADMJNNJS3U42HF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "3EADMJNNJS3U42HF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1751" - }, - "appliesTo" : [ ] - }, - "3EADMJNNJS3U42HF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "3EADMJNNJS3U42HF.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3EADMJNNJS3U42HF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "3EADMJNNJS3U42HF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3EADMJNNJS3U42HF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "3EADMJNNJS3U42HF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1733" - }, - "appliesTo" : [ ] - }, - "3EADMJNNJS3U42HF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "3EADMJNNJS3U42HF.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "JEUDBWRRVYWVAQ8W" : { - "JEUDBWRRVYWVAQ8W.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "JEUDBWRRVYWVAQ8W", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "JEUDBWRRVYWVAQ8W.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "JEUDBWRRVYWVAQ8W.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "793" - }, - "appliesTo" : [ ] - }, - "JEUDBWRRVYWVAQ8W.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "JEUDBWRRVYWVAQ8W.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JEUDBWRRVYWVAQ8W.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "JEUDBWRRVYWVAQ8W", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JEUDBWRRVYWVAQ8W.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "JEUDBWRRVYWVAQ8W.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "135" - }, - "appliesTo" : [ ] - }, - "JEUDBWRRVYWVAQ8W.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "JEUDBWRRVYWVAQ8W.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "JEUDBWRRVYWVAQ8W.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "JEUDBWRRVYWVAQ8W", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JEUDBWRRVYWVAQ8W.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "JEUDBWRRVYWVAQ8W.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2069" - }, - "appliesTo" : [ ] - }, - "JEUDBWRRVYWVAQ8W.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "JEUDBWRRVYWVAQ8W.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JEUDBWRRVYWVAQ8W.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "JEUDBWRRVYWVAQ8W", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JEUDBWRRVYWVAQ8W.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "JEUDBWRRVYWVAQ8W.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "207" - }, - "appliesTo" : [ ] - }, - "JEUDBWRRVYWVAQ8W.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "JEUDBWRRVYWVAQ8W.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "JEUDBWRRVYWVAQ8W.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "JEUDBWRRVYWVAQ8W", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "JEUDBWRRVYWVAQ8W.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "JEUDBWRRVYWVAQ8W.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "B6SAEPP6NFMFCUU3" : { - "B6SAEPP6NFMFCUU3.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "B6SAEPP6NFMFCUU3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "B6SAEPP6NFMFCUU3.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "B6SAEPP6NFMFCUU3.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "B6SAEPP6NFMFCUU3.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "B6SAEPP6NFMFCUU3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "B6SAEPP6NFMFCUU3.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "B6SAEPP6NFMFCUU3.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "B6SAEPP6NFMFCUU3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "B6SAEPP6NFMFCUU3", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "B6SAEPP6NFMFCUU3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "B6SAEPP6NFMFCUU3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0670000000" - }, - "appliesTo" : [ ] - }, - "B6SAEPP6NFMFCUU3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "B6SAEPP6NFMFCUU3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "583" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "B6SAEPP6NFMFCUU3.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "B6SAEPP6NFMFCUU3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "B6SAEPP6NFMFCUU3.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "B6SAEPP6NFMFCUU3.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "B6SAEPP6NFMFCUU3.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "B6SAEPP6NFMFCUU3.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2672" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "B6SAEPP6NFMFCUU3.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "B6SAEPP6NFMFCUU3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "B6SAEPP6NFMFCUU3.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "B6SAEPP6NFMFCUU3.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1303" - }, - "appliesTo" : [ ] - }, - "B6SAEPP6NFMFCUU3.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "B6SAEPP6NFMFCUU3.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "B6SAEPP6NFMFCUU3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "B6SAEPP6NFMFCUU3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "B6SAEPP6NFMFCUU3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "B6SAEPP6NFMFCUU3.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "B6SAEPP6NFMFCUU3.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "B6SAEPP6NFMFCUU3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "B6SAEPP6NFMFCUU3.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "B6SAEPP6NFMFCUU3.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "665" - }, - "appliesTo" : [ ] - }, - "B6SAEPP6NFMFCUU3.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "B6SAEPP6NFMFCUU3.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "B6SAEPP6NFMFCUU3.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "B6SAEPP6NFMFCUU3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "B6SAEPP6NFMFCUU3.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "B6SAEPP6NFMFCUU3.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "B6SAEPP6NFMFCUU3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "B6SAEPP6NFMFCUU3", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "B6SAEPP6NFMFCUU3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "B6SAEPP6NFMFCUU3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1200" - }, - "appliesTo" : [ ] - }, - "B6SAEPP6NFMFCUU3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "B6SAEPP6NFMFCUU3.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "B6SAEPP6NFMFCUU3.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "B6SAEPP6NFMFCUU3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "B6SAEPP6NFMFCUU3.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "B6SAEPP6NFMFCUU3.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1363" - }, - "appliesTo" : [ ] - }, - "B6SAEPP6NFMFCUU3.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "B6SAEPP6NFMFCUU3.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "B6SAEPP6NFMFCUU3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "B6SAEPP6NFMFCUU3", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "B6SAEPP6NFMFCUU3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "B6SAEPP6NFMFCUU3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2256" - }, - "appliesTo" : [ ] - }, - "B6SAEPP6NFMFCUU3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "B6SAEPP6NFMFCUU3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "B6SAEPP6NFMFCUU3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "B6SAEPP6NFMFCUU3", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "B6SAEPP6NFMFCUU3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "B6SAEPP6NFMFCUU3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1143" - }, - "appliesTo" : [ ] - }, - "B6SAEPP6NFMFCUU3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "B6SAEPP6NFMFCUU3.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "6A98KYSNMAGXRPPR" : { - "6A98KYSNMAGXRPPR.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6A98KYSNMAGXRPPR", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6A98KYSNMAGXRPPR.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6A98KYSNMAGXRPPR.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6A98KYSNMAGXRPPR.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6A98KYSNMAGXRPPR", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6A98KYSNMAGXRPPR.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6A98KYSNMAGXRPPR.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2979" - }, - "appliesTo" : [ ] - }, - "6A98KYSNMAGXRPPR.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6A98KYSNMAGXRPPR.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6A98KYSNMAGXRPPR.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6A98KYSNMAGXRPPR", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6A98KYSNMAGXRPPR.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6A98KYSNMAGXRPPR.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7702" - }, - "appliesTo" : [ ] - }, - "6A98KYSNMAGXRPPR.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6A98KYSNMAGXRPPR.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6A98KYSNMAGXRPPR.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6A98KYSNMAGXRPPR", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "6A98KYSNMAGXRPPR.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6A98KYSNMAGXRPPR.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7310" - }, - "appliesTo" : [ ] - }, - "6A98KYSNMAGXRPPR.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6A98KYSNMAGXRPPR.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6A98KYSNMAGXRPPR.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6A98KYSNMAGXRPPR", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "6A98KYSNMAGXRPPR.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6A98KYSNMAGXRPPR.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18109" - }, - "appliesTo" : [ ] - }, - "6A98KYSNMAGXRPPR.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6A98KYSNMAGXRPPR.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "SR2X29MBY6K3S2UM" : { - "SR2X29MBY6K3S2UM.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SR2X29MBY6K3S2UM", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "SR2X29MBY6K3S2UM.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SR2X29MBY6K3S2UM.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "770" - }, - "appliesTo" : [ ] - }, - "SR2X29MBY6K3S2UM.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SR2X29MBY6K3S2UM.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SR2X29MBY6K3S2UM.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "SR2X29MBY6K3S2UM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SR2X29MBY6K3S2UM.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "SR2X29MBY6K3S2UM.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2263" - }, - "appliesTo" : [ ] - }, - "SR2X29MBY6K3S2UM.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "SR2X29MBY6K3S2UM.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SR2X29MBY6K3S2UM.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "SR2X29MBY6K3S2UM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SR2X29MBY6K3S2UM.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "SR2X29MBY6K3S2UM.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1859000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SR2X29MBY6K3S2UM.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SR2X29MBY6K3S2UM", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "SR2X29MBY6K3S2UM.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SR2X29MBY6K3S2UM.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SR2X29MBY6K3S2UM.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SR2X29MBY6K3S2UM.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4472" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SR2X29MBY6K3S2UM.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SR2X29MBY6K3S2UM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SR2X29MBY6K3S2UM.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SR2X29MBY6K3S2UM.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2035" - }, - "appliesTo" : [ ] - }, - "SR2X29MBY6K3S2UM.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SR2X29MBY6K3S2UM.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SR2X29MBY6K3S2UM.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "SR2X29MBY6K3S2UM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SR2X29MBY6K3S2UM.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "SR2X29MBY6K3S2UM.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2048000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SR2X29MBY6K3S2UM.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SR2X29MBY6K3S2UM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SR2X29MBY6K3S2UM.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SR2X29MBY6K3S2UM.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2448000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SR2X29MBY6K3S2UM.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "SR2X29MBY6K3S2UM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SR2X29MBY6K3S2UM.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "SR2X29MBY6K3S2UM.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "887" - }, - "appliesTo" : [ ] - }, - "SR2X29MBY6K3S2UM.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "SR2X29MBY6K3S2UM.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1612000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SR2X29MBY6K3S2UM.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "SR2X29MBY6K3S2UM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SR2X29MBY6K3S2UM.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "SR2X29MBY6K3S2UM.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5030" - }, - "appliesTo" : [ ] - }, - "SR2X29MBY6K3S2UM.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "SR2X29MBY6K3S2UM.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SR2X29MBY6K3S2UM.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SR2X29MBY6K3S2UM", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "SR2X29MBY6K3S2UM.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SR2X29MBY6K3S2UM.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1190000000" - }, - "appliesTo" : [ ] - }, - "SR2X29MBY6K3S2UM.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SR2X29MBY6K3S2UM.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1540" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SR2X29MBY6K3S2UM.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "SR2X29MBY6K3S2UM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SR2X29MBY6K3S2UM.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "SR2X29MBY6K3S2UM.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1270000000" - }, - "appliesTo" : [ ] - }, - "SR2X29MBY6K3S2UM.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "SR2X29MBY6K3S2UM.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1762" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SR2X29MBY6K3S2UM.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "SR2X29MBY6K3S2UM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SR2X29MBY6K3S2UM.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "SR2X29MBY6K3S2UM.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2725000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "AYPJKSTN4WJQRZAK" : { - "AYPJKSTN4WJQRZAK.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "AYPJKSTN4WJQRZAK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AYPJKSTN4WJQRZAK.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "AYPJKSTN4WJQRZAK.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "99" - }, - "appliesTo" : [ ] - }, - "AYPJKSTN4WJQRZAK.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "AYPJKSTN4WJQRZAK.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AYPJKSTN4WJQRZAK.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "AYPJKSTN4WJQRZAK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AYPJKSTN4WJQRZAK.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "AYPJKSTN4WJQRZAK.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0057000000" - }, - "appliesTo" : [ ] - }, - "AYPJKSTN4WJQRZAK.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "AYPJKSTN4WJQRZAK.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "50" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AYPJKSTN4WJQRZAK.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "AYPJKSTN4WJQRZAK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AYPJKSTN4WJQRZAK.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "AYPJKSTN4WJQRZAK.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "234" - }, - "appliesTo" : [ ] - }, - "AYPJKSTN4WJQRZAK.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "AYPJKSTN4WJQRZAK.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AYPJKSTN4WJQRZAK.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "AYPJKSTN4WJQRZAK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AYPJKSTN4WJQRZAK.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "AYPJKSTN4WJQRZAK.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0129000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "AYPJKSTN4WJQRZAK.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "AYPJKSTN4WJQRZAK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AYPJKSTN4WJQRZAK.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "AYPJKSTN4WJQRZAK.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "131" - }, - "appliesTo" : [ ] - }, - "AYPJKSTN4WJQRZAK.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "AYPJKSTN4WJQRZAK.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "AYPJKSTN4WJQRZAK.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "AYPJKSTN4WJQRZAK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AYPJKSTN4WJQRZAK.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "AYPJKSTN4WJQRZAK.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "121" - }, - "appliesTo" : [ ] - }, - "AYPJKSTN4WJQRZAK.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "AYPJKSTN4WJQRZAK.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0046000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AYPJKSTN4WJQRZAK.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "AYPJKSTN4WJQRZAK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AYPJKSTN4WJQRZAK.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "AYPJKSTN4WJQRZAK.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "258" - }, - "appliesTo" : [ ] - }, - "AYPJKSTN4WJQRZAK.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "AYPJKSTN4WJQRZAK.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "AYPJKSTN4WJQRZAK.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "AYPJKSTN4WJQRZAK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AYPJKSTN4WJQRZAK.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "AYPJKSTN4WJQRZAK.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "55" - }, - "appliesTo" : [ ] - }, - "AYPJKSTN4WJQRZAK.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "AYPJKSTN4WJQRZAK.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0062000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "AYPJKSTN4WJQRZAK.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "AYPJKSTN4WJQRZAK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AYPJKSTN4WJQRZAK.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "AYPJKSTN4WJQRZAK.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0104000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "AYPJKSTN4WJQRZAK.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "AYPJKSTN4WJQRZAK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AYPJKSTN4WJQRZAK.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "AYPJKSTN4WJQRZAK.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0096000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "AYPJKSTN4WJQRZAK.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "AYPJKSTN4WJQRZAK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AYPJKSTN4WJQRZAK.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "AYPJKSTN4WJQRZAK.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "108" - }, - "appliesTo" : [ ] - }, - "AYPJKSTN4WJQRZAK.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "AYPJKSTN4WJQRZAK.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "AYPJKSTN4WJQRZAK.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "AYPJKSTN4WJQRZAK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AYPJKSTN4WJQRZAK.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "AYPJKSTN4WJQRZAK.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0118000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "V6MQGHYV9HMHTNFE" : { - "V6MQGHYV9HMHTNFE.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "V6MQGHYV9HMHTNFE", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "V6MQGHYV9HMHTNFE.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "V6MQGHYV9HMHTNFE.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1463" - }, - "appliesTo" : [ ] - }, - "V6MQGHYV9HMHTNFE.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "V6MQGHYV9HMHTNFE.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "V6MQGHYV9HMHTNFE.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "V6MQGHYV9HMHTNFE", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "V6MQGHYV9HMHTNFE.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "V6MQGHYV9HMHTNFE.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "520" - }, - "appliesTo" : [ ] - }, - "V6MQGHYV9HMHTNFE.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "V6MQGHYV9HMHTNFE.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "V6MQGHYV9HMHTNFE.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "V6MQGHYV9HMHTNFE", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "V6MQGHYV9HMHTNFE.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "V6MQGHYV9HMHTNFE.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3242" - }, - "appliesTo" : [ ] - }, - "V6MQGHYV9HMHTNFE.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "V6MQGHYV9HMHTNFE.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "V6MQGHYV9HMHTNFE.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "V6MQGHYV9HMHTNFE", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "V6MQGHYV9HMHTNFE.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "V6MQGHYV9HMHTNFE.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "791" - }, - "appliesTo" : [ ] - }, - "V6MQGHYV9HMHTNFE.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "V6MQGHYV9HMHTNFE.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "V6MQGHYV9HMHTNFE.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "V6MQGHYV9HMHTNFE", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "V6MQGHYV9HMHTNFE.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "V6MQGHYV9HMHTNFE.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "Y2TP2WYH8ZP2ZSNP" : { - "Y2TP2WYH8ZP2ZSNP.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "Y2TP2WYH8ZP2ZSNP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Y2TP2WYH8ZP2ZSNP.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "Y2TP2WYH8ZP2ZSNP.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Y2TP2WYH8ZP2ZSNP.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Y2TP2WYH8ZP2ZSNP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Y2TP2WYH8ZP2ZSNP.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Y2TP2WYH8ZP2ZSNP.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Y2TP2WYH8ZP2ZSNP.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Y2TP2WYH8ZP2ZSNP", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "Y2TP2WYH8ZP2ZSNP.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Y2TP2WYH8ZP2ZSNP.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7937" - }, - "appliesTo" : [ ] - }, - "Y2TP2WYH8ZP2ZSNP.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Y2TP2WYH8ZP2ZSNP.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y2TP2WYH8ZP2ZSNP.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "Y2TP2WYH8ZP2ZSNP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Y2TP2WYH8ZP2ZSNP.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "Y2TP2WYH8ZP2ZSNP.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7980" - }, - "appliesTo" : [ ] - }, - "Y2TP2WYH8ZP2ZSNP.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "Y2TP2WYH8ZP2ZSNP.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y2TP2WYH8ZP2ZSNP.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "Y2TP2WYH8ZP2ZSNP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Y2TP2WYH8ZP2ZSNP.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "Y2TP2WYH8ZP2ZSNP.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "Y2TP2WYH8ZP2ZSNP.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "Y2TP2WYH8ZP2ZSNP.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46684" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Y2TP2WYH8ZP2ZSNP.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "Y2TP2WYH8ZP2ZSNP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Y2TP2WYH8ZP2ZSNP.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "Y2TP2WYH8ZP2ZSNP.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Y2TP2WYH8ZP2ZSNP.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Y2TP2WYH8ZP2ZSNP", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "Y2TP2WYH8ZP2ZSNP.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Y2TP2WYH8ZP2ZSNP.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46306" - }, - "appliesTo" : [ ] - }, - "Y2TP2WYH8ZP2ZSNP.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Y2TP2WYH8ZP2ZSNP.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Y2TP2WYH8ZP2ZSNP.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "Y2TP2WYH8ZP2ZSNP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Y2TP2WYH8ZP2ZSNP.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "Y2TP2WYH8ZP2ZSNP.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Y2TP2WYH8ZP2ZSNP.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "Y2TP2WYH8ZP2ZSNP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Y2TP2WYH8ZP2ZSNP.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "Y2TP2WYH8ZP2ZSNP.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23367" - }, - "appliesTo" : [ ] - }, - "Y2TP2WYH8ZP2ZSNP.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "Y2TP2WYH8ZP2ZSNP.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y2TP2WYH8ZP2ZSNP.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "Y2TP2WYH8ZP2ZSNP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Y2TP2WYH8ZP2ZSNP.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "Y2TP2WYH8ZP2ZSNP.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15937" - }, - "appliesTo" : [ ] - }, - "Y2TP2WYH8ZP2ZSNP.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "Y2TP2WYH8ZP2ZSNP.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Y2TP2WYH8ZP2ZSNP.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Y2TP2WYH8ZP2ZSNP", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "Y2TP2WYH8ZP2ZSNP.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Y2TP2WYH8ZP2ZSNP.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23218" - }, - "appliesTo" : [ ] - }, - "Y2TP2WYH8ZP2ZSNP.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Y2TP2WYH8ZP2ZSNP.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y2TP2WYH8ZP2ZSNP.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Y2TP2WYH8ZP2ZSNP", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "Y2TP2WYH8ZP2ZSNP.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Y2TP2WYH8ZP2ZSNP.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15851" - }, - "appliesTo" : [ ] - }, - "Y2TP2WYH8ZP2ZSNP.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Y2TP2WYH8ZP2ZSNP.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "XJF7B8BASZ9KBAC4" : { - "XJF7B8BASZ9KBAC4.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XJF7B8BASZ9KBAC4", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "XJF7B8BASZ9KBAC4.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XJF7B8BASZ9KBAC4.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "132227" - }, - "appliesTo" : [ ] - }, - "XJF7B8BASZ9KBAC4.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XJF7B8BASZ9KBAC4.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.0940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XJF7B8BASZ9KBAC4.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XJF7B8BASZ9KBAC4", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "XJF7B8BASZ9KBAC4.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XJF7B8BASZ9KBAC4.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "XJF7B8BASZ9KBAC4.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XJF7B8BASZ9KBAC4.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "263885" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XJF7B8BASZ9KBAC4.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "XJF7B8BASZ9KBAC4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XJF7B8BASZ9KBAC4.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "XJF7B8BASZ9KBAC4.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "268254" - }, - "appliesTo" : [ ] - }, - "XJF7B8BASZ9KBAC4.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "XJF7B8BASZ9KBAC4.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XJF7B8BASZ9KBAC4.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "XJF7B8BASZ9KBAC4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XJF7B8BASZ9KBAC4.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "XJF7B8BASZ9KBAC4.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "29.3630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XJF7B8BASZ9KBAC4.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "XJF7B8BASZ9KBAC4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XJF7B8BASZ9KBAC4.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "XJF7B8BASZ9KBAC4.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "387893" - }, - "appliesTo" : [ ] - }, - "XJF7B8BASZ9KBAC4.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "XJF7B8BASZ9KBAC4.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.7600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XJF7B8BASZ9KBAC4.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "XJF7B8BASZ9KBAC4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XJF7B8BASZ9KBAC4.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "XJF7B8BASZ9KBAC4.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.3490000000" - }, - "appliesTo" : [ ] - }, - "XJF7B8BASZ9KBAC4.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "XJF7B8BASZ9KBAC4.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "134456" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XJF7B8BASZ9KBAC4.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "XJF7B8BASZ9KBAC4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XJF7B8BASZ9KBAC4.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "XJF7B8BASZ9KBAC4.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "30.8850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XJF7B8BASZ9KBAC4.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XJF7B8BASZ9KBAC4", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "XJF7B8BASZ9KBAC4.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XJF7B8BASZ9KBAC4.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.5950000000" - }, - "appliesTo" : [ ] - }, - "XJF7B8BASZ9KBAC4.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XJF7B8BASZ9KBAC4.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "383562" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XJF7B8BASZ9KBAC4.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "XJF7B8BASZ9KBAC4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XJF7B8BASZ9KBAC4.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "XJF7B8BASZ9KBAC4.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "774432" - }, - "appliesTo" : [ ] - }, - "XJF7B8BASZ9KBAC4.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "XJF7B8BASZ9KBAC4.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XJF7B8BASZ9KBAC4.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XJF7B8BASZ9KBAC4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XJF7B8BASZ9KBAC4.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XJF7B8BASZ9KBAC4.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "30.3710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XJF7B8BASZ9KBAC4.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "XJF7B8BASZ9KBAC4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XJF7B8BASZ9KBAC4.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "XJF7B8BASZ9KBAC4.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "29.7260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XJF7B8BASZ9KBAC4.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XJF7B8BASZ9KBAC4", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "XJF7B8BASZ9KBAC4.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XJF7B8BASZ9KBAC4.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "763582" - }, - "appliesTo" : [ ] - }, - "XJF7B8BASZ9KBAC4.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XJF7B8BASZ9KBAC4.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "E9BJT9V6S2SW8D9F" : { - "E9BJT9V6S2SW8D9F.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "E9BJT9V6S2SW8D9F", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "E9BJT9V6S2SW8D9F.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "E9BJT9V6S2SW8D9F.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5286000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "E9BJT9V6S2SW8D9F.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "E9BJT9V6S2SW8D9F", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "E9BJT9V6S2SW8D9F.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "E9BJT9V6S2SW8D9F.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2553" - }, - "appliesTo" : [ ] - }, - "E9BJT9V6S2SW8D9F.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "E9BJT9V6S2SW8D9F.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2844000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "E9BJT9V6S2SW8D9F.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "E9BJT9V6S2SW8D9F", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "E9BJT9V6S2SW8D9F.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "E9BJT9V6S2SW8D9F.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "E9BJT9V6S2SW8D9F.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "E9BJT9V6S2SW8D9F.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10172" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "E9BJT9V6S2SW8D9F.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "E9BJT9V6S2SW8D9F", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "E9BJT9V6S2SW8D9F.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "E9BJT9V6S2SW8D9F.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5188" - }, - "appliesTo" : [ ] - }, - "E9BJT9V6S2SW8D9F.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "E9BJT9V6S2SW8D9F.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "E9BJT9V6S2SW8D9F.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "E9BJT9V6S2SW8D9F", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "E9BJT9V6S2SW8D9F.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "E9BJT9V6S2SW8D9F.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4557" - }, - "appliesTo" : [ ] - }, - "E9BJT9V6S2SW8D9F.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "E9BJT9V6S2SW8D9F.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "E9BJT9V6S2SW8D9F.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "E9BJT9V6S2SW8D9F", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "E9BJT9V6S2SW8D9F.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "E9BJT9V6S2SW8D9F.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6029000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "E9BJT9V6S2SW8D9F.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "E9BJT9V6S2SW8D9F", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "E9BJT9V6S2SW8D9F.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "E9BJT9V6S2SW8D9F.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2243" - }, - "appliesTo" : [ ] - }, - "E9BJT9V6S2SW8D9F.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "E9BJT9V6S2SW8D9F.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "E9BJT9V6S2SW8D9F.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "E9BJT9V6S2SW8D9F", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "E9BJT9V6S2SW8D9F.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "E9BJT9V6S2SW8D9F.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "E9BJT9V6S2SW8D9F.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "E9BJT9V6S2SW8D9F.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4950" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "E9BJT9V6S2SW8D9F.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "E9BJT9V6S2SW8D9F", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "E9BJT9V6S2SW8D9F.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "E9BJT9V6S2SW8D9F.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3786000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "E9BJT9V6S2SW8D9F.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "E9BJT9V6S2SW8D9F", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "E9BJT9V6S2SW8D9F.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "E9BJT9V6S2SW8D9F.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4342" - }, - "appliesTo" : [ ] - }, - "E9BJT9V6S2SW8D9F.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "E9BJT9V6S2SW8D9F.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "E9BJT9V6S2SW8D9F.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "E9BJT9V6S2SW8D9F", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "E9BJT9V6S2SW8D9F.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "E9BJT9V6S2SW8D9F.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8599" - }, - "appliesTo" : [ ] - }, - "E9BJT9V6S2SW8D9F.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "E9BJT9V6S2SW8D9F.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "E9BJT9V6S2SW8D9F.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "E9BJT9V6S2SW8D9F", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "E9BJT9V6S2SW8D9F.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "E9BJT9V6S2SW8D9F.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4304000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "URQPKMKKWVYXRDR3" : { - "URQPKMKKWVYXRDR3.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "URQPKMKKWVYXRDR3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "URQPKMKKWVYXRDR3.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "URQPKMKKWVYXRDR3.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1897000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "URQPKMKKWVYXRDR3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "URQPKMKKWVYXRDR3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "URQPKMKKWVYXRDR3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "URQPKMKKWVYXRDR3.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1693000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "URQPKMKKWVYXRDR3.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "URQPKMKKWVYXRDR3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "URQPKMKKWVYXRDR3.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "URQPKMKKWVYXRDR3.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3300" - }, - "appliesTo" : [ ] - }, - "URQPKMKKWVYXRDR3.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "URQPKMKKWVYXRDR3.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "URQPKMKKWVYXRDR3.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "URQPKMKKWVYXRDR3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "URQPKMKKWVYXRDR3.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "URQPKMKKWVYXRDR3.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0876000000" - }, - "appliesTo" : [ ] - }, - "URQPKMKKWVYXRDR3.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "URQPKMKKWVYXRDR3.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "830" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "URQPKMKKWVYXRDR3.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "URQPKMKKWVYXRDR3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "URQPKMKKWVYXRDR3.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "URQPKMKKWVYXRDR3.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1571" - }, - "appliesTo" : [ ] - }, - "URQPKMKKWVYXRDR3.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "URQPKMKKWVYXRDR3.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "URQPKMKKWVYXRDR3.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "URQPKMKKWVYXRDR3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "URQPKMKKWVYXRDR3.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "URQPKMKKWVYXRDR3.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "URQPKMKKWVYXRDR3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "URQPKMKKWVYXRDR3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "URQPKMKKWVYXRDR3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "URQPKMKKWVYXRDR3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "URQPKMKKWVYXRDR3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "URQPKMKKWVYXRDR3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2868" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "URQPKMKKWVYXRDR3.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "URQPKMKKWVYXRDR3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "URQPKMKKWVYXRDR3.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "URQPKMKKWVYXRDR3.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1682" - }, - "appliesTo" : [ ] - }, - "URQPKMKKWVYXRDR3.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "URQPKMKKWVYXRDR3.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0636000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "URQPKMKKWVYXRDR3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "URQPKMKKWVYXRDR3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "URQPKMKKWVYXRDR3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "URQPKMKKWVYXRDR3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "745" - }, - "appliesTo" : [ ] - }, - "URQPKMKKWVYXRDR3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "URQPKMKKWVYXRDR3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0779000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "URQPKMKKWVYXRDR3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "URQPKMKKWVYXRDR3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "URQPKMKKWVYXRDR3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "URQPKMKKWVYXRDR3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1508" - }, - "appliesTo" : [ ] - }, - "URQPKMKKWVYXRDR3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "URQPKMKKWVYXRDR3.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "URQPKMKKWVYXRDR3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "URQPKMKKWVYXRDR3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "URQPKMKKWVYXRDR3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "URQPKMKKWVYXRDR3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1404" - }, - "appliesTo" : [ ] - }, - "URQPKMKKWVYXRDR3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "URQPKMKKWVYXRDR3.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "URQPKMKKWVYXRDR3.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "URQPKMKKWVYXRDR3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "URQPKMKKWVYXRDR3.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "URQPKMKKWVYXRDR3.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1423000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "GTVQFYE9FHRN6U2Z" : { - "GTVQFYE9FHRN6U2Z.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "GTVQFYE9FHRN6U2Z", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "GTVQFYE9FHRN6U2Z.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "GTVQFYE9FHRN6U2Z.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7902" - }, - "appliesTo" : [ ] - }, - "GTVQFYE9FHRN6U2Z.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "GTVQFYE9FHRN6U2Z.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GTVQFYE9FHRN6U2Z.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "GTVQFYE9FHRN6U2Z", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GTVQFYE9FHRN6U2Z.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "GTVQFYE9FHRN6U2Z.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GTVQFYE9FHRN6U2Z.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "GTVQFYE9FHRN6U2Z", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GTVQFYE9FHRN6U2Z.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "GTVQFYE9FHRN6U2Z.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2726" - }, - "appliesTo" : [ ] - }, - "GTVQFYE9FHRN6U2Z.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "GTVQFYE9FHRN6U2Z.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GTVQFYE9FHRN6U2Z.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "GTVQFYE9FHRN6U2Z", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GTVQFYE9FHRN6U2Z.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "GTVQFYE9FHRN6U2Z.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "GTVQFYE9FHRN6U2Z.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "GTVQFYE9FHRN6U2Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GTVQFYE9FHRN6U2Z.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "GTVQFYE9FHRN6U2Z.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "GTVQFYE9FHRN6U2Z.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "GTVQFYE9FHRN6U2Z.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3745" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "GTVQFYE9FHRN6U2Z.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "GTVQFYE9FHRN6U2Z", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "GTVQFYE9FHRN6U2Z.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "GTVQFYE9FHRN6U2Z.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2386" - }, - "appliesTo" : [ ] - }, - "GTVQFYE9FHRN6U2Z.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "GTVQFYE9FHRN6U2Z.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GTVQFYE9FHRN6U2Z.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "GTVQFYE9FHRN6U2Z", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "GTVQFYE9FHRN6U2Z.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "GTVQFYE9FHRN6U2Z.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1166" - }, - "appliesTo" : [ ] - }, - "GTVQFYE9FHRN6U2Z.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "GTVQFYE9FHRN6U2Z.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GTVQFYE9FHRN6U2Z.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "GTVQFYE9FHRN6U2Z", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GTVQFYE9FHRN6U2Z.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "GTVQFYE9FHRN6U2Z.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "GTVQFYE9FHRN6U2Z.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "GTVQFYE9FHRN6U2Z.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8759" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "GTVQFYE9FHRN6U2Z.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "GTVQFYE9FHRN6U2Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GTVQFYE9FHRN6U2Z.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "GTVQFYE9FHRN6U2Z.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1330" - }, - "appliesTo" : [ ] - }, - "GTVQFYE9FHRN6U2Z.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "GTVQFYE9FHRN6U2Z.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GTVQFYE9FHRN6U2Z.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "GTVQFYE9FHRN6U2Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GTVQFYE9FHRN6U2Z.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "GTVQFYE9FHRN6U2Z.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "GTVQFYE9FHRN6U2Z.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "GTVQFYE9FHRN6U2Z", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GTVQFYE9FHRN6U2Z.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "GTVQFYE9FHRN6U2Z.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GTVQFYE9FHRN6U2Z.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "GTVQFYE9FHRN6U2Z", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GTVQFYE9FHRN6U2Z.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "GTVQFYE9FHRN6U2Z.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3425" - }, - "appliesTo" : [ ] - }, - "GTVQFYE9FHRN6U2Z.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "GTVQFYE9FHRN6U2Z.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "T2S6PU6V3NXVX7X2" : { - "T2S6PU6V3NXVX7X2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "T2S6PU6V3NXVX7X2", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "T2S6PU6V3NXVX7X2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "T2S6PU6V3NXVX7X2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5816" - }, - "appliesTo" : [ ] - }, - "T2S6PU6V3NXVX7X2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "T2S6PU6V3NXVX7X2.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "T2S6PU6V3NXVX7X2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "T2S6PU6V3NXVX7X2", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "T2S6PU6V3NXVX7X2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "T2S6PU6V3NXVX7X2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2339" - }, - "appliesTo" : [ ] - }, - "T2S6PU6V3NXVX7X2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "T2S6PU6V3NXVX7X2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "T2S6PU6V3NXVX7X2.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "T2S6PU6V3NXVX7X2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "T2S6PU6V3NXVX7X2.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "T2S6PU6V3NXVX7X2.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3268" - }, - "appliesTo" : [ ] - }, - "T2S6PU6V3NXVX7X2.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "T2S6PU6V3NXVX7X2.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "T2S6PU6V3NXVX7X2.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "T2S6PU6V3NXVX7X2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "T2S6PU6V3NXVX7X2.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "T2S6PU6V3NXVX7X2.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "T2S6PU6V3NXVX7X2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "T2S6PU6V3NXVX7X2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "T2S6PU6V3NXVX7X2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "T2S6PU6V3NXVX7X2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3814" - }, - "appliesTo" : [ ] - }, - "T2S6PU6V3NXVX7X2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "T2S6PU6V3NXVX7X2.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "T2S6PU6V3NXVX7X2.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "T2S6PU6V3NXVX7X2", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "T2S6PU6V3NXVX7X2.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "T2S6PU6V3NXVX7X2.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "T2S6PU6V3NXVX7X2.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "T2S6PU6V3NXVX7X2.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16596" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "T2S6PU6V3NXVX7X2.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "T2S6PU6V3NXVX7X2", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "T2S6PU6V3NXVX7X2.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "T2S6PU6V3NXVX7X2.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6512" - }, - "appliesTo" : [ ] - }, - "T2S6PU6V3NXVX7X2.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "T2S6PU6V3NXVX7X2.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "T2S6PU6V3NXVX7X2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "T2S6PU6V3NXVX7X2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "T2S6PU6V3NXVX7X2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "T2S6PU6V3NXVX7X2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13417" - }, - "appliesTo" : [ ] - }, - "T2S6PU6V3NXVX7X2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "T2S6PU6V3NXVX7X2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "T2S6PU6V3NXVX7X2.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "T2S6PU6V3NXVX7X2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "T2S6PU6V3NXVX7X2.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "T2S6PU6V3NXVX7X2.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "T2S6PU6V3NXVX7X2.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "T2S6PU6V3NXVX7X2.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6470" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "T2S6PU6V3NXVX7X2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "T2S6PU6V3NXVX7X2", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "T2S6PU6V3NXVX7X2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "T2S6PU6V3NXVX7X2.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "T2S6PU6V3NXVX7X2.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "T2S6PU6V3NXVX7X2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "T2S6PU6V3NXVX7X2.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "T2S6PU6V3NXVX7X2.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "2YXG22APZA6TC2QW" : { - "2YXG22APZA6TC2QW.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "2YXG22APZA6TC2QW", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "2YXG22APZA6TC2QW.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "2YXG22APZA6TC2QW.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2YXG22APZA6TC2QW.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "2YXG22APZA6TC2QW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2YXG22APZA6TC2QW.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "2YXG22APZA6TC2QW.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6738" - }, - "appliesTo" : [ ] - }, - "2YXG22APZA6TC2QW.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "2YXG22APZA6TC2QW.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2YXG22APZA6TC2QW.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "2YXG22APZA6TC2QW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2YXG22APZA6TC2QW.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "2YXG22APZA6TC2QW.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2724000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2YXG22APZA6TC2QW.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "2YXG22APZA6TC2QW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2YXG22APZA6TC2QW.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "2YXG22APZA6TC2QW.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7987" - }, - "appliesTo" : [ ] - }, - "2YXG22APZA6TC2QW.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "2YXG22APZA6TC2QW.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2YXG22APZA6TC2QW.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "2YXG22APZA6TC2QW", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "2YXG22APZA6TC2QW.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "2YXG22APZA6TC2QW.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4075" - }, - "appliesTo" : [ ] - }, - "2YXG22APZA6TC2QW.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "2YXG22APZA6TC2QW.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2YXG22APZA6TC2QW.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "2YXG22APZA6TC2QW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2YXG22APZA6TC2QW.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "2YXG22APZA6TC2QW.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "2YXG22APZA6TC2QW.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "2YXG22APZA6TC2QW.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3515" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2YXG22APZA6TC2QW.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "2YXG22APZA6TC2QW", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "2YXG22APZA6TC2QW.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "2YXG22APZA6TC2QW.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3585" - }, - "appliesTo" : [ ] - }, - "2YXG22APZA6TC2QW.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "2YXG22APZA6TC2QW.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2YXG22APZA6TC2QW.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "2YXG22APZA6TC2QW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2YXG22APZA6TC2QW.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "2YXG22APZA6TC2QW.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1426" - }, - "appliesTo" : [ ] - }, - "2YXG22APZA6TC2QW.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "2YXG22APZA6TC2QW.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2YXG22APZA6TC2QW.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "2YXG22APZA6TC2QW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2YXG22APZA6TC2QW.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "2YXG22APZA6TC2QW.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2795" - }, - "appliesTo" : [ ] - }, - "2YXG22APZA6TC2QW.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "2YXG22APZA6TC2QW.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2YXG22APZA6TC2QW.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "2YXG22APZA6TC2QW", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "2YXG22APZA6TC2QW.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "2YXG22APZA6TC2QW.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2YXG22APZA6TC2QW.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "2YXG22APZA6TC2QW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2YXG22APZA6TC2QW.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "2YXG22APZA6TC2QW.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1771" - }, - "appliesTo" : [ ] - }, - "2YXG22APZA6TC2QW.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "2YXG22APZA6TC2QW.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2021000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2YXG22APZA6TC2QW.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "2YXG22APZA6TC2QW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2YXG22APZA6TC2QW.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "2YXG22APZA6TC2QW.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4117000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "8VCNEHQMSCQS4P39" : { - "8VCNEHQMSCQS4P39.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "8VCNEHQMSCQS4P39", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8VCNEHQMSCQS4P39.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "8VCNEHQMSCQS4P39.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "8VCNEHQMSCQS4P39.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "8VCNEHQMSCQS4P39.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "507" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8VCNEHQMSCQS4P39.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "8VCNEHQMSCQS4P39", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8VCNEHQMSCQS4P39.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "8VCNEHQMSCQS4P39.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "258" - }, - "appliesTo" : [ ] - }, - "8VCNEHQMSCQS4P39.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "8VCNEHQMSCQS4P39.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0295000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8VCNEHQMSCQS4P39.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "8VCNEHQMSCQS4P39", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8VCNEHQMSCQS4P39.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "8VCNEHQMSCQS4P39.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0432000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8VCNEHQMSCQS4P39.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "8VCNEHQMSCQS4P39", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8VCNEHQMSCQS4P39.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "8VCNEHQMSCQS4P39.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0497000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8VCNEHQMSCQS4P39.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "8VCNEHQMSCQS4P39", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8VCNEHQMSCQS4P39.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "8VCNEHQMSCQS4P39.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "582" - }, - "appliesTo" : [ ] - }, - "8VCNEHQMSCQS4P39.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "8VCNEHQMSCQS4P39.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8VCNEHQMSCQS4P39.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "8VCNEHQMSCQS4P39", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8VCNEHQMSCQS4P39.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "8VCNEHQMSCQS4P39.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8VCNEHQMSCQS4P39.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "8VCNEHQMSCQS4P39", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8VCNEHQMSCQS4P39.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "8VCNEHQMSCQS4P39.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "297" - }, - "appliesTo" : [ ] - }, - "8VCNEHQMSCQS4P39.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "8VCNEHQMSCQS4P39.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0339000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8VCNEHQMSCQS4P39.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "8VCNEHQMSCQS4P39", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8VCNEHQMSCQS4P39.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "8VCNEHQMSCQS4P39.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1185" - }, - "appliesTo" : [ ] - }, - "8VCNEHQMSCQS4P39.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "8VCNEHQMSCQS4P39.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8VCNEHQMSCQS4P39.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "8VCNEHQMSCQS4P39", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8VCNEHQMSCQS4P39.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "8VCNEHQMSCQS4P39.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "988" - }, - "appliesTo" : [ ] - }, - "8VCNEHQMSCQS4P39.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "8VCNEHQMSCQS4P39.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8VCNEHQMSCQS4P39.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "8VCNEHQMSCQS4P39", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8VCNEHQMSCQS4P39.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "8VCNEHQMSCQS4P39.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0230000000" - }, - "appliesTo" : [ ] - }, - "8VCNEHQMSCQS4P39.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "8VCNEHQMSCQS4P39.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "604" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8VCNEHQMSCQS4P39.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "8VCNEHQMSCQS4P39", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8VCNEHQMSCQS4P39.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "8VCNEHQMSCQS4P39.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0712000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8VCNEHQMSCQS4P39.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "8VCNEHQMSCQS4P39", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8VCNEHQMSCQS4P39.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "8VCNEHQMSCQS4P39.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "526" - }, - "appliesTo" : [ ] - }, - "8VCNEHQMSCQS4P39.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "8VCNEHQMSCQS4P39.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "YUXKRQ5SQSHVKD58" : { - "YUXKRQ5SQSHVKD58.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YUXKRQ5SQSHVKD58", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YUXKRQ5SQSHVKD58.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YUXKRQ5SQSHVKD58.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YUXKRQ5SQSHVKD58.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YUXKRQ5SQSHVKD58", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "YUXKRQ5SQSHVKD58.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YUXKRQ5SQSHVKD58.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "247" - }, - "appliesTo" : [ ] - }, - "YUXKRQ5SQSHVKD58.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YUXKRQ5SQSHVKD58.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YUXKRQ5SQSHVKD58.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YUXKRQ5SQSHVKD58", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YUXKRQ5SQSHVKD58.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YUXKRQ5SQSHVKD58.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "375" - }, - "appliesTo" : [ ] - }, - "YUXKRQ5SQSHVKD58.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YUXKRQ5SQSHVKD58.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YUXKRQ5SQSHVKD58.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YUXKRQ5SQSHVKD58", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YUXKRQ5SQSHVKD58.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YUXKRQ5SQSHVKD58.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YUXKRQ5SQSHVKD58.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YUXKRQ5SQSHVKD58.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "772" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YUXKRQ5SQSHVKD58.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YUXKRQ5SQSHVKD58", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YUXKRQ5SQSHVKD58.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YUXKRQ5SQSHVKD58.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "413" - }, - "appliesTo" : [ ] - }, - "YUXKRQ5SQSHVKD58.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YUXKRQ5SQSHVKD58.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "MBDEK77AM97QDASM" : { - "MBDEK77AM97QDASM.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "MBDEK77AM97QDASM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MBDEK77AM97QDASM.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "MBDEK77AM97QDASM.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7392000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MBDEK77AM97QDASM.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "MBDEK77AM97QDASM", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "MBDEK77AM97QDASM.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "MBDEK77AM97QDASM.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2340000000" - }, - "appliesTo" : [ ] - }, - "MBDEK77AM97QDASM.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "MBDEK77AM97QDASM.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6150" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MBDEK77AM97QDASM.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "MBDEK77AM97QDASM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MBDEK77AM97QDASM.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "MBDEK77AM97QDASM.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13814" - }, - "appliesTo" : [ ] - }, - "MBDEK77AM97QDASM.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "MBDEK77AM97QDASM.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MBDEK77AM97QDASM.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "MBDEK77AM97QDASM", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "MBDEK77AM97QDASM.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "MBDEK77AM97QDASM.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11561" - }, - "appliesTo" : [ ] - }, - "MBDEK77AM97QDASM.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "MBDEK77AM97QDASM.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MBDEK77AM97QDASM.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "MBDEK77AM97QDASM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MBDEK77AM97QDASM.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "MBDEK77AM97QDASM.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5793000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MBDEK77AM97QDASM.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "MBDEK77AM97QDASM", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "MBDEK77AM97QDASM.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "MBDEK77AM97QDASM.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3075" - }, - "appliesTo" : [ ] - }, - "MBDEK77AM97QDASM.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "MBDEK77AM97QDASM.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MBDEK77AM97QDASM.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "MBDEK77AM97QDASM", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "MBDEK77AM97QDASM.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "MBDEK77AM97QDASM.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6027" - }, - "appliesTo" : [ ] - }, - "MBDEK77AM97QDASM.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "MBDEK77AM97QDASM.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MBDEK77AM97QDASM.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "MBDEK77AM97QDASM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MBDEK77AM97QDASM.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "MBDEK77AM97QDASM.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "MBDEK77AM97QDASM.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "MBDEK77AM97QDASM.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6950" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MBDEK77AM97QDASM.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "MBDEK77AM97QDASM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MBDEK77AM97QDASM.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "MBDEK77AM97QDASM.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5037000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MBDEK77AM97QDASM.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "MBDEK77AM97QDASM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MBDEK77AM97QDASM.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "MBDEK77AM97QDASM.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2682000000" - }, - "appliesTo" : [ ] - }, - "MBDEK77AM97QDASM.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "MBDEK77AM97QDASM.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7048" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MBDEK77AM97QDASM.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "MBDEK77AM97QDASM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MBDEK77AM97QDASM.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "MBDEK77AM97QDASM.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3546" - }, - "appliesTo" : [ ] - }, - "MBDEK77AM97QDASM.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "MBDEK77AM97QDASM.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4048000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MBDEK77AM97QDASM.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "MBDEK77AM97QDASM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MBDEK77AM97QDASM.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "MBDEK77AM97QDASM.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8501000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "6898Z5WFTX5GEKYT" : { - "6898Z5WFTX5GEKYT.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6898Z5WFTX5GEKYT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6898Z5WFTX5GEKYT.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6898Z5WFTX5GEKYT.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22718" - }, - "appliesTo" : [ ] - }, - "6898Z5WFTX5GEKYT.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6898Z5WFTX5GEKYT.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6898Z5WFTX5GEKYT.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6898Z5WFTX5GEKYT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6898Z5WFTX5GEKYT.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6898Z5WFTX5GEKYT.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6898Z5WFTX5GEKYT.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "6898Z5WFTX5GEKYT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6898Z5WFTX5GEKYT.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "6898Z5WFTX5GEKYT.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9390000000" - }, - "appliesTo" : [ ] - }, - "6898Z5WFTX5GEKYT.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "6898Z5WFTX5GEKYT.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24675" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6898Z5WFTX5GEKYT.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6898Z5WFTX5GEKYT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6898Z5WFTX5GEKYT.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6898Z5WFTX5GEKYT.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "43871" - }, - "appliesTo" : [ ] - }, - "6898Z5WFTX5GEKYT.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6898Z5WFTX5GEKYT.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6898Z5WFTX5GEKYT.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "6898Z5WFTX5GEKYT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6898Z5WFTX5GEKYT.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "6898Z5WFTX5GEKYT.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6898Z5WFTX5GEKYT.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6898Z5WFTX5GEKYT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6898Z5WFTX5GEKYT.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6898Z5WFTX5GEKYT.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11799" - }, - "appliesTo" : [ ] - }, - "6898Z5WFTX5GEKYT.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6898Z5WFTX5GEKYT.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6898Z5WFTX5GEKYT.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6898Z5WFTX5GEKYT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6898Z5WFTX5GEKYT.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6898Z5WFTX5GEKYT.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23255" - }, - "appliesTo" : [ ] - }, - "6898Z5WFTX5GEKYT.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6898Z5WFTX5GEKYT.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6898Z5WFTX5GEKYT.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "6898Z5WFTX5GEKYT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6898Z5WFTX5GEKYT.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "6898Z5WFTX5GEKYT.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6898Z5WFTX5GEKYT.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "6898Z5WFTX5GEKYT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6898Z5WFTX5GEKYT.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "6898Z5WFTX5GEKYT.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6898Z5WFTX5GEKYT.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "6898Z5WFTX5GEKYT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6898Z5WFTX5GEKYT.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "6898Z5WFTX5GEKYT.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "6898Z5WFTX5GEKYT.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "6898Z5WFTX5GEKYT.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25777" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6898Z5WFTX5GEKYT.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "6898Z5WFTX5GEKYT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6898Z5WFTX5GEKYT.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "6898Z5WFTX5GEKYT.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13086" - }, - "appliesTo" : [ ] - }, - "6898Z5WFTX5GEKYT.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "6898Z5WFTX5GEKYT.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6898Z5WFTX5GEKYT.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "6898Z5WFTX5GEKYT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6898Z5WFTX5GEKYT.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "6898Z5WFTX5GEKYT.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "6898Z5WFTX5GEKYT.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "6898Z5WFTX5GEKYT.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "48751" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "RKUUP7AYRVCXF3ZJ" : { - "RKUUP7AYRVCXF3ZJ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "RKUUP7AYRVCXF3ZJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RKUUP7AYRVCXF3ZJ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "RKUUP7AYRVCXF3ZJ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1052" - }, - "appliesTo" : [ ] - }, - "RKUUP7AYRVCXF3ZJ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "RKUUP7AYRVCXF3ZJ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RKUUP7AYRVCXF3ZJ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "RKUUP7AYRVCXF3ZJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RKUUP7AYRVCXF3ZJ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "RKUUP7AYRVCXF3ZJ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RKUUP7AYRVCXF3ZJ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "RKUUP7AYRVCXF3ZJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RKUUP7AYRVCXF3ZJ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "RKUUP7AYRVCXF3ZJ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "660" - }, - "appliesTo" : [ ] - }, - "RKUUP7AYRVCXF3ZJ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "RKUUP7AYRVCXF3ZJ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RKUUP7AYRVCXF3ZJ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "RKUUP7AYRVCXF3ZJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RKUUP7AYRVCXF3ZJ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "RKUUP7AYRVCXF3ZJ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3854" - }, - "appliesTo" : [ ] - }, - "RKUUP7AYRVCXF3ZJ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "RKUUP7AYRVCXF3ZJ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RKUUP7AYRVCXF3ZJ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "RKUUP7AYRVCXF3ZJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "RKUUP7AYRVCXF3ZJ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "RKUUP7AYRVCXF3ZJ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1703" - }, - "appliesTo" : [ ] - }, - "RKUUP7AYRVCXF3ZJ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "RKUUP7AYRVCXF3ZJ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "U7RB8YXJ8WGXHNK3" : { - "U7RB8YXJ8WGXHNK3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "U7RB8YXJ8WGXHNK3", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "U7RB8YXJ8WGXHNK3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "U7RB8YXJ8WGXHNK3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "U7RB8YXJ8WGXHNK3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "U7RB8YXJ8WGXHNK3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5573" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "U7RB8YXJ8WGXHNK3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "U7RB8YXJ8WGXHNK3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "U7RB8YXJ8WGXHNK3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "U7RB8YXJ8WGXHNK3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2374" - }, - "appliesTo" : [ ] - }, - "U7RB8YXJ8WGXHNK3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "U7RB8YXJ8WGXHNK3.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "U7RB8YXJ8WGXHNK3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "U7RB8YXJ8WGXHNK3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "U7RB8YXJ8WGXHNK3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "U7RB8YXJ8WGXHNK3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2610" - }, - "appliesTo" : [ ] - }, - "U7RB8YXJ8WGXHNK3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "U7RB8YXJ8WGXHNK3.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "U7RB8YXJ8WGXHNK3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "U7RB8YXJ8WGXHNK3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "U7RB8YXJ8WGXHNK3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "U7RB8YXJ8WGXHNK3.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "U7RB8YXJ8WGXHNK3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "U7RB8YXJ8WGXHNK3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "U7RB8YXJ8WGXHNK3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "U7RB8YXJ8WGXHNK3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1064" - }, - "appliesTo" : [ ] - }, - "U7RB8YXJ8WGXHNK3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "U7RB8YXJ8WGXHNK3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "HMNJVFAEBVXVF64D" : { - "HMNJVFAEBVXVF64D.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "HMNJVFAEBVXVF64D", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "HMNJVFAEBVXVF64D.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "HMNJVFAEBVXVF64D.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "717" - }, - "appliesTo" : [ ] - }, - "HMNJVFAEBVXVF64D.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "HMNJVFAEBVXVF64D.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HMNJVFAEBVXVF64D.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "HMNJVFAEBVXVF64D", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "HMNJVFAEBVXVF64D.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "HMNJVFAEBVXVF64D.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1936" - }, - "appliesTo" : [ ] - }, - "HMNJVFAEBVXVF64D.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "HMNJVFAEBVXVF64D.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HMNJVFAEBVXVF64D.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "HMNJVFAEBVXVF64D", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "HMNJVFAEBVXVF64D.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "HMNJVFAEBVXVF64D.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1160000000" - }, - "appliesTo" : [ ] - }, - "HMNJVFAEBVXVF64D.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "HMNJVFAEBVXVF64D.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1118" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HMNJVFAEBVXVF64D.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "HMNJVFAEBVXVF64D", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "HMNJVFAEBVXVF64D.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "HMNJVFAEBVXVF64D.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "HMNJVFAEBVXVF64D.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "HMNJVFAEBVXVF64D", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "HMNJVFAEBVXVF64D.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "HMNJVFAEBVXVF64D.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "HMNJVFAEBVXVF64D.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "HMNJVFAEBVXVF64D.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3902" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HMNJVFAEBVXVF64D.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "HMNJVFAEBVXVF64D", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "HMNJVFAEBVXVF64D.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "HMNJVFAEBVXVF64D.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1769" - }, - "appliesTo" : [ ] - }, - "HMNJVFAEBVXVF64D.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "HMNJVFAEBVXVF64D.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HMNJVFAEBVXVF64D.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "HMNJVFAEBVXVF64D", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "HMNJVFAEBVXVF64D.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "HMNJVFAEBVXVF64D.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "HMNJVFAEBVXVF64D.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "HMNJVFAEBVXVF64D", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HMNJVFAEBVXVF64D.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "HMNJVFAEBVXVF64D.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1400000000" - }, - "appliesTo" : [ ] - }, - "HMNJVFAEBVXVF64D.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "HMNJVFAEBVXVF64D.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "700" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HMNJVFAEBVXVF64D.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "HMNJVFAEBVXVF64D", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HMNJVFAEBVXVF64D.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "HMNJVFAEBVXVF64D.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "HMNJVFAEBVXVF64D.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "HMNJVFAEBVXVF64D", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HMNJVFAEBVXVF64D.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "HMNJVFAEBVXVF64D.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1898" - }, - "appliesTo" : [ ] - }, - "HMNJVFAEBVXVF64D.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "HMNJVFAEBVXVF64D.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "HMNJVFAEBVXVF64D.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "HMNJVFAEBVXVF64D", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "HMNJVFAEBVXVF64D.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "HMNJVFAEBVXVF64D.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4946" - }, - "appliesTo" : [ ] - }, - "HMNJVFAEBVXVF64D.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "HMNJVFAEBVXVF64D.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "BVA53SP54488TUC8" : { - "BVA53SP54488TUC8.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "BVA53SP54488TUC8", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "BVA53SP54488TUC8.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "BVA53SP54488TUC8.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1291" - }, - "appliesTo" : [ ] - }, - "BVA53SP54488TUC8.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "BVA53SP54488TUC8.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BVA53SP54488TUC8.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "BVA53SP54488TUC8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BVA53SP54488TUC8.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "BVA53SP54488TUC8.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "BVA53SP54488TUC8.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "BVA53SP54488TUC8.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2797" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BVA53SP54488TUC8.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "BVA53SP54488TUC8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "BVA53SP54488TUC8.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "BVA53SP54488TUC8.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BVA53SP54488TUC8.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "BVA53SP54488TUC8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "BVA53SP54488TUC8.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "BVA53SP54488TUC8.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7242" - }, - "appliesTo" : [ ] - }, - "BVA53SP54488TUC8.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "BVA53SP54488TUC8.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BVA53SP54488TUC8.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "BVA53SP54488TUC8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BVA53SP54488TUC8.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "BVA53SP54488TUC8.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1410" - }, - "appliesTo" : [ ] - }, - "BVA53SP54488TUC8.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "BVA53SP54488TUC8.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BVA53SP54488TUC8.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "BVA53SP54488TUC8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "BVA53SP54488TUC8.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "BVA53SP54488TUC8.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BVA53SP54488TUC8.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "BVA53SP54488TUC8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BVA53SP54488TUC8.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "BVA53SP54488TUC8.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BVA53SP54488TUC8.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "BVA53SP54488TUC8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "BVA53SP54488TUC8.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "BVA53SP54488TUC8.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3657" - }, - "appliesTo" : [ ] - }, - "BVA53SP54488TUC8.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "BVA53SP54488TUC8.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BVA53SP54488TUC8.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "BVA53SP54488TUC8", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "BVA53SP54488TUC8.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "BVA53SP54488TUC8.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3164" - }, - "appliesTo" : [ ] - }, - "BVA53SP54488TUC8.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "BVA53SP54488TUC8.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BVA53SP54488TUC8.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "BVA53SP54488TUC8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "BVA53SP54488TUC8.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "BVA53SP54488TUC8.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BVA53SP54488TUC8.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "BVA53SP54488TUC8", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "BVA53SP54488TUC8.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "BVA53SP54488TUC8.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2529" - }, - "appliesTo" : [ ] - }, - "BVA53SP54488TUC8.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "BVA53SP54488TUC8.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BVA53SP54488TUC8.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "BVA53SP54488TUC8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "BVA53SP54488TUC8.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "BVA53SP54488TUC8.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5939" - }, - "appliesTo" : [ ] - }, - "BVA53SP54488TUC8.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "BVA53SP54488TUC8.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "3XXEP5YX5DYFE8HD" : { - "3XXEP5YX5DYFE8HD.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "3XXEP5YX5DYFE8HD", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "3XXEP5YX5DYFE8HD.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "3XXEP5YX5DYFE8HD.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4042" - }, - "appliesTo" : [ ] - }, - "3XXEP5YX5DYFE8HD.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "3XXEP5YX5DYFE8HD.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3XXEP5YX5DYFE8HD.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "3XXEP5YX5DYFE8HD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3XXEP5YX5DYFE8HD.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "3XXEP5YX5DYFE8HD.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4583" - }, - "appliesTo" : [ ] - }, - "3XXEP5YX5DYFE8HD.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "3XXEP5YX5DYFE8HD.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3XXEP5YX5DYFE8HD.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "3XXEP5YX5DYFE8HD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3XXEP5YX5DYFE8HD.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "3XXEP5YX5DYFE8HD.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3XXEP5YX5DYFE8HD.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "3XXEP5YX5DYFE8HD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3XXEP5YX5DYFE8HD.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "3XXEP5YX5DYFE8HD.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "3XXEP5YX5DYFE8HD.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "3XXEP5YX5DYFE8HD.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3772" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3XXEP5YX5DYFE8HD.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "3XXEP5YX5DYFE8HD", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "3XXEP5YX5DYFE8HD.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "3XXEP5YX5DYFE8HD.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "3XXEP5YX5DYFE8HD.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "3XXEP5YX5DYFE8HD.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7631" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3XXEP5YX5DYFE8HD.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "3XXEP5YX5DYFE8HD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3XXEP5YX5DYFE8HD.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "3XXEP5YX5DYFE8HD.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3XXEP5YX5DYFE8HD.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "3XXEP5YX5DYFE8HD", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "3XXEP5YX5DYFE8HD.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "3XXEP5YX5DYFE8HD.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1953" - }, - "appliesTo" : [ ] - }, - "3XXEP5YX5DYFE8HD.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "3XXEP5YX5DYFE8HD.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3XXEP5YX5DYFE8HD.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "3XXEP5YX5DYFE8HD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3XXEP5YX5DYFE8HD.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "3XXEP5YX5DYFE8HD.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2480000000" - }, - "appliesTo" : [ ] - }, - "3XXEP5YX5DYFE8HD.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "3XXEP5YX5DYFE8HD.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2231" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3XXEP5YX5DYFE8HD.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "3XXEP5YX5DYFE8HD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3XXEP5YX5DYFE8HD.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "3XXEP5YX5DYFE8HD.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3XXEP5YX5DYFE8HD.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "3XXEP5YX5DYFE8HD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3XXEP5YX5DYFE8HD.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "3XXEP5YX5DYFE8HD.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "3XXEP5YX5DYFE8HD.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "3XXEP5YX5DYFE8HD.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4318" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3XXEP5YX5DYFE8HD.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "3XXEP5YX5DYFE8HD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3XXEP5YX5DYFE8HD.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "3XXEP5YX5DYFE8HD.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "3XXEP5YX5DYFE8HD.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "3XXEP5YX5DYFE8HD.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8987" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3XXEP5YX5DYFE8HD.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "3XXEP5YX5DYFE8HD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3XXEP5YX5DYFE8HD.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "3XXEP5YX5DYFE8HD.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "KWYNFA3ZNTZ3FWQA" : { - "KWYNFA3ZNTZ3FWQA.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "KWYNFA3ZNTZ3FWQA", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "KWYNFA3ZNTZ3FWQA.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "KWYNFA3ZNTZ3FWQA.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "KWYNFA3ZNTZ3FWQA.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "KWYNFA3ZNTZ3FWQA.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3689" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KWYNFA3ZNTZ3FWQA.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "KWYNFA3ZNTZ3FWQA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KWYNFA3ZNTZ3FWQA.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "KWYNFA3ZNTZ3FWQA.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4186" - }, - "appliesTo" : [ ] - }, - "KWYNFA3ZNTZ3FWQA.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "KWYNFA3ZNTZ3FWQA.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KWYNFA3ZNTZ3FWQA.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "KWYNFA3ZNTZ3FWQA", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "KWYNFA3ZNTZ3FWQA.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "KWYNFA3ZNTZ3FWQA.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2437" - }, - "appliesTo" : [ ] - }, - "KWYNFA3ZNTZ3FWQA.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "KWYNFA3ZNTZ3FWQA.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KWYNFA3ZNTZ3FWQA.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "KWYNFA3ZNTZ3FWQA", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "KWYNFA3ZNTZ3FWQA.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "KWYNFA3ZNTZ3FWQA.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KWYNFA3ZNTZ3FWQA.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "KWYNFA3ZNTZ3FWQA", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "KWYNFA3ZNTZ3FWQA.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "KWYNFA3ZNTZ3FWQA.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1210000000" - }, - "appliesTo" : [ ] - }, - "KWYNFA3ZNTZ3FWQA.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "KWYNFA3ZNTZ3FWQA.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4670" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KWYNFA3ZNTZ3FWQA.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "KWYNFA3ZNTZ3FWQA", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "KWYNFA3ZNTZ3FWQA.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "KWYNFA3ZNTZ3FWQA.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9871" - }, - "appliesTo" : [ ] - }, - "KWYNFA3ZNTZ3FWQA.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "KWYNFA3ZNTZ3FWQA.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KWYNFA3ZNTZ3FWQA.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "KWYNFA3ZNTZ3FWQA", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "KWYNFA3ZNTZ3FWQA.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "KWYNFA3ZNTZ3FWQA.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KWYNFA3ZNTZ3FWQA.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "KWYNFA3ZNTZ3FWQA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KWYNFA3ZNTZ3FWQA.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "KWYNFA3ZNTZ3FWQA.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2400000000" - }, - "appliesTo" : [ ] - }, - "KWYNFA3ZNTZ3FWQA.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "KWYNFA3ZNTZ3FWQA.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2164" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KWYNFA3ZNTZ3FWQA.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "KWYNFA3ZNTZ3FWQA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KWYNFA3ZNTZ3FWQA.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "KWYNFA3ZNTZ3FWQA.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KWYNFA3ZNTZ3FWQA.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "KWYNFA3ZNTZ3FWQA", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "KWYNFA3ZNTZ3FWQA.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "KWYNFA3ZNTZ3FWQA.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "KWYNFA3ZNTZ3FWQA.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "KWYNFA3ZNTZ3FWQA.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7437" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KWYNFA3ZNTZ3FWQA.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "KWYNFA3ZNTZ3FWQA", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "KWYNFA3ZNTZ3FWQA.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "KWYNFA3ZNTZ3FWQA.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6457" - }, - "appliesTo" : [ ] - }, - "KWYNFA3ZNTZ3FWQA.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "KWYNFA3ZNTZ3FWQA.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "QHEP8CAE9HJS33WN" : { - "QHEP8CAE9HJS33WN.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "QHEP8CAE9HJS33WN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QHEP8CAE9HJS33WN.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "QHEP8CAE9HJS33WN.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QHEP8CAE9HJS33WN.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QHEP8CAE9HJS33WN", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "QHEP8CAE9HJS33WN.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QHEP8CAE9HJS33WN.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QHEP8CAE9HJS33WN.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "QHEP8CAE9HJS33WN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QHEP8CAE9HJS33WN.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "QHEP8CAE9HJS33WN.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2421" - }, - "appliesTo" : [ ] - }, - "QHEP8CAE9HJS33WN.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "QHEP8CAE9HJS33WN.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QHEP8CAE9HJS33WN.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QHEP8CAE9HJS33WN", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QHEP8CAE9HJS33WN.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QHEP8CAE9HJS33WN.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1690000000" - }, - "appliesTo" : [ ] - }, - "QHEP8CAE9HJS33WN.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QHEP8CAE9HJS33WN.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2730" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QHEP8CAE9HJS33WN.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "QHEP8CAE9HJS33WN", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "QHEP8CAE9HJS33WN.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "QHEP8CAE9HJS33WN.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QHEP8CAE9HJS33WN.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "QHEP8CAE9HJS33WN.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11018" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QHEP8CAE9HJS33WN.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "QHEP8CAE9HJS33WN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QHEP8CAE9HJS33WN.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "QHEP8CAE9HJS33WN.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4690" - }, - "appliesTo" : [ ] - }, - "QHEP8CAE9HJS33WN.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "QHEP8CAE9HJS33WN.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QHEP8CAE9HJS33WN.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "QHEP8CAE9HJS33WN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QHEP8CAE9HJS33WN.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "QHEP8CAE9HJS33WN.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QHEP8CAE9HJS33WN.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QHEP8CAE9HJS33WN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QHEP8CAE9HJS33WN.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QHEP8CAE9HJS33WN.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7325" - }, - "appliesTo" : [ ] - }, - "QHEP8CAE9HJS33WN.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QHEP8CAE9HJS33WN.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QHEP8CAE9HJS33WN.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "QHEP8CAE9HJS33WN", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "QHEP8CAE9HJS33WN.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "QHEP8CAE9HJS33WN.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7237" - }, - "appliesTo" : [ ] - }, - "QHEP8CAE9HJS33WN.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "QHEP8CAE9HJS33WN.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QHEP8CAE9HJS33WN.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QHEP8CAE9HJS33WN", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QHEP8CAE9HJS33WN.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QHEP8CAE9HJS33WN.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8841" - }, - "appliesTo" : [ ] - }, - "QHEP8CAE9HJS33WN.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QHEP8CAE9HJS33WN.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QHEP8CAE9HJS33WN.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QHEP8CAE9HJS33WN", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "QHEP8CAE9HJS33WN.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QHEP8CAE9HJS33WN.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QHEP8CAE9HJS33WN.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QHEP8CAE9HJS33WN.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4129" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "SQ7KCWAADJKDQN9W" : { - "SQ7KCWAADJKDQN9W.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "SQ7KCWAADJKDQN9W", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SQ7KCWAADJKDQN9W.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "SQ7KCWAADJKDQN9W.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9090000000" - }, - "appliesTo" : [ ] - }, - "SQ7KCWAADJKDQN9W.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "SQ7KCWAADJKDQN9W.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23890" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SQ7KCWAADJKDQN9W.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "SQ7KCWAADJKDQN9W", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SQ7KCWAADJKDQN9W.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "SQ7KCWAADJKDQN9W.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8288000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SQ7KCWAADJKDQN9W.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SQ7KCWAADJKDQN9W", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "SQ7KCWAADJKDQN9W.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SQ7KCWAADJKDQN9W.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47151" - }, - "appliesTo" : [ ] - }, - "SQ7KCWAADJKDQN9W.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SQ7KCWAADJKDQN9W.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SQ7KCWAADJKDQN9W.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "SQ7KCWAADJKDQN9W", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SQ7KCWAADJKDQN9W.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "SQ7KCWAADJKDQN9W.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8099000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SQ7KCWAADJKDQN9W.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "SQ7KCWAADJKDQN9W", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SQ7KCWAADJKDQN9W.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "SQ7KCWAADJKDQN9W.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SQ7KCWAADJKDQN9W.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "SQ7KCWAADJKDQN9W.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16489" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SQ7KCWAADJKDQN9W.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SQ7KCWAADJKDQN9W", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SQ7KCWAADJKDQN9W.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SQ7KCWAADJKDQN9W.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23668" - }, - "appliesTo" : [ ] - }, - "SQ7KCWAADJKDQN9W.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SQ7KCWAADJKDQN9W.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SQ7KCWAADJKDQN9W.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SQ7KCWAADJKDQN9W", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "SQ7KCWAADJKDQN9W.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SQ7KCWAADJKDQN9W.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16261" - }, - "appliesTo" : [ ] - }, - "SQ7KCWAADJKDQN9W.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SQ7KCWAADJKDQN9W.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SQ7KCWAADJKDQN9W.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "SQ7KCWAADJKDQN9W", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SQ7KCWAADJKDQN9W.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "SQ7KCWAADJKDQN9W.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8965000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SQ7KCWAADJKDQN9W.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SQ7KCWAADJKDQN9W", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SQ7KCWAADJKDQN9W.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SQ7KCWAADJKDQN9W.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8688000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SQ7KCWAADJKDQN9W.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SQ7KCWAADJKDQN9W", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "SQ7KCWAADJKDQN9W.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SQ7KCWAADJKDQN9W.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8146" - }, - "appliesTo" : [ ] - }, - "SQ7KCWAADJKDQN9W.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SQ7KCWAADJKDQN9W.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SQ7KCWAADJKDQN9W.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "SQ7KCWAADJKDQN9W", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SQ7KCWAADJKDQN9W.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "SQ7KCWAADJKDQN9W.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8262" - }, - "appliesTo" : [ ] - }, - "SQ7KCWAADJKDQN9W.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "SQ7KCWAADJKDQN9W.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9432000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SQ7KCWAADJKDQN9W.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "SQ7KCWAADJKDQN9W", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SQ7KCWAADJKDQN9W.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "SQ7KCWAADJKDQN9W.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47709" - }, - "appliesTo" : [ ] - }, - "SQ7KCWAADJKDQN9W.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "SQ7KCWAADJKDQN9W.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "YUPSNN9JFU6UZYAS" : { - "YUPSNN9JFU6UZYAS.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "YUPSNN9JFU6UZYAS", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YUPSNN9JFU6UZYAS.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "YUPSNN9JFU6UZYAS.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YUPSNN9JFU6UZYAS.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "YUPSNN9JFU6UZYAS", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YUPSNN9JFU6UZYAS.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "YUPSNN9JFU6UZYAS.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2500" - }, - "appliesTo" : [ ] - }, - "YUPSNN9JFU6UZYAS.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "YUPSNN9JFU6UZYAS.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YUPSNN9JFU6UZYAS.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YUPSNN9JFU6UZYAS", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YUPSNN9JFU6UZYAS.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YUPSNN9JFU6UZYAS.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YUPSNN9JFU6UZYAS.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YUPSNN9JFU6UZYAS.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3020" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YUPSNN9JFU6UZYAS.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "YUPSNN9JFU6UZYAS", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YUPSNN9JFU6UZYAS.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "YUPSNN9JFU6UZYAS.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4242" - }, - "appliesTo" : [ ] - }, - "YUPSNN9JFU6UZYAS.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "YUPSNN9JFU6UZYAS.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YUPSNN9JFU6UZYAS.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YUPSNN9JFU6UZYAS", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YUPSNN9JFU6UZYAS.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YUPSNN9JFU6UZYAS.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0660000000" - }, - "appliesTo" : [ ] - }, - "YUPSNN9JFU6UZYAS.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YUPSNN9JFU6UZYAS.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1480" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YUPSNN9JFU6UZYAS.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "YUPSNN9JFU6UZYAS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YUPSNN9JFU6UZYAS.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "YUPSNN9JFU6UZYAS.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1785" - }, - "appliesTo" : [ ] - }, - "YUPSNN9JFU6UZYAS.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "YUPSNN9JFU6UZYAS.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YUPSNN9JFU6UZYAS.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YUPSNN9JFU6UZYAS", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "YUPSNN9JFU6UZYAS.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YUPSNN9JFU6UZYAS.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1571" - }, - "appliesTo" : [ ] - }, - "YUPSNN9JFU6UZYAS.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YUPSNN9JFU6UZYAS.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YUPSNN9JFU6UZYAS.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YUPSNN9JFU6UZYAS", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "YUPSNN9JFU6UZYAS.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YUPSNN9JFU6UZYAS.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "926" - }, - "appliesTo" : [ ] - }, - "YUPSNN9JFU6UZYAS.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YUPSNN9JFU6UZYAS.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YUPSNN9JFU6UZYAS.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YUPSNN9JFU6UZYAS", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "YUPSNN9JFU6UZYAS.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YUPSNN9JFU6UZYAS.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YUPSNN9JFU6UZYAS.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "YUPSNN9JFU6UZYAS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YUPSNN9JFU6UZYAS.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "YUPSNN9JFU6UZYAS.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1040000000" - }, - "appliesTo" : [ ] - }, - "YUPSNN9JFU6UZYAS.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "YUPSNN9JFU6UZYAS.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "911" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YUPSNN9JFU6UZYAS.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "YUPSNN9JFU6UZYAS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YUPSNN9JFU6UZYAS.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "YUPSNN9JFU6UZYAS.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "XU7GMTDRK2VMN7K9" : { - "XU7GMTDRK2VMN7K9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XU7GMTDRK2VMN7K9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XU7GMTDRK2VMN7K9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XU7GMTDRK2VMN7K9.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XU7GMTDRK2VMN7K9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XU7GMTDRK2VMN7K9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XU7GMTDRK2VMN7K9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XU7GMTDRK2VMN7K9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7396" - }, - "appliesTo" : [ ] - }, - "XU7GMTDRK2VMN7K9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XU7GMTDRK2VMN7K9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XU7GMTDRK2VMN7K9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XU7GMTDRK2VMN7K9", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "XU7GMTDRK2VMN7K9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XU7GMTDRK2VMN7K9.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "XU7GMTDRK2VMN7K9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XU7GMTDRK2VMN7K9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12673" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XU7GMTDRK2VMN7K9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XU7GMTDRK2VMN7K9", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "XU7GMTDRK2VMN7K9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XU7GMTDRK2VMN7K9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "XU7GMTDRK2VMN7K9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XU7GMTDRK2VMN7K9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22959" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XU7GMTDRK2VMN7K9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XU7GMTDRK2VMN7K9", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "XU7GMTDRK2VMN7K9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XU7GMTDRK2VMN7K9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11232" - }, - "appliesTo" : [ ] - }, - "XU7GMTDRK2VMN7K9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XU7GMTDRK2VMN7K9.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "XHTGRKAAUAXJEMXS" : { - "XHTGRKAAUAXJEMXS.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "XHTGRKAAUAXJEMXS", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "XHTGRKAAUAXJEMXS.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "XHTGRKAAUAXJEMXS.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XHTGRKAAUAXJEMXS.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "XHTGRKAAUAXJEMXS", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "XHTGRKAAUAXJEMXS.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "XHTGRKAAUAXJEMXS.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32530" - }, - "appliesTo" : [ ] - }, - "XHTGRKAAUAXJEMXS.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "XHTGRKAAUAXJEMXS.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XHTGRKAAUAXJEMXS.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XHTGRKAAUAXJEMXS", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "XHTGRKAAUAXJEMXS.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XHTGRKAAUAXJEMXS.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "XHTGRKAAUAXJEMXS.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XHTGRKAAUAXJEMXS.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "44770" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XHTGRKAAUAXJEMXS.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XHTGRKAAUAXJEMXS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XHTGRKAAUAXJEMXS.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XHTGRKAAUAXJEMXS.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12048" - }, - "appliesTo" : [ ] - }, - "XHTGRKAAUAXJEMXS.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XHTGRKAAUAXJEMXS.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XHTGRKAAUAXJEMXS.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XHTGRKAAUAXJEMXS", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XHTGRKAAUAXJEMXS.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XHTGRKAAUAXJEMXS.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XHTGRKAAUAXJEMXS.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "XHTGRKAAUAXJEMXS", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "XHTGRKAAUAXJEMXS.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "XHTGRKAAUAXJEMXS.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "67123" - }, - "appliesTo" : [ ] - }, - "XHTGRKAAUAXJEMXS.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "XHTGRKAAUAXJEMXS.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XHTGRKAAUAXJEMXS.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "XHTGRKAAUAXJEMXS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XHTGRKAAUAXJEMXS.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "XHTGRKAAUAXJEMXS.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28387" - }, - "appliesTo" : [ ] - }, - "XHTGRKAAUAXJEMXS.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "XHTGRKAAUAXJEMXS.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XHTGRKAAUAXJEMXS.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "XHTGRKAAUAXJEMXS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XHTGRKAAUAXJEMXS.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "XHTGRKAAUAXJEMXS.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7170000000" - }, - "appliesTo" : [ ] - }, - "XHTGRKAAUAXJEMXS.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "XHTGRKAAUAXJEMXS.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13902" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XHTGRKAAUAXJEMXS.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "XHTGRKAAUAXJEMXS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XHTGRKAAUAXJEMXS.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "XHTGRKAAUAXJEMXS.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XHTGRKAAUAXJEMXS.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XHTGRKAAUAXJEMXS", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "XHTGRKAAUAXJEMXS.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XHTGRKAAUAXJEMXS.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "XHTGRKAAUAXJEMXS.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XHTGRKAAUAXJEMXS.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24736" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XHTGRKAAUAXJEMXS.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XHTGRKAAUAXJEMXS", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "XHTGRKAAUAXJEMXS.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XHTGRKAAUAXJEMXS.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22136" - }, - "appliesTo" : [ ] - }, - "XHTGRKAAUAXJEMXS.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XHTGRKAAUAXJEMXS.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "XK8PATGXFTCH3726" : { - "XK8PATGXFTCH3726.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XK8PATGXFTCH3726", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "XK8PATGXFTCH3726.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XK8PATGXFTCH3726.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "61674" - }, - "appliesTo" : [ ] - }, - "XK8PATGXFTCH3726.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XK8PATGXFTCH3726.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XK8PATGXFTCH3726.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XK8PATGXFTCH3726", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "XK8PATGXFTCH3726.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XK8PATGXFTCH3726.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31464" - }, - "appliesTo" : [ ] - }, - "XK8PATGXFTCH3726.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XK8PATGXFTCH3726.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XK8PATGXFTCH3726.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "XK8PATGXFTCH3726", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XK8PATGXFTCH3726.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "XK8PATGXFTCH3726.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XK8PATGXFTCH3726.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "XK8PATGXFTCH3726", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XK8PATGXFTCH3726.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "XK8PATGXFTCH3726.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "63945" - }, - "appliesTo" : [ ] - }, - "XK8PATGXFTCH3726.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "XK8PATGXFTCH3726.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XK8PATGXFTCH3726.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "XK8PATGXFTCH3726", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XK8PATGXFTCH3726.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "XK8PATGXFTCH3726.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "XK8PATGXFTCH3726.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "XK8PATGXFTCH3726.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "182258" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XK8PATGXFTCH3726.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "XK8PATGXFTCH3726", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XK8PATGXFTCH3726.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "XK8PATGXFTCH3726.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XK8PATGXFTCH3726.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "XK8PATGXFTCH3726", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XK8PATGXFTCH3726.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "XK8PATGXFTCH3726.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32069" - }, - "appliesTo" : [ ] - }, - "XK8PATGXFTCH3726.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "XK8PATGXFTCH3726.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XK8PATGXFTCH3726.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XK8PATGXFTCH3726", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "XK8PATGXFTCH3726.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XK8PATGXFTCH3726.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "80154" - }, - "appliesTo" : [ ] - }, - "XK8PATGXFTCH3726.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XK8PATGXFTCH3726.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XK8PATGXFTCH3726.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XK8PATGXFTCH3726", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "XK8PATGXFTCH3726.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XK8PATGXFTCH3726.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.4070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XK8PATGXFTCH3726.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XK8PATGXFTCH3726", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "XK8PATGXFTCH3726.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XK8PATGXFTCH3726.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "150681" - }, - "appliesTo" : [ ] - }, - "XK8PATGXFTCH3726.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XK8PATGXFTCH3726.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XK8PATGXFTCH3726.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "XK8PATGXFTCH3726", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "XK8PATGXFTCH3726.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "XK8PATGXFTCH3726.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.2830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XK8PATGXFTCH3726.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "XK8PATGXFTCH3726", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "XK8PATGXFTCH3726.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "XK8PATGXFTCH3726.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "92975" - }, - "appliesTo" : [ ] - }, - "XK8PATGXFTCH3726.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "XK8PATGXFTCH3726.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "WHYQJ8ZPHXUK6SXM" : { - "WHYQJ8ZPHXUK6SXM.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "WHYQJ8ZPHXUK6SXM", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "WHYQJ8ZPHXUK6SXM.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "WHYQJ8ZPHXUK6SXM.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1794" - }, - "appliesTo" : [ ] - }, - "WHYQJ8ZPHXUK6SXM.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "WHYQJ8ZPHXUK6SXM.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WHYQJ8ZPHXUK6SXM.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "WHYQJ8ZPHXUK6SXM", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "WHYQJ8ZPHXUK6SXM.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "WHYQJ8ZPHXUK6SXM.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WHYQJ8ZPHXUK6SXM.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "WHYQJ8ZPHXUK6SXM", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "WHYQJ8ZPHXUK6SXM.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "WHYQJ8ZPHXUK6SXM.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3626" - }, - "appliesTo" : [ ] - }, - "WHYQJ8ZPHXUK6SXM.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "WHYQJ8ZPHXUK6SXM.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WHYQJ8ZPHXUK6SXM.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "WHYQJ8ZPHXUK6SXM", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "WHYQJ8ZPHXUK6SXM.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "WHYQJ8ZPHXUK6SXM.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "634" - }, - "appliesTo" : [ ] - }, - "WHYQJ8ZPHXUK6SXM.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "WHYQJ8ZPHXUK6SXM.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WHYQJ8ZPHXUK6SXM.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "WHYQJ8ZPHXUK6SXM", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "WHYQJ8ZPHXUK6SXM.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "WHYQJ8ZPHXUK6SXM.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "WHYQJ8ZPHXUK6SXM.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "WHYQJ8ZPHXUK6SXM", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "WHYQJ8ZPHXUK6SXM.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "WHYQJ8ZPHXUK6SXM.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4459" - }, - "appliesTo" : [ ] - }, - "WHYQJ8ZPHXUK6SXM.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "WHYQJ8ZPHXUK6SXM.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WHYQJ8ZPHXUK6SXM.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "WHYQJ8ZPHXUK6SXM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WHYQJ8ZPHXUK6SXM.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "WHYQJ8ZPHXUK6SXM.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2114" - }, - "appliesTo" : [ ] - }, - "WHYQJ8ZPHXUK6SXM.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "WHYQJ8ZPHXUK6SXM.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WHYQJ8ZPHXUK6SXM.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "WHYQJ8ZPHXUK6SXM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WHYQJ8ZPHXUK6SXM.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "WHYQJ8ZPHXUK6SXM.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1064" - }, - "appliesTo" : [ ] - }, - "WHYQJ8ZPHXUK6SXM.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "WHYQJ8ZPHXUK6SXM.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WHYQJ8ZPHXUK6SXM.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "WHYQJ8ZPHXUK6SXM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WHYQJ8ZPHXUK6SXM.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "WHYQJ8ZPHXUK6SXM.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WHYQJ8ZPHXUK6SXM.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "WHYQJ8ZPHXUK6SXM", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "WHYQJ8ZPHXUK6SXM.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "WHYQJ8ZPHXUK6SXM.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "WHYQJ8ZPHXUK6SXM.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "WHYQJ8ZPHXUK6SXM.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1546" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WHYQJ8ZPHXUK6SXM.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "WHYQJ8ZPHXUK6SXM", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "WHYQJ8ZPHXUK6SXM.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "WHYQJ8ZPHXUK6SXM.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1546" - }, - "appliesTo" : [ ] - }, - "WHYQJ8ZPHXUK6SXM.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "WHYQJ8ZPHXUK6SXM.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "K2UX3Q9DEX25YU7R" : { - "K2UX3Q9DEX25YU7R.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "K2UX3Q9DEX25YU7R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K2UX3Q9DEX25YU7R.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "K2UX3Q9DEX25YU7R.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7728000000" - }, - "appliesTo" : [ ] - }, - "K2UX3Q9DEX25YU7R.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "K2UX3Q9DEX25YU7R.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6770" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "K2UX3Q9DEX25YU7R.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "K2UX3Q9DEX25YU7R", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K2UX3Q9DEX25YU7R.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "K2UX3Q9DEX25YU7R.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4752000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "K2UX3Q9DEX25YU7R.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "K2UX3Q9DEX25YU7R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K2UX3Q9DEX25YU7R.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "K2UX3Q9DEX25YU7R.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5861000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "K2UX3Q9DEX25YU7R.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "K2UX3Q9DEX25YU7R", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K2UX3Q9DEX25YU7R.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "K2UX3Q9DEX25YU7R.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "K2UX3Q9DEX25YU7R.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "K2UX3Q9DEX25YU7R.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33156" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "K2UX3Q9DEX25YU7R.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "K2UX3Q9DEX25YU7R", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K2UX3Q9DEX25YU7R.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "K2UX3Q9DEX25YU7R.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2397000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "K2UX3Q9DEX25YU7R.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "K2UX3Q9DEX25YU7R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K2UX3Q9DEX25YU7R.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "K2UX3Q9DEX25YU7R.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "K2UX3Q9DEX25YU7R.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "K2UX3Q9DEX25YU7R.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13398" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "K2UX3Q9DEX25YU7R.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "K2UX3Q9DEX25YU7R", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "K2UX3Q9DEX25YU7R.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "K2UX3Q9DEX25YU7R.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6298" - }, - "appliesTo" : [ ] - }, - "K2UX3Q9DEX25YU7R.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "K2UX3Q9DEX25YU7R.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "K2UX3Q9DEX25YU7R.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "K2UX3Q9DEX25YU7R", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K2UX3Q9DEX25YU7R.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "K2UX3Q9DEX25YU7R.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12474" - }, - "appliesTo" : [ ] - }, - "K2UX3Q9DEX25YU7R.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "K2UX3Q9DEX25YU7R.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "K2UX3Q9DEX25YU7R.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "K2UX3Q9DEX25YU7R", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K2UX3Q9DEX25YU7R.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "K2UX3Q9DEX25YU7R.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3153000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "K2UX3Q9DEX25YU7R.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "K2UX3Q9DEX25YU7R", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "K2UX3Q9DEX25YU7R.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "K2UX3Q9DEX25YU7R.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30903" - }, - "appliesTo" : [ ] - }, - "K2UX3Q9DEX25YU7R.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "K2UX3Q9DEX25YU7R.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "K2UX3Q9DEX25YU7R.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "K2UX3Q9DEX25YU7R", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "K2UX3Q9DEX25YU7R.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "K2UX3Q9DEX25YU7R.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15821" - }, - "appliesTo" : [ ] - }, - "K2UX3Q9DEX25YU7R.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "K2UX3Q9DEX25YU7R.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "K2UX3Q9DEX25YU7R.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "K2UX3Q9DEX25YU7R", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K2UX3Q9DEX25YU7R.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "K2UX3Q9DEX25YU7R.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16719" - }, - "appliesTo" : [ ] - }, - "K2UX3Q9DEX25YU7R.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "K2UX3Q9DEX25YU7R.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6362000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "2NBCH8MGXY3QQ5ZH" : { - "2NBCH8MGXY3QQ5ZH.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "2NBCH8MGXY3QQ5ZH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2NBCH8MGXY3QQ5ZH.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "2NBCH8MGXY3QQ5ZH.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2NBCH8MGXY3QQ5ZH.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "2NBCH8MGXY3QQ5ZH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2NBCH8MGXY3QQ5ZH.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "2NBCH8MGXY3QQ5ZH.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13688" - }, - "appliesTo" : [ ] - }, - "2NBCH8MGXY3QQ5ZH.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "2NBCH8MGXY3QQ5ZH.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2NBCH8MGXY3QQ5ZH.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "2NBCH8MGXY3QQ5ZH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2NBCH8MGXY3QQ5ZH.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "2NBCH8MGXY3QQ5ZH.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2NBCH8MGXY3QQ5ZH.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "2NBCH8MGXY3QQ5ZH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2NBCH8MGXY3QQ5ZH.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "2NBCH8MGXY3QQ5ZH.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2NBCH8MGXY3QQ5ZH.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "2NBCH8MGXY3QQ5ZH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2NBCH8MGXY3QQ5ZH.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "2NBCH8MGXY3QQ5ZH.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13420" - }, - "appliesTo" : [ ] - }, - "2NBCH8MGXY3QQ5ZH.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "2NBCH8MGXY3QQ5ZH.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2NBCH8MGXY3QQ5ZH.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "2NBCH8MGXY3QQ5ZH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2NBCH8MGXY3QQ5ZH.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "2NBCH8MGXY3QQ5ZH.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "77628" - }, - "appliesTo" : [ ] - }, - "2NBCH8MGXY3QQ5ZH.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "2NBCH8MGXY3QQ5ZH.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2NBCH8MGXY3QQ5ZH.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "2NBCH8MGXY3QQ5ZH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2NBCH8MGXY3QQ5ZH.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "2NBCH8MGXY3QQ5ZH.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27295" - }, - "appliesTo" : [ ] - }, - "2NBCH8MGXY3QQ5ZH.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "2NBCH8MGXY3QQ5ZH.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2NBCH8MGXY3QQ5ZH.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "2NBCH8MGXY3QQ5ZH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2NBCH8MGXY3QQ5ZH.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "2NBCH8MGXY3QQ5ZH.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2NBCH8MGXY3QQ5ZH.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "2NBCH8MGXY3QQ5ZH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2NBCH8MGXY3QQ5ZH.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "2NBCH8MGXY3QQ5ZH.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38367" - }, - "appliesTo" : [ ] - }, - "2NBCH8MGXY3QQ5ZH.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "2NBCH8MGXY3QQ5ZH.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2NBCH8MGXY3QQ5ZH.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "2NBCH8MGXY3QQ5ZH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2NBCH8MGXY3QQ5ZH.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "2NBCH8MGXY3QQ5ZH.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "2NBCH8MGXY3QQ5ZH.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "2NBCH8MGXY3QQ5ZH.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "76317" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2NBCH8MGXY3QQ5ZH.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "2NBCH8MGXY3QQ5ZH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2NBCH8MGXY3QQ5ZH.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "2NBCH8MGXY3QQ5ZH.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38894" - }, - "appliesTo" : [ ] - }, - "2NBCH8MGXY3QQ5ZH.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "2NBCH8MGXY3QQ5ZH.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2NBCH8MGXY3QQ5ZH.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "2NBCH8MGXY3QQ5ZH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2NBCH8MGXY3QQ5ZH.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "2NBCH8MGXY3QQ5ZH.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26769" - }, - "appliesTo" : [ ] - }, - "2NBCH8MGXY3QQ5ZH.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "2NBCH8MGXY3QQ5ZH.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "7DZ2ZNK9ZVM2D8RJ" : { - "7DZ2ZNK9ZVM2D8RJ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "7DZ2ZNK9ZVM2D8RJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7DZ2ZNK9ZVM2D8RJ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "7DZ2ZNK9ZVM2D8RJ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7106" - }, - "appliesTo" : [ ] - }, - "7DZ2ZNK9ZVM2D8RJ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "7DZ2ZNK9ZVM2D8RJ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7DZ2ZNK9ZVM2D8RJ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "7DZ2ZNK9ZVM2D8RJ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "7DZ2ZNK9ZVM2D8RJ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "7DZ2ZNK9ZVM2D8RJ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15067" - }, - "appliesTo" : [ ] - }, - "7DZ2ZNK9ZVM2D8RJ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "7DZ2ZNK9ZVM2D8RJ.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7DZ2ZNK9ZVM2D8RJ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "7DZ2ZNK9ZVM2D8RJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7DZ2ZNK9ZVM2D8RJ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "7DZ2ZNK9ZVM2D8RJ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7DZ2ZNK9ZVM2D8RJ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "7DZ2ZNK9ZVM2D8RJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7DZ2ZNK9ZVM2D8RJ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "7DZ2ZNK9ZVM2D8RJ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7DZ2ZNK9ZVM2D8RJ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "7DZ2ZNK9ZVM2D8RJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7DZ2ZNK9ZVM2D8RJ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "7DZ2ZNK9ZVM2D8RJ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "36588" - }, - "appliesTo" : [ ] - }, - "7DZ2ZNK9ZVM2D8RJ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "7DZ2ZNK9ZVM2D8RJ.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7DZ2ZNK9ZVM2D8RJ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "7DZ2ZNK9ZVM2D8RJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7DZ2ZNK9ZVM2D8RJ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "7DZ2ZNK9ZVM2D8RJ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17251" - }, - "appliesTo" : [ ] - }, - "7DZ2ZNK9ZVM2D8RJ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "7DZ2ZNK9ZVM2D8RJ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7DZ2ZNK9ZVM2D8RJ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "7DZ2ZNK9ZVM2D8RJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7DZ2ZNK9ZVM2D8RJ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "7DZ2ZNK9ZVM2D8RJ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7DZ2ZNK9ZVM2D8RJ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "7DZ2ZNK9ZVM2D8RJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7DZ2ZNK9ZVM2D8RJ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "7DZ2ZNK9ZVM2D8RJ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7DZ2ZNK9ZVM2D8RJ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "7DZ2ZNK9ZVM2D8RJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7DZ2ZNK9ZVM2D8RJ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "7DZ2ZNK9ZVM2D8RJ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8220" - }, - "appliesTo" : [ ] - }, - "7DZ2ZNK9ZVM2D8RJ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "7DZ2ZNK9ZVM2D8RJ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7DZ2ZNK9ZVM2D8RJ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "7DZ2ZNK9ZVM2D8RJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7DZ2ZNK9ZVM2D8RJ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "7DZ2ZNK9ZVM2D8RJ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7740000000" - }, - "appliesTo" : [ ] - }, - "7DZ2ZNK9ZVM2D8RJ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "7DZ2ZNK9ZVM2D8RJ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16924" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7DZ2ZNK9ZVM2D8RJ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "7DZ2ZNK9ZVM2D8RJ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "7DZ2ZNK9ZVM2D8RJ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "7DZ2ZNK9ZVM2D8RJ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31163" - }, - "appliesTo" : [ ] - }, - "7DZ2ZNK9ZVM2D8RJ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "7DZ2ZNK9ZVM2D8RJ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7DZ2ZNK9ZVM2D8RJ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "7DZ2ZNK9ZVM2D8RJ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "7DZ2ZNK9ZVM2D8RJ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "7DZ2ZNK9ZVM2D8RJ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14759" - }, - "appliesTo" : [ ] - }, - "7DZ2ZNK9ZVM2D8RJ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "7DZ2ZNK9ZVM2D8RJ.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "PHZYKS4DKKZQTHE2" : { - "PHZYKS4DKKZQTHE2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "PHZYKS4DKKZQTHE2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PHZYKS4DKKZQTHE2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "PHZYKS4DKKZQTHE2.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.4050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "PHZYKS4DKKZQTHE2.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "PHZYKS4DKKZQTHE2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PHZYKS4DKKZQTHE2.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "PHZYKS4DKKZQTHE2.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25930" - }, - "appliesTo" : [ ] - }, - "PHZYKS4DKKZQTHE2.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "PHZYKS4DKKZQTHE2.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PHZYKS4DKKZQTHE2.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "PHZYKS4DKKZQTHE2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PHZYKS4DKKZQTHE2.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "PHZYKS4DKKZQTHE2.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.2160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "PHZYKS4DKKZQTHE2.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "PHZYKS4DKKZQTHE2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PHZYKS4DKKZQTHE2.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "PHZYKS4DKKZQTHE2.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "PHZYKS4DKKZQTHE2.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "PHZYKS4DKKZQTHE2.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "50824" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PHZYKS4DKKZQTHE2.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "PHZYKS4DKKZQTHE2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PHZYKS4DKKZQTHE2.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "PHZYKS4DKKZQTHE2.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "110771" - }, - "appliesTo" : [ ] - }, - "PHZYKS4DKKZQTHE2.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "PHZYKS4DKKZQTHE2.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PHZYKS4DKKZQTHE2.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "PHZYKS4DKKZQTHE2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PHZYKS4DKKZQTHE2.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "PHZYKS4DKKZQTHE2.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.0390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "PHZYKS4DKKZQTHE2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "PHZYKS4DKKZQTHE2", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "PHZYKS4DKKZQTHE2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "PHZYKS4DKKZQTHE2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22548" - }, - "appliesTo" : [ ] - }, - "PHZYKS4DKKZQTHE2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "PHZYKS4DKKZQTHE2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PHZYKS4DKKZQTHE2.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "PHZYKS4DKKZQTHE2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PHZYKS4DKKZQTHE2.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "PHZYKS4DKKZQTHE2.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "56516" - }, - "appliesTo" : [ ] - }, - "PHZYKS4DKKZQTHE2.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "PHZYKS4DKKZQTHE2.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PHZYKS4DKKZQTHE2.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "PHZYKS4DKKZQTHE2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PHZYKS4DKKZQTHE2.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "PHZYKS4DKKZQTHE2.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.6450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "PHZYKS4DKKZQTHE2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "PHZYKS4DKKZQTHE2", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "PHZYKS4DKKZQTHE2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "PHZYKS4DKKZQTHE2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "49144" - }, - "appliesTo" : [ ] - }, - "PHZYKS4DKKZQTHE2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "PHZYKS4DKKZQTHE2.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PHZYKS4DKKZQTHE2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "PHZYKS4DKKZQTHE2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "PHZYKS4DKKZQTHE2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "PHZYKS4DKKZQTHE2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "92390" - }, - "appliesTo" : [ ] - }, - "PHZYKS4DKKZQTHE2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "PHZYKS4DKKZQTHE2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PHZYKS4DKKZQTHE2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "PHZYKS4DKKZQTHE2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "PHZYKS4DKKZQTHE2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "PHZYKS4DKKZQTHE2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "44195" - }, - "appliesTo" : [ ] - }, - "PHZYKS4DKKZQTHE2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "PHZYKS4DKKZQTHE2.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "ECM8RSBXMC7F4WAS" : { - "ECM8RSBXMC7F4WAS.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ECM8RSBXMC7F4WAS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ECM8RSBXMC7F4WAS.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ECM8RSBXMC7F4WAS.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2798000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ECM8RSBXMC7F4WAS.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ECM8RSBXMC7F4WAS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ECM8RSBXMC7F4WAS.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ECM8RSBXMC7F4WAS.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9510" - }, - "appliesTo" : [ ] - }, - "ECM8RSBXMC7F4WAS.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ECM8RSBXMC7F4WAS.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0856000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ECM8RSBXMC7F4WAS.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ECM8RSBXMC7F4WAS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ECM8RSBXMC7F4WAS.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ECM8RSBXMC7F4WAS.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8269" - }, - "appliesTo" : [ ] - }, - "ECM8RSBXMC7F4WAS.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ECM8RSBXMC7F4WAS.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ECM8RSBXMC7F4WAS.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ECM8RSBXMC7F4WAS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ECM8RSBXMC7F4WAS.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ECM8RSBXMC7F4WAS.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9824000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ECM8RSBXMC7F4WAS.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ECM8RSBXMC7F4WAS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ECM8RSBXMC7F4WAS.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ECM8RSBXMC7F4WAS.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18639" - }, - "appliesTo" : [ ] - }, - "ECM8RSBXMC7F4WAS.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ECM8RSBXMC7F4WAS.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ECM8RSBXMC7F4WAS.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ECM8RSBXMC7F4WAS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ECM8RSBXMC7F4WAS.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ECM8RSBXMC7F4WAS.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7360000000" - }, - "appliesTo" : [ ] - }, - "ECM8RSBXMC7F4WAS.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ECM8RSBXMC7F4WAS.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19342" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ECM8RSBXMC7F4WAS.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ECM8RSBXMC7F4WAS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ECM8RSBXMC7F4WAS.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ECM8RSBXMC7F4WAS.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5898000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ECM8RSBXMC7F4WAS.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ECM8RSBXMC7F4WAS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ECM8RSBXMC7F4WAS.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ECM8RSBXMC7F4WAS.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37910" - }, - "appliesTo" : [ ] - }, - "ECM8RSBXMC7F4WAS.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ECM8RSBXMC7F4WAS.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ECM8RSBXMC7F4WAS.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ECM8RSBXMC7F4WAS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ECM8RSBXMC7F4WAS.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ECM8RSBXMC7F4WAS.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31620" - }, - "appliesTo" : [ ] - }, - "ECM8RSBXMC7F4WAS.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ECM8RSBXMC7F4WAS.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ECM8RSBXMC7F4WAS.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "ECM8RSBXMC7F4WAS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ECM8RSBXMC7F4WAS.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "ECM8RSBXMC7F4WAS.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3824000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ECM8RSBXMC7F4WAS.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ECM8RSBXMC7F4WAS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ECM8RSBXMC7F4WAS.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ECM8RSBXMC7F4WAS.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16208" - }, - "appliesTo" : [ ] - }, - "ECM8RSBXMC7F4WAS.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ECM8RSBXMC7F4WAS.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ECM8RSBXMC7F4WAS.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ECM8RSBXMC7F4WAS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ECM8RSBXMC7F4WAS.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ECM8RSBXMC7F4WAS.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6400000000" - }, - "appliesTo" : [ ] - }, - "ECM8RSBXMC7F4WAS.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ECM8RSBXMC7F4WAS.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16819" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "6A5H8V2W7HVVXSB7" : { - "6A5H8V2W7HVVXSB7.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6A5H8V2W7HVVXSB7", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "6A5H8V2W7HVVXSB7.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6A5H8V2W7HVVXSB7.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "64816" - }, - "appliesTo" : [ ] - }, - "6A5H8V2W7HVVXSB7.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6A5H8V2W7HVVXSB7.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6A5H8V2W7HVVXSB7.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6A5H8V2W7HVVXSB7", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "6A5H8V2W7HVVXSB7.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6A5H8V2W7HVVXSB7.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "6A5H8V2W7HVVXSB7.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6A5H8V2W7HVVXSB7.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "68301" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6A5H8V2W7HVVXSB7.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6A5H8V2W7HVVXSB7", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "6A5H8V2W7HVVXSB7.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6A5H8V2W7HVVXSB7.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "121854" - }, - "appliesTo" : [ ] - }, - "6A5H8V2W7HVVXSB7.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6A5H8V2W7HVVXSB7.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6A5H8V2W7HVVXSB7.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6A5H8V2W7HVVXSB7", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "6A5H8V2W7HVVXSB7.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6A5H8V2W7HVVXSB7.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.3540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6A5H8V2W7HVVXSB7.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "6A5H8V2W7HVVXSB7", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "6A5H8V2W7HVVXSB7.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "6A5H8V2W7HVVXSB7.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.3270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6A5H8V2W7HVVXSB7.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6A5H8V2W7HVVXSB7", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "6A5H8V2W7HVVXSB7.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6A5H8V2W7HVVXSB7.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9780000000" - }, - "appliesTo" : [ ] - }, - "6A5H8V2W7HVVXSB7.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6A5H8V2W7HVVXSB7.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34847" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "9HUMJZVBNYX2RZS7" : { - "9HUMJZVBNYX2RZS7.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "9HUMJZVBNYX2RZS7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9HUMJZVBNYX2RZS7.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "9HUMJZVBNYX2RZS7.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9HUMJZVBNYX2RZS7.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "9HUMJZVBNYX2RZS7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9HUMJZVBNYX2RZS7.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "9HUMJZVBNYX2RZS7.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9244" - }, - "appliesTo" : [ ] - }, - "9HUMJZVBNYX2RZS7.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "9HUMJZVBNYX2RZS7.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9HUMJZVBNYX2RZS7.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "9HUMJZVBNYX2RZS7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9HUMJZVBNYX2RZS7.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "9HUMJZVBNYX2RZS7.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9HUMJZVBNYX2RZS7.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "9HUMJZVBNYX2RZS7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9HUMJZVBNYX2RZS7.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "9HUMJZVBNYX2RZS7.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13491" - }, - "appliesTo" : [ ] - }, - "9HUMJZVBNYX2RZS7.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "9HUMJZVBNYX2RZS7.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9HUMJZVBNYX2RZS7.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "9HUMJZVBNYX2RZS7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9HUMJZVBNYX2RZS7.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "9HUMJZVBNYX2RZS7.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7176" - }, - "appliesTo" : [ ] - }, - "9HUMJZVBNYX2RZS7.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "9HUMJZVBNYX2RZS7.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9HUMJZVBNYX2RZS7.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "9HUMJZVBNYX2RZS7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9HUMJZVBNYX2RZS7.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "9HUMJZVBNYX2RZS7.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4717" - }, - "appliesTo" : [ ] - }, - "9HUMJZVBNYX2RZS7.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "9HUMJZVBNYX2RZS7.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "7GZHH8G9CD4XD8TM" : { - "7GZHH8G9CD4XD8TM.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "7GZHH8G9CD4XD8TM", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7GZHH8G9CD4XD8TM.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "7GZHH8G9CD4XD8TM.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2430000000" - }, - "appliesTo" : [ ] - }, - "7GZHH8G9CD4XD8TM.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "7GZHH8G9CD4XD8TM.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21772" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7GZHH8G9CD4XD8TM.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "7GZHH8G9CD4XD8TM", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7GZHH8G9CD4XD8TM.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "7GZHH8G9CD4XD8TM.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7GZHH8G9CD4XD8TM.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "7GZHH8G9CD4XD8TM", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7GZHH8G9CD4XD8TM.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "7GZHH8G9CD4XD8TM.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25407" - }, - "appliesTo" : [ ] - }, - "7GZHH8G9CD4XD8TM.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "7GZHH8G9CD4XD8TM.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7GZHH8G9CD4XD8TM.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "7GZHH8G9CD4XD8TM", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7GZHH8G9CD4XD8TM.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "7GZHH8G9CD4XD8TM.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "7GZHH8G9CD4XD8TM.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "7GZHH8G9CD4XD8TM.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "51172" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7GZHH8G9CD4XD8TM.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "7GZHH8G9CD4XD8TM", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7GZHH8G9CD4XD8TM.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "7GZHH8G9CD4XD8TM.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7GZHH8G9CD4XD8TM.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "7GZHH8G9CD4XD8TM", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7GZHH8G9CD4XD8TM.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "7GZHH8G9CD4XD8TM.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9197" - }, - "appliesTo" : [ ] - }, - "7GZHH8G9CD4XD8TM.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "7GZHH8G9CD4XD8TM.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7GZHH8G9CD4XD8TM.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "7GZHH8G9CD4XD8TM", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7GZHH8G9CD4XD8TM.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "7GZHH8G9CD4XD8TM.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22534" - }, - "appliesTo" : [ ] - }, - "7GZHH8G9CD4XD8TM.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "7GZHH8G9CD4XD8TM.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7GZHH8G9CD4XD8TM.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "7GZHH8G9CD4XD8TM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7GZHH8G9CD4XD8TM.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "7GZHH8G9CD4XD8TM.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24601" - }, - "appliesTo" : [ ] - }, - "7GZHH8G9CD4XD8TM.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "7GZHH8G9CD4XD8TM.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7GZHH8G9CD4XD8TM.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "7GZHH8G9CD4XD8TM", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7GZHH8G9CD4XD8TM.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "7GZHH8G9CD4XD8TM.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "63863" - }, - "appliesTo" : [ ] - }, - "7GZHH8G9CD4XD8TM.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "7GZHH8G9CD4XD8TM.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7GZHH8G9CD4XD8TM.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "7GZHH8G9CD4XD8TM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7GZHH8G9CD4XD8TM.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "7GZHH8G9CD4XD8TM.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7GZHH8G9CD4XD8TM.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "7GZHH8G9CD4XD8TM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7GZHH8G9CD4XD8TM.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "7GZHH8G9CD4XD8TM.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4210000000" - }, - "appliesTo" : [ ] - }, - "7GZHH8G9CD4XD8TM.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "7GZHH8G9CD4XD8TM.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12447" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "M3EYMWB8284E38CQ" : { - "M3EYMWB8284E38CQ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "M3EYMWB8284E38CQ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M3EYMWB8284E38CQ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "M3EYMWB8284E38CQ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "66107" - }, - "appliesTo" : [ ] - }, - "M3EYMWB8284E38CQ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "M3EYMWB8284E38CQ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "M3EYMWB8284E38CQ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "M3EYMWB8284E38CQ", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "M3EYMWB8284E38CQ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "M3EYMWB8284E38CQ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.3690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "M3EYMWB8284E38CQ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "M3EYMWB8284E38CQ", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "M3EYMWB8284E38CQ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "M3EYMWB8284E38CQ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "131931" - }, - "appliesTo" : [ ] - }, - "M3EYMWB8284E38CQ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "M3EYMWB8284E38CQ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "M3EYMWB8284E38CQ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "M3EYMWB8284E38CQ", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "M3EYMWB8284E38CQ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "M3EYMWB8284E38CQ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.1790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "M3EYMWB8284E38CQ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "M3EYMWB8284E38CQ", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "M3EYMWB8284E38CQ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "M3EYMWB8284E38CQ.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "M3EYMWB8284E38CQ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "M3EYMWB8284E38CQ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "391617" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "M3EYMWB8284E38CQ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "M3EYMWB8284E38CQ", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "M3EYMWB8284E38CQ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "M3EYMWB8284E38CQ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "383688" - }, - "appliesTo" : [ ] - }, - "M3EYMWB8284E38CQ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "M3EYMWB8284E38CQ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "M3EYMWB8284E38CQ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "M3EYMWB8284E38CQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M3EYMWB8284E38CQ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "M3EYMWB8284E38CQ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "134016" - }, - "appliesTo" : [ ] - }, - "M3EYMWB8284E38CQ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "M3EYMWB8284E38CQ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "M3EYMWB8284E38CQ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "M3EYMWB8284E38CQ", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "M3EYMWB8284E38CQ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "M3EYMWB8284E38CQ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4650000000" - }, - "appliesTo" : [ ] - }, - "M3EYMWB8284E38CQ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "M3EYMWB8284E38CQ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "196192" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "M3EYMWB8284E38CQ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "M3EYMWB8284E38CQ", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "M3EYMWB8284E38CQ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "M3EYMWB8284E38CQ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "192790" - }, - "appliesTo" : [ ] - }, - "M3EYMWB8284E38CQ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "M3EYMWB8284E38CQ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "M3EYMWB8284E38CQ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "M3EYMWB8284E38CQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M3EYMWB8284E38CQ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "M3EYMWB8284E38CQ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.4290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "M3EYMWB8284E38CQ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "M3EYMWB8284E38CQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M3EYMWB8284E38CQ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "M3EYMWB8284E38CQ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "67171" - }, - "appliesTo" : [ ] - }, - "M3EYMWB8284E38CQ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "M3EYMWB8284E38CQ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.6680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "9HPUN6CF83QX5EC3" : { - "9HPUN6CF83QX5EC3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "9HPUN6CF83QX5EC3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9HPUN6CF83QX5EC3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "9HPUN6CF83QX5EC3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2708" - }, - "appliesTo" : [ ] - }, - "9HPUN6CF83QX5EC3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "9HPUN6CF83QX5EC3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9HPUN6CF83QX5EC3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "9HPUN6CF83QX5EC3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9HPUN6CF83QX5EC3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "9HPUN6CF83QX5EC3.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9HPUN6CF83QX5EC3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "9HPUN6CF83QX5EC3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9HPUN6CF83QX5EC3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "9HPUN6CF83QX5EC3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "9HPUN6CF83QX5EC3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "9HPUN6CF83QX5EC3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16463" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9HPUN6CF83QX5EC3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "9HPUN6CF83QX5EC3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9HPUN6CF83QX5EC3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "9HPUN6CF83QX5EC3.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "9HPUN6CF83QX5EC3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "9HPUN6CF83QX5EC3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6646" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9HPUN6CF83QX5EC3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "9HPUN6CF83QX5EC3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9HPUN6CF83QX5EC3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "9HPUN6CF83QX5EC3.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4000000000" - }, - "appliesTo" : [ ] - }, - "9HPUN6CF83QX5EC3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "9HPUN6CF83QX5EC3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7002" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "96GP335H4PPFX6P2" : { - "96GP335H4PPFX6P2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "96GP335H4PPFX6P2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "96GP335H4PPFX6P2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "96GP335H4PPFX6P2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11420" - }, - "appliesTo" : [ ] - }, - "96GP335H4PPFX6P2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "96GP335H4PPFX6P2.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "96GP335H4PPFX6P2.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "96GP335H4PPFX6P2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "96GP335H4PPFX6P2.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "96GP335H4PPFX6P2.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "96GP335H4PPFX6P2.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "96GP335H4PPFX6P2.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32533" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "96GP335H4PPFX6P2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "96GP335H4PPFX6P2", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "96GP335H4PPFX6P2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "96GP335H4PPFX6P2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "96GP335H4PPFX6P2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "96GP335H4PPFX6P2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21431" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "96GP335H4PPFX6P2.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "96GP335H4PPFX6P2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "96GP335H4PPFX6P2.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "96GP335H4PPFX6P2.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "96GP335H4PPFX6P2.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "96GP335H4PPFX6P2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "96GP335H4PPFX6P2.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "96GP335H4PPFX6P2.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8070000000" - }, - "appliesTo" : [ ] - }, - "96GP335H4PPFX6P2.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "96GP335H4PPFX6P2.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7127" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "96GP335H4PPFX6P2.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "96GP335H4PPFX6P2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "96GP335H4PPFX6P2.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "96GP335H4PPFX6P2.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "96GP335H4PPFX6P2.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "96GP335H4PPFX6P2", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "96GP335H4PPFX6P2.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "96GP335H4PPFX6P2.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16617" - }, - "appliesTo" : [ ] - }, - "96GP335H4PPFX6P2.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "96GP335H4PPFX6P2.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "96GP335H4PPFX6P2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "96GP335H4PPFX6P2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "96GP335H4PPFX6P2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "96GP335H4PPFX6P2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12094" - }, - "appliesTo" : [ ] - }, - "96GP335H4PPFX6P2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "96GP335H4PPFX6P2.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "96GP335H4PPFX6P2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "96GP335H4PPFX6P2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "96GP335H4PPFX6P2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "96GP335H4PPFX6P2.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "96GP335H4PPFX6P2.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "96GP335H4PPFX6P2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "96GP335H4PPFX6P2.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "96GP335H4PPFX6P2.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13914" - }, - "appliesTo" : [ ] - }, - "96GP335H4PPFX6P2.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "96GP335H4PPFX6P2.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "96GP335H4PPFX6P2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "96GP335H4PPFX6P2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "96GP335H4PPFX6P2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "96GP335H4PPFX6P2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6200" - }, - "appliesTo" : [ ] - }, - "96GP335H4PPFX6P2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "96GP335H4PPFX6P2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "N4AWRPYC2F4YT3WW" : { - "N4AWRPYC2F4YT3WW.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "N4AWRPYC2F4YT3WW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "N4AWRPYC2F4YT3WW.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "N4AWRPYC2F4YT3WW.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10880" - }, - "appliesTo" : [ ] - }, - "N4AWRPYC2F4YT3WW.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "N4AWRPYC2F4YT3WW.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "N4AWRPYC2F4YT3WW.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "N4AWRPYC2F4YT3WW", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "N4AWRPYC2F4YT3WW.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "N4AWRPYC2F4YT3WW.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25543" - }, - "appliesTo" : [ ] - }, - "N4AWRPYC2F4YT3WW.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "N4AWRPYC2F4YT3WW.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "N4AWRPYC2F4YT3WW.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "N4AWRPYC2F4YT3WW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "N4AWRPYC2F4YT3WW.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "N4AWRPYC2F4YT3WW.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7500000000" - }, - "appliesTo" : [ ] - }, - "N4AWRPYC2F4YT3WW.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "N4AWRPYC2F4YT3WW.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7220" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "N4AWRPYC2F4YT3WW.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "N4AWRPYC2F4YT3WW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "N4AWRPYC2F4YT3WW.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "N4AWRPYC2F4YT3WW.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13514" - }, - "appliesTo" : [ ] - }, - "N4AWRPYC2F4YT3WW.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "N4AWRPYC2F4YT3WW.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "N4AWRPYC2F4YT3WW.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "N4AWRPYC2F4YT3WW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "N4AWRPYC2F4YT3WW.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "N4AWRPYC2F4YT3WW.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "YP5VZWVE6N228WH8" : { - "YP5VZWVE6N228WH8.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YP5VZWVE6N228WH8", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "YP5VZWVE6N228WH8.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YP5VZWVE6N228WH8.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YP5VZWVE6N228WH8.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YP5VZWVE6N228WH8.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "253334" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YP5VZWVE6N228WH8.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YP5VZWVE6N228WH8", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "YP5VZWVE6N228WH8.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YP5VZWVE6N228WH8.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "127353" - }, - "appliesTo" : [ ] - }, - "YP5VZWVE6N228WH8.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YP5VZWVE6N228WH8.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.5380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YP5VZWVE6N228WH8.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YP5VZWVE6N228WH8", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "YP5VZWVE6N228WH8.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YP5VZWVE6N228WH8.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "29.4670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YP5VZWVE6N228WH8.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "YP5VZWVE6N228WH8", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "YP5VZWVE6N228WH8.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "YP5VZWVE6N228WH8.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "25.5360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YP5VZWVE6N228WH8.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YP5VZWVE6N228WH8", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "YP5VZWVE6N228WH8.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YP5VZWVE6N228WH8.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YP5VZWVE6N228WH8.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YP5VZWVE6N228WH8.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "656471" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YP5VZWVE6N228WH8.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "YP5VZWVE6N228WH8", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "YP5VZWVE6N228WH8.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "YP5VZWVE6N228WH8.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "26.1790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YP5VZWVE6N228WH8.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "YP5VZWVE6N228WH8", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "YP5VZWVE6N228WH8.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "YP5VZWVE6N228WH8.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "339189" - }, - "appliesTo" : [ ] - }, - "YP5VZWVE6N228WH8.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "YP5VZWVE6N228WH8.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.9070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YP5VZWVE6N228WH8.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "YP5VZWVE6N228WH8", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "YP5VZWVE6N228WH8.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "YP5VZWVE6N228WH8.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "675978" - }, - "appliesTo" : [ ] - }, - "YP5VZWVE6N228WH8.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "YP5VZWVE6N228WH8.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YP5VZWVE6N228WH8.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YP5VZWVE6N228WH8", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "YP5VZWVE6N228WH8.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YP5VZWVE6N228WH8.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "331365" - }, - "appliesTo" : [ ] - }, - "YP5VZWVE6N228WH8.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YP5VZWVE6N228WH8.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.6090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YP5VZWVE6N228WH8.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "YP5VZWVE6N228WH8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YP5VZWVE6N228WH8.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "YP5VZWVE6N228WH8.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "263414" - }, - "appliesTo" : [ ] - }, - "YP5VZWVE6N228WH8.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "YP5VZWVE6N228WH8.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YP5VZWVE6N228WH8.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "YP5VZWVE6N228WH8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YP5VZWVE6N228WH8.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "YP5VZWVE6N228WH8.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "132496" - }, - "appliesTo" : [ ] - }, - "YP5VZWVE6N228WH8.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "YP5VZWVE6N228WH8.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.1250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YP5VZWVE6N228WH8.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "YP5VZWVE6N228WH8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YP5VZWVE6N228WH8.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "YP5VZWVE6N228WH8.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "30.7000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "CNM382ND78XDQQAK" : { - "CNM382ND78XDQQAK.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "CNM382ND78XDQQAK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CNM382ND78XDQQAK.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "CNM382ND78XDQQAK.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14619" - }, - "appliesTo" : [ ] - }, - "CNM382ND78XDQQAK.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "CNM382ND78XDQQAK.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CNM382ND78XDQQAK.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "CNM382ND78XDQQAK", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "CNM382ND78XDQQAK.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "CNM382ND78XDQQAK.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CNM382ND78XDQQAK.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "CNM382ND78XDQQAK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CNM382ND78XDQQAK.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "CNM382ND78XDQQAK.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CNM382ND78XDQQAK.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "CNM382ND78XDQQAK", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "CNM382ND78XDQQAK.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "CNM382ND78XDQQAK.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "67314" - }, - "appliesTo" : [ ] - }, - "CNM382ND78XDQQAK.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "CNM382ND78XDQQAK.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CNM382ND78XDQQAK.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "CNM382ND78XDQQAK", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "CNM382ND78XDQQAK.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "CNM382ND78XDQQAK.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2420000000" - }, - "appliesTo" : [ ] - }, - "CNM382ND78XDQQAK.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "CNM382ND78XDQQAK.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14560" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CNM382ND78XDQQAK.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "CNM382ND78XDQQAK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CNM382ND78XDQQAK.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "CNM382ND78XDQQAK.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28654" - }, - "appliesTo" : [ ] - }, - "CNM382ND78XDQQAK.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "CNM382ND78XDQQAK.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CNM382ND78XDQQAK.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "CNM382ND78XDQQAK", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "CNM382ND78XDQQAK.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "CNM382ND78XDQQAK.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CNM382ND78XDQQAK.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "CNM382ND78XDQQAK", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "CNM382ND78XDQQAK.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "CNM382ND78XDQQAK.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21920" - }, - "appliesTo" : [ ] - }, - "CNM382ND78XDQQAK.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "CNM382ND78XDQQAK.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CNM382ND78XDQQAK.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "CNM382ND78XDQQAK", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "CNM382ND78XDQQAK.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "CNM382ND78XDQQAK.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "44418" - }, - "appliesTo" : [ ] - }, - "CNM382ND78XDQQAK.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "CNM382ND78XDQQAK.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CNM382ND78XDQQAK.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "CNM382ND78XDQQAK", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "CNM382ND78XDQQAK.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "CNM382ND78XDQQAK.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24931" - }, - "appliesTo" : [ ] - }, - "CNM382ND78XDQQAK.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "CNM382ND78XDQQAK.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CNM382ND78XDQQAK.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "CNM382ND78XDQQAK", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "CNM382ND78XDQQAK.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "CNM382ND78XDQQAK.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39312" - }, - "appliesTo" : [ ] - }, - "CNM382ND78XDQQAK.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "CNM382ND78XDQQAK.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "VV5A7BNXRSZQJ6MG" : { - "VV5A7BNXRSZQJ6MG.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "VV5A7BNXRSZQJ6MG", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "VV5A7BNXRSZQJ6MG.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "VV5A7BNXRSZQJ6MG.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "VV5A7BNXRSZQJ6MG.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "VV5A7BNXRSZQJ6MG.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1491" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VV5A7BNXRSZQJ6MG.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "VV5A7BNXRSZQJ6MG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VV5A7BNXRSZQJ6MG.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "VV5A7BNXRSZQJ6MG.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "806" - }, - "appliesTo" : [ ] - }, - "VV5A7BNXRSZQJ6MG.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "VV5A7BNXRSZQJ6MG.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VV5A7BNXRSZQJ6MG.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "VV5A7BNXRSZQJ6MG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VV5A7BNXRSZQJ6MG.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "VV5A7BNXRSZQJ6MG.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1886000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VV5A7BNXRSZQJ6MG.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "VV5A7BNXRSZQJ6MG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VV5A7BNXRSZQJ6MG.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "VV5A7BNXRSZQJ6MG.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2010" - }, - "appliesTo" : [ ] - }, - "VV5A7BNXRSZQJ6MG.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "VV5A7BNXRSZQJ6MG.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0765000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VV5A7BNXRSZQJ6MG.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "VV5A7BNXRSZQJ6MG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VV5A7BNXRSZQJ6MG.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "VV5A7BNXRSZQJ6MG.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3987" - }, - "appliesTo" : [ ] - }, - "VV5A7BNXRSZQJ6MG.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "VV5A7BNXRSZQJ6MG.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VV5A7BNXRSZQJ6MG.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "VV5A7BNXRSZQJ6MG", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "VV5A7BNXRSZQJ6MG.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "VV5A7BNXRSZQJ6MG.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1908" - }, - "appliesTo" : [ ] - }, - "VV5A7BNXRSZQJ6MG.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "VV5A7BNXRSZQJ6MG.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VV5A7BNXRSZQJ6MG.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "VV5A7BNXRSZQJ6MG", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "VV5A7BNXRSZQJ6MG.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "VV5A7BNXRSZQJ6MG.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3732" - }, - "appliesTo" : [ ] - }, - "VV5A7BNXRSZQJ6MG.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "VV5A7BNXRSZQJ6MG.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VV5A7BNXRSZQJ6MG.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "VV5A7BNXRSZQJ6MG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VV5A7BNXRSZQJ6MG.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "VV5A7BNXRSZQJ6MG.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1492000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VV5A7BNXRSZQJ6MG.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "VV5A7BNXRSZQJ6MG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VV5A7BNXRSZQJ6MG.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "VV5A7BNXRSZQJ6MG.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1578000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VV5A7BNXRSZQJ6MG.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "VV5A7BNXRSZQJ6MG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VV5A7BNXRSZQJ6MG.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "VV5A7BNXRSZQJ6MG.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1596" - }, - "appliesTo" : [ ] - }, - "VV5A7BNXRSZQJ6MG.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "VV5A7BNXRSZQJ6MG.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VV5A7BNXRSZQJ6MG.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "VV5A7BNXRSZQJ6MG", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "VV5A7BNXRSZQJ6MG.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "VV5A7BNXRSZQJ6MG.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0860000000" - }, - "appliesTo" : [ ] - }, - "VV5A7BNXRSZQJ6MG.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "VV5A7BNXRSZQJ6MG.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "752" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VV5A7BNXRSZQJ6MG.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "VV5A7BNXRSZQJ6MG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VV5A7BNXRSZQJ6MG.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "VV5A7BNXRSZQJ6MG.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "XERQGANK8Y3TXRRY" : { - "XERQGANK8Y3TXRRY.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XERQGANK8Y3TXRRY", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "XERQGANK8Y3TXRRY.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XERQGANK8Y3TXRRY.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "298" - }, - "appliesTo" : [ ] - }, - "XERQGANK8Y3TXRRY.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XERQGANK8Y3TXRRY.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0176000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XERQGANK8Y3TXRRY.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XERQGANK8Y3TXRRY", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "XERQGANK8Y3TXRRY.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XERQGANK8Y3TXRRY.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XERQGANK8Y3TXRRY.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "XERQGANK8Y3TXRRY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XERQGANK8Y3TXRRY.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "XERQGANK8Y3TXRRY.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "337" - }, - "appliesTo" : [ ] - }, - "XERQGANK8Y3TXRRY.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "XERQGANK8Y3TXRRY.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XERQGANK8Y3TXRRY.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "XERQGANK8Y3TXRRY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XERQGANK8Y3TXRRY.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "XERQGANK8Y3TXRRY.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0395000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XERQGANK8Y3TXRRY.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "XERQGANK8Y3TXRRY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XERQGANK8Y3TXRRY.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "XERQGANK8Y3TXRRY.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "157" - }, - "appliesTo" : [ ] - }, - "XERQGANK8Y3TXRRY.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "XERQGANK8Y3TXRRY.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0209000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XERQGANK8Y3TXRRY.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "XERQGANK8Y3TXRRY", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "XERQGANK8Y3TXRRY.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "XERQGANK8Y3TXRRY.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "XERQGANK8Y3TXRRY.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "XERQGANK8Y3TXRRY.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "793" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XERQGANK8Y3TXRRY.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "XERQGANK8Y3TXRRY", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "XERQGANK8Y3TXRRY.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "XERQGANK8Y3TXRRY.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XERQGANK8Y3TXRRY.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XERQGANK8Y3TXRRY", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "XERQGANK8Y3TXRRY.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XERQGANK8Y3TXRRY.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "148" - }, - "appliesTo" : [ ] - }, - "XERQGANK8Y3TXRRY.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XERQGANK8Y3TXRRY.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0198000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XERQGANK8Y3TXRRY.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "XERQGANK8Y3TXRRY", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "XERQGANK8Y3TXRRY.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "XERQGANK8Y3TXRRY.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0194000000" - }, - "appliesTo" : [ ] - }, - "XERQGANK8Y3TXRRY.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "XERQGANK8Y3TXRRY.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "257" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XERQGANK8Y3TXRRY.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "XERQGANK8Y3TXRRY", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "XERQGANK8Y3TXRRY.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "XERQGANK8Y3TXRRY.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XERQGANK8Y3TXRRY.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XERQGANK8Y3TXRRY", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "XERQGANK8Y3TXRRY.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XERQGANK8Y3TXRRY.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "320" - }, - "appliesTo" : [ ] - }, - "XERQGANK8Y3TXRRY.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XERQGANK8Y3TXRRY.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XERQGANK8Y3TXRRY.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XERQGANK8Y3TXRRY", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "XERQGANK8Y3TXRRY.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XERQGANK8Y3TXRRY.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "747" - }, - "appliesTo" : [ ] - }, - "XERQGANK8Y3TXRRY.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XERQGANK8Y3TXRRY.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "9SSB4RSRXFF8HK42" : { - "9SSB4RSRXFF8HK42.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "9SSB4RSRXFF8HK42", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9SSB4RSRXFF8HK42.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "9SSB4RSRXFF8HK42.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4616" - }, - "appliesTo" : [ ] - }, - "9SSB4RSRXFF8HK42.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "9SSB4RSRXFF8HK42.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9SSB4RSRXFF8HK42.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "9SSB4RSRXFF8HK42", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9SSB4RSRXFF8HK42.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "9SSB4RSRXFF8HK42.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2723" - }, - "appliesTo" : [ ] - }, - "9SSB4RSRXFF8HK42.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "9SSB4RSRXFF8HK42.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9SSB4RSRXFF8HK42.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "9SSB4RSRXFF8HK42", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9SSB4RSRXFF8HK42.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "9SSB4RSRXFF8HK42.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9SSB4RSRXFF8HK42.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "9SSB4RSRXFF8HK42", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "9SSB4RSRXFF8HK42.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "9SSB4RSRXFF8HK42.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7394" - }, - "appliesTo" : [ ] - }, - "9SSB4RSRXFF8HK42.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "9SSB4RSRXFF8HK42.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9SSB4RSRXFF8HK42.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "9SSB4RSRXFF8HK42", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9SSB4RSRXFF8HK42.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "9SSB4RSRXFF8HK42.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4415" - }, - "appliesTo" : [ ] - }, - "9SSB4RSRXFF8HK42.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "9SSB4RSRXFF8HK42.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9SSB4RSRXFF8HK42.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "9SSB4RSRXFF8HK42", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "9SSB4RSRXFF8HK42.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "9SSB4RSRXFF8HK42.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9SSB4RSRXFF8HK42.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "9SSB4RSRXFF8HK42", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9SSB4RSRXFF8HK42.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "9SSB4RSRXFF8HK42.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "9SSB4RSRXFF8HK42.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "9SSB4RSRXFF8HK42.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5282" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9SSB4RSRXFF8HK42.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "9SSB4RSRXFF8HK42", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9SSB4RSRXFF8HK42.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "9SSB4RSRXFF8HK42.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8868" - }, - "appliesTo" : [ ] - }, - "9SSB4RSRXFF8HK42.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "9SSB4RSRXFF8HK42.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9SSB4RSRXFF8HK42.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "9SSB4RSRXFF8HK42", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "9SSB4RSRXFF8HK42.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "9SSB4RSRXFF8HK42.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12348" - }, - "appliesTo" : [ ] - }, - "9SSB4RSRXFF8HK42.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "9SSB4RSRXFF8HK42.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9SSB4RSRXFF8HK42.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "9SSB4RSRXFF8HK42", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9SSB4RSRXFF8HK42.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "9SSB4RSRXFF8HK42.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2784" - }, - "appliesTo" : [ ] - }, - "9SSB4RSRXFF8HK42.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "9SSB4RSRXFF8HK42.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9SSB4RSRXFF8HK42.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "9SSB4RSRXFF8HK42", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9SSB4RSRXFF8HK42.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "9SSB4RSRXFF8HK42.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "9HGFJGGDXTRDQUED" : { - "9HGFJGGDXTRDQUED.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "9HGFJGGDXTRDQUED", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9HGFJGGDXTRDQUED.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "9HGFJGGDXTRDQUED.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6794" - }, - "appliesTo" : [ ] - }, - "9HGFJGGDXTRDQUED.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "9HGFJGGDXTRDQUED.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9HGFJGGDXTRDQUED.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "9HGFJGGDXTRDQUED", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9HGFJGGDXTRDQUED.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "9HGFJGGDXTRDQUED.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14758" - }, - "appliesTo" : [ ] - }, - "9HGFJGGDXTRDQUED.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "9HGFJGGDXTRDQUED.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9HGFJGGDXTRDQUED.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "9HGFJGGDXTRDQUED", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "9HGFJGGDXTRDQUED.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "9HGFJGGDXTRDQUED.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9HGFJGGDXTRDQUED.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "9HGFJGGDXTRDQUED", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "9HGFJGGDXTRDQUED.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "9HGFJGGDXTRDQUED.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6398" - }, - "appliesTo" : [ ] - }, - "9HGFJGGDXTRDQUED.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "9HGFJGGDXTRDQUED.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9HGFJGGDXTRDQUED.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "9HGFJGGDXTRDQUED", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9HGFJGGDXTRDQUED.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "9HGFJGGDXTRDQUED.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4195" - }, - "appliesTo" : [ ] - }, - "9HGFJGGDXTRDQUED.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "9HGFJGGDXTRDQUED.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9HGFJGGDXTRDQUED.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "9HGFJGGDXTRDQUED", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "9HGFJGGDXTRDQUED.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "9HGFJGGDXTRDQUED.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7164" - }, - "appliesTo" : [ ] - }, - "9HGFJGGDXTRDQUED.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "9HGFJGGDXTRDQUED.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9HGFJGGDXTRDQUED.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "9HGFJGGDXTRDQUED", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9HGFJGGDXTRDQUED.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "9HGFJGGDXTRDQUED.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9HGFJGGDXTRDQUED.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "9HGFJGGDXTRDQUED", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9HGFJGGDXTRDQUED.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "9HGFJGGDXTRDQUED.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3434" - }, - "appliesTo" : [ ] - }, - "9HGFJGGDXTRDQUED.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "9HGFJGGDXTRDQUED.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9HGFJGGDXTRDQUED.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "9HGFJGGDXTRDQUED", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "9HGFJGGDXTRDQUED.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "9HGFJGGDXTRDQUED.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18257" - }, - "appliesTo" : [ ] - }, - "9HGFJGGDXTRDQUED.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "9HGFJGGDXTRDQUED.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9HGFJGGDXTRDQUED.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "9HGFJGGDXTRDQUED", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "9HGFJGGDXTRDQUED.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "9HGFJGGDXTRDQUED.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2573" - }, - "appliesTo" : [ ] - }, - "9HGFJGGDXTRDQUED.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "9HGFJGGDXTRDQUED.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9HGFJGGDXTRDQUED.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "9HGFJGGDXTRDQUED", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "9HGFJGGDXTRDQUED.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "9HGFJGGDXTRDQUED.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "TTPFUQFE3Y5ZHJQU" : { - "TTPFUQFE3Y5ZHJQU.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "TTPFUQFE3Y5ZHJQU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TTPFUQFE3Y5ZHJQU.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "TTPFUQFE3Y5ZHJQU.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24952" - }, - "appliesTo" : [ ] - }, - "TTPFUQFE3Y5ZHJQU.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "TTPFUQFE3Y5ZHJQU.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TTPFUQFE3Y5ZHJQU.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "TTPFUQFE3Y5ZHJQU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TTPFUQFE3Y5ZHJQU.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "TTPFUQFE3Y5ZHJQU.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TTPFUQFE3Y5ZHJQU.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "TTPFUQFE3Y5ZHJQU.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "49604" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TTPFUQFE3Y5ZHJQU.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "TTPFUQFE3Y5ZHJQU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TTPFUQFE3Y5ZHJQU.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "TTPFUQFE3Y5ZHJQU.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TTPFUQFE3Y5ZHJQU.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TTPFUQFE3Y5ZHJQU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TTPFUQFE3Y5ZHJQU.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TTPFUQFE3Y5ZHJQU.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47164" - }, - "appliesTo" : [ ] - }, - "TTPFUQFE3Y5ZHJQU.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TTPFUQFE3Y5ZHJQU.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TTPFUQFE3Y5ZHJQU.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "TTPFUQFE3Y5ZHJQU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TTPFUQFE3Y5ZHJQU.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "TTPFUQFE3Y5ZHJQU.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TTPFUQFE3Y5ZHJQU.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TTPFUQFE3Y5ZHJQU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TTPFUQFE3Y5ZHJQU.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TTPFUQFE3Y5ZHJQU.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20037" - }, - "appliesTo" : [ ] - }, - "TTPFUQFE3Y5ZHJQU.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TTPFUQFE3Y5ZHJQU.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TTPFUQFE3Y5ZHJQU.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TTPFUQFE3Y5ZHJQU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TTPFUQFE3Y5ZHJQU.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TTPFUQFE3Y5ZHJQU.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23974" - }, - "appliesTo" : [ ] - }, - "TTPFUQFE3Y5ZHJQU.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TTPFUQFE3Y5ZHJQU.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TTPFUQFE3Y5ZHJQU.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "TTPFUQFE3Y5ZHJQU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TTPFUQFE3Y5ZHJQU.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "TTPFUQFE3Y5ZHJQU.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TTPFUQFE3Y5ZHJQU.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "TTPFUQFE3Y5ZHJQU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TTPFUQFE3Y5ZHJQU.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "TTPFUQFE3Y5ZHJQU.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2270000000" - }, - "appliesTo" : [ ] - }, - "TTPFUQFE3Y5ZHJQU.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "TTPFUQFE3Y5ZHJQU.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10748" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TTPFUQFE3Y5ZHJQU.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "TTPFUQFE3Y5ZHJQU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TTPFUQFE3Y5ZHJQU.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "TTPFUQFE3Y5ZHJQU.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21298" - }, - "appliesTo" : [ ] - }, - "TTPFUQFE3Y5ZHJQU.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "TTPFUQFE3Y5ZHJQU.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TTPFUQFE3Y5ZHJQU.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TTPFUQFE3Y5ZHJQU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TTPFUQFE3Y5ZHJQU.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TTPFUQFE3Y5ZHJQU.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10104" - }, - "appliesTo" : [ ] - }, - "TTPFUQFE3Y5ZHJQU.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TTPFUQFE3Y5ZHJQU.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TTPFUQFE3Y5ZHJQU.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TTPFUQFE3Y5ZHJQU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TTPFUQFE3Y5ZHJQU.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TTPFUQFE3Y5ZHJQU.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "84S2KXJ69JV6DQFX" : { - "84S2KXJ69JV6DQFX.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "84S2KXJ69JV6DQFX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "84S2KXJ69JV6DQFX.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "84S2KXJ69JV6DQFX.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1242000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "84S2KXJ69JV6DQFX.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "84S2KXJ69JV6DQFX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "84S2KXJ69JV6DQFX.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "84S2KXJ69JV6DQFX.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "84S2KXJ69JV6DQFX.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "84S2KXJ69JV6DQFX", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "84S2KXJ69JV6DQFX.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "84S2KXJ69JV6DQFX.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22212" - }, - "appliesTo" : [ ] - }, - "84S2KXJ69JV6DQFX.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "84S2KXJ69JV6DQFX.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "84S2KXJ69JV6DQFX.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "84S2KXJ69JV6DQFX", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "84S2KXJ69JV6DQFX.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "84S2KXJ69JV6DQFX.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22722" - }, - "appliesTo" : [ ] - }, - "84S2KXJ69JV6DQFX.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "84S2KXJ69JV6DQFX.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "84S2KXJ69JV6DQFX.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "84S2KXJ69JV6DQFX", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "84S2KXJ69JV6DQFX.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "84S2KXJ69JV6DQFX.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "42749" - }, - "appliesTo" : [ ] - }, - "84S2KXJ69JV6DQFX.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "84S2KXJ69JV6DQFX.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "84S2KXJ69JV6DQFX.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "84S2KXJ69JV6DQFX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "84S2KXJ69JV6DQFX.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "84S2KXJ69JV6DQFX.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1394000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "84S2KXJ69JV6DQFX.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "84S2KXJ69JV6DQFX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "84S2KXJ69JV6DQFX.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "84S2KXJ69JV6DQFX.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25563" - }, - "appliesTo" : [ ] - }, - "84S2KXJ69JV6DQFX.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "84S2KXJ69JV6DQFX.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "84S2KXJ69JV6DQFX.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "84S2KXJ69JV6DQFX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "84S2KXJ69JV6DQFX.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "84S2KXJ69JV6DQFX.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9882000000" - }, - "appliesTo" : [ ] - }, - "84S2KXJ69JV6DQFX.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "84S2KXJ69JV6DQFX.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25980" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "84S2KXJ69JV6DQFX.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "84S2KXJ69JV6DQFX", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "84S2KXJ69JV6DQFX.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "84S2KXJ69JV6DQFX.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11361" - }, - "appliesTo" : [ ] - }, - "84S2KXJ69JV6DQFX.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "84S2KXJ69JV6DQFX.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "84S2KXJ69JV6DQFX.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "84S2KXJ69JV6DQFX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "84S2KXJ69JV6DQFX.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "84S2KXJ69JV6DQFX.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "50925" - }, - "appliesTo" : [ ] - }, - "84S2KXJ69JV6DQFX.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "84S2KXJ69JV6DQFX.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "84S2KXJ69JV6DQFX.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "84S2KXJ69JV6DQFX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "84S2KXJ69JV6DQFX.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "84S2KXJ69JV6DQFX.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13071" - }, - "appliesTo" : [ ] - }, - "84S2KXJ69JV6DQFX.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "84S2KXJ69JV6DQFX.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "84S2KXJ69JV6DQFX.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "84S2KXJ69JV6DQFX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "84S2KXJ69JV6DQFX.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "84S2KXJ69JV6DQFX.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8647000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "D5JBSPHEHDXDUWJR" : { - "D5JBSPHEHDXDUWJR.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "D5JBSPHEHDXDUWJR", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "D5JBSPHEHDXDUWJR.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "D5JBSPHEHDXDUWJR.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8343" - }, - "appliesTo" : [ ] - }, - "D5JBSPHEHDXDUWJR.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "D5JBSPHEHDXDUWJR.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "D5JBSPHEHDXDUWJR.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "D5JBSPHEHDXDUWJR", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "D5JBSPHEHDXDUWJR.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "D5JBSPHEHDXDUWJR.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5551" - }, - "appliesTo" : [ ] - }, - "D5JBSPHEHDXDUWJR.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "D5JBSPHEHDXDUWJR.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "D5JBSPHEHDXDUWJR.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "D5JBSPHEHDXDUWJR", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "D5JBSPHEHDXDUWJR.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "D5JBSPHEHDXDUWJR.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0990000000" - }, - "appliesTo" : [ ] - }, - "D5JBSPHEHDXDUWJR.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "D5JBSPHEHDXDUWJR.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3925" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "D5JBSPHEHDXDUWJR.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "D5JBSPHEHDXDUWJR", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "D5JBSPHEHDXDUWJR.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "D5JBSPHEHDXDUWJR.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "D5JBSPHEHDXDUWJR.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "D5JBSPHEHDXDUWJR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "D5JBSPHEHDXDUWJR.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "D5JBSPHEHDXDUWJR.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "D5JBSPHEHDXDUWJR.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "D5JBSPHEHDXDUWJR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "D5JBSPHEHDXDUWJR.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "D5JBSPHEHDXDUWJR.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3542" - }, - "appliesTo" : [ ] - }, - "D5JBSPHEHDXDUWJR.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "D5JBSPHEHDXDUWJR.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "D5JBSPHEHDXDUWJR.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "D5JBSPHEHDXDUWJR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "D5JBSPHEHDXDUWJR.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "D5JBSPHEHDXDUWJR.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2060000000" - }, - "appliesTo" : [ ] - }, - "D5JBSPHEHDXDUWJR.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "D5JBSPHEHDXDUWJR.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1807" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "D5JBSPHEHDXDUWJR.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "D5JBSPHEHDXDUWJR", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "D5JBSPHEHDXDUWJR.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "D5JBSPHEHDXDUWJR.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "D5JBSPHEHDXDUWJR.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "D5JBSPHEHDXDUWJR.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3090" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "D5JBSPHEHDXDUWJR.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "D5JBSPHEHDXDUWJR", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "D5JBSPHEHDXDUWJR.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "D5JBSPHEHDXDUWJR.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2056" - }, - "appliesTo" : [ ] - }, - "D5JBSPHEHDXDUWJR.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "D5JBSPHEHDXDUWJR.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "D5JBSPHEHDXDUWJR.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "D5JBSPHEHDXDUWJR", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "D5JBSPHEHDXDUWJR.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "D5JBSPHEHDXDUWJR.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "D5JBSPHEHDXDUWJR.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "D5JBSPHEHDXDUWJR.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6130" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "D5JBSPHEHDXDUWJR.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "D5JBSPHEHDXDUWJR", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "D5JBSPHEHDXDUWJR.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "D5JBSPHEHDXDUWJR.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "Y2UXNGAEK992YZMH" : { - "Y2UXNGAEK992YZMH.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "Y2UXNGAEK992YZMH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Y2UXNGAEK992YZMH.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "Y2UXNGAEK992YZMH.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32305" - }, - "appliesTo" : [ ] - }, - "Y2UXNGAEK992YZMH.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "Y2UXNGAEK992YZMH.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y2UXNGAEK992YZMH.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Y2UXNGAEK992YZMH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "Y2UXNGAEK992YZMH.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Y2UXNGAEK992YZMH.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Y2UXNGAEK992YZMH.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "Y2UXNGAEK992YZMH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Y2UXNGAEK992YZMH.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "Y2UXNGAEK992YZMH.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Y2UXNGAEK992YZMH.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Y2UXNGAEK992YZMH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "Y2UXNGAEK992YZMH.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Y2UXNGAEK992YZMH.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "93347" - }, - "appliesTo" : [ ] - }, - "Y2UXNGAEK992YZMH.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Y2UXNGAEK992YZMH.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y2UXNGAEK992YZMH.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Y2UXNGAEK992YZMH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "Y2UXNGAEK992YZMH.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Y2UXNGAEK992YZMH.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "63792" - }, - "appliesTo" : [ ] - }, - "Y2UXNGAEK992YZMH.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Y2UXNGAEK992YZMH.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Y2UXNGAEK992YZMH.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Y2UXNGAEK992YZMH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "Y2UXNGAEK992YZMH.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Y2UXNGAEK992YZMH.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "186114" - }, - "appliesTo" : [ ] - }, - "Y2UXNGAEK992YZMH.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Y2UXNGAEK992YZMH.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Y2UXNGAEK992YZMH.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "Y2UXNGAEK992YZMH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "Y2UXNGAEK992YZMH.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "Y2UXNGAEK992YZMH.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "95102" - }, - "appliesTo" : [ ] - }, - "Y2UXNGAEK992YZMH.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "Y2UXNGAEK992YZMH.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y2UXNGAEK992YZMH.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "Y2UXNGAEK992YZMH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "Y2UXNGAEK992YZMH.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "Y2UXNGAEK992YZMH.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Y2UXNGAEK992YZMH.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "Y2UXNGAEK992YZMH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "Y2UXNGAEK992YZMH.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "Y2UXNGAEK992YZMH.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "189941" - }, - "appliesTo" : [ ] - }, - "Y2UXNGAEK992YZMH.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "Y2UXNGAEK992YZMH.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Y2UXNGAEK992YZMH.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Y2UXNGAEK992YZMH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "Y2UXNGAEK992YZMH.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Y2UXNGAEK992YZMH.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6470000000" - }, - "appliesTo" : [ ] - }, - "Y2UXNGAEK992YZMH.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Y2UXNGAEK992YZMH.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31945" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y2UXNGAEK992YZMH.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "Y2UXNGAEK992YZMH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Y2UXNGAEK992YZMH.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "Y2UXNGAEK992YZMH.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "64498" - }, - "appliesTo" : [ ] - }, - "Y2UXNGAEK992YZMH.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "Y2UXNGAEK992YZMH.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "WCAVWCRVUD56G7JJ" : { - "WCAVWCRVUD56G7JJ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "WCAVWCRVUD56G7JJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "WCAVWCRVUD56G7JJ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "WCAVWCRVUD56G7JJ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "WCAVWCRVUD56G7JJ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "WCAVWCRVUD56G7JJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "WCAVWCRVUD56G7JJ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "WCAVWCRVUD56G7JJ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "689" - }, - "appliesTo" : [ ] - }, - "WCAVWCRVUD56G7JJ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "WCAVWCRVUD56G7JJ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WCAVWCRVUD56G7JJ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "WCAVWCRVUD56G7JJ", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "WCAVWCRVUD56G7JJ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "WCAVWCRVUD56G7JJ.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "WCAVWCRVUD56G7JJ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "WCAVWCRVUD56G7JJ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3461" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WCAVWCRVUD56G7JJ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "WCAVWCRVUD56G7JJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "WCAVWCRVUD56G7JJ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "WCAVWCRVUD56G7JJ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2846" - }, - "appliesTo" : [ ] - }, - "WCAVWCRVUD56G7JJ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "WCAVWCRVUD56G7JJ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WCAVWCRVUD56G7JJ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "WCAVWCRVUD56G7JJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "WCAVWCRVUD56G7JJ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "WCAVWCRVUD56G7JJ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WCAVWCRVUD56G7JJ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "WCAVWCRVUD56G7JJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "WCAVWCRVUD56G7JJ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "WCAVWCRVUD56G7JJ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "WCAVWCRVUD56G7JJ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "WCAVWCRVUD56G7JJ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1208" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WCAVWCRVUD56G7JJ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "WCAVWCRVUD56G7JJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "WCAVWCRVUD56G7JJ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "WCAVWCRVUD56G7JJ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "435" - }, - "appliesTo" : [ ] - }, - "WCAVWCRVUD56G7JJ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "WCAVWCRVUD56G7JJ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WCAVWCRVUD56G7JJ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "WCAVWCRVUD56G7JJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WCAVWCRVUD56G7JJ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "WCAVWCRVUD56G7JJ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "WCAVWCRVUD56G7JJ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "WCAVWCRVUD56G7JJ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1430" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WCAVWCRVUD56G7JJ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "WCAVWCRVUD56G7JJ", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "WCAVWCRVUD56G7JJ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "WCAVWCRVUD56G7JJ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1207" - }, - "appliesTo" : [ ] - }, - "WCAVWCRVUD56G7JJ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "WCAVWCRVUD56G7JJ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WCAVWCRVUD56G7JJ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "WCAVWCRVUD56G7JJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WCAVWCRVUD56G7JJ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "WCAVWCRVUD56G7JJ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0820000000" - }, - "appliesTo" : [ ] - }, - "WCAVWCRVUD56G7JJ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "WCAVWCRVUD56G7JJ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "721" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WCAVWCRVUD56G7JJ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "WCAVWCRVUD56G7JJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WCAVWCRVUD56G7JJ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "WCAVWCRVUD56G7JJ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "EEJY25ZRYKB8MXQ7" : { - "EEJY25ZRYKB8MXQ7.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "EEJY25ZRYKB8MXQ7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EEJY25ZRYKB8MXQ7.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "EEJY25ZRYKB8MXQ7.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "EEJY25ZRYKB8MXQ7.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "EEJY25ZRYKB8MXQ7.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "58405" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "EEJY25ZRYKB8MXQ7.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "EEJY25ZRYKB8MXQ7", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "EEJY25ZRYKB8MXQ7.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "EEJY25ZRYKB8MXQ7.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "108395" - }, - "appliesTo" : [ ] - }, - "EEJY25ZRYKB8MXQ7.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "EEJY25ZRYKB8MXQ7.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "EEJY25ZRYKB8MXQ7.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "EEJY25ZRYKB8MXQ7", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "EEJY25ZRYKB8MXQ7.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "EEJY25ZRYKB8MXQ7.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "36954" - }, - "appliesTo" : [ ] - }, - "EEJY25ZRYKB8MXQ7.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "EEJY25ZRYKB8MXQ7.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EEJY25ZRYKB8MXQ7.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "EEJY25ZRYKB8MXQ7", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "EEJY25ZRYKB8MXQ7.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "EEJY25ZRYKB8MXQ7.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "163439" - }, - "appliesTo" : [ ] - }, - "EEJY25ZRYKB8MXQ7.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "EEJY25ZRYKB8MXQ7.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "EEJY25ZRYKB8MXQ7.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "EEJY25ZRYKB8MXQ7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EEJY25ZRYKB8MXQ7.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "EEJY25ZRYKB8MXQ7.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29347" - }, - "appliesTo" : [ ] - }, - "EEJY25ZRYKB8MXQ7.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "EEJY25ZRYKB8MXQ7.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "EEJY25ZRYKB8MXQ7.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "EEJY25ZRYKB8MXQ7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EEJY25ZRYKB8MXQ7.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "EEJY25ZRYKB8MXQ7.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.7830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "EEJY25ZRYKB8MXQ7.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "EEJY25ZRYKB8MXQ7", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "EEJY25ZRYKB8MXQ7.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "EEJY25ZRYKB8MXQ7.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "EEJY25ZRYKB8MXQ7.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "EEJY25ZRYKB8MXQ7", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "EEJY25ZRYKB8MXQ7.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "EEJY25ZRYKB8MXQ7.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "99377" - }, - "appliesTo" : [ ] - }, - "EEJY25ZRYKB8MXQ7.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "EEJY25ZRYKB8MXQ7.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EEJY25ZRYKB8MXQ7.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "EEJY25ZRYKB8MXQ7", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "EEJY25ZRYKB8MXQ7.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "EEJY25ZRYKB8MXQ7.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "EEJY25ZRYKB8MXQ7.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "EEJY25ZRYKB8MXQ7", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "EEJY25ZRYKB8MXQ7.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "EEJY25ZRYKB8MXQ7.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "EEJY25ZRYKB8MXQ7.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "EEJY25ZRYKB8MXQ7.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "55716" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EEJY25ZRYKB8MXQ7.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "EEJY25ZRYKB8MXQ7", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "EEJY25ZRYKB8MXQ7.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "EEJY25ZRYKB8MXQ7.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "143615" - }, - "appliesTo" : [ ] - }, - "EEJY25ZRYKB8MXQ7.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "EEJY25ZRYKB8MXQ7.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "DJEY5GTEWFQSU2H3" : { - "DJEY5GTEWFQSU2H3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "DJEY5GTEWFQSU2H3", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "DJEY5GTEWFQSU2H3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "DJEY5GTEWFQSU2H3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46884" - }, - "appliesTo" : [ ] - }, - "DJEY5GTEWFQSU2H3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "DJEY5GTEWFQSU2H3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DJEY5GTEWFQSU2H3.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "DJEY5GTEWFQSU2H3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DJEY5GTEWFQSU2H3.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "DJEY5GTEWFQSU2H3.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7985000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DJEY5GTEWFQSU2H3.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "DJEY5GTEWFQSU2H3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DJEY5GTEWFQSU2H3.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "DJEY5GTEWFQSU2H3.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47395" - }, - "appliesTo" : [ ] - }, - "DJEY5GTEWFQSU2H3.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "DJEY5GTEWFQSU2H3.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DJEY5GTEWFQSU2H3.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "DJEY5GTEWFQSU2H3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DJEY5GTEWFQSU2H3.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "DJEY5GTEWFQSU2H3.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8157000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DJEY5GTEWFQSU2H3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "DJEY5GTEWFQSU2H3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DJEY5GTEWFQSU2H3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "DJEY5GTEWFQSU2H3.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DJEY5GTEWFQSU2H3.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "DJEY5GTEWFQSU2H3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DJEY5GTEWFQSU2H3.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "DJEY5GTEWFQSU2H3.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16331" - }, - "appliesTo" : [ ] - }, - "DJEY5GTEWFQSU2H3.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "DJEY5GTEWFQSU2H3.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DJEY5GTEWFQSU2H3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "DJEY5GTEWFQSU2H3", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "DJEY5GTEWFQSU2H3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "DJEY5GTEWFQSU2H3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8075" - }, - "appliesTo" : [ ] - }, - "DJEY5GTEWFQSU2H3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "DJEY5GTEWFQSU2H3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DJEY5GTEWFQSU2H3.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "DJEY5GTEWFQSU2H3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DJEY5GTEWFQSU2H3.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "DJEY5GTEWFQSU2H3.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8772000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DJEY5GTEWFQSU2H3.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "DJEY5GTEWFQSU2H3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DJEY5GTEWFQSU2H3.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "DJEY5GTEWFQSU2H3.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8182" - }, - "appliesTo" : [ ] - }, - "DJEY5GTEWFQSU2H3.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "DJEY5GTEWFQSU2H3.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DJEY5GTEWFQSU2H3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "DJEY5GTEWFQSU2H3", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "DJEY5GTEWFQSU2H3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "DJEY5GTEWFQSU2H3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16122" - }, - "appliesTo" : [ ] - }, - "DJEY5GTEWFQSU2H3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "DJEY5GTEWFQSU2H3.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DJEY5GTEWFQSU2H3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "DJEY5GTEWFQSU2H3", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "DJEY5GTEWFQSU2H3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "DJEY5GTEWFQSU2H3.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8950000000" - }, - "appliesTo" : [ ] - }, - "DJEY5GTEWFQSU2H3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "DJEY5GTEWFQSU2H3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23526" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DJEY5GTEWFQSU2H3.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "DJEY5GTEWFQSU2H3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DJEY5GTEWFQSU2H3.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "DJEY5GTEWFQSU2H3.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23730" - }, - "appliesTo" : [ ] - }, - "DJEY5GTEWFQSU2H3.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "DJEY5GTEWFQSU2H3.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9029000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "R663DPH9T8Q89W88" : { - "R663DPH9T8Q89W88.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "R663DPH9T8Q89W88", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "R663DPH9T8Q89W88.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "R663DPH9T8Q89W88.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18244" - }, - "appliesTo" : [ ] - }, - "R663DPH9T8Q89W88.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "R663DPH9T8Q89W88.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "R663DPH9T8Q89W88.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "R663DPH9T8Q89W88", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R663DPH9T8Q89W88.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "R663DPH9T8Q89W88.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "R663DPH9T8Q89W88.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "R663DPH9T8Q89W88", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "R663DPH9T8Q89W88.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "R663DPH9T8Q89W88.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37473" - }, - "appliesTo" : [ ] - }, - "R663DPH9T8Q89W88.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "R663DPH9T8Q89W88.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "R663DPH9T8Q89W88.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "R663DPH9T8Q89W88", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "R663DPH9T8Q89W88.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "R663DPH9T8Q89W88.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12056" - }, - "appliesTo" : [ ] - }, - "R663DPH9T8Q89W88.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "R663DPH9T8Q89W88.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "R663DPH9T8Q89W88.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "R663DPH9T8Q89W88", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "R663DPH9T8Q89W88.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "R663DPH9T8Q89W88.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21622" - }, - "appliesTo" : [ ] - }, - "R663DPH9T8Q89W88.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "R663DPH9T8Q89W88.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "R663DPH9T8Q89W88.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "R663DPH9T8Q89W88", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "R663DPH9T8Q89W88.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "R663DPH9T8Q89W88.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "50619" - }, - "appliesTo" : [ ] - }, - "R663DPH9T8Q89W88.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "R663DPH9T8Q89W88.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "R663DPH9T8Q89W88.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "R663DPH9T8Q89W88", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R663DPH9T8Q89W88.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "R663DPH9T8Q89W88.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11264" - }, - "appliesTo" : [ ] - }, - "R663DPH9T8Q89W88.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "R663DPH9T8Q89W88.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "R663DPH9T8Q89W88.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "R663DPH9T8Q89W88", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "R663DPH9T8Q89W88.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "R663DPH9T8Q89W88.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "R663DPH9T8Q89W88.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "R663DPH9T8Q89W88", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R663DPH9T8Q89W88.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "R663DPH9T8Q89W88.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22207" - }, - "appliesTo" : [ ] - }, - "R663DPH9T8Q89W88.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "R663DPH9T8Q89W88.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "R663DPH9T8Q89W88.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "R663DPH9T8Q89W88", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "R663DPH9T8Q89W88.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "R663DPH9T8Q89W88.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "R663DPH9T8Q89W88.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "R663DPH9T8Q89W88", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "R663DPH9T8Q89W88.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "R663DPH9T8Q89W88.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8008" - }, - "appliesTo" : [ ] - }, - "R663DPH9T8Q89W88.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "R663DPH9T8Q89W88.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "QHXEDKXAPRFFF59N" : { - "QHXEDKXAPRFFF59N.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "QHXEDKXAPRFFF59N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QHXEDKXAPRFFF59N.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "QHXEDKXAPRFFF59N.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QHXEDKXAPRFFF59N.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "QHXEDKXAPRFFF59N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QHXEDKXAPRFFF59N.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "QHXEDKXAPRFFF59N.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3630" - }, - "appliesTo" : [ ] - }, - "QHXEDKXAPRFFF59N.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "QHXEDKXAPRFFF59N.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QHXEDKXAPRFFF59N.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QHXEDKXAPRFFF59N", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QHXEDKXAPRFFF59N.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QHXEDKXAPRFFF59N.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4360000000" - }, - "appliesTo" : [ ] - }, - "QHXEDKXAPRFFF59N.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QHXEDKXAPRFFF59N.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2536" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QHXEDKXAPRFFF59N.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "QHXEDKXAPRFFF59N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QHXEDKXAPRFFF59N.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "QHXEDKXAPRFFF59N.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7204" - }, - "appliesTo" : [ ] - }, - "QHXEDKXAPRFFF59N.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "QHXEDKXAPRFFF59N.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QHXEDKXAPRFFF59N.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QHXEDKXAPRFFF59N", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QHXEDKXAPRFFF59N.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QHXEDKXAPRFFF59N.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QHXEDKXAPRFFF59N.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QHXEDKXAPRFFF59N", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QHXEDKXAPRFFF59N.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QHXEDKXAPRFFF59N.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14532" - }, - "appliesTo" : [ ] - }, - "QHXEDKXAPRFFF59N.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QHXEDKXAPRFFF59N.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QHXEDKXAPRFFF59N.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "QHXEDKXAPRFFF59N", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "QHXEDKXAPRFFF59N.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "QHXEDKXAPRFFF59N.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7178" - }, - "appliesTo" : [ ] - }, - "QHXEDKXAPRFFF59N.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "QHXEDKXAPRFFF59N.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QHXEDKXAPRFFF59N.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "QHXEDKXAPRFFF59N", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "QHXEDKXAPRFFF59N.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "QHXEDKXAPRFFF59N.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QHXEDKXAPRFFF59N.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "QHXEDKXAPRFFF59N.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17953" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QHXEDKXAPRFFF59N.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "QHXEDKXAPRFFF59N", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "QHXEDKXAPRFFF59N.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "QHXEDKXAPRFFF59N.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QHXEDKXAPRFFF59N.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QHXEDKXAPRFFF59N", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QHXEDKXAPRFFF59N.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QHXEDKXAPRFFF59N.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QHXEDKXAPRFFF59N.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QHXEDKXAPRFFF59N.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6223" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QHXEDKXAPRFFF59N.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QHXEDKXAPRFFF59N", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QHXEDKXAPRFFF59N.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QHXEDKXAPRFFF59N.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6180" - }, - "appliesTo" : [ ] - }, - "QHXEDKXAPRFFF59N.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QHXEDKXAPRFFF59N.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "AQ4BJM4AR87GBQDX" : { - "AQ4BJM4AR87GBQDX.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "AQ4BJM4AR87GBQDX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AQ4BJM4AR87GBQDX.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "AQ4BJM4AR87GBQDX.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5641" - }, - "appliesTo" : [ ] - }, - "AQ4BJM4AR87GBQDX.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "AQ4BJM4AR87GBQDX.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "AQ4BJM4AR87GBQDX.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "AQ4BJM4AR87GBQDX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AQ4BJM4AR87GBQDX.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "AQ4BJM4AR87GBQDX.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "AQ4BJM4AR87GBQDX.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "AQ4BJM4AR87GBQDX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AQ4BJM4AR87GBQDX.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "AQ4BJM4AR87GBQDX.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11186" - }, - "appliesTo" : [ ] - }, - "AQ4BJM4AR87GBQDX.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "AQ4BJM4AR87GBQDX.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "AQ4BJM4AR87GBQDX.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "AQ4BJM4AR87GBQDX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AQ4BJM4AR87GBQDX.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "AQ4BJM4AR87GBQDX.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "AQ4BJM4AR87GBQDX.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "AQ4BJM4AR87GBQDX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AQ4BJM4AR87GBQDX.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "AQ4BJM4AR87GBQDX.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "AQ4BJM4AR87GBQDX.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "AQ4BJM4AR87GBQDX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AQ4BJM4AR87GBQDX.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "AQ4BJM4AR87GBQDX.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29057" - }, - "appliesTo" : [ ] - }, - "AQ4BJM4AR87GBQDX.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "AQ4BJM4AR87GBQDX.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "AQ4BJM4AR87GBQDX.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "AQ4BJM4AR87GBQDX", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "AQ4BJM4AR87GBQDX.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "AQ4BJM4AR87GBQDX.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5186" - }, - "appliesTo" : [ ] - }, - "AQ4BJM4AR87GBQDX.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "AQ4BJM4AR87GBQDX.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AQ4BJM4AR87GBQDX.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "AQ4BJM4AR87GBQDX", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "AQ4BJM4AR87GBQDX.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "AQ4BJM4AR87GBQDX.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10160" - }, - "appliesTo" : [ ] - }, - "AQ4BJM4AR87GBQDX.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "AQ4BJM4AR87GBQDX.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AQ4BJM4AR87GBQDX.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "AQ4BJM4AR87GBQDX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AQ4BJM4AR87GBQDX.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "AQ4BJM4AR87GBQDX.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "AQ4BJM4AR87GBQDX.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "AQ4BJM4AR87GBQDX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AQ4BJM4AR87GBQDX.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "AQ4BJM4AR87GBQDX.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23723" - }, - "appliesTo" : [ ] - }, - "AQ4BJM4AR87GBQDX.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "AQ4BJM4AR87GBQDX.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AQ4BJM4AR87GBQDX.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "AQ4BJM4AR87GBQDX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AQ4BJM4AR87GBQDX.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "AQ4BJM4AR87GBQDX.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4800000000" - }, - "appliesTo" : [ ] - }, - "AQ4BJM4AR87GBQDX.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "AQ4BJM4AR87GBQDX.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12624" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AQ4BJM4AR87GBQDX.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "AQ4BJM4AR87GBQDX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AQ4BJM4AR87GBQDX.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "AQ4BJM4AR87GBQDX.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14627" - }, - "appliesTo" : [ ] - }, - "AQ4BJM4AR87GBQDX.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "AQ4BJM4AR87GBQDX.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "3DX9M63484ZSZFJV" : { - "3DX9M63484ZSZFJV.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "3DX9M63484ZSZFJV", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "3DX9M63484ZSZFJV.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "3DX9M63484ZSZFJV.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5000" - }, - "appliesTo" : [ ] - }, - "3DX9M63484ZSZFJV.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "3DX9M63484ZSZFJV.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3DX9M63484ZSZFJV.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "3DX9M63484ZSZFJV", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3DX9M63484ZSZFJV.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "3DX9M63484ZSZFJV.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7999" - }, - "appliesTo" : [ ] - }, - "3DX9M63484ZSZFJV.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "3DX9M63484ZSZFJV.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3DX9M63484ZSZFJV.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "3DX9M63484ZSZFJV", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3DX9M63484ZSZFJV.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "3DX9M63484ZSZFJV.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "3DX9M63484ZSZFJV.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "3DX9M63484ZSZFJV.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16127" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3DX9M63484ZSZFJV.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "3DX9M63484ZSZFJV", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3DX9M63484ZSZFJV.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "3DX9M63484ZSZFJV.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3610000000" - }, - "appliesTo" : [ ] - }, - "3DX9M63484ZSZFJV.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "3DX9M63484ZSZFJV.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7670" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3DX9M63484ZSZFJV.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "3DX9M63484ZSZFJV", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3DX9M63484ZSZFJV.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "3DX9M63484ZSZFJV.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "FWCGRGHA7B5TAJDH" : { - "FWCGRGHA7B5TAJDH.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "FWCGRGHA7B5TAJDH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FWCGRGHA7B5TAJDH.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "FWCGRGHA7B5TAJDH.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9042" - }, - "appliesTo" : [ ] - }, - "FWCGRGHA7B5TAJDH.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "FWCGRGHA7B5TAJDH.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FWCGRGHA7B5TAJDH.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "FWCGRGHA7B5TAJDH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FWCGRGHA7B5TAJDH.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "FWCGRGHA7B5TAJDH.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FWCGRGHA7B5TAJDH.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "FWCGRGHA7B5TAJDH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FWCGRGHA7B5TAJDH.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "FWCGRGHA7B5TAJDH.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FWCGRGHA7B5TAJDH.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "FWCGRGHA7B5TAJDH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FWCGRGHA7B5TAJDH.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "FWCGRGHA7B5TAJDH.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FWCGRGHA7B5TAJDH.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "FWCGRGHA7B5TAJDH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FWCGRGHA7B5TAJDH.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "FWCGRGHA7B5TAJDH.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18617" - }, - "appliesTo" : [ ] - }, - "FWCGRGHA7B5TAJDH.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "FWCGRGHA7B5TAJDH.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FWCGRGHA7B5TAJDH.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "FWCGRGHA7B5TAJDH", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "FWCGRGHA7B5TAJDH.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "FWCGRGHA7B5TAJDH.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15321" - }, - "appliesTo" : [ ] - }, - "FWCGRGHA7B5TAJDH.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "FWCGRGHA7B5TAJDH.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FWCGRGHA7B5TAJDH.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "FWCGRGHA7B5TAJDH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FWCGRGHA7B5TAJDH.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "FWCGRGHA7B5TAJDH.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8920000000" - }, - "appliesTo" : [ ] - }, - "FWCGRGHA7B5TAJDH.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "FWCGRGHA7B5TAJDH.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7817" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FWCGRGHA7B5TAJDH.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "FWCGRGHA7B5TAJDH", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "FWCGRGHA7B5TAJDH.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "FWCGRGHA7B5TAJDH.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30434" - }, - "appliesTo" : [ ] - }, - "FWCGRGHA7B5TAJDH.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "FWCGRGHA7B5TAJDH.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FWCGRGHA7B5TAJDH.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "FWCGRGHA7B5TAJDH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FWCGRGHA7B5TAJDH.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "FWCGRGHA7B5TAJDH.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17723" - }, - "appliesTo" : [ ] - }, - "FWCGRGHA7B5TAJDH.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "FWCGRGHA7B5TAJDH.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FWCGRGHA7B5TAJDH.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "FWCGRGHA7B5TAJDH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FWCGRGHA7B5TAJDH.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "FWCGRGHA7B5TAJDH.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "36489" - }, - "appliesTo" : [ ] - }, - "FWCGRGHA7B5TAJDH.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "FWCGRGHA7B5TAJDH.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FWCGRGHA7B5TAJDH.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "FWCGRGHA7B5TAJDH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FWCGRGHA7B5TAJDH.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "FWCGRGHA7B5TAJDH.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16235" - }, - "appliesTo" : [ ] - }, - "FWCGRGHA7B5TAJDH.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "FWCGRGHA7B5TAJDH.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FWCGRGHA7B5TAJDH.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "FWCGRGHA7B5TAJDH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FWCGRGHA7B5TAJDH.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "FWCGRGHA7B5TAJDH.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "YNFV4A5QUAMVDGKX" : { - "YNFV4A5QUAMVDGKX.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "YNFV4A5QUAMVDGKX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YNFV4A5QUAMVDGKX.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "YNFV4A5QUAMVDGKX.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.7260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YNFV4A5QUAMVDGKX.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YNFV4A5QUAMVDGKX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YNFV4A5QUAMVDGKX.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YNFV4A5QUAMVDGKX.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.1100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YNFV4A5QUAMVDGKX.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YNFV4A5QUAMVDGKX", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "YNFV4A5QUAMVDGKX.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YNFV4A5QUAMVDGKX.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YNFV4A5QUAMVDGKX.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YNFV4A5QUAMVDGKX.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33601" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YNFV4A5QUAMVDGKX.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "YNFV4A5QUAMVDGKX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YNFV4A5QUAMVDGKX.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "YNFV4A5QUAMVDGKX.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YNFV4A5QUAMVDGKX.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "YNFV4A5QUAMVDGKX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YNFV4A5QUAMVDGKX.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "YNFV4A5QUAMVDGKX.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38641" - }, - "appliesTo" : [ ] - }, - "YNFV4A5QUAMVDGKX.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "YNFV4A5QUAMVDGKX.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YNFV4A5QUAMVDGKX.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "YNFV4A5QUAMVDGKX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YNFV4A5QUAMVDGKX.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "YNFV4A5QUAMVDGKX.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YNFV4A5QUAMVDGKX.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YNFV4A5QUAMVDGKX", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "YNFV4A5QUAMVDGKX.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YNFV4A5QUAMVDGKX.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YNFV4A5QUAMVDGKX.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YNFV4A5QUAMVDGKX.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "49036" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YNFV4A5QUAMVDGKX.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YNFV4A5QUAMVDGKX", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YNFV4A5QUAMVDGKX.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YNFV4A5QUAMVDGKX.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26083" - }, - "appliesTo" : [ ] - }, - "YNFV4A5QUAMVDGKX.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YNFV4A5QUAMVDGKX.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YNFV4A5QUAMVDGKX.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YNFV4A5QUAMVDGKX", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "YNFV4A5QUAMVDGKX.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YNFV4A5QUAMVDGKX.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9570000000" - }, - "appliesTo" : [ ] - }, - "YNFV4A5QUAMVDGKX.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YNFV4A5QUAMVDGKX.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17143" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YNFV4A5QUAMVDGKX.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "YNFV4A5QUAMVDGKX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YNFV4A5QUAMVDGKX.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "YNFV4A5QUAMVDGKX.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29995" - }, - "appliesTo" : [ ] - }, - "YNFV4A5QUAMVDGKX.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "YNFV4A5QUAMVDGKX.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YNFV4A5QUAMVDGKX.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "YNFV4A5QUAMVDGKX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YNFV4A5QUAMVDGKX.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "YNFV4A5QUAMVDGKX.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "58790" - }, - "appliesTo" : [ ] - }, - "YNFV4A5QUAMVDGKX.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "YNFV4A5QUAMVDGKX.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YNFV4A5QUAMVDGKX.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "YNFV4A5QUAMVDGKX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YNFV4A5QUAMVDGKX.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "YNFV4A5QUAMVDGKX.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2510000000" - }, - "appliesTo" : [ ] - }, - "YNFV4A5QUAMVDGKX.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "YNFV4A5QUAMVDGKX.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19715" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "KV8S83TSUZZQ2X2K" : { - "KV8S83TSUZZQ2X2K.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "KV8S83TSUZZQ2X2K", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KV8S83TSUZZQ2X2K.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "KV8S83TSUZZQ2X2K.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "514" - }, - "appliesTo" : [ ] - }, - "KV8S83TSUZZQ2X2K.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "KV8S83TSUZZQ2X2K.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KV8S83TSUZZQ2X2K.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "KV8S83TSUZZQ2X2K", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "KV8S83TSUZZQ2X2K.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "KV8S83TSUZZQ2X2K.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KV8S83TSUZZQ2X2K.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "KV8S83TSUZZQ2X2K", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KV8S83TSUZZQ2X2K.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "KV8S83TSUZZQ2X2K.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KV8S83TSUZZQ2X2K.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "KV8S83TSUZZQ2X2K", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "KV8S83TSUZZQ2X2K.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "KV8S83TSUZZQ2X2K.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "KV8S83TSUZZQ2X2K.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "KV8S83TSUZZQ2X2K.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3311" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KV8S83TSUZZQ2X2K.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "KV8S83TSUZZQ2X2K", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "KV8S83TSUZZQ2X2K.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "KV8S83TSUZZQ2X2K.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "922" - }, - "appliesTo" : [ ] - }, - "KV8S83TSUZZQ2X2K.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "KV8S83TSUZZQ2X2K.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KV8S83TSUZZQ2X2K.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "KV8S83TSUZZQ2X2K", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "KV8S83TSUZZQ2X2K.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "KV8S83TSUZZQ2X2K.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1058" - }, - "appliesTo" : [ ] - }, - "KV8S83TSUZZQ2X2K.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "KV8S83TSUZZQ2X2K.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KV8S83TSUZZQ2X2K.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "KV8S83TSUZZQ2X2K", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "KV8S83TSUZZQ2X2K.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "KV8S83TSUZZQ2X2K.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1396" - }, - "appliesTo" : [ ] - }, - "KV8S83TSUZZQ2X2K.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "KV8S83TSUZZQ2X2K.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KV8S83TSUZZQ2X2K.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "KV8S83TSUZZQ2X2K", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "KV8S83TSUZZQ2X2K.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "KV8S83TSUZZQ2X2K.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KV8S83TSUZZQ2X2K.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "KV8S83TSUZZQ2X2K", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "KV8S83TSUZZQ2X2K.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "KV8S83TSUZZQ2X2K.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3650" - }, - "appliesTo" : [ ] - }, - "KV8S83TSUZZQ2X2K.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "KV8S83TSUZZQ2X2K.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KV8S83TSUZZQ2X2K.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "KV8S83TSUZZQ2X2K", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "KV8S83TSUZZQ2X2K.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "KV8S83TSUZZQ2X2K.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KV8S83TSUZZQ2X2K.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "KV8S83TSUZZQ2X2K", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KV8S83TSUZZQ2X2K.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "KV8S83TSUZZQ2X2K.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1533" - }, - "appliesTo" : [ ] - }, - "KV8S83TSUZZQ2X2K.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "KV8S83TSUZZQ2X2K.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KV8S83TSUZZQ2X2K.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "KV8S83TSUZZQ2X2K", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "KV8S83TSUZZQ2X2K.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "KV8S83TSUZZQ2X2K.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "444" - }, - "appliesTo" : [ ] - }, - "KV8S83TSUZZQ2X2K.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "KV8S83TSUZZQ2X2K.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "GMGKK582WT2TW2KT" : { - "GMGKK582WT2TW2KT.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "GMGKK582WT2TW2KT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GMGKK582WT2TW2KT.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "GMGKK582WT2TW2KT.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.1120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GMGKK582WT2TW2KT.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "GMGKK582WT2TW2KT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GMGKK582WT2TW2KT.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "GMGKK582WT2TW2KT.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17151" - }, - "appliesTo" : [ ] - }, - "GMGKK582WT2TW2KT.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "GMGKK582WT2TW2KT.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GMGKK582WT2TW2KT.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "GMGKK582WT2TW2KT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GMGKK582WT2TW2KT.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "GMGKK582WT2TW2KT.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33616" - }, - "appliesTo" : [ ] - }, - "GMGKK582WT2TW2KT.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "GMGKK582WT2TW2KT.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GMGKK582WT2TW2KT.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "GMGKK582WT2TW2KT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GMGKK582WT2TW2KT.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "GMGKK582WT2TW2KT.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "49058" - }, - "appliesTo" : [ ] - }, - "GMGKK582WT2TW2KT.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "GMGKK582WT2TW2KT.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GMGKK582WT2TW2KT.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "GMGKK582WT2TW2KT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GMGKK582WT2TW2KT.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "GMGKK582WT2TW2KT.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GMGKK582WT2TW2KT.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "GMGKK582WT2TW2KT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GMGKK582WT2TW2KT.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "GMGKK582WT2TW2KT.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26095" - }, - "appliesTo" : [ ] - }, - "GMGKK582WT2TW2KT.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "GMGKK582WT2TW2KT.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "Z65ZPSYYEJ69PVAM" : { - "Z65ZPSYYEJ69PVAM.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Z65ZPSYYEJ69PVAM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z65ZPSYYEJ69PVAM.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Z65ZPSYYEJ69PVAM.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26095" - }, - "appliesTo" : [ ] - }, - "Z65ZPSYYEJ69PVAM.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Z65ZPSYYEJ69PVAM.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z65ZPSYYEJ69PVAM.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "Z65ZPSYYEJ69PVAM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z65ZPSYYEJ69PVAM.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "Z65ZPSYYEJ69PVAM.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39797" - }, - "appliesTo" : [ ] - }, - "Z65ZPSYYEJ69PVAM.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "Z65ZPSYYEJ69PVAM.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Z65ZPSYYEJ69PVAM.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "Z65ZPSYYEJ69PVAM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z65ZPSYYEJ69PVAM.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "Z65ZPSYYEJ69PVAM.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.8580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Z65ZPSYYEJ69PVAM.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "Z65ZPSYYEJ69PVAM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z65ZPSYYEJ69PVAM.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "Z65ZPSYYEJ69PVAM.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19724" - }, - "appliesTo" : [ ] - }, - "Z65ZPSYYEJ69PVAM.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "Z65ZPSYYEJ69PVAM.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z65ZPSYYEJ69PVAM.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Z65ZPSYYEJ69PVAM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z65ZPSYYEJ69PVAM.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Z65ZPSYYEJ69PVAM.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Z65ZPSYYEJ69PVAM.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "Z65ZPSYYEJ69PVAM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z65ZPSYYEJ69PVAM.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "Z65ZPSYYEJ69PVAM.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "Z65ZPSYYEJ69PVAM.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "Z65ZPSYYEJ69PVAM.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "62234" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Z65ZPSYYEJ69PVAM.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "Z65ZPSYYEJ69PVAM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z65ZPSYYEJ69PVAM.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "Z65ZPSYYEJ69PVAM.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Z65ZPSYYEJ69PVAM.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Z65ZPSYYEJ69PVAM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z65ZPSYYEJ69PVAM.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Z65ZPSYYEJ69PVAM.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0880000000" - }, - "appliesTo" : [ ] - }, - "Z65ZPSYYEJ69PVAM.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Z65ZPSYYEJ69PVAM.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17151" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z65ZPSYYEJ69PVAM.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "Z65ZPSYYEJ69PVAM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z65ZPSYYEJ69PVAM.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "Z65ZPSYYEJ69PVAM.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30009" - }, - "appliesTo" : [ ] - }, - "Z65ZPSYYEJ69PVAM.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "Z65ZPSYYEJ69PVAM.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z65ZPSYYEJ69PVAM.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "Z65ZPSYYEJ69PVAM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z65ZPSYYEJ69PVAM.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "Z65ZPSYYEJ69PVAM.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Z65ZPSYYEJ69PVAM.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Z65ZPSYYEJ69PVAM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z65ZPSYYEJ69PVAM.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Z65ZPSYYEJ69PVAM.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "52474" - }, - "appliesTo" : [ ] - }, - "Z65ZPSYYEJ69PVAM.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Z65ZPSYYEJ69PVAM.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Z65ZPSYYEJ69PVAM.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Z65ZPSYYEJ69PVAM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z65ZPSYYEJ69PVAM.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Z65ZPSYYEJ69PVAM.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34755" - }, - "appliesTo" : [ ] - }, - "Z65ZPSYYEJ69PVAM.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Z65ZPSYYEJ69PVAM.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "TNE6USZS8RUFQW28" : { - "TNE6USZS8RUFQW28.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TNE6USZS8RUFQW28", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "TNE6USZS8RUFQW28.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TNE6USZS8RUFQW28.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TNE6USZS8RUFQW28.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "TNE6USZS8RUFQW28", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TNE6USZS8RUFQW28.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "TNE6USZS8RUFQW28.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2420000000" - }, - "appliesTo" : [ ] - }, - "TNE6USZS8RUFQW28.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "TNE6USZS8RUFQW28.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2186" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TNE6USZS8RUFQW28.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "TNE6USZS8RUFQW28", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TNE6USZS8RUFQW28.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "TNE6USZS8RUFQW28.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TNE6USZS8RUFQW28.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "TNE6USZS8RUFQW28", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "TNE6USZS8RUFQW28.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "TNE6USZS8RUFQW28.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9939" - }, - "appliesTo" : [ ] - }, - "TNE6USZS8RUFQW28.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "TNE6USZS8RUFQW28.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TNE6USZS8RUFQW28.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "TNE6USZS8RUFQW28", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "TNE6USZS8RUFQW28.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "TNE6USZS8RUFQW28.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TNE6USZS8RUFQW28.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "TNE6USZS8RUFQW28", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TNE6USZS8RUFQW28.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "TNE6USZS8RUFQW28.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4230" - }, - "appliesTo" : [ ] - }, - "TNE6USZS8RUFQW28.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "TNE6USZS8RUFQW28.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TNE6USZS8RUFQW28.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TNE6USZS8RUFQW28", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "TNE6USZS8RUFQW28.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TNE6USZS8RUFQW28.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2196" - }, - "appliesTo" : [ ] - }, - "TNE6USZS8RUFQW28.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TNE6USZS8RUFQW28.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TNE6USZS8RUFQW28.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TNE6USZS8RUFQW28", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "TNE6USZS8RUFQW28.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TNE6USZS8RUFQW28.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6811" - }, - "appliesTo" : [ ] - }, - "TNE6USZS8RUFQW28.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TNE6USZS8RUFQW28.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TNE6USZS8RUFQW28.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TNE6USZS8RUFQW28", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "TNE6USZS8RUFQW28.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TNE6USZS8RUFQW28.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TNE6USZS8RUFQW28.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TNE6USZS8RUFQW28.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3727" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TNE6USZS8RUFQW28.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "TNE6USZS8RUFQW28", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "TNE6USZS8RUFQW28.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "TNE6USZS8RUFQW28.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5792" - }, - "appliesTo" : [ ] - }, - "TNE6USZS8RUFQW28.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "TNE6USZS8RUFQW28.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TNE6USZS8RUFQW28.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TNE6USZS8RUFQW28", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "TNE6USZS8RUFQW28.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TNE6USZS8RUFQW28.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3401" - }, - "appliesTo" : [ ] - }, - "TNE6USZS8RUFQW28.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TNE6USZS8RUFQW28.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "GVNK6UKCGGH82WUC" : { - "GVNK6UKCGGH82WUC.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "GVNK6UKCGGH82WUC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GVNK6UKCGGH82WUC.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "GVNK6UKCGGH82WUC.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "69816" - }, - "appliesTo" : [ ] - }, - "GVNK6UKCGGH82WUC.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "GVNK6UKCGGH82WUC.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "GVNK6UKCGGH82WUC.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "GVNK6UKCGGH82WUC", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "GVNK6UKCGGH82WUC.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "GVNK6UKCGGH82WUC.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "99338" - }, - "appliesTo" : [ ] - }, - "GVNK6UKCGGH82WUC.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "GVNK6UKCGGH82WUC.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GVNK6UKCGGH82WUC.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "GVNK6UKCGGH82WUC", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "GVNK6UKCGGH82WUC.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "GVNK6UKCGGH82WUC.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.6336000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "GVNK6UKCGGH82WUC.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "GVNK6UKCGGH82WUC", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "GVNK6UKCGGH82WUC.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "GVNK6UKCGGH82WUC.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "198193" - }, - "appliesTo" : [ ] - }, - "GVNK6UKCGGH82WUC.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "GVNK6UKCGGH82WUC.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "GVNK6UKCGGH82WUC.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "GVNK6UKCGGH82WUC", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "GVNK6UKCGGH82WUC.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "GVNK6UKCGGH82WUC.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GVNK6UKCGGH82WUC.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "GVNK6UKCGGH82WUC", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "GVNK6UKCGGH82WUC.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "GVNK6UKCGGH82WUC.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "68296" - }, - "appliesTo" : [ ] - }, - "GVNK6UKCGGH82WUC.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "GVNK6UKCGGH82WUC.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GVNK6UKCGGH82WUC.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "GVNK6UKCGGH82WUC", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "GVNK6UKCGGH82WUC.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "GVNK6UKCGGH82WUC.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "GVNK6UKCGGH82WUC.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "GVNK6UKCGGH82WUC.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "191647" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GVNK6UKCGGH82WUC.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "GVNK6UKCGGH82WUC", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "GVNK6UKCGGH82WUC.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "GVNK6UKCGGH82WUC.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34252" - }, - "appliesTo" : [ ] - }, - "GVNK6UKCGGH82WUC.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "GVNK6UKCGGH82WUC.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GVNK6UKCGGH82WUC.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "GVNK6UKCGGH82WUC", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "GVNK6UKCGGH82WUC.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "GVNK6UKCGGH82WUC.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.8790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GVNK6UKCGGH82WUC.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "GVNK6UKCGGH82WUC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GVNK6UKCGGH82WUC.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "GVNK6UKCGGH82WUC.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.0649000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "GVNK6UKCGGH82WUC.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "GVNK6UKCGGH82WUC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GVNK6UKCGGH82WUC.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "GVNK6UKCGGH82WUC.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9985000000" - }, - "appliesTo" : [ ] - }, - "GVNK6UKCGGH82WUC.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "GVNK6UKCGGH82WUC.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35027" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GVNK6UKCGGH82WUC.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "GVNK6UKCGGH82WUC", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "GVNK6UKCGGH82WUC.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "GVNK6UKCGGH82WUC.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7200000000" - }, - "appliesTo" : [ ] - }, - "GVNK6UKCGGH82WUC.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "GVNK6UKCGGH82WUC.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "97762" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "RWRSW4Q7WCASA2W9" : { - "RWRSW4Q7WCASA2W9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "RWRSW4Q7WCASA2W9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RWRSW4Q7WCASA2W9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "RWRSW4Q7WCASA2W9.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "RWRSW4Q7WCASA2W9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "RWRSW4Q7WCASA2W9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6220" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RWRSW4Q7WCASA2W9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "RWRSW4Q7WCASA2W9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RWRSW4Q7WCASA2W9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "RWRSW4Q7WCASA2W9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4350000000" - }, - "appliesTo" : [ ] - }, - "RWRSW4Q7WCASA2W9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "RWRSW4Q7WCASA2W9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2541" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RWRSW4Q7WCASA2W9.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "RWRSW4Q7WCASA2W9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RWRSW4Q7WCASA2W9.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "RWRSW4Q7WCASA2W9.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6027" - }, - "appliesTo" : [ ] - }, - "RWRSW4Q7WCASA2W9.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "RWRSW4Q7WCASA2W9.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RWRSW4Q7WCASA2W9.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "RWRSW4Q7WCASA2W9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RWRSW4Q7WCASA2W9.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "RWRSW4Q7WCASA2W9.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RWRSW4Q7WCASA2W9.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "RWRSW4Q7WCASA2W9", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "RWRSW4Q7WCASA2W9.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "RWRSW4Q7WCASA2W9.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18299" - }, - "appliesTo" : [ ] - }, - "RWRSW4Q7WCASA2W9.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "RWRSW4Q7WCASA2W9.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RWRSW4Q7WCASA2W9.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "RWRSW4Q7WCASA2W9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RWRSW4Q7WCASA2W9.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "RWRSW4Q7WCASA2W9.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3027" - }, - "appliesTo" : [ ] - }, - "RWRSW4Q7WCASA2W9.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "RWRSW4Q7WCASA2W9.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RWRSW4Q7WCASA2W9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "RWRSW4Q7WCASA2W9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RWRSW4Q7WCASA2W9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "RWRSW4Q7WCASA2W9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6879" - }, - "appliesTo" : [ ] - }, - "RWRSW4Q7WCASA2W9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "RWRSW4Q7WCASA2W9.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RWRSW4Q7WCASA2W9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "RWRSW4Q7WCASA2W9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RWRSW4Q7WCASA2W9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "RWRSW4Q7WCASA2W9.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RWRSW4Q7WCASA2W9.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "RWRSW4Q7WCASA2W9", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "RWRSW4Q7WCASA2W9.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "RWRSW4Q7WCASA2W9.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7408" - }, - "appliesTo" : [ ] - }, - "RWRSW4Q7WCASA2W9.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "RWRSW4Q7WCASA2W9.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RWRSW4Q7WCASA2W9.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "RWRSW4Q7WCASA2W9", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "RWRSW4Q7WCASA2W9.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "RWRSW4Q7WCASA2W9.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RWRSW4Q7WCASA2W9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "RWRSW4Q7WCASA2W9", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "RWRSW4Q7WCASA2W9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "RWRSW4Q7WCASA2W9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16167" - }, - "appliesTo" : [ ] - }, - "RWRSW4Q7WCASA2W9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "RWRSW4Q7WCASA2W9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "QT2HSTX3NZ4XCM9E" : { - "QT2HSTX3NZ4XCM9E.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QT2HSTX3NZ4XCM9E", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QT2HSTX3NZ4XCM9E.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QT2HSTX3NZ4XCM9E.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "797" - }, - "appliesTo" : [ ] - }, - "QT2HSTX3NZ4XCM9E.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QT2HSTX3NZ4XCM9E.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QT2HSTX3NZ4XCM9E.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QT2HSTX3NZ4XCM9E", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QT2HSTX3NZ4XCM9E.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QT2HSTX3NZ4XCM9E.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QT2HSTX3NZ4XCM9E.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QT2HSTX3NZ4XCM9E", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QT2HSTX3NZ4XCM9E.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QT2HSTX3NZ4XCM9E.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "434" - }, - "appliesTo" : [ ] - }, - "QT2HSTX3NZ4XCM9E.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QT2HSTX3NZ4XCM9E.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0425000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QT2HSTX3NZ4XCM9E.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "QT2HSTX3NZ4XCM9E", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QT2HSTX3NZ4XCM9E.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "QT2HSTX3NZ4XCM9E.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "956" - }, - "appliesTo" : [ ] - }, - "QT2HSTX3NZ4XCM9E.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "QT2HSTX3NZ4XCM9E.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QT2HSTX3NZ4XCM9E.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "QT2HSTX3NZ4XCM9E", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QT2HSTX3NZ4XCM9E.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "QT2HSTX3NZ4XCM9E.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0827000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QT2HSTX3NZ4XCM9E.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QT2HSTX3NZ4XCM9E", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QT2HSTX3NZ4XCM9E.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QT2HSTX3NZ4XCM9E.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "878" - }, - "appliesTo" : [ ] - }, - "QT2HSTX3NZ4XCM9E.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QT2HSTX3NZ4XCM9E.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QT2HSTX3NZ4XCM9E.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "QT2HSTX3NZ4XCM9E", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QT2HSTX3NZ4XCM9E.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "QT2HSTX3NZ4XCM9E.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QT2HSTX3NZ4XCM9E.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "QT2HSTX3NZ4XCM9E.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "872" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QT2HSTX3NZ4XCM9E.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QT2HSTX3NZ4XCM9E", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QT2HSTX3NZ4XCM9E.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QT2HSTX3NZ4XCM9E.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1682" - }, - "appliesTo" : [ ] - }, - "QT2HSTX3NZ4XCM9E.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QT2HSTX3NZ4XCM9E.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QT2HSTX3NZ4XCM9E.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "QT2HSTX3NZ4XCM9E", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QT2HSTX3NZ4XCM9E.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "QT2HSTX3NZ4XCM9E.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QT2HSTX3NZ4XCM9E.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "QT2HSTX3NZ4XCM9E.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1879" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QT2HSTX3NZ4XCM9E.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "QT2HSTX3NZ4XCM9E", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QT2HSTX3NZ4XCM9E.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "QT2HSTX3NZ4XCM9E.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QT2HSTX3NZ4XCM9E.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "QT2HSTX3NZ4XCM9E", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QT2HSTX3NZ4XCM9E.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "QT2HSTX3NZ4XCM9E.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "473" - }, - "appliesTo" : [ ] - }, - "QT2HSTX3NZ4XCM9E.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "QT2HSTX3NZ4XCM9E.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0469000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QT2HSTX3NZ4XCM9E.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "QT2HSTX3NZ4XCM9E", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QT2HSTX3NZ4XCM9E.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "QT2HSTX3NZ4XCM9E.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1042000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "49KSPMGA5DCV6VC6" : { - "49KSPMGA5DCV6VC6.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "49KSPMGA5DCV6VC6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "49KSPMGA5DCV6VC6.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "49KSPMGA5DCV6VC6.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3340000000" - }, - "appliesTo" : [ ] - }, - "49KSPMGA5DCV6VC6.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "49KSPMGA5DCV6VC6.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1787" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "49KSPMGA5DCV6VC6.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "49KSPMGA5DCV6VC6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "49KSPMGA5DCV6VC6.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "49KSPMGA5DCV6VC6.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2055" - }, - "appliesTo" : [ ] - }, - "49KSPMGA5DCV6VC6.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "49KSPMGA5DCV6VC6.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "49KSPMGA5DCV6VC6.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "49KSPMGA5DCV6VC6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "49KSPMGA5DCV6VC6.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "49KSPMGA5DCV6VC6.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "49KSPMGA5DCV6VC6.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "49KSPMGA5DCV6VC6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "49KSPMGA5DCV6VC6.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "49KSPMGA5DCV6VC6.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5167" - }, - "appliesTo" : [ ] - }, - "49KSPMGA5DCV6VC6.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "49KSPMGA5DCV6VC6.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "49KSPMGA5DCV6VC6.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "49KSPMGA5DCV6VC6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "49KSPMGA5DCV6VC6.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "49KSPMGA5DCV6VC6.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "49KSPMGA5DCV6VC6.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "49KSPMGA5DCV6VC6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "49KSPMGA5DCV6VC6.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "49KSPMGA5DCV6VC6.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "49KSPMGA5DCV6VC6.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "49KSPMGA5DCV6VC6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "49KSPMGA5DCV6VC6.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "49KSPMGA5DCV6VC6.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11245" - }, - "appliesTo" : [ ] - }, - "49KSPMGA5DCV6VC6.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "49KSPMGA5DCV6VC6.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "49KSPMGA5DCV6VC6.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "49KSPMGA5DCV6VC6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "49KSPMGA5DCV6VC6.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "49KSPMGA5DCV6VC6.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3467" - }, - "appliesTo" : [ ] - }, - "49KSPMGA5DCV6VC6.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "49KSPMGA5DCV6VC6.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "49KSPMGA5DCV6VC6.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "49KSPMGA5DCV6VC6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "49KSPMGA5DCV6VC6.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "49KSPMGA5DCV6VC6.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3994" - }, - "appliesTo" : [ ] - }, - "49KSPMGA5DCV6VC6.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "49KSPMGA5DCV6VC6.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "49KSPMGA5DCV6VC6.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "49KSPMGA5DCV6VC6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "49KSPMGA5DCV6VC6.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "49KSPMGA5DCV6VC6.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "49KSPMGA5DCV6VC6.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "49KSPMGA5DCV6VC6.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4641" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "49KSPMGA5DCV6VC6.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "49KSPMGA5DCV6VC6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "49KSPMGA5DCV6VC6.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "49KSPMGA5DCV6VC6.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9934" - }, - "appliesTo" : [ ] - }, - "49KSPMGA5DCV6VC6.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "49KSPMGA5DCV6VC6.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "49KSPMGA5DCV6VC6.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "49KSPMGA5DCV6VC6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "49KSPMGA5DCV6VC6.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "49KSPMGA5DCV6VC6.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "RBSDAQVUVBS5AAS2" : { - "RBSDAQVUVBS5AAS2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "RBSDAQVUVBS5AAS2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RBSDAQVUVBS5AAS2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "RBSDAQVUVBS5AAS2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "RBSDAQVUVBS5AAS2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "RBSDAQVUVBS5AAS2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22484" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RBSDAQVUVBS5AAS2.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "RBSDAQVUVBS5AAS2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RBSDAQVUVBS5AAS2.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "RBSDAQVUVBS5AAS2.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RBSDAQVUVBS5AAS2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "RBSDAQVUVBS5AAS2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RBSDAQVUVBS5AAS2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "RBSDAQVUVBS5AAS2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6328" - }, - "appliesTo" : [ ] - }, - "RBSDAQVUVBS5AAS2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "RBSDAQVUVBS5AAS2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RBSDAQVUVBS5AAS2.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "RBSDAQVUVBS5AAS2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "RBSDAQVUVBS5AAS2.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "RBSDAQVUVBS5AAS2.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33664" - }, - "appliesTo" : [ ] - }, - "RBSDAQVUVBS5AAS2.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "RBSDAQVUVBS5AAS2.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RBSDAQVUVBS5AAS2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "RBSDAQVUVBS5AAS2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "RBSDAQVUVBS5AAS2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "RBSDAQVUVBS5AAS2.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RBSDAQVUVBS5AAS2.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "RBSDAQVUVBS5AAS2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RBSDAQVUVBS5AAS2.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "RBSDAQVUVBS5AAS2.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20071" - }, - "appliesTo" : [ ] - }, - "RBSDAQVUVBS5AAS2.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "RBSDAQVUVBS5AAS2.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RBSDAQVUVBS5AAS2.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "RBSDAQVUVBS5AAS2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RBSDAQVUVBS5AAS2.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "RBSDAQVUVBS5AAS2.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1620000000" - }, - "appliesTo" : [ ] - }, - "RBSDAQVUVBS5AAS2.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "RBSDAQVUVBS5AAS2.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10175" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RBSDAQVUVBS5AAS2.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "RBSDAQVUVBS5AAS2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RBSDAQVUVBS5AAS2.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "RBSDAQVUVBS5AAS2.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RBSDAQVUVBS5AAS2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "RBSDAQVUVBS5AAS2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RBSDAQVUVBS5AAS2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "RBSDAQVUVBS5AAS2.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "RBSDAQVUVBS5AAS2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "RBSDAQVUVBS5AAS2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12402" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RBSDAQVUVBS5AAS2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "RBSDAQVUVBS5AAS2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RBSDAQVUVBS5AAS2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "RBSDAQVUVBS5AAS2.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4550000000" - }, - "appliesTo" : [ ] - }, - "RBSDAQVUVBS5AAS2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "RBSDAQVUVBS5AAS2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11959" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RBSDAQVUVBS5AAS2.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "RBSDAQVUVBS5AAS2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RBSDAQVUVBS5AAS2.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "RBSDAQVUVBS5AAS2.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6530000000" - }, - "appliesTo" : [ ] - }, - "RBSDAQVUVBS5AAS2.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "RBSDAQVUVBS5AAS2.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17177" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "7MYCC33ZAHEJPS24" : { - "7MYCC33ZAHEJPS24.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "7MYCC33ZAHEJPS24", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7MYCC33ZAHEJPS24.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "7MYCC33ZAHEJPS24.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3868" - }, - "appliesTo" : [ ] - }, - "7MYCC33ZAHEJPS24.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "7MYCC33ZAHEJPS24.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7MYCC33ZAHEJPS24.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "7MYCC33ZAHEJPS24", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7MYCC33ZAHEJPS24.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "7MYCC33ZAHEJPS24.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7MYCC33ZAHEJPS24.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "7MYCC33ZAHEJPS24", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7MYCC33ZAHEJPS24.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "7MYCC33ZAHEJPS24.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8657" - }, - "appliesTo" : [ ] - }, - "7MYCC33ZAHEJPS24.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "7MYCC33ZAHEJPS24.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7MYCC33ZAHEJPS24.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "7MYCC33ZAHEJPS24", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7MYCC33ZAHEJPS24.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "7MYCC33ZAHEJPS24.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4450" - }, - "appliesTo" : [ ] - }, - "7MYCC33ZAHEJPS24.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "7MYCC33ZAHEJPS24.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7MYCC33ZAHEJPS24.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "7MYCC33ZAHEJPS24", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7MYCC33ZAHEJPS24.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "7MYCC33ZAHEJPS24.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3688" - }, - "appliesTo" : [ ] - }, - "7MYCC33ZAHEJPS24.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "7MYCC33ZAHEJPS24.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7MYCC33ZAHEJPS24.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "7MYCC33ZAHEJPS24", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7MYCC33ZAHEJPS24.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "7MYCC33ZAHEJPS24.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7MYCC33ZAHEJPS24.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "7MYCC33ZAHEJPS24", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7MYCC33ZAHEJPS24.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "7MYCC33ZAHEJPS24.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2028" - }, - "appliesTo" : [ ] - }, - "7MYCC33ZAHEJPS24.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "7MYCC33ZAHEJPS24.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7MYCC33ZAHEJPS24.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "7MYCC33ZAHEJPS24", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7MYCC33ZAHEJPS24.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "7MYCC33ZAHEJPS24.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11133" - }, - "appliesTo" : [ ] - }, - "7MYCC33ZAHEJPS24.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "7MYCC33ZAHEJPS24.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7MYCC33ZAHEJPS24.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "7MYCC33ZAHEJPS24", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7MYCC33ZAHEJPS24.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "7MYCC33ZAHEJPS24.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4019" - }, - "appliesTo" : [ ] - }, - "7MYCC33ZAHEJPS24.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "7MYCC33ZAHEJPS24.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7MYCC33ZAHEJPS24.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "7MYCC33ZAHEJPS24", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "7MYCC33ZAHEJPS24.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "7MYCC33ZAHEJPS24.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2710000000" - }, - "appliesTo" : [ ] - }, - "7MYCC33ZAHEJPS24.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "7MYCC33ZAHEJPS24.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1576" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7MYCC33ZAHEJPS24.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "7MYCC33ZAHEJPS24", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7MYCC33ZAHEJPS24.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "7MYCC33ZAHEJPS24.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "6NHJBAA5ZJ25DJVN" : { - "6NHJBAA5ZJ25DJVN.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6NHJBAA5ZJ25DJVN", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "6NHJBAA5ZJ25DJVN.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6NHJBAA5ZJ25DJVN.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "94647" - }, - "appliesTo" : [ ] - }, - "6NHJBAA5ZJ25DJVN.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6NHJBAA5ZJ25DJVN.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6NHJBAA5ZJ25DJVN.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "6NHJBAA5ZJ25DJVN", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "6NHJBAA5ZJ25DJVN.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "6NHJBAA5ZJ25DJVN.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8460000000" - }, - "appliesTo" : [ ] - }, - "6NHJBAA5ZJ25DJVN.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "6NHJBAA5ZJ25DJVN.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "48509" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6NHJBAA5ZJ25DJVN.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "6NHJBAA5ZJ25DJVN", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "6NHJBAA5ZJ25DJVN.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "6NHJBAA5ZJ25DJVN.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6NHJBAA5ZJ25DJVN.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "6NHJBAA5ZJ25DJVN", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "6NHJBAA5ZJ25DJVN.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "6NHJBAA5ZJ25DJVN.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "96849" - }, - "appliesTo" : [ ] - }, - "6NHJBAA5ZJ25DJVN.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "6NHJBAA5ZJ25DJVN.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6NHJBAA5ZJ25DJVN.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "6NHJBAA5ZJ25DJVN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6NHJBAA5ZJ25DJVN.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "6NHJBAA5ZJ25DJVN.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33046" - }, - "appliesTo" : [ ] - }, - "6NHJBAA5ZJ25DJVN.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "6NHJBAA5ZJ25DJVN.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6NHJBAA5ZJ25DJVN.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6NHJBAA5ZJ25DJVN", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "6NHJBAA5ZJ25DJVN.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6NHJBAA5ZJ25DJVN.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16327" - }, - "appliesTo" : [ ] - }, - "6NHJBAA5ZJ25DJVN.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6NHJBAA5ZJ25DJVN.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6NHJBAA5ZJ25DJVN.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6NHJBAA5ZJ25DJVN", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "6NHJBAA5ZJ25DJVN.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6NHJBAA5ZJ25DJVN.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6NHJBAA5ZJ25DJVN.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "6NHJBAA5ZJ25DJVN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6NHJBAA5ZJ25DJVN.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "6NHJBAA5ZJ25DJVN.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6NHJBAA5ZJ25DJVN.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "6NHJBAA5ZJ25DJVN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6NHJBAA5ZJ25DJVN.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "6NHJBAA5ZJ25DJVN.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16559" - }, - "appliesTo" : [ ] - }, - "6NHJBAA5ZJ25DJVN.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "6NHJBAA5ZJ25DJVN.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6NHJBAA5ZJ25DJVN.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6NHJBAA5ZJ25DJVN", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "6NHJBAA5ZJ25DJVN.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6NHJBAA5ZJ25DJVN.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32592" - }, - "appliesTo" : [ ] - }, - "6NHJBAA5ZJ25DJVN.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6NHJBAA5ZJ25DJVN.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6NHJBAA5ZJ25DJVN.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6NHJBAA5ZJ25DJVN", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "6NHJBAA5ZJ25DJVN.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6NHJBAA5ZJ25DJVN.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47519" - }, - "appliesTo" : [ ] - }, - "6NHJBAA5ZJ25DJVN.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6NHJBAA5ZJ25DJVN.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "6S9GKQW48P8VUTJ9" : { - "6S9GKQW48P8VUTJ9.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "6S9GKQW48P8VUTJ9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6S9GKQW48P8VUTJ9.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "6S9GKQW48P8VUTJ9.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "63718" - }, - "appliesTo" : [ ] - }, - "6S9GKQW48P8VUTJ9.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "6S9GKQW48P8VUTJ9.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6S9GKQW48P8VUTJ9.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "6S9GKQW48P8VUTJ9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6S9GKQW48P8VUTJ9.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "6S9GKQW48P8VUTJ9.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "75858" - }, - "appliesTo" : [ ] - }, - "6S9GKQW48P8VUTJ9.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "6S9GKQW48P8VUTJ9.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6S9GKQW48P8VUTJ9.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "6S9GKQW48P8VUTJ9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6S9GKQW48P8VUTJ9.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "6S9GKQW48P8VUTJ9.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.1170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6S9GKQW48P8VUTJ9.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "6S9GKQW48P8VUTJ9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6S9GKQW48P8VUTJ9.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "6S9GKQW48P8VUTJ9.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "149455" - }, - "appliesTo" : [ ] - }, - "6S9GKQW48P8VUTJ9.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "6S9GKQW48P8VUTJ9.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6S9GKQW48P8VUTJ9.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "6S9GKQW48P8VUTJ9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6S9GKQW48P8VUTJ9.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "6S9GKQW48P8VUTJ9.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.5110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6S9GKQW48P8VUTJ9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6S9GKQW48P8VUTJ9", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "6S9GKQW48P8VUTJ9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6S9GKQW48P8VUTJ9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "131074" - }, - "appliesTo" : [ ] - }, - "6S9GKQW48P8VUTJ9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6S9GKQW48P8VUTJ9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6S9GKQW48P8VUTJ9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6S9GKQW48P8VUTJ9", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "6S9GKQW48P8VUTJ9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6S9GKQW48P8VUTJ9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "57089" - }, - "appliesTo" : [ ] - }, - "6S9GKQW48P8VUTJ9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6S9GKQW48P8VUTJ9.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6S9GKQW48P8VUTJ9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6S9GKQW48P8VUTJ9", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "6S9GKQW48P8VUTJ9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6S9GKQW48P8VUTJ9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "68486" - }, - "appliesTo" : [ ] - }, - "6S9GKQW48P8VUTJ9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6S9GKQW48P8VUTJ9.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6S9GKQW48P8VUTJ9.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "6S9GKQW48P8VUTJ9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6S9GKQW48P8VUTJ9.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "6S9GKQW48P8VUTJ9.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.6880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6S9GKQW48P8VUTJ9.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "6S9GKQW48P8VUTJ9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6S9GKQW48P8VUTJ9.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "6S9GKQW48P8VUTJ9.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32378" - }, - "appliesTo" : [ ] - }, - "6S9GKQW48P8VUTJ9.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "6S9GKQW48P8VUTJ9.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6S9GKQW48P8VUTJ9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6S9GKQW48P8VUTJ9", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "6S9GKQW48P8VUTJ9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6S9GKQW48P8VUTJ9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28996" - }, - "appliesTo" : [ ] - }, - "6S9GKQW48P8VUTJ9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6S9GKQW48P8VUTJ9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6S9GKQW48P8VUTJ9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6S9GKQW48P8VUTJ9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6S9GKQW48P8VUTJ9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6S9GKQW48P8VUTJ9.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.8770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "MGQXS8Z3TAKPMGUM" : { - "MGQXS8Z3TAKPMGUM.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "MGQXS8Z3TAKPMGUM", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "MGQXS8Z3TAKPMGUM.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "MGQXS8Z3TAKPMGUM.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5481" - }, - "appliesTo" : [ ] - }, - "MGQXS8Z3TAKPMGUM.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "MGQXS8Z3TAKPMGUM.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MGQXS8Z3TAKPMGUM.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "MGQXS8Z3TAKPMGUM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MGQXS8Z3TAKPMGUM.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "MGQXS8Z3TAKPMGUM.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4579000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MGQXS8Z3TAKPMGUM.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "MGQXS8Z3TAKPMGUM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MGQXS8Z3TAKPMGUM.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "MGQXS8Z3TAKPMGUM.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12558" - }, - "appliesTo" : [ ] - }, - "MGQXS8Z3TAKPMGUM.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "MGQXS8Z3TAKPMGUM.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MGQXS8Z3TAKPMGUM.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "MGQXS8Z3TAKPMGUM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MGQXS8Z3TAKPMGUM.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "MGQXS8Z3TAKPMGUM.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MGQXS8Z3TAKPMGUM.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "MGQXS8Z3TAKPMGUM", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "MGQXS8Z3TAKPMGUM.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "MGQXS8Z3TAKPMGUM.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2796" - }, - "appliesTo" : [ ] - }, - "MGQXS8Z3TAKPMGUM.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "MGQXS8Z3TAKPMGUM.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MGQXS8Z3TAKPMGUM.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "MGQXS8Z3TAKPMGUM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MGQXS8Z3TAKPMGUM.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "MGQXS8Z3TAKPMGUM.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "MGQXS8Z3TAKPMGUM.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "MGQXS8Z3TAKPMGUM.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6318" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MGQXS8Z3TAKPMGUM.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "MGQXS8Z3TAKPMGUM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MGQXS8Z3TAKPMGUM.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "MGQXS8Z3TAKPMGUM.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3224" - }, - "appliesTo" : [ ] - }, - "MGQXS8Z3TAKPMGUM.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "MGQXS8Z3TAKPMGUM.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MGQXS8Z3TAKPMGUM.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "MGQXS8Z3TAKPMGUM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MGQXS8Z3TAKPMGUM.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "MGQXS8Z3TAKPMGUM.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7728000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MGQXS8Z3TAKPMGUM.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "MGQXS8Z3TAKPMGUM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MGQXS8Z3TAKPMGUM.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "MGQXS8Z3TAKPMGUM.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5266000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MGQXS8Z3TAKPMGUM.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "MGQXS8Z3TAKPMGUM", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "MGQXS8Z3TAKPMGUM.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "MGQXS8Z3TAKPMGUM.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10514" - }, - "appliesTo" : [ ] - }, - "MGQXS8Z3TAKPMGUM.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "MGQXS8Z3TAKPMGUM.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MGQXS8Z3TAKPMGUM.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "MGQXS8Z3TAKPMGUM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MGQXS8Z3TAKPMGUM.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "MGQXS8Z3TAKPMGUM.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6407" - }, - "appliesTo" : [ ] - }, - "MGQXS8Z3TAKPMGUM.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "MGQXS8Z3TAKPMGUM.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2438000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MGQXS8Z3TAKPMGUM.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "MGQXS8Z3TAKPMGUM", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "MGQXS8Z3TAKPMGUM.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "MGQXS8Z3TAKPMGUM.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2130000000" - }, - "appliesTo" : [ ] - }, - "MGQXS8Z3TAKPMGUM.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "MGQXS8Z3TAKPMGUM.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5592" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "PG7N32NDHXVN79SC" : { - "PG7N32NDHXVN79SC.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "PG7N32NDHXVN79SC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PG7N32NDHXVN79SC.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "PG7N32NDHXVN79SC.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.0190000000" - }, - "appliesTo" : [ ] - }, - "PG7N32NDHXVN79SC.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "PG7N32NDHXVN79SC.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "79071" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PG7N32NDHXVN79SC.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "PG7N32NDHXVN79SC", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "PG7N32NDHXVN79SC.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "PG7N32NDHXVN79SC.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.4790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "PG7N32NDHXVN79SC.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "PG7N32NDHXVN79SC", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "PG7N32NDHXVN79SC.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "PG7N32NDHXVN79SC.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "235963" - }, - "appliesTo" : [ ] - }, - "PG7N32NDHXVN79SC.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "PG7N32NDHXVN79SC.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PG7N32NDHXVN79SC.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "PG7N32NDHXVN79SC", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "PG7N32NDHXVN79SC.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "PG7N32NDHXVN79SC.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "120387" - }, - "appliesTo" : [ ] - }, - "PG7N32NDHXVN79SC.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "PG7N32NDHXVN79SC.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PG7N32NDHXVN79SC.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "PG7N32NDHXVN79SC", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "PG7N32NDHXVN79SC.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "PG7N32NDHXVN79SC.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.6120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "PG7N32NDHXVN79SC.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "PG7N32NDHXVN79SC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PG7N32NDHXVN79SC.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "PG7N32NDHXVN79SC.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "18.9460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "PG7N32NDHXVN79SC.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "PG7N32NDHXVN79SC", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "PG7N32NDHXVN79SC.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "PG7N32NDHXVN79SC.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "68780" - }, - "appliesTo" : [ ] - }, - "PG7N32NDHXVN79SC.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "PG7N32NDHXVN79SC.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.8450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PG7N32NDHXVN79SC.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "PG7N32NDHXVN79SC", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "PG7N32NDHXVN79SC.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "PG7N32NDHXVN79SC.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "PG7N32NDHXVN79SC.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "PG7N32NDHXVN79SC.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "134754" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PG7N32NDHXVN79SC.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "PG7N32NDHXVN79SC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PG7N32NDHXVN79SC.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "PG7N32NDHXVN79SC.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "154924" - }, - "appliesTo" : [ ] - }, - "PG7N32NDHXVN79SC.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "PG7N32NDHXVN79SC.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PG7N32NDHXVN79SC.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "PG7N32NDHXVN79SC", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "PG7N32NDHXVN79SC.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "PG7N32NDHXVN79SC.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "PG7N32NDHXVN79SC.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "PG7N32NDHXVN79SC.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "196926" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PG7N32NDHXVN79SC.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "PG7N32NDHXVN79SC", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "PG7N32NDHXVN79SC.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "PG7N32NDHXVN79SC.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.8990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "SKBEBKWYFZHQHM9H" : { - "SKBEBKWYFZHQHM9H.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SKBEBKWYFZHQHM9H", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SKBEBKWYFZHQHM9H.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SKBEBKWYFZHQHM9H.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.2520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SKBEBKWYFZHQHM9H.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "SKBEBKWYFZHQHM9H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SKBEBKWYFZHQHM9H.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "SKBEBKWYFZHQHM9H.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39605" - }, - "appliesTo" : [ ] - }, - "SKBEBKWYFZHQHM9H.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "SKBEBKWYFZHQHM9H.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SKBEBKWYFZHQHM9H.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "SKBEBKWYFZHQHM9H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SKBEBKWYFZHQHM9H.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "SKBEBKWYFZHQHM9H.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.4850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SKBEBKWYFZHQHM9H.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "SKBEBKWYFZHQHM9H", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SKBEBKWYFZHQHM9H.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "SKBEBKWYFZHQHM9H.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.3210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SKBEBKWYFZHQHM9H.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "SKBEBKWYFZHQHM9H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SKBEBKWYFZHQHM9H.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "SKBEBKWYFZHQHM9H.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SKBEBKWYFZHQHM9H.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "SKBEBKWYFZHQHM9H.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "77571" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SKBEBKWYFZHQHM9H.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "SKBEBKWYFZHQHM9H", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SKBEBKWYFZHQHM9H.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "SKBEBKWYFZHQHM9H.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "118275" - }, - "appliesTo" : [ ] - }, - "SKBEBKWYFZHQHM9H.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "SKBEBKWYFZHQHM9H.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SKBEBKWYFZHQHM9H.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SKBEBKWYFZHQHM9H", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "SKBEBKWYFZHQHM9H.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SKBEBKWYFZHQHM9H.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34461" - }, - "appliesTo" : [ ] - }, - "SKBEBKWYFZHQHM9H.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SKBEBKWYFZHQHM9H.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SKBEBKWYFZHQHM9H.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SKBEBKWYFZHQHM9H", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "SKBEBKWYFZHQHM9H.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SKBEBKWYFZHQHM9H.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "67489" - }, - "appliesTo" : [ ] - }, - "SKBEBKWYFZHQHM9H.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SKBEBKWYFZHQHM9H.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SKBEBKWYFZHQHM9H.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "SKBEBKWYFZHQHM9H", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SKBEBKWYFZHQHM9H.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "SKBEBKWYFZHQHM9H.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "60342" - }, - "appliesTo" : [ ] - }, - "SKBEBKWYFZHQHM9H.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "SKBEBKWYFZHQHM9H.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SKBEBKWYFZHQHM9H.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "SKBEBKWYFZHQHM9H", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SKBEBKWYFZHQHM9H.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "SKBEBKWYFZHQHM9H.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SKBEBKWYFZHQHM9H.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SKBEBKWYFZHQHM9H", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SKBEBKWYFZHQHM9H.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SKBEBKWYFZHQHM9H.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "98766" - }, - "appliesTo" : [ ] - }, - "SKBEBKWYFZHQHM9H.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SKBEBKWYFZHQHM9H.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SKBEBKWYFZHQHM9H.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SKBEBKWYFZHQHM9H", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "SKBEBKWYFZHQHM9H.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SKBEBKWYFZHQHM9H.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "52518" - }, - "appliesTo" : [ ] - }, - "SKBEBKWYFZHQHM9H.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SKBEBKWYFZHQHM9H.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "SDH7JHR69GKRHZE7" : { - "SDH7JHR69GKRHZE7.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SDH7JHR69GKRHZE7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SDH7JHR69GKRHZE7.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SDH7JHR69GKRHZE7.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3262" - }, - "appliesTo" : [ ] - }, - "SDH7JHR69GKRHZE7.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SDH7JHR69GKRHZE7.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SDH7JHR69GKRHZE7.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "SDH7JHR69GKRHZE7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SDH7JHR69GKRHZE7.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "SDH7JHR69GKRHZE7.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7352" - }, - "appliesTo" : [ ] - }, - "SDH7JHR69GKRHZE7.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "SDH7JHR69GKRHZE7.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SDH7JHR69GKRHZE7.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SDH7JHR69GKRHZE7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SDH7JHR69GKRHZE7.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SDH7JHR69GKRHZE7.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SDH7JHR69GKRHZE7.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SDH7JHR69GKRHZE7.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6132" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SDH7JHR69GKRHZE7.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "SDH7JHR69GKRHZE7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SDH7JHR69GKRHZE7.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "SDH7JHR69GKRHZE7.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SDH7JHR69GKRHZE7.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "SDH7JHR69GKRHZE7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SDH7JHR69GKRHZE7.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "SDH7JHR69GKRHZE7.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SDH7JHR69GKRHZE7.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "SDH7JHR69GKRHZE7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SDH7JHR69GKRHZE7.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "SDH7JHR69GKRHZE7.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2465" - }, - "appliesTo" : [ ] - }, - "SDH7JHR69GKRHZE7.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "SDH7JHR69GKRHZE7.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SDH7JHR69GKRHZE7.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "SDH7JHR69GKRHZE7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SDH7JHR69GKRHZE7.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "SDH7JHR69GKRHZE7.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SDH7JHR69GKRHZE7.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "SDH7JHR69GKRHZE7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SDH7JHR69GKRHZE7.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "SDH7JHR69GKRHZE7.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3751" - }, - "appliesTo" : [ ] - }, - "SDH7JHR69GKRHZE7.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "SDH7JHR69GKRHZE7.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SDH7JHR69GKRHZE7.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SDH7JHR69GKRHZE7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SDH7JHR69GKRHZE7.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SDH7JHR69GKRHZE7.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4202" - }, - "appliesTo" : [ ] - }, - "SDH7JHR69GKRHZE7.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SDH7JHR69GKRHZE7.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SDH7JHR69GKRHZE7.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SDH7JHR69GKRHZE7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SDH7JHR69GKRHZE7.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SDH7JHR69GKRHZE7.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SDH7JHR69GKRHZE7.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "SDH7JHR69GKRHZE7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SDH7JHR69GKRHZE7.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "SDH7JHR69GKRHZE7.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4832" - }, - "appliesTo" : [ ] - }, - "SDH7JHR69GKRHZE7.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "SDH7JHR69GKRHZE7.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SDH7JHR69GKRHZE7.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SDH7JHR69GKRHZE7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SDH7JHR69GKRHZE7.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SDH7JHR69GKRHZE7.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2144" - }, - "appliesTo" : [ ] - }, - "SDH7JHR69GKRHZE7.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SDH7JHR69GKRHZE7.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "VMVVV7NDFCNYYB5X" : { - "VMVVV7NDFCNYYB5X.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "VMVVV7NDFCNYYB5X", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "VMVVV7NDFCNYYB5X.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "VMVVV7NDFCNYYB5X.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "758" - }, - "appliesTo" : [ ] - }, - "VMVVV7NDFCNYYB5X.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "VMVVV7NDFCNYYB5X.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VMVVV7NDFCNYYB5X.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "VMVVV7NDFCNYYB5X", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "VMVVV7NDFCNYYB5X.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "VMVVV7NDFCNYYB5X.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VMVVV7NDFCNYYB5X.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "VMVVV7NDFCNYYB5X", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "VMVVV7NDFCNYYB5X.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "VMVVV7NDFCNYYB5X.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VMVVV7NDFCNYYB5X.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "VMVVV7NDFCNYYB5X", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "VMVVV7NDFCNYYB5X.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "VMVVV7NDFCNYYB5X.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0290000000" - }, - "appliesTo" : [ ] - }, - "VMVVV7NDFCNYYB5X.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "VMVVV7NDFCNYYB5X.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1013" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VMVVV7NDFCNYYB5X.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "VMVVV7NDFCNYYB5X", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "VMVVV7NDFCNYYB5X.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "VMVVV7NDFCNYYB5X.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "701" - }, - "appliesTo" : [ ] - }, - "VMVVV7NDFCNYYB5X.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "VMVVV7NDFCNYYB5X.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VMVVV7NDFCNYYB5X.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "VMVVV7NDFCNYYB5X", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "VMVVV7NDFCNYYB5X.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "VMVVV7NDFCNYYB5X.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1417" - }, - "appliesTo" : [ ] - }, - "VMVVV7NDFCNYYB5X.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "VMVVV7NDFCNYYB5X.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VMVVV7NDFCNYYB5X.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "VMVVV7NDFCNYYB5X", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "VMVVV7NDFCNYYB5X.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "VMVVV7NDFCNYYB5X.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "438" - }, - "appliesTo" : [ ] - }, - "VMVVV7NDFCNYYB5X.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "VMVVV7NDFCNYYB5X.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VMVVV7NDFCNYYB5X.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "VMVVV7NDFCNYYB5X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VMVVV7NDFCNYYB5X.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "VMVVV7NDFCNYYB5X.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "736" - }, - "appliesTo" : [ ] - }, - "VMVVV7NDFCNYYB5X.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "VMVVV7NDFCNYYB5X.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VMVVV7NDFCNYYB5X.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "VMVVV7NDFCNYYB5X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VMVVV7NDFCNYYB5X.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "VMVVV7NDFCNYYB5X.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VMVVV7NDFCNYYB5X.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "VMVVV7NDFCNYYB5X", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "VMVVV7NDFCNYYB5X.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "VMVVV7NDFCNYYB5X.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1710" - }, - "appliesTo" : [ ] - }, - "VMVVV7NDFCNYYB5X.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "VMVVV7NDFCNYYB5X.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VMVVV7NDFCNYYB5X.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "VMVVV7NDFCNYYB5X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VMVVV7NDFCNYYB5X.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "VMVVV7NDFCNYYB5X.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "404" - }, - "appliesTo" : [ ] - }, - "VMVVV7NDFCNYYB5X.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "VMVVV7NDFCNYYB5X.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "Q7DXWWF6MF8PNEWR" : { - "Q7DXWWF6MF8PNEWR.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "Q7DXWWF6MF8PNEWR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q7DXWWF6MF8PNEWR.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "Q7DXWWF6MF8PNEWR.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "Q7DXWWF6MF8PNEWR.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "Q7DXWWF6MF8PNEWR.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3571" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Q7DXWWF6MF8PNEWR.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "Q7DXWWF6MF8PNEWR", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "Q7DXWWF6MF8PNEWR.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "Q7DXWWF6MF8PNEWR.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Q7DXWWF6MF8PNEWR.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Q7DXWWF6MF8PNEWR", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "Q7DXWWF6MF8PNEWR.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Q7DXWWF6MF8PNEWR.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6042" - }, - "appliesTo" : [ ] - }, - "Q7DXWWF6MF8PNEWR.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Q7DXWWF6MF8PNEWR.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Q7DXWWF6MF8PNEWR.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Q7DXWWF6MF8PNEWR", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "Q7DXWWF6MF8PNEWR.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Q7DXWWF6MF8PNEWR.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "Q7DXWWF6MF8PNEWR.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Q7DXWWF6MF8PNEWR.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3124" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Q7DXWWF6MF8PNEWR.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "Q7DXWWF6MF8PNEWR", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "Q7DXWWF6MF8PNEWR.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "Q7DXWWF6MF8PNEWR.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8435" - }, - "appliesTo" : [ ] - }, - "Q7DXWWF6MF8PNEWR.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "Q7DXWWF6MF8PNEWR.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Q7DXWWF6MF8PNEWR.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Q7DXWWF6MF8PNEWR", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "Q7DXWWF6MF8PNEWR.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Q7DXWWF6MF8PNEWR.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1851" - }, - "appliesTo" : [ ] - }, - "Q7DXWWF6MF8PNEWR.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Q7DXWWF6MF8PNEWR.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q7DXWWF6MF8PNEWR.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Q7DXWWF6MF8PNEWR", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "Q7DXWWF6MF8PNEWR.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Q7DXWWF6MF8PNEWR.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Q7DXWWF6MF8PNEWR.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "Q7DXWWF6MF8PNEWR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q7DXWWF6MF8PNEWR.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "Q7DXWWF6MF8PNEWR.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Q7DXWWF6MF8PNEWR.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "Q7DXWWF6MF8PNEWR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q7DXWWF6MF8PNEWR.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "Q7DXWWF6MF8PNEWR.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2080000000" - }, - "appliesTo" : [ ] - }, - "Q7DXWWF6MF8PNEWR.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "Q7DXWWF6MF8PNEWR.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1822" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q7DXWWF6MF8PNEWR.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Q7DXWWF6MF8PNEWR", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "Q7DXWWF6MF8PNEWR.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Q7DXWWF6MF8PNEWR.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2960" - }, - "appliesTo" : [ ] - }, - "Q7DXWWF6MF8PNEWR.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Q7DXWWF6MF8PNEWR.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q7DXWWF6MF8PNEWR.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "Q7DXWWF6MF8PNEWR", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "Q7DXWWF6MF8PNEWR.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "Q7DXWWF6MF8PNEWR.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4998" - }, - "appliesTo" : [ ] - }, - "Q7DXWWF6MF8PNEWR.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "Q7DXWWF6MF8PNEWR.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "JNRAY8EMZWNC3JNN" : { - "JNRAY8EMZWNC3JNN.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "JNRAY8EMZWNC3JNN", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JNRAY8EMZWNC3JNN.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "JNRAY8EMZWNC3JNN.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1894" - }, - "appliesTo" : [ ] - }, - "JNRAY8EMZWNC3JNN.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "JNRAY8EMZWNC3JNN.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "JNRAY8EMZWNC3JNN.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "JNRAY8EMZWNC3JNN", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "JNRAY8EMZWNC3JNN.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "JNRAY8EMZWNC3JNN.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "JNRAY8EMZWNC3JNN.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "JNRAY8EMZWNC3JNN", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JNRAY8EMZWNC3JNN.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "JNRAY8EMZWNC3JNN.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2875" - }, - "appliesTo" : [ ] - }, - "JNRAY8EMZWNC3JNN.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "JNRAY8EMZWNC3JNN.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "JNRAY8EMZWNC3JNN.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "JNRAY8EMZWNC3JNN", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JNRAY8EMZWNC3JNN.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "JNRAY8EMZWNC3JNN.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9051" - }, - "appliesTo" : [ ] - }, - "JNRAY8EMZWNC3JNN.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "JNRAY8EMZWNC3JNN.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JNRAY8EMZWNC3JNN.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "JNRAY8EMZWNC3JNN", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JNRAY8EMZWNC3JNN.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "JNRAY8EMZWNC3JNN.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4371" - }, - "appliesTo" : [ ] - }, - "JNRAY8EMZWNC3JNN.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "JNRAY8EMZWNC3JNN.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "AS5YFH475AAXG3U6" : { - "AS5YFH475AAXG3U6.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "AS5YFH475AAXG3U6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AS5YFH475AAXG3U6.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "AS5YFH475AAXG3U6.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3333000000" - }, - "appliesTo" : [ ] - }, - "AS5YFH475AAXG3U6.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "AS5YFH475AAXG3U6.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2919" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "AS5YFH475AAXG3U6.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "AS5YFH475AAXG3U6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AS5YFH475AAXG3U6.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "AS5YFH475AAXG3U6.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6406000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "AS5YFH475AAXG3U6.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "AS5YFH475AAXG3U6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AS5YFH475AAXG3U6.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "AS5YFH475AAXG3U6.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6815000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "AS5YFH475AAXG3U6.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "AS5YFH475AAXG3U6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AS5YFH475AAXG3U6.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "AS5YFH475AAXG3U6.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2720000000" - }, - "appliesTo" : [ ] - }, - "AS5YFH475AAXG3U6.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "AS5YFH475AAXG3U6.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7148" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AS5YFH475AAXG3U6.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "AS5YFH475AAXG3U6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AS5YFH475AAXG3U6.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "AS5YFH475AAXG3U6.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5452" - }, - "appliesTo" : [ ] - }, - "AS5YFH475AAXG3U6.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "AS5YFH475AAXG3U6.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AS5YFH475AAXG3U6.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "AS5YFH475AAXG3U6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AS5YFH475AAXG3U6.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "AS5YFH475AAXG3U6.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5866000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "AS5YFH475AAXG3U6.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "AS5YFH475AAXG3U6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AS5YFH475AAXG3U6.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "AS5YFH475AAXG3U6.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "AS5YFH475AAXG3U6.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "AS5YFH475AAXG3U6.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14019" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AS5YFH475AAXG3U6.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "AS5YFH475AAXG3U6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AS5YFH475AAXG3U6.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "AS5YFH475AAXG3U6.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5787" - }, - "appliesTo" : [ ] - }, - "AS5YFH475AAXG3U6.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "AS5YFH475AAXG3U6.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "AS5YFH475AAXG3U6.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "AS5YFH475AAXG3U6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AS5YFH475AAXG3U6.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "AS5YFH475AAXG3U6.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2749" - }, - "appliesTo" : [ ] - }, - "AS5YFH475AAXG3U6.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "AS5YFH475AAXG3U6.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3138000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AS5YFH475AAXG3U6.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "AS5YFH475AAXG3U6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AS5YFH475AAXG3U6.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "AS5YFH475AAXG3U6.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7495" - }, - "appliesTo" : [ ] - }, - "AS5YFH475AAXG3U6.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "AS5YFH475AAXG3U6.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2852000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "AS5YFH475AAXG3U6.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "AS5YFH475AAXG3U6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AS5YFH475AAXG3U6.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "AS5YFH475AAXG3U6.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14884" - }, - "appliesTo" : [ ] - }, - "AS5YFH475AAXG3U6.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "AS5YFH475AAXG3U6.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "AS5YFH475AAXG3U6.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "AS5YFH475AAXG3U6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AS5YFH475AAXG3U6.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "AS5YFH475AAXG3U6.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5581000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "K97AXAD4GAYGE99Y" : { - "K97AXAD4GAYGE99Y.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "K97AXAD4GAYGE99Y", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "K97AXAD4GAYGE99Y.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "K97AXAD4GAYGE99Y.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "80506" - }, - "appliesTo" : [ ] - }, - "K97AXAD4GAYGE99Y.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "K97AXAD4GAYGE99Y.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "K97AXAD4GAYGE99Y.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "K97AXAD4GAYGE99Y", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K97AXAD4GAYGE99Y.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "K97AXAD4GAYGE99Y.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "K97AXAD4GAYGE99Y.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "K97AXAD4GAYGE99Y.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "181358" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "K97AXAD4GAYGE99Y.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "K97AXAD4GAYGE99Y", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K97AXAD4GAYGE99Y.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "K97AXAD4GAYGE99Y.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5204000000" - }, - "appliesTo" : [ ] - }, - "K97AXAD4GAYGE99Y.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "K97AXAD4GAYGE99Y.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "92527" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "K97AXAD4GAYGE99Y.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "K97AXAD4GAYGE99Y", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "K97AXAD4GAYGE99Y.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "K97AXAD4GAYGE99Y.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.9580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "K97AXAD4GAYGE99Y.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "K97AXAD4GAYGE99Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K97AXAD4GAYGE99Y.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "K97AXAD4GAYGE99Y.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "K97AXAD4GAYGE99Y.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "K97AXAD4GAYGE99Y.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "84205" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "K97AXAD4GAYGE99Y.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "K97AXAD4GAYGE99Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K97AXAD4GAYGE99Y.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "K97AXAD4GAYGE99Y.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.2966000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "K97AXAD4GAYGE99Y.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "K97AXAD4GAYGE99Y", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K97AXAD4GAYGE99Y.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "K97AXAD4GAYGE99Y.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.6210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "K97AXAD4GAYGE99Y.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "K97AXAD4GAYGE99Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K97AXAD4GAYGE99Y.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "K97AXAD4GAYGE99Y.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "42990" - }, - "appliesTo" : [ ] - }, - "K97AXAD4GAYGE99Y.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "K97AXAD4GAYGE99Y.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9004000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "K97AXAD4GAYGE99Y.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "K97AXAD4GAYGE99Y", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "K97AXAD4GAYGE99Y.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "K97AXAD4GAYGE99Y.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "73261" - }, - "appliesTo" : [ ] - }, - "K97AXAD4GAYGE99Y.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "K97AXAD4GAYGE99Y.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "K97AXAD4GAYGE99Y.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "K97AXAD4GAYGE99Y", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "K97AXAD4GAYGE99Y.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "K97AXAD4GAYGE99Y.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37406" - }, - "appliesTo" : [ ] - }, - "K97AXAD4GAYGE99Y.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "K97AXAD4GAYGE99Y.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "K97AXAD4GAYGE99Y.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "K97AXAD4GAYGE99Y", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "K97AXAD4GAYGE99Y.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "K97AXAD4GAYGE99Y.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "151384" - }, - "appliesTo" : [ ] - }, - "K97AXAD4GAYGE99Y.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "K97AXAD4GAYGE99Y.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "K97AXAD4GAYGE99Y.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "K97AXAD4GAYGE99Y", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K97AXAD4GAYGE99Y.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "K97AXAD4GAYGE99Y.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.6091000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "8QAR2NUMVX46Z9J5" : { - "8QAR2NUMVX46Z9J5.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "8QAR2NUMVX46Z9J5", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "8QAR2NUMVX46Z9J5.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "8QAR2NUMVX46Z9J5.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22358" - }, - "appliesTo" : [ ] - }, - "8QAR2NUMVX46Z9J5.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "8QAR2NUMVX46Z9J5.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8QAR2NUMVX46Z9J5.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "8QAR2NUMVX46Z9J5", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "8QAR2NUMVX46Z9J5.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "8QAR2NUMVX46Z9J5.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "8QAR2NUMVX46Z9J5.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "8QAR2NUMVX46Z9J5.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29728" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8QAR2NUMVX46Z9J5.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "8QAR2NUMVX46Z9J5", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "8QAR2NUMVX46Z9J5.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "8QAR2NUMVX46Z9J5.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33725" - }, - "appliesTo" : [ ] - }, - "8QAR2NUMVX46Z9J5.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "8QAR2NUMVX46Z9J5.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8QAR2NUMVX46Z9J5.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "8QAR2NUMVX46Z9J5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8QAR2NUMVX46Z9J5.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "8QAR2NUMVX46Z9J5.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16002" - }, - "appliesTo" : [ ] - }, - "8QAR2NUMVX46Z9J5.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "8QAR2NUMVX46Z9J5.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8QAR2NUMVX46Z9J5.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "8QAR2NUMVX46Z9J5", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "8QAR2NUMVX46Z9J5.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "8QAR2NUMVX46Z9J5.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20598" - }, - "appliesTo" : [ ] - }, - "8QAR2NUMVX46Z9J5.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "8QAR2NUMVX46Z9J5.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8QAR2NUMVX46Z9J5.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "8QAR2NUMVX46Z9J5", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "8QAR2NUMVX46Z9J5.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "8QAR2NUMVX46Z9J5.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7864" - }, - "appliesTo" : [ ] - }, - "8QAR2NUMVX46Z9J5.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "8QAR2NUMVX46Z9J5.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8QAR2NUMVX46Z9J5.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "8QAR2NUMVX46Z9J5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8QAR2NUMVX46Z9J5.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "8QAR2NUMVX46Z9J5.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8QAR2NUMVX46Z9J5.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "8QAR2NUMVX46Z9J5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8QAR2NUMVX46Z9J5.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "8QAR2NUMVX46Z9J5.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8073" - }, - "appliesTo" : [ ] - }, - "8QAR2NUMVX46Z9J5.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "8QAR2NUMVX46Z9J5.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8QAR2NUMVX46Z9J5.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "8QAR2NUMVX46Z9J5", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "8QAR2NUMVX46Z9J5.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "8QAR2NUMVX46Z9J5.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8QAR2NUMVX46Z9J5.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "8QAR2NUMVX46Z9J5", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "8QAR2NUMVX46Z9J5.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "8QAR2NUMVX46Z9J5.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11860" - }, - "appliesTo" : [ ] - }, - "8QAR2NUMVX46Z9J5.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "8QAR2NUMVX46Z9J5.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8QAR2NUMVX46Z9J5.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "8QAR2NUMVX46Z9J5", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "8QAR2NUMVX46Z9J5.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "8QAR2NUMVX46Z9J5.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "TB387UEUFCNJQBC7" : { - "TB387UEUFCNJQBC7.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TB387UEUFCNJQBC7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TB387UEUFCNJQBC7.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TB387UEUFCNJQBC7.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TB387UEUFCNJQBC7.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "TB387UEUFCNJQBC7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TB387UEUFCNJQBC7.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "TB387UEUFCNJQBC7.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7490000000" - }, - "appliesTo" : [ ] - }, - "TB387UEUFCNJQBC7.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "TB387UEUFCNJQBC7.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6623" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TB387UEUFCNJQBC7.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "TB387UEUFCNJQBC7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TB387UEUFCNJQBC7.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "TB387UEUFCNJQBC7.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5786000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TB387UEUFCNJQBC7.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "TB387UEUFCNJQBC7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TB387UEUFCNJQBC7.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "TB387UEUFCNJQBC7.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9488000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TB387UEUFCNJQBC7.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "TB387UEUFCNJQBC7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TB387UEUFCNJQBC7.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "TB387UEUFCNJQBC7.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TB387UEUFCNJQBC7.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "TB387UEUFCNJQBC7.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25810" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TB387UEUFCNJQBC7.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "TB387UEUFCNJQBC7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TB387UEUFCNJQBC7.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "TB387UEUFCNJQBC7.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12927" - }, - "appliesTo" : [ ] - }, - "TB387UEUFCNJQBC7.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "TB387UEUFCNJQBC7.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TB387UEUFCNJQBC7.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TB387UEUFCNJQBC7", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "TB387UEUFCNJQBC7.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TB387UEUFCNJQBC7.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11251" - }, - "appliesTo" : [ ] - }, - "TB387UEUFCNJQBC7.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TB387UEUFCNJQBC7.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TB387UEUFCNJQBC7.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TB387UEUFCNJQBC7", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "TB387UEUFCNJQBC7.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TB387UEUFCNJQBC7.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5768" - }, - "appliesTo" : [ ] - }, - "TB387UEUFCNJQBC7.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TB387UEUFCNJQBC7.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TB387UEUFCNJQBC7.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TB387UEUFCNJQBC7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TB387UEUFCNJQBC7.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TB387UEUFCNJQBC7.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TB387UEUFCNJQBC7.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TB387UEUFCNJQBC7.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21721" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TB387UEUFCNJQBC7.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "TB387UEUFCNJQBC7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TB387UEUFCNJQBC7.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "TB387UEUFCNJQBC7.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0862000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TB387UEUFCNJQBC7.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "TB387UEUFCNJQBC7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TB387UEUFCNJQBC7.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "TB387UEUFCNJQBC7.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13166" - }, - "appliesTo" : [ ] - }, - "TB387UEUFCNJQBC7.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "TB387UEUFCNJQBC7.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5006000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TB387UEUFCNJQBC7.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TB387UEUFCNJQBC7", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "TB387UEUFCNJQBC7.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TB387UEUFCNJQBC7.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11537" - }, - "appliesTo" : [ ] - }, - "TB387UEUFCNJQBC7.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TB387UEUFCNJQBC7.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "TF7VKDXQVWSCQYBK" : { - "TF7VKDXQVWSCQYBK.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TF7VKDXQVWSCQYBK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "TF7VKDXQVWSCQYBK.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TF7VKDXQVWSCQYBK.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "104" - }, - "appliesTo" : [ ] - }, - "TF7VKDXQVWSCQYBK.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TF7VKDXQVWSCQYBK.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TF7VKDXQVWSCQYBK.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TF7VKDXQVWSCQYBK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "TF7VKDXQVWSCQYBK.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TF7VKDXQVWSCQYBK.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37" - }, - "appliesTo" : [ ] - }, - "TF7VKDXQVWSCQYBK.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TF7VKDXQVWSCQYBK.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0077000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TF7VKDXQVWSCQYBK.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "TF7VKDXQVWSCQYBK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TF7VKDXQVWSCQYBK.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "TF7VKDXQVWSCQYBK.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "109" - }, - "appliesTo" : [ ] - }, - "TF7VKDXQVWSCQYBK.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "TF7VKDXQVWSCQYBK.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TF7VKDXQVWSCQYBK.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "TF7VKDXQVWSCQYBK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "TF7VKDXQVWSCQYBK.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "TF7VKDXQVWSCQYBK.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0119000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TF7VKDXQVWSCQYBK.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TF7VKDXQVWSCQYBK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "TF7VKDXQVWSCQYBK.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TF7VKDXQVWSCQYBK.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TF7VKDXQVWSCQYBK.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TF7VKDXQVWSCQYBK.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "259" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TF7VKDXQVWSCQYBK.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "TF7VKDXQVWSCQYBK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "TF7VKDXQVWSCQYBK.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "TF7VKDXQVWSCQYBK.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "271" - }, - "appliesTo" : [ ] - }, - "TF7VKDXQVWSCQYBK.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "TF7VKDXQVWSCQYBK.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TF7VKDXQVWSCQYBK.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TF7VKDXQVWSCQYBK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "TF7VKDXQVWSCQYBK.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TF7VKDXQVWSCQYBK.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0126000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TF7VKDXQVWSCQYBK.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TF7VKDXQVWSCQYBK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "TF7VKDXQVWSCQYBK.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TF7VKDXQVWSCQYBK.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0072000000" - }, - "appliesTo" : [ ] - }, - "TF7VKDXQVWSCQYBK.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TF7VKDXQVWSCQYBK.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "74" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TF7VKDXQVWSCQYBK.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "TF7VKDXQVWSCQYBK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "TF7VKDXQVWSCQYBK.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "TF7VKDXQVWSCQYBK.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "79" - }, - "appliesTo" : [ ] - }, - "TF7VKDXQVWSCQYBK.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "TF7VKDXQVWSCQYBK.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0073000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TF7VKDXQVWSCQYBK.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "TF7VKDXQVWSCQYBK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "TF7VKDXQVWSCQYBK.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "TF7VKDXQVWSCQYBK.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0115000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TF7VKDXQVWSCQYBK.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "TF7VKDXQVWSCQYBK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TF7VKDXQVWSCQYBK.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "TF7VKDXQVWSCQYBK.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39" - }, - "appliesTo" : [ ] - }, - "TF7VKDXQVWSCQYBK.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "TF7VKDXQVWSCQYBK.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TF7VKDXQVWSCQYBK.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "TF7VKDXQVWSCQYBK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TF7VKDXQVWSCQYBK.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "TF7VKDXQVWSCQYBK.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0131000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "WWNXU2QJU9XYEM5Z" : { - "WWNXU2QJU9XYEM5Z.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "WWNXU2QJU9XYEM5Z", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "WWNXU2QJU9XYEM5Z.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "WWNXU2QJU9XYEM5Z.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1299" - }, - "appliesTo" : [ ] - }, - "WWNXU2QJU9XYEM5Z.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "WWNXU2QJU9XYEM5Z.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WWNXU2QJU9XYEM5Z.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "WWNXU2QJU9XYEM5Z", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "WWNXU2QJU9XYEM5Z.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "WWNXU2QJU9XYEM5Z.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "659" - }, - "appliesTo" : [ ] - }, - "WWNXU2QJU9XYEM5Z.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "WWNXU2QJU9XYEM5Z.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0753000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WWNXU2QJU9XYEM5Z.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "WWNXU2QJU9XYEM5Z", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "WWNXU2QJU9XYEM5Z.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "WWNXU2QJU9XYEM5Z.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1212000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "WWNXU2QJU9XYEM5Z.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "WWNXU2QJU9XYEM5Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WWNXU2QJU9XYEM5Z.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "WWNXU2QJU9XYEM5Z.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1440" - }, - "appliesTo" : [ ] - }, - "WWNXU2QJU9XYEM5Z.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "WWNXU2QJU9XYEM5Z.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WWNXU2QJU9XYEM5Z.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "WWNXU2QJU9XYEM5Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WWNXU2QJU9XYEM5Z.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "WWNXU2QJU9XYEM5Z.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1732000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WWNXU2QJU9XYEM5Z.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "WWNXU2QJU9XYEM5Z", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "WWNXU2QJU9XYEM5Z.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "WWNXU2QJU9XYEM5Z.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3276" - }, - "appliesTo" : [ ] - }, - "WWNXU2QJU9XYEM5Z.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "WWNXU2QJU9XYEM5Z.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WWNXU2QJU9XYEM5Z.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "WWNXU2QJU9XYEM5Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WWNXU2QJU9XYEM5Z.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "WWNXU2QJU9XYEM5Z.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0835000000" - }, - "appliesTo" : [ ] - }, - "WWNXU2QJU9XYEM5Z.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "WWNXU2QJU9XYEM5Z.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "731" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WWNXU2QJU9XYEM5Z.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "WWNXU2QJU9XYEM5Z", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "WWNXU2QJU9XYEM5Z.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "WWNXU2QJU9XYEM5Z.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0576000000" - }, - "appliesTo" : [ ] - }, - "WWNXU2QJU9XYEM5Z.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "WWNXU2QJU9XYEM5Z.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1514" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WWNXU2QJU9XYEM5Z.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "WWNXU2QJU9XYEM5Z", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "WWNXU2QJU9XYEM5Z.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "WWNXU2QJU9XYEM5Z.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "WWNXU2QJU9XYEM5Z.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "WWNXU2QJU9XYEM5Z", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "WWNXU2QJU9XYEM5Z.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "WWNXU2QJU9XYEM5Z.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1332000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WWNXU2QJU9XYEM5Z.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "WWNXU2QJU9XYEM5Z", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "WWNXU2QJU9XYEM5Z.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "WWNXU2QJU9XYEM5Z.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1661" - }, - "appliesTo" : [ ] - }, - "WWNXU2QJU9XYEM5Z.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "WWNXU2QJU9XYEM5Z.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0632000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WWNXU2QJU9XYEM5Z.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "WWNXU2QJU9XYEM5Z", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "WWNXU2QJU9XYEM5Z.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "WWNXU2QJU9XYEM5Z.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2911" - }, - "appliesTo" : [ ] - }, - "WWNXU2QJU9XYEM5Z.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "WWNXU2QJU9XYEM5Z.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "27HV9GJNZPAQHPXQ" : { - "27HV9GJNZPAQHPXQ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "27HV9GJNZPAQHPXQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "27HV9GJNZPAQHPXQ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "27HV9GJNZPAQHPXQ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "30.7000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "27HV9GJNZPAQHPXQ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "27HV9GJNZPAQHPXQ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "27HV9GJNZPAQHPXQ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "27HV9GJNZPAQHPXQ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "29.4670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "27HV9GJNZPAQHPXQ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "27HV9GJNZPAQHPXQ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "27HV9GJNZPAQHPXQ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "27HV9GJNZPAQHPXQ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "253334" - }, - "appliesTo" : [ ] - }, - "27HV9GJNZPAQHPXQ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "27HV9GJNZPAQHPXQ.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "27HV9GJNZPAQHPXQ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "27HV9GJNZPAQHPXQ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "27HV9GJNZPAQHPXQ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "27HV9GJNZPAQHPXQ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "27HV9GJNZPAQHPXQ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "27HV9GJNZPAQHPXQ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "656471" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "27HV9GJNZPAQHPXQ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "27HV9GJNZPAQHPXQ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "27HV9GJNZPAQHPXQ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "27HV9GJNZPAQHPXQ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "25.5360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "27HV9GJNZPAQHPXQ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "27HV9GJNZPAQHPXQ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "27HV9GJNZPAQHPXQ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "27HV9GJNZPAQHPXQ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "339189" - }, - "appliesTo" : [ ] - }, - "27HV9GJNZPAQHPXQ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "27HV9GJNZPAQHPXQ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.9070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "27HV9GJNZPAQHPXQ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "27HV9GJNZPAQHPXQ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "27HV9GJNZPAQHPXQ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "27HV9GJNZPAQHPXQ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "26.1790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "27HV9GJNZPAQHPXQ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "27HV9GJNZPAQHPXQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "27HV9GJNZPAQHPXQ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "27HV9GJNZPAQHPXQ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "263414" - }, - "appliesTo" : [ ] - }, - "27HV9GJNZPAQHPXQ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "27HV9GJNZPAQHPXQ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "27HV9GJNZPAQHPXQ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "27HV9GJNZPAQHPXQ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "27HV9GJNZPAQHPXQ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "27HV9GJNZPAQHPXQ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "331365" - }, - "appliesTo" : [ ] - }, - "27HV9GJNZPAQHPXQ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "27HV9GJNZPAQHPXQ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.6090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "27HV9GJNZPAQHPXQ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "27HV9GJNZPAQHPXQ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "27HV9GJNZPAQHPXQ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "27HV9GJNZPAQHPXQ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "127353" - }, - "appliesTo" : [ ] - }, - "27HV9GJNZPAQHPXQ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "27HV9GJNZPAQHPXQ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.5380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "27HV9GJNZPAQHPXQ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "27HV9GJNZPAQHPXQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "27HV9GJNZPAQHPXQ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "27HV9GJNZPAQHPXQ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "132496" - }, - "appliesTo" : [ ] - }, - "27HV9GJNZPAQHPXQ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "27HV9GJNZPAQHPXQ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.1250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "27HV9GJNZPAQHPXQ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "27HV9GJNZPAQHPXQ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "27HV9GJNZPAQHPXQ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "27HV9GJNZPAQHPXQ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "675978" - }, - "appliesTo" : [ ] - }, - "27HV9GJNZPAQHPXQ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "27HV9GJNZPAQHPXQ.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "FQFTKTSPGMBGY47W" : { - "FQFTKTSPGMBGY47W.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "FQFTKTSPGMBGY47W", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FQFTKTSPGMBGY47W.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "FQFTKTSPGMBGY47W.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "40567" - }, - "appliesTo" : [ ] - }, - "FQFTKTSPGMBGY47W.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "FQFTKTSPGMBGY47W.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FQFTKTSPGMBGY47W.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "FQFTKTSPGMBGY47W", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FQFTKTSPGMBGY47W.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "FQFTKTSPGMBGY47W.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20424" - }, - "appliesTo" : [ ] - }, - "FQFTKTSPGMBGY47W.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "FQFTKTSPGMBGY47W.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7772000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FQFTKTSPGMBGY47W.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "FQFTKTSPGMBGY47W", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "FQFTKTSPGMBGY47W.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "FQFTKTSPGMBGY47W.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19526" - }, - "appliesTo" : [ ] - }, - "FQFTKTSPGMBGY47W.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "FQFTKTSPGMBGY47W.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FQFTKTSPGMBGY47W.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "FQFTKTSPGMBGY47W", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FQFTKTSPGMBGY47W.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "FQFTKTSPGMBGY47W.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7572000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FQFTKTSPGMBGY47W.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "FQFTKTSPGMBGY47W", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FQFTKTSPGMBGY47W.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "FQFTKTSPGMBGY47W.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8681000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FQFTKTSPGMBGY47W.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "FQFTKTSPGMBGY47W", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FQFTKTSPGMBGY47W.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "FQFTKTSPGMBGY47W.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15868" - }, - "appliesTo" : [ ] - }, - "FQFTKTSPGMBGY47W.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "FQFTKTSPGMBGY47W.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FQFTKTSPGMBGY47W.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "FQFTKTSPGMBGY47W", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FQFTKTSPGMBGY47W.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "FQFTKTSPGMBGY47W.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5217000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FQFTKTSPGMBGY47W.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "FQFTKTSPGMBGY47W", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FQFTKTSPGMBGY47W.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "FQFTKTSPGMBGY47W.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8005" - }, - "appliesTo" : [ ] - }, - "FQFTKTSPGMBGY47W.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "FQFTKTSPGMBGY47W.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9138000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FQFTKTSPGMBGY47W.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "FQFTKTSPGMBGY47W", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "FQFTKTSPGMBGY47W.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "FQFTKTSPGMBGY47W.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "FQFTKTSPGMBGY47W.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "FQFTKTSPGMBGY47W.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14944" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FQFTKTSPGMBGY47W.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "FQFTKTSPGMBGY47W", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "FQFTKTSPGMBGY47W.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "FQFTKTSPGMBGY47W.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7534" - }, - "appliesTo" : [ ] - }, - "FQFTKTSPGMBGY47W.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "FQFTKTSPGMBGY47W.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FQFTKTSPGMBGY47W.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "FQFTKTSPGMBGY47W", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "FQFTKTSPGMBGY47W.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "FQFTKTSPGMBGY47W.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38314" - }, - "appliesTo" : [ ] - }, - "FQFTKTSPGMBGY47W.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "FQFTKTSPGMBGY47W.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FQFTKTSPGMBGY47W.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "FQFTKTSPGMBGY47W", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FQFTKTSPGMBGY47W.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "FQFTKTSPGMBGY47W.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5973000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "48VURD6MVAZ3M5JX" : { - "48VURD6MVAZ3M5JX.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "48VURD6MVAZ3M5JX", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "48VURD6MVAZ3M5JX.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "48VURD6MVAZ3M5JX.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7410" - }, - "appliesTo" : [ ] - }, - "48VURD6MVAZ3M5JX.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "48VURD6MVAZ3M5JX.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "48VURD6MVAZ3M5JX.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "48VURD6MVAZ3M5JX", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "48VURD6MVAZ3M5JX.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "48VURD6MVAZ3M5JX.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6226" - }, - "appliesTo" : [ ] - }, - "48VURD6MVAZ3M5JX.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "48VURD6MVAZ3M5JX.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "48VURD6MVAZ3M5JX.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "48VURD6MVAZ3M5JX", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "48VURD6MVAZ3M5JX.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "48VURD6MVAZ3M5JX.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "48VURD6MVAZ3M5JX.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "48VURD6MVAZ3M5JX", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "48VURD6MVAZ3M5JX.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "48VURD6MVAZ3M5JX.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9391" - }, - "appliesTo" : [ ] - }, - "48VURD6MVAZ3M5JX.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "48VURD6MVAZ3M5JX.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "48VURD6MVAZ3M5JX.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "48VURD6MVAZ3M5JX", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "48VURD6MVAZ3M5JX.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "48VURD6MVAZ3M5JX.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1420000000" - }, - "appliesTo" : [ ] - }, - "48VURD6MVAZ3M5JX.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "48VURD6MVAZ3M5JX.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2306" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "48VURD6MVAZ3M5JX.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "48VURD6MVAZ3M5JX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "48VURD6MVAZ3M5JX.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "48VURD6MVAZ3M5JX.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4000" - }, - "appliesTo" : [ ] - }, - "48VURD6MVAZ3M5JX.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "48VURD6MVAZ3M5JX.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "48VURD6MVAZ3M5JX.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "48VURD6MVAZ3M5JX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "48VURD6MVAZ3M5JX.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "48VURD6MVAZ3M5JX.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "48VURD6MVAZ3M5JX.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "48VURD6MVAZ3M5JX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "48VURD6MVAZ3M5JX.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "48VURD6MVAZ3M5JX.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "48VURD6MVAZ3M5JX.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "48VURD6MVAZ3M5JX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "48VURD6MVAZ3M5JX.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "48VURD6MVAZ3M5JX.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2041" - }, - "appliesTo" : [ ] - }, - "48VURD6MVAZ3M5JX.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "48VURD6MVAZ3M5JX.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "48VURD6MVAZ3M5JX.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "48VURD6MVAZ3M5JX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "48VURD6MVAZ3M5JX.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "48VURD6MVAZ3M5JX.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "48VURD6MVAZ3M5JX.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "48VURD6MVAZ3M5JX.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3478" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "48VURD6MVAZ3M5JX.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "48VURD6MVAZ3M5JX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "48VURD6MVAZ3M5JX.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "48VURD6MVAZ3M5JX.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6307" - }, - "appliesTo" : [ ] - }, - "48VURD6MVAZ3M5JX.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "48VURD6MVAZ3M5JX.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "RHMYCN6PD6GHSQUU" : { - "RHMYCN6PD6GHSQUU.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "RHMYCN6PD6GHSQUU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RHMYCN6PD6GHSQUU.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "RHMYCN6PD6GHSQUU.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13846" - }, - "appliesTo" : [ ] - }, - "RHMYCN6PD6GHSQUU.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "RHMYCN6PD6GHSQUU.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RHMYCN6PD6GHSQUU.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "RHMYCN6PD6GHSQUU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "RHMYCN6PD6GHSQUU.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "RHMYCN6PD6GHSQUU.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11549" - }, - "appliesTo" : [ ] - }, - "RHMYCN6PD6GHSQUU.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "RHMYCN6PD6GHSQUU.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RHMYCN6PD6GHSQUU.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "RHMYCN6PD6GHSQUU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RHMYCN6PD6GHSQUU.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "RHMYCN6PD6GHSQUU.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RHMYCN6PD6GHSQUU.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "RHMYCN6PD6GHSQUU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RHMYCN6PD6GHSQUU.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "RHMYCN6PD6GHSQUU.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "RHMYCN6PD6GHSQUU.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "RHMYCN6PD6GHSQUU.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6353" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RHMYCN6PD6GHSQUU.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "RHMYCN6PD6GHSQUU", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "RHMYCN6PD6GHSQUU.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "RHMYCN6PD6GHSQUU.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6143" - }, - "appliesTo" : [ ] - }, - "RHMYCN6PD6GHSQUU.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "RHMYCN6PD6GHSQUU.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RHMYCN6PD6GHSQUU.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "RHMYCN6PD6GHSQUU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RHMYCN6PD6GHSQUU.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "RHMYCN6PD6GHSQUU.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2690000000" - }, - "appliesTo" : [ ] - }, - "RHMYCN6PD6GHSQUU.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "RHMYCN6PD6GHSQUU.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7064" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RHMYCN6PD6GHSQUU.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "RHMYCN6PD6GHSQUU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RHMYCN6PD6GHSQUU.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "RHMYCN6PD6GHSQUU.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RHMYCN6PD6GHSQUU.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "RHMYCN6PD6GHSQUU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "RHMYCN6PD6GHSQUU.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "RHMYCN6PD6GHSQUU.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5524" - }, - "appliesTo" : [ ] - }, - "RHMYCN6PD6GHSQUU.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "RHMYCN6PD6GHSQUU.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RHMYCN6PD6GHSQUU.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "RHMYCN6PD6GHSQUU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RHMYCN6PD6GHSQUU.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "RHMYCN6PD6GHSQUU.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RHMYCN6PD6GHSQUU.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "RHMYCN6PD6GHSQUU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "RHMYCN6PD6GHSQUU.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "RHMYCN6PD6GHSQUU.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2819" - }, - "appliesTo" : [ ] - }, - "RHMYCN6PD6GHSQUU.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "RHMYCN6PD6GHSQUU.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RHMYCN6PD6GHSQUU.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "RHMYCN6PD6GHSQUU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RHMYCN6PD6GHSQUU.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "RHMYCN6PD6GHSQUU.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RHMYCN6PD6GHSQUU.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "RHMYCN6PD6GHSQUU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RHMYCN6PD6GHSQUU.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "RHMYCN6PD6GHSQUU.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3241" - }, - "appliesTo" : [ ] - }, - "RHMYCN6PD6GHSQUU.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "RHMYCN6PD6GHSQUU.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "FUJ2WGMJU3VK73ZN" : { - "FUJ2WGMJU3VK73ZN.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "FUJ2WGMJU3VK73ZN", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "FUJ2WGMJU3VK73ZN.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "FUJ2WGMJU3VK73ZN.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FUJ2WGMJU3VK73ZN.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "FUJ2WGMJU3VK73ZN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FUJ2WGMJU3VK73ZN.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "FUJ2WGMJU3VK73ZN.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4490000000" - }, - "appliesTo" : [ ] - }, - "FUJ2WGMJU3VK73ZN.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "FUJ2WGMJU3VK73ZN.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3999" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FUJ2WGMJU3VK73ZN.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "FUJ2WGMJU3VK73ZN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FUJ2WGMJU3VK73ZN.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "FUJ2WGMJU3VK73ZN.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FUJ2WGMJU3VK73ZN.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "FUJ2WGMJU3VK73ZN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FUJ2WGMJU3VK73ZN.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "FUJ2WGMJU3VK73ZN.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7783" - }, - "appliesTo" : [ ] - }, - "FUJ2WGMJU3VK73ZN.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "FUJ2WGMJU3VK73ZN.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FUJ2WGMJU3VK73ZN.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "FUJ2WGMJU3VK73ZN", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "FUJ2WGMJU3VK73ZN.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "FUJ2WGMJU3VK73ZN.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18251" - }, - "appliesTo" : [ ] - }, - "FUJ2WGMJU3VK73ZN.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "FUJ2WGMJU3VK73ZN.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FUJ2WGMJU3VK73ZN.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "FUJ2WGMJU3VK73ZN", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "FUJ2WGMJU3VK73ZN.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "FUJ2WGMJU3VK73ZN.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3507" - }, - "appliesTo" : [ ] - }, - "FUJ2WGMJU3VK73ZN.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "FUJ2WGMJU3VK73ZN.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FUJ2WGMJU3VK73ZN.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "FUJ2WGMJU3VK73ZN", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "FUJ2WGMJU3VK73ZN.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "FUJ2WGMJU3VK73ZN.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FUJ2WGMJU3VK73ZN.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "FUJ2WGMJU3VK73ZN", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "FUJ2WGMJU3VK73ZN.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "FUJ2WGMJU3VK73ZN.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9333" - }, - "appliesTo" : [ ] - }, - "FUJ2WGMJU3VK73ZN.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "FUJ2WGMJU3VK73ZN.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FUJ2WGMJU3VK73ZN.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "FUJ2WGMJU3VK73ZN", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "FUJ2WGMJU3VK73ZN.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "FUJ2WGMJU3VK73ZN.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "FUJ2WGMJU3VK73ZN.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "FUJ2WGMJU3VK73ZN.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12146" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FUJ2WGMJU3VK73ZN.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "FUJ2WGMJU3VK73ZN", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "FUJ2WGMJU3VK73ZN.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "FUJ2WGMJU3VK73ZN.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6475" - }, - "appliesTo" : [ ] - }, - "FUJ2WGMJU3VK73ZN.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "FUJ2WGMJU3VK73ZN.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FUJ2WGMJU3VK73ZN.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "FUJ2WGMJU3VK73ZN", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "FUJ2WGMJU3VK73ZN.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "FUJ2WGMJU3VK73ZN.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "FUJ2WGMJU3VK73ZN.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "FUJ2WGMJU3VK73ZN.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6808" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "57XGZG7W7W67682J" : { - "57XGZG7W7W67682J.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "57XGZG7W7W67682J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "57XGZG7W7W67682J.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "57XGZG7W7W67682J.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1166" - }, - "appliesTo" : [ ] - }, - "57XGZG7W7W67682J.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "57XGZG7W7W67682J.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "57XGZG7W7W67682J.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "57XGZG7W7W67682J", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "57XGZG7W7W67682J.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "57XGZG7W7W67682J.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2664" - }, - "appliesTo" : [ ] - }, - "57XGZG7W7W67682J.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "57XGZG7W7W67682J.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "57XGZG7W7W67682J.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "57XGZG7W7W67682J", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "57XGZG7W7W67682J.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "57XGZG7W7W67682J.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "57XGZG7W7W67682J.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "57XGZG7W7W67682J.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1083" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "57XGZG7W7W67682J.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "57XGZG7W7W67682J", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "57XGZG7W7W67682J.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "57XGZG7W7W67682J.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1146000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "57XGZG7W7W67682J.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "57XGZG7W7W67682J", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "57XGZG7W7W67682J.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "57XGZG7W7W67682J.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1075000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "57XGZG7W7W67682J.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "57XGZG7W7W67682J", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "57XGZG7W7W67682J.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "57XGZG7W7W67682J.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "578" - }, - "appliesTo" : [ ] - }, - "57XGZG7W7W67682J.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "57XGZG7W7W67682J.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "57XGZG7W7W67682J.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "57XGZG7W7W67682J", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "57XGZG7W7W67682J.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "57XGZG7W7W67682J.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "665" - }, - "appliesTo" : [ ] - }, - "57XGZG7W7W67682J.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "57XGZG7W7W67682J.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0853000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "57XGZG7W7W67682J.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "57XGZG7W7W67682J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "57XGZG7W7W67682J.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "57XGZG7W7W67682J.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1384000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "57XGZG7W7W67682J.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "57XGZG7W7W67682J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "57XGZG7W7W67682J.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "57XGZG7W7W67682J.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "327" - }, - "appliesTo" : [ ] - }, - "57XGZG7W7W67682J.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "57XGZG7W7W67682J.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0973000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "57XGZG7W7W67682J.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "57XGZG7W7W67682J", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "57XGZG7W7W67682J.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "57XGZG7W7W67682J.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2880" - }, - "appliesTo" : [ ] - }, - "57XGZG7W7W67682J.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "57XGZG7W7W67682J.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "57XGZG7W7W67682J.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "57XGZG7W7W67682J", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "57XGZG7W7W67682J.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "57XGZG7W7W67682J.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "284" - }, - "appliesTo" : [ ] - }, - "57XGZG7W7W67682J.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "57XGZG7W7W67682J.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0925000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "57XGZG7W7W67682J.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "57XGZG7W7W67682J", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "57XGZG7W7W67682J.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "57XGZG7W7W67682J.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1281000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "KZTDUURKCC3R7F95" : { - "KZTDUURKCC3R7F95.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "KZTDUURKCC3R7F95", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KZTDUURKCC3R7F95.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "KZTDUURKCC3R7F95.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17754" - }, - "appliesTo" : [ ] - }, - "KZTDUURKCC3R7F95.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "KZTDUURKCC3R7F95.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KZTDUURKCC3R7F95.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "KZTDUURKCC3R7F95", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KZTDUURKCC3R7F95.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "KZTDUURKCC3R7F95.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34038" - }, - "appliesTo" : [ ] - }, - "KZTDUURKCC3R7F95.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "KZTDUURKCC3R7F95.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KZTDUURKCC3R7F95.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "KZTDUURKCC3R7F95", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KZTDUURKCC3R7F95.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "KZTDUURKCC3R7F95.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12676" - }, - "appliesTo" : [ ] - }, - "KZTDUURKCC3R7F95.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "KZTDUURKCC3R7F95.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KZTDUURKCC3R7F95.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "KZTDUURKCC3R7F95", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KZTDUURKCC3R7F95.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "KZTDUURKCC3R7F95.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6374" - }, - "appliesTo" : [ ] - }, - "KZTDUURKCC3R7F95.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "KZTDUURKCC3R7F95.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KZTDUURKCC3R7F95.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "KZTDUURKCC3R7F95", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KZTDUURKCC3R7F95.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "KZTDUURKCC3R7F95.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KZTDUURKCC3R7F95.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "KZTDUURKCC3R7F95", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KZTDUURKCC3R7F95.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "KZTDUURKCC3R7F95.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13201" - }, - "appliesTo" : [ ] - }, - "KZTDUURKCC3R7F95.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "KZTDUURKCC3R7F95.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KZTDUURKCC3R7F95.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "KZTDUURKCC3R7F95", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KZTDUURKCC3R7F95.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "KZTDUURKCC3R7F95.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35349" - }, - "appliesTo" : [ ] - }, - "KZTDUURKCC3R7F95.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "KZTDUURKCC3R7F95.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KZTDUURKCC3R7F95.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "KZTDUURKCC3R7F95", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KZTDUURKCC3R7F95.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "KZTDUURKCC3R7F95.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6560000000" - }, - "appliesTo" : [ ] - }, - "KZTDUURKCC3R7F95.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "KZTDUURKCC3R7F95.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17227" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KZTDUURKCC3R7F95.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "KZTDUURKCC3R7F95", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KZTDUURKCC3R7F95.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "KZTDUURKCC3R7F95.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KZTDUURKCC3R7F95.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "KZTDUURKCC3R7F95", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KZTDUURKCC3R7F95.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "KZTDUURKCC3R7F95.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6642" - }, - "appliesTo" : [ ] - }, - "KZTDUURKCC3R7F95.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "KZTDUURKCC3R7F95.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KZTDUURKCC3R7F95.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "KZTDUURKCC3R7F95", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KZTDUURKCC3R7F95.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "KZTDUURKCC3R7F95.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KZTDUURKCC3R7F95.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "KZTDUURKCC3R7F95", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KZTDUURKCC3R7F95.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "KZTDUURKCC3R7F95.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "QY3YSEST3C6FQNQH" : { - "QY3YSEST3C6FQNQH.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "QY3YSEST3C6FQNQH", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QY3YSEST3C6FQNQH.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "QY3YSEST3C6FQNQH.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0231000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QY3YSEST3C6FQNQH.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QY3YSEST3C6FQNQH", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QY3YSEST3C6FQNQH.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QY3YSEST3C6FQNQH.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "458" - }, - "appliesTo" : [ ] - }, - "QY3YSEST3C6FQNQH.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QY3YSEST3C6FQNQH.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QY3YSEST3C6FQNQH.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "QY3YSEST3C6FQNQH", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QY3YSEST3C6FQNQH.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "QY3YSEST3C6FQNQH.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QY3YSEST3C6FQNQH.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "QY3YSEST3C6FQNQH", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QY3YSEST3C6FQNQH.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "QY3YSEST3C6FQNQH.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "550" - }, - "appliesTo" : [ ] - }, - "QY3YSEST3C6FQNQH.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "QY3YSEST3C6FQNQH.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QY3YSEST3C6FQNQH.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QY3YSEST3C6FQNQH", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QY3YSEST3C6FQNQH.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QY3YSEST3C6FQNQH.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0287000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QY3YSEST3C6FQNQH.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "QY3YSEST3C6FQNQH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QY3YSEST3C6FQNQH.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "QY3YSEST3C6FQNQH.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QY3YSEST3C6FQNQH.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "QY3YSEST3C6FQNQH.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "270" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QY3YSEST3C6FQNQH.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QY3YSEST3C6FQNQH", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QY3YSEST3C6FQNQH.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QY3YSEST3C6FQNQH.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "120" - }, - "appliesTo" : [ ] - }, - "QY3YSEST3C6FQNQH.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QY3YSEST3C6FQNQH.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0137000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QY3YSEST3C6FQNQH.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "QY3YSEST3C6FQNQH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QY3YSEST3C6FQNQH.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "QY3YSEST3C6FQNQH.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0157000000" - }, - "appliesTo" : [ ] - }, - "QY3YSEST3C6FQNQH.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "QY3YSEST3C6FQNQH.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "138" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QY3YSEST3C6FQNQH.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "QY3YSEST3C6FQNQH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QY3YSEST3C6FQNQH.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "QY3YSEST3C6FQNQH.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0331000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QY3YSEST3C6FQNQH.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QY3YSEST3C6FQNQH", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QY3YSEST3C6FQNQH.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QY3YSEST3C6FQNQH.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QY3YSEST3C6FQNQH.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QY3YSEST3C6FQNQH.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "235" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QY3YSEST3C6FQNQH.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QY3YSEST3C6FQNQH", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QY3YSEST3C6FQNQH.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QY3YSEST3C6FQNQH.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "244" - }, - "appliesTo" : [ ] - }, - "QY3YSEST3C6FQNQH.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QY3YSEST3C6FQNQH.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0093000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QY3YSEST3C6FQNQH.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "QY3YSEST3C6FQNQH", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QY3YSEST3C6FQNQH.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "QY3YSEST3C6FQNQH.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "280" - }, - "appliesTo" : [ ] - }, - "QY3YSEST3C6FQNQH.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "QY3YSEST3C6FQNQH.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0107000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "JRRHF5CXWN8M3MCY" : { - "JRRHF5CXWN8M3MCY.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "JRRHF5CXWN8M3MCY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JRRHF5CXWN8M3MCY.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "JRRHF5CXWN8M3MCY.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15276" - }, - "appliesTo" : [ ] - }, - "JRRHF5CXWN8M3MCY.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "JRRHF5CXWN8M3MCY.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "JRRHF5CXWN8M3MCY.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "JRRHF5CXWN8M3MCY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "JRRHF5CXWN8M3MCY.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "JRRHF5CXWN8M3MCY.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "JRRHF5CXWN8M3MCY.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "JRRHF5CXWN8M3MCY", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "JRRHF5CXWN8M3MCY.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "JRRHF5CXWN8M3MCY.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6950000000" - }, - "appliesTo" : [ ] - }, - "JRRHF5CXWN8M3MCY.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "JRRHF5CXWN8M3MCY.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18277" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "JRRHF5CXWN8M3MCY.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "JRRHF5CXWN8M3MCY", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JRRHF5CXWN8M3MCY.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "JRRHF5CXWN8M3MCY.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23574" - }, - "appliesTo" : [ ] - }, - "JRRHF5CXWN8M3MCY.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "JRRHF5CXWN8M3MCY.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JRRHF5CXWN8M3MCY.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "JRRHF5CXWN8M3MCY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "JRRHF5CXWN8M3MCY.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "JRRHF5CXWN8M3MCY.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35786" - }, - "appliesTo" : [ ] - }, - "JRRHF5CXWN8M3MCY.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "JRRHF5CXWN8M3MCY.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "JRRHF5CXWN8M3MCY.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "JRRHF5CXWN8M3MCY", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JRRHF5CXWN8M3MCY.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "JRRHF5CXWN8M3MCY.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13303" - }, - "appliesTo" : [ ] - }, - "JRRHF5CXWN8M3MCY.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "JRRHF5CXWN8M3MCY.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JRRHF5CXWN8M3MCY.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "JRRHF5CXWN8M3MCY", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "JRRHF5CXWN8M3MCY.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "JRRHF5CXWN8M3MCY.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6820" - }, - "appliesTo" : [ ] - }, - "JRRHF5CXWN8M3MCY.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "JRRHF5CXWN8M3MCY.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "JRRHF5CXWN8M3MCY.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "JRRHF5CXWN8M3MCY", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JRRHF5CXWN8M3MCY.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "JRRHF5CXWN8M3MCY.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "JRRHF5CXWN8M3MCY.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "JRRHF5CXWN8M3MCY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JRRHF5CXWN8M3MCY.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "JRRHF5CXWN8M3MCY.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "JRRHF5CXWN8M3MCY.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "JRRHF5CXWN8M3MCY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JRRHF5CXWN8M3MCY.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "JRRHF5CXWN8M3MCY.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7822" - }, - "appliesTo" : [ ] - }, - "JRRHF5CXWN8M3MCY.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "JRRHF5CXWN8M3MCY.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "JRRHF5CXWN8M3MCY.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "JRRHF5CXWN8M3MCY", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JRRHF5CXWN8M3MCY.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "JRRHF5CXWN8M3MCY.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12562" - }, - "appliesTo" : [ ] - }, - "JRRHF5CXWN8M3MCY.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "JRRHF5CXWN8M3MCY.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "9CHFMGVK3AF7D8KU" : { - "9CHFMGVK3AF7D8KU.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "9CHFMGVK3AF7D8KU", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "9CHFMGVK3AF7D8KU.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "9CHFMGVK3AF7D8KU.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3313" - }, - "appliesTo" : [ ] - }, - "9CHFMGVK3AF7D8KU.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "9CHFMGVK3AF7D8KU.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9CHFMGVK3AF7D8KU.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "9CHFMGVK3AF7D8KU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "9CHFMGVK3AF7D8KU.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "9CHFMGVK3AF7D8KU.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7723" - }, - "appliesTo" : [ ] - }, - "9CHFMGVK3AF7D8KU.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "9CHFMGVK3AF7D8KU.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9CHFMGVK3AF7D8KU.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "9CHFMGVK3AF7D8KU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9CHFMGVK3AF7D8KU.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "9CHFMGVK3AF7D8KU.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8632" - }, - "appliesTo" : [ ] - }, - "9CHFMGVK3AF7D8KU.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "9CHFMGVK3AF7D8KU.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9CHFMGVK3AF7D8KU.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "9CHFMGVK3AF7D8KU", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9CHFMGVK3AF7D8KU.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "9CHFMGVK3AF7D8KU.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9CHFMGVK3AF7D8KU.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "9CHFMGVK3AF7D8KU", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "9CHFMGVK3AF7D8KU.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "9CHFMGVK3AF7D8KU.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9CHFMGVK3AF7D8KU.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "9CHFMGVK3AF7D8KU", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "9CHFMGVK3AF7D8KU.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "9CHFMGVK3AF7D8KU.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6087" - }, - "appliesTo" : [ ] - }, - "9CHFMGVK3AF7D8KU.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "9CHFMGVK3AF7D8KU.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9CHFMGVK3AF7D8KU.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "9CHFMGVK3AF7D8KU", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9CHFMGVK3AF7D8KU.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "9CHFMGVK3AF7D8KU.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14961" - }, - "appliesTo" : [ ] - }, - "9CHFMGVK3AF7D8KU.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "9CHFMGVK3AF7D8KU.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9CHFMGVK3AF7D8KU.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "9CHFMGVK3AF7D8KU", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "9CHFMGVK3AF7D8KU.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "9CHFMGVK3AF7D8KU.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4830000000" - }, - "appliesTo" : [ ] - }, - "9CHFMGVK3AF7D8KU.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "9CHFMGVK3AF7D8KU.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8945" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9CHFMGVK3AF7D8KU.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "9CHFMGVK3AF7D8KU", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "9CHFMGVK3AF7D8KU.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "9CHFMGVK3AF7D8KU.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21221" - }, - "appliesTo" : [ ] - }, - "9CHFMGVK3AF7D8KU.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "9CHFMGVK3AF7D8KU.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9CHFMGVK3AF7D8KU.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "9CHFMGVK3AF7D8KU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9CHFMGVK3AF7D8KU.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "9CHFMGVK3AF7D8KU.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9CHFMGVK3AF7D8KU.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "9CHFMGVK3AF7D8KU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9CHFMGVK3AF7D8KU.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "9CHFMGVK3AF7D8KU.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3823" - }, - "appliesTo" : [ ] - }, - "9CHFMGVK3AF7D8KU.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "9CHFMGVK3AF7D8KU.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "9YXTC4KPBJSYNVNU" : { - "9YXTC4KPBJSYNVNU.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "9YXTC4KPBJSYNVNU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9YXTC4KPBJSYNVNU.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "9YXTC4KPBJSYNVNU.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "141452" - }, - "appliesTo" : [ ] - }, - "9YXTC4KPBJSYNVNU.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "9YXTC4KPBJSYNVNU.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9YXTC4KPBJSYNVNU.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "9YXTC4KPBJSYNVNU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9YXTC4KPBJSYNVNU.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "9YXTC4KPBJSYNVNU.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "70806" - }, - "appliesTo" : [ ] - }, - "9YXTC4KPBJSYNVNU.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "9YXTC4KPBJSYNVNU.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.0830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9YXTC4KPBJSYNVNU.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "9YXTC4KPBJSYNVNU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9YXTC4KPBJSYNVNU.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "9YXTC4KPBJSYNVNU.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "209343" - }, - "appliesTo" : [ ] - }, - "9YXTC4KPBJSYNVNU.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "9YXTC4KPBJSYNVNU.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.9660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9YXTC4KPBJSYNVNU.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "9YXTC4KPBJSYNVNU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9YXTC4KPBJSYNVNU.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "9YXTC4KPBJSYNVNU.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.9860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9YXTC4KPBJSYNVNU.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "9YXTC4KPBJSYNVNU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9YXTC4KPBJSYNVNU.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "9YXTC4KPBJSYNVNU.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "9YXTC4KPBJSYNVNU.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "9YXTC4KPBJSYNVNU.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "415377" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9YXTC4KPBJSYNVNU.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "9YXTC4KPBJSYNVNU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9YXTC4KPBJSYNVNU.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "9YXTC4KPBJSYNVNU.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "208157" - }, - "appliesTo" : [ ] - }, - "9YXTC4KPBJSYNVNU.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "9YXTC4KPBJSYNVNU.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.9210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9YXTC4KPBJSYNVNU.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "9YXTC4KPBJSYNVNU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9YXTC4KPBJSYNVNU.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "9YXTC4KPBJSYNVNU.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.1520000000" - }, - "appliesTo" : [ ] - }, - "9YXTC4KPBJSYNVNU.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "9YXTC4KPBJSYNVNU.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "71409" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9YXTC4KPBJSYNVNU.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "9YXTC4KPBJSYNVNU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9YXTC4KPBJSYNVNU.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "9YXTC4KPBJSYNVNU.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.2120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9YXTC4KPBJSYNVNU.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "9YXTC4KPBJSYNVNU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9YXTC4KPBJSYNVNU.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "9YXTC4KPBJSYNVNU.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.3560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9YXTC4KPBJSYNVNU.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "9YXTC4KPBJSYNVNU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9YXTC4KPBJSYNVNU.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "9YXTC4KPBJSYNVNU.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.8890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9YXTC4KPBJSYNVNU.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "9YXTC4KPBJSYNVNU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9YXTC4KPBJSYNVNU.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "9YXTC4KPBJSYNVNU.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "142634" - }, - "appliesTo" : [ ] - }, - "9YXTC4KPBJSYNVNU.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "9YXTC4KPBJSYNVNU.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9YXTC4KPBJSYNVNU.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "9YXTC4KPBJSYNVNU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9YXTC4KPBJSYNVNU.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "9YXTC4KPBJSYNVNU.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "418326" - }, - "appliesTo" : [ ] - }, - "9YXTC4KPBJSYNVNU.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "9YXTC4KPBJSYNVNU.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "VCP5S8DX28AZ8RR2" : { - "VCP5S8DX28AZ8RR2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "VCP5S8DX28AZ8RR2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VCP5S8DX28AZ8RR2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "VCP5S8DX28AZ8RR2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6040000000" - }, - "appliesTo" : [ ] - }, - "VCP5S8DX28AZ8RR2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "VCP5S8DX28AZ8RR2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31571" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VCP5S8DX28AZ8RR2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "VCP5S8DX28AZ8RR2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VCP5S8DX28AZ8RR2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "VCP5S8DX28AZ8RR2.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.2316000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VCP5S8DX28AZ8RR2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "VCP5S8DX28AZ8RR2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VCP5S8DX28AZ8RR2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "VCP5S8DX28AZ8RR2.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "VCP5S8DX28AZ8RR2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "VCP5S8DX28AZ8RR2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "63059" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VCP5S8DX28AZ8RR2.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "VCP5S8DX28AZ8RR2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VCP5S8DX28AZ8RR2.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "VCP5S8DX28AZ8RR2.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.1334000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VCP5S8DX28AZ8RR2.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "VCP5S8DX28AZ8RR2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VCP5S8DX28AZ8RR2.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "VCP5S8DX28AZ8RR2.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "186500" - }, - "appliesTo" : [ ] - }, - "VCP5S8DX28AZ8RR2.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "VCP5S8DX28AZ8RR2.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VCP5S8DX28AZ8RR2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "VCP5S8DX28AZ8RR2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VCP5S8DX28AZ8RR2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "VCP5S8DX28AZ8RR2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "184927" - }, - "appliesTo" : [ ] - }, - "VCP5S8DX28AZ8RR2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "VCP5S8DX28AZ8RR2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VCP5S8DX28AZ8RR2.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "VCP5S8DX28AZ8RR2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VCP5S8DX28AZ8RR2.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "VCP5S8DX28AZ8RR2.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.0816000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VCP5S8DX28AZ8RR2.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "VCP5S8DX28AZ8RR2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VCP5S8DX28AZ8RR2.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "VCP5S8DX28AZ8RR2.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "63667" - }, - "appliesTo" : [ ] - }, - "VCP5S8DX28AZ8RR2.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "VCP5S8DX28AZ8RR2.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VCP5S8DX28AZ8RR2.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "VCP5S8DX28AZ8RR2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VCP5S8DX28AZ8RR2.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "VCP5S8DX28AZ8RR2.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "93347" - }, - "appliesTo" : [ ] - }, - "VCP5S8DX28AZ8RR2.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "VCP5S8DX28AZ8RR2.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VCP5S8DX28AZ8RR2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "VCP5S8DX28AZ8RR2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VCP5S8DX28AZ8RR2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "VCP5S8DX28AZ8RR2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "92716" - }, - "appliesTo" : [ ] - }, - "VCP5S8DX28AZ8RR2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "VCP5S8DX28AZ8RR2.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VCP5S8DX28AZ8RR2.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "VCP5S8DX28AZ8RR2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VCP5S8DX28AZ8RR2.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "VCP5S8DX28AZ8RR2.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31881" - }, - "appliesTo" : [ ] - }, - "VCP5S8DX28AZ8RR2.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "VCP5S8DX28AZ8RR2.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6394000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VCP5S8DX28AZ8RR2.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "VCP5S8DX28AZ8RR2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VCP5S8DX28AZ8RR2.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "VCP5S8DX28AZ8RR2.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3059000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "DPPVX7QQ3SGX3TED" : { - "DPPVX7QQ3SGX3TED.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "DPPVX7QQ3SGX3TED", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DPPVX7QQ3SGX3TED.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "DPPVX7QQ3SGX3TED.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9195000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DPPVX7QQ3SGX3TED.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "DPPVX7QQ3SGX3TED", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DPPVX7QQ3SGX3TED.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "DPPVX7QQ3SGX3TED.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7465" - }, - "appliesTo" : [ ] - }, - "DPPVX7QQ3SGX3TED.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "DPPVX7QQ3SGX3TED.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9822000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DPPVX7QQ3SGX3TED.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "DPPVX7QQ3SGX3TED", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "DPPVX7QQ3SGX3TED.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "DPPVX7QQ3SGX3TED.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6491" - }, - "appliesTo" : [ ] - }, - "DPPVX7QQ3SGX3TED.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "DPPVX7QQ3SGX3TED.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DPPVX7QQ3SGX3TED.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "DPPVX7QQ3SGX3TED", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "DPPVX7QQ3SGX3TED.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "DPPVX7QQ3SGX3TED.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6861000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DPPVX7QQ3SGX3TED.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "DPPVX7QQ3SGX3TED", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "DPPVX7QQ3SGX3TED.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "DPPVX7QQ3SGX3TED.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29995" - }, - "appliesTo" : [ ] - }, - "DPPVX7QQ3SGX3TED.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "DPPVX7QQ3SGX3TED.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DPPVX7QQ3SGX3TED.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "DPPVX7QQ3SGX3TED", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "DPPVX7QQ3SGX3TED.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "DPPVX7QQ3SGX3TED.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DPPVX7QQ3SGX3TED.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "DPPVX7QQ3SGX3TED", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "DPPVX7QQ3SGX3TED.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "DPPVX7QQ3SGX3TED.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4663000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DPPVX7QQ3SGX3TED.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "DPPVX7QQ3SGX3TED", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "DPPVX7QQ3SGX3TED.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "DPPVX7QQ3SGX3TED.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16259" - }, - "appliesTo" : [ ] - }, - "DPPVX7QQ3SGX3TED.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "DPPVX7QQ3SGX3TED.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7487000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DPPVX7QQ3SGX3TED.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "DPPVX7QQ3SGX3TED", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DPPVX7QQ3SGX3TED.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "DPPVX7QQ3SGX3TED.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15770" - }, - "appliesTo" : [ ] - }, - "DPPVX7QQ3SGX3TED.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "DPPVX7QQ3SGX3TED.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DPPVX7QQ3SGX3TED.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "DPPVX7QQ3SGX3TED", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "DPPVX7QQ3SGX3TED.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "DPPVX7QQ3SGX3TED.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35284" - }, - "appliesTo" : [ ] - }, - "DPPVX7QQ3SGX3TED.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "DPPVX7QQ3SGX3TED.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DPPVX7QQ3SGX3TED.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "DPPVX7QQ3SGX3TED", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "DPPVX7QQ3SGX3TED.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "DPPVX7QQ3SGX3TED.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13861" - }, - "appliesTo" : [ ] - }, - "DPPVX7QQ3SGX3TED.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "DPPVX7QQ3SGX3TED.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DPPVX7QQ3SGX3TED.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "DPPVX7QQ3SGX3TED", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "DPPVX7QQ3SGX3TED.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "DPPVX7QQ3SGX3TED.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6680000000" - }, - "appliesTo" : [ ] - }, - "DPPVX7QQ3SGX3TED.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "DPPVX7QQ3SGX3TED.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14138" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "PSF39FBPC6PFD9W3" : { - "PSF39FBPC6PFD9W3.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "PSF39FBPC6PFD9W3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PSF39FBPC6PFD9W3.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "PSF39FBPC6PFD9W3.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31737" - }, - "appliesTo" : [ ] - }, - "PSF39FBPC6PFD9W3.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "PSF39FBPC6PFD9W3.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PSF39FBPC6PFD9W3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "PSF39FBPC6PFD9W3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PSF39FBPC6PFD9W3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "PSF39FBPC6PFD9W3.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.2050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "PSF39FBPC6PFD9W3.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "PSF39FBPC6PFD9W3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PSF39FBPC6PFD9W3.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "PSF39FBPC6PFD9W3.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.2690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "PSF39FBPC6PFD9W3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "PSF39FBPC6PFD9W3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PSF39FBPC6PFD9W3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "PSF39FBPC6PFD9W3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "92514" - }, - "appliesTo" : [ ] - }, - "PSF39FBPC6PFD9W3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "PSF39FBPC6PFD9W3.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PSF39FBPC6PFD9W3.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "PSF39FBPC6PFD9W3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PSF39FBPC6PFD9W3.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "PSF39FBPC6PFD9W3.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "93041" - }, - "appliesTo" : [ ] - }, - "PSF39FBPC6PFD9W3.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "PSF39FBPC6PFD9W3.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PSF39FBPC6PFD9W3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "PSF39FBPC6PFD9W3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PSF39FBPC6PFD9W3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "PSF39FBPC6PFD9W3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31469" - }, - "appliesTo" : [ ] - }, - "PSF39FBPC6PFD9W3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "PSF39FBPC6PFD9W3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PSF39FBPC6PFD9W3.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "PSF39FBPC6PFD9W3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PSF39FBPC6PFD9W3.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "PSF39FBPC6PFD9W3.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "63393" - }, - "appliesTo" : [ ] - }, - "PSF39FBPC6PFD9W3.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "PSF39FBPC6PFD9W3.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PSF39FBPC6PFD9W3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "PSF39FBPC6PFD9W3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PSF39FBPC6PFD9W3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "PSF39FBPC6PFD9W3.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "PSF39FBPC6PFD9W3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "PSF39FBPC6PFD9W3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "62867" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PSF39FBPC6PFD9W3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "PSF39FBPC6PFD9W3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PSF39FBPC6PFD9W3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "PSF39FBPC6PFD9W3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "184612" - }, - "appliesTo" : [ ] - }, - "PSF39FBPC6PFD9W3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "PSF39FBPC6PFD9W3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PSF39FBPC6PFD9W3.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "PSF39FBPC6PFD9W3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PSF39FBPC6PFD9W3.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "PSF39FBPC6PFD9W3.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.0620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "PSF39FBPC6PFD9W3.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "PSF39FBPC6PFD9W3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PSF39FBPC6PFD9W3.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "PSF39FBPC6PFD9W3.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "185923" - }, - "appliesTo" : [ ] - }, - "PSF39FBPC6PFD9W3.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "PSF39FBPC6PFD9W3.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PSF39FBPC6PFD9W3.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "PSF39FBPC6PFD9W3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PSF39FBPC6PFD9W3.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "PSF39FBPC6PFD9W3.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.1050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "Z7CW8886929Z9X5V" : { - "Z7CW8886929Z9X5V.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "Z7CW8886929Z9X5V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z7CW8886929Z9X5V.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "Z7CW8886929Z9X5V.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5126" - }, - "appliesTo" : [ ] - }, - "Z7CW8886929Z9X5V.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "Z7CW8886929Z9X5V.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Z7CW8886929Z9X5V.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "Z7CW8886929Z9X5V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z7CW8886929Z9X5V.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "Z7CW8886929Z9X5V.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3802000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Z7CW8886929Z9X5V.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Z7CW8886929Z9X5V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z7CW8886929Z9X5V.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Z7CW8886929Z9X5V.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8696" - }, - "appliesTo" : [ ] - }, - "Z7CW8886929Z9X5V.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Z7CW8886929Z9X5V.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Z7CW8886929Z9X5V.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "Z7CW8886929Z9X5V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z7CW8886929Z9X5V.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "Z7CW8886929Z9X5V.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4372000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Z7CW8886929Z9X5V.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Z7CW8886929Z9X5V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z7CW8886929Z9X5V.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Z7CW8886929Z9X5V.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4457" - }, - "appliesTo" : [ ] - }, - "Z7CW8886929Z9X5V.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Z7CW8886929Z9X5V.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Z7CW8886929Z9X5V.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "Z7CW8886929Z9X5V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z7CW8886929Z9X5V.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "Z7CW8886929Z9X5V.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5319" - }, - "appliesTo" : [ ] - }, - "Z7CW8886929Z9X5V.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "Z7CW8886929Z9X5V.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2024000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z7CW8886929Z9X5V.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Z7CW8886929Z9X5V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z7CW8886929Z9X5V.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Z7CW8886929Z9X5V.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4625" - }, - "appliesTo" : [ ] - }, - "Z7CW8886929Z9X5V.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Z7CW8886929Z9X5V.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z7CW8886929Z9X5V.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "Z7CW8886929Z9X5V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z7CW8886929Z9X5V.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "Z7CW8886929Z9X5V.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6269000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Z7CW8886929Z9X5V.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "Z7CW8886929Z9X5V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z7CW8886929Z9X5V.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "Z7CW8886929Z9X5V.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2615" - }, - "appliesTo" : [ ] - }, - "Z7CW8886929Z9X5V.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "Z7CW8886929Z9X5V.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2985000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z7CW8886929Z9X5V.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "Z7CW8886929Z9X5V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z7CW8886929Z9X5V.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "Z7CW8886929Z9X5V.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10425" - }, - "appliesTo" : [ ] - }, - "Z7CW8886929Z9X5V.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "Z7CW8886929Z9X5V.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Z7CW8886929Z9X5V.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Z7CW8886929Z9X5V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z7CW8886929Z9X5V.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Z7CW8886929Z9X5V.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5452000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Z7CW8886929Z9X5V.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Z7CW8886929Z9X5V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z7CW8886929Z9X5V.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Z7CW8886929Z9X5V.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2274" - }, - "appliesTo" : [ ] - }, - "Z7CW8886929Z9X5V.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Z7CW8886929Z9X5V.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2596000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "MGFVS9REN5EG5F65" : { - "MGFVS9REN5EG5F65.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "MGFVS9REN5EG5F65", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MGFVS9REN5EG5F65.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "MGFVS9REN5EG5F65.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MGFVS9REN5EG5F65.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "MGFVS9REN5EG5F65", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MGFVS9REN5EG5F65.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "MGFVS9REN5EG5F65.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1117" - }, - "appliesTo" : [ ] - }, - "MGFVS9REN5EG5F65.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "MGFVS9REN5EG5F65.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MGFVS9REN5EG5F65.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "MGFVS9REN5EG5F65", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MGFVS9REN5EG5F65.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "MGFVS9REN5EG5F65.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MGFVS9REN5EG5F65.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "MGFVS9REN5EG5F65", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MGFVS9REN5EG5F65.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "MGFVS9REN5EG5F65.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2001" - }, - "appliesTo" : [ ] - }, - "MGFVS9REN5EG5F65.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "MGFVS9REN5EG5F65.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MGFVS9REN5EG5F65.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "MGFVS9REN5EG5F65", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MGFVS9REN5EG5F65.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "MGFVS9REN5EG5F65.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7211" - }, - "appliesTo" : [ ] - }, - "MGFVS9REN5EG5F65.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "MGFVS9REN5EG5F65.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MGFVS9REN5EG5F65.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "MGFVS9REN5EG5F65", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MGFVS9REN5EG5F65.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "MGFVS9REN5EG5F65.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3069" - }, - "appliesTo" : [ ] - }, - "MGFVS9REN5EG5F65.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "MGFVS9REN5EG5F65.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MGFVS9REN5EG5F65.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "MGFVS9REN5EG5F65", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MGFVS9REN5EG5F65.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "MGFVS9REN5EG5F65.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "MGFVS9REN5EG5F65.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "MGFVS9REN5EG5F65.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3331" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MGFVS9REN5EG5F65.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "MGFVS9REN5EG5F65", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MGFVS9REN5EG5F65.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "MGFVS9REN5EG5F65.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2265" - }, - "appliesTo" : [ ] - }, - "MGFVS9REN5EG5F65.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "MGFVS9REN5EG5F65.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MGFVS9REN5EG5F65.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "MGFVS9REN5EG5F65", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MGFVS9REN5EG5F65.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "MGFVS9REN5EG5F65.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MGFVS9REN5EG5F65.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "MGFVS9REN5EG5F65", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MGFVS9REN5EG5F65.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "MGFVS9REN5EG5F65.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "983" - }, - "appliesTo" : [ ] - }, - "MGFVS9REN5EG5F65.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "MGFVS9REN5EG5F65.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MGFVS9REN5EG5F65.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "MGFVS9REN5EG5F65", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MGFVS9REN5EG5F65.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "MGFVS9REN5EG5F65.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "MGFVS9REN5EG5F65.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "MGFVS9REN5EG5F65.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7867" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MGFVS9REN5EG5F65.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "MGFVS9REN5EG5F65", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MGFVS9REN5EG5F65.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "MGFVS9REN5EG5F65.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "XFJWBADTXUKBRGTC" : { - "XFJWBADTXUKBRGTC.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XFJWBADTXUKBRGTC", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XFJWBADTXUKBRGTC.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XFJWBADTXUKBRGTC.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XFJWBADTXUKBRGTC.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XFJWBADTXUKBRGTC", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "XFJWBADTXUKBRGTC.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XFJWBADTXUKBRGTC.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34210" - }, - "appliesTo" : [ ] - }, - "XFJWBADTXUKBRGTC.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XFJWBADTXUKBRGTC.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XFJWBADTXUKBRGTC.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "XFJWBADTXUKBRGTC", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XFJWBADTXUKBRGTC.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "XFJWBADTXUKBRGTC.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8336000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XFJWBADTXUKBRGTC.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XFJWBADTXUKBRGTC", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XFJWBADTXUKBRGTC.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XFJWBADTXUKBRGTC.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "64315" - }, - "appliesTo" : [ ] - }, - "XFJWBADTXUKBRGTC.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XFJWBADTXUKBRGTC.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XFJWBADTXUKBRGTC.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "XFJWBADTXUKBRGTC", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XFJWBADTXUKBRGTC.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "XFJWBADTXUKBRGTC.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3800000000" - }, - "appliesTo" : [ ] - }, - "XFJWBADTXUKBRGTC.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "XFJWBADTXUKBRGTC.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "36266" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XFJWBADTXUKBRGTC.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XFJWBADTXUKBRGTC", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XFJWBADTXUKBRGTC.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XFJWBADTXUKBRGTC.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13228" - }, - "appliesTo" : [ ] - }, - "XFJWBADTXUKBRGTC.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XFJWBADTXUKBRGTC.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XFJWBADTXUKBRGTC.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XFJWBADTXUKBRGTC", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XFJWBADTXUKBRGTC.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XFJWBADTXUKBRGTC.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "XFJWBADTXUKBRGTC.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XFJWBADTXUKBRGTC.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26248" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XFJWBADTXUKBRGTC.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "XFJWBADTXUKBRGTC", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XFJWBADTXUKBRGTC.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "XFJWBADTXUKBRGTC.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XFJWBADTXUKBRGTC.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "XFJWBADTXUKBRGTC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XFJWBADTXUKBRGTC.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "XFJWBADTXUKBRGTC.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27768" - }, - "appliesTo" : [ ] - }, - "XFJWBADTXUKBRGTC.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "XFJWBADTXUKBRGTC.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XFJWBADTXUKBRGTC.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "XFJWBADTXUKBRGTC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XFJWBADTXUKBRGTC.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "XFJWBADTXUKBRGTC.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2649000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XFJWBADTXUKBRGTC.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "XFJWBADTXUKBRGTC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XFJWBADTXUKBRGTC.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "XFJWBADTXUKBRGTC.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14003" - }, - "appliesTo" : [ ] - }, - "XFJWBADTXUKBRGTC.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "XFJWBADTXUKBRGTC.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5985000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XFJWBADTXUKBRGTC.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "XFJWBADTXUKBRGTC", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XFJWBADTXUKBRGTC.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "XFJWBADTXUKBRGTC.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "72049" - }, - "appliesTo" : [ ] - }, - "XFJWBADTXUKBRGTC.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "XFJWBADTXUKBRGTC.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "CS26JSU2ZC88WXHJ" : { - "CS26JSU2ZC88WXHJ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "CS26JSU2ZC88WXHJ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "CS26JSU2ZC88WXHJ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "CS26JSU2ZC88WXHJ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "928" - }, - "appliesTo" : [ ] - }, - "CS26JSU2ZC88WXHJ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "CS26JSU2ZC88WXHJ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CS26JSU2ZC88WXHJ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "CS26JSU2ZC88WXHJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "CS26JSU2ZC88WXHJ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "CS26JSU2ZC88WXHJ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0800000000" - }, - "appliesTo" : [ ] - }, - "CS26JSU2ZC88WXHJ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "CS26JSU2ZC88WXHJ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "247" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CS26JSU2ZC88WXHJ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "CS26JSU2ZC88WXHJ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "CS26JSU2ZC88WXHJ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "CS26JSU2ZC88WXHJ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2254" - }, - "appliesTo" : [ ] - }, - "CS26JSU2ZC88WXHJ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "CS26JSU2ZC88WXHJ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CS26JSU2ZC88WXHJ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "CS26JSU2ZC88WXHJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "CS26JSU2ZC88WXHJ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "CS26JSU2ZC88WXHJ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CS26JSU2ZC88WXHJ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "CS26JSU2ZC88WXHJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "CS26JSU2ZC88WXHJ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "CS26JSU2ZC88WXHJ.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0770000000" - }, - "appliesTo" : [ ] - }, - "CS26JSU2ZC88WXHJ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "CS26JSU2ZC88WXHJ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "375" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "YSGQ6AZH4GU6W9TM" : { - "YSGQ6AZH4GU6W9TM.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "YSGQ6AZH4GU6W9TM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YSGQ6AZH4GU6W9TM.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "YSGQ6AZH4GU6W9TM.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YSGQ6AZH4GU6W9TM.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "YSGQ6AZH4GU6W9TM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YSGQ6AZH4GU6W9TM.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "YSGQ6AZH4GU6W9TM.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YSGQ6AZH4GU6W9TM.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YSGQ6AZH4GU6W9TM", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "YSGQ6AZH4GU6W9TM.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YSGQ6AZH4GU6W9TM.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9120000000" - }, - "appliesTo" : [ ] - }, - "YSGQ6AZH4GU6W9TM.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YSGQ6AZH4GU6W9TM.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7993" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YSGQ6AZH4GU6W9TM.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "YSGQ6AZH4GU6W9TM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YSGQ6AZH4GU6W9TM.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "YSGQ6AZH4GU6W9TM.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YSGQ6AZH4GU6W9TM.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "YSGQ6AZH4GU6W9TM.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46927" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YSGQ6AZH4GU6W9TM.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "YSGQ6AZH4GU6W9TM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YSGQ6AZH4GU6W9TM.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "YSGQ6AZH4GU6W9TM.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16055" - }, - "appliesTo" : [ ] - }, - "YSGQ6AZH4GU6W9TM.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "YSGQ6AZH4GU6W9TM.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YSGQ6AZH4GU6W9TM.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "YSGQ6AZH4GU6W9TM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YSGQ6AZH4GU6W9TM.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "YSGQ6AZH4GU6W9TM.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YSGQ6AZH4GU6W9TM.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "YSGQ6AZH4GU6W9TM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YSGQ6AZH4GU6W9TM.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "YSGQ6AZH4GU6W9TM.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8041" - }, - "appliesTo" : [ ] - }, - "YSGQ6AZH4GU6W9TM.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "YSGQ6AZH4GU6W9TM.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YSGQ6AZH4GU6W9TM.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YSGQ6AZH4GU6W9TM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YSGQ6AZH4GU6W9TM.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YSGQ6AZH4GU6W9TM.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YSGQ6AZH4GU6W9TM.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YSGQ6AZH4GU6W9TM", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "YSGQ6AZH4GU6W9TM.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YSGQ6AZH4GU6W9TM.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23328" - }, - "appliesTo" : [ ] - }, - "YSGQ6AZH4GU6W9TM.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YSGQ6AZH4GU6W9TM.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YSGQ6AZH4GU6W9TM.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "YSGQ6AZH4GU6W9TM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YSGQ6AZH4GU6W9TM.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "YSGQ6AZH4GU6W9TM.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23491" - }, - "appliesTo" : [ ] - }, - "YSGQ6AZH4GU6W9TM.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "YSGQ6AZH4GU6W9TM.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YSGQ6AZH4GU6W9TM.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YSGQ6AZH4GU6W9TM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YSGQ6AZH4GU6W9TM.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YSGQ6AZH4GU6W9TM.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YSGQ6AZH4GU6W9TM.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YSGQ6AZH4GU6W9TM.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15961" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YSGQ6AZH4GU6W9TM.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YSGQ6AZH4GU6W9TM", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "YSGQ6AZH4GU6W9TM.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YSGQ6AZH4GU6W9TM.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46512" - }, - "appliesTo" : [ ] - }, - "YSGQ6AZH4GU6W9TM.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YSGQ6AZH4GU6W9TM.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "2Y3RARMUM73VYH92" : { - "2Y3RARMUM73VYH92.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "2Y3RARMUM73VYH92", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "2Y3RARMUM73VYH92.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "2Y3RARMUM73VYH92.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2Y3RARMUM73VYH92.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "2Y3RARMUM73VYH92", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "2Y3RARMUM73VYH92.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "2Y3RARMUM73VYH92.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "2Y3RARMUM73VYH92.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "2Y3RARMUM73VYH92.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25260" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2Y3RARMUM73VYH92.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "2Y3RARMUM73VYH92", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "2Y3RARMUM73VYH92.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "2Y3RARMUM73VYH92.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10602" - }, - "appliesTo" : [ ] - }, - "2Y3RARMUM73VYH92.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "2Y3RARMUM73VYH92.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2Y3RARMUM73VYH92.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "2Y3RARMUM73VYH92", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2Y3RARMUM73VYH92.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "2Y3RARMUM73VYH92.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11938" - }, - "appliesTo" : [ ] - }, - "2Y3RARMUM73VYH92.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "2Y3RARMUM73VYH92.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2Y3RARMUM73VYH92.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "2Y3RARMUM73VYH92", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "2Y3RARMUM73VYH92.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "2Y3RARMUM73VYH92.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6117" - }, - "appliesTo" : [ ] - }, - "2Y3RARMUM73VYH92.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "2Y3RARMUM73VYH92.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2Y3RARMUM73VYH92.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "2Y3RARMUM73VYH92", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "2Y3RARMUM73VYH92.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "2Y3RARMUM73VYH92.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3821" - }, - "appliesTo" : [ ] - }, - "2Y3RARMUM73VYH92.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "2Y3RARMUM73VYH92.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2Y3RARMUM73VYH92.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "2Y3RARMUM73VYH92", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2Y3RARMUM73VYH92.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "2Y3RARMUM73VYH92.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6025" - }, - "appliesTo" : [ ] - }, - "2Y3RARMUM73VYH92.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "2Y3RARMUM73VYH92.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2Y3RARMUM73VYH92.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "2Y3RARMUM73VYH92", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "2Y3RARMUM73VYH92.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "2Y3RARMUM73VYH92.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30452" - }, - "appliesTo" : [ ] - }, - "2Y3RARMUM73VYH92.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "2Y3RARMUM73VYH92.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2Y3RARMUM73VYH92.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "2Y3RARMUM73VYH92", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2Y3RARMUM73VYH92.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "2Y3RARMUM73VYH92.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2Y3RARMUM73VYH92.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "2Y3RARMUM73VYH92", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "2Y3RARMUM73VYH92.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "2Y3RARMUM73VYH92.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2Y3RARMUM73VYH92.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "2Y3RARMUM73VYH92", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "2Y3RARMUM73VYH92.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "2Y3RARMUM73VYH92.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10629" - }, - "appliesTo" : [ ] - }, - "2Y3RARMUM73VYH92.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "2Y3RARMUM73VYH92.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "7ATPZU2G6QRQFTXN" : { - "7ATPZU2G6QRQFTXN.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "7ATPZU2G6QRQFTXN", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "7ATPZU2G6QRQFTXN.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "7ATPZU2G6QRQFTXN.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28995" - }, - "appliesTo" : [ ] - }, - "7ATPZU2G6QRQFTXN.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "7ATPZU2G6QRQFTXN.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7ATPZU2G6QRQFTXN.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "7ATPZU2G6QRQFTXN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7ATPZU2G6QRQFTXN.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "7ATPZU2G6QRQFTXN.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7ATPZU2G6QRQFTXN.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "7ATPZU2G6QRQFTXN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7ATPZU2G6QRQFTXN.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "7ATPZU2G6QRQFTXN.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7ATPZU2G6QRQFTXN.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "7ATPZU2G6QRQFTXN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7ATPZU2G6QRQFTXN.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "7ATPZU2G6QRQFTXN.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "69760" - }, - "appliesTo" : [ ] - }, - "7ATPZU2G6QRQFTXN.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "7ATPZU2G6QRQFTXN.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7ATPZU2G6QRQFTXN.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "7ATPZU2G6QRQFTXN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7ATPZU2G6QRQFTXN.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "7ATPZU2G6QRQFTXN.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33363" - }, - "appliesTo" : [ ] - }, - "7ATPZU2G6QRQFTXN.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "7ATPZU2G6QRQFTXN.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7ATPZU2G6QRQFTXN.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "7ATPZU2G6QRQFTXN", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "7ATPZU2G6QRQFTXN.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "7ATPZU2G6QRQFTXN.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14212" - }, - "appliesTo" : [ ] - }, - "7ATPZU2G6QRQFTXN.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "7ATPZU2G6QRQFTXN.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7ATPZU2G6QRQFTXN.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "7ATPZU2G6QRQFTXN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7ATPZU2G6QRQFTXN.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "7ATPZU2G6QRQFTXN.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7ATPZU2G6QRQFTXN.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "7ATPZU2G6QRQFTXN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7ATPZU2G6QRQFTXN.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "7ATPZU2G6QRQFTXN.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.0710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7ATPZU2G6QRQFTXN.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "7ATPZU2G6QRQFTXN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7ATPZU2G6QRQFTXN.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "7ATPZU2G6QRQFTXN.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16441" - }, - "appliesTo" : [ ] - }, - "7ATPZU2G6QRQFTXN.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "7ATPZU2G6QRQFTXN.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7ATPZU2G6QRQFTXN.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "7ATPZU2G6QRQFTXN", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "7ATPZU2G6QRQFTXN.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "7ATPZU2G6QRQFTXN.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "58910" - }, - "appliesTo" : [ ] - }, - "7ATPZU2G6QRQFTXN.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "7ATPZU2G6QRQFTXN.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7ATPZU2G6QRQFTXN.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "7ATPZU2G6QRQFTXN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7ATPZU2G6QRQFTXN.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "7ATPZU2G6QRQFTXN.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4180000000" - }, - "appliesTo" : [ ] - }, - "7ATPZU2G6QRQFTXN.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "7ATPZU2G6QRQFTXN.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33849" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7ATPZU2G6QRQFTXN.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "7ATPZU2G6QRQFTXN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7ATPZU2G6QRQFTXN.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "7ATPZU2G6QRQFTXN.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29518" - }, - "appliesTo" : [ ] - }, - "7ATPZU2G6QRQFTXN.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "7ATPZU2G6QRQFTXN.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "DFF53P772NKJNMUW" : { - "DFF53P772NKJNMUW.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "DFF53P772NKJNMUW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "DFF53P772NKJNMUW.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "DFF53P772NKJNMUW.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.8790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DFF53P772NKJNMUW.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "DFF53P772NKJNMUW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "DFF53P772NKJNMUW.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "DFF53P772NKJNMUW.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "97762" - }, - "appliesTo" : [ ] - }, - "DFF53P772NKJNMUW.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "DFF53P772NKJNMUW.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DFF53P772NKJNMUW.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "DFF53P772NKJNMUW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "DFF53P772NKJNMUW.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "DFF53P772NKJNMUW.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "191647" - }, - "appliesTo" : [ ] - }, - "DFF53P772NKJNMUW.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "DFF53P772NKJNMUW.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DFF53P772NKJNMUW.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "DFF53P772NKJNMUW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "DFF53P772NKJNMUW.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "DFF53P772NKJNMUW.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.6336000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DFF53P772NKJNMUW.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "DFF53P772NKJNMUW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "DFF53P772NKJNMUW.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "DFF53P772NKJNMUW.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "68296" - }, - "appliesTo" : [ ] - }, - "DFF53P772NKJNMUW.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "DFF53P772NKJNMUW.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DFF53P772NKJNMUW.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "DFF53P772NKJNMUW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DFF53P772NKJNMUW.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "DFF53P772NKJNMUW.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "69816" - }, - "appliesTo" : [ ] - }, - "DFF53P772NKJNMUW.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "DFF53P772NKJNMUW.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DFF53P772NKJNMUW.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "DFF53P772NKJNMUW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "DFF53P772NKJNMUW.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "DFF53P772NKJNMUW.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34252" - }, - "appliesTo" : [ ] - }, - "DFF53P772NKJNMUW.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "DFF53P772NKJNMUW.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DFF53P772NKJNMUW.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "DFF53P772NKJNMUW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "DFF53P772NKJNMUW.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "DFF53P772NKJNMUW.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "99338" - }, - "appliesTo" : [ ] - }, - "DFF53P772NKJNMUW.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "DFF53P772NKJNMUW.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DFF53P772NKJNMUW.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "DFF53P772NKJNMUW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "DFF53P772NKJNMUW.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "DFF53P772NKJNMUW.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "198193" - }, - "appliesTo" : [ ] - }, - "DFF53P772NKJNMUW.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "DFF53P772NKJNMUW.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DFF53P772NKJNMUW.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "DFF53P772NKJNMUW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "DFF53P772NKJNMUW.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "DFF53P772NKJNMUW.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DFF53P772NKJNMUW.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "DFF53P772NKJNMUW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DFF53P772NKJNMUW.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "DFF53P772NKJNMUW.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.0649000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DFF53P772NKJNMUW.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "DFF53P772NKJNMUW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DFF53P772NKJNMUW.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "DFF53P772NKJNMUW.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35027" - }, - "appliesTo" : [ ] - }, - "DFF53P772NKJNMUW.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "DFF53P772NKJNMUW.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9985000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "BJ9999E62JPQN34Q" : { - "BJ9999E62JPQN34Q.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "BJ9999E62JPQN34Q", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BJ9999E62JPQN34Q.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "BJ9999E62JPQN34Q.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2274000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BJ9999E62JPQN34Q.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "BJ9999E62JPQN34Q", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BJ9999E62JPQN34Q.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "BJ9999E62JPQN34Q.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1925" - }, - "appliesTo" : [ ] - }, - "BJ9999E62JPQN34Q.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "BJ9999E62JPQN34Q.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BJ9999E62JPQN34Q.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "BJ9999E62JPQN34Q", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BJ9999E62JPQN34Q.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "BJ9999E62JPQN34Q.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0989000000" - }, - "appliesTo" : [ ] - }, - "BJ9999E62JPQN34Q.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "BJ9999E62JPQN34Q.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2599" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BJ9999E62JPQN34Q.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "BJ9999E62JPQN34Q", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BJ9999E62JPQN34Q.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "BJ9999E62JPQN34Q.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1926000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BJ9999E62JPQN34Q.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "BJ9999E62JPQN34Q", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BJ9999E62JPQN34Q.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "BJ9999E62JPQN34Q.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2046000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BJ9999E62JPQN34Q.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "BJ9999E62JPQN34Q", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BJ9999E62JPQN34Q.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "BJ9999E62JPQN34Q.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4788" - }, - "appliesTo" : [ ] - }, - "BJ9999E62JPQN34Q.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "BJ9999E62JPQN34Q.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BJ9999E62JPQN34Q.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "BJ9999E62JPQN34Q", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BJ9999E62JPQN34Q.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "BJ9999E62JPQN34Q.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "BJ9999E62JPQN34Q.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "BJ9999E62JPQN34Q.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5153" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BJ9999E62JPQN34Q.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "BJ9999E62JPQN34Q", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BJ9999E62JPQN34Q.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "BJ9999E62JPQN34Q.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "BJ9999E62JPQN34Q.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "BJ9999E62JPQN34Q.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2066" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BJ9999E62JPQN34Q.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "BJ9999E62JPQN34Q", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BJ9999E62JPQN34Q.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "BJ9999E62JPQN34Q.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2452" - }, - "appliesTo" : [ ] - }, - "BJ9999E62JPQN34Q.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "BJ9999E62JPQN34Q.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0933000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BJ9999E62JPQN34Q.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "BJ9999E62JPQN34Q", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BJ9999E62JPQN34Q.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "BJ9999E62JPQN34Q.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "972" - }, - "appliesTo" : [ ] - }, - "BJ9999E62JPQN34Q.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "BJ9999E62JPQN34Q.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BJ9999E62JPQN34Q.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "BJ9999E62JPQN34Q", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BJ9999E62JPQN34Q.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "BJ9999E62JPQN34Q.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2446000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BJ9999E62JPQN34Q.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "BJ9999E62JPQN34Q", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BJ9999E62JPQN34Q.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "BJ9999E62JPQN34Q.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1044" - }, - "appliesTo" : [ ] - }, - "BJ9999E62JPQN34Q.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "BJ9999E62JPQN34Q.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1192000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "FJ3G5WT7J4G7GT23" : { - "FJ3G5WT7J4G7GT23.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "FJ3G5WT7J4G7GT23", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "FJ3G5WT7J4G7GT23.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "FJ3G5WT7J4G7GT23.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FJ3G5WT7J4G7GT23.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "FJ3G5WT7J4G7GT23", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "FJ3G5WT7J4G7GT23.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "FJ3G5WT7J4G7GT23.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7970000000" - }, - "appliesTo" : [ ] - }, - "FJ3G5WT7J4G7GT23.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "FJ3G5WT7J4G7GT23.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17129" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FJ3G5WT7J4G7GT23.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "FJ3G5WT7J4G7GT23", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "FJ3G5WT7J4G7GT23.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "FJ3G5WT7J4G7GT23.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9942" - }, - "appliesTo" : [ ] - }, - "FJ3G5WT7J4G7GT23.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "FJ3G5WT7J4G7GT23.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FJ3G5WT7J4G7GT23.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "FJ3G5WT7J4G7GT23", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "FJ3G5WT7J4G7GT23.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "FJ3G5WT7J4G7GT23.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17075" - }, - "appliesTo" : [ ] - }, - "FJ3G5WT7J4G7GT23.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "FJ3G5WT7J4G7GT23.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FJ3G5WT7J4G7GT23.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "FJ3G5WT7J4G7GT23", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "FJ3G5WT7J4G7GT23.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "FJ3G5WT7J4G7GT23.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "FJ3G5WT7J4G7GT23.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "FJ3G5WT7J4G7GT23.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35790" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "KNDB73D8XZCD246T" : { - "KNDB73D8XZCD246T.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "KNDB73D8XZCD246T", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "KNDB73D8XZCD246T.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "KNDB73D8XZCD246T.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KNDB73D8XZCD246T.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "KNDB73D8XZCD246T", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "KNDB73D8XZCD246T.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "KNDB73D8XZCD246T.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7038" - }, - "appliesTo" : [ ] - }, - "KNDB73D8XZCD246T.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "KNDB73D8XZCD246T.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KNDB73D8XZCD246T.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "KNDB73D8XZCD246T", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "KNDB73D8XZCD246T.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "KNDB73D8XZCD246T.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6925" - }, - "appliesTo" : [ ] - }, - "KNDB73D8XZCD246T.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "KNDB73D8XZCD246T.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KNDB73D8XZCD246T.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "KNDB73D8XZCD246T", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "KNDB73D8XZCD246T.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "KNDB73D8XZCD246T.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16522" - }, - "appliesTo" : [ ] - }, - "KNDB73D8XZCD246T.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "KNDB73D8XZCD246T.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KNDB73D8XZCD246T.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "KNDB73D8XZCD246T", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "KNDB73D8XZCD246T.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "KNDB73D8XZCD246T.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2826" - }, - "appliesTo" : [ ] - }, - "KNDB73D8XZCD246T.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "KNDB73D8XZCD246T.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "6B92TZ937DKQEP93" : { - "6B92TZ937DKQEP93.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "6B92TZ937DKQEP93", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6B92TZ937DKQEP93.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "6B92TZ937DKQEP93.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3422" - }, - "appliesTo" : [ ] - }, - "6B92TZ937DKQEP93.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "6B92TZ937DKQEP93.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6B92TZ937DKQEP93.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6B92TZ937DKQEP93", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6B92TZ937DKQEP93.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6B92TZ937DKQEP93.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6B92TZ937DKQEP93.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6B92TZ937DKQEP93", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6B92TZ937DKQEP93.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6B92TZ937DKQEP93.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9592" - }, - "appliesTo" : [ ] - }, - "6B92TZ937DKQEP93.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6B92TZ937DKQEP93.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6B92TZ937DKQEP93.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "6B92TZ937DKQEP93", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6B92TZ937DKQEP93.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "6B92TZ937DKQEP93.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19407" - }, - "appliesTo" : [ ] - }, - "6B92TZ937DKQEP93.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "6B92TZ937DKQEP93.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6B92TZ937DKQEP93.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "6B92TZ937DKQEP93", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6B92TZ937DKQEP93.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "6B92TZ937DKQEP93.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6B92TZ937DKQEP93.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "6B92TZ937DKQEP93", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6B92TZ937DKQEP93.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "6B92TZ937DKQEP93.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9723" - }, - "appliesTo" : [ ] - }, - "6B92TZ937DKQEP93.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "6B92TZ937DKQEP93.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6B92TZ937DKQEP93.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "6B92TZ937DKQEP93", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6B92TZ937DKQEP93.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "6B92TZ937DKQEP93.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6B92TZ937DKQEP93.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6B92TZ937DKQEP93", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6B92TZ937DKQEP93.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6B92TZ937DKQEP93.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6692" - }, - "appliesTo" : [ ] - }, - "6B92TZ937DKQEP93.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6B92TZ937DKQEP93.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6B92TZ937DKQEP93.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6B92TZ937DKQEP93", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6B92TZ937DKQEP93.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6B92TZ937DKQEP93.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3355" - }, - "appliesTo" : [ ] - }, - "6B92TZ937DKQEP93.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6B92TZ937DKQEP93.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6B92TZ937DKQEP93.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "6B92TZ937DKQEP93", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6B92TZ937DKQEP93.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "6B92TZ937DKQEP93.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6824" - }, - "appliesTo" : [ ] - }, - "6B92TZ937DKQEP93.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "6B92TZ937DKQEP93.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6B92TZ937DKQEP93.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "6B92TZ937DKQEP93", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6B92TZ937DKQEP93.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "6B92TZ937DKQEP93.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6B92TZ937DKQEP93.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6B92TZ937DKQEP93", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6B92TZ937DKQEP93.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6B92TZ937DKQEP93.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19079" - }, - "appliesTo" : [ ] - }, - "6B92TZ937DKQEP93.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6B92TZ937DKQEP93.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "69HHGBJ3N8F7N3PN" : { - "69HHGBJ3N8F7N3PN.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "69HHGBJ3N8F7N3PN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "69HHGBJ3N8F7N3PN.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "69HHGBJ3N8F7N3PN.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4405000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "69HHGBJ3N8F7N3PN.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "69HHGBJ3N8F7N3PN", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "69HHGBJ3N8F7N3PN.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "69HHGBJ3N8F7N3PN.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34894" - }, - "appliesTo" : [ ] - }, - "69HHGBJ3N8F7N3PN.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "69HHGBJ3N8F7N3PN.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3278000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "69HHGBJ3N8F7N3PN.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "69HHGBJ3N8F7N3PN", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "69HHGBJ3N8F7N3PN.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "69HHGBJ3N8F7N3PN.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26890" - }, - "appliesTo" : [ ] - }, - "69HHGBJ3N8F7N3PN.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "69HHGBJ3N8F7N3PN.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "69HHGBJ3N8F7N3PN.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "69HHGBJ3N8F7N3PN", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "69HHGBJ3N8F7N3PN.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "69HHGBJ3N8F7N3PN.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7502000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "69HHGBJ3N8F7N3PN.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "69HHGBJ3N8F7N3PN", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "69HHGBJ3N8F7N3PN.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "69HHGBJ3N8F7N3PN.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "69HHGBJ3N8F7N3PN.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "69HHGBJ3N8F7N3PN", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "69HHGBJ3N8F7N3PN.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "69HHGBJ3N8F7N3PN.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "67921" - }, - "appliesTo" : [ ] - }, - "69HHGBJ3N8F7N3PN.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "69HHGBJ3N8F7N3PN.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "69HHGBJ3N8F7N3PN.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "69HHGBJ3N8F7N3PN", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "69HHGBJ3N8F7N3PN.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "69HHGBJ3N8F7N3PN.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37227" - }, - "appliesTo" : [ ] - }, - "69HHGBJ3N8F7N3PN.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "69HHGBJ3N8F7N3PN.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4165000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "69HHGBJ3N8F7N3PN.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "69HHGBJ3N8F7N3PN", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "69HHGBJ3N8F7N3PN.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "69HHGBJ3N8F7N3PN.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13588" - }, - "appliesTo" : [ ] - }, - "69HHGBJ3N8F7N3PN.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "69HHGBJ3N8F7N3PN.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5511000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "69HHGBJ3N8F7N3PN.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "69HHGBJ3N8F7N3PN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "69HHGBJ3N8F7N3PN.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "69HHGBJ3N8F7N3PN.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14659" - }, - "appliesTo" : [ ] - }, - "69HHGBJ3N8F7N3PN.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "69HHGBJ3N8F7N3PN.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6734000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "69HHGBJ3N8F7N3PN.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "69HHGBJ3N8F7N3PN", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "69HHGBJ3N8F7N3PN.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "69HHGBJ3N8F7N3PN.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1837000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "69HHGBJ3N8F7N3PN.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "69HHGBJ3N8F7N3PN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "69HHGBJ3N8F7N3PN.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "69HHGBJ3N8F7N3PN.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "69HHGBJ3N8F7N3PN.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "69HHGBJ3N8F7N3PN.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28989" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "69HHGBJ3N8F7N3PN.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "69HHGBJ3N8F7N3PN", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "69HHGBJ3N8F7N3PN.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "69HHGBJ3N8F7N3PN.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "73738" - }, - "appliesTo" : [ ] - }, - "69HHGBJ3N8F7N3PN.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "69HHGBJ3N8F7N3PN.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "J28DJ6QCZ8VU7DZQ" : { - "J28DJ6QCZ8VU7DZQ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "J28DJ6QCZ8VU7DZQ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "J28DJ6QCZ8VU7DZQ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "J28DJ6QCZ8VU7DZQ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "J28DJ6QCZ8VU7DZQ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "J28DJ6QCZ8VU7DZQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J28DJ6QCZ8VU7DZQ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "J28DJ6QCZ8VU7DZQ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21155" - }, - "appliesTo" : [ ] - }, - "J28DJ6QCZ8VU7DZQ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "J28DJ6QCZ8VU7DZQ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "J28DJ6QCZ8VU7DZQ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "J28DJ6QCZ8VU7DZQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J28DJ6QCZ8VU7DZQ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "J28DJ6QCZ8VU7DZQ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "J28DJ6QCZ8VU7DZQ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "J28DJ6QCZ8VU7DZQ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "J28DJ6QCZ8VU7DZQ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "J28DJ6QCZ8VU7DZQ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23012" - }, - "appliesTo" : [ ] - }, - "J28DJ6QCZ8VU7DZQ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "J28DJ6QCZ8VU7DZQ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "J28DJ6QCZ8VU7DZQ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "J28DJ6QCZ8VU7DZQ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "J28DJ6QCZ8VU7DZQ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "J28DJ6QCZ8VU7DZQ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "J28DJ6QCZ8VU7DZQ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "J28DJ6QCZ8VU7DZQ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "J28DJ6QCZ8VU7DZQ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "J28DJ6QCZ8VU7DZQ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33445" - }, - "appliesTo" : [ ] - }, - "J28DJ6QCZ8VU7DZQ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "J28DJ6QCZ8VU7DZQ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "J28DJ6QCZ8VU7DZQ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "J28DJ6QCZ8VU7DZQ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "J28DJ6QCZ8VU7DZQ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "J28DJ6QCZ8VU7DZQ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24212" - }, - "appliesTo" : [ ] - }, - "J28DJ6QCZ8VU7DZQ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "J28DJ6QCZ8VU7DZQ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "J28DJ6QCZ8VU7DZQ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "J28DJ6QCZ8VU7DZQ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "J28DJ6QCZ8VU7DZQ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "J28DJ6QCZ8VU7DZQ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "43263" - }, - "appliesTo" : [ ] - }, - "J28DJ6QCZ8VU7DZQ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "J28DJ6QCZ8VU7DZQ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "J28DJ6QCZ8VU7DZQ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "J28DJ6QCZ8VU7DZQ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "J28DJ6QCZ8VU7DZQ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "J28DJ6QCZ8VU7DZQ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12353" - }, - "appliesTo" : [ ] - }, - "J28DJ6QCZ8VU7DZQ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "J28DJ6QCZ8VU7DZQ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "J28DJ6QCZ8VU7DZQ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "J28DJ6QCZ8VU7DZQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J28DJ6QCZ8VU7DZQ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "J28DJ6QCZ8VU7DZQ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "J28DJ6QCZ8VU7DZQ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "J28DJ6QCZ8VU7DZQ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "41755" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "J28DJ6QCZ8VU7DZQ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "J28DJ6QCZ8VU7DZQ", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "J28DJ6QCZ8VU7DZQ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "J28DJ6QCZ8VU7DZQ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "65551" - }, - "appliesTo" : [ ] - }, - "J28DJ6QCZ8VU7DZQ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "J28DJ6QCZ8VU7DZQ.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "C4ADNNGW2WA5AJWY" : { - "C4ADNNGW2WA5AJWY.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "C4ADNNGW2WA5AJWY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "C4ADNNGW2WA5AJWY.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "C4ADNNGW2WA5AJWY.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9790000000" - }, - "appliesTo" : [ ] - }, - "C4ADNNGW2WA5AJWY.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "C4ADNNGW2WA5AJWY.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8576" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "C4ADNNGW2WA5AJWY.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "C4ADNNGW2WA5AJWY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "C4ADNNGW2WA5AJWY.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "C4ADNNGW2WA5AJWY.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16808" - }, - "appliesTo" : [ ] - }, - "C4ADNNGW2WA5AJWY.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "C4ADNNGW2WA5AJWY.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "C4ADNNGW2WA5AJWY.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "C4ADNNGW2WA5AJWY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "C4ADNNGW2WA5AJWY.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "C4ADNNGW2WA5AJWY.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24529" - }, - "appliesTo" : [ ] - }, - "C4ADNNGW2WA5AJWY.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "C4ADNNGW2WA5AJWY.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "C4ADNNGW2WA5AJWY.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "C4ADNNGW2WA5AJWY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "C4ADNNGW2WA5AJWY.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "C4ADNNGW2WA5AJWY.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13047" - }, - "appliesTo" : [ ] - }, - "C4ADNNGW2WA5AJWY.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "C4ADNNGW2WA5AJWY.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "C4ADNNGW2WA5AJWY.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "C4ADNNGW2WA5AJWY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "C4ADNNGW2WA5AJWY.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "C4ADNNGW2WA5AJWY.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "C4ADNNGW2WA5AJWY.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "C4ADNNGW2WA5AJWY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "C4ADNNGW2WA5AJWY.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "C4ADNNGW2WA5AJWY.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "UC54XWQVHQPRYB9K" : { - "UC54XWQVHQPRYB9K.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "UC54XWQVHQPRYB9K", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UC54XWQVHQPRYB9K.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "UC54XWQVHQPRYB9K.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38658" - }, - "appliesTo" : [ ] - }, - "UC54XWQVHQPRYB9K.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "UC54XWQVHQPRYB9K.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "UC54XWQVHQPRYB9K.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "UC54XWQVHQPRYB9K", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UC54XWQVHQPRYB9K.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "UC54XWQVHQPRYB9K.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9580000000" - }, - "appliesTo" : [ ] - }, - "UC54XWQVHQPRYB9K.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "UC54XWQVHQPRYB9K.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17151" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "UC54XWQVHQPRYB9K.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "UC54XWQVHQPRYB9K", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UC54XWQVHQPRYB9K.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "UC54XWQVHQPRYB9K.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30009" - }, - "appliesTo" : [ ] - }, - "UC54XWQVHQPRYB9K.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "UC54XWQVHQPRYB9K.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "UC54XWQVHQPRYB9K.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "UC54XWQVHQPRYB9K", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UC54XWQVHQPRYB9K.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "UC54XWQVHQPRYB9K.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26095" - }, - "appliesTo" : [ ] - }, - "UC54XWQVHQPRYB9K.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "UC54XWQVHQPRYB9K.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "UC54XWQVHQPRYB9K.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "UC54XWQVHQPRYB9K", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UC54XWQVHQPRYB9K.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "UC54XWQVHQPRYB9K.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "UC54XWQVHQPRYB9K.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "UC54XWQVHQPRYB9K", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UC54XWQVHQPRYB9K.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "UC54XWQVHQPRYB9K.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "UC54XWQVHQPRYB9K.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "UC54XWQVHQPRYB9K.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "49058" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "UC54XWQVHQPRYB9K.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "UC54XWQVHQPRYB9K", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UC54XWQVHQPRYB9K.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "UC54XWQVHQPRYB9K.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "UC54XWQVHQPRYB9K.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "UC54XWQVHQPRYB9K.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33616" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "UC54XWQVHQPRYB9K.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "UC54XWQVHQPRYB9K", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UC54XWQVHQPRYB9K.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "UC54XWQVHQPRYB9K.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19724" - }, - "appliesTo" : [ ] - }, - "UC54XWQVHQPRYB9K.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "UC54XWQVHQPRYB9K.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "UC54XWQVHQPRYB9K.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "UC54XWQVHQPRYB9K", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UC54XWQVHQPRYB9K.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "UC54XWQVHQPRYB9K.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.7280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "UC54XWQVHQPRYB9K.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "UC54XWQVHQPRYB9K", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UC54XWQVHQPRYB9K.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "UC54XWQVHQPRYB9K.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.1120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "UC54XWQVHQPRYB9K.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "UC54XWQVHQPRYB9K", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UC54XWQVHQPRYB9K.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "UC54XWQVHQPRYB9K.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "58817" - }, - "appliesTo" : [ ] - }, - "UC54XWQVHQPRYB9K.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "UC54XWQVHQPRYB9K.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "UC54XWQVHQPRYB9K.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "UC54XWQVHQPRYB9K", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UC54XWQVHQPRYB9K.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "UC54XWQVHQPRYB9K.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "TNZVJ6TD58FTD557" : { - "TNZVJ6TD58FTD557.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TNZVJ6TD58FTD557", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TNZVJ6TD58FTD557.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TNZVJ6TD58FTD557.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TNZVJ6TD58FTD557.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TNZVJ6TD58FTD557", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TNZVJ6TD58FTD557.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TNZVJ6TD58FTD557.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14352" - }, - "appliesTo" : [ ] - }, - "TNZVJ6TD58FTD557.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TNZVJ6TD58FTD557.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TNZVJ6TD58FTD557.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TNZVJ6TD58FTD557", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TNZVJ6TD58FTD557.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TNZVJ6TD58FTD557.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26982" - }, - "appliesTo" : [ ] - }, - "TNZVJ6TD58FTD557.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TNZVJ6TD58FTD557.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TNZVJ6TD58FTD557.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TNZVJ6TD58FTD557", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TNZVJ6TD58FTD557.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TNZVJ6TD58FTD557.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9433" - }, - "appliesTo" : [ ] - }, - "TNZVJ6TD58FTD557.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TNZVJ6TD58FTD557.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TNZVJ6TD58FTD557.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "TNZVJ6TD58FTD557", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TNZVJ6TD58FTD557.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "TNZVJ6TD58FTD557.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TNZVJ6TD58FTD557.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TNZVJ6TD58FTD557", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TNZVJ6TD58FTD557.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TNZVJ6TD58FTD557.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18489" - }, - "appliesTo" : [ ] - }, - "TNZVJ6TD58FTD557.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TNZVJ6TD58FTD557.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "3RTZAQ64564SNQ7T" : { - "3RTZAQ64564SNQ7T.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "3RTZAQ64564SNQ7T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3RTZAQ64564SNQ7T.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "3RTZAQ64564SNQ7T.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9867" - }, - "appliesTo" : [ ] - }, - "3RTZAQ64564SNQ7T.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "3RTZAQ64564SNQ7T.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3RTZAQ64564SNQ7T.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "3RTZAQ64564SNQ7T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3RTZAQ64564SNQ7T.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "3RTZAQ64564SNQ7T.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5050000000" - }, - "appliesTo" : [ ] - }, - "3RTZAQ64564SNQ7T.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "3RTZAQ64564SNQ7T.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4423" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3RTZAQ64564SNQ7T.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "3RTZAQ64564SNQ7T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3RTZAQ64564SNQ7T.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "3RTZAQ64564SNQ7T.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10193" - }, - "appliesTo" : [ ] - }, - "3RTZAQ64564SNQ7T.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "3RTZAQ64564SNQ7T.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3RTZAQ64564SNQ7T.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "3RTZAQ64564SNQ7T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3RTZAQ64564SNQ7T.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "3RTZAQ64564SNQ7T.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20026" - }, - "appliesTo" : [ ] - }, - "3RTZAQ64564SNQ7T.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "3RTZAQ64564SNQ7T.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3RTZAQ64564SNQ7T.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "3RTZAQ64564SNQ7T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3RTZAQ64564SNQ7T.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "3RTZAQ64564SNQ7T.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3RTZAQ64564SNQ7T.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "3RTZAQ64564SNQ7T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3RTZAQ64564SNQ7T.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "3RTZAQ64564SNQ7T.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5740000000" - }, - "appliesTo" : [ ] - }, - "3RTZAQ64564SNQ7T.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "3RTZAQ64564SNQ7T.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5026" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3RTZAQ64564SNQ7T.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "3RTZAQ64564SNQ7T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3RTZAQ64564SNQ7T.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "3RTZAQ64564SNQ7T.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3RTZAQ64564SNQ7T.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "3RTZAQ64564SNQ7T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3RTZAQ64564SNQ7T.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "3RTZAQ64564SNQ7T.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3RTZAQ64564SNQ7T.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "3RTZAQ64564SNQ7T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3RTZAQ64564SNQ7T.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "3RTZAQ64564SNQ7T.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9007" - }, - "appliesTo" : [ ] - }, - "3RTZAQ64564SNQ7T.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "3RTZAQ64564SNQ7T.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3RTZAQ64564SNQ7T.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "3RTZAQ64564SNQ7T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3RTZAQ64564SNQ7T.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "3RTZAQ64564SNQ7T.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "3RTZAQ64564SNQ7T.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "3RTZAQ64564SNQ7T.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17077" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3RTZAQ64564SNQ7T.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "3RTZAQ64564SNQ7T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3RTZAQ64564SNQ7T.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "3RTZAQ64564SNQ7T.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3RTZAQ64564SNQ7T.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "3RTZAQ64564SNQ7T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3RTZAQ64564SNQ7T.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "3RTZAQ64564SNQ7T.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "3RTZAQ64564SNQ7T.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "3RTZAQ64564SNQ7T.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8685" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "ES3XAJX5E6SRUWY5" : { - "ES3XAJX5E6SRUWY5.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ES3XAJX5E6SRUWY5", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "ES3XAJX5E6SRUWY5.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ES3XAJX5E6SRUWY5.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ES3XAJX5E6SRUWY5.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ES3XAJX5E6SRUWY5.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8614" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ES3XAJX5E6SRUWY5.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ES3XAJX5E6SRUWY5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ES3XAJX5E6SRUWY5.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ES3XAJX5E6SRUWY5.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5672" - }, - "appliesTo" : [ ] - }, - "ES3XAJX5E6SRUWY5.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ES3XAJX5E6SRUWY5.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ES3XAJX5E6SRUWY5.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ES3XAJX5E6SRUWY5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ES3XAJX5E6SRUWY5.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ES3XAJX5E6SRUWY5.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ES3XAJX5E6SRUWY5.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ES3XAJX5E6SRUWY5", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "ES3XAJX5E6SRUWY5.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ES3XAJX5E6SRUWY5.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13091" - }, - "appliesTo" : [ ] - }, - "ES3XAJX5E6SRUWY5.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ES3XAJX5E6SRUWY5.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ES3XAJX5E6SRUWY5.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ES3XAJX5E6SRUWY5", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "ES3XAJX5E6SRUWY5.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ES3XAJX5E6SRUWY5.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10023" - }, - "appliesTo" : [ ] - }, - "ES3XAJX5E6SRUWY5.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ES3XAJX5E6SRUWY5.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ES3XAJX5E6SRUWY5.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ES3XAJX5E6SRUWY5", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "ES3XAJX5E6SRUWY5.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ES3XAJX5E6SRUWY5.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ES3XAJX5E6SRUWY5.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ES3XAJX5E6SRUWY5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ES3XAJX5E6SRUWY5.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ES3XAJX5E6SRUWY5.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ES3XAJX5E6SRUWY5.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ES3XAJX5E6SRUWY5.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11330" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ES3XAJX5E6SRUWY5.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ES3XAJX5E6SRUWY5", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "ES3XAJX5E6SRUWY5.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ES3XAJX5E6SRUWY5.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18847" - }, - "appliesTo" : [ ] - }, - "ES3XAJX5E6SRUWY5.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ES3XAJX5E6SRUWY5.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ES3XAJX5E6SRUWY5.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "ES3XAJX5E6SRUWY5", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ES3XAJX5E6SRUWY5.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "ES3XAJX5E6SRUWY5.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ES3XAJX5E6SRUWY5.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ES3XAJX5E6SRUWY5", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ES3XAJX5E6SRUWY5.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ES3XAJX5E6SRUWY5.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25652" - }, - "appliesTo" : [ ] - }, - "ES3XAJX5E6SRUWY5.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ES3XAJX5E6SRUWY5.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ES3XAJX5E6SRUWY5.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ES3XAJX5E6SRUWY5", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "ES3XAJX5E6SRUWY5.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ES3XAJX5E6SRUWY5.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ES3XAJX5E6SRUWY5.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ES3XAJX5E6SRUWY5", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "ES3XAJX5E6SRUWY5.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ES3XAJX5E6SRUWY5.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5020000000" - }, - "appliesTo" : [ ] - }, - "ES3XAJX5E6SRUWY5.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ES3XAJX5E6SRUWY5.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4396" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "Y4XD9NA45RXPDXY7" : { - "Y4XD9NA45RXPDXY7.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Y4XD9NA45RXPDXY7", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "Y4XD9NA45RXPDXY7.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Y4XD9NA45RXPDXY7.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3754" - }, - "appliesTo" : [ ] - }, - "Y4XD9NA45RXPDXY7.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Y4XD9NA45RXPDXY7.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Y4XD9NA45RXPDXY7.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "Y4XD9NA45RXPDXY7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Y4XD9NA45RXPDXY7.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "Y4XD9NA45RXPDXY7.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "Y4XD9NA45RXPDXY7.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "Y4XD9NA45RXPDXY7.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4290" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Y4XD9NA45RXPDXY7.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Y4XD9NA45RXPDXY7", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "Y4XD9NA45RXPDXY7.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Y4XD9NA45RXPDXY7.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2482" - }, - "appliesTo" : [ ] - }, - "Y4XD9NA45RXPDXY7.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Y4XD9NA45RXPDXY7.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y4XD9NA45RXPDXY7.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "Y4XD9NA45RXPDXY7", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "Y4XD9NA45RXPDXY7.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "Y4XD9NA45RXPDXY7.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1400000000" - }, - "appliesTo" : [ ] - }, - "Y4XD9NA45RXPDXY7.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "Y4XD9NA45RXPDXY7.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6578" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y4XD9NA45RXPDXY7.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Y4XD9NA45RXPDXY7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Y4XD9NA45RXPDXY7.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Y4XD9NA45RXPDXY7.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8038" - }, - "appliesTo" : [ ] - }, - "Y4XD9NA45RXPDXY7.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Y4XD9NA45RXPDXY7.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Y4XD9NA45RXPDXY7.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "Y4XD9NA45RXPDXY7", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "Y4XD9NA45RXPDXY7.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "Y4XD9NA45RXPDXY7.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Y4XD9NA45RXPDXY7.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Y4XD9NA45RXPDXY7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Y4XD9NA45RXPDXY7.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Y4XD9NA45RXPDXY7.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Y4XD9NA45RXPDXY7.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "Y4XD9NA45RXPDXY7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Y4XD9NA45RXPDXY7.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "Y4XD9NA45RXPDXY7.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2217" - }, - "appliesTo" : [ ] - }, - "Y4XD9NA45RXPDXY7.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "Y4XD9NA45RXPDXY7.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y4XD9NA45RXPDXY7.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Y4XD9NA45RXPDXY7", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "Y4XD9NA45RXPDXY7.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Y4XD9NA45RXPDXY7.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6659" - }, - "appliesTo" : [ ] - }, - "Y4XD9NA45RXPDXY7.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Y4XD9NA45RXPDXY7.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y4XD9NA45RXPDXY7.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "Y4XD9NA45RXPDXY7", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "Y4XD9NA45RXPDXY7.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "Y4XD9NA45RXPDXY7.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10019" - }, - "appliesTo" : [ ] - }, - "Y4XD9NA45RXPDXY7.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "Y4XD9NA45RXPDXY7.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Y4XD9NA45RXPDXY7.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "Y4XD9NA45RXPDXY7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Y4XD9NA45RXPDXY7.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "Y4XD9NA45RXPDXY7.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "ZV6FCW29ACDSB8CF" : { - "ZV6FCW29ACDSB8CF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ZV6FCW29ACDSB8CF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZV6FCW29ACDSB8CF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ZV6FCW29ACDSB8CF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "157648" - }, - "appliesTo" : [ ] - }, - "ZV6FCW29ACDSB8CF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ZV6FCW29ACDSB8CF.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZV6FCW29ACDSB8CF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ZV6FCW29ACDSB8CF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZV6FCW29ACDSB8CF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ZV6FCW29ACDSB8CF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "78928" - }, - "appliesTo" : [ ] - }, - "ZV6FCW29ACDSB8CF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ZV6FCW29ACDSB8CF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.0100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZV6FCW29ACDSB8CF.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ZV6FCW29ACDSB8CF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZV6FCW29ACDSB8CF.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ZV6FCW29ACDSB8CF.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "159168" - }, - "appliesTo" : [ ] - }, - "ZV6FCW29ACDSB8CF.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ZV6FCW29ACDSB8CF.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZV6FCW29ACDSB8CF.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ZV6FCW29ACDSB8CF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZV6FCW29ACDSB8CF.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ZV6FCW29ACDSB8CF.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "233366" - }, - "appliesTo" : [ ] - }, - "ZV6FCW29ACDSB8CF.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ZV6FCW29ACDSB8CF.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.8800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZV6FCW29ACDSB8CF.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "ZV6FCW29ACDSB8CF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZV6FCW29ACDSB8CF.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "ZV6FCW29ACDSB8CF.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "17.7040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZV6FCW29ACDSB8CF.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ZV6FCW29ACDSB8CF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZV6FCW29ACDSB8CF.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ZV6FCW29ACDSB8CF.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "18.2649000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZV6FCW29ACDSB8CF.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ZV6FCW29ACDSB8CF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZV6FCW29ACDSB8CF.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ZV6FCW29ACDSB8CF.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "18.0790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZV6FCW29ACDSB8CF.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ZV6FCW29ACDSB8CF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZV6FCW29ACDSB8CF.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ZV6FCW29ACDSB8CF.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "79703" - }, - "appliesTo" : [ ] - }, - "ZV6FCW29ACDSB8CF.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ZV6FCW29ACDSB8CF.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.0985000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZV6FCW29ACDSB8CF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ZV6FCW29ACDSB8CF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZV6FCW29ACDSB8CF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ZV6FCW29ACDSB8CF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "231790" - }, - "appliesTo" : [ ] - }, - "ZV6FCW29ACDSB8CF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ZV6FCW29ACDSB8CF.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.8200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZV6FCW29ACDSB8CF.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ZV6FCW29ACDSB8CF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZV6FCW29ACDSB8CF.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ZV6FCW29ACDSB8CF.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "466249" - }, - "appliesTo" : [ ] - }, - "ZV6FCW29ACDSB8CF.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ZV6FCW29ACDSB8CF.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZV6FCW29ACDSB8CF.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ZV6FCW29ACDSB8CF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZV6FCW29ACDSB8CF.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ZV6FCW29ACDSB8CF.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "17.8336000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZV6FCW29ACDSB8CF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ZV6FCW29ACDSB8CF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZV6FCW29ACDSB8CF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ZV6FCW29ACDSB8CF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "462318" - }, - "appliesTo" : [ ] - }, - "ZV6FCW29ACDSB8CF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ZV6FCW29ACDSB8CF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "EVFZ5VDSHTZYPX89" : { - "EVFZ5VDSHTZYPX89.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "EVFZ5VDSHTZYPX89", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "EVFZ5VDSHTZYPX89.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "EVFZ5VDSHTZYPX89.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2277" - }, - "appliesTo" : [ ] - }, - "EVFZ5VDSHTZYPX89.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "EVFZ5VDSHTZYPX89.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EVFZ5VDSHTZYPX89.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "EVFZ5VDSHTZYPX89", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "EVFZ5VDSHTZYPX89.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "EVFZ5VDSHTZYPX89.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "EVFZ5VDSHTZYPX89.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "EVFZ5VDSHTZYPX89", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "EVFZ5VDSHTZYPX89.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "EVFZ5VDSHTZYPX89.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7086" - }, - "appliesTo" : [ ] - }, - "EVFZ5VDSHTZYPX89.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "EVFZ5VDSHTZYPX89.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EVFZ5VDSHTZYPX89.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "EVFZ5VDSHTZYPX89", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "EVFZ5VDSHTZYPX89.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "EVFZ5VDSHTZYPX89.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3874" - }, - "appliesTo" : [ ] - }, - "EVFZ5VDSHTZYPX89.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "EVFZ5VDSHTZYPX89.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EVFZ5VDSHTZYPX89.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "EVFZ5VDSHTZYPX89", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "EVFZ5VDSHTZYPX89.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "EVFZ5VDSHTZYPX89.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1520000000" - }, - "appliesTo" : [ ] - }, - "EVFZ5VDSHTZYPX89.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "EVFZ5VDSHTZYPX89.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3550" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "WXU9QBE38YNQDZE3" : { - "WXU9QBE38YNQDZE3.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "WXU9QBE38YNQDZE3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WXU9QBE38YNQDZE3.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "WXU9QBE38YNQDZE3.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WXU9QBE38YNQDZE3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "WXU9QBE38YNQDZE3", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "WXU9QBE38YNQDZE3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "WXU9QBE38YNQDZE3.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "WXU9QBE38YNQDZE3.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "WXU9QBE38YNQDZE3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WXU9QBE38YNQDZE3.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "WXU9QBE38YNQDZE3.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0980000000" - }, - "appliesTo" : [ ] - }, - "WXU9QBE38YNQDZE3.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "WXU9QBE38YNQDZE3.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "858" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WXU9QBE38YNQDZE3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "WXU9QBE38YNQDZE3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "WXU9QBE38YNQDZE3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "WXU9QBE38YNQDZE3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1049" - }, - "appliesTo" : [ ] - }, - "WXU9QBE38YNQDZE3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "WXU9QBE38YNQDZE3.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WXU9QBE38YNQDZE3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "WXU9QBE38YNQDZE3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "WXU9QBE38YNQDZE3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "WXU9QBE38YNQDZE3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "WXU9QBE38YNQDZE3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "WXU9QBE38YNQDZE3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3676" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WXU9QBE38YNQDZE3.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "WXU9QBE38YNQDZE3", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "WXU9QBE38YNQDZE3.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "WXU9QBE38YNQDZE3.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1802" - }, - "appliesTo" : [ ] - }, - "WXU9QBE38YNQDZE3.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "WXU9QBE38YNQDZE3.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WXU9QBE38YNQDZE3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "WXU9QBE38YNQDZE3", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "WXU9QBE38YNQDZE3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "WXU9QBE38YNQDZE3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1606" - }, - "appliesTo" : [ ] - }, - "WXU9QBE38YNQDZE3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "WXU9QBE38YNQDZE3.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WXU9QBE38YNQDZE3.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "WXU9QBE38YNQDZE3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WXU9QBE38YNQDZE3.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "WXU9QBE38YNQDZE3.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1699" - }, - "appliesTo" : [ ] - }, - "WXU9QBE38YNQDZE3.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "WXU9QBE38YNQDZE3.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WXU9QBE38YNQDZE3.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "WXU9QBE38YNQDZE3", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "WXU9QBE38YNQDZE3.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "WXU9QBE38YNQDZE3.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WXU9QBE38YNQDZE3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "WXU9QBE38YNQDZE3", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "WXU9QBE38YNQDZE3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "WXU9QBE38YNQDZE3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "647" - }, - "appliesTo" : [ ] - }, - "WXU9QBE38YNQDZE3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "WXU9QBE38YNQDZE3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WXU9QBE38YNQDZE3.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "WXU9QBE38YNQDZE3", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "WXU9QBE38YNQDZE3.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "WXU9QBE38YNQDZE3.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "WXU9QBE38YNQDZE3.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "WXU9QBE38YNQDZE3.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4583" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "SJ2H8X62JZ6P6N48" : { - "SJ2H8X62JZ6P6N48.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SJ2H8X62JZ6P6N48", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "SJ2H8X62JZ6P6N48.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SJ2H8X62JZ6P6N48.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9432" - }, - "appliesTo" : [ ] - }, - "SJ2H8X62JZ6P6N48.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SJ2H8X62JZ6P6N48.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SJ2H8X62JZ6P6N48.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "SJ2H8X62JZ6P6N48", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SJ2H8X62JZ6P6N48.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "SJ2H8X62JZ6P6N48.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SJ2H8X62JZ6P6N48.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SJ2H8X62JZ6P6N48", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SJ2H8X62JZ6P6N48.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SJ2H8X62JZ6P6N48.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19745" - }, - "appliesTo" : [ ] - }, - "SJ2H8X62JZ6P6N48.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SJ2H8X62JZ6P6N48.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SJ2H8X62JZ6P6N48.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "SJ2H8X62JZ6P6N48", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SJ2H8X62JZ6P6N48.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "SJ2H8X62JZ6P6N48.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9913" - }, - "appliesTo" : [ ] - }, - "SJ2H8X62JZ6P6N48.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "SJ2H8X62JZ6P6N48.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SJ2H8X62JZ6P6N48.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SJ2H8X62JZ6P6N48", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "SJ2H8X62JZ6P6N48.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SJ2H8X62JZ6P6N48.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4610000000" - }, - "appliesTo" : [ ] - }, - "SJ2H8X62JZ6P6N48.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SJ2H8X62JZ6P6N48.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8686" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SJ2H8X62JZ6P6N48.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "SJ2H8X62JZ6P6N48", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SJ2H8X62JZ6P6N48.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "SJ2H8X62JZ6P6N48.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22846" - }, - "appliesTo" : [ ] - }, - "SJ2H8X62JZ6P6N48.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "SJ2H8X62JZ6P6N48.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SJ2H8X62JZ6P6N48.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "SJ2H8X62JZ6P6N48", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SJ2H8X62JZ6P6N48.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "SJ2H8X62JZ6P6N48.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SJ2H8X62JZ6P6N48.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "SJ2H8X62JZ6P6N48", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SJ2H8X62JZ6P6N48.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "SJ2H8X62JZ6P6N48.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4836" - }, - "appliesTo" : [ ] - }, - "SJ2H8X62JZ6P6N48.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "SJ2H8X62JZ6P6N48.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SJ2H8X62JZ6P6N48.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "SJ2H8X62JZ6P6N48", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SJ2H8X62JZ6P6N48.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "SJ2H8X62JZ6P6N48.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10616" - }, - "appliesTo" : [ ] - }, - "SJ2H8X62JZ6P6N48.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "SJ2H8X62JZ6P6N48.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SJ2H8X62JZ6P6N48.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "SJ2H8X62JZ6P6N48", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SJ2H8X62JZ6P6N48.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "SJ2H8X62JZ6P6N48.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SJ2H8X62JZ6P6N48.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SJ2H8X62JZ6P6N48", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SJ2H8X62JZ6P6N48.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SJ2H8X62JZ6P6N48.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SJ2H8X62JZ6P6N48.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SJ2H8X62JZ6P6N48", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "SJ2H8X62JZ6P6N48.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SJ2H8X62JZ6P6N48.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4231" - }, - "appliesTo" : [ ] - }, - "SJ2H8X62JZ6P6N48.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SJ2H8X62JZ6P6N48.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "ZC3Y45SUG7K4RB8W" : { - "ZC3Y45SUG7K4RB8W.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ZC3Y45SUG7K4RB8W", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ZC3Y45SUG7K4RB8W.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ZC3Y45SUG7K4RB8W.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1443" - }, - "appliesTo" : [ ] - }, - "ZC3Y45SUG7K4RB8W.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ZC3Y45SUG7K4RB8W.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZC3Y45SUG7K4RB8W.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ZC3Y45SUG7K4RB8W", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "ZC3Y45SUG7K4RB8W.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ZC3Y45SUG7K4RB8W.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3345" - }, - "appliesTo" : [ ] - }, - "ZC3Y45SUG7K4RB8W.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ZC3Y45SUG7K4RB8W.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZC3Y45SUG7K4RB8W.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ZC3Y45SUG7K4RB8W", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "ZC3Y45SUG7K4RB8W.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ZC3Y45SUG7K4RB8W.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "813" - }, - "appliesTo" : [ ] - }, - "ZC3Y45SUG7K4RB8W.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ZC3Y45SUG7K4RB8W.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZC3Y45SUG7K4RB8W.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ZC3Y45SUG7K4RB8W", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ZC3Y45SUG7K4RB8W.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ZC3Y45SUG7K4RB8W.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "519" - }, - "appliesTo" : [ ] - }, - "ZC3Y45SUG7K4RB8W.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ZC3Y45SUG7K4RB8W.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZC3Y45SUG7K4RB8W.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ZC3Y45SUG7K4RB8W", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "ZC3Y45SUG7K4RB8W.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ZC3Y45SUG7K4RB8W.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "U35UAX5SUJURKCT4" : { - "U35UAX5SUJURKCT4.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "U35UAX5SUJURKCT4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U35UAX5SUJURKCT4.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "U35UAX5SUJURKCT4.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8710000000" - }, - "appliesTo" : [ ] - }, - "U35UAX5SUJURKCT4.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "U35UAX5SUJURKCT4.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7628" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "U35UAX5SUJURKCT4.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "U35UAX5SUJURKCT4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U35UAX5SUJURKCT4.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "U35UAX5SUJURKCT4.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "U35UAX5SUJURKCT4.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "U35UAX5SUJURKCT4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U35UAX5SUJURKCT4.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "U35UAX5SUJURKCT4.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "U35UAX5SUJURKCT4.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "U35UAX5SUJURKCT4.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13652" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "U35UAX5SUJURKCT4.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "U35UAX5SUJURKCT4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U35UAX5SUJURKCT4.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "U35UAX5SUJURKCT4.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5250000000" - }, - "appliesTo" : [ ] - }, - "U35UAX5SUJURKCT4.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "U35UAX5SUJURKCT4.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13788" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "U35UAX5SUJURKCT4.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "U35UAX5SUJURKCT4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U35UAX5SUJURKCT4.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "U35UAX5SUJURKCT4.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "U35UAX5SUJURKCT4.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "U35UAX5SUJURKCT4.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26715" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "U35UAX5SUJURKCT4.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "U35UAX5SUJURKCT4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U35UAX5SUJURKCT4.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "U35UAX5SUJURKCT4.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14864" - }, - "appliesTo" : [ ] - }, - "U35UAX5SUJURKCT4.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "U35UAX5SUJURKCT4.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "U35UAX5SUJURKCT4.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "U35UAX5SUJURKCT4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U35UAX5SUJURKCT4.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "U35UAX5SUJURKCT4.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "U35UAX5SUJURKCT4.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "U35UAX5SUJURKCT4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U35UAX5SUJURKCT4.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "U35UAX5SUJURKCT4.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "U35UAX5SUJURKCT4.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "U35UAX5SUJURKCT4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U35UAX5SUJURKCT4.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "U35UAX5SUJURKCT4.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6921" - }, - "appliesTo" : [ ] - }, - "U35UAX5SUJURKCT4.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "U35UAX5SUJURKCT4.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "U35UAX5SUJURKCT4.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "U35UAX5SUJURKCT4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U35UAX5SUJURKCT4.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "U35UAX5SUJURKCT4.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29399" - }, - "appliesTo" : [ ] - }, - "U35UAX5SUJURKCT4.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "U35UAX5SUJURKCT4.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "U35UAX5SUJURKCT4.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "U35UAX5SUJURKCT4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U35UAX5SUJURKCT4.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "U35UAX5SUJURKCT4.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "U35UAX5SUJURKCT4.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "U35UAX5SUJURKCT4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U35UAX5SUJURKCT4.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "U35UAX5SUJURKCT4.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15039" - }, - "appliesTo" : [ ] - }, - "U35UAX5SUJURKCT4.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "U35UAX5SUJURKCT4.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "C7UZ38M4P93WMCBP" : { - "C7UZ38M4P93WMCBP.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "C7UZ38M4P93WMCBP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "C7UZ38M4P93WMCBP.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "C7UZ38M4P93WMCBP.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.2490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "C7UZ38M4P93WMCBP.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "C7UZ38M4P93WMCBP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "C7UZ38M4P93WMCBP.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "C7UZ38M4P93WMCBP.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26106" - }, - "appliesTo" : [ ] - }, - "C7UZ38M4P93WMCBP.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "C7UZ38M4P93WMCBP.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "C7UZ38M4P93WMCBP.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "C7UZ38M4P93WMCBP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "C7UZ38M4P93WMCBP.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "C7UZ38M4P93WMCBP.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "44485" - }, - "appliesTo" : [ ] - }, - "C7UZ38M4P93WMCBP.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "C7UZ38M4P93WMCBP.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "C7UZ38M4P93WMCBP.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "C7UZ38M4P93WMCBP", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "C7UZ38M4P93WMCBP.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "C7UZ38M4P93WMCBP.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8830000000" - }, - "appliesTo" : [ ] - }, - "C7UZ38M4P93WMCBP.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "C7UZ38M4P93WMCBP.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "49496" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "C7UZ38M4P93WMCBP.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "C7UZ38M4P93WMCBP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "C7UZ38M4P93WMCBP.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "C7UZ38M4P93WMCBP.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "56868" - }, - "appliesTo" : [ ] - }, - "C7UZ38M4P93WMCBP.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "C7UZ38M4P93WMCBP.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "C7UZ38M4P93WMCBP.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "C7UZ38M4P93WMCBP", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "C7UZ38M4P93WMCBP.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "C7UZ38M4P93WMCBP.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "93084" - }, - "appliesTo" : [ ] - }, - "C7UZ38M4P93WMCBP.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "C7UZ38M4P93WMCBP.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "C7UZ38M4P93WMCBP.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "C7UZ38M4P93WMCBP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "C7UZ38M4P93WMCBP.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "C7UZ38M4P93WMCBP.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.0720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "C7UZ38M4P93WMCBP.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "C7UZ38M4P93WMCBP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "C7UZ38M4P93WMCBP.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "C7UZ38M4P93WMCBP.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "111465" - }, - "appliesTo" : [ ] - }, - "C7UZ38M4P93WMCBP.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "C7UZ38M4P93WMCBP.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "C7UZ38M4P93WMCBP.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "C7UZ38M4P93WMCBP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "C7UZ38M4P93WMCBP.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "C7UZ38M4P93WMCBP.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.6780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "C7UZ38M4P93WMCBP.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "C7UZ38M4P93WMCBP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "C7UZ38M4P93WMCBP.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "C7UZ38M4P93WMCBP.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.4380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "C7UZ38M4P93WMCBP.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "C7UZ38M4P93WMCBP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "C7UZ38M4P93WMCBP.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "C7UZ38M4P93WMCBP.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "51114" - }, - "appliesTo" : [ ] - }, - "C7UZ38M4P93WMCBP.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "C7UZ38M4P93WMCBP.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "C7UZ38M4P93WMCBP.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "C7UZ38M4P93WMCBP", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "C7UZ38M4P93WMCBP.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "C7UZ38M4P93WMCBP.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22724" - }, - "appliesTo" : [ ] - }, - "C7UZ38M4P93WMCBP.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "C7UZ38M4P93WMCBP.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "V7ZPECCN7AX2ME3K" : { - "V7ZPECCN7AX2ME3K.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "V7ZPECCN7AX2ME3K", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "V7ZPECCN7AX2ME3K.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "V7ZPECCN7AX2ME3K.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0236000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "V7ZPECCN7AX2ME3K.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "V7ZPECCN7AX2ME3K", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "V7ZPECCN7AX2ME3K.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "V7ZPECCN7AX2ME3K.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "100" - }, - "appliesTo" : [ ] - }, - "V7ZPECCN7AX2ME3K.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "V7ZPECCN7AX2ME3K.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0114000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "V7ZPECCN7AX2ME3K.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "V7ZPECCN7AX2ME3K", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "V7ZPECCN7AX2ME3K.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "V7ZPECCN7AX2ME3K.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "198" - }, - "appliesTo" : [ ] - }, - "V7ZPECCN7AX2ME3K.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "V7ZPECCN7AX2ME3K.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "V7ZPECCN7AX2ME3K.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "V7ZPECCN7AX2ME3K", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "V7ZPECCN7AX2ME3K.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "V7ZPECCN7AX2ME3K.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0207000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "V7ZPECCN7AX2ME3K.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "V7ZPECCN7AX2ME3K", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "V7ZPECCN7AX2ME3K.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "V7ZPECCN7AX2ME3K.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0192000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "V7ZPECCN7AX2ME3K.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "V7ZPECCN7AX2ME3K", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "V7ZPECCN7AX2ME3K.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "V7ZPECCN7AX2ME3K.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "517" - }, - "appliesTo" : [ ] - }, - "V7ZPECCN7AX2ME3K.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "V7ZPECCN7AX2ME3K.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "V7ZPECCN7AX2ME3K.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "V7ZPECCN7AX2ME3K", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "V7ZPECCN7AX2ME3K.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "V7ZPECCN7AX2ME3K.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "430" - }, - "appliesTo" : [ ] - }, - "V7ZPECCN7AX2ME3K.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "V7ZPECCN7AX2ME3K.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "V7ZPECCN7AX2ME3K.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "V7ZPECCN7AX2ME3K", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V7ZPECCN7AX2ME3K.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "V7ZPECCN7AX2ME3K.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "216" - }, - "appliesTo" : [ ] - }, - "V7ZPECCN7AX2ME3K.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "V7ZPECCN7AX2ME3K.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "V7ZPECCN7AX2ME3K.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "V7ZPECCN7AX2ME3K", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "V7ZPECCN7AX2ME3K.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "V7ZPECCN7AX2ME3K.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "221" - }, - "appliesTo" : [ ] - }, - "V7ZPECCN7AX2ME3K.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "V7ZPECCN7AX2ME3K.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "V7ZPECCN7AX2ME3K.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "V7ZPECCN7AX2ME3K", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "V7ZPECCN7AX2ME3K.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "V7ZPECCN7AX2ME3K.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0099000000" - }, - "appliesTo" : [ ] - }, - "V7ZPECCN7AX2ME3K.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "V7ZPECCN7AX2ME3K.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "261" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "V7ZPECCN7AX2ME3K.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "V7ZPECCN7AX2ME3K", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V7ZPECCN7AX2ME3K.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "V7ZPECCN7AX2ME3K.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0257000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "V7ZPECCN7AX2ME3K.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "V7ZPECCN7AX2ME3K", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V7ZPECCN7AX2ME3K.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "V7ZPECCN7AX2ME3K.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "109" - }, - "appliesTo" : [ ] - }, - "V7ZPECCN7AX2ME3K.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "V7ZPECCN7AX2ME3K.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0125000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "H6JT2V67UAFS4Z2Y" : { - "H6JT2V67UAFS4Z2Y.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "H6JT2V67UAFS4Z2Y", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "H6JT2V67UAFS4Z2Y.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "H6JT2V67UAFS4Z2Y.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10543" - }, - "appliesTo" : [ ] - }, - "H6JT2V67UAFS4Z2Y.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "H6JT2V67UAFS4Z2Y.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "H6JT2V67UAFS4Z2Y.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "H6JT2V67UAFS4Z2Y", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "H6JT2V67UAFS4Z2Y.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "H6JT2V67UAFS4Z2Y.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5380" - }, - "appliesTo" : [ ] - }, - "H6JT2V67UAFS4Z2Y.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "H6JT2V67UAFS4Z2Y.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "H6JT2V67UAFS4Z2Y.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "H6JT2V67UAFS4Z2Y", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "H6JT2V67UAFS4Z2Y.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "H6JT2V67UAFS4Z2Y.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "H6JT2V67UAFS4Z2Y.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "H6JT2V67UAFS4Z2Y", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "H6JT2V67UAFS4Z2Y.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "H6JT2V67UAFS4Z2Y.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "H6JT2V67UAFS4Z2Y.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "H6JT2V67UAFS4Z2Y.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23456" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "H6JT2V67UAFS4Z2Y.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "H6JT2V67UAFS4Z2Y", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "H6JT2V67UAFS4Z2Y.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "H6JT2V67UAFS4Z2Y.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4750000000" - }, - "appliesTo" : [ ] - }, - "H6JT2V67UAFS4Z2Y.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "H6JT2V67UAFS4Z2Y.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12470" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "DFZPYYVFYF45BSQ3" : { - "DFZPYYVFYF45BSQ3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "DFZPYYVFYF45BSQ3", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "DFZPYYVFYF45BSQ3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "DFZPYYVFYF45BSQ3.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DFZPYYVFYF45BSQ3.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "DFZPYYVFYF45BSQ3", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "DFZPYYVFYF45BSQ3.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "DFZPYYVFYF45BSQ3.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47126" - }, - "appliesTo" : [ ] - }, - "DFZPYYVFYF45BSQ3.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "DFZPYYVFYF45BSQ3.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DFZPYYVFYF45BSQ3.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "DFZPYYVFYF45BSQ3", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "DFZPYYVFYF45BSQ3.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "DFZPYYVFYF45BSQ3.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0840000000" - }, - "appliesTo" : [ ] - }, - "DFZPYYVFYF45BSQ3.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "DFZPYYVFYF45BSQ3.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19623" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DFZPYYVFYF45BSQ3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "DFZPYYVFYF45BSQ3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "DFZPYYVFYF45BSQ3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "DFZPYYVFYF45BSQ3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11587" - }, - "appliesTo" : [ ] - }, - "DFZPYYVFYF45BSQ3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "DFZPYYVFYF45BSQ3.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DFZPYYVFYF45BSQ3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "DFZPYYVFYF45BSQ3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "DFZPYYVFYF45BSQ3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "DFZPYYVFYF45BSQ3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35126" - }, - "appliesTo" : [ ] - }, - "DFZPYYVFYF45BSQ3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "DFZPYYVFYF45BSQ3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DFZPYYVFYF45BSQ3.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "DFZPYYVFYF45BSQ3", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "DFZPYYVFYF45BSQ3.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "DFZPYYVFYF45BSQ3.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DFZPYYVFYF45BSQ3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "DFZPYYVFYF45BSQ3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "DFZPYYVFYF45BSQ3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "DFZPYYVFYF45BSQ3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16955" - }, - "appliesTo" : [ ] - }, - "DFZPYYVFYF45BSQ3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "DFZPYYVFYF45BSQ3.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DFZPYYVFYF45BSQ3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "DFZPYYVFYF45BSQ3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "DFZPYYVFYF45BSQ3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "DFZPYYVFYF45BSQ3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7269" - }, - "appliesTo" : [ ] - }, - "DFZPYYVFYF45BSQ3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "DFZPYYVFYF45BSQ3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DFZPYYVFYF45BSQ3.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "DFZPYYVFYF45BSQ3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DFZPYYVFYF45BSQ3.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "DFZPYYVFYF45BSQ3.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "DFZPYYVFYF45BSQ3.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "DFZPYYVFYF45BSQ3.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23245" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DFZPYYVFYF45BSQ3.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "DFZPYYVFYF45BSQ3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DFZPYYVFYF45BSQ3.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "DFZPYYVFYF45BSQ3.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11769" - }, - "appliesTo" : [ ] - }, - "DFZPYYVFYF45BSQ3.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "DFZPYYVFYF45BSQ3.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DFZPYYVFYF45BSQ3.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "DFZPYYVFYF45BSQ3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DFZPYYVFYF45BSQ3.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "DFZPYYVFYF45BSQ3.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "DE3QV5WMKKGZRFHG" : { - "DE3QV5WMKKGZRFHG.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "DE3QV5WMKKGZRFHG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DE3QV5WMKKGZRFHG.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "DE3QV5WMKKGZRFHG.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.1640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DE3QV5WMKKGZRFHG.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "DE3QV5WMKKGZRFHG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DE3QV5WMKKGZRFHG.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "DE3QV5WMKKGZRFHG.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "71219" - }, - "appliesTo" : [ ] - }, - "DE3QV5WMKKGZRFHG.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "DE3QV5WMKKGZRFHG.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.1300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DE3QV5WMKKGZRFHG.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "DE3QV5WMKKGZRFHG", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "DE3QV5WMKKGZRFHG.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "DE3QV5WMKKGZRFHG.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "207835" - }, - "appliesTo" : [ ] - }, - "DE3QV5WMKKGZRFHG.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "DE3QV5WMKKGZRFHG.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.9080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DE3QV5WMKKGZRFHG.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "DE3QV5WMKKGZRFHG", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "DE3QV5WMKKGZRFHG.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "DE3QV5WMKKGZRFHG.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "414628" - }, - "appliesTo" : [ ] - }, - "DE3QV5WMKKGZRFHG.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "DE3QV5WMKKGZRFHG.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DE3QV5WMKKGZRFHG.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "DE3QV5WMKKGZRFHG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DE3QV5WMKKGZRFHG.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "DE3QV5WMKKGZRFHG.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.9710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DE3QV5WMKKGZRFHG.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "DE3QV5WMKKGZRFHG", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "DE3QV5WMKKGZRFHG.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "DE3QV5WMKKGZRFHG.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "DE3QV5WMKKGZRFHG.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "DE3QV5WMKKGZRFHG.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "141514" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DE3QV5WMKKGZRFHG.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "DE3QV5WMKKGZRFHG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DE3QV5WMKKGZRFHG.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "DE3QV5WMKKGZRFHG.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "209063" - }, - "appliesTo" : [ ] - }, - "DE3QV5WMKKGZRFHG.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "DE3QV5WMKKGZRFHG.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.9550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DE3QV5WMKKGZRFHG.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "DE3QV5WMKKGZRFHG", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "DE3QV5WMKKGZRFHG.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "DE3QV5WMKKGZRFHG.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.0870000000" - }, - "appliesTo" : [ ] - }, - "DE3QV5WMKKGZRFHG.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "DE3QV5WMKKGZRFHG.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "70846" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DE3QV5WMKKGZRFHG.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "DE3QV5WMKKGZRFHG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DE3QV5WMKKGZRFHG.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "DE3QV5WMKKGZRFHG.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "142244" - }, - "appliesTo" : [ ] - }, - "DE3QV5WMKKGZRFHG.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "DE3QV5WMKKGZRFHG.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DE3QV5WMKKGZRFHG.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "DE3QV5WMKKGZRFHG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DE3QV5WMKKGZRFHG.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "DE3QV5WMKKGZRFHG.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "DE3QV5WMKKGZRFHG.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "DE3QV5WMKKGZRFHG.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "417729" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DE3QV5WMKKGZRFHG.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "DE3QV5WMKKGZRFHG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DE3QV5WMKKGZRFHG.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "DE3QV5WMKKGZRFHG.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.8640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DE3QV5WMKKGZRFHG.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "DE3QV5WMKKGZRFHG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DE3QV5WMKKGZRFHG.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "DE3QV5WMKKGZRFHG.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.3150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "Y9WDY7HG6S2NXFSP" : { - "Y9WDY7HG6S2NXFSP.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "Y9WDY7HG6S2NXFSP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Y9WDY7HG6S2NXFSP.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "Y9WDY7HG6S2NXFSP.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Y9WDY7HG6S2NXFSP.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Y9WDY7HG6S2NXFSP", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "Y9WDY7HG6S2NXFSP.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Y9WDY7HG6S2NXFSP.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8027" - }, - "appliesTo" : [ ] - }, - "Y9WDY7HG6S2NXFSP.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Y9WDY7HG6S2NXFSP.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Y9WDY7HG6S2NXFSP.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "Y9WDY7HG6S2NXFSP", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "Y9WDY7HG6S2NXFSP.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "Y9WDY7HG6S2NXFSP.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3910000000" - }, - "appliesTo" : [ ] - }, - "Y9WDY7HG6S2NXFSP.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "Y9WDY7HG6S2NXFSP.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12212" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y9WDY7HG6S2NXFSP.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Y9WDY7HG6S2NXFSP", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "Y9WDY7HG6S2NXFSP.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Y9WDY7HG6S2NXFSP.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8636" - }, - "appliesTo" : [ ] - }, - "Y9WDY7HG6S2NXFSP.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Y9WDY7HG6S2NXFSP.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y9WDY7HG6S2NXFSP.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "Y9WDY7HG6S2NXFSP", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "Y9WDY7HG6S2NXFSP.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "Y9WDY7HG6S2NXFSP.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22041" - }, - "appliesTo" : [ ] - }, - "Y9WDY7HG6S2NXFSP.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "Y9WDY7HG6S2NXFSP.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Y9WDY7HG6S2NXFSP.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Y9WDY7HG6S2NXFSP", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "Y9WDY7HG6S2NXFSP.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Y9WDY7HG6S2NXFSP.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17018" - }, - "appliesTo" : [ ] - }, - "Y9WDY7HG6S2NXFSP.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Y9WDY7HG6S2NXFSP.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Y9WDY7HG6S2NXFSP.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "Y9WDY7HG6S2NXFSP", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "Y9WDY7HG6S2NXFSP.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "Y9WDY7HG6S2NXFSP.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Y9WDY7HG6S2NXFSP.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "Y9WDY7HG6S2NXFSP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Y9WDY7HG6S2NXFSP.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "Y9WDY7HG6S2NXFSP.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3976" - }, - "appliesTo" : [ ] - }, - "Y9WDY7HG6S2NXFSP.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "Y9WDY7HG6S2NXFSP.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y9WDY7HG6S2NXFSP.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Y9WDY7HG6S2NXFSP", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "Y9WDY7HG6S2NXFSP.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Y9WDY7HG6S2NXFSP.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Y9WDY7HG6S2NXFSP.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "Y9WDY7HG6S2NXFSP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Y9WDY7HG6S2NXFSP.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "Y9WDY7HG6S2NXFSP.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8932" - }, - "appliesTo" : [ ] - }, - "Y9WDY7HG6S2NXFSP.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "Y9WDY7HG6S2NXFSP.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Y9WDY7HG6S2NXFSP.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Y9WDY7HG6S2NXFSP", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "Y9WDY7HG6S2NXFSP.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Y9WDY7HG6S2NXFSP.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4523" - }, - "appliesTo" : [ ] - }, - "Y9WDY7HG6S2NXFSP.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Y9WDY7HG6S2NXFSP.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "BHX8HR3SKNMTY2Z6" : { - "BHX8HR3SKNMTY2Z6.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "BHX8HR3SKNMTY2Z6", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BHX8HR3SKNMTY2Z6.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "BHX8HR3SKNMTY2Z6.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1734" - }, - "appliesTo" : [ ] - }, - "BHX8HR3SKNMTY2Z6.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "BHX8HR3SKNMTY2Z6.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BHX8HR3SKNMTY2Z6.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "BHX8HR3SKNMTY2Z6", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BHX8HR3SKNMTY2Z6.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "BHX8HR3SKNMTY2Z6.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3590000000" - }, - "appliesTo" : [ ] - }, - "BHX8HR3SKNMTY2Z6.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "BHX8HR3SKNMTY2Z6.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2784" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BHX8HR3SKNMTY2Z6.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "BHX8HR3SKNMTY2Z6", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BHX8HR3SKNMTY2Z6.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "BHX8HR3SKNMTY2Z6.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BHX8HR3SKNMTY2Z6.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "BHX8HR3SKNMTY2Z6", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BHX8HR3SKNMTY2Z6.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "BHX8HR3SKNMTY2Z6.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4811" - }, - "appliesTo" : [ ] - }, - "BHX8HR3SKNMTY2Z6.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "BHX8HR3SKNMTY2Z6.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BHX8HR3SKNMTY2Z6.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "BHX8HR3SKNMTY2Z6", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BHX8HR3SKNMTY2Z6.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "BHX8HR3SKNMTY2Z6.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "BHX8HR3SKNMTY2Z6.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "BHX8HR3SKNMTY2Z6.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11485" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BHX8HR3SKNMTY2Z6.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "BHX8HR3SKNMTY2Z6", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BHX8HR3SKNMTY2Z6.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "BHX8HR3SKNMTY2Z6.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4824" - }, - "appliesTo" : [ ] - }, - "BHX8HR3SKNMTY2Z6.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "BHX8HR3SKNMTY2Z6.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BHX8HR3SKNMTY2Z6.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "BHX8HR3SKNMTY2Z6", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BHX8HR3SKNMTY2Z6.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "BHX8HR3SKNMTY2Z6.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BHX8HR3SKNMTY2Z6.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "BHX8HR3SKNMTY2Z6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BHX8HR3SKNMTY2Z6.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "BHX8HR3SKNMTY2Z6.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2885" - }, - "appliesTo" : [ ] - }, - "BHX8HR3SKNMTY2Z6.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "BHX8HR3SKNMTY2Z6.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BHX8HR3SKNMTY2Z6.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "BHX8HR3SKNMTY2Z6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BHX8HR3SKNMTY2Z6.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "BHX8HR3SKNMTY2Z6.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BHX8HR3SKNMTY2Z6.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "BHX8HR3SKNMTY2Z6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BHX8HR3SKNMTY2Z6.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "BHX8HR3SKNMTY2Z6.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5719" - }, - "appliesTo" : [ ] - }, - "BHX8HR3SKNMTY2Z6.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "BHX8HR3SKNMTY2Z6.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BHX8HR3SKNMTY2Z6.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "BHX8HR3SKNMTY2Z6", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "BHX8HR3SKNMTY2Z6.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "BHX8HR3SKNMTY2Z6.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13821" - }, - "appliesTo" : [ ] - }, - "BHX8HR3SKNMTY2Z6.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "BHX8HR3SKNMTY2Z6.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "XCMMYCWQYMYT84XG" : { - "XCMMYCWQYMYT84XG.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "XCMMYCWQYMYT84XG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XCMMYCWQYMYT84XG.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "XCMMYCWQYMYT84XG.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "48487" - }, - "appliesTo" : [ ] - }, - "XCMMYCWQYMYT84XG.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "XCMMYCWQYMYT84XG.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XCMMYCWQYMYT84XG.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "XCMMYCWQYMYT84XG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XCMMYCWQYMYT84XG.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "XCMMYCWQYMYT84XG.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XCMMYCWQYMYT84XG.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "XCMMYCWQYMYT84XG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XCMMYCWQYMYT84XG.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "XCMMYCWQYMYT84XG.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XCMMYCWQYMYT84XG.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XCMMYCWQYMYT84XG", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "XCMMYCWQYMYT84XG.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XCMMYCWQYMYT84XG.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "95448" - }, - "appliesTo" : [ ] - }, - "XCMMYCWQYMYT84XG.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XCMMYCWQYMYT84XG.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XCMMYCWQYMYT84XG.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XCMMYCWQYMYT84XG", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "XCMMYCWQYMYT84XG.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XCMMYCWQYMYT84XG.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32986" - }, - "appliesTo" : [ ] - }, - "XCMMYCWQYMYT84XG.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XCMMYCWQYMYT84XG.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XCMMYCWQYMYT84XG.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XCMMYCWQYMYT84XG", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "XCMMYCWQYMYT84XG.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XCMMYCWQYMYT84XG.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8240000000" - }, - "appliesTo" : [ ] - }, - "XCMMYCWQYMYT84XG.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XCMMYCWQYMYT84XG.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47945" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XCMMYCWQYMYT84XG.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "XCMMYCWQYMYT84XG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XCMMYCWQYMYT84XG.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "XCMMYCWQYMYT84XG.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16807" - }, - "appliesTo" : [ ] - }, - "XCMMYCWQYMYT84XG.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "XCMMYCWQYMYT84XG.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XCMMYCWQYMYT84XG.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "XCMMYCWQYMYT84XG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XCMMYCWQYMYT84XG.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "XCMMYCWQYMYT84XG.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XCMMYCWQYMYT84XG.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XCMMYCWQYMYT84XG", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "XCMMYCWQYMYT84XG.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XCMMYCWQYMYT84XG.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16528" - }, - "appliesTo" : [ ] - }, - "XCMMYCWQYMYT84XG.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XCMMYCWQYMYT84XG.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XCMMYCWQYMYT84XG.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XCMMYCWQYMYT84XG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XCMMYCWQYMYT84XG.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XCMMYCWQYMYT84XG.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XCMMYCWQYMYT84XG.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "XCMMYCWQYMYT84XG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XCMMYCWQYMYT84XG.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "XCMMYCWQYMYT84XG.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "96804" - }, - "appliesTo" : [ ] - }, - "XCMMYCWQYMYT84XG.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "XCMMYCWQYMYT84XG.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XCMMYCWQYMYT84XG.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "XCMMYCWQYMYT84XG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XCMMYCWQYMYT84XG.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "XCMMYCWQYMYT84XG.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "XCMMYCWQYMYT84XG.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "XCMMYCWQYMYT84XG.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33532" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "YAPU23CHKA23RRR7" : { - "YAPU23CHKA23RRR7.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YAPU23CHKA23RRR7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YAPU23CHKA23RRR7.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YAPU23CHKA23RRR7.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1569000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YAPU23CHKA23RRR7.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "YAPU23CHKA23RRR7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YAPU23CHKA23RRR7.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "YAPU23CHKA23RRR7.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "770" - }, - "appliesTo" : [ ] - }, - "YAPU23CHKA23RRR7.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "YAPU23CHKA23RRR7.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0809000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YAPU23CHKA23RRR7.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "YAPU23CHKA23RRR7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YAPU23CHKA23RRR7.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "YAPU23CHKA23RRR7.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1755000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YAPU23CHKA23RRR7.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YAPU23CHKA23RRR7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YAPU23CHKA23RRR7.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YAPU23CHKA23RRR7.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YAPU23CHKA23RRR7.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YAPU23CHKA23RRR7.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2670" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YAPU23CHKA23RRR7.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "YAPU23CHKA23RRR7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YAPU23CHKA23RRR7.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "YAPU23CHKA23RRR7.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1194000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YAPU23CHKA23RRR7.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "YAPU23CHKA23RRR7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YAPU23CHKA23RRR7.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "YAPU23CHKA23RRR7.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1324000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YAPU23CHKA23RRR7.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YAPU23CHKA23RRR7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YAPU23CHKA23RRR7.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YAPU23CHKA23RRR7.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0530000000" - }, - "appliesTo" : [ ] - }, - "YAPU23CHKA23RRR7.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YAPU23CHKA23RRR7.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1403" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YAPU23CHKA23RRR7.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "YAPU23CHKA23RRR7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YAPU23CHKA23RRR7.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "YAPU23CHKA23RRR7.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3063" - }, - "appliesTo" : [ ] - }, - "YAPU23CHKA23RRR7.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "YAPU23CHKA23RRR7.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YAPU23CHKA23RRR7.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "YAPU23CHKA23RRR7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YAPU23CHKA23RRR7.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "YAPU23CHKA23RRR7.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1455" - }, - "appliesTo" : [ ] - }, - "YAPU23CHKA23RRR7.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "YAPU23CHKA23RRR7.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YAPU23CHKA23RRR7.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "YAPU23CHKA23RRR7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YAPU23CHKA23RRR7.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "YAPU23CHKA23RRR7.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1561" - }, - "appliesTo" : [ ] - }, - "YAPU23CHKA23RRR7.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "YAPU23CHKA23RRR7.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YAPU23CHKA23RRR7.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YAPU23CHKA23RRR7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YAPU23CHKA23RRR7.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YAPU23CHKA23RRR7.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1303" - }, - "appliesTo" : [ ] - }, - "YAPU23CHKA23RRR7.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YAPU23CHKA23RRR7.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YAPU23CHKA23RRR7.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YAPU23CHKA23RRR7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YAPU23CHKA23RRR7.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YAPU23CHKA23RRR7.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "693" - }, - "appliesTo" : [ ] - }, - "YAPU23CHKA23RRR7.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YAPU23CHKA23RRR7.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "R6T5AVAY3H4NQFQ4" : { - "R6T5AVAY3H4NQFQ4.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "R6T5AVAY3H4NQFQ4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "R6T5AVAY3H4NQFQ4.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "R6T5AVAY3H4NQFQ4.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16578" - }, - "appliesTo" : [ ] - }, - "R6T5AVAY3H4NQFQ4.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "R6T5AVAY3H4NQFQ4.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "R6T5AVAY3H4NQFQ4.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "R6T5AVAY3H4NQFQ4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "R6T5AVAY3H4NQFQ4.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "R6T5AVAY3H4NQFQ4.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3010000000" - }, - "appliesTo" : [ ] - }, - "R6T5AVAY3H4NQFQ4.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "R6T5AVAY3H4NQFQ4.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7910" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "R6T5AVAY3H4NQFQ4.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "R6T5AVAY3H4NQFQ4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "R6T5AVAY3H4NQFQ4.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "R6T5AVAY3H4NQFQ4.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8359" - }, - "appliesTo" : [ ] - }, - "R6T5AVAY3H4NQFQ4.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "R6T5AVAY3H4NQFQ4.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3181000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "R6T5AVAY3H4NQFQ4.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "R6T5AVAY3H4NQFQ4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "R6T5AVAY3H4NQFQ4.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "R6T5AVAY3H4NQFQ4.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7376000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "R6T5AVAY3H4NQFQ4.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "R6T5AVAY3H4NQFQ4", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "R6T5AVAY3H4NQFQ4.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "R6T5AVAY3H4NQFQ4.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15452" - }, - "appliesTo" : [ ] - }, - "R6T5AVAY3H4NQFQ4.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "R6T5AVAY3H4NQFQ4.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "R6T5AVAY3H4NQFQ4.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "R6T5AVAY3H4NQFQ4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "R6T5AVAY3H4NQFQ4.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "R6T5AVAY3H4NQFQ4.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6576000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "R6T5AVAY3H4NQFQ4.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "R6T5AVAY3H4NQFQ4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "R6T5AVAY3H4NQFQ4.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "R6T5AVAY3H4NQFQ4.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "R6T5AVAY3H4NQFQ4.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "R6T5AVAY3H4NQFQ4.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6237" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "R6T5AVAY3H4NQFQ4.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "R6T5AVAY3H4NQFQ4", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "R6T5AVAY3H4NQFQ4.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "R6T5AVAY3H4NQFQ4.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3590000000" - }, - "appliesTo" : [ ] - }, - "R6T5AVAY3H4NQFQ4.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "R6T5AVAY3H4NQFQ4.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3149" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "R6T5AVAY3H4NQFQ4.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "R6T5AVAY3H4NQFQ4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R6T5AVAY3H4NQFQ4.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "R6T5AVAY3H4NQFQ4.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3864000000" - }, - "appliesTo" : [ ] - }, - "R6T5AVAY3H4NQFQ4.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "R6T5AVAY3H4NQFQ4.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3385" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "R6T5AVAY3H4NQFQ4.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "R6T5AVAY3H4NQFQ4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R6T5AVAY3H4NQFQ4.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "R6T5AVAY3H4NQFQ4.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6699" - }, - "appliesTo" : [ ] - }, - "R6T5AVAY3H4NQFQ4.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "R6T5AVAY3H4NQFQ4.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "R6T5AVAY3H4NQFQ4.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "R6T5AVAY3H4NQFQ4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R6T5AVAY3H4NQFQ4.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "R6T5AVAY3H4NQFQ4.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "R6T5AVAY3H4NQFQ4.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "R6T5AVAY3H4NQFQ4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "R6T5AVAY3H4NQFQ4.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "R6T5AVAY3H4NQFQ4.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6199000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "GY7YBGWY6UY9H8G3" : { - "GY7YBGWY6UY9H8G3.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "GY7YBGWY6UY9H8G3", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "GY7YBGWY6UY9H8G3.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "GY7YBGWY6UY9H8G3.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0780000000" - }, - "appliesTo" : [ ] - }, - "GY7YBGWY6UY9H8G3.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "GY7YBGWY6UY9H8G3.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3812" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GY7YBGWY6UY9H8G3.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "GY7YBGWY6UY9H8G3", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "GY7YBGWY6UY9H8G3.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "GY7YBGWY6UY9H8G3.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "GY7YBGWY6UY9H8G3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "GY7YBGWY6UY9H8G3", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "GY7YBGWY6UY9H8G3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "GY7YBGWY6UY9H8G3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4990" - }, - "appliesTo" : [ ] - }, - "GY7YBGWY6UY9H8G3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "GY7YBGWY6UY9H8G3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GY7YBGWY6UY9H8G3.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "GY7YBGWY6UY9H8G3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GY7YBGWY6UY9H8G3.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "GY7YBGWY6UY9H8G3.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2313" - }, - "appliesTo" : [ ] - }, - "GY7YBGWY6UY9H8G3.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "GY7YBGWY6UY9H8G3.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "GY7YBGWY6UY9H8G3.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "GY7YBGWY6UY9H8G3", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "GY7YBGWY6UY9H8G3.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "GY7YBGWY6UY9H8G3.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5750" - }, - "appliesTo" : [ ] - }, - "GY7YBGWY6UY9H8G3.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "GY7YBGWY6UY9H8G3.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "GY7YBGWY6UY9H8G3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "GY7YBGWY6UY9H8G3", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "GY7YBGWY6UY9H8G3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "GY7YBGWY6UY9H8G3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0810000000" - }, - "appliesTo" : [ ] - }, - "GY7YBGWY6UY9H8G3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "GY7YBGWY6UY9H8G3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1322" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GY7YBGWY6UY9H8G3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "GY7YBGWY6UY9H8G3", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "GY7YBGWY6UY9H8G3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "GY7YBGWY6UY9H8G3.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GY7YBGWY6UY9H8G3.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "GY7YBGWY6UY9H8G3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GY7YBGWY6UY9H8G3.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "GY7YBGWY6UY9H8G3.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "GY7YBGWY6UY9H8G3.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "GY7YBGWY6UY9H8G3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GY7YBGWY6UY9H8G3.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "GY7YBGWY6UY9H8G3.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1166" - }, - "appliesTo" : [ ] - }, - "GY7YBGWY6UY9H8G3.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "GY7YBGWY6UY9H8G3.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GY7YBGWY6UY9H8G3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "GY7YBGWY6UY9H8G3", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "GY7YBGWY6UY9H8G3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "GY7YBGWY6UY9H8G3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1994" - }, - "appliesTo" : [ ] - }, - "GY7YBGWY6UY9H8G3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "GY7YBGWY6UY9H8G3.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GY7YBGWY6UY9H8G3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "GY7YBGWY6UY9H8G3", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "GY7YBGWY6UY9H8G3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "GY7YBGWY6UY9H8G3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3450" - }, - "appliesTo" : [ ] - }, - "GY7YBGWY6UY9H8G3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "GY7YBGWY6UY9H8G3.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "HZC9FAP4F9Y8JW67" : { - "HZC9FAP4F9Y8JW67.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "HZC9FAP4F9Y8JW67", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "HZC9FAP4F9Y8JW67.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "HZC9FAP4F9Y8JW67.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "137" - }, - "appliesTo" : [ ] - }, - "HZC9FAP4F9Y8JW67.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "HZC9FAP4F9Y8JW67.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "HZC9FAP4F9Y8JW67.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "HZC9FAP4F9Y8JW67", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "HZC9FAP4F9Y8JW67.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "HZC9FAP4F9Y8JW67.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0058000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "HZC9FAP4F9Y8JW67.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "HZC9FAP4F9Y8JW67", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HZC9FAP4F9Y8JW67.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "HZC9FAP4F9Y8JW67.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34" - }, - "appliesTo" : [ ] - }, - "HZC9FAP4F9Y8JW67.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "HZC9FAP4F9Y8JW67.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0039000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HZC9FAP4F9Y8JW67.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "HZC9FAP4F9Y8JW67", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HZC9FAP4F9Y8JW67.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "HZC9FAP4F9Y8JW67.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "HZC9FAP4F9Y8JW67.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "HZC9FAP4F9Y8JW67.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "68" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "HZC9FAP4F9Y8JW67.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "HZC9FAP4F9Y8JW67", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "HZC9FAP4F9Y8JW67.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "HZC9FAP4F9Y8JW67.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "HZC9FAP4F9Y8JW67.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "HZC9FAP4F9Y8JW67", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "HZC9FAP4F9Y8JW67.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "HZC9FAP4F9Y8JW67.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0072000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "HZC9FAP4F9Y8JW67.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "HZC9FAP4F9Y8JW67", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "HZC9FAP4F9Y8JW67.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "HZC9FAP4F9Y8JW67.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30" - }, - "appliesTo" : [ ] - }, - "HZC9FAP4F9Y8JW67.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "HZC9FAP4F9Y8JW67.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0034000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HZC9FAP4F9Y8JW67.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "HZC9FAP4F9Y8JW67", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "HZC9FAP4F9Y8JW67.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "HZC9FAP4F9Y8JW67.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "59" - }, - "appliesTo" : [ ] - }, - "HZC9FAP4F9Y8JW67.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "HZC9FAP4F9Y8JW67.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HZC9FAP4F9Y8JW67.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "HZC9FAP4F9Y8JW67", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HZC9FAP4F9Y8JW67.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "HZC9FAP4F9Y8JW67.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0083000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "HZC9FAP4F9Y8JW67.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "HZC9FAP4F9Y8JW67", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "HZC9FAP4F9Y8JW67.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "HZC9FAP4F9Y8JW67.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "115" - }, - "appliesTo" : [ ] - }, - "HZC9FAP4F9Y8JW67.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "HZC9FAP4F9Y8JW67.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HZC9FAP4F9Y8JW67.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "HZC9FAP4F9Y8JW67", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "HZC9FAP4F9Y8JW67.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "HZC9FAP4F9Y8JW67.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "70" - }, - "appliesTo" : [ ] - }, - "HZC9FAP4F9Y8JW67.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "HZC9FAP4F9Y8JW67.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0027000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HZC9FAP4F9Y8JW67.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "HZC9FAP4F9Y8JW67", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "HZC9FAP4F9Y8JW67.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "HZC9FAP4F9Y8JW67.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0020000000" - }, - "appliesTo" : [ ] - }, - "HZC9FAP4F9Y8JW67.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "HZC9FAP4F9Y8JW67.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "66" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "9XSHJSECKR9ATRQG" : { - "9XSHJSECKR9ATRQG.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "9XSHJSECKR9ATRQG", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "9XSHJSECKR9ATRQG.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "9XSHJSECKR9ATRQG.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10033" - }, - "appliesTo" : [ ] - }, - "9XSHJSECKR9ATRQG.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "9XSHJSECKR9ATRQG.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9XSHJSECKR9ATRQG.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "9XSHJSECKR9ATRQG", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "9XSHJSECKR9ATRQG.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "9XSHJSECKR9ATRQG.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5119" - }, - "appliesTo" : [ ] - }, - "9XSHJSECKR9ATRQG.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "9XSHJSECKR9ATRQG.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9XSHJSECKR9ATRQG.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "9XSHJSECKR9ATRQG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9XSHJSECKR9ATRQG.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "9XSHJSECKR9ATRQG.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0417000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9XSHJSECKR9ATRQG.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "9XSHJSECKR9ATRQG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9XSHJSECKR9ATRQG.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "9XSHJSECKR9ATRQG.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4823000000" - }, - "appliesTo" : [ ] - }, - "9XSHJSECKR9ATRQG.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "9XSHJSECKR9ATRQG.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12674" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9XSHJSECKR9ATRQG.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "9XSHJSECKR9ATRQG", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "9XSHJSECKR9ATRQG.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "9XSHJSECKR9ATRQG.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20720" - }, - "appliesTo" : [ ] - }, - "9XSHJSECKR9ATRQG.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "9XSHJSECKR9ATRQG.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9XSHJSECKR9ATRQG.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "9XSHJSECKR9ATRQG", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "9XSHJSECKR9ATRQG.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "9XSHJSECKR9ATRQG.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11021" - }, - "appliesTo" : [ ] - }, - "9XSHJSECKR9ATRQG.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "9XSHJSECKR9ATRQG.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9XSHJSECKR9ATRQG.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "9XSHJSECKR9ATRQG", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "9XSHJSECKR9ATRQG.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "9XSHJSECKR9ATRQG.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9XSHJSECKR9ATRQG.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "9XSHJSECKR9ATRQG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9XSHJSECKR9ATRQG.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "9XSHJSECKR9ATRQG.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11538" - }, - "appliesTo" : [ ] - }, - "9XSHJSECKR9ATRQG.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "9XSHJSECKR9ATRQG.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9XSHJSECKR9ATRQG.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "9XSHJSECKR9ATRQG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9XSHJSECKR9ATRQG.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "9XSHJSECKR9ATRQG.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4112000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9XSHJSECKR9ATRQG.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "9XSHJSECKR9ATRQG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9XSHJSECKR9ATRQG.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "9XSHJSECKR9ATRQG.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5887" - }, - "appliesTo" : [ ] - }, - "9XSHJSECKR9ATRQG.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "9XSHJSECKR9ATRQG.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9XSHJSECKR9ATRQG.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "9XSHJSECKR9ATRQG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9XSHJSECKR9ATRQG.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "9XSHJSECKR9ATRQG.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "9XSHJSECKR9ATRQG.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "9XSHJSECKR9ATRQG.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24841" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9XSHJSECKR9ATRQG.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "9XSHJSECKR9ATRQG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9XSHJSECKR9ATRQG.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "9XSHJSECKR9ATRQG.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9058000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "ENS9X5UYSE8HHJGX" : { - "ENS9X5UYSE8HHJGX.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ENS9X5UYSE8HHJGX", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "ENS9X5UYSE8HHJGX.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ENS9X5UYSE8HHJGX.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ENS9X5UYSE8HHJGX.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ENS9X5UYSE8HHJGX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ENS9X5UYSE8HHJGX.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ENS9X5UYSE8HHJGX.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3210000000" - }, - "appliesTo" : [ ] - }, - "ENS9X5UYSE8HHJGX.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ENS9X5UYSE8HHJGX.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5618" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ENS9X5UYSE8HHJGX.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ENS9X5UYSE8HHJGX", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "ENS9X5UYSE8HHJGX.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ENS9X5UYSE8HHJGX.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6524" - }, - "appliesTo" : [ ] - }, - "ENS9X5UYSE8HHJGX.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ENS9X5UYSE8HHJGX.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ENS9X5UYSE8HHJGX.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ENS9X5UYSE8HHJGX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ENS9X5UYSE8HHJGX.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ENS9X5UYSE8HHJGX.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ENS9X5UYSE8HHJGX.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ENS9X5UYSE8HHJGX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ENS9X5UYSE8HHJGX.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ENS9X5UYSE8HHJGX.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3503" - }, - "appliesTo" : [ ] - }, - "ENS9X5UYSE8HHJGX.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ENS9X5UYSE8HHJGX.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ENS9X5UYSE8HHJGX.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ENS9X5UYSE8HHJGX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ENS9X5UYSE8HHJGX.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ENS9X5UYSE8HHJGX.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2305" - }, - "appliesTo" : [ ] - }, - "ENS9X5UYSE8HHJGX.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ENS9X5UYSE8HHJGX.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ENS9X5UYSE8HHJGX.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ENS9X5UYSE8HHJGX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ENS9X5UYSE8HHJGX.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ENS9X5UYSE8HHJGX.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6955" - }, - "appliesTo" : [ ] - }, - "ENS9X5UYSE8HHJGX.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ENS9X5UYSE8HHJGX.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ENS9X5UYSE8HHJGX.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ENS9X5UYSE8HHJGX", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "ENS9X5UYSE8HHJGX.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ENS9X5UYSE8HHJGX.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16323" - }, - "appliesTo" : [ ] - }, - "ENS9X5UYSE8HHJGX.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ENS9X5UYSE8HHJGX.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ENS9X5UYSE8HHJGX.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ENS9X5UYSE8HHJGX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ENS9X5UYSE8HHJGX.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ENS9X5UYSE8HHJGX.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ENS9X5UYSE8HHJGX.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ENS9X5UYSE8HHJGX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ENS9X5UYSE8HHJGX.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ENS9X5UYSE8HHJGX.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ENS9X5UYSE8HHJGX.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ENS9X5UYSE8HHJGX.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13211" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ENS9X5UYSE8HHJGX.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ENS9X5UYSE8HHJGX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ENS9X5UYSE8HHJGX.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ENS9X5UYSE8HHJGX.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5658" - }, - "appliesTo" : [ ] - }, - "ENS9X5UYSE8HHJGX.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ENS9X5UYSE8HHJGX.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "QWZW5Y8P4TX97TGS" : { - "QWZW5Y8P4TX97TGS.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QWZW5Y8P4TX97TGS", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "QWZW5Y8P4TX97TGS.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QWZW5Y8P4TX97TGS.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4110000000" - }, - "appliesTo" : [ ] - }, - "QWZW5Y8P4TX97TGS.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QWZW5Y8P4TX97TGS.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7379" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QWZW5Y8P4TX97TGS.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "QWZW5Y8P4TX97TGS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QWZW5Y8P4TX97TGS.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "QWZW5Y8P4TX97TGS.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20002" - }, - "appliesTo" : [ ] - }, - "QWZW5Y8P4TX97TGS.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "QWZW5Y8P4TX97TGS.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QWZW5Y8P4TX97TGS.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "QWZW5Y8P4TX97TGS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QWZW5Y8P4TX97TGS.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "QWZW5Y8P4TX97TGS.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8462" - }, - "appliesTo" : [ ] - }, - "QWZW5Y8P4TX97TGS.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "QWZW5Y8P4TX97TGS.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QWZW5Y8P4TX97TGS.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QWZW5Y8P4TX97TGS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QWZW5Y8P4TX97TGS.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QWZW5Y8P4TX97TGS.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QWZW5Y8P4TX97TGS.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QWZW5Y8P4TX97TGS", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "QWZW5Y8P4TX97TGS.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QWZW5Y8P4TX97TGS.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QWZW5Y8P4TX97TGS.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QWZW5Y8P4TX97TGS.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8103" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QWZW5Y8P4TX97TGS.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QWZW5Y8P4TX97TGS", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "QWZW5Y8P4TX97TGS.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QWZW5Y8P4TX97TGS.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QWZW5Y8P4TX97TGS.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QWZW5Y8P4TX97TGS.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17290" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QWZW5Y8P4TX97TGS.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "QWZW5Y8P4TX97TGS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QWZW5Y8P4TX97TGS.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "QWZW5Y8P4TX97TGS.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QWZW5Y8P4TX97TGS.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QWZW5Y8P4TX97TGS", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "QWZW5Y8P4TX97TGS.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QWZW5Y8P4TX97TGS.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3553" - }, - "appliesTo" : [ ] - }, - "QWZW5Y8P4TX97TGS.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QWZW5Y8P4TX97TGS.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QWZW5Y8P4TX97TGS.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "QWZW5Y8P4TX97TGS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QWZW5Y8P4TX97TGS.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "QWZW5Y8P4TX97TGS.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QWZW5Y8P4TX97TGS.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "QWZW5Y8P4TX97TGS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QWZW5Y8P4TX97TGS.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "QWZW5Y8P4TX97TGS.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9195" - }, - "appliesTo" : [ ] - }, - "QWZW5Y8P4TX97TGS.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "QWZW5Y8P4TX97TGS.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QWZW5Y8P4TX97TGS.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "QWZW5Y8P4TX97TGS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QWZW5Y8P4TX97TGS.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "QWZW5Y8P4TX97TGS.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QWZW5Y8P4TX97TGS.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "QWZW5Y8P4TX97TGS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QWZW5Y8P4TX97TGS.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "QWZW5Y8P4TX97TGS.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5990000000" - }, - "appliesTo" : [ ] - }, - "QWZW5Y8P4TX97TGS.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "QWZW5Y8P4TX97TGS.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4110" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "JABV4QCJFZRBR8JA" : { - "JABV4QCJFZRBR8JA.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "JABV4QCJFZRBR8JA", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "JABV4QCJFZRBR8JA.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "JABV4QCJFZRBR8JA.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.1850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "JABV4QCJFZRBR8JA.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "JABV4QCJFZRBR8JA", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "JABV4QCJFZRBR8JA.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "JABV4QCJFZRBR8JA.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "197802" - }, - "appliesTo" : [ ] - }, - "JABV4QCJFZRBR8JA.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "JABV4QCJFZRBR8JA.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JABV4QCJFZRBR8JA.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "JABV4QCJFZRBR8JA", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "JABV4QCJFZRBR8JA.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "JABV4QCJFZRBR8JA.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "70817" - }, - "appliesTo" : [ ] - }, - "JABV4QCJFZRBR8JA.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "JABV4QCJFZRBR8JA.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JABV4QCJFZRBR8JA.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "JABV4QCJFZRBR8JA", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "JABV4QCJFZRBR8JA.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "JABV4QCJFZRBR8JA.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "99564" - }, - "appliesTo" : [ ] - }, - "JABV4QCJFZRBR8JA.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "JABV4QCJFZRBR8JA.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "JABV4QCJFZRBR8JA.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "JABV4QCJFZRBR8JA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "JABV4QCJFZRBR8JA.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "JABV4QCJFZRBR8JA.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9870000000" - }, - "appliesTo" : [ ] - }, - "JABV4QCJFZRBR8JA.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "JABV4QCJFZRBR8JA.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "104780" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "JABV4QCJFZRBR8JA.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "JABV4QCJFZRBR8JA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JABV4QCJFZRBR8JA.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "JABV4QCJFZRBR8JA.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "36455" - }, - "appliesTo" : [ ] - }, - "JABV4QCJFZRBR8JA.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "JABV4QCJFZRBR8JA.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.1620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "JABV4QCJFZRBR8JA.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "JABV4QCJFZRBR8JA", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "JABV4QCJFZRBR8JA.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "JABV4QCJFZRBR8JA.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.3460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "JABV4QCJFZRBR8JA.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "JABV4QCJFZRBR8JA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JABV4QCJFZRBR8JA.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "JABV4QCJFZRBR8JA.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.4020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "JABV4QCJFZRBR8JA.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "JABV4QCJFZRBR8JA", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "JABV4QCJFZRBR8JA.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "JABV4QCJFZRBR8JA.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "208909" - }, - "appliesTo" : [ ] - }, - "JABV4QCJFZRBR8JA.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "JABV4QCJFZRBR8JA.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "JABV4QCJFZRBR8JA.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "JABV4QCJFZRBR8JA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JABV4QCJFZRBR8JA.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "JABV4QCJFZRBR8JA.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "72631" - }, - "appliesTo" : [ ] - }, - "JABV4QCJFZRBR8JA.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "JABV4QCJFZRBR8JA.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "JABV4QCJFZRBR8JA.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "JABV4QCJFZRBR8JA", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "JABV4QCJFZRBR8JA.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "JABV4QCJFZRBR8JA.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.0560000000" - }, - "appliesTo" : [ ] - }, - "JABV4QCJFZRBR8JA.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "JABV4QCJFZRBR8JA.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35529" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "TA7UVX8V5EKCNAFA" : { - "TA7UVX8V5EKCNAFA.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TA7UVX8V5EKCNAFA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TA7UVX8V5EKCNAFA.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TA7UVX8V5EKCNAFA.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8042" - }, - "appliesTo" : [ ] - }, - "TA7UVX8V5EKCNAFA.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TA7UVX8V5EKCNAFA.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TA7UVX8V5EKCNAFA.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TA7UVX8V5EKCNAFA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TA7UVX8V5EKCNAFA.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TA7UVX8V5EKCNAFA.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29330" - }, - "appliesTo" : [ ] - }, - "TA7UVX8V5EKCNAFA.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TA7UVX8V5EKCNAFA.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TA7UVX8V5EKCNAFA.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TA7UVX8V5EKCNAFA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TA7UVX8V5EKCNAFA.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TA7UVX8V5EKCNAFA.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15762" - }, - "appliesTo" : [ ] - }, - "TA7UVX8V5EKCNAFA.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TA7UVX8V5EKCNAFA.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TA7UVX8V5EKCNAFA.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "TA7UVX8V5EKCNAFA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TA7UVX8V5EKCNAFA.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "TA7UVX8V5EKCNAFA.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TA7UVX8V5EKCNAFA.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TA7UVX8V5EKCNAFA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TA7UVX8V5EKCNAFA.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TA7UVX8V5EKCNAFA.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5940000000" - }, - "appliesTo" : [ ] - }, - "TA7UVX8V5EKCNAFA.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TA7UVX8V5EKCNAFA.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15601" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TA7UVX8V5EKCNAFA.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TA7UVX8V5EKCNAFA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TA7UVX8V5EKCNAFA.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TA7UVX8V5EKCNAFA.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "SH6G48SE9H3R9TQT" : { - "SH6G48SE9H3R9TQT.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SH6G48SE9H3R9TQT", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "SH6G48SE9H3R9TQT.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SH6G48SE9H3R9TQT.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SH6G48SE9H3R9TQT.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SH6G48SE9H3R9TQT", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "SH6G48SE9H3R9TQT.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SH6G48SE9H3R9TQT.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2600000000" - }, - "appliesTo" : [ ] - }, - "SH6G48SE9H3R9TQT.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SH6G48SE9H3R9TQT.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1620" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SH6G48SE9H3R9TQT.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SH6G48SE9H3R9TQT", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "SH6G48SE9H3R9TQT.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SH6G48SE9H3R9TQT.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8350" - }, - "appliesTo" : [ ] - }, - "SH6G48SE9H3R9TQT.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SH6G48SE9H3R9TQT.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SH6G48SE9H3R9TQT.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SH6G48SE9H3R9TQT", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "SH6G48SE9H3R9TQT.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SH6G48SE9H3R9TQT.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2524" - }, - "appliesTo" : [ ] - }, - "SH6G48SE9H3R9TQT.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SH6G48SE9H3R9TQT.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SH6G48SE9H3R9TQT.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SH6G48SE9H3R9TQT", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "SH6G48SE9H3R9TQT.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SH6G48SE9H3R9TQT.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3819" - }, - "appliesTo" : [ ] - }, - "SH6G48SE9H3R9TQT.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SH6G48SE9H3R9TQT.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "25T439HS4WV9KRN4" : { - "25T439HS4WV9KRN4.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "25T439HS4WV9KRN4", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "25T439HS4WV9KRN4.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "25T439HS4WV9KRN4.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "25T439HS4WV9KRN4.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "25T439HS4WV9KRN4", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "25T439HS4WV9KRN4.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "25T439HS4WV9KRN4.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11968" - }, - "appliesTo" : [ ] - }, - "25T439HS4WV9KRN4.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "25T439HS4WV9KRN4.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "25T439HS4WV9KRN4.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "25T439HS4WV9KRN4", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "25T439HS4WV9KRN4.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "25T439HS4WV9KRN4.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13196" - }, - "appliesTo" : [ ] - }, - "25T439HS4WV9KRN4.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "25T439HS4WV9KRN4.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "25T439HS4WV9KRN4.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "25T439HS4WV9KRN4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "25T439HS4WV9KRN4.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "25T439HS4WV9KRN4.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "25T439HS4WV9KRN4.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "25T439HS4WV9KRN4.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6420" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "25T439HS4WV9KRN4.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "25T439HS4WV9KRN4", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "25T439HS4WV9KRN4.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "25T439HS4WV9KRN4.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19905" - }, - "appliesTo" : [ ] - }, - "25T439HS4WV9KRN4.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "25T439HS4WV9KRN4.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "25T439HS4WV9KRN4.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "25T439HS4WV9KRN4", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "25T439HS4WV9KRN4.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "25T439HS4WV9KRN4.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17302" - }, - "appliesTo" : [ ] - }, - "25T439HS4WV9KRN4.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "25T439HS4WV9KRN4.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "25T439HS4WV9KRN4.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "25T439HS4WV9KRN4", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "25T439HS4WV9KRN4.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "25T439HS4WV9KRN4.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "25T439HS4WV9KRN4.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "25T439HS4WV9KRN4", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "25T439HS4WV9KRN4.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "25T439HS4WV9KRN4.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4455" - }, - "appliesTo" : [ ] - }, - "25T439HS4WV9KRN4.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "25T439HS4WV9KRN4.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "25T439HS4WV9KRN4.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "25T439HS4WV9KRN4", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "25T439HS4WV9KRN4.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "25T439HS4WV9KRN4.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6720" - }, - "appliesTo" : [ ] - }, - "25T439HS4WV9KRN4.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "25T439HS4WV9KRN4.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "25T439HS4WV9KRN4.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "25T439HS4WV9KRN4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "25T439HS4WV9KRN4.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "25T439HS4WV9KRN4.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3220" - }, - "appliesTo" : [ ] - }, - "25T439HS4WV9KRN4.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "25T439HS4WV9KRN4.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "25T439HS4WV9KRN4.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "25T439HS4WV9KRN4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "25T439HS4WV9KRN4.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "25T439HS4WV9KRN4.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "KYPREJHGNMP6GVSA" : { - "KYPREJHGNMP6GVSA.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "KYPREJHGNMP6GVSA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KYPREJHGNMP6GVSA.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "KYPREJHGNMP6GVSA.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KYPREJHGNMP6GVSA.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "KYPREJHGNMP6GVSA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KYPREJHGNMP6GVSA.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "KYPREJHGNMP6GVSA.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "753" - }, - "appliesTo" : [ ] - }, - "KYPREJHGNMP6GVSA.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "KYPREJHGNMP6GVSA.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KYPREJHGNMP6GVSA.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "KYPREJHGNMP6GVSA", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "KYPREJHGNMP6GVSA.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "KYPREJHGNMP6GVSA.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1328" - }, - "appliesTo" : [ ] - }, - "KYPREJHGNMP6GVSA.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "KYPREJHGNMP6GVSA.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KYPREJHGNMP6GVSA.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "KYPREJHGNMP6GVSA", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "KYPREJHGNMP6GVSA.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "KYPREJHGNMP6GVSA.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "758" - }, - "appliesTo" : [ ] - }, - "KYPREJHGNMP6GVSA.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "KYPREJHGNMP6GVSA.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KYPREJHGNMP6GVSA.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "KYPREJHGNMP6GVSA", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "KYPREJHGNMP6GVSA.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "KYPREJHGNMP6GVSA.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KYPREJHGNMP6GVSA.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "KYPREJHGNMP6GVSA", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "KYPREJHGNMP6GVSA.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "KYPREJHGNMP6GVSA.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3130" - }, - "appliesTo" : [ ] - }, - "KYPREJHGNMP6GVSA.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "KYPREJHGNMP6GVSA.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KYPREJHGNMP6GVSA.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "KYPREJHGNMP6GVSA", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "KYPREJHGNMP6GVSA.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "KYPREJHGNMP6GVSA.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0970000000" - }, - "appliesTo" : [ ] - }, - "KYPREJHGNMP6GVSA.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "KYPREJHGNMP6GVSA.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1329" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KYPREJHGNMP6GVSA.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "KYPREJHGNMP6GVSA", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "KYPREJHGNMP6GVSA.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "KYPREJHGNMP6GVSA.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3805" - }, - "appliesTo" : [ ] - }, - "KYPREJHGNMP6GVSA.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "KYPREJHGNMP6GVSA.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KYPREJHGNMP6GVSA.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "KYPREJHGNMP6GVSA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KYPREJHGNMP6GVSA.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "KYPREJHGNMP6GVSA.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "KYPREJHGNMP6GVSA.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "KYPREJHGNMP6GVSA.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1492" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KYPREJHGNMP6GVSA.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "KYPREJHGNMP6GVSA", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "KYPREJHGNMP6GVSA.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "KYPREJHGNMP6GVSA.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "479" - }, - "appliesTo" : [ ] - }, - "KYPREJHGNMP6GVSA.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "KYPREJHGNMP6GVSA.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KYPREJHGNMP6GVSA.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "KYPREJHGNMP6GVSA", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "KYPREJHGNMP6GVSA.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "KYPREJHGNMP6GVSA.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "V8EJ2P6F3B8BQ4JZ" : { - "V8EJ2P6F3B8BQ4JZ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "V8EJ2P6F3B8BQ4JZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V8EJ2P6F3B8BQ4JZ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "V8EJ2P6F3B8BQ4JZ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15179" - }, - "appliesTo" : [ ] - }, - "V8EJ2P6F3B8BQ4JZ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "V8EJ2P6F3B8BQ4JZ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7328000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "V8EJ2P6F3B8BQ4JZ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "V8EJ2P6F3B8BQ4JZ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "V8EJ2P6F3B8BQ4JZ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "V8EJ2P6F3B8BQ4JZ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3952000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "V8EJ2P6F3B8BQ4JZ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "V8EJ2P6F3B8BQ4JZ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "V8EJ2P6F3B8BQ4JZ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "V8EJ2P6F3B8BQ4JZ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "41028" - }, - "appliesTo" : [ ] - }, - "V8EJ2P6F3B8BQ4JZ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "V8EJ2P6F3B8BQ4JZ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5612000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "V8EJ2P6F3B8BQ4JZ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "V8EJ2P6F3B8BQ4JZ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "V8EJ2P6F3B8BQ4JZ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "V8EJ2P6F3B8BQ4JZ.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "V8EJ2P6F3B8BQ4JZ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "V8EJ2P6F3B8BQ4JZ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "83613" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "V8EJ2P6F3B8BQ4JZ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "V8EJ2P6F3B8BQ4JZ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "V8EJ2P6F3B8BQ4JZ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "V8EJ2P6F3B8BQ4JZ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "81321" - }, - "appliesTo" : [ ] - }, - "V8EJ2P6F3B8BQ4JZ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "V8EJ2P6F3B8BQ4JZ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "V8EJ2P6F3B8BQ4JZ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "V8EJ2P6F3B8BQ4JZ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "V8EJ2P6F3B8BQ4JZ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "V8EJ2P6F3B8BQ4JZ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2353000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "V8EJ2P6F3B8BQ4JZ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "V8EJ2P6F3B8BQ4JZ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "V8EJ2P6F3B8BQ4JZ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "V8EJ2P6F3B8BQ4JZ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29310" - }, - "appliesTo" : [ ] - }, - "V8EJ2P6F3B8BQ4JZ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "V8EJ2P6F3B8BQ4JZ.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "V8EJ2P6F3B8BQ4JZ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "V8EJ2P6F3B8BQ4JZ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "V8EJ2P6F3B8BQ4JZ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "V8EJ2P6F3B8BQ4JZ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14717" - }, - "appliesTo" : [ ] - }, - "V8EJ2P6F3B8BQ4JZ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "V8EJ2P6F3B8BQ4JZ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "V8EJ2P6F3B8BQ4JZ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "V8EJ2P6F3B8BQ4JZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V8EJ2P6F3B8BQ4JZ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "V8EJ2P6F3B8BQ4JZ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "V8EJ2P6F3B8BQ4JZ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "V8EJ2P6F3B8BQ4JZ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30217" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "V8EJ2P6F3B8BQ4JZ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "V8EJ2P6F3B8BQ4JZ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "V8EJ2P6F3B8BQ4JZ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "V8EJ2P6F3B8BQ4JZ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "41948" - }, - "appliesTo" : [ ] - }, - "V8EJ2P6F3B8BQ4JZ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "V8EJ2P6F3B8BQ4JZ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5962000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "V8EJ2P6F3B8BQ4JZ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "V8EJ2P6F3B8BQ4JZ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "V8EJ2P6F3B8BQ4JZ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "V8EJ2P6F3B8BQ4JZ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1597000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "V8EJ2P6F3B8BQ4JZ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "V8EJ2P6F3B8BQ4JZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V8EJ2P6F3B8BQ4JZ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "V8EJ2P6F3B8BQ4JZ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5061000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "7YFC8DX6JB9UEFUF" : { - "7YFC8DX6JB9UEFUF.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "7YFC8DX6JB9UEFUF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7YFC8DX6JB9UEFUF.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "7YFC8DX6JB9UEFUF.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "154634" - }, - "appliesTo" : [ ] - }, - "7YFC8DX6JB9UEFUF.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "7YFC8DX6JB9UEFUF.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7YFC8DX6JB9UEFUF.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "7YFC8DX6JB9UEFUF", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "7YFC8DX6JB9UEFUF.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "7YFC8DX6JB9UEFUF.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "120035" - }, - "appliesTo" : [ ] - }, - "7YFC8DX6JB9UEFUF.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "7YFC8DX6JB9UEFUF.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7YFC8DX6JB9UEFUF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "7YFC8DX6JB9UEFUF", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "7YFC8DX6JB9UEFUF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "7YFC8DX6JB9UEFUF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "68604" - }, - "appliesTo" : [ ] - }, - "7YFC8DX6JB9UEFUF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "7YFC8DX6JB9UEFUF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.8320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7YFC8DX6JB9UEFUF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "7YFC8DX6JB9UEFUF", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "7YFC8DX6JB9UEFUF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "7YFC8DX6JB9UEFUF.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9720000000" - }, - "appliesTo" : [ ] - }, - "7YFC8DX6JB9UEFUF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "7YFC8DX6JB9UEFUF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "104379" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7YFC8DX6JB9UEFUF.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "7YFC8DX6JB9UEFUF", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "7YFC8DX6JB9UEFUF.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "7YFC8DX6JB9UEFUF.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.8660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7YFC8DX6JB9UEFUF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "7YFC8DX6JB9UEFUF", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "7YFC8DX6JB9UEFUF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "7YFC8DX6JB9UEFUF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "134464" - }, - "appliesTo" : [ ] - }, - "7YFC8DX6JB9UEFUF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "7YFC8DX6JB9UEFUF.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7YFC8DX6JB9UEFUF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "7YFC8DX6JB9UEFUF", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "7YFC8DX6JB9UEFUF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "7YFC8DX6JB9UEFUF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "7YFC8DX6JB9UEFUF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "7YFC8DX6JB9UEFUF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "196232" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7YFC8DX6JB9UEFUF.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "7YFC8DX6JB9UEFUF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7YFC8DX6JB9UEFUF.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "7YFC8DX6JB9UEFUF.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "78895" - }, - "appliesTo" : [ ] - }, - "7YFC8DX6JB9UEFUF.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "7YFC8DX6JB9UEFUF.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.0060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7YFC8DX6JB9UEFUF.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "7YFC8DX6JB9UEFUF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7YFC8DX6JB9UEFUF.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "7YFC8DX6JB9UEFUF.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "18.9130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7YFC8DX6JB9UEFUF.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "7YFC8DX6JB9UEFUF", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "7YFC8DX6JB9UEFUF.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "7YFC8DX6JB9UEFUF.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "235269" - }, - "appliesTo" : [ ] - }, - "7YFC8DX6JB9UEFUF.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "7YFC8DX6JB9UEFUF.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7YFC8DX6JB9UEFUF.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "7YFC8DX6JB9UEFUF", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "7YFC8DX6JB9UEFUF.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "7YFC8DX6JB9UEFUF.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.5790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "FENJBKVQ4CNCQN3M" : { - "FENJBKVQ4CNCQN3M.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "FENJBKVQ4CNCQN3M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FENJBKVQ4CNCQN3M.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "FENJBKVQ4CNCQN3M.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "55364" - }, - "appliesTo" : [ ] - }, - "FENJBKVQ4CNCQN3M.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "FENJBKVQ4CNCQN3M.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.3200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FENJBKVQ4CNCQN3M.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "FENJBKVQ4CNCQN3M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FENJBKVQ4CNCQN3M.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "FENJBKVQ4CNCQN3M.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "120313" - }, - "appliesTo" : [ ] - }, - "FENJBKVQ4CNCQN3M.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "FENJBKVQ4CNCQN3M.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FENJBKVQ4CNCQN3M.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "FENJBKVQ4CNCQN3M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FENJBKVQ4CNCQN3M.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "FENJBKVQ4CNCQN3M.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.4280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FENJBKVQ4CNCQN3M.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "FENJBKVQ4CNCQN3M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FENJBKVQ4CNCQN3M.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "FENJBKVQ4CNCQN3M.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.9660000000" - }, - "appliesTo" : [ ] - }, - "FENJBKVQ4CNCQN3M.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "FENJBKVQ4CNCQN3M.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "61024" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FENJBKVQ4CNCQN3M.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "FENJBKVQ4CNCQN3M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FENJBKVQ4CNCQN3M.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "FENJBKVQ4CNCQN3M.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.0710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FENJBKVQ4CNCQN3M.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "FENJBKVQ4CNCQN3M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FENJBKVQ4CNCQN3M.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "FENJBKVQ4CNCQN3M.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.7440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FENJBKVQ4CNCQN3M.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "FENJBKVQ4CNCQN3M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FENJBKVQ4CNCQN3M.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "FENJBKVQ4CNCQN3M.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "235191" - }, - "appliesTo" : [ ] - }, - "FENJBKVQ4CNCQN3M.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "FENJBKVQ4CNCQN3M.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FENJBKVQ4CNCQN3M.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "FENJBKVQ4CNCQN3M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FENJBKVQ4CNCQN3M.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "FENJBKVQ4CNCQN3M.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.1970000000" - }, - "appliesTo" : [ ] - }, - "FENJBKVQ4CNCQN3M.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "FENJBKVQ4CNCQN3M.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "110305" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FENJBKVQ4CNCQN3M.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "FENJBKVQ4CNCQN3M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FENJBKVQ4CNCQN3M.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "FENJBKVQ4CNCQN3M.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5250000000" - }, - "appliesTo" : [ ] - }, - "FENJBKVQ4CNCQN3M.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "FENJBKVQ4CNCQN3M.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "118916" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FENJBKVQ4CNCQN3M.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "FENJBKVQ4CNCQN3M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FENJBKVQ4CNCQN3M.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "FENJBKVQ4CNCQN3M.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.4520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FENJBKVQ4CNCQN3M.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "FENJBKVQ4CNCQN3M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FENJBKVQ4CNCQN3M.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "FENJBKVQ4CNCQN3M.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "213720" - }, - "appliesTo" : [ ] - }, - "FENJBKVQ4CNCQN3M.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "FENJBKVQ4CNCQN3M.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FENJBKVQ4CNCQN3M.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "FENJBKVQ4CNCQN3M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FENJBKVQ4CNCQN3M.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "FENJBKVQ4CNCQN3M.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "109220" - }, - "appliesTo" : [ ] - }, - "FENJBKVQ4CNCQN3M.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "FENJBKVQ4CNCQN3M.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "BFTE24AMMM45YVGQ" : { - "BFTE24AMMM45YVGQ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "BFTE24AMMM45YVGQ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BFTE24AMMM45YVGQ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "BFTE24AMMM45YVGQ.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1980000000" - }, - "appliesTo" : [ ] - }, - "BFTE24AMMM45YVGQ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "BFTE24AMMM45YVGQ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4469" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BFTE24AMMM45YVGQ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "BFTE24AMMM45YVGQ", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "BFTE24AMMM45YVGQ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "BFTE24AMMM45YVGQ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12920" - }, - "appliesTo" : [ ] - }, - "BFTE24AMMM45YVGQ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "BFTE24AMMM45YVGQ.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BFTE24AMMM45YVGQ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "BFTE24AMMM45YVGQ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BFTE24AMMM45YVGQ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "BFTE24AMMM45YVGQ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BFTE24AMMM45YVGQ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "BFTE24AMMM45YVGQ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BFTE24AMMM45YVGQ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "BFTE24AMMM45YVGQ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "BFTE24AMMM45YVGQ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "BFTE24AMMM45YVGQ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9091" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BFTE24AMMM45YVGQ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "BFTE24AMMM45YVGQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BFTE24AMMM45YVGQ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "BFTE24AMMM45YVGQ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3200000000" - }, - "appliesTo" : [ ] - }, - "BFTE24AMMM45YVGQ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "BFTE24AMMM45YVGQ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2801" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BFTE24AMMM45YVGQ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "BFTE24AMMM45YVGQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BFTE24AMMM45YVGQ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "BFTE24AMMM45YVGQ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BFTE24AMMM45YVGQ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "BFTE24AMMM45YVGQ", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "BFTE24AMMM45YVGQ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "BFTE24AMMM45YVGQ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7746" - }, - "appliesTo" : [ ] - }, - "BFTE24AMMM45YVGQ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "BFTE24AMMM45YVGQ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BFTE24AMMM45YVGQ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "BFTE24AMMM45YVGQ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BFTE24AMMM45YVGQ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "BFTE24AMMM45YVGQ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "BFTE24AMMM45YVGQ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "BFTE24AMMM45YVGQ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4785" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BFTE24AMMM45YVGQ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "BFTE24AMMM45YVGQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BFTE24AMMM45YVGQ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "BFTE24AMMM45YVGQ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5491" - }, - "appliesTo" : [ ] - }, - "BFTE24AMMM45YVGQ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "BFTE24AMMM45YVGQ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BFTE24AMMM45YVGQ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "BFTE24AMMM45YVGQ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BFTE24AMMM45YVGQ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "BFTE24AMMM45YVGQ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2869" - }, - "appliesTo" : [ ] - }, - "BFTE24AMMM45YVGQ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "BFTE24AMMM45YVGQ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BFTE24AMMM45YVGQ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "BFTE24AMMM45YVGQ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BFTE24AMMM45YVGQ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "BFTE24AMMM45YVGQ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "S73ZA9CU68E57ZAH" : { - "S73ZA9CU68E57ZAH.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "S73ZA9CU68E57ZAH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "S73ZA9CU68E57ZAH.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "S73ZA9CU68E57ZAH.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18692" - }, - "appliesTo" : [ ] - }, - "S73ZA9CU68E57ZAH.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "S73ZA9CU68E57ZAH.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "S73ZA9CU68E57ZAH.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "S73ZA9CU68E57ZAH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "S73ZA9CU68E57ZAH.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "S73ZA9CU68E57ZAH.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "50376" - }, - "appliesTo" : [ ] - }, - "S73ZA9CU68E57ZAH.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "S73ZA9CU68E57ZAH.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "S73ZA9CU68E57ZAH.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "S73ZA9CU68E57ZAH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "S73ZA9CU68E57ZAH.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "S73ZA9CU68E57ZAH.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "S73ZA9CU68E57ZAH.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "S73ZA9CU68E57ZAH.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18177" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "S73ZA9CU68E57ZAH.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "S73ZA9CU68E57ZAH", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "S73ZA9CU68E57ZAH.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "S73ZA9CU68E57ZAH.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "S73ZA9CU68E57ZAH.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "S73ZA9CU68E57ZAH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "S73ZA9CU68E57ZAH.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "S73ZA9CU68E57ZAH.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25383" - }, - "appliesTo" : [ ] - }, - "S73ZA9CU68E57ZAH.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "S73ZA9CU68E57ZAH.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "S73ZA9CU68E57ZAH.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "S73ZA9CU68E57ZAH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "S73ZA9CU68E57ZAH.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "S73ZA9CU68E57ZAH.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26846" - }, - "appliesTo" : [ ] - }, - "S73ZA9CU68E57ZAH.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "S73ZA9CU68E57ZAH.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "S73ZA9CU68E57ZAH.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "S73ZA9CU68E57ZAH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "S73ZA9CU68E57ZAH.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "S73ZA9CU68E57ZAH.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9386" - }, - "appliesTo" : [ ] - }, - "S73ZA9CU68E57ZAH.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "S73ZA9CU68E57ZAH.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "S73ZA9CU68E57ZAH.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "S73ZA9CU68E57ZAH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "S73ZA9CU68E57ZAH.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "S73ZA9CU68E57ZAH.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "S73ZA9CU68E57ZAH.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "S73ZA9CU68E57ZAH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "S73ZA9CU68E57ZAH.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "S73ZA9CU68E57ZAH.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "53503" - }, - "appliesTo" : [ ] - }, - "S73ZA9CU68E57ZAH.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "S73ZA9CU68E57ZAH.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "S73ZA9CU68E57ZAH.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "S73ZA9CU68E57ZAH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "S73ZA9CU68E57ZAH.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "S73ZA9CU68E57ZAH.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9123" - }, - "appliesTo" : [ ] - }, - "S73ZA9CU68E57ZAH.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "S73ZA9CU68E57ZAH.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "S73ZA9CU68E57ZAH.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "S73ZA9CU68E57ZAH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "S73ZA9CU68E57ZAH.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "S73ZA9CU68E57ZAH.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "783XD5AJCNJSV3H7" : { - "783XD5AJCNJSV3H7.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "783XD5AJCNJSV3H7", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "783XD5AJCNJSV3H7.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "783XD5AJCNJSV3H7.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "783XD5AJCNJSV3H7.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "783XD5AJCNJSV3H7", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "783XD5AJCNJSV3H7.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "783XD5AJCNJSV3H7.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9510000000" - }, - "appliesTo" : [ ] - }, - "783XD5AJCNJSV3H7.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "783XD5AJCNJSV3H7.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7220" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "783XD5AJCNJSV3H7.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "783XD5AJCNJSV3H7", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "783XD5AJCNJSV3H7.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "783XD5AJCNJSV3H7.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30509" - }, - "appliesTo" : [ ] - }, - "783XD5AJCNJSV3H7.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "783XD5AJCNJSV3H7.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "783XD5AJCNJSV3H7.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "783XD5AJCNJSV3H7", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "783XD5AJCNJSV3H7.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "783XD5AJCNJSV3H7.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10880" - }, - "appliesTo" : [ ] - }, - "783XD5AJCNJSV3H7.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "783XD5AJCNJSV3H7.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "783XD5AJCNJSV3H7.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "783XD5AJCNJSV3H7", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "783XD5AJCNJSV3H7.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "783XD5AJCNJSV3H7.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15240" - }, - "appliesTo" : [ ] - }, - "783XD5AJCNJSV3H7.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "783XD5AJCNJSV3H7.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "7GUHNB4GSSZNUVY2" : { - "7GUHNB4GSSZNUVY2.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "7GUHNB4GSSZNUVY2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7GUHNB4GSSZNUVY2.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "7GUHNB4GSSZNUVY2.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7GUHNB4GSSZNUVY2.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "7GUHNB4GSSZNUVY2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7GUHNB4GSSZNUVY2.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "7GUHNB4GSSZNUVY2.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4051" - }, - "appliesTo" : [ ] - }, - "7GUHNB4GSSZNUVY2.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "7GUHNB4GSSZNUVY2.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7GUHNB4GSSZNUVY2.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "7GUHNB4GSSZNUVY2", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "7GUHNB4GSSZNUVY2.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "7GUHNB4GSSZNUVY2.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7GUHNB4GSSZNUVY2.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "7GUHNB4GSSZNUVY2", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "7GUHNB4GSSZNUVY2.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "7GUHNB4GSSZNUVY2.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22247" - }, - "appliesTo" : [ ] - }, - "7GUHNB4GSSZNUVY2.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "7GUHNB4GSSZNUVY2.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7GUHNB4GSSZNUVY2.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "7GUHNB4GSSZNUVY2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7GUHNB4GSSZNUVY2.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "7GUHNB4GSSZNUVY2.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8030" - }, - "appliesTo" : [ ] - }, - "7GUHNB4GSSZNUVY2.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "7GUHNB4GSSZNUVY2.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7GUHNB4GSSZNUVY2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "7GUHNB4GSSZNUVY2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7GUHNB4GSSZNUVY2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "7GUHNB4GSSZNUVY2.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7GUHNB4GSSZNUVY2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "7GUHNB4GSSZNUVY2", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "7GUHNB4GSSZNUVY2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "7GUHNB4GSSZNUVY2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3154" - }, - "appliesTo" : [ ] - }, - "7GUHNB4GSSZNUVY2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "7GUHNB4GSSZNUVY2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7GUHNB4GSSZNUVY2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "7GUHNB4GSSZNUVY2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7GUHNB4GSSZNUVY2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "7GUHNB4GSSZNUVY2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7728" - }, - "appliesTo" : [ ] - }, - "7GUHNB4GSSZNUVY2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "7GUHNB4GSSZNUVY2.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7GUHNB4GSSZNUVY2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "7GUHNB4GSSZNUVY2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7GUHNB4GSSZNUVY2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "7GUHNB4GSSZNUVY2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17340" - }, - "appliesTo" : [ ] - }, - "7GUHNB4GSSZNUVY2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "7GUHNB4GSSZNUVY2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7GUHNB4GSSZNUVY2.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "7GUHNB4GSSZNUVY2", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "7GUHNB4GSSZNUVY2.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "7GUHNB4GSSZNUVY2.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5240000000" - }, - "appliesTo" : [ ] - }, - "7GUHNB4GSSZNUVY2.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "7GUHNB4GSSZNUVY2.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8907" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7GUHNB4GSSZNUVY2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "7GUHNB4GSSZNUVY2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7GUHNB4GSSZNUVY2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "7GUHNB4GSSZNUVY2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7376" - }, - "appliesTo" : [ ] - }, - "7GUHNB4GSSZNUVY2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "7GUHNB4GSSZNUVY2.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "YKZXQZPGPVZNNRHA" : { - "YKZXQZPGPVZNNRHA.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YKZXQZPGPVZNNRHA", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "YKZXQZPGPVZNNRHA.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YKZXQZPGPVZNNRHA.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YKZXQZPGPVZNNRHA.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YKZXQZPGPVZNNRHA", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YKZXQZPGPVZNNRHA.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YKZXQZPGPVZNNRHA.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "520" - }, - "appliesTo" : [ ] - }, - "YKZXQZPGPVZNNRHA.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YKZXQZPGPVZNNRHA.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YKZXQZPGPVZNNRHA.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YKZXQZPGPVZNNRHA", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YKZXQZPGPVZNNRHA.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YKZXQZPGPVZNNRHA.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "791" - }, - "appliesTo" : [ ] - }, - "YKZXQZPGPVZNNRHA.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YKZXQZPGPVZNNRHA.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YKZXQZPGPVZNNRHA.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YKZXQZPGPVZNNRHA", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YKZXQZPGPVZNNRHA.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YKZXQZPGPVZNNRHA.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "896" - }, - "appliesTo" : [ ] - }, - "YKZXQZPGPVZNNRHA.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YKZXQZPGPVZNNRHA.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YKZXQZPGPVZNNRHA.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YKZXQZPGPVZNNRHA", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YKZXQZPGPVZNNRHA.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YKZXQZPGPVZNNRHA.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1612" - }, - "appliesTo" : [ ] - }, - "YKZXQZPGPVZNNRHA.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YKZXQZPGPVZNNRHA.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "MQ6M7PWCD7PJTKHD" : { - "MQ6M7PWCD7PJTKHD.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "MQ6M7PWCD7PJTKHD", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "MQ6M7PWCD7PJTKHD.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "MQ6M7PWCD7PJTKHD.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "80644" - }, - "appliesTo" : [ ] - }, - "MQ6M7PWCD7PJTKHD.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "MQ6M7PWCD7PJTKHD.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MQ6M7PWCD7PJTKHD.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "MQ6M7PWCD7PJTKHD", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "MQ6M7PWCD7PJTKHD.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "MQ6M7PWCD7PJTKHD.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "41173" - }, - "appliesTo" : [ ] - }, - "MQ6M7PWCD7PJTKHD.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "MQ6M7PWCD7PJTKHD.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.6930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MQ6M7PWCD7PJTKHD.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "MQ6M7PWCD7PJTKHD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MQ6M7PWCD7PJTKHD.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "MQ6M7PWCD7PJTKHD.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47322" - }, - "appliesTo" : [ ] - }, - "MQ6M7PWCD7PJTKHD.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "MQ6M7PWCD7PJTKHD.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.3950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MQ6M7PWCD7PJTKHD.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "MQ6M7PWCD7PJTKHD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MQ6M7PWCD7PJTKHD.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "MQ6M7PWCD7PJTKHD.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "11.3350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MQ6M7PWCD7PJTKHD.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "MQ6M7PWCD7PJTKHD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MQ6M7PWCD7PJTKHD.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "MQ6M7PWCD7PJTKHD.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "202095" - }, - "appliesTo" : [ ] - }, - "MQ6M7PWCD7PJTKHD.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "MQ6M7PWCD7PJTKHD.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MQ6M7PWCD7PJTKHD.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "MQ6M7PWCD7PJTKHD", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "MQ6M7PWCD7PJTKHD.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "MQ6M7PWCD7PJTKHD.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "89704" - }, - "appliesTo" : [ ] - }, - "MQ6M7PWCD7PJTKHD.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "MQ6M7PWCD7PJTKHD.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MQ6M7PWCD7PJTKHD.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "MQ6M7PWCD7PJTKHD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MQ6M7PWCD7PJTKHD.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "MQ6M7PWCD7PJTKHD.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9230000000" - }, - "appliesTo" : [ ] - }, - "MQ6M7PWCD7PJTKHD.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "MQ6M7PWCD7PJTKHD.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "103108" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MQ6M7PWCD7PJTKHD.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "MQ6M7PWCD7PJTKHD", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "MQ6M7PWCD7PJTKHD.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "MQ6M7PWCD7PJTKHD.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "168676" - }, - "appliesTo" : [ ] - }, - "MQ6M7PWCD7PJTKHD.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "MQ6M7PWCD7PJTKHD.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MQ6M7PWCD7PJTKHD.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "MQ6M7PWCD7PJTKHD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MQ6M7PWCD7PJTKHD.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "MQ6M7PWCD7PJTKHD.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MQ6M7PWCD7PJTKHD.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "MQ6M7PWCD7PJTKHD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MQ6M7PWCD7PJTKHD.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "MQ6M7PWCD7PJTKHD.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "MQ6M7PWCD7PJTKHD.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "MQ6M7PWCD7PJTKHD.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "92697" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MQ6M7PWCD7PJTKHD.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "MQ6M7PWCD7PJTKHD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MQ6M7PWCD7PJTKHD.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "MQ6M7PWCD7PJTKHD.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.8610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MQ6M7PWCD7PJTKHD.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "MQ6M7PWCD7PJTKHD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MQ6M7PWCD7PJTKHD.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "MQ6M7PWCD7PJTKHD.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.4790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "KE8V44XRQ8CWNHEV" : { - "KE8V44XRQ8CWNHEV.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "KE8V44XRQ8CWNHEV", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "KE8V44XRQ8CWNHEV.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "KE8V44XRQ8CWNHEV.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KE8V44XRQ8CWNHEV.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "KE8V44XRQ8CWNHEV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KE8V44XRQ8CWNHEV.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "KE8V44XRQ8CWNHEV.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KE8V44XRQ8CWNHEV.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "KE8V44XRQ8CWNHEV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KE8V44XRQ8CWNHEV.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "KE8V44XRQ8CWNHEV.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1807" - }, - "appliesTo" : [ ] - }, - "KE8V44XRQ8CWNHEV.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "KE8V44XRQ8CWNHEV.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KE8V44XRQ8CWNHEV.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "KE8V44XRQ8CWNHEV", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "KE8V44XRQ8CWNHEV.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "KE8V44XRQ8CWNHEV.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11760" - }, - "appliesTo" : [ ] - }, - "KE8V44XRQ8CWNHEV.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "KE8V44XRQ8CWNHEV.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KE8V44XRQ8CWNHEV.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "KE8V44XRQ8CWNHEV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KE8V44XRQ8CWNHEV.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "KE8V44XRQ8CWNHEV.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4681" - }, - "appliesTo" : [ ] - }, - "KE8V44XRQ8CWNHEV.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "KE8V44XRQ8CWNHEV.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KE8V44XRQ8CWNHEV.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "KE8V44XRQ8CWNHEV", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "KE8V44XRQ8CWNHEV.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "KE8V44XRQ8CWNHEV.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2550000000" - }, - "appliesTo" : [ ] - }, - "KE8V44XRQ8CWNHEV.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "KE8V44XRQ8CWNHEV.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2056" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KE8V44XRQ8CWNHEV.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "KE8V44XRQ8CWNHEV", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "KE8V44XRQ8CWNHEV.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "KE8V44XRQ8CWNHEV.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4229" - }, - "appliesTo" : [ ] - }, - "KE8V44XRQ8CWNHEV.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "KE8V44XRQ8CWNHEV.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KE8V44XRQ8CWNHEV.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "KE8V44XRQ8CWNHEV", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "KE8V44XRQ8CWNHEV.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "KE8V44XRQ8CWNHEV.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KE8V44XRQ8CWNHEV.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "KE8V44XRQ8CWNHEV", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "KE8V44XRQ8CWNHEV.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "KE8V44XRQ8CWNHEV.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9547" - }, - "appliesTo" : [ ] - }, - "KE8V44XRQ8CWNHEV.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "KE8V44XRQ8CWNHEV.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KE8V44XRQ8CWNHEV.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "KE8V44XRQ8CWNHEV", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "KE8V44XRQ8CWNHEV.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "KE8V44XRQ8CWNHEV.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3925" - }, - "appliesTo" : [ ] - }, - "KE8V44XRQ8CWNHEV.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "KE8V44XRQ8CWNHEV.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KE8V44XRQ8CWNHEV.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "KE8V44XRQ8CWNHEV", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "KE8V44XRQ8CWNHEV.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "KE8V44XRQ8CWNHEV.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5551" - }, - "appliesTo" : [ ] - }, - "KE8V44XRQ8CWNHEV.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "KE8V44XRQ8CWNHEV.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "YXVKN9CCKCPCSTST" : { - "YXVKN9CCKCPCSTST.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "YXVKN9CCKCPCSTST", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YXVKN9CCKCPCSTST.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "YXVKN9CCKCPCSTST.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.4820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YXVKN9CCKCPCSTST.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YXVKN9CCKCPCSTST", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YXVKN9CCKCPCSTST.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YXVKN9CCKCPCSTST.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.1700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YXVKN9CCKCPCSTST.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "YXVKN9CCKCPCSTST", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YXVKN9CCKCPCSTST.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "YXVKN9CCKCPCSTST.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23755" - }, - "appliesTo" : [ ] - }, - "YXVKN9CCKCPCSTST.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "YXVKN9CCKCPCSTST.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YXVKN9CCKCPCSTST.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YXVKN9CCKCPCSTST", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YXVKN9CCKCPCSTST.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YXVKN9CCKCPCSTST.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "50028" - }, - "appliesTo" : [ ] - }, - "YXVKN9CCKCPCSTST.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YXVKN9CCKCPCSTST.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YXVKN9CCKCPCSTST.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YXVKN9CCKCPCSTST", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YXVKN9CCKCPCSTST.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YXVKN9CCKCPCSTST.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "45269" - }, - "appliesTo" : [ ] - }, - "YXVKN9CCKCPCSTST.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YXVKN9CCKCPCSTST.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YXVKN9CCKCPCSTST.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YXVKN9CCKCPCSTST", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YXVKN9CCKCPCSTST.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YXVKN9CCKCPCSTST.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YXVKN9CCKCPCSTST.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YXVKN9CCKCPCSTST.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "117579" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YXVKN9CCKCPCSTST.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "YXVKN9CCKCPCSTST", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YXVKN9CCKCPCSTST.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "YXVKN9CCKCPCSTST.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47307" - }, - "appliesTo" : [ ] - }, - "YXVKN9CCKCPCSTST.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "YXVKN9CCKCPCSTST.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YXVKN9CCKCPCSTST.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "YXVKN9CCKCPCSTST", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YXVKN9CCKCPCSTST.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "YXVKN9CCKCPCSTST.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.0530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YXVKN9CCKCPCSTST.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "YXVKN9CCKCPCSTST", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YXVKN9CCKCPCSTST.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "YXVKN9CCKCPCSTST.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "53890" - }, - "appliesTo" : [ ] - }, - "YXVKN9CCKCPCSTST.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "YXVKN9CCKCPCSTST.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YXVKN9CCKCPCSTST.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YXVKN9CCKCPCSTST", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YXVKN9CCKCPCSTST.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YXVKN9CCKCPCSTST.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18485" - }, - "appliesTo" : [ ] - }, - "YXVKN9CCKCPCSTST.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YXVKN9CCKCPCSTST.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YXVKN9CCKCPCSTST.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "YXVKN9CCKCPCSTST", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YXVKN9CCKCPCSTST.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "YXVKN9CCKCPCSTST.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "133200" - }, - "appliesTo" : [ ] - }, - "YXVKN9CCKCPCSTST.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "YXVKN9CCKCPCSTST.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "TJTQVWS5KE6W7NKV" : { - "TJTQVWS5KE6W7NKV.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "TJTQVWS5KE6W7NKV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TJTQVWS5KE6W7NKV.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "TJTQVWS5KE6W7NKV.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "157487" - }, - "appliesTo" : [ ] - }, - "TJTQVWS5KE6W7NKV.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "TJTQVWS5KE6W7NKV.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TJTQVWS5KE6W7NKV.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TJTQVWS5KE6W7NKV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "TJTQVWS5KE6W7NKV.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TJTQVWS5KE6W7NKV.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "69871" - }, - "appliesTo" : [ ] - }, - "TJTQVWS5KE6W7NKV.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TJTQVWS5KE6W7NKV.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.9690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TJTQVWS5KE6W7NKV.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "TJTQVWS5KE6W7NKV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "TJTQVWS5KE6W7NKV.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "TJTQVWS5KE6W7NKV.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "175017" - }, - "appliesTo" : [ ] - }, - "TJTQVWS5KE6W7NKV.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "TJTQVWS5KE6W7NKV.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.6590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TJTQVWS5KE6W7NKV.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "TJTQVWS5KE6W7NKV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "TJTQVWS5KE6W7NKV.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "TJTQVWS5KE6W7NKV.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "343038" - }, - "appliesTo" : [ ] - }, - "TJTQVWS5KE6W7NKV.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "TJTQVWS5KE6W7NKV.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TJTQVWS5KE6W7NKV.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "TJTQVWS5KE6W7NKV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "TJTQVWS5KE6W7NKV.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "TJTQVWS5KE6W7NKV.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.6880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TJTQVWS5KE6W7NKV.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "TJTQVWS5KE6W7NKV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TJTQVWS5KE6W7NKV.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "TJTQVWS5KE6W7NKV.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.1690000000" - }, - "appliesTo" : [ ] - }, - "TJTQVWS5KE6W7NKV.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "TJTQVWS5KE6W7NKV.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "80378" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TJTQVWS5KE6W7NKV.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "TJTQVWS5KE6W7NKV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TJTQVWS5KE6W7NKV.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "TJTQVWS5KE6W7NKV.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "19.2600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TJTQVWS5KE6W7NKV.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TJTQVWS5KE6W7NKV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "TJTQVWS5KE6W7NKV.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TJTQVWS5KE6W7NKV.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.7410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TJTQVWS5KE6W7NKV.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TJTQVWS5KE6W7NKV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "TJTQVWS5KE6W7NKV.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TJTQVWS5KE6W7NKV.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9460000000" - }, - "appliesTo" : [ ] - }, - "TJTQVWS5KE6W7NKV.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TJTQVWS5KE6W7NKV.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "129984" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TJTQVWS5KE6W7NKV.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "TJTQVWS5KE6W7NKV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "TJTQVWS5KE6W7NKV.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "TJTQVWS5KE6W7NKV.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.3890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TJTQVWS5KE6W7NKV.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TJTQVWS5KE6W7NKV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "TJTQVWS5KE6W7NKV.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TJTQVWS5KE6W7NKV.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TJTQVWS5KE6W7NKV.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TJTQVWS5KE6W7NKV.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "244402" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TJTQVWS5KE6W7NKV.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TJTQVWS5KE6W7NKV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "TJTQVWS5KE6W7NKV.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TJTQVWS5KE6W7NKV.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TJTQVWS5KE6W7NKV.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TJTQVWS5KE6W7NKV.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "136891" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "SSTT3HA4W7HHVR38" : { - "SSTT3HA4W7HHVR38.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SSTT3HA4W7HHVR38", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "SSTT3HA4W7HHVR38.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SSTT3HA4W7HHVR38.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1230000000" - }, - "appliesTo" : [ ] - }, - "SSTT3HA4W7HHVR38.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SSTT3HA4W7HHVR38.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29530" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SSTT3HA4W7HHVR38.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SSTT3HA4W7HHVR38", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "SSTT3HA4W7HHVR38.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SSTT3HA4W7HHVR38.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21690" - }, - "appliesTo" : [ ] - }, - "SSTT3HA4W7HHVR38.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SSTT3HA4W7HHVR38.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SSTT3HA4W7HHVR38.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SSTT3HA4W7HHVR38", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "SSTT3HA4W7HHVR38.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SSTT3HA4W7HHVR38.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SSTT3HA4W7HHVR38.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SSTT3HA4W7HHVR38.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "55500" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SSTT3HA4W7HHVR38.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SSTT3HA4W7HHVR38", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "SSTT3HA4W7HHVR38.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SSTT3HA4W7HHVR38.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SSTT3HA4W7HHVR38.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SSTT3HA4W7HHVR38", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "SSTT3HA4W7HHVR38.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SSTT3HA4W7HHVR38.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11060" - }, - "appliesTo" : [ ] - }, - "SSTT3HA4W7HHVR38.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SSTT3HA4W7HHVR38.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "VJVE25YH42K8TGEJ" : { - "VJVE25YH42K8TGEJ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "VJVE25YH42K8TGEJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VJVE25YH42K8TGEJ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "VJVE25YH42K8TGEJ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.8500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VJVE25YH42K8TGEJ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "VJVE25YH42K8TGEJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VJVE25YH42K8TGEJ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "VJVE25YH42K8TGEJ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24893" - }, - "appliesTo" : [ ] - }, - "VJVE25YH42K8TGEJ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "VJVE25YH42K8TGEJ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VJVE25YH42K8TGEJ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "VJVE25YH42K8TGEJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "VJVE25YH42K8TGEJ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "VJVE25YH42K8TGEJ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.1420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VJVE25YH42K8TGEJ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "VJVE25YH42K8TGEJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "VJVE25YH42K8TGEJ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "VJVE25YH42K8TGEJ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18394" - }, - "appliesTo" : [ ] - }, - "VJVE25YH42K8TGEJ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "VJVE25YH42K8TGEJ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VJVE25YH42K8TGEJ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "VJVE25YH42K8TGEJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "VJVE25YH42K8TGEJ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "VJVE25YH42K8TGEJ.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "VJVE25YH42K8TGEJ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "VJVE25YH42K8TGEJ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "127725" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VJVE25YH42K8TGEJ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "VJVE25YH42K8TGEJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VJVE25YH42K8TGEJ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "VJVE25YH42K8TGEJ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "VJVE25YH42K8TGEJ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "VJVE25YH42K8TGEJ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "49202" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VJVE25YH42K8TGEJ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "VJVE25YH42K8TGEJ", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "VJVE25YH42K8TGEJ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "VJVE25YH42K8TGEJ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "50814" - }, - "appliesTo" : [ ] - }, - "VJVE25YH42K8TGEJ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "VJVE25YH42K8TGEJ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VJVE25YH42K8TGEJ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "VJVE25YH42K8TGEJ", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "VJVE25YH42K8TGEJ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "VJVE25YH42K8TGEJ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.8030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VJVE25YH42K8TGEJ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "VJVE25YH42K8TGEJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "VJVE25YH42K8TGEJ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "VJVE25YH42K8TGEJ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "43544" - }, - "appliesTo" : [ ] - }, - "VJVE25YH42K8TGEJ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "VJVE25YH42K8TGEJ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VJVE25YH42K8TGEJ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "VJVE25YH42K8TGEJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "VJVE25YH42K8TGEJ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "VJVE25YH42K8TGEJ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "102344" - }, - "appliesTo" : [ ] - }, - "VJVE25YH42K8TGEJ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "VJVE25YH42K8TGEJ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VJVE25YH42K8TGEJ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "VJVE25YH42K8TGEJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "VJVE25YH42K8TGEJ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "VJVE25YH42K8TGEJ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "45068" - }, - "appliesTo" : [ ] - }, - "VJVE25YH42K8TGEJ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "VJVE25YH42K8TGEJ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "BVX3DU7JUBDMJ5TW" : { - "BVX3DU7JUBDMJ5TW.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "BVX3DU7JUBDMJ5TW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BVX3DU7JUBDMJ5TW.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "BVX3DU7JUBDMJ5TW.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3466" - }, - "appliesTo" : [ ] - }, - "BVX3DU7JUBDMJ5TW.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "BVX3DU7JUBDMJ5TW.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BVX3DU7JUBDMJ5TW.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "BVX3DU7JUBDMJ5TW", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "BVX3DU7JUBDMJ5TW.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "BVX3DU7JUBDMJ5TW.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BVX3DU7JUBDMJ5TW.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "BVX3DU7JUBDMJ5TW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "BVX3DU7JUBDMJ5TW.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "BVX3DU7JUBDMJ5TW.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6685" - }, - "appliesTo" : [ ] - }, - "BVX3DU7JUBDMJ5TW.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "BVX3DU7JUBDMJ5TW.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BVX3DU7JUBDMJ5TW.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "BVX3DU7JUBDMJ5TW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BVX3DU7JUBDMJ5TW.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "BVX3DU7JUBDMJ5TW.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3556" - }, - "appliesTo" : [ ] - }, - "BVX3DU7JUBDMJ5TW.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "BVX3DU7JUBDMJ5TW.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BVX3DU7JUBDMJ5TW.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "BVX3DU7JUBDMJ5TW", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BVX3DU7JUBDMJ5TW.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "BVX3DU7JUBDMJ5TW.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4852" - }, - "appliesTo" : [ ] - }, - "BVX3DU7JUBDMJ5TW.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "BVX3DU7JUBDMJ5TW.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BVX3DU7JUBDMJ5TW.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "BVX3DU7JUBDMJ5TW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BVX3DU7JUBDMJ5TW.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "BVX3DU7JUBDMJ5TW.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2544" - }, - "appliesTo" : [ ] - }, - "BVX3DU7JUBDMJ5TW.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "BVX3DU7JUBDMJ5TW.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BVX3DU7JUBDMJ5TW.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "BVX3DU7JUBDMJ5TW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BVX3DU7JUBDMJ5TW.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "BVX3DU7JUBDMJ5TW.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BVX3DU7JUBDMJ5TW.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "BVX3DU7JUBDMJ5TW", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BVX3DU7JUBDMJ5TW.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "BVX3DU7JUBDMJ5TW.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9512" - }, - "appliesTo" : [ ] - }, - "BVX3DU7JUBDMJ5TW.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "BVX3DU7JUBDMJ5TW.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BVX3DU7JUBDMJ5TW.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "BVX3DU7JUBDMJ5TW", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BVX3DU7JUBDMJ5TW.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "BVX3DU7JUBDMJ5TW.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BVX3DU7JUBDMJ5TW.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "BVX3DU7JUBDMJ5TW", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "BVX3DU7JUBDMJ5TW.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "BVX3DU7JUBDMJ5TW.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2020000000" - }, - "appliesTo" : [ ] - }, - "BVX3DU7JUBDMJ5TW.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "BVX3DU7JUBDMJ5TW.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1768" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BVX3DU7JUBDMJ5TW.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "BVX3DU7JUBDMJ5TW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BVX3DU7JUBDMJ5TW.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "BVX3DU7JUBDMJ5TW.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "BVX3DU7JUBDMJ5TW.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "BVX3DU7JUBDMJ5TW.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5018" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "C92P55KXZZVQPVRT" : { - "C92P55KXZZVQPVRT.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "C92P55KXZZVQPVRT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "C92P55KXZZVQPVRT.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "C92P55KXZZVQPVRT.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.8350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "C92P55KXZZVQPVRT.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "C92P55KXZZVQPVRT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "C92P55KXZZVQPVRT.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "C92P55KXZZVQPVRT.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.5130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "C92P55KXZZVQPVRT.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "C92P55KXZZVQPVRT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "C92P55KXZZVQPVRT.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "C92P55KXZZVQPVRT.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "44963" - }, - "appliesTo" : [ ] - }, - "C92P55KXZZVQPVRT.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "C92P55KXZZVQPVRT.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.1330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "C92P55KXZZVQPVRT.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "C92P55KXZZVQPVRT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "C92P55KXZZVQPVRT.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "C92P55KXZZVQPVRT.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "193563" - }, - "appliesTo" : [ ] - }, - "C92P55KXZZVQPVRT.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "C92P55KXZZVQPVRT.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "C92P55KXZZVQPVRT.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "C92P55KXZZVQPVRT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "C92P55KXZZVQPVRT.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "C92P55KXZZVQPVRT.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "98504" - }, - "appliesTo" : [ ] - }, - "C92P55KXZZVQPVRT.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "C92P55KXZZVQPVRT.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "C92P55KXZZVQPVRT.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "C92P55KXZZVQPVRT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "C92P55KXZZVQPVRT.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "C92P55KXZZVQPVRT.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9120000000" - }, - "appliesTo" : [ ] - }, - "C92P55KXZZVQPVRT.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "C92P55KXZZVQPVRT.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "102809" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "C92P55KXZZVQPVRT.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "C92P55KXZZVQPVRT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "C92P55KXZZVQPVRT.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "C92P55KXZZVQPVRT.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "C92P55KXZZVQPVRT.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "C92P55KXZZVQPVRT.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "83511" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "C92P55KXZZVQPVRT.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "C92P55KXZZVQPVRT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "C92P55KXZZVQPVRT.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "C92P55KXZZVQPVRT.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.0250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "C92P55KXZZVQPVRT.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "C92P55KXZZVQPVRT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "C92P55KXZZVQPVRT.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "C92P55KXZZVQPVRT.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.6710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "C92P55KXZZVQPVRT.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "C92P55KXZZVQPVRT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "C92P55KXZZVQPVRT.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "C92P55KXZZVQPVRT.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "204298" - }, - "appliesTo" : [ ] - }, - "C92P55KXZZVQPVRT.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "C92P55KXZZVQPVRT.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "C92P55KXZZVQPVRT.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "C92P55KXZZVQPVRT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "C92P55KXZZVQPVRT.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "C92P55KXZZVQPVRT.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "89057" - }, - "appliesTo" : [ ] - }, - "C92P55KXZZVQPVRT.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "C92P55KXZZVQPVRT.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "C92P55KXZZVQPVRT.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "C92P55KXZZVQPVRT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "C92P55KXZZVQPVRT.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "C92P55KXZZVQPVRT.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "42133" - }, - "appliesTo" : [ ] - }, - "C92P55KXZZVQPVRT.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "C92P55KXZZVQPVRT.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.8100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "U3KDJRF6FGANNG5Z" : { - "U3KDJRF6FGANNG5Z.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "U3KDJRF6FGANNG5Z", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "U3KDJRF6FGANNG5Z.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "U3KDJRF6FGANNG5Z.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "514" - }, - "appliesTo" : [ ] - }, - "U3KDJRF6FGANNG5Z.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "U3KDJRF6FGANNG5Z.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "U3KDJRF6FGANNG5Z.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "U3KDJRF6FGANNG5Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U3KDJRF6FGANNG5Z.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "U3KDJRF6FGANNG5Z.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "886" - }, - "appliesTo" : [ ] - }, - "U3KDJRF6FGANNG5Z.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "U3KDJRF6FGANNG5Z.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "U3KDJRF6FGANNG5Z.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "U3KDJRF6FGANNG5Z", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "U3KDJRF6FGANNG5Z.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "U3KDJRF6FGANNG5Z.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2084" - }, - "appliesTo" : [ ] - }, - "U3KDJRF6FGANNG5Z.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "U3KDJRF6FGANNG5Z.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "U3KDJRF6FGANNG5Z.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "U3KDJRF6FGANNG5Z", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "U3KDJRF6FGANNG5Z.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "U3KDJRF6FGANNG5Z.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "U3KDJRF6FGANNG5Z.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "U3KDJRF6FGANNG5Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U3KDJRF6FGANNG5Z.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "U3KDJRF6FGANNG5Z.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0520000000" - }, - "appliesTo" : [ ] - }, - "U3KDJRF6FGANNG5Z.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "U3KDJRF6FGANNG5Z.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "452" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "U3KDJRF6FGANNG5Z.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "U3KDJRF6FGANNG5Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U3KDJRF6FGANNG5Z.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "U3KDJRF6FGANNG5Z.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "U3KDJRF6FGANNG5Z.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "U3KDJRF6FGANNG5Z", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "U3KDJRF6FGANNG5Z.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "U3KDJRF6FGANNG5Z.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "U3KDJRF6FGANNG5Z.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "U3KDJRF6FGANNG5Z", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "U3KDJRF6FGANNG5Z.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "U3KDJRF6FGANNG5Z.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0250000000" - }, - "appliesTo" : [ ] - }, - "U3KDJRF6FGANNG5Z.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "U3KDJRF6FGANNG5Z.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "981" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "U3KDJRF6FGANNG5Z.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "U3KDJRF6FGANNG5Z", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "U3KDJRF6FGANNG5Z.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "U3KDJRF6FGANNG5Z.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1388" - }, - "appliesTo" : [ ] - }, - "U3KDJRF6FGANNG5Z.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "U3KDJRF6FGANNG5Z.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "U3KDJRF6FGANNG5Z.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "U3KDJRF6FGANNG5Z", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "U3KDJRF6FGANNG5Z.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "U3KDJRF6FGANNG5Z.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "U3KDJRF6FGANNG5Z.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "U3KDJRF6FGANNG5Z.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1532" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "U3KDJRF6FGANNG5Z.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "U3KDJRF6FGANNG5Z", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "U3KDJRF6FGANNG5Z.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "U3KDJRF6FGANNG5Z.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "U3KDJRF6FGANNG5Z.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "U3KDJRF6FGANNG5Z.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "772" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "KDHC3D74WA7UFHUU" : { - "KDHC3D74WA7UFHUU.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "KDHC3D74WA7UFHUU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KDHC3D74WA7UFHUU.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "KDHC3D74WA7UFHUU.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "447" - }, - "appliesTo" : [ ] - }, - "KDHC3D74WA7UFHUU.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "KDHC3D74WA7UFHUU.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KDHC3D74WA7UFHUU.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "KDHC3D74WA7UFHUU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KDHC3D74WA7UFHUU.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "KDHC3D74WA7UFHUU.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1401" - }, - "appliesTo" : [ ] - }, - "KDHC3D74WA7UFHUU.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "KDHC3D74WA7UFHUU.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KDHC3D74WA7UFHUU.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "KDHC3D74WA7UFHUU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KDHC3D74WA7UFHUU.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "KDHC3D74WA7UFHUU.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1533" - }, - "appliesTo" : [ ] - }, - "KDHC3D74WA7UFHUU.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "KDHC3D74WA7UFHUU.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KDHC3D74WA7UFHUU.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "KDHC3D74WA7UFHUU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KDHC3D74WA7UFHUU.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "KDHC3D74WA7UFHUU.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KDHC3D74WA7UFHUU.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "KDHC3D74WA7UFHUU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KDHC3D74WA7UFHUU.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "KDHC3D74WA7UFHUU.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KDHC3D74WA7UFHUU.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "KDHC3D74WA7UFHUU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KDHC3D74WA7UFHUU.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "KDHC3D74WA7UFHUU.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "867" - }, - "appliesTo" : [ ] - }, - "KDHC3D74WA7UFHUU.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "KDHC3D74WA7UFHUU.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KDHC3D74WA7UFHUU.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "KDHC3D74WA7UFHUU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KDHC3D74WA7UFHUU.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "KDHC3D74WA7UFHUU.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "KDHC3D74WA7UFHUU.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "KDHC3D74WA7UFHUU.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3534" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KDHC3D74WA7UFHUU.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "KDHC3D74WA7UFHUU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KDHC3D74WA7UFHUU.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "KDHC3D74WA7UFHUU.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KDHC3D74WA7UFHUU.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "KDHC3D74WA7UFHUU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KDHC3D74WA7UFHUU.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "KDHC3D74WA7UFHUU.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "KDHC3D74WA7UFHUU.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "KDHC3D74WA7UFHUU.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3206" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KDHC3D74WA7UFHUU.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "KDHC3D74WA7UFHUU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KDHC3D74WA7UFHUU.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "KDHC3D74WA7UFHUU.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KDHC3D74WA7UFHUU.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "KDHC3D74WA7UFHUU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KDHC3D74WA7UFHUU.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "KDHC3D74WA7UFHUU.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "514" - }, - "appliesTo" : [ ] - }, - "KDHC3D74WA7UFHUU.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "KDHC3D74WA7UFHUU.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KDHC3D74WA7UFHUU.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "KDHC3D74WA7UFHUU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KDHC3D74WA7UFHUU.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "KDHC3D74WA7UFHUU.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "999" - }, - "appliesTo" : [ ] - }, - "KDHC3D74WA7UFHUU.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "KDHC3D74WA7UFHUU.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "FMGXVRPJP5ZBNB2U" : { - "FMGXVRPJP5ZBNB2U.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "FMGXVRPJP5ZBNB2U", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "FMGXVRPJP5ZBNB2U.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "FMGXVRPJP5ZBNB2U.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FMGXVRPJP5ZBNB2U.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "FMGXVRPJP5ZBNB2U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FMGXVRPJP5ZBNB2U.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "FMGXVRPJP5ZBNB2U.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5870000000" - }, - "appliesTo" : [ ] - }, - "FMGXVRPJP5ZBNB2U.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "FMGXVRPJP5ZBNB2U.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13902" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FMGXVRPJP5ZBNB2U.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "FMGXVRPJP5ZBNB2U", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "FMGXVRPJP5ZBNB2U.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "FMGXVRPJP5ZBNB2U.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FMGXVRPJP5ZBNB2U.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "FMGXVRPJP5ZBNB2U", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "FMGXVRPJP5ZBNB2U.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "FMGXVRPJP5ZBNB2U.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32530" - }, - "appliesTo" : [ ] - }, - "FMGXVRPJP5ZBNB2U.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "FMGXVRPJP5ZBNB2U.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FMGXVRPJP5ZBNB2U.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "FMGXVRPJP5ZBNB2U", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "FMGXVRPJP5ZBNB2U.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "FMGXVRPJP5ZBNB2U.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "41560" - }, - "appliesTo" : [ ] - }, - "FMGXVRPJP5ZBNB2U.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "FMGXVRPJP5ZBNB2U.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FMGXVRPJP5ZBNB2U.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "FMGXVRPJP5ZBNB2U", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "FMGXVRPJP5ZBNB2U.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "FMGXVRPJP5ZBNB2U.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23616" - }, - "appliesTo" : [ ] - }, - "FMGXVRPJP5ZBNB2U.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "FMGXVRPJP5ZBNB2U.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FMGXVRPJP5ZBNB2U.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "FMGXVRPJP5ZBNB2U", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "FMGXVRPJP5ZBNB2U.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "FMGXVRPJP5ZBNB2U.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12048" - }, - "appliesTo" : [ ] - }, - "FMGXVRPJP5ZBNB2U.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "FMGXVRPJP5ZBNB2U.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FMGXVRPJP5ZBNB2U.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "FMGXVRPJP5ZBNB2U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FMGXVRPJP5ZBNB2U.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "FMGXVRPJP5ZBNB2U.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27248" - }, - "appliesTo" : [ ] - }, - "FMGXVRPJP5ZBNB2U.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "FMGXVRPJP5ZBNB2U.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FMGXVRPJP5ZBNB2U.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "FMGXVRPJP5ZBNB2U", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "FMGXVRPJP5ZBNB2U.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "FMGXVRPJP5ZBNB2U.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22136" - }, - "appliesTo" : [ ] - }, - "FMGXVRPJP5ZBNB2U.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "FMGXVRPJP5ZBNB2U.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FMGXVRPJP5ZBNB2U.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "FMGXVRPJP5ZBNB2U", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "FMGXVRPJP5ZBNB2U.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "FMGXVRPJP5ZBNB2U.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "FMGXVRPJP5ZBNB2U.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "FMGXVRPJP5ZBNB2U.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "63763" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FMGXVRPJP5ZBNB2U.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "FMGXVRPJP5ZBNB2U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FMGXVRPJP5ZBNB2U.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "FMGXVRPJP5ZBNB2U.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "PH52NYAMKMVT6ARR" : { - "PH52NYAMKMVT6ARR.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "PH52NYAMKMVT6ARR", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "PH52NYAMKMVT6ARR.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "PH52NYAMKMVT6ARR.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "446434" - }, - "appliesTo" : [ ] - }, - "PH52NYAMKMVT6ARR.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "PH52NYAMKMVT6ARR.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PH52NYAMKMVT6ARR.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "PH52NYAMKMVT6ARR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PH52NYAMKMVT6ARR.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "PH52NYAMKMVT6ARR.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "233538" - }, - "appliesTo" : [ ] - }, - "PH52NYAMKMVT6ARR.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "PH52NYAMKMVT6ARR.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.8870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PH52NYAMKMVT6ARR.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "PH52NYAMKMVT6ARR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PH52NYAMKMVT6ARR.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "PH52NYAMKMVT6ARR.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "17.5110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "PH52NYAMKMVT6ARR.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "PH52NYAMKMVT6ARR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PH52NYAMKMVT6ARR.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "PH52NYAMKMVT6ARR.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "18.1170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "PH52NYAMKMVT6ARR.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "PH52NYAMKMVT6ARR", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "PH52NYAMKMVT6ARR.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "PH52NYAMKMVT6ARR.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "226166" - }, - "appliesTo" : [ ] - }, - "PH52NYAMKMVT6ARR.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "PH52NYAMKMVT6ARR.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.6060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PH52NYAMKMVT6ARR.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "PH52NYAMKMVT6ARR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PH52NYAMKMVT6ARR.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "PH52NYAMKMVT6ARR.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "PH52NYAMKMVT6ARR.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "PH52NYAMKMVT6ARR.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "168838" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PH52NYAMKMVT6ARR.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "PH52NYAMKMVT6ARR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PH52NYAMKMVT6ARR.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "PH52NYAMKMVT6ARR.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "PH52NYAMKMVT6ARR.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "PH52NYAMKMVT6ARR.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "464815" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PH52NYAMKMVT6ARR.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "PH52NYAMKMVT6ARR", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "PH52NYAMKMVT6ARR.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "PH52NYAMKMVT6ARR.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "81556" - }, - "appliesTo" : [ ] - }, - "PH52NYAMKMVT6ARR.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "PH52NYAMKMVT6ARR.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.3100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PH52NYAMKMVT6ARR.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "PH52NYAMKMVT6ARR", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "PH52NYAMKMVT6ARR.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "PH52NYAMKMVT6ARR.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "162209" - }, - "appliesTo" : [ ] - }, - "PH52NYAMKMVT6ARR.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "PH52NYAMKMVT6ARR.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PH52NYAMKMVT6ARR.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "PH52NYAMKMVT6ARR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PH52NYAMKMVT6ARR.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "PH52NYAMKMVT6ARR.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "18.8770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "PH52NYAMKMVT6ARR.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "PH52NYAMKMVT6ARR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PH52NYAMKMVT6ARR.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "PH52NYAMKMVT6ARR.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "84938" - }, - "appliesTo" : [ ] - }, - "PH52NYAMKMVT6ARR.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "PH52NYAMKMVT6ARR.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.6960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PH52NYAMKMVT6ARR.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "PH52NYAMKMVT6ARR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PH52NYAMKMVT6ARR.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "PH52NYAMKMVT6ARR.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "19.6880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "RSMWKBGGTAAEV4RH" : { - "RSMWKBGGTAAEV4RH.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "RSMWKBGGTAAEV4RH", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "RSMWKBGGTAAEV4RH.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "RSMWKBGGTAAEV4RH.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16259" - }, - "appliesTo" : [ ] - }, - "RSMWKBGGTAAEV4RH.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "RSMWKBGGTAAEV4RH.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6187000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RSMWKBGGTAAEV4RH.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "RSMWKBGGTAAEV4RH", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "RSMWKBGGTAAEV4RH.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "RSMWKBGGTAAEV4RH.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14138" - }, - "appliesTo" : [ ] - }, - "RSMWKBGGTAAEV4RH.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "RSMWKBGGTAAEV4RH.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RSMWKBGGTAAEV4RH.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "RSMWKBGGTAAEV4RH", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "RSMWKBGGTAAEV4RH.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "RSMWKBGGTAAEV4RH.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3363000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RSMWKBGGTAAEV4RH.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "RSMWKBGGTAAEV4RH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RSMWKBGGTAAEV4RH.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "RSMWKBGGTAAEV4RH.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "RSMWKBGGTAAEV4RH.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "RSMWKBGGTAAEV4RH.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14631" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RSMWKBGGTAAEV4RH.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "RSMWKBGGTAAEV4RH", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "RSMWKBGGTAAEV4RH.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "RSMWKBGGTAAEV4RH.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RSMWKBGGTAAEV4RH.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "RSMWKBGGTAAEV4RH", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "RSMWKBGGTAAEV4RH.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "RSMWKBGGTAAEV4RH.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31867" - }, - "appliesTo" : [ ] - }, - "RSMWKBGGTAAEV4RH.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "RSMWKBGGTAAEV4RH.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RSMWKBGGTAAEV4RH.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "RSMWKBGGTAAEV4RH", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "RSMWKBGGTAAEV4RH.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "RSMWKBGGTAAEV4RH.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26579" - }, - "appliesTo" : [ ] - }, - "RSMWKBGGTAAEV4RH.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "RSMWKBGGTAAEV4RH.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RSMWKBGGTAAEV4RH.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "RSMWKBGGTAAEV4RH", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "RSMWKBGGTAAEV4RH.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "RSMWKBGGTAAEV4RH.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5561000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RSMWKBGGTAAEV4RH.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "RSMWKBGGTAAEV4RH", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "RSMWKBGGTAAEV4RH.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "RSMWKBGGTAAEV4RH.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6491" - }, - "appliesTo" : [ ] - }, - "RSMWKBGGTAAEV4RH.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "RSMWKBGGTAAEV4RH.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RSMWKBGGTAAEV4RH.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "RSMWKBGGTAAEV4RH", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "RSMWKBGGTAAEV4RH.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "RSMWKBGGTAAEV4RH.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12723" - }, - "appliesTo" : [ ] - }, - "RSMWKBGGTAAEV4RH.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "RSMWKBGGTAAEV4RH.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RSMWKBGGTAAEV4RH.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "RSMWKBGGTAAEV4RH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RSMWKBGGTAAEV4RH.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "RSMWKBGGTAAEV4RH.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7465" - }, - "appliesTo" : [ ] - }, - "RSMWKBGGTAAEV4RH.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "RSMWKBGGTAAEV4RH.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8522000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RSMWKBGGTAAEV4RH.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "RSMWKBGGTAAEV4RH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RSMWKBGGTAAEV4RH.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "RSMWKBGGTAAEV4RH.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7895000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "8QXEMJ9C47K755H8" : { - "8QXEMJ9C47K755H8.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "8QXEMJ9C47K755H8", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "8QXEMJ9C47K755H8.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "8QXEMJ9C47K755H8.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35691" - }, - "appliesTo" : [ ] - }, - "8QXEMJ9C47K755H8.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "8QXEMJ9C47K755H8.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8QXEMJ9C47K755H8.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "8QXEMJ9C47K755H8", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "8QXEMJ9C47K755H8.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "8QXEMJ9C47K755H8.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8QXEMJ9C47K755H8.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "8QXEMJ9C47K755H8", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "8QXEMJ9C47K755H8.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "8QXEMJ9C47K755H8.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18818" - }, - "appliesTo" : [ ] - }, - "8QXEMJ9C47K755H8.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "8QXEMJ9C47K755H8.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8QXEMJ9C47K755H8.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "8QXEMJ9C47K755H8", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "8QXEMJ9C47K755H8.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "8QXEMJ9C47K755H8.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0940000000" - }, - "appliesTo" : [ ] - }, - "8QXEMJ9C47K755H8.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "8QXEMJ9C47K755H8.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9583" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8QXEMJ9C47K755H8.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "8QXEMJ9C47K755H8", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "8QXEMJ9C47K755H8.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "8QXEMJ9C47K755H8.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8QXEMJ9C47K755H8.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "8QXEMJ9C47K755H8", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "8QXEMJ9C47K755H8.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "8QXEMJ9C47K755H8.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18818" - }, - "appliesTo" : [ ] - }, - "8QXEMJ9C47K755H8.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "8QXEMJ9C47K755H8.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "VHC3YWSZ6ZFZPJN4" : { - "VHC3YWSZ6ZFZPJN4.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "VHC3YWSZ6ZFZPJN4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VHC3YWSZ6ZFZPJN4.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "VHC3YWSZ6ZFZPJN4.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VHC3YWSZ6ZFZPJN4.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "VHC3YWSZ6ZFZPJN4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VHC3YWSZ6ZFZPJN4.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "VHC3YWSZ6ZFZPJN4.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2478000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VHC3YWSZ6ZFZPJN4.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "VHC3YWSZ6ZFZPJN4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VHC3YWSZ6ZFZPJN4.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "VHC3YWSZ6ZFZPJN4.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4739" - }, - "appliesTo" : [ ] - }, - "VHC3YWSZ6ZFZPJN4.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "VHC3YWSZ6ZFZPJN4.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VHC3YWSZ6ZFZPJN4.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "VHC3YWSZ6ZFZPJN4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VHC3YWSZ6ZFZPJN4.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "VHC3YWSZ6ZFZPJN4.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1357000000" - }, - "appliesTo" : [ ] - }, - "VHC3YWSZ6ZFZPJN4.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "VHC3YWSZ6ZFZPJN4.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1189" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VHC3YWSZ6ZFZPJN4.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "VHC3YWSZ6ZFZPJN4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VHC3YWSZ6ZFZPJN4.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "VHC3YWSZ6ZFZPJN4.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2330" - }, - "appliesTo" : [ ] - }, - "VHC3YWSZ6ZFZPJN4.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "VHC3YWSZ6ZFZPJN4.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VHC3YWSZ6ZFZPJN4.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "VHC3YWSZ6ZFZPJN4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VHC3YWSZ6ZFZPJN4.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "VHC3YWSZ6ZFZPJN4.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1728000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VHC3YWSZ6ZFZPJN4.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "VHC3YWSZ6ZFZPJN4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VHC3YWSZ6ZFZPJN4.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "VHC3YWSZ6ZFZPJN4.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "VHC3YWSZ6ZFZPJN4.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "VHC3YWSZ6ZFZPJN4.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3953" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VHC3YWSZ6ZFZPJN4.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "VHC3YWSZ6ZFZPJN4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VHC3YWSZ6ZFZPJN4.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "VHC3YWSZ6ZFZPJN4.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1034" - }, - "appliesTo" : [ ] - }, - "VHC3YWSZ6ZFZPJN4.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "VHC3YWSZ6ZFZPJN4.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VHC3YWSZ6ZFZPJN4.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "VHC3YWSZ6ZFZPJN4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VHC3YWSZ6ZFZPJN4.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "VHC3YWSZ6ZFZPJN4.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0800000000" - }, - "appliesTo" : [ ] - }, - "VHC3YWSZ6ZFZPJN4.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "VHC3YWSZ6ZFZPJN4.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2102" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VHC3YWSZ6ZFZPJN4.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "VHC3YWSZ6ZFZPJN4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VHC3YWSZ6ZFZPJN4.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "VHC3YWSZ6ZFZPJN4.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2418" - }, - "appliesTo" : [ ] - }, - "VHC3YWSZ6ZFZPJN4.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "VHC3YWSZ6ZFZPJN4.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VHC3YWSZ6ZFZPJN4.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "VHC3YWSZ6ZFZPJN4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VHC3YWSZ6ZFZPJN4.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "VHC3YWSZ6ZFZPJN4.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2026" - }, - "appliesTo" : [ ] - }, - "VHC3YWSZ6ZFZPJN4.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "VHC3YWSZ6ZFZPJN4.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VHC3YWSZ6ZFZPJN4.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "VHC3YWSZ6ZFZPJN4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VHC3YWSZ6ZFZPJN4.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "VHC3YWSZ6ZFZPJN4.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1987000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "EN85M9PMPVGK77TA" : { - "EN85M9PMPVGK77TA.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "EN85M9PMPVGK77TA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EN85M9PMPVGK77TA.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "EN85M9PMPVGK77TA.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.2636000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "EN85M9PMPVGK77TA.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "EN85M9PMPVGK77TA", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "EN85M9PMPVGK77TA.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "EN85M9PMPVGK77TA.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "EN85M9PMPVGK77TA.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "EN85M9PMPVGK77TA.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "150690" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EN85M9PMPVGK77TA.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "EN85M9PMPVGK77TA", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "EN85M9PMPVGK77TA.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "EN85M9PMPVGK77TA.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "72971" - }, - "appliesTo" : [ ] - }, - "EN85M9PMPVGK77TA.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "EN85M9PMPVGK77TA.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EN85M9PMPVGK77TA.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "EN85M9PMPVGK77TA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EN85M9PMPVGK77TA.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "EN85M9PMPVGK77TA.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5074000000" - }, - "appliesTo" : [ ] - }, - "EN85M9PMPVGK77TA.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "EN85M9PMPVGK77TA.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "92175" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "EN85M9PMPVGK77TA.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "EN85M9PMPVGK77TA", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "EN85M9PMPVGK77TA.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "EN85M9PMPVGK77TA.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0500000000" - }, - "appliesTo" : [ ] - }, - "EN85M9PMPVGK77TA.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "EN85M9PMPVGK77TA.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "80154" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EN85M9PMPVGK77TA.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "EN85M9PMPVGK77TA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EN85M9PMPVGK77TA.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "EN85M9PMPVGK77TA.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "180664" - }, - "appliesTo" : [ ] - }, - "EN85M9PMPVGK77TA.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "EN85M9PMPVGK77TA.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "EN85M9PMPVGK77TA.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "EN85M9PMPVGK77TA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EN85M9PMPVGK77TA.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "EN85M9PMPVGK77TA.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5761000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "EN85M9PMPVGK77TA.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "EN85M9PMPVGK77TA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EN85M9PMPVGK77TA.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "EN85M9PMPVGK77TA.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "42814" - }, - "appliesTo" : [ ] - }, - "EN85M9PMPVGK77TA.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "EN85M9PMPVGK77TA.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.8874000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "EN85M9PMPVGK77TA.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "EN85M9PMPVGK77TA", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "EN85M9PMPVGK77TA.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "EN85M9PMPVGK77TA.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.9250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "EN85M9PMPVGK77TA.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "EN85M9PMPVGK77TA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EN85M9PMPVGK77TA.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "EN85M9PMPVGK77TA.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.5880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "EN85M9PMPVGK77TA.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "EN85M9PMPVGK77TA", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "EN85M9PMPVGK77TA.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "EN85M9PMPVGK77TA.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37230" - }, - "appliesTo" : [ ] - }, - "EN85M9PMPVGK77TA.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "EN85M9PMPVGK77TA.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EN85M9PMPVGK77TA.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "EN85M9PMPVGK77TA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EN85M9PMPVGK77TA.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "EN85M9PMPVGK77TA.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "83915" - }, - "appliesTo" : [ ] - }, - "EN85M9PMPVGK77TA.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "EN85M9PMPVGK77TA.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "R85D93TFFU8AU7WZ" : { - "R85D93TFFU8AU7WZ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "R85D93TFFU8AU7WZ", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "R85D93TFFU8AU7WZ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "R85D93TFFU8AU7WZ.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "R85D93TFFU8AU7WZ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "R85D93TFFU8AU7WZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R85D93TFFU8AU7WZ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "R85D93TFFU8AU7WZ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10201" - }, - "appliesTo" : [ ] - }, - "R85D93TFFU8AU7WZ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "R85D93TFFU8AU7WZ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "R85D93TFFU8AU7WZ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "R85D93TFFU8AU7WZ", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "R85D93TFFU8AU7WZ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "R85D93TFFU8AU7WZ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16556" - }, - "appliesTo" : [ ] - }, - "R85D93TFFU8AU7WZ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "R85D93TFFU8AU7WZ.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "R85D93TFFU8AU7WZ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "R85D93TFFU8AU7WZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R85D93TFFU8AU7WZ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "R85D93TFFU8AU7WZ.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "R85D93TFFU8AU7WZ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "R85D93TFFU8AU7WZ", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "R85D93TFFU8AU7WZ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "R85D93TFFU8AU7WZ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31157" - }, - "appliesTo" : [ ] - }, - "R85D93TFFU8AU7WZ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "R85D93TFFU8AU7WZ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "R85D93TFFU8AU7WZ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "R85D93TFFU8AU7WZ", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "R85D93TFFU8AU7WZ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "R85D93TFFU8AU7WZ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "R85D93TFFU8AU7WZ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "R85D93TFFU8AU7WZ", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "R85D93TFFU8AU7WZ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "R85D93TFFU8AU7WZ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8440000000" - }, - "appliesTo" : [ ] - }, - "R85D93TFFU8AU7WZ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "R85D93TFFU8AU7WZ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22185" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "R85D93TFFU8AU7WZ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "R85D93TFFU8AU7WZ", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "R85D93TFFU8AU7WZ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "R85D93TFFU8AU7WZ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8888" - }, - "appliesTo" : [ ] - }, - "R85D93TFFU8AU7WZ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "R85D93TFFU8AU7WZ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "R85D93TFFU8AU7WZ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "R85D93TFFU8AU7WZ", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "R85D93TFFU8AU7WZ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "R85D93TFFU8AU7WZ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17365" - }, - "appliesTo" : [ ] - }, - "R85D93TFFU8AU7WZ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "R85D93TFFU8AU7WZ.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "R85D93TFFU8AU7WZ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "R85D93TFFU8AU7WZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R85D93TFFU8AU7WZ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "R85D93TFFU8AU7WZ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19940" - }, - "appliesTo" : [ ] - }, - "R85D93TFFU8AU7WZ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "R85D93TFFU8AU7WZ.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "R85D93TFFU8AU7WZ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "R85D93TFFU8AU7WZ", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "R85D93TFFU8AU7WZ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "R85D93TFFU8AU7WZ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "43487" - }, - "appliesTo" : [ ] - }, - "R85D93TFFU8AU7WZ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "R85D93TFFU8AU7WZ.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "R85D93TFFU8AU7WZ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "R85D93TFFU8AU7WZ", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "R85D93TFFU8AU7WZ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "R85D93TFFU8AU7WZ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "RV7P78K2Q4CXVVP3" : { - "RV7P78K2Q4CXVVP3.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "RV7P78K2Q4CXVVP3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RV7P78K2Q4CXVVP3.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "RV7P78K2Q4CXVVP3.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RV7P78K2Q4CXVVP3.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "RV7P78K2Q4CXVVP3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RV7P78K2Q4CXVVP3.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "RV7P78K2Q4CXVVP3.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5202" - }, - "appliesTo" : [ ] - }, - "RV7P78K2Q4CXVVP3.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "RV7P78K2Q4CXVVP3.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RV7P78K2Q4CXVVP3.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "RV7P78K2Q4CXVVP3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RV7P78K2Q4CXVVP3.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "RV7P78K2Q4CXVVP3.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RV7P78K2Q4CXVVP3.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "RV7P78K2Q4CXVVP3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RV7P78K2Q4CXVVP3.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "RV7P78K2Q4CXVVP3.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RV7P78K2Q4CXVVP3.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "RV7P78K2Q4CXVVP3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RV7P78K2Q4CXVVP3.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "RV7P78K2Q4CXVVP3.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "RV7P78K2Q4CXVVP3.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "RV7P78K2Q4CXVVP3.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20720" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RV7P78K2Q4CXVVP3.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "RV7P78K2Q4CXVVP3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RV7P78K2Q4CXVVP3.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "RV7P78K2Q4CXVVP3.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10157" - }, - "appliesTo" : [ ] - }, - "RV7P78K2Q4CXVVP3.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "RV7P78K2Q4CXVVP3.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RV7P78K2Q4CXVVP3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "RV7P78K2Q4CXVVP3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RV7P78K2Q4CXVVP3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "RV7P78K2Q4CXVVP3.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RV7P78K2Q4CXVVP3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "RV7P78K2Q4CXVVP3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RV7P78K2Q4CXVVP3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "RV7P78K2Q4CXVVP3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5180000000" - }, - "appliesTo" : [ ] - }, - "RV7P78K2Q4CXVVP3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "RV7P78K2Q4CXVVP3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4599" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RV7P78K2Q4CXVVP3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "RV7P78K2Q4CXVVP3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RV7P78K2Q4CXVVP3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "RV7P78K2Q4CXVVP3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8975" - }, - "appliesTo" : [ ] - }, - "RV7P78K2Q4CXVVP3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "RV7P78K2Q4CXVVP3.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RV7P78K2Q4CXVVP3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "RV7P78K2Q4CXVVP3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RV7P78K2Q4CXVVP3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "RV7P78K2Q4CXVVP3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17771" - }, - "appliesTo" : [ ] - }, - "RV7P78K2Q4CXVVP3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "RV7P78K2Q4CXVVP3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RV7P78K2Q4CXVVP3.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "RV7P78K2Q4CXVVP3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RV7P78K2Q4CXVVP3.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "RV7P78K2Q4CXVVP3.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10545" - }, - "appliesTo" : [ ] - }, - "RV7P78K2Q4CXVVP3.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "RV7P78K2Q4CXVVP3.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RV7P78K2Q4CXVVP3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "RV7P78K2Q4CXVVP3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RV7P78K2Q4CXVVP3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "RV7P78K2Q4CXVVP3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9359" - }, - "appliesTo" : [ ] - }, - "RV7P78K2Q4CXVVP3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "RV7P78K2Q4CXVVP3.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "FB2SHXY4CT6MW3FX" : { - "FB2SHXY4CT6MW3FX.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "FB2SHXY4CT6MW3FX", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "FB2SHXY4CT6MW3FX.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "FB2SHXY4CT6MW3FX.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18895" - }, - "appliesTo" : [ ] - }, - "FB2SHXY4CT6MW3FX.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "FB2SHXY4CT6MW3FX.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FB2SHXY4CT6MW3FX.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "FB2SHXY4CT6MW3FX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FB2SHXY4CT6MW3FX.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "FB2SHXY4CT6MW3FX.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21434" - }, - "appliesTo" : [ ] - }, - "FB2SHXY4CT6MW3FX.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "FB2SHXY4CT6MW3FX.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FB2SHXY4CT6MW3FX.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "FB2SHXY4CT6MW3FX", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "FB2SHXY4CT6MW3FX.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "FB2SHXY4CT6MW3FX.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FB2SHXY4CT6MW3FX.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "FB2SHXY4CT6MW3FX", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "FB2SHXY4CT6MW3FX.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "FB2SHXY4CT6MW3FX.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37029" - }, - "appliesTo" : [ ] - }, - "FB2SHXY4CT6MW3FX.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "FB2SHXY4CT6MW3FX.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FB2SHXY4CT6MW3FX.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "FB2SHXY4CT6MW3FX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "FB2SHXY4CT6MW3FX.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "FB2SHXY4CT6MW3FX.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24732" - }, - "appliesTo" : [ ] - }, - "FB2SHXY4CT6MW3FX.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "FB2SHXY4CT6MW3FX.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FB2SHXY4CT6MW3FX.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "FB2SHXY4CT6MW3FX", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "FB2SHXY4CT6MW3FX.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "FB2SHXY4CT6MW3FX.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6961" - }, - "appliesTo" : [ ] - }, - "FB2SHXY4CT6MW3FX.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "FB2SHXY4CT6MW3FX.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FB2SHXY4CT6MW3FX.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "FB2SHXY4CT6MW3FX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "FB2SHXY4CT6MW3FX.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "FB2SHXY4CT6MW3FX.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FB2SHXY4CT6MW3FX.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "FB2SHXY4CT6MW3FX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FB2SHXY4CT6MW3FX.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "FB2SHXY4CT6MW3FX.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FB2SHXY4CT6MW3FX.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "FB2SHXY4CT6MW3FX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FB2SHXY4CT6MW3FX.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "FB2SHXY4CT6MW3FX.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10870" - }, - "appliesTo" : [ ] - }, - "FB2SHXY4CT6MW3FX.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "FB2SHXY4CT6MW3FX.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FB2SHXY4CT6MW3FX.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "FB2SHXY4CT6MW3FX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "FB2SHXY4CT6MW3FX.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "FB2SHXY4CT6MW3FX.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13642" - }, - "appliesTo" : [ ] - }, - "FB2SHXY4CT6MW3FX.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "FB2SHXY4CT6MW3FX.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FB2SHXY4CT6MW3FX.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "FB2SHXY4CT6MW3FX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FB2SHXY4CT6MW3FX.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "FB2SHXY4CT6MW3FX.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13155" - }, - "appliesTo" : [ ] - }, - "FB2SHXY4CT6MW3FX.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "FB2SHXY4CT6MW3FX.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "ASB6HFGHT3SUVED9" : { - "ASB6HFGHT3SUVED9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ASB6HFGHT3SUVED9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ASB6HFGHT3SUVED9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ASB6HFGHT3SUVED9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8958" - }, - "appliesTo" : [ ] - }, - "ASB6HFGHT3SUVED9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ASB6HFGHT3SUVED9.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ASB6HFGHT3SUVED9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ASB6HFGHT3SUVED9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ASB6HFGHT3SUVED9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ASB6HFGHT3SUVED9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5392" - }, - "appliesTo" : [ ] - }, - "ASB6HFGHT3SUVED9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ASB6HFGHT3SUVED9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ASB6HFGHT3SUVED9.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ASB6HFGHT3SUVED9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ASB6HFGHT3SUVED9.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ASB6HFGHT3SUVED9.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10273" - }, - "appliesTo" : [ ] - }, - "ASB6HFGHT3SUVED9.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ASB6HFGHT3SUVED9.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ASB6HFGHT3SUVED9.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ASB6HFGHT3SUVED9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ASB6HFGHT3SUVED9.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ASB6HFGHT3SUVED9.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ASB6HFGHT3SUVED9.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ASB6HFGHT3SUVED9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ASB6HFGHT3SUVED9.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ASB6HFGHT3SUVED9.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5940000000" - }, - "appliesTo" : [ ] - }, - "ASB6HFGHT3SUVED9.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ASB6HFGHT3SUVED9.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5269" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ASB6HFGHT3SUVED9.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ASB6HFGHT3SUVED9", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "ASB6HFGHT3SUVED9.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ASB6HFGHT3SUVED9.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24069" - }, - "appliesTo" : [ ] - }, - "ASB6HFGHT3SUVED9.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ASB6HFGHT3SUVED9.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ASB6HFGHT3SUVED9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ASB6HFGHT3SUVED9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ASB6HFGHT3SUVED9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ASB6HFGHT3SUVED9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8478" - }, - "appliesTo" : [ ] - }, - "ASB6HFGHT3SUVED9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ASB6HFGHT3SUVED9.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ASB6HFGHT3SUVED9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ASB6HFGHT3SUVED9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ASB6HFGHT3SUVED9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ASB6HFGHT3SUVED9.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ASB6HFGHT3SUVED9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ASB6HFGHT3SUVED9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ASB6HFGHT3SUVED9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ASB6HFGHT3SUVED9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17109" - }, - "appliesTo" : [ ] - }, - "ASB6HFGHT3SUVED9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ASB6HFGHT3SUVED9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ASB6HFGHT3SUVED9.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ASB6HFGHT3SUVED9", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "ASB6HFGHT3SUVED9.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ASB6HFGHT3SUVED9.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14435" - }, - "appliesTo" : [ ] - }, - "ASB6HFGHT3SUVED9.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ASB6HFGHT3SUVED9.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ASB6HFGHT3SUVED9.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ASB6HFGHT3SUVED9", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "ASB6HFGHT3SUVED9.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ASB6HFGHT3SUVED9.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "68SDFG84HR8PCZY5" : { - "68SDFG84HR8PCZY5.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "68SDFG84HR8PCZY5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "68SDFG84HR8PCZY5.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "68SDFG84HR8PCZY5.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "945" - }, - "appliesTo" : [ ] - }, - "68SDFG84HR8PCZY5.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "68SDFG84HR8PCZY5.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "68SDFG84HR8PCZY5.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "68SDFG84HR8PCZY5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "68SDFG84HR8PCZY5.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "68SDFG84HR8PCZY5.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1946" - }, - "appliesTo" : [ ] - }, - "68SDFG84HR8PCZY5.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "68SDFG84HR8PCZY5.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "68SDFG84HR8PCZY5.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "68SDFG84HR8PCZY5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "68SDFG84HR8PCZY5.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "68SDFG84HR8PCZY5.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "68SDFG84HR8PCZY5.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "68SDFG84HR8PCZY5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "68SDFG84HR8PCZY5.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "68SDFG84HR8PCZY5.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1881" - }, - "appliesTo" : [ ] - }, - "68SDFG84HR8PCZY5.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "68SDFG84HR8PCZY5.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "68SDFG84HR8PCZY5.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "68SDFG84HR8PCZY5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "68SDFG84HR8PCZY5.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "68SDFG84HR8PCZY5.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "68SDFG84HR8PCZY5.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "68SDFG84HR8PCZY5.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5143" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "68SDFG84HR8PCZY5.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "68SDFG84HR8PCZY5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "68SDFG84HR8PCZY5.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "68SDFG84HR8PCZY5.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5307" - }, - "appliesTo" : [ ] - }, - "68SDFG84HR8PCZY5.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "68SDFG84HR8PCZY5.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "68SDFG84HR8PCZY5.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "68SDFG84HR8PCZY5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "68SDFG84HR8PCZY5.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "68SDFG84HR8PCZY5.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "68SDFG84HR8PCZY5.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "68SDFG84HR8PCZY5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "68SDFG84HR8PCZY5.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "68SDFG84HR8PCZY5.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "68SDFG84HR8PCZY5.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "68SDFG84HR8PCZY5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "68SDFG84HR8PCZY5.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "68SDFG84HR8PCZY5.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1120000000" - }, - "appliesTo" : [ ] - }, - "68SDFG84HR8PCZY5.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "68SDFG84HR8PCZY5.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "978" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "68SDFG84HR8PCZY5.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "68SDFG84HR8PCZY5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "68SDFG84HR8PCZY5.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "68SDFG84HR8PCZY5.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2663" - }, - "appliesTo" : [ ] - }, - "68SDFG84HR8PCZY5.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "68SDFG84HR8PCZY5.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "68SDFG84HR8PCZY5.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "68SDFG84HR8PCZY5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "68SDFG84HR8PCZY5.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "68SDFG84HR8PCZY5.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0990000000" - }, - "appliesTo" : [ ] - }, - "68SDFG84HR8PCZY5.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "68SDFG84HR8PCZY5.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2598" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "68SDFG84HR8PCZY5.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "68SDFG84HR8PCZY5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "68SDFG84HR8PCZY5.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "68SDFG84HR8PCZY5.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "A3CMMJ5XHG8YDXAU" : { - "A3CMMJ5XHG8YDXAU.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "A3CMMJ5XHG8YDXAU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "A3CMMJ5XHG8YDXAU.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "A3CMMJ5XHG8YDXAU.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "A3CMMJ5XHG8YDXAU.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "A3CMMJ5XHG8YDXAU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "A3CMMJ5XHG8YDXAU.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "A3CMMJ5XHG8YDXAU.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17703" - }, - "appliesTo" : [ ] - }, - "A3CMMJ5XHG8YDXAU.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "A3CMMJ5XHG8YDXAU.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "A3CMMJ5XHG8YDXAU.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "A3CMMJ5XHG8YDXAU", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "A3CMMJ5XHG8YDXAU.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "A3CMMJ5XHG8YDXAU.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4120" - }, - "appliesTo" : [ ] - }, - "A3CMMJ5XHG8YDXAU.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "A3CMMJ5XHG8YDXAU.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "A3CMMJ5XHG8YDXAU.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "A3CMMJ5XHG8YDXAU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A3CMMJ5XHG8YDXAU.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "A3CMMJ5XHG8YDXAU.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6766" - }, - "appliesTo" : [ ] - }, - "A3CMMJ5XHG8YDXAU.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "A3CMMJ5XHG8YDXAU.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "A3CMMJ5XHG8YDXAU.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "A3CMMJ5XHG8YDXAU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A3CMMJ5XHG8YDXAU.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "A3CMMJ5XHG8YDXAU.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3900000000" - }, - "appliesTo" : [ ] - }, - "A3CMMJ5XHG8YDXAU.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "A3CMMJ5XHG8YDXAU.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3419" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "A3CMMJ5XHG8YDXAU.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "A3CMMJ5XHG8YDXAU", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "A3CMMJ5XHG8YDXAU.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "A3CMMJ5XHG8YDXAU.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "A3CMMJ5XHG8YDXAU.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "A3CMMJ5XHG8YDXAU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A3CMMJ5XHG8YDXAU.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "A3CMMJ5XHG8YDXAU.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "A3CMMJ5XHG8YDXAU.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "A3CMMJ5XHG8YDXAU", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "A3CMMJ5XHG8YDXAU.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "A3CMMJ5XHG8YDXAU.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8515" - }, - "appliesTo" : [ ] - }, - "A3CMMJ5XHG8YDXAU.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "A3CMMJ5XHG8YDXAU.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "A3CMMJ5XHG8YDXAU.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "A3CMMJ5XHG8YDXAU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "A3CMMJ5XHG8YDXAU.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "A3CMMJ5XHG8YDXAU.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2410000000" - }, - "appliesTo" : [ ] - }, - "A3CMMJ5XHG8YDXAU.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "A3CMMJ5XHG8YDXAU.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11743" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "A3CMMJ5XHG8YDXAU.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "A3CMMJ5XHG8YDXAU", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "A3CMMJ5XHG8YDXAU.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "A3CMMJ5XHG8YDXAU.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6210" - }, - "appliesTo" : [ ] - }, - "A3CMMJ5XHG8YDXAU.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "A3CMMJ5XHG8YDXAU.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "A3CMMJ5XHG8YDXAU.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "A3CMMJ5XHG8YDXAU", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "A3CMMJ5XHG8YDXAU.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "A3CMMJ5XHG8YDXAU.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "A3CMMJ5XHG8YDXAU.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "A3CMMJ5XHG8YDXAU.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13340" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "9RK78KZK2N3R66EZ" : { - "9RK78KZK2N3R66EZ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "9RK78KZK2N3R66EZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9RK78KZK2N3R66EZ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "9RK78KZK2N3R66EZ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4239" - }, - "appliesTo" : [ ] - }, - "9RK78KZK2N3R66EZ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "9RK78KZK2N3R66EZ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9RK78KZK2N3R66EZ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "9RK78KZK2N3R66EZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9RK78KZK2N3R66EZ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "9RK78KZK2N3R66EZ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "9RK78KZK2N3R66EZ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "9RK78KZK2N3R66EZ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1873" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9RK78KZK2N3R66EZ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "9RK78KZK2N3R66EZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9RK78KZK2N3R66EZ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "9RK78KZK2N3R66EZ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1157" - }, - "appliesTo" : [ ] - }, - "9RK78KZK2N3R66EZ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "9RK78KZK2N3R66EZ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9RK78KZK2N3R66EZ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "9RK78KZK2N3R66EZ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "9RK78KZK2N3R66EZ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "9RK78KZK2N3R66EZ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9RK78KZK2N3R66EZ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "9RK78KZK2N3R66EZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9RK78KZK2N3R66EZ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "9RK78KZK2N3R66EZ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "726" - }, - "appliesTo" : [ ] - }, - "9RK78KZK2N3R66EZ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "9RK78KZK2N3R66EZ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "SVFBAAERCQTFD96J" : { - "SVFBAAERCQTFD96J.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "SVFBAAERCQTFD96J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SVFBAAERCQTFD96J.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "SVFBAAERCQTFD96J.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SVFBAAERCQTFD96J.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "SVFBAAERCQTFD96J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SVFBAAERCQTFD96J.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "SVFBAAERCQTFD96J.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8120000000" - }, - "appliesTo" : [ ] - }, - "SVFBAAERCQTFD96J.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "SVFBAAERCQTFD96J.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15869" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SVFBAAERCQTFD96J.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SVFBAAERCQTFD96J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SVFBAAERCQTFD96J.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SVFBAAERCQTFD96J.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SVFBAAERCQTFD96J.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SVFBAAERCQTFD96J.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31434" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SVFBAAERCQTFD96J.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SVFBAAERCQTFD96J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SVFBAAERCQTFD96J.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SVFBAAERCQTFD96J.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7600000000" - }, - "appliesTo" : [ ] - }, - "SVFBAAERCQTFD96J.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SVFBAAERCQTFD96J.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46257" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SVFBAAERCQTFD96J.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "SVFBAAERCQTFD96J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SVFBAAERCQTFD96J.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "SVFBAAERCQTFD96J.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46521" - }, - "appliesTo" : [ ] - }, - "SVFBAAERCQTFD96J.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "SVFBAAERCQTFD96J.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SVFBAAERCQTFD96J.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "SVFBAAERCQTFD96J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SVFBAAERCQTFD96J.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "SVFBAAERCQTFD96J.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31696" - }, - "appliesTo" : [ ] - }, - "SVFBAAERCQTFD96J.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "SVFBAAERCQTFD96J.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SVFBAAERCQTFD96J.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SVFBAAERCQTFD96J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SVFBAAERCQTFD96J.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SVFBAAERCQTFD96J.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SVFBAAERCQTFD96J.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SVFBAAERCQTFD96J.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "92306" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SVFBAAERCQTFD96J.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "SVFBAAERCQTFD96J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SVFBAAERCQTFD96J.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "SVFBAAERCQTFD96J.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SVFBAAERCQTFD96J.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "SVFBAAERCQTFD96J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SVFBAAERCQTFD96J.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "SVFBAAERCQTFD96J.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SVFBAAERCQTFD96J.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "SVFBAAERCQTFD96J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SVFBAAERCQTFD96J.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "SVFBAAERCQTFD96J.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "92961" - }, - "appliesTo" : [ ] - }, - "SVFBAAERCQTFD96J.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "SVFBAAERCQTFD96J.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SVFBAAERCQTFD96J.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SVFBAAERCQTFD96J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SVFBAAERCQTFD96J.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SVFBAAERCQTFD96J.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SVFBAAERCQTFD96J.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SVFBAAERCQTFD96J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SVFBAAERCQTFD96J.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SVFBAAERCQTFD96J.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15735" - }, - "appliesTo" : [ ] - }, - "SVFBAAERCQTFD96J.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SVFBAAERCQTFD96J.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "FMHPC62WVZ9EB44Z" : { - "FMHPC62WVZ9EB44Z.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "FMHPC62WVZ9EB44Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FMHPC62WVZ9EB44Z.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "FMHPC62WVZ9EB44Z.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "FMHPC62WVZ9EB44Z.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "FMHPC62WVZ9EB44Z.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "99745" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FMHPC62WVZ9EB44Z.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "FMHPC62WVZ9EB44Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FMHPC62WVZ9EB44Z.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "FMHPC62WVZ9EB44Z.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.3460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FMHPC62WVZ9EB44Z.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "FMHPC62WVZ9EB44Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FMHPC62WVZ9EB44Z.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "FMHPC62WVZ9EB44Z.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "185296" - }, - "appliesTo" : [ ] - }, - "FMHPC62WVZ9EB44Z.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "FMHPC62WVZ9EB44Z.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FMHPC62WVZ9EB44Z.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "FMHPC62WVZ9EB44Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FMHPC62WVZ9EB44Z.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "FMHPC62WVZ9EB44Z.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "96092" - }, - "appliesTo" : [ ] - }, - "FMHPC62WVZ9EB44Z.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "FMHPC62WVZ9EB44Z.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FMHPC62WVZ9EB44Z.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "FMHPC62WVZ9EB44Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FMHPC62WVZ9EB44Z.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "FMHPC62WVZ9EB44Z.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "104704" - }, - "appliesTo" : [ ] - }, - "FMHPC62WVZ9EB44Z.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "FMHPC62WVZ9EB44Z.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FMHPC62WVZ9EB44Z.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "FMHPC62WVZ9EB44Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FMHPC62WVZ9EB44Z.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "FMHPC62WVZ9EB44Z.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "56287" - }, - "appliesTo" : [ ] - }, - "FMHPC62WVZ9EB44Z.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "FMHPC62WVZ9EB44Z.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.4250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FMHPC62WVZ9EB44Z.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "FMHPC62WVZ9EB44Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FMHPC62WVZ9EB44Z.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "FMHPC62WVZ9EB44Z.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.3700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FMHPC62WVZ9EB44Z.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "FMHPC62WVZ9EB44Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FMHPC62WVZ9EB44Z.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "FMHPC62WVZ9EB44Z.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "FMHPC62WVZ9EB44Z.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "FMHPC62WVZ9EB44Z.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "110838" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FMHPC62WVZ9EB44Z.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "FMHPC62WVZ9EB44Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FMHPC62WVZ9EB44Z.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "FMHPC62WVZ9EB44Z.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.6620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FMHPC62WVZ9EB44Z.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "FMHPC62WVZ9EB44Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FMHPC62WVZ9EB44Z.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "FMHPC62WVZ9EB44Z.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "206766" - }, - "appliesTo" : [ ] - }, - "FMHPC62WVZ9EB44Z.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "FMHPC62WVZ9EB44Z.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FMHPC62WVZ9EB44Z.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "FMHPC62WVZ9EB44Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FMHPC62WVZ9EB44Z.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "FMHPC62WVZ9EB44Z.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "11.9890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FMHPC62WVZ9EB44Z.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "FMHPC62WVZ9EB44Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FMHPC62WVZ9EB44Z.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "FMHPC62WVZ9EB44Z.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "50627" - }, - "appliesTo" : [ ] - }, - "FMHPC62WVZ9EB44Z.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "FMHPC62WVZ9EB44Z.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.7790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "ZBVHTEDA4X8G6DPB" : { - "ZBVHTEDA4X8G6DPB.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ZBVHTEDA4X8G6DPB", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "ZBVHTEDA4X8G6DPB.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ZBVHTEDA4X8G6DPB.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5725" - }, - "appliesTo" : [ ] - }, - "ZBVHTEDA4X8G6DPB.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ZBVHTEDA4X8G6DPB.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZBVHTEDA4X8G6DPB.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ZBVHTEDA4X8G6DPB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZBVHTEDA4X8G6DPB.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ZBVHTEDA4X8G6DPB.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ZBVHTEDA4X8G6DPB.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ZBVHTEDA4X8G6DPB.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8355" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZBVHTEDA4X8G6DPB.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ZBVHTEDA4X8G6DPB", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "ZBVHTEDA4X8G6DPB.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ZBVHTEDA4X8G6DPB.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24858" - }, - "appliesTo" : [ ] - }, - "ZBVHTEDA4X8G6DPB.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ZBVHTEDA4X8G6DPB.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZBVHTEDA4X8G6DPB.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ZBVHTEDA4X8G6DPB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZBVHTEDA4X8G6DPB.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ZBVHTEDA4X8G6DPB.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4217" - }, - "appliesTo" : [ ] - }, - "ZBVHTEDA4X8G6DPB.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ZBVHTEDA4X8G6DPB.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZBVHTEDA4X8G6DPB.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ZBVHTEDA4X8G6DPB", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "ZBVHTEDA4X8G6DPB.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ZBVHTEDA4X8G6DPB.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZBVHTEDA4X8G6DPB.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ZBVHTEDA4X8G6DPB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZBVHTEDA4X8G6DPB.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ZBVHTEDA4X8G6DPB.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZBVHTEDA4X8G6DPB.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ZBVHTEDA4X8G6DPB", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "ZBVHTEDA4X8G6DPB.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ZBVHTEDA4X8G6DPB.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14974" - }, - "appliesTo" : [ ] - }, - "ZBVHTEDA4X8G6DPB.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ZBVHTEDA4X8G6DPB.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZBVHTEDA4X8G6DPB.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ZBVHTEDA4X8G6DPB", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "ZBVHTEDA4X8G6DPB.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ZBVHTEDA4X8G6DPB.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16497" - }, - "appliesTo" : [ ] - }, - "ZBVHTEDA4X8G6DPB.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ZBVHTEDA4X8G6DPB.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZBVHTEDA4X8G6DPB.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ZBVHTEDA4X8G6DPB", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "ZBVHTEDA4X8G6DPB.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ZBVHTEDA4X8G6DPB.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21624" - }, - "appliesTo" : [ ] - }, - "ZBVHTEDA4X8G6DPB.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ZBVHTEDA4X8G6DPB.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZBVHTEDA4X8G6DPB.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ZBVHTEDA4X8G6DPB", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "ZBVHTEDA4X8G6DPB.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ZBVHTEDA4X8G6DPB.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZBVHTEDA4X8G6DPB.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ZBVHTEDA4X8G6DPB", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "ZBVHTEDA4X8G6DPB.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ZBVHTEDA4X8G6DPB.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8626" - }, - "appliesTo" : [ ] - }, - "ZBVHTEDA4X8G6DPB.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ZBVHTEDA4X8G6DPB.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "3D264ECCWU44GADE" : { - "3D264ECCWU44GADE.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "3D264ECCWU44GADE", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3D264ECCWU44GADE.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "3D264ECCWU44GADE.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "3D264ECCWU44GADE.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "3D264ECCWU44GADE.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13464" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3D264ECCWU44GADE.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "3D264ECCWU44GADE", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3D264ECCWU44GADE.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "3D264ECCWU44GADE.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2180" - }, - "appliesTo" : [ ] - }, - "3D264ECCWU44GADE.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "3D264ECCWU44GADE.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3D264ECCWU44GADE.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "3D264ECCWU44GADE", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "3D264ECCWU44GADE.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "3D264ECCWU44GADE.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5730" - }, - "appliesTo" : [ ] - }, - "3D264ECCWU44GADE.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "3D264ECCWU44GADE.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3D264ECCWU44GADE.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "3D264ECCWU44GADE", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3D264ECCWU44GADE.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "3D264ECCWU44GADE.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "3D264ECCWU44GADE.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "3D264ECCWU44GADE.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5339" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3D264ECCWU44GADE.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "3D264ECCWU44GADE", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3D264ECCWU44GADE.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "3D264ECCWU44GADE.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "NR96G3WS4WXEXUW4" : { - "NR96G3WS4WXEXUW4.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "NR96G3WS4WXEXUW4", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "NR96G3WS4WXEXUW4.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "NR96G3WS4WXEXUW4.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22605" - }, - "appliesTo" : [ ] - }, - "NR96G3WS4WXEXUW4.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "NR96G3WS4WXEXUW4.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "NR96G3WS4WXEXUW4.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "NR96G3WS4WXEXUW4", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "NR96G3WS4WXEXUW4.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "NR96G3WS4WXEXUW4.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "NR96G3WS4WXEXUW4.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "NR96G3WS4WXEXUW4", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "NR96G3WS4WXEXUW4.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "NR96G3WS4WXEXUW4.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "65208" - }, - "appliesTo" : [ ] - }, - "NR96G3WS4WXEXUW4.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "NR96G3WS4WXEXUW4.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "NR96G3WS4WXEXUW4.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "NR96G3WS4WXEXUW4", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "NR96G3WS4WXEXUW4.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "NR96G3WS4WXEXUW4.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9217" - }, - "appliesTo" : [ ] - }, - "NR96G3WS4WXEXUW4.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "NR96G3WS4WXEXUW4.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "NR96G3WS4WXEXUW4.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "NR96G3WS4WXEXUW4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NR96G3WS4WXEXUW4.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "NR96G3WS4WXEXUW4.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27818" - }, - "appliesTo" : [ ] - }, - "NR96G3WS4WXEXUW4.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "NR96G3WS4WXEXUW4.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "NR96G3WS4WXEXUW4.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "NR96G3WS4WXEXUW4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NR96G3WS4WXEXUW4.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "NR96G3WS4WXEXUW4.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14011" - }, - "appliesTo" : [ ] - }, - "NR96G3WS4WXEXUW4.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "NR96G3WS4WXEXUW4.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "NR96G3WS4WXEXUW4.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "NR96G3WS4WXEXUW4", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "NR96G3WS4WXEXUW4.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "NR96G3WS4WXEXUW4.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "NR96G3WS4WXEXUW4.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "NR96G3WS4WXEXUW4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NR96G3WS4WXEXUW4.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "NR96G3WS4WXEXUW4.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "NR96G3WS4WXEXUW4.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "NR96G3WS4WXEXUW4", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "NR96G3WS4WXEXUW4.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "NR96G3WS4WXEXUW4.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "NR96G3WS4WXEXUW4.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "NR96G3WS4WXEXUW4.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "52818" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "NR96G3WS4WXEXUW4.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "NR96G3WS4WXEXUW4", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "NR96G3WS4WXEXUW4.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "NR96G3WS4WXEXUW4.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26086" - }, - "appliesTo" : [ ] - }, - "NR96G3WS4WXEXUW4.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "NR96G3WS4WXEXUW4.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "NR96G3WS4WXEXUW4.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "NR96G3WS4WXEXUW4", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "NR96G3WS4WXEXUW4.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "NR96G3WS4WXEXUW4.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2830000000" - }, - "appliesTo" : [ ] - }, - "NR96G3WS4WXEXUW4.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "NR96G3WS4WXEXUW4.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22472" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "6SZSU4SPSN4VNV6H" : { - "6SZSU4SPSN4VNV6H.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6SZSU4SPSN4VNV6H", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "6SZSU4SPSN4VNV6H.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6SZSU4SPSN4VNV6H.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25088" - }, - "appliesTo" : [ ] - }, - "6SZSU4SPSN4VNV6H.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6SZSU4SPSN4VNV6H.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6SZSU4SPSN4VNV6H.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "6SZSU4SPSN4VNV6H", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "6SZSU4SPSN4VNV6H.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "6SZSU4SPSN4VNV6H.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6SZSU4SPSN4VNV6H.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "6SZSU4SPSN4VNV6H", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "6SZSU4SPSN4VNV6H.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "6SZSU4SPSN4VNV6H.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26418" - }, - "appliesTo" : [ ] - }, - "6SZSU4SPSN4VNV6H.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "6SZSU4SPSN4VNV6H.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6SZSU4SPSN4VNV6H.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6SZSU4SPSN4VNV6H", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "6SZSU4SPSN4VNV6H.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6SZSU4SPSN4VNV6H.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "49821" - }, - "appliesTo" : [ ] - }, - "6SZSU4SPSN4VNV6H.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6SZSU4SPSN4VNV6H.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6SZSU4SPSN4VNV6H.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6SZSU4SPSN4VNV6H", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "6SZSU4SPSN4VNV6H.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6SZSU4SPSN4VNV6H.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17866" - }, - "appliesTo" : [ ] - }, - "6SZSU4SPSN4VNV6H.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6SZSU4SPSN4VNV6H.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6SZSU4SPSN4VNV6H.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "6SZSU4SPSN4VNV6H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6SZSU4SPSN4VNV6H.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "6SZSU4SPSN4VNV6H.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6SZSU4SPSN4VNV6H.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6SZSU4SPSN4VNV6H", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "6SZSU4SPSN4VNV6H.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6SZSU4SPSN4VNV6H.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6SZSU4SPSN4VNV6H.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "6SZSU4SPSN4VNV6H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6SZSU4SPSN4VNV6H.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "6SZSU4SPSN4VNV6H.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9203" - }, - "appliesTo" : [ ] - }, - "6SZSU4SPSN4VNV6H.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "6SZSU4SPSN4VNV6H.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6SZSU4SPSN4VNV6H.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6SZSU4SPSN4VNV6H", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "6SZSU4SPSN4VNV6H.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6SZSU4SPSN4VNV6H.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8965" - }, - "appliesTo" : [ ] - }, - "6SZSU4SPSN4VNV6H.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6SZSU4SPSN4VNV6H.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6SZSU4SPSN4VNV6H.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "6SZSU4SPSN4VNV6H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6SZSU4SPSN4VNV6H.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "6SZSU4SPSN4VNV6H.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "6SZSU4SPSN4VNV6H.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "6SZSU4SPSN4VNV6H.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18334" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6SZSU4SPSN4VNV6H.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "6SZSU4SPSN4VNV6H", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "6SZSU4SPSN4VNV6H.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "6SZSU4SPSN4VNV6H.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "6SZSU4SPSN4VNV6H.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "6SZSU4SPSN4VNV6H.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "52665" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "5NPY8GZN5BFUPMDZ" : { - "5NPY8GZN5BFUPMDZ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "5NPY8GZN5BFUPMDZ", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "5NPY8GZN5BFUPMDZ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "5NPY8GZN5BFUPMDZ.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "5NPY8GZN5BFUPMDZ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "5NPY8GZN5BFUPMDZ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2311" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "5NPY8GZN5BFUPMDZ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "5NPY8GZN5BFUPMDZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "5NPY8GZN5BFUPMDZ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "5NPY8GZN5BFUPMDZ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1852" - }, - "appliesTo" : [ ] - }, - "5NPY8GZN5BFUPMDZ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "5NPY8GZN5BFUPMDZ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5NPY8GZN5BFUPMDZ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "5NPY8GZN5BFUPMDZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5NPY8GZN5BFUPMDZ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "5NPY8GZN5BFUPMDZ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "849" - }, - "appliesTo" : [ ] - }, - "5NPY8GZN5BFUPMDZ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "5NPY8GZN5BFUPMDZ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "5NPY8GZN5BFUPMDZ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "5NPY8GZN5BFUPMDZ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "5NPY8GZN5BFUPMDZ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "5NPY8GZN5BFUPMDZ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "525" - }, - "appliesTo" : [ ] - }, - "5NPY8GZN5BFUPMDZ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "5NPY8GZN5BFUPMDZ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5NPY8GZN5BFUPMDZ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "5NPY8GZN5BFUPMDZ", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "5NPY8GZN5BFUPMDZ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "5NPY8GZN5BFUPMDZ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "893" - }, - "appliesTo" : [ ] - }, - "5NPY8GZN5BFUPMDZ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "5NPY8GZN5BFUPMDZ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "5NPY8GZN5BFUPMDZ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "5NPY8GZN5BFUPMDZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5NPY8GZN5BFUPMDZ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "5NPY8GZN5BFUPMDZ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "5NPY8GZN5BFUPMDZ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "5NPY8GZN5BFUPMDZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5NPY8GZN5BFUPMDZ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "5NPY8GZN5BFUPMDZ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "429" - }, - "appliesTo" : [ ] - }, - "5NPY8GZN5BFUPMDZ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "5NPY8GZN5BFUPMDZ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "5NPY8GZN5BFUPMDZ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "5NPY8GZN5BFUPMDZ", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "5NPY8GZN5BFUPMDZ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "5NPY8GZN5BFUPMDZ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "5NPY8GZN5BFUPMDZ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "5NPY8GZN5BFUPMDZ", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "5NPY8GZN5BFUPMDZ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "5NPY8GZN5BFUPMDZ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0560000000" - }, - "appliesTo" : [ ] - }, - "5NPY8GZN5BFUPMDZ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "5NPY8GZN5BFUPMDZ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "321" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5NPY8GZN5BFUPMDZ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "5NPY8GZN5BFUPMDZ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "5NPY8GZN5BFUPMDZ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "5NPY8GZN5BFUPMDZ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "5NPY8GZN5BFUPMDZ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "5NPY8GZN5BFUPMDZ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "809" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5NPY8GZN5BFUPMDZ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "5NPY8GZN5BFUPMDZ", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "5NPY8GZN5BFUPMDZ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "5NPY8GZN5BFUPMDZ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "QFJGATXWKZNECDMG" : { - "QFJGATXWKZNECDMG.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QFJGATXWKZNECDMG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QFJGATXWKZNECDMG.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QFJGATXWKZNECDMG.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1966" - }, - "appliesTo" : [ ] - }, - "QFJGATXWKZNECDMG.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QFJGATXWKZNECDMG.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QFJGATXWKZNECDMG.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QFJGATXWKZNECDMG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QFJGATXWKZNECDMG.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QFJGATXWKZNECDMG.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QFJGATXWKZNECDMG.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QFJGATXWKZNECDMG.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3860" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QFJGATXWKZNECDMG.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "QFJGATXWKZNECDMG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QFJGATXWKZNECDMG.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "QFJGATXWKZNECDMG.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QFJGATXWKZNECDMG.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QFJGATXWKZNECDMG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QFJGATXWKZNECDMG.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QFJGATXWKZNECDMG.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QFJGATXWKZNECDMG.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QFJGATXWKZNECDMG.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7590" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QFJGATXWKZNECDMG.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QFJGATXWKZNECDMG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QFJGATXWKZNECDMG.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QFJGATXWKZNECDMG.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QFJGATXWKZNECDMG.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QFJGATXWKZNECDMG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QFJGATXWKZNECDMG.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QFJGATXWKZNECDMG.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1520000000" - }, - "appliesTo" : [ ] - }, - "QFJGATXWKZNECDMG.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QFJGATXWKZNECDMG.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4003" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "TFQ5DSSKH395ATXV" : { - "TFQ5DSSKH395ATXV.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TFQ5DSSKH395ATXV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TFQ5DSSKH395ATXV.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TFQ5DSSKH395ATXV.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6800" - }, - "appliesTo" : [ ] - }, - "TFQ5DSSKH395ATXV.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TFQ5DSSKH395ATXV.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TFQ5DSSKH395ATXV.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TFQ5DSSKH395ATXV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TFQ5DSSKH395ATXV.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TFQ5DSSKH395ATXV.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13563" - }, - "appliesTo" : [ ] - }, - "TFQ5DSSKH395ATXV.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TFQ5DSSKH395ATXV.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TFQ5DSSKH395ATXV.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "TFQ5DSSKH395ATXV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TFQ5DSSKH395ATXV.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "TFQ5DSSKH395ATXV.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TFQ5DSSKH395ATXV.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "TFQ5DSSKH395ATXV.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13826" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TFQ5DSSKH395ATXV.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TFQ5DSSKH395ATXV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TFQ5DSSKH395ATXV.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TFQ5DSSKH395ATXV.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38695" - }, - "appliesTo" : [ ] - }, - "TFQ5DSSKH395ATXV.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TFQ5DSSKH395ATXV.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TFQ5DSSKH395ATXV.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "TFQ5DSSKH395ATXV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TFQ5DSSKH395ATXV.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "TFQ5DSSKH395ATXV.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TFQ5DSSKH395ATXV.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TFQ5DSSKH395ATXV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TFQ5DSSKH395ATXV.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TFQ5DSSKH395ATXV.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TFQ5DSSKH395ATXV.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "TFQ5DSSKH395ATXV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TFQ5DSSKH395ATXV.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "TFQ5DSSKH395ATXV.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6934" - }, - "appliesTo" : [ ] - }, - "TFQ5DSSKH395ATXV.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "TFQ5DSSKH395ATXV.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TFQ5DSSKH395ATXV.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TFQ5DSSKH395ATXV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TFQ5DSSKH395ATXV.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TFQ5DSSKH395ATXV.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19451" - }, - "appliesTo" : [ ] - }, - "TFQ5DSSKH395ATXV.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TFQ5DSSKH395ATXV.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TFQ5DSSKH395ATXV.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "TFQ5DSSKH395ATXV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TFQ5DSSKH395ATXV.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "TFQ5DSSKH395ATXV.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TFQ5DSSKH395ATXV.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "TFQ5DSSKH395ATXV.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39350" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TFQ5DSSKH395ATXV.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "TFQ5DSSKH395ATXV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TFQ5DSSKH395ATXV.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "TFQ5DSSKH395ATXV.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TFQ5DSSKH395ATXV.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "TFQ5DSSKH395ATXV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TFQ5DSSKH395ATXV.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "TFQ5DSSKH395ATXV.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7500000000" - }, - "appliesTo" : [ ] - }, - "TFQ5DSSKH395ATXV.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "TFQ5DSSKH395ATXV.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19715" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TFQ5DSSKH395ATXV.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "TFQ5DSSKH395ATXV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TFQ5DSSKH395ATXV.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "TFQ5DSSKH395ATXV.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "6R5GC45858YD7JK6" : { - "6R5GC45858YD7JK6.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6R5GC45858YD7JK6", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "6R5GC45858YD7JK6.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6R5GC45858YD7JK6.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "460" - }, - "appliesTo" : [ ] - }, - "6R5GC45858YD7JK6.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6R5GC45858YD7JK6.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6R5GC45858YD7JK6.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6R5GC45858YD7JK6", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "6R5GC45858YD7JK6.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6R5GC45858YD7JK6.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1056" - }, - "appliesTo" : [ ] - }, - "6R5GC45858YD7JK6.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6R5GC45858YD7JK6.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6R5GC45858YD7JK6.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6R5GC45858YD7JK6", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6R5GC45858YD7JK6.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6R5GC45858YD7JK6.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "285" - }, - "appliesTo" : [ ] - }, - "6R5GC45858YD7JK6.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6R5GC45858YD7JK6.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6R5GC45858YD7JK6.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6R5GC45858YD7JK6", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6R5GC45858YD7JK6.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6R5GC45858YD7JK6.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6R5GC45858YD7JK6.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6R5GC45858YD7JK6", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6R5GC45858YD7JK6.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6R5GC45858YD7JK6.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "182" - }, - "appliesTo" : [ ] - }, - "6R5GC45858YD7JK6.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6R5GC45858YD7JK6.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "H9KMFFHRW3R5NVSJ" : { - "H9KMFFHRW3R5NVSJ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "H9KMFFHRW3R5NVSJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H9KMFFHRW3R5NVSJ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "H9KMFFHRW3R5NVSJ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "205726" - }, - "appliesTo" : [ ] - }, - "H9KMFFHRW3R5NVSJ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "H9KMFFHRW3R5NVSJ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.8280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "H9KMFFHRW3R5NVSJ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "H9KMFFHRW3R5NVSJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H9KMFFHRW3R5NVSJ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "H9KMFFHRW3R5NVSJ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "418743" - }, - "appliesTo" : [ ] - }, - "H9KMFFHRW3R5NVSJ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "H9KMFFHRW3R5NVSJ.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "H9KMFFHRW3R5NVSJ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "H9KMFFHRW3R5NVSJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H9KMFFHRW3R5NVSJ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "H9KMFFHRW3R5NVSJ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "408008" - }, - "appliesTo" : [ ] - }, - "H9KMFFHRW3R5NVSJ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "H9KMFFHRW3R5NVSJ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "H9KMFFHRW3R5NVSJ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "H9KMFFHRW3R5NVSJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H9KMFFHRW3R5NVSJ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "H9KMFFHRW3R5NVSJ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.1850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "H9KMFFHRW3R5NVSJ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "H9KMFFHRW3R5NVSJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H9KMFFHRW3R5NVSJ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "H9KMFFHRW3R5NVSJ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.8310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "H9KMFFHRW3R5NVSJ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "H9KMFFHRW3R5NVSJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H9KMFFHRW3R5NVSJ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "H9KMFFHRW3R5NVSJ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "80703" - }, - "appliesTo" : [ ] - }, - "H9KMFFHRW3R5NVSJ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "H9KMFFHRW3R5NVSJ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.2130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "H9KMFFHRW3R5NVSJ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "H9KMFFHRW3R5NVSJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H9KMFFHRW3R5NVSJ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "H9KMFFHRW3R5NVSJ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "18.6730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "H9KMFFHRW3R5NVSJ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "H9KMFFHRW3R5NVSJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H9KMFFHRW3R5NVSJ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "H9KMFFHRW3R5NVSJ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "210032" - }, - "appliesTo" : [ ] - }, - "H9KMFFHRW3R5NVSJ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "H9KMFFHRW3R5NVSJ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.9920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "H9KMFFHRW3R5NVSJ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "H9KMFFHRW3R5NVSJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H9KMFFHRW3R5NVSJ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "H9KMFFHRW3R5NVSJ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "154992" - }, - "appliesTo" : [ ] - }, - "H9KMFFHRW3R5NVSJ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "H9KMFFHRW3R5NVSJ.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "H9KMFFHRW3R5NVSJ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "H9KMFFHRW3R5NVSJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H9KMFFHRW3R5NVSJ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "H9KMFFHRW3R5NVSJ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "H9KMFFHRW3R5NVSJ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "H9KMFFHRW3R5NVSJ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "160539" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "H9KMFFHRW3R5NVSJ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "H9KMFFHRW3R5NVSJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H9KMFFHRW3R5NVSJ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "H9KMFFHRW3R5NVSJ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "77873" - }, - "appliesTo" : [ ] - }, - "H9KMFFHRW3R5NVSJ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "H9KMFFHRW3R5NVSJ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.8900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "H9KMFFHRW3R5NVSJ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "H9KMFFHRW3R5NVSJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H9KMFFHRW3R5NVSJ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "H9KMFFHRW3R5NVSJ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "17.9950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "W7AKAG7V86UE38RF" : { - "W7AKAG7V86UE38RF.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "W7AKAG7V86UE38RF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "W7AKAG7V86UE38RF.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "W7AKAG7V86UE38RF.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "W7AKAG7V86UE38RF.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "W7AKAG7V86UE38RF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W7AKAG7V86UE38RF.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "W7AKAG7V86UE38RF.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14011" - }, - "appliesTo" : [ ] - }, - "W7AKAG7V86UE38RF.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "W7AKAG7V86UE38RF.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "W7AKAG7V86UE38RF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "W7AKAG7V86UE38RF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "W7AKAG7V86UE38RF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "W7AKAG7V86UE38RF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22472" - }, - "appliesTo" : [ ] - }, - "W7AKAG7V86UE38RF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "W7AKAG7V86UE38RF.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "W7AKAG7V86UE38RF.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "W7AKAG7V86UE38RF", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "W7AKAG7V86UE38RF.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "W7AKAG7V86UE38RF.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "65208" - }, - "appliesTo" : [ ] - }, - "W7AKAG7V86UE38RF.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "W7AKAG7V86UE38RF.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "W7AKAG7V86UE38RF.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "W7AKAG7V86UE38RF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W7AKAG7V86UE38RF.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "W7AKAG7V86UE38RF.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "W7AKAG7V86UE38RF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "W7AKAG7V86UE38RF", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "W7AKAG7V86UE38RF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "W7AKAG7V86UE38RF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22605" - }, - "appliesTo" : [ ] - }, - "W7AKAG7V86UE38RF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "W7AKAG7V86UE38RF.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "W7AKAG7V86UE38RF.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "W7AKAG7V86UE38RF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W7AKAG7V86UE38RF.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "W7AKAG7V86UE38RF.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27818" - }, - "appliesTo" : [ ] - }, - "W7AKAG7V86UE38RF.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "W7AKAG7V86UE38RF.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "W7AKAG7V86UE38RF.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "W7AKAG7V86UE38RF", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "W7AKAG7V86UE38RF.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "W7AKAG7V86UE38RF.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26086" - }, - "appliesTo" : [ ] - }, - "W7AKAG7V86UE38RF.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "W7AKAG7V86UE38RF.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "W7AKAG7V86UE38RF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "W7AKAG7V86UE38RF", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "W7AKAG7V86UE38RF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "W7AKAG7V86UE38RF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5810000000" - }, - "appliesTo" : [ ] - }, - "W7AKAG7V86UE38RF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "W7AKAG7V86UE38RF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9217" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "W7AKAG7V86UE38RF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "W7AKAG7V86UE38RF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "W7AKAG7V86UE38RF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "W7AKAG7V86UE38RF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "52818" - }, - "appliesTo" : [ ] - }, - "W7AKAG7V86UE38RF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "W7AKAG7V86UE38RF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "W7AKAG7V86UE38RF.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "W7AKAG7V86UE38RF", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "W7AKAG7V86UE38RF.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "W7AKAG7V86UE38RF.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "6FWXGNKA63Z8BMCH" : { - "6FWXGNKA63Z8BMCH.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6FWXGNKA63Z8BMCH", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "6FWXGNKA63Z8BMCH.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6FWXGNKA63Z8BMCH.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9115" - }, - "appliesTo" : [ ] - }, - "6FWXGNKA63Z8BMCH.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6FWXGNKA63Z8BMCH.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6FWXGNKA63Z8BMCH.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6FWXGNKA63Z8BMCH", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6FWXGNKA63Z8BMCH.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6FWXGNKA63Z8BMCH.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5000" - }, - "appliesTo" : [ ] - }, - "6FWXGNKA63Z8BMCH.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6FWXGNKA63Z8BMCH.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6FWXGNKA63Z8BMCH.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6FWXGNKA63Z8BMCH", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6FWXGNKA63Z8BMCH.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6FWXGNKA63Z8BMCH.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6FWXGNKA63Z8BMCH.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6FWXGNKA63Z8BMCH", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6FWXGNKA63Z8BMCH.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6FWXGNKA63Z8BMCH.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4910000000" - }, - "appliesTo" : [ ] - }, - "6FWXGNKA63Z8BMCH.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6FWXGNKA63Z8BMCH.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7670" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6FWXGNKA63Z8BMCH.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6FWXGNKA63Z8BMCH", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6FWXGNKA63Z8BMCH.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6FWXGNKA63Z8BMCH.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19339" - }, - "appliesTo" : [ ] - }, - "6FWXGNKA63Z8BMCH.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6FWXGNKA63Z8BMCH.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "M6T9NG7HTENPGTMK" : { - "M6T9NG7HTENPGTMK.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "M6T9NG7HTENPGTMK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M6T9NG7HTENPGTMK.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "M6T9NG7HTENPGTMK.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.4190000000" - }, - "appliesTo" : [ ] - }, - "M6T9NG7HTENPGTMK.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "M6T9NG7HTENPGTMK.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "221255" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "M6T9NG7HTENPGTMK.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "M6T9NG7HTENPGTMK", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "M6T9NG7HTENPGTMK.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "M6T9NG7HTENPGTMK.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "18.3750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "M6T9NG7HTENPGTMK.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "M6T9NG7HTENPGTMK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M6T9NG7HTENPGTMK.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "M6T9NG7HTENPGTMK.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "160015" - }, - "appliesTo" : [ ] - }, - "M6T9NG7HTENPGTMK.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "M6T9NG7HTENPGTMK.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "M6T9NG7HTENPGTMK.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "M6T9NG7HTENPGTMK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M6T9NG7HTENPGTMK.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "M6T9NG7HTENPGTMK.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "18.4890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "M6T9NG7HTENPGTMK.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "M6T9NG7HTENPGTMK", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "M6T9NG7HTENPGTMK.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "M6T9NG7HTENPGTMK.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "462072" - }, - "appliesTo" : [ ] - }, - "M6T9NG7HTENPGTMK.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "M6T9NG7HTENPGTMK.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "M6T9NG7HTENPGTMK.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "M6T9NG7HTENPGTMK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M6T9NG7HTENPGTMK.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "M6T9NG7HTENPGTMK.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.1650000000" - }, - "appliesTo" : [ ] - }, - "M6T9NG7HTENPGTMK.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "M6T9NG7HTENPGTMK.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "80285" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "M6T9NG7HTENPGTMK.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "M6T9NG7HTENPGTMK", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "M6T9NG7HTENPGTMK.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "M6T9NG7HTENPGTMK.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "78434" - }, - "appliesTo" : [ ] - }, - "M6T9NG7HTENPGTMK.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "M6T9NG7HTENPGTMK.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.9540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "M6T9NG7HTENPGTMK.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "M6T9NG7HTENPGTMK", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "M6T9NG7HTENPGTMK.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "M6T9NG7HTENPGTMK.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "156386" - }, - "appliesTo" : [ ] - }, - "M6T9NG7HTENPGTMK.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "M6T9NG7HTENPGTMK.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "M6T9NG7HTENPGTMK.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "M6T9NG7HTENPGTMK", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "M6T9NG7HTENPGTMK.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "M6T9NG7HTENPGTMK.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "231687" - }, - "appliesTo" : [ ] - }, - "M6T9NG7HTENPGTMK.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "M6T9NG7HTENPGTMK.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.8160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "M6T9NG7HTENPGTMK.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "M6T9NG7HTENPGTMK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M6T9NG7HTENPGTMK.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "M6T9NG7HTENPGTMK.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "M6T9NG7HTENPGTMK.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "M6T9NG7HTENPGTMK.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "439858" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "M6T9NG7HTENPGTMK.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "M6T9NG7HTENPGTMK", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "M6T9NG7HTENPGTMK.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "M6T9NG7HTENPGTMK.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "18.0530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "62G57MU6KCQ2AQS8" : { - "62G57MU6KCQ2AQS8.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "62G57MU6KCQ2AQS8", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "62G57MU6KCQ2AQS8.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "62G57MU6KCQ2AQS8.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t1.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "62G57MU6KCQ2AQS8.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "62G57MU6KCQ2AQS8", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "62G57MU6KCQ2AQS8.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "62G57MU6KCQ2AQS8.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1699" - }, - "appliesTo" : [ ] - }, - "62G57MU6KCQ2AQS8.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "62G57MU6KCQ2AQS8.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), t1.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "62G57MU6KCQ2AQS8.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "62G57MU6KCQ2AQS8", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "62G57MU6KCQ2AQS8.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "62G57MU6KCQ2AQS8.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "100" - }, - "appliesTo" : [ ] - }, - "62G57MU6KCQ2AQS8.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "62G57MU6KCQ2AQS8.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t1.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "62G57MU6KCQ2AQS8.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "62G57MU6KCQ2AQS8", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "62G57MU6KCQ2AQS8.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "62G57MU6KCQ2AQS8.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), t1.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "62G57MU6KCQ2AQS8.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "62G57MU6KCQ2AQS8.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "618" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "62G57MU6KCQ2AQS8.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "62G57MU6KCQ2AQS8", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "62G57MU6KCQ2AQS8.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "62G57MU6KCQ2AQS8.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t1.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0650000000" - }, - "appliesTo" : [ ] - }, - "62G57MU6KCQ2AQS8.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "62G57MU6KCQ2AQS8.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "62" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "6NDY9AE4VQNGEMV4" : { - "6NDY9AE4VQNGEMV4.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6NDY9AE4VQNGEMV4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6NDY9AE4VQNGEMV4.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6NDY9AE4VQNGEMV4.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "281295" - }, - "appliesTo" : [ ] - }, - "6NDY9AE4VQNGEMV4.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6NDY9AE4VQNGEMV4.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6NDY9AE4VQNGEMV4.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6NDY9AE4VQNGEMV4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6NDY9AE4VQNGEMV4.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6NDY9AE4VQNGEMV4.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.0740000000" - }, - "appliesTo" : [ ] - }, - "6NDY9AE4VQNGEMV4.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6NDY9AE4VQNGEMV4.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "140808" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6NDY9AE4VQNGEMV4.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "6NDY9AE4VQNGEMV4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6NDY9AE4VQNGEMV4.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "6NDY9AE4VQNGEMV4.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "283659" - }, - "appliesTo" : [ ] - }, - "6NDY9AE4VQNGEMV4.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "6NDY9AE4VQNGEMV4.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6NDY9AE4VQNGEMV4.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "6NDY9AE4VQNGEMV4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6NDY9AE4VQNGEMV4.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "6NDY9AE4VQNGEMV4.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "416273" - }, - "appliesTo" : [ ] - }, - "6NDY9AE4VQNGEMV4.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "6NDY9AE4VQNGEMV4.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.8400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6NDY9AE4VQNGEMV4.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6NDY9AE4VQNGEMV4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6NDY9AE4VQNGEMV4.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6NDY9AE4VQNGEMV4.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "825929" - }, - "appliesTo" : [ ] - }, - "6NDY9AE4VQNGEMV4.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6NDY9AE4VQNGEMV4.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6NDY9AE4VQNGEMV4.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "6NDY9AE4VQNGEMV4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6NDY9AE4VQNGEMV4.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "6NDY9AE4VQNGEMV4.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "31.7890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6NDY9AE4VQNGEMV4.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6NDY9AE4VQNGEMV4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6NDY9AE4VQNGEMV4.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6NDY9AE4VQNGEMV4.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "32.2400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6NDY9AE4VQNGEMV4.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "6NDY9AE4VQNGEMV4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6NDY9AE4VQNGEMV4.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "6NDY9AE4VQNGEMV4.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "142014" - }, - "appliesTo" : [ ] - }, - "6NDY9AE4VQNGEMV4.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "6NDY9AE4VQNGEMV4.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.2120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6NDY9AE4VQNGEMV4.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6NDY9AE4VQNGEMV4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6NDY9AE4VQNGEMV4.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6NDY9AE4VQNGEMV4.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "413901" - }, - "appliesTo" : [ ] - }, - "6NDY9AE4VQNGEMV4.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6NDY9AE4VQNGEMV4.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.7500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6NDY9AE4VQNGEMV4.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "6NDY9AE4VQNGEMV4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6NDY9AE4VQNGEMV4.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "6NDY9AE4VQNGEMV4.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "831827" - }, - "appliesTo" : [ ] - }, - "6NDY9AE4VQNGEMV4.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "6NDY9AE4VQNGEMV4.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6NDY9AE4VQNGEMV4.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "6NDY9AE4VQNGEMV4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6NDY9AE4VQNGEMV4.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "6NDY9AE4VQNGEMV4.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "31.5940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6NDY9AE4VQNGEMV4.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "6NDY9AE4VQNGEMV4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6NDY9AE4VQNGEMV4.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "6NDY9AE4VQNGEMV4.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "32.5290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "P63NKZQXED5H7HUK" : { - "P63NKZQXED5H7HUK.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "P63NKZQXED5H7HUK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P63NKZQXED5H7HUK.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "P63NKZQXED5H7HUK.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6812" - }, - "appliesTo" : [ ] - }, - "P63NKZQXED5H7HUK.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "P63NKZQXED5H7HUK.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "P63NKZQXED5H7HUK.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "P63NKZQXED5H7HUK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "P63NKZQXED5H7HUK.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "P63NKZQXED5H7HUK.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "P63NKZQXED5H7HUK.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "P63NKZQXED5H7HUK", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "P63NKZQXED5H7HUK.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "P63NKZQXED5H7HUK.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8132" - }, - "appliesTo" : [ ] - }, - "P63NKZQXED5H7HUK.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "P63NKZQXED5H7HUK.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "P63NKZQXED5H7HUK.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "P63NKZQXED5H7HUK", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "P63NKZQXED5H7HUK.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "P63NKZQXED5H7HUK.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5534" - }, - "appliesTo" : [ ] - }, - "P63NKZQXED5H7HUK.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "P63NKZQXED5H7HUK.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "P63NKZQXED5H7HUK.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "P63NKZQXED5H7HUK", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "P63NKZQXED5H7HUK.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "P63NKZQXED5H7HUK.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10390" - }, - "appliesTo" : [ ] - }, - "P63NKZQXED5H7HUK.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "P63NKZQXED5H7HUK.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "P63NKZQXED5H7HUK.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "P63NKZQXED5H7HUK", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "P63NKZQXED5H7HUK.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "P63NKZQXED5H7HUK.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "P63NKZQXED5H7HUK.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "P63NKZQXED5H7HUK.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5904" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "P63NKZQXED5H7HUK.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "P63NKZQXED5H7HUK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P63NKZQXED5H7HUK.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "P63NKZQXED5H7HUK.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "P63NKZQXED5H7HUK.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "P63NKZQXED5H7HUK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P63NKZQXED5H7HUK.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "P63NKZQXED5H7HUK.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3476" - }, - "appliesTo" : [ ] - }, - "P63NKZQXED5H7HUK.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "P63NKZQXED5H7HUK.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "P63NKZQXED5H7HUK.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "P63NKZQXED5H7HUK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "P63NKZQXED5H7HUK.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "P63NKZQXED5H7HUK.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "P63NKZQXED5H7HUK.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "P63NKZQXED5H7HUK", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "P63NKZQXED5H7HUK.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "P63NKZQXED5H7HUK.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3440000000" - }, - "appliesTo" : [ ] - }, - "P63NKZQXED5H7HUK.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "P63NKZQXED5H7HUK.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3012" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "P63NKZQXED5H7HUK.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "P63NKZQXED5H7HUK", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "P63NKZQXED5H7HUK.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "P63NKZQXED5H7HUK.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "P63NKZQXED5H7HUK.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "P63NKZQXED5H7HUK.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15941" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "TT84KWCJTYXTFX54" : { - "TT84KWCJTYXTFX54.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TT84KWCJTYXTFX54", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TT84KWCJTYXTFX54.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TT84KWCJTYXTFX54.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4307" - }, - "appliesTo" : [ ] - }, - "TT84KWCJTYXTFX54.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TT84KWCJTYXTFX54.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TT84KWCJTYXTFX54.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "TT84KWCJTYXTFX54", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TT84KWCJTYXTFX54.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "TT84KWCJTYXTFX54.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TT84KWCJTYXTFX54.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "TT84KWCJTYXTFX54", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TT84KWCJTYXTFX54.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "TT84KWCJTYXTFX54.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4439" - }, - "appliesTo" : [ ] - }, - "TT84KWCJTYXTFX54.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "TT84KWCJTYXTFX54.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TT84KWCJTYXTFX54.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TT84KWCJTYXTFX54", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TT84KWCJTYXTFX54.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TT84KWCJTYXTFX54.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TT84KWCJTYXTFX54.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TT84KWCJTYXTFX54.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3169" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TT84KWCJTYXTFX54.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TT84KWCJTYXTFX54", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TT84KWCJTYXTFX54.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TT84KWCJTYXTFX54.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8510" - }, - "appliesTo" : [ ] - }, - "TT84KWCJTYXTFX54.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TT84KWCJTYXTFX54.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TT84KWCJTYXTFX54.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "TT84KWCJTYXTFX54", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TT84KWCJTYXTFX54.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "TT84KWCJTYXTFX54.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TT84KWCJTYXTFX54.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TT84KWCJTYXTFX54", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TT84KWCJTYXTFX54.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TT84KWCJTYXTFX54.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TT84KWCJTYXTFX54.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "TT84KWCJTYXTFX54", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TT84KWCJTYXTFX54.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "TT84KWCJTYXTFX54.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1660" - }, - "appliesTo" : [ ] - }, - "TT84KWCJTYXTFX54.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "TT84KWCJTYXTFX54.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TT84KWCJTYXTFX54.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TT84KWCJTYXTFX54", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TT84KWCJTYXTFX54.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TT84KWCJTYXTFX54.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1593" - }, - "appliesTo" : [ ] - }, - "TT84KWCJTYXTFX54.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TT84KWCJTYXTFX54.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TT84KWCJTYXTFX54.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "TT84KWCJTYXTFX54", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TT84KWCJTYXTFX54.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "TT84KWCJTYXTFX54.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3300" - }, - "appliesTo" : [ ] - }, - "TT84KWCJTYXTFX54.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "TT84KWCJTYXTFX54.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TT84KWCJTYXTFX54.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "TT84KWCJTYXTFX54", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TT84KWCJTYXTFX54.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "TT84KWCJTYXTFX54.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TT84KWCJTYXTFX54.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "TT84KWCJTYXTFX54", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TT84KWCJTYXTFX54.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "TT84KWCJTYXTFX54.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8837" - }, - "appliesTo" : [ ] - }, - "TT84KWCJTYXTFX54.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "TT84KWCJTYXTFX54.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "RKCQDTMY5DZS4JWT" : { - "RKCQDTMY5DZS4JWT.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "RKCQDTMY5DZS4JWT", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RKCQDTMY5DZS4JWT.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "RKCQDTMY5DZS4JWT.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RKCQDTMY5DZS4JWT.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "RKCQDTMY5DZS4JWT", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RKCQDTMY5DZS4JWT.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "RKCQDTMY5DZS4JWT.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2875" - }, - "appliesTo" : [ ] - }, - "RKCQDTMY5DZS4JWT.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "RKCQDTMY5DZS4JWT.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RKCQDTMY5DZS4JWT.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "RKCQDTMY5DZS4JWT", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RKCQDTMY5DZS4JWT.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "RKCQDTMY5DZS4JWT.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5839" - }, - "appliesTo" : [ ] - }, - "RKCQDTMY5DZS4JWT.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "RKCQDTMY5DZS4JWT.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RKCQDTMY5DZS4JWT.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "RKCQDTMY5DZS4JWT", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RKCQDTMY5DZS4JWT.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "RKCQDTMY5DZS4JWT.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "RKCQDTMY5DZS4JWT.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "RKCQDTMY5DZS4JWT.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3255" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RKCQDTMY5DZS4JWT.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "RKCQDTMY5DZS4JWT", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RKCQDTMY5DZS4JWT.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "RKCQDTMY5DZS4JWT.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1894" - }, - "appliesTo" : [ ] - }, - "RKCQDTMY5DZS4JWT.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "RKCQDTMY5DZS4JWT.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "5P8A9S7FHZ9Q44SE" : { - "5P8A9S7FHZ9Q44SE.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "5P8A9S7FHZ9Q44SE", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "5P8A9S7FHZ9Q44SE.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "5P8A9S7FHZ9Q44SE.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.7080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "5P8A9S7FHZ9Q44SE.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "5P8A9S7FHZ9Q44SE", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "5P8A9S7FHZ9Q44SE.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "5P8A9S7FHZ9Q44SE.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "69695" - }, - "appliesTo" : [ ] - }, - "5P8A9S7FHZ9Q44SE.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "5P8A9S7FHZ9Q44SE.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.9560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5P8A9S7FHZ9Q44SE.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "5P8A9S7FHZ9Q44SE", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "5P8A9S7FHZ9Q44SE.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "5P8A9S7FHZ9Q44SE.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.6550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "5P8A9S7FHZ9Q44SE.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "5P8A9S7FHZ9Q44SE", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "5P8A9S7FHZ9Q44SE.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "5P8A9S7FHZ9Q44SE.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "5P8A9S7FHZ9Q44SE.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "5P8A9S7FHZ9Q44SE.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "243708" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5P8A9S7FHZ9Q44SE.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "5P8A9S7FHZ9Q44SE", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "5P8A9S7FHZ9Q44SE.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "5P8A9S7FHZ9Q44SE.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "136601" - }, - "appliesTo" : [ ] - }, - "5P8A9S7FHZ9Q44SE.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "5P8A9S7FHZ9Q44SE.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5P8A9S7FHZ9Q44SE.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "5P8A9S7FHZ9Q44SE", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "5P8A9S7FHZ9Q44SE.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "5P8A9S7FHZ9Q44SE.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9330000000" - }, - "appliesTo" : [ ] - }, - "5P8A9S7FHZ9Q44SE.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "5P8A9S7FHZ9Q44SE.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "129632" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "2WVXMQUWAFQDPJNS" : { - "2WVXMQUWAFQDPJNS.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "2WVXMQUWAFQDPJNS", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "2WVXMQUWAFQDPJNS.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "2WVXMQUWAFQDPJNS.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4975" - }, - "appliesTo" : [ ] - }, - "2WVXMQUWAFQDPJNS.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "2WVXMQUWAFQDPJNS.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2WVXMQUWAFQDPJNS.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "2WVXMQUWAFQDPJNS", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "2WVXMQUWAFQDPJNS.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "2WVXMQUWAFQDPJNS.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12185" - }, - "appliesTo" : [ ] - }, - "2WVXMQUWAFQDPJNS.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "2WVXMQUWAFQDPJNS.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2WVXMQUWAFQDPJNS.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "2WVXMQUWAFQDPJNS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2WVXMQUWAFQDPJNS.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "2WVXMQUWAFQDPJNS.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12784" - }, - "appliesTo" : [ ] - }, - "2WVXMQUWAFQDPJNS.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "2WVXMQUWAFQDPJNS.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2WVXMQUWAFQDPJNS.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "2WVXMQUWAFQDPJNS", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "2WVXMQUWAFQDPJNS.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "2WVXMQUWAFQDPJNS.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2WVXMQUWAFQDPJNS.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "2WVXMQUWAFQDPJNS", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "2WVXMQUWAFQDPJNS.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "2WVXMQUWAFQDPJNS.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2WVXMQUWAFQDPJNS.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "2WVXMQUWAFQDPJNS", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "2WVXMQUWAFQDPJNS.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "2WVXMQUWAFQDPJNS.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12940" - }, - "appliesTo" : [ ] - }, - "2WVXMQUWAFQDPJNS.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "2WVXMQUWAFQDPJNS.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2WVXMQUWAFQDPJNS.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "2WVXMQUWAFQDPJNS", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "2WVXMQUWAFQDPJNS.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "2WVXMQUWAFQDPJNS.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8380000000" - }, - "appliesTo" : [ ] - }, - "2WVXMQUWAFQDPJNS.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "2WVXMQUWAFQDPJNS.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14420" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2WVXMQUWAFQDPJNS.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "2WVXMQUWAFQDPJNS", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "2WVXMQUWAFQDPJNS.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "2WVXMQUWAFQDPJNS.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35703" - }, - "appliesTo" : [ ] - }, - "2WVXMQUWAFQDPJNS.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "2WVXMQUWAFQDPJNS.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2WVXMQUWAFQDPJNS.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "2WVXMQUWAFQDPJNS", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "2WVXMQUWAFQDPJNS.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "2WVXMQUWAFQDPJNS.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30395" - }, - "appliesTo" : [ ] - }, - "2WVXMQUWAFQDPJNS.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "2WVXMQUWAFQDPJNS.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2WVXMQUWAFQDPJNS.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "2WVXMQUWAFQDPJNS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2WVXMQUWAFQDPJNS.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "2WVXMQUWAFQDPJNS.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2WVXMQUWAFQDPJNS.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "2WVXMQUWAFQDPJNS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2WVXMQUWAFQDPJNS.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "2WVXMQUWAFQDPJNS.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6425" - }, - "appliesTo" : [ ] - }, - "2WVXMQUWAFQDPJNS.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "2WVXMQUWAFQDPJNS.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "Q48JUPPFZD9KDMH3" : { - "Q48JUPPFZD9KDMH3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Q48JUPPFZD9KDMH3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q48JUPPFZD9KDMH3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Q48JUPPFZD9KDMH3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2220" - }, - "appliesTo" : [ ] - }, - "Q48JUPPFZD9KDMH3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Q48JUPPFZD9KDMH3.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Q48JUPPFZD9KDMH3.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "Q48JUPPFZD9KDMH3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q48JUPPFZD9KDMH3.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "Q48JUPPFZD9KDMH3.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2483" - }, - "appliesTo" : [ ] - }, - "Q48JUPPFZD9KDMH3.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "Q48JUPPFZD9KDMH3.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Q48JUPPFZD9KDMH3.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "Q48JUPPFZD9KDMH3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q48JUPPFZD9KDMH3.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "Q48JUPPFZD9KDMH3.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0990000000" - }, - "appliesTo" : [ ] - }, - "Q48JUPPFZD9KDMH3.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "Q48JUPPFZD9KDMH3.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2617" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q48JUPPFZD9KDMH3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Q48JUPPFZD9KDMH3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q48JUPPFZD9KDMH3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Q48JUPPFZD9KDMH3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1159" - }, - "appliesTo" : [ ] - }, - "Q48JUPPFZD9KDMH3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Q48JUPPFZD9KDMH3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q48JUPPFZD9KDMH3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Q48JUPPFZD9KDMH3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q48JUPPFZD9KDMH3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Q48JUPPFZD9KDMH3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4489" - }, - "appliesTo" : [ ] - }, - "Q48JUPPFZD9KDMH3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Q48JUPPFZD9KDMH3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Q48JUPPFZD9KDMH3.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "Q48JUPPFZD9KDMH3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q48JUPPFZD9KDMH3.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "Q48JUPPFZD9KDMH3.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Q48JUPPFZD9KDMH3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Q48JUPPFZD9KDMH3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q48JUPPFZD9KDMH3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Q48JUPPFZD9KDMH3.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Q48JUPPFZD9KDMH3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Q48JUPPFZD9KDMH3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q48JUPPFZD9KDMH3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Q48JUPPFZD9KDMH3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2353" - }, - "appliesTo" : [ ] - }, - "Q48JUPPFZD9KDMH3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Q48JUPPFZD9KDMH3.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q48JUPPFZD9KDMH3.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "Q48JUPPFZD9KDMH3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q48JUPPFZD9KDMH3.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "Q48JUPPFZD9KDMH3.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5144" - }, - "appliesTo" : [ ] - }, - "Q48JUPPFZD9KDMH3.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "Q48JUPPFZD9KDMH3.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Q48JUPPFZD9KDMH3.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "Q48JUPPFZD9KDMH3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q48JUPPFZD9KDMH3.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "Q48JUPPFZD9KDMH3.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Q48JUPPFZD9KDMH3.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "Q48JUPPFZD9KDMH3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q48JUPPFZD9KDMH3.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "Q48JUPPFZD9KDMH3.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Q48JUPPFZD9KDMH3.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "Q48JUPPFZD9KDMH3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q48JUPPFZD9KDMH3.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "Q48JUPPFZD9KDMH3.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1293" - }, - "appliesTo" : [ ] - }, - "Q48JUPPFZD9KDMH3.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "Q48JUPPFZD9KDMH3.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "W43N2ZPS868KHX7Y" : { - "W43N2ZPS868KHX7Y.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "W43N2ZPS868KHX7Y", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "W43N2ZPS868KHX7Y.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "W43N2ZPS868KHX7Y.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12741" - }, - "appliesTo" : [ ] - }, - "W43N2ZPS868KHX7Y.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "W43N2ZPS868KHX7Y.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "W43N2ZPS868KHX7Y.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "W43N2ZPS868KHX7Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W43N2ZPS868KHX7Y.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "W43N2ZPS868KHX7Y.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14617" - }, - "appliesTo" : [ ] - }, - "W43N2ZPS868KHX7Y.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "W43N2ZPS868KHX7Y.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "W43N2ZPS868KHX7Y.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "W43N2ZPS868KHX7Y", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "W43N2ZPS868KHX7Y.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "W43N2ZPS868KHX7Y.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7456" - }, - "appliesTo" : [ ] - }, - "W43N2ZPS868KHX7Y.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "W43N2ZPS868KHX7Y.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "W43N2ZPS868KHX7Y.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "W43N2ZPS868KHX7Y", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "W43N2ZPS868KHX7Y.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "W43N2ZPS868KHX7Y.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20008" - }, - "appliesTo" : [ ] - }, - "W43N2ZPS868KHX7Y.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "W43N2ZPS868KHX7Y.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "W43N2ZPS868KHX7Y.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "W43N2ZPS868KHX7Y", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "W43N2ZPS868KHX7Y.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "W43N2ZPS868KHX7Y.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22836" - }, - "appliesTo" : [ ] - }, - "W43N2ZPS868KHX7Y.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "W43N2ZPS868KHX7Y.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "W43N2ZPS868KHX7Y.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "W43N2ZPS868KHX7Y", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "W43N2ZPS868KHX7Y.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "W43N2ZPS868KHX7Y.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "W43N2ZPS868KHX7Y.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "W43N2ZPS868KHX7Y", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "W43N2ZPS868KHX7Y.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "W43N2ZPS868KHX7Y.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "W43N2ZPS868KHX7Y.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "W43N2ZPS868KHX7Y", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "W43N2ZPS868KHX7Y.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "W43N2ZPS868KHX7Y.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11312" - }, - "appliesTo" : [ ] - }, - "W43N2ZPS868KHX7Y.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "W43N2ZPS868KHX7Y.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "W43N2ZPS868KHX7Y.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "W43N2ZPS868KHX7Y", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "W43N2ZPS868KHX7Y.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "W43N2ZPS868KHX7Y.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34283" - }, - "appliesTo" : [ ] - }, - "W43N2ZPS868KHX7Y.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "W43N2ZPS868KHX7Y.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "W43N2ZPS868KHX7Y.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "W43N2ZPS868KHX7Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W43N2ZPS868KHX7Y.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "W43N2ZPS868KHX7Y.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "W43N2ZPS868KHX7Y.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "W43N2ZPS868KHX7Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W43N2ZPS868KHX7Y.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "W43N2ZPS868KHX7Y.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7486" - }, - "appliesTo" : [ ] - }, - "W43N2ZPS868KHX7Y.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "W43N2ZPS868KHX7Y.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "QG5G45WKDWDDHTFV" : { - "QG5G45WKDWDDHTFV.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "QG5G45WKDWDDHTFV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QG5G45WKDWDDHTFV.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "QG5G45WKDWDDHTFV.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0661000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QG5G45WKDWDDHTFV.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QG5G45WKDWDDHTFV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QG5G45WKDWDDHTFV.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QG5G45WKDWDDHTFV.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0575000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QG5G45WKDWDDHTFV.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QG5G45WKDWDDHTFV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QG5G45WKDWDDHTFV.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QG5G45WKDWDDHTFV.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "470" - }, - "appliesTo" : [ ] - }, - "QG5G45WKDWDDHTFV.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QG5G45WKDWDDHTFV.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QG5G45WKDWDDHTFV.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "QG5G45WKDWDDHTFV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QG5G45WKDWDDHTFV.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "QG5G45WKDWDDHTFV.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0401000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QG5G45WKDWDDHTFV.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QG5G45WKDWDDHTFV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QG5G45WKDWDDHTFV.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QG5G45WKDWDDHTFV.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "917" - }, - "appliesTo" : [ ] - }, - "QG5G45WKDWDDHTFV.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QG5G45WKDWDDHTFV.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QG5G45WKDWDDHTFV.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "QG5G45WKDWDDHTFV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QG5G45WKDWDDHTFV.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "QG5G45WKDWDDHTFV.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0461000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QG5G45WKDWDDHTFV.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "QG5G45WKDWDDHTFV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QG5G45WKDWDDHTFV.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "QG5G45WKDWDDHTFV.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0213000000" - }, - "appliesTo" : [ ] - }, - "QG5G45WKDWDDHTFV.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "QG5G45WKDWDDHTFV.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "561" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QG5G45WKDWDDHTFV.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "QG5G45WKDWDDHTFV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QG5G45WKDWDDHTFV.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "QG5G45WKDWDDHTFV.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "541" - }, - "appliesTo" : [ ] - }, - "QG5G45WKDWDDHTFV.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "QG5G45WKDWDDHTFV.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QG5G45WKDWDDHTFV.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QG5G45WKDWDDHTFV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QG5G45WKDWDDHTFV.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QG5G45WKDWDDHTFV.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "488" - }, - "appliesTo" : [ ] - }, - "QG5G45WKDWDDHTFV.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QG5G45WKDWDDHTFV.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0186000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QG5G45WKDWDDHTFV.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QG5G45WKDWDDHTFV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QG5G45WKDWDDHTFV.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QG5G45WKDWDDHTFV.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "240" - }, - "appliesTo" : [ ] - }, - "QG5G45WKDWDDHTFV.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QG5G45WKDWDDHTFV.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0274000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QG5G45WKDWDDHTFV.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "QG5G45WKDWDDHTFV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QG5G45WKDWDDHTFV.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "QG5G45WKDWDDHTFV.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QG5G45WKDWDDHTFV.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "QG5G45WKDWDDHTFV.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1099" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QG5G45WKDWDDHTFV.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "QG5G45WKDWDDHTFV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QG5G45WKDWDDHTFV.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "QG5G45WKDWDDHTFV.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "276" - }, - "appliesTo" : [ ] - }, - "QG5G45WKDWDDHTFV.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "QG5G45WKDWDDHTFV.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0315000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "TSQYYQMSKWVB64XU" : { - "TSQYYQMSKWVB64XU.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "TSQYYQMSKWVB64XU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "TSQYYQMSKWVB64XU.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "TSQYYQMSKWVB64XU.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6410000000" - }, - "appliesTo" : [ ] - }, - "TSQYYQMSKWVB64XU.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "TSQYYQMSKWVB64XU.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24905" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TSQYYQMSKWVB64XU.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TSQYYQMSKWVB64XU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "TSQYYQMSKWVB64XU.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TSQYYQMSKWVB64XU.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32851" - }, - "appliesTo" : [ ] - }, - "TSQYYQMSKWVB64XU.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TSQYYQMSKWVB64XU.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TSQYYQMSKWVB64XU.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "TSQYYQMSKWVB64XU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "TSQYYQMSKWVB64XU.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "TSQYYQMSKWVB64XU.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "40910" - }, - "appliesTo" : [ ] - }, - "TSQYYQMSKWVB64XU.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "TSQYYQMSKWVB64XU.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TSQYYQMSKWVB64XU.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "TSQYYQMSKWVB64XU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TSQYYQMSKWVB64XU.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "TSQYYQMSKWVB64XU.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TSQYYQMSKWVB64XU.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "TSQYYQMSKWVB64XU.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17140" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TSQYYQMSKWVB64XU.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TSQYYQMSKWVB64XU", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "TSQYYQMSKWVB64XU.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TSQYYQMSKWVB64XU.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25228" - }, - "appliesTo" : [ ] - }, - "TSQYYQMSKWVB64XU.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TSQYYQMSKWVB64XU.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TSQYYQMSKWVB64XU.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TSQYYQMSKWVB64XU", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "TSQYYQMSKWVB64XU.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TSQYYQMSKWVB64XU.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15028" - }, - "appliesTo" : [ ] - }, - "TSQYYQMSKWVB64XU.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TSQYYQMSKWVB64XU.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TSQYYQMSKWVB64XU.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "TSQYYQMSKWVB64XU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TSQYYQMSKWVB64XU.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "TSQYYQMSKWVB64XU.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TSQYYQMSKWVB64XU.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TSQYYQMSKWVB64XU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "TSQYYQMSKWVB64XU.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TSQYYQMSKWVB64XU.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9224" - }, - "appliesTo" : [ ] - }, - "TSQYYQMSKWVB64XU.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TSQYYQMSKWVB64XU.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TSQYYQMSKWVB64XU.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TSQYYQMSKWVB64XU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TSQYYQMSKWVB64XU.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TSQYYQMSKWVB64XU.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TSQYYQMSKWVB64XU.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "TSQYYQMSKWVB64XU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TSQYYQMSKWVB64XU.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "TSQYYQMSKWVB64XU.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TSQYYQMSKWVB64XU.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "TSQYYQMSKWVB64XU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TSQYYQMSKWVB64XU.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "TSQYYQMSKWVB64XU.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8164" - }, - "appliesTo" : [ ] - }, - "TSQYYQMSKWVB64XU.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "TSQYYQMSKWVB64XU.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "YP54Q9FFYE6AUN7A" : { - "YP54Q9FFYE6AUN7A.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "YP54Q9FFYE6AUN7A", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "YP54Q9FFYE6AUN7A.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "YP54Q9FFYE6AUN7A.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6444000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YP54Q9FFYE6AUN7A.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "YP54Q9FFYE6AUN7A", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "YP54Q9FFYE6AUN7A.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "YP54Q9FFYE6AUN7A.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3195000000" - }, - "appliesTo" : [ ] - }, - "YP54Q9FFYE6AUN7A.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "YP54Q9FFYE6AUN7A.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8397" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YP54Q9FFYE6AUN7A.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "YP54Q9FFYE6AUN7A", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "YP54Q9FFYE6AUN7A.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "YP54Q9FFYE6AUN7A.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YP54Q9FFYE6AUN7A.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YP54Q9FFYE6AUN7A", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "YP54Q9FFYE6AUN7A.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YP54Q9FFYE6AUN7A.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16472" - }, - "appliesTo" : [ ] - }, - "YP54Q9FFYE6AUN7A.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YP54Q9FFYE6AUN7A.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YP54Q9FFYE6AUN7A.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "YP54Q9FFYE6AUN7A", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "YP54Q9FFYE6AUN7A.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "YP54Q9FFYE6AUN7A.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16759" - }, - "appliesTo" : [ ] - }, - "YP54Q9FFYE6AUN7A.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "YP54Q9FFYE6AUN7A.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YP54Q9FFYE6AUN7A.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "YP54Q9FFYE6AUN7A", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YP54Q9FFYE6AUN7A.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "YP54Q9FFYE6AUN7A.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5879" - }, - "appliesTo" : [ ] - }, - "YP54Q9FFYE6AUN7A.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "YP54Q9FFYE6AUN7A.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YP54Q9FFYE6AUN7A.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YP54Q9FFYE6AUN7A", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "YP54Q9FFYE6AUN7A.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YP54Q9FFYE6AUN7A.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8282" - }, - "appliesTo" : [ ] - }, - "YP54Q9FFYE6AUN7A.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YP54Q9FFYE6AUN7A.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3152000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YP54Q9FFYE6AUN7A.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YP54Q9FFYE6AUN7A", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "YP54Q9FFYE6AUN7A.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YP54Q9FFYE6AUN7A.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5766" - }, - "appliesTo" : [ ] - }, - "YP54Q9FFYE6AUN7A.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YP54Q9FFYE6AUN7A.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YP54Q9FFYE6AUN7A.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YP54Q9FFYE6AUN7A", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "YP54Q9FFYE6AUN7A.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YP54Q9FFYE6AUN7A.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6644000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YP54Q9FFYE6AUN7A.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YP54Q9FFYE6AUN7A", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "YP54Q9FFYE6AUN7A.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YP54Q9FFYE6AUN7A.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2891" - }, - "appliesTo" : [ ] - }, - "YP54Q9FFYE6AUN7A.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YP54Q9FFYE6AUN7A.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YP54Q9FFYE6AUN7A.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "YP54Q9FFYE6AUN7A", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YP54Q9FFYE6AUN7A.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "YP54Q9FFYE6AUN7A.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6783000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YP54Q9FFYE6AUN7A.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "YP54Q9FFYE6AUN7A", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YP54Q9FFYE6AUN7A.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "YP54Q9FFYE6AUN7A.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2949" - }, - "appliesTo" : [ ] - }, - "YP54Q9FFYE6AUN7A.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "YP54Q9FFYE6AUN7A.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3366000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "46RTKB3PY2USZ3JU" : { - "46RTKB3PY2USZ3JU.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "46RTKB3PY2USZ3JU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "46RTKB3PY2USZ3JU.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "46RTKB3PY2USZ3JU.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2040000000" - }, - "appliesTo" : [ ] - }, - "46RTKB3PY2USZ3JU.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "46RTKB3PY2USZ3JU.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1787" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "46RTKB3PY2USZ3JU.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "46RTKB3PY2USZ3JU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "46RTKB3PY2USZ3JU.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "46RTKB3PY2USZ3JU.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "46RTKB3PY2USZ3JU.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "46RTKB3PY2USZ3JU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "46RTKB3PY2USZ3JU.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "46RTKB3PY2USZ3JU.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "46RTKB3PY2USZ3JU.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "46RTKB3PY2USZ3JU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "46RTKB3PY2USZ3JU.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "46RTKB3PY2USZ3JU.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3467" - }, - "appliesTo" : [ ] - }, - "46RTKB3PY2USZ3JU.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "46RTKB3PY2USZ3JU.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "46RTKB3PY2USZ3JU.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "46RTKB3PY2USZ3JU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "46RTKB3PY2USZ3JU.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "46RTKB3PY2USZ3JU.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "46RTKB3PY2USZ3JU.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "46RTKB3PY2USZ3JU.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3503" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "46RTKB3PY2USZ3JU.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "46RTKB3PY2USZ3JU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "46RTKB3PY2USZ3JU.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "46RTKB3PY2USZ3JU.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "46RTKB3PY2USZ3JU.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "46RTKB3PY2USZ3JU.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6518" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "UKDR4WHMWWJ5CSDR" : { - "UKDR4WHMWWJ5CSDR.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "UKDR4WHMWWJ5CSDR", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "UKDR4WHMWWJ5CSDR.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "UKDR4WHMWWJ5CSDR.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "488" - }, - "appliesTo" : [ ] - }, - "UKDR4WHMWWJ5CSDR.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "UKDR4WHMWWJ5CSDR.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0186000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "UKDR4WHMWWJ5CSDR.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "UKDR4WHMWWJ5CSDR", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "UKDR4WHMWWJ5CSDR.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "UKDR4WHMWWJ5CSDR.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0575000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "UKDR4WHMWWJ5CSDR.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "UKDR4WHMWWJ5CSDR", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "UKDR4WHMWWJ5CSDR.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "UKDR4WHMWWJ5CSDR.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "240" - }, - "appliesTo" : [ ] - }, - "UKDR4WHMWWJ5CSDR.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "UKDR4WHMWWJ5CSDR.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0274000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "UKDR4WHMWWJ5CSDR.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "UKDR4WHMWWJ5CSDR", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "UKDR4WHMWWJ5CSDR.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "UKDR4WHMWWJ5CSDR.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0401000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "UKDR4WHMWWJ5CSDR.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "UKDR4WHMWWJ5CSDR", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "UKDR4WHMWWJ5CSDR.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "UKDR4WHMWWJ5CSDR.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "UKDR4WHMWWJ5CSDR.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "UKDR4WHMWWJ5CSDR.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "470" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "UKDR4WHMWWJ5CSDR.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "UKDR4WHMWWJ5CSDR", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "UKDR4WHMWWJ5CSDR.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "UKDR4WHMWWJ5CSDR.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "UKDR4WHMWWJ5CSDR.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "UKDR4WHMWWJ5CSDR.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "917" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "5MJUCCSSP8MZ34U5" : { - "5MJUCCSSP8MZ34U5.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "5MJUCCSSP8MZ34U5", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "5MJUCCSSP8MZ34U5.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "5MJUCCSSP8MZ34U5.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "5MJUCCSSP8MZ34U5.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "5MJUCCSSP8MZ34U5", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "5MJUCCSSP8MZ34U5.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "5MJUCCSSP8MZ34U5.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "5MJUCCSSP8MZ34U5.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "5MJUCCSSP8MZ34U5.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2669" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5MJUCCSSP8MZ34U5.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "5MJUCCSSP8MZ34U5", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "5MJUCCSSP8MZ34U5.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "5MJUCCSSP8MZ34U5.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2112" - }, - "appliesTo" : [ ] - }, - "5MJUCCSSP8MZ34U5.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "5MJUCCSSP8MZ34U5.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "5MJUCCSSP8MZ34U5.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "5MJUCCSSP8MZ34U5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "5MJUCCSSP8MZ34U5.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "5MJUCCSSP8MZ34U5.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1360" - }, - "appliesTo" : [ ] - }, - "5MJUCCSSP8MZ34U5.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "5MJUCCSSP8MZ34U5.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5MJUCCSSP8MZ34U5.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "5MJUCCSSP8MZ34U5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "5MJUCCSSP8MZ34U5.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "5MJUCCSSP8MZ34U5.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0560000000" - }, - "appliesTo" : [ ] - }, - "5MJUCCSSP8MZ34U5.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "5MJUCCSSP8MZ34U5.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1368" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5MJUCCSSP8MZ34U5.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "5MJUCCSSP8MZ34U5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5MJUCCSSP8MZ34U5.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "5MJUCCSSP8MZ34U5.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "813" - }, - "appliesTo" : [ ] - }, - "5MJUCCSSP8MZ34U5.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "5MJUCCSSP8MZ34U5.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "5MJUCCSSP8MZ34U5.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "5MJUCCSSP8MZ34U5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5MJUCCSSP8MZ34U5.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "5MJUCCSSP8MZ34U5.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "5MJUCCSSP8MZ34U5.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "5MJUCCSSP8MZ34U5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "5MJUCCSSP8MZ34U5.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "5MJUCCSSP8MZ34U5.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "828" - }, - "appliesTo" : [ ] - }, - "5MJUCCSSP8MZ34U5.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "5MJUCCSSP8MZ34U5.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5MJUCCSSP8MZ34U5.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "5MJUCCSSP8MZ34U5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "5MJUCCSSP8MZ34U5.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "5MJUCCSSP8MZ34U5.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "5MJUCCSSP8MZ34U5.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "5MJUCCSSP8MZ34U5", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "5MJUCCSSP8MZ34U5.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "5MJUCCSSP8MZ34U5.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3554" - }, - "appliesTo" : [ ] - }, - "5MJUCCSSP8MZ34U5.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "5MJUCCSSP8MZ34U5.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "5MJUCCSSP8MZ34U5.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "5MJUCCSSP8MZ34U5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5MJUCCSSP8MZ34U5.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "5MJUCCSSP8MZ34U5.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1538" - }, - "appliesTo" : [ ] - }, - "5MJUCCSSP8MZ34U5.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "5MJUCCSSP8MZ34U5.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "M585HN87CC23QMVN" : { - "M585HN87CC23QMVN.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "M585HN87CC23QMVN", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "M585HN87CC23QMVN.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "M585HN87CC23QMVN.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3589" - }, - "appliesTo" : [ ] - }, - "M585HN87CC23QMVN.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "M585HN87CC23QMVN.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "M585HN87CC23QMVN.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "M585HN87CC23QMVN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M585HN87CC23QMVN.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "M585HN87CC23QMVN.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1589000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "M585HN87CC23QMVN.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "M585HN87CC23QMVN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M585HN87CC23QMVN.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "M585HN87CC23QMVN.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1778000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "M585HN87CC23QMVN.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "M585HN87CC23QMVN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M585HN87CC23QMVN.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "M585HN87CC23QMVN.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2114" - }, - "appliesTo" : [ ] - }, - "M585HN87CC23QMVN.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "M585HN87CC23QMVN.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "M585HN87CC23QMVN.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "M585HN87CC23QMVN", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "M585HN87CC23QMVN.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "M585HN87CC23QMVN.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1892" - }, - "appliesTo" : [ ] - }, - "M585HN87CC23QMVN.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "M585HN87CC23QMVN.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "M585HN87CC23QMVN.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "M585HN87CC23QMVN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M585HN87CC23QMVN.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "M585HN87CC23QMVN.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4147" - }, - "appliesTo" : [ ] - }, - "M585HN87CC23QMVN.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "M585HN87CC23QMVN.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "M585HN87CC23QMVN.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "M585HN87CC23QMVN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M585HN87CC23QMVN.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "M585HN87CC23QMVN.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "M585HN87CC23QMVN.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "M585HN87CC23QMVN.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2028" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "M585HN87CC23QMVN.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "M585HN87CC23QMVN", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "M585HN87CC23QMVN.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "M585HN87CC23QMVN.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1799" - }, - "appliesTo" : [ ] - }, - "M585HN87CC23QMVN.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "M585HN87CC23QMVN.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "M585HN87CC23QMVN.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "M585HN87CC23QMVN", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "M585HN87CC23QMVN.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "M585HN87CC23QMVN.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "946" - }, - "appliesTo" : [ ] - }, - "M585HN87CC23QMVN.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "M585HN87CC23QMVN.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "M585HN87CC23QMVN.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "M585HN87CC23QMVN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M585HN87CC23QMVN.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "M585HN87CC23QMVN.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2178000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "M585HN87CC23QMVN.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "M585HN87CC23QMVN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M585HN87CC23QMVN.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "M585HN87CC23QMVN.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1063" - }, - "appliesTo" : [ ] - }, - "M585HN87CC23QMVN.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "M585HN87CC23QMVN.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1142000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "M585HN87CC23QMVN.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "M585HN87CC23QMVN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M585HN87CC23QMVN.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "M585HN87CC23QMVN.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2455000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "Y44NT84DJSFFW437" : { - "Y44NT84DJSFFW437.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Y44NT84DJSFFW437", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Y44NT84DJSFFW437.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Y44NT84DJSFFW437.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1360000000" - }, - "appliesTo" : [ ] - }, - "Y44NT84DJSFFW437.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Y44NT84DJSFFW437.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3574" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y44NT84DJSFFW437.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "Y44NT84DJSFFW437", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Y44NT84DJSFFW437.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "Y44NT84DJSFFW437.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7442" - }, - "appliesTo" : [ ] - }, - "Y44NT84DJSFFW437.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "Y44NT84DJSFFW437.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Y44NT84DJSFFW437.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "Y44NT84DJSFFW437", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Y44NT84DJSFFW437.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "Y44NT84DJSFFW437.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Y44NT84DJSFFW437.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Y44NT84DJSFFW437", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Y44NT84DJSFFW437.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Y44NT84DJSFFW437.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "Y44NT84DJSFFW437.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Y44NT84DJSFFW437.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7009" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Y44NT84DJSFFW437.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "Y44NT84DJSFFW437", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Y44NT84DJSFFW437.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "Y44NT84DJSFFW437.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2933000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Y44NT84DJSFFW437.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "Y44NT84DJSFFW437", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Y44NT84DJSFFW437.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "Y44NT84DJSFFW437.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1666000000" - }, - "appliesTo" : [ ] - }, - "Y44NT84DJSFFW437.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "Y44NT84DJSFFW437.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1460" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y44NT84DJSFFW437.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "Y44NT84DJSFFW437", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Y44NT84DJSFFW437.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "Y44NT84DJSFFW437.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3407000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Y44NT84DJSFFW437.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "Y44NT84DJSFFW437", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Y44NT84DJSFFW437.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "Y44NT84DJSFFW437.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3748" - }, - "appliesTo" : [ ] - }, - "Y44NT84DJSFFW437.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "Y44NT84DJSFFW437.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1426000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y44NT84DJSFFW437.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Y44NT84DJSFFW437", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Y44NT84DJSFFW437.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Y44NT84DJSFFW437.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "Y44NT84DJSFFW437.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Y44NT84DJSFFW437.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2726" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Y44NT84DJSFFW437.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "Y44NT84DJSFFW437", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Y44NT84DJSFFW437.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "Y44NT84DJSFFW437.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2893" - }, - "appliesTo" : [ ] - }, - "Y44NT84DJSFFW437.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "Y44NT84DJSFFW437.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Y44NT84DJSFFW437.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Y44NT84DJSFFW437", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Y44NT84DJSFFW437.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Y44NT84DJSFFW437.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1374" - }, - "appliesTo" : [ ] - }, - "Y44NT84DJSFFW437.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Y44NT84DJSFFW437.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1569000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y44NT84DJSFFW437.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Y44NT84DJSFFW437", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Y44NT84DJSFFW437.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Y44NT84DJSFFW437.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3203000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "UA4QBJUCBNHDQX2B" : { - "UA4QBJUCBNHDQX2B.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "UA4QBJUCBNHDQX2B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UA4QBJUCBNHDQX2B.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "UA4QBJUCBNHDQX2B.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19683" - }, - "appliesTo" : [ ] - }, - "UA4QBJUCBNHDQX2B.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "UA4QBJUCBNHDQX2B.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "UA4QBJUCBNHDQX2B.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "UA4QBJUCBNHDQX2B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UA4QBJUCBNHDQX2B.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "UA4QBJUCBNHDQX2B.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.3960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "UA4QBJUCBNHDQX2B.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "UA4QBJUCBNHDQX2B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UA4QBJUCBNHDQX2B.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "UA4QBJUCBNHDQX2B.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "UA4QBJUCBNHDQX2B.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "UA4QBJUCBNHDQX2B.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "103215" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "UA4QBJUCBNHDQX2B.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "UA4QBJUCBNHDQX2B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UA4QBJUCBNHDQX2B.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "UA4QBJUCBNHDQX2B.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "50779" - }, - "appliesTo" : [ ] - }, - "UA4QBJUCBNHDQX2B.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "UA4QBJUCBNHDQX2B.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "UA4QBJUCBNHDQX2B.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "UA4QBJUCBNHDQX2B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UA4QBJUCBNHDQX2B.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "UA4QBJUCBNHDQX2B.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "UA4QBJUCBNHDQX2B.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "UA4QBJUCBNHDQX2B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UA4QBJUCBNHDQX2B.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "UA4QBJUCBNHDQX2B.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "UA4QBJUCBNHDQX2B.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "UA4QBJUCBNHDQX2B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UA4QBJUCBNHDQX2B.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "UA4QBJUCBNHDQX2B.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37908" - }, - "appliesTo" : [ ] - }, - "UA4QBJUCBNHDQX2B.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "UA4QBJUCBNHDQX2B.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "UA4QBJUCBNHDQX2B.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "UA4QBJUCBNHDQX2B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UA4QBJUCBNHDQX2B.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "UA4QBJUCBNHDQX2B.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "100776" - }, - "appliesTo" : [ ] - }, - "UA4QBJUCBNHDQX2B.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "UA4QBJUCBNHDQX2B.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "UA4QBJUCBNHDQX2B.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "UA4QBJUCBNHDQX2B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UA4QBJUCBNHDQX2B.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "UA4QBJUCBNHDQX2B.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1730000000" - }, - "appliesTo" : [ ] - }, - "UA4QBJUCBNHDQX2B.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "UA4QBJUCBNHDQX2B.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19040" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "UA4QBJUCBNHDQX2B.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "UA4QBJUCBNHDQX2B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UA4QBJUCBNHDQX2B.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "UA4QBJUCBNHDQX2B.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "51758" - }, - "appliesTo" : [ ] - }, - "UA4QBJUCBNHDQX2B.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "UA4QBJUCBNHDQX2B.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "UA4QBJUCBNHDQX2B.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "UA4QBJUCBNHDQX2B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UA4QBJUCBNHDQX2B.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "UA4QBJUCBNHDQX2B.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39168" - }, - "appliesTo" : [ ] - }, - "UA4QBJUCBNHDQX2B.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "UA4QBJUCBNHDQX2B.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "UA4QBJUCBNHDQX2B.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "UA4QBJUCBNHDQX2B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UA4QBJUCBNHDQX2B.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "UA4QBJUCBNHDQX2B.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "TUK52HKAU24AGZAB" : { - "TUK52HKAU24AGZAB.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TUK52HKAU24AGZAB", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "TUK52HKAU24AGZAB.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TUK52HKAU24AGZAB.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1945" - }, - "appliesTo" : [ ] - }, - "TUK52HKAU24AGZAB.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TUK52HKAU24AGZAB.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TUK52HKAU24AGZAB.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "TUK52HKAU24AGZAB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TUK52HKAU24AGZAB.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "TUK52HKAU24AGZAB.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TUK52HKAU24AGZAB.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "TUK52HKAU24AGZAB.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2020" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TUK52HKAU24AGZAB.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TUK52HKAU24AGZAB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TUK52HKAU24AGZAB.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TUK52HKAU24AGZAB.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "972" - }, - "appliesTo" : [ ] - }, - "TUK52HKAU24AGZAB.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TUK52HKAU24AGZAB.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TUK52HKAU24AGZAB.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TUK52HKAU24AGZAB", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "TUK52HKAU24AGZAB.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TUK52HKAU24AGZAB.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4880" - }, - "appliesTo" : [ ] - }, - "TUK52HKAU24AGZAB.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TUK52HKAU24AGZAB.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TUK52HKAU24AGZAB.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "TUK52HKAU24AGZAB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TUK52HKAU24AGZAB.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "TUK52HKAU24AGZAB.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TUK52HKAU24AGZAB.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TUK52HKAU24AGZAB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TUK52HKAU24AGZAB.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TUK52HKAU24AGZAB.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TUK52HKAU24AGZAB.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "TUK52HKAU24AGZAB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TUK52HKAU24AGZAB.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "TUK52HKAU24AGZAB.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TUK52HKAU24AGZAB.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "TUK52HKAU24AGZAB.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5498" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TUK52HKAU24AGZAB.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TUK52HKAU24AGZAB", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "TUK52HKAU24AGZAB.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TUK52HKAU24AGZAB.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2594" - }, - "appliesTo" : [ ] - }, - "TUK52HKAU24AGZAB.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TUK52HKAU24AGZAB.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TUK52HKAU24AGZAB.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "TUK52HKAU24AGZAB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TUK52HKAU24AGZAB.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "TUK52HKAU24AGZAB.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2761" - }, - "appliesTo" : [ ] - }, - "TUK52HKAU24AGZAB.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "TUK52HKAU24AGZAB.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TUK52HKAU24AGZAB.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "TUK52HKAU24AGZAB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TUK52HKAU24AGZAB.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "TUK52HKAU24AGZAB.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TUK52HKAU24AGZAB.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "TUK52HKAU24AGZAB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TUK52HKAU24AGZAB.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "TUK52HKAU24AGZAB.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1160000000" - }, - "appliesTo" : [ ] - }, - "TUK52HKAU24AGZAB.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "TUK52HKAU24AGZAB.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1016" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TUK52HKAU24AGZAB.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "TUK52HKAU24AGZAB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TUK52HKAU24AGZAB.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "TUK52HKAU24AGZAB.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "RRRPJJTQ9JB8YF5W" : { - "RRRPJJTQ9JB8YF5W.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "RRRPJJTQ9JB8YF5W", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "RRRPJJTQ9JB8YF5W.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "RRRPJJTQ9JB8YF5W.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1526" - }, - "appliesTo" : [ ] - }, - "RRRPJJTQ9JB8YF5W.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "RRRPJJTQ9JB8YF5W.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RRRPJJTQ9JB8YF5W.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "RRRPJJTQ9JB8YF5W", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "RRRPJJTQ9JB8YF5W.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "RRRPJJTQ9JB8YF5W.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RRRPJJTQ9JB8YF5W.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "RRRPJJTQ9JB8YF5W", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "RRRPJJTQ9JB8YF5W.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "RRRPJJTQ9JB8YF5W.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1079" - }, - "appliesTo" : [ ] - }, - "RRRPJJTQ9JB8YF5W.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "RRRPJJTQ9JB8YF5W.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RRRPJJTQ9JB8YF5W.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "RRRPJJTQ9JB8YF5W", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "RRRPJJTQ9JB8YF5W.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "RRRPJJTQ9JB8YF5W.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "RRRPJJTQ9JB8YF5W.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "RRRPJJTQ9JB8YF5W.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1415" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RRRPJJTQ9JB8YF5W.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "RRRPJJTQ9JB8YF5W", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "RRRPJJTQ9JB8YF5W.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "RRRPJJTQ9JB8YF5W.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3315" - }, - "appliesTo" : [ ] - }, - "RRRPJJTQ9JB8YF5W.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "RRRPJJTQ9JB8YF5W.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RRRPJJTQ9JB8YF5W.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "RRRPJJTQ9JB8YF5W", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RRRPJJTQ9JB8YF5W.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "RRRPJJTQ9JB8YF5W.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RRRPJJTQ9JB8YF5W.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "RRRPJJTQ9JB8YF5W", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "RRRPJJTQ9JB8YF5W.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "RRRPJJTQ9JB8YF5W.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RRRPJJTQ9JB8YF5W.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "RRRPJJTQ9JB8YF5W", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "RRRPJJTQ9JB8YF5W.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "RRRPJJTQ9JB8YF5W.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "565" - }, - "appliesTo" : [ ] - }, - "RRRPJJTQ9JB8YF5W.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "RRRPJJTQ9JB8YF5W.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RRRPJJTQ9JB8YF5W.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "RRRPJJTQ9JB8YF5W", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RRRPJJTQ9JB8YF5W.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "RRRPJJTQ9JB8YF5W.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1170000000" - }, - "appliesTo" : [ ] - }, - "RRRPJJTQ9JB8YF5W.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "RRRPJJTQ9JB8YF5W.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "497" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RRRPJJTQ9JB8YF5W.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "RRRPJJTQ9JB8YF5W", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RRRPJJTQ9JB8YF5W.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "RRRPJJTQ9JB8YF5W.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1500" - }, - "appliesTo" : [ ] - }, - "RRRPJJTQ9JB8YF5W.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "RRRPJJTQ9JB8YF5W.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RRRPJJTQ9JB8YF5W.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "RRRPJJTQ9JB8YF5W", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "RRRPJJTQ9JB8YF5W.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "RRRPJJTQ9JB8YF5W.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3990" - }, - "appliesTo" : [ ] - }, - "RRRPJJTQ9JB8YF5W.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "RRRPJJTQ9JB8YF5W.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "4CYRKREB7U8REQP5" : { - "4CYRKREB7U8REQP5.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "4CYRKREB7U8REQP5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4CYRKREB7U8REQP5.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "4CYRKREB7U8REQP5.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "4CYRKREB7U8REQP5.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "4CYRKREB7U8REQP5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4CYRKREB7U8REQP5.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "4CYRKREB7U8REQP5.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0400000000" - }, - "appliesTo" : [ ] - }, - "4CYRKREB7U8REQP5.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "4CYRKREB7U8REQP5.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9114" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4CYRKREB7U8REQP5.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "4CYRKREB7U8REQP5", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "4CYRKREB7U8REQP5.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "4CYRKREB7U8REQP5.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "4CYRKREB7U8REQP5.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "4CYRKREB7U8REQP5.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17704" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4CYRKREB7U8REQP5.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "4CYRKREB7U8REQP5", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "4CYRKREB7U8REQP5.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "4CYRKREB7U8REQP5.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9470000000" - }, - "appliesTo" : [ ] - }, - "4CYRKREB7U8REQP5.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "4CYRKREB7U8REQP5.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24891" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4CYRKREB7U8REQP5.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "4CYRKREB7U8REQP5", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "4CYRKREB7U8REQP5.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "4CYRKREB7U8REQP5.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26195" - }, - "appliesTo" : [ ] - }, - "4CYRKREB7U8REQP5.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "4CYRKREB7U8REQP5.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4CYRKREB7U8REQP5.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "4CYRKREB7U8REQP5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4CYRKREB7U8REQP5.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "4CYRKREB7U8REQP5.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18158" - }, - "appliesTo" : [ ] - }, - "4CYRKREB7U8REQP5.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "4CYRKREB7U8REQP5.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4CYRKREB7U8REQP5.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "4CYRKREB7U8REQP5", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "4CYRKREB7U8REQP5.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "4CYRKREB7U8REQP5.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "49451" - }, - "appliesTo" : [ ] - }, - "4CYRKREB7U8REQP5.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "4CYRKREB7U8REQP5.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4CYRKREB7U8REQP5.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "4CYRKREB7U8REQP5", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "4CYRKREB7U8REQP5.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "4CYRKREB7U8REQP5.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "4CYRKREB7U8REQP5.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "4CYRKREB7U8REQP5", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "4CYRKREB7U8REQP5.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "4CYRKREB7U8REQP5.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "52227" - }, - "appliesTo" : [ ] - }, - "4CYRKREB7U8REQP5.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "4CYRKREB7U8REQP5.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4CYRKREB7U8REQP5.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "4CYRKREB7U8REQP5", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "4CYRKREB7U8REQP5.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "4CYRKREB7U8REQP5.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "4CYRKREB7U8REQP5.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "4CYRKREB7U8REQP5", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "4CYRKREB7U8REQP5.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "4CYRKREB7U8REQP5.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8882" - }, - "appliesTo" : [ ] - }, - "4CYRKREB7U8REQP5.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "4CYRKREB7U8REQP5.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "KX42WEB78EWUHU8Q" : { - "KX42WEB78EWUHU8Q.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "KX42WEB78EWUHU8Q", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "KX42WEB78EWUHU8Q.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "KX42WEB78EWUHU8Q.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2450" - }, - "appliesTo" : [ ] - }, - "KX42WEB78EWUHU8Q.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "KX42WEB78EWUHU8Q.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2726000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KX42WEB78EWUHU8Q.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "KX42WEB78EWUHU8Q", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "KX42WEB78EWUHU8Q.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "KX42WEB78EWUHU8Q.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5671" - }, - "appliesTo" : [ ] - }, - "KX42WEB78EWUHU8Q.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "KX42WEB78EWUHU8Q.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2154000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KX42WEB78EWUHU8Q.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "KX42WEB78EWUHU8Q", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "KX42WEB78EWUHU8Q.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "KX42WEB78EWUHU8Q.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9390" - }, - "appliesTo" : [ ] - }, - "KX42WEB78EWUHU8Q.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "KX42WEB78EWUHU8Q.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KX42WEB78EWUHU8Q.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "KX42WEB78EWUHU8Q", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "KX42WEB78EWUHU8Q.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "KX42WEB78EWUHU8Q.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4702000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KX42WEB78EWUHU8Q.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "KX42WEB78EWUHU8Q", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "KX42WEB78EWUHU8Q.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "KX42WEB78EWUHU8Q.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1890000000" - }, - "appliesTo" : [ ] - }, - "KX42WEB78EWUHU8Q.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "KX42WEB78EWUHU8Q.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4977" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KX42WEB78EWUHU8Q.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "KX42WEB78EWUHU8Q", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "KX42WEB78EWUHU8Q.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "KX42WEB78EWUHU8Q.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4747" - }, - "appliesTo" : [ ] - }, - "KX42WEB78EWUHU8Q.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "KX42WEB78EWUHU8Q.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KX42WEB78EWUHU8Q.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "KX42WEB78EWUHU8Q", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KX42WEB78EWUHU8Q.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "KX42WEB78EWUHU8Q.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2791" - }, - "appliesTo" : [ ] - }, - "KX42WEB78EWUHU8Q.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "KX42WEB78EWUHU8Q.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3115000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KX42WEB78EWUHU8Q.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "KX42WEB78EWUHU8Q", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "KX42WEB78EWUHU8Q.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "KX42WEB78EWUHU8Q.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5782000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KX42WEB78EWUHU8Q.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "KX42WEB78EWUHU8Q", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KX42WEB78EWUHU8Q.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "KX42WEB78EWUHU8Q.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6599000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KX42WEB78EWUHU8Q.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "KX42WEB78EWUHU8Q", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "KX42WEB78EWUHU8Q.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "KX42WEB78EWUHU8Q.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4132000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KX42WEB78EWUHU8Q.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "KX42WEB78EWUHU8Q", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KX42WEB78EWUHU8Q.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "KX42WEB78EWUHU8Q.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5416" - }, - "appliesTo" : [ ] - }, - "KX42WEB78EWUHU8Q.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "KX42WEB78EWUHU8Q.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KX42WEB78EWUHU8Q.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "KX42WEB78EWUHU8Q", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "KX42WEB78EWUHU8Q.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "KX42WEB78EWUHU8Q.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11119" - }, - "appliesTo" : [ ] - }, - "KX42WEB78EWUHU8Q.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "KX42WEB78EWUHU8Q.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "7H3YAVFCE5P4TFBT" : { - "7H3YAVFCE5P4TFBT.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "7H3YAVFCE5P4TFBT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7H3YAVFCE5P4TFBT.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "7H3YAVFCE5P4TFBT.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "60391" - }, - "appliesTo" : [ ] - }, - "7H3YAVFCE5P4TFBT.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "7H3YAVFCE5P4TFBT.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.8940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7H3YAVFCE5P4TFBT.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "7H3YAVFCE5P4TFBT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7H3YAVFCE5P4TFBT.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "7H3YAVFCE5P4TFBT.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "7H3YAVFCE5P4TFBT.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "7H3YAVFCE5P4TFBT.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "120461" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7H3YAVFCE5P4TFBT.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "7H3YAVFCE5P4TFBT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7H3YAVFCE5P4TFBT.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "7H3YAVFCE5P4TFBT.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "122825" - }, - "appliesTo" : [ ] - }, - "7H3YAVFCE5P4TFBT.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "7H3YAVFCE5P4TFBT.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7H3YAVFCE5P4TFBT.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "7H3YAVFCE5P4TFBT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7H3YAVFCE5P4TFBT.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "7H3YAVFCE5P4TFBT.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.2340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7H3YAVFCE5P4TFBT.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "7H3YAVFCE5P4TFBT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7H3YAVFCE5P4TFBT.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "7H3YAVFCE5P4TFBT.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "175022" - }, - "appliesTo" : [ ] - }, - "7H3YAVFCE5P4TFBT.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "7H3YAVFCE5P4TFBT.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.6600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7H3YAVFCE5P4TFBT.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "7H3YAVFCE5P4TFBT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7H3YAVFCE5P4TFBT.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "7H3YAVFCE5P4TFBT.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.0320000000" - }, - "appliesTo" : [ ] - }, - "7H3YAVFCE5P4TFBT.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "7H3YAVFCE5P4TFBT.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "61598" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7H3YAVFCE5P4TFBT.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "7H3YAVFCE5P4TFBT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7H3YAVFCE5P4TFBT.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "7H3YAVFCE5P4TFBT.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.1690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7H3YAVFCE5P4TFBT.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "7H3YAVFCE5P4TFBT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7H3YAVFCE5P4TFBT.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "7H3YAVFCE5P4TFBT.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.8800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7H3YAVFCE5P4TFBT.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "7H3YAVFCE5P4TFBT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7H3YAVFCE5P4TFBT.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "7H3YAVFCE5P4TFBT.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "349326" - }, - "appliesTo" : [ ] - }, - "7H3YAVFCE5P4TFBT.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "7H3YAVFCE5P4TFBT.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7H3YAVFCE5P4TFBT.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "7H3YAVFCE5P4TFBT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7H3YAVFCE5P4TFBT.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "7H3YAVFCE5P4TFBT.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.5700000000" - }, - "appliesTo" : [ ] - }, - "7H3YAVFCE5P4TFBT.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "7H3YAVFCE5P4TFBT.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "172650" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7H3YAVFCE5P4TFBT.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "7H3YAVFCE5P4TFBT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7H3YAVFCE5P4TFBT.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "7H3YAVFCE5P4TFBT.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "343428" - }, - "appliesTo" : [ ] - }, - "7H3YAVFCE5P4TFBT.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "7H3YAVFCE5P4TFBT.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7H3YAVFCE5P4TFBT.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "7H3YAVFCE5P4TFBT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7H3YAVFCE5P4TFBT.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "7H3YAVFCE5P4TFBT.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.4290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "PYM3KA9YWBXZT4WT" : { - "PYM3KA9YWBXZT4WT.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "PYM3KA9YWBXZT4WT", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "PYM3KA9YWBXZT4WT.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "PYM3KA9YWBXZT4WT.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2232" - }, - "appliesTo" : [ ] - }, - "PYM3KA9YWBXZT4WT.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "PYM3KA9YWBXZT4WT.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PYM3KA9YWBXZT4WT.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "PYM3KA9YWBXZT4WT", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "PYM3KA9YWBXZT4WT.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "PYM3KA9YWBXZT4WT.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3380" - }, - "appliesTo" : [ ] - }, - "PYM3KA9YWBXZT4WT.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "PYM3KA9YWBXZT4WT.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PYM3KA9YWBXZT4WT.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "PYM3KA9YWBXZT4WT", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "PYM3KA9YWBXZT4WT.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "PYM3KA9YWBXZT4WT.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "PYM3KA9YWBXZT4WT.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "PYM3KA9YWBXZT4WT", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "PYM3KA9YWBXZT4WT.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "PYM3KA9YWBXZT4WT.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6824" - }, - "appliesTo" : [ ] - }, - "PYM3KA9YWBXZT4WT.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "PYM3KA9YWBXZT4WT.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PYM3KA9YWBXZT4WT.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "PYM3KA9YWBXZT4WT", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "PYM3KA9YWBXZT4WT.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "PYM3KA9YWBXZT4WT.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1260000000" - }, - "appliesTo" : [ ] - }, - "PYM3KA9YWBXZT4WT.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "PYM3KA9YWBXZT4WT.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5903" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PYM3KA9YWBXZT4WT.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "PYM3KA9YWBXZT4WT", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "PYM3KA9YWBXZT4WT.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "PYM3KA9YWBXZT4WT.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4277" - }, - "appliesTo" : [ ] - }, - "PYM3KA9YWBXZT4WT.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "PYM3KA9YWBXZT4WT.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PYM3KA9YWBXZT4WT.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "PYM3KA9YWBXZT4WT", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "PYM3KA9YWBXZT4WT.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "PYM3KA9YWBXZT4WT.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "PYM3KA9YWBXZT4WT.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "PYM3KA9YWBXZT4WT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PYM3KA9YWBXZT4WT.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "PYM3KA9YWBXZT4WT.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1983" - }, - "appliesTo" : [ ] - }, - "PYM3KA9YWBXZT4WT.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "PYM3KA9YWBXZT4WT.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PYM3KA9YWBXZT4WT.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "PYM3KA9YWBXZT4WT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PYM3KA9YWBXZT4WT.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "PYM3KA9YWBXZT4WT.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "PYM3KA9YWBXZT4WT.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "PYM3KA9YWBXZT4WT", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "PYM3KA9YWBXZT4WT.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "PYM3KA9YWBXZT4WT.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9037" - }, - "appliesTo" : [ ] - }, - "PYM3KA9YWBXZT4WT.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "PYM3KA9YWBXZT4WT.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PYM3KA9YWBXZT4WT.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "PYM3KA9YWBXZT4WT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PYM3KA9YWBXZT4WT.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "PYM3KA9YWBXZT4WT.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "PYM3KA9YWBXZT4WT.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "PYM3KA9YWBXZT4WT.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3832" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "38AX843AAXNB6F95" : { - "38AX843AAXNB6F95.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "38AX843AAXNB6F95", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "38AX843AAXNB6F95.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "38AX843AAXNB6F95.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20659" - }, - "appliesTo" : [ ] - }, - "38AX843AAXNB6F95.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "38AX843AAXNB6F95.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "38AX843AAXNB6F95.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "38AX843AAXNB6F95", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "38AX843AAXNB6F95.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "38AX843AAXNB6F95.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "40489" - }, - "appliesTo" : [ ] - }, - "38AX843AAXNB6F95.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "38AX843AAXNB6F95.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "38AX843AAXNB6F95.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "38AX843AAXNB6F95", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "38AX843AAXNB6F95.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "38AX843AAXNB6F95.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "54301" - }, - "appliesTo" : [ ] - }, - "38AX843AAXNB6F95.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "38AX843AAXNB6F95.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "38AX843AAXNB6F95.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "38AX843AAXNB6F95", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "38AX843AAXNB6F95.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "38AX843AAXNB6F95.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "97547" - }, - "appliesTo" : [ ] - }, - "38AX843AAXNB6F95.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "38AX843AAXNB6F95.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "38AX843AAXNB6F95.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "38AX843AAXNB6F95", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "38AX843AAXNB6F95.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "38AX843AAXNB6F95.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.2550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "38AX843AAXNB6F95.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "38AX843AAXNB6F95", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "38AX843AAXNB6F95.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "38AX843AAXNB6F95.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27341" - }, - "appliesTo" : [ ] - }, - "38AX843AAXNB6F95.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "38AX843AAXNB6F95.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1211000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "38AX843AAXNB6F95.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "38AX843AAXNB6F95", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "38AX843AAXNB6F95.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "38AX843AAXNB6F95.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.5180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "38AX843AAXNB6F95.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "38AX843AAXNB6F95", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "38AX843AAXNB6F95.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "38AX843AAXNB6F95.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9740000000" - }, - "appliesTo" : [ ] - }, - "38AX843AAXNB6F95.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "38AX843AAXNB6F95.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "51888" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "38AX843AAXNB6F95.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "38AX843AAXNB6F95", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "38AX843AAXNB6F95.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "38AX843AAXNB6F95.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "115685" - }, - "appliesTo" : [ ] - }, - "38AX843AAXNB6F95.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "38AX843AAXNB6F95.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "38AX843AAXNB6F95.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "38AX843AAXNB6F95", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "38AX843AAXNB6F95.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "38AX843AAXNB6F95.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "38AX843AAXNB6F95.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "38AX843AAXNB6F95", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "38AX843AAXNB6F95.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "38AX843AAXNB6F95.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "59021" - }, - "appliesTo" : [ ] - }, - "38AX843AAXNB6F95.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "38AX843AAXNB6F95.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "38AX843AAXNB6F95.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "38AX843AAXNB6F95", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "38AX843AAXNB6F95.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "38AX843AAXNB6F95.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.3508000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "BQZA2V9VZEE32ZTX" : { - "BQZA2V9VZEE32ZTX.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "BQZA2V9VZEE32ZTX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BQZA2V9VZEE32ZTX.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "BQZA2V9VZEE32ZTX.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "BQZA2V9VZEE32ZTX.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "BQZA2V9VZEE32ZTX.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4877" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BQZA2V9VZEE32ZTX.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "BQZA2V9VZEE32ZTX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BQZA2V9VZEE32ZTX.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "BQZA2V9VZEE32ZTX.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3410000000" - }, - "appliesTo" : [ ] - }, - "BQZA2V9VZEE32ZTX.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "BQZA2V9VZEE32ZTX.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1989" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BQZA2V9VZEE32ZTX.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "BQZA2V9VZEE32ZTX", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BQZA2V9VZEE32ZTX.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "BQZA2V9VZEE32ZTX.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BQZA2V9VZEE32ZTX.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "BQZA2V9VZEE32ZTX", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "BQZA2V9VZEE32ZTX.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "BQZA2V9VZEE32ZTX.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5400" - }, - "appliesTo" : [ ] - }, - "BQZA2V9VZEE32ZTX.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "BQZA2V9VZEE32ZTX.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BQZA2V9VZEE32ZTX.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "BQZA2V9VZEE32ZTX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BQZA2V9VZEE32ZTX.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "BQZA2V9VZEE32ZTX.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12685" - }, - "appliesTo" : [ ] - }, - "BQZA2V9VZEE32ZTX.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "BQZA2V9VZEE32ZTX.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "TDGFBAHXRZKBVVEK" : { - "TDGFBAHXRZKBVVEK.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TDGFBAHXRZKBVVEK", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "TDGFBAHXRZKBVVEK.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TDGFBAHXRZKBVVEK.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.3030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TDGFBAHXRZKBVVEK.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "TDGFBAHXRZKBVVEK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TDGFBAHXRZKBVVEK.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "TDGFBAHXRZKBVVEK.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1430000000" - }, - "appliesTo" : [ ] - }, - "TDGFBAHXRZKBVVEK.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "TDGFBAHXRZKBVVEK.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18772" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TDGFBAHXRZKBVVEK.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "TDGFBAHXRZKBVVEK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TDGFBAHXRZKBVVEK.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "TDGFBAHXRZKBVVEK.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.3320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TDGFBAHXRZKBVVEK.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "TDGFBAHXRZKBVVEK", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "TDGFBAHXRZKBVVEK.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "TDGFBAHXRZKBVVEK.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "53709" - }, - "appliesTo" : [ ] - }, - "TDGFBAHXRZKBVVEK.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "TDGFBAHXRZKBVVEK.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TDGFBAHXRZKBVVEK.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TDGFBAHXRZKBVVEK", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "TDGFBAHXRZKBVVEK.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TDGFBAHXRZKBVVEK.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "50754" - }, - "appliesTo" : [ ] - }, - "TDGFBAHXRZKBVVEK.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TDGFBAHXRZKBVVEK.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TDGFBAHXRZKBVVEK.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "TDGFBAHXRZKBVVEK", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "TDGFBAHXRZKBVVEK.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "TDGFBAHXRZKBVVEK.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TDGFBAHXRZKBVVEK.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TDGFBAHXRZKBVVEK", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "TDGFBAHXRZKBVVEK.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TDGFBAHXRZKBVVEK.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TDGFBAHXRZKBVVEK.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TDGFBAHXRZKBVVEK.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "100729" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TDGFBAHXRZKBVVEK.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TDGFBAHXRZKBVVEK", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "TDGFBAHXRZKBVVEK.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TDGFBAHXRZKBVVEK.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "36366" - }, - "appliesTo" : [ ] - }, - "TDGFBAHXRZKBVVEK.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TDGFBAHXRZKBVVEK.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TDGFBAHXRZKBVVEK.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TDGFBAHXRZKBVVEK", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "TDGFBAHXRZKBVVEK.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TDGFBAHXRZKBVVEK.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18253" - }, - "appliesTo" : [ ] - }, - "TDGFBAHXRZKBVVEK.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TDGFBAHXRZKBVVEK.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TDGFBAHXRZKBVVEK.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "TDGFBAHXRZKBVVEK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TDGFBAHXRZKBVVEK.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "TDGFBAHXRZKBVVEK.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37384" - }, - "appliesTo" : [ ] - }, - "TDGFBAHXRZKBVVEK.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "TDGFBAHXRZKBVVEK.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TDGFBAHXRZKBVVEK.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "TDGFBAHXRZKBVVEK", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "TDGFBAHXRZKBVVEK.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "TDGFBAHXRZKBVVEK.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "107039" - }, - "appliesTo" : [ ] - }, - "TDGFBAHXRZKBVVEK.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "TDGFBAHXRZKBVVEK.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "TRZ6E8JSBS5WZR6G" : { - "TRZ6E8JSBS5WZR6G.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TRZ6E8JSBS5WZR6G", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "TRZ6E8JSBS5WZR6G.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TRZ6E8JSBS5WZR6G.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18858" - }, - "appliesTo" : [ ] - }, - "TRZ6E8JSBS5WZR6G.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TRZ6E8JSBS5WZR6G.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TRZ6E8JSBS5WZR6G.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "TRZ6E8JSBS5WZR6G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TRZ6E8JSBS5WZR6G.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "TRZ6E8JSBS5WZR6G.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.3290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TRZ6E8JSBS5WZR6G.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "TRZ6E8JSBS5WZR6G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TRZ6E8JSBS5WZR6G.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "TRZ6E8JSBS5WZR6G.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "43644" - }, - "appliesTo" : [ ] - }, - "TRZ6E8JSBS5WZR6G.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "TRZ6E8JSBS5WZR6G.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TRZ6E8JSBS5WZR6G.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "TRZ6E8JSBS5WZR6G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TRZ6E8JSBS5WZR6G.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "TRZ6E8JSBS5WZR6G.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6060000000" - }, - "appliesTo" : [ ] - }, - "TRZ6E8JSBS5WZR6G.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "TRZ6E8JSBS5WZR6G.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21686" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TRZ6E8JSBS5WZR6G.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TRZ6E8JSBS5WZR6G", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TRZ6E8JSBS5WZR6G.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TRZ6E8JSBS5WZR6G.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.6510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TRZ6E8JSBS5WZR6G.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "TRZ6E8JSBS5WZR6G", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TRZ6E8JSBS5WZR6G.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "TRZ6E8JSBS5WZR6G.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TRZ6E8JSBS5WZR6G.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "TRZ6E8JSBS5WZR6G", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TRZ6E8JSBS5WZR6G.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "TRZ6E8JSBS5WZR6G.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TRZ6E8JSBS5WZR6G.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "TRZ6E8JSBS5WZR6G.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "68086" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TRZ6E8JSBS5WZR6G.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TRZ6E8JSBS5WZR6G", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "TRZ6E8JSBS5WZR6G.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TRZ6E8JSBS5WZR6G.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28692" - }, - "appliesTo" : [ ] - }, - "TRZ6E8JSBS5WZR6G.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TRZ6E8JSBS5WZR6G.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TRZ6E8JSBS5WZR6G.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "TRZ6E8JSBS5WZR6G", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TRZ6E8JSBS5WZR6G.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "TRZ6E8JSBS5WZR6G.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32995" - }, - "appliesTo" : [ ] - }, - "TRZ6E8JSBS5WZR6G.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "TRZ6E8JSBS5WZR6G.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TRZ6E8JSBS5WZR6G.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "TRZ6E8JSBS5WZR6G", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TRZ6E8JSBS5WZR6G.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "TRZ6E8JSBS5WZR6G.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TRZ6E8JSBS5WZR6G.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TRZ6E8JSBS5WZR6G", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TRZ6E8JSBS5WZR6G.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TRZ6E8JSBS5WZR6G.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "57357" - }, - "appliesTo" : [ ] - }, - "TRZ6E8JSBS5WZR6G.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TRZ6E8JSBS5WZR6G.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TRZ6E8JSBS5WZR6G.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TRZ6E8JSBS5WZR6G", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "TRZ6E8JSBS5WZR6G.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TRZ6E8JSBS5WZR6G.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38100" - }, - "appliesTo" : [ ] - }, - "TRZ6E8JSBS5WZR6G.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TRZ6E8JSBS5WZR6G.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "FUETJGKE44YRRDYN" : { - "FUETJGKE44YRRDYN.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "FUETJGKE44YRRDYN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FUETJGKE44YRRDYN.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "FUETJGKE44YRRDYN.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2639" - }, - "appliesTo" : [ ] - }, - "FUETJGKE44YRRDYN.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "FUETJGKE44YRRDYN.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FUETJGKE44YRRDYN.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "FUETJGKE44YRRDYN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FUETJGKE44YRRDYN.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "FUETJGKE44YRRDYN.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FUETJGKE44YRRDYN.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "FUETJGKE44YRRDYN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FUETJGKE44YRRDYN.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "FUETJGKE44YRRDYN.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4975" - }, - "appliesTo" : [ ] - }, - "FUETJGKE44YRRDYN.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "FUETJGKE44YRRDYN.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FUETJGKE44YRRDYN.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "FUETJGKE44YRRDYN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FUETJGKE44YRRDYN.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "FUETJGKE44YRRDYN.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2500000000" - }, - "appliesTo" : [ ] - }, - "FUETJGKE44YRRDYN.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "FUETJGKE44YRRDYN.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6569" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FUETJGKE44YRRDYN.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "FUETJGKE44YRRDYN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FUETJGKE44YRRDYN.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "FUETJGKE44YRRDYN.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6833" - }, - "appliesTo" : [ ] - }, - "FUETJGKE44YRRDYN.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "FUETJGKE44YRRDYN.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FUETJGKE44YRRDYN.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "FUETJGKE44YRRDYN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FUETJGKE44YRRDYN.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "FUETJGKE44YRRDYN.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FUETJGKE44YRRDYN.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "FUETJGKE44YRRDYN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FUETJGKE44YRRDYN.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "FUETJGKE44YRRDYN.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FUETJGKE44YRRDYN.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "FUETJGKE44YRRDYN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FUETJGKE44YRRDYN.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "FUETJGKE44YRRDYN.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "FUETJGKE44YRRDYN.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "FUETJGKE44YRRDYN.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12930" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FUETJGKE44YRRDYN.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "FUETJGKE44YRRDYN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FUETJGKE44YRRDYN.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "FUETJGKE44YRRDYN.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13585" - }, - "appliesTo" : [ ] - }, - "FUETJGKE44YRRDYN.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "FUETJGKE44YRRDYN.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FUETJGKE44YRRDYN.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "FUETJGKE44YRRDYN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FUETJGKE44YRRDYN.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "FUETJGKE44YRRDYN.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FUETJGKE44YRRDYN.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "FUETJGKE44YRRDYN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FUETJGKE44YRRDYN.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "FUETJGKE44YRRDYN.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5238" - }, - "appliesTo" : [ ] - }, - "FUETJGKE44YRRDYN.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "FUETJGKE44YRRDYN.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FUETJGKE44YRRDYN.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "FUETJGKE44YRRDYN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FUETJGKE44YRRDYN.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "FUETJGKE44YRRDYN.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2505" - }, - "appliesTo" : [ ] - }, - "FUETJGKE44YRRDYN.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "FUETJGKE44YRRDYN.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "UA3JWMHE5JCMQN3Z" : { - "UA3JWMHE5JCMQN3Z.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "UA3JWMHE5JCMQN3Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UA3JWMHE5JCMQN3Z.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "UA3JWMHE5JCMQN3Z.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "UA3JWMHE5JCMQN3Z.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "UA3JWMHE5JCMQN3Z", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "UA3JWMHE5JCMQN3Z.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "UA3JWMHE5JCMQN3Z.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "UA3JWMHE5JCMQN3Z.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "UA3JWMHE5JCMQN3Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UA3JWMHE5JCMQN3Z.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "UA3JWMHE5JCMQN3Z.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1506" - }, - "appliesTo" : [ ] - }, - "UA3JWMHE5JCMQN3Z.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "UA3JWMHE5JCMQN3Z.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "UA3JWMHE5JCMQN3Z.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "UA3JWMHE5JCMQN3Z", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "UA3JWMHE5JCMQN3Z.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "UA3JWMHE5JCMQN3Z.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1342" - }, - "appliesTo" : [ ] - }, - "UA3JWMHE5JCMQN3Z.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "UA3JWMHE5JCMQN3Z.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "UA3JWMHE5JCMQN3Z.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "UA3JWMHE5JCMQN3Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UA3JWMHE5JCMQN3Z.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "UA3JWMHE5JCMQN3Z.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2896" - }, - "appliesTo" : [ ] - }, - "UA3JWMHE5JCMQN3Z.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "UA3JWMHE5JCMQN3Z.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "UA3JWMHE5JCMQN3Z.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "UA3JWMHE5JCMQN3Z", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "UA3JWMHE5JCMQN3Z.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "UA3JWMHE5JCMQN3Z.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6037" - }, - "appliesTo" : [ ] - }, - "UA3JWMHE5JCMQN3Z.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "UA3JWMHE5JCMQN3Z.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "UA3JWMHE5JCMQN3Z.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "UA3JWMHE5JCMQN3Z", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "UA3JWMHE5JCMQN3Z.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "UA3JWMHE5JCMQN3Z.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "UA3JWMHE5JCMQN3Z.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "UA3JWMHE5JCMQN3Z", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "UA3JWMHE5JCMQN3Z.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "UA3JWMHE5JCMQN3Z.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "UA3JWMHE5JCMQN3Z.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "UA3JWMHE5JCMQN3Z", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "UA3JWMHE5JCMQN3Z.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "UA3JWMHE5JCMQN3Z.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1040000000" - }, - "appliesTo" : [ ] - }, - "UA3JWMHE5JCMQN3Z.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "UA3JWMHE5JCMQN3Z.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2738" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "UA3JWMHE5JCMQN3Z.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "UA3JWMHE5JCMQN3Z", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "UA3JWMHE5JCMQN3Z.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "UA3JWMHE5JCMQN3Z.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3078" - }, - "appliesTo" : [ ] - }, - "UA3JWMHE5JCMQN3Z.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "UA3JWMHE5JCMQN3Z.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "UA3JWMHE5JCMQN3Z.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "UA3JWMHE5JCMQN3Z", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "UA3JWMHE5JCMQN3Z.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "UA3JWMHE5JCMQN3Z.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2576" - }, - "appliesTo" : [ ] - }, - "UA3JWMHE5JCMQN3Z.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "UA3JWMHE5JCMQN3Z.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "UA3JWMHE5JCMQN3Z.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "UA3JWMHE5JCMQN3Z", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "UA3JWMHE5JCMQN3Z.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "UA3JWMHE5JCMQN3Z.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5180" - }, - "appliesTo" : [ ] - }, - "UA3JWMHE5JCMQN3Z.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "UA3JWMHE5JCMQN3Z.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "GN43Y4P6APPBFGM8" : { - "GN43Y4P6APPBFGM8.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "GN43Y4P6APPBFGM8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GN43Y4P6APPBFGM8.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "GN43Y4P6APPBFGM8.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.4820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "GN43Y4P6APPBFGM8.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "GN43Y4P6APPBFGM8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GN43Y4P6APPBFGM8.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "GN43Y4P6APPBFGM8.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23755" - }, - "appliesTo" : [ ] - }, - "GN43Y4P6APPBFGM8.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "GN43Y4P6APPBFGM8.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GN43Y4P6APPBFGM8.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "GN43Y4P6APPBFGM8", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GN43Y4P6APPBFGM8.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "GN43Y4P6APPBFGM8.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.1700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GN43Y4P6APPBFGM8.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "GN43Y4P6APPBFGM8", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GN43Y4P6APPBFGM8.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "GN43Y4P6APPBFGM8.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "50028" - }, - "appliesTo" : [ ] - }, - "GN43Y4P6APPBFGM8.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "GN43Y4P6APPBFGM8.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GN43Y4P6APPBFGM8.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "GN43Y4P6APPBFGM8", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GN43Y4P6APPBFGM8.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "GN43Y4P6APPBFGM8.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "117579" - }, - "appliesTo" : [ ] - }, - "GN43Y4P6APPBFGM8.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "GN43Y4P6APPBFGM8.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GN43Y4P6APPBFGM8.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "GN43Y4P6APPBFGM8", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GN43Y4P6APPBFGM8.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "GN43Y4P6APPBFGM8.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "45269" - }, - "appliesTo" : [ ] - }, - "GN43Y4P6APPBFGM8.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "GN43Y4P6APPBFGM8.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GN43Y4P6APPBFGM8.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "GN43Y4P6APPBFGM8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GN43Y4P6APPBFGM8.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "GN43Y4P6APPBFGM8.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47307" - }, - "appliesTo" : [ ] - }, - "GN43Y4P6APPBFGM8.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "GN43Y4P6APPBFGM8.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "GN43Y4P6APPBFGM8.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "GN43Y4P6APPBFGM8", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "GN43Y4P6APPBFGM8.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "GN43Y4P6APPBFGM8.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1210000000" - }, - "appliesTo" : [ ] - }, - "GN43Y4P6APPBFGM8.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "GN43Y4P6APPBFGM8.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "53890" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GN43Y4P6APPBFGM8.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "GN43Y4P6APPBFGM8", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "GN43Y4P6APPBFGM8.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "GN43Y4P6APPBFGM8.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.0530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "GN43Y4P6APPBFGM8.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "GN43Y4P6APPBFGM8", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GN43Y4P6APPBFGM8.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "GN43Y4P6APPBFGM8.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18485" - }, - "appliesTo" : [ ] - }, - "GN43Y4P6APPBFGM8.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "GN43Y4P6APPBFGM8.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GN43Y4P6APPBFGM8.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "GN43Y4P6APPBFGM8", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "GN43Y4P6APPBFGM8.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "GN43Y4P6APPBFGM8.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "133200" - }, - "appliesTo" : [ ] - }, - "GN43Y4P6APPBFGM8.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "GN43Y4P6APPBFGM8.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "7MVN3GT6EP25KDUJ" : { - "7MVN3GT6EP25KDUJ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "7MVN3GT6EP25KDUJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7MVN3GT6EP25KDUJ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "7MVN3GT6EP25KDUJ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16127" - }, - "appliesTo" : [ ] - }, - "7MVN3GT6EP25KDUJ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "7MVN3GT6EP25KDUJ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7MVN3GT6EP25KDUJ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "7MVN3GT6EP25KDUJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7MVN3GT6EP25KDUJ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "7MVN3GT6EP25KDUJ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7670" - }, - "appliesTo" : [ ] - }, - "7MVN3GT6EP25KDUJ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "7MVN3GT6EP25KDUJ.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7MVN3GT6EP25KDUJ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "7MVN3GT6EP25KDUJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7MVN3GT6EP25KDUJ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "7MVN3GT6EP25KDUJ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7999" - }, - "appliesTo" : [ ] - }, - "7MVN3GT6EP25KDUJ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "7MVN3GT6EP25KDUJ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7MVN3GT6EP25KDUJ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "7MVN3GT6EP25KDUJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7MVN3GT6EP25KDUJ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "7MVN3GT6EP25KDUJ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7MVN3GT6EP25KDUJ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "7MVN3GT6EP25KDUJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7MVN3GT6EP25KDUJ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "7MVN3GT6EP25KDUJ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5000" - }, - "appliesTo" : [ ] - }, - "7MVN3GT6EP25KDUJ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "7MVN3GT6EP25KDUJ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "9WGNK9JK96GFCM3E" : { - "9WGNK9JK96GFCM3E.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "9WGNK9JK96GFCM3E", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9WGNK9JK96GFCM3E.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "9WGNK9JK96GFCM3E.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12926" - }, - "appliesTo" : [ ] - }, - "9WGNK9JK96GFCM3E.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "9WGNK9JK96GFCM3E.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9WGNK9JK96GFCM3E.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "9WGNK9JK96GFCM3E", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "9WGNK9JK96GFCM3E.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "9WGNK9JK96GFCM3E.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9WGNK9JK96GFCM3E.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "9WGNK9JK96GFCM3E", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "9WGNK9JK96GFCM3E.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "9WGNK9JK96GFCM3E.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "9WGNK9JK96GFCM3E.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "9WGNK9JK96GFCM3E.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35236" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9WGNK9JK96GFCM3E.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "9WGNK9JK96GFCM3E", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9WGNK9JK96GFCM3E.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "9WGNK9JK96GFCM3E.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14763" - }, - "appliesTo" : [ ] - }, - "9WGNK9JK96GFCM3E.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "9WGNK9JK96GFCM3E.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9WGNK9JK96GFCM3E.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "9WGNK9JK96GFCM3E", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "9WGNK9JK96GFCM3E.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "9WGNK9JK96GFCM3E.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6024" - }, - "appliesTo" : [ ] - }, - "9WGNK9JK96GFCM3E.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "9WGNK9JK96GFCM3E.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9WGNK9JK96GFCM3E.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "9WGNK9JK96GFCM3E", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "9WGNK9JK96GFCM3E.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "9WGNK9JK96GFCM3E.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9WGNK9JK96GFCM3E.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "9WGNK9JK96GFCM3E", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9WGNK9JK96GFCM3E.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "9WGNK9JK96GFCM3E.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9WGNK9JK96GFCM3E.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "9WGNK9JK96GFCM3E", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9WGNK9JK96GFCM3E.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "9WGNK9JK96GFCM3E.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6951" - }, - "appliesTo" : [ ] - }, - "9WGNK9JK96GFCM3E.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "9WGNK9JK96GFCM3E.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9WGNK9JK96GFCM3E.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "9WGNK9JK96GFCM3E", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9WGNK9JK96GFCM3E.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "9WGNK9JK96GFCM3E.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23991" - }, - "appliesTo" : [ ] - }, - "9WGNK9JK96GFCM3E.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "9WGNK9JK96GFCM3E.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9WGNK9JK96GFCM3E.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "9WGNK9JK96GFCM3E", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "9WGNK9JK96GFCM3E.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "9WGNK9JK96GFCM3E.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16265" - }, - "appliesTo" : [ ] - }, - "9WGNK9JK96GFCM3E.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "9WGNK9JK96GFCM3E.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9WGNK9JK96GFCM3E.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "9WGNK9JK96GFCM3E", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9WGNK9JK96GFCM3E.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "9WGNK9JK96GFCM3E.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11068" - }, - "appliesTo" : [ ] - }, - "9WGNK9JK96GFCM3E.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "9WGNK9JK96GFCM3E.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "TQV69AZUDVU7GUKY" : { - "TQV69AZUDVU7GUKY.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TQV69AZUDVU7GUKY", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "TQV69AZUDVU7GUKY.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TQV69AZUDVU7GUKY.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3438" - }, - "appliesTo" : [ ] - }, - "TQV69AZUDVU7GUKY.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TQV69AZUDVU7GUKY.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TQV69AZUDVU7GUKY.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TQV69AZUDVU7GUKY", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "TQV69AZUDVU7GUKY.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TQV69AZUDVU7GUKY.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2045" - }, - "appliesTo" : [ ] - }, - "TQV69AZUDVU7GUKY.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TQV69AZUDVU7GUKY.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TQV69AZUDVU7GUKY.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "TQV69AZUDVU7GUKY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TQV69AZUDVU7GUKY.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "TQV69AZUDVU7GUKY.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1998" - }, - "appliesTo" : [ ] - }, - "TQV69AZUDVU7GUKY.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "TQV69AZUDVU7GUKY.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TQV69AZUDVU7GUKY.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "TQV69AZUDVU7GUKY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TQV69AZUDVU7GUKY.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "TQV69AZUDVU7GUKY.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TQV69AZUDVU7GUKY.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TQV69AZUDVU7GUKY", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "TQV69AZUDVU7GUKY.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TQV69AZUDVU7GUKY.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3347" - }, - "appliesTo" : [ ] - }, - "TQV69AZUDVU7GUKY.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TQV69AZUDVU7GUKY.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TQV69AZUDVU7GUKY.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "TQV69AZUDVU7GUKY", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "TQV69AZUDVU7GUKY.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "TQV69AZUDVU7GUKY.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9098" - }, - "appliesTo" : [ ] - }, - "TQV69AZUDVU7GUKY.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "TQV69AZUDVU7GUKY.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TQV69AZUDVU7GUKY.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TQV69AZUDVU7GUKY", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "TQV69AZUDVU7GUKY.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TQV69AZUDVU7GUKY.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6705" - }, - "appliesTo" : [ ] - }, - "TQV69AZUDVU7GUKY.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TQV69AZUDVU7GUKY.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TQV69AZUDVU7GUKY.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "TQV69AZUDVU7GUKY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TQV69AZUDVU7GUKY.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "TQV69AZUDVU7GUKY.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TQV69AZUDVU7GUKY.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "TQV69AZUDVU7GUKY.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3861" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TQV69AZUDVU7GUKY.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "TQV69AZUDVU7GUKY", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "TQV69AZUDVU7GUKY.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "TQV69AZUDVU7GUKY.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1500000000" - }, - "appliesTo" : [ ] - }, - "TQV69AZUDVU7GUKY.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "TQV69AZUDVU7GUKY.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5385" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TQV69AZUDVU7GUKY.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TQV69AZUDVU7GUKY", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "TQV69AZUDVU7GUKY.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TQV69AZUDVU7GUKY.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TQV69AZUDVU7GUKY.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "TQV69AZUDVU7GUKY", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "TQV69AZUDVU7GUKY.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "TQV69AZUDVU7GUKY.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "FSBXVV6Q3V6PKBSN" : { - "FSBXVV6Q3V6PKBSN.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "FSBXVV6Q3V6PKBSN", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "FSBXVV6Q3V6PKBSN.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "FSBXVV6Q3V6PKBSN.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9934" - }, - "appliesTo" : [ ] - }, - "FSBXVV6Q3V6PKBSN.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "FSBXVV6Q3V6PKBSN.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FSBXVV6Q3V6PKBSN.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "FSBXVV6Q3V6PKBSN", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "FSBXVV6Q3V6PKBSN.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "FSBXVV6Q3V6PKBSN.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19170" - }, - "appliesTo" : [ ] - }, - "FSBXVV6Q3V6PKBSN.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "FSBXVV6Q3V6PKBSN.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FSBXVV6Q3V6PKBSN.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "FSBXVV6Q3V6PKBSN", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "FSBXVV6Q3V6PKBSN.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "FSBXVV6Q3V6PKBSN.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7504000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FSBXVV6Q3V6PKBSN.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "FSBXVV6Q3V6PKBSN", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "FSBXVV6Q3V6PKBSN.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "FSBXVV6Q3V6PKBSN.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7634000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FSBXVV6Q3V6PKBSN.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "FSBXVV6Q3V6PKBSN", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "FSBXVV6Q3V6PKBSN.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "FSBXVV6Q3V6PKBSN.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3425" - }, - "appliesTo" : [ ] - }, - "FSBXVV6Q3V6PKBSN.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "FSBXVV6Q3V6PKBSN.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FSBXVV6Q3V6PKBSN.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "FSBXVV6Q3V6PKBSN", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "FSBXVV6Q3V6PKBSN.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "FSBXVV6Q3V6PKBSN.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7879000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FSBXVV6Q3V6PKBSN.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "FSBXVV6Q3V6PKBSN", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "FSBXVV6Q3V6PKBSN.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "FSBXVV6Q3V6PKBSN.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19819" - }, - "appliesTo" : [ ] - }, - "FSBXVV6Q3V6PKBSN.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "FSBXVV6Q3V6PKBSN.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FSBXVV6Q3V6PKBSN.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "FSBXVV6Q3V6PKBSN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FSBXVV6Q3V6PKBSN.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "FSBXVV6Q3V6PKBSN.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6982" - }, - "appliesTo" : [ ] - }, - "FSBXVV6Q3V6PKBSN.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "FSBXVV6Q3V6PKBSN.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FSBXVV6Q3V6PKBSN.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "FSBXVV6Q3V6PKBSN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FSBXVV6Q3V6PKBSN.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "FSBXVV6Q3V6PKBSN.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3999000000" - }, - "appliesTo" : [ ] - }, - "FSBXVV6Q3V6PKBSN.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "FSBXVV6Q3V6PKBSN.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3503" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FSBXVV6Q3V6PKBSN.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "FSBXVV6Q3V6PKBSN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FSBXVV6Q3V6PKBSN.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "FSBXVV6Q3V6PKBSN.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8065000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FSBXVV6Q3V6PKBSN.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "FSBXVV6Q3V6PKBSN", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "FSBXVV6Q3V6PKBSN.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "FSBXVV6Q3V6PKBSN.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "FSBXVV6Q3V6PKBSN.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "FSBXVV6Q3V6PKBSN.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6830" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FSBXVV6Q3V6PKBSN.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "FSBXVV6Q3V6PKBSN", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "FSBXVV6Q3V6PKBSN.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "FSBXVV6Q3V6PKBSN.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9776" - }, - "appliesTo" : [ ] - }, - "FSBXVV6Q3V6PKBSN.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "FSBXVV6Q3V6PKBSN.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "N9AQNRUTKCFEVCJ6" : { - "N9AQNRUTKCFEVCJ6.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "N9AQNRUTKCFEVCJ6", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "N9AQNRUTKCFEVCJ6.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "N9AQNRUTKCFEVCJ6.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2261" - }, - "appliesTo" : [ ] - }, - "N9AQNRUTKCFEVCJ6.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "N9AQNRUTKCFEVCJ6.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "N9AQNRUTKCFEVCJ6.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "N9AQNRUTKCFEVCJ6", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "N9AQNRUTKCFEVCJ6.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "N9AQNRUTKCFEVCJ6.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "N9AQNRUTKCFEVCJ6.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "N9AQNRUTKCFEVCJ6", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "N9AQNRUTKCFEVCJ6.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "N9AQNRUTKCFEVCJ6.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6105" - }, - "appliesTo" : [ ] - }, - "N9AQNRUTKCFEVCJ6.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "N9AQNRUTKCFEVCJ6.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "N9AQNRUTKCFEVCJ6.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "N9AQNRUTKCFEVCJ6", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "N9AQNRUTKCFEVCJ6.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "N9AQNRUTKCFEVCJ6.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3399" - }, - "appliesTo" : [ ] - }, - "N9AQNRUTKCFEVCJ6.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "N9AQNRUTKCFEVCJ6.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "N9AQNRUTKCFEVCJ6.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "N9AQNRUTKCFEVCJ6", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "N9AQNRUTKCFEVCJ6.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "N9AQNRUTKCFEVCJ6.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6743" - }, - "appliesTo" : [ ] - }, - "N9AQNRUTKCFEVCJ6.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "N9AQNRUTKCFEVCJ6.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "N9AQNRUTKCFEVCJ6.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "N9AQNRUTKCFEVCJ6", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "N9AQNRUTKCFEVCJ6.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "N9AQNRUTKCFEVCJ6.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4318" - }, - "appliesTo" : [ ] - }, - "N9AQNRUTKCFEVCJ6.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "N9AQNRUTKCFEVCJ6.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "N9AQNRUTKCFEVCJ6.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "N9AQNRUTKCFEVCJ6", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "N9AQNRUTKCFEVCJ6.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "N9AQNRUTKCFEVCJ6.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "N9AQNRUTKCFEVCJ6.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "N9AQNRUTKCFEVCJ6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N9AQNRUTKCFEVCJ6.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "N9AQNRUTKCFEVCJ6.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "N9AQNRUTKCFEVCJ6.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "N9AQNRUTKCFEVCJ6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N9AQNRUTKCFEVCJ6.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "N9AQNRUTKCFEVCJ6.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3896" - }, - "appliesTo" : [ ] - }, - "N9AQNRUTKCFEVCJ6.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "N9AQNRUTKCFEVCJ6.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "N9AQNRUTKCFEVCJ6.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "N9AQNRUTKCFEVCJ6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N9AQNRUTKCFEVCJ6.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "N9AQNRUTKCFEVCJ6.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1988" - }, - "appliesTo" : [ ] - }, - "N9AQNRUTKCFEVCJ6.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "N9AQNRUTKCFEVCJ6.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "N9AQNRUTKCFEVCJ6.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "N9AQNRUTKCFEVCJ6", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "N9AQNRUTKCFEVCJ6.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "N9AQNRUTKCFEVCJ6.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9177" - }, - "appliesTo" : [ ] - }, - "N9AQNRUTKCFEVCJ6.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "N9AQNRUTKCFEVCJ6.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "5U9FJ3JR532G32NE" : { - "5U9FJ3JR532G32NE.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "5U9FJ3JR532G32NE", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "5U9FJ3JR532G32NE.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "5U9FJ3JR532G32NE.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.9610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "5U9FJ3JR532G32NE.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "5U9FJ3JR532G32NE", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "5U9FJ3JR532G32NE.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "5U9FJ3JR532G32NE.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30324" - }, - "appliesTo" : [ ] - }, - "5U9FJ3JR532G32NE.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "5U9FJ3JR532G32NE.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5U9FJ3JR532G32NE.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "5U9FJ3JR532G32NE", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "5U9FJ3JR532G32NE.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "5U9FJ3JR532G32NE.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "51077" - }, - "appliesTo" : [ ] - }, - "5U9FJ3JR532G32NE.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "5U9FJ3JR532G32NE.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5U9FJ3JR532G32NE.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "5U9FJ3JR532G32NE", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "5U9FJ3JR532G32NE.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "5U9FJ3JR532G32NE.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "127326" - }, - "appliesTo" : [ ] - }, - "5U9FJ3JR532G32NE.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "5U9FJ3JR532G32NE.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5U9FJ3JR532G32NE.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "5U9FJ3JR532G32NE", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "5U9FJ3JR532G32NE.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "5U9FJ3JR532G32NE.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "70253" - }, - "appliesTo" : [ ] - }, - "5U9FJ3JR532G32NE.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "5U9FJ3JR532G32NE.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "F5ZPZV2EEY3FC3V9" : { - "F5ZPZV2EEY3FC3V9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "F5ZPZV2EEY3FC3V9", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "F5ZPZV2EEY3FC3V9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "F5ZPZV2EEY3FC3V9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4561" - }, - "appliesTo" : [ ] - }, - "F5ZPZV2EEY3FC3V9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "F5ZPZV2EEY3FC3V9.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "F5ZPZV2EEY3FC3V9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "F5ZPZV2EEY3FC3V9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "F5ZPZV2EEY3FC3V9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "F5ZPZV2EEY3FC3V9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3190000000" - }, - "appliesTo" : [ ] - }, - "F5ZPZV2EEY3FC3V9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "F5ZPZV2EEY3FC3V9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1860" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "F5ZPZV2EEY3FC3V9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "F5ZPZV2EEY3FC3V9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "F5ZPZV2EEY3FC3V9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "F5ZPZV2EEY3FC3V9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9635" - }, - "appliesTo" : [ ] - }, - "F5ZPZV2EEY3FC3V9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "F5ZPZV2EEY3FC3V9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "F5ZPZV2EEY3FC3V9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "F5ZPZV2EEY3FC3V9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "F5ZPZV2EEY3FC3V9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "F5ZPZV2EEY3FC3V9.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "F5ZPZV2EEY3FC3V9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "F5ZPZV2EEY3FC3V9", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "F5ZPZV2EEY3FC3V9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "F5ZPZV2EEY3FC3V9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4101" - }, - "appliesTo" : [ ] - }, - "F5ZPZV2EEY3FC3V9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "F5ZPZV2EEY3FC3V9.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "9Z7C9YEQ5U8P5GDZ" : { - "9Z7C9YEQ5U8P5GDZ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "9Z7C9YEQ5U8P5GDZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9Z7C9YEQ5U8P5GDZ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "9Z7C9YEQ5U8P5GDZ.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "9Z7C9YEQ5U8P5GDZ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "9Z7C9YEQ5U8P5GDZ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3793" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9Z7C9YEQ5U8P5GDZ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "9Z7C9YEQ5U8P5GDZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9Z7C9YEQ5U8P5GDZ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "9Z7C9YEQ5U8P5GDZ.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "9Z7C9YEQ5U8P5GDZ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "9Z7C9YEQ5U8P5GDZ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4318" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9Z7C9YEQ5U8P5GDZ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "9Z7C9YEQ5U8P5GDZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9Z7C9YEQ5U8P5GDZ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "9Z7C9YEQ5U8P5GDZ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1963" - }, - "appliesTo" : [ ] - }, - "9Z7C9YEQ5U8P5GDZ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "9Z7C9YEQ5U8P5GDZ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9Z7C9YEQ5U8P5GDZ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "9Z7C9YEQ5U8P5GDZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9Z7C9YEQ5U8P5GDZ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "9Z7C9YEQ5U8P5GDZ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9Z7C9YEQ5U8P5GDZ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "9Z7C9YEQ5U8P5GDZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9Z7C9YEQ5U8P5GDZ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "9Z7C9YEQ5U8P5GDZ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2480000000" - }, - "appliesTo" : [ ] - }, - "9Z7C9YEQ5U8P5GDZ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "9Z7C9YEQ5U8P5GDZ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2231" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9Z7C9YEQ5U8P5GDZ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "9Z7C9YEQ5U8P5GDZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9Z7C9YEQ5U8P5GDZ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "9Z7C9YEQ5U8P5GDZ.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9Z7C9YEQ5U8P5GDZ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "9Z7C9YEQ5U8P5GDZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9Z7C9YEQ5U8P5GDZ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "9Z7C9YEQ5U8P5GDZ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3819" - }, - "appliesTo" : [ ] - }, - "9Z7C9YEQ5U8P5GDZ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "9Z7C9YEQ5U8P5GDZ.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9Z7C9YEQ5U8P5GDZ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "9Z7C9YEQ5U8P5GDZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9Z7C9YEQ5U8P5GDZ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "9Z7C9YEQ5U8P5GDZ.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9Z7C9YEQ5U8P5GDZ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "9Z7C9YEQ5U8P5GDZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9Z7C9YEQ5U8P5GDZ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "9Z7C9YEQ5U8P5GDZ.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "9Z7C9YEQ5U8P5GDZ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "9Z7C9YEQ5U8P5GDZ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8522" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9Z7C9YEQ5U8P5GDZ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "9Z7C9YEQ5U8P5GDZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9Z7C9YEQ5U8P5GDZ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "9Z7C9YEQ5U8P5GDZ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4346" - }, - "appliesTo" : [ ] - }, - "9Z7C9YEQ5U8P5GDZ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "9Z7C9YEQ5U8P5GDZ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9Z7C9YEQ5U8P5GDZ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "9Z7C9YEQ5U8P5GDZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9Z7C9YEQ5U8P5GDZ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "9Z7C9YEQ5U8P5GDZ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9Z7C9YEQ5U8P5GDZ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "9Z7C9YEQ5U8P5GDZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9Z7C9YEQ5U8P5GDZ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "9Z7C9YEQ5U8P5GDZ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7212" - }, - "appliesTo" : [ ] - }, - "9Z7C9YEQ5U8P5GDZ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "9Z7C9YEQ5U8P5GDZ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "URGXD2SFFV6PJGW7" : { - "URGXD2SFFV6PJGW7.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "URGXD2SFFV6PJGW7", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "URGXD2SFFV6PJGW7.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "URGXD2SFFV6PJGW7.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3220000000" - }, - "appliesTo" : [ ] - }, - "URGXD2SFFV6PJGW7.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "URGXD2SFFV6PJGW7.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2083" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "URGXD2SFFV6PJGW7.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "URGXD2SFFV6PJGW7", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "URGXD2SFFV6PJGW7.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "URGXD2SFFV6PJGW7.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4808" - }, - "appliesTo" : [ ] - }, - "URGXD2SFFV6PJGW7.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "URGXD2SFFV6PJGW7.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "URGXD2SFFV6PJGW7.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "URGXD2SFFV6PJGW7", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "URGXD2SFFV6PJGW7.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "URGXD2SFFV6PJGW7.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9956" - }, - "appliesTo" : [ ] - }, - "URGXD2SFFV6PJGW7.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "URGXD2SFFV6PJGW7.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "URGXD2SFFV6PJGW7.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "URGXD2SFFV6PJGW7", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "URGXD2SFFV6PJGW7.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "URGXD2SFFV6PJGW7.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3163" - }, - "appliesTo" : [ ] - }, - "URGXD2SFFV6PJGW7.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "URGXD2SFFV6PJGW7.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "URGXD2SFFV6PJGW7.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "URGXD2SFFV6PJGW7", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "URGXD2SFFV6PJGW7.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "URGXD2SFFV6PJGW7.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "Z35WNPQJZZCRRJYH" : { - "Z35WNPQJZZCRRJYH.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Z35WNPQJZZCRRJYH", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "Z35WNPQJZZCRRJYH.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Z35WNPQJZZCRRJYH.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7901" - }, - "appliesTo" : [ ] - }, - "Z35WNPQJZZCRRJYH.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Z35WNPQJZZCRRJYH.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Z35WNPQJZZCRRJYH.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Z35WNPQJZZCRRJYH", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "Z35WNPQJZZCRRJYH.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Z35WNPQJZZCRRJYH.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2492" - }, - "appliesTo" : [ ] - }, - "Z35WNPQJZZCRRJYH.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Z35WNPQJZZCRRJYH.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z35WNPQJZZCRRJYH.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Z35WNPQJZZCRRJYH", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "Z35WNPQJZZCRRJYH.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Z35WNPQJZZCRRJYH.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1588" - }, - "appliesTo" : [ ] - }, - "Z35WNPQJZZCRRJYH.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Z35WNPQJZZCRRJYH.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z35WNPQJZZCRRJYH.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Z35WNPQJZZCRRJYH", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "Z35WNPQJZZCRRJYH.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Z35WNPQJZZCRRJYH.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Z35WNPQJZZCRRJYH.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Z35WNPQJZZCRRJYH", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "Z35WNPQJZZCRRJYH.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Z35WNPQJZZCRRJYH.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3642" - }, - "appliesTo" : [ ] - }, - "Z35WNPQJZZCRRJYH.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Z35WNPQJZZCRRJYH.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "CNQRJ2XRQ5WYZJQ3" : { - "CNQRJ2XRQ5WYZJQ3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "CNQRJ2XRQ5WYZJQ3", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "CNQRJ2XRQ5WYZJQ3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "CNQRJ2XRQ5WYZJQ3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6706" - }, - "appliesTo" : [ ] - }, - "CNQRJ2XRQ5WYZJQ3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "CNQRJ2XRQ5WYZJQ3.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CNQRJ2XRQ5WYZJQ3.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "CNQRJ2XRQ5WYZJQ3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CNQRJ2XRQ5WYZJQ3.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "CNQRJ2XRQ5WYZJQ3.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9067" - }, - "appliesTo" : [ ] - }, - "CNQRJ2XRQ5WYZJQ3.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "CNQRJ2XRQ5WYZJQ3.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CNQRJ2XRQ5WYZJQ3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "CNQRJ2XRQ5WYZJQ3", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "CNQRJ2XRQ5WYZJQ3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "CNQRJ2XRQ5WYZJQ3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16608" - }, - "appliesTo" : [ ] - }, - "CNQRJ2XRQ5WYZJQ3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "CNQRJ2XRQ5WYZJQ3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CNQRJ2XRQ5WYZJQ3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "CNQRJ2XRQ5WYZJQ3", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "CNQRJ2XRQ5WYZJQ3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "CNQRJ2XRQ5WYZJQ3.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3240000000" - }, - "appliesTo" : [ ] - }, - "CNQRJ2XRQ5WYZJQ3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "CNQRJ2XRQ5WYZJQ3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8525" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CNQRJ2XRQ5WYZJQ3.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "CNQRJ2XRQ5WYZJQ3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CNQRJ2XRQ5WYZJQ3.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "CNQRJ2XRQ5WYZJQ3.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CNQRJ2XRQ5WYZJQ3.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "CNQRJ2XRQ5WYZJQ3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CNQRJ2XRQ5WYZJQ3.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "CNQRJ2XRQ5WYZJQ3.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CNQRJ2XRQ5WYZJQ3.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "CNQRJ2XRQ5WYZJQ3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CNQRJ2XRQ5WYZJQ3.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "CNQRJ2XRQ5WYZJQ3.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3667" - }, - "appliesTo" : [ ] - }, - "CNQRJ2XRQ5WYZJQ3.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "CNQRJ2XRQ5WYZJQ3.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CNQRJ2XRQ5WYZJQ3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "CNQRJ2XRQ5WYZJQ3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CNQRJ2XRQ5WYZJQ3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "CNQRJ2XRQ5WYZJQ3.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CNQRJ2XRQ5WYZJQ3.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "CNQRJ2XRQ5WYZJQ3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CNQRJ2XRQ5WYZJQ3.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "CNQRJ2XRQ5WYZJQ3.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CNQRJ2XRQ5WYZJQ3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "CNQRJ2XRQ5WYZJQ3", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "CNQRJ2XRQ5WYZJQ3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "CNQRJ2XRQ5WYZJQ3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3388" - }, - "appliesTo" : [ ] - }, - "CNQRJ2XRQ5WYZJQ3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "CNQRJ2XRQ5WYZJQ3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CNQRJ2XRQ5WYZJQ3.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "CNQRJ2XRQ5WYZJQ3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CNQRJ2XRQ5WYZJQ3.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "CNQRJ2XRQ5WYZJQ3.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17964" - }, - "appliesTo" : [ ] - }, - "CNQRJ2XRQ5WYZJQ3.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "CNQRJ2XRQ5WYZJQ3.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CNQRJ2XRQ5WYZJQ3.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "CNQRJ2XRQ5WYZJQ3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CNQRJ2XRQ5WYZJQ3.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "CNQRJ2XRQ5WYZJQ3.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7252" - }, - "appliesTo" : [ ] - }, - "CNQRJ2XRQ5WYZJQ3.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "CNQRJ2XRQ5WYZJQ3.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "XCXYQ48G7HXYYHAC" : { - "XCXYQ48G7HXYYHAC.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "XCXYQ48G7HXYYHAC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XCXYQ48G7HXYYHAC.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "XCXYQ48G7HXYYHAC.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XCXYQ48G7HXYYHAC.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XCXYQ48G7HXYYHAC", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "XCXYQ48G7HXYYHAC.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XCXYQ48G7HXYYHAC.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2537" - }, - "appliesTo" : [ ] - }, - "XCXYQ48G7HXYYHAC.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XCXYQ48G7HXYYHAC.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XCXYQ48G7HXYYHAC.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "XCXYQ48G7HXYYHAC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XCXYQ48G7HXYYHAC.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "XCXYQ48G7HXYYHAC.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3860000000" - }, - "appliesTo" : [ ] - }, - "XCXYQ48G7HXYYHAC.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "XCXYQ48G7HXYYHAC.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2245" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XCXYQ48G7HXYYHAC.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XCXYQ48G7HXYYHAC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XCXYQ48G7HXYYHAC.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XCXYQ48G7HXYYHAC.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XCXYQ48G7HXYYHAC.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "XCXYQ48G7HXYYHAC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XCXYQ48G7HXYYHAC.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "XCXYQ48G7HXYYHAC.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5539" - }, - "appliesTo" : [ ] - }, - "XCXYQ48G7HXYYHAC.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "XCXYQ48G7HXYYHAC.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XCXYQ48G7HXYYHAC.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "XCXYQ48G7HXYYHAC", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "XCXYQ48G7HXYYHAC.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "XCXYQ48G7HXYYHAC.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14012" - }, - "appliesTo" : [ ] - }, - "XCXYQ48G7HXYYHAC.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "XCXYQ48G7HXYYHAC.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XCXYQ48G7HXYYHAC.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "XCXYQ48G7HXYYHAC", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "XCXYQ48G7HXYYHAC.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "XCXYQ48G7HXYYHAC.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6850" - }, - "appliesTo" : [ ] - }, - "XCXYQ48G7HXYYHAC.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "XCXYQ48G7HXYYHAC.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XCXYQ48G7HXYYHAC.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XCXYQ48G7HXYYHAC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XCXYQ48G7HXYYHAC.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XCXYQ48G7HXYYHAC.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11684" - }, - "appliesTo" : [ ] - }, - "XCXYQ48G7HXYYHAC.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XCXYQ48G7HXYYHAC.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XCXYQ48G7HXYYHAC.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "XCXYQ48G7HXYYHAC", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "XCXYQ48G7HXYYHAC.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "XCXYQ48G7HXYYHAC.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XCXYQ48G7HXYYHAC.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XCXYQ48G7HXYYHAC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XCXYQ48G7HXYYHAC.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XCXYQ48G7HXYYHAC.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2090000000" - }, - "appliesTo" : [ ] - }, - "XCXYQ48G7HXYYHAC.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XCXYQ48G7HXYYHAC.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6938" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XCXYQ48G7HXYYHAC.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XCXYQ48G7HXYYHAC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XCXYQ48G7HXYYHAC.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XCXYQ48G7HXYYHAC.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "XCXYQ48G7HXYYHAC.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XCXYQ48G7HXYYHAC.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5053" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "MTH9HCPYR8DT5RJ2" : { - "MTH9HCPYR8DT5RJ2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "MTH9HCPYR8DT5RJ2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MTH9HCPYR8DT5RJ2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "MTH9HCPYR8DT5RJ2.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MTH9HCPYR8DT5RJ2.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "MTH9HCPYR8DT5RJ2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MTH9HCPYR8DT5RJ2.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "MTH9HCPYR8DT5RJ2.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1720000000" - }, - "appliesTo" : [ ] - }, - "MTH9HCPYR8DT5RJ2.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "MTH9HCPYR8DT5RJ2.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1506" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MTH9HCPYR8DT5RJ2.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "MTH9HCPYR8DT5RJ2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MTH9HCPYR8DT5RJ2.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "MTH9HCPYR8DT5RJ2.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MTH9HCPYR8DT5RJ2.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "MTH9HCPYR8DT5RJ2", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "MTH9HCPYR8DT5RJ2.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "MTH9HCPYR8DT5RJ2.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7601" - }, - "appliesTo" : [ ] - }, - "MTH9HCPYR8DT5RJ2.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "MTH9HCPYR8DT5RJ2.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MTH9HCPYR8DT5RJ2.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "MTH9HCPYR8DT5RJ2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MTH9HCPYR8DT5RJ2.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "MTH9HCPYR8DT5RJ2.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2985" - }, - "appliesTo" : [ ] - }, - "MTH9HCPYR8DT5RJ2.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "MTH9HCPYR8DT5RJ2.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MTH9HCPYR8DT5RJ2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "MTH9HCPYR8DT5RJ2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MTH9HCPYR8DT5RJ2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "MTH9HCPYR8DT5RJ2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "955" - }, - "appliesTo" : [ ] - }, - "MTH9HCPYR8DT5RJ2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "MTH9HCPYR8DT5RJ2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MTH9HCPYR8DT5RJ2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "MTH9HCPYR8DT5RJ2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "MTH9HCPYR8DT5RJ2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "MTH9HCPYR8DT5RJ2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2654" - }, - "appliesTo" : [ ] - }, - "MTH9HCPYR8DT5RJ2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "MTH9HCPYR8DT5RJ2.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MTH9HCPYR8DT5RJ2.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "MTH9HCPYR8DT5RJ2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "MTH9HCPYR8DT5RJ2.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "MTH9HCPYR8DT5RJ2.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2650" - }, - "appliesTo" : [ ] - }, - "MTH9HCPYR8DT5RJ2.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "MTH9HCPYR8DT5RJ2.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MTH9HCPYR8DT5RJ2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "MTH9HCPYR8DT5RJ2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MTH9HCPYR8DT5RJ2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "MTH9HCPYR8DT5RJ2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "MTH9HCPYR8DT5RJ2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "MTH9HCPYR8DT5RJ2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6333" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MTH9HCPYR8DT5RJ2.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "MTH9HCPYR8DT5RJ2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "MTH9HCPYR8DT5RJ2.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "MTH9HCPYR8DT5RJ2.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MTH9HCPYR8DT5RJ2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "MTH9HCPYR8DT5RJ2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MTH9HCPYR8DT5RJ2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "MTH9HCPYR8DT5RJ2.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1980000000" - }, - "appliesTo" : [ ] - }, - "MTH9HCPYR8DT5RJ2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "MTH9HCPYR8DT5RJ2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1535" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "W58JQDZKEMS87E3Y" : { - "W58JQDZKEMS87E3Y.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "W58JQDZKEMS87E3Y", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "W58JQDZKEMS87E3Y.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "W58JQDZKEMS87E3Y.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "235269" - }, - "appliesTo" : [ ] - }, - "W58JQDZKEMS87E3Y.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "W58JQDZKEMS87E3Y.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "W58JQDZKEMS87E3Y.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "W58JQDZKEMS87E3Y", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "W58JQDZKEMS87E3Y.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "W58JQDZKEMS87E3Y.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9720000000" - }, - "appliesTo" : [ ] - }, - "W58JQDZKEMS87E3Y.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "W58JQDZKEMS87E3Y.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "104379" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "W58JQDZKEMS87E3Y.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "W58JQDZKEMS87E3Y", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "W58JQDZKEMS87E3Y.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "W58JQDZKEMS87E3Y.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "120035" - }, - "appliesTo" : [ ] - }, - "W58JQDZKEMS87E3Y.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "W58JQDZKEMS87E3Y.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "W58JQDZKEMS87E3Y.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "W58JQDZKEMS87E3Y", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "W58JQDZKEMS87E3Y.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "W58JQDZKEMS87E3Y.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.5790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "W58JQDZKEMS87E3Y.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "W58JQDZKEMS87E3Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W58JQDZKEMS87E3Y.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "W58JQDZKEMS87E3Y.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "78895" - }, - "appliesTo" : [ ] - }, - "W58JQDZKEMS87E3Y.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "W58JQDZKEMS87E3Y.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.0060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "W58JQDZKEMS87E3Y.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "W58JQDZKEMS87E3Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W58JQDZKEMS87E3Y.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "W58JQDZKEMS87E3Y.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "18.9130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "W58JQDZKEMS87E3Y.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "W58JQDZKEMS87E3Y", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "W58JQDZKEMS87E3Y.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "W58JQDZKEMS87E3Y.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "134464" - }, - "appliesTo" : [ ] - }, - "W58JQDZKEMS87E3Y.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "W58JQDZKEMS87E3Y.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "W58JQDZKEMS87E3Y.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "W58JQDZKEMS87E3Y", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "W58JQDZKEMS87E3Y.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "W58JQDZKEMS87E3Y.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "68604" - }, - "appliesTo" : [ ] - }, - "W58JQDZKEMS87E3Y.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "W58JQDZKEMS87E3Y.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.8320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "W58JQDZKEMS87E3Y.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "W58JQDZKEMS87E3Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W58JQDZKEMS87E3Y.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "W58JQDZKEMS87E3Y.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "154634" - }, - "appliesTo" : [ ] - }, - "W58JQDZKEMS87E3Y.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "W58JQDZKEMS87E3Y.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "W58JQDZKEMS87E3Y.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "W58JQDZKEMS87E3Y", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "W58JQDZKEMS87E3Y.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "W58JQDZKEMS87E3Y.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "W58JQDZKEMS87E3Y.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "W58JQDZKEMS87E3Y.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "196232" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "W58JQDZKEMS87E3Y.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "W58JQDZKEMS87E3Y", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "W58JQDZKEMS87E3Y.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "W58JQDZKEMS87E3Y.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.8660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "AMRJDA6P539Y5Q3X" : { - "AMRJDA6P539Y5Q3X.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "AMRJDA6P539Y5Q3X", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AMRJDA6P539Y5Q3X.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "AMRJDA6P539Y5Q3X.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1210" - }, - "appliesTo" : [ ] - }, - "AMRJDA6P539Y5Q3X.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "AMRJDA6P539Y5Q3X.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AMRJDA6P539Y5Q3X.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "AMRJDA6P539Y5Q3X", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AMRJDA6P539Y5Q3X.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "AMRJDA6P539Y5Q3X.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2316" - }, - "appliesTo" : [ ] - }, - "AMRJDA6P539Y5Q3X.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "AMRJDA6P539Y5Q3X.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AMRJDA6P539Y5Q3X.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "AMRJDA6P539Y5Q3X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AMRJDA6P539Y5Q3X.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "AMRJDA6P539Y5Q3X.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2620" - }, - "appliesTo" : [ ] - }, - "AMRJDA6P539Y5Q3X.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "AMRJDA6P539Y5Q3X.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "AMRJDA6P539Y5Q3X.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "AMRJDA6P539Y5Q3X", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AMRJDA6P539Y5Q3X.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "AMRJDA6P539Y5Q3X.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2058000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "AMRJDA6P539Y5Q3X.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "AMRJDA6P539Y5Q3X", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AMRJDA6P539Y5Q3X.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "AMRJDA6P539Y5Q3X.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "AMRJDA6P539Y5Q3X.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "AMRJDA6P539Y5Q3X.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5433" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "AMRJDA6P539Y5Q3X.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "AMRJDA6P539Y5Q3X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AMRJDA6P539Y5Q3X.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "AMRJDA6P539Y5Q3X.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "AMRJDA6P539Y5Q3X.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "AMRJDA6P539Y5Q3X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AMRJDA6P539Y5Q3X.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "AMRJDA6P539Y5Q3X.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1365" - }, - "appliesTo" : [ ] - }, - "AMRJDA6P539Y5Q3X.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "AMRJDA6P539Y5Q3X.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1487000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "AMRJDA6P539Y5Q3X.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "AMRJDA6P539Y5Q3X", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AMRJDA6P539Y5Q3X.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "AMRJDA6P539Y5Q3X.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2454" - }, - "appliesTo" : [ ] - }, - "AMRJDA6P539Y5Q3X.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "AMRJDA6P539Y5Q3X.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AMRJDA6P539Y5Q3X.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "AMRJDA6P539Y5Q3X", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AMRJDA6P539Y5Q3X.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "AMRJDA6P539Y5Q3X.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2808000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "AMRJDA6P539Y5Q3X.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "AMRJDA6P539Y5Q3X", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AMRJDA6P539Y5Q3X.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "AMRJDA6P539Y5Q3X.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2770" - }, - "appliesTo" : [ ] - }, - "AMRJDA6P539Y5Q3X.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "AMRJDA6P539Y5Q3X.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "AMRJDA6P539Y5Q3X.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "AMRJDA6P539Y5Q3X", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AMRJDA6P539Y5Q3X.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "AMRJDA6P539Y5Q3X.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4647" - }, - "appliesTo" : [ ] - }, - "AMRJDA6P539Y5Q3X.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "AMRJDA6P539Y5Q3X.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AMRJDA6P539Y5Q3X.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "AMRJDA6P539Y5Q3X", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AMRJDA6P539Y5Q3X.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "AMRJDA6P539Y5Q3X.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2317000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "DT3ZK6NDAD7ADBVZ" : { - "DT3ZK6NDAD7ADBVZ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "DT3ZK6NDAD7ADBVZ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DT3ZK6NDAD7ADBVZ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "DT3ZK6NDAD7ADBVZ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DT3ZK6NDAD7ADBVZ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "DT3ZK6NDAD7ADBVZ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "DT3ZK6NDAD7ADBVZ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "DT3ZK6NDAD7ADBVZ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "DT3ZK6NDAD7ADBVZ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "DT3ZK6NDAD7ADBVZ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "81253" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DT3ZK6NDAD7ADBVZ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "DT3ZK6NDAD7ADBVZ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DT3ZK6NDAD7ADBVZ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "DT3ZK6NDAD7ADBVZ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "43678" - }, - "appliesTo" : [ ] - }, - "DT3ZK6NDAD7ADBVZ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "DT3ZK6NDAD7ADBVZ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DT3ZK6NDAD7ADBVZ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "DT3ZK6NDAD7ADBVZ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DT3ZK6NDAD7ADBVZ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "DT3ZK6NDAD7ADBVZ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DT3ZK6NDAD7ADBVZ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "DT3ZK6NDAD7ADBVZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DT3ZK6NDAD7ADBVZ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "DT3ZK6NDAD7ADBVZ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33947" - }, - "appliesTo" : [ ] - }, - "DT3ZK6NDAD7ADBVZ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "DT3ZK6NDAD7ADBVZ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DT3ZK6NDAD7ADBVZ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "DT3ZK6NDAD7ADBVZ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DT3ZK6NDAD7ADBVZ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "DT3ZK6NDAD7ADBVZ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5800000000" - }, - "appliesTo" : [ ] - }, - "DT3ZK6NDAD7ADBVZ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "DT3ZK6NDAD7ADBVZ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "41512" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DT3ZK6NDAD7ADBVZ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "DT3ZK6NDAD7ADBVZ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DT3ZK6NDAD7ADBVZ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "DT3ZK6NDAD7ADBVZ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "86678" - }, - "appliesTo" : [ ] - }, - "DT3ZK6NDAD7ADBVZ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "DT3ZK6NDAD7ADBVZ.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DT3ZK6NDAD7ADBVZ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "DT3ZK6NDAD7ADBVZ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DT3ZK6NDAD7ADBVZ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "DT3ZK6NDAD7ADBVZ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16024" - }, - "appliesTo" : [ ] - }, - "DT3ZK6NDAD7ADBVZ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "DT3ZK6NDAD7ADBVZ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DT3ZK6NDAD7ADBVZ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "DT3ZK6NDAD7ADBVZ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DT3ZK6NDAD7ADBVZ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "DT3ZK6NDAD7ADBVZ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DT3ZK6NDAD7ADBVZ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "DT3ZK6NDAD7ADBVZ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "DT3ZK6NDAD7ADBVZ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "DT3ZK6NDAD7ADBVZ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31763" - }, - "appliesTo" : [ ] - }, - "DT3ZK6NDAD7ADBVZ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "DT3ZK6NDAD7ADBVZ.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DT3ZK6NDAD7ADBVZ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "DT3ZK6NDAD7ADBVZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DT3ZK6NDAD7ADBVZ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "DT3ZK6NDAD7ADBVZ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17138" - }, - "appliesTo" : [ ] - }, - "DT3ZK6NDAD7ADBVZ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "DT3ZK6NDAD7ADBVZ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DT3ZK6NDAD7ADBVZ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "DT3ZK6NDAD7ADBVZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DT3ZK6NDAD7ADBVZ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "DT3ZK6NDAD7ADBVZ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.0070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "M9HNUU75T45RPFC6" : { - "M9HNUU75T45RPFC6.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "M9HNUU75T45RPFC6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M9HNUU75T45RPFC6.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "M9HNUU75T45RPFC6.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "M9HNUU75T45RPFC6.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "M9HNUU75T45RPFC6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M9HNUU75T45RPFC6.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "M9HNUU75T45RPFC6.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "590" - }, - "appliesTo" : [ ] - }, - "M9HNUU75T45RPFC6.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "M9HNUU75T45RPFC6.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "M9HNUU75T45RPFC6.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "M9HNUU75T45RPFC6", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "M9HNUU75T45RPFC6.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "M9HNUU75T45RPFC6.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1025" - }, - "appliesTo" : [ ] - }, - "M9HNUU75T45RPFC6.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "M9HNUU75T45RPFC6.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "M9HNUU75T45RPFC6.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "M9HNUU75T45RPFC6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M9HNUU75T45RPFC6.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "M9HNUU75T45RPFC6.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1102" - }, - "appliesTo" : [ ] - }, - "M9HNUU75T45RPFC6.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "M9HNUU75T45RPFC6.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "M9HNUU75T45RPFC6.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "M9HNUU75T45RPFC6", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "M9HNUU75T45RPFC6.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "M9HNUU75T45RPFC6.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1489" - }, - "appliesTo" : [ ] - }, - "M9HNUU75T45RPFC6.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "M9HNUU75T45RPFC6.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "M9HNUU75T45RPFC6.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "M9HNUU75T45RPFC6", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "M9HNUU75T45RPFC6.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "M9HNUU75T45RPFC6.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "M9HNUU75T45RPFC6.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "M9HNUU75T45RPFC6", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "M9HNUU75T45RPFC6.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "M9HNUU75T45RPFC6.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2528" - }, - "appliesTo" : [ ] - }, - "M9HNUU75T45RPFC6.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "M9HNUU75T45RPFC6.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "M9HNUU75T45RPFC6.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "M9HNUU75T45RPFC6", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "M9HNUU75T45RPFC6.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "M9HNUU75T45RPFC6.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1976" - }, - "appliesTo" : [ ] - }, - "M9HNUU75T45RPFC6.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "M9HNUU75T45RPFC6.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "M9HNUU75T45RPFC6.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "M9HNUU75T45RPFC6", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "M9HNUU75T45RPFC6.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "M9HNUU75T45RPFC6.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "M9HNUU75T45RPFC6.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "M9HNUU75T45RPFC6.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "998" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "M9HNUU75T45RPFC6.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "M9HNUU75T45RPFC6", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "M9HNUU75T45RPFC6.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "M9HNUU75T45RPFC6.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0480000000" - }, - "appliesTo" : [ ] - }, - "M9HNUU75T45RPFC6.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "M9HNUU75T45RPFC6.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "597" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "M9HNUU75T45RPFC6.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "M9HNUU75T45RPFC6", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "M9HNUU75T45RPFC6.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "M9HNUU75T45RPFC6.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "VERRUXNQ656VFYCC" : { - "VERRUXNQ656VFYCC.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "VERRUXNQ656VFYCC", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "VERRUXNQ656VFYCC.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "VERRUXNQ656VFYCC.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2899" - }, - "appliesTo" : [ ] - }, - "VERRUXNQ656VFYCC.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "VERRUXNQ656VFYCC.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VERRUXNQ656VFYCC.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "VERRUXNQ656VFYCC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VERRUXNQ656VFYCC.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "VERRUXNQ656VFYCC.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "529" - }, - "appliesTo" : [ ] - }, - "VERRUXNQ656VFYCC.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "VERRUXNQ656VFYCC.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0604000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VERRUXNQ656VFYCC.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "VERRUXNQ656VFYCC", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "VERRUXNQ656VFYCC.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "VERRUXNQ656VFYCC.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1125000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VERRUXNQ656VFYCC.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "VERRUXNQ656VFYCC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VERRUXNQ656VFYCC.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "VERRUXNQ656VFYCC.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1053" - }, - "appliesTo" : [ ] - }, - "VERRUXNQ656VFYCC.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "VERRUXNQ656VFYCC.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VERRUXNQ656VFYCC.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "VERRUXNQ656VFYCC", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "VERRUXNQ656VFYCC.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "VERRUXNQ656VFYCC.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1094000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VERRUXNQ656VFYCC.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "VERRUXNQ656VFYCC", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "VERRUXNQ656VFYCC.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "VERRUXNQ656VFYCC.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1181000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VERRUXNQ656VFYCC.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "VERRUXNQ656VFYCC", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "VERRUXNQ656VFYCC.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "VERRUXNQ656VFYCC.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "511" - }, - "appliesTo" : [ ] - }, - "VERRUXNQ656VFYCC.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "VERRUXNQ656VFYCC.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0584000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VERRUXNQ656VFYCC.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "VERRUXNQ656VFYCC", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "VERRUXNQ656VFYCC.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "VERRUXNQ656VFYCC.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1018" - }, - "appliesTo" : [ ] - }, - "VERRUXNQ656VFYCC.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "VERRUXNQ656VFYCC.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VERRUXNQ656VFYCC.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "VERRUXNQ656VFYCC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VERRUXNQ656VFYCC.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "VERRUXNQ656VFYCC.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1225000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VERRUXNQ656VFYCC.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "VERRUXNQ656VFYCC", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "VERRUXNQ656VFYCC.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "VERRUXNQ656VFYCC.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "VERRUXNQ656VFYCC.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "VERRUXNQ656VFYCC.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2808" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VERRUXNQ656VFYCC.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "VERRUXNQ656VFYCC", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "VERRUXNQ656VFYCC.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "VERRUXNQ656VFYCC.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0540000000" - }, - "appliesTo" : [ ] - }, - "VERRUXNQ656VFYCC.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "VERRUXNQ656VFYCC.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1419" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VERRUXNQ656VFYCC.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "VERRUXNQ656VFYCC", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "VERRUXNQ656VFYCC.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "VERRUXNQ656VFYCC.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1455" - }, - "appliesTo" : [ ] - }, - "VERRUXNQ656VFYCC.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "VERRUXNQ656VFYCC.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0554000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "SCYNS2QNCRN89WMZ" : { - "SCYNS2QNCRN89WMZ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "SCYNS2QNCRN89WMZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SCYNS2QNCRN89WMZ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "SCYNS2QNCRN89WMZ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "552" - }, - "appliesTo" : [ ] - }, - "SCYNS2QNCRN89WMZ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "SCYNS2QNCRN89WMZ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SCYNS2QNCRN89WMZ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SCYNS2QNCRN89WMZ", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "SCYNS2QNCRN89WMZ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SCYNS2QNCRN89WMZ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SCYNS2QNCRN89WMZ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "SCYNS2QNCRN89WMZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SCYNS2QNCRN89WMZ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "SCYNS2QNCRN89WMZ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1922000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SCYNS2QNCRN89WMZ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SCYNS2QNCRN89WMZ", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "SCYNS2QNCRN89WMZ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SCYNS2QNCRN89WMZ.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0971000000" - }, - "appliesTo" : [ ] - }, - "SCYNS2QNCRN89WMZ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SCYNS2QNCRN89WMZ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "976" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SCYNS2QNCRN89WMZ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "SCYNS2QNCRN89WMZ", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "SCYNS2QNCRN89WMZ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "SCYNS2QNCRN89WMZ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1122" - }, - "appliesTo" : [ ] - }, - "SCYNS2QNCRN89WMZ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "SCYNS2QNCRN89WMZ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1027000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SCYNS2QNCRN89WMZ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "SCYNS2QNCRN89WMZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SCYNS2QNCRN89WMZ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "SCYNS2QNCRN89WMZ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1607" - }, - "appliesTo" : [ ] - }, - "SCYNS2QNCRN89WMZ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "SCYNS2QNCRN89WMZ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SCYNS2QNCRN89WMZ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "SCYNS2QNCRN89WMZ", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "SCYNS2QNCRN89WMZ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "SCYNS2QNCRN89WMZ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1522000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SCYNS2QNCRN89WMZ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SCYNS2QNCRN89WMZ", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "SCYNS2QNCRN89WMZ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SCYNS2QNCRN89WMZ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1466" - }, - "appliesTo" : [ ] - }, - "SCYNS2QNCRN89WMZ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SCYNS2QNCRN89WMZ.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SCYNS2QNCRN89WMZ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SCYNS2QNCRN89WMZ", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "SCYNS2QNCRN89WMZ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SCYNS2QNCRN89WMZ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3411" - }, - "appliesTo" : [ ] - }, - "SCYNS2QNCRN89WMZ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SCYNS2QNCRN89WMZ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SCYNS2QNCRN89WMZ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "SCYNS2QNCRN89WMZ", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "SCYNS2QNCRN89WMZ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "SCYNS2QNCRN89WMZ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1402000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SCYNS2QNCRN89WMZ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "SCYNS2QNCRN89WMZ", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "SCYNS2QNCRN89WMZ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "SCYNS2QNCRN89WMZ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3776" - }, - "appliesTo" : [ ] - }, - "SCYNS2QNCRN89WMZ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "SCYNS2QNCRN89WMZ.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SCYNS2QNCRN89WMZ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SCYNS2QNCRN89WMZ", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "SCYNS2QNCRN89WMZ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SCYNS2QNCRN89WMZ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "480" - }, - "appliesTo" : [ ] - }, - "SCYNS2QNCRN89WMZ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SCYNS2QNCRN89WMZ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1148000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "7WXY6Y9EMWKMGGWT" : { - "7WXY6Y9EMWKMGGWT.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "7WXY6Y9EMWKMGGWT", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7WXY6Y9EMWKMGGWT.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "7WXY6Y9EMWKMGGWT.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5281" - }, - "appliesTo" : [ ] - }, - "7WXY6Y9EMWKMGGWT.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "7WXY6Y9EMWKMGGWT.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7WXY6Y9EMWKMGGWT.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "7WXY6Y9EMWKMGGWT", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "7WXY6Y9EMWKMGGWT.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "7WXY6Y9EMWKMGGWT.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7WXY6Y9EMWKMGGWT.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "7WXY6Y9EMWKMGGWT", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7WXY6Y9EMWKMGGWT.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "7WXY6Y9EMWKMGGWT.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0750000000" - }, - "appliesTo" : [ ] - }, - "7WXY6Y9EMWKMGGWT.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "7WXY6Y9EMWKMGGWT.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3406" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7WXY6Y9EMWKMGGWT.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "7WXY6Y9EMWKMGGWT", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "7WXY6Y9EMWKMGGWT.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "7WXY6Y9EMWKMGGWT.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2511" - }, - "appliesTo" : [ ] - }, - "7WXY6Y9EMWKMGGWT.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "7WXY6Y9EMWKMGGWT.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7WXY6Y9EMWKMGGWT.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "7WXY6Y9EMWKMGGWT", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "7WXY6Y9EMWKMGGWT.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "7WXY6Y9EMWKMGGWT.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4065" - }, - "appliesTo" : [ ] - }, - "7WXY6Y9EMWKMGGWT.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "7WXY6Y9EMWKMGGWT.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7WXY6Y9EMWKMGGWT.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "7WXY6Y9EMWKMGGWT", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "7WXY6Y9EMWKMGGWT.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "7WXY6Y9EMWKMGGWT.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7WXY6Y9EMWKMGGWT.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "7WXY6Y9EMWKMGGWT", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "7WXY6Y9EMWKMGGWT.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "7WXY6Y9EMWKMGGWT.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1989" - }, - "appliesTo" : [ ] - }, - "7WXY6Y9EMWKMGGWT.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "7WXY6Y9EMWKMGGWT.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7WXY6Y9EMWKMGGWT.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "7WXY6Y9EMWKMGGWT", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "7WXY6Y9EMWKMGGWT.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "7WXY6Y9EMWKMGGWT.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1307" - }, - "appliesTo" : [ ] - }, - "7WXY6Y9EMWKMGGWT.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "7WXY6Y9EMWKMGGWT.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7WXY6Y9EMWKMGGWT.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "7WXY6Y9EMWKMGGWT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7WXY6Y9EMWKMGGWT.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "7WXY6Y9EMWKMGGWT.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7WXY6Y9EMWKMGGWT.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "7WXY6Y9EMWKMGGWT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7WXY6Y9EMWKMGGWT.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "7WXY6Y9EMWKMGGWT.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "7WXY6Y9EMWKMGGWT.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "7WXY6Y9EMWKMGGWT.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2238" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7WXY6Y9EMWKMGGWT.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "7WXY6Y9EMWKMGGWT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7WXY6Y9EMWKMGGWT.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "7WXY6Y9EMWKMGGWT.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1170" - }, - "appliesTo" : [ ] - }, - "7WXY6Y9EMWKMGGWT.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "7WXY6Y9EMWKMGGWT.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "6SB59AKPWK57QDT4" : { - "6SB59AKPWK57QDT4.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6SB59AKPWK57QDT4", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6SB59AKPWK57QDT4.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6SB59AKPWK57QDT4.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6SB59AKPWK57QDT4.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6SB59AKPWK57QDT4", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6SB59AKPWK57QDT4.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6SB59AKPWK57QDT4.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2741" - }, - "appliesTo" : [ ] - }, - "6SB59AKPWK57QDT4.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6SB59AKPWK57QDT4.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6SB59AKPWK57QDT4.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6SB59AKPWK57QDT4", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "6SB59AKPWK57QDT4.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6SB59AKPWK57QDT4.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8691" - }, - "appliesTo" : [ ] - }, - "6SB59AKPWK57QDT4.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6SB59AKPWK57QDT4.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6SB59AKPWK57QDT4.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6SB59AKPWK57QDT4", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "6SB59AKPWK57QDT4.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6SB59AKPWK57QDT4.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4006" - }, - "appliesTo" : [ ] - }, - "6SB59AKPWK57QDT4.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6SB59AKPWK57QDT4.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6SB59AKPWK57QDT4.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6SB59AKPWK57QDT4", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6SB59AKPWK57QDT4.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6SB59AKPWK57QDT4.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2670000000" - }, - "appliesTo" : [ ] - }, - "6SB59AKPWK57QDT4.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6SB59AKPWK57QDT4.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1747" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "SKGAAJVJUYA4XN4J" : { - "SKGAAJVJUYA4XN4J.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "SKGAAJVJUYA4XN4J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SKGAAJVJUYA4XN4J.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "SKGAAJVJUYA4XN4J.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9248" - }, - "appliesTo" : [ ] - }, - "SKGAAJVJUYA4XN4J.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "SKGAAJVJUYA4XN4J.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SKGAAJVJUYA4XN4J.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SKGAAJVJUYA4XN4J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SKGAAJVJUYA4XN4J.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SKGAAJVJUYA4XN4J.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SKGAAJVJUYA4XN4J.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "SKGAAJVJUYA4XN4J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SKGAAJVJUYA4XN4J.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "SKGAAJVJUYA4XN4J.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SKGAAJVJUYA4XN4J.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SKGAAJVJUYA4XN4J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SKGAAJVJUYA4XN4J.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SKGAAJVJUYA4XN4J.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29330" - }, - "appliesTo" : [ ] - }, - "SKGAAJVJUYA4XN4J.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SKGAAJVJUYA4XN4J.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SKGAAJVJUYA4XN4J.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SKGAAJVJUYA4XN4J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SKGAAJVJUYA4XN4J.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SKGAAJVJUYA4XN4J.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9180000000" - }, - "appliesTo" : [ ] - }, - "SKGAAJVJUYA4XN4J.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SKGAAJVJUYA4XN4J.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8042" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SKGAAJVJUYA4XN4J.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "SKGAAJVJUYA4XN4J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SKGAAJVJUYA4XN4J.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "SKGAAJVJUYA4XN4J.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17973" - }, - "appliesTo" : [ ] - }, - "SKGAAJVJUYA4XN4J.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "SKGAAJVJUYA4XN4J.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SKGAAJVJUYA4XN4J.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "SKGAAJVJUYA4XN4J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SKGAAJVJUYA4XN4J.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "SKGAAJVJUYA4XN4J.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SKGAAJVJUYA4XN4J.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SKGAAJVJUYA4XN4J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SKGAAJVJUYA4XN4J.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SKGAAJVJUYA4XN4J.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SKGAAJVJUYA4XN4J.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SKGAAJVJUYA4XN4J.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15762" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SKGAAJVJUYA4XN4J.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "SKGAAJVJUYA4XN4J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SKGAAJVJUYA4XN4J.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "SKGAAJVJUYA4XN4J.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18126" - }, - "appliesTo" : [ ] - }, - "SKGAAJVJUYA4XN4J.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "SKGAAJVJUYA4XN4J.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SKGAAJVJUYA4XN4J.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SKGAAJVJUYA4XN4J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SKGAAJVJUYA4XN4J.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SKGAAJVJUYA4XN4J.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15601" - }, - "appliesTo" : [ ] - }, - "SKGAAJVJUYA4XN4J.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SKGAAJVJUYA4XN4J.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SKGAAJVJUYA4XN4J.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "SKGAAJVJUYA4XN4J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SKGAAJVJUYA4XN4J.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "SKGAAJVJUYA4XN4J.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35227" - }, - "appliesTo" : [ ] - }, - "SKGAAJVJUYA4XN4J.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "SKGAAJVJUYA4XN4J.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SKGAAJVJUYA4XN4J.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "SKGAAJVJUYA4XN4J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SKGAAJVJUYA4XN4J.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "SKGAAJVJUYA4XN4J.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "6AHJNWJK7N3CKJ6D" : { - "6AHJNWJK7N3CKJ6D.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6AHJNWJK7N3CKJ6D", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6AHJNWJK7N3CKJ6D.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6AHJNWJK7N3CKJ6D.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13939" - }, - "appliesTo" : [ ] - }, - "6AHJNWJK7N3CKJ6D.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6AHJNWJK7N3CKJ6D.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6AHJNWJK7N3CKJ6D.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "6AHJNWJK7N3CKJ6D", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6AHJNWJK7N3CKJ6D.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "6AHJNWJK7N3CKJ6D.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28899" - }, - "appliesTo" : [ ] - }, - "6AHJNWJK7N3CKJ6D.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "6AHJNWJK7N3CKJ6D.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6AHJNWJK7N3CKJ6D.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "6AHJNWJK7N3CKJ6D", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6AHJNWJK7N3CKJ6D.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "6AHJNWJK7N3CKJ6D.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6AHJNWJK7N3CKJ6D.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "6AHJNWJK7N3CKJ6D", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6AHJNWJK7N3CKJ6D.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "6AHJNWJK7N3CKJ6D.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "77122" - }, - "appliesTo" : [ ] - }, - "6AHJNWJK7N3CKJ6D.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "6AHJNWJK7N3CKJ6D.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6AHJNWJK7N3CKJ6D.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6AHJNWJK7N3CKJ6D", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6AHJNWJK7N3CKJ6D.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6AHJNWJK7N3CKJ6D.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6AHJNWJK7N3CKJ6D.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "6AHJNWJK7N3CKJ6D", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6AHJNWJK7N3CKJ6D.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "6AHJNWJK7N3CKJ6D.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14542" - }, - "appliesTo" : [ ] - }, - "6AHJNWJK7N3CKJ6D.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "6AHJNWJK7N3CKJ6D.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6AHJNWJK7N3CKJ6D.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "6AHJNWJK7N3CKJ6D", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6AHJNWJK7N3CKJ6D.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "6AHJNWJK7N3CKJ6D.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6AHJNWJK7N3CKJ6D.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "6AHJNWJK7N3CKJ6D", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6AHJNWJK7N3CKJ6D.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "6AHJNWJK7N3CKJ6D.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38741" - }, - "appliesTo" : [ ] - }, - "6AHJNWJK7N3CKJ6D.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "6AHJNWJK7N3CKJ6D.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6AHJNWJK7N3CKJ6D.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "6AHJNWJK7N3CKJ6D", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6AHJNWJK7N3CKJ6D.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "6AHJNWJK7N3CKJ6D.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6AHJNWJK7N3CKJ6D.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6AHJNWJK7N3CKJ6D", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6AHJNWJK7N3CKJ6D.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6AHJNWJK7N3CKJ6D.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37555" - }, - "appliesTo" : [ ] - }, - "6AHJNWJK7N3CKJ6D.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6AHJNWJK7N3CKJ6D.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6AHJNWJK7N3CKJ6D.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6AHJNWJK7N3CKJ6D", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6AHJNWJK7N3CKJ6D.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6AHJNWJK7N3CKJ6D.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "6AHJNWJK7N3CKJ6D.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6AHJNWJK7N3CKJ6D.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "74173" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6AHJNWJK7N3CKJ6D.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6AHJNWJK7N3CKJ6D", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6AHJNWJK7N3CKJ6D.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6AHJNWJK7N3CKJ6D.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "6AHJNWJK7N3CKJ6D.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6AHJNWJK7N3CKJ6D.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27717" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "DUFUABZJFHZ5SWBJ" : { - "DUFUABZJFHZ5SWBJ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "DUFUABZJFHZ5SWBJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DUFUABZJFHZ5SWBJ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "DUFUABZJFHZ5SWBJ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DUFUABZJFHZ5SWBJ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "DUFUABZJFHZ5SWBJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DUFUABZJFHZ5SWBJ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "DUFUABZJFHZ5SWBJ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DUFUABZJFHZ5SWBJ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "DUFUABZJFHZ5SWBJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DUFUABZJFHZ5SWBJ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "DUFUABZJFHZ5SWBJ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1279" - }, - "appliesTo" : [ ] - }, - "DUFUABZJFHZ5SWBJ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "DUFUABZJFHZ5SWBJ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DUFUABZJFHZ5SWBJ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "DUFUABZJFHZ5SWBJ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "DUFUABZJFHZ5SWBJ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "DUFUABZJFHZ5SWBJ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1202" - }, - "appliesTo" : [ ] - }, - "DUFUABZJFHZ5SWBJ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "DUFUABZJFHZ5SWBJ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DUFUABZJFHZ5SWBJ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "DUFUABZJFHZ5SWBJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DUFUABZJFHZ5SWBJ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "DUFUABZJFHZ5SWBJ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DUFUABZJFHZ5SWBJ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "DUFUABZJFHZ5SWBJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DUFUABZJFHZ5SWBJ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "DUFUABZJFHZ5SWBJ.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "DUFUABZJFHZ5SWBJ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "DUFUABZJFHZ5SWBJ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6564" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DUFUABZJFHZ5SWBJ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "DUFUABZJFHZ5SWBJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DUFUABZJFHZ5SWBJ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "DUFUABZJFHZ5SWBJ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2536" - }, - "appliesTo" : [ ] - }, - "DUFUABZJFHZ5SWBJ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "DUFUABZJFHZ5SWBJ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DUFUABZJFHZ5SWBJ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "DUFUABZJFHZ5SWBJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DUFUABZJFHZ5SWBJ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "DUFUABZJFHZ5SWBJ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3156" - }, - "appliesTo" : [ ] - }, - "DUFUABZJFHZ5SWBJ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "DUFUABZJFHZ5SWBJ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DUFUABZJFHZ5SWBJ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "DUFUABZJFHZ5SWBJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DUFUABZJFHZ5SWBJ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "DUFUABZJFHZ5SWBJ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DUFUABZJFHZ5SWBJ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "DUFUABZJFHZ5SWBJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DUFUABZJFHZ5SWBJ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "DUFUABZJFHZ5SWBJ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3305" - }, - "appliesTo" : [ ] - }, - "DUFUABZJFHZ5SWBJ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "DUFUABZJFHZ5SWBJ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DUFUABZJFHZ5SWBJ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "DUFUABZJFHZ5SWBJ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "DUFUABZJFHZ5SWBJ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "DUFUABZJFHZ5SWBJ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6191" - }, - "appliesTo" : [ ] - }, - "DUFUABZJFHZ5SWBJ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "DUFUABZJFHZ5SWBJ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DUFUABZJFHZ5SWBJ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "DUFUABZJFHZ5SWBJ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "DUFUABZJFHZ5SWBJ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "DUFUABZJFHZ5SWBJ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2385" - }, - "appliesTo" : [ ] - }, - "DUFUABZJFHZ5SWBJ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "DUFUABZJFHZ5SWBJ.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "7MS6E9W2YWKJZRX5" : { - "7MS6E9W2YWKJZRX5.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "7MS6E9W2YWKJZRX5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7MS6E9W2YWKJZRX5.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "7MS6E9W2YWKJZRX5.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "7MS6E9W2YWKJZRX5.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "7MS6E9W2YWKJZRX5.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5758" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7MS6E9W2YWKJZRX5.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "7MS6E9W2YWKJZRX5", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7MS6E9W2YWKJZRX5.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "7MS6E9W2YWKJZRX5.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6911" - }, - "appliesTo" : [ ] - }, - "7MS6E9W2YWKJZRX5.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "7MS6E9W2YWKJZRX5.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7MS6E9W2YWKJZRX5.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "7MS6E9W2YWKJZRX5", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7MS6E9W2YWKJZRX5.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "7MS6E9W2YWKJZRX5.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7MS6E9W2YWKJZRX5.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "7MS6E9W2YWKJZRX5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7MS6E9W2YWKJZRX5.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "7MS6E9W2YWKJZRX5.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2413" - }, - "appliesTo" : [ ] - }, - "7MS6E9W2YWKJZRX5.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "7MS6E9W2YWKJZRX5.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7MS6E9W2YWKJZRX5.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "7MS6E9W2YWKJZRX5", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7MS6E9W2YWKJZRX5.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "7MS6E9W2YWKJZRX5.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2408" - }, - "appliesTo" : [ ] - }, - "7MS6E9W2YWKJZRX5.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "7MS6E9W2YWKJZRX5.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7MS6E9W2YWKJZRX5.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "7MS6E9W2YWKJZRX5", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7MS6E9W2YWKJZRX5.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "7MS6E9W2YWKJZRX5.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1800000000" - }, - "appliesTo" : [ ] - }, - "7MS6E9W2YWKJZRX5.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "7MS6E9W2YWKJZRX5.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1395" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7MS6E9W2YWKJZRX5.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "7MS6E9W2YWKJZRX5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7MS6E9W2YWKJZRX5.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "7MS6E9W2YWKJZRX5.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7MS6E9W2YWKJZRX5.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "7MS6E9W2YWKJZRX5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7MS6E9W2YWKJZRX5.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "7MS6E9W2YWKJZRX5.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1650000000" - }, - "appliesTo" : [ ] - }, - "7MS6E9W2YWKJZRX5.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "7MS6E9W2YWKJZRX5.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1443" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7MS6E9W2YWKJZRX5.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "7MS6E9W2YWKJZRX5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7MS6E9W2YWKJZRX5.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "7MS6E9W2YWKJZRX5.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7MS6E9W2YWKJZRX5.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "7MS6E9W2YWKJZRX5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7MS6E9W2YWKJZRX5.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "7MS6E9W2YWKJZRX5.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2860" - }, - "appliesTo" : [ ] - }, - "7MS6E9W2YWKJZRX5.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "7MS6E9W2YWKJZRX5.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7MS6E9W2YWKJZRX5.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "7MS6E9W2YWKJZRX5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7MS6E9W2YWKJZRX5.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "7MS6E9W2YWKJZRX5.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "868" - }, - "appliesTo" : [ ] - }, - "7MS6E9W2YWKJZRX5.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "7MS6E9W2YWKJZRX5.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "6FVWSFZ39BEVJUVW" : { - "6FVWSFZ39BEVJUVW.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "6FVWSFZ39BEVJUVW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6FVWSFZ39BEVJUVW.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "6FVWSFZ39BEVJUVW.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "619" - }, - "appliesTo" : [ ] - }, - "6FVWSFZ39BEVJUVW.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "6FVWSFZ39BEVJUVW.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0636000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6FVWSFZ39BEVJUVW.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6FVWSFZ39BEVJUVW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6FVWSFZ39BEVJUVW.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6FVWSFZ39BEVJUVW.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1254000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6FVWSFZ39BEVJUVW.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "6FVWSFZ39BEVJUVW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6FVWSFZ39BEVJUVW.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "6FVWSFZ39BEVJUVW.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1393000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6FVWSFZ39BEVJUVW.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6FVWSFZ39BEVJUVW", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "6FVWSFZ39BEVJUVW.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6FVWSFZ39BEVJUVW.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1119" - }, - "appliesTo" : [ ] - }, - "6FVWSFZ39BEVJUVW.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6FVWSFZ39BEVJUVW.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6FVWSFZ39BEVJUVW.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "6FVWSFZ39BEVJUVW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6FVWSFZ39BEVJUVW.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "6FVWSFZ39BEVJUVW.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1233" - }, - "appliesTo" : [ ] - }, - "6FVWSFZ39BEVJUVW.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "6FVWSFZ39BEVJUVW.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0465000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6FVWSFZ39BEVJUVW.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6FVWSFZ39BEVJUVW", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "6FVWSFZ39BEVJUVW.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6FVWSFZ39BEVJUVW.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "6FVWSFZ39BEVJUVW.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6FVWSFZ39BEVJUVW.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1042" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6FVWSFZ39BEVJUVW.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6FVWSFZ39BEVJUVW", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "6FVWSFZ39BEVJUVW.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6FVWSFZ39BEVJUVW.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "6FVWSFZ39BEVJUVW.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6FVWSFZ39BEVJUVW.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2137" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6FVWSFZ39BEVJUVW.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "6FVWSFZ39BEVJUVW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6FVWSFZ39BEVJUVW.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "6FVWSFZ39BEVJUVW.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1054000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6FVWSFZ39BEVJUVW.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6FVWSFZ39BEVJUVW", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "6FVWSFZ39BEVJUVW.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6FVWSFZ39BEVJUVW.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0570000000" - }, - "appliesTo" : [ ] - }, - "6FVWSFZ39BEVJUVW.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6FVWSFZ39BEVJUVW.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "560" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6FVWSFZ39BEVJUVW.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "6FVWSFZ39BEVJUVW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6FVWSFZ39BEVJUVW.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "6FVWSFZ39BEVJUVW.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1159" - }, - "appliesTo" : [ ] - }, - "6FVWSFZ39BEVJUVW.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "6FVWSFZ39BEVJUVW.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6FVWSFZ39BEVJUVW.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "6FVWSFZ39BEVJUVW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6FVWSFZ39BEVJUVW.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "6FVWSFZ39BEVJUVW.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2421" - }, - "appliesTo" : [ ] - }, - "6FVWSFZ39BEVJUVW.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "6FVWSFZ39BEVJUVW.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6FVWSFZ39BEVJUVW.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "6FVWSFZ39BEVJUVW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6FVWSFZ39BEVJUVW.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "6FVWSFZ39BEVJUVW.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "WWYHV89KB5YJVTSF" : { - "WWYHV89KB5YJVTSF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "WWYHV89KB5YJVTSF", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WWYHV89KB5YJVTSF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "WWYHV89KB5YJVTSF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3420000000" - }, - "appliesTo" : [ ] - }, - "WWYHV89KB5YJVTSF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "WWYHV89KB5YJVTSF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2997" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WWYHV89KB5YJVTSF.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "WWYHV89KB5YJVTSF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WWYHV89KB5YJVTSF.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "WWYHV89KB5YJVTSF.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WWYHV89KB5YJVTSF.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "WWYHV89KB5YJVTSF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WWYHV89KB5YJVTSF.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "WWYHV89KB5YJVTSF.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3071" - }, - "appliesTo" : [ ] - }, - "WWYHV89KB5YJVTSF.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "WWYHV89KB5YJVTSF.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WWYHV89KB5YJVTSF.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "WWYHV89KB5YJVTSF", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WWYHV89KB5YJVTSF.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "WWYHV89KB5YJVTSF.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "WWYHV89KB5YJVTSF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "WWYHV89KB5YJVTSF", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WWYHV89KB5YJVTSF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "WWYHV89KB5YJVTSF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16934" - }, - "appliesTo" : [ ] - }, - "WWYHV89KB5YJVTSF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "WWYHV89KB5YJVTSF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WWYHV89KB5YJVTSF.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "WWYHV89KB5YJVTSF", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WWYHV89KB5YJVTSF.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "WWYHV89KB5YJVTSF.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "WWYHV89KB5YJVTSF.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "WWYHV89KB5YJVTSF.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17313" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WWYHV89KB5YJVTSF.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "WWYHV89KB5YJVTSF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WWYHV89KB5YJVTSF.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "WWYHV89KB5YJVTSF.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "WWYHV89KB5YJVTSF.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "WWYHV89KB5YJVTSF.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6118" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WWYHV89KB5YJVTSF.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "WWYHV89KB5YJVTSF", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WWYHV89KB5YJVTSF.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "WWYHV89KB5YJVTSF.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8680" - }, - "appliesTo" : [ ] - }, - "WWYHV89KB5YJVTSF.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "WWYHV89KB5YJVTSF.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WWYHV89KB5YJVTSF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "WWYHV89KB5YJVTSF", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WWYHV89KB5YJVTSF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "WWYHV89KB5YJVTSF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8528" - }, - "appliesTo" : [ ] - }, - "WWYHV89KB5YJVTSF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "WWYHV89KB5YJVTSF.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WWYHV89KB5YJVTSF.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "WWYHV89KB5YJVTSF", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WWYHV89KB5YJVTSF.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "WWYHV89KB5YJVTSF.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "WWYHV89KB5YJVTSF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "WWYHV89KB5YJVTSF", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WWYHV89KB5YJVTSF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "WWYHV89KB5YJVTSF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5974" - }, - "appliesTo" : [ ] - }, - "WWYHV89KB5YJVTSF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "WWYHV89KB5YJVTSF.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WWYHV89KB5YJVTSF.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "WWYHV89KB5YJVTSF", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WWYHV89KB5YJVTSF.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "WWYHV89KB5YJVTSF.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "HCMUNBKMY8ZTDFFE" : { - "HCMUNBKMY8ZTDFFE.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "HCMUNBKMY8ZTDFFE", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "HCMUNBKMY8ZTDFFE.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "HCMUNBKMY8ZTDFFE.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "HCMUNBKMY8ZTDFFE.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "HCMUNBKMY8ZTDFFE", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "HCMUNBKMY8ZTDFFE.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "HCMUNBKMY8ZTDFFE.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "750" - }, - "appliesTo" : [ ] - }, - "HCMUNBKMY8ZTDFFE.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "HCMUNBKMY8ZTDFFE.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HCMUNBKMY8ZTDFFE.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "HCMUNBKMY8ZTDFFE", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "HCMUNBKMY8ZTDFFE.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "HCMUNBKMY8ZTDFFE.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "HCMUNBKMY8ZTDFFE.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "HCMUNBKMY8ZTDFFE.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3027" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HCMUNBKMY8ZTDFFE.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "HCMUNBKMY8ZTDFFE", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "HCMUNBKMY8ZTDFFE.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "HCMUNBKMY8ZTDFFE.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "HCMUNBKMY8ZTDFFE.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "HCMUNBKMY8ZTDFFE.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1350" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HCMUNBKMY8ZTDFFE.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "HCMUNBKMY8ZTDFFE", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "HCMUNBKMY8ZTDFFE.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "HCMUNBKMY8ZTDFFE.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "493" - }, - "appliesTo" : [ ] - }, - "HCMUNBKMY8ZTDFFE.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "HCMUNBKMY8ZTDFFE.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "979YHCUCHTSAM3HF" : { - "979YHCUCHTSAM3HF.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "979YHCUCHTSAM3HF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "979YHCUCHTSAM3HF.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "979YHCUCHTSAM3HF.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28944" - }, - "appliesTo" : [ ] - }, - "979YHCUCHTSAM3HF.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "979YHCUCHTSAM3HF.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "979YHCUCHTSAM3HF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "979YHCUCHTSAM3HF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "979YHCUCHTSAM3HF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "979YHCUCHTSAM3HF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "45046" - }, - "appliesTo" : [ ] - }, - "979YHCUCHTSAM3HF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "979YHCUCHTSAM3HF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "979YHCUCHTSAM3HF.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "979YHCUCHTSAM3HF", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "979YHCUCHTSAM3HF.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "979YHCUCHTSAM3HF.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "979YHCUCHTSAM3HF.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "979YHCUCHTSAM3HF", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "979YHCUCHTSAM3HF.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "979YHCUCHTSAM3HF.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "67942" - }, - "appliesTo" : [ ] - }, - "979YHCUCHTSAM3HF.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "979YHCUCHTSAM3HF.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "979YHCUCHTSAM3HF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "979YHCUCHTSAM3HF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "979YHCUCHTSAM3HF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "979YHCUCHTSAM3HF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14736" - }, - "appliesTo" : [ ] - }, - "979YHCUCHTSAM3HF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "979YHCUCHTSAM3HF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "979YHCUCHTSAM3HF.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "979YHCUCHTSAM3HF", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "979YHCUCHTSAM3HF.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "979YHCUCHTSAM3HF.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "979YHCUCHTSAM3HF.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "979YHCUCHTSAM3HF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "979YHCUCHTSAM3HF.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "979YHCUCHTSAM3HF.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "979YHCUCHTSAM3HF.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "979YHCUCHTSAM3HF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "979YHCUCHTSAM3HF.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "979YHCUCHTSAM3HF.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6820000000" - }, - "appliesTo" : [ ] - }, - "979YHCUCHTSAM3HF.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "979YHCUCHTSAM3HF.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14795" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "979YHCUCHTSAM3HF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "979YHCUCHTSAM3HF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "979YHCUCHTSAM3HF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "979YHCUCHTSAM3HF.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "979YHCUCHTSAM3HF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "979YHCUCHTSAM3HF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25206" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "979YHCUCHTSAM3HF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "979YHCUCHTSAM3HF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "979YHCUCHTSAM3HF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "979YHCUCHTSAM3HF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22272" - }, - "appliesTo" : [ ] - }, - "979YHCUCHTSAM3HF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "979YHCUCHTSAM3HF.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "979YHCUCHTSAM3HF.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "979YHCUCHTSAM3HF", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "979YHCUCHTSAM3HF.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "979YHCUCHTSAM3HF.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39664" - }, - "appliesTo" : [ ] - }, - "979YHCUCHTSAM3HF.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "979YHCUCHTSAM3HF.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "TJYZERFDZ38JVQQW" : { - "TJYZERFDZ38JVQQW.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TJYZERFDZ38JVQQW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "TJYZERFDZ38JVQQW.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TJYZERFDZ38JVQQW.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3991" - }, - "appliesTo" : [ ] - }, - "TJYZERFDZ38JVQQW.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TJYZERFDZ38JVQQW.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TJYZERFDZ38JVQQW.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TJYZERFDZ38JVQQW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "TJYZERFDZ38JVQQW.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TJYZERFDZ38JVQQW.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2002" - }, - "appliesTo" : [ ] - }, - "TJYZERFDZ38JVQQW.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TJYZERFDZ38JVQQW.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TJYZERFDZ38JVQQW.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "TJYZERFDZ38JVQQW", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "TJYZERFDZ38JVQQW.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "TJYZERFDZ38JVQQW.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2200000000" - }, - "appliesTo" : [ ] - }, - "TJYZERFDZ38JVQQW.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "TJYZERFDZ38JVQQW.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5405" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TJYZERFDZ38JVQQW.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TJYZERFDZ38JVQQW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "TJYZERFDZ38JVQQW.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TJYZERFDZ38JVQQW.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7750" - }, - "appliesTo" : [ ] - }, - "TJYZERFDZ38JVQQW.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TJYZERFDZ38JVQQW.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TJYZERFDZ38JVQQW.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "TJYZERFDZ38JVQQW", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "TJYZERFDZ38JVQQW.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "TJYZERFDZ38JVQQW.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TJYZERFDZ38JVQQW.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TJYZERFDZ38JVQQW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "TJYZERFDZ38JVQQW.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TJYZERFDZ38JVQQW.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3014" - }, - "appliesTo" : [ ] - }, - "TJYZERFDZ38JVQQW.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TJYZERFDZ38JVQQW.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TJYZERFDZ38JVQQW.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TJYZERFDZ38JVQQW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "TJYZERFDZ38JVQQW.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TJYZERFDZ38JVQQW.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TJYZERFDZ38JVQQW.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "TJYZERFDZ38JVQQW", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "TJYZERFDZ38JVQQW.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "TJYZERFDZ38JVQQW.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10946" - }, - "appliesTo" : [ ] - }, - "TJYZERFDZ38JVQQW.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "TJYZERFDZ38JVQQW.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TJYZERFDZ38JVQQW.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "TJYZERFDZ38JVQQW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TJYZERFDZ38JVQQW.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "TJYZERFDZ38JVQQW.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TJYZERFDZ38JVQQW.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "TJYZERFDZ38JVQQW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TJYZERFDZ38JVQQW.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "TJYZERFDZ38JVQQW.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4466" - }, - "appliesTo" : [ ] - }, - "TJYZERFDZ38JVQQW.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "TJYZERFDZ38JVQQW.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TJYZERFDZ38JVQQW.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "TJYZERFDZ38JVQQW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TJYZERFDZ38JVQQW.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "TJYZERFDZ38JVQQW.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2010" - }, - "appliesTo" : [ ] - }, - "TJYZERFDZ38JVQQW.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "TJYZERFDZ38JVQQW.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "AYSR4P45C3BGQFUC" : { - "AYSR4P45C3BGQFUC.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "AYSR4P45C3BGQFUC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AYSR4P45C3BGQFUC.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "AYSR4P45C3BGQFUC.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8980000000" - }, - "appliesTo" : [ ] - }, - "AYSR4P45C3BGQFUC.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "AYSR4P45C3BGQFUC.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7867" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AYSR4P45C3BGQFUC.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "AYSR4P45C3BGQFUC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AYSR4P45C3BGQFUC.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "AYSR4P45C3BGQFUC.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "AYSR4P45C3BGQFUC.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "AYSR4P45C3BGQFUC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AYSR4P45C3BGQFUC.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "AYSR4P45C3BGQFUC.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15717" - }, - "appliesTo" : [ ] - }, - "AYSR4P45C3BGQFUC.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "AYSR4P45C3BGQFUC.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AYSR4P45C3BGQFUC.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "AYSR4P45C3BGQFUC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AYSR4P45C3BGQFUC.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "AYSR4P45C3BGQFUC.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "AYSR4P45C3BGQFUC.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "AYSR4P45C3BGQFUC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AYSR4P45C3BGQFUC.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "AYSR4P45C3BGQFUC.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46153" - }, - "appliesTo" : [ ] - }, - "AYSR4P45C3BGQFUC.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "AYSR4P45C3BGQFUC.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AYSR4P45C3BGQFUC.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "AYSR4P45C3BGQFUC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AYSR4P45C3BGQFUC.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "AYSR4P45C3BGQFUC.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "AYSR4P45C3BGQFUC.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "AYSR4P45C3BGQFUC.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46481" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "AYSR4P45C3BGQFUC.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "AYSR4P45C3BGQFUC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AYSR4P45C3BGQFUC.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "AYSR4P45C3BGQFUC.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "AYSR4P45C3BGQFUC.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "AYSR4P45C3BGQFUC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AYSR4P45C3BGQFUC.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "AYSR4P45C3BGQFUC.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15848" - }, - "appliesTo" : [ ] - }, - "AYSR4P45C3BGQFUC.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "AYSR4P45C3BGQFUC.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "AYSR4P45C3BGQFUC.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "AYSR4P45C3BGQFUC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AYSR4P45C3BGQFUC.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "AYSR4P45C3BGQFUC.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23129" - }, - "appliesTo" : [ ] - }, - "AYSR4P45C3BGQFUC.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "AYSR4P45C3BGQFUC.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AYSR4P45C3BGQFUC.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "AYSR4P45C3BGQFUC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AYSR4P45C3BGQFUC.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "AYSR4P45C3BGQFUC.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23260" - }, - "appliesTo" : [ ] - }, - "AYSR4P45C3BGQFUC.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "AYSR4P45C3BGQFUC.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "AYSR4P45C3BGQFUC.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "AYSR4P45C3BGQFUC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AYSR4P45C3BGQFUC.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "AYSR4P45C3BGQFUC.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "AYSR4P45C3BGQFUC.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "AYSR4P45C3BGQFUC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AYSR4P45C3BGQFUC.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "AYSR4P45C3BGQFUC.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7934" - }, - "appliesTo" : [ ] - }, - "AYSR4P45C3BGQFUC.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "AYSR4P45C3BGQFUC.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "YJAJYU26JMTDCU86" : { - "YJAJYU26JMTDCU86.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YJAJYU26JMTDCU86", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YJAJYU26JMTDCU86.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YJAJYU26JMTDCU86.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YJAJYU26JMTDCU86.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "YJAJYU26JMTDCU86", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YJAJYU26JMTDCU86.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "YJAJYU26JMTDCU86.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8250000000" - }, - "appliesTo" : [ ] - }, - "YJAJYU26JMTDCU86.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "YJAJYU26JMTDCU86.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7230" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YJAJYU26JMTDCU86.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "YJAJYU26JMTDCU86", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YJAJYU26JMTDCU86.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "YJAJYU26JMTDCU86.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "42816" - }, - "appliesTo" : [ ] - }, - "YJAJYU26JMTDCU86.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "YJAJYU26JMTDCU86.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YJAJYU26JMTDCU86.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "YJAJYU26JMTDCU86", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YJAJYU26JMTDCU86.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "YJAJYU26JMTDCU86.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21418" - }, - "appliesTo" : [ ] - }, - "YJAJYU26JMTDCU86.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "YJAJYU26JMTDCU86.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YJAJYU26JMTDCU86.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YJAJYU26JMTDCU86", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YJAJYU26JMTDCU86.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YJAJYU26JMTDCU86.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21352" - }, - "appliesTo" : [ ] - }, - "YJAJYU26JMTDCU86.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YJAJYU26JMTDCU86.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YJAJYU26JMTDCU86.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "YJAJYU26JMTDCU86", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YJAJYU26JMTDCU86.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "YJAJYU26JMTDCU86.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YJAJYU26JMTDCU86.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YJAJYU26JMTDCU86", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YJAJYU26JMTDCU86.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YJAJYU26JMTDCU86.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7196" - }, - "appliesTo" : [ ] - }, - "YJAJYU26JMTDCU86.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YJAJYU26JMTDCU86.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YJAJYU26JMTDCU86.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "YJAJYU26JMTDCU86", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YJAJYU26JMTDCU86.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "YJAJYU26JMTDCU86.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14449" - }, - "appliesTo" : [ ] - }, - "YJAJYU26JMTDCU86.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "YJAJYU26JMTDCU86.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YJAJYU26JMTDCU86.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YJAJYU26JMTDCU86", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YJAJYU26JMTDCU86.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YJAJYU26JMTDCU86.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "42652" - }, - "appliesTo" : [ ] - }, - "YJAJYU26JMTDCU86.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YJAJYU26JMTDCU86.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YJAJYU26JMTDCU86.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "YJAJYU26JMTDCU86", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YJAJYU26JMTDCU86.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "YJAJYU26JMTDCU86.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YJAJYU26JMTDCU86.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YJAJYU26JMTDCU86", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YJAJYU26JMTDCU86.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YJAJYU26JMTDCU86.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YJAJYU26JMTDCU86.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YJAJYU26JMTDCU86.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14384" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YJAJYU26JMTDCU86.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "YJAJYU26JMTDCU86", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YJAJYU26JMTDCU86.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "YJAJYU26JMTDCU86.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "8EJJ843PNMRKMSZC" : { - "8EJJ843PNMRKMSZC.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "8EJJ843PNMRKMSZC", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "8EJJ843PNMRKMSZC.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "8EJJ843PNMRKMSZC.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "380" - }, - "appliesTo" : [ ] - }, - "8EJJ843PNMRKMSZC.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "8EJJ843PNMRKMSZC.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t1.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8EJJ843PNMRKMSZC.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "8EJJ843PNMRKMSZC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "8EJJ843PNMRKMSZC.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "8EJJ843PNMRKMSZC.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t1.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8EJJ843PNMRKMSZC.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "8EJJ843PNMRKMSZC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "8EJJ843PNMRKMSZC.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "8EJJ843PNMRKMSZC.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "343" - }, - "appliesTo" : [ ] - }, - "8EJJ843PNMRKMSZC.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "8EJJ843PNMRKMSZC.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), t1.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8EJJ843PNMRKMSZC.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "8EJJ843PNMRKMSZC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "8EJJ843PNMRKMSZC.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "8EJJ843PNMRKMSZC.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "140" - }, - "appliesTo" : [ ] - }, - "8EJJ843PNMRKMSZC.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "8EJJ843PNMRKMSZC.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t1.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8EJJ843PNMRKMSZC.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "8EJJ843PNMRKMSZC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "8EJJ843PNMRKMSZC.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "8EJJ843PNMRKMSZC.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "901" - }, - "appliesTo" : [ ] - }, - "8EJJ843PNMRKMSZC.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "8EJJ843PNMRKMSZC.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), t1.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "TX7H54J52X2GTX6C" : { - "TX7H54J52X2GTX6C.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TX7H54J52X2GTX6C", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "TX7H54J52X2GTX6C.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TX7H54J52X2GTX6C.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TX7H54J52X2GTX6C.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "TX7H54J52X2GTX6C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TX7H54J52X2GTX6C.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "TX7H54J52X2GTX6C.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "673" - }, - "appliesTo" : [ ] - }, - "TX7H54J52X2GTX6C.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "TX7H54J52X2GTX6C.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TX7H54J52X2GTX6C.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "TX7H54J52X2GTX6C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TX7H54J52X2GTX6C.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "TX7H54J52X2GTX6C.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TX7H54J52X2GTX6C.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "TX7H54J52X2GTX6C", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "TX7H54J52X2GTX6C.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "TX7H54J52X2GTX6C.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TX7H54J52X2GTX6C.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TX7H54J52X2GTX6C", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "TX7H54J52X2GTX6C.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TX7H54J52X2GTX6C.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1431" - }, - "appliesTo" : [ ] - }, - "TX7H54J52X2GTX6C.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TX7H54J52X2GTX6C.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TX7H54J52X2GTX6C.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "TX7H54J52X2GTX6C", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "TX7H54J52X2GTX6C.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "TX7H54J52X2GTX6C.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1878" - }, - "appliesTo" : [ ] - }, - "TX7H54J52X2GTX6C.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "TX7H54J52X2GTX6C.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TX7H54J52X2GTX6C.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TX7H54J52X2GTX6C", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "TX7H54J52X2GTX6C.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TX7H54J52X2GTX6C.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1139" - }, - "appliesTo" : [ ] - }, - "TX7H54J52X2GTX6C.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TX7H54J52X2GTX6C.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TX7H54J52X2GTX6C.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TX7H54J52X2GTX6C", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "TX7H54J52X2GTX6C.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TX7H54J52X2GTX6C.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2379" - }, - "appliesTo" : [ ] - }, - "TX7H54J52X2GTX6C.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TX7H54J52X2GTX6C.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TX7H54J52X2GTX6C.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TX7H54J52X2GTX6C", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "TX7H54J52X2GTX6C.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TX7H54J52X2GTX6C.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "741" - }, - "appliesTo" : [ ] - }, - "TX7H54J52X2GTX6C.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TX7H54J52X2GTX6C.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TX7H54J52X2GTX6C.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "TX7H54J52X2GTX6C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TX7H54J52X2GTX6C.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "TX7H54J52X2GTX6C.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TX7H54J52X2GTX6C.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "TX7H54J52X2GTX6C.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1264" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TX7H54J52X2GTX6C.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "TX7H54J52X2GTX6C", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "TX7H54J52X2GTX6C.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "TX7H54J52X2GTX6C.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TX7H54J52X2GTX6C.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "TX7H54J52X2GTX6C.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2986" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "SM2N6WCVK5EXAYJ9" : { - "SM2N6WCVK5EXAYJ9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SM2N6WCVK5EXAYJ9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "SM2N6WCVK5EXAYJ9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SM2N6WCVK5EXAYJ9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SM2N6WCVK5EXAYJ9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SM2N6WCVK5EXAYJ9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12221" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SM2N6WCVK5EXAYJ9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SM2N6WCVK5EXAYJ9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "SM2N6WCVK5EXAYJ9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SM2N6WCVK5EXAYJ9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3980000000" - }, - "appliesTo" : [ ] - }, - "SM2N6WCVK5EXAYJ9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SM2N6WCVK5EXAYJ9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1895" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SM2N6WCVK5EXAYJ9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SM2N6WCVK5EXAYJ9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "SM2N6WCVK5EXAYJ9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SM2N6WCVK5EXAYJ9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5274" - }, - "appliesTo" : [ ] - }, - "SM2N6WCVK5EXAYJ9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SM2N6WCVK5EXAYJ9.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SM2N6WCVK5EXAYJ9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SM2N6WCVK5EXAYJ9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "SM2N6WCVK5EXAYJ9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SM2N6WCVK5EXAYJ9.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SM2N6WCVK5EXAYJ9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SM2N6WCVK5EXAYJ9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "SM2N6WCVK5EXAYJ9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SM2N6WCVK5EXAYJ9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2962" - }, - "appliesTo" : [ ] - }, - "SM2N6WCVK5EXAYJ9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SM2N6WCVK5EXAYJ9.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "CGJXHFUSGE546RV6" : { - "CGJXHFUSGE546RV6.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "CGJXHFUSGE546RV6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CGJXHFUSGE546RV6.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "CGJXHFUSGE546RV6.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "801" - }, - "appliesTo" : [ ] - }, - "CGJXHFUSGE546RV6.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "CGJXHFUSGE546RV6.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0305000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CGJXHFUSGE546RV6.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "CGJXHFUSGE546RV6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CGJXHFUSGE546RV6.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "CGJXHFUSGE546RV6.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0270000000" - }, - "appliesTo" : [ ] - }, - "CGJXHFUSGE546RV6.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "CGJXHFUSGE546RV6.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "699" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CGJXHFUSGE546RV6.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "CGJXHFUSGE546RV6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CGJXHFUSGE546RV6.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "CGJXHFUSGE546RV6.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0658000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CGJXHFUSGE546RV6.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "CGJXHFUSGE546RV6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CGJXHFUSGE546RV6.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "CGJXHFUSGE546RV6.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "CGJXHFUSGE546RV6.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "CGJXHFUSGE546RV6.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "790" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CGJXHFUSGE546RV6.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "CGJXHFUSGE546RV6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CGJXHFUSGE546RV6.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "CGJXHFUSGE546RV6.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1570" - }, - "appliesTo" : [ ] - }, - "CGJXHFUSGE546RV6.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "CGJXHFUSGE546RV6.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CGJXHFUSGE546RV6.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "CGJXHFUSGE546RV6", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "CGJXHFUSGE546RV6.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "CGJXHFUSGE546RV6.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1314" - }, - "appliesTo" : [ ] - }, - "CGJXHFUSGE546RV6.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "CGJXHFUSGE546RV6.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CGJXHFUSGE546RV6.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "CGJXHFUSGE546RV6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CGJXHFUSGE546RV6.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "CGJXHFUSGE546RV6.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0572000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CGJXHFUSGE546RV6.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "CGJXHFUSGE546RV6", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "CGJXHFUSGE546RV6.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "CGJXHFUSGE546RV6.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "350" - }, - "appliesTo" : [ ] - }, - "CGJXHFUSGE546RV6.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "CGJXHFUSGE546RV6.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CGJXHFUSGE546RV6.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "CGJXHFUSGE546RV6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CGJXHFUSGE546RV6.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "CGJXHFUSGE546RV6.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CGJXHFUSGE546RV6.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "CGJXHFUSGE546RV6", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "CGJXHFUSGE546RV6.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "CGJXHFUSGE546RV6.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "685" - }, - "appliesTo" : [ ] - }, - "CGJXHFUSGE546RV6.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "CGJXHFUSGE546RV6.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CGJXHFUSGE546RV6.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "CGJXHFUSGE546RV6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CGJXHFUSGE546RV6.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "CGJXHFUSGE546RV6.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "403" - }, - "appliesTo" : [ ] - }, - "CGJXHFUSGE546RV6.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "CGJXHFUSGE546RV6.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CGJXHFUSGE546RV6.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "CGJXHFUSGE546RV6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CGJXHFUSGE546RV6.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "CGJXHFUSGE546RV6.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0966000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "K4QSF4H4QQGJSSK7" : { - "K4QSF4H4QQGJSSK7.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "K4QSF4H4QQGJSSK7", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "K4QSF4H4QQGJSSK7.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "K4QSF4H4QQGJSSK7.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.8100000000" - }, - "appliesTo" : [ ] - }, - "K4QSF4H4QQGJSSK7.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "K4QSF4H4QQGJSSK7.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "40997" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "K4QSF4H4QQGJSSK7.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "K4QSF4H4QQGJSSK7", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "K4QSF4H4QQGJSSK7.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "K4QSF4H4QQGJSSK7.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "81493" - }, - "appliesTo" : [ ] - }, - "K4QSF4H4QQGJSSK7.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "K4QSF4H4QQGJSSK7.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "K4QSF4H4QQGJSSK7.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "K4QSF4H4QQGJSSK7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K4QSF4H4QQGJSSK7.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "K4QSF4H4QQGJSSK7.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.9580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "K4QSF4H4QQGJSSK7.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "K4QSF4H4QQGJSSK7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K4QSF4H4QQGJSSK7.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "K4QSF4H4QQGJSSK7.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.5760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "K4QSF4H4QQGJSSK7.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "K4QSF4H4QQGJSSK7", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "K4QSF4H4QQGJSSK7.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "K4QSF4H4QQGJSSK7.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "89352" - }, - "appliesTo" : [ ] - }, - "K4QSF4H4QQGJSSK7.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "K4QSF4H4QQGJSSK7.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "K4QSF4H4QQGJSSK7.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "K4QSF4H4QQGJSSK7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K4QSF4H4QQGJSSK7.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "K4QSF4H4QQGJSSK7.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "204817" - }, - "appliesTo" : [ ] - }, - "K4QSF4H4QQGJSSK7.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "K4QSF4H4QQGJSSK7.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "K4QSF4H4QQGJSSK7.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "K4QSF4H4QQGJSSK7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K4QSF4H4QQGJSSK7.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "K4QSF4H4QQGJSSK7.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.0400000000" - }, - "appliesTo" : [ ] - }, - "K4QSF4H4QQGJSSK7.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "K4QSF4H4QQGJSSK7.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "102756" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "K4QSF4H4QQGJSSK7.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "K4QSF4H4QQGJSSK7", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "K4QSF4H4QQGJSSK7.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "K4QSF4H4QQGJSSK7.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "K4QSF4H4QQGJSSK7.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "K4QSF4H4QQGJSSK7.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "171398" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "K4QSF4H4QQGJSSK7.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "K4QSF4H4QQGJSSK7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K4QSF4H4QQGJSSK7.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "K4QSF4H4QQGJSSK7.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "K4QSF4H4QQGJSSK7.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "K4QSF4H4QQGJSSK7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K4QSF4H4QQGJSSK7.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "K4QSF4H4QQGJSSK7.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "93546" - }, - "appliesTo" : [ ] - }, - "K4QSF4H4QQGJSSK7.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "K4QSF4H4QQGJSSK7.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "K4QSF4H4QQGJSSK7.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "K4QSF4H4QQGJSSK7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K4QSF4H4QQGJSSK7.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "K4QSF4H4QQGJSSK7.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47146" - }, - "appliesTo" : [ ] - }, - "K4QSF4H4QQGJSSK7.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "K4QSF4H4QQGJSSK7.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.5120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "K4QSF4H4QQGJSSK7.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "K4QSF4H4QQGJSSK7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K4QSF4H4QQGJSSK7.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "K4QSF4H4QQGJSSK7.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "11.4320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "56836GB58CR7CVY9" : { - "56836GB58CR7CVY9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "56836GB58CR7CVY9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "56836GB58CR7CVY9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "56836GB58CR7CVY9.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.1070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "56836GB58CR7CVY9.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "56836GB58CR7CVY9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "56836GB58CR7CVY9.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "56836GB58CR7CVY9.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "65219" - }, - "appliesTo" : [ ] - }, - "56836GB58CR7CVY9.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "56836GB58CR7CVY9.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "56836GB58CR7CVY9.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "56836GB58CR7CVY9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "56836GB58CR7CVY9.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "56836GB58CR7CVY9.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.3400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "56836GB58CR7CVY9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "56836GB58CR7CVY9", - "effectiveDate" : "2016-06-30T23:59:59Z", - "priceDimensions" : { - "56836GB58CR7CVY9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "56836GB58CR7CVY9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "129534" - }, - "appliesTo" : [ ] - }, - "56836GB58CR7CVY9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "56836GB58CR7CVY9.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "56836GB58CR7CVY9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "56836GB58CR7CVY9", - "effectiveDate" : "2016-06-30T23:59:59Z", - "priceDimensions" : { - "56836GB58CR7CVY9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "56836GB58CR7CVY9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "56836GB58CR7CVY9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "56836GB58CR7CVY9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "252808" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "56836GB58CR7CVY9.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "56836GB58CR7CVY9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "56836GB58CR7CVY9.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "56836GB58CR7CVY9.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.8190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "56836GB58CR7CVY9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "56836GB58CR7CVY9", - "effectiveDate" : "2016-06-30T23:59:59Z", - "priceDimensions" : { - "56836GB58CR7CVY9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "56836GB58CR7CVY9.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "56836GB58CR7CVY9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "56836GB58CR7CVY9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "118778" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "56836GB58CR7CVY9.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "56836GB58CR7CVY9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "56836GB58CR7CVY9.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "56836GB58CR7CVY9.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "56836GB58CR7CVY9.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "56836GB58CR7CVY9.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "128860" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "56836GB58CR7CVY9.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "56836GB58CR7CVY9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "56836GB58CR7CVY9.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "56836GB58CR7CVY9.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "137359" - }, - "appliesTo" : [ ] - }, - "56836GB58CR7CVY9.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "56836GB58CR7CVY9.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.2270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "56836GB58CR7CVY9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "56836GB58CR7CVY9", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "56836GB58CR7CVY9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "56836GB58CR7CVY9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.8580000000" - }, - "appliesTo" : [ ] - }, - "56836GB58CR7CVY9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "56836GB58CR7CVY9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "60075" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "56836GB58CR7CVY9.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "56836GB58CR7CVY9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "56836GB58CR7CVY9.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "56836GB58CR7CVY9.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "272317" - }, - "appliesTo" : [ ] - }, - "56836GB58CR7CVY9.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "56836GB58CR7CVY9.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "56836GB58CR7CVY9.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "56836GB58CR7CVY9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "56836GB58CR7CVY9.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "56836GB58CR7CVY9.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.1760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "NUX3MUG87XRK86AD" : { - "NUX3MUG87XRK86AD.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "NUX3MUG87XRK86AD", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "NUX3MUG87XRK86AD.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "NUX3MUG87XRK86AD.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "NUX3MUG87XRK86AD.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "NUX3MUG87XRK86AD", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "NUX3MUG87XRK86AD.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "NUX3MUG87XRK86AD.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39246" - }, - "appliesTo" : [ ] - }, - "NUX3MUG87XRK86AD.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "NUX3MUG87XRK86AD.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "NUX3MUG87XRK86AD.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "NUX3MUG87XRK86AD", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "NUX3MUG87XRK86AD.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "NUX3MUG87XRK86AD.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "NUX3MUG87XRK86AD.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "NUX3MUG87XRK86AD.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "70251" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "NUX3MUG87XRK86AD.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "NUX3MUG87XRK86AD", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "NUX3MUG87XRK86AD.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "NUX3MUG87XRK86AD.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33919" - }, - "appliesTo" : [ ] - }, - "NUX3MUG87XRK86AD.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "NUX3MUG87XRK86AD.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "NUX3MUG87XRK86AD.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "NUX3MUG87XRK86AD", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "NUX3MUG87XRK86AD.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "NUX3MUG87XRK86AD.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9620000000" - }, - "appliesTo" : [ ] - }, - "NUX3MUG87XRK86AD.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "NUX3MUG87XRK86AD.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23174" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "NUX3MUG87XRK86AD.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "NUX3MUG87XRK86AD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NUX3MUG87XRK86AD.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "NUX3MUG87XRK86AD.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46489" - }, - "appliesTo" : [ ] - }, - "NUX3MUG87XRK86AD.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "NUX3MUG87XRK86AD.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "NUX3MUG87XRK86AD.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "NUX3MUG87XRK86AD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NUX3MUG87XRK86AD.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "NUX3MUG87XRK86AD.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.5410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "NUX3MUG87XRK86AD.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "NUX3MUG87XRK86AD", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "NUX3MUG87XRK86AD.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "NUX3MUG87XRK86AD.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.6230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "NUX3MUG87XRK86AD.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "NUX3MUG87XRK86AD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NUX3MUG87XRK86AD.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "NUX3MUG87XRK86AD.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6870000000" - }, - "appliesTo" : [ ] - }, - "NUX3MUG87XRK86AD.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "NUX3MUG87XRK86AD.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23537" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "NUX3MUG87XRK86AD.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "NUX3MUG87XRK86AD", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "NUX3MUG87XRK86AD.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "NUX3MUG87XRK86AD.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14538" - }, - "appliesTo" : [ ] - }, - "NUX3MUG87XRK86AD.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "NUX3MUG87XRK86AD.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "NUX3MUG87XRK86AD.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "NUX3MUG87XRK86AD", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "NUX3MUG87XRK86AD.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "NUX3MUG87XRK86AD.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "94278" - }, - "appliesTo" : [ ] - }, - "NUX3MUG87XRK86AD.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "NUX3MUG87XRK86AD.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "8DAD556FD5NBRFC3" : { - "8DAD556FD5NBRFC3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "8DAD556FD5NBRFC3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8DAD556FD5NBRFC3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "8DAD556FD5NBRFC3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "55434" - }, - "appliesTo" : [ ] - }, - "8DAD556FD5NBRFC3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "8DAD556FD5NBRFC3.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8DAD556FD5NBRFC3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "8DAD556FD5NBRFC3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8DAD556FD5NBRFC3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "8DAD556FD5NBRFC3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1820000000" - }, - "appliesTo" : [ ] - }, - "8DAD556FD5NBRFC3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "8DAD556FD5NBRFC3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27878" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8DAD556FD5NBRFC3.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "8DAD556FD5NBRFC3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8DAD556FD5NBRFC3.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "8DAD556FD5NBRFC3.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29084" - }, - "appliesTo" : [ ] - }, - "8DAD556FD5NBRFC3.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "8DAD556FD5NBRFC3.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8DAD556FD5NBRFC3.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "8DAD556FD5NBRFC3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8DAD556FD5NBRFC3.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "8DAD556FD5NBRFC3.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.7460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8DAD556FD5NBRFC3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "8DAD556FD5NBRFC3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8DAD556FD5NBRFC3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "8DAD556FD5NBRFC3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "75109" - }, - "appliesTo" : [ ] - }, - "8DAD556FD5NBRFC3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "8DAD556FD5NBRFC3.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8DAD556FD5NBRFC3.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "8DAD556FD5NBRFC3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8DAD556FD5NBRFC3.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "8DAD556FD5NBRFC3.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "154244" - }, - "appliesTo" : [ ] - }, - "8DAD556FD5NBRFC3.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "8DAD556FD5NBRFC3.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8DAD556FD5NBRFC3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "8DAD556FD5NBRFC3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8DAD556FD5NBRFC3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "8DAD556FD5NBRFC3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "148346" - }, - "appliesTo" : [ ] - }, - "8DAD556FD5NBRFC3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "8DAD556FD5NBRFC3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8DAD556FD5NBRFC3.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "8DAD556FD5NBRFC3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8DAD556FD5NBRFC3.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "8DAD556FD5NBRFC3.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9480000000" - }, - "appliesTo" : [ ] - }, - "8DAD556FD5NBRFC3.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "8DAD556FD5NBRFC3.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "77482" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8DAD556FD5NBRFC3.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "8DAD556FD5NBRFC3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8DAD556FD5NBRFC3.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "8DAD556FD5NBRFC3.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.8110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8DAD556FD5NBRFC3.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "8DAD556FD5NBRFC3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8DAD556FD5NBRFC3.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "8DAD556FD5NBRFC3.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "57798" - }, - "appliesTo" : [ ] - }, - "8DAD556FD5NBRFC3.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "8DAD556FD5NBRFC3.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8DAD556FD5NBRFC3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "8DAD556FD5NBRFC3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8DAD556FD5NBRFC3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "8DAD556FD5NBRFC3.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.4570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8DAD556FD5NBRFC3.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "8DAD556FD5NBRFC3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8DAD556FD5NBRFC3.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "8DAD556FD5NBRFC3.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.0060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "HZEF7XT3HAKD5NEZ" : { - "HZEF7XT3HAKD5NEZ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "HZEF7XT3HAKD5NEZ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "HZEF7XT3HAKD5NEZ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "HZEF7XT3HAKD5NEZ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0340000000" - }, - "appliesTo" : [ ] - }, - "HZEF7XT3HAKD5NEZ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "HZEF7XT3HAKD5NEZ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "565" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HZEF7XT3HAKD5NEZ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "HZEF7XT3HAKD5NEZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HZEF7XT3HAKD5NEZ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "HZEF7XT3HAKD5NEZ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "974" - }, - "appliesTo" : [ ] - }, - "HZEF7XT3HAKD5NEZ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "HZEF7XT3HAKD5NEZ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "HZEF7XT3HAKD5NEZ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "HZEF7XT3HAKD5NEZ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "HZEF7XT3HAKD5NEZ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "HZEF7XT3HAKD5NEZ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2292" - }, - "appliesTo" : [ ] - }, - "HZEF7XT3HAKD5NEZ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "HZEF7XT3HAKD5NEZ.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "HZEF7XT3HAKD5NEZ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "HZEF7XT3HAKD5NEZ", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "HZEF7XT3HAKD5NEZ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "HZEF7XT3HAKD5NEZ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "HZEF7XT3HAKD5NEZ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "HZEF7XT3HAKD5NEZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HZEF7XT3HAKD5NEZ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "HZEF7XT3HAKD5NEZ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "497" - }, - "appliesTo" : [ ] - }, - "HZEF7XT3HAKD5NEZ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "HZEF7XT3HAKD5NEZ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HZEF7XT3HAKD5NEZ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "HZEF7XT3HAKD5NEZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HZEF7XT3HAKD5NEZ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "HZEF7XT3HAKD5NEZ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "HZEF7XT3HAKD5NEZ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "HZEF7XT3HAKD5NEZ", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "HZEF7XT3HAKD5NEZ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "HZEF7XT3HAKD5NEZ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1079" - }, - "appliesTo" : [ ] - }, - "HZEF7XT3HAKD5NEZ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "HZEF7XT3HAKD5NEZ.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HZEF7XT3HAKD5NEZ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "HZEF7XT3HAKD5NEZ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "HZEF7XT3HAKD5NEZ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "HZEF7XT3HAKD5NEZ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1526" - }, - "appliesTo" : [ ] - }, - "HZEF7XT3HAKD5NEZ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "HZEF7XT3HAKD5NEZ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HZEF7XT3HAKD5NEZ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "HZEF7XT3HAKD5NEZ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "HZEF7XT3HAKD5NEZ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "HZEF7XT3HAKD5NEZ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "HZEF7XT3HAKD5NEZ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "HZEF7XT3HAKD5NEZ", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "HZEF7XT3HAKD5NEZ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "HZEF7XT3HAKD5NEZ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "HZEF7XT3HAKD5NEZ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "HZEF7XT3HAKD5NEZ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1685" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HZEF7XT3HAKD5NEZ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "HZEF7XT3HAKD5NEZ", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "HZEF7XT3HAKD5NEZ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "HZEF7XT3HAKD5NEZ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "HZEF7XT3HAKD5NEZ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "HZEF7XT3HAKD5NEZ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "849" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "FVBNJRJQXKTZMPVR" : { - "FVBNJRJQXKTZMPVR.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "FVBNJRJQXKTZMPVR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FVBNJRJQXKTZMPVR.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "FVBNJRJQXKTZMPVR.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "41755" - }, - "appliesTo" : [ ] - }, - "FVBNJRJQXKTZMPVR.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "FVBNJRJQXKTZMPVR.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FVBNJRJQXKTZMPVR.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "FVBNJRJQXKTZMPVR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FVBNJRJQXKTZMPVR.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "FVBNJRJQXKTZMPVR.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FVBNJRJQXKTZMPVR.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "FVBNJRJQXKTZMPVR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FVBNJRJQXKTZMPVR.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "FVBNJRJQXKTZMPVR.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21066" - }, - "appliesTo" : [ ] - }, - "FVBNJRJQXKTZMPVR.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "FVBNJRJQXKTZMPVR.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FVBNJRJQXKTZMPVR.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "FVBNJRJQXKTZMPVR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FVBNJRJQXKTZMPVR.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "FVBNJRJQXKTZMPVR.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "102149" - }, - "appliesTo" : [ ] - }, - "FVBNJRJQXKTZMPVR.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "FVBNJRJQXKTZMPVR.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FVBNJRJQXKTZMPVR.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "FVBNJRJQXKTZMPVR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FVBNJRJQXKTZMPVR.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "FVBNJRJQXKTZMPVR.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "49252" - }, - "appliesTo" : [ ] - }, - "FVBNJRJQXKTZMPVR.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "FVBNJRJQXKTZMPVR.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FVBNJRJQXKTZMPVR.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "FVBNJRJQXKTZMPVR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FVBNJRJQXKTZMPVR.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "FVBNJRJQXKTZMPVR.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.0130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FVBNJRJQXKTZMPVR.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "FVBNJRJQXKTZMPVR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FVBNJRJQXKTZMPVR.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "FVBNJRJQXKTZMPVR.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "51405" - }, - "appliesTo" : [ ] - }, - "FVBNJRJQXKTZMPVR.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "FVBNJRJQXKTZMPVR.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FVBNJRJQXKTZMPVR.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "FVBNJRJQXKTZMPVR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FVBNJRJQXKTZMPVR.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "FVBNJRJQXKTZMPVR.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "44529" - }, - "appliesTo" : [ ] - }, - "FVBNJRJQXKTZMPVR.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "FVBNJRJQXKTZMPVR.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FVBNJRJQXKTZMPVR.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "FVBNJRJQXKTZMPVR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FVBNJRJQXKTZMPVR.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "FVBNJRJQXKTZMPVR.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "96782" - }, - "appliesTo" : [ ] - }, - "FVBNJRJQXKTZMPVR.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "FVBNJRJQXKTZMPVR.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FVBNJRJQXKTZMPVR.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "FVBNJRJQXKTZMPVR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FVBNJRJQXKTZMPVR.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "FVBNJRJQXKTZMPVR.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FVBNJRJQXKTZMPVR.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "FVBNJRJQXKTZMPVR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FVBNJRJQXKTZMPVR.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "FVBNJRJQXKTZMPVR.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22481" - }, - "appliesTo" : [ ] - }, - "FVBNJRJQXKTZMPVR.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "FVBNJRJQXKTZMPVR.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FVBNJRJQXKTZMPVR.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "FVBNJRJQXKTZMPVR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FVBNJRJQXKTZMPVR.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "FVBNJRJQXKTZMPVR.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.2570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "JVT9JXEVPBRUMA3N" : { - "JVT9JXEVPBRUMA3N.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "JVT9JXEVPBRUMA3N", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "JVT9JXEVPBRUMA3N.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "JVT9JXEVPBRUMA3N.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "922" - }, - "appliesTo" : [ ] - }, - "JVT9JXEVPBRUMA3N.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "JVT9JXEVPBRUMA3N.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "JVT9JXEVPBRUMA3N.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "JVT9JXEVPBRUMA3N", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "JVT9JXEVPBRUMA3N.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "JVT9JXEVPBRUMA3N.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2073" - }, - "appliesTo" : [ ] - }, - "JVT9JXEVPBRUMA3N.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "JVT9JXEVPBRUMA3N.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "JVT9JXEVPBRUMA3N.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "JVT9JXEVPBRUMA3N", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "JVT9JXEVPBRUMA3N.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "JVT9JXEVPBRUMA3N.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "JVT9JXEVPBRUMA3N.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "JVT9JXEVPBRUMA3N", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "JVT9JXEVPBRUMA3N.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "JVT9JXEVPBRUMA3N.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1734" - }, - "appliesTo" : [ ] - }, - "JVT9JXEVPBRUMA3N.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "JVT9JXEVPBRUMA3N.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JVT9JXEVPBRUMA3N.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "JVT9JXEVPBRUMA3N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JVT9JXEVPBRUMA3N.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "JVT9JXEVPBRUMA3N.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1007" - }, - "appliesTo" : [ ] - }, - "JVT9JXEVPBRUMA3N.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "JVT9JXEVPBRUMA3N.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "JVT9JXEVPBRUMA3N.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "JVT9JXEVPBRUMA3N", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "JVT9JXEVPBRUMA3N.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "JVT9JXEVPBRUMA3N.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0400000000" - }, - "appliesTo" : [ ] - }, - "JVT9JXEVPBRUMA3N.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "JVT9JXEVPBRUMA3N.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1058" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "JVT9JXEVPBRUMA3N.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "JVT9JXEVPBRUMA3N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JVT9JXEVPBRUMA3N.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "JVT9JXEVPBRUMA3N.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "514" - }, - "appliesTo" : [ ] - }, - "JVT9JXEVPBRUMA3N.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "JVT9JXEVPBRUMA3N.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "JVT9JXEVPBRUMA3N.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "JVT9JXEVPBRUMA3N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JVT9JXEVPBRUMA3N.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "JVT9JXEVPBRUMA3N.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "JVT9JXEVPBRUMA3N.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "JVT9JXEVPBRUMA3N", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "JVT9JXEVPBRUMA3N.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "JVT9JXEVPBRUMA3N.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "JVT9JXEVPBRUMA3N.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "JVT9JXEVPBRUMA3N.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "870" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JVT9JXEVPBRUMA3N.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "JVT9JXEVPBRUMA3N", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "JVT9JXEVPBRUMA3N.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "JVT9JXEVPBRUMA3N.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0510000000" - }, - "appliesTo" : [ ] - }, - "JVT9JXEVPBRUMA3N.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "JVT9JXEVPBRUMA3N.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "444" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "JVT9JXEVPBRUMA3N.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "JVT9JXEVPBRUMA3N", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "JVT9JXEVPBRUMA3N.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "JVT9JXEVPBRUMA3N.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "JVT9JXEVPBRUMA3N.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "JVT9JXEVPBRUMA3N", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "JVT9JXEVPBRUMA3N.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "JVT9JXEVPBRUMA3N.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "266JF3S5TDUM4QX4" : { - "266JF3S5TDUM4QX4.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "266JF3S5TDUM4QX4", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "266JF3S5TDUM4QX4.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "266JF3S5TDUM4QX4.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4560000000" - }, - "appliesTo" : [ ] - }, - "266JF3S5TDUM4QX4.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "266JF3S5TDUM4QX4.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3996" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "266JF3S5TDUM4QX4.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "266JF3S5TDUM4QX4", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "266JF3S5TDUM4QX4.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "266JF3S5TDUM4QX4.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "266JF3S5TDUM4QX4.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "266JF3S5TDUM4QX4.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7831" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "266JF3S5TDUM4QX4.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "266JF3S5TDUM4QX4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "266JF3S5TDUM4QX4.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "266JF3S5TDUM4QX4.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5641" - }, - "appliesTo" : [ ] - }, - "266JF3S5TDUM4QX4.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "266JF3S5TDUM4QX4.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "266JF3S5TDUM4QX4.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "266JF3S5TDUM4QX4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "266JF3S5TDUM4QX4.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "266JF3S5TDUM4QX4.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "266JF3S5TDUM4QX4.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "266JF3S5TDUM4QX4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "266JF3S5TDUM4QX4.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "266JF3S5TDUM4QX4.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "266JF3S5TDUM4QX4.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "266JF3S5TDUM4QX4.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23320" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "266JF3S5TDUM4QX4.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "266JF3S5TDUM4QX4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "266JF3S5TDUM4QX4.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "266JF3S5TDUM4QX4.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9111" - }, - "appliesTo" : [ ] - }, - "266JF3S5TDUM4QX4.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "266JF3S5TDUM4QX4.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "266JF3S5TDUM4QX4.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "266JF3S5TDUM4QX4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "266JF3S5TDUM4QX4.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "266JF3S5TDUM4QX4.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "266JF3S5TDUM4QX4.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "266JF3S5TDUM4QX4", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "266JF3S5TDUM4QX4.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "266JF3S5TDUM4QX4.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17134" - }, - "appliesTo" : [ ] - }, - "266JF3S5TDUM4QX4.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "266JF3S5TDUM4QX4.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "266JF3S5TDUM4QX4.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "266JF3S5TDUM4QX4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "266JF3S5TDUM4QX4.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "266JF3S5TDUM4QX4.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11900" - }, - "appliesTo" : [ ] - }, - "266JF3S5TDUM4QX4.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "266JF3S5TDUM4QX4.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "266JF3S5TDUM4QX4.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "266JF3S5TDUM4QX4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "266JF3S5TDUM4QX4.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "266JF3S5TDUM4QX4.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11271" - }, - "appliesTo" : [ ] - }, - "266JF3S5TDUM4QX4.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "266JF3S5TDUM4QX4.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "266JF3S5TDUM4QX4.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "266JF3S5TDUM4QX4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "266JF3S5TDUM4QX4.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "266JF3S5TDUM4QX4.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "266JF3S5TDUM4QX4.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "266JF3S5TDUM4QX4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "266JF3S5TDUM4QX4.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "266JF3S5TDUM4QX4.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "D9S2YAG2HUF7C3PC" : { - "D9S2YAG2HUF7C3PC.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "D9S2YAG2HUF7C3PC", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "D9S2YAG2HUF7C3PC.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "D9S2YAG2HUF7C3PC.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "D9S2YAG2HUF7C3PC.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "D9S2YAG2HUF7C3PC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "D9S2YAG2HUF7C3PC.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "D9S2YAG2HUF7C3PC.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "371" - }, - "appliesTo" : [ ] - }, - "D9S2YAG2HUF7C3PC.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "D9S2YAG2HUF7C3PC.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "D9S2YAG2HUF7C3PC.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "D9S2YAG2HUF7C3PC", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "D9S2YAG2HUF7C3PC.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "D9S2YAG2HUF7C3PC.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "626" - }, - "appliesTo" : [ ] - }, - "D9S2YAG2HUF7C3PC.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "D9S2YAG2HUF7C3PC.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "D9S2YAG2HUF7C3PC.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "D9S2YAG2HUF7C3PC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "D9S2YAG2HUF7C3PC.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "D9S2YAG2HUF7C3PC.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "755" - }, - "appliesTo" : [ ] - }, - "D9S2YAG2HUF7C3PC.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "D9S2YAG2HUF7C3PC.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "D9S2YAG2HUF7C3PC.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "D9S2YAG2HUF7C3PC", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "D9S2YAG2HUF7C3PC.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "D9S2YAG2HUF7C3PC.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "388" - }, - "appliesTo" : [ ] - }, - "D9S2YAG2HUF7C3PC.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "D9S2YAG2HUF7C3PC.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "D9S2YAG2HUF7C3PC.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "D9S2YAG2HUF7C3PC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "D9S2YAG2HUF7C3PC.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "D9S2YAG2HUF7C3PC.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "D9S2YAG2HUF7C3PC.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "D9S2YAG2HUF7C3PC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "D9S2YAG2HUF7C3PC.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "D9S2YAG2HUF7C3PC.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "228" - }, - "appliesTo" : [ ] - }, - "D9S2YAG2HUF7C3PC.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "D9S2YAG2HUF7C3PC.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "D9S2YAG2HUF7C3PC.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "D9S2YAG2HUF7C3PC", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "D9S2YAG2HUF7C3PC.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "D9S2YAG2HUF7C3PC.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "D9S2YAG2HUF7C3PC.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "D9S2YAG2HUF7C3PC", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "D9S2YAG2HUF7C3PC.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "D9S2YAG2HUF7C3PC.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0190000000" - }, - "appliesTo" : [ ] - }, - "D9S2YAG2HUF7C3PC.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "D9S2YAG2HUF7C3PC.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "232" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "D9S2YAG2HUF7C3PC.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "D9S2YAG2HUF7C3PC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "D9S2YAG2HUF7C3PC.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "D9S2YAG2HUF7C3PC.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "446" - }, - "appliesTo" : [ ] - }, - "D9S2YAG2HUF7C3PC.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "D9S2YAG2HUF7C3PC.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "D9S2YAG2HUF7C3PC.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "D9S2YAG2HUF7C3PC", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "D9S2YAG2HUF7C3PC.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "D9S2YAG2HUF7C3PC.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1048" - }, - "appliesTo" : [ ] - }, - "D9S2YAG2HUF7C3PC.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "D9S2YAG2HUF7C3PC.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "5R3VUZC6A5EED78S" : { - "5R3VUZC6A5EED78S.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "5R3VUZC6A5EED78S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5R3VUZC6A5EED78S.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "5R3VUZC6A5EED78S.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25390" - }, - "appliesTo" : [ ] - }, - "5R3VUZC6A5EED78S.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "5R3VUZC6A5EED78S.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5R3VUZC6A5EED78S.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "5R3VUZC6A5EED78S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5R3VUZC6A5EED78S.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "5R3VUZC6A5EED78S.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "5R3VUZC6A5EED78S.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "5R3VUZC6A5EED78S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5R3VUZC6A5EED78S.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "5R3VUZC6A5EED78S.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25879" - }, - "appliesTo" : [ ] - }, - "5R3VUZC6A5EED78S.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "5R3VUZC6A5EED78S.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "5R3VUZC6A5EED78S.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "5R3VUZC6A5EED78S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5R3VUZC6A5EED78S.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "5R3VUZC6A5EED78S.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "5R3VUZC6A5EED78S.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "5R3VUZC6A5EED78S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5R3VUZC6A5EED78S.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "5R3VUZC6A5EED78S.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "50388" - }, - "appliesTo" : [ ] - }, - "5R3VUZC6A5EED78S.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "5R3VUZC6A5EED78S.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5R3VUZC6A5EED78S.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "5R3VUZC6A5EED78S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5R3VUZC6A5EED78S.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "5R3VUZC6A5EED78S.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0870000000" - }, - "appliesTo" : [ ] - }, - "5R3VUZC6A5EED78S.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "5R3VUZC6A5EED78S.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9520" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5R3VUZC6A5EED78S.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "5R3VUZC6A5EED78S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5R3VUZC6A5EED78S.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "5R3VUZC6A5EED78S.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18954" - }, - "appliesTo" : [ ] - }, - "5R3VUZC6A5EED78S.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "5R3VUZC6A5EED78S.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5R3VUZC6A5EED78S.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "5R3VUZC6A5EED78S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5R3VUZC6A5EED78S.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "5R3VUZC6A5EED78S.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "5R3VUZC6A5EED78S.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "5R3VUZC6A5EED78S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5R3VUZC6A5EED78S.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "5R3VUZC6A5EED78S.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19584" - }, - "appliesTo" : [ ] - }, - "5R3VUZC6A5EED78S.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "5R3VUZC6A5EED78S.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "5R3VUZC6A5EED78S.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "5R3VUZC6A5EED78S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5R3VUZC6A5EED78S.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "5R3VUZC6A5EED78S.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "5R3VUZC6A5EED78S.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "5R3VUZC6A5EED78S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5R3VUZC6A5EED78S.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "5R3VUZC6A5EED78S.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9841" - }, - "appliesTo" : [ ] - }, - "5R3VUZC6A5EED78S.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "5R3VUZC6A5EED78S.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "5R3VUZC6A5EED78S.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "5R3VUZC6A5EED78S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5R3VUZC6A5EED78S.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "5R3VUZC6A5EED78S.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "5R3VUZC6A5EED78S.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "5R3VUZC6A5EED78S.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "51608" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "HS3PUQUMX2MJTFJA" : { - "HS3PUQUMX2MJTFJA.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "HS3PUQUMX2MJTFJA", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "HS3PUQUMX2MJTFJA.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "HS3PUQUMX2MJTFJA.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "80154" - }, - "appliesTo" : [ ] - }, - "HS3PUQUMX2MJTFJA.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "HS3PUQUMX2MJTFJA.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HS3PUQUMX2MJTFJA.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "HS3PUQUMX2MJTFJA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HS3PUQUMX2MJTFJA.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "HS3PUQUMX2MJTFJA.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "184080" - }, - "appliesTo" : [ ] - }, - "HS3PUQUMX2MJTFJA.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "HS3PUQUMX2MJTFJA.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "HS3PUQUMX2MJTFJA.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "HS3PUQUMX2MJTFJA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HS3PUQUMX2MJTFJA.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "HS3PUQUMX2MJTFJA.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6374000000" - }, - "appliesTo" : [ ] - }, - "HS3PUQUMX2MJTFJA.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "HS3PUQUMX2MJTFJA.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "92175" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HS3PUQUMX2MJTFJA.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "HS3PUQUMX2MJTFJA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HS3PUQUMX2MJTFJA.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "HS3PUQUMX2MJTFJA.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.7180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "HS3PUQUMX2MJTFJA.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "HS3PUQUMX2MJTFJA", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "HS3PUQUMX2MJTFJA.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "HS3PUQUMX2MJTFJA.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "154106" - }, - "appliesTo" : [ ] - }, - "HS3PUQUMX2MJTFJA.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "HS3PUQUMX2MJTFJA.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HS3PUQUMX2MJTFJA.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "HS3PUQUMX2MJTFJA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HS3PUQUMX2MJTFJA.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "HS3PUQUMX2MJTFJA.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "85054" - }, - "appliesTo" : [ ] - }, - "HS3PUQUMX2MJTFJA.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "HS3PUQUMX2MJTFJA.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "HS3PUQUMX2MJTFJA.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "HS3PUQUMX2MJTFJA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HS3PUQUMX2MJTFJA.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "HS3PUQUMX2MJTFJA.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "42814" - }, - "appliesTo" : [ ] - }, - "HS3PUQUMX2MJTFJA.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "HS3PUQUMX2MJTFJA.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.0174000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HS3PUQUMX2MJTFJA.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "HS3PUQUMX2MJTFJA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HS3PUQUMX2MJTFJA.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "HS3PUQUMX2MJTFJA.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.3936000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "HS3PUQUMX2MJTFJA.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "HS3PUQUMX2MJTFJA", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "HS3PUQUMX2MJTFJA.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "HS3PUQUMX2MJTFJA.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37230" - }, - "appliesTo" : [ ] - }, - "HS3PUQUMX2MJTFJA.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "HS3PUQUMX2MJTFJA.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.3800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HS3PUQUMX2MJTFJA.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "HS3PUQUMX2MJTFJA", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "HS3PUQUMX2MJTFJA.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "HS3PUQUMX2MJTFJA.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "74110" - }, - "appliesTo" : [ ] - }, - "HS3PUQUMX2MJTFJA.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "HS3PUQUMX2MJTFJA.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HS3PUQUMX2MJTFJA.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "HS3PUQUMX2MJTFJA", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "HS3PUQUMX2MJTFJA.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "HS3PUQUMX2MJTFJA.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.0550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "HS3PUQUMX2MJTFJA.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "HS3PUQUMX2MJTFJA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HS3PUQUMX2MJTFJA.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "HS3PUQUMX2MJTFJA.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.7061000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "85VBBX5K6EY4TRRG" : { - "85VBBX5K6EY4TRRG.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "85VBBX5K6EY4TRRG", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "85VBBX5K6EY4TRRG.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "85VBBX5K6EY4TRRG.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17455" - }, - "appliesTo" : [ ] - }, - "85VBBX5K6EY4TRRG.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "85VBBX5K6EY4TRRG.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "85VBBX5K6EY4TRRG.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "85VBBX5K6EY4TRRG", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "85VBBX5K6EY4TRRG.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "85VBBX5K6EY4TRRG.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "85VBBX5K6EY4TRRG.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "85VBBX5K6EY4TRRG", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "85VBBX5K6EY4TRRG.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "85VBBX5K6EY4TRRG.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19140" - }, - "appliesTo" : [ ] - }, - "85VBBX5K6EY4TRRG.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "85VBBX5K6EY4TRRG.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "85VBBX5K6EY4TRRG.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "85VBBX5K6EY4TRRG", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "85VBBX5K6EY4TRRG.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "85VBBX5K6EY4TRRG.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25224" - }, - "appliesTo" : [ ] - }, - "85VBBX5K6EY4TRRG.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "85VBBX5K6EY4TRRG.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "85VBBX5K6EY4TRRG.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "85VBBX5K6EY4TRRG", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "85VBBX5K6EY4TRRG.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "85VBBX5K6EY4TRRG.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9787" - }, - "appliesTo" : [ ] - }, - "85VBBX5K6EY4TRRG.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "85VBBX5K6EY4TRRG.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "85VBBX5K6EY4TRRG.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "85VBBX5K6EY4TRRG", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "85VBBX5K6EY4TRRG.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "85VBBX5K6EY4TRRG.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6493" - }, - "appliesTo" : [ ] - }, - "85VBBX5K6EY4TRRG.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "85VBBX5K6EY4TRRG.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "85VBBX5K6EY4TRRG.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "85VBBX5K6EY4TRRG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "85VBBX5K6EY4TRRG.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "85VBBX5K6EY4TRRG.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9450" - }, - "appliesTo" : [ ] - }, - "85VBBX5K6EY4TRRG.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "85VBBX5K6EY4TRRG.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "85VBBX5K6EY4TRRG.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "85VBBX5K6EY4TRRG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "85VBBX5K6EY4TRRG.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "85VBBX5K6EY4TRRG.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "85VBBX5K6EY4TRRG.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "85VBBX5K6EY4TRRG", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "85VBBX5K6EY4TRRG.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "85VBBX5K6EY4TRRG.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "85VBBX5K6EY4TRRG.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "85VBBX5K6EY4TRRG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "85VBBX5K6EY4TRRG.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "85VBBX5K6EY4TRRG.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5420000000" - }, - "appliesTo" : [ ] - }, - "85VBBX5K6EY4TRRG.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "85VBBX5K6EY4TRRG.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4745" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "85VBBX5K6EY4TRRG.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "85VBBX5K6EY4TRRG", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "85VBBX5K6EY4TRRG.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "85VBBX5K6EY4TRRG.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28851" - }, - "appliesTo" : [ ] - }, - "85VBBX5K6EY4TRRG.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "85VBBX5K6EY4TRRG.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "Z4Y83SEHA9UDFDP2" : { - "Z4Y83SEHA9UDFDP2.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "Z4Y83SEHA9UDFDP2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z4Y83SEHA9UDFDP2.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "Z4Y83SEHA9UDFDP2.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8337" - }, - "appliesTo" : [ ] - }, - "Z4Y83SEHA9UDFDP2.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "Z4Y83SEHA9UDFDP2.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Z4Y83SEHA9UDFDP2.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "Z4Y83SEHA9UDFDP2", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Z4Y83SEHA9UDFDP2.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "Z4Y83SEHA9UDFDP2.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9294" - }, - "appliesTo" : [ ] - }, - "Z4Y83SEHA9UDFDP2.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "Z4Y83SEHA9UDFDP2.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3533000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z4Y83SEHA9UDFDP2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Z4Y83SEHA9UDFDP2", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Z4Y83SEHA9UDFDP2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Z4Y83SEHA9UDFDP2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3746" - }, - "appliesTo" : [ ] - }, - "Z4Y83SEHA9UDFDP2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Z4Y83SEHA9UDFDP2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4206000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z4Y83SEHA9UDFDP2.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "Z4Y83SEHA9UDFDP2", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Z4Y83SEHA9UDFDP2.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "Z4Y83SEHA9UDFDP2.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18221" - }, - "appliesTo" : [ ] - }, - "Z4Y83SEHA9UDFDP2.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "Z4Y83SEHA9UDFDP2.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Z4Y83SEHA9UDFDP2.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "Z4Y83SEHA9UDFDP2", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Z4Y83SEHA9UDFDP2.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "Z4Y83SEHA9UDFDP2.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6721000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Z4Y83SEHA9UDFDP2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Z4Y83SEHA9UDFDP2", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Z4Y83SEHA9UDFDP2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Z4Y83SEHA9UDFDP2.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8889000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Z4Y83SEHA9UDFDP2.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "Z4Y83SEHA9UDFDP2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z4Y83SEHA9UDFDP2.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "Z4Y83SEHA9UDFDP2.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4282" - }, - "appliesTo" : [ ] - }, - "Z4Y83SEHA9UDFDP2.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "Z4Y83SEHA9UDFDP2.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4817000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z4Y83SEHA9UDFDP2.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "Z4Y83SEHA9UDFDP2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z4Y83SEHA9UDFDP2.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "Z4Y83SEHA9UDFDP2.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0172000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Z4Y83SEHA9UDFDP2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Z4Y83SEHA9UDFDP2", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Z4Y83SEHA9UDFDP2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Z4Y83SEHA9UDFDP2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8128" - }, - "appliesTo" : [ ] - }, - "Z4Y83SEHA9UDFDP2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Z4Y83SEHA9UDFDP2.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3089000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z4Y83SEHA9UDFDP2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Z4Y83SEHA9UDFDP2", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Z4Y83SEHA9UDFDP2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Z4Y83SEHA9UDFDP2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7287" - }, - "appliesTo" : [ ] - }, - "Z4Y83SEHA9UDFDP2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Z4Y83SEHA9UDFDP2.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Z4Y83SEHA9UDFDP2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Z4Y83SEHA9UDFDP2", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Z4Y83SEHA9UDFDP2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Z4Y83SEHA9UDFDP2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15312" - }, - "appliesTo" : [ ] - }, - "Z4Y83SEHA9UDFDP2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Z4Y83SEHA9UDFDP2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Z4Y83SEHA9UDFDP2.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "Z4Y83SEHA9UDFDP2", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Z4Y83SEHA9UDFDP2.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "Z4Y83SEHA9UDFDP2.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "QYS4PZ8A9Q32ZPH2" : { - "QYS4PZ8A9Q32ZPH2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QYS4PZ8A9Q32ZPH2", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QYS4PZ8A9Q32ZPH2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QYS4PZ8A9Q32ZPH2.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.1490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QYS4PZ8A9Q32ZPH2.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "QYS4PZ8A9Q32ZPH2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QYS4PZ8A9Q32ZPH2.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "QYS4PZ8A9Q32ZPH2.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "43586" - }, - "appliesTo" : [ ] - }, - "QYS4PZ8A9Q32ZPH2.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "QYS4PZ8A9Q32ZPH2.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QYS4PZ8A9Q32ZPH2.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "QYS4PZ8A9Q32ZPH2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QYS4PZ8A9Q32ZPH2.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "QYS4PZ8A9Q32ZPH2.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.4090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QYS4PZ8A9Q32ZPH2.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "QYS4PZ8A9Q32ZPH2", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QYS4PZ8A9Q32ZPH2.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "QYS4PZ8A9Q32ZPH2.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "97787" - }, - "appliesTo" : [ ] - }, - "QYS4PZ8A9Q32ZPH2.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "QYS4PZ8A9Q32ZPH2.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QYS4PZ8A9Q32ZPH2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QYS4PZ8A9Q32ZPH2", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QYS4PZ8A9Q32ZPH2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QYS4PZ8A9Q32ZPH2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "75270" - }, - "appliesTo" : [ ] - }, - "QYS4PZ8A9Q32ZPH2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QYS4PZ8A9Q32ZPH2.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QYS4PZ8A9Q32ZPH2.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "QYS4PZ8A9Q32ZPH2", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QYS4PZ8A9Q32ZPH2.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "QYS4PZ8A9Q32ZPH2.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.9740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QYS4PZ8A9Q32ZPH2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QYS4PZ8A9Q32ZPH2", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QYS4PZ8A9Q32ZPH2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QYS4PZ8A9Q32ZPH2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "75270" - }, - "appliesTo" : [ ] - }, - "QYS4PZ8A9Q32ZPH2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QYS4PZ8A9Q32ZPH2.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QYS4PZ8A9Q32ZPH2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QYS4PZ8A9Q32ZPH2", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QYS4PZ8A9Q32ZPH2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QYS4PZ8A9Q32ZPH2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "142762" - }, - "appliesTo" : [ ] - }, - "QYS4PZ8A9Q32ZPH2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QYS4PZ8A9Q32ZPH2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QYS4PZ8A9Q32ZPH2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QYS4PZ8A9Q32ZPH2", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QYS4PZ8A9Q32ZPH2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QYS4PZ8A9Q32ZPH2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38332" - }, - "appliesTo" : [ ] - }, - "QYS4PZ8A9Q32ZPH2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QYS4PZ8A9Q32ZPH2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.3760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QYS4PZ8A9Q32ZPH2.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "QYS4PZ8A9Q32ZPH2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QYS4PZ8A9Q32ZPH2.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "QYS4PZ8A9Q32ZPH2.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QYS4PZ8A9Q32ZPH2.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "QYS4PZ8A9Q32ZPH2.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "85568" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QYS4PZ8A9Q32ZPH2.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "QYS4PZ8A9Q32ZPH2", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QYS4PZ8A9Q32ZPH2.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "QYS4PZ8A9Q32ZPH2.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "192080" - }, - "appliesTo" : [ ] - }, - "QYS4PZ8A9Q32ZPH2.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "QYS4PZ8A9Q32ZPH2.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QYS4PZ8A9Q32ZPH2.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "QYS4PZ8A9Q32ZPH2", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QYS4PZ8A9Q32ZPH2.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "QYS4PZ8A9Q32ZPH2.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.1230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "T55J69CYMKUV3MQC" : { - "T55J69CYMKUV3MQC.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "T55J69CYMKUV3MQC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "T55J69CYMKUV3MQC.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "T55J69CYMKUV3MQC.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "T55J69CYMKUV3MQC.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "T55J69CYMKUV3MQC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "T55J69CYMKUV3MQC.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "T55J69CYMKUV3MQC.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3600" - }, - "appliesTo" : [ ] - }, - "T55J69CYMKUV3MQC.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "T55J69CYMKUV3MQC.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "T55J69CYMKUV3MQC.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "T55J69CYMKUV3MQC", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "T55J69CYMKUV3MQC.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "T55J69CYMKUV3MQC.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2710000000" - }, - "appliesTo" : [ ] - }, - "T55J69CYMKUV3MQC.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "T55J69CYMKUV3MQC.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4413" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "T55J69CYMKUV3MQC.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "T55J69CYMKUV3MQC", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "T55J69CYMKUV3MQC.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "T55J69CYMKUV3MQC.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "T55J69CYMKUV3MQC.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "T55J69CYMKUV3MQC", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "T55J69CYMKUV3MQC.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "T55J69CYMKUV3MQC.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "T55J69CYMKUV3MQC.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "T55J69CYMKUV3MQC", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "T55J69CYMKUV3MQC.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "T55J69CYMKUV3MQC.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12561" - }, - "appliesTo" : [ ] - }, - "T55J69CYMKUV3MQC.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "T55J69CYMKUV3MQC.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "T55J69CYMKUV3MQC.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "T55J69CYMKUV3MQC", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "T55J69CYMKUV3MQC.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "T55J69CYMKUV3MQC.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14674" - }, - "appliesTo" : [ ] - }, - "T55J69CYMKUV3MQC.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "T55J69CYMKUV3MQC.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "T55J69CYMKUV3MQC.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "T55J69CYMKUV3MQC", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "T55J69CYMKUV3MQC.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "T55J69CYMKUV3MQC.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18936" - }, - "appliesTo" : [ ] - }, - "T55J69CYMKUV3MQC.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "T55J69CYMKUV3MQC.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "T55J69CYMKUV3MQC.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "T55J69CYMKUV3MQC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "T55J69CYMKUV3MQC.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "T55J69CYMKUV3MQC.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7120" - }, - "appliesTo" : [ ] - }, - "T55J69CYMKUV3MQC.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "T55J69CYMKUV3MQC.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "T55J69CYMKUV3MQC.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "T55J69CYMKUV3MQC", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "T55J69CYMKUV3MQC.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "T55J69CYMKUV3MQC.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6652" - }, - "appliesTo" : [ ] - }, - "T55J69CYMKUV3MQC.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "T55J69CYMKUV3MQC.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "T55J69CYMKUV3MQC.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "T55J69CYMKUV3MQC", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "T55J69CYMKUV3MQC.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "T55J69CYMKUV3MQC.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9367" - }, - "appliesTo" : [ ] - }, - "T55J69CYMKUV3MQC.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "T55J69CYMKUV3MQC.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "4EJ6YKYP3U22GDYZ" : { - "4EJ6YKYP3U22GDYZ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "4EJ6YKYP3U22GDYZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4EJ6YKYP3U22GDYZ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "4EJ6YKYP3U22GDYZ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "4EJ6YKYP3U22GDYZ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "4EJ6YKYP3U22GDYZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4EJ6YKYP3U22GDYZ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "4EJ6YKYP3U22GDYZ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14665" - }, - "appliesTo" : [ ] - }, - "4EJ6YKYP3U22GDYZ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "4EJ6YKYP3U22GDYZ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4EJ6YKYP3U22GDYZ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "4EJ6YKYP3U22GDYZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4EJ6YKYP3U22GDYZ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "4EJ6YKYP3U22GDYZ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17614" - }, - "appliesTo" : [ ] - }, - "4EJ6YKYP3U22GDYZ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "4EJ6YKYP3U22GDYZ.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4EJ6YKYP3U22GDYZ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "4EJ6YKYP3U22GDYZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4EJ6YKYP3U22GDYZ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "4EJ6YKYP3U22GDYZ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "4EJ6YKYP3U22GDYZ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "4EJ6YKYP3U22GDYZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4EJ6YKYP3U22GDYZ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "4EJ6YKYP3U22GDYZ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "4EJ6YKYP3U22GDYZ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "4EJ6YKYP3U22GDYZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4EJ6YKYP3U22GDYZ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "4EJ6YKYP3U22GDYZ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9063" - }, - "appliesTo" : [ ] - }, - "4EJ6YKYP3U22GDYZ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "4EJ6YKYP3U22GDYZ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4EJ6YKYP3U22GDYZ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "4EJ6YKYP3U22GDYZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4EJ6YKYP3U22GDYZ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "4EJ6YKYP3U22GDYZ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4021" - }, - "appliesTo" : [ ] - }, - "4EJ6YKYP3U22GDYZ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "4EJ6YKYP3U22GDYZ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4EJ6YKYP3U22GDYZ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "4EJ6YKYP3U22GDYZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4EJ6YKYP3U22GDYZ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "4EJ6YKYP3U22GDYZ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "4EJ6YKYP3U22GDYZ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "4EJ6YKYP3U22GDYZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4EJ6YKYP3U22GDYZ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "4EJ6YKYP3U22GDYZ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4624" - }, - "appliesTo" : [ ] - }, - "4EJ6YKYP3U22GDYZ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "4EJ6YKYP3U22GDYZ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4EJ6YKYP3U22GDYZ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "4EJ6YKYP3U22GDYZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4EJ6YKYP3U22GDYZ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "4EJ6YKYP3U22GDYZ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7881" - }, - "appliesTo" : [ ] - }, - "4EJ6YKYP3U22GDYZ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "4EJ6YKYP3U22GDYZ.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4EJ6YKYP3U22GDYZ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "4EJ6YKYP3U22GDYZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4EJ6YKYP3U22GDYZ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "4EJ6YKYP3U22GDYZ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8987" - }, - "appliesTo" : [ ] - }, - "4EJ6YKYP3U22GDYZ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "4EJ6YKYP3U22GDYZ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4EJ6YKYP3U22GDYZ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "4EJ6YKYP3U22GDYZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4EJ6YKYP3U22GDYZ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "4EJ6YKYP3U22GDYZ.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2970000000" - }, - "appliesTo" : [ ] - }, - "4EJ6YKYP3U22GDYZ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "4EJ6YKYP3U22GDYZ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7800" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "3XXW5XAES8B7AAAP" : { - "3XXW5XAES8B7AAAP.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "3XXW5XAES8B7AAAP", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "3XXW5XAES8B7AAAP.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "3XXW5XAES8B7AAAP.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12304" - }, - "appliesTo" : [ ] - }, - "3XXW5XAES8B7AAAP.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "3XXW5XAES8B7AAAP.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3XXW5XAES8B7AAAP.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "3XXW5XAES8B7AAAP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3XXW5XAES8B7AAAP.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "3XXW5XAES8B7AAAP.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "3XXW5XAES8B7AAAP.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "3XXW5XAES8B7AAAP.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27627" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3XXW5XAES8B7AAAP.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "3XXW5XAES8B7AAAP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3XXW5XAES8B7AAAP.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "3XXW5XAES8B7AAAP.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0074000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3XXW5XAES8B7AAAP.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "3XXW5XAES8B7AAAP", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "3XXW5XAES8B7AAAP.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "3XXW5XAES8B7AAAP.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23132" - }, - "appliesTo" : [ ] - }, - "3XXW5XAES8B7AAAP.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "3XXW5XAES8B7AAAP.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3XXW5XAES8B7AAAP.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "3XXW5XAES8B7AAAP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3XXW5XAES8B7AAAP.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "3XXW5XAES8B7AAAP.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14096" - }, - "appliesTo" : [ ] - }, - "3XXW5XAES8B7AAAP.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "3XXW5XAES8B7AAAP.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5364000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3XXW5XAES8B7AAAP.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "3XXW5XAES8B7AAAP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3XXW5XAES8B7AAAP.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "3XXW5XAES8B7AAAP.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "3XXW5XAES8B7AAAP.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "3XXW5XAES8B7AAAP.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13900" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3XXW5XAES8B7AAAP.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "3XXW5XAES8B7AAAP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3XXW5XAES8B7AAAP.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "3XXW5XAES8B7AAAP.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7092" - }, - "appliesTo" : [ ] - }, - "3XXW5XAES8B7AAAP.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "3XXW5XAES8B7AAAP.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8096000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3XXW5XAES8B7AAAP.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "3XXW5XAES8B7AAAP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3XXW5XAES8B7AAAP.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "3XXW5XAES8B7AAAP.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7001000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3XXW5XAES8B7AAAP.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "3XXW5XAES8B7AAAP", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "3XXW5XAES8B7AAAP.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "3XXW5XAES8B7AAAP.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12058" - }, - "appliesTo" : [ ] - }, - "3XXW5XAES8B7AAAP.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "3XXW5XAES8B7AAAP.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3XXW5XAES8B7AAAP.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "3XXW5XAES8B7AAAP", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "3XXW5XAES8B7AAAP.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "3XXW5XAES8B7AAAP.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6152" - }, - "appliesTo" : [ ] - }, - "3XXW5XAES8B7AAAP.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "3XXW5XAES8B7AAAP.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3XXW5XAES8B7AAAP.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "3XXW5XAES8B7AAAP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3XXW5XAES8B7AAAP.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "3XXW5XAES8B7AAAP.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4784000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3XXW5XAES8B7AAAP.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "3XXW5XAES8B7AAAP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3XXW5XAES8B7AAAP.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "3XXW5XAES8B7AAAP.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1585000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "R9EGFXUGURH2UNA2" : { - "R9EGFXUGURH2UNA2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "R9EGFXUGURH2UNA2", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "R9EGFXUGURH2UNA2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "R9EGFXUGURH2UNA2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20367" - }, - "appliesTo" : [ ] - }, - "R9EGFXUGURH2UNA2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "R9EGFXUGURH2UNA2.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "R9EGFXUGURH2UNA2.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "R9EGFXUGURH2UNA2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R9EGFXUGURH2UNA2.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "R9EGFXUGURH2UNA2.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25566" - }, - "appliesTo" : [ ] - }, - "R9EGFXUGURH2UNA2.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "R9EGFXUGURH2UNA2.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "R9EGFXUGURH2UNA2.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "R9EGFXUGURH2UNA2", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "R9EGFXUGURH2UNA2.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "R9EGFXUGURH2UNA2.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30789" - }, - "appliesTo" : [ ] - }, - "R9EGFXUGURH2UNA2.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "R9EGFXUGURH2UNA2.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "R9EGFXUGURH2UNA2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "R9EGFXUGURH2UNA2", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "R9EGFXUGURH2UNA2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "R9EGFXUGURH2UNA2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10393" - }, - "appliesTo" : [ ] - }, - "R9EGFXUGURH2UNA2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "R9EGFXUGURH2UNA2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "R9EGFXUGURH2UNA2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "R9EGFXUGURH2UNA2", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "R9EGFXUGURH2UNA2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "R9EGFXUGURH2UNA2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "44206" - }, - "appliesTo" : [ ] - }, - "R9EGFXUGURH2UNA2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "R9EGFXUGURH2UNA2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "R9EGFXUGURH2UNA2.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "R9EGFXUGURH2UNA2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "R9EGFXUGURH2UNA2.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "R9EGFXUGURH2UNA2.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "R9EGFXUGURH2UNA2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "R9EGFXUGURH2UNA2", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "R9EGFXUGURH2UNA2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "R9EGFXUGURH2UNA2.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "R9EGFXUGURH2UNA2.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "R9EGFXUGURH2UNA2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R9EGFXUGURH2UNA2.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "R9EGFXUGURH2UNA2.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12810" - }, - "appliesTo" : [ ] - }, - "R9EGFXUGURH2UNA2.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "R9EGFXUGURH2UNA2.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "R9EGFXUGURH2UNA2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "R9EGFXUGURH2UNA2", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "R9EGFXUGURH2UNA2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "R9EGFXUGURH2UNA2.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8950000000" - }, - "appliesTo" : [ ] - }, - "R9EGFXUGURH2UNA2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "R9EGFXUGURH2UNA2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23513" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "R9EGFXUGURH2UNA2.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "R9EGFXUGURH2UNA2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "R9EGFXUGURH2UNA2.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "R9EGFXUGURH2UNA2.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "60341" - }, - "appliesTo" : [ ] - }, - "R9EGFXUGURH2UNA2.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "R9EGFXUGURH2UNA2.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "R9EGFXUGURH2UNA2.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "R9EGFXUGURH2UNA2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "R9EGFXUGURH2UNA2.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "R9EGFXUGURH2UNA2.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "R9EGFXUGURH2UNA2.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "R9EGFXUGURH2UNA2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R9EGFXUGURH2UNA2.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "R9EGFXUGURH2UNA2.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "R9PWNAHCDMYRXNMW" : { - "R9PWNAHCDMYRXNMW.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "R9PWNAHCDMYRXNMW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "R9PWNAHCDMYRXNMW.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "R9PWNAHCDMYRXNMW.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6006000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "R9PWNAHCDMYRXNMW.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "R9PWNAHCDMYRXNMW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "R9PWNAHCDMYRXNMW.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "R9PWNAHCDMYRXNMW.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7520000000" - }, - "appliesTo" : [ ] - }, - "R9PWNAHCDMYRXNMW.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "R9PWNAHCDMYRXNMW.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19763" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "R9PWNAHCDMYRXNMW.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "R9PWNAHCDMYRXNMW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "R9PWNAHCDMYRXNMW.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "R9PWNAHCDMYRXNMW.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5181000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "R9PWNAHCDMYRXNMW.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "R9PWNAHCDMYRXNMW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R9PWNAHCDMYRXNMW.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "R9PWNAHCDMYRXNMW.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6415000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "R9PWNAHCDMYRXNMW.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "R9PWNAHCDMYRXNMW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R9PWNAHCDMYRXNMW.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "R9PWNAHCDMYRXNMW.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14196" - }, - "appliesTo" : [ ] - }, - "R9PWNAHCDMYRXNMW.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "R9PWNAHCDMYRXNMW.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "R9PWNAHCDMYRXNMW.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "R9PWNAHCDMYRXNMW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "R9PWNAHCDMYRXNMW.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "R9PWNAHCDMYRXNMW.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "40113" - }, - "appliesTo" : [ ] - }, - "R9PWNAHCDMYRXNMW.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "R9PWNAHCDMYRXNMW.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "R9PWNAHCDMYRXNMW.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "R9PWNAHCDMYRXNMW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R9PWNAHCDMYRXNMW.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "R9PWNAHCDMYRXNMW.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7124" - }, - "appliesTo" : [ ] - }, - "R9PWNAHCDMYRXNMW.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "R9PWNAHCDMYRXNMW.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8133000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "R9PWNAHCDMYRXNMW.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "R9PWNAHCDMYRXNMW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "R9PWNAHCDMYRXNMW.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "R9PWNAHCDMYRXNMW.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6954" - }, - "appliesTo" : [ ] - }, - "R9PWNAHCDMYRXNMW.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "R9PWNAHCDMYRXNMW.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7938000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "R9PWNAHCDMYRXNMW.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "R9PWNAHCDMYRXNMW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "R9PWNAHCDMYRXNMW.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "R9PWNAHCDMYRXNMW.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13862" - }, - "appliesTo" : [ ] - }, - "R9PWNAHCDMYRXNMW.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "R9PWNAHCDMYRXNMW.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "R9PWNAHCDMYRXNMW.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "R9PWNAHCDMYRXNMW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "R9PWNAHCDMYRXNMW.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "R9PWNAHCDMYRXNMW.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5466000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "R9PWNAHCDMYRXNMW.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "R9PWNAHCDMYRXNMW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "R9PWNAHCDMYRXNMW.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "R9PWNAHCDMYRXNMW.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20109" - }, - "appliesTo" : [ ] - }, - "R9PWNAHCDMYRXNMW.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "R9PWNAHCDMYRXNMW.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7652000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "R9PWNAHCDMYRXNMW.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "R9PWNAHCDMYRXNMW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "R9PWNAHCDMYRXNMW.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "R9PWNAHCDMYRXNMW.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39248" - }, - "appliesTo" : [ ] - }, - "R9PWNAHCDMYRXNMW.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "R9PWNAHCDMYRXNMW.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "ATA6MJZDUQ53CRMP" : { - "ATA6MJZDUQ53CRMP.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ATA6MJZDUQ53CRMP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ATA6MJZDUQ53CRMP.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ATA6MJZDUQ53CRMP.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "513" - }, - "appliesTo" : [ ] - }, - "ATA6MJZDUQ53CRMP.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ATA6MJZDUQ53CRMP.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ATA6MJZDUQ53CRMP.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ATA6MJZDUQ53CRMP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ATA6MJZDUQ53CRMP.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ATA6MJZDUQ53CRMP.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ATA6MJZDUQ53CRMP.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ATA6MJZDUQ53CRMP", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "ATA6MJZDUQ53CRMP.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ATA6MJZDUQ53CRMP.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1212" - }, - "appliesTo" : [ ] - }, - "ATA6MJZDUQ53CRMP.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ATA6MJZDUQ53CRMP.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ATA6MJZDUQ53CRMP.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ATA6MJZDUQ53CRMP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ATA6MJZDUQ53CRMP.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ATA6MJZDUQ53CRMP.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1248" - }, - "appliesTo" : [ ] - }, - "ATA6MJZDUQ53CRMP.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ATA6MJZDUQ53CRMP.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ATA6MJZDUQ53CRMP.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ATA6MJZDUQ53CRMP", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "ATA6MJZDUQ53CRMP.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ATA6MJZDUQ53CRMP.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ATA6MJZDUQ53CRMP.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ATA6MJZDUQ53CRMP.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2851" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "89WDVYSF7M632K4P" : { - "89WDVYSF7M632K4P.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "89WDVYSF7M632K4P", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "89WDVYSF7M632K4P.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "89WDVYSF7M632K4P.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25735" - }, - "appliesTo" : [ ] - }, - "89WDVYSF7M632K4P.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "89WDVYSF7M632K4P.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "89WDVYSF7M632K4P.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "89WDVYSF7M632K4P", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "89WDVYSF7M632K4P.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "89WDVYSF7M632K4P.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13158" - }, - "appliesTo" : [ ] - }, - "89WDVYSF7M632K4P.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "89WDVYSF7M632K4P.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "89WDVYSF7M632K4P.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "89WDVYSF7M632K4P", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "89WDVYSF7M632K4P.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "89WDVYSF7M632K4P.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "89WDVYSF7M632K4P.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "89WDVYSF7M632K4P", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "89WDVYSF7M632K4P.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "89WDVYSF7M632K4P.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7057000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "89WDVYSF7M632K4P.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "89WDVYSF7M632K4P", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "89WDVYSF7M632K4P.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "89WDVYSF7M632K4P.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "64429" - }, - "appliesTo" : [ ] - }, - "89WDVYSF7M632K4P.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "89WDVYSF7M632K4P.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "89WDVYSF7M632K4P.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "89WDVYSF7M632K4P", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "89WDVYSF7M632K4P.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "89WDVYSF7M632K4P.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29552" - }, - "appliesTo" : [ ] - }, - "89WDVYSF7M632K4P.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "89WDVYSF7M632K4P.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "89WDVYSF7M632K4P.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "89WDVYSF7M632K4P", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "89WDVYSF7M632K4P.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "89WDVYSF7M632K4P.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1452000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "89WDVYSF7M632K4P.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "89WDVYSF7M632K4P", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "89WDVYSF7M632K4P.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "89WDVYSF7M632K4P.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "89WDVYSF7M632K4P.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "89WDVYSF7M632K4P", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "89WDVYSF7M632K4P.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "89WDVYSF7M632K4P.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15106" - }, - "appliesTo" : [ ] - }, - "89WDVYSF7M632K4P.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "89WDVYSF7M632K4P.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7173000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "89WDVYSF7M632K4P.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "89WDVYSF7M632K4P", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "89WDVYSF7M632K4P.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "89WDVYSF7M632K4P.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "53852" - }, - "appliesTo" : [ ] - }, - "89WDVYSF7M632K4P.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "89WDVYSF7M632K4P.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "89WDVYSF7M632K4P.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "89WDVYSF7M632K4P", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "89WDVYSF7M632K4P.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "89WDVYSF7M632K4P.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2504000000" - }, - "appliesTo" : [ ] - }, - "89WDVYSF7M632K4P.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "89WDVYSF7M632K4P.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32870" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "89WDVYSF7M632K4P.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "89WDVYSF7M632K4P", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "89WDVYSF7M632K4P.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "89WDVYSF7M632K4P.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28627" - }, - "appliesTo" : [ ] - }, - "89WDVYSF7M632K4P.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "89WDVYSF7M632K4P.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0889000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "63ADXUYM8Q7RHXYU" : { - "63ADXUYM8Q7RHXYU.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "63ADXUYM8Q7RHXYU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "63ADXUYM8Q7RHXYU.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "63ADXUYM8Q7RHXYU.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12048" - }, - "appliesTo" : [ ] - }, - "63ADXUYM8Q7RHXYU.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "63ADXUYM8Q7RHXYU.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "63ADXUYM8Q7RHXYU.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "63ADXUYM8Q7RHXYU", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "63ADXUYM8Q7RHXYU.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "63ADXUYM8Q7RHXYU.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "63ADXUYM8Q7RHXYU.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "63ADXUYM8Q7RHXYU.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24736" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "63ADXUYM8Q7RHXYU.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "63ADXUYM8Q7RHXYU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "63ADXUYM8Q7RHXYU.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "63ADXUYM8Q7RHXYU.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "63ADXUYM8Q7RHXYU.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "63ADXUYM8Q7RHXYU.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28387" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "63ADXUYM8Q7RHXYU.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "63ADXUYM8Q7RHXYU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "63ADXUYM8Q7RHXYU.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "63ADXUYM8Q7RHXYU.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32530" - }, - "appliesTo" : [ ] - }, - "63ADXUYM8Q7RHXYU.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "63ADXUYM8Q7RHXYU.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "63ADXUYM8Q7RHXYU.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "63ADXUYM8Q7RHXYU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "63ADXUYM8Q7RHXYU.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "63ADXUYM8Q7RHXYU.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13902" - }, - "appliesTo" : [ ] - }, - "63ADXUYM8Q7RHXYU.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "63ADXUYM8Q7RHXYU.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "63ADXUYM8Q7RHXYU.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "63ADXUYM8Q7RHXYU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "63ADXUYM8Q7RHXYU.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "63ADXUYM8Q7RHXYU.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "63ADXUYM8Q7RHXYU.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "63ADXUYM8Q7RHXYU", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "63ADXUYM8Q7RHXYU.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "63ADXUYM8Q7RHXYU.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22136" - }, - "appliesTo" : [ ] - }, - "63ADXUYM8Q7RHXYU.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "63ADXUYM8Q7RHXYU.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "63ADXUYM8Q7RHXYU.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "63ADXUYM8Q7RHXYU", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "63ADXUYM8Q7RHXYU.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "63ADXUYM8Q7RHXYU.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "63ADXUYM8Q7RHXYU.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "63ADXUYM8Q7RHXYU", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "63ADXUYM8Q7RHXYU.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "63ADXUYM8Q7RHXYU.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "63ADXUYM8Q7RHXYU.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "63ADXUYM8Q7RHXYU.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "67123" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "63ADXUYM8Q7RHXYU.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "63ADXUYM8Q7RHXYU", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "63ADXUYM8Q7RHXYU.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "63ADXUYM8Q7RHXYU.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "63ADXUYM8Q7RHXYU.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "63ADXUYM8Q7RHXYU", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "63ADXUYM8Q7RHXYU.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "63ADXUYM8Q7RHXYU.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "44770" - }, - "appliesTo" : [ ] - }, - "63ADXUYM8Q7RHXYU.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "63ADXUYM8Q7RHXYU.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "P2X2N5M2PU9A9XS4" : { - "P2X2N5M2PU9A9XS4.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "P2X2N5M2PU9A9XS4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "P2X2N5M2PU9A9XS4.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "P2X2N5M2PU9A9XS4.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1657" - }, - "appliesTo" : [ ] - }, - "P2X2N5M2PU9A9XS4.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "P2X2N5M2PU9A9XS4.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "P2X2N5M2PU9A9XS4.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "P2X2N5M2PU9A9XS4", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "P2X2N5M2PU9A9XS4.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "P2X2N5M2PU9A9XS4.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "P2X2N5M2PU9A9XS4.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "P2X2N5M2PU9A9XS4", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "P2X2N5M2PU9A9XS4.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "P2X2N5M2PU9A9XS4.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3815" - }, - "appliesTo" : [ ] - }, - "P2X2N5M2PU9A9XS4.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "P2X2N5M2PU9A9XS4.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "P2X2N5M2PU9A9XS4.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "P2X2N5M2PU9A9XS4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "P2X2N5M2PU9A9XS4.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "P2X2N5M2PU9A9XS4.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7345" - }, - "appliesTo" : [ ] - }, - "P2X2N5M2PU9A9XS4.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "P2X2N5M2PU9A9XS4.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "P2X2N5M2PU9A9XS4.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "P2X2N5M2PU9A9XS4", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "P2X2N5M2PU9A9XS4.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "P2X2N5M2PU9A9XS4.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3044" - }, - "appliesTo" : [ ] - }, - "P2X2N5M2PU9A9XS4.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "P2X2N5M2PU9A9XS4.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "P2X2N5M2PU9A9XS4.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "P2X2N5M2PU9A9XS4", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "P2X2N5M2PU9A9XS4.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "P2X2N5M2PU9A9XS4.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10471" - }, - "appliesTo" : [ ] - }, - "P2X2N5M2PU9A9XS4.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "P2X2N5M2PU9A9XS4.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "P2X2N5M2PU9A9XS4.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "P2X2N5M2PU9A9XS4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "P2X2N5M2PU9A9XS4.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "P2X2N5M2PU9A9XS4.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4474" - }, - "appliesTo" : [ ] - }, - "P2X2N5M2PU9A9XS4.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "P2X2N5M2PU9A9XS4.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "P2X2N5M2PU9A9XS4.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "P2X2N5M2PU9A9XS4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P2X2N5M2PU9A9XS4.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "P2X2N5M2PU9A9XS4.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1912" - }, - "appliesTo" : [ ] - }, - "P2X2N5M2PU9A9XS4.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "P2X2N5M2PU9A9XS4.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "P2X2N5M2PU9A9XS4.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "P2X2N5M2PU9A9XS4", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "P2X2N5M2PU9A9XS4.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "P2X2N5M2PU9A9XS4.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "P2X2N5M2PU9A9XS4.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "P2X2N5M2PU9A9XS4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P2X2N5M2PU9A9XS4.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "P2X2N5M2PU9A9XS4.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "P2X2N5M2PU9A9XS4.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "P2X2N5M2PU9A9XS4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P2X2N5M2PU9A9XS4.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "P2X2N5M2PU9A9XS4.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4272" - }, - "appliesTo" : [ ] - }, - "P2X2N5M2PU9A9XS4.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "P2X2N5M2PU9A9XS4.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "YMRN5MTGT97CSMR5" : { - "YMRN5MTGT97CSMR5.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "YMRN5MTGT97CSMR5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YMRN5MTGT97CSMR5.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "YMRN5MTGT97CSMR5.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "383" - }, - "appliesTo" : [ ] - }, - "YMRN5MTGT97CSMR5.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "YMRN5MTGT97CSMR5.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YMRN5MTGT97CSMR5.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "YMRN5MTGT97CSMR5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YMRN5MTGT97CSMR5.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "YMRN5MTGT97CSMR5.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YMRN5MTGT97CSMR5.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YMRN5MTGT97CSMR5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YMRN5MTGT97CSMR5.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YMRN5MTGT97CSMR5.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "398" - }, - "appliesTo" : [ ] - }, - "YMRN5MTGT97CSMR5.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YMRN5MTGT97CSMR5.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YMRN5MTGT97CSMR5.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YMRN5MTGT97CSMR5", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YMRN5MTGT97CSMR5.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YMRN5MTGT97CSMR5.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YMRN5MTGT97CSMR5.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "YMRN5MTGT97CSMR5", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "YMRN5MTGT97CSMR5.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "YMRN5MTGT97CSMR5.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YMRN5MTGT97CSMR5.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "YMRN5MTGT97CSMR5.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1555" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YMRN5MTGT97CSMR5.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "YMRN5MTGT97CSMR5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YMRN5MTGT97CSMR5.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "YMRN5MTGT97CSMR5.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YMRN5MTGT97CSMR5.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "YMRN5MTGT97CSMR5.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "696" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YMRN5MTGT97CSMR5.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "YMRN5MTGT97CSMR5", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YMRN5MTGT97CSMR5.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "YMRN5MTGT97CSMR5.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YMRN5MTGT97CSMR5.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YMRN5MTGT97CSMR5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YMRN5MTGT97CSMR5.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YMRN5MTGT97CSMR5.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1289" - }, - "appliesTo" : [ ] - }, - "YMRN5MTGT97CSMR5.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YMRN5MTGT97CSMR5.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YMRN5MTGT97CSMR5.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "YMRN5MTGT97CSMR5", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YMRN5MTGT97CSMR5.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "YMRN5MTGT97CSMR5.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "922" - }, - "appliesTo" : [ ] - }, - "YMRN5MTGT97CSMR5.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "YMRN5MTGT97CSMR5.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YMRN5MTGT97CSMR5.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YMRN5MTGT97CSMR5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YMRN5MTGT97CSMR5.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YMRN5MTGT97CSMR5.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "638" - }, - "appliesTo" : [ ] - }, - "YMRN5MTGT97CSMR5.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YMRN5MTGT97CSMR5.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YMRN5MTGT97CSMR5.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YMRN5MTGT97CSMR5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YMRN5MTGT97CSMR5.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YMRN5MTGT97CSMR5.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "689" - }, - "appliesTo" : [ ] - }, - "YMRN5MTGT97CSMR5.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YMRN5MTGT97CSMR5.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "Z73XYJRRH5CMMR8R" : { - "Z73XYJRRH5CMMR8R.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "Z73XYJRRH5CMMR8R", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z73XYJRRH5CMMR8R.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "Z73XYJRRH5CMMR8R.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9373" - }, - "appliesTo" : [ ] - }, - "Z73XYJRRH5CMMR8R.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "Z73XYJRRH5CMMR8R.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Z73XYJRRH5CMMR8R.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Z73XYJRRH5CMMR8R", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z73XYJRRH5CMMR8R.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Z73XYJRRH5CMMR8R.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Z73XYJRRH5CMMR8R.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "Z73XYJRRH5CMMR8R", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z73XYJRRH5CMMR8R.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "Z73XYJRRH5CMMR8R.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4714" - }, - "appliesTo" : [ ] - }, - "Z73XYJRRH5CMMR8R.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "Z73XYJRRH5CMMR8R.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z73XYJRRH5CMMR8R.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Z73XYJRRH5CMMR8R", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z73XYJRRH5CMMR8R.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Z73XYJRRH5CMMR8R.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1730000000" - }, - "appliesTo" : [ ] - }, - "Z73XYJRRH5CMMR8R.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Z73XYJRRH5CMMR8R.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4546" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z73XYJRRH5CMMR8R.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "Z73XYJRRH5CMMR8R", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z73XYJRRH5CMMR8R.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "Z73XYJRRH5CMMR8R.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Z73XYJRRH5CMMR8R.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Z73XYJRRH5CMMR8R", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "Z73XYJRRH5CMMR8R.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Z73XYJRRH5CMMR8R.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "Z73XYJRRH5CMMR8R.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Z73XYJRRH5CMMR8R.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8961" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Z73XYJRRH5CMMR8R.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Z73XYJRRH5CMMR8R", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "Z73XYJRRH5CMMR8R.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Z73XYJRRH5CMMR8R.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3758" - }, - "appliesTo" : [ ] - }, - "Z73XYJRRH5CMMR8R.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Z73XYJRRH5CMMR8R.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Z73XYJRRH5CMMR8R.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Z73XYJRRH5CMMR8R", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "Z73XYJRRH5CMMR8R.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Z73XYJRRH5CMMR8R.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1918" - }, - "appliesTo" : [ ] - }, - "Z73XYJRRH5CMMR8R.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Z73XYJRRH5CMMR8R.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z73XYJRRH5CMMR8R.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "Z73XYJRRH5CMMR8R", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z73XYJRRH5CMMR8R.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "Z73XYJRRH5CMMR8R.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "V34YMXZ5WQ9WHREH" : { - "V34YMXZ5WQ9WHREH.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "V34YMXZ5WQ9WHREH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V34YMXZ5WQ9WHREH.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "V34YMXZ5WQ9WHREH.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "170383" - }, - "appliesTo" : [ ] - }, - "V34YMXZ5WQ9WHREH.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "V34YMXZ5WQ9WHREH.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "V34YMXZ5WQ9WHREH.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "V34YMXZ5WQ9WHREH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V34YMXZ5WQ9WHREH.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "V34YMXZ5WQ9WHREH.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "80835" - }, - "appliesTo" : [ ] - }, - "V34YMXZ5WQ9WHREH.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "V34YMXZ5WQ9WHREH.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.2280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "V34YMXZ5WQ9WHREH.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "V34YMXZ5WQ9WHREH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V34YMXZ5WQ9WHREH.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "V34YMXZ5WQ9WHREH.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "160298" - }, - "appliesTo" : [ ] - }, - "V34YMXZ5WQ9WHREH.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "V34YMXZ5WQ9WHREH.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "V34YMXZ5WQ9WHREH.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "V34YMXZ5WQ9WHREH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V34YMXZ5WQ9WHREH.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "V34YMXZ5WQ9WHREH.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.9140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "V34YMXZ5WQ9WHREH.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "V34YMXZ5WQ9WHREH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V34YMXZ5WQ9WHREH.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "V34YMXZ5WQ9WHREH.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "377315" - }, - "appliesTo" : [ ] - }, - "V34YMXZ5WQ9WHREH.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "V34YMXZ5WQ9WHREH.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "V34YMXZ5WQ9WHREH.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "V34YMXZ5WQ9WHREH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V34YMXZ5WQ9WHREH.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "V34YMXZ5WQ9WHREH.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "396833" - }, - "appliesTo" : [ ] - }, - "V34YMXZ5WQ9WHREH.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "V34YMXZ5WQ9WHREH.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "V34YMXZ5WQ9WHREH.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "V34YMXZ5WQ9WHREH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V34YMXZ5WQ9WHREH.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "V34YMXZ5WQ9WHREH.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.5570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "V34YMXZ5WQ9WHREH.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "V34YMXZ5WQ9WHREH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V34YMXZ5WQ9WHREH.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "V34YMXZ5WQ9WHREH.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "18.8470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "V34YMXZ5WQ9WHREH.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "V34YMXZ5WQ9WHREH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V34YMXZ5WQ9WHREH.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "V34YMXZ5WQ9WHREH.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "85980" - }, - "appliesTo" : [ ] - }, - "V34YMXZ5WQ9WHREH.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "V34YMXZ5WQ9WHREH.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.8150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "V34YMXZ5WQ9WHREH.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "V34YMXZ5WQ9WHREH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V34YMXZ5WQ9WHREH.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "V34YMXZ5WQ9WHREH.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "20.0810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "V34YMXZ5WQ9WHREH.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "V34YMXZ5WQ9WHREH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V34YMXZ5WQ9WHREH.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "V34YMXZ5WQ9WHREH.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "191789" - }, - "appliesTo" : [ ] - }, - "V34YMXZ5WQ9WHREH.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "V34YMXZ5WQ9WHREH.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.2980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "V34YMXZ5WQ9WHREH.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "V34YMXZ5WQ9WHREH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V34YMXZ5WQ9WHREH.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "V34YMXZ5WQ9WHREH.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "199617" - }, - "appliesTo" : [ ] - }, - "V34YMXZ5WQ9WHREH.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "V34YMXZ5WQ9WHREH.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "KG9YWSKMK27V6W6V" : { - "KG9YWSKMK27V6W6V.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "KG9YWSKMK27V6W6V", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "KG9YWSKMK27V6W6V.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "KG9YWSKMK27V6W6V.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "KG9YWSKMK27V6W6V.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "KG9YWSKMK27V6W6V.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1544" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KG9YWSKMK27V6W6V.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "KG9YWSKMK27V6W6V", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "KG9YWSKMK27V6W6V.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "KG9YWSKMK27V6W6V.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "KG9YWSKMK27V6W6V.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "KG9YWSKMK27V6W6V.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "835" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KG9YWSKMK27V6W6V.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "KG9YWSKMK27V6W6V", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "KG9YWSKMK27V6W6V.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "KG9YWSKMK27V6W6V.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "750" - }, - "appliesTo" : [ ] - }, - "KG9YWSKMK27V6W6V.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "KG9YWSKMK27V6W6V.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KG9YWSKMK27V6W6V.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "KG9YWSKMK27V6W6V", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "KG9YWSKMK27V6W6V.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "KG9YWSKMK27V6W6V.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KG9YWSKMK27V6W6V.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "KG9YWSKMK27V6W6V", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "KG9YWSKMK27V6W6V.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "KG9YWSKMK27V6W6V.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "493" - }, - "appliesTo" : [ ] - }, - "KG9YWSKMK27V6W6V.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "KG9YWSKMK27V6W6V.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "ZQ8ZP9Y9DGFD6M45" : { - "ZQ8ZP9Y9DGFD6M45.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ZQ8ZP9Y9DGFD6M45", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZQ8ZP9Y9DGFD6M45.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ZQ8ZP9Y9DGFD6M45.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5562" - }, - "appliesTo" : [ ] - }, - "ZQ8ZP9Y9DGFD6M45.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ZQ8ZP9Y9DGFD6M45.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZQ8ZP9Y9DGFD6M45.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "ZQ8ZP9Y9DGFD6M45", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZQ8ZP9Y9DGFD6M45.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "ZQ8ZP9Y9DGFD6M45.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5432000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZQ8ZP9Y9DGFD6M45.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ZQ8ZP9Y9DGFD6M45", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZQ8ZP9Y9DGFD6M45.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ZQ8ZP9Y9DGFD6M45.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15890" - }, - "appliesTo" : [ ] - }, - "ZQ8ZP9Y9DGFD6M45.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ZQ8ZP9Y9DGFD6M45.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZQ8ZP9Y9DGFD6M45.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ZQ8ZP9Y9DGFD6M45", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "ZQ8ZP9Y9DGFD6M45.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ZQ8ZP9Y9DGFD6M45.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZQ8ZP9Y9DGFD6M45.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ZQ8ZP9Y9DGFD6M45", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZQ8ZP9Y9DGFD6M45.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ZQ8ZP9Y9DGFD6M45.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7022" - }, - "appliesTo" : [ ] - }, - "ZQ8ZP9Y9DGFD6M45.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ZQ8ZP9Y9DGFD6M45.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZQ8ZP9Y9DGFD6M45.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ZQ8ZP9Y9DGFD6M45", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "ZQ8ZP9Y9DGFD6M45.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ZQ8ZP9Y9DGFD6M45.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2829" - }, - "appliesTo" : [ ] - }, - "ZQ8ZP9Y9DGFD6M45.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ZQ8ZP9Y9DGFD6M45.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZQ8ZP9Y9DGFD6M45.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ZQ8ZP9Y9DGFD6M45", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZQ8ZP9Y9DGFD6M45.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ZQ8ZP9Y9DGFD6M45.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4038000000" - }, - "appliesTo" : [ ] - }, - "ZQ8ZP9Y9DGFD6M45.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ZQ8ZP9Y9DGFD6M45.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3537" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZQ8ZP9Y9DGFD6M45.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ZQ8ZP9Y9DGFD6M45", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "ZQ8ZP9Y9DGFD6M45.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ZQ8ZP9Y9DGFD6M45.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZQ8ZP9Y9DGFD6M45.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ZQ8ZP9Y9DGFD6M45", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZQ8ZP9Y9DGFD6M45.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ZQ8ZP9Y9DGFD6M45.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8225000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZQ8ZP9Y9DGFD6M45.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ZQ8ZP9Y9DGFD6M45", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZQ8ZP9Y9DGFD6M45.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ZQ8ZP9Y9DGFD6M45.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ZQ8ZP9Y9DGFD6M45.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ZQ8ZP9Y9DGFD6M45.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13397" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZQ8ZP9Y9DGFD6M45.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ZQ8ZP9Y9DGFD6M45", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "ZQ8ZP9Y9DGFD6M45.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ZQ8ZP9Y9DGFD6M45.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8108" - }, - "appliesTo" : [ ] - }, - "ZQ8ZP9Y9DGFD6M45.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ZQ8ZP9Y9DGFD6M45.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZQ8ZP9Y9DGFD6M45.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ZQ8ZP9Y9DGFD6M45", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "ZQ8ZP9Y9DGFD6M45.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ZQ8ZP9Y9DGFD6M45.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2720000000" - }, - "appliesTo" : [ ] - }, - "ZQ8ZP9Y9DGFD6M45.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ZQ8ZP9Y9DGFD6M45.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7126" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "YHVCZK7UAVDZMX92" : { - "YHVCZK7UAVDZMX92.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YHVCZK7UAVDZMX92", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YHVCZK7UAVDZMX92.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YHVCZK7UAVDZMX92.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21690" - }, - "appliesTo" : [ ] - }, - "YHVCZK7UAVDZMX92.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YHVCZK7UAVDZMX92.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YHVCZK7UAVDZMX92.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YHVCZK7UAVDZMX92", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YHVCZK7UAVDZMX92.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YHVCZK7UAVDZMX92.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YHVCZK7UAVDZMX92.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YHVCZK7UAVDZMX92.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "55500" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YHVCZK7UAVDZMX92.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YHVCZK7UAVDZMX92", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YHVCZK7UAVDZMX92.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YHVCZK7UAVDZMX92.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29530" - }, - "appliesTo" : [ ] - }, - "YHVCZK7UAVDZMX92.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YHVCZK7UAVDZMX92.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YHVCZK7UAVDZMX92.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YHVCZK7UAVDZMX92", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YHVCZK7UAVDZMX92.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YHVCZK7UAVDZMX92.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11060" - }, - "appliesTo" : [ ] - }, - "YHVCZK7UAVDZMX92.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YHVCZK7UAVDZMX92.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YHVCZK7UAVDZMX92.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YHVCZK7UAVDZMX92", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YHVCZK7UAVDZMX92.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YHVCZK7UAVDZMX92.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "NW2F7XVYDCTPPGMJ" : { - "NW2F7XVYDCTPPGMJ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "NW2F7XVYDCTPPGMJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "NW2F7XVYDCTPPGMJ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "NW2F7XVYDCTPPGMJ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46625" - }, - "appliesTo" : [ ] - }, - "NW2F7XVYDCTPPGMJ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "NW2F7XVYDCTPPGMJ.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "NW2F7XVYDCTPPGMJ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "NW2F7XVYDCTPPGMJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "NW2F7XVYDCTPPGMJ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "NW2F7XVYDCTPPGMJ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7704000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "NW2F7XVYDCTPPGMJ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "NW2F7XVYDCTPPGMJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "NW2F7XVYDCTPPGMJ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "NW2F7XVYDCTPPGMJ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46232" - }, - "appliesTo" : [ ] - }, - "NW2F7XVYDCTPPGMJ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "NW2F7XVYDCTPPGMJ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "NW2F7XVYDCTPPGMJ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "NW2F7XVYDCTPPGMJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "NW2F7XVYDCTPPGMJ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "NW2F7XVYDCTPPGMJ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23337" - }, - "appliesTo" : [ ] - }, - "NW2F7XVYDCTPPGMJ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "NW2F7XVYDCTPPGMJ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "NW2F7XVYDCTPPGMJ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "NW2F7XVYDCTPPGMJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NW2F7XVYDCTPPGMJ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "NW2F7XVYDCTPPGMJ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15917" - }, - "appliesTo" : [ ] - }, - "NW2F7XVYDCTPPGMJ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "NW2F7XVYDCTPPGMJ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "NW2F7XVYDCTPPGMJ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "NW2F7XVYDCTPPGMJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "NW2F7XVYDCTPPGMJ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "NW2F7XVYDCTPPGMJ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23179" - }, - "appliesTo" : [ ] - }, - "NW2F7XVYDCTPPGMJ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "NW2F7XVYDCTPPGMJ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "NW2F7XVYDCTPPGMJ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "NW2F7XVYDCTPPGMJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "NW2F7XVYDCTPPGMJ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "NW2F7XVYDCTPPGMJ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8079000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "NW2F7XVYDCTPPGMJ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "NW2F7XVYDCTPPGMJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "NW2F7XVYDCTPPGMJ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "NW2F7XVYDCTPPGMJ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7834000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "NW2F7XVYDCTPPGMJ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "NW2F7XVYDCTPPGMJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "NW2F7XVYDCTPPGMJ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "NW2F7XVYDCTPPGMJ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15765" - }, - "appliesTo" : [ ] - }, - "NW2F7XVYDCTPPGMJ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "NW2F7XVYDCTPPGMJ.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "NW2F7XVYDCTPPGMJ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "NW2F7XVYDCTPPGMJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "NW2F7XVYDCTPPGMJ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "NW2F7XVYDCTPPGMJ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9010000000" - }, - "appliesTo" : [ ] - }, - "NW2F7XVYDCTPPGMJ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "NW2F7XVYDCTPPGMJ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7893" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "NW2F7XVYDCTPPGMJ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "NW2F7XVYDCTPPGMJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NW2F7XVYDCTPPGMJ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "NW2F7XVYDCTPPGMJ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7970" - }, - "appliesTo" : [ ] - }, - "NW2F7XVYDCTPPGMJ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "NW2F7XVYDCTPPGMJ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9099000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "NW2F7XVYDCTPPGMJ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "NW2F7XVYDCTPPGMJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NW2F7XVYDCTPPGMJ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "NW2F7XVYDCTPPGMJ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8265000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "FP9695TT873RFND7" : { - "FP9695TT873RFND7.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "FP9695TT873RFND7", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "FP9695TT873RFND7.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "FP9695TT873RFND7.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4231" - }, - "appliesTo" : [ ] - }, - "FP9695TT873RFND7.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "FP9695TT873RFND7.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FP9695TT873RFND7.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "FP9695TT873RFND7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FP9695TT873RFND7.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "FP9695TT873RFND7.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8293" - }, - "appliesTo" : [ ] - }, - "FP9695TT873RFND7.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "FP9695TT873RFND7.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FP9695TT873RFND7.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "FP9695TT873RFND7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FP9695TT873RFND7.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "FP9695TT873RFND7.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9478" - }, - "appliesTo" : [ ] - }, - "FP9695TT873RFND7.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "FP9695TT873RFND7.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FP9695TT873RFND7.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "FP9695TT873RFND7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FP9695TT873RFND7.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "FP9695TT873RFND7.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FP9695TT873RFND7.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "FP9695TT873RFND7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FP9695TT873RFND7.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "FP9695TT873RFND7.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FP9695TT873RFND7.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "FP9695TT873RFND7", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "FP9695TT873RFND7.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "FP9695TT873RFND7.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8686" - }, - "appliesTo" : [ ] - }, - "FP9695TT873RFND7.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "FP9695TT873RFND7.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FP9695TT873RFND7.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "FP9695TT873RFND7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FP9695TT873RFND7.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "FP9695TT873RFND7.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FP9695TT873RFND7.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "FP9695TT873RFND7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FP9695TT873RFND7.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "FP9695TT873RFND7.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "FP9695TT873RFND7.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "FP9695TT873RFND7.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19429" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FP9695TT873RFND7.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "FP9695TT873RFND7", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "FP9695TT873RFND7.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "FP9695TT873RFND7.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "FP9695TT873RFND7.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "FP9695TT873RFND7.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16329" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FP9695TT873RFND7.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "FP9695TT873RFND7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FP9695TT873RFND7.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "FP9695TT873RFND7.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FP9695TT873RFND7.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "FP9695TT873RFND7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FP9695TT873RFND7.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "FP9695TT873RFND7.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4836" - }, - "appliesTo" : [ ] - }, - "FP9695TT873RFND7.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "FP9695TT873RFND7.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FP9695TT873RFND7.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "FP9695TT873RFND7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FP9695TT873RFND7.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "FP9695TT873RFND7.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9913" - }, - "appliesTo" : [ ] - }, - "FP9695TT873RFND7.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "FP9695TT873RFND7.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "EBPZ7HKS449M43K4" : { - "EBPZ7HKS449M43K4.YKSHTEAGQM" : { - "offerTermCode" : "YKSHTEAGQM", - "sku" : "EBPZ7HKS449M43K4", - "effectiveDate" : "2017-09-01T12:23:43Z", - "priceDimensions" : { - "EBPZ7HKS449M43K4.YKSHTEAGQM.6YS6EN2CT7" : { - "rateCode" : "EBPZ7HKS449M43K4.YKSHTEAGQM.6YS6EN2CT7", - "description" : "C5 Dedicated Host Reservation hours used this month", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0100000000" - }, - "appliesTo" : [ ] - }, - "EBPZ7HKS449M43K4.YKSHTEAGQM.2TG2D8R56U" : { - "rateCode" : "EBPZ7HKS449M43K4.YKSHTEAGQM.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8846" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1 yr", - "OfferingClass" : "standard", - "PurchaseOption" : "PartialUpfront" - } - }, - "EBPZ7HKS449M43K4.3RJ4P9STGK" : { - "offerTermCode" : "3RJ4P9STGK", - "sku" : "EBPZ7HKS449M43K4", - "effectiveDate" : "2017-09-01T12:23:56Z", - "priceDimensions" : { - "EBPZ7HKS449M43K4.3RJ4P9STGK.2TG2D8R56U" : { - "rateCode" : "EBPZ7HKS449M43K4.3RJ4P9STGK.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17161" - }, - "appliesTo" : [ ] - }, - "EBPZ7HKS449M43K4.3RJ4P9STGK.6YS6EN2CT7" : { - "rateCode" : "EBPZ7HKS449M43K4.3RJ4P9STGK.6YS6EN2CT7", - "description" : "C5 Dedicated Host Reservation hours used this month", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3 yr", - "OfferingClass" : "standard", - "PurchaseOption" : "PartialUpfront" - } - }, - "EBPZ7HKS449M43K4.DXEJ4EGHUJ" : { - "offerTermCode" : "DXEJ4EGHUJ", - "sku" : "EBPZ7HKS449M43K4", - "effectiveDate" : "2017-09-01T12:22:55Z", - "priceDimensions" : { - "EBPZ7HKS449M43K4.DXEJ4EGHUJ.2TG2D8R56U" : { - "rateCode" : "EBPZ7HKS449M43K4.DXEJ4EGHUJ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17338" - }, - "appliesTo" : [ ] - }, - "EBPZ7HKS449M43K4.DXEJ4EGHUJ.6YS6EN2CT7" : { - "rateCode" : "EBPZ7HKS449M43K4.DXEJ4EGHUJ.6YS6EN2CT7", - "description" : "C5 Dedicated Host Reservation hours used this month", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1 yr", - "OfferingClass" : "standard", - "PurchaseOption" : "AllUpfront" - } - }, - "EBPZ7HKS449M43K4.CRSZ9MHARF" : { - "offerTermCode" : "CRSZ9MHARF", - "sku" : "EBPZ7HKS449M43K4", - "effectiveDate" : "2017-09-01T12:23:19Z", - "priceDimensions" : { - "EBPZ7HKS449M43K4.CRSZ9MHARF.6YS6EN2CT7" : { - "rateCode" : "EBPZ7HKS449M43K4.CRSZ9MHARF.6YS6EN2CT7", - "description" : "C5 Dedicated Host Reservation hours used this month", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1 yr", - "OfferingClass" : "standard", - "PurchaseOption" : "NoUpfront" - } - }, - "EBPZ7HKS449M43K4.CPPW92X9U4" : { - "offerTermCode" : "CPPW92X9U4", - "sku" : "EBPZ7HKS449M43K4", - "effectiveDate" : "2017-09-01T12:23:08Z", - "priceDimensions" : { - "EBPZ7HKS449M43K4.CPPW92X9U4.2TG2D8R56U" : { - "rateCode" : "EBPZ7HKS449M43K4.CPPW92X9U4.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32263" - }, - "appliesTo" : [ ] - }, - "EBPZ7HKS449M43K4.CPPW92X9U4.6YS6EN2CT7" : { - "rateCode" : "EBPZ7HKS449M43K4.CPPW92X9U4.6YS6EN2CT7", - "description" : "C5 Dedicated Host Reservation hours used this month", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3 yr", - "OfferingClass" : "standard", - "PurchaseOption" : "AllUpfront" - } - }, - "EBPZ7HKS449M43K4.UDM74VY9CQ" : { - "offerTermCode" : "UDM74VY9CQ", - "sku" : "EBPZ7HKS449M43K4", - "effectiveDate" : "2017-09-01T12:23:32Z", - "priceDimensions" : { - "EBPZ7HKS449M43K4.UDM74VY9CQ.6YS6EN2CT7" : { - "rateCode" : "EBPZ7HKS449M43K4.UDM74VY9CQ.6YS6EN2CT7", - "description" : "C5 Dedicated Host Reservation hours used this month", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3 yr", - "OfferingClass" : "standard", - "PurchaseOption" : "NoUpfront" - } - } - }, - "JDDEXQUM9ZCJ8RDR" : { - "JDDEXQUM9ZCJ8RDR.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "JDDEXQUM9ZCJ8RDR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JDDEXQUM9ZCJ8RDR.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "JDDEXQUM9ZCJ8RDR.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4288000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "JDDEXQUM9ZCJ8RDR.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "JDDEXQUM9ZCJ8RDR", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "JDDEXQUM9ZCJ8RDR.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "JDDEXQUM9ZCJ8RDR.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "JDDEXQUM9ZCJ8RDR.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "JDDEXQUM9ZCJ8RDR", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "JDDEXQUM9ZCJ8RDR.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "JDDEXQUM9ZCJ8RDR.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "40471" - }, - "appliesTo" : [ ] - }, - "JDDEXQUM9ZCJ8RDR.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "JDDEXQUM9ZCJ8RDR.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "JDDEXQUM9ZCJ8RDR.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "JDDEXQUM9ZCJ8RDR", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "JDDEXQUM9ZCJ8RDR.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "JDDEXQUM9ZCJ8RDR.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "80274" - }, - "appliesTo" : [ ] - }, - "JDDEXQUM9ZCJ8RDR.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "JDDEXQUM9ZCJ8RDR.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JDDEXQUM9ZCJ8RDR.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "JDDEXQUM9ZCJ8RDR", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "JDDEXQUM9ZCJ8RDR.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "JDDEXQUM9ZCJ8RDR.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28761" - }, - "appliesTo" : [ ] - }, - "JDDEXQUM9ZCJ8RDR.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "JDDEXQUM9ZCJ8RDR.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JDDEXQUM9ZCJ8RDR.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "JDDEXQUM9ZCJ8RDR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JDDEXQUM9ZCJ8RDR.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "JDDEXQUM9ZCJ8RDR.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29585" - }, - "appliesTo" : [ ] - }, - "JDDEXQUM9ZCJ8RDR.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "JDDEXQUM9ZCJ8RDR.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "JDDEXQUM9ZCJ8RDR.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "JDDEXQUM9ZCJ8RDR", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "JDDEXQUM9ZCJ8RDR.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "JDDEXQUM9ZCJ8RDR.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1826000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "JDDEXQUM9ZCJ8RDR.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "JDDEXQUM9ZCJ8RDR", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "JDDEXQUM9ZCJ8RDR.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "JDDEXQUM9ZCJ8RDR.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "41307" - }, - "appliesTo" : [ ] - }, - "JDDEXQUM9ZCJ8RDR.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "JDDEXQUM9ZCJ8RDR.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5718000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "JDDEXQUM9ZCJ8RDR.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "JDDEXQUM9ZCJ8RDR", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "JDDEXQUM9ZCJ8RDR.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "JDDEXQUM9ZCJ8RDR.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14436" - }, - "appliesTo" : [ ] - }, - "JDDEXQUM9ZCJ8RDR.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "JDDEXQUM9ZCJ8RDR.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "JDDEXQUM9ZCJ8RDR.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "JDDEXQUM9ZCJ8RDR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JDDEXQUM9ZCJ8RDR.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "JDDEXQUM9ZCJ8RDR.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14857" - }, - "appliesTo" : [ ] - }, - "JDDEXQUM9ZCJ8RDR.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "JDDEXQUM9ZCJ8RDR.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "JDDEXQUM9ZCJ8RDR.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "JDDEXQUM9ZCJ8RDR", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "JDDEXQUM9ZCJ8RDR.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "JDDEXQUM9ZCJ8RDR.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "JDDEXQUM9ZCJ8RDR.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "JDDEXQUM9ZCJ8RDR.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "82358" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "JDDEXQUM9ZCJ8RDR.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "JDDEXQUM9ZCJ8RDR", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "JDDEXQUM9ZCJ8RDR.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "JDDEXQUM9ZCJ8RDR.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1139000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "ZY733QB4MX5V3J68" : { - "ZY733QB4MX5V3J68.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ZY733QB4MX5V3J68", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "ZY733QB4MX5V3J68.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ZY733QB4MX5V3J68.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0672000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZY733QB4MX5V3J68.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ZY733QB4MX5V3J68", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "ZY733QB4MX5V3J68.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ZY733QB4MX5V3J68.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30" - }, - "appliesTo" : [ ] - }, - "ZY733QB4MX5V3J68.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ZY733QB4MX5V3J68.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0634000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZY733QB4MX5V3J68.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ZY733QB4MX5V3J68", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZY733QB4MX5V3J68.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ZY733QB4MX5V3J68.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0683000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZY733QB4MX5V3J68.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ZY733QB4MX5V3J68", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZY733QB4MX5V3J68.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ZY733QB4MX5V3J68.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34" - }, - "appliesTo" : [ ] - }, - "ZY733QB4MX5V3J68.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ZY733QB4MX5V3J68.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0639000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZY733QB4MX5V3J68.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ZY733QB4MX5V3J68", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "ZY733QB4MX5V3J68.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ZY733QB4MX5V3J68.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1634" - }, - "appliesTo" : [ ] - }, - "ZY733QB4MX5V3J68.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ZY733QB4MX5V3J68.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZY733QB4MX5V3J68.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ZY733QB4MX5V3J68", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "ZY733QB4MX5V3J68.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ZY733QB4MX5V3J68.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0627000000" - }, - "appliesTo" : [ ] - }, - "ZY733QB4MX5V3J68.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ZY733QB4MX5V3J68.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "70" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZY733QB4MX5V3J68.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "ZY733QB4MX5V3J68", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "ZY733QB4MX5V3J68.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "ZY733QB4MX5V3J68.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZY733QB4MX5V3J68.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ZY733QB4MX5V3J68", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "ZY733QB4MX5V3J68.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ZY733QB4MX5V3J68.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1714" - }, - "appliesTo" : [ ] - }, - "ZY733QB4MX5V3J68.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ZY733QB4MX5V3J68.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZY733QB4MX5V3J68.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ZY733QB4MX5V3J68", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZY733QB4MX5V3J68.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ZY733QB4MX5V3J68.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "593" - }, - "appliesTo" : [ ] - }, - "ZY733QB4MX5V3J68.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ZY733QB4MX5V3J68.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZY733QB4MX5V3J68.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ZY733QB4MX5V3J68", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "ZY733QB4MX5V3J68.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ZY733QB4MX5V3J68.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "66" - }, - "appliesTo" : [ ] - }, - "ZY733QB4MX5V3J68.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ZY733QB4MX5V3J68.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZY733QB4MX5V3J68.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ZY733QB4MX5V3J68", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "ZY733QB4MX5V3J68.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ZY733QB4MX5V3J68.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "584" - }, - "appliesTo" : [ ] - }, - "ZY733QB4MX5V3J68.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ZY733QB4MX5V3J68.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZY733QB4MX5V3J68.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ZY733QB4MX5V3J68", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "ZY733QB4MX5V3J68.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ZY733QB4MX5V3J68.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0658000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "9HFHK6RECZZ4W92B" : { - "9HFHK6RECZZ4W92B.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "9HFHK6RECZZ4W92B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9HFHK6RECZZ4W92B.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "9HFHK6RECZZ4W92B.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9HFHK6RECZZ4W92B.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "9HFHK6RECZZ4W92B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9HFHK6RECZZ4W92B.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "9HFHK6RECZZ4W92B.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9HFHK6RECZZ4W92B.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "9HFHK6RECZZ4W92B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9HFHK6RECZZ4W92B.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "9HFHK6RECZZ4W92B.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3271" - }, - "appliesTo" : [ ] - }, - "9HFHK6RECZZ4W92B.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "9HFHK6RECZZ4W92B.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9HFHK6RECZZ4W92B.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "9HFHK6RECZZ4W92B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9HFHK6RECZZ4W92B.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "9HFHK6RECZZ4W92B.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2950" - }, - "appliesTo" : [ ] - }, - "9HFHK6RECZZ4W92B.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "9HFHK6RECZZ4W92B.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9HFHK6RECZZ4W92B.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "9HFHK6RECZZ4W92B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9HFHK6RECZZ4W92B.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "9HFHK6RECZZ4W92B.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6444" - }, - "appliesTo" : [ ] - }, - "9HFHK6RECZZ4W92B.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "9HFHK6RECZZ4W92B.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9HFHK6RECZZ4W92B.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "9HFHK6RECZZ4W92B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9HFHK6RECZZ4W92B.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "9HFHK6RECZZ4W92B.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9HFHK6RECZZ4W92B.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "9HFHK6RECZZ4W92B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9HFHK6RECZZ4W92B.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "9HFHK6RECZZ4W92B.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6169" - }, - "appliesTo" : [ ] - }, - "9HFHK6RECZZ4W92B.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "9HFHK6RECZZ4W92B.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9HFHK6RECZZ4W92B.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "9HFHK6RECZZ4W92B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9HFHK6RECZZ4W92B.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "9HFHK6RECZZ4W92B.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10968" - }, - "appliesTo" : [ ] - }, - "9HFHK6RECZZ4W92B.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "9HFHK6RECZZ4W92B.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9HFHK6RECZZ4W92B.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "9HFHK6RECZZ4W92B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9HFHK6RECZZ4W92B.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "9HFHK6RECZZ4W92B.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9HFHK6RECZZ4W92B.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "9HFHK6RECZZ4W92B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9HFHK6RECZZ4W92B.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "9HFHK6RECZZ4W92B.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12188" - }, - "appliesTo" : [ ] - }, - "9HFHK6RECZZ4W92B.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "9HFHK6RECZZ4W92B.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9HFHK6RECZZ4W92B.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "9HFHK6RECZZ4W92B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9HFHK6RECZZ4W92B.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "9HFHK6RECZZ4W92B.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5814" - }, - "appliesTo" : [ ] - }, - "9HFHK6RECZZ4W92B.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "9HFHK6RECZZ4W92B.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9HFHK6RECZZ4W92B.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "9HFHK6RECZZ4W92B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9HFHK6RECZZ4W92B.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "9HFHK6RECZZ4W92B.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5680" - }, - "appliesTo" : [ ] - }, - "9HFHK6RECZZ4W92B.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "9HFHK6RECZZ4W92B.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "ZMYRWAJAX252Z8ZW" : { - "ZMYRWAJAX252Z8ZW.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ZMYRWAJAX252Z8ZW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ZMYRWAJAX252Z8ZW.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ZMYRWAJAX252Z8ZW.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2608" - }, - "appliesTo" : [ ] - }, - "ZMYRWAJAX252Z8ZW.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ZMYRWAJAX252Z8ZW.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZMYRWAJAX252Z8ZW.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ZMYRWAJAX252Z8ZW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ZMYRWAJAX252Z8ZW.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ZMYRWAJAX252Z8ZW.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5466" - }, - "appliesTo" : [ ] - }, - "ZMYRWAJAX252Z8ZW.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ZMYRWAJAX252Z8ZW.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZMYRWAJAX252Z8ZW.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ZMYRWAJAX252Z8ZW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ZMYRWAJAX252Z8ZW.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ZMYRWAJAX252Z8ZW.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11477" - }, - "appliesTo" : [ ] - }, - "ZMYRWAJAX252Z8ZW.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ZMYRWAJAX252Z8ZW.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZMYRWAJAX252Z8ZW.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ZMYRWAJAX252Z8ZW", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "ZMYRWAJAX252Z8ZW.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ZMYRWAJAX252Z8ZW.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7042" - }, - "appliesTo" : [ ] - }, - "ZMYRWAJAX252Z8ZW.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ZMYRWAJAX252Z8ZW.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZMYRWAJAX252Z8ZW.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ZMYRWAJAX252Z8ZW", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "ZMYRWAJAX252Z8ZW.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ZMYRWAJAX252Z8ZW.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZMYRWAJAX252Z8ZW.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ZMYRWAJAX252Z8ZW", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "ZMYRWAJAX252Z8ZW.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ZMYRWAJAX252Z8ZW.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3100000000" - }, - "appliesTo" : [ ] - }, - "ZMYRWAJAX252Z8ZW.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ZMYRWAJAX252Z8ZW.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4063" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZMYRWAJAX252Z8ZW.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ZMYRWAJAX252Z8ZW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ZMYRWAJAX252Z8ZW.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ZMYRWAJAX252Z8ZW.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZMYRWAJAX252Z8ZW.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ZMYRWAJAX252Z8ZW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZMYRWAJAX252Z8ZW.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ZMYRWAJAX252Z8ZW.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2547" - }, - "appliesTo" : [ ] - }, - "ZMYRWAJAX252Z8ZW.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ZMYRWAJAX252Z8ZW.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZMYRWAJAX252Z8ZW.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ZMYRWAJAX252Z8ZW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZMYRWAJAX252Z8ZW.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ZMYRWAJAX252Z8ZW.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZMYRWAJAX252Z8ZW.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ZMYRWAJAX252Z8ZW", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "ZMYRWAJAX252Z8ZW.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ZMYRWAJAX252Z8ZW.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15093" - }, - "appliesTo" : [ ] - }, - "ZMYRWAJAX252Z8ZW.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ZMYRWAJAX252Z8ZW.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZMYRWAJAX252Z8ZW.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ZMYRWAJAX252Z8ZW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZMYRWAJAX252Z8ZW.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ZMYRWAJAX252Z8ZW.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ZMYRWAJAX252Z8ZW.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ZMYRWAJAX252Z8ZW.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6130" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "MJKCR5ZSNFXJ35EA" : { - "MJKCR5ZSNFXJ35EA.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "MJKCR5ZSNFXJ35EA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MJKCR5ZSNFXJ35EA.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "MJKCR5ZSNFXJ35EA.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "MJKCR5ZSNFXJ35EA.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "MJKCR5ZSNFXJ35EA.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10833" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MJKCR5ZSNFXJ35EA.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "MJKCR5ZSNFXJ35EA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MJKCR5ZSNFXJ35EA.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "MJKCR5ZSNFXJ35EA.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10307" - }, - "appliesTo" : [ ] - }, - "MJKCR5ZSNFXJ35EA.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "MJKCR5ZSNFXJ35EA.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MJKCR5ZSNFXJ35EA.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "MJKCR5ZSNFXJ35EA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MJKCR5ZSNFXJ35EA.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "MJKCR5ZSNFXJ35EA.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MJKCR5ZSNFXJ35EA.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "MJKCR5ZSNFXJ35EA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MJKCR5ZSNFXJ35EA.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "MJKCR5ZSNFXJ35EA.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MJKCR5ZSNFXJ35EA.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "MJKCR5ZSNFXJ35EA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MJKCR5ZSNFXJ35EA.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "MJKCR5ZSNFXJ35EA.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26932" - }, - "appliesTo" : [ ] - }, - "MJKCR5ZSNFXJ35EA.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "MJKCR5ZSNFXJ35EA.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MJKCR5ZSNFXJ35EA.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "MJKCR5ZSNFXJ35EA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MJKCR5ZSNFXJ35EA.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "MJKCR5ZSNFXJ35EA.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5200000000" - }, - "appliesTo" : [ ] - }, - "MJKCR5ZSNFXJ35EA.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "MJKCR5ZSNFXJ35EA.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13674" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MJKCR5ZSNFXJ35EA.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "MJKCR5ZSNFXJ35EA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MJKCR5ZSNFXJ35EA.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "MJKCR5ZSNFXJ35EA.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14201" - }, - "appliesTo" : [ ] - }, - "MJKCR5ZSNFXJ35EA.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "MJKCR5ZSNFXJ35EA.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MJKCR5ZSNFXJ35EA.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "MJKCR5ZSNFXJ35EA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MJKCR5ZSNFXJ35EA.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "MJKCR5ZSNFXJ35EA.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5457" - }, - "appliesTo" : [ ] - }, - "MJKCR5ZSNFXJ35EA.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "MJKCR5ZSNFXJ35EA.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MJKCR5ZSNFXJ35EA.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "MJKCR5ZSNFXJ35EA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MJKCR5ZSNFXJ35EA.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "MJKCR5ZSNFXJ35EA.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MJKCR5ZSNFXJ35EA.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "MJKCR5ZSNFXJ35EA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MJKCR5ZSNFXJ35EA.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "MJKCR5ZSNFXJ35EA.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28243" - }, - "appliesTo" : [ ] - }, - "MJKCR5ZSNFXJ35EA.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "MJKCR5ZSNFXJ35EA.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MJKCR5ZSNFXJ35EA.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "MJKCR5ZSNFXJ35EA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MJKCR5ZSNFXJ35EA.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "MJKCR5ZSNFXJ35EA.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5189" - }, - "appliesTo" : [ ] - }, - "MJKCR5ZSNFXJ35EA.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "MJKCR5ZSNFXJ35EA.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MJKCR5ZSNFXJ35EA.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "MJKCR5ZSNFXJ35EA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MJKCR5ZSNFXJ35EA.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "MJKCR5ZSNFXJ35EA.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "NCQEUP5F7MP2C7VT" : { - "NCQEUP5F7MP2C7VT.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "NCQEUP5F7MP2C7VT", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "NCQEUP5F7MP2C7VT.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "NCQEUP5F7MP2C7VT.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21728" - }, - "appliesTo" : [ ] - }, - "NCQEUP5F7MP2C7VT.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "NCQEUP5F7MP2C7VT.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "NCQEUP5F7MP2C7VT.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "NCQEUP5F7MP2C7VT", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "NCQEUP5F7MP2C7VT.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "NCQEUP5F7MP2C7VT.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11213" - }, - "appliesTo" : [ ] - }, - "NCQEUP5F7MP2C7VT.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "NCQEUP5F7MP2C7VT.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "NCQEUP5F7MP2C7VT.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "NCQEUP5F7MP2C7VT", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "NCQEUP5F7MP2C7VT.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "NCQEUP5F7MP2C7VT.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "42860" - }, - "appliesTo" : [ ] - }, - "NCQEUP5F7MP2C7VT.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "NCQEUP5F7MP2C7VT.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "NCQEUP5F7MP2C7VT.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "NCQEUP5F7MP2C7VT", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "NCQEUP5F7MP2C7VT.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "NCQEUP5F7MP2C7VT.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16924" - }, - "appliesTo" : [ ] - }, - "NCQEUP5F7MP2C7VT.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "NCQEUP5F7MP2C7VT.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "NCQEUP5F7MP2C7VT.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "NCQEUP5F7MP2C7VT", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "NCQEUP5F7MP2C7VT.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "NCQEUP5F7MP2C7VT.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "PQQ53JZ8S758UUWS" : { - "PQQ53JZ8S758UUWS.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "PQQ53JZ8S758UUWS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PQQ53JZ8S758UUWS.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "PQQ53JZ8S758UUWS.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.5730000000" - }, - "appliesTo" : [ ] - }, - "PQQ53JZ8S758UUWS.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "PQQ53JZ8S758UUWS.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "75100" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PQQ53JZ8S758UUWS.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "PQQ53JZ8S758UUWS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PQQ53JZ8S758UUWS.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "PQQ53JZ8S758UUWS.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.2710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "PQQ53JZ8S758UUWS.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "PQQ53JZ8S758UUWS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PQQ53JZ8S758UUWS.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "PQQ53JZ8S758UUWS.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "17.5960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "PQQ53JZ8S758UUWS.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "PQQ53JZ8S758UUWS", - "effectiveDate" : "2016-06-30T23:59:59Z", - "priceDimensions" : { - "PQQ53JZ8S758UUWS.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "PQQ53JZ8S758UUWS.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.2560000000" - }, - "appliesTo" : [ ] - }, - "PQQ53JZ8S758UUWS.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "PQQ53JZ8S758UUWS.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "164408" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PQQ53JZ8S758UUWS.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "PQQ53JZ8S758UUWS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PQQ53JZ8S758UUWS.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "PQQ53JZ8S758UUWS.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "165793" - }, - "appliesTo" : [ ] - }, - "PQQ53JZ8S758UUWS.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "PQQ53JZ8S758UUWS.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.3090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PQQ53JZ8S758UUWS.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "PQQ53JZ8S758UUWS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PQQ53JZ8S758UUWS.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "PQQ53JZ8S758UUWS.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "148623" - }, - "appliesTo" : [ ] - }, - "PQQ53JZ8S758UUWS.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "PQQ53JZ8S758UUWS.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PQQ53JZ8S758UUWS.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "PQQ53JZ8S758UUWS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PQQ53JZ8S758UUWS.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "PQQ53JZ8S758UUWS.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.3400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "PQQ53JZ8S758UUWS.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "PQQ53JZ8S758UUWS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PQQ53JZ8S758UUWS.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "PQQ53JZ8S758UUWS.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.9830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "PQQ53JZ8S758UUWS.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "PQQ53JZ8S758UUWS", - "effectiveDate" : "2016-06-30T23:59:59Z", - "priceDimensions" : { - "PQQ53JZ8S758UUWS.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "PQQ53JZ8S758UUWS.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "PQQ53JZ8S758UUWS.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "PQQ53JZ8S758UUWS.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "142027" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PQQ53JZ8S758UUWS.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "PQQ53JZ8S758UUWS", - "effectiveDate" : "2016-06-30T23:59:59Z", - "priceDimensions" : { - "PQQ53JZ8S758UUWS.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "PQQ53JZ8S758UUWS.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "PQQ53JZ8S758UUWS.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "PQQ53JZ8S758UUWS.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "322555" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PQQ53JZ8S758UUWS.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "PQQ53JZ8S758UUWS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PQQ53JZ8S758UUWS.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "PQQ53JZ8S758UUWS.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "329187" - }, - "appliesTo" : [ ] - }, - "PQQ53JZ8S758UUWS.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "PQQ53JZ8S758UUWS.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PQQ53JZ8S758UUWS.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "PQQ53JZ8S758UUWS", - "effectiveDate" : "2016-06-30T23:59:59Z", - "priceDimensions" : { - "PQQ53JZ8S758UUWS.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "PQQ53JZ8S758UUWS.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "71699" - }, - "appliesTo" : [ ] - }, - "PQQ53JZ8S758UUWS.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "PQQ53JZ8S758UUWS.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.1850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "MZHHAF4YCR5JMQ9C" : { - "MZHHAF4YCR5JMQ9C.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "MZHHAF4YCR5JMQ9C", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "MZHHAF4YCR5JMQ9C.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "MZHHAF4YCR5JMQ9C.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2720000000" - }, - "appliesTo" : [ ] - }, - "MZHHAF4YCR5JMQ9C.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "MZHHAF4YCR5JMQ9C.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "36954" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MZHHAF4YCR5JMQ9C.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "MZHHAF4YCR5JMQ9C", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "MZHHAF4YCR5JMQ9C.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "MZHHAF4YCR5JMQ9C.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "MZHHAF4YCR5JMQ9C.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "MZHHAF4YCR5JMQ9C.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "55716" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MZHHAF4YCR5JMQ9C.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "MZHHAF4YCR5JMQ9C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MZHHAF4YCR5JMQ9C.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "MZHHAF4YCR5JMQ9C.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "58405" - }, - "appliesTo" : [ ] - }, - "MZHHAF4YCR5JMQ9C.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "MZHHAF4YCR5JMQ9C.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MZHHAF4YCR5JMQ9C.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "MZHHAF4YCR5JMQ9C", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "MZHHAF4YCR5JMQ9C.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "MZHHAF4YCR5JMQ9C.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "108395" - }, - "appliesTo" : [ ] - }, - "MZHHAF4YCR5JMQ9C.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "MZHHAF4YCR5JMQ9C.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MZHHAF4YCR5JMQ9C.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "MZHHAF4YCR5JMQ9C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MZHHAF4YCR5JMQ9C.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "MZHHAF4YCR5JMQ9C.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3500000000" - }, - "appliesTo" : [ ] - }, - "MZHHAF4YCR5JMQ9C.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "MZHHAF4YCR5JMQ9C.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29347" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MZHHAF4YCR5JMQ9C.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "MZHHAF4YCR5JMQ9C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MZHHAF4YCR5JMQ9C.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "MZHHAF4YCR5JMQ9C.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.7830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MZHHAF4YCR5JMQ9C.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "MZHHAF4YCR5JMQ9C", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "MZHHAF4YCR5JMQ9C.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "MZHHAF4YCR5JMQ9C.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MZHHAF4YCR5JMQ9C.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "MZHHAF4YCR5JMQ9C", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "MZHHAF4YCR5JMQ9C.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "MZHHAF4YCR5JMQ9C.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "99377" - }, - "appliesTo" : [ ] - }, - "MZHHAF4YCR5JMQ9C.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "MZHHAF4YCR5JMQ9C.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MZHHAF4YCR5JMQ9C.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "MZHHAF4YCR5JMQ9C", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "MZHHAF4YCR5JMQ9C.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "MZHHAF4YCR5JMQ9C.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "163439" - }, - "appliesTo" : [ ] - }, - "MZHHAF4YCR5JMQ9C.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "MZHHAF4YCR5JMQ9C.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MZHHAF4YCR5JMQ9C.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "MZHHAF4YCR5JMQ9C", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "MZHHAF4YCR5JMQ9C.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "MZHHAF4YCR5JMQ9C.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MZHHAF4YCR5JMQ9C.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "MZHHAF4YCR5JMQ9C", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "MZHHAF4YCR5JMQ9C.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "MZHHAF4YCR5JMQ9C.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "143615" - }, - "appliesTo" : [ ] - }, - "MZHHAF4YCR5JMQ9C.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "MZHHAF4YCR5JMQ9C.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "HD7DSDMNNNQAM7PK" : { - "HD7DSDMNNNQAM7PK.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "HD7DSDMNNNQAM7PK", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "HD7DSDMNNNQAM7PK.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "HD7DSDMNNNQAM7PK.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7490000000" - }, - "appliesTo" : [ ] - }, - "HD7DSDMNNNQAM7PK.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "HD7DSDMNNNQAM7PK.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24079" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HD7DSDMNNNQAM7PK.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "HD7DSDMNNNQAM7PK", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "HD7DSDMNNNQAM7PK.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "HD7DSDMNNNQAM7PK.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "HD7DSDMNNNQAM7PK.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "HD7DSDMNNNQAM7PK.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47712" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HD7DSDMNNNQAM7PK.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "HD7DSDMNNNQAM7PK", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "HD7DSDMNNNQAM7PK.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "HD7DSDMNNNQAM7PK.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "119423" - }, - "appliesTo" : [ ] - }, - "HD7DSDMNNNQAM7PK.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "HD7DSDMNNNQAM7PK.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HD7DSDMNNNQAM7PK.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "HD7DSDMNNNQAM7PK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HD7DSDMNNNQAM7PK.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "HD7DSDMNNNQAM7PK.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "64312" - }, - "appliesTo" : [ ] - }, - "HD7DSDMNNNQAM7PK.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "HD7DSDMNNNQAM7PK.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4472000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HD7DSDMNNNQAM7PK.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "HD7DSDMNNNQAM7PK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HD7DSDMNNNQAM7PK.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "HD7DSDMNNNQAM7PK.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "61054" - }, - "appliesTo" : [ ] - }, - "HD7DSDMNNNQAM7PK.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "HD7DSDMNNNQAM7PK.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HD7DSDMNNNQAM7PK.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "HD7DSDMNNNQAM7PK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HD7DSDMNNNQAM7PK.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "HD7DSDMNNNQAM7PK.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.0352000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "HD7DSDMNNNQAM7PK.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "HD7DSDMNNNQAM7PK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HD7DSDMNNNQAM7PK.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "HD7DSDMNNNQAM7PK.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25789" - }, - "appliesTo" : [ ] - }, - "HD7DSDMNNNQAM7PK.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "HD7DSDMNNNQAM7PK.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HD7DSDMNNNQAM7PK.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "HD7DSDMNNNQAM7PK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HD7DSDMNNNQAM7PK.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "HD7DSDMNNNQAM7PK.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.7757000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "HD7DSDMNNNQAM7PK.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "HD7DSDMNNNQAM7PK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HD7DSDMNNNQAM7PK.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "HD7DSDMNNNQAM7PK.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.0504000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "HD7DSDMNNNQAM7PK.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "HD7DSDMNNNQAM7PK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HD7DSDMNNNQAM7PK.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "HD7DSDMNNNQAM7PK.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "HD7DSDMNNNQAM7PK.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "HD7DSDMNNNQAM7PK.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "127600" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "HD7DSDMNNNQAM7PK.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "HD7DSDMNNNQAM7PK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HD7DSDMNNNQAM7PK.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "HD7DSDMNNNQAM7PK.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "51063" - }, - "appliesTo" : [ ] - }, - "HD7DSDMNNNQAM7PK.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "HD7DSDMNNNQAM7PK.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "HD7DSDMNNNQAM7PK.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "HD7DSDMNNNQAM7PK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HD7DSDMNNNQAM7PK.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "HD7DSDMNNNQAM7PK.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.6320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "9DK6BK45W6CJ9A5X" : { - "9DK6BK45W6CJ9A5X.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "9DK6BK45W6CJ9A5X", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9DK6BK45W6CJ9A5X.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "9DK6BK45W6CJ9A5X.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "326" - }, - "appliesTo" : [ ] - }, - "9DK6BK45W6CJ9A5X.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "9DK6BK45W6CJ9A5X.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9DK6BK45W6CJ9A5X.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "9DK6BK45W6CJ9A5X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9DK6BK45W6CJ9A5X.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "9DK6BK45W6CJ9A5X.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1150" - }, - "appliesTo" : [ ] - }, - "9DK6BK45W6CJ9A5X.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "9DK6BK45W6CJ9A5X.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9DK6BK45W6CJ9A5X.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "9DK6BK45W6CJ9A5X", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9DK6BK45W6CJ9A5X.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "9DK6BK45W6CJ9A5X.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "9DK6BK45W6CJ9A5X.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "9DK6BK45W6CJ9A5X.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1057" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9DK6BK45W6CJ9A5X.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "9DK6BK45W6CJ9A5X", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9DK6BK45W6CJ9A5X.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "9DK6BK45W6CJ9A5X.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "9DK6BK45W6CJ9A5X.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "9DK6BK45W6CJ9A5X.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2503" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9DK6BK45W6CJ9A5X.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "9DK6BK45W6CJ9A5X", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "9DK6BK45W6CJ9A5X.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "9DK6BK45W6CJ9A5X.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "880" - }, - "appliesTo" : [ ] - }, - "9DK6BK45W6CJ9A5X.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "9DK6BK45W6CJ9A5X.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9DK6BK45W6CJ9A5X.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "9DK6BK45W6CJ9A5X", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9DK6BK45W6CJ9A5X.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "9DK6BK45W6CJ9A5X.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "508" - }, - "appliesTo" : [ ] - }, - "9DK6BK45W6CJ9A5X.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "9DK6BK45W6CJ9A5X.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9DK6BK45W6CJ9A5X.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "9DK6BK45W6CJ9A5X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9DK6BK45W6CJ9A5X.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "9DK6BK45W6CJ9A5X.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9DK6BK45W6CJ9A5X.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "9DK6BK45W6CJ9A5X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9DK6BK45W6CJ9A5X.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "9DK6BK45W6CJ9A5X.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0960000000" - }, - "appliesTo" : [ ] - }, - "9DK6BK45W6CJ9A5X.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "9DK6BK45W6CJ9A5X.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "318" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9DK6BK45W6CJ9A5X.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "9DK6BK45W6CJ9A5X", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "9DK6BK45W6CJ9A5X.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "9DK6BK45W6CJ9A5X.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9DK6BK45W6CJ9A5X.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "9DK6BK45W6CJ9A5X", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "9DK6BK45W6CJ9A5X.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "9DK6BK45W6CJ9A5X.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "9DK6BK45W6CJ9A5X.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "9DK6BK45W6CJ9A5X.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3008" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9DK6BK45W6CJ9A5X.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "9DK6BK45W6CJ9A5X", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "9DK6BK45W6CJ9A5X.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "9DK6BK45W6CJ9A5X.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "U69YCUGUWRE45CVF" : { - "U69YCUGUWRE45CVF.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "U69YCUGUWRE45CVF", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "U69YCUGUWRE45CVF.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "U69YCUGUWRE45CVF.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "U69YCUGUWRE45CVF.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "U69YCUGUWRE45CVF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U69YCUGUWRE45CVF.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "U69YCUGUWRE45CVF.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2245" - }, - "appliesTo" : [ ] - }, - "U69YCUGUWRE45CVF.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "U69YCUGUWRE45CVF.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "U69YCUGUWRE45CVF.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "U69YCUGUWRE45CVF", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "U69YCUGUWRE45CVF.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "U69YCUGUWRE45CVF.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "U69YCUGUWRE45CVF.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "U69YCUGUWRE45CVF.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10328" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "U69YCUGUWRE45CVF.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "U69YCUGUWRE45CVF", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "U69YCUGUWRE45CVF.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "U69YCUGUWRE45CVF.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "U69YCUGUWRE45CVF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "U69YCUGUWRE45CVF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "U69YCUGUWRE45CVF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "U69YCUGUWRE45CVF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2537" - }, - "appliesTo" : [ ] - }, - "U69YCUGUWRE45CVF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "U69YCUGUWRE45CVF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "U69YCUGUWRE45CVF.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "U69YCUGUWRE45CVF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U69YCUGUWRE45CVF.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "U69YCUGUWRE45CVF.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "U69YCUGUWRE45CVF.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "U69YCUGUWRE45CVF.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4400" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "U69YCUGUWRE45CVF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "U69YCUGUWRE45CVF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "U69YCUGUWRE45CVF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "U69YCUGUWRE45CVF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8151" - }, - "appliesTo" : [ ] - }, - "U69YCUGUWRE45CVF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "U69YCUGUWRE45CVF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "U69YCUGUWRE45CVF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "U69YCUGUWRE45CVF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "U69YCUGUWRE45CVF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "U69YCUGUWRE45CVF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3825" - }, - "appliesTo" : [ ] - }, - "U69YCUGUWRE45CVF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "U69YCUGUWRE45CVF.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "U69YCUGUWRE45CVF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "U69YCUGUWRE45CVF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "U69YCUGUWRE45CVF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "U69YCUGUWRE45CVF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6938" - }, - "appliesTo" : [ ] - }, - "U69YCUGUWRE45CVF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "U69YCUGUWRE45CVF.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "U69YCUGUWRE45CVF.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "U69YCUGUWRE45CVF", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "U69YCUGUWRE45CVF.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "U69YCUGUWRE45CVF.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6850" - }, - "appliesTo" : [ ] - }, - "U69YCUGUWRE45CVF.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "U69YCUGUWRE45CVF.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "U69YCUGUWRE45CVF.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "U69YCUGUWRE45CVF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U69YCUGUWRE45CVF.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "U69YCUGUWRE45CVF.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "2EKFX2CKSTAYWT4G" : { - "2EKFX2CKSTAYWT4G.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "2EKFX2CKSTAYWT4G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2EKFX2CKSTAYWT4G.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "2EKFX2CKSTAYWT4G.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2EKFX2CKSTAYWT4G.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "2EKFX2CKSTAYWT4G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2EKFX2CKSTAYWT4G.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "2EKFX2CKSTAYWT4G.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9010000000" - }, - "appliesTo" : [ ] - }, - "2EKFX2CKSTAYWT4G.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "2EKFX2CKSTAYWT4G.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7890" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2EKFX2CKSTAYWT4G.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "2EKFX2CKSTAYWT4G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2EKFX2CKSTAYWT4G.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "2EKFX2CKSTAYWT4G.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46213" - }, - "appliesTo" : [ ] - }, - "2EKFX2CKSTAYWT4G.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "2EKFX2CKSTAYWT4G.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2EKFX2CKSTAYWT4G.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "2EKFX2CKSTAYWT4G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2EKFX2CKSTAYWT4G.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "2EKFX2CKSTAYWT4G.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2EKFX2CKSTAYWT4G.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "2EKFX2CKSTAYWT4G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2EKFX2CKSTAYWT4G.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "2EKFX2CKSTAYWT4G.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7823" - }, - "appliesTo" : [ ] - }, - "2EKFX2CKSTAYWT4G.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "2EKFX2CKSTAYWT4G.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2EKFX2CKSTAYWT4G.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "2EKFX2CKSTAYWT4G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2EKFX2CKSTAYWT4G.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "2EKFX2CKSTAYWT4G.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15759" - }, - "appliesTo" : [ ] - }, - "2EKFX2CKSTAYWT4G.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "2EKFX2CKSTAYWT4G.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2EKFX2CKSTAYWT4G.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "2EKFX2CKSTAYWT4G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2EKFX2CKSTAYWT4G.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "2EKFX2CKSTAYWT4G.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2EKFX2CKSTAYWT4G.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "2EKFX2CKSTAYWT4G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2EKFX2CKSTAYWT4G.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "2EKFX2CKSTAYWT4G.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "45885" - }, - "appliesTo" : [ ] - }, - "2EKFX2CKSTAYWT4G.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "2EKFX2CKSTAYWT4G.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2EKFX2CKSTAYWT4G.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "2EKFX2CKSTAYWT4G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2EKFX2CKSTAYWT4G.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "2EKFX2CKSTAYWT4G.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2EKFX2CKSTAYWT4G.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "2EKFX2CKSTAYWT4G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2EKFX2CKSTAYWT4G.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "2EKFX2CKSTAYWT4G.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "2EKFX2CKSTAYWT4G.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "2EKFX2CKSTAYWT4G.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15627" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2EKFX2CKSTAYWT4G.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "2EKFX2CKSTAYWT4G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2EKFX2CKSTAYWT4G.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "2EKFX2CKSTAYWT4G.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8750000000" - }, - "appliesTo" : [ ] - }, - "2EKFX2CKSTAYWT4G.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "2EKFX2CKSTAYWT4G.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22994" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2EKFX2CKSTAYWT4G.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "2EKFX2CKSTAYWT4G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2EKFX2CKSTAYWT4G.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "2EKFX2CKSTAYWT4G.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8800000000" - }, - "appliesTo" : [ ] - }, - "2EKFX2CKSTAYWT4G.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "2EKFX2CKSTAYWT4G.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23126" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "ZDQ8JPG9VUPFXHXJ" : { - "ZDQ8JPG9VUPFXHXJ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ZDQ8JPG9VUPFXHXJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZDQ8JPG9VUPFXHXJ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ZDQ8JPG9VUPFXHXJ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "67522" - }, - "appliesTo" : [ ] - }, - "ZDQ8JPG9VUPFXHXJ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ZDQ8JPG9VUPFXHXJ.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZDQ8JPG9VUPFXHXJ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ZDQ8JPG9VUPFXHXJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZDQ8JPG9VUPFXHXJ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ZDQ8JPG9VUPFXHXJ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZDQ8JPG9VUPFXHXJ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ZDQ8JPG9VUPFXHXJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZDQ8JPG9VUPFXHXJ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ZDQ8JPG9VUPFXHXJ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "98810" - }, - "appliesTo" : [ ] - }, - "ZDQ8JPG9VUPFXHXJ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ZDQ8JPG9VUPFXHXJ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZDQ8JPG9VUPFXHXJ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ZDQ8JPG9VUPFXHXJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZDQ8JPG9VUPFXHXJ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ZDQ8JPG9VUPFXHXJ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "52541" - }, - "appliesTo" : [ ] - }, - "ZDQ8JPG9VUPFXHXJ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ZDQ8JPG9VUPFXHXJ.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZDQ8JPG9VUPFXHXJ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ZDQ8JPG9VUPFXHXJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZDQ8JPG9VUPFXHXJ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ZDQ8JPG9VUPFXHXJ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "60370" - }, - "appliesTo" : [ ] - }, - "ZDQ8JPG9VUPFXHXJ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ZDQ8JPG9VUPFXHXJ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZDQ8JPG9VUPFXHXJ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ZDQ8JPG9VUPFXHXJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZDQ8JPG9VUPFXHXJ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ZDQ8JPG9VUPFXHXJ.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.2560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZDQ8JPG9VUPFXHXJ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ZDQ8JPG9VUPFXHXJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZDQ8JPG9VUPFXHXJ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ZDQ8JPG9VUPFXHXJ.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.4900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZDQ8JPG9VUPFXHXJ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ZDQ8JPG9VUPFXHXJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZDQ8JPG9VUPFXHXJ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ZDQ8JPG9VUPFXHXJ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39623" - }, - "appliesTo" : [ ] - }, - "ZDQ8JPG9VUPFXHXJ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ZDQ8JPG9VUPFXHXJ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZDQ8JPG9VUPFXHXJ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ZDQ8JPG9VUPFXHXJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZDQ8JPG9VUPFXHXJ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ZDQ8JPG9VUPFXHXJ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "118329" - }, - "appliesTo" : [ ] - }, - "ZDQ8JPG9VUPFXHXJ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ZDQ8JPG9VUPFXHXJ.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZDQ8JPG9VUPFXHXJ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "ZDQ8JPG9VUPFXHXJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZDQ8JPG9VUPFXHXJ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "ZDQ8JPG9VUPFXHXJ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.3230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZDQ8JPG9VUPFXHXJ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ZDQ8JPG9VUPFXHXJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZDQ8JPG9VUPFXHXJ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ZDQ8JPG9VUPFXHXJ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "77607" - }, - "appliesTo" : [ ] - }, - "ZDQ8JPG9VUPFXHXJ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ZDQ8JPG9VUPFXHXJ.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZDQ8JPG9VUPFXHXJ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ZDQ8JPG9VUPFXHXJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZDQ8JPG9VUPFXHXJ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ZDQ8JPG9VUPFXHXJ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9290000000" - }, - "appliesTo" : [ ] - }, - "ZDQ8JPG9VUPFXHXJ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ZDQ8JPG9VUPFXHXJ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34478" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "3A8W7GXJJKZB5V45" : { - "3A8W7GXJJKZB5V45.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "3A8W7GXJJKZB5V45", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "3A8W7GXJJKZB5V45.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "3A8W7GXJJKZB5V45.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1485" - }, - "appliesTo" : [ ] - }, - "3A8W7GXJJKZB5V45.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "3A8W7GXJJKZB5V45.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3A8W7GXJJKZB5V45.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "3A8W7GXJJKZB5V45", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "3A8W7GXJJKZB5V45.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "3A8W7GXJJKZB5V45.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1110000000" - }, - "appliesTo" : [ ] - }, - "3A8W7GXJJKZB5V45.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "3A8W7GXJJKZB5V45.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "542" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3A8W7GXJJKZB5V45.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "3A8W7GXJJKZB5V45", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3A8W7GXJJKZB5V45.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "3A8W7GXJJKZB5V45.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3329" - }, - "appliesTo" : [ ] - }, - "3A8W7GXJJKZB5V45.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "3A8W7GXJJKZB5V45.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3A8W7GXJJKZB5V45.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "3A8W7GXJJKZB5V45", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3A8W7GXJJKZB5V45.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "3A8W7GXJJKZB5V45.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "825" - }, - "appliesTo" : [ ] - }, - "3A8W7GXJJKZB5V45.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "3A8W7GXJJKZB5V45.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3A8W7GXJJKZB5V45.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "3A8W7GXJJKZB5V45", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3A8W7GXJJKZB5V45.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "3A8W7GXJJKZB5V45.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "9MCJXY6ZTFBSRNZB" : { - "9MCJXY6ZTFBSRNZB.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "9MCJXY6ZTFBSRNZB", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9MCJXY6ZTFBSRNZB.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "9MCJXY6ZTFBSRNZB.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "9MCJXY6ZTFBSRNZB.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "9MCJXY6ZTFBSRNZB.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19339" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9MCJXY6ZTFBSRNZB.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "9MCJXY6ZTFBSRNZB", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9MCJXY6ZTFBSRNZB.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "9MCJXY6ZTFBSRNZB.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5000" - }, - "appliesTo" : [ ] - }, - "9MCJXY6ZTFBSRNZB.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "9MCJXY6ZTFBSRNZB.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9MCJXY6ZTFBSRNZB.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "9MCJXY6ZTFBSRNZB", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "9MCJXY6ZTFBSRNZB.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "9MCJXY6ZTFBSRNZB.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4910000000" - }, - "appliesTo" : [ ] - }, - "9MCJXY6ZTFBSRNZB.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "9MCJXY6ZTFBSRNZB.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7670" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9MCJXY6ZTFBSRNZB.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "9MCJXY6ZTFBSRNZB", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9MCJXY6ZTFBSRNZB.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "9MCJXY6ZTFBSRNZB.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9115" - }, - "appliesTo" : [ ] - }, - "9MCJXY6ZTFBSRNZB.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "9MCJXY6ZTFBSRNZB.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9MCJXY6ZTFBSRNZB.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "9MCJXY6ZTFBSRNZB", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "9MCJXY6ZTFBSRNZB.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "9MCJXY6ZTFBSRNZB.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "CXWQTSDJMF3AP864" : { - "CXWQTSDJMF3AP864.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "CXWQTSDJMF3AP864", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "CXWQTSDJMF3AP864.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "CXWQTSDJMF3AP864.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5119" - }, - "appliesTo" : [ ] - }, - "CXWQTSDJMF3AP864.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "CXWQTSDJMF3AP864.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CXWQTSDJMF3AP864.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "CXWQTSDJMF3AP864", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CXWQTSDJMF3AP864.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "CXWQTSDJMF3AP864.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8020000000" - }, - "appliesTo" : [ ] - }, - "CXWQTSDJMF3AP864.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "CXWQTSDJMF3AP864.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5887" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CXWQTSDJMF3AP864.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "CXWQTSDJMF3AP864", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CXWQTSDJMF3AP864.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "CXWQTSDJMF3AP864.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5412000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CXWQTSDJMF3AP864.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "CXWQTSDJMF3AP864", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CXWQTSDJMF3AP864.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "CXWQTSDJMF3AP864.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12677" - }, - "appliesTo" : [ ] - }, - "CXWQTSDJMF3AP864.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "CXWQTSDJMF3AP864.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CXWQTSDJMF3AP864.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "CXWQTSDJMF3AP864", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CXWQTSDJMF3AP864.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "CXWQTSDJMF3AP864.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0358000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CXWQTSDJMF3AP864.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "CXWQTSDJMF3AP864", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "CXWQTSDJMF3AP864.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "CXWQTSDJMF3AP864.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5490000000" - }, - "appliesTo" : [ ] - }, - "CXWQTSDJMF3AP864.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "CXWQTSDJMF3AP864.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11021" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CXWQTSDJMF3AP864.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "CXWQTSDJMF3AP864", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CXWQTSDJMF3AP864.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "CXWQTSDJMF3AP864.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28258" - }, - "appliesTo" : [ ] - }, - "CXWQTSDJMF3AP864.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "CXWQTSDJMF3AP864.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CXWQTSDJMF3AP864.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "CXWQTSDJMF3AP864", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CXWQTSDJMF3AP864.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "CXWQTSDJMF3AP864.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12674" - }, - "appliesTo" : [ ] - }, - "CXWQTSDJMF3AP864.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "CXWQTSDJMF3AP864.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6123000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CXWQTSDJMF3AP864.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "CXWQTSDJMF3AP864", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "CXWQTSDJMF3AP864.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "CXWQTSDJMF3AP864.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CXWQTSDJMF3AP864.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "CXWQTSDJMF3AP864", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "CXWQTSDJMF3AP864.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "CXWQTSDJMF3AP864.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24136" - }, - "appliesTo" : [ ] - }, - "CXWQTSDJMF3AP864.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "CXWQTSDJMF3AP864.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CXWQTSDJMF3AP864.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "CXWQTSDJMF3AP864", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "CXWQTSDJMF3AP864.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "CXWQTSDJMF3AP864.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "CXWQTSDJMF3AP864.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "CXWQTSDJMF3AP864.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11172" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CXWQTSDJMF3AP864.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "CXWQTSDJMF3AP864", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CXWQTSDJMF3AP864.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "CXWQTSDJMF3AP864.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1717000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "MGX8XKF9UWBS8FMV" : { - "MGX8XKF9UWBS8FMV.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "MGX8XKF9UWBS8FMV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MGX8XKF9UWBS8FMV.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "MGX8XKF9UWBS8FMV.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3128000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MGX8XKF9UWBS8FMV.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "MGX8XKF9UWBS8FMV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MGX8XKF9UWBS8FMV.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "MGX8XKF9UWBS8FMV.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9686" - }, - "appliesTo" : [ ] - }, - "MGX8XKF9UWBS8FMV.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "MGX8XKF9UWBS8FMV.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0986000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MGX8XKF9UWBS8FMV.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "MGX8XKF9UWBS8FMV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MGX8XKF9UWBS8FMV.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "MGX8XKF9UWBS8FMV.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0154000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MGX8XKF9UWBS8FMV.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "MGX8XKF9UWBS8FMV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MGX8XKF9UWBS8FMV.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "MGX8XKF9UWBS8FMV.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18929" - }, - "appliesTo" : [ ] - }, - "MGX8XKF9UWBS8FMV.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "MGX8XKF9UWBS8FMV.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MGX8XKF9UWBS8FMV.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "MGX8XKF9UWBS8FMV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MGX8XKF9UWBS8FMV.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "MGX8XKF9UWBS8FMV.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8445" - }, - "appliesTo" : [ ] - }, - "MGX8XKF9UWBS8FMV.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "MGX8XKF9UWBS8FMV.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MGX8XKF9UWBS8FMV.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "MGX8XKF9UWBS8FMV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MGX8XKF9UWBS8FMV.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "MGX8XKF9UWBS8FMV.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38604" - }, - "appliesTo" : [ ] - }, - "MGX8XKF9UWBS8FMV.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "MGX8XKF9UWBS8FMV.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MGX8XKF9UWBS8FMV.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "MGX8XKF9UWBS8FMV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MGX8XKF9UWBS8FMV.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "MGX8XKF9UWBS8FMV.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4154000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MGX8XKF9UWBS8FMV.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "MGX8XKF9UWBS8FMV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MGX8XKF9UWBS8FMV.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "MGX8XKF9UWBS8FMV.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32314" - }, - "appliesTo" : [ ] - }, - "MGX8XKF9UWBS8FMV.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "MGX8XKF9UWBS8FMV.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MGX8XKF9UWBS8FMV.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "MGX8XKF9UWBS8FMV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MGX8XKF9UWBS8FMV.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "MGX8XKF9UWBS8FMV.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6228000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MGX8XKF9UWBS8FMV.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "MGX8XKF9UWBS8FMV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MGX8XKF9UWBS8FMV.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "MGX8XKF9UWBS8FMV.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16498" - }, - "appliesTo" : [ ] - }, - "MGX8XKF9UWBS8FMV.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "MGX8XKF9UWBS8FMV.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MGX8XKF9UWBS8FMV.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "MGX8XKF9UWBS8FMV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MGX8XKF9UWBS8FMV.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "MGX8XKF9UWBS8FMV.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17171" - }, - "appliesTo" : [ ] - }, - "MGX8XKF9UWBS8FMV.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "MGX8XKF9UWBS8FMV.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MGX8XKF9UWBS8FMV.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "MGX8XKF9UWBS8FMV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MGX8XKF9UWBS8FMV.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "MGX8XKF9UWBS8FMV.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7490000000" - }, - "appliesTo" : [ ] - }, - "MGX8XKF9UWBS8FMV.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "MGX8XKF9UWBS8FMV.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19694" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "RTF2UNENTQNKBZS3" : { - "RTF2UNENTQNKBZS3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "RTF2UNENTQNKBZS3", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "RTF2UNENTQNKBZS3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "RTF2UNENTQNKBZS3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8012" - }, - "appliesTo" : [ ] - }, - "RTF2UNENTQNKBZS3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "RTF2UNENTQNKBZS3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RTF2UNENTQNKBZS3.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "RTF2UNENTQNKBZS3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RTF2UNENTQNKBZS3.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "RTF2UNENTQNKBZS3.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RTF2UNENTQNKBZS3.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "RTF2UNENTQNKBZS3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RTF2UNENTQNKBZS3.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "RTF2UNENTQNKBZS3.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16974" - }, - "appliesTo" : [ ] - }, - "RTF2UNENTQNKBZS3.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "RTF2UNENTQNKBZS3.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RTF2UNENTQNKBZS3.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "RTF2UNENTQNKBZS3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RTF2UNENTQNKBZS3.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "RTF2UNENTQNKBZS3.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8569" - }, - "appliesTo" : [ ] - }, - "RTF2UNENTQNKBZS3.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "RTF2UNENTQNKBZS3.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RTF2UNENTQNKBZS3.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "RTF2UNENTQNKBZS3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RTF2UNENTQNKBZS3.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "RTF2UNENTQNKBZS3.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RTF2UNENTQNKBZS3.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "RTF2UNENTQNKBZS3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RTF2UNENTQNKBZS3.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "RTF2UNENTQNKBZS3.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "43339" - }, - "appliesTo" : [ ] - }, - "RTF2UNENTQNKBZS3.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "RTF2UNENTQNKBZS3.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RTF2UNENTQNKBZS3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "RTF2UNENTQNKBZS3", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "RTF2UNENTQNKBZS3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "RTF2UNENTQNKBZS3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20756" - }, - "appliesTo" : [ ] - }, - "RTF2UNENTQNKBZS3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "RTF2UNENTQNKBZS3.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RTF2UNENTQNKBZS3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "RTF2UNENTQNKBZS3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RTF2UNENTQNKBZS3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "RTF2UNENTQNKBZS3.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RTF2UNENTQNKBZS3.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "RTF2UNENTQNKBZS3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RTF2UNENTQNKBZS3.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "RTF2UNENTQNKBZS3.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RTF2UNENTQNKBZS3.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "RTF2UNENTQNKBZS3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RTF2UNENTQNKBZS3.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "RTF2UNENTQNKBZS3.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21839" - }, - "appliesTo" : [ ] - }, - "RTF2UNENTQNKBZS3.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "RTF2UNENTQNKBZS3.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RTF2UNENTQNKBZS3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "RTF2UNENTQNKBZS3", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "RTF2UNENTQNKBZS3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "RTF2UNENTQNKBZS3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "40626" - }, - "appliesTo" : [ ] - }, - "RTF2UNENTQNKBZS3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "RTF2UNENTQNKBZS3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RTF2UNENTQNKBZS3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "RTF2UNENTQNKBZS3", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "RTF2UNENTQNKBZS3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "RTF2UNENTQNKBZS3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15882" - }, - "appliesTo" : [ ] - }, - "RTF2UNENTQNKBZS3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "RTF2UNENTQNKBZS3.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "2RZ6RRUC3U8UVYP9" : { - "2RZ6RRUC3U8UVYP9.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "2RZ6RRUC3U8UVYP9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2RZ6RRUC3U8UVYP9.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "2RZ6RRUC3U8UVYP9.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8287" - }, - "appliesTo" : [ ] - }, - "2RZ6RRUC3U8UVYP9.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "2RZ6RRUC3U8UVYP9.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2RZ6RRUC3U8UVYP9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "2RZ6RRUC3U8UVYP9", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "2RZ6RRUC3U8UVYP9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "2RZ6RRUC3U8UVYP9.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2RZ6RRUC3U8UVYP9.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "2RZ6RRUC3U8UVYP9", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "2RZ6RRUC3U8UVYP9.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "2RZ6RRUC3U8UVYP9.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "48499" - }, - "appliesTo" : [ ] - }, - "2RZ6RRUC3U8UVYP9.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "2RZ6RRUC3U8UVYP9.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2RZ6RRUC3U8UVYP9.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "2RZ6RRUC3U8UVYP9", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "2RZ6RRUC3U8UVYP9.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "2RZ6RRUC3U8UVYP9.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24293" - }, - "appliesTo" : [ ] - }, - "2RZ6RRUC3U8UVYP9.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "2RZ6RRUC3U8UVYP9.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2RZ6RRUC3U8UVYP9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "2RZ6RRUC3U8UVYP9", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "2RZ6RRUC3U8UVYP9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "2RZ6RRUC3U8UVYP9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23737" - }, - "appliesTo" : [ ] - }, - "2RZ6RRUC3U8UVYP9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "2RZ6RRUC3U8UVYP9.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2RZ6RRUC3U8UVYP9.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "2RZ6RRUC3U8UVYP9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2RZ6RRUC3U8UVYP9.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "2RZ6RRUC3U8UVYP9.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2RZ6RRUC3U8UVYP9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "2RZ6RRUC3U8UVYP9", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "2RZ6RRUC3U8UVYP9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "2RZ6RRUC3U8UVYP9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8178" - }, - "appliesTo" : [ ] - }, - "2RZ6RRUC3U8UVYP9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "2RZ6RRUC3U8UVYP9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2RZ6RRUC3U8UVYP9.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "2RZ6RRUC3U8UVYP9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2RZ6RRUC3U8UVYP9.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "2RZ6RRUC3U8UVYP9.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "2RZ6RRUC3U8UVYP9.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "2RZ6RRUC3U8UVYP9.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16537" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2RZ6RRUC3U8UVYP9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "2RZ6RRUC3U8UVYP9", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "2RZ6RRUC3U8UVYP9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "2RZ6RRUC3U8UVYP9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16323" - }, - "appliesTo" : [ ] - }, - "2RZ6RRUC3U8UVYP9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "2RZ6RRUC3U8UVYP9.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2RZ6RRUC3U8UVYP9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "2RZ6RRUC3U8UVYP9", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "2RZ6RRUC3U8UVYP9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "2RZ6RRUC3U8UVYP9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47281" - }, - "appliesTo" : [ ] - }, - "2RZ6RRUC3U8UVYP9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "2RZ6RRUC3U8UVYP9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2RZ6RRUC3U8UVYP9.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "2RZ6RRUC3U8UVYP9", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "2RZ6RRUC3U8UVYP9.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "2RZ6RRUC3U8UVYP9.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "JRQSPKHTPKSDNFSM" : { - "JRQSPKHTPKSDNFSM.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "JRQSPKHTPKSDNFSM", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "JRQSPKHTPKSDNFSM.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "JRQSPKHTPKSDNFSM.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5120000000" - }, - "appliesTo" : [ ] - }, - "JRQSPKHTPKSDNFSM.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "JRQSPKHTPKSDNFSM.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39735" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "JRQSPKHTPKSDNFSM.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "JRQSPKHTPKSDNFSM", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "JRQSPKHTPKSDNFSM.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "JRQSPKHTPKSDNFSM.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0016000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "JRQSPKHTPKSDNFSM.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "JRQSPKHTPKSDNFSM", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "JRQSPKHTPKSDNFSM.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "JRQSPKHTPKSDNFSM.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "76679" - }, - "appliesTo" : [ ] - }, - "JRQSPKHTPKSDNFSM.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "JRQSPKHTPKSDNFSM.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JRQSPKHTPKSDNFSM.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "JRQSPKHTPKSDNFSM", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "JRQSPKHTPKSDNFSM.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "JRQSPKHTPKSDNFSM.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0534000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "JRQSPKHTPKSDNFSM.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "JRQSPKHTPKSDNFSM", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "JRQSPKHTPKSDNFSM.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "JRQSPKHTPKSDNFSM.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "79277" - }, - "appliesTo" : [ ] - }, - "JRQSPKHTPKSDNFSM.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "JRQSPKHTPKSDNFSM.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "JRQSPKHTPKSDNFSM.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "JRQSPKHTPKSDNFSM", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "JRQSPKHTPKSDNFSM.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "JRQSPKHTPKSDNFSM.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39105" - }, - "appliesTo" : [ ] - }, - "JRQSPKHTPKSDNFSM.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "JRQSPKHTPKSDNFSM.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "JRQSPKHTPKSDNFSM.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "JRQSPKHTPKSDNFSM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JRQSPKHTPKSDNFSM.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "JRQSPKHTPKSDNFSM.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27926" - }, - "appliesTo" : [ ] - }, - "JRQSPKHTPKSDNFSM.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "JRQSPKHTPKSDNFSM.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "JRQSPKHTPKSDNFSM.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "JRQSPKHTPKSDNFSM", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "JRQSPKHTPKSDNFSM.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "JRQSPKHTPKSDNFSM.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27319" - }, - "appliesTo" : [ ] - }, - "JRQSPKHTPKSDNFSM.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "JRQSPKHTPKSDNFSM.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JRQSPKHTPKSDNFSM.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "JRQSPKHTPKSDNFSM", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "JRQSPKHTPKSDNFSM.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "JRQSPKHTPKSDNFSM.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13701" - }, - "appliesTo" : [ ] - }, - "JRQSPKHTPKSDNFSM.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "JRQSPKHTPKSDNFSM.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "JRQSPKHTPKSDNFSM.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "JRQSPKHTPKSDNFSM", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "JRQSPKHTPKSDNFSM.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "JRQSPKHTPKSDNFSM.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1516000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "JRQSPKHTPKSDNFSM.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "JRQSPKHTPKSDNFSM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JRQSPKHTPKSDNFSM.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "JRQSPKHTPKSDNFSM.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14011" - }, - "appliesTo" : [ ] - }, - "JRQSPKHTPKSDNFSM.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "JRQSPKHTPKSDNFSM.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5994000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "JRQSPKHTPKSDNFSM.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "JRQSPKHTPKSDNFSM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JRQSPKHTPKSDNFSM.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "JRQSPKHTPKSDNFSM.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2259000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "X5T4377XTFNYDM3K" : { - "X5T4377XTFNYDM3K.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "X5T4377XTFNYDM3K", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "X5T4377XTFNYDM3K.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "X5T4377XTFNYDM3K.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23458" - }, - "appliesTo" : [ ] - }, - "X5T4377XTFNYDM3K.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "X5T4377XTFNYDM3K.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8926000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "X5T4377XTFNYDM3K.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "X5T4377XTFNYDM3K", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "X5T4377XTFNYDM3K.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "X5T4377XTFNYDM3K.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "X5T4377XTFNYDM3K.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "X5T4377XTFNYDM3K", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "X5T4377XTFNYDM3K.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "X5T4377XTFNYDM3K.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46429" - }, - "appliesTo" : [ ] - }, - "X5T4377XTFNYDM3K.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "X5T4377XTFNYDM3K.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "X5T4377XTFNYDM3K.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "X5T4377XTFNYDM3K", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "X5T4377XTFNYDM3K.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "X5T4377XTFNYDM3K.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7933000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "X5T4377XTFNYDM3K.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "X5T4377XTFNYDM3K", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X5T4377XTFNYDM3K.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "X5T4377XTFNYDM3K.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16033" - }, - "appliesTo" : [ ] - }, - "X5T4377XTFNYDM3K.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "X5T4377XTFNYDM3K.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "X5T4377XTFNYDM3K.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "X5T4377XTFNYDM3K", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "X5T4377XTFNYDM3K.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "X5T4377XTFNYDM3K.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46862" - }, - "appliesTo" : [ ] - }, - "X5T4377XTFNYDM3K.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "X5T4377XTFNYDM3K.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "X5T4377XTFNYDM3K.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "X5T4377XTFNYDM3K", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "X5T4377XTFNYDM3K.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "X5T4377XTFNYDM3K.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23284" - }, - "appliesTo" : [ ] - }, - "X5T4377XTFNYDM3K.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "X5T4377XTFNYDM3K.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "X5T4377XTFNYDM3K.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "X5T4377XTFNYDM3K", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "X5T4377XTFNYDM3K.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "X5T4377XTFNYDM3K.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "X5T4377XTFNYDM3K.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "X5T4377XTFNYDM3K.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15866" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "X5T4377XTFNYDM3K.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "X5T4377XTFNYDM3K", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "X5T4377XTFNYDM3K.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "X5T4377XTFNYDM3K.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8203000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "X5T4377XTFNYDM3K.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "X5T4377XTFNYDM3K", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "X5T4377XTFNYDM3K.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "X5T4377XTFNYDM3K.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9069000000" - }, - "appliesTo" : [ ] - }, - "X5T4377XTFNYDM3K.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "X5T4377XTFNYDM3K.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7944" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "X5T4377XTFNYDM3K.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "X5T4377XTFNYDM3K", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X5T4377XTFNYDM3K.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "X5T4377XTFNYDM3K.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8407000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "X5T4377XTFNYDM3K.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "X5T4377XTFNYDM3K", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X5T4377XTFNYDM3K.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "X5T4377XTFNYDM3K.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8030" - }, - "appliesTo" : [ ] - }, - "X5T4377XTFNYDM3K.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "X5T4377XTFNYDM3K.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9166000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "GSFCFZ283SFGMM8F" : { - "GSFCFZ283SFGMM8F.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "GSFCFZ283SFGMM8F", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GSFCFZ283SFGMM8F.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "GSFCFZ283SFGMM8F.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.2238000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "GSFCFZ283SFGMM8F.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "GSFCFZ283SFGMM8F", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GSFCFZ283SFGMM8F.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "GSFCFZ283SFGMM8F.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9264000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GSFCFZ283SFGMM8F.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "GSFCFZ283SFGMM8F", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GSFCFZ283SFGMM8F.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "GSFCFZ283SFGMM8F.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22405" - }, - "appliesTo" : [ ] - }, - "GSFCFZ283SFGMM8F.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "GSFCFZ283SFGMM8F.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5576000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GSFCFZ283SFGMM8F.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "GSFCFZ283SFGMM8F", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GSFCFZ283SFGMM8F.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "GSFCFZ283SFGMM8F.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "44429" - }, - "appliesTo" : [ ] - }, - "GSFCFZ283SFGMM8F.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "GSFCFZ283SFGMM8F.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "GSFCFZ283SFGMM8F.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "GSFCFZ283SFGMM8F", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GSFCFZ283SFGMM8F.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "GSFCFZ283SFGMM8F.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21164" - }, - "appliesTo" : [ ] - }, - "GSFCFZ283SFGMM8F.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "GSFCFZ283SFGMM8F.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GSFCFZ283SFGMM8F.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "GSFCFZ283SFGMM8F", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GSFCFZ283SFGMM8F.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "GSFCFZ283SFGMM8F.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "GSFCFZ283SFGMM8F.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "GSFCFZ283SFGMM8F.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "115279" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "GSFCFZ283SFGMM8F.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "GSFCFZ283SFGMM8F", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GSFCFZ283SFGMM8F.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "GSFCFZ283SFGMM8F.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.3264000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GSFCFZ283SFGMM8F.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "GSFCFZ283SFGMM8F", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GSFCFZ283SFGMM8F.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "GSFCFZ283SFGMM8F.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "102904" - }, - "appliesTo" : [ ] - }, - "GSFCFZ283SFGMM8F.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "GSFCFZ283SFGMM8F.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GSFCFZ283SFGMM8F.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "GSFCFZ283SFGMM8F", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GSFCFZ283SFGMM8F.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "GSFCFZ283SFGMM8F.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5338000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "GSFCFZ283SFGMM8F.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "GSFCFZ283SFGMM8F", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GSFCFZ283SFGMM8F.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "GSFCFZ283SFGMM8F.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "41998" - }, - "appliesTo" : [ ] - }, - "GSFCFZ283SFGMM8F.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "GSFCFZ283SFGMM8F.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GSFCFZ283SFGMM8F.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "GSFCFZ283SFGMM8F", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GSFCFZ283SFGMM8F.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "GSFCFZ283SFGMM8F.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "58026" - }, - "appliesTo" : [ ] - }, - "GSFCFZ283SFGMM8F.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "GSFCFZ283SFGMM8F.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GSFCFZ283SFGMM8F.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "GSFCFZ283SFGMM8F", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "GSFCFZ283SFGMM8F.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "GSFCFZ283SFGMM8F.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "54736" - }, - "appliesTo" : [ ] - }, - "GSFCFZ283SFGMM8F.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "GSFCFZ283SFGMM8F.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "KPX48D6YDFSDBE2Y" : { - "KPX48D6YDFSDBE2Y.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "KPX48D6YDFSDBE2Y", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "KPX48D6YDFSDBE2Y.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "KPX48D6YDFSDBE2Y.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "KPX48D6YDFSDBE2Y.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "KPX48D6YDFSDBE2Y.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1062" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KPX48D6YDFSDBE2Y.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "KPX48D6YDFSDBE2Y", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "KPX48D6YDFSDBE2Y.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "KPX48D6YDFSDBE2Y.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "690" - }, - "appliesTo" : [ ] - }, - "KPX48D6YDFSDBE2Y.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "KPX48D6YDFSDBE2Y.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KPX48D6YDFSDBE2Y.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "KPX48D6YDFSDBE2Y", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "KPX48D6YDFSDBE2Y.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "KPX48D6YDFSDBE2Y.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "KPX48D6YDFSDBE2Y.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "KPX48D6YDFSDBE2Y.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2215" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KPX48D6YDFSDBE2Y.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "KPX48D6YDFSDBE2Y", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "KPX48D6YDFSDBE2Y.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "KPX48D6YDFSDBE2Y.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KPX48D6YDFSDBE2Y.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "KPX48D6YDFSDBE2Y", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "KPX48D6YDFSDBE2Y.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "KPX48D6YDFSDBE2Y.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2767" - }, - "appliesTo" : [ ] - }, - "KPX48D6YDFSDBE2Y.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "KPX48D6YDFSDBE2Y.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KPX48D6YDFSDBE2Y.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "KPX48D6YDFSDBE2Y", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "KPX48D6YDFSDBE2Y.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "KPX48D6YDFSDBE2Y.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0370000000" - }, - "appliesTo" : [ ] - }, - "KPX48D6YDFSDBE2Y.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "KPX48D6YDFSDBE2Y.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1333" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KPX48D6YDFSDBE2Y.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "KPX48D6YDFSDBE2Y", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "KPX48D6YDFSDBE2Y.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "KPX48D6YDFSDBE2Y.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1740" - }, - "appliesTo" : [ ] - }, - "KPX48D6YDFSDBE2Y.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "KPX48D6YDFSDBE2Y.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KPX48D6YDFSDBE2Y.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "KPX48D6YDFSDBE2Y", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "KPX48D6YDFSDBE2Y.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "KPX48D6YDFSDBE2Y.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KPX48D6YDFSDBE2Y.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "KPX48D6YDFSDBE2Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KPX48D6YDFSDBE2Y.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "KPX48D6YDFSDBE2Y.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KPX48D6YDFSDBE2Y.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "KPX48D6YDFSDBE2Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KPX48D6YDFSDBE2Y.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "KPX48D6YDFSDBE2Y.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1176" - }, - "appliesTo" : [ ] - }, - "KPX48D6YDFSDBE2Y.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "KPX48D6YDFSDBE2Y.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KPX48D6YDFSDBE2Y.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "KPX48D6YDFSDBE2Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KPX48D6YDFSDBE2Y.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "KPX48D6YDFSDBE2Y.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0650000000" - }, - "appliesTo" : [ ] - }, - "KPX48D6YDFSDBE2Y.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "KPX48D6YDFSDBE2Y.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "628" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "X894WEFHKGGUVR52" : { - "X894WEFHKGGUVR52.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "X894WEFHKGGUVR52", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "X894WEFHKGGUVR52.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "X894WEFHKGGUVR52.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12364" - }, - "appliesTo" : [ ] - }, - "X894WEFHKGGUVR52.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "X894WEFHKGGUVR52.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "X894WEFHKGGUVR52.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "X894WEFHKGGUVR52", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "X894WEFHKGGUVR52.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "X894WEFHKGGUVR52.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8223" - }, - "appliesTo" : [ ] - }, - "X894WEFHKGGUVR52.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "X894WEFHKGGUVR52.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "X894WEFHKGGUVR52.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "X894WEFHKGGUVR52", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "X894WEFHKGGUVR52.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "X894WEFHKGGUVR52.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "X894WEFHKGGUVR52.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "X894WEFHKGGUVR52", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "X894WEFHKGGUVR52.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "X894WEFHKGGUVR52.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22202" - }, - "appliesTo" : [ ] - }, - "X894WEFHKGGUVR52.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "X894WEFHKGGUVR52.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "X894WEFHKGGUVR52.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "X894WEFHKGGUVR52", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "X894WEFHKGGUVR52.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "X894WEFHKGGUVR52.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24521" - }, - "appliesTo" : [ ] - }, - "X894WEFHKGGUVR52.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "X894WEFHKGGUVR52.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "X894WEFHKGGUVR52.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "X894WEFHKGGUVR52", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "X894WEFHKGGUVR52.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "X894WEFHKGGUVR52.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15702" - }, - "appliesTo" : [ ] - }, - "X894WEFHKGGUVR52.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "X894WEFHKGGUVR52.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "X894WEFHKGGUVR52.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "X894WEFHKGGUVR52", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "X894WEFHKGGUVR52.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "X894WEFHKGGUVR52.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "X894WEFHKGGUVR52.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "X894WEFHKGGUVR52", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X894WEFHKGGUVR52.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "X894WEFHKGGUVR52.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14169" - }, - "appliesTo" : [ ] - }, - "X894WEFHKGGUVR52.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "X894WEFHKGGUVR52.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "X894WEFHKGGUVR52.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "X894WEFHKGGUVR52", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X894WEFHKGGUVR52.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "X894WEFHKGGUVR52.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "X894WEFHKGGUVR52.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "X894WEFHKGGUVR52", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X894WEFHKGGUVR52.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "X894WEFHKGGUVR52.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7229" - }, - "appliesTo" : [ ] - }, - "X894WEFHKGGUVR52.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "X894WEFHKGGUVR52.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "X894WEFHKGGUVR52.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "X894WEFHKGGUVR52", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "X894WEFHKGGUVR52.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "X894WEFHKGGUVR52.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33383" - }, - "appliesTo" : [ ] - }, - "X894WEFHKGGUVR52.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "X894WEFHKGGUVR52.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "VMVDDQB5JVUS29SY" : { - "VMVDDQB5JVUS29SY.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "VMVDDQB5JVUS29SY", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "VMVDDQB5JVUS29SY.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "VMVDDQB5JVUS29SY.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "VMVDDQB5JVUS29SY.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "VMVDDQB5JVUS29SY.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28215" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VMVDDQB5JVUS29SY.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "VMVDDQB5JVUS29SY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VMVDDQB5JVUS29SY.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "VMVDDQB5JVUS29SY.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VMVDDQB5JVUS29SY.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "VMVDDQB5JVUS29SY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VMVDDQB5JVUS29SY.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "VMVDDQB5JVUS29SY.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VMVDDQB5JVUS29SY.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "VMVDDQB5JVUS29SY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VMVDDQB5JVUS29SY.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "VMVDDQB5JVUS29SY.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "VMVDDQB5JVUS29SY.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "VMVDDQB5JVUS29SY.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "75173" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VMVDDQB5JVUS29SY.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "VMVDDQB5JVUS29SY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VMVDDQB5JVUS29SY.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "VMVDDQB5JVUS29SY.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30618" - }, - "appliesTo" : [ ] - }, - "VMVDDQB5JVUS29SY.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "VMVDDQB5JVUS29SY.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VMVDDQB5JVUS29SY.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "VMVDDQB5JVUS29SY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VMVDDQB5JVUS29SY.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "VMVDDQB5JVUS29SY.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VMVDDQB5JVUS29SY.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "VMVDDQB5JVUS29SY", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "VMVDDQB5JVUS29SY.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "VMVDDQB5JVUS29SY.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6280000000" - }, - "appliesTo" : [ ] - }, - "VMVDDQB5JVUS29SY.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "VMVDDQB5JVUS29SY.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14264" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VMVDDQB5JVUS29SY.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "VMVDDQB5JVUS29SY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VMVDDQB5JVUS29SY.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "VMVDDQB5JVUS29SY.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VMVDDQB5JVUS29SY.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "VMVDDQB5JVUS29SY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VMVDDQB5JVUS29SY.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "VMVDDQB5JVUS29SY.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15490" - }, - "appliesTo" : [ ] - }, - "VMVDDQB5JVUS29SY.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "VMVDDQB5JVUS29SY.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VMVDDQB5JVUS29SY.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "VMVDDQB5JVUS29SY", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "VMVDDQB5JVUS29SY.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "VMVDDQB5JVUS29SY.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "69205" - }, - "appliesTo" : [ ] - }, - "VMVDDQB5JVUS29SY.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "VMVDDQB5JVUS29SY.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VMVDDQB5JVUS29SY.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "VMVDDQB5JVUS29SY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VMVDDQB5JVUS29SY.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "VMVDDQB5JVUS29SY.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37959" - }, - "appliesTo" : [ ] - }, - "VMVDDQB5JVUS29SY.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "VMVDDQB5JVUS29SY.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VMVDDQB5JVUS29SY.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "VMVDDQB5JVUS29SY", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "VMVDDQB5JVUS29SY.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "VMVDDQB5JVUS29SY.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35577" - }, - "appliesTo" : [ ] - }, - "VMVDDQB5JVUS29SY.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "VMVDDQB5JVUS29SY.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "PA99ECAE74DADX5J" : { - "PA99ECAE74DADX5J.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "PA99ECAE74DADX5J", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "PA99ECAE74DADX5J.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "PA99ECAE74DADX5J.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15646" - }, - "appliesTo" : [ ] - }, - "PA99ECAE74DADX5J.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "PA99ECAE74DADX5J.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PA99ECAE74DADX5J.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "PA99ECAE74DADX5J", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PA99ECAE74DADX5J.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "PA99ECAE74DADX5J.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "PA99ECAE74DADX5J.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "PA99ECAE74DADX5J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PA99ECAE74DADX5J.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "PA99ECAE74DADX5J.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14130" - }, - "appliesTo" : [ ] - }, - "PA99ECAE74DADX5J.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "PA99ECAE74DADX5J.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PA99ECAE74DADX5J.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "PA99ECAE74DADX5J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PA99ECAE74DADX5J.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "PA99ECAE74DADX5J.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "PA99ECAE74DADX5J.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "PA99ECAE74DADX5J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PA99ECAE74DADX5J.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "PA99ECAE74DADX5J.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7118" - }, - "appliesTo" : [ ] - }, - "PA99ECAE74DADX5J.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "PA99ECAE74DADX5J.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PA99ECAE74DADX5J.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "PA99ECAE74DADX5J", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PA99ECAE74DADX5J.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "PA99ECAE74DADX5J.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "PA99ECAE74DADX5J.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "PA99ECAE74DADX5J", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PA99ECAE74DADX5J.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "PA99ECAE74DADX5J.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "PA99ECAE74DADX5J.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "PA99ECAE74DADX5J.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37439" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PA99ECAE74DADX5J.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "PA99ECAE74DADX5J", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "PA99ECAE74DADX5J.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "PA99ECAE74DADX5J.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6789" - }, - "appliesTo" : [ ] - }, - "PA99ECAE74DADX5J.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "PA99ECAE74DADX5J.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PA99ECAE74DADX5J.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "PA99ECAE74DADX5J", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PA99ECAE74DADX5J.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "PA99ECAE74DADX5J.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "PA99ECAE74DADX5J.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "PA99ECAE74DADX5J", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PA99ECAE74DADX5J.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "PA99ECAE74DADX5J.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7160000000" - }, - "appliesTo" : [ ] - }, - "PA99ECAE74DADX5J.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "PA99ECAE74DADX5J.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18829" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PA99ECAE74DADX5J.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "PA99ECAE74DADX5J", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "PA99ECAE74DADX5J.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "PA99ECAE74DADX5J.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13366" - }, - "appliesTo" : [ ] - }, - "PA99ECAE74DADX5J.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "PA99ECAE74DADX5J.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PA99ECAE74DADX5J.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "PA99ECAE74DADX5J", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PA99ECAE74DADX5J.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "PA99ECAE74DADX5J.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29402" - }, - "appliesTo" : [ ] - }, - "PA99ECAE74DADX5J.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "PA99ECAE74DADX5J.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "6MAMZMQ6FM3UK7P6" : { - "6MAMZMQ6FM3UK7P6.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "6MAMZMQ6FM3UK7P6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6MAMZMQ6FM3UK7P6.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "6MAMZMQ6FM3UK7P6.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6756000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6MAMZMQ6FM3UK7P6.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "6MAMZMQ6FM3UK7P6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6MAMZMQ6FM3UK7P6.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "6MAMZMQ6FM3UK7P6.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6176000000" - }, - "appliesTo" : [ ] - }, - "6MAMZMQ6FM3UK7P6.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "6MAMZMQ6FM3UK7P6.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12814" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6MAMZMQ6FM3UK7P6.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6MAMZMQ6FM3UK7P6", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "6MAMZMQ6FM3UK7P6.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6MAMZMQ6FM3UK7P6.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24444" - }, - "appliesTo" : [ ] - }, - "6MAMZMQ6FM3UK7P6.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6MAMZMQ6FM3UK7P6.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6MAMZMQ6FM3UK7P6.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6MAMZMQ6FM3UK7P6", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "6MAMZMQ6FM3UK7P6.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6MAMZMQ6FM3UK7P6.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12100" - }, - "appliesTo" : [ ] - }, - "6MAMZMQ6FM3UK7P6.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6MAMZMQ6FM3UK7P6.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6MAMZMQ6FM3UK7P6.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6MAMZMQ6FM3UK7P6", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "6MAMZMQ6FM3UK7P6.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6MAMZMQ6FM3UK7P6.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11185" - }, - "appliesTo" : [ ] - }, - "6MAMZMQ6FM3UK7P6.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6MAMZMQ6FM3UK7P6.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6MAMZMQ6FM3UK7P6.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "6MAMZMQ6FM3UK7P6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6MAMZMQ6FM3UK7P6.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "6MAMZMQ6FM3UK7P6.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28532" - }, - "appliesTo" : [ ] - }, - "6MAMZMQ6FM3UK7P6.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "6MAMZMQ6FM3UK7P6.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6MAMZMQ6FM3UK7P6.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "6MAMZMQ6FM3UK7P6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6MAMZMQ6FM3UK7P6.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "6MAMZMQ6FM3UK7P6.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1832000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6MAMZMQ6FM3UK7P6.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "6MAMZMQ6FM3UK7P6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6MAMZMQ6FM3UK7P6.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "6MAMZMQ6FM3UK7P6.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6447" - }, - "appliesTo" : [ ] - }, - "6MAMZMQ6FM3UK7P6.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "6MAMZMQ6FM3UK7P6.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6MAMZMQ6FM3UK7P6.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6MAMZMQ6FM3UK7P6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6MAMZMQ6FM3UK7P6.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6MAMZMQ6FM3UK7P6.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6MAMZMQ6FM3UK7P6.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6MAMZMQ6FM3UK7P6", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "6MAMZMQ6FM3UK7P6.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6MAMZMQ6FM3UK7P6.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5592" - }, - "appliesTo" : [ ] - }, - "6MAMZMQ6FM3UK7P6.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6MAMZMQ6FM3UK7P6.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6MAMZMQ6FM3UK7P6.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "6MAMZMQ6FM3UK7P6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6MAMZMQ6FM3UK7P6.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "6MAMZMQ6FM3UK7P6.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0458000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6MAMZMQ6FM3UK7P6.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "6MAMZMQ6FM3UK7P6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6MAMZMQ6FM3UK7P6.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "6MAMZMQ6FM3UK7P6.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13776" - }, - "appliesTo" : [ ] - }, - "6MAMZMQ6FM3UK7P6.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "6MAMZMQ6FM3UK7P6.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "PFVCSMK3T7J3UAHB" : { - "PFVCSMK3T7J3UAHB.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "PFVCSMK3T7J3UAHB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PFVCSMK3T7J3UAHB.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "PFVCSMK3T7J3UAHB.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3296" - }, - "appliesTo" : [ ] - }, - "PFVCSMK3T7J3UAHB.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "PFVCSMK3T7J3UAHB.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PFVCSMK3T7J3UAHB.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "PFVCSMK3T7J3UAHB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PFVCSMK3T7J3UAHB.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "PFVCSMK3T7J3UAHB.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "PFVCSMK3T7J3UAHB.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "PFVCSMK3T7J3UAHB", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "PFVCSMK3T7J3UAHB.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "PFVCSMK3T7J3UAHB.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "PFVCSMK3T7J3UAHB.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "PFVCSMK3T7J3UAHB.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14078" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PFVCSMK3T7J3UAHB.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "PFVCSMK3T7J3UAHB", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "PFVCSMK3T7J3UAHB.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "PFVCSMK3T7J3UAHB.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "PFVCSMK3T7J3UAHB.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "PFVCSMK3T7J3UAHB", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "PFVCSMK3T7J3UAHB.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "PFVCSMK3T7J3UAHB.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6986" - }, - "appliesTo" : [ ] - }, - "PFVCSMK3T7J3UAHB.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "PFVCSMK3T7J3UAHB.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PFVCSMK3T7J3UAHB.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "PFVCSMK3T7J3UAHB", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "PFVCSMK3T7J3UAHB.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "PFVCSMK3T7J3UAHB.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3420000000" - }, - "appliesTo" : [ ] - }, - "PFVCSMK3T7J3UAHB.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "PFVCSMK3T7J3UAHB.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5987" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PFVCSMK3T7J3UAHB.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "PFVCSMK3T7J3UAHB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PFVCSMK3T7J3UAHB.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "PFVCSMK3T7J3UAHB.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6513" - }, - "appliesTo" : [ ] - }, - "PFVCSMK3T7J3UAHB.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "PFVCSMK3T7J3UAHB.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PFVCSMK3T7J3UAHB.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "PFVCSMK3T7J3UAHB", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "PFVCSMK3T7J3UAHB.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "PFVCSMK3T7J3UAHB.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17567" - }, - "appliesTo" : [ ] - }, - "PFVCSMK3T7J3UAHB.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "PFVCSMK3T7J3UAHB.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PFVCSMK3T7J3UAHB.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "PFVCSMK3T7J3UAHB", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "PFVCSMK3T7J3UAHB.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "PFVCSMK3T7J3UAHB.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2529" - }, - "appliesTo" : [ ] - }, - "PFVCSMK3T7J3UAHB.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "PFVCSMK3T7J3UAHB.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PFVCSMK3T7J3UAHB.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "PFVCSMK3T7J3UAHB", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "PFVCSMK3T7J3UAHB.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "PFVCSMK3T7J3UAHB.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6198" - }, - "appliesTo" : [ ] - }, - "PFVCSMK3T7J3UAHB.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "PFVCSMK3T7J3UAHB.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PFVCSMK3T7J3UAHB.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "PFVCSMK3T7J3UAHB", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "PFVCSMK3T7J3UAHB.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "PFVCSMK3T7J3UAHB.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "5TGRKMTBQMH42KUS" : { - "5TGRKMTBQMH42KUS.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "5TGRKMTBQMH42KUS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5TGRKMTBQMH42KUS.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "5TGRKMTBQMH42KUS.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "5TGRKMTBQMH42KUS.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "5TGRKMTBQMH42KUS", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "5TGRKMTBQMH42KUS.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "5TGRKMTBQMH42KUS.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3908" - }, - "appliesTo" : [ ] - }, - "5TGRKMTBQMH42KUS.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "5TGRKMTBQMH42KUS.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5TGRKMTBQMH42KUS.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "5TGRKMTBQMH42KUS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5TGRKMTBQMH42KUS.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "5TGRKMTBQMH42KUS.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "5TGRKMTBQMH42KUS.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "5TGRKMTBQMH42KUS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5TGRKMTBQMH42KUS.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "5TGRKMTBQMH42KUS.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4521" - }, - "appliesTo" : [ ] - }, - "5TGRKMTBQMH42KUS.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "5TGRKMTBQMH42KUS.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "5TGRKMTBQMH42KUS.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "5TGRKMTBQMH42KUS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5TGRKMTBQMH42KUS.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "5TGRKMTBQMH42KUS.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "5TGRKMTBQMH42KUS.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "5TGRKMTBQMH42KUS.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8862" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "5TGRKMTBQMH42KUS.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "5TGRKMTBQMH42KUS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5TGRKMTBQMH42KUS.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "5TGRKMTBQMH42KUS.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18245" - }, - "appliesTo" : [ ] - }, - "5TGRKMTBQMH42KUS.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "5TGRKMTBQMH42KUS.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "5TGRKMTBQMH42KUS.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "5TGRKMTBQMH42KUS", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "5TGRKMTBQMH42KUS.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "5TGRKMTBQMH42KUS.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15261" - }, - "appliesTo" : [ ] - }, - "5TGRKMTBQMH42KUS.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "5TGRKMTBQMH42KUS.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5TGRKMTBQMH42KUS.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "5TGRKMTBQMH42KUS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5TGRKMTBQMH42KUS.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "5TGRKMTBQMH42KUS.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "5TGRKMTBQMH42KUS.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "5TGRKMTBQMH42KUS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5TGRKMTBQMH42KUS.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "5TGRKMTBQMH42KUS.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9308" - }, - "appliesTo" : [ ] - }, - "5TGRKMTBQMH42KUS.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "5TGRKMTBQMH42KUS.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "5TGRKMTBQMH42KUS.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "5TGRKMTBQMH42KUS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5TGRKMTBQMH42KUS.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "5TGRKMTBQMH42KUS.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "5TGRKMTBQMH42KUS.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "5TGRKMTBQMH42KUS", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "5TGRKMTBQMH42KUS.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "5TGRKMTBQMH42KUS.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8117" - }, - "appliesTo" : [ ] - }, - "5TGRKMTBQMH42KUS.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "5TGRKMTBQMH42KUS.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5TGRKMTBQMH42KUS.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "5TGRKMTBQMH42KUS", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "5TGRKMTBQMH42KUS.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "5TGRKMTBQMH42KUS.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7660" - }, - "appliesTo" : [ ] - }, - "5TGRKMTBQMH42KUS.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "5TGRKMTBQMH42KUS.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "7APFVGHQXR9QGJ23" : { - "7APFVGHQXR9QGJ23.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "7APFVGHQXR9QGJ23", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7APFVGHQXR9QGJ23.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "7APFVGHQXR9QGJ23.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "22.1710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7APFVGHQXR9QGJ23.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "7APFVGHQXR9QGJ23", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "7APFVGHQXR9QGJ23.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "7APFVGHQXR9QGJ23.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "19.6520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7APFVGHQXR9QGJ23.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "7APFVGHQXR9QGJ23", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "7APFVGHQXR9QGJ23.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "7APFVGHQXR9QGJ23.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.4280000000" - }, - "appliesTo" : [ ] - }, - "7APFVGHQXR9QGJ23.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "7APFVGHQXR9QGJ23.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "82589" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7APFVGHQXR9QGJ23.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "7APFVGHQXR9QGJ23", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7APFVGHQXR9QGJ23.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "7APFVGHQXR9QGJ23.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "93097" - }, - "appliesTo" : [ ] - }, - "7APFVGHQXR9QGJ23.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "7APFVGHQXR9QGJ23.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.6280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7APFVGHQXR9QGJ23.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "7APFVGHQXR9QGJ23", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "7APFVGHQXR9QGJ23.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "7APFVGHQXR9QGJ23.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "7APFVGHQXR9QGJ23.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "7APFVGHQXR9QGJ23.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "419712" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7APFVGHQXR9QGJ23.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "7APFVGHQXR9QGJ23", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "7APFVGHQXR9QGJ23.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "7APFVGHQXR9QGJ23.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.5990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7APFVGHQXR9QGJ23.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "7APFVGHQXR9QGJ23", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7APFVGHQXR9QGJ23.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "7APFVGHQXR9QGJ23.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "182986" - }, - "appliesTo" : [ ] - }, - "7APFVGHQXR9QGJ23.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "7APFVGHQXR9QGJ23.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7APFVGHQXR9QGJ23.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "7APFVGHQXR9QGJ23", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "7APFVGHQXR9QGJ23.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "7APFVGHQXR9QGJ23.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "17.3000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7APFVGHQXR9QGJ23.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "7APFVGHQXR9QGJ23", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "7APFVGHQXR9QGJ23.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "7APFVGHQXR9QGJ23.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "213349" - }, - "appliesTo" : [ ] - }, - "7APFVGHQXR9QGJ23.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "7APFVGHQXR9QGJ23.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.1180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7APFVGHQXR9QGJ23.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "7APFVGHQXR9QGJ23", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "7APFVGHQXR9QGJ23.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "7APFVGHQXR9QGJ23.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "168316" - }, - "appliesTo" : [ ] - }, - "7APFVGHQXR9QGJ23.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "7APFVGHQXR9QGJ23.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.4050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7APFVGHQXR9QGJ23.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "7APFVGHQXR9QGJ23", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "7APFVGHQXR9QGJ23.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "7APFVGHQXR9QGJ23.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "321076" - }, - "appliesTo" : [ ] - }, - "7APFVGHQXR9QGJ23.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "7APFVGHQXR9QGJ23.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7APFVGHQXR9QGJ23.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "7APFVGHQXR9QGJ23", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "7APFVGHQXR9QGJ23.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "7APFVGHQXR9QGJ23.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "162391" - }, - "appliesTo" : [ ] - }, - "7APFVGHQXR9QGJ23.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "7APFVGHQXR9QGJ23.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "385FHNM4MG8P3KGR" : { - "385FHNM4MG8P3KGR.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "385FHNM4MG8P3KGR", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "385FHNM4MG8P3KGR.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "385FHNM4MG8P3KGR.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "214046" - }, - "appliesTo" : [ ] - }, - "385FHNM4MG8P3KGR.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "385FHNM4MG8P3KGR.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "385FHNM4MG8P3KGR.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "385FHNM4MG8P3KGR", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "385FHNM4MG8P3KGR.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "385FHNM4MG8P3KGR.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "101505" - }, - "appliesTo" : [ ] - }, - "385FHNM4MG8P3KGR.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "385FHNM4MG8P3KGR.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "385FHNM4MG8P3KGR.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "385FHNM4MG8P3KGR", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "385FHNM4MG8P3KGR.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "385FHNM4MG8P3KGR.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "201451" - }, - "appliesTo" : [ ] - }, - "385FHNM4MG8P3KGR.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "385FHNM4MG8P3KGR.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "385FHNM4MG8P3KGR.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "385FHNM4MG8P3KGR", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "385FHNM4MG8P3KGR.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "385FHNM4MG8P3KGR.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "107401" - }, - "appliesTo" : [ ] - }, - "385FHNM4MG8P3KGR.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "385FHNM4MG8P3KGR.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.0870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "385FHNM4MG8P3KGR.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "385FHNM4MG8P3KGR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "385FHNM4MG8P3KGR.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "385FHNM4MG8P3KGR.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "74767" - }, - "appliesTo" : [ ] - }, - "385FHNM4MG8P3KGR.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "385FHNM4MG8P3KGR.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "385FHNM4MG8P3KGR.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "385FHNM4MG8P3KGR", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "385FHNM4MG8P3KGR.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "385FHNM4MG8P3KGR.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.6050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "385FHNM4MG8P3KGR.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "385FHNM4MG8P3KGR", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "385FHNM4MG8P3KGR.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "385FHNM4MG8P3KGR.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.4180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "385FHNM4MG8P3KGR.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "385FHNM4MG8P3KGR", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "385FHNM4MG8P3KGR.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "385FHNM4MG8P3KGR.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "72720" - }, - "appliesTo" : [ ] - }, - "385FHNM4MG8P3KGR.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "385FHNM4MG8P3KGR.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "385FHNM4MG8P3KGR.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "385FHNM4MG8P3KGR", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "385FHNM4MG8P3KGR.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "385FHNM4MG8P3KGR.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.1670000000" - }, - "appliesTo" : [ ] - }, - "385FHNM4MG8P3KGR.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "385FHNM4MG8P3KGR.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "36500" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "385FHNM4MG8P3KGR.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "385FHNM4MG8P3KGR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "385FHNM4MG8P3KGR.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "385FHNM4MG8P3KGR.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37544" - }, - "appliesTo" : [ ] - }, - "385FHNM4MG8P3KGR.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "385FHNM4MG8P3KGR.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "385FHNM4MG8P3KGR.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "385FHNM4MG8P3KGR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "385FHNM4MG8P3KGR.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "385FHNM4MG8P3KGR.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.6640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "3YMR7VMVAJWZPJVQ" : { - "3YMR7VMVAJWZPJVQ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "3YMR7VMVAJWZPJVQ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "3YMR7VMVAJWZPJVQ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "3YMR7VMVAJWZPJVQ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6254" - }, - "appliesTo" : [ ] - }, - "3YMR7VMVAJWZPJVQ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "3YMR7VMVAJWZPJVQ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3YMR7VMVAJWZPJVQ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "3YMR7VMVAJWZPJVQ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3YMR7VMVAJWZPJVQ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "3YMR7VMVAJWZPJVQ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14698" - }, - "appliesTo" : [ ] - }, - "3YMR7VMVAJWZPJVQ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "3YMR7VMVAJWZPJVQ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3YMR7VMVAJWZPJVQ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "3YMR7VMVAJWZPJVQ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "3YMR7VMVAJWZPJVQ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "3YMR7VMVAJWZPJVQ.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "3YMR7VMVAJWZPJVQ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "3YMR7VMVAJWZPJVQ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16637" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3YMR7VMVAJWZPJVQ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "3YMR7VMVAJWZPJVQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3YMR7VMVAJWZPJVQ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "3YMR7VMVAJWZPJVQ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3YMR7VMVAJWZPJVQ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "3YMR7VMVAJWZPJVQ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "3YMR7VMVAJWZPJVQ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "3YMR7VMVAJWZPJVQ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6734" - }, - "appliesTo" : [ ] - }, - "3YMR7VMVAJWZPJVQ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "3YMR7VMVAJWZPJVQ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3YMR7VMVAJWZPJVQ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "3YMR7VMVAJWZPJVQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3YMR7VMVAJWZPJVQ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "3YMR7VMVAJWZPJVQ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2964" - }, - "appliesTo" : [ ] - }, - "3YMR7VMVAJWZPJVQ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "3YMR7VMVAJWZPJVQ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3YMR7VMVAJWZPJVQ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "3YMR7VMVAJWZPJVQ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3YMR7VMVAJWZPJVQ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "3YMR7VMVAJWZPJVQ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3950000000" - }, - "appliesTo" : [ ] - }, - "3YMR7VMVAJWZPJVQ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "3YMR7VMVAJWZPJVQ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2310" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3YMR7VMVAJWZPJVQ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "3YMR7VMVAJWZPJVQ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3YMR7VMVAJWZPJVQ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "3YMR7VMVAJWZPJVQ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5655" - }, - "appliesTo" : [ ] - }, - "3YMR7VMVAJWZPJVQ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "3YMR7VMVAJWZPJVQ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3YMR7VMVAJWZPJVQ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "3YMR7VMVAJWZPJVQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3YMR7VMVAJWZPJVQ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "3YMR7VMVAJWZPJVQ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5902" - }, - "appliesTo" : [ ] - }, - "3YMR7VMVAJWZPJVQ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "3YMR7VMVAJWZPJVQ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3YMR7VMVAJWZPJVQ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "3YMR7VMVAJWZPJVQ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "3YMR7VMVAJWZPJVQ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "3YMR7VMVAJWZPJVQ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3YMR7VMVAJWZPJVQ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "3YMR7VMVAJWZPJVQ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3YMR7VMVAJWZPJVQ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "3YMR7VMVAJWZPJVQ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "YN6S4KGMAE64PQR5" : { - "YN6S4KGMAE64PQR5.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YN6S4KGMAE64PQR5", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "YN6S4KGMAE64PQR5.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YN6S4KGMAE64PQR5.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YN6S4KGMAE64PQR5.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YN6S4KGMAE64PQR5.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "940" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YN6S4KGMAE64PQR5.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YN6S4KGMAE64PQR5", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "YN6S4KGMAE64PQR5.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YN6S4KGMAE64PQR5.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "976" - }, - "appliesTo" : [ ] - }, - "YN6S4KGMAE64PQR5.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YN6S4KGMAE64PQR5.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0371000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YN6S4KGMAE64PQR5.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YN6S4KGMAE64PQR5", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "YN6S4KGMAE64PQR5.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YN6S4KGMAE64PQR5.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1834" - }, - "appliesTo" : [ ] - }, - "YN6S4KGMAE64PQR5.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YN6S4KGMAE64PQR5.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YN6S4KGMAE64PQR5.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "YN6S4KGMAE64PQR5", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "YN6S4KGMAE64PQR5.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "YN6S4KGMAE64PQR5.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0802000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YN6S4KGMAE64PQR5.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YN6S4KGMAE64PQR5", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "YN6S4KGMAE64PQR5.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YN6S4KGMAE64PQR5.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "480" - }, - "appliesTo" : [ ] - }, - "YN6S4KGMAE64PQR5.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YN6S4KGMAE64PQR5.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0548000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YN6S4KGMAE64PQR5.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YN6S4KGMAE64PQR5", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "YN6S4KGMAE64PQR5.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YN6S4KGMAE64PQR5.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "MU4QGTJYWR6T73MZ" : { - "MU4QGTJYWR6T73MZ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "MU4QGTJYWR6T73MZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MU4QGTJYWR6T73MZ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "MU4QGTJYWR6T73MZ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3655" - }, - "appliesTo" : [ ] - }, - "MU4QGTJYWR6T73MZ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "MU4QGTJYWR6T73MZ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MU4QGTJYWR6T73MZ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "MU4QGTJYWR6T73MZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MU4QGTJYWR6T73MZ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "MU4QGTJYWR6T73MZ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MU4QGTJYWR6T73MZ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "MU4QGTJYWR6T73MZ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "MU4QGTJYWR6T73MZ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "MU4QGTJYWR6T73MZ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9828" - }, - "appliesTo" : [ ] - }, - "MU4QGTJYWR6T73MZ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "MU4QGTJYWR6T73MZ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MU4QGTJYWR6T73MZ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "MU4QGTJYWR6T73MZ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "MU4QGTJYWR6T73MZ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "MU4QGTJYWR6T73MZ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MU4QGTJYWR6T73MZ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "MU4QGTJYWR6T73MZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MU4QGTJYWR6T73MZ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "MU4QGTJYWR6T73MZ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11104" - }, - "appliesTo" : [ ] - }, - "MU4QGTJYWR6T73MZ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "MU4QGTJYWR6T73MZ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MU4QGTJYWR6T73MZ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "MU4QGTJYWR6T73MZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MU4QGTJYWR6T73MZ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "MU4QGTJYWR6T73MZ.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2410000000" - }, - "appliesTo" : [ ] - }, - "MU4QGTJYWR6T73MZ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "MU4QGTJYWR6T73MZ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5480" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MU4QGTJYWR6T73MZ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "MU4QGTJYWR6T73MZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MU4QGTJYWR6T73MZ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "MU4QGTJYWR6T73MZ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6237" - }, - "appliesTo" : [ ] - }, - "MU4QGTJYWR6T73MZ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "MU4QGTJYWR6T73MZ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MU4QGTJYWR6T73MZ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "MU4QGTJYWR6T73MZ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "MU4QGTJYWR6T73MZ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "MU4QGTJYWR6T73MZ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3640" - }, - "appliesTo" : [ ] - }, - "MU4QGTJYWR6T73MZ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "MU4QGTJYWR6T73MZ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MU4QGTJYWR6T73MZ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "MU4QGTJYWR6T73MZ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "MU4QGTJYWR6T73MZ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "MU4QGTJYWR6T73MZ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16840" - }, - "appliesTo" : [ ] - }, - "MU4QGTJYWR6T73MZ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "MU4QGTJYWR6T73MZ.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MU4QGTJYWR6T73MZ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "MU4QGTJYWR6T73MZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MU4QGTJYWR6T73MZ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "MU4QGTJYWR6T73MZ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MU4QGTJYWR6T73MZ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "MU4QGTJYWR6T73MZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MU4QGTJYWR6T73MZ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "MU4QGTJYWR6T73MZ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7164" - }, - "appliesTo" : [ ] - }, - "MU4QGTJYWR6T73MZ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "MU4QGTJYWR6T73MZ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "BUS2682V3FEX8NNV" : { - "BUS2682V3FEX8NNV.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "BUS2682V3FEX8NNV", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "BUS2682V3FEX8NNV.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "BUS2682V3FEX8NNV.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "BUS2682V3FEX8NNV.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "BUS2682V3FEX8NNV.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17999" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BUS2682V3FEX8NNV.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "BUS2682V3FEX8NNV", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "BUS2682V3FEX8NNV.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "BUS2682V3FEX8NNV.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BUS2682V3FEX8NNV.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "BUS2682V3FEX8NNV", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "BUS2682V3FEX8NNV.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "BUS2682V3FEX8NNV.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "BUS2682V3FEX8NNV.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "BUS2682V3FEX8NNV.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "53024" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BUS2682V3FEX8NNV.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "BUS2682V3FEX8NNV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BUS2682V3FEX8NNV.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "BUS2682V3FEX8NNV.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18498" - }, - "appliesTo" : [ ] - }, - "BUS2682V3FEX8NNV.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "BUS2682V3FEX8NNV.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BUS2682V3FEX8NNV.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "BUS2682V3FEX8NNV", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "BUS2682V3FEX8NNV.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "BUS2682V3FEX8NNV.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0310000000" - }, - "appliesTo" : [ ] - }, - "BUS2682V3FEX8NNV.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "BUS2682V3FEX8NNV.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9033" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BUS2682V3FEX8NNV.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "BUS2682V3FEX8NNV", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "BUS2682V3FEX8NNV.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "BUS2682V3FEX8NNV.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BUS2682V3FEX8NNV.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "BUS2682V3FEX8NNV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BUS2682V3FEX8NNV.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "BUS2682V3FEX8NNV.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BUS2682V3FEX8NNV.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "BUS2682V3FEX8NNV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BUS2682V3FEX8NNV.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "BUS2682V3FEX8NNV.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9287" - }, - "appliesTo" : [ ] - }, - "BUS2682V3FEX8NNV.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "BUS2682V3FEX8NNV.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BUS2682V3FEX8NNV.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "BUS2682V3FEX8NNV", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "BUS2682V3FEX8NNV.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "BUS2682V3FEX8NNV.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "49970" - }, - "appliesTo" : [ ] - }, - "BUS2682V3FEX8NNV.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "BUS2682V3FEX8NNV.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BUS2682V3FEX8NNV.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "BUS2682V3FEX8NNV", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "BUS2682V3FEX8NNV.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "BUS2682V3FEX8NNV.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25167" - }, - "appliesTo" : [ ] - }, - "BUS2682V3FEX8NNV.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "BUS2682V3FEX8NNV.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BUS2682V3FEX8NNV.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "BUS2682V3FEX8NNV", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "BUS2682V3FEX8NNV.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "BUS2682V3FEX8NNV.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26601" - }, - "appliesTo" : [ ] - }, - "BUS2682V3FEX8NNV.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "BUS2682V3FEX8NNV.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "S96SK9E6DW5X9ZCD" : { - "S96SK9E6DW5X9ZCD.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "S96SK9E6DW5X9ZCD", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "S96SK9E6DW5X9ZCD.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "S96SK9E6DW5X9ZCD.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3389" - }, - "appliesTo" : [ ] - }, - "S96SK9E6DW5X9ZCD.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "S96SK9E6DW5X9ZCD.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "S96SK9E6DW5X9ZCD.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "S96SK9E6DW5X9ZCD", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "S96SK9E6DW5X9ZCD.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "S96SK9E6DW5X9ZCD.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1670000000" - }, - "appliesTo" : [ ] - }, - "S96SK9E6DW5X9ZCD.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "S96SK9E6DW5X9ZCD.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1996" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "S96SK9E6DW5X9ZCD.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "S96SK9E6DW5X9ZCD", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "S96SK9E6DW5X9ZCD.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "S96SK9E6DW5X9ZCD.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5266" - }, - "appliesTo" : [ ] - }, - "S96SK9E6DW5X9ZCD.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "S96SK9E6DW5X9ZCD.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "S96SK9E6DW5X9ZCD.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "S96SK9E6DW5X9ZCD", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "S96SK9E6DW5X9ZCD.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "S96SK9E6DW5X9ZCD.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6192" - }, - "appliesTo" : [ ] - }, - "S96SK9E6DW5X9ZCD.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "S96SK9E6DW5X9ZCD.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "S96SK9E6DW5X9ZCD.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "S96SK9E6DW5X9ZCD", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "S96SK9E6DW5X9ZCD.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "S96SK9E6DW5X9ZCD.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "S96SK9E6DW5X9ZCD.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "S96SK9E6DW5X9ZCD.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9036" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "S96SK9E6DW5X9ZCD.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "S96SK9E6DW5X9ZCD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "S96SK9E6DW5X9ZCD.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "S96SK9E6DW5X9ZCD.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3872" - }, - "appliesTo" : [ ] - }, - "S96SK9E6DW5X9ZCD.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "S96SK9E6DW5X9ZCD.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "S96SK9E6DW5X9ZCD.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "S96SK9E6DW5X9ZCD", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "S96SK9E6DW5X9ZCD.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "S96SK9E6DW5X9ZCD.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3092" - }, - "appliesTo" : [ ] - }, - "S96SK9E6DW5X9ZCD.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "S96SK9E6DW5X9ZCD.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "S96SK9E6DW5X9ZCD.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "S96SK9E6DW5X9ZCD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "S96SK9E6DW5X9ZCD.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "S96SK9E6DW5X9ZCD.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "S96SK9E6DW5X9ZCD.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "S96SK9E6DW5X9ZCD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "S96SK9E6DW5X9ZCD.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "S96SK9E6DW5X9ZCD.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2003" - }, - "appliesTo" : [ ] - }, - "S96SK9E6DW5X9ZCD.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "S96SK9E6DW5X9ZCD.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "S96SK9E6DW5X9ZCD.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "S96SK9E6DW5X9ZCD", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "S96SK9E6DW5X9ZCD.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "S96SK9E6DW5X9ZCD.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "S96SK9E6DW5X9ZCD.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "S96SK9E6DW5X9ZCD", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "S96SK9E6DW5X9ZCD.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "S96SK9E6DW5X9ZCD.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "HVUDFQPHSTBP5QJC" : { - "HVUDFQPHSTBP5QJC.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "HVUDFQPHSTBP5QJC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HVUDFQPHSTBP5QJC.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "HVUDFQPHSTBP5QJC.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "413901" - }, - "appliesTo" : [ ] - }, - "HVUDFQPHSTBP5QJC.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "HVUDFQPHSTBP5QJC.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.7500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HVUDFQPHSTBP5QJC.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "HVUDFQPHSTBP5QJC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HVUDFQPHSTBP5QJC.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "HVUDFQPHSTBP5QJC.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "831827" - }, - "appliesTo" : [ ] - }, - "HVUDFQPHSTBP5QJC.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "HVUDFQPHSTBP5QJC.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "HVUDFQPHSTBP5QJC.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "HVUDFQPHSTBP5QJC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HVUDFQPHSTBP5QJC.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "HVUDFQPHSTBP5QJC.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "825929" - }, - "appliesTo" : [ ] - }, - "HVUDFQPHSTBP5QJC.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "HVUDFQPHSTBP5QJC.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HVUDFQPHSTBP5QJC.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "HVUDFQPHSTBP5QJC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HVUDFQPHSTBP5QJC.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "HVUDFQPHSTBP5QJC.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "31.5940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "HVUDFQPHSTBP5QJC.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "HVUDFQPHSTBP5QJC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HVUDFQPHSTBP5QJC.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "HVUDFQPHSTBP5QJC.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "32.5290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "HVUDFQPHSTBP5QJC.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "HVUDFQPHSTBP5QJC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HVUDFQPHSTBP5QJC.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "HVUDFQPHSTBP5QJC.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "142014" - }, - "appliesTo" : [ ] - }, - "HVUDFQPHSTBP5QJC.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "HVUDFQPHSTBP5QJC.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.2120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HVUDFQPHSTBP5QJC.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "HVUDFQPHSTBP5QJC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HVUDFQPHSTBP5QJC.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "HVUDFQPHSTBP5QJC.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "416273" - }, - "appliesTo" : [ ] - }, - "HVUDFQPHSTBP5QJC.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "HVUDFQPHSTBP5QJC.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.8400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HVUDFQPHSTBP5QJC.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "HVUDFQPHSTBP5QJC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HVUDFQPHSTBP5QJC.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "HVUDFQPHSTBP5QJC.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.0740000000" - }, - "appliesTo" : [ ] - }, - "HVUDFQPHSTBP5QJC.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "HVUDFQPHSTBP5QJC.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "140808" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HVUDFQPHSTBP5QJC.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "HVUDFQPHSTBP5QJC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HVUDFQPHSTBP5QJC.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "HVUDFQPHSTBP5QJC.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "281295" - }, - "appliesTo" : [ ] - }, - "HVUDFQPHSTBP5QJC.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "HVUDFQPHSTBP5QJC.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HVUDFQPHSTBP5QJC.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "HVUDFQPHSTBP5QJC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HVUDFQPHSTBP5QJC.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "HVUDFQPHSTBP5QJC.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "283659" - }, - "appliesTo" : [ ] - }, - "HVUDFQPHSTBP5QJC.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "HVUDFQPHSTBP5QJC.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "HVUDFQPHSTBP5QJC.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "HVUDFQPHSTBP5QJC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HVUDFQPHSTBP5QJC.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "HVUDFQPHSTBP5QJC.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "31.7890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "HVUDFQPHSTBP5QJC.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "HVUDFQPHSTBP5QJC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HVUDFQPHSTBP5QJC.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "HVUDFQPHSTBP5QJC.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "32.2400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "RUDWUCYJBCDYZNGV" : { - "RUDWUCYJBCDYZNGV.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "RUDWUCYJBCDYZNGV", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RUDWUCYJBCDYZNGV.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "RUDWUCYJBCDYZNGV.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2270" - }, - "appliesTo" : [ ] - }, - "RUDWUCYJBCDYZNGV.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "RUDWUCYJBCDYZNGV.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RUDWUCYJBCDYZNGV.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "RUDWUCYJBCDYZNGV", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "RUDWUCYJBCDYZNGV.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "RUDWUCYJBCDYZNGV.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1178" - }, - "appliesTo" : [ ] - }, - "RUDWUCYJBCDYZNGV.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "RUDWUCYJBCDYZNGV.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RUDWUCYJBCDYZNGV.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "RUDWUCYJBCDYZNGV", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "RUDWUCYJBCDYZNGV.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "RUDWUCYJBCDYZNGV.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1020" - }, - "appliesTo" : [ ] - }, - "RUDWUCYJBCDYZNGV.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "RUDWUCYJBCDYZNGV.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RUDWUCYJBCDYZNGV.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "RUDWUCYJBCDYZNGV", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RUDWUCYJBCDYZNGV.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "RUDWUCYJBCDYZNGV.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "970" - }, - "appliesTo" : [ ] - }, - "RUDWUCYJBCDYZNGV.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "RUDWUCYJBCDYZNGV.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RUDWUCYJBCDYZNGV.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "RUDWUCYJBCDYZNGV", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "RUDWUCYJBCDYZNGV.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "RUDWUCYJBCDYZNGV.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RUDWUCYJBCDYZNGV.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "RUDWUCYJBCDYZNGV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RUDWUCYJBCDYZNGV.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "RUDWUCYJBCDYZNGV.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RUDWUCYJBCDYZNGV.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "RUDWUCYJBCDYZNGV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RUDWUCYJBCDYZNGV.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "RUDWUCYJBCDYZNGV.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "639" - }, - "appliesTo" : [ ] - }, - "RUDWUCYJBCDYZNGV.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "RUDWUCYJBCDYZNGV.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RUDWUCYJBCDYZNGV.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "RUDWUCYJBCDYZNGV", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "RUDWUCYJBCDYZNGV.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "RUDWUCYJBCDYZNGV.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RUDWUCYJBCDYZNGV.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "RUDWUCYJBCDYZNGV", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "RUDWUCYJBCDYZNGV.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "RUDWUCYJBCDYZNGV.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0720000000" - }, - "appliesTo" : [ ] - }, - "RUDWUCYJBCDYZNGV.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "RUDWUCYJBCDYZNGV.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "416" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RUDWUCYJBCDYZNGV.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "RUDWUCYJBCDYZNGV", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "RUDWUCYJBCDYZNGV.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "RUDWUCYJBCDYZNGV.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2944" - }, - "appliesTo" : [ ] - }, - "RUDWUCYJBCDYZNGV.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "RUDWUCYJBCDYZNGV.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RUDWUCYJBCDYZNGV.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "RUDWUCYJBCDYZNGV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RUDWUCYJBCDYZNGV.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "RUDWUCYJBCDYZNGV.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1270" - }, - "appliesTo" : [ ] - }, - "RUDWUCYJBCDYZNGV.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "RUDWUCYJBCDYZNGV.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "8SPMKN7PWFUUUK25" : { - "8SPMKN7PWFUUUK25.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "8SPMKN7PWFUUUK25", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8SPMKN7PWFUUUK25.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "8SPMKN7PWFUUUK25.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "8SPMKN7PWFUUUK25.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "8SPMKN7PWFUUUK25.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5878" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8SPMKN7PWFUUUK25.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "8SPMKN7PWFUUUK25", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8SPMKN7PWFUUUK25.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "8SPMKN7PWFUUUK25.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4956" - }, - "appliesTo" : [ ] - }, - "8SPMKN7PWFUUUK25.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "8SPMKN7PWFUUUK25.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8SPMKN7PWFUUUK25.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "8SPMKN7PWFUUUK25", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8SPMKN7PWFUUUK25.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "8SPMKN7PWFUUUK25.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8SPMKN7PWFUUUK25.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "8SPMKN7PWFUUUK25", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "8SPMKN7PWFUUUK25.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "8SPMKN7PWFUUUK25.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2116" - }, - "appliesTo" : [ ] - }, - "8SPMKN7PWFUUUK25.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "8SPMKN7PWFUUUK25.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8SPMKN7PWFUUUK25.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "8SPMKN7PWFUUUK25", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8SPMKN7PWFUUUK25.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "8SPMKN7PWFUUUK25.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "8SPMKN7PWFUUUK25.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "8SPMKN7PWFUUUK25.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13131" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8SPMKN7PWFUUUK25.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "8SPMKN7PWFUUUK25", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8SPMKN7PWFUUUK25.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "8SPMKN7PWFUUUK25.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8SPMKN7PWFUUUK25.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "8SPMKN7PWFUUUK25", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8SPMKN7PWFUUUK25.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "8SPMKN7PWFUUUK25.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8SPMKN7PWFUUUK25.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "8SPMKN7PWFUUUK25", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8SPMKN7PWFUUUK25.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "8SPMKN7PWFUUUK25.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2418" - }, - "appliesTo" : [ ] - }, - "8SPMKN7PWFUUUK25.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "8SPMKN7PWFUUUK25.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8SPMKN7PWFUUUK25.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "8SPMKN7PWFUUUK25", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8SPMKN7PWFUUUK25.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "8SPMKN7PWFUUUK25.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8SPMKN7PWFUUUK25.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "8SPMKN7PWFUUUK25", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "8SPMKN7PWFUUUK25.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "8SPMKN7PWFUUUK25.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4336" - }, - "appliesTo" : [ ] - }, - "8SPMKN7PWFUUUK25.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "8SPMKN7PWFUUUK25.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8SPMKN7PWFUUUK25.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "8SPMKN7PWFUUUK25", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8SPMKN7PWFUUUK25.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "8SPMKN7PWFUUUK25.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5285" - }, - "appliesTo" : [ ] - }, - "8SPMKN7PWFUUUK25.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "8SPMKN7PWFUUUK25.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8SPMKN7PWFUUUK25.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "8SPMKN7PWFUUUK25", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "8SPMKN7PWFUUUK25.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "8SPMKN7PWFUUUK25.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11568" - }, - "appliesTo" : [ ] - }, - "8SPMKN7PWFUUUK25.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "8SPMKN7PWFUUUK25.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "UEHZ36662EWM4RGB" : { - "UEHZ36662EWM4RGB.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "UEHZ36662EWM4RGB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UEHZ36662EWM4RGB.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "UEHZ36662EWM4RGB.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "UEHZ36662EWM4RGB.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "UEHZ36662EWM4RGB.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "206213" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "UEHZ36662EWM4RGB.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "UEHZ36662EWM4RGB", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "UEHZ36662EWM4RGB.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "UEHZ36662EWM4RGB.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.4670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "UEHZ36662EWM4RGB.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "UEHZ36662EWM4RGB", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "UEHZ36662EWM4RGB.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "UEHZ36662EWM4RGB.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "350968" - }, - "appliesTo" : [ ] - }, - "UEHZ36662EWM4RGB.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "UEHZ36662EWM4RGB.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "UEHZ36662EWM4RGB.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "UEHZ36662EWM4RGB", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "UEHZ36662EWM4RGB.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "UEHZ36662EWM4RGB.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "390006" - }, - "appliesTo" : [ ] - }, - "UEHZ36662EWM4RGB.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "UEHZ36662EWM4RGB.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "UEHZ36662EWM4RGB.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "UEHZ36662EWM4RGB", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "UEHZ36662EWM4RGB.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "UEHZ36662EWM4RGB.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "181747" - }, - "appliesTo" : [ ] - }, - "UEHZ36662EWM4RGB.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "UEHZ36662EWM4RGB.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.9160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "UEHZ36662EWM4RGB.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "UEHZ36662EWM4RGB", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "UEHZ36662EWM4RGB.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "UEHZ36662EWM4RGB.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "94394" - }, - "appliesTo" : [ ] - }, - "UEHZ36662EWM4RGB.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "UEHZ36662EWM4RGB.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.7760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "UEHZ36662EWM4RGB.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "UEHZ36662EWM4RGB", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "UEHZ36662EWM4RGB.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "UEHZ36662EWM4RGB.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "197404" - }, - "appliesTo" : [ ] - }, - "UEHZ36662EWM4RGB.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "UEHZ36662EWM4RGB.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "UEHZ36662EWM4RGB.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "UEHZ36662EWM4RGB", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "UEHZ36662EWM4RGB.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "UEHZ36662EWM4RGB.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "186043" - }, - "appliesTo" : [ ] - }, - "UEHZ36662EWM4RGB.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "UEHZ36662EWM4RGB.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "UEHZ36662EWM4RGB.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "UEHZ36662EWM4RGB", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "UEHZ36662EWM4RGB.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "UEHZ36662EWM4RGB.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.7540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "UEHZ36662EWM4RGB.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "UEHZ36662EWM4RGB", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "UEHZ36662EWM4RGB.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "UEHZ36662EWM4RGB.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "22.3340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "UEHZ36662EWM4RGB.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "UEHZ36662EWM4RGB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UEHZ36662EWM4RGB.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "UEHZ36662EWM4RGB.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "104684" - }, - "appliesTo" : [ ] - }, - "UEHZ36662EWM4RGB.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "UEHZ36662EWM4RGB.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "11.9500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "UEHZ36662EWM4RGB.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "UEHZ36662EWM4RGB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UEHZ36662EWM4RGB.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "UEHZ36662EWM4RGB.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "24.8010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "FRR3BPV6Y433HGXY" : { - "FRR3BPV6Y433HGXY.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "FRR3BPV6Y433HGXY", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "FRR3BPV6Y433HGXY.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "FRR3BPV6Y433HGXY.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "43263" - }, - "appliesTo" : [ ] - }, - "FRR3BPV6Y433HGXY.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "FRR3BPV6Y433HGXY.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FRR3BPV6Y433HGXY.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "FRR3BPV6Y433HGXY", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "FRR3BPV6Y433HGXY.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "FRR3BPV6Y433HGXY.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FRR3BPV6Y433HGXY.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "FRR3BPV6Y433HGXY", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "FRR3BPV6Y433HGXY.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "FRR3BPV6Y433HGXY.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33445" - }, - "appliesTo" : [ ] - }, - "FRR3BPV6Y433HGXY.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "FRR3BPV6Y433HGXY.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FRR3BPV6Y433HGXY.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "FRR3BPV6Y433HGXY", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "FRR3BPV6Y433HGXY.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "FRR3BPV6Y433HGXY.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "65551" - }, - "appliesTo" : [ ] - }, - "FRR3BPV6Y433HGXY.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "FRR3BPV6Y433HGXY.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FRR3BPV6Y433HGXY.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "FRR3BPV6Y433HGXY", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "FRR3BPV6Y433HGXY.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "FRR3BPV6Y433HGXY.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4100000000" - }, - "appliesTo" : [ ] - }, - "FRR3BPV6Y433HGXY.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "FRR3BPV6Y433HGXY.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12353" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FRR3BPV6Y433HGXY.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "FRR3BPV6Y433HGXY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FRR3BPV6Y433HGXY.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "FRR3BPV6Y433HGXY.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "41755" - }, - "appliesTo" : [ ] - }, - "FRR3BPV6Y433HGXY.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "FRR3BPV6Y433HGXY.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FRR3BPV6Y433HGXY.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "FRR3BPV6Y433HGXY", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "FRR3BPV6Y433HGXY.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "FRR3BPV6Y433HGXY.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FRR3BPV6Y433HGXY.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "FRR3BPV6Y433HGXY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FRR3BPV6Y433HGXY.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "FRR3BPV6Y433HGXY.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FRR3BPV6Y433HGXY.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "FRR3BPV6Y433HGXY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FRR3BPV6Y433HGXY.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "FRR3BPV6Y433HGXY.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21155" - }, - "appliesTo" : [ ] - }, - "FRR3BPV6Y433HGXY.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "FRR3BPV6Y433HGXY.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FRR3BPV6Y433HGXY.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "FRR3BPV6Y433HGXY", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "FRR3BPV6Y433HGXY.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "FRR3BPV6Y433HGXY.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "FRR3BPV6Y433HGXY.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "FRR3BPV6Y433HGXY.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24212" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FRR3BPV6Y433HGXY.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "FRR3BPV6Y433HGXY", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "FRR3BPV6Y433HGXY.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "FRR3BPV6Y433HGXY.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23012" - }, - "appliesTo" : [ ] - }, - "FRR3BPV6Y433HGXY.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "FRR3BPV6Y433HGXY.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "298AWKD7RC822MQJ" : { - "298AWKD7RC822MQJ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "298AWKD7RC822MQJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "298AWKD7RC822MQJ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "298AWKD7RC822MQJ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "89352" - }, - "appliesTo" : [ ] - }, - "298AWKD7RC822MQJ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "298AWKD7RC822MQJ.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "298AWKD7RC822MQJ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "298AWKD7RC822MQJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "298AWKD7RC822MQJ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "298AWKD7RC822MQJ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.5760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "298AWKD7RC822MQJ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "298AWKD7RC822MQJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "298AWKD7RC822MQJ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "298AWKD7RC822MQJ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.9580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "298AWKD7RC822MQJ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "298AWKD7RC822MQJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "298AWKD7RC822MQJ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "298AWKD7RC822MQJ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47146" - }, - "appliesTo" : [ ] - }, - "298AWKD7RC822MQJ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "298AWKD7RC822MQJ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.5120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "298AWKD7RC822MQJ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "298AWKD7RC822MQJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "298AWKD7RC822MQJ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "298AWKD7RC822MQJ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "40997" - }, - "appliesTo" : [ ] - }, - "298AWKD7RC822MQJ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "298AWKD7RC822MQJ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.8100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "298AWKD7RC822MQJ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "298AWKD7RC822MQJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "298AWKD7RC822MQJ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "298AWKD7RC822MQJ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "298AWKD7RC822MQJ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "298AWKD7RC822MQJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "298AWKD7RC822MQJ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "298AWKD7RC822MQJ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "93546" - }, - "appliesTo" : [ ] - }, - "298AWKD7RC822MQJ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "298AWKD7RC822MQJ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "298AWKD7RC822MQJ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "298AWKD7RC822MQJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "298AWKD7RC822MQJ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "298AWKD7RC822MQJ.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "298AWKD7RC822MQJ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "298AWKD7RC822MQJ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "204817" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "298AWKD7RC822MQJ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "298AWKD7RC822MQJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "298AWKD7RC822MQJ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "298AWKD7RC822MQJ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "11.4320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "298AWKD7RC822MQJ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "298AWKD7RC822MQJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "298AWKD7RC822MQJ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "298AWKD7RC822MQJ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "102756" - }, - "appliesTo" : [ ] - }, - "298AWKD7RC822MQJ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "298AWKD7RC822MQJ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.0400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "298AWKD7RC822MQJ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "298AWKD7RC822MQJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "298AWKD7RC822MQJ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "298AWKD7RC822MQJ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "81493" - }, - "appliesTo" : [ ] - }, - "298AWKD7RC822MQJ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "298AWKD7RC822MQJ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "298AWKD7RC822MQJ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "298AWKD7RC822MQJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "298AWKD7RC822MQJ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "298AWKD7RC822MQJ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "171398" - }, - "appliesTo" : [ ] - }, - "298AWKD7RC822MQJ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "298AWKD7RC822MQJ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "F3HZNTTFXFDM68NR" : { - "F3HZNTTFXFDM68NR.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "F3HZNTTFXFDM68NR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "F3HZNTTFXFDM68NR.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "F3HZNTTFXFDM68NR.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "F3HZNTTFXFDM68NR.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "F3HZNTTFXFDM68NR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "F3HZNTTFXFDM68NR.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "F3HZNTTFXFDM68NR.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "734" - }, - "appliesTo" : [ ] - }, - "F3HZNTTFXFDM68NR.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "F3HZNTTFXFDM68NR.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "F3HZNTTFXFDM68NR.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "F3HZNTTFXFDM68NR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "F3HZNTTFXFDM68NR.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "F3HZNTTFXFDM68NR.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "F3HZNTTFXFDM68NR.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "F3HZNTTFXFDM68NR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "F3HZNTTFXFDM68NR.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "F3HZNTTFXFDM68NR.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1353" - }, - "appliesTo" : [ ] - }, - "F3HZNTTFXFDM68NR.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "F3HZNTTFXFDM68NR.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "F3HZNTTFXFDM68NR.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "F3HZNTTFXFDM68NR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "F3HZNTTFXFDM68NR.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "F3HZNTTFXFDM68NR.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1485" - }, - "appliesTo" : [ ] - }, - "F3HZNTTFXFDM68NR.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "F3HZNTTFXFDM68NR.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "F3HZNTTFXFDM68NR.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "F3HZNTTFXFDM68NR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "F3HZNTTFXFDM68NR.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "F3HZNTTFXFDM68NR.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2591" - }, - "appliesTo" : [ ] - }, - "F3HZNTTFXFDM68NR.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "F3HZNTTFXFDM68NR.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "F3HZNTTFXFDM68NR.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "F3HZNTTFXFDM68NR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "F3HZNTTFXFDM68NR.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "F3HZNTTFXFDM68NR.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1255" - }, - "appliesTo" : [ ] - }, - "F3HZNTTFXFDM68NR.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "F3HZNTTFXFDM68NR.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "F3HZNTTFXFDM68NR.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "F3HZNTTFXFDM68NR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "F3HZNTTFXFDM68NR.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "F3HZNTTFXFDM68NR.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1386" - }, - "appliesTo" : [ ] - }, - "F3HZNTTFXFDM68NR.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "F3HZNTTFXFDM68NR.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "F3HZNTTFXFDM68NR.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "F3HZNTTFXFDM68NR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "F3HZNTTFXFDM68NR.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "F3HZNTTFXFDM68NR.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "F3HZNTTFXFDM68NR.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "F3HZNTTFXFDM68NR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "F3HZNTTFXFDM68NR.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "F3HZNTTFXFDM68NR.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0690000000" - }, - "appliesTo" : [ ] - }, - "F3HZNTTFXFDM68NR.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "F3HZNTTFXFDM68NR.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "667" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "F3HZNTTFXFDM68NR.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "F3HZNTTFXFDM68NR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "F3HZNTTFXFDM68NR.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "F3HZNTTFXFDM68NR.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "F3HZNTTFXFDM68NR.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "F3HZNTTFXFDM68NR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "F3HZNTTFXFDM68NR.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "F3HZNTTFXFDM68NR.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2919" - }, - "appliesTo" : [ ] - }, - "F3HZNTTFXFDM68NR.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "F3HZNTTFXFDM68NR.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "SV6J8GK44ZN2FKNF" : { - "SV6J8GK44ZN2FKNF.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "SV6J8GK44ZN2FKNF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SV6J8GK44ZN2FKNF.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "SV6J8GK44ZN2FKNF.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9689000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SV6J8GK44ZN2FKNF.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "SV6J8GK44ZN2FKNF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SV6J8GK44ZN2FKNF.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "SV6J8GK44ZN2FKNF.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17086" - }, - "appliesTo" : [ ] - }, - "SV6J8GK44ZN2FKNF.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "SV6J8GK44ZN2FKNF.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9505000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SV6J8GK44ZN2FKNF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SV6J8GK44ZN2FKNF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SV6J8GK44ZN2FKNF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SV6J8GK44ZN2FKNF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25308" - }, - "appliesTo" : [ ] - }, - "SV6J8GK44ZN2FKNF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SV6J8GK44ZN2FKNF.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SV6J8GK44ZN2FKNF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SV6J8GK44ZN2FKNF", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "SV6J8GK44ZN2FKNF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SV6J8GK44ZN2FKNF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32430" - }, - "appliesTo" : [ ] - }, - "SV6J8GK44ZN2FKNF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SV6J8GK44ZN2FKNF.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SV6J8GK44ZN2FKNF.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "SV6J8GK44ZN2FKNF", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "SV6J8GK44ZN2FKNF.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "SV6J8GK44ZN2FKNF.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SV6J8GK44ZN2FKNF.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "SV6J8GK44ZN2FKNF", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "SV6J8GK44ZN2FKNF.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "SV6J8GK44ZN2FKNF.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "36889" - }, - "appliesTo" : [ ] - }, - "SV6J8GK44ZN2FKNF.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "SV6J8GK44ZN2FKNF.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SV6J8GK44ZN2FKNF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SV6J8GK44ZN2FKNF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SV6J8GK44ZN2FKNF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SV6J8GK44ZN2FKNF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "60967" - }, - "appliesTo" : [ ] - }, - "SV6J8GK44ZN2FKNF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SV6J8GK44ZN2FKNF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SV6J8GK44ZN2FKNF.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "SV6J8GK44ZN2FKNF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SV6J8GK44ZN2FKNF.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "SV6J8GK44ZN2FKNF.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SV6J8GK44ZN2FKNF.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "SV6J8GK44ZN2FKNF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SV6J8GK44ZN2FKNF.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "SV6J8GK44ZN2FKNF.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33935" - }, - "appliesTo" : [ ] - }, - "SV6J8GK44ZN2FKNF.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "SV6J8GK44ZN2FKNF.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SV6J8GK44ZN2FKNF.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "SV6J8GK44ZN2FKNF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SV6J8GK44ZN2FKNF.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "SV6J8GK44ZN2FKNF.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SV6J8GK44ZN2FKNF.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "SV6J8GK44ZN2FKNF.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "72303" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SV6J8GK44ZN2FKNF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SV6J8GK44ZN2FKNF", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "SV6J8GK44ZN2FKNF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SV6J8GK44ZN2FKNF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12912" - }, - "appliesTo" : [ ] - }, - "SV6J8GK44ZN2FKNF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SV6J8GK44ZN2FKNF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SV6J8GK44ZN2FKNF.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SV6J8GK44ZN2FKNF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SV6J8GK44ZN2FKNF.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SV6J8GK44ZN2FKNF.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "YQXXJJ49N744B7HM" : { - "YQXXJJ49N744B7HM.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YQXXJJ49N744B7HM", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "YQXXJJ49N744B7HM.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YQXXJJ49N744B7HM.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YQXXJJ49N744B7HM.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YQXXJJ49N744B7HM.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18818" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YQXXJJ49N744B7HM.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YQXXJJ49N744B7HM", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "YQXXJJ49N744B7HM.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YQXXJJ49N744B7HM.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0940000000" - }, - "appliesTo" : [ ] - }, - "YQXXJJ49N744B7HM.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YQXXJJ49N744B7HM.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9583" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YQXXJJ49N744B7HM.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "YQXXJJ49N744B7HM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YQXXJJ49N744B7HM.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "YQXXJJ49N744B7HM.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10896" - }, - "appliesTo" : [ ] - }, - "YQXXJJ49N744B7HM.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "YQXXJJ49N744B7HM.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YQXXJJ49N744B7HM.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "YQXXJJ49N744B7HM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YQXXJJ49N744B7HM.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "YQXXJJ49N744B7HM.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YQXXJJ49N744B7HM.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "YQXXJJ49N744B7HM", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "YQXXJJ49N744B7HM.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "YQXXJJ49N744B7HM.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YQXXJJ49N744B7HM.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "YQXXJJ49N744B7HM.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "48020" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YQXXJJ49N744B7HM.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YQXXJJ49N744B7HM", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "YQXXJJ49N744B7HM.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YQXXJJ49N744B7HM.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18818" - }, - "appliesTo" : [ ] - }, - "YQXXJJ49N744B7HM.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YQXXJJ49N744B7HM.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YQXXJJ49N744B7HM.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YQXXJJ49N744B7HM", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "YQXXJJ49N744B7HM.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YQXXJJ49N744B7HM.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35691" - }, - "appliesTo" : [ ] - }, - "YQXXJJ49N744B7HM.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YQXXJJ49N744B7HM.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YQXXJJ49N744B7HM.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "YQXXJJ49N744B7HM", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "YQXXJJ49N744B7HM.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "YQXXJJ49N744B7HM.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24447" - }, - "appliesTo" : [ ] - }, - "YQXXJJ49N744B7HM.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "YQXXJJ49N744B7HM.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YQXXJJ49N744B7HM.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "YQXXJJ49N744B7HM", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "YQXXJJ49N744B7HM.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "YQXXJJ49N744B7HM.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YQXXJJ49N744B7HM.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "YQXXJJ49N744B7HM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YQXXJJ49N744B7HM.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "YQXXJJ49N744B7HM.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21392" - }, - "appliesTo" : [ ] - }, - "YQXXJJ49N744B7HM.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "YQXXJJ49N744B7HM.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YQXXJJ49N744B7HM.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YQXXJJ49N744B7HM", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "YQXXJJ49N744B7HM.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YQXXJJ49N744B7HM.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YQXXJJ49N744B7HM.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "YQXXJJ49N744B7HM", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "YQXXJJ49N744B7HM.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "YQXXJJ49N744B7HM.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "5KPPP37EUJ6SDK38" : { - "5KPPP37EUJ6SDK38.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "5KPPP37EUJ6SDK38", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5KPPP37EUJ6SDK38.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "5KPPP37EUJ6SDK38.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31530" - }, - "appliesTo" : [ ] - }, - "5KPPP37EUJ6SDK38.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "5KPPP37EUJ6SDK38.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5KPPP37EUJ6SDK38.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "5KPPP37EUJ6SDK38", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5KPPP37EUJ6SDK38.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "5KPPP37EUJ6SDK38.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15786" - }, - "appliesTo" : [ ] - }, - "5KPPP37EUJ6SDK38.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "5KPPP37EUJ6SDK38.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5KPPP37EUJ6SDK38.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "5KPPP37EUJ6SDK38", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5KPPP37EUJ6SDK38.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "5KPPP37EUJ6SDK38.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "92464" - }, - "appliesTo" : [ ] - }, - "5KPPP37EUJ6SDK38.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "5KPPP37EUJ6SDK38.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5KPPP37EUJ6SDK38.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "5KPPP37EUJ6SDK38", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5KPPP37EUJ6SDK38.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "5KPPP37EUJ6SDK38.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5667000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "5KPPP37EUJ6SDK38.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "5KPPP37EUJ6SDK38", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5KPPP37EUJ6SDK38.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "5KPPP37EUJ6SDK38.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "93250" - }, - "appliesTo" : [ ] - }, - "5KPPP37EUJ6SDK38.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "5KPPP37EUJ6SDK38.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "5KPPP37EUJ6SDK38.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "5KPPP37EUJ6SDK38", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5KPPP37EUJ6SDK38.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "5KPPP37EUJ6SDK38.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6158000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "5KPPP37EUJ6SDK38.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "5KPPP37EUJ6SDK38", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5KPPP37EUJ6SDK38.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "5KPPP37EUJ6SDK38.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46673" - }, - "appliesTo" : [ ] - }, - "5KPPP37EUJ6SDK38.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "5KPPP37EUJ6SDK38.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "5KPPP37EUJ6SDK38.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "5KPPP37EUJ6SDK38", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5KPPP37EUJ6SDK38.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "5KPPP37EUJ6SDK38.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46358" - }, - "appliesTo" : [ ] - }, - "5KPPP37EUJ6SDK38.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "5KPPP37EUJ6SDK38.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5KPPP37EUJ6SDK38.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "5KPPP37EUJ6SDK38", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5KPPP37EUJ6SDK38.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "5KPPP37EUJ6SDK38.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "5KPPP37EUJ6SDK38.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "5KPPP37EUJ6SDK38", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5KPPP37EUJ6SDK38.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "5KPPP37EUJ6SDK38.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "5KPPP37EUJ6SDK38.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "5KPPP37EUJ6SDK38.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31834" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "5KPPP37EUJ6SDK38.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "5KPPP37EUJ6SDK38", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5KPPP37EUJ6SDK38.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "5KPPP37EUJ6SDK38.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5408000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "5KPPP37EUJ6SDK38.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "5KPPP37EUJ6SDK38", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5KPPP37EUJ6SDK38.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "5KPPP37EUJ6SDK38.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15941" - }, - "appliesTo" : [ ] - }, - "5KPPP37EUJ6SDK38.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "5KPPP37EUJ6SDK38.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8197000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "RXE37MRXKF33M9T8" : { - "RXE37MRXKF33M9T8.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "RXE37MRXKF33M9T8", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "RXE37MRXKF33M9T8.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "RXE37MRXKF33M9T8.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RXE37MRXKF33M9T8.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "RXE37MRXKF33M9T8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RXE37MRXKF33M9T8.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "RXE37MRXKF33M9T8.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3330000000" - }, - "appliesTo" : [ ] - }, - "RXE37MRXKF33M9T8.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "RXE37MRXKF33M9T8.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2977" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RXE37MRXKF33M9T8.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "RXE37MRXKF33M9T8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RXE37MRXKF33M9T8.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "RXE37MRXKF33M9T8.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RXE37MRXKF33M9T8.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "RXE37MRXKF33M9T8", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RXE37MRXKF33M9T8.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "RXE37MRXKF33M9T8.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "RXE37MRXKF33M9T8.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "RXE37MRXKF33M9T8.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9754" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RXE37MRXKF33M9T8.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "RXE37MRXKF33M9T8", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "RXE37MRXKF33M9T8.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "RXE37MRXKF33M9T8.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8134" - }, - "appliesTo" : [ ] - }, - "RXE37MRXKF33M9T8.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "RXE37MRXKF33M9T8.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RXE37MRXKF33M9T8.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "RXE37MRXKF33M9T8", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "RXE37MRXKF33M9T8.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "RXE37MRXKF33M9T8.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RXE37MRXKF33M9T8.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "RXE37MRXKF33M9T8", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RXE37MRXKF33M9T8.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "RXE37MRXKF33M9T8.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2100000000" - }, - "appliesTo" : [ ] - }, - "RXE37MRXKF33M9T8.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "RXE37MRXKF33M9T8.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4857" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RXE37MRXKF33M9T8.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "RXE37MRXKF33M9T8", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RXE37MRXKF33M9T8.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "RXE37MRXKF33M9T8.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5077" - }, - "appliesTo" : [ ] - }, - "RXE37MRXKF33M9T8.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "RXE37MRXKF33M9T8.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RXE37MRXKF33M9T8.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "RXE37MRXKF33M9T8", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "RXE37MRXKF33M9T8.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "RXE37MRXKF33M9T8.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3062" - }, - "appliesTo" : [ ] - }, - "RXE37MRXKF33M9T8.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "RXE37MRXKF33M9T8.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RXE37MRXKF33M9T8.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "RXE37MRXKF33M9T8", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "RXE37MRXKF33M9T8.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "RXE37MRXKF33M9T8.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13583" - }, - "appliesTo" : [ ] - }, - "RXE37MRXKF33M9T8.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "RXE37MRXKF33M9T8.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RXE37MRXKF33M9T8.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "RXE37MRXKF33M9T8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RXE37MRXKF33M9T8.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "RXE37MRXKF33M9T8.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5781" - }, - "appliesTo" : [ ] - }, - "RXE37MRXKF33M9T8.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "RXE37MRXKF33M9T8.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "QURFZDZRCJFUV9KZ" : { - "QURFZDZRCJFUV9KZ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QURFZDZRCJFUV9KZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QURFZDZRCJFUV9KZ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QURFZDZRCJFUV9KZ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5534" - }, - "appliesTo" : [ ] - }, - "QURFZDZRCJFUV9KZ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QURFZDZRCJFUV9KZ.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QURFZDZRCJFUV9KZ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QURFZDZRCJFUV9KZ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "QURFZDZRCJFUV9KZ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QURFZDZRCJFUV9KZ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QURFZDZRCJFUV9KZ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "QURFZDZRCJFUV9KZ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QURFZDZRCJFUV9KZ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "QURFZDZRCJFUV9KZ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4400000000" - }, - "appliesTo" : [ ] - }, - "QURFZDZRCJFUV9KZ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "QURFZDZRCJFUV9KZ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8132" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QURFZDZRCJFUV9KZ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "QURFZDZRCJFUV9KZ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "QURFZDZRCJFUV9KZ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "QURFZDZRCJFUV9KZ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QURFZDZRCJFUV9KZ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QURFZDZRCJFUV9KZ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "QURFZDZRCJFUV9KZ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QURFZDZRCJFUV9KZ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13601" - }, - "appliesTo" : [ ] - }, - "QURFZDZRCJFUV9KZ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QURFZDZRCJFUV9KZ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QURFZDZRCJFUV9KZ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QURFZDZRCJFUV9KZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QURFZDZRCJFUV9KZ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QURFZDZRCJFUV9KZ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3012" - }, - "appliesTo" : [ ] - }, - "QURFZDZRCJFUV9KZ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QURFZDZRCJFUV9KZ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QURFZDZRCJFUV9KZ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QURFZDZRCJFUV9KZ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "QURFZDZRCJFUV9KZ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QURFZDZRCJFUV9KZ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7021" - }, - "appliesTo" : [ ] - }, - "QURFZDZRCJFUV9KZ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QURFZDZRCJFUV9KZ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QURFZDZRCJFUV9KZ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "QURFZDZRCJFUV9KZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QURFZDZRCJFUV9KZ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "QURFZDZRCJFUV9KZ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7951" - }, - "appliesTo" : [ ] - }, - "QURFZDZRCJFUV9KZ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "QURFZDZRCJFUV9KZ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QURFZDZRCJFUV9KZ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "QURFZDZRCJFUV9KZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QURFZDZRCJFUV9KZ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "QURFZDZRCJFUV9KZ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QURFZDZRCJFUV9KZ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "QURFZDZRCJFUV9KZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QURFZDZRCJFUV9KZ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "QURFZDZRCJFUV9KZ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3476" - }, - "appliesTo" : [ ] - }, - "QURFZDZRCJFUV9KZ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "QURFZDZRCJFUV9KZ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QURFZDZRCJFUV9KZ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "QURFZDZRCJFUV9KZ", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "QURFZDZRCJFUV9KZ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "QURFZDZRCJFUV9KZ.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QURFZDZRCJFUV9KZ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "QURFZDZRCJFUV9KZ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19292" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "GEXPJU4GWZZ6DSTT" : { - "GEXPJU4GWZZ6DSTT.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "GEXPJU4GWZZ6DSTT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GEXPJU4GWZZ6DSTT.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "GEXPJU4GWZZ6DSTT.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "31.6700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "GEXPJU4GWZZ6DSTT.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "GEXPJU4GWZZ6DSTT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GEXPJU4GWZZ6DSTT.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "GEXPJU4GWZZ6DSTT.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "137729" - }, - "appliesTo" : [ ] - }, - "GEXPJU4GWZZ6DSTT.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "GEXPJU4GWZZ6DSTT.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.7230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GEXPJU4GWZZ6DSTT.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "GEXPJU4GWZZ6DSTT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GEXPJU4GWZZ6DSTT.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "GEXPJU4GWZZ6DSTT.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "135158" - }, - "appliesTo" : [ ] - }, - "GEXPJU4GWZZ6DSTT.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "GEXPJU4GWZZ6DSTT.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.4290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GEXPJU4GWZZ6DSTT.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "GEXPJU4GWZZ6DSTT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GEXPJU4GWZZ6DSTT.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "GEXPJU4GWZZ6DSTT.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "31.0540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GEXPJU4GWZZ6DSTT.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "GEXPJU4GWZZ6DSTT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GEXPJU4GWZZ6DSTT.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "GEXPJU4GWZZ6DSTT.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "29.0880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GEXPJU4GWZZ6DSTT.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "GEXPJU4GWZZ6DSTT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GEXPJU4GWZZ6DSTT.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "GEXPJU4GWZZ6DSTT.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "29.4090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "GEXPJU4GWZZ6DSTT.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "GEXPJU4GWZZ6DSTT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GEXPJU4GWZZ6DSTT.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "GEXPJU4GWZZ6DSTT.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.6130000000" - }, - "appliesTo" : [ ] - }, - "GEXPJU4GWZZ6DSTT.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "GEXPJU4GWZZ6DSTT.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "384039" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GEXPJU4GWZZ6DSTT.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "GEXPJU4GWZZ6DSTT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GEXPJU4GWZZ6DSTT.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "GEXPJU4GWZZ6DSTT.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "757124" - }, - "appliesTo" : [ ] - }, - "GEXPJU4GWZZ6DSTT.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "GEXPJU4GWZZ6DSTT.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GEXPJU4GWZZ6DSTT.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "GEXPJU4GWZZ6DSTT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GEXPJU4GWZZ6DSTT.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "GEXPJU4GWZZ6DSTT.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "274670" - }, - "appliesTo" : [ ] - }, - "GEXPJU4GWZZ6DSTT.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "GEXPJU4GWZZ6DSTT.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "GEXPJU4GWZZ6DSTT.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "GEXPJU4GWZZ6DSTT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GEXPJU4GWZZ6DSTT.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "GEXPJU4GWZZ6DSTT.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "766879" - }, - "appliesTo" : [ ] - }, - "GEXPJU4GWZZ6DSTT.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "GEXPJU4GWZZ6DSTT.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "GEXPJU4GWZZ6DSTT.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "GEXPJU4GWZZ6DSTT", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "GEXPJU4GWZZ6DSTT.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "GEXPJU4GWZZ6DSTT.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "269630" - }, - "appliesTo" : [ ] - }, - "GEXPJU4GWZZ6DSTT.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "GEXPJU4GWZZ6DSTT.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GEXPJU4GWZZ6DSTT.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "GEXPJU4GWZZ6DSTT", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "GEXPJU4GWZZ6DSTT.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "GEXPJU4GWZZ6DSTT.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "380127" - }, - "appliesTo" : [ ] - }, - "GEXPJU4GWZZ6DSTT.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "GEXPJU4GWZZ6DSTT.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.4650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "CW2JQMRMB2W7GWB3" : { - "CW2JQMRMB2W7GWB3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "CW2JQMRMB2W7GWB3", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "CW2JQMRMB2W7GWB3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "CW2JQMRMB2W7GWB3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7025" - }, - "appliesTo" : [ ] - }, - "CW2JQMRMB2W7GWB3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "CW2JQMRMB2W7GWB3.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CW2JQMRMB2W7GWB3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "CW2JQMRMB2W7GWB3", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "CW2JQMRMB2W7GWB3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "CW2JQMRMB2W7GWB3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2867" - }, - "appliesTo" : [ ] - }, - "CW2JQMRMB2W7GWB3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "CW2JQMRMB2W7GWB3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CW2JQMRMB2W7GWB3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "CW2JQMRMB2W7GWB3", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "CW2JQMRMB2W7GWB3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "CW2JQMRMB2W7GWB3.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CW2JQMRMB2W7GWB3.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "CW2JQMRMB2W7GWB3", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "CW2JQMRMB2W7GWB3.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "CW2JQMRMB2W7GWB3.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CW2JQMRMB2W7GWB3.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "CW2JQMRMB2W7GWB3", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "CW2JQMRMB2W7GWB3.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "CW2JQMRMB2W7GWB3.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20223" - }, - "appliesTo" : [ ] - }, - "CW2JQMRMB2W7GWB3.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "CW2JQMRMB2W7GWB3.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CW2JQMRMB2W7GWB3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "CW2JQMRMB2W7GWB3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "CW2JQMRMB2W7GWB3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "CW2JQMRMB2W7GWB3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15764" - }, - "appliesTo" : [ ] - }, - "CW2JQMRMB2W7GWB3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "CW2JQMRMB2W7GWB3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CW2JQMRMB2W7GWB3.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "CW2JQMRMB2W7GWB3", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "CW2JQMRMB2W7GWB3.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "CW2JQMRMB2W7GWB3.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4760000000" - }, - "appliesTo" : [ ] - }, - "CW2JQMRMB2W7GWB3.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "CW2JQMRMB2W7GWB3.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8096" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CW2JQMRMB2W7GWB3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "CW2JQMRMB2W7GWB3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "CW2JQMRMB2W7GWB3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "CW2JQMRMB2W7GWB3.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3830000000" - }, - "appliesTo" : [ ] - }, - "CW2JQMRMB2W7GWB3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "CW2JQMRMB2W7GWB3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6705" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CW2JQMRMB2W7GWB3.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "CW2JQMRMB2W7GWB3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CW2JQMRMB2W7GWB3.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "CW2JQMRMB2W7GWB3.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7705" - }, - "appliesTo" : [ ] - }, - "CW2JQMRMB2W7GWB3.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "CW2JQMRMB2W7GWB3.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CW2JQMRMB2W7GWB3.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "CW2JQMRMB2W7GWB3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CW2JQMRMB2W7GWB3.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "CW2JQMRMB2W7GWB3.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3886" - }, - "appliesTo" : [ ] - }, - "CW2JQMRMB2W7GWB3.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "CW2JQMRMB2W7GWB3.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CW2JQMRMB2W7GWB3.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "CW2JQMRMB2W7GWB3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CW2JQMRMB2W7GWB3.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "CW2JQMRMB2W7GWB3.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "PS8T955EH7FMVZUG" : { - "PS8T955EH7FMVZUG.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "PS8T955EH7FMVZUG", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "PS8T955EH7FMVZUG.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "PS8T955EH7FMVZUG.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6799" - }, - "appliesTo" : [ ] - }, - "PS8T955EH7FMVZUG.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "PS8T955EH7FMVZUG.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PS8T955EH7FMVZUG.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "PS8T955EH7FMVZUG", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "PS8T955EH7FMVZUG.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "PS8T955EH7FMVZUG.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4523" - }, - "appliesTo" : [ ] - }, - "PS8T955EH7FMVZUG.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "PS8T955EH7FMVZUG.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PS8T955EH7FMVZUG.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "PS8T955EH7FMVZUG", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "PS8T955EH7FMVZUG.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "PS8T955EH7FMVZUG.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12212" - }, - "appliesTo" : [ ] - }, - "PS8T955EH7FMVZUG.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "PS8T955EH7FMVZUG.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PS8T955EH7FMVZUG.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "PS8T955EH7FMVZUG", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "PS8T955EH7FMVZUG.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "PS8T955EH7FMVZUG.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13486" - }, - "appliesTo" : [ ] - }, - "PS8T955EH7FMVZUG.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "PS8T955EH7FMVZUG.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PS8T955EH7FMVZUG.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "PS8T955EH7FMVZUG", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "PS8T955EH7FMVZUG.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "PS8T955EH7FMVZUG.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "PS8T955EH7FMVZUG.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "PS8T955EH7FMVZUG", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "PS8T955EH7FMVZUG.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "PS8T955EH7FMVZUG.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8636" - }, - "appliesTo" : [ ] - }, - "PS8T955EH7FMVZUG.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "PS8T955EH7FMVZUG.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PS8T955EH7FMVZUG.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "PS8T955EH7FMVZUG", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "PS8T955EH7FMVZUG.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "PS8T955EH7FMVZUG.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "PS8T955EH7FMVZUG.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "PS8T955EH7FMVZUG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PS8T955EH7FMVZUG.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "PS8T955EH7FMVZUG.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3976" - }, - "appliesTo" : [ ] - }, - "PS8T955EH7FMVZUG.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "PS8T955EH7FMVZUG.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PS8T955EH7FMVZUG.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "PS8T955EH7FMVZUG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PS8T955EH7FMVZUG.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "PS8T955EH7FMVZUG.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "PS8T955EH7FMVZUG.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "PS8T955EH7FMVZUG", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "PS8T955EH7FMVZUG.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "PS8T955EH7FMVZUG.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18357" - }, - "appliesTo" : [ ] - }, - "PS8T955EH7FMVZUG.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "PS8T955EH7FMVZUG.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PS8T955EH7FMVZUG.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "PS8T955EH7FMVZUG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PS8T955EH7FMVZUG.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "PS8T955EH7FMVZUG.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "PS8T955EH7FMVZUG.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "PS8T955EH7FMVZUG.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7793" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "DNQP3UURB2QMZNV3" : { - "DNQP3UURB2QMZNV3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "DNQP3UURB2QMZNV3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "DNQP3UURB2QMZNV3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "DNQP3UURB2QMZNV3.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DNQP3UURB2QMZNV3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "DNQP3UURB2QMZNV3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "DNQP3UURB2QMZNV3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "DNQP3UURB2QMZNV3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1501" - }, - "appliesTo" : [ ] - }, - "DNQP3UURB2QMZNV3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "DNQP3UURB2QMZNV3.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DNQP3UURB2QMZNV3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "DNQP3UURB2QMZNV3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "DNQP3UURB2QMZNV3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "DNQP3UURB2QMZNV3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2186" - }, - "appliesTo" : [ ] - }, - "DNQP3UURB2QMZNV3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "DNQP3UURB2QMZNV3.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DNQP3UURB2QMZNV3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "DNQP3UURB2QMZNV3", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "DNQP3UURB2QMZNV3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "DNQP3UURB2QMZNV3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "987" - }, - "appliesTo" : [ ] - }, - "DNQP3UURB2QMZNV3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "DNQP3UURB2QMZNV3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DNQP3UURB2QMZNV3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "DNQP3UURB2QMZNV3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "DNQP3UURB2QMZNV3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "DNQP3UURB2QMZNV3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4548" - }, - "appliesTo" : [ ] - }, - "DNQP3UURB2QMZNV3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "DNQP3UURB2QMZNV3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "WAC5A9V7VNYMBPDR" : { - "WAC5A9V7VNYMBPDR.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "WAC5A9V7VNYMBPDR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WAC5A9V7VNYMBPDR.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "WAC5A9V7VNYMBPDR.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "WAC5A9V7VNYMBPDR.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "WAC5A9V7VNYMBPDR.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31323" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WAC5A9V7VNYMBPDR.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "WAC5A9V7VNYMBPDR", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WAC5A9V7VNYMBPDR.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "WAC5A9V7VNYMBPDR.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "WAC5A9V7VNYMBPDR.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "WAC5A9V7VNYMBPDR", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WAC5A9V7VNYMBPDR.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "WAC5A9V7VNYMBPDR.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "83634" - }, - "appliesTo" : [ ] - }, - "WAC5A9V7VNYMBPDR.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "WAC5A9V7VNYMBPDR.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WAC5A9V7VNYMBPDR.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "WAC5A9V7VNYMBPDR", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WAC5A9V7VNYMBPDR.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "WAC5A9V7VNYMBPDR.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WAC5A9V7VNYMBPDR.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "WAC5A9V7VNYMBPDR", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WAC5A9V7VNYMBPDR.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "WAC5A9V7VNYMBPDR.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "86386" - }, - "appliesTo" : [ ] - }, - "WAC5A9V7VNYMBPDR.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "WAC5A9V7VNYMBPDR.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WAC5A9V7VNYMBPDR.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "WAC5A9V7VNYMBPDR", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WAC5A9V7VNYMBPDR.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "WAC5A9V7VNYMBPDR.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "WAC5A9V7VNYMBPDR.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "WAC5A9V7VNYMBPDR", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WAC5A9V7VNYMBPDR.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "WAC5A9V7VNYMBPDR.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15207" - }, - "appliesTo" : [ ] - }, - "WAC5A9V7VNYMBPDR.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "WAC5A9V7VNYMBPDR.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WAC5A9V7VNYMBPDR.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "WAC5A9V7VNYMBPDR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WAC5A9V7VNYMBPDR.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "WAC5A9V7VNYMBPDR.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WAC5A9V7VNYMBPDR.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "WAC5A9V7VNYMBPDR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WAC5A9V7VNYMBPDR.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "WAC5A9V7VNYMBPDR.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15743" - }, - "appliesTo" : [ ] - }, - "WAC5A9V7VNYMBPDR.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "WAC5A9V7VNYMBPDR.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WAC5A9V7VNYMBPDR.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "WAC5A9V7VNYMBPDR", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WAC5A9V7VNYMBPDR.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "WAC5A9V7VNYMBPDR.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30272" - }, - "appliesTo" : [ ] - }, - "WAC5A9V7VNYMBPDR.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "WAC5A9V7VNYMBPDR.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WAC5A9V7VNYMBPDR.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "WAC5A9V7VNYMBPDR", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WAC5A9V7VNYMBPDR.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "WAC5A9V7VNYMBPDR.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "42258" - }, - "appliesTo" : [ ] - }, - "WAC5A9V7VNYMBPDR.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "WAC5A9V7VNYMBPDR.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WAC5A9V7VNYMBPDR.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "WAC5A9V7VNYMBPDR", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WAC5A9V7VNYMBPDR.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "WAC5A9V7VNYMBPDR.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "43362" - }, - "appliesTo" : [ ] - }, - "WAC5A9V7VNYMBPDR.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "WAC5A9V7VNYMBPDR.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "2G7QY8K5DB7ZC8PD" : { - "2G7QY8K5DB7ZC8PD.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "2G7QY8K5DB7ZC8PD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2G7QY8K5DB7ZC8PD.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "2G7QY8K5DB7ZC8PD.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31778" - }, - "appliesTo" : [ ] - }, - "2G7QY8K5DB7ZC8PD.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "2G7QY8K5DB7ZC8PD.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6276000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2G7QY8K5DB7ZC8PD.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "2G7QY8K5DB7ZC8PD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2G7QY8K5DB7ZC8PD.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "2G7QY8K5DB7ZC8PD.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "63465" - }, - "appliesTo" : [ ] - }, - "2G7QY8K5DB7ZC8PD.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "2G7QY8K5DB7ZC8PD.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2G7QY8K5DB7ZC8PD.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "2G7QY8K5DB7ZC8PD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2G7QY8K5DB7ZC8PD.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "2G7QY8K5DB7ZC8PD.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.1162000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2G7QY8K5DB7ZC8PD.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "2G7QY8K5DB7ZC8PD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2G7QY8K5DB7ZC8PD.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "2G7QY8K5DB7ZC8PD.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "64133" - }, - "appliesTo" : [ ] - }, - "2G7QY8K5DB7ZC8PD.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "2G7QY8K5DB7ZC8PD.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2G7QY8K5DB7ZC8PD.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "2G7QY8K5DB7ZC8PD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2G7QY8K5DB7ZC8PD.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "2G7QY8K5DB7ZC8PD.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3629000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2G7QY8K5DB7ZC8PD.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "2G7QY8K5DB7ZC8PD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2G7QY8K5DB7ZC8PD.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "2G7QY8K5DB7ZC8PD.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32119" - }, - "appliesTo" : [ ] - }, - "2G7QY8K5DB7ZC8PD.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "2G7QY8K5DB7ZC8PD.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6665000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2G7QY8K5DB7ZC8PD.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "2G7QY8K5DB7ZC8PD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2G7QY8K5DB7ZC8PD.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "2G7QY8K5DB7ZC8PD.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "187447" - }, - "appliesTo" : [ ] - }, - "2G7QY8K5DB7ZC8PD.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "2G7QY8K5DB7ZC8PD.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2G7QY8K5DB7ZC8PD.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "2G7QY8K5DB7ZC8PD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2G7QY8K5DB7ZC8PD.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "2G7QY8K5DB7ZC8PD.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "93136" - }, - "appliesTo" : [ ] - }, - "2G7QY8K5DB7ZC8PD.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "2G7QY8K5DB7ZC8PD.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2G7QY8K5DB7ZC8PD.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "2G7QY8K5DB7ZC8PD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2G7QY8K5DB7ZC8PD.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "2G7QY8K5DB7ZC8PD.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.2812000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2G7QY8K5DB7ZC8PD.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "2G7QY8K5DB7ZC8PD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2G7QY8K5DB7ZC8PD.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "2G7QY8K5DB7ZC8PD.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "185718" - }, - "appliesTo" : [ ] - }, - "2G7QY8K5DB7ZC8PD.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "2G7QY8K5DB7ZC8PD.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2G7QY8K5DB7ZC8PD.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "2G7QY8K5DB7ZC8PD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2G7QY8K5DB7ZC8PD.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "2G7QY8K5DB7ZC8PD.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5704000000" - }, - "appliesTo" : [ ] - }, - "2G7QY8K5DB7ZC8PD.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "2G7QY8K5DB7ZC8PD.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "93830" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2G7QY8K5DB7ZC8PD.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "2G7QY8K5DB7ZC8PD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "2G7QY8K5DB7ZC8PD.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "2G7QY8K5DB7ZC8PD.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.1732000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "QSNKQ8P78YXPTAH8" : { - "QSNKQ8P78YXPTAH8.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "QSNKQ8P78YXPTAH8", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "QSNKQ8P78YXPTAH8.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "QSNKQ8P78YXPTAH8.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7668" - }, - "appliesTo" : [ ] - }, - "QSNKQ8P78YXPTAH8.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "QSNKQ8P78YXPTAH8.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QSNKQ8P78YXPTAH8.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "QSNKQ8P78YXPTAH8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QSNKQ8P78YXPTAH8.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "QSNKQ8P78YXPTAH8.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1656" - }, - "appliesTo" : [ ] - }, - "QSNKQ8P78YXPTAH8.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "QSNKQ8P78YXPTAH8.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QSNKQ8P78YXPTAH8.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "QSNKQ8P78YXPTAH8", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "QSNKQ8P78YXPTAH8.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "QSNKQ8P78YXPTAH8.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QSNKQ8P78YXPTAH8.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "QSNKQ8P78YXPTAH8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QSNKQ8P78YXPTAH8.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "QSNKQ8P78YXPTAH8.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QSNKQ8P78YXPTAH8.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QSNKQ8P78YXPTAH8", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QSNKQ8P78YXPTAH8.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QSNKQ8P78YXPTAH8.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5493" - }, - "appliesTo" : [ ] - }, - "QSNKQ8P78YXPTAH8.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QSNKQ8P78YXPTAH8.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QSNKQ8P78YXPTAH8.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QSNKQ8P78YXPTAH8", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QSNKQ8P78YXPTAH8.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QSNKQ8P78YXPTAH8.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2691" - }, - "appliesTo" : [ ] - }, - "QSNKQ8P78YXPTAH8.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QSNKQ8P78YXPTAH8.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QSNKQ8P78YXPTAH8.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "QSNKQ8P78YXPTAH8", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "QSNKQ8P78YXPTAH8.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "QSNKQ8P78YXPTAH8.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4544" - }, - "appliesTo" : [ ] - }, - "QSNKQ8P78YXPTAH8.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "QSNKQ8P78YXPTAH8.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QSNKQ8P78YXPTAH8.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QSNKQ8P78YXPTAH8", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "QSNKQ8P78YXPTAH8.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QSNKQ8P78YXPTAH8.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2840" - }, - "appliesTo" : [ ] - }, - "QSNKQ8P78YXPTAH8.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QSNKQ8P78YXPTAH8.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QSNKQ8P78YXPTAH8.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "QSNKQ8P78YXPTAH8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QSNKQ8P78YXPTAH8.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "QSNKQ8P78YXPTAH8.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3246" - }, - "appliesTo" : [ ] - }, - "QSNKQ8P78YXPTAH8.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "QSNKQ8P78YXPTAH8.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QSNKQ8P78YXPTAH8.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QSNKQ8P78YXPTAH8", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "QSNKQ8P78YXPTAH8.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QSNKQ8P78YXPTAH8.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QSNKQ8P78YXPTAH8.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QSNKQ8P78YXPTAH8", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "QSNKQ8P78YXPTAH8.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QSNKQ8P78YXPTAH8.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1390000000" - }, - "appliesTo" : [ ] - }, - "QSNKQ8P78YXPTAH8.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QSNKQ8P78YXPTAH8.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1683" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "M27XKJYAEY2SPYUU" : { - "M27XKJYAEY2SPYUU.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "M27XKJYAEY2SPYUU", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "M27XKJYAEY2SPYUU.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "M27XKJYAEY2SPYUU.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3450" - }, - "appliesTo" : [ ] - }, - "M27XKJYAEY2SPYUU.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "M27XKJYAEY2SPYUU.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "M27XKJYAEY2SPYUU.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "M27XKJYAEY2SPYUU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M27XKJYAEY2SPYUU.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "M27XKJYAEY2SPYUU.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "M27XKJYAEY2SPYUU.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "M27XKJYAEY2SPYUU.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3560" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "M27XKJYAEY2SPYUU.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "M27XKJYAEY2SPYUU", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "M27XKJYAEY2SPYUU.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "M27XKJYAEY2SPYUU.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "M27XKJYAEY2SPYUU.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "M27XKJYAEY2SPYUU", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "M27XKJYAEY2SPYUU.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "M27XKJYAEY2SPYUU.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2291" - }, - "appliesTo" : [ ] - }, - "M27XKJYAEY2SPYUU.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "M27XKJYAEY2SPYUU.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "M27XKJYAEY2SPYUU.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "M27XKJYAEY2SPYUU", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "M27XKJYAEY2SPYUU.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "M27XKJYAEY2SPYUU.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9840" - }, - "appliesTo" : [ ] - }, - "M27XKJYAEY2SPYUU.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "M27XKJYAEY2SPYUU.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "M27XKJYAEY2SPYUU.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "M27XKJYAEY2SPYUU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M27XKJYAEY2SPYUU.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "M27XKJYAEY2SPYUU.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1800" - }, - "appliesTo" : [ ] - }, - "M27XKJYAEY2SPYUU.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "M27XKJYAEY2SPYUU.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "M27XKJYAEY2SPYUU.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "M27XKJYAEY2SPYUU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "M27XKJYAEY2SPYUU.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "M27XKJYAEY2SPYUU.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "M27XKJYAEY2SPYUU.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "M27XKJYAEY2SPYUU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M27XKJYAEY2SPYUU.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "M27XKJYAEY2SPYUU.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "M27XKJYAEY2SPYUU.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "M27XKJYAEY2SPYUU", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "M27XKJYAEY2SPYUU.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "M27XKJYAEY2SPYUU.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7608" - }, - "appliesTo" : [ ] - }, - "M27XKJYAEY2SPYUU.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "M27XKJYAEY2SPYUU.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "M27XKJYAEY2SPYUU.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "M27XKJYAEY2SPYUU", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "M27XKJYAEY2SPYUU.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "M27XKJYAEY2SPYUU.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4857" - }, - "appliesTo" : [ ] - }, - "M27XKJYAEY2SPYUU.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "M27XKJYAEY2SPYUU.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "M27XKJYAEY2SPYUU.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "M27XKJYAEY2SPYUU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "M27XKJYAEY2SPYUU.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "M27XKJYAEY2SPYUU.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6534" - }, - "appliesTo" : [ ] - }, - "M27XKJYAEY2SPYUU.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "M27XKJYAEY2SPYUU.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "TAUPPUG4Z5RWGJYB" : { - "TAUPPUG4Z5RWGJYB.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TAUPPUG4Z5RWGJYB", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "TAUPPUG4Z5RWGJYB.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TAUPPUG4Z5RWGJYB.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1963" - }, - "appliesTo" : [ ] - }, - "TAUPPUG4Z5RWGJYB.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TAUPPUG4Z5RWGJYB.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TAUPPUG4Z5RWGJYB.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TAUPPUG4Z5RWGJYB", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "TAUPPUG4Z5RWGJYB.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TAUPPUG4Z5RWGJYB.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TAUPPUG4Z5RWGJYB.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "TAUPPUG4Z5RWGJYB", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "TAUPPUG4Z5RWGJYB.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "TAUPPUG4Z5RWGJYB.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5747" - }, - "appliesTo" : [ ] - }, - "TAUPPUG4Z5RWGJYB.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "TAUPPUG4Z5RWGJYB.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TAUPPUG4Z5RWGJYB.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "TAUPPUG4Z5RWGJYB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TAUPPUG4Z5RWGJYB.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "TAUPPUG4Z5RWGJYB.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2297" - }, - "appliesTo" : [ ] - }, - "TAUPPUG4Z5RWGJYB.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "TAUPPUG4Z5RWGJYB.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TAUPPUG4Z5RWGJYB.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "TAUPPUG4Z5RWGJYB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TAUPPUG4Z5RWGJYB.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "TAUPPUG4Z5RWGJYB.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TAUPPUG4Z5RWGJYB.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "TAUPPUG4Z5RWGJYB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TAUPPUG4Z5RWGJYB.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "TAUPPUG4Z5RWGJYB.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "904" - }, - "appliesTo" : [ ] - }, - "TAUPPUG4Z5RWGJYB.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "TAUPPUG4Z5RWGJYB.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TAUPPUG4Z5RWGJYB.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TAUPPUG4Z5RWGJYB", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "TAUPPUG4Z5RWGJYB.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TAUPPUG4Z5RWGJYB.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2070" - }, - "appliesTo" : [ ] - }, - "TAUPPUG4Z5RWGJYB.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TAUPPUG4Z5RWGJYB.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TAUPPUG4Z5RWGJYB.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TAUPPUG4Z5RWGJYB", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "TAUPPUG4Z5RWGJYB.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TAUPPUG4Z5RWGJYB.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1028" - }, - "appliesTo" : [ ] - }, - "TAUPPUG4Z5RWGJYB.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TAUPPUG4Z5RWGJYB.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TAUPPUG4Z5RWGJYB.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TAUPPUG4Z5RWGJYB", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "TAUPPUG4Z5RWGJYB.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TAUPPUG4Z5RWGJYB.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4642" - }, - "appliesTo" : [ ] - }, - "TAUPPUG4Z5RWGJYB.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TAUPPUG4Z5RWGJYB.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TAUPPUG4Z5RWGJYB.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "TAUPPUG4Z5RWGJYB", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "TAUPPUG4Z5RWGJYB.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "TAUPPUG4Z5RWGJYB.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1170000000" - }, - "appliesTo" : [ ] - }, - "TAUPPUG4Z5RWGJYB.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "TAUPPUG4Z5RWGJYB.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2776" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TAUPPUG4Z5RWGJYB.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "TAUPPUG4Z5RWGJYB", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "TAUPPUG4Z5RWGJYB.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "TAUPPUG4Z5RWGJYB.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "YMR9864XJTF2JBSD" : { - "YMR9864XJTF2JBSD.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YMR9864XJTF2JBSD", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YMR9864XJTF2JBSD.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YMR9864XJTF2JBSD.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t1.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YMR9864XJTF2JBSD.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YMR9864XJTF2JBSD", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YMR9864XJTF2JBSD.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YMR9864XJTF2JBSD.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "62" - }, - "appliesTo" : [ ] - }, - "YMR9864XJTF2JBSD.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YMR9864XJTF2JBSD.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t1.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YMR9864XJTF2JBSD.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YMR9864XJTF2JBSD", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "YMR9864XJTF2JBSD.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YMR9864XJTF2JBSD.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "112" - }, - "appliesTo" : [ ] - }, - "YMR9864XJTF2JBSD.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YMR9864XJTF2JBSD.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), t1.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YMR9864XJTF2JBSD.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YMR9864XJTF2JBSD", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YMR9864XJTF2JBSD.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YMR9864XJTF2JBSD.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "267" - }, - "appliesTo" : [ ] - }, - "YMR9864XJTF2JBSD.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YMR9864XJTF2JBSD.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), t1.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YMR9864XJTF2JBSD.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YMR9864XJTF2JBSD", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YMR9864XJTF2JBSD.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YMR9864XJTF2JBSD.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "100" - }, - "appliesTo" : [ ] - }, - "YMR9864XJTF2JBSD.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YMR9864XJTF2JBSD.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t1.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "BZBTYKT6J87853AW" : { - "BZBTYKT6J87853AW.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "BZBTYKT6J87853AW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BZBTYKT6J87853AW.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "BZBTYKT6J87853AW.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1304" - }, - "appliesTo" : [ ] - }, - "BZBTYKT6J87853AW.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "BZBTYKT6J87853AW.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BZBTYKT6J87853AW.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "BZBTYKT6J87853AW", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "BZBTYKT6J87853AW.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "BZBTYKT6J87853AW.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "BZBTYKT6J87853AW.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "BZBTYKT6J87853AW.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3043" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BZBTYKT6J87853AW.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "BZBTYKT6J87853AW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BZBTYKT6J87853AW.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "BZBTYKT6J87853AW.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0970000000" - }, - "appliesTo" : [ ] - }, - "BZBTYKT6J87853AW.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "BZBTYKT6J87853AW.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "694" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BZBTYKT6J87853AW.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "BZBTYKT6J87853AW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BZBTYKT6J87853AW.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "BZBTYKT6J87853AW.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BZBTYKT6J87853AW.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "BZBTYKT6J87853AW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BZBTYKT6J87853AW.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "BZBTYKT6J87853AW.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "446" - }, - "appliesTo" : [ ] - }, - "BZBTYKT6J87853AW.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "BZBTYKT6J87853AW.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "4HTGDWXZE6KRTGSR" : { - "4HTGDWXZE6KRTGSR.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "4HTGDWXZE6KRTGSR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4HTGDWXZE6KRTGSR.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "4HTGDWXZE6KRTGSR.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "4HTGDWXZE6KRTGSR.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "4HTGDWXZE6KRTGSR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4HTGDWXZE6KRTGSR.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "4HTGDWXZE6KRTGSR.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "414" - }, - "appliesTo" : [ ] - }, - "4HTGDWXZE6KRTGSR.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "4HTGDWXZE6KRTGSR.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4HTGDWXZE6KRTGSR.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "4HTGDWXZE6KRTGSR", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "4HTGDWXZE6KRTGSR.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "4HTGDWXZE6KRTGSR.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1239" - }, - "appliesTo" : [ ] - }, - "4HTGDWXZE6KRTGSR.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "4HTGDWXZE6KRTGSR.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4HTGDWXZE6KRTGSR.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "4HTGDWXZE6KRTGSR", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "4HTGDWXZE6KRTGSR.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "4HTGDWXZE6KRTGSR.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "673" - }, - "appliesTo" : [ ] - }, - "4HTGDWXZE6KRTGSR.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "4HTGDWXZE6KRTGSR.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4HTGDWXZE6KRTGSR.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "4HTGDWXZE6KRTGSR", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "4HTGDWXZE6KRTGSR.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "4HTGDWXZE6KRTGSR.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2855" - }, - "appliesTo" : [ ] - }, - "4HTGDWXZE6KRTGSR.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "4HTGDWXZE6KRTGSR.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4HTGDWXZE6KRTGSR.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "4HTGDWXZE6KRTGSR", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "4HTGDWXZE6KRTGSR.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "4HTGDWXZE6KRTGSR.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "4HTGDWXZE6KRTGSR.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "4HTGDWXZE6KRTGSR", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "4HTGDWXZE6KRTGSR.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "4HTGDWXZE6KRTGSR.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0920000000" - }, - "appliesTo" : [ ] - }, - "4HTGDWXZE6KRTGSR.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "4HTGDWXZE6KRTGSR.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1137" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4HTGDWXZE6KRTGSR.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "4HTGDWXZE6KRTGSR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4HTGDWXZE6KRTGSR.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "4HTGDWXZE6KRTGSR.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1337" - }, - "appliesTo" : [ ] - }, - "4HTGDWXZE6KRTGSR.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "4HTGDWXZE6KRTGSR.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4HTGDWXZE6KRTGSR.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "4HTGDWXZE6KRTGSR", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "4HTGDWXZE6KRTGSR.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "4HTGDWXZE6KRTGSR.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3503" - }, - "appliesTo" : [ ] - }, - "4HTGDWXZE6KRTGSR.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "4HTGDWXZE6KRTGSR.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4HTGDWXZE6KRTGSR.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "4HTGDWXZE6KRTGSR", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "4HTGDWXZE6KRTGSR.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "4HTGDWXZE6KRTGSR.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "421" - }, - "appliesTo" : [ ] - }, - "4HTGDWXZE6KRTGSR.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "4HTGDWXZE6KRTGSR.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4HTGDWXZE6KRTGSR.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "4HTGDWXZE6KRTGSR", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "4HTGDWXZE6KRTGSR.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "4HTGDWXZE6KRTGSR.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "BWKDS9539ZWVQSVQ" : { - "BWKDS9539ZWVQSVQ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "BWKDS9539ZWVQSVQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BWKDS9539ZWVQSVQ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "BWKDS9539ZWVQSVQ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1029" - }, - "appliesTo" : [ ] - }, - "BWKDS9539ZWVQSVQ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "BWKDS9539ZWVQSVQ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BWKDS9539ZWVQSVQ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "BWKDS9539ZWVQSVQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BWKDS9539ZWVQSVQ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "BWKDS9539ZWVQSVQ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BWKDS9539ZWVQSVQ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "BWKDS9539ZWVQSVQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BWKDS9539ZWVQSVQ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "BWKDS9539ZWVQSVQ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "BWKDS9539ZWVQSVQ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "BWKDS9539ZWVQSVQ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2392" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BWKDS9539ZWVQSVQ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "BWKDS9539ZWVQSVQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BWKDS9539ZWVQSVQ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "BWKDS9539ZWVQSVQ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2555" - }, - "appliesTo" : [ ] - }, - "BWKDS9539ZWVQSVQ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "BWKDS9539ZWVQSVQ.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BWKDS9539ZWVQSVQ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "BWKDS9539ZWVQSVQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BWKDS9539ZWVQSVQ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "BWKDS9539ZWVQSVQ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "433" - }, - "appliesTo" : [ ] - }, - "BWKDS9539ZWVQSVQ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "BWKDS9539ZWVQSVQ.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BWKDS9539ZWVQSVQ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "BWKDS9539ZWVQSVQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BWKDS9539ZWVQSVQ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "BWKDS9539ZWVQSVQ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0860000000" - }, - "appliesTo" : [ ] - }, - "BWKDS9539ZWVQSVQ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "BWKDS9539ZWVQSVQ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "223" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BWKDS9539ZWVQSVQ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "BWKDS9539ZWVQSVQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BWKDS9539ZWVQSVQ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "BWKDS9539ZWVQSVQ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "499" - }, - "appliesTo" : [ ] - }, - "BWKDS9539ZWVQSVQ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "BWKDS9539ZWVQSVQ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BWKDS9539ZWVQSVQ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "BWKDS9539ZWVQSVQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BWKDS9539ZWVQSVQ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "BWKDS9539ZWVQSVQ.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "BWKDS9539ZWVQSVQ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "BWKDS9539ZWVQSVQ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "963" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BWKDS9539ZWVQSVQ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "BWKDS9539ZWVQSVQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BWKDS9539ZWVQSVQ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "BWKDS9539ZWVQSVQ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BWKDS9539ZWVQSVQ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "BWKDS9539ZWVQSVQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BWKDS9539ZWVQSVQ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "BWKDS9539ZWVQSVQ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BWKDS9539ZWVQSVQ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "BWKDS9539ZWVQSVQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BWKDS9539ZWVQSVQ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "BWKDS9539ZWVQSVQ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0890000000" - }, - "appliesTo" : [ ] - }, - "BWKDS9539ZWVQSVQ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "BWKDS9539ZWVQSVQ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "257" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BWKDS9539ZWVQSVQ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "BWKDS9539ZWVQSVQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BWKDS9539ZWVQSVQ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "BWKDS9539ZWVQSVQ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "Q65EXUN6VVKKRUQ6" : { - "Q65EXUN6VVKKRUQ6.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Q65EXUN6VVKKRUQ6", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Q65EXUN6VVKKRUQ6.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Q65EXUN6VVKKRUQ6.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6997" - }, - "appliesTo" : [ ] - }, - "Q65EXUN6VVKKRUQ6.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Q65EXUN6VVKKRUQ6.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Q65EXUN6VVKKRUQ6.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "Q65EXUN6VVKKRUQ6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q65EXUN6VVKKRUQ6.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "Q65EXUN6VVKKRUQ6.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8047" - }, - "appliesTo" : [ ] - }, - "Q65EXUN6VVKKRUQ6.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "Q65EXUN6VVKKRUQ6.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Q65EXUN6VVKKRUQ6.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "Q65EXUN6VVKKRUQ6", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Q65EXUN6VVKKRUQ6.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "Q65EXUN6VVKKRUQ6.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8942" - }, - "appliesTo" : [ ] - }, - "Q65EXUN6VVKKRUQ6.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "Q65EXUN6VVKKRUQ6.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3403000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q65EXUN6VVKKRUQ6.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Q65EXUN6VVKKRUQ6", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Q65EXUN6VVKKRUQ6.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Q65EXUN6VVKKRUQ6.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3570" - }, - "appliesTo" : [ ] - }, - "Q65EXUN6VVKKRUQ6.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Q65EXUN6VVKKRUQ6.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4076000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q65EXUN6VVKKRUQ6.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "Q65EXUN6VVKKRUQ6", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Q65EXUN6VVKKRUQ6.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "Q65EXUN6VVKKRUQ6.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17527" - }, - "appliesTo" : [ ] - }, - "Q65EXUN6VVKKRUQ6.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "Q65EXUN6VVKKRUQ6.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Q65EXUN6VVKKRUQ6.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "Q65EXUN6VVKKRUQ6", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Q65EXUN6VVKKRUQ6.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "Q65EXUN6VVKKRUQ6.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6391000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Q65EXUN6VVKKRUQ6.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "Q65EXUN6VVKKRUQ6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q65EXUN6VVKKRUQ6.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "Q65EXUN6VVKKRUQ6.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9842000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Q65EXUN6VVKKRUQ6.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "Q65EXUN6VVKKRUQ6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q65EXUN6VVKKRUQ6.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "Q65EXUN6VVKKRUQ6.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4106" - }, - "appliesTo" : [ ] - }, - "Q65EXUN6VVKKRUQ6.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "Q65EXUN6VVKKRUQ6.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4687000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q65EXUN6VVKKRUQ6.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Q65EXUN6VVKKRUQ6", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Q65EXUN6VVKKRUQ6.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Q65EXUN6VVKKRUQ6.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8559000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Q65EXUN6VVKKRUQ6.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Q65EXUN6VVKKRUQ6", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Q65EXUN6VVKKRUQ6.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Q65EXUN6VVKKRUQ6.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2959000000" - }, - "appliesTo" : [ ] - }, - "Q65EXUN6VVKKRUQ6.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Q65EXUN6VVKKRUQ6.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7776" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q65EXUN6VVKKRUQ6.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Q65EXUN6VVKKRUQ6", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Q65EXUN6VVKKRUQ6.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Q65EXUN6VVKKRUQ6.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "Q65EXUN6VVKKRUQ6.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Q65EXUN6VVKKRUQ6.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14618" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Q65EXUN6VVKKRUQ6.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "Q65EXUN6VVKKRUQ6", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Q65EXUN6VVKKRUQ6.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "Q65EXUN6VVKKRUQ6.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "NE4JZMMMGJZH869R" : { - "NE4JZMMMGJZH869R.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "NE4JZMMMGJZH869R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NE4JZMMMGJZH869R.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "NE4JZMMMGJZH869R.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "NE4JZMMMGJZH869R.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "NE4JZMMMGJZH869R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NE4JZMMMGJZH869R.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "NE4JZMMMGJZH869R.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0510000000" - }, - "appliesTo" : [ ] - }, - "NE4JZMMMGJZH869R.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "NE4JZMMMGJZH869R.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "447" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "NE4JZMMMGJZH869R.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "NE4JZMMMGJZH869R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NE4JZMMMGJZH869R.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "NE4JZMMMGJZH869R.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "NE4JZMMMGJZH869R.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "NE4JZMMMGJZH869R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NE4JZMMMGJZH869R.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "NE4JZMMMGJZH869R.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1629" - }, - "appliesTo" : [ ] - }, - "NE4JZMMMGJZH869R.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "NE4JZMMMGJZH869R.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "NE4JZMMMGJZH869R.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "NE4JZMMMGJZH869R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NE4JZMMMGJZH869R.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "NE4JZMMMGJZH869R.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "867" - }, - "appliesTo" : [ ] - }, - "NE4JZMMMGJZH869R.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "NE4JZMMMGJZH869R.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "NE4JZMMMGJZH869R.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "NE4JZMMMGJZH869R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NE4JZMMMGJZH869R.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "NE4JZMMMGJZH869R.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "876" - }, - "appliesTo" : [ ] - }, - "NE4JZMMMGJZH869R.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "NE4JZMMMGJZH869R.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "CNBCS3T6ZYW47Y8W" : { - "CNBCS3T6ZYW47Y8W.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "CNBCS3T6ZYW47Y8W", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CNBCS3T6ZYW47Y8W.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "CNBCS3T6ZYW47Y8W.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28146" - }, - "appliesTo" : [ ] - }, - "CNBCS3T6ZYW47Y8W.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "CNBCS3T6ZYW47Y8W.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CNBCS3T6ZYW47Y8W.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "CNBCS3T6ZYW47Y8W", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CNBCS3T6ZYW47Y8W.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "CNBCS3T6ZYW47Y8W.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "CNBCS3T6ZYW47Y8W.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "CNBCS3T6ZYW47Y8W.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32514" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CNBCS3T6ZYW47Y8W.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "CNBCS3T6ZYW47Y8W", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CNBCS3T6ZYW47Y8W.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "CNBCS3T6ZYW47Y8W.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CNBCS3T6ZYW47Y8W.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "CNBCS3T6ZYW47Y8W", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CNBCS3T6ZYW47Y8W.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "CNBCS3T6ZYW47Y8W.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "67038" - }, - "appliesTo" : [ ] - }, - "CNBCS3T6ZYW47Y8W.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "CNBCS3T6ZYW47Y8W.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CNBCS3T6ZYW47Y8W.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "CNBCS3T6ZYW47Y8W", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CNBCS3T6ZYW47Y8W.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "CNBCS3T6ZYW47Y8W.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CNBCS3T6ZYW47Y8W.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "CNBCS3T6ZYW47Y8W", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "CNBCS3T6ZYW47Y8W.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "CNBCS3T6ZYW47Y8W.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14388" - }, - "appliesTo" : [ ] - }, - "CNBCS3T6ZYW47Y8W.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "CNBCS3T6ZYW47Y8W.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CNBCS3T6ZYW47Y8W.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "CNBCS3T6ZYW47Y8W", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CNBCS3T6ZYW47Y8W.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "CNBCS3T6ZYW47Y8W.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16617" - }, - "appliesTo" : [ ] - }, - "CNBCS3T6ZYW47Y8W.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "CNBCS3T6ZYW47Y8W.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CNBCS3T6ZYW47Y8W.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "CNBCS3T6ZYW47Y8W", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CNBCS3T6ZYW47Y8W.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "CNBCS3T6ZYW47Y8W.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CNBCS3T6ZYW47Y8W.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "CNBCS3T6ZYW47Y8W", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CNBCS3T6ZYW47Y8W.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "CNBCS3T6ZYW47Y8W.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CNBCS3T6ZYW47Y8W.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "CNBCS3T6ZYW47Y8W", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CNBCS3T6ZYW47Y8W.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "CNBCS3T6ZYW47Y8W.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "56187" - }, - "appliesTo" : [ ] - }, - "CNBCS3T6ZYW47Y8W.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "CNBCS3T6ZYW47Y8W.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CNBCS3T6ZYW47Y8W.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "CNBCS3T6ZYW47Y8W", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CNBCS3T6ZYW47Y8W.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "CNBCS3T6ZYW47Y8W.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34201" - }, - "appliesTo" : [ ] - }, - "CNBCS3T6ZYW47Y8W.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "CNBCS3T6ZYW47Y8W.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CNBCS3T6ZYW47Y8W.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "CNBCS3T6ZYW47Y8W", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "CNBCS3T6ZYW47Y8W.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "CNBCS3T6ZYW47Y8W.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29870" - }, - "appliesTo" : [ ] - }, - "CNBCS3T6ZYW47Y8W.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "CNBCS3T6ZYW47Y8W.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "H48ZRU3X7FXGTGQM" : { - "H48ZRU3X7FXGTGQM.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "H48ZRU3X7FXGTGQM", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "H48ZRU3X7FXGTGQM.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "H48ZRU3X7FXGTGQM.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "542" - }, - "appliesTo" : [ ] - }, - "H48ZRU3X7FXGTGQM.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "H48ZRU3X7FXGTGQM.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "H48ZRU3X7FXGTGQM.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "H48ZRU3X7FXGTGQM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H48ZRU3X7FXGTGQM.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "H48ZRU3X7FXGTGQM.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "H48ZRU3X7FXGTGQM.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "H48ZRU3X7FXGTGQM.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "624" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "H48ZRU3X7FXGTGQM.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "H48ZRU3X7FXGTGQM", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "H48ZRU3X7FXGTGQM.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "H48ZRU3X7FXGTGQM.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1463" - }, - "appliesTo" : [ ] - }, - "H48ZRU3X7FXGTGQM.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "H48ZRU3X7FXGTGQM.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "H48ZRU3X7FXGTGQM.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "H48ZRU3X7FXGTGQM", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "H48ZRU3X7FXGTGQM.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "H48ZRU3X7FXGTGQM.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "H48ZRU3X7FXGTGQM.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "H48ZRU3X7FXGTGQM", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "H48ZRU3X7FXGTGQM.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "H48ZRU3X7FXGTGQM.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "326" - }, - "appliesTo" : [ ] - }, - "H48ZRU3X7FXGTGQM.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "H48ZRU3X7FXGTGQM.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "H48ZRU3X7FXGTGQM.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "H48ZRU3X7FXGTGQM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H48ZRU3X7FXGTGQM.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "H48ZRU3X7FXGTGQM.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "318" - }, - "appliesTo" : [ ] - }, - "H48ZRU3X7FXGTGQM.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "H48ZRU3X7FXGTGQM.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "H48ZRU3X7FXGTGQM.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "H48ZRU3X7FXGTGQM", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "H48ZRU3X7FXGTGQM.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "H48ZRU3X7FXGTGQM.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "H48ZRU3X7FXGTGQM.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "H48ZRU3X7FXGTGQM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H48ZRU3X7FXGTGQM.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "H48ZRU3X7FXGTGQM.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "H48ZRU3X7FXGTGQM.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "H48ZRU3X7FXGTGQM", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "H48ZRU3X7FXGTGQM.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "H48ZRU3X7FXGTGQM.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1020" - }, - "appliesTo" : [ ] - }, - "H48ZRU3X7FXGTGQM.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "H48ZRU3X7FXGTGQM.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "H48ZRU3X7FXGTGQM.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "H48ZRU3X7FXGTGQM", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "H48ZRU3X7FXGTGQM.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "H48ZRU3X7FXGTGQM.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "880" - }, - "appliesTo" : [ ] - }, - "H48ZRU3X7FXGTGQM.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "H48ZRU3X7FXGTGQM.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "H48ZRU3X7FXGTGQM.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "H48ZRU3X7FXGTGQM", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "H48ZRU3X7FXGTGQM.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "H48ZRU3X7FXGTGQM.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "508" - }, - "appliesTo" : [ ] - }, - "H48ZRU3X7FXGTGQM.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "H48ZRU3X7FXGTGQM.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "P4TPDGNQH5SAQPSP" : { - "P4TPDGNQH5SAQPSP.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "P4TPDGNQH5SAQPSP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P4TPDGNQH5SAQPSP.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "P4TPDGNQH5SAQPSP.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11107" - }, - "appliesTo" : [ ] - }, - "P4TPDGNQH5SAQPSP.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "P4TPDGNQH5SAQPSP.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "P4TPDGNQH5SAQPSP.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "P4TPDGNQH5SAQPSP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "P4TPDGNQH5SAQPSP.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "P4TPDGNQH5SAQPSP.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25725" - }, - "appliesTo" : [ ] - }, - "P4TPDGNQH5SAQPSP.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "P4TPDGNQH5SAQPSP.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "P4TPDGNQH5SAQPSP.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "P4TPDGNQH5SAQPSP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "P4TPDGNQH5SAQPSP.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "P4TPDGNQH5SAQPSP.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1334000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "P4TPDGNQH5SAQPSP.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "P4TPDGNQH5SAQPSP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "P4TPDGNQH5SAQPSP.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "P4TPDGNQH5SAQPSP.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10499" - }, - "appliesTo" : [ ] - }, - "P4TPDGNQH5SAQPSP.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "P4TPDGNQH5SAQPSP.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "P4TPDGNQH5SAQPSP.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "P4TPDGNQH5SAQPSP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "P4TPDGNQH5SAQPSP.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "P4TPDGNQH5SAQPSP.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0816000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "P4TPDGNQH5SAQPSP.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "P4TPDGNQH5SAQPSP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "P4TPDGNQH5SAQPSP.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "P4TPDGNQH5SAQPSP.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28820" - }, - "appliesTo" : [ ] - }, - "P4TPDGNQH5SAQPSP.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "P4TPDGNQH5SAQPSP.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "P4TPDGNQH5SAQPSP.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "P4TPDGNQH5SAQPSP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "P4TPDGNQH5SAQPSP.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "P4TPDGNQH5SAQPSP.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5291" - }, - "appliesTo" : [ ] - }, - "P4TPDGNQH5SAQPSP.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "P4TPDGNQH5SAQPSP.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "P4TPDGNQH5SAQPSP.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "P4TPDGNQH5SAQPSP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "P4TPDGNQH5SAQPSP.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "P4TPDGNQH5SAQPSP.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2316000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "P4TPDGNQH5SAQPSP.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "P4TPDGNQH5SAQPSP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P4TPDGNQH5SAQPSP.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "P4TPDGNQH5SAQPSP.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5601" - }, - "appliesTo" : [ ] - }, - "P4TPDGNQH5SAQPSP.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "P4TPDGNQH5SAQPSP.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6394000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "P4TPDGNQH5SAQPSP.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "P4TPDGNQH5SAQPSP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P4TPDGNQH5SAQPSP.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "P4TPDGNQH5SAQPSP.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3059000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "P4TPDGNQH5SAQPSP.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "P4TPDGNQH5SAQPSP", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "P4TPDGNQH5SAQPSP.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "P4TPDGNQH5SAQPSP.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5210000000" - }, - "appliesTo" : [ ] - }, - "P4TPDGNQH5SAQPSP.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "P4TPDGNQH5SAQPSP.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13684" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "P4TPDGNQH5SAQPSP.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "P4TPDGNQH5SAQPSP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "P4TPDGNQH5SAQPSP.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "P4TPDGNQH5SAQPSP.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14507" - }, - "appliesTo" : [ ] - }, - "P4TPDGNQH5SAQPSP.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "P4TPDGNQH5SAQPSP.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "JF9QHW5XYZ9MK42R" : { - "JF9QHW5XYZ9MK42R.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "JF9QHW5XYZ9MK42R", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "JF9QHW5XYZ9MK42R.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "JF9QHW5XYZ9MK42R.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "114975" - }, - "appliesTo" : [ ] - }, - "JF9QHW5XYZ9MK42R.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "JF9QHW5XYZ9MK42R.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JF9QHW5XYZ9MK42R.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "JF9QHW5XYZ9MK42R", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JF9QHW5XYZ9MK42R.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "JF9QHW5XYZ9MK42R.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "55037" - }, - "appliesTo" : [ ] - }, - "JF9QHW5XYZ9MK42R.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "JF9QHW5XYZ9MK42R.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "JF9QHW5XYZ9MK42R.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "JF9QHW5XYZ9MK42R", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JF9QHW5XYZ9MK42R.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "JF9QHW5XYZ9MK42R.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "44592" - }, - "appliesTo" : [ ] - }, - "JF9QHW5XYZ9MK42R.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "JF9QHW5XYZ9MK42R.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JF9QHW5XYZ9MK42R.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "JF9QHW5XYZ9MK42R", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "JF9QHW5XYZ9MK42R.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "JF9QHW5XYZ9MK42R.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25967" - }, - "appliesTo" : [ ] - }, - "JF9QHW5XYZ9MK42R.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "JF9QHW5XYZ9MK42R.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "JF9QHW5XYZ9MK42R.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "JF9QHW5XYZ9MK42R", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "JF9QHW5XYZ9MK42R.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "JF9QHW5XYZ9MK42R.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.0770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "5CS4EJVK2TSXGHNX" : { - "5CS4EJVK2TSXGHNX.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "5CS4EJVK2TSXGHNX", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "5CS4EJVK2TSXGHNX.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "5CS4EJVK2TSXGHNX.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34285" - }, - "appliesTo" : [ ] - }, - "5CS4EJVK2TSXGHNX.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "5CS4EJVK2TSXGHNX.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.0440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5CS4EJVK2TSXGHNX.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "5CS4EJVK2TSXGHNX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5CS4EJVK2TSXGHNX.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "5CS4EJVK2TSXGHNX.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "5CS4EJVK2TSXGHNX.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "5CS4EJVK2TSXGHNX.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "78420" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "5CS4EJVK2TSXGHNX.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "5CS4EJVK2TSXGHNX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5CS4EJVK2TSXGHNX.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "5CS4EJVK2TSXGHNX.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "120997" - }, - "appliesTo" : [ ] - }, - "5CS4EJVK2TSXGHNX.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "5CS4EJVK2TSXGHNX.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "5CS4EJVK2TSXGHNX.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "5CS4EJVK2TSXGHNX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5CS4EJVK2TSXGHNX.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "5CS4EJVK2TSXGHNX.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.4180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "5CS4EJVK2TSXGHNX.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "5CS4EJVK2TSXGHNX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5CS4EJVK2TSXGHNX.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "5CS4EJVK2TSXGHNX.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.3490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "5CS4EJVK2TSXGHNX.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "5CS4EJVK2TSXGHNX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5CS4EJVK2TSXGHNX.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "5CS4EJVK2TSXGHNX.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39429" - }, - "appliesTo" : [ ] - }, - "5CS4EJVK2TSXGHNX.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "5CS4EJVK2TSXGHNX.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.6310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "5CS4EJVK2TSXGHNX.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "5CS4EJVK2TSXGHNX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5CS4EJVK2TSXGHNX.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "5CS4EJVK2TSXGHNX.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.5820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "5CS4EJVK2TSXGHNX.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "5CS4EJVK2TSXGHNX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5CS4EJVK2TSXGHNX.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "5CS4EJVK2TSXGHNX.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.0610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "5CS4EJVK2TSXGHNX.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "5CS4EJVK2TSXGHNX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5CS4EJVK2TSXGHNX.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "5CS4EJVK2TSXGHNX.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "59990" - }, - "appliesTo" : [ ] - }, - "5CS4EJVK2TSXGHNX.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "5CS4EJVK2TSXGHNX.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "5CS4EJVK2TSXGHNX.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "5CS4EJVK2TSXGHNX", - "effectiveDate" : "2016-06-30T23:59:59Z", - "priceDimensions" : { - "5CS4EJVK2TSXGHNX.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "5CS4EJVK2TSXGHNX.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "52166" - }, - "appliesTo" : [ ] - }, - "5CS4EJVK2TSXGHNX.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "5CS4EJVK2TSXGHNX.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5CS4EJVK2TSXGHNX.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "5CS4EJVK2TSXGHNX", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "5CS4EJVK2TSXGHNX.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "5CS4EJVK2TSXGHNX.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "68338" - }, - "appliesTo" : [ ] - }, - "5CS4EJVK2TSXGHNX.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "5CS4EJVK2TSXGHNX.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5CS4EJVK2TSXGHNX.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "5CS4EJVK2TSXGHNX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5CS4EJVK2TSXGHNX.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "5CS4EJVK2TSXGHNX.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "101488" - }, - "appliesTo" : [ ] - }, - "5CS4EJVK2TSXGHNX.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "5CS4EJVK2TSXGHNX.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "MC5VZN6RJJJRB2CW" : { - "MC5VZN6RJJJRB2CW.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "MC5VZN6RJJJRB2CW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MC5VZN6RJJJRB2CW.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "MC5VZN6RJJJRB2CW.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "MC5VZN6RJJJRB2CW.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "MC5VZN6RJJJRB2CW.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8274" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MC5VZN6RJJJRB2CW.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "MC5VZN6RJJJRB2CW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MC5VZN6RJJJRB2CW.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "MC5VZN6RJJJRB2CW.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5176" - }, - "appliesTo" : [ ] - }, - "MC5VZN6RJJJRB2CW.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "MC5VZN6RJJJRB2CW.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MC5VZN6RJJJRB2CW.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "MC5VZN6RJJJRB2CW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MC5VZN6RJJJRB2CW.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "MC5VZN6RJJJRB2CW.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MC5VZN6RJJJRB2CW.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "MC5VZN6RJJJRB2CW", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "MC5VZN6RJJJRB2CW.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "MC5VZN6RJJJRB2CW.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "MC5VZN6RJJJRB2CW.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "MC5VZN6RJJJRB2CW.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16754" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MC5VZN6RJJJRB2CW.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "MC5VZN6RJJJRB2CW", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "MC5VZN6RJJJRB2CW.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "MC5VZN6RJJJRB2CW.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8022" - }, - "appliesTo" : [ ] - }, - "MC5VZN6RJJJRB2CW.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "MC5VZN6RJJJRB2CW.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "V7TY6J97RFNXWD8V" : { - "V7TY6J97RFNXWD8V.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "V7TY6J97RFNXWD8V", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "V7TY6J97RFNXWD8V.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "V7TY6J97RFNXWD8V.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8712" - }, - "appliesTo" : [ ] - }, - "V7TY6J97RFNXWD8V.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "V7TY6J97RFNXWD8V.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "V7TY6J97RFNXWD8V.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "V7TY6J97RFNXWD8V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V7TY6J97RFNXWD8V.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "V7TY6J97RFNXWD8V.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10025" - }, - "appliesTo" : [ ] - }, - "V7TY6J97RFNXWD8V.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "V7TY6J97RFNXWD8V.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "V7TY6J97RFNXWD8V.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "V7TY6J97RFNXWD8V", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "V7TY6J97RFNXWD8V.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "V7TY6J97RFNXWD8V.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "V7TY6J97RFNXWD8V.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "V7TY6J97RFNXWD8V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V7TY6J97RFNXWD8V.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "V7TY6J97RFNXWD8V.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "V7TY6J97RFNXWD8V.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "V7TY6J97RFNXWD8V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V7TY6J97RFNXWD8V.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "V7TY6J97RFNXWD8V.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "V7TY6J97RFNXWD8V.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "V7TY6J97RFNXWD8V.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20788" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "V7TY6J97RFNXWD8V.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "V7TY6J97RFNXWD8V", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "V7TY6J97RFNXWD8V.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "V7TY6J97RFNXWD8V.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "V7TY6J97RFNXWD8V.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "V7TY6J97RFNXWD8V", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "V7TY6J97RFNXWD8V.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "V7TY6J97RFNXWD8V.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16204" - }, - "appliesTo" : [ ] - }, - "V7TY6J97RFNXWD8V.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "V7TY6J97RFNXWD8V.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "V7TY6J97RFNXWD8V.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "V7TY6J97RFNXWD8V", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "V7TY6J97RFNXWD8V.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "V7TY6J97RFNXWD8V.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "V7TY6J97RFNXWD8V.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "V7TY6J97RFNXWD8V.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46209" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "V7TY6J97RFNXWD8V.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "V7TY6J97RFNXWD8V", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "V7TY6J97RFNXWD8V.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "V7TY6J97RFNXWD8V.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9610000000" - }, - "appliesTo" : [ ] - }, - "V7TY6J97RFNXWD8V.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "V7TY6J97RFNXWD8V.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21833" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "V7TY6J97RFNXWD8V.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "V7TY6J97RFNXWD8V", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "V7TY6J97RFNXWD8V.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "V7TY6J97RFNXWD8V.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18214" - }, - "appliesTo" : [ ] - }, - "V7TY6J97RFNXWD8V.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "V7TY6J97RFNXWD8V.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "V7TY6J97RFNXWD8V.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "V7TY6J97RFNXWD8V", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "V7TY6J97RFNXWD8V.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "V7TY6J97RFNXWD8V.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "V7TY6J97RFNXWD8V.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "V7TY6J97RFNXWD8V", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "V7TY6J97RFNXWD8V.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "V7TY6J97RFNXWD8V.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33880" - }, - "appliesTo" : [ ] - }, - "V7TY6J97RFNXWD8V.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "V7TY6J97RFNXWD8V.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "62VQZ6W2YK7P5N9B" : { - "62VQZ6W2YK7P5N9B.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "62VQZ6W2YK7P5N9B", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "62VQZ6W2YK7P5N9B.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "62VQZ6W2YK7P5N9B.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23130" - }, - "appliesTo" : [ ] - }, - "62VQZ6W2YK7P5N9B.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "62VQZ6W2YK7P5N9B.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "62VQZ6W2YK7P5N9B.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "62VQZ6W2YK7P5N9B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "62VQZ6W2YK7P5N9B.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "62VQZ6W2YK7P5N9B.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "62VQZ6W2YK7P5N9B.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "62VQZ6W2YK7P5N9B.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29538" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "62VQZ6W2YK7P5N9B.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "62VQZ6W2YK7P5N9B", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "62VQZ6W2YK7P5N9B.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "62VQZ6W2YK7P5N9B.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11799" - }, - "appliesTo" : [ ] - }, - "62VQZ6W2YK7P5N9B.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "62VQZ6W2YK7P5N9B.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "62VQZ6W2YK7P5N9B.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "62VQZ6W2YK7P5N9B", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "62VQZ6W2YK7P5N9B.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "62VQZ6W2YK7P5N9B.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "62VQZ6W2YK7P5N9B.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "62VQZ6W2YK7P5N9B", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "62VQZ6W2YK7P5N9B.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "62VQZ6W2YK7P5N9B.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28448" - }, - "appliesTo" : [ ] - }, - "62VQZ6W2YK7P5N9B.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "62VQZ6W2YK7P5N9B.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "62VQZ6W2YK7P5N9B.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "62VQZ6W2YK7P5N9B", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "62VQZ6W2YK7P5N9B.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "62VQZ6W2YK7P5N9B.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "62VQZ6W2YK7P5N9B.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "62VQZ6W2YK7P5N9B.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "66626" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "62VQZ6W2YK7P5N9B.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "62VQZ6W2YK7P5N9B", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "62VQZ6W2YK7P5N9B.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "62VQZ6W2YK7P5N9B.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "53485" - }, - "appliesTo" : [ ] - }, - "62VQZ6W2YK7P5N9B.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "62VQZ6W2YK7P5N9B.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "62VQZ6W2YK7P5N9B.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "62VQZ6W2YK7P5N9B", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "62VQZ6W2YK7P5N9B.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "62VQZ6W2YK7P5N9B.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "62VQZ6W2YK7P5N9B.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "62VQZ6W2YK7P5N9B", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "62VQZ6W2YK7P5N9B.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "62VQZ6W2YK7P5N9B.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "62VQZ6W2YK7P5N9B.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "62VQZ6W2YK7P5N9B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "62VQZ6W2YK7P5N9B.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "62VQZ6W2YK7P5N9B.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6970000000" - }, - "appliesTo" : [ ] - }, - "62VQZ6W2YK7P5N9B.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "62VQZ6W2YK7P5N9B.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14866" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "62VQZ6W2YK7P5N9B.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "62VQZ6W2YK7P5N9B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "62VQZ6W2YK7P5N9B.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "62VQZ6W2YK7P5N9B.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "62VQZ6W2YK7P5N9B.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "62VQZ6W2YK7P5N9B", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "62VQZ6W2YK7P5N9B.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "62VQZ6W2YK7P5N9B.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33980" - }, - "appliesTo" : [ ] - }, - "62VQZ6W2YK7P5N9B.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "62VQZ6W2YK7P5N9B.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "H9V234B3K9QAR4NJ" : { - "H9V234B3K9QAR4NJ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "H9V234B3K9QAR4NJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "H9V234B3K9QAR4NJ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "H9V234B3K9QAR4NJ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3624" - }, - "appliesTo" : [ ] - }, - "H9V234B3K9QAR4NJ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "H9V234B3K9QAR4NJ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "H9V234B3K9QAR4NJ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "H9V234B3K9QAR4NJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "H9V234B3K9QAR4NJ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "H9V234B3K9QAR4NJ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "H9V234B3K9QAR4NJ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "H9V234B3K9QAR4NJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H9V234B3K9QAR4NJ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "H9V234B3K9QAR4NJ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "H9V234B3K9QAR4NJ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "H9V234B3K9QAR4NJ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7965" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "H9V234B3K9QAR4NJ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "H9V234B3K9QAR4NJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "H9V234B3K9QAR4NJ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "H9V234B3K9QAR4NJ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18682" - }, - "appliesTo" : [ ] - }, - "H9V234B3K9QAR4NJ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "H9V234B3K9QAR4NJ.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "H9V234B3K9QAR4NJ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "H9V234B3K9QAR4NJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "H9V234B3K9QAR4NJ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "H9V234B3K9QAR4NJ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "H9V234B3K9QAR4NJ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "H9V234B3K9QAR4NJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H9V234B3K9QAR4NJ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "H9V234B3K9QAR4NJ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4047" - }, - "appliesTo" : [ ] - }, - "H9V234B3K9QAR4NJ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "H9V234B3K9QAR4NJ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "H9V234B3K9QAR4NJ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "H9V234B3K9QAR4NJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H9V234B3K9QAR4NJ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "H9V234B3K9QAR4NJ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "H9V234B3K9QAR4NJ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "H9V234B3K9QAR4NJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "H9V234B3K9QAR4NJ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "H9V234B3K9QAR4NJ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16384" - }, - "appliesTo" : [ ] - }, - "H9V234B3K9QAR4NJ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "H9V234B3K9QAR4NJ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "H9V234B3K9QAR4NJ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "H9V234B3K9QAR4NJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "H9V234B3K9QAR4NJ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "H9V234B3K9QAR4NJ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9482" - }, - "appliesTo" : [ ] - }, - "H9V234B3K9QAR4NJ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "H9V234B3K9QAR4NJ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "H9V234B3K9QAR4NJ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "H9V234B3K9QAR4NJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "H9V234B3K9QAR4NJ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "H9V234B3K9QAR4NJ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "H9V234B3K9QAR4NJ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "H9V234B3K9QAR4NJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "H9V234B3K9QAR4NJ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "H9V234B3K9QAR4NJ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8561" - }, - "appliesTo" : [ ] - }, - "H9V234B3K9QAR4NJ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "H9V234B3K9QAR4NJ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "H9V234B3K9QAR4NJ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "H9V234B3K9QAR4NJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "H9V234B3K9QAR4NJ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "H9V234B3K9QAR4NJ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7136" - }, - "appliesTo" : [ ] - }, - "H9V234B3K9QAR4NJ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "H9V234B3K9QAR4NJ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "AKXXTUNGEUFY2NYA" : { - "AKXXTUNGEUFY2NYA.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "AKXXTUNGEUFY2NYA", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "AKXXTUNGEUFY2NYA.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "AKXXTUNGEUFY2NYA.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3618" - }, - "appliesTo" : [ ] - }, - "AKXXTUNGEUFY2NYA.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "AKXXTUNGEUFY2NYA.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AKXXTUNGEUFY2NYA.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "AKXXTUNGEUFY2NYA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AKXXTUNGEUFY2NYA.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "AKXXTUNGEUFY2NYA.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "AKXXTUNGEUFY2NYA.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "AKXXTUNGEUFY2NYA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AKXXTUNGEUFY2NYA.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "AKXXTUNGEUFY2NYA.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18234" - }, - "appliesTo" : [ ] - }, - "AKXXTUNGEUFY2NYA.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "AKXXTUNGEUFY2NYA.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "AKXXTUNGEUFY2NYA.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "AKXXTUNGEUFY2NYA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AKXXTUNGEUFY2NYA.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "AKXXTUNGEUFY2NYA.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "AKXXTUNGEUFY2NYA.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "AKXXTUNGEUFY2NYA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AKXXTUNGEUFY2NYA.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "AKXXTUNGEUFY2NYA.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8856" - }, - "appliesTo" : [ ] - }, - "AKXXTUNGEUFY2NYA.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "AKXXTUNGEUFY2NYA.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AKXXTUNGEUFY2NYA.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "AKXXTUNGEUFY2NYA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AKXXTUNGEUFY2NYA.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "AKXXTUNGEUFY2NYA.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3490000000" - }, - "appliesTo" : [ ] - }, - "AKXXTUNGEUFY2NYA.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "AKXXTUNGEUFY2NYA.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9166" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "AKXXTUNGEUFY2NYA.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "AKXXTUNGEUFY2NYA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AKXXTUNGEUFY2NYA.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "AKXXTUNGEUFY2NYA.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "AKXXTUNGEUFY2NYA.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "AKXXTUNGEUFY2NYA", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "AKXXTUNGEUFY2NYA.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "AKXXTUNGEUFY2NYA.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17450" - }, - "appliesTo" : [ ] - }, - "AKXXTUNGEUFY2NYA.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "AKXXTUNGEUFY2NYA.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AKXXTUNGEUFY2NYA.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "AKXXTUNGEUFY2NYA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AKXXTUNGEUFY2NYA.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "AKXXTUNGEUFY2NYA.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7087" - }, - "appliesTo" : [ ] - }, - "AKXXTUNGEUFY2NYA.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "AKXXTUNGEUFY2NYA.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "STRFBQS9QNUUSSCD" : { - "STRFBQS9QNUUSSCD.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "STRFBQS9QNUUSSCD", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "STRFBQS9QNUUSSCD.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "STRFBQS9QNUUSSCD.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6360" - }, - "appliesTo" : [ ] - }, - "STRFBQS9QNUUSSCD.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "STRFBQS9QNUUSSCD.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "STRFBQS9QNUUSSCD.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "STRFBQS9QNUUSSCD", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "STRFBQS9QNUUSSCD.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "STRFBQS9QNUUSSCD.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14945" - }, - "appliesTo" : [ ] - }, - "STRFBQS9QNUUSSCD.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "STRFBQS9QNUUSSCD.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "STRFBQS9QNUUSSCD.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "STRFBQS9QNUUSSCD", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "STRFBQS9QNUUSSCD.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "STRFBQS9QNUUSSCD.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6400" - }, - "appliesTo" : [ ] - }, - "STRFBQS9QNUUSSCD.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "STRFBQS9QNUUSSCD.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "STRFBQS9QNUUSSCD.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "STRFBQS9QNUUSSCD", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "STRFBQS9QNUUSSCD.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "STRFBQS9QNUUSSCD.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "STRFBQS9QNUUSSCD.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "STRFBQS9QNUUSSCD", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "STRFBQS9QNUUSSCD.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "STRFBQS9QNUUSSCD.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4480000000" - }, - "appliesTo" : [ ] - }, - "STRFBQS9QNUUSSCD.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "STRFBQS9QNUUSSCD.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2609" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "SG2J8TRQ57JQYCRA" : { - "SG2J8TRQ57JQYCRA.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SG2J8TRQ57JQYCRA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SG2J8TRQ57JQYCRA.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SG2J8TRQ57JQYCRA.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SG2J8TRQ57JQYCRA.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "SG2J8TRQ57JQYCRA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SG2J8TRQ57JQYCRA.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "SG2J8TRQ57JQYCRA.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SG2J8TRQ57JQYCRA.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "SG2J8TRQ57JQYCRA.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9130" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SG2J8TRQ57JQYCRA.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SG2J8TRQ57JQYCRA", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "SG2J8TRQ57JQYCRA.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SG2J8TRQ57JQYCRA.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1743" - }, - "appliesTo" : [ ] - }, - "SG2J8TRQ57JQYCRA.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SG2J8TRQ57JQYCRA.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SG2J8TRQ57JQYCRA.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "SG2J8TRQ57JQYCRA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SG2J8TRQ57JQYCRA.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "SG2J8TRQ57JQYCRA.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SG2J8TRQ57JQYCRA.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SG2J8TRQ57JQYCRA", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "SG2J8TRQ57JQYCRA.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SG2J8TRQ57JQYCRA.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3425" - }, - "appliesTo" : [ ] - }, - "SG2J8TRQ57JQYCRA.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SG2J8TRQ57JQYCRA.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SG2J8TRQ57JQYCRA.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "SG2J8TRQ57JQYCRA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SG2J8TRQ57JQYCRA.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "SG2J8TRQ57JQYCRA.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SG2J8TRQ57JQYCRA.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SG2J8TRQ57JQYCRA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SG2J8TRQ57JQYCRA.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SG2J8TRQ57JQYCRA.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8751" - }, - "appliesTo" : [ ] - }, - "SG2J8TRQ57JQYCRA.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SG2J8TRQ57JQYCRA.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SG2J8TRQ57JQYCRA.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SG2J8TRQ57JQYCRA", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "SG2J8TRQ57JQYCRA.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SG2J8TRQ57JQYCRA.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4441" - }, - "appliesTo" : [ ] - }, - "SG2J8TRQ57JQYCRA.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SG2J8TRQ57JQYCRA.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SG2J8TRQ57JQYCRA.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "SG2J8TRQ57JQYCRA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SG2J8TRQ57JQYCRA.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "SG2J8TRQ57JQYCRA.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4590" - }, - "appliesTo" : [ ] - }, - "SG2J8TRQ57JQYCRA.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "SG2J8TRQ57JQYCRA.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "38G6R9HH2W74WD78" : { - "38G6R9HH2W74WD78.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "38G6R9HH2W74WD78", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "38G6R9HH2W74WD78.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "38G6R9HH2W74WD78.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "38G6R9HH2W74WD78.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "38G6R9HH2W74WD78", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "38G6R9HH2W74WD78.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "38G6R9HH2W74WD78.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "38G6R9HH2W74WD78.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "38G6R9HH2W74WD78.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8297" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "38G6R9HH2W74WD78.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "38G6R9HH2W74WD78", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "38G6R9HH2W74WD78.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "38G6R9HH2W74WD78.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3640" - }, - "appliesTo" : [ ] - }, - "38G6R9HH2W74WD78.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "38G6R9HH2W74WD78.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "38G6R9HH2W74WD78.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "38G6R9HH2W74WD78", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "38G6R9HH2W74WD78.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "38G6R9HH2W74WD78.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "38G6R9HH2W74WD78.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "38G6R9HH2W74WD78", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "38G6R9HH2W74WD78.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "38G6R9HH2W74WD78.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "38G6R9HH2W74WD78.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "38G6R9HH2W74WD78.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17033" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "38G6R9HH2W74WD78.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "38G6R9HH2W74WD78", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "38G6R9HH2W74WD78.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "38G6R9HH2W74WD78.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5480" - }, - "appliesTo" : [ ] - }, - "38G6R9HH2W74WD78.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "38G6R9HH2W74WD78.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "38G6R9HH2W74WD78.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "38G6R9HH2W74WD78", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "38G6R9HH2W74WD78.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "38G6R9HH2W74WD78.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23020" - }, - "appliesTo" : [ ] - }, - "38G6R9HH2W74WD78.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "38G6R9HH2W74WD78.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "38G6R9HH2W74WD78.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "38G6R9HH2W74WD78", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "38G6R9HH2W74WD78.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "38G6R9HH2W74WD78.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10387" - }, - "appliesTo" : [ ] - }, - "38G6R9HH2W74WD78.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "38G6R9HH2W74WD78.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "38G6R9HH2W74WD78.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "38G6R9HH2W74WD78", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "38G6R9HH2W74WD78.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "38G6R9HH2W74WD78.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9828" - }, - "appliesTo" : [ ] - }, - "38G6R9HH2W74WD78.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "38G6R9HH2W74WD78.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "38G6R9HH2W74WD78.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "38G6R9HH2W74WD78", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "38G6R9HH2W74WD78.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "38G6R9HH2W74WD78.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5267" - }, - "appliesTo" : [ ] - }, - "38G6R9HH2W74WD78.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "38G6R9HH2W74WD78.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "38G6R9HH2W74WD78.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "38G6R9HH2W74WD78", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "38G6R9HH2W74WD78.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "38G6R9HH2W74WD78.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "GPTGBM5JNED7SKZW" : { - "GPTGBM5JNED7SKZW.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "GPTGBM5JNED7SKZW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GPTGBM5JNED7SKZW.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "GPTGBM5JNED7SKZW.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GPTGBM5JNED7SKZW.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "GPTGBM5JNED7SKZW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GPTGBM5JNED7SKZW.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "GPTGBM5JNED7SKZW.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8980" - }, - "appliesTo" : [ ] - }, - "GPTGBM5JNED7SKZW.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "GPTGBM5JNED7SKZW.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GPTGBM5JNED7SKZW.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "GPTGBM5JNED7SKZW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GPTGBM5JNED7SKZW.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "GPTGBM5JNED7SKZW.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "GPTGBM5JNED7SKZW.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "GPTGBM5JNED7SKZW", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "GPTGBM5JNED7SKZW.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "GPTGBM5JNED7SKZW.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "GPTGBM5JNED7SKZW.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "GPTGBM5JNED7SKZW.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "42014" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GPTGBM5JNED7SKZW.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "GPTGBM5JNED7SKZW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GPTGBM5JNED7SKZW.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "GPTGBM5JNED7SKZW.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "GPTGBM5JNED7SKZW.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "GPTGBM5JNED7SKZW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GPTGBM5JNED7SKZW.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "GPTGBM5JNED7SKZW.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22685" - }, - "appliesTo" : [ ] - }, - "GPTGBM5JNED7SKZW.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "GPTGBM5JNED7SKZW.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GPTGBM5JNED7SKZW.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "GPTGBM5JNED7SKZW", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "GPTGBM5JNED7SKZW.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "GPTGBM5JNED7SKZW.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21494" - }, - "appliesTo" : [ ] - }, - "GPTGBM5JNED7SKZW.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "GPTGBM5JNED7SKZW.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GPTGBM5JNED7SKZW.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "GPTGBM5JNED7SKZW", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "GPTGBM5JNED7SKZW.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "GPTGBM5JNED7SKZW.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "GPTGBM5JNED7SKZW.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "GPTGBM5JNED7SKZW.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16578" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GPTGBM5JNED7SKZW.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "GPTGBM5JNED7SKZW", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "GPTGBM5JNED7SKZW.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "GPTGBM5JNED7SKZW.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8367" - }, - "appliesTo" : [ ] - }, - "GPTGBM5JNED7SKZW.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "GPTGBM5JNED7SKZW.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GPTGBM5JNED7SKZW.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "GPTGBM5JNED7SKZW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GPTGBM5JNED7SKZW.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "GPTGBM5JNED7SKZW.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GPTGBM5JNED7SKZW.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "GPTGBM5JNED7SKZW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GPTGBM5JNED7SKZW.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "GPTGBM5JNED7SKZW.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "44998" - }, - "appliesTo" : [ ] - }, - "GPTGBM5JNED7SKZW.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "GPTGBM5JNED7SKZW.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "GPTGBM5JNED7SKZW.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "GPTGBM5JNED7SKZW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GPTGBM5JNED7SKZW.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "GPTGBM5JNED7SKZW.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17779" - }, - "appliesTo" : [ ] - }, - "GPTGBM5JNED7SKZW.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "GPTGBM5JNED7SKZW.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "ASDZTDFMC5425T7P" : { - "ASDZTDFMC5425T7P.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ASDZTDFMC5425T7P", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ASDZTDFMC5425T7P.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ASDZTDFMC5425T7P.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ASDZTDFMC5425T7P.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ASDZTDFMC5425T7P.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "406" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ASDZTDFMC5425T7P.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ASDZTDFMC5425T7P", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "ASDZTDFMC5425T7P.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ASDZTDFMC5425T7P.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "211" - }, - "appliesTo" : [ ] - }, - "ASDZTDFMC5425T7P.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ASDZTDFMC5425T7P.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ASDZTDFMC5425T7P.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ASDZTDFMC5425T7P", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "ASDZTDFMC5425T7P.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ASDZTDFMC5425T7P.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "570" - }, - "appliesTo" : [ ] - }, - "ASDZTDFMC5425T7P.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ASDZTDFMC5425T7P.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ASDZTDFMC5425T7P.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ASDZTDFMC5425T7P", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ASDZTDFMC5425T7P.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ASDZTDFMC5425T7P.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "337" - }, - "appliesTo" : [ ] - }, - "ASDZTDFMC5425T7P.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ASDZTDFMC5425T7P.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ASDZTDFMC5425T7P.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ASDZTDFMC5425T7P", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ASDZTDFMC5425T7P.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ASDZTDFMC5425T7P.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "687" - }, - "appliesTo" : [ ] - }, - "ASDZTDFMC5425T7P.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ASDZTDFMC5425T7P.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ASDZTDFMC5425T7P.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ASDZTDFMC5425T7P", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "ASDZTDFMC5425T7P.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ASDZTDFMC5425T7P.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "353" - }, - "appliesTo" : [ ] - }, - "ASDZTDFMC5425T7P.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ASDZTDFMC5425T7P.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ASDZTDFMC5425T7P.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ASDZTDFMC5425T7P", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "ASDZTDFMC5425T7P.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ASDZTDFMC5425T7P.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ASDZTDFMC5425T7P.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ASDZTDFMC5425T7P", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ASDZTDFMC5425T7P.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ASDZTDFMC5425T7P.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0240000000" - }, - "appliesTo" : [ ] - }, - "ASDZTDFMC5425T7P.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ASDZTDFMC5425T7P.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "207" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ASDZTDFMC5425T7P.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ASDZTDFMC5425T7P", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ASDZTDFMC5425T7P.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ASDZTDFMC5425T7P.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ASDZTDFMC5425T7P.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ASDZTDFMC5425T7P", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "ASDZTDFMC5425T7P.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ASDZTDFMC5425T7P.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ASDZTDFMC5425T7P.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ASDZTDFMC5425T7P", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "ASDZTDFMC5425T7P.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ASDZTDFMC5425T7P.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "953" - }, - "appliesTo" : [ ] - }, - "ASDZTDFMC5425T7P.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ASDZTDFMC5425T7P.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "FMN62RHYUNCFD57B" : { - "FMN62RHYUNCFD57B.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "FMN62RHYUNCFD57B", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "FMN62RHYUNCFD57B.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "FMN62RHYUNCFD57B.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0036000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FMN62RHYUNCFD57B.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "FMN62RHYUNCFD57B", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "FMN62RHYUNCFD57B.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "FMN62RHYUNCFD57B.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0025000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FMN62RHYUNCFD57B.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "FMN62RHYUNCFD57B", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "FMN62RHYUNCFD57B.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "FMN62RHYUNCFD57B.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0017000000" - }, - "appliesTo" : [ ] - }, - "FMN62RHYUNCFD57B.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "FMN62RHYUNCFD57B.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FMN62RHYUNCFD57B.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "FMN62RHYUNCFD57B", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "FMN62RHYUNCFD57B.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "FMN62RHYUNCFD57B.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29" - }, - "appliesTo" : [ ] - }, - "FMN62RHYUNCFD57B.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "FMN62RHYUNCFD57B.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FMN62RHYUNCFD57B.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "FMN62RHYUNCFD57B", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "FMN62RHYUNCFD57B.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "FMN62RHYUNCFD57B.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "57" - }, - "appliesTo" : [ ] - }, - "FMN62RHYUNCFD57B.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "FMN62RHYUNCFD57B.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FMN62RHYUNCFD57B.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "FMN62RHYUNCFD57B", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "FMN62RHYUNCFD57B.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "FMN62RHYUNCFD57B.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30" - }, - "appliesTo" : [ ] - }, - "FMN62RHYUNCFD57B.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "FMN62RHYUNCFD57B.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0012000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "2Y6EVK4CR7GZUMHR" : { - "2Y6EVK4CR7GZUMHR.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "2Y6EVK4CR7GZUMHR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2Y6EVK4CR7GZUMHR.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "2Y6EVK4CR7GZUMHR.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1617" - }, - "appliesTo" : [ ] - }, - "2Y6EVK4CR7GZUMHR.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "2Y6EVK4CR7GZUMHR.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2Y6EVK4CR7GZUMHR.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "2Y6EVK4CR7GZUMHR", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "2Y6EVK4CR7GZUMHR.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "2Y6EVK4CR7GZUMHR.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2Y6EVK4CR7GZUMHR.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "2Y6EVK4CR7GZUMHR", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "2Y6EVK4CR7GZUMHR.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "2Y6EVK4CR7GZUMHR.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1000000000" - }, - "appliesTo" : [ ] - }, - "2Y6EVK4CR7GZUMHR.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "2Y6EVK4CR7GZUMHR.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1638" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2Y6EVK4CR7GZUMHR.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "2Y6EVK4CR7GZUMHR", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "2Y6EVK4CR7GZUMHR.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "2Y6EVK4CR7GZUMHR.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "588" - }, - "appliesTo" : [ ] - }, - "2Y6EVK4CR7GZUMHR.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "2Y6EVK4CR7GZUMHR.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2Y6EVK4CR7GZUMHR.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "2Y6EVK4CR7GZUMHR", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "2Y6EVK4CR7GZUMHR.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "2Y6EVK4CR7GZUMHR.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "2Y6EVK4CR7GZUMHR.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "2Y6EVK4CR7GZUMHR.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4166" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2Y6EVK4CR7GZUMHR.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "2Y6EVK4CR7GZUMHR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2Y6EVK4CR7GZUMHR.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "2Y6EVK4CR7GZUMHR.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2Y6EVK4CR7GZUMHR.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "2Y6EVK4CR7GZUMHR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2Y6EVK4CR7GZUMHR.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "2Y6EVK4CR7GZUMHR.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "817" - }, - "appliesTo" : [ ] - }, - "2Y6EVK4CR7GZUMHR.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "2Y6EVK4CR7GZUMHR.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2Y6EVK4CR7GZUMHR.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "2Y6EVK4CR7GZUMHR", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "2Y6EVK4CR7GZUMHR.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "2Y6EVK4CR7GZUMHR.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2Y6EVK4CR7GZUMHR.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "2Y6EVK4CR7GZUMHR", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "2Y6EVK4CR7GZUMHR.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "2Y6EVK4CR7GZUMHR.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "954" - }, - "appliesTo" : [ ] - }, - "2Y6EVK4CR7GZUMHR.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "2Y6EVK4CR7GZUMHR.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2Y6EVK4CR7GZUMHR.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "2Y6EVK4CR7GZUMHR", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "2Y6EVK4CR7GZUMHR.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "2Y6EVK4CR7GZUMHR.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3342" - }, - "appliesTo" : [ ] - }, - "2Y6EVK4CR7GZUMHR.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "2Y6EVK4CR7GZUMHR.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2Y6EVK4CR7GZUMHR.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "2Y6EVK4CR7GZUMHR", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "2Y6EVK4CR7GZUMHR.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "2Y6EVK4CR7GZUMHR.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1460" - }, - "appliesTo" : [ ] - }, - "2Y6EVK4CR7GZUMHR.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "2Y6EVK4CR7GZUMHR.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "332GEN3V5S3FTKZJ" : { - "332GEN3V5S3FTKZJ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "332GEN3V5S3FTKZJ", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "332GEN3V5S3FTKZJ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "332GEN3V5S3FTKZJ.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "332GEN3V5S3FTKZJ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "332GEN3V5S3FTKZJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "332GEN3V5S3FTKZJ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "332GEN3V5S3FTKZJ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1867" - }, - "appliesTo" : [ ] - }, - "332GEN3V5S3FTKZJ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "332GEN3V5S3FTKZJ.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "332GEN3V5S3FTKZJ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "332GEN3V5S3FTKZJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "332GEN3V5S3FTKZJ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "332GEN3V5S3FTKZJ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4905" - }, - "appliesTo" : [ ] - }, - "332GEN3V5S3FTKZJ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "332GEN3V5S3FTKZJ.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "332GEN3V5S3FTKZJ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "332GEN3V5S3FTKZJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "332GEN3V5S3FTKZJ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "332GEN3V5S3FTKZJ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3683" - }, - "appliesTo" : [ ] - }, - "332GEN3V5S3FTKZJ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "332GEN3V5S3FTKZJ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "332GEN3V5S3FTKZJ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "332GEN3V5S3FTKZJ", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "332GEN3V5S3FTKZJ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "332GEN3V5S3FTKZJ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "332GEN3V5S3FTKZJ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "332GEN3V5S3FTKZJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "332GEN3V5S3FTKZJ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "332GEN3V5S3FTKZJ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0910000000" - }, - "appliesTo" : [ ] - }, - "332GEN3V5S3FTKZJ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "332GEN3V5S3FTKZJ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1120" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "332GEN3V5S3FTKZJ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "332GEN3V5S3FTKZJ", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "332GEN3V5S3FTKZJ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "332GEN3V5S3FTKZJ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "332GEN3V5S3FTKZJ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "332GEN3V5S3FTKZJ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1884" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "332GEN3V5S3FTKZJ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "332GEN3V5S3FTKZJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "332GEN3V5S3FTKZJ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "332GEN3V5S3FTKZJ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2075" - }, - "appliesTo" : [ ] - }, - "332GEN3V5S3FTKZJ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "332GEN3V5S3FTKZJ.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "332GEN3V5S3FTKZJ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "332GEN3V5S3FTKZJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "332GEN3V5S3FTKZJ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "332GEN3V5S3FTKZJ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2887" - }, - "appliesTo" : [ ] - }, - "332GEN3V5S3FTKZJ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "332GEN3V5S3FTKZJ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "332GEN3V5S3FTKZJ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "332GEN3V5S3FTKZJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "332GEN3V5S3FTKZJ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "332GEN3V5S3FTKZJ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1170000000" - }, - "appliesTo" : [ ] - }, - "332GEN3V5S3FTKZJ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "332GEN3V5S3FTKZJ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1087" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "332GEN3V5S3FTKZJ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "332GEN3V5S3FTKZJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "332GEN3V5S3FTKZJ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "332GEN3V5S3FTKZJ.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "QYFXFTGTF3CQ3XKH" : { - "QYFXFTGTF3CQ3XKH.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QYFXFTGTF3CQ3XKH", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QYFXFTGTF3CQ3XKH.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QYFXFTGTF3CQ3XKH.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0059000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QYFXFTGTF3CQ3XKH.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QYFXFTGTF3CQ3XKH", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QYFXFTGTF3CQ3XKH.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QYFXFTGTF3CQ3XKH.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "61" - }, - "appliesTo" : [ ] - }, - "QYFXFTGTF3CQ3XKH.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QYFXFTGTF3CQ3XKH.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0023000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QYFXFTGTF3CQ3XKH.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "QYFXFTGTF3CQ3XKH", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QYFXFTGTF3CQ3XKH.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "QYFXFTGTF3CQ3XKH.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0052000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QYFXFTGTF3CQ3XKH.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QYFXFTGTF3CQ3XKH", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QYFXFTGTF3CQ3XKH.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QYFXFTGTF3CQ3XKH.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "118" - }, - "appliesTo" : [ ] - }, - "QYFXFTGTF3CQ3XKH.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QYFXFTGTF3CQ3XKH.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QYFXFTGTF3CQ3XKH.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "QYFXFTGTF3CQ3XKH", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QYFXFTGTF3CQ3XKH.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "QYFXFTGTF3CQ3XKH.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "65" - }, - "appliesTo" : [ ] - }, - "QYFXFTGTF3CQ3XKH.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "QYFXFTGTF3CQ3XKH.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0025000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QYFXFTGTF3CQ3XKH.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QYFXFTGTF3CQ3XKH", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QYFXFTGTF3CQ3XKH.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QYFXFTGTF3CQ3XKH.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QYFXFTGTF3CQ3XKH.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QYFXFTGTF3CQ3XKH.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "50" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QYFXFTGTF3CQ3XKH.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QYFXFTGTF3CQ3XKH", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QYFXFTGTF3CQ3XKH.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QYFXFTGTF3CQ3XKH.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0029000000" - }, - "appliesTo" : [ ] - }, - "QYFXFTGTF3CQ3XKH.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QYFXFTGTF3CQ3XKH.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QYFXFTGTF3CQ3XKH.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "QYFXFTGTF3CQ3XKH", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QYFXFTGTF3CQ3XKH.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "QYFXFTGTF3CQ3XKH.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0048000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QYFXFTGTF3CQ3XKH.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "QYFXFTGTF3CQ3XKH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QYFXFTGTF3CQ3XKH.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "QYFXFTGTF3CQ3XKH.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0064000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QYFXFTGTF3CQ3XKH.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "QYFXFTGTF3CQ3XKH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QYFXFTGTF3CQ3XKH.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "QYFXFTGTF3CQ3XKH.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "54" - }, - "appliesTo" : [ ] - }, - "QYFXFTGTF3CQ3XKH.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "QYFXFTGTF3CQ3XKH.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QYFXFTGTF3CQ3XKH.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "QYFXFTGTF3CQ3XKH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QYFXFTGTF3CQ3XKH.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "QYFXFTGTF3CQ3XKH.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27" - }, - "appliesTo" : [ ] - }, - "QYFXFTGTF3CQ3XKH.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "QYFXFTGTF3CQ3XKH.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0031000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QYFXFTGTF3CQ3XKH.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "QYFXFTGTF3CQ3XKH", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "QYFXFTGTF3CQ3XKH.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "QYFXFTGTF3CQ3XKH.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "129" - }, - "appliesTo" : [ ] - }, - "QYFXFTGTF3CQ3XKH.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "QYFXFTGTF3CQ3XKH.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "4WKDEBCNFZKFEKEZ" : { - "4WKDEBCNFZKFEKEZ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "4WKDEBCNFZKFEKEZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "4WKDEBCNFZKFEKEZ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "4WKDEBCNFZKFEKEZ.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2310000000" - }, - "appliesTo" : [ ] - }, - "4WKDEBCNFZKFEKEZ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "4WKDEBCNFZKFEKEZ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6087" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4WKDEBCNFZKFEKEZ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "4WKDEBCNFZKFEKEZ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4WKDEBCNFZKFEKEZ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "4WKDEBCNFZKFEKEZ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "4WKDEBCNFZKFEKEZ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "4WKDEBCNFZKFEKEZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4WKDEBCNFZKFEKEZ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "4WKDEBCNFZKFEKEZ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "4WKDEBCNFZKFEKEZ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "4WKDEBCNFZKFEKEZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4WKDEBCNFZKFEKEZ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "4WKDEBCNFZKFEKEZ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4360000000" - }, - "appliesTo" : [ ] - }, - "4WKDEBCNFZKFEKEZ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "4WKDEBCNFZKFEKEZ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3823" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4WKDEBCNFZKFEKEZ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "4WKDEBCNFZKFEKEZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "4WKDEBCNFZKFEKEZ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "4WKDEBCNFZKFEKEZ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "4WKDEBCNFZKFEKEZ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "4WKDEBCNFZKFEKEZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "4WKDEBCNFZKFEKEZ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "4WKDEBCNFZKFEKEZ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3780000000" - }, - "appliesTo" : [ ] - }, - "4WKDEBCNFZKFEKEZ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "4WKDEBCNFZKFEKEZ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3313" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4WKDEBCNFZKFEKEZ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "4WKDEBCNFZKFEKEZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4WKDEBCNFZKFEKEZ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "4WKDEBCNFZKFEKEZ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7493" - }, - "appliesTo" : [ ] - }, - "4WKDEBCNFZKFEKEZ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "4WKDEBCNFZKFEKEZ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4WKDEBCNFZKFEKEZ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "4WKDEBCNFZKFEKEZ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "4WKDEBCNFZKFEKEZ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "4WKDEBCNFZKFEKEZ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17534" - }, - "appliesTo" : [ ] - }, - "4WKDEBCNFZKFEKEZ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "4WKDEBCNFZKFEKEZ.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4WKDEBCNFZKFEKEZ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "4WKDEBCNFZKFEKEZ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "4WKDEBCNFZKFEKEZ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "4WKDEBCNFZKFEKEZ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8945" - }, - "appliesTo" : [ ] - }, - "4WKDEBCNFZKFEKEZ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "4WKDEBCNFZKFEKEZ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4WKDEBCNFZKFEKEZ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "4WKDEBCNFZKFEKEZ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4WKDEBCNFZKFEKEZ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "4WKDEBCNFZKFEKEZ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11429" - }, - "appliesTo" : [ ] - }, - "4WKDEBCNFZKFEKEZ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "4WKDEBCNFZKFEKEZ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4WKDEBCNFZKFEKEZ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "4WKDEBCNFZKFEKEZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "4WKDEBCNFZKFEKEZ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "4WKDEBCNFZKFEKEZ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6494" - }, - "appliesTo" : [ ] - }, - "4WKDEBCNFZKFEKEZ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "4WKDEBCNFZKFEKEZ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "VJAJFF3S48Y4ZK6H" : { - "VJAJFF3S48Y4ZK6H.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "VJAJFF3S48Y4ZK6H", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "VJAJFF3S48Y4ZK6H.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "VJAJFF3S48Y4ZK6H.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2680" - }, - "appliesTo" : [ ] - }, - "VJAJFF3S48Y4ZK6H.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "VJAJFF3S48Y4ZK6H.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VJAJFF3S48Y4ZK6H.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "VJAJFF3S48Y4ZK6H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VJAJFF3S48Y4ZK6H.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "VJAJFF3S48Y4ZK6H.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1577" - }, - "appliesTo" : [ ] - }, - "VJAJFF3S48Y4ZK6H.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "VJAJFF3S48Y4ZK6H.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VJAJFF3S48Y4ZK6H.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "VJAJFF3S48Y4ZK6H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VJAJFF3S48Y4ZK6H.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "VJAJFF3S48Y4ZK6H.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VJAJFF3S48Y4ZK6H.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "VJAJFF3S48Y4ZK6H", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "VJAJFF3S48Y4ZK6H.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "VJAJFF3S48Y4ZK6H.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7108" - }, - "appliesTo" : [ ] - }, - "VJAJFF3S48Y4ZK6H.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "VJAJFF3S48Y4ZK6H.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VJAJFF3S48Y4ZK6H.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "VJAJFF3S48Y4ZK6H", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "VJAJFF3S48Y4ZK6H.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "VJAJFF3S48Y4ZK6H.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2621" - }, - "appliesTo" : [ ] - }, - "VJAJFF3S48Y4ZK6H.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "VJAJFF3S48Y4ZK6H.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VJAJFF3S48Y4ZK6H.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "VJAJFF3S48Y4ZK6H", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "VJAJFF3S48Y4ZK6H.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "VJAJFF3S48Y4ZK6H.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VJAJFF3S48Y4ZK6H.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "VJAJFF3S48Y4ZK6H", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "VJAJFF3S48Y4ZK6H.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "VJAJFF3S48Y4ZK6H.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4259" - }, - "appliesTo" : [ ] - }, - "VJAJFF3S48Y4ZK6H.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "VJAJFF3S48Y4ZK6H.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VJAJFF3S48Y4ZK6H.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "VJAJFF3S48Y4ZK6H", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "VJAJFF3S48Y4ZK6H.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "VJAJFF3S48Y4ZK6H.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5208" - }, - "appliesTo" : [ ] - }, - "VJAJFF3S48Y4ZK6H.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "VJAJFF3S48Y4ZK6H.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VJAJFF3S48Y4ZK6H.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "VJAJFF3S48Y4ZK6H", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "VJAJFF3S48Y4ZK6H.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "VJAJFF3S48Y4ZK6H.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VJAJFF3S48Y4ZK6H.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "VJAJFF3S48Y4ZK6H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VJAJFF3S48Y4ZK6H.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "VJAJFF3S48Y4ZK6H.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "VJAJFF3S48Y4ZK6H.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "VJAJFF3S48Y4ZK6H.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3035" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VJAJFF3S48Y4ZK6H.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "VJAJFF3S48Y4ZK6H", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "VJAJFF3S48Y4ZK6H.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "VJAJFF3S48Y4ZK6H.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1628" - }, - "appliesTo" : [ ] - }, - "VJAJFF3S48Y4ZK6H.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "VJAJFF3S48Y4ZK6H.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "JKUR5KFWCTQXCJKH" : { - "JKUR5KFWCTQXCJKH.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "JKUR5KFWCTQXCJKH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "JKUR5KFWCTQXCJKH.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "JKUR5KFWCTQXCJKH.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16486" - }, - "appliesTo" : [ ] - }, - "JKUR5KFWCTQXCJKH.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "JKUR5KFWCTQXCJKH.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "JKUR5KFWCTQXCJKH.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "JKUR5KFWCTQXCJKH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JKUR5KFWCTQXCJKH.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "JKUR5KFWCTQXCJKH.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33400" - }, - "appliesTo" : [ ] - }, - "JKUR5KFWCTQXCJKH.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "JKUR5KFWCTQXCJKH.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "JKUR5KFWCTQXCJKH.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "JKUR5KFWCTQXCJKH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "JKUR5KFWCTQXCJKH.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "JKUR5KFWCTQXCJKH.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "JKUR5KFWCTQXCJKH.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "JKUR5KFWCTQXCJKH.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "95266" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JKUR5KFWCTQXCJKH.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "JKUR5KFWCTQXCJKH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "JKUR5KFWCTQXCJKH.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "JKUR5KFWCTQXCJKH.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "JKUR5KFWCTQXCJKH.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "JKUR5KFWCTQXCJKH.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32903" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JKUR5KFWCTQXCJKH.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "JKUR5KFWCTQXCJKH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "JKUR5KFWCTQXCJKH.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "JKUR5KFWCTQXCJKH.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "48938" - }, - "appliesTo" : [ ] - }, - "JKUR5KFWCTQXCJKH.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "JKUR5KFWCTQXCJKH.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "JKUR5KFWCTQXCJKH.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "JKUR5KFWCTQXCJKH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "JKUR5KFWCTQXCJKH.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "JKUR5KFWCTQXCJKH.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8210000000" - }, - "appliesTo" : [ ] - }, - "JKUR5KFWCTQXCJKH.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "JKUR5KFWCTQXCJKH.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47848" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "JKUR5KFWCTQXCJKH.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "JKUR5KFWCTQXCJKH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JKUR5KFWCTQXCJKH.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "JKUR5KFWCTQXCJKH.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9110000000" - }, - "appliesTo" : [ ] - }, - "JKUR5KFWCTQXCJKH.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "JKUR5KFWCTQXCJKH.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16740" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "JKUR5KFWCTQXCJKH.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "JKUR5KFWCTQXCJKH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "JKUR5KFWCTQXCJKH.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "JKUR5KFWCTQXCJKH.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "JKUR5KFWCTQXCJKH.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "JKUR5KFWCTQXCJKH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JKUR5KFWCTQXCJKH.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "JKUR5KFWCTQXCJKH.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "JKUR5KFWCTQXCJKH.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "JKUR5KFWCTQXCJKH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "JKUR5KFWCTQXCJKH.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "JKUR5KFWCTQXCJKH.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "97689" - }, - "appliesTo" : [ ] - }, - "JKUR5KFWCTQXCJKH.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "JKUR5KFWCTQXCJKH.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "JKUR5KFWCTQXCJKH.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "JKUR5KFWCTQXCJKH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "JKUR5KFWCTQXCJKH.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "JKUR5KFWCTQXCJKH.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "PSVDMQASMVK87NYB" : { - "PSVDMQASMVK87NYB.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "PSVDMQASMVK87NYB", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "PSVDMQASMVK87NYB.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "PSVDMQASMVK87NYB.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14212" - }, - "appliesTo" : [ ] - }, - "PSVDMQASMVK87NYB.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "PSVDMQASMVK87NYB.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PSVDMQASMVK87NYB.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "PSVDMQASMVK87NYB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PSVDMQASMVK87NYB.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "PSVDMQASMVK87NYB.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33363" - }, - "appliesTo" : [ ] - }, - "PSVDMQASMVK87NYB.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "PSVDMQASMVK87NYB.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PSVDMQASMVK87NYB.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "PSVDMQASMVK87NYB", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "PSVDMQASMVK87NYB.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "PSVDMQASMVK87NYB.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "PSVDMQASMVK87NYB.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "PSVDMQASMVK87NYB.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28995" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PSVDMQASMVK87NYB.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "PSVDMQASMVK87NYB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PSVDMQASMVK87NYB.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "PSVDMQASMVK87NYB.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "58910" - }, - "appliesTo" : [ ] - }, - "PSVDMQASMVK87NYB.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "PSVDMQASMVK87NYB.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PSVDMQASMVK87NYB.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "PSVDMQASMVK87NYB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PSVDMQASMVK87NYB.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "PSVDMQASMVK87NYB.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "PSVDMQASMVK87NYB.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "PSVDMQASMVK87NYB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PSVDMQASMVK87NYB.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "PSVDMQASMVK87NYB.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "PSVDMQASMVK87NYB.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "PSVDMQASMVK87NYB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PSVDMQASMVK87NYB.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "PSVDMQASMVK87NYB.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "PSVDMQASMVK87NYB.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "PSVDMQASMVK87NYB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PSVDMQASMVK87NYB.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "PSVDMQASMVK87NYB.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0070000000" - }, - "appliesTo" : [ ] - }, - "PSVDMQASMVK87NYB.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "PSVDMQASMVK87NYB.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16441" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PSVDMQASMVK87NYB.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "PSVDMQASMVK87NYB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PSVDMQASMVK87NYB.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "PSVDMQASMVK87NYB.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "69760" - }, - "appliesTo" : [ ] - }, - "PSVDMQASMVK87NYB.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "PSVDMQASMVK87NYB.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PSVDMQASMVK87NYB.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "PSVDMQASMVK87NYB", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "PSVDMQASMVK87NYB.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "PSVDMQASMVK87NYB.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29518" - }, - "appliesTo" : [ ] - }, - "PSVDMQASMVK87NYB.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "PSVDMQASMVK87NYB.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PSVDMQASMVK87NYB.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "PSVDMQASMVK87NYB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PSVDMQASMVK87NYB.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "PSVDMQASMVK87NYB.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33849" - }, - "appliesTo" : [ ] - }, - "PSVDMQASMVK87NYB.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "PSVDMQASMVK87NYB.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PSVDMQASMVK87NYB.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "PSVDMQASMVK87NYB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PSVDMQASMVK87NYB.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "PSVDMQASMVK87NYB.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.0710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "NVQ292F84D694PKT" : { - "NVQ292F84D694PKT.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "NVQ292F84D694PKT", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "NVQ292F84D694PKT.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "NVQ292F84D694PKT.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1298" - }, - "appliesTo" : [ ] - }, - "NVQ292F84D694PKT.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "NVQ292F84D694PKT.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "NVQ292F84D694PKT.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "NVQ292F84D694PKT", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "NVQ292F84D694PKT.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "NVQ292F84D694PKT.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "514" - }, - "appliesTo" : [ ] - }, - "NVQ292F84D694PKT.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "NVQ292F84D694PKT.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "NVQ292F84D694PKT.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "NVQ292F84D694PKT", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "NVQ292F84D694PKT.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "NVQ292F84D694PKT.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "NVQ292F84D694PKT.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "NVQ292F84D694PKT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NVQ292F84D694PKT.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "NVQ292F84D694PKT.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1411" - }, - "appliesTo" : [ ] - }, - "NVQ292F84D694PKT.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "NVQ292F84D694PKT.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "NVQ292F84D694PKT.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "NVQ292F84D694PKT", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "NVQ292F84D694PKT.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "NVQ292F84D694PKT.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "NVQ292F84D694PKT.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "NVQ292F84D694PKT", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "NVQ292F84D694PKT.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "NVQ292F84D694PKT.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "981" - }, - "appliesTo" : [ ] - }, - "NVQ292F84D694PKT.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "NVQ292F84D694PKT.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "NVQ292F84D694PKT.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "NVQ292F84D694PKT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NVQ292F84D694PKT.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "NVQ292F84D694PKT.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1120000000" - }, - "appliesTo" : [ ] - }, - "NVQ292F84D694PKT.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "NVQ292F84D694PKT.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "452" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "NVQ292F84D694PKT.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "NVQ292F84D694PKT", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "NVQ292F84D694PKT.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "NVQ292F84D694PKT.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "NVQ292F84D694PKT.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "NVQ292F84D694PKT.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3662" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "NVQ292F84D694PKT.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "NVQ292F84D694PKT", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "NVQ292F84D694PKT.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "NVQ292F84D694PKT.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "NVQ292F84D694PKT.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "NVQ292F84D694PKT.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3095" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "NVQ292F84D694PKT.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "NVQ292F84D694PKT", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "NVQ292F84D694PKT.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "NVQ292F84D694PKT.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1388" - }, - "appliesTo" : [ ] - }, - "NVQ292F84D694PKT.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "NVQ292F84D694PKT.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "NVQ292F84D694PKT.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "NVQ292F84D694PKT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NVQ292F84D694PKT.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "NVQ292F84D694PKT.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "SMTM4XWYH27FGA26" : { - "SMTM4XWYH27FGA26.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "SMTM4XWYH27FGA26", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "SMTM4XWYH27FGA26.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "SMTM4XWYH27FGA26.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1020000000" - }, - "appliesTo" : [ ] - }, - "SMTM4XWYH27FGA26.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "SMTM4XWYH27FGA26.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "36334" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SMTM4XWYH27FGA26.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "SMTM4XWYH27FGA26", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "SMTM4XWYH27FGA26.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "SMTM4XWYH27FGA26.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.0770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SMTM4XWYH27FGA26.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SMTM4XWYH27FGA26", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "SMTM4XWYH27FGA26.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SMTM4XWYH27FGA26.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30296" - }, - "appliesTo" : [ ] - }, - "SMTM4XWYH27FGA26.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SMTM4XWYH27FGA26.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SMTM4XWYH27FGA26.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SMTM4XWYH27FGA26", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "SMTM4XWYH27FGA26.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SMTM4XWYH27FGA26.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "41627" - }, - "appliesTo" : [ ] - }, - "SMTM4XWYH27FGA26.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SMTM4XWYH27FGA26.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SMTM4XWYH27FGA26.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SMTM4XWYH27FGA26", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "SMTM4XWYH27FGA26.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SMTM4XWYH27FGA26.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "78259" - }, - "appliesTo" : [ ] - }, - "SMTM4XWYH27FGA26.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SMTM4XWYH27FGA26.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SMTM4XWYH27FGA26.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SMTM4XWYH27FGA26", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "SMTM4XWYH27FGA26.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SMTM4XWYH27FGA26.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.1290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SMTM4XWYH27FGA26.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SMTM4XWYH27FGA26", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "SMTM4XWYH27FGA26.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SMTM4XWYH27FGA26.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12365" - }, - "appliesTo" : [ ] - }, - "SMTM4XWYH27FGA26.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SMTM4XWYH27FGA26.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SMTM4XWYH27FGA26.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "SMTM4XWYH27FGA26", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "SMTM4XWYH27FGA26.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "SMTM4XWYH27FGA26.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "89741" - }, - "appliesTo" : [ ] - }, - "SMTM4XWYH27FGA26.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "SMTM4XWYH27FGA26.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "BW6AXJST7E7P4GBA" : { - "BW6AXJST7E7P4GBA.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "BW6AXJST7E7P4GBA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BW6AXJST7E7P4GBA.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "BW6AXJST7E7P4GBA.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "75560" - }, - "appliesTo" : [ ] - }, - "BW6AXJST7E7P4GBA.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "BW6AXJST7E7P4GBA.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BW6AXJST7E7P4GBA.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "BW6AXJST7E7P4GBA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BW6AXJST7E7P4GBA.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "BW6AXJST7E7P4GBA.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38508" - }, - "appliesTo" : [ ] - }, - "BW6AXJST7E7P4GBA.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "BW6AXJST7E7P4GBA.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.3890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BW6AXJST7E7P4GBA.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "BW6AXJST7E7P4GBA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BW6AXJST7E7P4GBA.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "BW6AXJST7E7P4GBA.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.1820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BW6AXJST7E7P4GBA.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "BW6AXJST7E7P4GBA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BW6AXJST7E7P4GBA.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "BW6AXJST7E7P4GBA.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.0070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BW6AXJST7E7P4GBA.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "BW6AXJST7E7P4GBA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BW6AXJST7E7P4GBA.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "BW6AXJST7E7P4GBA.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "192774" - }, - "appliesTo" : [ ] - }, - "BW6AXJST7E7P4GBA.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "BW6AXJST7E7P4GBA.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BW6AXJST7E7P4GBA.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "BW6AXJST7E7P4GBA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BW6AXJST7E7P4GBA.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "BW6AXJST7E7P4GBA.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "143456" - }, - "appliesTo" : [ ] - }, - "BW6AXJST7E7P4GBA.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "BW6AXJST7E7P4GBA.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BW6AXJST7E7P4GBA.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "BW6AXJST7E7P4GBA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BW6AXJST7E7P4GBA.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "BW6AXJST7E7P4GBA.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.1560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BW6AXJST7E7P4GBA.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "BW6AXJST7E7P4GBA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BW6AXJST7E7P4GBA.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "BW6AXJST7E7P4GBA.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7340000000" - }, - "appliesTo" : [ ] - }, - "BW6AXJST7E7P4GBA.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "BW6AXJST7E7P4GBA.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "98139" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BW6AXJST7E7P4GBA.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "BW6AXJST7E7P4GBA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BW6AXJST7E7P4GBA.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "BW6AXJST7E7P4GBA.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "85858" - }, - "appliesTo" : [ ] - }, - "BW6AXJST7E7P4GBA.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "BW6AXJST7E7P4GBA.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BW6AXJST7E7P4GBA.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "BW6AXJST7E7P4GBA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BW6AXJST7E7P4GBA.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "BW6AXJST7E7P4GBA.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "75622" - }, - "appliesTo" : [ ] - }, - "BW6AXJST7E7P4GBA.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "BW6AXJST7E7P4GBA.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BW6AXJST7E7P4GBA.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "BW6AXJST7E7P4GBA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BW6AXJST7E7P4GBA.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "BW6AXJST7E7P4GBA.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "43762" - }, - "appliesTo" : [ ] - }, - "BW6AXJST7E7P4GBA.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "BW6AXJST7E7P4GBA.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BW6AXJST7E7P4GBA.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "BW6AXJST7E7P4GBA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BW6AXJST7E7P4GBA.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "BW6AXJST7E7P4GBA.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.4420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "3UP33R2RXCADSPSX" : { - "3UP33R2RXCADSPSX.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "3UP33R2RXCADSPSX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3UP33R2RXCADSPSX.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "3UP33R2RXCADSPSX.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4660" - }, - "appliesTo" : [ ] - }, - "3UP33R2RXCADSPSX.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "3UP33R2RXCADSPSX.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3UP33R2RXCADSPSX.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "3UP33R2RXCADSPSX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3UP33R2RXCADSPSX.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "3UP33R2RXCADSPSX.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3974000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3UP33R2RXCADSPSX.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "3UP33R2RXCADSPSX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3UP33R2RXCADSPSX.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "3UP33R2RXCADSPSX.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2067" - }, - "appliesTo" : [ ] - }, - "3UP33R2RXCADSPSX.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "3UP33R2RXCADSPSX.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3UP33R2RXCADSPSX.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "3UP33R2RXCADSPSX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3UP33R2RXCADSPSX.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "3UP33R2RXCADSPSX.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3456000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3UP33R2RXCADSPSX.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "3UP33R2RXCADSPSX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3UP33R2RXCADSPSX.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "3UP33R2RXCADSPSX.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9478" - }, - "appliesTo" : [ ] - }, - "3UP33R2RXCADSPSX.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "3UP33R2RXCADSPSX.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3UP33R2RXCADSPSX.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "3UP33R2RXCADSPSX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3UP33R2RXCADSPSX.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "3UP33R2RXCADSPSX.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5699000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3UP33R2RXCADSPSX.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "3UP33R2RXCADSPSX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3UP33R2RXCADSPSX.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "3UP33R2RXCADSPSX.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2377" - }, - "appliesTo" : [ ] - }, - "3UP33R2RXCADSPSX.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "3UP33R2RXCADSPSX.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2714000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3UP33R2RXCADSPSX.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "3UP33R2RXCADSPSX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3UP33R2RXCADSPSX.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "3UP33R2RXCADSPSX.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4956000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3UP33R2RXCADSPSX.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "3UP33R2RXCADSPSX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3UP33R2RXCADSPSX.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "3UP33R2RXCADSPSX.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4205" - }, - "appliesTo" : [ ] - }, - "3UP33R2RXCADSPSX.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "3UP33R2RXCADSPSX.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3UP33R2RXCADSPSX.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "3UP33R2RXCADSPSX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3UP33R2RXCADSPSX.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "3UP33R2RXCADSPSX.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1840000000" - }, - "appliesTo" : [ ] - }, - "3UP33R2RXCADSPSX.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "3UP33R2RXCADSPSX.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4836" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3UP33R2RXCADSPSX.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "3UP33R2RXCADSPSX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3UP33R2RXCADSPSX.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "3UP33R2RXCADSPSX.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4052" - }, - "appliesTo" : [ ] - }, - "3UP33R2RXCADSPSX.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "3UP33R2RXCADSPSX.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3UP33R2RXCADSPSX.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "3UP33R2RXCADSPSX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3UP33R2RXCADSPSX.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "3UP33R2RXCADSPSX.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7905" - }, - "appliesTo" : [ ] - }, - "3UP33R2RXCADSPSX.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "3UP33R2RXCADSPSX.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "M3V33TUCANWGSDGH" : { - "M3V33TUCANWGSDGH.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "M3V33TUCANWGSDGH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M3V33TUCANWGSDGH.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "M3V33TUCANWGSDGH.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "64101" - }, - "appliesTo" : [ ] - }, - "M3V33TUCANWGSDGH.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "M3V33TUCANWGSDGH.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "M3V33TUCANWGSDGH.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "M3V33TUCANWGSDGH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M3V33TUCANWGSDGH.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "M3V33TUCANWGSDGH.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.6930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "M3V33TUCANWGSDGH.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "M3V33TUCANWGSDGH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "M3V33TUCANWGSDGH.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "M3V33TUCANWGSDGH.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "377511" - }, - "appliesTo" : [ ] - }, - "M3V33TUCANWGSDGH.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "M3V33TUCANWGSDGH.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "M3V33TUCANWGSDGH.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "M3V33TUCANWGSDGH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "M3V33TUCANWGSDGH.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "M3V33TUCANWGSDGH.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "63442" - }, - "appliesTo" : [ ] - }, - "M3V33TUCANWGSDGH.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "M3V33TUCANWGSDGH.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.2420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "M3V33TUCANWGSDGH.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "M3V33TUCANWGSDGH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "M3V33TUCANWGSDGH.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "M3V33TUCANWGSDGH.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.6570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "M3V33TUCANWGSDGH.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "M3V33TUCANWGSDGH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M3V33TUCANWGSDGH.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "M3V33TUCANWGSDGH.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "127998" - }, - "appliesTo" : [ ] - }, - "M3V33TUCANWGSDGH.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "M3V33TUCANWGSDGH.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "M3V33TUCANWGSDGH.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "M3V33TUCANWGSDGH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "M3V33TUCANWGSDGH.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "M3V33TUCANWGSDGH.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "126706" - }, - "appliesTo" : [ ] - }, - "M3V33TUCANWGSDGH.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "M3V33TUCANWGSDGH.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "M3V33TUCANWGSDGH.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "M3V33TUCANWGSDGH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "M3V33TUCANWGSDGH.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "M3V33TUCANWGSDGH.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.5380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "M3V33TUCANWGSDGH.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "M3V33TUCANWGSDGH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "M3V33TUCANWGSDGH.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "M3V33TUCANWGSDGH.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "370551" - }, - "appliesTo" : [ ] - }, - "M3V33TUCANWGSDGH.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "M3V33TUCANWGSDGH.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "M3V33TUCANWGSDGH.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "M3V33TUCANWGSDGH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "M3V33TUCANWGSDGH.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "M3V33TUCANWGSDGH.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.0700000000" - }, - "appliesTo" : [ ] - }, - "M3V33TUCANWGSDGH.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "M3V33TUCANWGSDGH.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "185802" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "M3V33TUCANWGSDGH.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "M3V33TUCANWGSDGH", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "M3V33TUCANWGSDGH.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "M3V33TUCANWGSDGH.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "188995" - }, - "appliesTo" : [ ] - }, - "M3V33TUCANWGSDGH.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "M3V33TUCANWGSDGH.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.1920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "G9R9MZY25V8QGW6J" : { - "G9R9MZY25V8QGW6J.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "G9R9MZY25V8QGW6J", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "G9R9MZY25V8QGW6J.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "G9R9MZY25V8QGW6J.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5688" - }, - "appliesTo" : [ ] - }, - "G9R9MZY25V8QGW6J.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "G9R9MZY25V8QGW6J.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "G9R9MZY25V8QGW6J.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "G9R9MZY25V8QGW6J", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "G9R9MZY25V8QGW6J.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "G9R9MZY25V8QGW6J.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3483" - }, - "appliesTo" : [ ] - }, - "G9R9MZY25V8QGW6J.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "G9R9MZY25V8QGW6J.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "G9R9MZY25V8QGW6J.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "G9R9MZY25V8QGW6J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "G9R9MZY25V8QGW6J.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "G9R9MZY25V8QGW6J.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6255" - }, - "appliesTo" : [ ] - }, - "G9R9MZY25V8QGW6J.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "G9R9MZY25V8QGW6J.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "G9R9MZY25V8QGW6J.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "G9R9MZY25V8QGW6J", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "G9R9MZY25V8QGW6J.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "G9R9MZY25V8QGW6J.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "G9R9MZY25V8QGW6J.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "G9R9MZY25V8QGW6J.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12112" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "G9R9MZY25V8QGW6J.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "G9R9MZY25V8QGW6J", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "G9R9MZY25V8QGW6J.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "G9R9MZY25V8QGW6J.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "G9R9MZY25V8QGW6J.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "G9R9MZY25V8QGW6J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "G9R9MZY25V8QGW6J.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "G9R9MZY25V8QGW6J.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3620000000" - }, - "appliesTo" : [ ] - }, - "G9R9MZY25V8QGW6J.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "G9R9MZY25V8QGW6J.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3168" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "G9R9MZY25V8QGW6J.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "G9R9MZY25V8QGW6J", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "G9R9MZY25V8QGW6J.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "G9R9MZY25V8QGW6J.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "G9R9MZY25V8QGW6J.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "G9R9MZY25V8QGW6J", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "G9R9MZY25V8QGW6J.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "G9R9MZY25V8QGW6J.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1960000000" - }, - "appliesTo" : [ ] - }, - "G9R9MZY25V8QGW6J.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "G9R9MZY25V8QGW6J.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7734" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "G9R9MZY25V8QGW6J.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "G9R9MZY25V8QGW6J", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "G9R9MZY25V8QGW6J.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "G9R9MZY25V8QGW6J.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16021" - }, - "appliesTo" : [ ] - }, - "G9R9MZY25V8QGW6J.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "G9R9MZY25V8QGW6J.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "G9R9MZY25V8QGW6J.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "G9R9MZY25V8QGW6J", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "G9R9MZY25V8QGW6J.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "G9R9MZY25V8QGW6J.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9757" - }, - "appliesTo" : [ ] - }, - "G9R9MZY25V8QGW6J.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "G9R9MZY25V8QGW6J.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "G9R9MZY25V8QGW6J.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "G9R9MZY25V8QGW6J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "G9R9MZY25V8QGW6J.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "G9R9MZY25V8QGW6J.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "7EN7RS9DVKDM4WXZ" : { - "7EN7RS9DVKDM4WXZ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "7EN7RS9DVKDM4WXZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7EN7RS9DVKDM4WXZ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "7EN7RS9DVKDM4WXZ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5216" - }, - "appliesTo" : [ ] - }, - "7EN7RS9DVKDM4WXZ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "7EN7RS9DVKDM4WXZ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7EN7RS9DVKDM4WXZ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "7EN7RS9DVKDM4WXZ", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "7EN7RS9DVKDM4WXZ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "7EN7RS9DVKDM4WXZ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7EN7RS9DVKDM4WXZ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "7EN7RS9DVKDM4WXZ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7EN7RS9DVKDM4WXZ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "7EN7RS9DVKDM4WXZ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14083" - }, - "appliesTo" : [ ] - }, - "7EN7RS9DVKDM4WXZ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "7EN7RS9DVKDM4WXZ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7EN7RS9DVKDM4WXZ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "7EN7RS9DVKDM4WXZ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7EN7RS9DVKDM4WXZ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "7EN7RS9DVKDM4WXZ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8691" - }, - "appliesTo" : [ ] - }, - "7EN7RS9DVKDM4WXZ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "7EN7RS9DVKDM4WXZ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7EN7RS9DVKDM4WXZ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "7EN7RS9DVKDM4WXZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7EN7RS9DVKDM4WXZ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "7EN7RS9DVKDM4WXZ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16506" - }, - "appliesTo" : [ ] - }, - "7EN7RS9DVKDM4WXZ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "7EN7RS9DVKDM4WXZ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7EN7RS9DVKDM4WXZ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "7EN7RS9DVKDM4WXZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7EN7RS9DVKDM4WXZ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "7EN7RS9DVKDM4WXZ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8126" - }, - "appliesTo" : [ ] - }, - "7EN7RS9DVKDM4WXZ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "7EN7RS9DVKDM4WXZ.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7EN7RS9DVKDM4WXZ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "7EN7RS9DVKDM4WXZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7EN7RS9DVKDM4WXZ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "7EN7RS9DVKDM4WXZ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7EN7RS9DVKDM4WXZ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "7EN7RS9DVKDM4WXZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7EN7RS9DVKDM4WXZ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "7EN7RS9DVKDM4WXZ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9983" - }, - "appliesTo" : [ ] - }, - "7EN7RS9DVKDM4WXZ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "7EN7RS9DVKDM4WXZ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7EN7RS9DVKDM4WXZ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "7EN7RS9DVKDM4WXZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7EN7RS9DVKDM4WXZ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "7EN7RS9DVKDM4WXZ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7EN7RS9DVKDM4WXZ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "7EN7RS9DVKDM4WXZ", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "7EN7RS9DVKDM4WXZ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "7EN7RS9DVKDM4WXZ.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "7EN7RS9DVKDM4WXZ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "7EN7RS9DVKDM4WXZ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23466" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7EN7RS9DVKDM4WXZ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "7EN7RS9DVKDM4WXZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7EN7RS9DVKDM4WXZ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "7EN7RS9DVKDM4WXZ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5810000000" - }, - "appliesTo" : [ ] - }, - "7EN7RS9DVKDM4WXZ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "7EN7RS9DVKDM4WXZ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5093" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "H7FHBN6ZTC6EJQ2N" : { - "H7FHBN6ZTC6EJQ2N.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "H7FHBN6ZTC6EJQ2N", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "H7FHBN6ZTC6EJQ2N.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "H7FHBN6ZTC6EJQ2N.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9050000000" - }, - "appliesTo" : [ ] - }, - "H7FHBN6ZTC6EJQ2N.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "H7FHBN6ZTC6EJQ2N.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7993" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "H7FHBN6ZTC6EJQ2N.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "H7FHBN6ZTC6EJQ2N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H7FHBN6ZTC6EJQ2N.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "H7FHBN6ZTC6EJQ2N.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18013" - }, - "appliesTo" : [ ] - }, - "H7FHBN6ZTC6EJQ2N.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "H7FHBN6ZTC6EJQ2N.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "H7FHBN6ZTC6EJQ2N.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "H7FHBN6ZTC6EJQ2N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H7FHBN6ZTC6EJQ2N.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "H7FHBN6ZTC6EJQ2N.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "H7FHBN6ZTC6EJQ2N.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "H7FHBN6ZTC6EJQ2N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H7FHBN6ZTC6EJQ2N.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "H7FHBN6ZTC6EJQ2N.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9218" - }, - "appliesTo" : [ ] - }, - "H7FHBN6ZTC6EJQ2N.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "H7FHBN6ZTC6EJQ2N.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "H7FHBN6ZTC6EJQ2N.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "H7FHBN6ZTC6EJQ2N", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "H7FHBN6ZTC6EJQ2N.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "H7FHBN6ZTC6EJQ2N.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "H7FHBN6ZTC6EJQ2N.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "H7FHBN6ZTC6EJQ2N.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37183" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "H7FHBN6ZTC6EJQ2N.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "H7FHBN6ZTC6EJQ2N", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "H7FHBN6ZTC6EJQ2N.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "H7FHBN6ZTC6EJQ2N.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "H7FHBN6ZTC6EJQ2N.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "H7FHBN6ZTC6EJQ2N", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "H7FHBN6ZTC6EJQ2N.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "H7FHBN6ZTC6EJQ2N.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16587" - }, - "appliesTo" : [ ] - }, - "H7FHBN6ZTC6EJQ2N.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "H7FHBN6ZTC6EJQ2N.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "H7FHBN6ZTC6EJQ2N.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "H7FHBN6ZTC6EJQ2N", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "H7FHBN6ZTC6EJQ2N.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "H7FHBN6ZTC6EJQ2N.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "H7FHBN6ZTC6EJQ2N.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "H7FHBN6ZTC6EJQ2N", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "H7FHBN6ZTC6EJQ2N.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "H7FHBN6ZTC6EJQ2N.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18969" - }, - "appliesTo" : [ ] - }, - "H7FHBN6ZTC6EJQ2N.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "H7FHBN6ZTC6EJQ2N.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "H7FHBN6ZTC6EJQ2N.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "H7FHBN6ZTC6EJQ2N", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "H7FHBN6ZTC6EJQ2N.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "H7FHBN6ZTC6EJQ2N.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "H7FHBN6ZTC6EJQ2N.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "H7FHBN6ZTC6EJQ2N", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "H7FHBN6ZTC6EJQ2N.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "H7FHBN6ZTC6EJQ2N.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "H7FHBN6ZTC6EJQ2N.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "H7FHBN6ZTC6EJQ2N.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15611" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "H7FHBN6ZTC6EJQ2N.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "H7FHBN6ZTC6EJQ2N", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "H7FHBN6ZTC6EJQ2N.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "H7FHBN6ZTC6EJQ2N.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31215" - }, - "appliesTo" : [ ] - }, - "H7FHBN6ZTC6EJQ2N.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "H7FHBN6ZTC6EJQ2N.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "MC5Y8Q7EUMRZTRZE" : { - "MC5Y8Q7EUMRZTRZE.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "MC5Y8Q7EUMRZTRZE", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "MC5Y8Q7EUMRZTRZE.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "MC5Y8Q7EUMRZTRZE.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2160000000" - }, - "appliesTo" : [ ] - }, - "MC5Y8Q7EUMRZTRZE.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "MC5Y8Q7EUMRZTRZE.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "84517" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MC5Y8Q7EUMRZTRZE.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "MC5Y8Q7EUMRZTRZE", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "MC5Y8Q7EUMRZTRZE.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "MC5Y8Q7EUMRZTRZE.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.0260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MC5Y8Q7EUMRZTRZE.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "MC5Y8Q7EUMRZTRZE", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "MC5Y8Q7EUMRZTRZE.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "MC5Y8Q7EUMRZTRZE.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "86724" - }, - "appliesTo" : [ ] - }, - "MC5Y8Q7EUMRZTRZE.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "MC5Y8Q7EUMRZTRZE.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MC5Y8Q7EUMRZTRZE.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "MC5Y8Q7EUMRZTRZE", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "MC5Y8Q7EUMRZTRZE.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "MC5Y8Q7EUMRZTRZE.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "167267" - }, - "appliesTo" : [ ] - }, - "MC5Y8Q7EUMRZTRZE.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "MC5Y8Q7EUMRZTRZE.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MC5Y8Q7EUMRZTRZE.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "MC5Y8Q7EUMRZTRZE", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "MC5Y8Q7EUMRZTRZE.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "MC5Y8Q7EUMRZTRZE.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.7030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MC5Y8Q7EUMRZTRZE.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "MC5Y8Q7EUMRZTRZE", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "MC5Y8Q7EUMRZTRZE.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "MC5Y8Q7EUMRZTRZE.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30415" - }, - "appliesTo" : [ ] - }, - "MC5Y8Q7EUMRZTRZE.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "MC5Y8Q7EUMRZTRZE.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MC5Y8Q7EUMRZTRZE.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "MC5Y8Q7EUMRZTRZE", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "MC5Y8Q7EUMRZTRZE.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "MC5Y8Q7EUMRZTRZE.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "60544" - }, - "appliesTo" : [ ] - }, - "MC5Y8Q7EUMRZTRZE.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "MC5Y8Q7EUMRZTRZE.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MC5Y8Q7EUMRZTRZE.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "MC5Y8Q7EUMRZTRZE", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "MC5Y8Q7EUMRZTRZE.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "MC5Y8Q7EUMRZTRZE.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.5220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MC5Y8Q7EUMRZTRZE.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "MC5Y8Q7EUMRZTRZE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MC5Y8Q7EUMRZTRZE.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "MC5Y8Q7EUMRZTRZE.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.2830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MC5Y8Q7EUMRZTRZE.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "MC5Y8Q7EUMRZTRZE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MC5Y8Q7EUMRZTRZE.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "MC5Y8Q7EUMRZTRZE.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "62645" - }, - "appliesTo" : [ ] - }, - "MC5Y8Q7EUMRZTRZE.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "MC5Y8Q7EUMRZTRZE.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MC5Y8Q7EUMRZTRZE.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "MC5Y8Q7EUMRZTRZE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MC5Y8Q7EUMRZTRZE.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "MC5Y8Q7EUMRZTRZE.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31487" - }, - "appliesTo" : [ ] - }, - "MC5Y8Q7EUMRZTRZE.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "MC5Y8Q7EUMRZTRZE.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MC5Y8Q7EUMRZTRZE.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "MC5Y8Q7EUMRZTRZE", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "MC5Y8Q7EUMRZTRZE.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "MC5Y8Q7EUMRZTRZE.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "172771" - }, - "appliesTo" : [ ] - }, - "MC5Y8Q7EUMRZTRZE.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "MC5Y8Q7EUMRZTRZE.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "P2HREWU59F8JRCVB" : { - "P2HREWU59F8JRCVB.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "P2HREWU59F8JRCVB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "P2HREWU59F8JRCVB.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "P2HREWU59F8JRCVB.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "P2HREWU59F8JRCVB.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "P2HREWU59F8JRCVB", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "P2HREWU59F8JRCVB.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "P2HREWU59F8JRCVB.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22370" - }, - "appliesTo" : [ ] - }, - "P2HREWU59F8JRCVB.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "P2HREWU59F8JRCVB.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "P2HREWU59F8JRCVB.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "P2HREWU59F8JRCVB", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "P2HREWU59F8JRCVB.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "P2HREWU59F8JRCVB.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "45471" - }, - "appliesTo" : [ ] - }, - "P2HREWU59F8JRCVB.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "P2HREWU59F8JRCVB.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "P2HREWU59F8JRCVB.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "P2HREWU59F8JRCVB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "P2HREWU59F8JRCVB.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "P2HREWU59F8JRCVB.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2364000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "P2HREWU59F8JRCVB.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "P2HREWU59F8JRCVB", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "P2HREWU59F8JRCVB.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "P2HREWU59F8JRCVB.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23061" - }, - "appliesTo" : [ ] - }, - "P2HREWU59F8JRCVB.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "P2HREWU59F8JRCVB.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "P2HREWU59F8JRCVB.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "P2HREWU59F8JRCVB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P2HREWU59F8JRCVB.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "P2HREWU59F8JRCVB.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26412" - }, - "appliesTo" : [ ] - }, - "P2HREWU59F8JRCVB.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "P2HREWU59F8JRCVB.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "P2HREWU59F8JRCVB.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "P2HREWU59F8JRCVB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "P2HREWU59F8JRCVB.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "P2HREWU59F8JRCVB.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1052000000" - }, - "appliesTo" : [ ] - }, - "P2HREWU59F8JRCVB.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "P2HREWU59F8JRCVB.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25628" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "P2HREWU59F8JRCVB.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "P2HREWU59F8JRCVB", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "P2HREWU59F8JRCVB.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "P2HREWU59F8JRCVB.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11185" - }, - "appliesTo" : [ ] - }, - "P2HREWU59F8JRCVB.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "P2HREWU59F8JRCVB.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "P2HREWU59F8JRCVB.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "P2HREWU59F8JRCVB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "P2HREWU59F8JRCVB.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "P2HREWU59F8JRCVB.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9617000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "P2HREWU59F8JRCVB.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "P2HREWU59F8JRCVB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "P2HREWU59F8JRCVB.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "P2HREWU59F8JRCVB.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "53648" - }, - "appliesTo" : [ ] - }, - "P2HREWU59F8JRCVB.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "P2HREWU59F8JRCVB.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "P2HREWU59F8JRCVB.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "P2HREWU59F8JRCVB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P2HREWU59F8JRCVB.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "P2HREWU59F8JRCVB.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2212000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "P2HREWU59F8JRCVB.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "P2HREWU59F8JRCVB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P2HREWU59F8JRCVB.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "P2HREWU59F8JRCVB.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12895" - }, - "appliesTo" : [ ] - }, - "P2HREWU59F8JRCVB.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "P2HREWU59F8JRCVB.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "YAQ9JKWS8Q8NSPYJ" : { - "YAQ9JKWS8Q8NSPYJ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "YAQ9JKWS8Q8NSPYJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YAQ9JKWS8Q8NSPYJ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "YAQ9JKWS8Q8NSPYJ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1651000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YAQ9JKWS8Q8NSPYJ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YAQ9JKWS8Q8NSPYJ", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "YAQ9JKWS8Q8NSPYJ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YAQ9JKWS8Q8NSPYJ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1565000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YAQ9JKWS8Q8NSPYJ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "YAQ9JKWS8Q8NSPYJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YAQ9JKWS8Q8NSPYJ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "YAQ9JKWS8Q8NSPYJ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "709" - }, - "appliesTo" : [ ] - }, - "YAQ9JKWS8Q8NSPYJ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "YAQ9JKWS8Q8NSPYJ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YAQ9JKWS8Q8NSPYJ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "YAQ9JKWS8Q8NSPYJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YAQ9JKWS8Q8NSPYJ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "YAQ9JKWS8Q8NSPYJ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1408" - }, - "appliesTo" : [ ] - }, - "YAQ9JKWS8Q8NSPYJ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "YAQ9JKWS8Q8NSPYJ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YAQ9JKWS8Q8NSPYJ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YAQ9JKWS8Q8NSPYJ", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "YAQ9JKWS8Q8NSPYJ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YAQ9JKWS8Q8NSPYJ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0769000000" - }, - "appliesTo" : [ ] - }, - "YAQ9JKWS8Q8NSPYJ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YAQ9JKWS8Q8NSPYJ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "673" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YAQ9JKWS8Q8NSPYJ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "YAQ9JKWS8Q8NSPYJ", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "YAQ9JKWS8Q8NSPYJ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "YAQ9JKWS8Q8NSPYJ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3701" - }, - "appliesTo" : [ ] - }, - "YAQ9JKWS8Q8NSPYJ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "YAQ9JKWS8Q8NSPYJ.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YAQ9JKWS8Q8NSPYJ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YAQ9JKWS8Q8NSPYJ", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "YAQ9JKWS8Q8NSPYJ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YAQ9JKWS8Q8NSPYJ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3519" - }, - "appliesTo" : [ ] - }, - "YAQ9JKWS8Q8NSPYJ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YAQ9JKWS8Q8NSPYJ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YAQ9JKWS8Q8NSPYJ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "YAQ9JKWS8Q8NSPYJ", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "YAQ9JKWS8Q8NSPYJ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "YAQ9JKWS8Q8NSPYJ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1391000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YAQ9JKWS8Q8NSPYJ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "YAQ9JKWS8Q8NSPYJ", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "YAQ9JKWS8Q8NSPYJ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "YAQ9JKWS8Q8NSPYJ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1451000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YAQ9JKWS8Q8NSPYJ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YAQ9JKWS8Q8NSPYJ", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "YAQ9JKWS8Q8NSPYJ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YAQ9JKWS8Q8NSPYJ.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YAQ9JKWS8Q8NSPYJ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YAQ9JKWS8Q8NSPYJ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1337" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YAQ9JKWS8Q8NSPYJ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "YAQ9JKWS8Q8NSPYJ", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "YAQ9JKWS8Q8NSPYJ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "YAQ9JKWS8Q8NSPYJ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1862" - }, - "appliesTo" : [ ] - }, - "YAQ9JKWS8Q8NSPYJ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "YAQ9JKWS8Q8NSPYJ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0708000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YAQ9JKWS8Q8NSPYJ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YAQ9JKWS8Q8NSPYJ", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "YAQ9JKWS8Q8NSPYJ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YAQ9JKWS8Q8NSPYJ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1789" - }, - "appliesTo" : [ ] - }, - "YAQ9JKWS8Q8NSPYJ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YAQ9JKWS8Q8NSPYJ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0681000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "3GAF7GUVFB6WDJQR" : { - "3GAF7GUVFB6WDJQR.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "3GAF7GUVFB6WDJQR", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "3GAF7GUVFB6WDJQR.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "3GAF7GUVFB6WDJQR.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3GAF7GUVFB6WDJQR.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "3GAF7GUVFB6WDJQR", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "3GAF7GUVFB6WDJQR.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "3GAF7GUVFB6WDJQR.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13758" - }, - "appliesTo" : [ ] - }, - "3GAF7GUVFB6WDJQR.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "3GAF7GUVFB6WDJQR.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3GAF7GUVFB6WDJQR.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "3GAF7GUVFB6WDJQR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3GAF7GUVFB6WDJQR.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "3GAF7GUVFB6WDJQR.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12073" - }, - "appliesTo" : [ ] - }, - "3GAF7GUVFB6WDJQR.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "3GAF7GUVFB6WDJQR.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3GAF7GUVFB6WDJQR.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "3GAF7GUVFB6WDJQR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3GAF7GUVFB6WDJQR.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "3GAF7GUVFB6WDJQR.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3GAF7GUVFB6WDJQR.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "3GAF7GUVFB6WDJQR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3GAF7GUVFB6WDJQR.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "3GAF7GUVFB6WDJQR.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6064" - }, - "appliesTo" : [ ] - }, - "3GAF7GUVFB6WDJQR.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "3GAF7GUVFB6WDJQR.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3GAF7GUVFB6WDJQR.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "3GAF7GUVFB6WDJQR", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "3GAF7GUVFB6WDJQR.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "3GAF7GUVFB6WDJQR.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "3GAF7GUVFB6WDJQR.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "3GAF7GUVFB6WDJQR.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "36613" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3GAF7GUVFB6WDJQR.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "3GAF7GUVFB6WDJQR", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3GAF7GUVFB6WDJQR.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "3GAF7GUVFB6WDJQR.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5084" - }, - "appliesTo" : [ ] - }, - "3GAF7GUVFB6WDJQR.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "3GAF7GUVFB6WDJQR.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3GAF7GUVFB6WDJQR.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "3GAF7GUVFB6WDJQR", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3GAF7GUVFB6WDJQR.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "3GAF7GUVFB6WDJQR.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12443" - }, - "appliesTo" : [ ] - }, - "3GAF7GUVFB6WDJQR.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "3GAF7GUVFB6WDJQR.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3GAF7GUVFB6WDJQR.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "3GAF7GUVFB6WDJQR", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3GAF7GUVFB6WDJQR.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "3GAF7GUVFB6WDJQR.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32307" - }, - "appliesTo" : [ ] - }, - "3GAF7GUVFB6WDJQR.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "3GAF7GUVFB6WDJQR.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3GAF7GUVFB6WDJQR.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "3GAF7GUVFB6WDJQR", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "3GAF7GUVFB6WDJQR.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "3GAF7GUVFB6WDJQR.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3GAF7GUVFB6WDJQR.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "3GAF7GUVFB6WDJQR", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "3GAF7GUVFB6WDJQR.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "3GAF7GUVFB6WDJQR.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14822" - }, - "appliesTo" : [ ] - }, - "3GAF7GUVFB6WDJQR.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "3GAF7GUVFB6WDJQR.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "B7KQBWQQMASEJN3N" : { - "B7KQBWQQMASEJN3N.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "B7KQBWQQMASEJN3N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "B7KQBWQQMASEJN3N.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "B7KQBWQQMASEJN3N.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6877" - }, - "appliesTo" : [ ] - }, - "B7KQBWQQMASEJN3N.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "B7KQBWQQMASEJN3N.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "B7KQBWQQMASEJN3N.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "B7KQBWQQMASEJN3N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "B7KQBWQQMASEJN3N.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "B7KQBWQQMASEJN3N.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "B7KQBWQQMASEJN3N.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "B7KQBWQQMASEJN3N", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "B7KQBWQQMASEJN3N.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "B7KQBWQQMASEJN3N.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12152" - }, - "appliesTo" : [ ] - }, - "B7KQBWQQMASEJN3N.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "B7KQBWQQMASEJN3N.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "B7KQBWQQMASEJN3N.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "B7KQBWQQMASEJN3N", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "B7KQBWQQMASEJN3N.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "B7KQBWQQMASEJN3N.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17895" - }, - "appliesTo" : [ ] - }, - "B7KQBWQQMASEJN3N.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "B7KQBWQQMASEJN3N.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "B7KQBWQQMASEJN3N.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "B7KQBWQQMASEJN3N", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "B7KQBWQQMASEJN3N.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "B7KQBWQQMASEJN3N.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5410000000" - }, - "appliesTo" : [ ] - }, - "B7KQBWQQMASEJN3N.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "B7KQBWQQMASEJN3N.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14223" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "B7KQBWQQMASEJN3N.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "B7KQBWQQMASEJN3N", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "B7KQBWQQMASEJN3N.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "B7KQBWQQMASEJN3N.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "B7KQBWQQMASEJN3N.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "B7KQBWQQMASEJN3N", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "B7KQBWQQMASEJN3N.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "B7KQBWQQMASEJN3N.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26729" - }, - "appliesTo" : [ ] - }, - "B7KQBWQQMASEJN3N.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "B7KQBWQQMASEJN3N.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "B7KQBWQQMASEJN3N.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "B7KQBWQQMASEJN3N", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "B7KQBWQQMASEJN3N.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "B7KQBWQQMASEJN3N.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "B7KQBWQQMASEJN3N.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "B7KQBWQQMASEJN3N", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "B7KQBWQQMASEJN3N.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "B7KQBWQQMASEJN3N.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35074" - }, - "appliesTo" : [ ] - }, - "B7KQBWQQMASEJN3N.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "B7KQBWQQMASEJN3N.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "B7KQBWQQMASEJN3N.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "B7KQBWQQMASEJN3N", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "B7KQBWQQMASEJN3N.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "B7KQBWQQMASEJN3N.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "B7KQBWQQMASEJN3N.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "B7KQBWQQMASEJN3N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "B7KQBWQQMASEJN3N.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "B7KQBWQQMASEJN3N.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "B7KQBWQQMASEJN3N.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "B7KQBWQQMASEJN3N.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13656" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "B7KQBWQQMASEJN3N.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "B7KQBWQQMASEJN3N", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "B7KQBWQQMASEJN3N.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "B7KQBWQQMASEJN3N.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6201" - }, - "appliesTo" : [ ] - }, - "B7KQBWQQMASEJN3N.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "B7KQBWQQMASEJN3N.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "D8R4U4YGJ7FBAM9V" : { - "D8R4U4YGJ7FBAM9V.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "D8R4U4YGJ7FBAM9V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "D8R4U4YGJ7FBAM9V.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "D8R4U4YGJ7FBAM9V.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8430000000" - }, - "appliesTo" : [ ] - }, - "D8R4U4YGJ7FBAM9V.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "D8R4U4YGJ7FBAM9V.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16147" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "D8R4U4YGJ7FBAM9V.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "D8R4U4YGJ7FBAM9V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "D8R4U4YGJ7FBAM9V.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "D8R4U4YGJ7FBAM9V.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "D8R4U4YGJ7FBAM9V.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "D8R4U4YGJ7FBAM9V", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "D8R4U4YGJ7FBAM9V.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "D8R4U4YGJ7FBAM9V.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7060000000" - }, - "appliesTo" : [ ] - }, - "D8R4U4YGJ7FBAM9V.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "D8R4U4YGJ7FBAM9V.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34653" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "D8R4U4YGJ7FBAM9V.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "D8R4U4YGJ7FBAM9V", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "D8R4U4YGJ7FBAM9V.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "D8R4U4YGJ7FBAM9V.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37181" - }, - "appliesTo" : [ ] - }, - "D8R4U4YGJ7FBAM9V.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "D8R4U4YGJ7FBAM9V.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "D8R4U4YGJ7FBAM9V.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "D8R4U4YGJ7FBAM9V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "D8R4U4YGJ7FBAM9V.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "D8R4U4YGJ7FBAM9V.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32004" - }, - "appliesTo" : [ ] - }, - "D8R4U4YGJ7FBAM9V.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "D8R4U4YGJ7FBAM9V.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "D8R4U4YGJ7FBAM9V.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "D8R4U4YGJ7FBAM9V", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "D8R4U4YGJ7FBAM9V.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "D8R4U4YGJ7FBAM9V.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "D8R4U4YGJ7FBAM9V.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "D8R4U4YGJ7FBAM9V.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19928" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "D8R4U4YGJ7FBAM9V.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "D8R4U4YGJ7FBAM9V", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "D8R4U4YGJ7FBAM9V.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "D8R4U4YGJ7FBAM9V.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "D8R4U4YGJ7FBAM9V.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "D8R4U4YGJ7FBAM9V", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "D8R4U4YGJ7FBAM9V.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "D8R4U4YGJ7FBAM9V.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "D8R4U4YGJ7FBAM9V.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "D8R4U4YGJ7FBAM9V.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "50018" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "D8R4U4YGJ7FBAM9V.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "D8R4U4YGJ7FBAM9V", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "D8R4U4YGJ7FBAM9V.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "D8R4U4YGJ7FBAM9V.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "56075" - }, - "appliesTo" : [ ] - }, - "D8R4U4YGJ7FBAM9V.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "D8R4U4YGJ7FBAM9V.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "D8R4U4YGJ7FBAM9V.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "D8R4U4YGJ7FBAM9V", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "D8R4U4YGJ7FBAM9V.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "D8R4U4YGJ7FBAM9V.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13216" - }, - "appliesTo" : [ ] - }, - "D8R4U4YGJ7FBAM9V.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "D8R4U4YGJ7FBAM9V.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "D8R4U4YGJ7FBAM9V.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "D8R4U4YGJ7FBAM9V", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "D8R4U4YGJ7FBAM9V.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "D8R4U4YGJ7FBAM9V.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "SSME5U3BWQXEH2ES" : { - "SSME5U3BWQXEH2ES.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SSME5U3BWQXEH2ES", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "SSME5U3BWQXEH2ES.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SSME5U3BWQXEH2ES.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "400" - }, - "appliesTo" : [ ] - }, - "SSME5U3BWQXEH2ES.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SSME5U3BWQXEH2ES.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SSME5U3BWQXEH2ES.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SSME5U3BWQXEH2ES", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "SSME5U3BWQXEH2ES.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SSME5U3BWQXEH2ES.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SSME5U3BWQXEH2ES.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SSME5U3BWQXEH2ES", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "SSME5U3BWQXEH2ES.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SSME5U3BWQXEH2ES.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0230000000" - }, - "appliesTo" : [ ] - }, - "SSME5U3BWQXEH2ES.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SSME5U3BWQXEH2ES.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "232" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SSME5U3BWQXEH2ES.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SSME5U3BWQXEH2ES", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "SSME5U3BWQXEH2ES.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SSME5U3BWQXEH2ES.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "425" - }, - "appliesTo" : [ ] - }, - "SSME5U3BWQXEH2ES.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SSME5U3BWQXEH2ES.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SSME5U3BWQXEH2ES.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SSME5U3BWQXEH2ES", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "SSME5U3BWQXEH2ES.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SSME5U3BWQXEH2ES.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SSME5U3BWQXEH2ES.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SSME5U3BWQXEH2ES.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "919" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "VWMNXYV7FJNWU55C" : { - "VWMNXYV7FJNWU55C.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "VWMNXYV7FJNWU55C", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "VWMNXYV7FJNWU55C.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "VWMNXYV7FJNWU55C.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3267" - }, - "appliesTo" : [ ] - }, - "VWMNXYV7FJNWU55C.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "VWMNXYV7FJNWU55C.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VWMNXYV7FJNWU55C.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "VWMNXYV7FJNWU55C", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "VWMNXYV7FJNWU55C.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "VWMNXYV7FJNWU55C.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1350000000" - }, - "appliesTo" : [ ] - }, - "VWMNXYV7FJNWU55C.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "VWMNXYV7FJNWU55C.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3164" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VWMNXYV7FJNWU55C.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "VWMNXYV7FJNWU55C", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "VWMNXYV7FJNWU55C.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "VWMNXYV7FJNWU55C.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "VWMNXYV7FJNWU55C.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "VWMNXYV7FJNWU55C.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6315" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VWMNXYV7FJNWU55C.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "VWMNXYV7FJNWU55C", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "VWMNXYV7FJNWU55C.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "VWMNXYV7FJNWU55C.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1976" - }, - "appliesTo" : [ ] - }, - "VWMNXYV7FJNWU55C.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "VWMNXYV7FJNWU55C.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VWMNXYV7FJNWU55C.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "VWMNXYV7FJNWU55C", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "VWMNXYV7FJNWU55C.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "VWMNXYV7FJNWU55C.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "KR92PJED8B49G7EJ" : { - "KR92PJED8B49G7EJ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "KR92PJED8B49G7EJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KR92PJED8B49G7EJ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "KR92PJED8B49G7EJ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3170000000" - }, - "appliesTo" : [ ] - }, - "KR92PJED8B49G7EJ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "KR92PJED8B49G7EJ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11541" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KR92PJED8B49G7EJ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "KR92PJED8B49G7EJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KR92PJED8B49G7EJ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "KR92PJED8B49G7EJ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KR92PJED8B49G7EJ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "KR92PJED8B49G7EJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "KR92PJED8B49G7EJ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "KR92PJED8B49G7EJ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "KR92PJED8B49G7EJ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "KR92PJED8B49G7EJ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19307" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KR92PJED8B49G7EJ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "KR92PJED8B49G7EJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "KR92PJED8B49G7EJ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "KR92PJED8B49G7EJ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11116" - }, - "appliesTo" : [ ] - }, - "KR92PJED8B49G7EJ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "KR92PJED8B49G7EJ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KR92PJED8B49G7EJ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "KR92PJED8B49G7EJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "KR92PJED8B49G7EJ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "KR92PJED8B49G7EJ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "45873" - }, - "appliesTo" : [ ] - }, - "KR92PJED8B49G7EJ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "KR92PJED8B49G7EJ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KR92PJED8B49G7EJ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "KR92PJED8B49G7EJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "KR92PJED8B49G7EJ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "KR92PJED8B49G7EJ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19249" - }, - "appliesTo" : [ ] - }, - "KR92PJED8B49G7EJ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "KR92PJED8B49G7EJ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KR92PJED8B49G7EJ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "KR92PJED8B49G7EJ", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "KR92PJED8B49G7EJ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "KR92PJED8B49G7EJ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KR92PJED8B49G7EJ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "KR92PJED8B49G7EJ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "KR92PJED8B49G7EJ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "KR92PJED8B49G7EJ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6938" - }, - "appliesTo" : [ ] - }, - "KR92PJED8B49G7EJ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "KR92PJED8B49G7EJ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KR92PJED8B49G7EJ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "KR92PJED8B49G7EJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "KR92PJED8B49G7EJ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "KR92PJED8B49G7EJ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KR92PJED8B49G7EJ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "KR92PJED8B49G7EJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "KR92PJED8B49G7EJ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "KR92PJED8B49G7EJ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "55314" - }, - "appliesTo" : [ ] - }, - "KR92PJED8B49G7EJ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "KR92PJED8B49G7EJ.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KR92PJED8B49G7EJ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "KR92PJED8B49G7EJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KR92PJED8B49G7EJ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "KR92PJED8B49G7EJ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22878" - }, - "appliesTo" : [ ] - }, - "KR92PJED8B49G7EJ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "KR92PJED8B49G7EJ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "YJQ6VUEJFXP5T23D" : { - "YJQ6VUEJFXP5T23D.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "YJQ6VUEJFXP5T23D", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YJQ6VUEJFXP5T23D.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "YJQ6VUEJFXP5T23D.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YJQ6VUEJFXP5T23D.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "YJQ6VUEJFXP5T23D", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YJQ6VUEJFXP5T23D.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "YJQ6VUEJFXP5T23D.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4037" - }, - "appliesTo" : [ ] - }, - "YJQ6VUEJFXP5T23D.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "YJQ6VUEJFXP5T23D.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YJQ6VUEJFXP5T23D.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YJQ6VUEJFXP5T23D", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YJQ6VUEJFXP5T23D.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YJQ6VUEJFXP5T23D.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YJQ6VUEJFXP5T23D.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YJQ6VUEJFXP5T23D", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "YJQ6VUEJFXP5T23D.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YJQ6VUEJFXP5T23D.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5205" - }, - "appliesTo" : [ ] - }, - "YJQ6VUEJFXP5T23D.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YJQ6VUEJFXP5T23D.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YJQ6VUEJFXP5T23D.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "YJQ6VUEJFXP5T23D", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "YJQ6VUEJFXP5T23D.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "YJQ6VUEJFXP5T23D.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YJQ6VUEJFXP5T23D.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "YJQ6VUEJFXP5T23D.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22599" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YJQ6VUEJFXP5T23D.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "YJQ6VUEJFXP5T23D", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YJQ6VUEJFXP5T23D.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "YJQ6VUEJFXP5T23D.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YJQ6VUEJFXP5T23D.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "YJQ6VUEJFXP5T23D.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8001" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YJQ6VUEJFXP5T23D.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "YJQ6VUEJFXP5T23D", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "YJQ6VUEJFXP5T23D.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "YJQ6VUEJFXP5T23D.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14998" - }, - "appliesTo" : [ ] - }, - "YJQ6VUEJFXP5T23D.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "YJQ6VUEJFXP5T23D.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YJQ6VUEJFXP5T23D.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "YJQ6VUEJFXP5T23D", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "YJQ6VUEJFXP5T23D.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "YJQ6VUEJFXP5T23D.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YJQ6VUEJFXP5T23D.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YJQ6VUEJFXP5T23D", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "YJQ6VUEJFXP5T23D.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YJQ6VUEJFXP5T23D.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13612" - }, - "appliesTo" : [ ] - }, - "YJQ6VUEJFXP5T23D.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YJQ6VUEJFXP5T23D.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YJQ6VUEJFXP5T23D.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YJQ6VUEJFXP5T23D", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "YJQ6VUEJFXP5T23D.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YJQ6VUEJFXP5T23D.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7842" - }, - "appliesTo" : [ ] - }, - "YJQ6VUEJFXP5T23D.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YJQ6VUEJFXP5T23D.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YJQ6VUEJFXP5T23D.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YJQ6VUEJFXP5T23D", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YJQ6VUEJFXP5T23D.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YJQ6VUEJFXP5T23D.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19658" - }, - "appliesTo" : [ ] - }, - "YJQ6VUEJFXP5T23D.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YJQ6VUEJFXP5T23D.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "CAJNJQPQHHFV48TD" : { - "CAJNJQPQHHFV48TD.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "CAJNJQPQHHFV48TD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CAJNJQPQHHFV48TD.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "CAJNJQPQHHFV48TD.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6782" - }, - "appliesTo" : [ ] - }, - "CAJNJQPQHHFV48TD.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "CAJNJQPQHHFV48TD.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CAJNJQPQHHFV48TD.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "CAJNJQPQHHFV48TD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CAJNJQPQHHFV48TD.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "CAJNJQPQHHFV48TD.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6913" - }, - "appliesTo" : [ ] - }, - "CAJNJQPQHHFV48TD.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "CAJNJQPQHHFV48TD.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CAJNJQPQHHFV48TD.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "CAJNJQPQHHFV48TD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CAJNJQPQHHFV48TD.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "CAJNJQPQHHFV48TD.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3400" - }, - "appliesTo" : [ ] - }, - "CAJNJQPQHHFV48TD.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "CAJNJQPQHHFV48TD.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CAJNJQPQHHFV48TD.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "CAJNJQPQHHFV48TD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CAJNJQPQHHFV48TD.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "CAJNJQPQHHFV48TD.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3750000000" - }, - "appliesTo" : [ ] - }, - "CAJNJQPQHHFV48TD.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "CAJNJQPQHHFV48TD.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9857" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CAJNJQPQHHFV48TD.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "CAJNJQPQHHFV48TD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CAJNJQPQHHFV48TD.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "CAJNJQPQHHFV48TD.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19347" - }, - "appliesTo" : [ ] - }, - "CAJNJQPQHHFV48TD.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "CAJNJQPQHHFV48TD.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CAJNJQPQHHFV48TD.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "CAJNJQPQHHFV48TD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CAJNJQPQHHFV48TD.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "CAJNJQPQHHFV48TD.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CAJNJQPQHHFV48TD.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "CAJNJQPQHHFV48TD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CAJNJQPQHHFV48TD.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "CAJNJQPQHHFV48TD.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CAJNJQPQHHFV48TD.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "CAJNJQPQHHFV48TD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CAJNJQPQHHFV48TD.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "CAJNJQPQHHFV48TD.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9726" - }, - "appliesTo" : [ ] - }, - "CAJNJQPQHHFV48TD.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "CAJNJQPQHHFV48TD.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CAJNJQPQHHFV48TD.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "CAJNJQPQHHFV48TD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CAJNJQPQHHFV48TD.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "CAJNJQPQHHFV48TD.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CAJNJQPQHHFV48TD.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "CAJNJQPQHHFV48TD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CAJNJQPQHHFV48TD.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "CAJNJQPQHHFV48TD.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19675" - }, - "appliesTo" : [ ] - }, - "CAJNJQPQHHFV48TD.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "CAJNJQPQHHFV48TD.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CAJNJQPQHHFV48TD.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "CAJNJQPQHHFV48TD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CAJNJQPQHHFV48TD.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "CAJNJQPQHHFV48TD.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CAJNJQPQHHFV48TD.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "CAJNJQPQHHFV48TD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CAJNJQPQHHFV48TD.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "CAJNJQPQHHFV48TD.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3467" - }, - "appliesTo" : [ ] - }, - "CAJNJQPQHHFV48TD.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "CAJNJQPQHHFV48TD.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "VA8Q43DVPX4YV6NG" : { - "VA8Q43DVPX4YV6NG.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "VA8Q43DVPX4YV6NG", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "VA8Q43DVPX4YV6NG.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "VA8Q43DVPX4YV6NG.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "60" - }, - "appliesTo" : [ ] - }, - "VA8Q43DVPX4YV6NG.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "VA8Q43DVPX4YV6NG.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0068000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VA8Q43DVPX4YV6NG.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "VA8Q43DVPX4YV6NG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VA8Q43DVPX4YV6NG.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "VA8Q43DVPX4YV6NG.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "135" - }, - "appliesTo" : [ ] - }, - "VA8Q43DVPX4YV6NG.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "VA8Q43DVPX4YV6NG.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VA8Q43DVPX4YV6NG.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "VA8Q43DVPX4YV6NG", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "VA8Q43DVPX4YV6NG.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "VA8Q43DVPX4YV6NG.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "275" - }, - "appliesTo" : [ ] - }, - "VA8Q43DVPX4YV6NG.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "VA8Q43DVPX4YV6NG.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VA8Q43DVPX4YV6NG.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "VA8Q43DVPX4YV6NG", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "VA8Q43DVPX4YV6NG.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "VA8Q43DVPX4YV6NG.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VA8Q43DVPX4YV6NG.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "VA8Q43DVPX4YV6NG", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "VA8Q43DVPX4YV6NG.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "VA8Q43DVPX4YV6NG.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0144000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VA8Q43DVPX4YV6NG.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "VA8Q43DVPX4YV6NG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VA8Q43DVPX4YV6NG.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "VA8Q43DVPX4YV6NG.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0079000000" - }, - "appliesTo" : [ ] - }, - "VA8Q43DVPX4YV6NG.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "VA8Q43DVPX4YV6NG.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "69" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VA8Q43DVPX4YV6NG.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "VA8Q43DVPX4YV6NG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VA8Q43DVPX4YV6NG.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "VA8Q43DVPX4YV6NG.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0165000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VA8Q43DVPX4YV6NG.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "VA8Q43DVPX4YV6NG", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "VA8Q43DVPX4YV6NG.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "VA8Q43DVPX4YV6NG.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "140" - }, - "appliesTo" : [ ] - }, - "VA8Q43DVPX4YV6NG.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "VA8Q43DVPX4YV6NG.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0053000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VA8Q43DVPX4YV6NG.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "VA8Q43DVPX4YV6NG", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "VA8Q43DVPX4YV6NG.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "VA8Q43DVPX4YV6NG.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0115000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VA8Q43DVPX4YV6NG.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "VA8Q43DVPX4YV6NG", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "VA8Q43DVPX4YV6NG.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "VA8Q43DVPX4YV6NG.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0046000000" - }, - "appliesTo" : [ ] - }, - "VA8Q43DVPX4YV6NG.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "VA8Q43DVPX4YV6NG.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "122" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VA8Q43DVPX4YV6NG.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "VA8Q43DVPX4YV6NG", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "VA8Q43DVPX4YV6NG.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "VA8Q43DVPX4YV6NG.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "VA8Q43DVPX4YV6NG.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "VA8Q43DVPX4YV6NG.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "229" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VA8Q43DVPX4YV6NG.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "VA8Q43DVPX4YV6NG", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "VA8Q43DVPX4YV6NG.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "VA8Q43DVPX4YV6NG.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "VA8Q43DVPX4YV6NG.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "VA8Q43DVPX4YV6NG.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "118" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "AG87TQB4PQQPZXFK" : { - "AG87TQB4PQQPZXFK.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "AG87TQB4PQQPZXFK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AG87TQB4PQQPZXFK.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "AG87TQB4PQQPZXFK.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "122" - }, - "appliesTo" : [ ] - }, - "AG87TQB4PQQPZXFK.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "AG87TQB4PQQPZXFK.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0046000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AG87TQB4PQQPZXFK.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "AG87TQB4PQQPZXFK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AG87TQB4PQQPZXFK.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "AG87TQB4PQQPZXFK.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "229" - }, - "appliesTo" : [ ] - }, - "AG87TQB4PQQPZXFK.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "AG87TQB4PQQPZXFK.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AG87TQB4PQQPZXFK.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "AG87TQB4PQQPZXFK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AG87TQB4PQQPZXFK.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "AG87TQB4PQQPZXFK.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "AG87TQB4PQQPZXFK.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "AG87TQB4PQQPZXFK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AG87TQB4PQQPZXFK.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "AG87TQB4PQQPZXFK.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0144000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "AG87TQB4PQQPZXFK.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "AG87TQB4PQQPZXFK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AG87TQB4PQQPZXFK.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "AG87TQB4PQQPZXFK.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "60" - }, - "appliesTo" : [ ] - }, - "AG87TQB4PQQPZXFK.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "AG87TQB4PQQPZXFK.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0068000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AG87TQB4PQQPZXFK.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "AG87TQB4PQQPZXFK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AG87TQB4PQQPZXFK.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "AG87TQB4PQQPZXFK.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "118" - }, - "appliesTo" : [ ] - }, - "AG87TQB4PQQPZXFK.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "AG87TQB4PQQPZXFK.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "RHSXCZ3G6S7CMC36" : { - "RHSXCZ3G6S7CMC36.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "RHSXCZ3G6S7CMC36", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "RHSXCZ3G6S7CMC36.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "RHSXCZ3G6S7CMC36.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0740000000" - }, - "appliesTo" : [ ] - }, - "RHSXCZ3G6S7CMC36.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "RHSXCZ3G6S7CMC36.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "706" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RHSXCZ3G6S7CMC36.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "RHSXCZ3G6S7CMC36", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RHSXCZ3G6S7CMC36.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "RHSXCZ3G6S7CMC36.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RHSXCZ3G6S7CMC36.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "RHSXCZ3G6S7CMC36", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RHSXCZ3G6S7CMC36.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "RHSXCZ3G6S7CMC36.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "780" - }, - "appliesTo" : [ ] - }, - "RHSXCZ3G6S7CMC36.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "RHSXCZ3G6S7CMC36.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RHSXCZ3G6S7CMC36.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "RHSXCZ3G6S7CMC36", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RHSXCZ3G6S7CMC36.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "RHSXCZ3G6S7CMC36.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "RHSXCZ3G6S7CMC36.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "RHSXCZ3G6S7CMC36.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3123" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RHSXCZ3G6S7CMC36.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "RHSXCZ3G6S7CMC36", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RHSXCZ3G6S7CMC36.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "RHSXCZ3G6S7CMC36.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2744" - }, - "appliesTo" : [ ] - }, - "RHSXCZ3G6S7CMC36.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "RHSXCZ3G6S7CMC36.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RHSXCZ3G6S7CMC36.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "RHSXCZ3G6S7CMC36", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RHSXCZ3G6S7CMC36.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "RHSXCZ3G6S7CMC36.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RHSXCZ3G6S7CMC36.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "RHSXCZ3G6S7CMC36", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RHSXCZ3G6S7CMC36.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "RHSXCZ3G6S7CMC36.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1475" - }, - "appliesTo" : [ ] - }, - "RHSXCZ3G6S7CMC36.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "RHSXCZ3G6S7CMC36.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RHSXCZ3G6S7CMC36.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "RHSXCZ3G6S7CMC36", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RHSXCZ3G6S7CMC36.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "RHSXCZ3G6S7CMC36.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1591" - }, - "appliesTo" : [ ] - }, - "RHSXCZ3G6S7CMC36.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "RHSXCZ3G6S7CMC36.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RHSXCZ3G6S7CMC36.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "RHSXCZ3G6S7CMC36", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "RHSXCZ3G6S7CMC36.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "RHSXCZ3G6S7CMC36.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1443" - }, - "appliesTo" : [ ] - }, - "RHSXCZ3G6S7CMC36.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "RHSXCZ3G6S7CMC36.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RHSXCZ3G6S7CMC36.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "RHSXCZ3G6S7CMC36", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RHSXCZ3G6S7CMC36.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "RHSXCZ3G6S7CMC36.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RHSXCZ3G6S7CMC36.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "RHSXCZ3G6S7CMC36", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "RHSXCZ3G6S7CMC36.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "RHSXCZ3G6S7CMC36.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "RHSXCZ3G6S7CMC36.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "RHSXCZ3G6S7CMC36.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1329" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RHSXCZ3G6S7CMC36.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "RHSXCZ3G6S7CMC36", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RHSXCZ3G6S7CMC36.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "RHSXCZ3G6S7CMC36.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "QMCSUNX7MQVY9UVN" : { - "QMCSUNX7MQVY9UVN.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QMCSUNX7MQVY9UVN", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "QMCSUNX7MQVY9UVN.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QMCSUNX7MQVY9UVN.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0620000000" - }, - "appliesTo" : [ ] - }, - "QMCSUNX7MQVY9UVN.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QMCSUNX7MQVY9UVN.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2432" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QMCSUNX7MQVY9UVN.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "QMCSUNX7MQVY9UVN", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "QMCSUNX7MQVY9UVN.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "QMCSUNX7MQVY9UVN.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5003" - }, - "appliesTo" : [ ] - }, - "QMCSUNX7MQVY9UVN.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "QMCSUNX7MQVY9UVN.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QMCSUNX7MQVY9UVN.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QMCSUNX7MQVY9UVN", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "QMCSUNX7MQVY9UVN.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QMCSUNX7MQVY9UVN.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QMCSUNX7MQVY9UVN.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QMCSUNX7MQVY9UVN.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3829" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QMCSUNX7MQVY9UVN.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "QMCSUNX7MQVY9UVN", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "QMCSUNX7MQVY9UVN.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "QMCSUNX7MQVY9UVN.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QMCSUNX7MQVY9UVN.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QMCSUNX7MQVY9UVN", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "QMCSUNX7MQVY9UVN.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QMCSUNX7MQVY9UVN.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1156" - }, - "appliesTo" : [ ] - }, - "QMCSUNX7MQVY9UVN.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QMCSUNX7MQVY9UVN.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QMCSUNX7MQVY9UVN.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QMCSUNX7MQVY9UVN", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "QMCSUNX7MQVY9UVN.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QMCSUNX7MQVY9UVN.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QMCSUNX7MQVY9UVN.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QMCSUNX7MQVY9UVN", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "QMCSUNX7MQVY9UVN.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QMCSUNX7MQVY9UVN.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1745" - }, - "appliesTo" : [ ] - }, - "QMCSUNX7MQVY9UVN.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QMCSUNX7MQVY9UVN.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QMCSUNX7MQVY9UVN.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "QMCSUNX7MQVY9UVN", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "QMCSUNX7MQVY9UVN.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "QMCSUNX7MQVY9UVN.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3314" - }, - "appliesTo" : [ ] - }, - "QMCSUNX7MQVY9UVN.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "QMCSUNX7MQVY9UVN.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "HESKMZUVTYYVD46R" : { - "HESKMZUVTYYVD46R.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "HESKMZUVTYYVD46R", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "HESKMZUVTYYVD46R.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "HESKMZUVTYYVD46R.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25445" - }, - "appliesTo" : [ ] - }, - "HESKMZUVTYYVD46R.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "HESKMZUVTYYVD46R.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HESKMZUVTYYVD46R.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "HESKMZUVTYYVD46R", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "HESKMZUVTYYVD46R.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "HESKMZUVTYYVD46R.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12982" - }, - "appliesTo" : [ ] - }, - "HESKMZUVTYYVD46R.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "HESKMZUVTYYVD46R.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HESKMZUVTYYVD46R.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "HESKMZUVTYYVD46R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HESKMZUVTYYVD46R.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "HESKMZUVTYYVD46R.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "HESKMZUVTYYVD46R.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "HESKMZUVTYYVD46R.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29262" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "HESKMZUVTYYVD46R.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "HESKMZUVTYYVD46R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HESKMZUVTYYVD46R.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "HESKMZUVTYYVD46R.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "HESKMZUVTYYVD46R.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "HESKMZUVTYYVD46R", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "HESKMZUVTYYVD46R.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "HESKMZUVTYYVD46R.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "HESKMZUVTYYVD46R.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "HESKMZUVTYYVD46R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HESKMZUVTYYVD46R.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "HESKMZUVTYYVD46R.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14930" - }, - "appliesTo" : [ ] - }, - "HESKMZUVTYYVD46R.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "HESKMZUVTYYVD46R.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7043000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HESKMZUVTYYVD46R.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "HESKMZUVTYYVD46R", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "HESKMZUVTYYVD46R.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "HESKMZUVTYYVD46R.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "HESKMZUVTYYVD46R.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "HESKMZUVTYYVD46R.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "63735" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "HESKMZUVTYYVD46R.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "HESKMZUVTYYVD46R", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "HESKMZUVTYYVD46R.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "HESKMZUVTYYVD46R.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28275" - }, - "appliesTo" : [ ] - }, - "HESKMZUVTYYVD46R.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "HESKMZUVTYYVD46R.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0759000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HESKMZUVTYYVD46R.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "HESKMZUVTYYVD46R", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "HESKMZUVTYYVD46R.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "HESKMZUVTYYVD46R.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1122000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "HESKMZUVTYYVD46R.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "HESKMZUVTYYVD46R", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "HESKMZUVTYYVD46R.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "HESKMZUVTYYVD46R.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32518" - }, - "appliesTo" : [ ] - }, - "HESKMZUVTYYVD46R.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "HESKMZUVTYYVD46R.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2374000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HESKMZUVTYYVD46R.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "HESKMZUVTYYVD46R", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "HESKMZUVTYYVD46R.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "HESKMZUVTYYVD46R.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "53158" - }, - "appliesTo" : [ ] - }, - "HESKMZUVTYYVD46R.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "HESKMZUVTYYVD46R.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HESKMZUVTYYVD46R.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "HESKMZUVTYYVD46R", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "HESKMZUVTYYVD46R.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "HESKMZUVTYYVD46R.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6727000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "3TGYW692U4UVK8F4" : { - "3TGYW692U4UVK8F4.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "3TGYW692U4UVK8F4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3TGYW692U4UVK8F4.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "3TGYW692U4UVK8F4.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3TGYW692U4UVK8F4.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "3TGYW692U4UVK8F4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3TGYW692U4UVK8F4.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "3TGYW692U4UVK8F4.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2830000000" - }, - "appliesTo" : [ ] - }, - "3TGYW692U4UVK8F4.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "3TGYW692U4UVK8F4.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "59990" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3TGYW692U4UVK8F4.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "3TGYW692U4UVK8F4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3TGYW692U4UVK8F4.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "3TGYW692U4UVK8F4.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "77281" - }, - "appliesTo" : [ ] - }, - "3TGYW692U4UVK8F4.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "3TGYW692U4UVK8F4.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3TGYW692U4UVK8F4.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "3TGYW692U4UVK8F4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3TGYW692U4UVK8F4.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "3TGYW692U4UVK8F4.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "117581" - }, - "appliesTo" : [ ] - }, - "3TGYW692U4UVK8F4.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "3TGYW692U4UVK8F4.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3TGYW692U4UVK8F4.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "3TGYW692U4UVK8F4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3TGYW692U4UVK8F4.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "3TGYW692U4UVK8F4.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3TGYW692U4UVK8F4.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "3TGYW692U4UVK8F4", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "3TGYW692U4UVK8F4.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "3TGYW692U4UVK8F4.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "3TGYW692U4UVK8F4.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "3TGYW692U4UVK8F4.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "98072" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3TGYW692U4UVK8F4.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "3TGYW692U4UVK8F4", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "3TGYW692U4UVK8F4.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "3TGYW692U4UVK8F4.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34285" - }, - "appliesTo" : [ ] - }, - "3TGYW692U4UVK8F4.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "3TGYW692U4UVK8F4.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3TGYW692U4UVK8F4.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "3TGYW692U4UVK8F4", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3TGYW692U4UVK8F4.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "3TGYW692U4UVK8F4.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.2190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3TGYW692U4UVK8F4.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "3TGYW692U4UVK8F4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3TGYW692U4UVK8F4.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "3TGYW692U4UVK8F4.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.4520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3TGYW692U4UVK8F4.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "3TGYW692U4UVK8F4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3TGYW692U4UVK8F4.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "3TGYW692U4UVK8F4.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5010000000" - }, - "appliesTo" : [ ] - }, - "3TGYW692U4UVK8F4.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "3TGYW692U4UVK8F4.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39429" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3TGYW692U4UVK8F4.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "3TGYW692U4UVK8F4", - "effectiveDate" : "2016-06-30T23:59:59Z", - "priceDimensions" : { - "3TGYW692U4UVK8F4.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "3TGYW692U4UVK8F4.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "67199" - }, - "appliesTo" : [ ] - }, - "3TGYW692U4UVK8F4.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "3TGYW692U4UVK8F4.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3TGYW692U4UVK8F4.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "3TGYW692U4UVK8F4", - "effectiveDate" : "2016-06-30T23:59:59Z", - "priceDimensions" : { - "3TGYW692U4UVK8F4.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "3TGYW692U4UVK8F4.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9850000000" - }, - "appliesTo" : [ ] - }, - "3TGYW692U4UVK8F4.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "3TGYW692U4UVK8F4.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "52166" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "XBYJG3BUDTPN8NB9" : { - "XBYJG3BUDTPN8NB9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XBYJG3BUDTPN8NB9", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "XBYJG3BUDTPN8NB9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XBYJG3BUDTPN8NB9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21315" - }, - "appliesTo" : [ ] - }, - "XBYJG3BUDTPN8NB9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XBYJG3BUDTPN8NB9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XBYJG3BUDTPN8NB9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XBYJG3BUDTPN8NB9", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "XBYJG3BUDTPN8NB9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XBYJG3BUDTPN8NB9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5000" - }, - "appliesTo" : [ ] - }, - "XBYJG3BUDTPN8NB9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XBYJG3BUDTPN8NB9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XBYJG3BUDTPN8NB9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XBYJG3BUDTPN8NB9", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "XBYJG3BUDTPN8NB9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XBYJG3BUDTPN8NB9.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XBYJG3BUDTPN8NB9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XBYJG3BUDTPN8NB9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XBYJG3BUDTPN8NB9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XBYJG3BUDTPN8NB9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9802" - }, - "appliesTo" : [ ] - }, - "XBYJG3BUDTPN8NB9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XBYJG3BUDTPN8NB9.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XBYJG3BUDTPN8NB9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XBYJG3BUDTPN8NB9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XBYJG3BUDTPN8NB9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XBYJG3BUDTPN8NB9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7670" - }, - "appliesTo" : [ ] - }, - "XBYJG3BUDTPN8NB9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XBYJG3BUDTPN8NB9.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "9J54RV93FDP84TGG" : { - "9J54RV93FDP84TGG.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "9J54RV93FDP84TGG", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "9J54RV93FDP84TGG.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "9J54RV93FDP84TGG.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "106407" - }, - "appliesTo" : [ ] - }, - "9J54RV93FDP84TGG.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "9J54RV93FDP84TGG.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.0490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9J54RV93FDP84TGG.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "9J54RV93FDP84TGG", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "9J54RV93FDP84TGG.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "9J54RV93FDP84TGG.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.3290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9J54RV93FDP84TGG.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "9J54RV93FDP84TGG", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "9J54RV93FDP84TGG.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "9J54RV93FDP84TGG.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "9J54RV93FDP84TGG.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "9J54RV93FDP84TGG.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "199880" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9J54RV93FDP84TGG.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "9J54RV93FDP84TGG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9J54RV93FDP84TGG.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "9J54RV93FDP84TGG.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "73994" - }, - "appliesTo" : [ ] - }, - "9J54RV93FDP84TGG.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "9J54RV93FDP84TGG.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9J54RV93FDP84TGG.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "9J54RV93FDP84TGG", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "9J54RV93FDP84TGG.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "9J54RV93FDP84TGG.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "100670" - }, - "appliesTo" : [ ] - }, - "9J54RV93FDP84TGG.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "9J54RV93FDP84TGG.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9J54RV93FDP84TGG.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "9J54RV93FDP84TGG", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "9J54RV93FDP84TGG.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "9J54RV93FDP84TGG.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "36132" - }, - "appliesTo" : [ ] - }, - "9J54RV93FDP84TGG.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "9J54RV93FDP84TGG.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.1250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9J54RV93FDP84TGG.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "9J54RV93FDP84TGG", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "9J54RV93FDP84TGG.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "9J54RV93FDP84TGG.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "212098" - }, - "appliesTo" : [ ] - }, - "9J54RV93FDP84TGG.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "9J54RV93FDP84TGG.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9J54RV93FDP84TGG.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "9J54RV93FDP84TGG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9J54RV93FDP84TGG.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "9J54RV93FDP84TGG.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2410000000" - }, - "appliesTo" : [ ] - }, - "9J54RV93FDP84TGG.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "9J54RV93FDP84TGG.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37150" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9J54RV93FDP84TGG.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "9J54RV93FDP84TGG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9J54RV93FDP84TGG.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "9J54RV93FDP84TGG.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.5690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9J54RV93FDP84TGG.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "9J54RV93FDP84TGG", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "9J54RV93FDP84TGG.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "9J54RV93FDP84TGG.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.5070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9J54RV93FDP84TGG.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "9J54RV93FDP84TGG", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "9J54RV93FDP84TGG.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "9J54RV93FDP84TGG.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "71998" - }, - "appliesTo" : [ ] - }, - "9J54RV93FDP84TGG.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "9J54RV93FDP84TGG.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "3CAET66XVXDZHGQY" : { - "3CAET66XVXDZHGQY.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "3CAET66XVXDZHGQY", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3CAET66XVXDZHGQY.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "3CAET66XVXDZHGQY.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3743" - }, - "appliesTo" : [ ] - }, - "3CAET66XVXDZHGQY.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "3CAET66XVXDZHGQY.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3CAET66XVXDZHGQY.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "3CAET66XVXDZHGQY", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "3CAET66XVXDZHGQY.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "3CAET66XVXDZHGQY.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0910000000" - }, - "appliesTo" : [ ] - }, - "3CAET66XVXDZHGQY.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "3CAET66XVXDZHGQY.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1590" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3CAET66XVXDZHGQY.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "3CAET66XVXDZHGQY", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3CAET66XVXDZHGQY.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "3CAET66XVXDZHGQY.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1580" - }, - "appliesTo" : [ ] - }, - "3CAET66XVXDZHGQY.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "3CAET66XVXDZHGQY.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3CAET66XVXDZHGQY.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "3CAET66XVXDZHGQY", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "3CAET66XVXDZHGQY.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "3CAET66XVXDZHGQY.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "640" - }, - "appliesTo" : [ ] - }, - "3CAET66XVXDZHGQY.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "3CAET66XVXDZHGQY.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3CAET66XVXDZHGQY.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "3CAET66XVXDZHGQY", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3CAET66XVXDZHGQY.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "3CAET66XVXDZHGQY.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "QNBV9PBG5RAKHKFW" : { - "QNBV9PBG5RAKHKFW.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "QNBV9PBG5RAKHKFW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QNBV9PBG5RAKHKFW.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "QNBV9PBG5RAKHKFW.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QNBV9PBG5RAKHKFW.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "QNBV9PBG5RAKHKFW.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5799" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QNBV9PBG5RAKHKFW.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "QNBV9PBG5RAKHKFW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QNBV9PBG5RAKHKFW.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "QNBV9PBG5RAKHKFW.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4836" - }, - "appliesTo" : [ ] - }, - "QNBV9PBG5RAKHKFW.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "QNBV9PBG5RAKHKFW.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QNBV9PBG5RAKHKFW.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "QNBV9PBG5RAKHKFW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QNBV9PBG5RAKHKFW.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "QNBV9PBG5RAKHKFW.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5274000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QNBV9PBG5RAKHKFW.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QNBV9PBG5RAKHKFW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QNBV9PBG5RAKHKFW.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QNBV9PBG5RAKHKFW.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4205" - }, - "appliesTo" : [ ] - }, - "QNBV9PBG5RAKHKFW.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QNBV9PBG5RAKHKFW.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QNBV9PBG5RAKHKFW.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QNBV9PBG5RAKHKFW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QNBV9PBG5RAKHKFW.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QNBV9PBG5RAKHKFW.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11321" - }, - "appliesTo" : [ ] - }, - "QNBV9PBG5RAKHKFW.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QNBV9PBG5RAKHKFW.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QNBV9PBG5RAKHKFW.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QNBV9PBG5RAKHKFW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QNBV9PBG5RAKHKFW.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QNBV9PBG5RAKHKFW.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5191" - }, - "appliesTo" : [ ] - }, - "QNBV9PBG5RAKHKFW.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QNBV9PBG5RAKHKFW.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QNBV9PBG5RAKHKFW.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "QNBV9PBG5RAKHKFW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QNBV9PBG5RAKHKFW.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "QNBV9PBG5RAKHKFW.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6999000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QNBV9PBG5RAKHKFW.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QNBV9PBG5RAKHKFW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QNBV9PBG5RAKHKFW.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QNBV9PBG5RAKHKFW.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6256000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QNBV9PBG5RAKHKFW.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QNBV9PBG5RAKHKFW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QNBV9PBG5RAKHKFW.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QNBV9PBG5RAKHKFW.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2067" - }, - "appliesTo" : [ ] - }, - "QNBV9PBG5RAKHKFW.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QNBV9PBG5RAKHKFW.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QNBV9PBG5RAKHKFW.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "QNBV9PBG5RAKHKFW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QNBV9PBG5RAKHKFW.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "QNBV9PBG5RAKHKFW.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QNBV9PBG5RAKHKFW.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "QNBV9PBG5RAKHKFW.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12894" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QNBV9PBG5RAKHKFW.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "QNBV9PBG5RAKHKFW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QNBV9PBG5RAKHKFW.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "QNBV9PBG5RAKHKFW.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2377" - }, - "appliesTo" : [ ] - }, - "QNBV9PBG5RAKHKFW.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "QNBV9PBG5RAKHKFW.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4014000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QNBV9PBG5RAKHKFW.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "QNBV9PBG5RAKHKFW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QNBV9PBG5RAKHKFW.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "QNBV9PBG5RAKHKFW.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4756000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "RA5N9YR5B2CYJ8U7" : { - "RA5N9YR5B2CYJ8U7.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "RA5N9YR5B2CYJ8U7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RA5N9YR5B2CYJ8U7.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "RA5N9YR5B2CYJ8U7.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2001" - }, - "appliesTo" : [ ] - }, - "RA5N9YR5B2CYJ8U7.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "RA5N9YR5B2CYJ8U7.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RA5N9YR5B2CYJ8U7.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "RA5N9YR5B2CYJ8U7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RA5N9YR5B2CYJ8U7.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "RA5N9YR5B2CYJ8U7.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RA5N9YR5B2CYJ8U7.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "RA5N9YR5B2CYJ8U7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RA5N9YR5B2CYJ8U7.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "RA5N9YR5B2CYJ8U7.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3795" - }, - "appliesTo" : [ ] - }, - "RA5N9YR5B2CYJ8U7.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "RA5N9YR5B2CYJ8U7.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RA5N9YR5B2CYJ8U7.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "RA5N9YR5B2CYJ8U7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RA5N9YR5B2CYJ8U7.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "RA5N9YR5B2CYJ8U7.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "983" - }, - "appliesTo" : [ ] - }, - "RA5N9YR5B2CYJ8U7.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "RA5N9YR5B2CYJ8U7.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RA5N9YR5B2CYJ8U7.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "RA5N9YR5B2CYJ8U7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RA5N9YR5B2CYJ8U7.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "RA5N9YR5B2CYJ8U7.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "RA5N9YR5B2CYJ8U7.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "RA5N9YR5B2CYJ8U7.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1930" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RA5N9YR5B2CYJ8U7.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "RA5N9YR5B2CYJ8U7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RA5N9YR5B2CYJ8U7.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "RA5N9YR5B2CYJ8U7.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "BPK6ZJ9DW5BR885X" : { - "BPK6ZJ9DW5BR885X.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "BPK6ZJ9DW5BR885X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BPK6ZJ9DW5BR885X.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "BPK6ZJ9DW5BR885X.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5816" - }, - "appliesTo" : [ ] - }, - "BPK6ZJ9DW5BR885X.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "BPK6ZJ9DW5BR885X.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BPK6ZJ9DW5BR885X.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "BPK6ZJ9DW5BR885X", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BPK6ZJ9DW5BR885X.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "BPK6ZJ9DW5BR885X.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8775" - }, - "appliesTo" : [ ] - }, - "BPK6ZJ9DW5BR885X.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "BPK6ZJ9DW5BR885X.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BPK6ZJ9DW5BR885X.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "BPK6ZJ9DW5BR885X", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BPK6ZJ9DW5BR885X.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "BPK6ZJ9DW5BR885X.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BPK6ZJ9DW5BR885X.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "BPK6ZJ9DW5BR885X", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BPK6ZJ9DW5BR885X.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "BPK6ZJ9DW5BR885X.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11783" - }, - "appliesTo" : [ ] - }, - "BPK6ZJ9DW5BR885X.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "BPK6ZJ9DW5BR885X.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BPK6ZJ9DW5BR885X.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "BPK6ZJ9DW5BR885X", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BPK6ZJ9DW5BR885X.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "BPK6ZJ9DW5BR885X.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BPK6ZJ9DW5BR885X.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "BPK6ZJ9DW5BR885X", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BPK6ZJ9DW5BR885X.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "BPK6ZJ9DW5BR885X.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1817" - }, - "appliesTo" : [ ] - }, - "BPK6ZJ9DW5BR885X.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "BPK6ZJ9DW5BR885X.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BPK6ZJ9DW5BR885X.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "BPK6ZJ9DW5BR885X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BPK6ZJ9DW5BR885X.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "BPK6ZJ9DW5BR885X.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BPK6ZJ9DW5BR885X.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "BPK6ZJ9DW5BR885X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BPK6ZJ9DW5BR885X.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "BPK6ZJ9DW5BR885X.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2944" - }, - "appliesTo" : [ ] - }, - "BPK6ZJ9DW5BR885X.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "BPK6ZJ9DW5BR885X.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BPK6ZJ9DW5BR885X.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "BPK6ZJ9DW5BR885X", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BPK6ZJ9DW5BR885X.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "BPK6ZJ9DW5BR885X.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4239" - }, - "appliesTo" : [ ] - }, - "BPK6ZJ9DW5BR885X.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "BPK6ZJ9DW5BR885X.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BPK6ZJ9DW5BR885X.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "BPK6ZJ9DW5BR885X", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BPK6ZJ9DW5BR885X.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "BPK6ZJ9DW5BR885X.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2720000000" - }, - "appliesTo" : [ ] - }, - "BPK6ZJ9DW5BR885X.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "BPK6ZJ9DW5BR885X.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4905" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BPK6ZJ9DW5BR885X.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "BPK6ZJ9DW5BR885X", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BPK6ZJ9DW5BR885X.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "BPK6ZJ9DW5BR885X.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2450000000" - }, - "appliesTo" : [ ] - }, - "BPK6ZJ9DW5BR885X.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "BPK6ZJ9DW5BR885X.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2897" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "DFJU7MKX4S9ZU689" : { - "DFJU7MKX4S9ZU689.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "DFJU7MKX4S9ZU689", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DFJU7MKX4S9ZU689.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "DFJU7MKX4S9ZU689.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "19.0430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DFJU7MKX4S9ZU689.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "DFJU7MKX4S9ZU689", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DFJU7MKX4S9ZU689.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "DFJU7MKX4S9ZU689.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "78895" - }, - "appliesTo" : [ ] - }, - "DFJU7MKX4S9ZU689.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "DFJU7MKX4S9ZU689.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.1360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DFJU7MKX4S9ZU689.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "DFJU7MKX4S9ZU689", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "DFJU7MKX4S9ZU689.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "DFJU7MKX4S9ZU689.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.5760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DFJU7MKX4S9ZU689.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "DFJU7MKX4S9ZU689", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DFJU7MKX4S9ZU689.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "DFJU7MKX4S9ZU689.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "155773" - }, - "appliesTo" : [ ] - }, - "DFJU7MKX4S9ZU689.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "DFJU7MKX4S9ZU689.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DFJU7MKX4S9ZU689.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "DFJU7MKX4S9ZU689", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "DFJU7MKX4S9ZU689.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "DFJU7MKX4S9ZU689.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "68604" - }, - "appliesTo" : [ ] - }, - "DFJU7MKX4S9ZU689.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "DFJU7MKX4S9ZU689.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.9620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DFJU7MKX4S9ZU689.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "DFJU7MKX4S9ZU689", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "DFJU7MKX4S9ZU689.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "DFJU7MKX4S9ZU689.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.7090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DFJU7MKX4S9ZU689.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "DFJU7MKX4S9ZU689", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "DFJU7MKX4S9ZU689.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "DFJU7MKX4S9ZU689.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "199648" - }, - "appliesTo" : [ ] - }, - "DFJU7MKX4S9ZU689.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "DFJU7MKX4S9ZU689.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DFJU7MKX4S9ZU689.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "DFJU7MKX4S9ZU689", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "DFJU7MKX4S9ZU689.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "DFJU7MKX4S9ZU689.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "238686" - }, - "appliesTo" : [ ] - }, - "DFJU7MKX4S9ZU689.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "DFJU7MKX4S9ZU689.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DFJU7MKX4S9ZU689.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "DFJU7MKX4S9ZU689", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "DFJU7MKX4S9ZU689.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "DFJU7MKX4S9ZU689.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "135603" - }, - "appliesTo" : [ ] - }, - "DFJU7MKX4S9ZU689.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "DFJU7MKX4S9ZU689.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DFJU7MKX4S9ZU689.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "DFJU7MKX4S9ZU689", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "DFJU7MKX4S9ZU689.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "DFJU7MKX4S9ZU689.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "120035" - }, - "appliesTo" : [ ] - }, - "DFJU7MKX4S9ZU689.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "DFJU7MKX4S9ZU689.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.6980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DFJU7MKX4S9ZU689.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "DFJU7MKX4S9ZU689", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "DFJU7MKX4S9ZU689.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "DFJU7MKX4S9ZU689.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "104379" - }, - "appliesTo" : [ ] - }, - "DFJU7MKX4S9ZU689.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "DFJU7MKX4S9ZU689.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.1020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "F7MKSFT7MRGHJF5U" : { - "F7MKSFT7MRGHJF5U.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "F7MKSFT7MRGHJF5U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "F7MKSFT7MRGHJF5U.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "F7MKSFT7MRGHJF5U.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "18.1520000000" - }, - "appliesTo" : [ ] - }, - "F7MKSFT7MRGHJF5U.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "F7MKSFT7MRGHJF5U.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "159012" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "F7MKSFT7MRGHJF5U.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "F7MKSFT7MRGHJF5U", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "F7MKSFT7MRGHJF5U.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "F7MKSFT7MRGHJF5U.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "F7MKSFT7MRGHJF5U.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "F7MKSFT7MRGHJF5U.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "316383" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "F7MKSFT7MRGHJF5U.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "F7MKSFT7MRGHJF5U", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "F7MKSFT7MRGHJF5U.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "F7MKSFT7MRGHJF5U.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "F7MKSFT7MRGHJF5U.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "F7MKSFT7MRGHJF5U.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "876070" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "F7MKSFT7MRGHJF5U.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "F7MKSFT7MRGHJF5U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "F7MKSFT7MRGHJF5U.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "F7MKSFT7MRGHJF5U.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "456800" - }, - "appliesTo" : [ ] - }, - "F7MKSFT7MRGHJF5U.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "F7MKSFT7MRGHJF5U.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "17.3820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "F7MKSFT7MRGHJF5U.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "F7MKSFT7MRGHJF5U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "F7MKSFT7MRGHJF5U.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "F7MKSFT7MRGHJF5U.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "35.3900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "F7MKSFT7MRGHJF5U.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "F7MKSFT7MRGHJF5U", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "F7MKSFT7MRGHJF5U.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "F7MKSFT7MRGHJF5U.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.8720000000" - }, - "appliesTo" : [ ] - }, - "F7MKSFT7MRGHJF5U.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "F7MKSFT7MRGHJF5U.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "443396" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "F7MKSFT7MRGHJF5U.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "F7MKSFT7MRGHJF5U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "F7MKSFT7MRGHJF5U.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "F7MKSFT7MRGHJF5U.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "18.8540000000" - }, - "appliesTo" : [ ] - }, - "F7MKSFT7MRGHJF5U.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "F7MKSFT7MRGHJF5U.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "165161" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "F7MKSFT7MRGHJF5U.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "F7MKSFT7MRGHJF5U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "F7MKSFT7MRGHJF5U.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "F7MKSFT7MRGHJF5U.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "36.7720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "F7MKSFT7MRGHJF5U.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "F7MKSFT7MRGHJF5U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "F7MKSFT7MRGHJF5U.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "F7MKSFT7MRGHJF5U.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "38.2460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "F7MKSFT7MRGHJF5U.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "F7MKSFT7MRGHJF5U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "F7MKSFT7MRGHJF5U.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "F7MKSFT7MRGHJF5U.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "34.2880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "F7MKSFT7MRGHJF5U.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "F7MKSFT7MRGHJF5U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "F7MKSFT7MRGHJF5U.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "F7MKSFT7MRGHJF5U.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "328436" - }, - "appliesTo" : [ ] - }, - "F7MKSFT7MRGHJF5U.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "F7MKSFT7MRGHJF5U.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "F7MKSFT7MRGHJF5U.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "F7MKSFT7MRGHJF5U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "F7MKSFT7MRGHJF5U.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "F7MKSFT7MRGHJF5U.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "909489" - }, - "appliesTo" : [ ] - }, - "F7MKSFT7MRGHJF5U.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "F7MKSFT7MRGHJF5U.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "CDK4SMXRA7K87J58" : { - "CDK4SMXRA7K87J58.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "CDK4SMXRA7K87J58", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "CDK4SMXRA7K87J58.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "CDK4SMXRA7K87J58.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CDK4SMXRA7K87J58.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "CDK4SMXRA7K87J58", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CDK4SMXRA7K87J58.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "CDK4SMXRA7K87J58.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "455" - }, - "appliesTo" : [ ] - }, - "CDK4SMXRA7K87J58.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "CDK4SMXRA7K87J58.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CDK4SMXRA7K87J58.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "CDK4SMXRA7K87J58", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CDK4SMXRA7K87J58.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "CDK4SMXRA7K87J58.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CDK4SMXRA7K87J58.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "CDK4SMXRA7K87J58", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "CDK4SMXRA7K87J58.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "CDK4SMXRA7K87J58.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2117" - }, - "appliesTo" : [ ] - }, - "CDK4SMXRA7K87J58.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "CDK4SMXRA7K87J58.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CDK4SMXRA7K87J58.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "CDK4SMXRA7K87J58", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CDK4SMXRA7K87J58.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "CDK4SMXRA7K87J58.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "893" - }, - "appliesTo" : [ ] - }, - "CDK4SMXRA7K87J58.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "CDK4SMXRA7K87J58.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CDK4SMXRA7K87J58.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "CDK4SMXRA7K87J58", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "CDK4SMXRA7K87J58.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "CDK4SMXRA7K87J58.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "CDK4SMXRA7K87J58.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "CDK4SMXRA7K87J58.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "784" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CDK4SMXRA7K87J58.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "CDK4SMXRA7K87J58", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "CDK4SMXRA7K87J58.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "CDK4SMXRA7K87J58.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0390000000" - }, - "appliesTo" : [ ] - }, - "CDK4SMXRA7K87J58.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "CDK4SMXRA7K87J58.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "463" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CDK4SMXRA7K87J58.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "CDK4SMXRA7K87J58", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "CDK4SMXRA7K87J58.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "CDK4SMXRA7K87J58.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CDK4SMXRA7K87J58.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "CDK4SMXRA7K87J58", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "CDK4SMXRA7K87J58.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "CDK4SMXRA7K87J58.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1250" - }, - "appliesTo" : [ ] - }, - "CDK4SMXRA7K87J58.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "CDK4SMXRA7K87J58.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CDK4SMXRA7K87J58.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "CDK4SMXRA7K87J58", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "CDK4SMXRA7K87J58.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "CDK4SMXRA7K87J58.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1510" - }, - "appliesTo" : [ ] - }, - "CDK4SMXRA7K87J58.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "CDK4SMXRA7K87J58.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CDK4SMXRA7K87J58.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "CDK4SMXRA7K87J58", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "CDK4SMXRA7K87J58.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "CDK4SMXRA7K87J58.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "740" - }, - "appliesTo" : [ ] - }, - "CDK4SMXRA7K87J58.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "CDK4SMXRA7K87J58.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "WZM4T9SQXM7SF7ZF" : { - "WZM4T9SQXM7SF7ZF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "WZM4T9SQXM7SF7ZF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WZM4T9SQXM7SF7ZF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "WZM4T9SQXM7SF7ZF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6195" - }, - "appliesTo" : [ ] - }, - "WZM4T9SQXM7SF7ZF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "WZM4T9SQXM7SF7ZF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WZM4T9SQXM7SF7ZF.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "WZM4T9SQXM7SF7ZF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WZM4T9SQXM7SF7ZF.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "WZM4T9SQXM7SF7ZF.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "WZM4T9SQXM7SF7ZF.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "WZM4T9SQXM7SF7ZF.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12844" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WZM4T9SQXM7SF7ZF.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "WZM4T9SQXM7SF7ZF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WZM4T9SQXM7SF7ZF.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "WZM4T9SQXM7SF7ZF.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "WZM4T9SQXM7SF7ZF.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "WZM4T9SQXM7SF7ZF.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34276" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WZM4T9SQXM7SF7ZF.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "WZM4T9SQXM7SF7ZF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WZM4T9SQXM7SF7ZF.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "WZM4T9SQXM7SF7ZF.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "WZM4T9SQXM7SF7ZF.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "WZM4T9SQXM7SF7ZF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WZM4T9SQXM7SF7ZF.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "WZM4T9SQXM7SF7ZF.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "WZM4T9SQXM7SF7ZF.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "WZM4T9SQXM7SF7ZF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WZM4T9SQXM7SF7ZF.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "WZM4T9SQXM7SF7ZF.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6463" - }, - "appliesTo" : [ ] - }, - "WZM4T9SQXM7SF7ZF.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "WZM4T9SQXM7SF7ZF.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WZM4T9SQXM7SF7ZF.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "WZM4T9SQXM7SF7ZF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WZM4T9SQXM7SF7ZF.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "WZM4T9SQXM7SF7ZF.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WZM4T9SQXM7SF7ZF.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "WZM4T9SQXM7SF7ZF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WZM4T9SQXM7SF7ZF.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "WZM4T9SQXM7SF7ZF.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WZM4T9SQXM7SF7ZF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "WZM4T9SQXM7SF7ZF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WZM4T9SQXM7SF7ZF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "WZM4T9SQXM7SF7ZF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16691" - }, - "appliesTo" : [ ] - }, - "WZM4T9SQXM7SF7ZF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "WZM4T9SQXM7SF7ZF.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WZM4T9SQXM7SF7ZF.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "WZM4T9SQXM7SF7ZF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WZM4T9SQXM7SF7ZF.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "WZM4T9SQXM7SF7ZF.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17218" - }, - "appliesTo" : [ ] - }, - "WZM4T9SQXM7SF7ZF.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "WZM4T9SQXM7SF7ZF.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WZM4T9SQXM7SF7ZF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "WZM4T9SQXM7SF7ZF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WZM4T9SQXM7SF7ZF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "WZM4T9SQXM7SF7ZF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12319" - }, - "appliesTo" : [ ] - }, - "WZM4T9SQXM7SF7ZF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "WZM4T9SQXM7SF7ZF.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WZM4T9SQXM7SF7ZF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "WZM4T9SQXM7SF7ZF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WZM4T9SQXM7SF7ZF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "WZM4T9SQXM7SF7ZF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32966" - }, - "appliesTo" : [ ] - }, - "WZM4T9SQXM7SF7ZF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "WZM4T9SQXM7SF7ZF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "NUMNVV4X9PJW42JH" : { - "NUMNVV4X9PJW42JH.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "NUMNVV4X9PJW42JH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NUMNVV4X9PJW42JH.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "NUMNVV4X9PJW42JH.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10896" - }, - "appliesTo" : [ ] - }, - "NUMNVV4X9PJW42JH.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "NUMNVV4X9PJW42JH.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "NUMNVV4X9PJW42JH.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "NUMNVV4X9PJW42JH", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "NUMNVV4X9PJW42JH.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "NUMNVV4X9PJW42JH.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "NUMNVV4X9PJW42JH.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "NUMNVV4X9PJW42JH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NUMNVV4X9PJW42JH.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "NUMNVV4X9PJW42JH.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "NUMNVV4X9PJW42JH.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "NUMNVV4X9PJW42JH", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "NUMNVV4X9PJW42JH.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "NUMNVV4X9PJW42JH.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18818" - }, - "appliesTo" : [ ] - }, - "NUMNVV4X9PJW42JH.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "NUMNVV4X9PJW42JH.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "NUMNVV4X9PJW42JH.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "NUMNVV4X9PJW42JH", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "NUMNVV4X9PJW42JH.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "NUMNVV4X9PJW42JH.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19956" - }, - "appliesTo" : [ ] - }, - "NUMNVV4X9PJW42JH.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "NUMNVV4X9PJW42JH.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "NUMNVV4X9PJW42JH.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "NUMNVV4X9PJW42JH", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "NUMNVV4X9PJW42JH.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "NUMNVV4X9PJW42JH.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24447" - }, - "appliesTo" : [ ] - }, - "NUMNVV4X9PJW42JH.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "NUMNVV4X9PJW42JH.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "NUMNVV4X9PJW42JH.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "NUMNVV4X9PJW42JH", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "NUMNVV4X9PJW42JH.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "NUMNVV4X9PJW42JH.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39107" - }, - "appliesTo" : [ ] - }, - "NUMNVV4X9PJW42JH.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "NUMNVV4X9PJW42JH.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "NUMNVV4X9PJW42JH.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "NUMNVV4X9PJW42JH", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "NUMNVV4X9PJW42JH.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "NUMNVV4X9PJW42JH.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "NUMNVV4X9PJW42JH.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "NUMNVV4X9PJW42JH", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "NUMNVV4X9PJW42JH.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "NUMNVV4X9PJW42JH.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "NUMNVV4X9PJW42JH.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "NUMNVV4X9PJW42JH.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "51436" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "NUMNVV4X9PJW42JH.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "NUMNVV4X9PJW42JH", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "NUMNVV4X9PJW42JH.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "NUMNVV4X9PJW42JH.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2240000000" - }, - "appliesTo" : [ ] - }, - "NUMNVV4X9PJW42JH.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "NUMNVV4X9PJW42JH.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9583" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "NUMNVV4X9PJW42JH.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "NUMNVV4X9PJW42JH", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "NUMNVV4X9PJW42JH.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "NUMNVV4X9PJW42JH.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "NUMNVV4X9PJW42JH.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "NUMNVV4X9PJW42JH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NUMNVV4X9PJW42JH.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "NUMNVV4X9PJW42JH.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22531" - }, - "appliesTo" : [ ] - }, - "NUMNVV4X9PJW42JH.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "NUMNVV4X9PJW42JH.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "T8WDU2BB3QKC577Z" : { - "T8WDU2BB3QKC577Z.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "T8WDU2BB3QKC577Z", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "T8WDU2BB3QKC577Z.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "T8WDU2BB3QKC577Z.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "45046" - }, - "appliesTo" : [ ] - }, - "T8WDU2BB3QKC577Z.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "T8WDU2BB3QKC577Z.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "T8WDU2BB3QKC577Z.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "T8WDU2BB3QKC577Z", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "T8WDU2BB3QKC577Z.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "T8WDU2BB3QKC577Z.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39664" - }, - "appliesTo" : [ ] - }, - "T8WDU2BB3QKC577Z.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "T8WDU2BB3QKC577Z.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "T8WDU2BB3QKC577Z.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "T8WDU2BB3QKC577Z", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "T8WDU2BB3QKC577Z.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "T8WDU2BB3QKC577Z.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "T8WDU2BB3QKC577Z.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "T8WDU2BB3QKC577Z", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "T8WDU2BB3QKC577Z.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "T8WDU2BB3QKC577Z.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25206" - }, - "appliesTo" : [ ] - }, - "T8WDU2BB3QKC577Z.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "T8WDU2BB3QKC577Z.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "T8WDU2BB3QKC577Z.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "T8WDU2BB3QKC577Z", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "T8WDU2BB3QKC577Z.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "T8WDU2BB3QKC577Z.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22272" - }, - "appliesTo" : [ ] - }, - "T8WDU2BB3QKC577Z.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "T8WDU2BB3QKC577Z.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "T8WDU2BB3QKC577Z.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "T8WDU2BB3QKC577Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "T8WDU2BB3QKC577Z.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "T8WDU2BB3QKC577Z.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "T8WDU2BB3QKC577Z.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "T8WDU2BB3QKC577Z", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "T8WDU2BB3QKC577Z.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "T8WDU2BB3QKC577Z.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14736" - }, - "appliesTo" : [ ] - }, - "T8WDU2BB3QKC577Z.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "T8WDU2BB3QKC577Z.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "T8WDU2BB3QKC577Z.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "T8WDU2BB3QKC577Z", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "T8WDU2BB3QKC577Z.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "T8WDU2BB3QKC577Z.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "T8WDU2BB3QKC577Z.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "T8WDU2BB3QKC577Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "T8WDU2BB3QKC577Z.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "T8WDU2BB3QKC577Z.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14795" - }, - "appliesTo" : [ ] - }, - "T8WDU2BB3QKC577Z.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "T8WDU2BB3QKC577Z.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "T8WDU2BB3QKC577Z.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "T8WDU2BB3QKC577Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "T8WDU2BB3QKC577Z.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "T8WDU2BB3QKC577Z.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "T8WDU2BB3QKC577Z.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "T8WDU2BB3QKC577Z.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28944" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "T8WDU2BB3QKC577Z.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "T8WDU2BB3QKC577Z", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "T8WDU2BB3QKC577Z.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "T8WDU2BB3QKC577Z.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "67942" - }, - "appliesTo" : [ ] - }, - "T8WDU2BB3QKC577Z.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "T8WDU2BB3QKC577Z.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "MUSDPAYU48C7WCHN" : { - "MUSDPAYU48C7WCHN.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "MUSDPAYU48C7WCHN", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "MUSDPAYU48C7WCHN.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "MUSDPAYU48C7WCHN.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "446" - }, - "appliesTo" : [ ] - }, - "MUSDPAYU48C7WCHN.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "MUSDPAYU48C7WCHN.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MUSDPAYU48C7WCHN.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "MUSDPAYU48C7WCHN", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "MUSDPAYU48C7WCHN.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "MUSDPAYU48C7WCHN.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "738" - }, - "appliesTo" : [ ] - }, - "MUSDPAYU48C7WCHN.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "MUSDPAYU48C7WCHN.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MUSDPAYU48C7WCHN.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "MUSDPAYU48C7WCHN", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MUSDPAYU48C7WCHN.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "MUSDPAYU48C7WCHN.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "694" - }, - "appliesTo" : [ ] - }, - "MUSDPAYU48C7WCHN.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "MUSDPAYU48C7WCHN.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MUSDPAYU48C7WCHN.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "MUSDPAYU48C7WCHN", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MUSDPAYU48C7WCHN.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "MUSDPAYU48C7WCHN.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1412" - }, - "appliesTo" : [ ] - }, - "MUSDPAYU48C7WCHN.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "MUSDPAYU48C7WCHN.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MUSDPAYU48C7WCHN.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "MUSDPAYU48C7WCHN", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MUSDPAYU48C7WCHN.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "MUSDPAYU48C7WCHN.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "3GCSD3HHQWFGV39C" : { - "3GCSD3HHQWFGV39C.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "3GCSD3HHQWFGV39C", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3GCSD3HHQWFGV39C.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "3GCSD3HHQWFGV39C.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1782" - }, - "appliesTo" : [ ] - }, - "3GCSD3HHQWFGV39C.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "3GCSD3HHQWFGV39C.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3GCSD3HHQWFGV39C.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "3GCSD3HHQWFGV39C", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "3GCSD3HHQWFGV39C.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "3GCSD3HHQWFGV39C.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3GCSD3HHQWFGV39C.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "3GCSD3HHQWFGV39C", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3GCSD3HHQWFGV39C.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "3GCSD3HHQWFGV39C.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9185" - }, - "appliesTo" : [ ] - }, - "3GCSD3HHQWFGV39C.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "3GCSD3HHQWFGV39C.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3GCSD3HHQWFGV39C.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "3GCSD3HHQWFGV39C", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3GCSD3HHQWFGV39C.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "3GCSD3HHQWFGV39C.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "3GCSD3HHQWFGV39C.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "3GCSD3HHQWFGV39C.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4200" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3GCSD3HHQWFGV39C.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "3GCSD3HHQWFGV39C", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3GCSD3HHQWFGV39C.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "3GCSD3HHQWFGV39C.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2776" - }, - "appliesTo" : [ ] - }, - "3GCSD3HHQWFGV39C.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "3GCSD3HHQWFGV39C.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "V56C6ZGR7E55RDBN" : { - "V56C6ZGR7E55RDBN.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "V56C6ZGR7E55RDBN", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "V56C6ZGR7E55RDBN.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "V56C6ZGR7E55RDBN.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2168" - }, - "appliesTo" : [ ] - }, - "V56C6ZGR7E55RDBN.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "V56C6ZGR7E55RDBN.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "V56C6ZGR7E55RDBN.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "V56C6ZGR7E55RDBN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "V56C6ZGR7E55RDBN.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "V56C6ZGR7E55RDBN.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8274" - }, - "appliesTo" : [ ] - }, - "V56C6ZGR7E55RDBN.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "V56C6ZGR7E55RDBN.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "V56C6ZGR7E55RDBN.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "V56C6ZGR7E55RDBN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "V56C6ZGR7E55RDBN.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "V56C6ZGR7E55RDBN.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "V56C6ZGR7E55RDBN.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "V56C6ZGR7E55RDBN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "V56C6ZGR7E55RDBN.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "V56C6ZGR7E55RDBN.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "V56C6ZGR7E55RDBN.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "V56C6ZGR7E55RDBN", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "V56C6ZGR7E55RDBN.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "V56C6ZGR7E55RDBN.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7492" - }, - "appliesTo" : [ ] - }, - "V56C6ZGR7E55RDBN.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "V56C6ZGR7E55RDBN.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "V56C6ZGR7E55RDBN.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "V56C6ZGR7E55RDBN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V56C6ZGR7E55RDBN.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "V56C6ZGR7E55RDBN.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1209" - }, - "appliesTo" : [ ] - }, - "V56C6ZGR7E55RDBN.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "V56C6ZGR7E55RDBN.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "V56C6ZGR7E55RDBN.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "V56C6ZGR7E55RDBN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V56C6ZGR7E55RDBN.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "V56C6ZGR7E55RDBN.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3508" - }, - "appliesTo" : [ ] - }, - "V56C6ZGR7E55RDBN.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "V56C6ZGR7E55RDBN.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "V56C6ZGR7E55RDBN.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "V56C6ZGR7E55RDBN", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "V56C6ZGR7E55RDBN.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "V56C6ZGR7E55RDBN.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2510000000" - }, - "appliesTo" : [ ] - }, - "V56C6ZGR7E55RDBN.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "V56C6ZGR7E55RDBN.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1060" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "V56C6ZGR7E55RDBN.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "V56C6ZGR7E55RDBN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "V56C6ZGR7E55RDBN.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "V56C6ZGR7E55RDBN.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "V56C6ZGR7E55RDBN.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "V56C6ZGR7E55RDBN", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "V56C6ZGR7E55RDBN.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "V56C6ZGR7E55RDBN.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "V56C6ZGR7E55RDBN.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "V56C6ZGR7E55RDBN.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3216" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "V56C6ZGR7E55RDBN.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "V56C6ZGR7E55RDBN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V56C6ZGR7E55RDBN.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "V56C6ZGR7E55RDBN.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "V56C6ZGR7E55RDBN.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "V56C6ZGR7E55RDBN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "V56C6ZGR7E55RDBN.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "V56C6ZGR7E55RDBN.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2478" - }, - "appliesTo" : [ ] - }, - "V56C6ZGR7E55RDBN.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "V56C6ZGR7E55RDBN.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "EBPBHYCSY9TBSKNQ" : { - "EBPBHYCSY9TBSKNQ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "EBPBHYCSY9TBSKNQ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EBPBHYCSY9TBSKNQ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "EBPBHYCSY9TBSKNQ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "881" - }, - "appliesTo" : [ ] - }, - "EBPBHYCSY9TBSKNQ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "EBPBHYCSY9TBSKNQ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0335000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "EBPBHYCSY9TBSKNQ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "EBPBHYCSY9TBSKNQ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EBPBHYCSY9TBSKNQ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "EBPBHYCSY9TBSKNQ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "EBPBHYCSY9TBSKNQ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "EBPBHYCSY9TBSKNQ", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "EBPBHYCSY9TBSKNQ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "EBPBHYCSY9TBSKNQ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1443" - }, - "appliesTo" : [ ] - }, - "EBPBHYCSY9TBSKNQ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "EBPBHYCSY9TBSKNQ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EBPBHYCSY9TBSKNQ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "EBPBHYCSY9TBSKNQ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EBPBHYCSY9TBSKNQ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "EBPBHYCSY9TBSKNQ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0724000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "EBPBHYCSY9TBSKNQ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "EBPBHYCSY9TBSKNQ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "EBPBHYCSY9TBSKNQ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "EBPBHYCSY9TBSKNQ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "767" - }, - "appliesTo" : [ ] - }, - "EBPBHYCSY9TBSKNQ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "EBPBHYCSY9TBSKNQ.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EBPBHYCSY9TBSKNQ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "EBPBHYCSY9TBSKNQ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "EBPBHYCSY9TBSKNQ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "EBPBHYCSY9TBSKNQ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "752" - }, - "appliesTo" : [ ] - }, - "EBPBHYCSY9TBSKNQ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "EBPBHYCSY9TBSKNQ.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EBPBHYCSY9TBSKNQ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "EBPBHYCSY9TBSKNQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EBPBHYCSY9TBSKNQ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "EBPBHYCSY9TBSKNQ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1063000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "EBPBHYCSY9TBSKNQ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "EBPBHYCSY9TBSKNQ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EBPBHYCSY9TBSKNQ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "EBPBHYCSY9TBSKNQ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "384" - }, - "appliesTo" : [ ] - }, - "EBPBHYCSY9TBSKNQ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "EBPBHYCSY9TBSKNQ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EBPBHYCSY9TBSKNQ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "EBPBHYCSY9TBSKNQ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EBPBHYCSY9TBSKNQ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "EBPBHYCSY9TBSKNQ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0924000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "EBPBHYCSY9TBSKNQ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "EBPBHYCSY9TBSKNQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EBPBHYCSY9TBSKNQ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "EBPBHYCSY9TBSKNQ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0506000000" - }, - "appliesTo" : [ ] - }, - "EBPBHYCSY9TBSKNQ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "EBPBHYCSY9TBSKNQ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "443" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "EBPBHYCSY9TBSKNQ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "EBPBHYCSY9TBSKNQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EBPBHYCSY9TBSKNQ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "EBPBHYCSY9TBSKNQ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "EBPBHYCSY9TBSKNQ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "EBPBHYCSY9TBSKNQ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "869" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "EBPBHYCSY9TBSKNQ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "EBPBHYCSY9TBSKNQ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EBPBHYCSY9TBSKNQ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "EBPBHYCSY9TBSKNQ.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "EBPBHYCSY9TBSKNQ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "EBPBHYCSY9TBSKNQ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1727" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "MU4CDFJXM862BVJ3" : { - "MU4CDFJXM862BVJ3.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "MU4CDFJXM862BVJ3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MU4CDFJXM862BVJ3.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "MU4CDFJXM862BVJ3.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6927" - }, - "appliesTo" : [ ] - }, - "MU4CDFJXM862BVJ3.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "MU4CDFJXM862BVJ3.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MU4CDFJXM862BVJ3.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "MU4CDFJXM862BVJ3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MU4CDFJXM862BVJ3.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "MU4CDFJXM862BVJ3.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6544" - }, - "appliesTo" : [ ] - }, - "MU4CDFJXM862BVJ3.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "MU4CDFJXM862BVJ3.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MU4CDFJXM862BVJ3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "MU4CDFJXM862BVJ3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MU4CDFJXM862BVJ3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "MU4CDFJXM862BVJ3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3164" - }, - "appliesTo" : [ ] - }, - "MU4CDFJXM862BVJ3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "MU4CDFJXM862BVJ3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MU4CDFJXM862BVJ3.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "MU4CDFJXM862BVJ3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MU4CDFJXM862BVJ3.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "MU4CDFJXM862BVJ3.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12923" - }, - "appliesTo" : [ ] - }, - "MU4CDFJXM862BVJ3.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "MU4CDFJXM862BVJ3.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MU4CDFJXM862BVJ3.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "MU4CDFJXM862BVJ3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MU4CDFJXM862BVJ3.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "MU4CDFJXM862BVJ3.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MU4CDFJXM862BVJ3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "MU4CDFJXM862BVJ3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MU4CDFJXM862BVJ3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "MU4CDFJXM862BVJ3.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MU4CDFJXM862BVJ3.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "MU4CDFJXM862BVJ3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MU4CDFJXM862BVJ3.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "MU4CDFJXM862BVJ3.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3518" - }, - "appliesTo" : [ ] - }, - "MU4CDFJXM862BVJ3.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "MU4CDFJXM862BVJ3.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MU4CDFJXM862BVJ3.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "MU4CDFJXM862BVJ3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MU4CDFJXM862BVJ3.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "MU4CDFJXM862BVJ3.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MU4CDFJXM862BVJ3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "MU4CDFJXM862BVJ3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MU4CDFJXM862BVJ3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "MU4CDFJXM862BVJ3.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2290000000" - }, - "appliesTo" : [ ] - }, - "MU4CDFJXM862BVJ3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "MU4CDFJXM862BVJ3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6006" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MU4CDFJXM862BVJ3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "MU4CDFJXM862BVJ3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MU4CDFJXM862BVJ3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "MU4CDFJXM862BVJ3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "MU4CDFJXM862BVJ3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "MU4CDFJXM862BVJ3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11581" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MU4CDFJXM862BVJ3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "MU4CDFJXM862BVJ3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MU4CDFJXM862BVJ3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "MU4CDFJXM862BVJ3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6234" - }, - "appliesTo" : [ ] - }, - "MU4CDFJXM862BVJ3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "MU4CDFJXM862BVJ3.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MU4CDFJXM862BVJ3.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "MU4CDFJXM862BVJ3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MU4CDFJXM862BVJ3.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "MU4CDFJXM862BVJ3.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "2MS9BQ29TD8ZPX2B" : { - "2MS9BQ29TD8ZPX2B.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "2MS9BQ29TD8ZPX2B", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "2MS9BQ29TD8ZPX2B.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "2MS9BQ29TD8ZPX2B.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "2MS9BQ29TD8ZPX2B.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "2MS9BQ29TD8ZPX2B.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "186043" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2MS9BQ29TD8ZPX2B.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "2MS9BQ29TD8ZPX2B", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "2MS9BQ29TD8ZPX2B.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "2MS9BQ29TD8ZPX2B.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "94394" - }, - "appliesTo" : [ ] - }, - "2MS9BQ29TD8ZPX2B.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "2MS9BQ29TD8ZPX2B.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.7760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2MS9BQ29TD8ZPX2B.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "2MS9BQ29TD8ZPX2B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2MS9BQ29TD8ZPX2B.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "2MS9BQ29TD8ZPX2B.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "24.8010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2MS9BQ29TD8ZPX2B.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "2MS9BQ29TD8ZPX2B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2MS9BQ29TD8ZPX2B.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "2MS9BQ29TD8ZPX2B.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "206213" - }, - "appliesTo" : [ ] - }, - "2MS9BQ29TD8ZPX2B.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "2MS9BQ29TD8ZPX2B.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2MS9BQ29TD8ZPX2B.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "2MS9BQ29TD8ZPX2B", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "2MS9BQ29TD8ZPX2B.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "2MS9BQ29TD8ZPX2B.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.4670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2MS9BQ29TD8ZPX2B.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "2MS9BQ29TD8ZPX2B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2MS9BQ29TD8ZPX2B.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "2MS9BQ29TD8ZPX2B.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "11.9500000000" - }, - "appliesTo" : [ ] - }, - "2MS9BQ29TD8ZPX2B.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "2MS9BQ29TD8ZPX2B.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "104684" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2MS9BQ29TD8ZPX2B.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "2MS9BQ29TD8ZPX2B", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "2MS9BQ29TD8ZPX2B.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "2MS9BQ29TD8ZPX2B.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "390006" - }, - "appliesTo" : [ ] - }, - "2MS9BQ29TD8ZPX2B.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "2MS9BQ29TD8ZPX2B.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2MS9BQ29TD8ZPX2B.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "2MS9BQ29TD8ZPX2B", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "2MS9BQ29TD8ZPX2B.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "2MS9BQ29TD8ZPX2B.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "22.3340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2MS9BQ29TD8ZPX2B.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "2MS9BQ29TD8ZPX2B", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "2MS9BQ29TD8ZPX2B.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "2MS9BQ29TD8ZPX2B.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "181747" - }, - "appliesTo" : [ ] - }, - "2MS9BQ29TD8ZPX2B.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "2MS9BQ29TD8ZPX2B.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.9160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2MS9BQ29TD8ZPX2B.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "2MS9BQ29TD8ZPX2B", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "2MS9BQ29TD8ZPX2B.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "2MS9BQ29TD8ZPX2B.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "197404" - }, - "appliesTo" : [ ] - }, - "2MS9BQ29TD8ZPX2B.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "2MS9BQ29TD8ZPX2B.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2MS9BQ29TD8ZPX2B.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "2MS9BQ29TD8ZPX2B", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "2MS9BQ29TD8ZPX2B.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "2MS9BQ29TD8ZPX2B.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "350968" - }, - "appliesTo" : [ ] - }, - "2MS9BQ29TD8ZPX2B.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "2MS9BQ29TD8ZPX2B.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2MS9BQ29TD8ZPX2B.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "2MS9BQ29TD8ZPX2B", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "2MS9BQ29TD8ZPX2B.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "2MS9BQ29TD8ZPX2B.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.7540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "MJFVKRE8CR2DYKWF" : { - "MJFVKRE8CR2DYKWF.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "MJFVKRE8CR2DYKWF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MJFVKRE8CR2DYKWF.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "MJFVKRE8CR2DYKWF.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6720000000" - }, - "appliesTo" : [ ] - }, - "MJFVKRE8CR2DYKWF.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "MJFVKRE8CR2DYKWF.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5884" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MJFVKRE8CR2DYKWF.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "MJFVKRE8CR2DYKWF", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "MJFVKRE8CR2DYKWF.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "MJFVKRE8CR2DYKWF.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MJFVKRE8CR2DYKWF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "MJFVKRE8CR2DYKWF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MJFVKRE8CR2DYKWF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "MJFVKRE8CR2DYKWF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3635" - }, - "appliesTo" : [ ] - }, - "MJFVKRE8CR2DYKWF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "MJFVKRE8CR2DYKWF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MJFVKRE8CR2DYKWF.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "MJFVKRE8CR2DYKWF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MJFVKRE8CR2DYKWF.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "MJFVKRE8CR2DYKWF.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MJFVKRE8CR2DYKWF.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "MJFVKRE8CR2DYKWF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MJFVKRE8CR2DYKWF.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "MJFVKRE8CR2DYKWF.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11622" - }, - "appliesTo" : [ ] - }, - "MJFVKRE8CR2DYKWF.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "MJFVKRE8CR2DYKWF.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MJFVKRE8CR2DYKWF.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "MJFVKRE8CR2DYKWF", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "MJFVKRE8CR2DYKWF.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "MJFVKRE8CR2DYKWF.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23563" - }, - "appliesTo" : [ ] - }, - "MJFVKRE8CR2DYKWF.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "MJFVKRE8CR2DYKWF.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MJFVKRE8CR2DYKWF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "MJFVKRE8CR2DYKWF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MJFVKRE8CR2DYKWF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "MJFVKRE8CR2DYKWF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5794" - }, - "appliesTo" : [ ] - }, - "MJFVKRE8CR2DYKWF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "MJFVKRE8CR2DYKWF.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MJFVKRE8CR2DYKWF.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "MJFVKRE8CR2DYKWF", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "MJFVKRE8CR2DYKWF.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "MJFVKRE8CR2DYKWF.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MJFVKRE8CR2DYKWF.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "MJFVKRE8CR2DYKWF", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "MJFVKRE8CR2DYKWF.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "MJFVKRE8CR2DYKWF.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9813" - }, - "appliesTo" : [ ] - }, - "MJFVKRE8CR2DYKWF.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "MJFVKRE8CR2DYKWF.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MJFVKRE8CR2DYKWF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "MJFVKRE8CR2DYKWF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MJFVKRE8CR2DYKWF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "MJFVKRE8CR2DYKWF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17576" - }, - "appliesTo" : [ ] - }, - "MJFVKRE8CR2DYKWF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "MJFVKRE8CR2DYKWF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MJFVKRE8CR2DYKWF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "MJFVKRE8CR2DYKWF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MJFVKRE8CR2DYKWF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "MJFVKRE8CR2DYKWF.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "MJFVKRE8CR2DYKWF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "MJFVKRE8CR2DYKWF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8478" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "NARXYND9H74FTC7A" : { - "NARXYND9H74FTC7A.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "NARXYND9H74FTC7A", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "NARXYND9H74FTC7A.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "NARXYND9H74FTC7A.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "67314" - }, - "appliesTo" : [ ] - }, - "NARXYND9H74FTC7A.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "NARXYND9H74FTC7A.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "NARXYND9H74FTC7A.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "NARXYND9H74FTC7A", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "NARXYND9H74FTC7A.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "NARXYND9H74FTC7A.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21920" - }, - "appliesTo" : [ ] - }, - "NARXYND9H74FTC7A.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "NARXYND9H74FTC7A.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "NARXYND9H74FTC7A.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "NARXYND9H74FTC7A", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "NARXYND9H74FTC7A.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "NARXYND9H74FTC7A.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39312" - }, - "appliesTo" : [ ] - }, - "NARXYND9H74FTC7A.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "NARXYND9H74FTC7A.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "NARXYND9H74FTC7A.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "NARXYND9H74FTC7A", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "NARXYND9H74FTC7A.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "NARXYND9H74FTC7A.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "NARXYND9H74FTC7A.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "NARXYND9H74FTC7A", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NARXYND9H74FTC7A.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "NARXYND9H74FTC7A.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14619" - }, - "appliesTo" : [ ] - }, - "NARXYND9H74FTC7A.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "NARXYND9H74FTC7A.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "NARXYND9H74FTC7A.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "NARXYND9H74FTC7A", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NARXYND9H74FTC7A.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "NARXYND9H74FTC7A.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28654" - }, - "appliesTo" : [ ] - }, - "NARXYND9H74FTC7A.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "NARXYND9H74FTC7A.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "NARXYND9H74FTC7A.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "NARXYND9H74FTC7A", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NARXYND9H74FTC7A.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "NARXYND9H74FTC7A.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "NARXYND9H74FTC7A.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "NARXYND9H74FTC7A", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "NARXYND9H74FTC7A.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "NARXYND9H74FTC7A.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14560" - }, - "appliesTo" : [ ] - }, - "NARXYND9H74FTC7A.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "NARXYND9H74FTC7A.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "NARXYND9H74FTC7A.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "NARXYND9H74FTC7A", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "NARXYND9H74FTC7A.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "NARXYND9H74FTC7A.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "NARXYND9H74FTC7A.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "NARXYND9H74FTC7A", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "NARXYND9H74FTC7A.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "NARXYND9H74FTC7A.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "NARXYND9H74FTC7A.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "NARXYND9H74FTC7A.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24931" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "NARXYND9H74FTC7A.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "NARXYND9H74FTC7A", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "NARXYND9H74FTC7A.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "NARXYND9H74FTC7A.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "44418" - }, - "appliesTo" : [ ] - }, - "NARXYND9H74FTC7A.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "NARXYND9H74FTC7A.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "XTNCFY9Y77D7WC9Y" : { - "XTNCFY9Y77D7WC9Y.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XTNCFY9Y77D7WC9Y", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XTNCFY9Y77D7WC9Y.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XTNCFY9Y77D7WC9Y.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "XTNCFY9Y77D7WC9Y.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XTNCFY9Y77D7WC9Y.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1114" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XTNCFY9Y77D7WC9Y.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "XTNCFY9Y77D7WC9Y", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XTNCFY9Y77D7WC9Y.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "XTNCFY9Y77D7WC9Y.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XTNCFY9Y77D7WC9Y.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "XTNCFY9Y77D7WC9Y", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XTNCFY9Y77D7WC9Y.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "XTNCFY9Y77D7WC9Y.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2606" - }, - "appliesTo" : [ ] - }, - "XTNCFY9Y77D7WC9Y.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "XTNCFY9Y77D7WC9Y.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XTNCFY9Y77D7WC9Y.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XTNCFY9Y77D7WC9Y", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XTNCFY9Y77D7WC9Y.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XTNCFY9Y77D7WC9Y.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1363000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XTNCFY9Y77D7WC9Y.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XTNCFY9Y77D7WC9Y", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XTNCFY9Y77D7WC9Y.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XTNCFY9Y77D7WC9Y.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "569" - }, - "appliesTo" : [ ] - }, - "XTNCFY9Y77D7WC9Y.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XTNCFY9Y77D7WC9Y.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0649000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XTNCFY9Y77D7WC9Y.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "XTNCFY9Y77D7WC9Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XTNCFY9Y77D7WC9Y.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "XTNCFY9Y77D7WC9Y.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1281" - }, - "appliesTo" : [ ] - }, - "XTNCFY9Y77D7WC9Y.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "XTNCFY9Y77D7WC9Y.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XTNCFY9Y77D7WC9Y.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "XTNCFY9Y77D7WC9Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XTNCFY9Y77D7WC9Y.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "XTNCFY9Y77D7WC9Y.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0746000000" - }, - "appliesTo" : [ ] - }, - "XTNCFY9Y77D7WC9Y.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "XTNCFY9Y77D7WC9Y.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "654" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XTNCFY9Y77D7WC9Y.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "XTNCFY9Y77D7WC9Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XTNCFY9Y77D7WC9Y.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "XTNCFY9Y77D7WC9Y.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1567000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XTNCFY9Y77D7WC9Y.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XTNCFY9Y77D7WC9Y", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XTNCFY9Y77D7WC9Y.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XTNCFY9Y77D7WC9Y.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "XTNCFY9Y77D7WC9Y.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XTNCFY9Y77D7WC9Y.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2174" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XTNCFY9Y77D7WC9Y.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "XTNCFY9Y77D7WC9Y", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XTNCFY9Y77D7WC9Y.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "XTNCFY9Y77D7WC9Y.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1093000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XTNCFY9Y77D7WC9Y.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XTNCFY9Y77D7WC9Y", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XTNCFY9Y77D7WC9Y.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XTNCFY9Y77D7WC9Y.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0440000000" - }, - "appliesTo" : [ ] - }, - "XTNCFY9Y77D7WC9Y.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XTNCFY9Y77D7WC9Y.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1156" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XTNCFY9Y77D7WC9Y.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "XTNCFY9Y77D7WC9Y", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XTNCFY9Y77D7WC9Y.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "XTNCFY9Y77D7WC9Y.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1330" - }, - "appliesTo" : [ ] - }, - "XTNCFY9Y77D7WC9Y.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "XTNCFY9Y77D7WC9Y.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0506000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "3XZGHRZ6YE3HHENC" : { - "3XZGHRZ6YE3HHENC.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "3XZGHRZ6YE3HHENC", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "3XZGHRZ6YE3HHENC.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "3XZGHRZ6YE3HHENC.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "161670" - }, - "appliesTo" : [ ] - }, - "3XZGHRZ6YE3HHENC.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "3XZGHRZ6YE3HHENC.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "18.4560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3XZGHRZ6YE3HHENC.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "3XZGHRZ6YE3HHENC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3XZGHRZ6YE3HHENC.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "3XZGHRZ6YE3HHENC.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "3XZGHRZ6YE3HHENC.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "3XZGHRZ6YE3HHENC.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "340766" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3XZGHRZ6YE3HHENC.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "3XZGHRZ6YE3HHENC", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "3XZGHRZ6YE3HHENC.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "3XZGHRZ6YE3HHENC.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "29.8270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3XZGHRZ6YE3HHENC.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "3XZGHRZ6YE3HHENC", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "3XZGHRZ6YE3HHENC.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "3XZGHRZ6YE3HHENC.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "793667" - }, - "appliesTo" : [ ] - }, - "3XZGHRZ6YE3HHENC.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "3XZGHRZ6YE3HHENC.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3XZGHRZ6YE3HHENC.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "3XZGHRZ6YE3HHENC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3XZGHRZ6YE3HHENC.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "3XZGHRZ6YE3HHENC.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "171961" - }, - "appliesTo" : [ ] - }, - "3XZGHRZ6YE3HHENC.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "3XZGHRZ6YE3HHENC.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "19.6300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3XZGHRZ6YE3HHENC.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "3XZGHRZ6YE3HHENC", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "3XZGHRZ6YE3HHENC.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "3XZGHRZ6YE3HHENC.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "37.6940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3XZGHRZ6YE3HHENC.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "3XZGHRZ6YE3HHENC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3XZGHRZ6YE3HHENC.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "3XZGHRZ6YE3HHENC.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "40.1610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3XZGHRZ6YE3HHENC.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "3XZGHRZ6YE3HHENC", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "3XZGHRZ6YE3HHENC.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "3XZGHRZ6YE3HHENC.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "399234" - }, - "appliesTo" : [ ] - }, - "3XZGHRZ6YE3HHENC.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "3XZGHRZ6YE3HHENC.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.1920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3XZGHRZ6YE3HHENC.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "3XZGHRZ6YE3HHENC", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "3XZGHRZ6YE3HHENC.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "3XZGHRZ6YE3HHENC.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "383577" - }, - "appliesTo" : [ ] - }, - "3XZGHRZ6YE3HHENC.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "3XZGHRZ6YE3HHENC.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.5960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3XZGHRZ6YE3HHENC.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "3XZGHRZ6YE3HHENC", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "3XZGHRZ6YE3HHENC.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "3XZGHRZ6YE3HHENC.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "320597" - }, - "appliesTo" : [ ] - }, - "3XZGHRZ6YE3HHENC.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "3XZGHRZ6YE3HHENC.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3XZGHRZ6YE3HHENC.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "3XZGHRZ6YE3HHENC", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "3XZGHRZ6YE3HHENC.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "3XZGHRZ6YE3HHENC.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "754629" - }, - "appliesTo" : [ ] - }, - "3XZGHRZ6YE3HHENC.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "3XZGHRZ6YE3HHENC.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "GNAPQZPVUSZ36KUU" : { - "GNAPQZPVUSZ36KUU.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "GNAPQZPVUSZ36KUU", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "GNAPQZPVUSZ36KUU.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "GNAPQZPVUSZ36KUU.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "GNAPQZPVUSZ36KUU.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "GNAPQZPVUSZ36KUU.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39386" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "GNAPQZPVUSZ36KUU.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "GNAPQZPVUSZ36KUU", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "GNAPQZPVUSZ36KUU.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "GNAPQZPVUSZ36KUU.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "GNAPQZPVUSZ36KUU.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "GNAPQZPVUSZ36KUU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "GNAPQZPVUSZ36KUU.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "GNAPQZPVUSZ36KUU.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26132" - }, - "appliesTo" : [ ] - }, - "GNAPQZPVUSZ36KUU.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "GNAPQZPVUSZ36KUU.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GNAPQZPVUSZ36KUU.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "GNAPQZPVUSZ36KUU", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GNAPQZPVUSZ36KUU.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "GNAPQZPVUSZ36KUU.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26722" - }, - "appliesTo" : [ ] - }, - "GNAPQZPVUSZ36KUU.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "GNAPQZPVUSZ36KUU.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GNAPQZPVUSZ36KUU.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "GNAPQZPVUSZ36KUU", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GNAPQZPVUSZ36KUU.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "GNAPQZPVUSZ36KUU.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14520" - }, - "appliesTo" : [ ] - }, - "GNAPQZPVUSZ36KUU.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "GNAPQZPVUSZ36KUU.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GNAPQZPVUSZ36KUU.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "GNAPQZPVUSZ36KUU", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GNAPQZPVUSZ36KUU.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "GNAPQZPVUSZ36KUU.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31379" - }, - "appliesTo" : [ ] - }, - "GNAPQZPVUSZ36KUU.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "GNAPQZPVUSZ36KUU.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GNAPQZPVUSZ36KUU.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "GNAPQZPVUSZ36KUU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GNAPQZPVUSZ36KUU.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "GNAPQZPVUSZ36KUU.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "GNAPQZPVUSZ36KUU.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "GNAPQZPVUSZ36KUU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "GNAPQZPVUSZ36KUU.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "GNAPQZPVUSZ36KUU.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GNAPQZPVUSZ36KUU.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "GNAPQZPVUSZ36KUU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GNAPQZPVUSZ36KUU.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "GNAPQZPVUSZ36KUU.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8474" - }, - "appliesTo" : [ ] - }, - "GNAPQZPVUSZ36KUU.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "GNAPQZPVUSZ36KUU.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GNAPQZPVUSZ36KUU.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "GNAPQZPVUSZ36KUU", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GNAPQZPVUSZ36KUU.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "GNAPQZPVUSZ36KUU.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9633" - }, - "appliesTo" : [ ] - }, - "GNAPQZPVUSZ36KUU.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "GNAPQZPVUSZ36KUU.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GNAPQZPVUSZ36KUU.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "GNAPQZPVUSZ36KUU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GNAPQZPVUSZ36KUU.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "GNAPQZPVUSZ36KUU.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "GNAPQZPVUSZ36KUU.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "GNAPQZPVUSZ36KUU.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16621" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "YM5RNCFKGBB4T3QM" : { - "YM5RNCFKGBB4T3QM.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YM5RNCFKGBB4T3QM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YM5RNCFKGBB4T3QM.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YM5RNCFKGBB4T3QM.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "40075" - }, - "appliesTo" : [ ] - }, - "YM5RNCFKGBB4T3QM.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YM5RNCFKGBB4T3QM.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YM5RNCFKGBB4T3QM.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YM5RNCFKGBB4T3QM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YM5RNCFKGBB4T3QM.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YM5RNCFKGBB4T3QM.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20209" - }, - "appliesTo" : [ ] - }, - "YM5RNCFKGBB4T3QM.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YM5RNCFKGBB4T3QM.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YM5RNCFKGBB4T3QM.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "YM5RNCFKGBB4T3QM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YM5RNCFKGBB4T3QM.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "YM5RNCFKGBB4T3QM.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YM5RNCFKGBB4T3QM.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "YM5RNCFKGBB4T3QM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YM5RNCFKGBB4T3QM.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "YM5RNCFKGBB4T3QM.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "99208" - }, - "appliesTo" : [ ] - }, - "YM5RNCFKGBB4T3QM.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "YM5RNCFKGBB4T3QM.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YM5RNCFKGBB4T3QM.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "YM5RNCFKGBB4T3QM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YM5RNCFKGBB4T3QM.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "YM5RNCFKGBB4T3QM.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YM5RNCFKGBB4T3QM.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "YM5RNCFKGBB4T3QM.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "42596" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YM5RNCFKGBB4T3QM.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "YM5RNCFKGBB4T3QM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YM5RNCFKGBB4T3QM.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "YM5RNCFKGBB4T3QM.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21495" - }, - "appliesTo" : [ ] - }, - "YM5RNCFKGBB4T3QM.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "YM5RNCFKGBB4T3QM.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YM5RNCFKGBB4T3QM.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YM5RNCFKGBB4T3QM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YM5RNCFKGBB4T3QM.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YM5RNCFKGBB4T3QM.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.7120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YM5RNCFKGBB4T3QM.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "YM5RNCFKGBB4T3QM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YM5RNCFKGBB4T3QM.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "YM5RNCFKGBB4T3QM.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.0200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YM5RNCFKGBB4T3QM.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YM5RNCFKGBB4T3QM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YM5RNCFKGBB4T3QM.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YM5RNCFKGBB4T3QM.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "94329" - }, - "appliesTo" : [ ] - }, - "YM5RNCFKGBB4T3QM.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YM5RNCFKGBB4T3QM.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YM5RNCFKGBB4T3QM.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "YM5RNCFKGBB4T3QM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YM5RNCFKGBB4T3QM.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "YM5RNCFKGBB4T3QM.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "49904" - }, - "appliesTo" : [ ] - }, - "YM5RNCFKGBB4T3QM.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "YM5RNCFKGBB4T3QM.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YM5RNCFKGBB4T3QM.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "YM5RNCFKGBB4T3QM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YM5RNCFKGBB4T3QM.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "YM5RNCFKGBB4T3QM.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YM5RNCFKGBB4T3QM.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YM5RNCFKGBB4T3QM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YM5RNCFKGBB4T3QM.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YM5RNCFKGBB4T3QM.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47947" - }, - "appliesTo" : [ ] - }, - "YM5RNCFKGBB4T3QM.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YM5RNCFKGBB4T3QM.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "RSN2RZ8JSX98HFVM" : { - "RSN2RZ8JSX98HFVM.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "RSN2RZ8JSX98HFVM", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "RSN2RZ8JSX98HFVM.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "RSN2RZ8JSX98HFVM.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7851" - }, - "appliesTo" : [ ] - }, - "RSN2RZ8JSX98HFVM.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "RSN2RZ8JSX98HFVM.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RSN2RZ8JSX98HFVM.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "RSN2RZ8JSX98HFVM", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "RSN2RZ8JSX98HFVM.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "RSN2RZ8JSX98HFVM.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12261" - }, - "appliesTo" : [ ] - }, - "RSN2RZ8JSX98HFVM.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "RSN2RZ8JSX98HFVM.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RSN2RZ8JSX98HFVM.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "RSN2RZ8JSX98HFVM", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "RSN2RZ8JSX98HFVM.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "RSN2RZ8JSX98HFVM.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16691" - }, - "appliesTo" : [ ] - }, - "RSN2RZ8JSX98HFVM.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "RSN2RZ8JSX98HFVM.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RSN2RZ8JSX98HFVM.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "RSN2RZ8JSX98HFVM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RSN2RZ8JSX98HFVM.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "RSN2RZ8JSX98HFVM.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7085" - }, - "appliesTo" : [ ] - }, - "RSN2RZ8JSX98HFVM.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "RSN2RZ8JSX98HFVM.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RSN2RZ8JSX98HFVM.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "RSN2RZ8JSX98HFVM", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "RSN2RZ8JSX98HFVM.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "RSN2RZ8JSX98HFVM.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RSN2RZ8JSX98HFVM.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "RSN2RZ8JSX98HFVM", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "RSN2RZ8JSX98HFVM.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "RSN2RZ8JSX98HFVM.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RSN2RZ8JSX98HFVM.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "RSN2RZ8JSX98HFVM", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "RSN2RZ8JSX98HFVM.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "RSN2RZ8JSX98HFVM.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4112" - }, - "appliesTo" : [ ] - }, - "RSN2RZ8JSX98HFVM.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "RSN2RZ8JSX98HFVM.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RSN2RZ8JSX98HFVM.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "RSN2RZ8JSX98HFVM", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "RSN2RZ8JSX98HFVM.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "RSN2RZ8JSX98HFVM.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6182" - }, - "appliesTo" : [ ] - }, - "RSN2RZ8JSX98HFVM.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "RSN2RZ8JSX98HFVM.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RSN2RZ8JSX98HFVM.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "RSN2RZ8JSX98HFVM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RSN2RZ8JSX98HFVM.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "RSN2RZ8JSX98HFVM.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RSN2RZ8JSX98HFVM.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "RSN2RZ8JSX98HFVM", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "RSN2RZ8JSX98HFVM.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "RSN2RZ8JSX98HFVM.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11102" - }, - "appliesTo" : [ ] - }, - "RSN2RZ8JSX98HFVM.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "RSN2RZ8JSX98HFVM.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RSN2RZ8JSX98HFVM.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "RSN2RZ8JSX98HFVM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RSN2RZ8JSX98HFVM.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "RSN2RZ8JSX98HFVM.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3615" - }, - "appliesTo" : [ ] - }, - "RSN2RZ8JSX98HFVM.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "RSN2RZ8JSX98HFVM.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "KCYHZ77Q583MP6ET" : { - "KCYHZ77Q583MP6ET.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "KCYHZ77Q583MP6ET", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KCYHZ77Q583MP6ET.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "KCYHZ77Q583MP6ET.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "76158" - }, - "appliesTo" : [ ] - }, - "KCYHZ77Q583MP6ET.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "KCYHZ77Q583MP6ET.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.6940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KCYHZ77Q583MP6ET.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "KCYHZ77Q583MP6ET", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KCYHZ77Q583MP6ET.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "KCYHZ77Q583MP6ET.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "151631" - }, - "appliesTo" : [ ] - }, - "KCYHZ77Q583MP6ET.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "KCYHZ77Q583MP6ET.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KCYHZ77Q583MP6ET.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "KCYHZ77Q583MP6ET", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KCYHZ77Q583MP6ET.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "KCYHZ77Q583MP6ET.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "18.2000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KCYHZ77Q583MP6ET.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "KCYHZ77Q583MP6ET", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KCYHZ77Q583MP6ET.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "KCYHZ77Q583MP6ET.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.8780000000" - }, - "appliesTo" : [ ] - }, - "KCYHZ77Q583MP6ET.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "KCYHZ77Q583MP6ET.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "207031" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KCYHZ77Q583MP6ET.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "KCYHZ77Q583MP6ET", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KCYHZ77Q583MP6ET.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "KCYHZ77Q583MP6ET.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "203117" - }, - "appliesTo" : [ ] - }, - "KCYHZ77Q583MP6ET.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "KCYHZ77Q583MP6ET.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.7290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KCYHZ77Q583MP6ET.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "KCYHZ77Q583MP6ET", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KCYHZ77Q583MP6ET.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "KCYHZ77Q583MP6ET.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "78731" - }, - "appliesTo" : [ ] - }, - "KCYHZ77Q583MP6ET.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "KCYHZ77Q583MP6ET.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.9880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KCYHZ77Q583MP6ET.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "KCYHZ77Q583MP6ET", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KCYHZ77Q583MP6ET.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "KCYHZ77Q583MP6ET.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "412861" - }, - "appliesTo" : [ ] - }, - "KCYHZ77Q583MP6ET.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "KCYHZ77Q583MP6ET.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KCYHZ77Q583MP6ET.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "KCYHZ77Q583MP6ET", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KCYHZ77Q583MP6ET.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "KCYHZ77Q583MP6ET.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.6170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KCYHZ77Q583MP6ET.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "KCYHZ77Q583MP6ET", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KCYHZ77Q583MP6ET.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "KCYHZ77Q583MP6ET.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "403102" - }, - "appliesTo" : [ ] - }, - "KCYHZ77Q583MP6ET.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "KCYHZ77Q583MP6ET.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KCYHZ77Q583MP6ET.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "KCYHZ77Q583MP6ET", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KCYHZ77Q583MP6ET.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "KCYHZ77Q583MP6ET.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "156673" - }, - "appliesTo" : [ ] - }, - "KCYHZ77Q583MP6ET.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "KCYHZ77Q583MP6ET.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KCYHZ77Q583MP6ET.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "KCYHZ77Q583MP6ET", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KCYHZ77Q583MP6ET.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "KCYHZ77Q583MP6ET.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.9380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KCYHZ77Q583MP6ET.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "KCYHZ77Q583MP6ET", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KCYHZ77Q583MP6ET.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "KCYHZ77Q583MP6ET.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "17.5840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "ARPJFM962U4P5HAT" : { - "ARPJFM962U4P5HAT.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ARPJFM962U4P5HAT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ARPJFM962U4P5HAT.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ARPJFM962U4P5HAT.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ARPJFM962U4P5HAT.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ARPJFM962U4P5HAT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ARPJFM962U4P5HAT.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ARPJFM962U4P5HAT.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ARPJFM962U4P5HAT.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ARPJFM962U4P5HAT.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9715" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ARPJFM962U4P5HAT.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "ARPJFM962U4P5HAT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ARPJFM962U4P5HAT.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "ARPJFM962U4P5HAT.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ARPJFM962U4P5HAT.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ARPJFM962U4P5HAT", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "ARPJFM962U4P5HAT.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ARPJFM962U4P5HAT.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2420000000" - }, - "appliesTo" : [ ] - }, - "ARPJFM962U4P5HAT.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ARPJFM962U4P5HAT.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2116" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ARPJFM962U4P5HAT.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ARPJFM962U4P5HAT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ARPJFM962U4P5HAT.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ARPJFM962U4P5HAT.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4739" - }, - "appliesTo" : [ ] - }, - "ARPJFM962U4P5HAT.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ARPJFM962U4P5HAT.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ARPJFM962U4P5HAT.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ARPJFM962U4P5HAT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ARPJFM962U4P5HAT.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ARPJFM962U4P5HAT.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2418" - }, - "appliesTo" : [ ] - }, - "ARPJFM962U4P5HAT.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ARPJFM962U4P5HAT.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ARPJFM962U4P5HAT.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ARPJFM962U4P5HAT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ARPJFM962U4P5HAT.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ARPJFM962U4P5HAT.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ARPJFM962U4P5HAT.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ARPJFM962U4P5HAT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ARPJFM962U4P5HAT.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ARPJFM962U4P5HAT.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ARPJFM962U4P5HAT.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ARPJFM962U4P5HAT", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "ARPJFM962U4P5HAT.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ARPJFM962U4P5HAT.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4336" - }, - "appliesTo" : [ ] - }, - "ARPJFM962U4P5HAT.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ARPJFM962U4P5HAT.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ARPJFM962U4P5HAT.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ARPJFM962U4P5HAT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ARPJFM962U4P5HAT.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ARPJFM962U4P5HAT.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4956" - }, - "appliesTo" : [ ] - }, - "ARPJFM962U4P5HAT.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ARPJFM962U4P5HAT.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ARPJFM962U4P5HAT.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ARPJFM962U4P5HAT", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "ARPJFM962U4P5HAT.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ARPJFM962U4P5HAT.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8152" - }, - "appliesTo" : [ ] - }, - "ARPJFM962U4P5HAT.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ARPJFM962U4P5HAT.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ARPJFM962U4P5HAT.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ARPJFM962U4P5HAT", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "ARPJFM962U4P5HAT.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ARPJFM962U4P5HAT.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ARPJFM962U4P5HAT.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ARPJFM962U4P5HAT.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4146" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "EEY67C7D4RJ9CHR3" : { - "EEY67C7D4RJ9CHR3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "EEY67C7D4RJ9CHR3", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "EEY67C7D4RJ9CHR3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "EEY67C7D4RJ9CHR3.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1110000000" - }, - "appliesTo" : [ ] - }, - "EEY67C7D4RJ9CHR3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "EEY67C7D4RJ9CHR3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2909" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EEY67C7D4RJ9CHR3.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "EEY67C7D4RJ9CHR3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EEY67C7D4RJ9CHR3.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "EEY67C7D4RJ9CHR3.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6010" - }, - "appliesTo" : [ ] - }, - "EEY67C7D4RJ9CHR3.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "EEY67C7D4RJ9CHR3.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "EEY67C7D4RJ9CHR3.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "EEY67C7D4RJ9CHR3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EEY67C7D4RJ9CHR3.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "EEY67C7D4RJ9CHR3.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3023" - }, - "appliesTo" : [ ] - }, - "EEY67C7D4RJ9CHR3.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "EEY67C7D4RJ9CHR3.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "EEY67C7D4RJ9CHR3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "EEY67C7D4RJ9CHR3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EEY67C7D4RJ9CHR3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "EEY67C7D4RJ9CHR3.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2554000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "EEY67C7D4RJ9CHR3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "EEY67C7D4RJ9CHR3", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "EEY67C7D4RJ9CHR3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "EEY67C7D4RJ9CHR3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2180" - }, - "appliesTo" : [ ] - }, - "EEY67C7D4RJ9CHR3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "EEY67C7D4RJ9CHR3.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EEY67C7D4RJ9CHR3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "EEY67C7D4RJ9CHR3", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "EEY67C7D4RJ9CHR3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "EEY67C7D4RJ9CHR3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5726" - }, - "appliesTo" : [ ] - }, - "EEY67C7D4RJ9CHR3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "EEY67C7D4RJ9CHR3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EEY67C7D4RJ9CHR3.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "EEY67C7D4RJ9CHR3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EEY67C7D4RJ9CHR3.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "EEY67C7D4RJ9CHR3.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2354000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "EEY67C7D4RJ9CHR3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "EEY67C7D4RJ9CHR3", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "EEY67C7D4RJ9CHR3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "EEY67C7D4RJ9CHR3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1098" - }, - "appliesTo" : [ ] - }, - "EEY67C7D4RJ9CHR3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "EEY67C7D4RJ9CHR3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EEY67C7D4RJ9CHR3.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "EEY67C7D4RJ9CHR3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EEY67C7D4RJ9CHR3.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "EEY67C7D4RJ9CHR3.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2693000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "EEY67C7D4RJ9CHR3.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "EEY67C7D4RJ9CHR3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EEY67C7D4RJ9CHR3.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "EEY67C7D4RJ9CHR3.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "EEY67C7D4RJ9CHR3.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "EEY67C7D4RJ9CHR3.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2297" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "EEY67C7D4RJ9CHR3.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "EEY67C7D4RJ9CHR3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EEY67C7D4RJ9CHR3.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "EEY67C7D4RJ9CHR3.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "EEY67C7D4RJ9CHR3.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "EEY67C7D4RJ9CHR3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EEY67C7D4RJ9CHR3.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "EEY67C7D4RJ9CHR3.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1157" - }, - "appliesTo" : [ ] - }, - "EEY67C7D4RJ9CHR3.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "EEY67C7D4RJ9CHR3.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1321000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "ABGVRF96RZJ9FHTF" : { - "ABGVRF96RZJ9FHTF.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ABGVRF96RZJ9FHTF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ABGVRF96RZJ9FHTF.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ABGVRF96RZJ9FHTF.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5110000000" - }, - "appliesTo" : [ ] - }, - "ABGVRF96RZJ9FHTF.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ABGVRF96RZJ9FHTF.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4474" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ABGVRF96RZJ9FHTF.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ABGVRF96RZJ9FHTF", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "ABGVRF96RZJ9FHTF.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ABGVRF96RZJ9FHTF.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2760000000" - }, - "appliesTo" : [ ] - }, - "ABGVRF96RZJ9FHTF.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ABGVRF96RZJ9FHTF.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10732" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ABGVRF96RZJ9FHTF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ABGVRF96RZJ9FHTF", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "ABGVRF96RZJ9FHTF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ABGVRF96RZJ9FHTF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ABGVRF96RZJ9FHTF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ABGVRF96RZJ9FHTF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13323" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ABGVRF96RZJ9FHTF.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ABGVRF96RZJ9FHTF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ABGVRF96RZJ9FHTF.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ABGVRF96RZJ9FHTF.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ABGVRF96RZJ9FHTF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ABGVRF96RZJ9FHTF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ABGVRF96RZJ9FHTF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ABGVRF96RZJ9FHTF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8507" - }, - "appliesTo" : [ ] - }, - "ABGVRF96RZJ9FHTF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ABGVRF96RZJ9FHTF.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ABGVRF96RZJ9FHTF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ABGVRF96RZJ9FHTF", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "ABGVRF96RZJ9FHTF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ABGVRF96RZJ9FHTF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3831" - }, - "appliesTo" : [ ] - }, - "ABGVRF96RZJ9FHTF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ABGVRF96RZJ9FHTF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ABGVRF96RZJ9FHTF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ABGVRF96RZJ9FHTF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ABGVRF96RZJ9FHTF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ABGVRF96RZJ9FHTF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6256" - }, - "appliesTo" : [ ] - }, - "ABGVRF96RZJ9FHTF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ABGVRF96RZJ9FHTF.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ABGVRF96RZJ9FHTF.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ABGVRF96RZJ9FHTF", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "ABGVRF96RZJ9FHTF.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ABGVRF96RZJ9FHTF.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ABGVRF96RZJ9FHTF.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ABGVRF96RZJ9FHTF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ABGVRF96RZJ9FHTF.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ABGVRF96RZJ9FHTF.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8859" - }, - "appliesTo" : [ ] - }, - "ABGVRF96RZJ9FHTF.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ABGVRF96RZJ9FHTF.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ABGVRF96RZJ9FHTF.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ABGVRF96RZJ9FHTF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ABGVRF96RZJ9FHTF.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ABGVRF96RZJ9FHTF.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17621" - }, - "appliesTo" : [ ] - }, - "ABGVRF96RZJ9FHTF.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ABGVRF96RZJ9FHTF.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ABGVRF96RZJ9FHTF.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ABGVRF96RZJ9FHTF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ABGVRF96RZJ9FHTF.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ABGVRF96RZJ9FHTF.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "8KGH3T8ZZRGT8BQF" : { - "8KGH3T8ZZRGT8BQF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "8KGH3T8ZZRGT8BQF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "8KGH3T8ZZRGT8BQF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "8KGH3T8ZZRGT8BQF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9243" - }, - "appliesTo" : [ ] - }, - "8KGH3T8ZZRGT8BQF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "8KGH3T8ZZRGT8BQF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8KGH3T8ZZRGT8BQF.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "8KGH3T8ZZRGT8BQF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8KGH3T8ZZRGT8BQF.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "8KGH3T8ZZRGT8BQF.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "8KGH3T8ZZRGT8BQF.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "8KGH3T8ZZRGT8BQF.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23645" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8KGH3T8ZZRGT8BQF.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "8KGH3T8ZZRGT8BQF", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "8KGH3T8ZZRGT8BQF.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "8KGH3T8ZZRGT8BQF.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "66588" - }, - "appliesTo" : [ ] - }, - "8KGH3T8ZZRGT8BQF.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "8KGH3T8ZZRGT8BQF.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8KGH3T8ZZRGT8BQF.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "8KGH3T8ZZRGT8BQF", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "8KGH3T8ZZRGT8BQF.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "8KGH3T8ZZRGT8BQF.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8KGH3T8ZZRGT8BQF.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "8KGH3T8ZZRGT8BQF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8KGH3T8ZZRGT8BQF.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "8KGH3T8ZZRGT8BQF.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11874" - }, - "appliesTo" : [ ] - }, - "8KGH3T8ZZRGT8BQF.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "8KGH3T8ZZRGT8BQF.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8KGH3T8ZZRGT8BQF.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "8KGH3T8ZZRGT8BQF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8KGH3T8ZZRGT8BQF.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "8KGH3T8ZZRGT8BQF.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8KGH3T8ZZRGT8BQF.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "8KGH3T8ZZRGT8BQF", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "8KGH3T8ZZRGT8BQF.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "8KGH3T8ZZRGT8BQF.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8KGH3T8ZZRGT8BQF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "8KGH3T8ZZRGT8BQF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "8KGH3T8ZZRGT8BQF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "8KGH3T8ZZRGT8BQF.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4280000000" - }, - "appliesTo" : [ ] - }, - "8KGH3T8ZZRGT8BQF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "8KGH3T8ZZRGT8BQF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25014" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8KGH3T8ZZRGT8BQF.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "8KGH3T8ZZRGT8BQF", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "8KGH3T8ZZRGT8BQF.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "8KGH3T8ZZRGT8BQF.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26947" - }, - "appliesTo" : [ ] - }, - "8KGH3T8ZZRGT8BQF.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "8KGH3T8ZZRGT8BQF.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8KGH3T8ZZRGT8BQF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "8KGH3T8ZZRGT8BQF", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "8KGH3T8ZZRGT8BQF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "8KGH3T8ZZRGT8BQF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22631" - }, - "appliesTo" : [ ] - }, - "8KGH3T8ZZRGT8BQF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "8KGH3T8ZZRGT8BQF.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8KGH3T8ZZRGT8BQF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "8KGH3T8ZZRGT8BQF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "8KGH3T8ZZRGT8BQF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "8KGH3T8ZZRGT8BQF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "58789" - }, - "appliesTo" : [ ] - }, - "8KGH3T8ZZRGT8BQF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "8KGH3T8ZZRGT8BQF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "TBEWTV892NWKQS69" : { - "TBEWTV892NWKQS69.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TBEWTV892NWKQS69", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "TBEWTV892NWKQS69.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TBEWTV892NWKQS69.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TBEWTV892NWKQS69.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "TBEWTV892NWKQS69", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TBEWTV892NWKQS69.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "TBEWTV892NWKQS69.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TBEWTV892NWKQS69.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "TBEWTV892NWKQS69", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TBEWTV892NWKQS69.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "TBEWTV892NWKQS69.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9441" - }, - "appliesTo" : [ ] - }, - "TBEWTV892NWKQS69.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "TBEWTV892NWKQS69.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TBEWTV892NWKQS69.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "TBEWTV892NWKQS69", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "TBEWTV892NWKQS69.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "TBEWTV892NWKQS69.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "57387" - }, - "appliesTo" : [ ] - }, - "TBEWTV892NWKQS69.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "TBEWTV892NWKQS69.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TBEWTV892NWKQS69.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "TBEWTV892NWKQS69", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TBEWTV892NWKQS69.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "TBEWTV892NWKQS69.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18802" - }, - "appliesTo" : [ ] - }, - "TBEWTV892NWKQS69.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "TBEWTV892NWKQS69.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TBEWTV892NWKQS69.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TBEWTV892NWKQS69", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "TBEWTV892NWKQS69.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TBEWTV892NWKQS69.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12915" - }, - "appliesTo" : [ ] - }, - "TBEWTV892NWKQS69.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TBEWTV892NWKQS69.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TBEWTV892NWKQS69.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TBEWTV892NWKQS69", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "TBEWTV892NWKQS69.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TBEWTV892NWKQS69.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19469" - }, - "appliesTo" : [ ] - }, - "TBEWTV892NWKQS69.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TBEWTV892NWKQS69.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TBEWTV892NWKQS69.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "TBEWTV892NWKQS69", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "TBEWTV892NWKQS69.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "TBEWTV892NWKQS69.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TBEWTV892NWKQS69.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TBEWTV892NWKQS69", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "TBEWTV892NWKQS69.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TBEWTV892NWKQS69.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TBEWTV892NWKQS69.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TBEWTV892NWKQS69.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "50169" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TBEWTV892NWKQS69.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TBEWTV892NWKQS69", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "TBEWTV892NWKQS69.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TBEWTV892NWKQS69.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7100000000" - }, - "appliesTo" : [ ] - }, - "TBEWTV892NWKQS69.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TBEWTV892NWKQS69.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34704" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TBEWTV892NWKQS69.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "TBEWTV892NWKQS69", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "TBEWTV892NWKQS69.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "TBEWTV892NWKQS69.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7800000000" - }, - "appliesTo" : [ ] - }, - "TBEWTV892NWKQS69.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "TBEWTV892NWKQS69.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38067" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "DM52VSGUXWMC72XW" : { - "DM52VSGUXWMC72XW.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "DM52VSGUXWMC72XW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "DM52VSGUXWMC72XW.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "DM52VSGUXWMC72XW.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2740" - }, - "appliesTo" : [ ] - }, - "DM52VSGUXWMC72XW.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "DM52VSGUXWMC72XW.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DM52VSGUXWMC72XW.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "DM52VSGUXWMC72XW", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "DM52VSGUXWMC72XW.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "DM52VSGUXWMC72XW.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "DM52VSGUXWMC72XW.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "DM52VSGUXWMC72XW.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9953" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DM52VSGUXWMC72XW.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "DM52VSGUXWMC72XW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "DM52VSGUXWMC72XW.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "DM52VSGUXWMC72XW.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7046" - }, - "appliesTo" : [ ] - }, - "DM52VSGUXWMC72XW.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "DM52VSGUXWMC72XW.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DM52VSGUXWMC72XW.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "DM52VSGUXWMC72XW", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "DM52VSGUXWMC72XW.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "DM52VSGUXWMC72XW.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4914" - }, - "appliesTo" : [ ] - }, - "DM52VSGUXWMC72XW.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "DM52VSGUXWMC72XW.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DM52VSGUXWMC72XW.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "DM52VSGUXWMC72XW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DM52VSGUXWMC72XW.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "DM52VSGUXWMC72XW.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4107" - }, - "appliesTo" : [ ] - }, - "DM52VSGUXWMC72XW.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "DM52VSGUXWMC72XW.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DM52VSGUXWMC72XW.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "DM52VSGUXWMC72XW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "DM52VSGUXWMC72XW.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "DM52VSGUXWMC72XW.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DM52VSGUXWMC72XW.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "DM52VSGUXWMC72XW", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "DM52VSGUXWMC72XW.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "DM52VSGUXWMC72XW.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DM52VSGUXWMC72XW.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "DM52VSGUXWMC72XW", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "DM52VSGUXWMC72XW.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "DM52VSGUXWMC72XW.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2150000000" - }, - "appliesTo" : [ ] - }, - "DM52VSGUXWMC72XW.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "DM52VSGUXWMC72XW.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1820" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DM52VSGUXWMC72XW.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "DM52VSGUXWMC72XW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "DM52VSGUXWMC72XW.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "DM52VSGUXWMC72XW.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3629" - }, - "appliesTo" : [ ] - }, - "DM52VSGUXWMC72XW.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "DM52VSGUXWMC72XW.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DM52VSGUXWMC72XW.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "DM52VSGUXWMC72XW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DM52VSGUXWMC72XW.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "DM52VSGUXWMC72XW.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1827" - }, - "appliesTo" : [ ] - }, - "DM52VSGUXWMC72XW.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "DM52VSGUXWMC72XW.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DM52VSGUXWMC72XW.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "DM52VSGUXWMC72XW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DM52VSGUXWMC72XW.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "DM52VSGUXWMC72XW.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "75XER897G2X2ZNFP" : { - "75XER897G2X2ZNFP.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "75XER897G2X2ZNFP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "75XER897G2X2ZNFP.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "75XER897G2X2ZNFP.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "58014" - }, - "appliesTo" : [ ] - }, - "75XER897G2X2ZNFP.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "75XER897G2X2ZNFP.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "75XER897G2X2ZNFP.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "75XER897G2X2ZNFP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "75XER897G2X2ZNFP.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "75XER897G2X2ZNFP.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.7260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "75XER897G2X2ZNFP.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "75XER897G2X2ZNFP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "75XER897G2X2ZNFP.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "75XER897G2X2ZNFP.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7600000000" - }, - "appliesTo" : [ ] - }, - "75XER897G2X2ZNFP.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "75XER897G2X2ZNFP.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "72533" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "75XER897G2X2ZNFP.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "75XER897G2X2ZNFP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "75XER897G2X2ZNFP.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "75XER897G2X2ZNFP.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "143712" - }, - "appliesTo" : [ ] - }, - "75XER897G2X2ZNFP.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "75XER897G2X2ZNFP.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "75XER897G2X2ZNFP.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "75XER897G2X2ZNFP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "75XER897G2X2ZNFP.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "75XER897G2X2ZNFP.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.3630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "75XER897G2X2ZNFP.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "75XER897G2X2ZNFP", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "75XER897G2X2ZNFP.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "75XER897G2X2ZNFP.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "53645" - }, - "appliesTo" : [ ] - }, - "75XER897G2X2ZNFP.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "75XER897G2X2ZNFP.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "75XER897G2X2ZNFP.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "75XER897G2X2ZNFP", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "75XER897G2X2ZNFP.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "75XER897G2X2ZNFP.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "132862" - }, - "appliesTo" : [ ] - }, - "75XER897G2X2ZNFP.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "75XER897G2X2ZNFP.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "75XER897G2X2ZNFP.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "75XER897G2X2ZNFP", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "75XER897G2X2ZNFP.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "75XER897G2X2ZNFP.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "68202" - }, - "appliesTo" : [ ] - }, - "75XER897G2X2ZNFP.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "75XER897G2X2ZNFP.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "75XER897G2X2ZNFP.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "75XER897G2X2ZNFP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "75XER897G2X2ZNFP.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "75XER897G2X2ZNFP.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.8850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "75XER897G2X2ZNFP.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "75XER897G2X2ZNFP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "75XER897G2X2ZNFP.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "75XER897G2X2ZNFP.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29336" - }, - "appliesTo" : [ ] - }, - "75XER897G2X2ZNFP.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "75XER897G2X2ZNFP.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "75XER897G2X2ZNFP.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "75XER897G2X2ZNFP", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "75XER897G2X2ZNFP.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "75XER897G2X2ZNFP.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27107" - }, - "appliesTo" : [ ] - }, - "75XER897G2X2ZNFP.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "75XER897G2X2ZNFP.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "75XER897G2X2ZNFP.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "75XER897G2X2ZNFP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "75XER897G2X2ZNFP.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "75XER897G2X2ZNFP.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.3710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "SUXHXAPA9KC5QKGF" : { - "SUXHXAPA9KC5QKGF.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "SUXHXAPA9KC5QKGF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SUXHXAPA9KC5QKGF.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "SUXHXAPA9KC5QKGF.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2641" - }, - "appliesTo" : [ ] - }, - "SUXHXAPA9KC5QKGF.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "SUXHXAPA9KC5QKGF.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SUXHXAPA9KC5QKGF.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "SUXHXAPA9KC5QKGF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SUXHXAPA9KC5QKGF.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "SUXHXAPA9KC5QKGF.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SUXHXAPA9KC5QKGF.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "SUXHXAPA9KC5QKGF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SUXHXAPA9KC5QKGF.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "SUXHXAPA9KC5QKGF.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8046" - }, - "appliesTo" : [ ] - }, - "SUXHXAPA9KC5QKGF.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "SUXHXAPA9KC5QKGF.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SUXHXAPA9KC5QKGF.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SUXHXAPA9KC5QKGF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SUXHXAPA9KC5QKGF.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SUXHXAPA9KC5QKGF.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SUXHXAPA9KC5QKGF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SUXHXAPA9KC5QKGF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SUXHXAPA9KC5QKGF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SUXHXAPA9KC5QKGF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2320" - }, - "appliesTo" : [ ] - }, - "SUXHXAPA9KC5QKGF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SUXHXAPA9KC5QKGF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SUXHXAPA9KC5QKGF.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "SUXHXAPA9KC5QKGF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SUXHXAPA9KC5QKGF.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "SUXHXAPA9KC5QKGF.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5122" - }, - "appliesTo" : [ ] - }, - "SUXHXAPA9KC5QKGF.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "SUXHXAPA9KC5QKGF.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SUXHXAPA9KC5QKGF.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "SUXHXAPA9KC5QKGF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SUXHXAPA9KC5QKGF.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "SUXHXAPA9KC5QKGF.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SUXHXAPA9KC5QKGF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SUXHXAPA9KC5QKGF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SUXHXAPA9KC5QKGF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SUXHXAPA9KC5QKGF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6826" - }, - "appliesTo" : [ ] - }, - "SUXHXAPA9KC5QKGF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SUXHXAPA9KC5QKGF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SUXHXAPA9KC5QKGF.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "SUXHXAPA9KC5QKGF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SUXHXAPA9KC5QKGF.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "SUXHXAPA9KC5QKGF.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SUXHXAPA9KC5QKGF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SUXHXAPA9KC5QKGF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SUXHXAPA9KC5QKGF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SUXHXAPA9KC5QKGF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4492" - }, - "appliesTo" : [ ] - }, - "SUXHXAPA9KC5QKGF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SUXHXAPA9KC5QKGF.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SUXHXAPA9KC5QKGF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SUXHXAPA9KC5QKGF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SUXHXAPA9KC5QKGF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SUXHXAPA9KC5QKGF.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1370000000" - }, - "appliesTo" : [ ] - }, - "SUXHXAPA9KC5QKGF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SUXHXAPA9KC5QKGF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3614" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SUXHXAPA9KC5QKGF.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "SUXHXAPA9KC5QKGF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SUXHXAPA9KC5QKGF.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "SUXHXAPA9KC5QKGF.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4103" - }, - "appliesTo" : [ ] - }, - "SUXHXAPA9KC5QKGF.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "SUXHXAPA9KC5QKGF.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "QAMMQS9R5WC8PTN7" : { - "QAMMQS9R5WC8PTN7.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QAMMQS9R5WC8PTN7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QAMMQS9R5WC8PTN7.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QAMMQS9R5WC8PTN7.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "68202" - }, - "appliesTo" : [ ] - }, - "QAMMQS9R5WC8PTN7.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QAMMQS9R5WC8PTN7.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QAMMQS9R5WC8PTN7.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "QAMMQS9R5WC8PTN7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QAMMQS9R5WC8PTN7.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "QAMMQS9R5WC8PTN7.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "143712" - }, - "appliesTo" : [ ] - }, - "QAMMQS9R5WC8PTN7.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "QAMMQS9R5WC8PTN7.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QAMMQS9R5WC8PTN7.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QAMMQS9R5WC8PTN7", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "QAMMQS9R5WC8PTN7.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QAMMQS9R5WC8PTN7.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QAMMQS9R5WC8PTN7.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QAMMQS9R5WC8PTN7.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "132862" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QAMMQS9R5WC8PTN7.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "QAMMQS9R5WC8PTN7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QAMMQS9R5WC8PTN7.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "QAMMQS9R5WC8PTN7.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.7260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QAMMQS9R5WC8PTN7.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "QAMMQS9R5WC8PTN7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QAMMQS9R5WC8PTN7.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "QAMMQS9R5WC8PTN7.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.3630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QAMMQS9R5WC8PTN7.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "QAMMQS9R5WC8PTN7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QAMMQS9R5WC8PTN7.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "QAMMQS9R5WC8PTN7.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QAMMQS9R5WC8PTN7.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "QAMMQS9R5WC8PTN7.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "58014" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QAMMQS9R5WC8PTN7.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QAMMQS9R5WC8PTN7", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "QAMMQS9R5WC8PTN7.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QAMMQS9R5WC8PTN7.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27107" - }, - "appliesTo" : [ ] - }, - "QAMMQS9R5WC8PTN7.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QAMMQS9R5WC8PTN7.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QAMMQS9R5WC8PTN7.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QAMMQS9R5WC8PTN7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QAMMQS9R5WC8PTN7.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QAMMQS9R5WC8PTN7.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.3710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QAMMQS9R5WC8PTN7.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QAMMQS9R5WC8PTN7", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "QAMMQS9R5WC8PTN7.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QAMMQS9R5WC8PTN7.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "53645" - }, - "appliesTo" : [ ] - }, - "QAMMQS9R5WC8PTN7.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QAMMQS9R5WC8PTN7.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QAMMQS9R5WC8PTN7.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "QAMMQS9R5WC8PTN7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QAMMQS9R5WC8PTN7.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "QAMMQS9R5WC8PTN7.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3490000000" - }, - "appliesTo" : [ ] - }, - "QAMMQS9R5WC8PTN7.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "QAMMQS9R5WC8PTN7.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29336" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QAMMQS9R5WC8PTN7.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "QAMMQS9R5WC8PTN7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QAMMQS9R5WC8PTN7.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "QAMMQS9R5WC8PTN7.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.8850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QAMMQS9R5WC8PTN7.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "QAMMQS9R5WC8PTN7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QAMMQS9R5WC8PTN7.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "QAMMQS9R5WC8PTN7.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "72533" - }, - "appliesTo" : [ ] - }, - "QAMMQS9R5WC8PTN7.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "QAMMQS9R5WC8PTN7.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "DJZE39FJBRGB2JNH" : { - "DJZE39FJBRGB2JNH.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "DJZE39FJBRGB2JNH", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "DJZE39FJBRGB2JNH.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "DJZE39FJBRGB2JNH.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24894" - }, - "appliesTo" : [ ] - }, - "DJZE39FJBRGB2JNH.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "DJZE39FJBRGB2JNH.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DJZE39FJBRGB2JNH.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "DJZE39FJBRGB2JNH", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "DJZE39FJBRGB2JNH.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "DJZE39FJBRGB2JNH.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DJZE39FJBRGB2JNH.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "DJZE39FJBRGB2JNH", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "DJZE39FJBRGB2JNH.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "DJZE39FJBRGB2JNH.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "64667" - }, - "appliesTo" : [ ] - }, - "DJZE39FJBRGB2JNH.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "DJZE39FJBRGB2JNH.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DJZE39FJBRGB2JNH.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "DJZE39FJBRGB2JNH", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "DJZE39FJBRGB2JNH.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "DJZE39FJBRGB2JNH.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27515" - }, - "appliesTo" : [ ] - }, - "DJZE39FJBRGB2JNH.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "DJZE39FJBRGB2JNH.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DJZE39FJBRGB2JNH.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "DJZE39FJBRGB2JNH", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "DJZE39FJBRGB2JNH.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "DJZE39FJBRGB2JNH.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7160000000" - }, - "appliesTo" : [ ] - }, - "DJZE39FJBRGB2JNH.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "DJZE39FJBRGB2JNH.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29640" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DJZE39FJBRGB2JNH.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "DJZE39FJBRGB2JNH", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "DJZE39FJBRGB2JNH.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "DJZE39FJBRGB2JNH.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DJZE39FJBRGB2JNH.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "DJZE39FJBRGB2JNH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DJZE39FJBRGB2JNH.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "DJZE39FJBRGB2JNH.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DJZE39FJBRGB2JNH.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "DJZE39FJBRGB2JNH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DJZE39FJBRGB2JNH.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "DJZE39FJBRGB2JNH.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12128" - }, - "appliesTo" : [ ] - }, - "DJZE39FJBRGB2JNH.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "DJZE39FJBRGB2JNH.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DJZE39FJBRGB2JNH.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "DJZE39FJBRGB2JNH", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "DJZE39FJBRGB2JNH.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "DJZE39FJBRGB2JNH.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "73247" - }, - "appliesTo" : [ ] - }, - "DJZE39FJBRGB2JNH.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "DJZE39FJBRGB2JNH.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DJZE39FJBRGB2JNH.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "DJZE39FJBRGB2JNH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DJZE39FJBRGB2JNH.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "DJZE39FJBRGB2JNH.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24144" - }, - "appliesTo" : [ ] - }, - "DJZE39FJBRGB2JNH.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "DJZE39FJBRGB2JNH.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DJZE39FJBRGB2JNH.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "DJZE39FJBRGB2JNH", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "DJZE39FJBRGB2JNH.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "DJZE39FJBRGB2JNH.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10167" - }, - "appliesTo" : [ ] - }, - "DJZE39FJBRGB2JNH.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "DJZE39FJBRGB2JNH.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "285FWCDXDE9KA35M" : { - "285FWCDXDE9KA35M.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "285FWCDXDE9KA35M", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "285FWCDXDE9KA35M.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "285FWCDXDE9KA35M.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "790" - }, - "appliesTo" : [ ] - }, - "285FWCDXDE9KA35M.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "285FWCDXDE9KA35M.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "285FWCDXDE9KA35M.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "285FWCDXDE9KA35M", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "285FWCDXDE9KA35M.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "285FWCDXDE9KA35M.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1924" - }, - "appliesTo" : [ ] - }, - "285FWCDXDE9KA35M.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "285FWCDXDE9KA35M.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "285FWCDXDE9KA35M.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "285FWCDXDE9KA35M", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "285FWCDXDE9KA35M.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "285FWCDXDE9KA35M.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "285FWCDXDE9KA35M.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "285FWCDXDE9KA35M", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "285FWCDXDE9KA35M.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "285FWCDXDE9KA35M.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5537" - }, - "appliesTo" : [ ] - }, - "285FWCDXDE9KA35M.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "285FWCDXDE9KA35M.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "285FWCDXDE9KA35M.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "285FWCDXDE9KA35M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "285FWCDXDE9KA35M.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "285FWCDXDE9KA35M.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2321" - }, - "appliesTo" : [ ] - }, - "285FWCDXDE9KA35M.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "285FWCDXDE9KA35M.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "285FWCDXDE9KA35M.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "285FWCDXDE9KA35M", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "285FWCDXDE9KA35M.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "285FWCDXDE9KA35M.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "285FWCDXDE9KA35M.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "285FWCDXDE9KA35M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "285FWCDXDE9KA35M.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "285FWCDXDE9KA35M.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "285FWCDXDE9KA35M.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "285FWCDXDE9KA35M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "285FWCDXDE9KA35M.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "285FWCDXDE9KA35M.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1169" - }, - "appliesTo" : [ ] - }, - "285FWCDXDE9KA35M.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "285FWCDXDE9KA35M.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "285FWCDXDE9KA35M.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "285FWCDXDE9KA35M", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "285FWCDXDE9KA35M.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "285FWCDXDE9KA35M.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4342" - }, - "appliesTo" : [ ] - }, - "285FWCDXDE9KA35M.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "285FWCDXDE9KA35M.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "285FWCDXDE9KA35M.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "285FWCDXDE9KA35M", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "285FWCDXDE9KA35M.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "285FWCDXDE9KA35M.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1310000000" - }, - "appliesTo" : [ ] - }, - "285FWCDXDE9KA35M.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "285FWCDXDE9KA35M.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2231" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "285FWCDXDE9KA35M.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "285FWCDXDE9KA35M", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "285FWCDXDE9KA35M.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "285FWCDXDE9KA35M.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1845" - }, - "appliesTo" : [ ] - }, - "285FWCDXDE9KA35M.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "285FWCDXDE9KA35M.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "ADJRHP9DZHM7DJPS" : { - "ADJRHP9DZHM7DJPS.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ADJRHP9DZHM7DJPS", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "ADJRHP9DZHM7DJPS.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ADJRHP9DZHM7DJPS.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "75270" - }, - "appliesTo" : [ ] - }, - "ADJRHP9DZHM7DJPS.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ADJRHP9DZHM7DJPS.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ADJRHP9DZHM7DJPS.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ADJRHP9DZHM7DJPS", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "ADJRHP9DZHM7DJPS.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ADJRHP9DZHM7DJPS.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "142762" - }, - "appliesTo" : [ ] - }, - "ADJRHP9DZHM7DJPS.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ADJRHP9DZHM7DJPS.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ADJRHP9DZHM7DJPS.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "ADJRHP9DZHM7DJPS", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "ADJRHP9DZHM7DJPS.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "ADJRHP9DZHM7DJPS.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.1230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ADJRHP9DZHM7DJPS.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ADJRHP9DZHM7DJPS", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "ADJRHP9DZHM7DJPS.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ADJRHP9DZHM7DJPS.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.1490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ADJRHP9DZHM7DJPS.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ADJRHP9DZHM7DJPS", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "ADJRHP9DZHM7DJPS.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ADJRHP9DZHM7DJPS.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38332" - }, - "appliesTo" : [ ] - }, - "ADJRHP9DZHM7DJPS.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ADJRHP9DZHM7DJPS.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.3760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ADJRHP9DZHM7DJPS.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ADJRHP9DZHM7DJPS", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "ADJRHP9DZHM7DJPS.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ADJRHP9DZHM7DJPS.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "75270" - }, - "appliesTo" : [ ] - }, - "ADJRHP9DZHM7DJPS.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ADJRHP9DZHM7DJPS.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "EYGMRBWWFGSQBSBZ" : { - "EYGMRBWWFGSQBSBZ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "EYGMRBWWFGSQBSBZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "EYGMRBWWFGSQBSBZ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "EYGMRBWWFGSQBSBZ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1501" - }, - "appliesTo" : [ ] - }, - "EYGMRBWWFGSQBSBZ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "EYGMRBWWFGSQBSBZ.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EYGMRBWWFGSQBSBZ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "EYGMRBWWFGSQBSBZ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "EYGMRBWWFGSQBSBZ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "EYGMRBWWFGSQBSBZ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "EYGMRBWWFGSQBSBZ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "EYGMRBWWFGSQBSBZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "EYGMRBWWFGSQBSBZ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "EYGMRBWWFGSQBSBZ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1671" - }, - "appliesTo" : [ ] - }, - "EYGMRBWWFGSQBSBZ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "EYGMRBWWFGSQBSBZ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EYGMRBWWFGSQBSBZ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "EYGMRBWWFGSQBSBZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "EYGMRBWWFGSQBSBZ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "EYGMRBWWFGSQBSBZ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3066" - }, - "appliesTo" : [ ] - }, - "EYGMRBWWFGSQBSBZ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "EYGMRBWWFGSQBSBZ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EYGMRBWWFGSQBSBZ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "EYGMRBWWFGSQBSBZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "EYGMRBWWFGSQBSBZ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "EYGMRBWWFGSQBSBZ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "987" - }, - "appliesTo" : [ ] - }, - "EYGMRBWWFGSQBSBZ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "EYGMRBWWFGSQBSBZ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "ZTJAGDVB3B33WX4G" : { - "ZTJAGDVB3B33WX4G.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ZTJAGDVB3B33WX4G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZTJAGDVB3B33WX4G.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ZTJAGDVB3B33WX4G.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZTJAGDVB3B33WX4G.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ZTJAGDVB3B33WX4G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZTJAGDVB3B33WX4G.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ZTJAGDVB3B33WX4G.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "956" - }, - "appliesTo" : [ ] - }, - "ZTJAGDVB3B33WX4G.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ZTJAGDVB3B33WX4G.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZTJAGDVB3B33WX4G.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ZTJAGDVB3B33WX4G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZTJAGDVB3B33WX4G.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ZTJAGDVB3B33WX4G.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1836" - }, - "appliesTo" : [ ] - }, - "ZTJAGDVB3B33WX4G.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ZTJAGDVB3B33WX4G.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZTJAGDVB3B33WX4G.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ZTJAGDVB3B33WX4G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZTJAGDVB3B33WX4G.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ZTJAGDVB3B33WX4G.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2596" - }, - "appliesTo" : [ ] - }, - "ZTJAGDVB3B33WX4G.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ZTJAGDVB3B33WX4G.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZTJAGDVB3B33WX4G.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ZTJAGDVB3B33WX4G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZTJAGDVB3B33WX4G.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ZTJAGDVB3B33WX4G.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2531" - }, - "appliesTo" : [ ] - }, - "ZTJAGDVB3B33WX4G.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ZTJAGDVB3B33WX4G.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZTJAGDVB3B33WX4G.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ZTJAGDVB3B33WX4G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZTJAGDVB3B33WX4G.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ZTJAGDVB3B33WX4G.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1902" - }, - "appliesTo" : [ ] - }, - "ZTJAGDVB3B33WX4G.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ZTJAGDVB3B33WX4G.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZTJAGDVB3B33WX4G.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ZTJAGDVB3B33WX4G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZTJAGDVB3B33WX4G.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ZTJAGDVB3B33WX4G.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5009" - }, - "appliesTo" : [ ] - }, - "ZTJAGDVB3B33WX4G.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ZTJAGDVB3B33WX4G.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZTJAGDVB3B33WX4G.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "ZTJAGDVB3B33WX4G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZTJAGDVB3B33WX4G.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "ZTJAGDVB3B33WX4G.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZTJAGDVB3B33WX4G.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ZTJAGDVB3B33WX4G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZTJAGDVB3B33WX4G.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ZTJAGDVB3B33WX4G.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZTJAGDVB3B33WX4G.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ZTJAGDVB3B33WX4G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZTJAGDVB3B33WX4G.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ZTJAGDVB3B33WX4G.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5173" - }, - "appliesTo" : [ ] - }, - "ZTJAGDVB3B33WX4G.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ZTJAGDVB3B33WX4G.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZTJAGDVB3B33WX4G.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ZTJAGDVB3B33WX4G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZTJAGDVB3B33WX4G.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ZTJAGDVB3B33WX4G.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZTJAGDVB3B33WX4G.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ZTJAGDVB3B33WX4G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZTJAGDVB3B33WX4G.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ZTJAGDVB3B33WX4G.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "922" - }, - "appliesTo" : [ ] - }, - "ZTJAGDVB3B33WX4G.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ZTJAGDVB3B33WX4G.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "KAH9XCCP3F226R57" : { - "KAH9XCCP3F226R57.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "KAH9XCCP3F226R57", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "KAH9XCCP3F226R57.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "KAH9XCCP3F226R57.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1235" - }, - "appliesTo" : [ ] - }, - "KAH9XCCP3F226R57.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "KAH9XCCP3F226R57.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KAH9XCCP3F226R57.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "KAH9XCCP3F226R57", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "KAH9XCCP3F226R57.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "KAH9XCCP3F226R57.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2087" - }, - "appliesTo" : [ ] - }, - "KAH9XCCP3F226R57.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "KAH9XCCP3F226R57.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KAH9XCCP3F226R57.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "KAH9XCCP3F226R57", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "KAH9XCCP3F226R57.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "KAH9XCCP3F226R57.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1969" - }, - "appliesTo" : [ ] - }, - "KAH9XCCP3F226R57.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "KAH9XCCP3F226R57.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KAH9XCCP3F226R57.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "KAH9XCCP3F226R57", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "KAH9XCCP3F226R57.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "KAH9XCCP3F226R57.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3888" - }, - "appliesTo" : [ ] - }, - "KAH9XCCP3F226R57.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "KAH9XCCP3F226R57.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KAH9XCCP3F226R57.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "KAH9XCCP3F226R57", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "KAH9XCCP3F226R57.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "KAH9XCCP3F226R57.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "XVDMNM2WMYBYVW3T" : { - "XVDMNM2WMYBYVW3T.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XVDMNM2WMYBYVW3T", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "XVDMNM2WMYBYVW3T.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XVDMNM2WMYBYVW3T.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "80354" - }, - "appliesTo" : [ ] - }, - "XVDMNM2WMYBYVW3T.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XVDMNM2WMYBYVW3T.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XVDMNM2WMYBYVW3T.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XVDMNM2WMYBYVW3T", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "XVDMNM2WMYBYVW3T.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XVDMNM2WMYBYVW3T.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "40997" - }, - "appliesTo" : [ ] - }, - "XVDMNM2WMYBYVW3T.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XVDMNM2WMYBYVW3T.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.6800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XVDMNM2WMYBYVW3T.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XVDMNM2WMYBYVW3T", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XVDMNM2WMYBYVW3T.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XVDMNM2WMYBYVW3T.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "167982" - }, - "appliesTo" : [ ] - }, - "XVDMNM2WMYBYVW3T.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XVDMNM2WMYBYVW3T.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XVDMNM2WMYBYVW3T.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "XVDMNM2WMYBYVW3T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XVDMNM2WMYBYVW3T.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "XVDMNM2WMYBYVW3T.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "11.3020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XVDMNM2WMYBYVW3T.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "XVDMNM2WMYBYVW3T", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XVDMNM2WMYBYVW3T.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "XVDMNM2WMYBYVW3T.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "102756" - }, - "appliesTo" : [ ] - }, - "XVDMNM2WMYBYVW3T.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "XVDMNM2WMYBYVW3T.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XVDMNM2WMYBYVW3T.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XVDMNM2WMYBYVW3T", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "XVDMNM2WMYBYVW3T.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XVDMNM2WMYBYVW3T.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "89352" - }, - "appliesTo" : [ ] - }, - "XVDMNM2WMYBYVW3T.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XVDMNM2WMYBYVW3T.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XVDMNM2WMYBYVW3T.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "XVDMNM2WMYBYVW3T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XVDMNM2WMYBYVW3T.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "XVDMNM2WMYBYVW3T.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47146" - }, - "appliesTo" : [ ] - }, - "XVDMNM2WMYBYVW3T.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "XVDMNM2WMYBYVW3T.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.3820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XVDMNM2WMYBYVW3T.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "XVDMNM2WMYBYVW3T", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XVDMNM2WMYBYVW3T.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "XVDMNM2WMYBYVW3T.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "XVDMNM2WMYBYVW3T.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "XVDMNM2WMYBYVW3T.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "201401" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XVDMNM2WMYBYVW3T.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "XVDMNM2WMYBYVW3T", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XVDMNM2WMYBYVW3T.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "XVDMNM2WMYBYVW3T.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XVDMNM2WMYBYVW3T.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "XVDMNM2WMYBYVW3T", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XVDMNM2WMYBYVW3T.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "XVDMNM2WMYBYVW3T.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.4460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XVDMNM2WMYBYVW3T.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "XVDMNM2WMYBYVW3T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XVDMNM2WMYBYVW3T.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "XVDMNM2WMYBYVW3T.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "XVDMNM2WMYBYVW3T.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "XVDMNM2WMYBYVW3T.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "92407" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XVDMNM2WMYBYVW3T.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XVDMNM2WMYBYVW3T", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XVDMNM2WMYBYVW3T.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XVDMNM2WMYBYVW3T.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.8280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "6Z2HWHRBW2ZH7Z33" : { - "6Z2HWHRBW2ZH7Z33.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6Z2HWHRBW2ZH7Z33", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "6Z2HWHRBW2ZH7Z33.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6Z2HWHRBW2ZH7Z33.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "977" - }, - "appliesTo" : [ ] - }, - "6Z2HWHRBW2ZH7Z33.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6Z2HWHRBW2ZH7Z33.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6Z2HWHRBW2ZH7Z33.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6Z2HWHRBW2ZH7Z33", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "6Z2HWHRBW2ZH7Z33.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6Z2HWHRBW2ZH7Z33.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2029" - }, - "appliesTo" : [ ] - }, - "6Z2HWHRBW2ZH7Z33.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6Z2HWHRBW2ZH7Z33.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6Z2HWHRBW2ZH7Z33.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "6Z2HWHRBW2ZH7Z33", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6Z2HWHRBW2ZH7Z33.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "6Z2HWHRBW2ZH7Z33.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2327" - }, - "appliesTo" : [ ] - }, - "6Z2HWHRBW2ZH7Z33.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "6Z2HWHRBW2ZH7Z33.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6Z2HWHRBW2ZH7Z33.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "6Z2HWHRBW2ZH7Z33", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6Z2HWHRBW2ZH7Z33.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "6Z2HWHRBW2ZH7Z33.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6Z2HWHRBW2ZH7Z33.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6Z2HWHRBW2ZH7Z33", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6Z2HWHRBW2ZH7Z33.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6Z2HWHRBW2ZH7Z33.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2441" - }, - "appliesTo" : [ ] - }, - "6Z2HWHRBW2ZH7Z33.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6Z2HWHRBW2ZH7Z33.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6Z2HWHRBW2ZH7Z33.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6Z2HWHRBW2ZH7Z33", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "6Z2HWHRBW2ZH7Z33.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6Z2HWHRBW2ZH7Z33.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5392" - }, - "appliesTo" : [ ] - }, - "6Z2HWHRBW2ZH7Z33.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6Z2HWHRBW2ZH7Z33.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6Z2HWHRBW2ZH7Z33.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6Z2HWHRBW2ZH7Z33", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6Z2HWHRBW2ZH7Z33.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6Z2HWHRBW2ZH7Z33.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6Z2HWHRBW2ZH7Z33.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "6Z2HWHRBW2ZH7Z33", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6Z2HWHRBW2ZH7Z33.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "6Z2HWHRBW2ZH7Z33.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1130" - }, - "appliesTo" : [ ] - }, - "6Z2HWHRBW2ZH7Z33.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "6Z2HWHRBW2ZH7Z33.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6Z2HWHRBW2ZH7Z33.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "6Z2HWHRBW2ZH7Z33", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6Z2HWHRBW2ZH7Z33.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "6Z2HWHRBW2ZH7Z33.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6Z2HWHRBW2ZH7Z33.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "6Z2HWHRBW2ZH7Z33", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6Z2HWHRBW2ZH7Z33.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "6Z2HWHRBW2ZH7Z33.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "6Z2HWHRBW2ZH7Z33.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "6Z2HWHRBW2ZH7Z33.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2741" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6Z2HWHRBW2ZH7Z33.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "6Z2HWHRBW2ZH7Z33", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6Z2HWHRBW2ZH7Z33.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "6Z2HWHRBW2ZH7Z33.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6Z2HWHRBW2ZH7Z33.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "6Z2HWHRBW2ZH7Z33", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6Z2HWHRBW2ZH7Z33.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "6Z2HWHRBW2ZH7Z33.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6138" - }, - "appliesTo" : [ ] - }, - "6Z2HWHRBW2ZH7Z33.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "6Z2HWHRBW2ZH7Z33.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "VC8RXUKPQB42NMCF" : { - "VC8RXUKPQB42NMCF.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "VC8RXUKPQB42NMCF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VC8RXUKPQB42NMCF.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "VC8RXUKPQB42NMCF.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VC8RXUKPQB42NMCF.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "VC8RXUKPQB42NMCF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VC8RXUKPQB42NMCF.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "VC8RXUKPQB42NMCF.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VC8RXUKPQB42NMCF.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "VC8RXUKPQB42NMCF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VC8RXUKPQB42NMCF.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "VC8RXUKPQB42NMCF.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "332" - }, - "appliesTo" : [ ] - }, - "VC8RXUKPQB42NMCF.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "VC8RXUKPQB42NMCF.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VC8RXUKPQB42NMCF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "VC8RXUKPQB42NMCF", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "VC8RXUKPQB42NMCF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "VC8RXUKPQB42NMCF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0930000000" - }, - "appliesTo" : [ ] - }, - "VC8RXUKPQB42NMCF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "VC8RXUKPQB42NMCF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "289" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VC8RXUKPQB42NMCF.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "VC8RXUKPQB42NMCF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VC8RXUKPQB42NMCF.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "VC8RXUKPQB42NMCF.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1177" - }, - "appliesTo" : [ ] - }, - "VC8RXUKPQB42NMCF.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "VC8RXUKPQB42NMCF.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VC8RXUKPQB42NMCF.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "VC8RXUKPQB42NMCF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VC8RXUKPQB42NMCF.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "VC8RXUKPQB42NMCF.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VC8RXUKPQB42NMCF.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "VC8RXUKPQB42NMCF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VC8RXUKPQB42NMCF.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "VC8RXUKPQB42NMCF.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "682" - }, - "appliesTo" : [ ] - }, - "VC8RXUKPQB42NMCF.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "VC8RXUKPQB42NMCF.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VC8RXUKPQB42NMCF.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "VC8RXUKPQB42NMCF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VC8RXUKPQB42NMCF.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "VC8RXUKPQB42NMCF.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VC8RXUKPQB42NMCF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "VC8RXUKPQB42NMCF", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "VC8RXUKPQB42NMCF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "VC8RXUKPQB42NMCF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2691" - }, - "appliesTo" : [ ] - }, - "VC8RXUKPQB42NMCF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "VC8RXUKPQB42NMCF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VC8RXUKPQB42NMCF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "VC8RXUKPQB42NMCF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VC8RXUKPQB42NMCF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "VC8RXUKPQB42NMCF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1092" - }, - "appliesTo" : [ ] - }, - "VC8RXUKPQB42NMCF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "VC8RXUKPQB42NMCF.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VC8RXUKPQB42NMCF.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "VC8RXUKPQB42NMCF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VC8RXUKPQB42NMCF.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "VC8RXUKPQB42NMCF.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "VC8RXUKPQB42NMCF.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "VC8RXUKPQB42NMCF.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2913" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VC8RXUKPQB42NMCF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "VC8RXUKPQB42NMCF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VC8RXUKPQB42NMCF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "VC8RXUKPQB42NMCF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "593" - }, - "appliesTo" : [ ] - }, - "VC8RXUKPQB42NMCF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "VC8RXUKPQB42NMCF.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "EKX4XJYWHK3C9ZDP" : { - "EKX4XJYWHK3C9ZDP.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "EKX4XJYWHK3C9ZDP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EKX4XJYWHK3C9ZDP.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "EKX4XJYWHK3C9ZDP.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1890" - }, - "appliesTo" : [ ] - }, - "EKX4XJYWHK3C9ZDP.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "EKX4XJYWHK3C9ZDP.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "EKX4XJYWHK3C9ZDP.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "EKX4XJYWHK3C9ZDP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EKX4XJYWHK3C9ZDP.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "EKX4XJYWHK3C9ZDP.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "692" - }, - "appliesTo" : [ ] - }, - "EKX4XJYWHK3C9ZDP.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "EKX4XJYWHK3C9ZDP.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EKX4XJYWHK3C9ZDP.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "EKX4XJYWHK3C9ZDP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EKX4XJYWHK3C9ZDP.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "EKX4XJYWHK3C9ZDP.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "EKX4XJYWHK3C9ZDP.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "EKX4XJYWHK3C9ZDP", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "EKX4XJYWHK3C9ZDP.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "EKX4XJYWHK3C9ZDP.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1375" - }, - "appliesTo" : [ ] - }, - "EKX4XJYWHK3C9ZDP.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "EKX4XJYWHK3C9ZDP.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EKX4XJYWHK3C9ZDP.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "EKX4XJYWHK3C9ZDP", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "EKX4XJYWHK3C9ZDP.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "EKX4XJYWHK3C9ZDP.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3256" - }, - "appliesTo" : [ ] - }, - "EKX4XJYWHK3C9ZDP.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "EKX4XJYWHK3C9ZDP.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EKX4XJYWHK3C9ZDP.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "EKX4XJYWHK3C9ZDP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EKX4XJYWHK3C9ZDP.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "EKX4XJYWHK3C9ZDP.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1458" - }, - "appliesTo" : [ ] - }, - "EKX4XJYWHK3C9ZDP.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "EKX4XJYWHK3C9ZDP.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "EKX4XJYWHK3C9ZDP.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "EKX4XJYWHK3C9ZDP", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "EKX4XJYWHK3C9ZDP.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "EKX4XJYWHK3C9ZDP.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1729" - }, - "appliesTo" : [ ] - }, - "EKX4XJYWHK3C9ZDP.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "EKX4XJYWHK3C9ZDP.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EKX4XJYWHK3C9ZDP.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "EKX4XJYWHK3C9ZDP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EKX4XJYWHK3C9ZDP.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "EKX4XJYWHK3C9ZDP.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "EKX4XJYWHK3C9ZDP.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "EKX4XJYWHK3C9ZDP.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3754" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "EKX4XJYWHK3C9ZDP.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "EKX4XJYWHK3C9ZDP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EKX4XJYWHK3C9ZDP.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "EKX4XJYWHK3C9ZDP.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "EKX4XJYWHK3C9ZDP.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "EKX4XJYWHK3C9ZDP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EKX4XJYWHK3C9ZDP.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "EKX4XJYWHK3C9ZDP.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "735" - }, - "appliesTo" : [ ] - }, - "EKX4XJYWHK3C9ZDP.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "EKX4XJYWHK3C9ZDP.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "EKX4XJYWHK3C9ZDP.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "EKX4XJYWHK3C9ZDP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EKX4XJYWHK3C9ZDP.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "EKX4XJYWHK3C9ZDP.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "EKX4XJYWHK3C9ZDP.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "EKX4XJYWHK3C9ZDP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EKX4XJYWHK3C9ZDP.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "EKX4XJYWHK3C9ZDP.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "WU8MR6W7VJJUBGWW" : { - "WU8MR6W7VJJUBGWW.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "WU8MR6W7VJJUBGWW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WU8MR6W7VJJUBGWW.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "WU8MR6W7VJJUBGWW.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5424" - }, - "appliesTo" : [ ] - }, - "WU8MR6W7VJJUBGWW.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "WU8MR6W7VJJUBGWW.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WU8MR6W7VJJUBGWW.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "WU8MR6W7VJJUBGWW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WU8MR6W7VJJUBGWW.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "WU8MR6W7VJJUBGWW.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "WU8MR6W7VJJUBGWW.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "WU8MR6W7VJJUBGWW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WU8MR6W7VJJUBGWW.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "WU8MR6W7VJJUBGWW.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WU8MR6W7VJJUBGWW.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "WU8MR6W7VJJUBGWW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WU8MR6W7VJJUBGWW.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "WU8MR6W7VJJUBGWW.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8252" - }, - "appliesTo" : [ ] - }, - "WU8MR6W7VJJUBGWW.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "WU8MR6W7VJJUBGWW.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WU8MR6W7VJJUBGWW.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "WU8MR6W7VJJUBGWW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WU8MR6W7VJJUBGWW.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "WU8MR6W7VJJUBGWW.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7176" - }, - "appliesTo" : [ ] - }, - "WU8MR6W7VJJUBGWW.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "WU8MR6W7VJJUBGWW.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WU8MR6W7VJJUBGWW.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "WU8MR6W7VJJUBGWW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WU8MR6W7VJJUBGWW.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "WU8MR6W7VJJUBGWW.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WU8MR6W7VJJUBGWW.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "WU8MR6W7VJJUBGWW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WU8MR6W7VJJUBGWW.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "WU8MR6W7VJJUBGWW.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "WU8MR6W7VJJUBGWW.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "WU8MR6W7VJJUBGWW.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9244" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WU8MR6W7VJJUBGWW.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "WU8MR6W7VJJUBGWW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WU8MR6W7VJJUBGWW.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "WU8MR6W7VJJUBGWW.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "WU8MR6W7VJJUBGWW.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "WU8MR6W7VJJUBGWW.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13491" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WU8MR6W7VJJUBGWW.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "WU8MR6W7VJJUBGWW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WU8MR6W7VJJUBGWW.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "WU8MR6W7VJJUBGWW.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10631" - }, - "appliesTo" : [ ] - }, - "WU8MR6W7VJJUBGWW.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "WU8MR6W7VJJUBGWW.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WU8MR6W7VJJUBGWW.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "WU8MR6W7VJJUBGWW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WU8MR6W7VJJUBGWW.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "WU8MR6W7VJJUBGWW.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5380000000" - }, - "appliesTo" : [ ] - }, - "WU8MR6W7VJJUBGWW.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "WU8MR6W7VJJUBGWW.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4717" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WU8MR6W7VJJUBGWW.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "WU8MR6W7VJJUBGWW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WU8MR6W7VJJUBGWW.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "WU8MR6W7VJJUBGWW.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16175" - }, - "appliesTo" : [ ] - }, - "WU8MR6W7VJJUBGWW.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "WU8MR6W7VJJUBGWW.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WU8MR6W7VJJUBGWW.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "WU8MR6W7VJJUBGWW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WU8MR6W7VJJUBGWW.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "WU8MR6W7VJJUBGWW.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "ZDK96RPJGJ9MFZYU" : { - "ZDK96RPJGJ9MFZYU.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ZDK96RPJGJ9MFZYU", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "ZDK96RPJGJ9MFZYU.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ZDK96RPJGJ9MFZYU.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZDK96RPJGJ9MFZYU.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ZDK96RPJGJ9MFZYU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZDK96RPJGJ9MFZYU.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ZDK96RPJGJ9MFZYU.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16441" - }, - "appliesTo" : [ ] - }, - "ZDK96RPJGJ9MFZYU.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ZDK96RPJGJ9MFZYU.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZDK96RPJGJ9MFZYU.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ZDK96RPJGJ9MFZYU", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "ZDK96RPJGJ9MFZYU.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ZDK96RPJGJ9MFZYU.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1230000000" - }, - "appliesTo" : [ ] - }, - "ZDK96RPJGJ9MFZYU.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ZDK96RPJGJ9MFZYU.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29518" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZDK96RPJGJ9MFZYU.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ZDK96RPJGJ9MFZYU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZDK96RPJGJ9MFZYU.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ZDK96RPJGJ9MFZYU.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ZDK96RPJGJ9MFZYU.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ZDK96RPJGJ9MFZYU.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27856" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZDK96RPJGJ9MFZYU.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ZDK96RPJGJ9MFZYU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZDK96RPJGJ9MFZYU.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ZDK96RPJGJ9MFZYU.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33849" - }, - "appliesTo" : [ ] - }, - "ZDK96RPJGJ9MFZYU.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ZDK96RPJGJ9MFZYU.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZDK96RPJGJ9MFZYU.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ZDK96RPJGJ9MFZYU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZDK96RPJGJ9MFZYU.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ZDK96RPJGJ9MFZYU.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32224" - }, - "appliesTo" : [ ] - }, - "ZDK96RPJGJ9MFZYU.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ZDK96RPJGJ9MFZYU.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZDK96RPJGJ9MFZYU.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ZDK96RPJGJ9MFZYU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZDK96RPJGJ9MFZYU.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ZDK96RPJGJ9MFZYU.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "55493" - }, - "appliesTo" : [ ] - }, - "ZDK96RPJGJ9MFZYU.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ZDK96RPJGJ9MFZYU.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZDK96RPJGJ9MFZYU.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "ZDK96RPJGJ9MFZYU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZDK96RPJGJ9MFZYU.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "ZDK96RPJGJ9MFZYU.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZDK96RPJGJ9MFZYU.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ZDK96RPJGJ9MFZYU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZDK96RPJGJ9MFZYU.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ZDK96RPJGJ9MFZYU.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZDK96RPJGJ9MFZYU.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ZDK96RPJGJ9MFZYU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZDK96RPJGJ9MFZYU.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ZDK96RPJGJ9MFZYU.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "66344" - }, - "appliesTo" : [ ] - }, - "ZDK96RPJGJ9MFZYU.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ZDK96RPJGJ9MFZYU.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZDK96RPJGJ9MFZYU.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ZDK96RPJGJ9MFZYU", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "ZDK96RPJGJ9MFZYU.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ZDK96RPJGJ9MFZYU.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14212" - }, - "appliesTo" : [ ] - }, - "ZDK96RPJGJ9MFZYU.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ZDK96RPJGJ9MFZYU.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZDK96RPJGJ9MFZYU.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ZDK96RPJGJ9MFZYU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZDK96RPJGJ9MFZYU.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ZDK96RPJGJ9MFZYU.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "Q6R3PVH9UARHH828" : { - "Q6R3PVH9UARHH828.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "Q6R3PVH9UARHH828", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q6R3PVH9UARHH828.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "Q6R3PVH9UARHH828.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.2320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Q6R3PVH9UARHH828.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "Q6R3PVH9UARHH828", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q6R3PVH9UARHH828.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "Q6R3PVH9UARHH828.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21862" - }, - "appliesTo" : [ ] - }, - "Q6R3PVH9UARHH828.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "Q6R3PVH9UARHH828.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q6R3PVH9UARHH828.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Q6R3PVH9UARHH828", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Q6R3PVH9UARHH828.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Q6R3PVH9UARHH828.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37252" - }, - "appliesTo" : [ ] - }, - "Q6R3PVH9UARHH828.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Q6R3PVH9UARHH828.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Q6R3PVH9UARHH828.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "Q6R3PVH9UARHH828", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Q6R3PVH9UARHH828.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "Q6R3PVH9UARHH828.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33347" - }, - "appliesTo" : [ ] - }, - "Q6R3PVH9UARHH828.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "Q6R3PVH9UARHH828.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q6R3PVH9UARHH828.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Q6R3PVH9UARHH828", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "Q6R3PVH9UARHH828.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Q6R3PVH9UARHH828.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1050000000" - }, - "appliesTo" : [ ] - }, - "Q6R3PVH9UARHH828.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Q6R3PVH9UARHH828.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29044" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q6R3PVH9UARHH828.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "Q6R3PVH9UARHH828", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q6R3PVH9UARHH828.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "Q6R3PVH9UARHH828.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "42795" - }, - "appliesTo" : [ ] - }, - "Q6R3PVH9UARHH828.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "Q6R3PVH9UARHH828.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Q6R3PVH9UARHH828.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "Q6R3PVH9UARHH828", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Q6R3PVH9UARHH828.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "Q6R3PVH9UARHH828.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Q6R3PVH9UARHH828.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Q6R3PVH9UARHH828", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "Q6R3PVH9UARHH828.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Q6R3PVH9UARHH828.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "54634" - }, - "appliesTo" : [ ] - }, - "Q6R3PVH9UARHH828.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Q6R3PVH9UARHH828.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Q6R3PVH9UARHH828.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "Q6R3PVH9UARHH828", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Q6R3PVH9UARHH828.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "Q6R3PVH9UARHH828.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Q6R3PVH9UARHH828.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "Q6R3PVH9UARHH828", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Q6R3PVH9UARHH828.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "Q6R3PVH9UARHH828.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "65363" - }, - "appliesTo" : [ ] - }, - "Q6R3PVH9UARHH828.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "Q6R3PVH9UARHH828.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Q6R3PVH9UARHH828.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Q6R3PVH9UARHH828", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "Q6R3PVH9UARHH828.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Q6R3PVH9UARHH828.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19034" - }, - "appliesTo" : [ ] - }, - "Q6R3PVH9UARHH828.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Q6R3PVH9UARHH828.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q6R3PVH9UARHH828.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Q6R3PVH9UARHH828", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Q6R3PVH9UARHH828.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Q6R3PVH9UARHH828.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "J4WQF46DKE3825ST" : { - "J4WQF46DKE3825ST.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "J4WQF46DKE3825ST", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "J4WQF46DKE3825ST.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "J4WQF46DKE3825ST.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5702" - }, - "appliesTo" : [ ] - }, - "J4WQF46DKE3825ST.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "J4WQF46DKE3825ST.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "J4WQF46DKE3825ST.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "J4WQF46DKE3825ST", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "J4WQF46DKE3825ST.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "J4WQF46DKE3825ST.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2328" - }, - "appliesTo" : [ ] - }, - "J4WQF46DKE3825ST.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "J4WQF46DKE3825ST.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "J4WQF46DKE3825ST.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "J4WQF46DKE3825ST", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "J4WQF46DKE3825ST.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "J4WQF46DKE3825ST.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "J4WQF46DKE3825ST.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "J4WQF46DKE3825ST", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "J4WQF46DKE3825ST.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "J4WQF46DKE3825ST.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "J4WQF46DKE3825ST.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "J4WQF46DKE3825ST", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "J4WQF46DKE3825ST.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "J4WQF46DKE3825ST.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5452" - }, - "appliesTo" : [ ] - }, - "J4WQF46DKE3825ST.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "J4WQF46DKE3825ST.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "J4WQF46DKE3825ST.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "J4WQF46DKE3825ST", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "J4WQF46DKE3825ST.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "J4WQF46DKE3825ST.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "J4WQF46DKE3825ST.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "J4WQF46DKE3825ST.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12388" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "J4WQF46DKE3825ST.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "J4WQF46DKE3825ST", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "J4WQF46DKE3825ST.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "J4WQF46DKE3825ST.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "J4WQF46DKE3825ST.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "J4WQF46DKE3825ST", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "J4WQF46DKE3825ST.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "J4WQF46DKE3825ST.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3120000000" - }, - "appliesTo" : [ ] - }, - "J4WQF46DKE3825ST.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "J4WQF46DKE3825ST.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4772" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "J4WQF46DKE3825ST.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "J4WQF46DKE3825ST", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J4WQF46DKE3825ST.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "J4WQF46DKE3825ST.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6351" - }, - "appliesTo" : [ ] - }, - "J4WQF46DKE3825ST.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "J4WQF46DKE3825ST.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "J4WQF46DKE3825ST.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "J4WQF46DKE3825ST", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "J4WQF46DKE3825ST.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "J4WQF46DKE3825ST.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14102" - }, - "appliesTo" : [ ] - }, - "J4WQF46DKE3825ST.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "J4WQF46DKE3825ST.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "J4WQF46DKE3825ST.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "J4WQF46DKE3825ST", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J4WQF46DKE3825ST.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "J4WQF46DKE3825ST.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2660" - }, - "appliesTo" : [ ] - }, - "J4WQF46DKE3825ST.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "J4WQF46DKE3825ST.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "J4WQF46DKE3825ST.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "J4WQF46DKE3825ST", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J4WQF46DKE3825ST.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "J4WQF46DKE3825ST.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "NKJ4NNEJMKDJ54KC" : { - "NKJ4NNEJMKDJ54KC.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "NKJ4NNEJMKDJ54KC", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "NKJ4NNEJMKDJ54KC.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "NKJ4NNEJMKDJ54KC.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38214" - }, - "appliesTo" : [ ] - }, - "NKJ4NNEJMKDJ54KC.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "NKJ4NNEJMKDJ54KC.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "NKJ4NNEJMKDJ54KC.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "NKJ4NNEJMKDJ54KC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NKJ4NNEJMKDJ54KC.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "NKJ4NNEJMKDJ54KC.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8340" - }, - "appliesTo" : [ ] - }, - "NKJ4NNEJMKDJ54KC.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "NKJ4NNEJMKDJ54KC.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "NKJ4NNEJMKDJ54KC.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "NKJ4NNEJMKDJ54KC", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "NKJ4NNEJMKDJ54KC.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "NKJ4NNEJMKDJ54KC.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "NKJ4NNEJMKDJ54KC.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "NKJ4NNEJMKDJ54KC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NKJ4NNEJMKDJ54KC.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "NKJ4NNEJMKDJ54KC.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16291" - }, - "appliesTo" : [ ] - }, - "NKJ4NNEJMKDJ54KC.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "NKJ4NNEJMKDJ54KC.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "NKJ4NNEJMKDJ54KC.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "NKJ4NNEJMKDJ54KC", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "NKJ4NNEJMKDJ54KC.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "NKJ4NNEJMKDJ54KC.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "NKJ4NNEJMKDJ54KC.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "NKJ4NNEJMKDJ54KC", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "NKJ4NNEJMKDJ54KC.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "NKJ4NNEJMKDJ54KC.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9400" - }, - "appliesTo" : [ ] - }, - "NKJ4NNEJMKDJ54KC.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "NKJ4NNEJMKDJ54KC.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "NKJ4NNEJMKDJ54KC.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "NKJ4NNEJMKDJ54KC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "NKJ4NNEJMKDJ54KC.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "NKJ4NNEJMKDJ54KC.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14196" - }, - "appliesTo" : [ ] - }, - "NKJ4NNEJMKDJ54KC.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "NKJ4NNEJMKDJ54KC.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "NKJ4NNEJMKDJ54KC.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "NKJ4NNEJMKDJ54KC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NKJ4NNEJMKDJ54KC.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "NKJ4NNEJMKDJ54KC.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "NKJ4NNEJMKDJ54KC.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "NKJ4NNEJMKDJ54KC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "NKJ4NNEJMKDJ54KC.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "NKJ4NNEJMKDJ54KC.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30292" - }, - "appliesTo" : [ ] - }, - "NKJ4NNEJMKDJ54KC.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "NKJ4NNEJMKDJ54KC.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "NKJ4NNEJMKDJ54KC.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "NKJ4NNEJMKDJ54KC", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "NKJ4NNEJMKDJ54KC.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "NKJ4NNEJMKDJ54KC.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25257" - }, - "appliesTo" : [ ] - }, - "NKJ4NNEJMKDJ54KC.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "NKJ4NNEJMKDJ54KC.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "NKJ4NNEJMKDJ54KC.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "NKJ4NNEJMKDJ54KC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "NKJ4NNEJMKDJ54KC.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "NKJ4NNEJMKDJ54KC.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2530000000" - }, - "appliesTo" : [ ] - }, - "NKJ4NNEJMKDJ54KC.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "NKJ4NNEJMKDJ54KC.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25580" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "D6HGB9XUMNSDTB9G" : { - "D6HGB9XUMNSDTB9G.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "D6HGB9XUMNSDTB9G", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "D6HGB9XUMNSDTB9G.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "D6HGB9XUMNSDTB9G.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "80506" - }, - "appliesTo" : [ ] - }, - "D6HGB9XUMNSDTB9G.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "D6HGB9XUMNSDTB9G.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "D6HGB9XUMNSDTB9G.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "D6HGB9XUMNSDTB9G", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "D6HGB9XUMNSDTB9G.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "D6HGB9XUMNSDTB9G.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "181358" - }, - "appliesTo" : [ ] - }, - "D6HGB9XUMNSDTB9G.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "D6HGB9XUMNSDTB9G.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "D6HGB9XUMNSDTB9G.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "D6HGB9XUMNSDTB9G", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "D6HGB9XUMNSDTB9G.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "D6HGB9XUMNSDTB9G.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "D6HGB9XUMNSDTB9G.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "D6HGB9XUMNSDTB9G.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "151384" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "D6HGB9XUMNSDTB9G.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "D6HGB9XUMNSDTB9G", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "D6HGB9XUMNSDTB9G.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "D6HGB9XUMNSDTB9G.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.6210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "D6HGB9XUMNSDTB9G.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "D6HGB9XUMNSDTB9G", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "D6HGB9XUMNSDTB9G.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "D6HGB9XUMNSDTB9G.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.6091000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "D6HGB9XUMNSDTB9G.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "D6HGB9XUMNSDTB9G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "D6HGB9XUMNSDTB9G.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "D6HGB9XUMNSDTB9G.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9004000000" - }, - "appliesTo" : [ ] - }, - "D6HGB9XUMNSDTB9G.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "D6HGB9XUMNSDTB9G.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "42990" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "D6HGB9XUMNSDTB9G.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "D6HGB9XUMNSDTB9G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "D6HGB9XUMNSDTB9G.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "D6HGB9XUMNSDTB9G.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.2966000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "D6HGB9XUMNSDTB9G.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "D6HGB9XUMNSDTB9G", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "D6HGB9XUMNSDTB9G.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "D6HGB9XUMNSDTB9G.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "92527" - }, - "appliesTo" : [ ] - }, - "D6HGB9XUMNSDTB9G.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "D6HGB9XUMNSDTB9G.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5204000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "D6HGB9XUMNSDTB9G.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "D6HGB9XUMNSDTB9G", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "D6HGB9XUMNSDTB9G.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "D6HGB9XUMNSDTB9G.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "D6HGB9XUMNSDTB9G.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "D6HGB9XUMNSDTB9G.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "73261" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "D6HGB9XUMNSDTB9G.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "D6HGB9XUMNSDTB9G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "D6HGB9XUMNSDTB9G.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "D6HGB9XUMNSDTB9G.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "84205" - }, - "appliesTo" : [ ] - }, - "D6HGB9XUMNSDTB9G.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "D6HGB9XUMNSDTB9G.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "D6HGB9XUMNSDTB9G.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "D6HGB9XUMNSDTB9G", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "D6HGB9XUMNSDTB9G.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "D6HGB9XUMNSDTB9G.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2630000000" - }, - "appliesTo" : [ ] - }, - "D6HGB9XUMNSDTB9G.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "D6HGB9XUMNSDTB9G.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37406" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "D6HGB9XUMNSDTB9G.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "D6HGB9XUMNSDTB9G", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "D6HGB9XUMNSDTB9G.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "D6HGB9XUMNSDTB9G.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.9580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "T66DXZFUDZ8KW7UG" : { - "T66DXZFUDZ8KW7UG.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "T66DXZFUDZ8KW7UG", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "T66DXZFUDZ8KW7UG.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "T66DXZFUDZ8KW7UG.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5216" - }, - "appliesTo" : [ ] - }, - "T66DXZFUDZ8KW7UG.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "T66DXZFUDZ8KW7UG.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "T66DXZFUDZ8KW7UG.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "T66DXZFUDZ8KW7UG", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "T66DXZFUDZ8KW7UG.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "T66DXZFUDZ8KW7UG.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9807" - }, - "appliesTo" : [ ] - }, - "T66DXZFUDZ8KW7UG.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "T66DXZFUDZ8KW7UG.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "T66DXZFUDZ8KW7UG.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "T66DXZFUDZ8KW7UG", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "T66DXZFUDZ8KW7UG.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "T66DXZFUDZ8KW7UG.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "T66DXZFUDZ8KW7UG.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "T66DXZFUDZ8KW7UG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "T66DXZFUDZ8KW7UG.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "T66DXZFUDZ8KW7UG.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11122" - }, - "appliesTo" : [ ] - }, - "T66DXZFUDZ8KW7UG.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "T66DXZFUDZ8KW7UG.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "T66DXZFUDZ8KW7UG.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "T66DXZFUDZ8KW7UG", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "T66DXZFUDZ8KW7UG.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "T66DXZFUDZ8KW7UG.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "T66DXZFUDZ8KW7UG.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "T66DXZFUDZ8KW7UG", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "T66DXZFUDZ8KW7UG.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "T66DXZFUDZ8KW7UG.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26814" - }, - "appliesTo" : [ ] - }, - "T66DXZFUDZ8KW7UG.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "T66DXZFUDZ8KW7UG.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "T66DXZFUDZ8KW7UG.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "T66DXZFUDZ8KW7UG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "T66DXZFUDZ8KW7UG.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "T66DXZFUDZ8KW7UG.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5093" - }, - "appliesTo" : [ ] - }, - "T66DXZFUDZ8KW7UG.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "T66DXZFUDZ8KW7UG.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "T66DXZFUDZ8KW7UG.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "T66DXZFUDZ8KW7UG", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "T66DXZFUDZ8KW7UG.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "T66DXZFUDZ8KW7UG.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5050000000" - }, - "appliesTo" : [ ] - }, - "T66DXZFUDZ8KW7UG.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "T66DXZFUDZ8KW7UG.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14083" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "T66DXZFUDZ8KW7UG.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "T66DXZFUDZ8KW7UG", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "T66DXZFUDZ8KW7UG.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "T66DXZFUDZ8KW7UG.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "T66DXZFUDZ8KW7UG.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "T66DXZFUDZ8KW7UG.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19718" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "T66DXZFUDZ8KW7UG.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "T66DXZFUDZ8KW7UG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "T66DXZFUDZ8KW7UG.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "T66DXZFUDZ8KW7UG.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "T66DXZFUDZ8KW7UG.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "T66DXZFUDZ8KW7UG", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "T66DXZFUDZ8KW7UG.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "T66DXZFUDZ8KW7UG.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8126" - }, - "appliesTo" : [ ] - }, - "T66DXZFUDZ8KW7UG.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "T66DXZFUDZ8KW7UG.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "ZESHW7CZVERW2BN2" : { - "ZESHW7CZVERW2BN2.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ZESHW7CZVERW2BN2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZESHW7CZVERW2BN2.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ZESHW7CZVERW2BN2.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7310" - }, - "appliesTo" : [ ] - }, - "ZESHW7CZVERW2BN2.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ZESHW7CZVERW2BN2.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZESHW7CZVERW2BN2.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ZESHW7CZVERW2BN2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZESHW7CZVERW2BN2.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ZESHW7CZVERW2BN2.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZESHW7CZVERW2BN2.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ZESHW7CZVERW2BN2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "ZESHW7CZVERW2BN2.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ZESHW7CZVERW2BN2.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5590000000" - }, - "appliesTo" : [ ] - }, - "ZESHW7CZVERW2BN2.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ZESHW7CZVERW2BN2.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19656" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZESHW7CZVERW2BN2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ZESHW7CZVERW2BN2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ZESHW7CZVERW2BN2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ZESHW7CZVERW2BN2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22209" - }, - "appliesTo" : [ ] - }, - "ZESHW7CZVERW2BN2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ZESHW7CZVERW2BN2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZESHW7CZVERW2BN2.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ZESHW7CZVERW2BN2", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "ZESHW7CZVERW2BN2.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ZESHW7CZVERW2BN2.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZESHW7CZVERW2BN2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ZESHW7CZVERW2BN2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ZESHW7CZVERW2BN2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ZESHW7CZVERW2BN2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10960" - }, - "appliesTo" : [ ] - }, - "ZESHW7CZVERW2BN2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ZESHW7CZVERW2BN2.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZESHW7CZVERW2BN2.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ZESHW7CZVERW2BN2", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "ZESHW7CZVERW2BN2.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ZESHW7CZVERW2BN2.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33656" - }, - "appliesTo" : [ ] - }, - "ZESHW7CZVERW2BN2.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ZESHW7CZVERW2BN2.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZESHW7CZVERW2BN2.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ZESHW7CZVERW2BN2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZESHW7CZVERW2BN2.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ZESHW7CZVERW2BN2.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14327" - }, - "appliesTo" : [ ] - }, - "ZESHW7CZVERW2BN2.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ZESHW7CZVERW2BN2.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZESHW7CZVERW2BN2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ZESHW7CZVERW2BN2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ZESHW7CZVERW2BN2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ZESHW7CZVERW2BN2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7280" - }, - "appliesTo" : [ ] - }, - "ZESHW7CZVERW2BN2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ZESHW7CZVERW2BN2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZESHW7CZVERW2BN2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ZESHW7CZVERW2BN2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ZESHW7CZVERW2BN2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ZESHW7CZVERW2BN2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12465" - }, - "appliesTo" : [ ] - }, - "ZESHW7CZVERW2BN2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ZESHW7CZVERW2BN2.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZESHW7CZVERW2BN2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ZESHW7CZVERW2BN2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ZESHW7CZVERW2BN2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ZESHW7CZVERW2BN2.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "NBP9U2SVG37VG5S9" : { - "NBP9U2SVG37VG5S9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "NBP9U2SVG37VG5S9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "NBP9U2SVG37VG5S9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "NBP9U2SVG37VG5S9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2387" - }, - "appliesTo" : [ ] - }, - "NBP9U2SVG37VG5S9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "NBP9U2SVG37VG5S9.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "NBP9U2SVG37VG5S9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "NBP9U2SVG37VG5S9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "NBP9U2SVG37VG5S9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "NBP9U2SVG37VG5S9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1434" - }, - "appliesTo" : [ ] - }, - "NBP9U2SVG37VG5S9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "NBP9U2SVG37VG5S9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "NBP9U2SVG37VG5S9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "NBP9U2SVG37VG5S9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "NBP9U2SVG37VG5S9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "NBP9U2SVG37VG5S9.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "NBP9U2SVG37VG5S9.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "NBP9U2SVG37VG5S9", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "NBP9U2SVG37VG5S9.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "NBP9U2SVG37VG5S9.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "NBP9U2SVG37VG5S9.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "NBP9U2SVG37VG5S9", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "NBP9U2SVG37VG5S9.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "NBP9U2SVG37VG5S9.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6445" - }, - "appliesTo" : [ ] - }, - "NBP9U2SVG37VG5S9.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "NBP9U2SVG37VG5S9.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "NBP9U2SVG37VG5S9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "NBP9U2SVG37VG5S9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "NBP9U2SVG37VG5S9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "NBP9U2SVG37VG5S9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4545" - }, - "appliesTo" : [ ] - }, - "NBP9U2SVG37VG5S9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "NBP9U2SVG37VG5S9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "NBP9U2SVG37VG5S9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "NBP9U2SVG37VG5S9", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "NBP9U2SVG37VG5S9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "NBP9U2SVG37VG5S9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2234" - }, - "appliesTo" : [ ] - }, - "NBP9U2SVG37VG5S9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "NBP9U2SVG37VG5S9.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "NBP9U2SVG37VG5S9.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "NBP9U2SVG37VG5S9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NBP9U2SVG37VG5S9.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "NBP9U2SVG37VG5S9.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "NBP9U2SVG37VG5S9.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "NBP9U2SVG37VG5S9.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2745" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "NBP9U2SVG37VG5S9.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "NBP9U2SVG37VG5S9", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "NBP9U2SVG37VG5S9.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "NBP9U2SVG37VG5S9.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1030000000" - }, - "appliesTo" : [ ] - }, - "NBP9U2SVG37VG5S9.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "NBP9U2SVG37VG5S9.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3872" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "NBP9U2SVG37VG5S9.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "NBP9U2SVG37VG5S9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NBP9U2SVG37VG5S9.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "NBP9U2SVG37VG5S9.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1401" - }, - "appliesTo" : [ ] - }, - "NBP9U2SVG37VG5S9.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "NBP9U2SVG37VG5S9.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "NBP9U2SVG37VG5S9.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "NBP9U2SVG37VG5S9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NBP9U2SVG37VG5S9.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "NBP9U2SVG37VG5S9.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "XGQ9DRFV2RNYQE43" : { - "XGQ9DRFV2RNYQE43.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XGQ9DRFV2RNYQE43", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XGQ9DRFV2RNYQE43.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XGQ9DRFV2RNYQE43.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.4320000000" - }, - "appliesTo" : [ ] - }, - "XGQ9DRFV2RNYQE43.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XGQ9DRFV2RNYQE43.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "169033" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XGQ9DRFV2RNYQE43.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "XGQ9DRFV2RNYQE43", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XGQ9DRFV2RNYQE43.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "XGQ9DRFV2RNYQE43.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "345543" - }, - "appliesTo" : [ ] - }, - "XGQ9DRFV2RNYQE43.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "XGQ9DRFV2RNYQE43.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XGQ9DRFV2RNYQE43.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XGQ9DRFV2RNYQE43", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XGQ9DRFV2RNYQE43.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XGQ9DRFV2RNYQE43.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "XGQ9DRFV2RNYQE43.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XGQ9DRFV2RNYQE43.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "334534" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XGQ9DRFV2RNYQE43.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "XGQ9DRFV2RNYQE43", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XGQ9DRFV2RNYQE43.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "XGQ9DRFV2RNYQE43.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.0430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XGQ9DRFV2RNYQE43.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "XGQ9DRFV2RNYQE43", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XGQ9DRFV2RNYQE43.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "XGQ9DRFV2RNYQE43.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.4060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XGQ9DRFV2RNYQE43.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "XGQ9DRFV2RNYQE43", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XGQ9DRFV2RNYQE43.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "XGQ9DRFV2RNYQE43.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.1890000000" - }, - "appliesTo" : [ ] - }, - "XGQ9DRFV2RNYQE43.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "XGQ9DRFV2RNYQE43.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "62974" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XGQ9DRFV2RNYQE43.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "XGQ9DRFV2RNYQE43", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XGQ9DRFV2RNYQE43.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "XGQ9DRFV2RNYQE43.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.5650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XGQ9DRFV2RNYQE43.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "XGQ9DRFV2RNYQE43", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XGQ9DRFV2RNYQE43.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "XGQ9DRFV2RNYQE43.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "173448" - }, - "appliesTo" : [ ] - }, - "XGQ9DRFV2RNYQE43.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "XGQ9DRFV2RNYQE43.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.6000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XGQ9DRFV2RNYQE43.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XGQ9DRFV2RNYQE43", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XGQ9DRFV2RNYQE43.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XGQ9DRFV2RNYQE43.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "XGQ9DRFV2RNYQE43.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XGQ9DRFV2RNYQE43.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "121087" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XGQ9DRFV2RNYQE43.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XGQ9DRFV2RNYQE43", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XGQ9DRFV2RNYQE43.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XGQ9DRFV2RNYQE43.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.0510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XGQ9DRFV2RNYQE43.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "XGQ9DRFV2RNYQE43", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XGQ9DRFV2RNYQE43.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "XGQ9DRFV2RNYQE43.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "125290" - }, - "appliesTo" : [ ] - }, - "XGQ9DRFV2RNYQE43.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "XGQ9DRFV2RNYQE43.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XGQ9DRFV2RNYQE43.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XGQ9DRFV2RNYQE43", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XGQ9DRFV2RNYQE43.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XGQ9DRFV2RNYQE43.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "60830" - }, - "appliesTo" : [ ] - }, - "XGQ9DRFV2RNYQE43.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XGQ9DRFV2RNYQE43.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.9440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "AW64VE5DA5MH4J22" : { - "AW64VE5DA5MH4J22.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "AW64VE5DA5MH4J22", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "AW64VE5DA5MH4J22.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "AW64VE5DA5MH4J22.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31892" - }, - "appliesTo" : [ ] - }, - "AW64VE5DA5MH4J22.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "AW64VE5DA5MH4J22.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AW64VE5DA5MH4J22.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "AW64VE5DA5MH4J22", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AW64VE5DA5MH4J22.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "AW64VE5DA5MH4J22.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16153" - }, - "appliesTo" : [ ] - }, - "AW64VE5DA5MH4J22.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "AW64VE5DA5MH4J22.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "AW64VE5DA5MH4J22.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "AW64VE5DA5MH4J22", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AW64VE5DA5MH4J22.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "AW64VE5DA5MH4J22.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "AW64VE5DA5MH4J22.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "AW64VE5DA5MH4J22", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "AW64VE5DA5MH4J22.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "AW64VE5DA5MH4J22.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "94959" - }, - "appliesTo" : [ ] - }, - "AW64VE5DA5MH4J22.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "AW64VE5DA5MH4J22.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "AW64VE5DA5MH4J22.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "AW64VE5DA5MH4J22", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "AW64VE5DA5MH4J22.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "AW64VE5DA5MH4J22.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47545" - }, - "appliesTo" : [ ] - }, - "AW64VE5DA5MH4J22.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "AW64VE5DA5MH4J22.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "AW64VE5DA5MH4J22.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "AW64VE5DA5MH4J22", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "AW64VE5DA5MH4J22.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "AW64VE5DA5MH4J22.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7760000000" - }, - "appliesTo" : [ ] - }, - "AW64VE5DA5MH4J22.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "AW64VE5DA5MH4J22.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46674" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AW64VE5DA5MH4J22.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "AW64VE5DA5MH4J22", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "AW64VE5DA5MH4J22.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "AW64VE5DA5MH4J22.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "AW64VE5DA5MH4J22.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "AW64VE5DA5MH4J22", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AW64VE5DA5MH4J22.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "AW64VE5DA5MH4J22.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32249" - }, - "appliesTo" : [ ] - }, - "AW64VE5DA5MH4J22.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "AW64VE5DA5MH4J22.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "AW64VE5DA5MH4J22.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "AW64VE5DA5MH4J22", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "AW64VE5DA5MH4J22.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "AW64VE5DA5MH4J22.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "93057" - }, - "appliesTo" : [ ] - }, - "AW64VE5DA5MH4J22.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "AW64VE5DA5MH4J22.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AW64VE5DA5MH4J22.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "AW64VE5DA5MH4J22", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "AW64VE5DA5MH4J22.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "AW64VE5DA5MH4J22.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "AW64VE5DA5MH4J22.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "AW64VE5DA5MH4J22", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "AW64VE5DA5MH4J22.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "AW64VE5DA5MH4J22.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15970" - }, - "appliesTo" : [ ] - }, - "AW64VE5DA5MH4J22.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "AW64VE5DA5MH4J22.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "5KHB4S5E8M74C6ES" : { - "5KHB4S5E8M74C6ES.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "5KHB4S5E8M74C6ES", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5KHB4S5E8M74C6ES.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "5KHB4S5E8M74C6ES.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "5KHB4S5E8M74C6ES.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "5KHB4S5E8M74C6ES", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5KHB4S5E8M74C6ES.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "5KHB4S5E8M74C6ES.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1827" - }, - "appliesTo" : [ ] - }, - "5KHB4S5E8M74C6ES.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "5KHB4S5E8M74C6ES.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "5KHB4S5E8M74C6ES.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "5KHB4S5E8M74C6ES", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "5KHB4S5E8M74C6ES.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "5KHB4S5E8M74C6ES.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1820" - }, - "appliesTo" : [ ] - }, - "5KHB4S5E8M74C6ES.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "5KHB4S5E8M74C6ES.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5KHB4S5E8M74C6ES.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "5KHB4S5E8M74C6ES", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "5KHB4S5E8M74C6ES.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "5KHB4S5E8M74C6ES.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "5KHB4S5E8M74C6ES.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "5KHB4S5E8M74C6ES", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5KHB4S5E8M74C6ES.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "5KHB4S5E8M74C6ES.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "5KHB4S5E8M74C6ES.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "5KHB4S5E8M74C6ES.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3582" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "5KHB4S5E8M74C6ES.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "5KHB4S5E8M74C6ES", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "5KHB4S5E8M74C6ES.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "5KHB4S5E8M74C6ES.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1400000000" - }, - "appliesTo" : [ ] - }, - "5KHB4S5E8M74C6ES.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "5KHB4S5E8M74C6ES.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4914" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "5KHB4S5E8M74C6ES.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "5KHB4S5E8M74C6ES", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "5KHB4S5E8M74C6ES.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "5KHB4S5E8M74C6ES.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "5KHB4S5E8M74C6ES.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "5KHB4S5E8M74C6ES", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "5KHB4S5E8M74C6ES.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "5KHB4S5E8M74C6ES.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3114" - }, - "appliesTo" : [ ] - }, - "5KHB4S5E8M74C6ES.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "5KHB4S5E8M74C6ES.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5KHB4S5E8M74C6ES.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "5KHB4S5E8M74C6ES", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "5KHB4S5E8M74C6ES.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "5KHB4S5E8M74C6ES.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5564" - }, - "appliesTo" : [ ] - }, - "5KHB4S5E8M74C6ES.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "5KHB4S5E8M74C6ES.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5KHB4S5E8M74C6ES.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "5KHB4S5E8M74C6ES", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "5KHB4S5E8M74C6ES.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "5KHB4S5E8M74C6ES.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8408" - }, - "appliesTo" : [ ] - }, - "5KHB4S5E8M74C6ES.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "5KHB4S5E8M74C6ES.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "5KHB4S5E8M74C6ES.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "5KHB4S5E8M74C6ES", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "5KHB4S5E8M74C6ES.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "5KHB4S5E8M74C6ES.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2740" - }, - "appliesTo" : [ ] - }, - "5KHB4S5E8M74C6ES.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "5KHB4S5E8M74C6ES.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "KGZ5JY4FKTR75YN3" : { - "KGZ5JY4FKTR75YN3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "KGZ5JY4FKTR75YN3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "KGZ5JY4FKTR75YN3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "KGZ5JY4FKTR75YN3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "371" - }, - "appliesTo" : [ ] - }, - "KGZ5JY4FKTR75YN3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "KGZ5JY4FKTR75YN3.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KGZ5JY4FKTR75YN3.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "KGZ5JY4FKTR75YN3", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "KGZ5JY4FKTR75YN3.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "KGZ5JY4FKTR75YN3.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2785" - }, - "appliesTo" : [ ] - }, - "KGZ5JY4FKTR75YN3.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "KGZ5JY4FKTR75YN3.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KGZ5JY4FKTR75YN3.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "KGZ5JY4FKTR75YN3", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "KGZ5JY4FKTR75YN3.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "KGZ5JY4FKTR75YN3.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "626" - }, - "appliesTo" : [ ] - }, - "KGZ5JY4FKTR75YN3.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "KGZ5JY4FKTR75YN3.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KGZ5JY4FKTR75YN3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "KGZ5JY4FKTR75YN3", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "KGZ5JY4FKTR75YN3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "KGZ5JY4FKTR75YN3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2385" - }, - "appliesTo" : [ ] - }, - "KGZ5JY4FKTR75YN3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "KGZ5JY4FKTR75YN3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KGZ5JY4FKTR75YN3.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "KGZ5JY4FKTR75YN3", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "KGZ5JY4FKTR75YN3.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "KGZ5JY4FKTR75YN3.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KGZ5JY4FKTR75YN3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "KGZ5JY4FKTR75YN3", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "KGZ5JY4FKTR75YN3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "KGZ5JY4FKTR75YN3.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KGZ5JY4FKTR75YN3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "KGZ5JY4FKTR75YN3", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "KGZ5JY4FKTR75YN3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "KGZ5JY4FKTR75YN3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "232" - }, - "appliesTo" : [ ] - }, - "KGZ5JY4FKTR75YN3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "KGZ5JY4FKTR75YN3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KGZ5JY4FKTR75YN3.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "KGZ5JY4FKTR75YN3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KGZ5JY4FKTR75YN3.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "KGZ5JY4FKTR75YN3.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "KGZ5JY4FKTR75YN3.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "KGZ5JY4FKTR75YN3.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "972" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KGZ5JY4FKTR75YN3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "KGZ5JY4FKTR75YN3", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "KGZ5JY4FKTR75YN3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "KGZ5JY4FKTR75YN3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "967" - }, - "appliesTo" : [ ] - }, - "KGZ5JY4FKTR75YN3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "KGZ5JY4FKTR75YN3.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KGZ5JY4FKTR75YN3.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "KGZ5JY4FKTR75YN3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KGZ5JY4FKTR75YN3.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "KGZ5JY4FKTR75YN3.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "228" - }, - "appliesTo" : [ ] - }, - "KGZ5JY4FKTR75YN3.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "KGZ5JY4FKTR75YN3.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KGZ5JY4FKTR75YN3.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "KGZ5JY4FKTR75YN3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KGZ5JY4FKTR75YN3.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "KGZ5JY4FKTR75YN3.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "G2Y7JD8J9KR378JW" : { - "G2Y7JD8J9KR378JW.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "G2Y7JD8J9KR378JW", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "G2Y7JD8J9KR378JW.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "G2Y7JD8J9KR378JW.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8117" - }, - "appliesTo" : [ ] - }, - "G2Y7JD8J9KR378JW.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "G2Y7JD8J9KR378JW.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "G2Y7JD8J9KR378JW.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "G2Y7JD8J9KR378JW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "G2Y7JD8J9KR378JW.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "G2Y7JD8J9KR378JW.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "G2Y7JD8J9KR378JW.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "G2Y7JD8J9KR378JW.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21661" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "G2Y7JD8J9KR378JW.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "G2Y7JD8J9KR378JW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "G2Y7JD8J9KR378JW.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "G2Y7JD8J9KR378JW.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "G2Y7JD8J9KR378JW.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "G2Y7JD8J9KR378JW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "G2Y7JD8J9KR378JW.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "G2Y7JD8J9KR378JW.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4521" - }, - "appliesTo" : [ ] - }, - "G2Y7JD8J9KR378JW.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "G2Y7JD8J9KR378JW.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "G2Y7JD8J9KR378JW.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "G2Y7JD8J9KR378JW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "G2Y7JD8J9KR378JW.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "G2Y7JD8J9KR378JW.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "G2Y7JD8J9KR378JW.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "G2Y7JD8J9KR378JW", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "G2Y7JD8J9KR378JW.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "G2Y7JD8J9KR378JW.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3908" - }, - "appliesTo" : [ ] - }, - "G2Y7JD8J9KR378JW.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "G2Y7JD8J9KR378JW.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "G2Y7JD8J9KR378JW.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "G2Y7JD8J9KR378JW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "G2Y7JD8J9KR378JW.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "G2Y7JD8J9KR378JW.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "G2Y7JD8J9KR378JW.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "G2Y7JD8J9KR378JW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "G2Y7JD8J9KR378JW.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "G2Y7JD8J9KR378JW.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10000" - }, - "appliesTo" : [ ] - }, - "G2Y7JD8J9KR378JW.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "G2Y7JD8J9KR378JW.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "G2Y7JD8J9KR378JW.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "G2Y7JD8J9KR378JW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "G2Y7JD8J9KR378JW.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "G2Y7JD8J9KR378JW.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "G2Y7JD8J9KR378JW.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "G2Y7JD8J9KR378JW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "G2Y7JD8J9KR378JW.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "G2Y7JD8J9KR378JW.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9308" - }, - "appliesTo" : [ ] - }, - "G2Y7JD8J9KR378JW.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "G2Y7JD8J9KR378JW.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "G2Y7JD8J9KR378JW.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "G2Y7JD8J9KR378JW", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "G2Y7JD8J9KR378JW.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "G2Y7JD8J9KR378JW.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8799" - }, - "appliesTo" : [ ] - }, - "G2Y7JD8J9KR378JW.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "G2Y7JD8J9KR378JW.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "G2Y7JD8J9KR378JW.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "G2Y7JD8J9KR378JW", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "G2Y7JD8J9KR378JW.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "G2Y7JD8J9KR378JW.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18677" - }, - "appliesTo" : [ ] - }, - "G2Y7JD8J9KR378JW.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "G2Y7JD8J9KR378JW.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "M7W8H8ETF66PU3XA" : { - "M7W8H8ETF66PU3XA.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "M7W8H8ETF66PU3XA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M7W8H8ETF66PU3XA.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "M7W8H8ETF66PU3XA.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13071" - }, - "appliesTo" : [ ] - }, - "M7W8H8ETF66PU3XA.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "M7W8H8ETF66PU3XA.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "M7W8H8ETF66PU3XA.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "M7W8H8ETF66PU3XA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M7W8H8ETF66PU3XA.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "M7W8H8ETF66PU3XA.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "M7W8H8ETF66PU3XA.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "M7W8H8ETF66PU3XA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M7W8H8ETF66PU3XA.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "M7W8H8ETF66PU3XA.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1242000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "M7W8H8ETF66PU3XA.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "M7W8H8ETF66PU3XA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M7W8H8ETF66PU3XA.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "M7W8H8ETF66PU3XA.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1394000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "M7W8H8ETF66PU3XA.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "M7W8H8ETF66PU3XA", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "M7W8H8ETF66PU3XA.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "M7W8H8ETF66PU3XA.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22722" - }, - "appliesTo" : [ ] - }, - "M7W8H8ETF66PU3XA.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "M7W8H8ETF66PU3XA.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "M7W8H8ETF66PU3XA.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "M7W8H8ETF66PU3XA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M7W8H8ETF66PU3XA.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "M7W8H8ETF66PU3XA.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25980" - }, - "appliesTo" : [ ] - }, - "M7W8H8ETF66PU3XA.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "M7W8H8ETF66PU3XA.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9882000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "M7W8H8ETF66PU3XA.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "M7W8H8ETF66PU3XA", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "M7W8H8ETF66PU3XA.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "M7W8H8ETF66PU3XA.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "M7W8H8ETF66PU3XA.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "M7W8H8ETF66PU3XA.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "42749" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "M7W8H8ETF66PU3XA.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "M7W8H8ETF66PU3XA", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "M7W8H8ETF66PU3XA.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "M7W8H8ETF66PU3XA.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "M7W8H8ETF66PU3XA.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "M7W8H8ETF66PU3XA.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22212" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "M7W8H8ETF66PU3XA.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "M7W8H8ETF66PU3XA", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "M7W8H8ETF66PU3XA.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "M7W8H8ETF66PU3XA.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11361" - }, - "appliesTo" : [ ] - }, - "M7W8H8ETF66PU3XA.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "M7W8H8ETF66PU3XA.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "M7W8H8ETF66PU3XA.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "M7W8H8ETF66PU3XA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M7W8H8ETF66PU3XA.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "M7W8H8ETF66PU3XA.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "M7W8H8ETF66PU3XA.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "M7W8H8ETF66PU3XA.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25563" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "M7W8H8ETF66PU3XA.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "M7W8H8ETF66PU3XA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M7W8H8ETF66PU3XA.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "M7W8H8ETF66PU3XA.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "50925" - }, - "appliesTo" : [ ] - }, - "M7W8H8ETF66PU3XA.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "M7W8H8ETF66PU3XA.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "M7W8H8ETF66PU3XA.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "M7W8H8ETF66PU3XA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M7W8H8ETF66PU3XA.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "M7W8H8ETF66PU3XA.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8647000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "BWPP6VPRP5NECMAA" : { - "BWPP6VPRP5NECMAA.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "BWPP6VPRP5NECMAA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BWPP6VPRP5NECMAA.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "BWPP6VPRP5NECMAA.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2975000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BWPP6VPRP5NECMAA.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "BWPP6VPRP5NECMAA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BWPP6VPRP5NECMAA.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "BWPP6VPRP5NECMAA.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2170" - }, - "appliesTo" : [ ] - }, - "BWPP6VPRP5NECMAA.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "BWPP6VPRP5NECMAA.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BWPP6VPRP5NECMAA.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "BWPP6VPRP5NECMAA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BWPP6VPRP5NECMAA.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "BWPP6VPRP5NECMAA.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0872000000" - }, - "appliesTo" : [ ] - }, - "BWPP6VPRP5NECMAA.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "BWPP6VPRP5NECMAA.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2303" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BWPP6VPRP5NECMAA.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "BWPP6VPRP5NECMAA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BWPP6VPRP5NECMAA.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "BWPP6VPRP5NECMAA.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2596" - }, - "appliesTo" : [ ] - }, - "BWPP6VPRP5NECMAA.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "BWPP6VPRP5NECMAA.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0984000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BWPP6VPRP5NECMAA.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "BWPP6VPRP5NECMAA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BWPP6VPRP5NECMAA.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "BWPP6VPRP5NECMAA.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4362" - }, - "appliesTo" : [ ] - }, - "BWPP6VPRP5NECMAA.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "BWPP6VPRP5NECMAA.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BWPP6VPRP5NECMAA.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "BWPP6VPRP5NECMAA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BWPP6VPRP5NECMAA.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "BWPP6VPRP5NECMAA.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1934000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BWPP6VPRP5NECMAA.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "BWPP6VPRP5NECMAA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BWPP6VPRP5NECMAA.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "BWPP6VPRP5NECMAA.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2174000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BWPP6VPRP5NECMAA.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "BWPP6VPRP5NECMAA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BWPP6VPRP5NECMAA.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "BWPP6VPRP5NECMAA.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1135" - }, - "appliesTo" : [ ] - }, - "BWPP6VPRP5NECMAA.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "BWPP6VPRP5NECMAA.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1225000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BWPP6VPRP5NECMAA.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "BWPP6VPRP5NECMAA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BWPP6VPRP5NECMAA.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "BWPP6VPRP5NECMAA.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BWPP6VPRP5NECMAA.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "BWPP6VPRP5NECMAA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BWPP6VPRP5NECMAA.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "BWPP6VPRP5NECMAA.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1279" - }, - "appliesTo" : [ ] - }, - "BWPP6VPRP5NECMAA.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "BWPP6VPRP5NECMAA.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1389000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BWPP6VPRP5NECMAA.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "BWPP6VPRP5NECMAA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BWPP6VPRP5NECMAA.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "BWPP6VPRP5NECMAA.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2452" - }, - "appliesTo" : [ ] - }, - "BWPP6VPRP5NECMAA.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "BWPP6VPRP5NECMAA.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BWPP6VPRP5NECMAA.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "BWPP6VPRP5NECMAA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BWPP6VPRP5NECMAA.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "BWPP6VPRP5NECMAA.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5092" - }, - "appliesTo" : [ ] - }, - "BWPP6VPRP5NECMAA.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "BWPP6VPRP5NECMAA.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "H82A2SJ6H4MSM5Q6" : { - "H82A2SJ6H4MSM5Q6.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "H82A2SJ6H4MSM5Q6", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "H82A2SJ6H4MSM5Q6.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "H82A2SJ6H4MSM5Q6.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "H82A2SJ6H4MSM5Q6.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "H82A2SJ6H4MSM5Q6.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7568" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "H82A2SJ6H4MSM5Q6.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "H82A2SJ6H4MSM5Q6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H82A2SJ6H4MSM5Q6.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "H82A2SJ6H4MSM5Q6.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "H82A2SJ6H4MSM5Q6.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "H82A2SJ6H4MSM5Q6.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7831" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "H82A2SJ6H4MSM5Q6.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "H82A2SJ6H4MSM5Q6", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "H82A2SJ6H4MSM5Q6.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "H82A2SJ6H4MSM5Q6.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "H82A2SJ6H4MSM5Q6.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "H82A2SJ6H4MSM5Q6", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "H82A2SJ6H4MSM5Q6.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "H82A2SJ6H4MSM5Q6.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "H82A2SJ6H4MSM5Q6.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "H82A2SJ6H4MSM5Q6", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "H82A2SJ6H4MSM5Q6.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "H82A2SJ6H4MSM5Q6.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21596" - }, - "appliesTo" : [ ] - }, - "H82A2SJ6H4MSM5Q6.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "H82A2SJ6H4MSM5Q6.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "H82A2SJ6H4MSM5Q6.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "H82A2SJ6H4MSM5Q6", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "H82A2SJ6H4MSM5Q6.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "H82A2SJ6H4MSM5Q6.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3802" - }, - "appliesTo" : [ ] - }, - "H82A2SJ6H4MSM5Q6.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "H82A2SJ6H4MSM5Q6.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "H82A2SJ6H4MSM5Q6.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "H82A2SJ6H4MSM5Q6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H82A2SJ6H4MSM5Q6.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "H82A2SJ6H4MSM5Q6.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3936" - }, - "appliesTo" : [ ] - }, - "H82A2SJ6H4MSM5Q6.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "H82A2SJ6H4MSM5Q6.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "H82A2SJ6H4MSM5Q6.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "H82A2SJ6H4MSM5Q6", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "H82A2SJ6H4MSM5Q6.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "H82A2SJ6H4MSM5Q6.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "H82A2SJ6H4MSM5Q6.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "H82A2SJ6H4MSM5Q6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H82A2SJ6H4MSM5Q6.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "H82A2SJ6H4MSM5Q6.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "H82A2SJ6H4MSM5Q6.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "H82A2SJ6H4MSM5Q6", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "H82A2SJ6H4MSM5Q6.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "H82A2SJ6H4MSM5Q6.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20908" - }, - "appliesTo" : [ ] - }, - "H82A2SJ6H4MSM5Q6.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "H82A2SJ6H4MSM5Q6.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "H82A2SJ6H4MSM5Q6.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "H82A2SJ6H4MSM5Q6", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "H82A2SJ6H4MSM5Q6.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "H82A2SJ6H4MSM5Q6.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10841" - }, - "appliesTo" : [ ] - }, - "H82A2SJ6H4MSM5Q6.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "H82A2SJ6H4MSM5Q6.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "H82A2SJ6H4MSM5Q6.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "H82A2SJ6H4MSM5Q6", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "H82A2SJ6H4MSM5Q6.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "H82A2SJ6H4MSM5Q6.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10565" - }, - "appliesTo" : [ ] - }, - "H82A2SJ6H4MSM5Q6.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "H82A2SJ6H4MSM5Q6.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "PDEUGZC7QK7AETP6" : { - "PDEUGZC7QK7AETP6.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "PDEUGZC7QK7AETP6", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "PDEUGZC7QK7AETP6.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "PDEUGZC7QK7AETP6.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3239" - }, - "appliesTo" : [ ] - }, - "PDEUGZC7QK7AETP6.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "PDEUGZC7QK7AETP6.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PDEUGZC7QK7AETP6.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "PDEUGZC7QK7AETP6", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "PDEUGZC7QK7AETP6.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "PDEUGZC7QK7AETP6.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1323" - }, - "appliesTo" : [ ] - }, - "PDEUGZC7QK7AETP6.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "PDEUGZC7QK7AETP6.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PDEUGZC7QK7AETP6.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "PDEUGZC7QK7AETP6", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "PDEUGZC7QK7AETP6.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "PDEUGZC7QK7AETP6.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "PDEUGZC7QK7AETP6.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "PDEUGZC7QK7AETP6", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "PDEUGZC7QK7AETP6.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "PDEUGZC7QK7AETP6.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "PDEUGZC7QK7AETP6.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "PDEUGZC7QK7AETP6", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "PDEUGZC7QK7AETP6.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "PDEUGZC7QK7AETP6.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "PDEUGZC7QK7AETP6.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "PDEUGZC7QK7AETP6.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9503" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PDEUGZC7QK7AETP6.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "PDEUGZC7QK7AETP6", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "PDEUGZC7QK7AETP6.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "PDEUGZC7QK7AETP6.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8146" - }, - "appliesTo" : [ ] - }, - "PDEUGZC7QK7AETP6.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "PDEUGZC7QK7AETP6.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PDEUGZC7QK7AETP6.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "PDEUGZC7QK7AETP6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PDEUGZC7QK7AETP6.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "PDEUGZC7QK7AETP6.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3395" - }, - "appliesTo" : [ ] - }, - "PDEUGZC7QK7AETP6.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "PDEUGZC7QK7AETP6.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PDEUGZC7QK7AETP6.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "PDEUGZC7QK7AETP6", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "PDEUGZC7QK7AETP6.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "PDEUGZC7QK7AETP6.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3463" - }, - "appliesTo" : [ ] - }, - "PDEUGZC7QK7AETP6.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "PDEUGZC7QK7AETP6.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PDEUGZC7QK7AETP6.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "PDEUGZC7QK7AETP6", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "PDEUGZC7QK7AETP6.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "PDEUGZC7QK7AETP6.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3843" - }, - "appliesTo" : [ ] - }, - "PDEUGZC7QK7AETP6.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "PDEUGZC7QK7AETP6.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PDEUGZC7QK7AETP6.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "PDEUGZC7QK7AETP6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PDEUGZC7QK7AETP6.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "PDEUGZC7QK7AETP6.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1706" - }, - "appliesTo" : [ ] - }, - "PDEUGZC7QK7AETP6.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "PDEUGZC7QK7AETP6.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PDEUGZC7QK7AETP6.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "PDEUGZC7QK7AETP6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PDEUGZC7QK7AETP6.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "PDEUGZC7QK7AETP6.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "V57DX5BAS5NCGXY8" : { - "V57DX5BAS5NCGXY8.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "V57DX5BAS5NCGXY8", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "V57DX5BAS5NCGXY8.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "V57DX5BAS5NCGXY8.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "V57DX5BAS5NCGXY8.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "V57DX5BAS5NCGXY8", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "V57DX5BAS5NCGXY8.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "V57DX5BAS5NCGXY8.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "V57DX5BAS5NCGXY8.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "V57DX5BAS5NCGXY8.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8511" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "V57DX5BAS5NCGXY8.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "V57DX5BAS5NCGXY8", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "V57DX5BAS5NCGXY8.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "V57DX5BAS5NCGXY8.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9643" - }, - "appliesTo" : [ ] - }, - "V57DX5BAS5NCGXY8.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "V57DX5BAS5NCGXY8.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "V57DX5BAS5NCGXY8.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "V57DX5BAS5NCGXY8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V57DX5BAS5NCGXY8.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "V57DX5BAS5NCGXY8.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3171" - }, - "appliesTo" : [ ] - }, - "V57DX5BAS5NCGXY8.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "V57DX5BAS5NCGXY8.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "V57DX5BAS5NCGXY8.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "V57DX5BAS5NCGXY8", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "V57DX5BAS5NCGXY8.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "V57DX5BAS5NCGXY8.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2070000000" - }, - "appliesTo" : [ ] - }, - "V57DX5BAS5NCGXY8.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "V57DX5BAS5NCGXY8.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3620" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "V57DX5BAS5NCGXY8.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "V57DX5BAS5NCGXY8", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "V57DX5BAS5NCGXY8.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "V57DX5BAS5NCGXY8.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3906" - }, - "appliesTo" : [ ] - }, - "V57DX5BAS5NCGXY8.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "V57DX5BAS5NCGXY8.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "V57DX5BAS5NCGXY8.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "V57DX5BAS5NCGXY8", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "V57DX5BAS5NCGXY8.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "V57DX5BAS5NCGXY8.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1338" - }, - "appliesTo" : [ ] - }, - "V57DX5BAS5NCGXY8.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "V57DX5BAS5NCGXY8.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "V57DX5BAS5NCGXY8.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "V57DX5BAS5NCGXY8", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "V57DX5BAS5NCGXY8.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "V57DX5BAS5NCGXY8.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3274" - }, - "appliesTo" : [ ] - }, - "V57DX5BAS5NCGXY8.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "V57DX5BAS5NCGXY8.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "V57DX5BAS5NCGXY8.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "V57DX5BAS5NCGXY8", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "V57DX5BAS5NCGXY8.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "V57DX5BAS5NCGXY8.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "V57DX5BAS5NCGXY8.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "V57DX5BAS5NCGXY8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V57DX5BAS5NCGXY8.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "V57DX5BAS5NCGXY8.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1820000000" - }, - "appliesTo" : [ ] - }, - "V57DX5BAS5NCGXY8.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "V57DX5BAS5NCGXY8.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1592" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "V57DX5BAS5NCGXY8.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "V57DX5BAS5NCGXY8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V57DX5BAS5NCGXY8.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "V57DX5BAS5NCGXY8.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "CJC3SAFYHNB2FRUU" : { - "CJC3SAFYHNB2FRUU.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "CJC3SAFYHNB2FRUU", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "CJC3SAFYHNB2FRUU.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "CJC3SAFYHNB2FRUU.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15070" - }, - "appliesTo" : [ ] - }, - "CJC3SAFYHNB2FRUU.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "CJC3SAFYHNB2FRUU.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CJC3SAFYHNB2FRUU.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "CJC3SAFYHNB2FRUU", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "CJC3SAFYHNB2FRUU.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "CJC3SAFYHNB2FRUU.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29894" - }, - "appliesTo" : [ ] - }, - "CJC3SAFYHNB2FRUU.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "CJC3SAFYHNB2FRUU.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CJC3SAFYHNB2FRUU.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "CJC3SAFYHNB2FRUU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CJC3SAFYHNB2FRUU.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "CJC3SAFYHNB2FRUU.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0434000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CJC3SAFYHNB2FRUU.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "CJC3SAFYHNB2FRUU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CJC3SAFYHNB2FRUU.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "CJC3SAFYHNB2FRUU.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7361000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CJC3SAFYHNB2FRUU.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "CJC3SAFYHNB2FRUU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CJC3SAFYHNB2FRUU.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "CJC3SAFYHNB2FRUU.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31736" - }, - "appliesTo" : [ ] - }, - "CJC3SAFYHNB2FRUU.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "CJC3SAFYHNB2FRUU.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CJC3SAFYHNB2FRUU.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "CJC3SAFYHNB2FRUU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CJC3SAFYHNB2FRUU.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "CJC3SAFYHNB2FRUU.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16010" - }, - "appliesTo" : [ ] - }, - "CJC3SAFYHNB2FRUU.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "CJC3SAFYHNB2FRUU.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8276000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CJC3SAFYHNB2FRUU.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "CJC3SAFYHNB2FRUU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CJC3SAFYHNB2FRUU.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "CJC3SAFYHNB2FRUU.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "81133" - }, - "appliesTo" : [ ] - }, - "CJC3SAFYHNB2FRUU.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "CJC3SAFYHNB2FRUU.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CJC3SAFYHNB2FRUU.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "CJC3SAFYHNB2FRUU", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "CJC3SAFYHNB2FRUU.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "CJC3SAFYHNB2FRUU.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39057" - }, - "appliesTo" : [ ] - }, - "CJC3SAFYHNB2FRUU.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "CJC3SAFYHNB2FRUU.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CJC3SAFYHNB2FRUU.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "CJC3SAFYHNB2FRUU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CJC3SAFYHNB2FRUU.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "CJC3SAFYHNB2FRUU.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5144000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CJC3SAFYHNB2FRUU.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "CJC3SAFYHNB2FRUU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CJC3SAFYHNB2FRUU.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "CJC3SAFYHNB2FRUU.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1945000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CJC3SAFYHNB2FRUU.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "CJC3SAFYHNB2FRUU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CJC3SAFYHNB2FRUU.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "CJC3SAFYHNB2FRUU.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "40849" - }, - "appliesTo" : [ ] - }, - "CJC3SAFYHNB2FRUU.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "CJC3SAFYHNB2FRUU.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5544000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CJC3SAFYHNB2FRUU.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "CJC3SAFYHNB2FRUU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CJC3SAFYHNB2FRUU.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "CJC3SAFYHNB2FRUU.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "76638" - }, - "appliesTo" : [ ] - }, - "CJC3SAFYHNB2FRUU.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "CJC3SAFYHNB2FRUU.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "FXDDR8N72HV8JWMF" : { - "FXDDR8N72HV8JWMF.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "FXDDR8N72HV8JWMF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FXDDR8N72HV8JWMF.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "FXDDR8N72HV8JWMF.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "80378" - }, - "appliesTo" : [ ] - }, - "FXDDR8N72HV8JWMF.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "FXDDR8N72HV8JWMF.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.1690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FXDDR8N72HV8JWMF.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "FXDDR8N72HV8JWMF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FXDDR8N72HV8JWMF.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "FXDDR8N72HV8JWMF.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "19.2600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FXDDR8N72HV8JWMF.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "FXDDR8N72HV8JWMF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "FXDDR8N72HV8JWMF.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "FXDDR8N72HV8JWMF.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.3890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FXDDR8N72HV8JWMF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "FXDDR8N72HV8JWMF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "FXDDR8N72HV8JWMF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "FXDDR8N72HV8JWMF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "244402" - }, - "appliesTo" : [ ] - }, - "FXDDR8N72HV8JWMF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "FXDDR8N72HV8JWMF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FXDDR8N72HV8JWMF.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "FXDDR8N72HV8JWMF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "FXDDR8N72HV8JWMF.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "FXDDR8N72HV8JWMF.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "175017" - }, - "appliesTo" : [ ] - }, - "FXDDR8N72HV8JWMF.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "FXDDR8N72HV8JWMF.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.6590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FXDDR8N72HV8JWMF.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "FXDDR8N72HV8JWMF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "FXDDR8N72HV8JWMF.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "FXDDR8N72HV8JWMF.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.6880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FXDDR8N72HV8JWMF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "FXDDR8N72HV8JWMF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "FXDDR8N72HV8JWMF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "FXDDR8N72HV8JWMF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "129984" - }, - "appliesTo" : [ ] - }, - "FXDDR8N72HV8JWMF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "FXDDR8N72HV8JWMF.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FXDDR8N72HV8JWMF.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "FXDDR8N72HV8JWMF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FXDDR8N72HV8JWMF.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "FXDDR8N72HV8JWMF.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "FXDDR8N72HV8JWMF.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "FXDDR8N72HV8JWMF.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "157487" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FXDDR8N72HV8JWMF.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "FXDDR8N72HV8JWMF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "FXDDR8N72HV8JWMF.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "FXDDR8N72HV8JWMF.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "343038" - }, - "appliesTo" : [ ] - }, - "FXDDR8N72HV8JWMF.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "FXDDR8N72HV8JWMF.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FXDDR8N72HV8JWMF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "FXDDR8N72HV8JWMF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "FXDDR8N72HV8JWMF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "FXDDR8N72HV8JWMF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "69871" - }, - "appliesTo" : [ ] - }, - "FXDDR8N72HV8JWMF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "FXDDR8N72HV8JWMF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.9690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FXDDR8N72HV8JWMF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "FXDDR8N72HV8JWMF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "FXDDR8N72HV8JWMF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "FXDDR8N72HV8JWMF.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "FXDDR8N72HV8JWMF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "FXDDR8N72HV8JWMF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "136891" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FXDDR8N72HV8JWMF.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "FXDDR8N72HV8JWMF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "FXDDR8N72HV8JWMF.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "FXDDR8N72HV8JWMF.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.7410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "KGM6Q2CJFMEMKWQN" : { - "KGM6Q2CJFMEMKWQN.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "KGM6Q2CJFMEMKWQN", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "KGM6Q2CJFMEMKWQN.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "KGM6Q2CJFMEMKWQN.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "643" - }, - "appliesTo" : [ ] - }, - "KGM6Q2CJFMEMKWQN.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "KGM6Q2CJFMEMKWQN.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KGM6Q2CJFMEMKWQN.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "KGM6Q2CJFMEMKWQN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KGM6Q2CJFMEMKWQN.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "KGM6Q2CJFMEMKWQN.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "661" - }, - "appliesTo" : [ ] - }, - "KGM6Q2CJFMEMKWQN.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "KGM6Q2CJFMEMKWQN.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KGM6Q2CJFMEMKWQN.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "KGM6Q2CJFMEMKWQN", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "KGM6Q2CJFMEMKWQN.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "KGM6Q2CJFMEMKWQN.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "60" - }, - "appliesTo" : [ ] - }, - "KGM6Q2CJFMEMKWQN.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "KGM6Q2CJFMEMKWQN.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0668000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KGM6Q2CJFMEMKWQN.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "KGM6Q2CJFMEMKWQN", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "KGM6Q2CJFMEMKWQN.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "KGM6Q2CJFMEMKWQN.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0715000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KGM6Q2CJFMEMKWQN.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "KGM6Q2CJFMEMKWQN", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "KGM6Q2CJFMEMKWQN.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "KGM6Q2CJFMEMKWQN.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "KGM6Q2CJFMEMKWQN.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "KGM6Q2CJFMEMKWQN.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1785" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KGM6Q2CJFMEMKWQN.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "KGM6Q2CJFMEMKWQN", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "KGM6Q2CJFMEMKWQN.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "KGM6Q2CJFMEMKWQN.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0744000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KGM6Q2CJFMEMKWQN.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "KGM6Q2CJFMEMKWQN", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "KGM6Q2CJFMEMKWQN.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "KGM6Q2CJFMEMKWQN.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1852" - }, - "appliesTo" : [ ] - }, - "KGM6Q2CJFMEMKWQN.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "KGM6Q2CJFMEMKWQN.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KGM6Q2CJFMEMKWQN.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "KGM6Q2CJFMEMKWQN", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "KGM6Q2CJFMEMKWQN.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "KGM6Q2CJFMEMKWQN.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "140" - }, - "appliesTo" : [ ] - }, - "KGM6Q2CJFMEMKWQN.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "KGM6Q2CJFMEMKWQN.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0653000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KGM6Q2CJFMEMKWQN.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "KGM6Q2CJFMEMKWQN", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "KGM6Q2CJFMEMKWQN.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "KGM6Q2CJFMEMKWQN.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0646000000" - }, - "appliesTo" : [ ] - }, - "KGM6Q2CJFMEMKWQN.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "KGM6Q2CJFMEMKWQN.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "122" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KGM6Q2CJFMEMKWQN.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "KGM6Q2CJFMEMKWQN", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "KGM6Q2CJFMEMKWQN.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "KGM6Q2CJFMEMKWQN.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KGM6Q2CJFMEMKWQN.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "KGM6Q2CJFMEMKWQN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KGM6Q2CJFMEMKWQN.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "KGM6Q2CJFMEMKWQN.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0679000000" - }, - "appliesTo" : [ ] - }, - "KGM6Q2CJFMEMKWQN.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "KGM6Q2CJFMEMKWQN.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "69" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KGM6Q2CJFMEMKWQN.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "KGM6Q2CJFMEMKWQN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KGM6Q2CJFMEMKWQN.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "KGM6Q2CJFMEMKWQN.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0765000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "DAVYF6BBKWXMDDGD" : { - "DAVYF6BBKWXMDDGD.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "DAVYF6BBKWXMDDGD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DAVYF6BBKWXMDDGD.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "DAVYF6BBKWXMDDGD.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.3936000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DAVYF6BBKWXMDDGD.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "DAVYF6BBKWXMDDGD", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "DAVYF6BBKWXMDDGD.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "DAVYF6BBKWXMDDGD.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "154106" - }, - "appliesTo" : [ ] - }, - "DAVYF6BBKWXMDDGD.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "DAVYF6BBKWXMDDGD.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DAVYF6BBKWXMDDGD.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "DAVYF6BBKWXMDDGD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DAVYF6BBKWXMDDGD.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "DAVYF6BBKWXMDDGD.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "92175" - }, - "appliesTo" : [ ] - }, - "DAVYF6BBKWXMDDGD.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "DAVYF6BBKWXMDDGD.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6374000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DAVYF6BBKWXMDDGD.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "DAVYF6BBKWXMDDGD", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "DAVYF6BBKWXMDDGD.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "DAVYF6BBKWXMDDGD.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "74110" - }, - "appliesTo" : [ ] - }, - "DAVYF6BBKWXMDDGD.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "DAVYF6BBKWXMDDGD.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DAVYF6BBKWXMDDGD.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "DAVYF6BBKWXMDDGD", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "DAVYF6BBKWXMDDGD.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "DAVYF6BBKWXMDDGD.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "80154" - }, - "appliesTo" : [ ] - }, - "DAVYF6BBKWXMDDGD.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "DAVYF6BBKWXMDDGD.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DAVYF6BBKWXMDDGD.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "DAVYF6BBKWXMDDGD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DAVYF6BBKWXMDDGD.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "DAVYF6BBKWXMDDGD.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "184080" - }, - "appliesTo" : [ ] - }, - "DAVYF6BBKWXMDDGD.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "DAVYF6BBKWXMDDGD.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DAVYF6BBKWXMDDGD.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "DAVYF6BBKWXMDDGD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DAVYF6BBKWXMDDGD.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "DAVYF6BBKWXMDDGD.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.7061000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DAVYF6BBKWXMDDGD.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "DAVYF6BBKWXMDDGD", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "DAVYF6BBKWXMDDGD.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "DAVYF6BBKWXMDDGD.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.0550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DAVYF6BBKWXMDDGD.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "DAVYF6BBKWXMDDGD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DAVYF6BBKWXMDDGD.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "DAVYF6BBKWXMDDGD.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "42814" - }, - "appliesTo" : [ ] - }, - "DAVYF6BBKWXMDDGD.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "DAVYF6BBKWXMDDGD.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.0174000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DAVYF6BBKWXMDDGD.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "DAVYF6BBKWXMDDGD", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "DAVYF6BBKWXMDDGD.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "DAVYF6BBKWXMDDGD.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.3800000000" - }, - "appliesTo" : [ ] - }, - "DAVYF6BBKWXMDDGD.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "DAVYF6BBKWXMDDGD.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37230" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DAVYF6BBKWXMDDGD.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "DAVYF6BBKWXMDDGD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DAVYF6BBKWXMDDGD.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "DAVYF6BBKWXMDDGD.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.7180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DAVYF6BBKWXMDDGD.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "DAVYF6BBKWXMDDGD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DAVYF6BBKWXMDDGD.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "DAVYF6BBKWXMDDGD.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "85054" - }, - "appliesTo" : [ ] - }, - "DAVYF6BBKWXMDDGD.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "DAVYF6BBKWXMDDGD.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "U9A5GD49U2QWSB8N" : { - "U9A5GD49U2QWSB8N.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "U9A5GD49U2QWSB8N", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "U9A5GD49U2QWSB8N.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "U9A5GD49U2QWSB8N.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "257952" - }, - "appliesTo" : [ ] - }, - "U9A5GD49U2QWSB8N.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "U9A5GD49U2QWSB8N.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "U9A5GD49U2QWSB8N.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "U9A5GD49U2QWSB8N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U9A5GD49U2QWSB8N.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "U9A5GD49U2QWSB8N.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "261303" - }, - "appliesTo" : [ ] - }, - "U9A5GD49U2QWSB8N.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "U9A5GD49U2QWSB8N.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "U9A5GD49U2QWSB8N.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "U9A5GD49U2QWSB8N", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "U9A5GD49U2QWSB8N.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "U9A5GD49U2QWSB8N.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "129199" - }, - "appliesTo" : [ ] - }, - "U9A5GD49U2QWSB8N.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "U9A5GD49U2QWSB8N.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.7490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "U9A5GD49U2QWSB8N.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "U9A5GD49U2QWSB8N", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "U9A5GD49U2QWSB8N.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "U9A5GD49U2QWSB8N.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "379672" - }, - "appliesTo" : [ ] - }, - "U9A5GD49U2QWSB8N.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "U9A5GD49U2QWSB8N.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.4472000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "U9A5GD49U2QWSB8N.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "U9A5GD49U2QWSB8N", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "U9A5GD49U2QWSB8N.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "U9A5GD49U2QWSB8N.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "28.7757000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "U9A5GD49U2QWSB8N.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "U9A5GD49U2QWSB8N", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "U9A5GD49U2QWSB8N.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "U9A5GD49U2QWSB8N.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "758320" - }, - "appliesTo" : [ ] - }, - "U9A5GD49U2QWSB8N.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "U9A5GD49U2QWSB8N.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "U9A5GD49U2QWSB8N.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "U9A5GD49U2QWSB8N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U9A5GD49U2QWSB8N.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "U9A5GD49U2QWSB8N.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "30.0352000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "U9A5GD49U2QWSB8N.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "U9A5GD49U2QWSB8N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U9A5GD49U2QWSB8N.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "U9A5GD49U2QWSB8N.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.9440000000" - }, - "appliesTo" : [ ] - }, - "U9A5GD49U2QWSB8N.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "U9A5GD49U2QWSB8N.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "130909" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "U9A5GD49U2QWSB8N.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "U9A5GD49U2QWSB8N", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "U9A5GD49U2QWSB8N.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "U9A5GD49U2QWSB8N.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "29.6320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "U9A5GD49U2QWSB8N.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "U9A5GD49U2QWSB8N", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "U9A5GD49U2QWSB8N.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "U9A5GD49U2QWSB8N.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "376414" - }, - "appliesTo" : [ ] - }, - "U9A5GD49U2QWSB8N.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "U9A5GD49U2QWSB8N.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.3230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "U9A5GD49U2QWSB8N.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "U9A5GD49U2QWSB8N", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "U9A5GD49U2QWSB8N.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "U9A5GD49U2QWSB8N.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "750143" - }, - "appliesTo" : [ ] - }, - "U9A5GD49U2QWSB8N.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "U9A5GD49U2QWSB8N.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "U9A5GD49U2QWSB8N.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "U9A5GD49U2QWSB8N", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "U9A5GD49U2QWSB8N.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "U9A5GD49U2QWSB8N.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "29.0504000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "VDQX9KJN5DYBTUQJ" : { - "VDQX9KJN5DYBTUQJ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "VDQX9KJN5DYBTUQJ", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "VDQX9KJN5DYBTUQJ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "VDQX9KJN5DYBTUQJ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14594" - }, - "appliesTo" : [ ] - }, - "VDQX9KJN5DYBTUQJ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "VDQX9KJN5DYBTUQJ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VDQX9KJN5DYBTUQJ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "VDQX9KJN5DYBTUQJ", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "VDQX9KJN5DYBTUQJ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "VDQX9KJN5DYBTUQJ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9680" - }, - "appliesTo" : [ ] - }, - "VDQX9KJN5DYBTUQJ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "VDQX9KJN5DYBTUQJ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VDQX9KJN5DYBTUQJ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "VDQX9KJN5DYBTUQJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VDQX9KJN5DYBTUQJ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "VDQX9KJN5DYBTUQJ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27064" - }, - "appliesTo" : [ ] - }, - "VDQX9KJN5DYBTUQJ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "VDQX9KJN5DYBTUQJ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VDQX9KJN5DYBTUQJ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "VDQX9KJN5DYBTUQJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "VDQX9KJN5DYBTUQJ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "VDQX9KJN5DYBTUQJ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VDQX9KJN5DYBTUQJ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "VDQX9KJN5DYBTUQJ", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "VDQX9KJN5DYBTUQJ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "VDQX9KJN5DYBTUQJ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30385" - }, - "appliesTo" : [ ] - }, - "VDQX9KJN5DYBTUQJ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "VDQX9KJN5DYBTUQJ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VDQX9KJN5DYBTUQJ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "VDQX9KJN5DYBTUQJ", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "VDQX9KJN5DYBTUQJ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "VDQX9KJN5DYBTUQJ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VDQX9KJN5DYBTUQJ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "VDQX9KJN5DYBTUQJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VDQX9KJN5DYBTUQJ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "VDQX9KJN5DYBTUQJ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13676" - }, - "appliesTo" : [ ] - }, - "VDQX9KJN5DYBTUQJ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "VDQX9KJN5DYBTUQJ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VDQX9KJN5DYBTUQJ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "VDQX9KJN5DYBTUQJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "VDQX9KJN5DYBTUQJ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "VDQX9KJN5DYBTUQJ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19395" - }, - "appliesTo" : [ ] - }, - "VDQX9KJN5DYBTUQJ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "VDQX9KJN5DYBTUQJ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VDQX9KJN5DYBTUQJ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "VDQX9KJN5DYBTUQJ", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "VDQX9KJN5DYBTUQJ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "VDQX9KJN5DYBTUQJ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "40073" - }, - "appliesTo" : [ ] - }, - "VDQX9KJN5DYBTUQJ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "VDQX9KJN5DYBTUQJ.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VDQX9KJN5DYBTUQJ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "VDQX9KJN5DYBTUQJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "VDQX9KJN5DYBTUQJ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "VDQX9KJN5DYBTUQJ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5450000000" - }, - "appliesTo" : [ ] - }, - "VDQX9KJN5DYBTUQJ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "VDQX9KJN5DYBTUQJ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26573" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VDQX9KJN5DYBTUQJ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "VDQX9KJN5DYBTUQJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VDQX9KJN5DYBTUQJ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "VDQX9KJN5DYBTUQJ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "PNHWQABRRB4TBUYK" : { - "PNHWQABRRB4TBUYK.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "PNHWQABRRB4TBUYK", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "PNHWQABRRB4TBUYK.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "PNHWQABRRB4TBUYK.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8650" - }, - "appliesTo" : [ ] - }, - "PNHWQABRRB4TBUYK.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "PNHWQABRRB4TBUYK.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PNHWQABRRB4TBUYK.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "PNHWQABRRB4TBUYK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PNHWQABRRB4TBUYK.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "PNHWQABRRB4TBUYK.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16711" - }, - "appliesTo" : [ ] - }, - "PNHWQABRRB4TBUYK.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "PNHWQABRRB4TBUYK.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PNHWQABRRB4TBUYK.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "PNHWQABRRB4TBUYK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PNHWQABRRB4TBUYK.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "PNHWQABRRB4TBUYK.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "PNHWQABRRB4TBUYK.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "PNHWQABRRB4TBUYK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PNHWQABRRB4TBUYK.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "PNHWQABRRB4TBUYK.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8435" - }, - "appliesTo" : [ ] - }, - "PNHWQABRRB4TBUYK.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "PNHWQABRRB4TBUYK.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PNHWQABRRB4TBUYK.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "PNHWQABRRB4TBUYK", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "PNHWQABRRB4TBUYK.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "PNHWQABRRB4TBUYK.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "PNHWQABRRB4TBUYK.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "PNHWQABRRB4TBUYK", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "PNHWQABRRB4TBUYK.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "PNHWQABRRB4TBUYK.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37095" - }, - "appliesTo" : [ ] - }, - "PNHWQABRRB4TBUYK.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "PNHWQABRRB4TBUYK.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PNHWQABRRB4TBUYK.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "PNHWQABRRB4TBUYK", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "PNHWQABRRB4TBUYK.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "PNHWQABRRB4TBUYK.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4620000000" - }, - "appliesTo" : [ ] - }, - "PNHWQABRRB4TBUYK.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "PNHWQABRRB4TBUYK.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22658" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PNHWQABRRB4TBUYK.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "PNHWQABRRB4TBUYK", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "PNHWQABRRB4TBUYK.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "PNHWQABRRB4TBUYK.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "PNHWQABRRB4TBUYK.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "PNHWQABRRB4TBUYK", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "PNHWQABRRB4TBUYK.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "PNHWQABRRB4TBUYK.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24593" - }, - "appliesTo" : [ ] - }, - "PNHWQABRRB4TBUYK.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "PNHWQABRRB4TBUYK.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PNHWQABRRB4TBUYK.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "PNHWQABRRB4TBUYK", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "PNHWQABRRB4TBUYK.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "PNHWQABRRB4TBUYK.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13045" - }, - "appliesTo" : [ ] - }, - "PNHWQABRRB4TBUYK.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "PNHWQABRRB4TBUYK.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PNHWQABRRB4TBUYK.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "PNHWQABRRB4TBUYK", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "PNHWQABRRB4TBUYK.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "PNHWQABRRB4TBUYK.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32700" - }, - "appliesTo" : [ ] - }, - "PNHWQABRRB4TBUYK.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "PNHWQABRRB4TBUYK.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "QVZGU743YEW7J8ZP" : { - "QVZGU743YEW7J8ZP.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "QVZGU743YEW7J8ZP", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "QVZGU743YEW7J8ZP.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "QVZGU743YEW7J8ZP.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "70248" - }, - "appliesTo" : [ ] - }, - "QVZGU743YEW7J8ZP.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "QVZGU743YEW7J8ZP.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QVZGU743YEW7J8ZP.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "QVZGU743YEW7J8ZP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QVZGU743YEW7J8ZP.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "QVZGU743YEW7J8ZP.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13178" - }, - "appliesTo" : [ ] - }, - "QVZGU743YEW7J8ZP.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "QVZGU743YEW7J8ZP.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QVZGU743YEW7J8ZP.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "QVZGU743YEW7J8ZP", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "QVZGU743YEW7J8ZP.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "QVZGU743YEW7J8ZP.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QVZGU743YEW7J8ZP.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "QVZGU743YEW7J8ZP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QVZGU743YEW7J8ZP.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "QVZGU743YEW7J8ZP.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QVZGU743YEW7J8ZP.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QVZGU743YEW7J8ZP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QVZGU743YEW7J8ZP.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QVZGU743YEW7J8ZP.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QVZGU743YEW7J8ZP.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QVZGU743YEW7J8ZP.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "56289" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QVZGU743YEW7J8ZP.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "QVZGU743YEW7J8ZP", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "QVZGU743YEW7J8ZP.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "QVZGU743YEW7J8ZP.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27949" - }, - "appliesTo" : [ ] - }, - "QVZGU743YEW7J8ZP.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "QVZGU743YEW7J8ZP.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QVZGU743YEW7J8ZP.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QVZGU743YEW7J8ZP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QVZGU743YEW7J8ZP.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QVZGU743YEW7J8ZP.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23949" - }, - "appliesTo" : [ ] - }, - "QVZGU743YEW7J8ZP.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QVZGU743YEW7J8ZP.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QVZGU743YEW7J8ZP.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QVZGU743YEW7J8ZP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QVZGU743YEW7J8ZP.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QVZGU743YEW7J8ZP.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24787" - }, - "appliesTo" : [ ] - }, - "QVZGU743YEW7J8ZP.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QVZGU743YEW7J8ZP.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QVZGU743YEW7J8ZP.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "QVZGU743YEW7J8ZP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QVZGU743YEW7J8ZP.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "QVZGU743YEW7J8ZP.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26034" - }, - "appliesTo" : [ ] - }, - "QVZGU743YEW7J8ZP.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "QVZGU743YEW7J8ZP.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QVZGU743YEW7J8ZP.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QVZGU743YEW7J8ZP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QVZGU743YEW7J8ZP.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QVZGU743YEW7J8ZP.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QVZGU743YEW7J8ZP.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QVZGU743YEW7J8ZP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QVZGU743YEW7J8ZP.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QVZGU743YEW7J8ZP.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10117" - }, - "appliesTo" : [ ] - }, - "QVZGU743YEW7J8ZP.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QVZGU743YEW7J8ZP.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "TJCB42XUUBBP8KKF" : { - "TJCB42XUUBBP8KKF.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "TJCB42XUUBBP8KKF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TJCB42XUUBBP8KKF.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "TJCB42XUUBBP8KKF.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12895" - }, - "appliesTo" : [ ] - }, - "TJCB42XUUBBP8KKF.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "TJCB42XUUBBP8KKF.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TJCB42XUUBBP8KKF.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "TJCB42XUUBBP8KKF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TJCB42XUUBBP8KKF.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "TJCB42XUUBBP8KKF.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0912000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TJCB42XUUBBP8KKF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TJCB42XUUBBP8KKF", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "TJCB42XUUBBP8KKF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TJCB42XUUBBP8KKF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11185" - }, - "appliesTo" : [ ] - }, - "TJCB42XUUBBP8KKF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TJCB42XUUBBP8KKF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TJCB42XUUBBP8KKF.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TJCB42XUUBBP8KKF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TJCB42XUUBBP8KKF.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TJCB42XUUBBP8KKF.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TJCB42XUUBBP8KKF.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "TJCB42XUUBBP8KKF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TJCB42XUUBBP8KKF.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "TJCB42XUUBBP8KKF.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "50231" - }, - "appliesTo" : [ ] - }, - "TJCB42XUUBBP8KKF.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "TJCB42XUUBBP8KKF.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TJCB42XUUBBP8KKF.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "TJCB42XUUBBP8KKF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TJCB42XUUBBP8KKF.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "TJCB42XUUBBP8KKF.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25273" - }, - "appliesTo" : [ ] - }, - "TJCB42XUUBBP8KKF.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "TJCB42XUUBBP8KKF.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TJCB42XUUBBP8KKF.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "TJCB42XUUBBP8KKF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TJCB42XUUBBP8KKF.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "TJCB42XUUBBP8KKF.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25628" - }, - "appliesTo" : [ ] - }, - "TJCB42XUUBBP8KKF.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "TJCB42XUUBBP8KKF.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9752000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TJCB42XUUBBP8KKF.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "TJCB42XUUBBP8KKF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TJCB42XUUBBP8KKF.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "TJCB42XUUBBP8KKF.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1064000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TJCB42XUUBBP8KKF.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "TJCB42XUUBBP8KKF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TJCB42XUUBBP8KKF.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "TJCB42XUUBBP8KKF.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8317000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TJCB42XUUBBP8KKF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TJCB42XUUBBP8KKF", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "TJCB42XUUBBP8KKF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TJCB42XUUBBP8KKF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "42055" - }, - "appliesTo" : [ ] - }, - "TJCB42XUUBBP8KKF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TJCB42XUUBBP8KKF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TJCB42XUUBBP8KKF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TJCB42XUUBBP8KKF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TJCB42XUUBBP8KKF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TJCB42XUUBBP8KKF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21922" - }, - "appliesTo" : [ ] - }, - "TJCB42XUUBBP8KKF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TJCB42XUUBBP8KKF.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TJCB42XUUBBP8KKF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TJCB42XUUBBP8KKF", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "TJCB42XUUBBP8KKF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TJCB42XUUBBP8KKF.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8510000000" - }, - "appliesTo" : [ ] - }, - "TJCB42XUUBBP8KKF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TJCB42XUUBBP8KKF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22370" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "4TE6EMDQEPCBNFAE" : { - "4TE6EMDQEPCBNFAE.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "4TE6EMDQEPCBNFAE", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "4TE6EMDQEPCBNFAE.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "4TE6EMDQEPCBNFAE.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12980" - }, - "appliesTo" : [ ] - }, - "4TE6EMDQEPCBNFAE.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "4TE6EMDQEPCBNFAE.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4TE6EMDQEPCBNFAE.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "4TE6EMDQEPCBNFAE", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "4TE6EMDQEPCBNFAE.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "4TE6EMDQEPCBNFAE.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6810000000" - }, - "appliesTo" : [ ] - }, - "4TE6EMDQEPCBNFAE.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "4TE6EMDQEPCBNFAE.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7280" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4TE6EMDQEPCBNFAE.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "4TE6EMDQEPCBNFAE", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "4TE6EMDQEPCBNFAE.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "4TE6EMDQEPCBNFAE.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "4TE6EMDQEPCBNFAE.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "4TE6EMDQEPCBNFAE", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "4TE6EMDQEPCBNFAE.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "4TE6EMDQEPCBNFAE.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "4TE6EMDQEPCBNFAE.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "4TE6EMDQEPCBNFAE", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "4TE6EMDQEPCBNFAE.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "4TE6EMDQEPCBNFAE.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10960" - }, - "appliesTo" : [ ] - }, - "4TE6EMDQEPCBNFAE.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "4TE6EMDQEPCBNFAE.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4TE6EMDQEPCBNFAE.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "4TE6EMDQEPCBNFAE", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "4TE6EMDQEPCBNFAE.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "4TE6EMDQEPCBNFAE.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35201" - }, - "appliesTo" : [ ] - }, - "4TE6EMDQEPCBNFAE.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "4TE6EMDQEPCBNFAE.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4TE6EMDQEPCBNFAE.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "4TE6EMDQEPCBNFAE", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "4TE6EMDQEPCBNFAE.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "4TE6EMDQEPCBNFAE.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23691" - }, - "appliesTo" : [ ] - }, - "4TE6EMDQEPCBNFAE.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "4TE6EMDQEPCBNFAE.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4TE6EMDQEPCBNFAE.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "4TE6EMDQEPCBNFAE", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "4TE6EMDQEPCBNFAE.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "4TE6EMDQEPCBNFAE.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6190000000" - }, - "appliesTo" : [ ] - }, - "4TE6EMDQEPCBNFAE.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "4TE6EMDQEPCBNFAE.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19656" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4TE6EMDQEPCBNFAE.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "4TE6EMDQEPCBNFAE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4TE6EMDQEPCBNFAE.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "4TE6EMDQEPCBNFAE.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15466" - }, - "appliesTo" : [ ] - }, - "4TE6EMDQEPCBNFAE.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "4TE6EMDQEPCBNFAE.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4TE6EMDQEPCBNFAE.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "4TE6EMDQEPCBNFAE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4TE6EMDQEPCBNFAE.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "4TE6EMDQEPCBNFAE.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7310" - }, - "appliesTo" : [ ] - }, - "4TE6EMDQEPCBNFAE.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "4TE6EMDQEPCBNFAE.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4TE6EMDQEPCBNFAE.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "4TE6EMDQEPCBNFAE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4TE6EMDQEPCBNFAE.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "4TE6EMDQEPCBNFAE.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "QA82VPGUZGU7KXVD" : { - "QA82VPGUZGU7KXVD.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "QA82VPGUZGU7KXVD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QA82VPGUZGU7KXVD.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "QA82VPGUZGU7KXVD.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9424" - }, - "appliesTo" : [ ] - }, - "QA82VPGUZGU7KXVD.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "QA82VPGUZGU7KXVD.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QA82VPGUZGU7KXVD.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QA82VPGUZGU7KXVD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QA82VPGUZGU7KXVD.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QA82VPGUZGU7KXVD.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QA82VPGUZGU7KXVD.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "QA82VPGUZGU7KXVD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QA82VPGUZGU7KXVD.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "QA82VPGUZGU7KXVD.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QA82VPGUZGU7KXVD.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QA82VPGUZGU7KXVD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QA82VPGUZGU7KXVD.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QA82VPGUZGU7KXVD.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15953" - }, - "appliesTo" : [ ] - }, - "QA82VPGUZGU7KXVD.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QA82VPGUZGU7KXVD.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QA82VPGUZGU7KXVD.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QA82VPGUZGU7KXVD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QA82VPGUZGU7KXVD.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QA82VPGUZGU7KXVD.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30024" - }, - "appliesTo" : [ ] - }, - "QA82VPGUZGU7KXVD.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QA82VPGUZGU7KXVD.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QA82VPGUZGU7KXVD.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "QA82VPGUZGU7KXVD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QA82VPGUZGU7KXVD.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "QA82VPGUZGU7KXVD.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6970000000" - }, - "appliesTo" : [ ] - }, - "QA82VPGUZGU7KXVD.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "QA82VPGUZGU7KXVD.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18325" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QA82VPGUZGU7KXVD.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QA82VPGUZGU7KXVD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QA82VPGUZGU7KXVD.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QA82VPGUZGU7KXVD.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16052" - }, - "appliesTo" : [ ] - }, - "QA82VPGUZGU7KXVD.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QA82VPGUZGU7KXVD.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QA82VPGUZGU7KXVD.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "QA82VPGUZGU7KXVD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QA82VPGUZGU7KXVD.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "QA82VPGUZGU7KXVD.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QA82VPGUZGU7KXVD.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "QA82VPGUZGU7KXVD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QA82VPGUZGU7KXVD.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "QA82VPGUZGU7KXVD.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35921" - }, - "appliesTo" : [ ] - }, - "QA82VPGUZGU7KXVD.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "QA82VPGUZGU7KXVD.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QA82VPGUZGU7KXVD.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QA82VPGUZGU7KXVD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QA82VPGUZGU7KXVD.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QA82VPGUZGU7KXVD.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8218" - }, - "appliesTo" : [ ] - }, - "QA82VPGUZGU7KXVD.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QA82VPGUZGU7KXVD.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QA82VPGUZGU7KXVD.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "QA82VPGUZGU7KXVD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QA82VPGUZGU7KXVD.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "QA82VPGUZGU7KXVD.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QA82VPGUZGU7KXVD.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "QA82VPGUZGU7KXVD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QA82VPGUZGU7KXVD.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "QA82VPGUZGU7KXVD.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QA82VPGUZGU7KXVD.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "QA82VPGUZGU7KXVD.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18416" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "QQXUWBKQH3U8F6KT" : { - "QQXUWBKQH3U8F6KT.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QQXUWBKQH3U8F6KT", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "QQXUWBKQH3U8F6KT.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QQXUWBKQH3U8F6KT.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QQXUWBKQH3U8F6KT.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QQXUWBKQH3U8F6KT.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2068" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QQXUWBKQH3U8F6KT.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QQXUWBKQH3U8F6KT", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "QQXUWBKQH3U8F6KT.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QQXUWBKQH3U8F6KT.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "649" - }, - "appliesTo" : [ ] - }, - "QQXUWBKQH3U8F6KT.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QQXUWBKQH3U8F6KT.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QQXUWBKQH3U8F6KT.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QQXUWBKQH3U8F6KT", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "QQXUWBKQH3U8F6KT.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QQXUWBKQH3U8F6KT.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QQXUWBKQH3U8F6KT.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QQXUWBKQH3U8F6KT", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "QQXUWBKQH3U8F6KT.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QQXUWBKQH3U8F6KT.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QQXUWBKQH3U8F6KT.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QQXUWBKQH3U8F6KT.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1082" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QQXUWBKQH3U8F6KT.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QQXUWBKQH3U8F6KT", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QQXUWBKQH3U8F6KT.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QQXUWBKQH3U8F6KT.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1071" - }, - "appliesTo" : [ ] - }, - "QQXUWBKQH3U8F6KT.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QQXUWBKQH3U8F6KT.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "TSDEZUXYZHBDK9YE" : { - "TSDEZUXYZHBDK9YE.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TSDEZUXYZHBDK9YE", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "TSDEZUXYZHBDK9YE.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TSDEZUXYZHBDK9YE.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "134464" - }, - "appliesTo" : [ ] - }, - "TSDEZUXYZHBDK9YE.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TSDEZUXYZHBDK9YE.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TSDEZUXYZHBDK9YE.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TSDEZUXYZHBDK9YE", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "TSDEZUXYZHBDK9YE.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TSDEZUXYZHBDK9YE.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "68604" - }, - "appliesTo" : [ ] - }, - "TSDEZUXYZHBDK9YE.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TSDEZUXYZHBDK9YE.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.8320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TSDEZUXYZHBDK9YE.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TSDEZUXYZHBDK9YE", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "TSDEZUXYZHBDK9YE.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TSDEZUXYZHBDK9YE.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "196232" - }, - "appliesTo" : [ ] - }, - "TSDEZUXYZHBDK9YE.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TSDEZUXYZHBDK9YE.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TSDEZUXYZHBDK9YE.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TSDEZUXYZHBDK9YE", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "TSDEZUXYZHBDK9YE.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TSDEZUXYZHBDK9YE.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "104379" - }, - "appliesTo" : [ ] - }, - "TSDEZUXYZHBDK9YE.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TSDEZUXYZHBDK9YE.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TSDEZUXYZHBDK9YE.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TSDEZUXYZHBDK9YE", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "TSDEZUXYZHBDK9YE.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TSDEZUXYZHBDK9YE.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.4460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TSDEZUXYZHBDK9YE.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "TSDEZUXYZHBDK9YE", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "TSDEZUXYZHBDK9YE.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "TSDEZUXYZHBDK9YE.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.5790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "MD88Y4BYY57EECUZ" : { - "MD88Y4BYY57EECUZ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "MD88Y4BYY57EECUZ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MD88Y4BYY57EECUZ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "MD88Y4BYY57EECUZ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15014" - }, - "appliesTo" : [ ] - }, - "MD88Y4BYY57EECUZ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "MD88Y4BYY57EECUZ.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MD88Y4BYY57EECUZ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "MD88Y4BYY57EECUZ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MD88Y4BYY57EECUZ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "MD88Y4BYY57EECUZ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MD88Y4BYY57EECUZ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "MD88Y4BYY57EECUZ", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "MD88Y4BYY57EECUZ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "MD88Y4BYY57EECUZ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13050" - }, - "appliesTo" : [ ] - }, - "MD88Y4BYY57EECUZ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "MD88Y4BYY57EECUZ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MD88Y4BYY57EECUZ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "MD88Y4BYY57EECUZ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MD88Y4BYY57EECUZ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "MD88Y4BYY57EECUZ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MD88Y4BYY57EECUZ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "MD88Y4BYY57EECUZ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MD88Y4BYY57EECUZ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "MD88Y4BYY57EECUZ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MD88Y4BYY57EECUZ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "MD88Y4BYY57EECUZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MD88Y4BYY57EECUZ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "MD88Y4BYY57EECUZ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5830" - }, - "appliesTo" : [ ] - }, - "MD88Y4BYY57EECUZ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "MD88Y4BYY57EECUZ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MD88Y4BYY57EECUZ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "MD88Y4BYY57EECUZ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "MD88Y4BYY57EECUZ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "MD88Y4BYY57EECUZ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2777" - }, - "appliesTo" : [ ] - }, - "MD88Y4BYY57EECUZ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "MD88Y4BYY57EECUZ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MD88Y4BYY57EECUZ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "MD88Y4BYY57EECUZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MD88Y4BYY57EECUZ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "MD88Y4BYY57EECUZ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MD88Y4BYY57EECUZ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "MD88Y4BYY57EECUZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MD88Y4BYY57EECUZ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "MD88Y4BYY57EECUZ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2942" - }, - "appliesTo" : [ ] - }, - "MD88Y4BYY57EECUZ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "MD88Y4BYY57EECUZ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MD88Y4BYY57EECUZ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "MD88Y4BYY57EECUZ", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "MD88Y4BYY57EECUZ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "MD88Y4BYY57EECUZ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5510" - }, - "appliesTo" : [ ] - }, - "MD88Y4BYY57EECUZ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "MD88Y4BYY57EECUZ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MD88Y4BYY57EECUZ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "MD88Y4BYY57EECUZ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MD88Y4BYY57EECUZ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "MD88Y4BYY57EECUZ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7562" - }, - "appliesTo" : [ ] - }, - "MD88Y4BYY57EECUZ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "MD88Y4BYY57EECUZ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MD88Y4BYY57EECUZ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "MD88Y4BYY57EECUZ", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "MD88Y4BYY57EECUZ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "MD88Y4BYY57EECUZ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6945" - }, - "appliesTo" : [ ] - }, - "MD88Y4BYY57EECUZ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "MD88Y4BYY57EECUZ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "NWRPWAZ545BCP5YE" : { - "NWRPWAZ545BCP5YE.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "NWRPWAZ545BCP5YE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NWRPWAZ545BCP5YE.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "NWRPWAZ545BCP5YE.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29084" - }, - "appliesTo" : [ ] - }, - "NWRPWAZ545BCP5YE.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "NWRPWAZ545BCP5YE.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "NWRPWAZ545BCP5YE.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "NWRPWAZ545BCP5YE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NWRPWAZ545BCP5YE.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "NWRPWAZ545BCP5YE.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.4570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "NWRPWAZ545BCP5YE.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "NWRPWAZ545BCP5YE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NWRPWAZ545BCP5YE.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "NWRPWAZ545BCP5YE.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.7460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "NWRPWAZ545BCP5YE.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "NWRPWAZ545BCP5YE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NWRPWAZ545BCP5YE.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "NWRPWAZ545BCP5YE.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.8110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "NWRPWAZ545BCP5YE.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "NWRPWAZ545BCP5YE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NWRPWAZ545BCP5YE.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "NWRPWAZ545BCP5YE.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "NWRPWAZ545BCP5YE.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "NWRPWAZ545BCP5YE.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "57798" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "NWRPWAZ545BCP5YE.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "NWRPWAZ545BCP5YE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NWRPWAZ545BCP5YE.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "NWRPWAZ545BCP5YE.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "154244" - }, - "appliesTo" : [ ] - }, - "NWRPWAZ545BCP5YE.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "NWRPWAZ545BCP5YE.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "NWRPWAZ545BCP5YE.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "NWRPWAZ545BCP5YE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NWRPWAZ545BCP5YE.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "NWRPWAZ545BCP5YE.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27878" - }, - "appliesTo" : [ ] - }, - "NWRPWAZ545BCP5YE.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "NWRPWAZ545BCP5YE.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "NWRPWAZ545BCP5YE.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "NWRPWAZ545BCP5YE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NWRPWAZ545BCP5YE.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "NWRPWAZ545BCP5YE.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "55434" - }, - "appliesTo" : [ ] - }, - "NWRPWAZ545BCP5YE.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "NWRPWAZ545BCP5YE.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "NWRPWAZ545BCP5YE.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "NWRPWAZ545BCP5YE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NWRPWAZ545BCP5YE.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "NWRPWAZ545BCP5YE.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "77482" - }, - "appliesTo" : [ ] - }, - "NWRPWAZ545BCP5YE.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "NWRPWAZ545BCP5YE.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "NWRPWAZ545BCP5YE.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "NWRPWAZ545BCP5YE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NWRPWAZ545BCP5YE.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "NWRPWAZ545BCP5YE.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "148346" - }, - "appliesTo" : [ ] - }, - "NWRPWAZ545BCP5YE.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "NWRPWAZ545BCP5YE.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "NWRPWAZ545BCP5YE.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "NWRPWAZ545BCP5YE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NWRPWAZ545BCP5YE.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "NWRPWAZ545BCP5YE.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.0060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "NWRPWAZ545BCP5YE.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "NWRPWAZ545BCP5YE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NWRPWAZ545BCP5YE.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "NWRPWAZ545BCP5YE.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8580000000" - }, - "appliesTo" : [ ] - }, - "NWRPWAZ545BCP5YE.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "NWRPWAZ545BCP5YE.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "75109" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "44BFC6CSKFS3KEJP" : { - "44BFC6CSKFS3KEJP.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "44BFC6CSKFS3KEJP", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "44BFC6CSKFS3KEJP.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "44BFC6CSKFS3KEJP.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3553" - }, - "appliesTo" : [ ] - }, - "44BFC6CSKFS3KEJP.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "44BFC6CSKFS3KEJP.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "44BFC6CSKFS3KEJP.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "44BFC6CSKFS3KEJP", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "44BFC6CSKFS3KEJP.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "44BFC6CSKFS3KEJP.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6964" - }, - "appliesTo" : [ ] - }, - "44BFC6CSKFS3KEJP.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "44BFC6CSKFS3KEJP.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "44BFC6CSKFS3KEJP.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "44BFC6CSKFS3KEJP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "44BFC6CSKFS3KEJP.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "44BFC6CSKFS3KEJP.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "44BFC6CSKFS3KEJP.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "44BFC6CSKFS3KEJP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "44BFC6CSKFS3KEJP.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "44BFC6CSKFS3KEJP.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "44BFC6CSKFS3KEJP.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "44BFC6CSKFS3KEJP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "44BFC6CSKFS3KEJP.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "44BFC6CSKFS3KEJP.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8056" - }, - "appliesTo" : [ ] - }, - "44BFC6CSKFS3KEJP.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "44BFC6CSKFS3KEJP.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "44BFC6CSKFS3KEJP.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "44BFC6CSKFS3KEJP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "44BFC6CSKFS3KEJP.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "44BFC6CSKFS3KEJP.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16586" - }, - "appliesTo" : [ ] - }, - "44BFC6CSKFS3KEJP.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "44BFC6CSKFS3KEJP.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "44BFC6CSKFS3KEJP.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "44BFC6CSKFS3KEJP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "44BFC6CSKFS3KEJP.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "44BFC6CSKFS3KEJP.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4110" - }, - "appliesTo" : [ ] - }, - "44BFC6CSKFS3KEJP.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "44BFC6CSKFS3KEJP.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "44BFC6CSKFS3KEJP.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "44BFC6CSKFS3KEJP", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "44BFC6CSKFS3KEJP.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "44BFC6CSKFS3KEJP.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7379" - }, - "appliesTo" : [ ] - }, - "44BFC6CSKFS3KEJP.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "44BFC6CSKFS3KEJP.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "44BFC6CSKFS3KEJP.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "44BFC6CSKFS3KEJP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "44BFC6CSKFS3KEJP.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "44BFC6CSKFS3KEJP.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "44BFC6CSKFS3KEJP.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "44BFC6CSKFS3KEJP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "44BFC6CSKFS3KEJP.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "44BFC6CSKFS3KEJP.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8462" - }, - "appliesTo" : [ ] - }, - "44BFC6CSKFS3KEJP.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "44BFC6CSKFS3KEJP.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "44BFC6CSKFS3KEJP.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "44BFC6CSKFS3KEJP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "44BFC6CSKFS3KEJP.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "44BFC6CSKFS3KEJP.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "44BFC6CSKFS3KEJP.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "44BFC6CSKFS3KEJP", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "44BFC6CSKFS3KEJP.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "44BFC6CSKFS3KEJP.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13834" - }, - "appliesTo" : [ ] - }, - "44BFC6CSKFS3KEJP.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "44BFC6CSKFS3KEJP.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "ZKNV3YNZ7ETKWSWB" : { - "ZKNV3YNZ7ETKWSWB.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ZKNV3YNZ7ETKWSWB", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "ZKNV3YNZ7ETKWSWB.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ZKNV3YNZ7ETKWSWB.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "715" - }, - "appliesTo" : [ ] - }, - "ZKNV3YNZ7ETKWSWB.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ZKNV3YNZ7ETKWSWB.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZKNV3YNZ7ETKWSWB.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ZKNV3YNZ7ETKWSWB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZKNV3YNZ7ETKWSWB.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ZKNV3YNZ7ETKWSWB.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "398" - }, - "appliesTo" : [ ] - }, - "ZKNV3YNZ7ETKWSWB.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ZKNV3YNZ7ETKWSWB.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0455000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZKNV3YNZ7ETKWSWB.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ZKNV3YNZ7ETKWSWB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZKNV3YNZ7ETKWSWB.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ZKNV3YNZ7ETKWSWB.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0941000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZKNV3YNZ7ETKWSWB.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ZKNV3YNZ7ETKWSWB", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "ZKNV3YNZ7ETKWSWB.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ZKNV3YNZ7ETKWSWB.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "929" - }, - "appliesTo" : [ ] - }, - "ZKNV3YNZ7ETKWSWB.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ZKNV3YNZ7ETKWSWB.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0353000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZKNV3YNZ7ETKWSWB.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ZKNV3YNZ7ETKWSWB", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "ZKNV3YNZ7ETKWSWB.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ZKNV3YNZ7ETKWSWB.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "856" - }, - "appliesTo" : [ ] - }, - "ZKNV3YNZ7ETKWSWB.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ZKNV3YNZ7ETKWSWB.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0326000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZKNV3YNZ7ETKWSWB.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ZKNV3YNZ7ETKWSWB", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "ZKNV3YNZ7ETKWSWB.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ZKNV3YNZ7ETKWSWB.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1835" - }, - "appliesTo" : [ ] - }, - "ZKNV3YNZ7ETKWSWB.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ZKNV3YNZ7ETKWSWB.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZKNV3YNZ7ETKWSWB.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ZKNV3YNZ7ETKWSWB", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "ZKNV3YNZ7ETKWSWB.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ZKNV3YNZ7ETKWSWB.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0741000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZKNV3YNZ7ETKWSWB.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "ZKNV3YNZ7ETKWSWB", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "ZKNV3YNZ7ETKWSWB.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "ZKNV3YNZ7ETKWSWB.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0681000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZKNV3YNZ7ETKWSWB.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ZKNV3YNZ7ETKWSWB", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "ZKNV3YNZ7ETKWSWB.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ZKNV3YNZ7ETKWSWB.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1653" - }, - "appliesTo" : [ ] - }, - "ZKNV3YNZ7ETKWSWB.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ZKNV3YNZ7ETKWSWB.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZKNV3YNZ7ETKWSWB.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ZKNV3YNZ7ETKWSWB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZKNV3YNZ7ETKWSWB.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ZKNV3YNZ7ETKWSWB.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ZKNV3YNZ7ETKWSWB.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ZKNV3YNZ7ETKWSWB.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "786" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZKNV3YNZ7ETKWSWB.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ZKNV3YNZ7ETKWSWB", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "ZKNV3YNZ7ETKWSWB.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ZKNV3YNZ7ETKWSWB.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "362" - }, - "appliesTo" : [ ] - }, - "ZKNV3YNZ7ETKWSWB.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ZKNV3YNZ7ETKWSWB.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0414000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZKNV3YNZ7ETKWSWB.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ZKNV3YNZ7ETKWSWB", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "ZKNV3YNZ7ETKWSWB.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ZKNV3YNZ7ETKWSWB.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0855000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "3RUU5T58T7XAFAAF" : { - "3RUU5T58T7XAFAAF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "3RUU5T58T7XAFAAF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3RUU5T58T7XAFAAF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "3RUU5T58T7XAFAAF.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4900000000" - }, - "appliesTo" : [ ] - }, - "3RUU5T58T7XAFAAF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "3RUU5T58T7XAFAAF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10880" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3RUU5T58T7XAFAAF.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "3RUU5T58T7XAFAAF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3RUU5T58T7XAFAAF.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "3RUU5T58T7XAFAAF.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3RUU5T58T7XAFAAF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "3RUU5T58T7XAFAAF", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "3RUU5T58T7XAFAAF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "3RUU5T58T7XAFAAF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7220" - }, - "appliesTo" : [ ] - }, - "3RUU5T58T7XAFAAF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "3RUU5T58T7XAFAAF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3RUU5T58T7XAFAAF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "3RUU5T58T7XAFAAF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3RUU5T58T7XAFAAF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "3RUU5T58T7XAFAAF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "3RUU5T58T7XAFAAF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "3RUU5T58T7XAFAAF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22331" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3RUU5T58T7XAFAAF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "3RUU5T58T7XAFAAF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3RUU5T58T7XAFAAF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "3RUU5T58T7XAFAAF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12398" - }, - "appliesTo" : [ ] - }, - "3RUU5T58T7XAFAAF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "3RUU5T58T7XAFAAF.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "MSN4QHE8TBV8XBD2" : { - "MSN4QHE8TBV8XBD2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "MSN4QHE8TBV8XBD2", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "MSN4QHE8TBV8XBD2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "MSN4QHE8TBV8XBD2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2404" - }, - "appliesTo" : [ ] - }, - "MSN4QHE8TBV8XBD2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "MSN4QHE8TBV8XBD2.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MSN4QHE8TBV8XBD2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "MSN4QHE8TBV8XBD2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MSN4QHE8TBV8XBD2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "MSN4QHE8TBV8XBD2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1086" - }, - "appliesTo" : [ ] - }, - "MSN4QHE8TBV8XBD2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "MSN4QHE8TBV8XBD2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MSN4QHE8TBV8XBD2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "MSN4QHE8TBV8XBD2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MSN4QHE8TBV8XBD2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "MSN4QHE8TBV8XBD2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "MSN4QHE8TBV8XBD2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "MSN4QHE8TBV8XBD2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5002" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MSN4QHE8TBV8XBD2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "MSN4QHE8TBV8XBD2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MSN4QHE8TBV8XBD2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "MSN4QHE8TBV8XBD2.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MSN4QHE8TBV8XBD2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "MSN4QHE8TBV8XBD2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MSN4QHE8TBV8XBD2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "MSN4QHE8TBV8XBD2.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1400000000" - }, - "appliesTo" : [ ] - }, - "MSN4QHE8TBV8XBD2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "MSN4QHE8TBV8XBD2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1651" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "BQ5EKEX4RRBCH5MY" : { - "BQ5EKEX4RRBCH5MY.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "BQ5EKEX4RRBCH5MY", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BQ5EKEX4RRBCH5MY.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "BQ5EKEX4RRBCH5MY.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BQ5EKEX4RRBCH5MY.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "BQ5EKEX4RRBCH5MY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BQ5EKEX4RRBCH5MY.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "BQ5EKEX4RRBCH5MY.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3100000000" - }, - "appliesTo" : [ ] - }, - "BQ5EKEX4RRBCH5MY.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "BQ5EKEX4RRBCH5MY.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2717" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BQ5EKEX4RRBCH5MY.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "BQ5EKEX4RRBCH5MY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BQ5EKEX4RRBCH5MY.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "BQ5EKEX4RRBCH5MY.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BQ5EKEX4RRBCH5MY.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "BQ5EKEX4RRBCH5MY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BQ5EKEX4RRBCH5MY.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "BQ5EKEX4RRBCH5MY.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5358" - }, - "appliesTo" : [ ] - }, - "BQ5EKEX4RRBCH5MY.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "BQ5EKEX4RRBCH5MY.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BQ5EKEX4RRBCH5MY.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "BQ5EKEX4RRBCH5MY", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BQ5EKEX4RRBCH5MY.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "BQ5EKEX4RRBCH5MY.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10465" - }, - "appliesTo" : [ ] - }, - "BQ5EKEX4RRBCH5MY.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "BQ5EKEX4RRBCH5MY.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BQ5EKEX4RRBCH5MY.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "BQ5EKEX4RRBCH5MY", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BQ5EKEX4RRBCH5MY.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "BQ5EKEX4RRBCH5MY.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1945" - }, - "appliesTo" : [ ] - }, - "BQ5EKEX4RRBCH5MY.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "BQ5EKEX4RRBCH5MY.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BQ5EKEX4RRBCH5MY.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "BQ5EKEX4RRBCH5MY", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BQ5EKEX4RRBCH5MY.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "BQ5EKEX4RRBCH5MY.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5338" - }, - "appliesTo" : [ ] - }, - "BQ5EKEX4RRBCH5MY.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "BQ5EKEX4RRBCH5MY.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BQ5EKEX4RRBCH5MY.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "BQ5EKEX4RRBCH5MY", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BQ5EKEX4RRBCH5MY.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "BQ5EKEX4RRBCH5MY.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BQ5EKEX4RRBCH5MY.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "BQ5EKEX4RRBCH5MY", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BQ5EKEX4RRBCH5MY.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "BQ5EKEX4RRBCH5MY.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1490000000" - }, - "appliesTo" : [ ] - }, - "BQ5EKEX4RRBCH5MY.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "BQ5EKEX4RRBCH5MY.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3912" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BQ5EKEX4RRBCH5MY.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "BQ5EKEX4RRBCH5MY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "BQ5EKEX4RRBCH5MY.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "BQ5EKEX4RRBCH5MY.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "BQ5EKEX4RRBCH5MY.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "BQ5EKEX4RRBCH5MY.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3813" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BQ5EKEX4RRBCH5MY.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "BQ5EKEX4RRBCH5MY", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BQ5EKEX4RRBCH5MY.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "BQ5EKEX4RRBCH5MY.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "BQ5EKEX4RRBCH5MY.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "BQ5EKEX4RRBCH5MY.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7354" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "QBBBEFQPVEBWTH4F" : { - "QBBBEFQPVEBWTH4F.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "QBBBEFQPVEBWTH4F", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "QBBBEFQPVEBWTH4F.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "QBBBEFQPVEBWTH4F.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QBBBEFQPVEBWTH4F.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QBBBEFQPVEBWTH4F", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QBBBEFQPVEBWTH4F.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QBBBEFQPVEBWTH4F.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12586" - }, - "appliesTo" : [ ] - }, - "QBBBEFQPVEBWTH4F.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QBBBEFQPVEBWTH4F.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QBBBEFQPVEBWTH4F.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QBBBEFQPVEBWTH4F", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QBBBEFQPVEBWTH4F.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QBBBEFQPVEBWTH4F.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5480" - }, - "appliesTo" : [ ] - }, - "QBBBEFQPVEBWTH4F.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QBBBEFQPVEBWTH4F.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QBBBEFQPVEBWTH4F.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "QBBBEFQPVEBWTH4F", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "QBBBEFQPVEBWTH4F.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "QBBBEFQPVEBWTH4F.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18385" - }, - "appliesTo" : [ ] - }, - "QBBBEFQPVEBWTH4F.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "QBBBEFQPVEBWTH4F.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QBBBEFQPVEBWTH4F.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "QBBBEFQPVEBWTH4F", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "QBBBEFQPVEBWTH4F.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "QBBBEFQPVEBWTH4F.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9828" - }, - "appliesTo" : [ ] - }, - "QBBBEFQPVEBWTH4F.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "QBBBEFQPVEBWTH4F.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QBBBEFQPVEBWTH4F.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "QBBBEFQPVEBWTH4F", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QBBBEFQPVEBWTH4F.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "QBBBEFQPVEBWTH4F.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QBBBEFQPVEBWTH4F.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "QBBBEFQPVEBWTH4F.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8302" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QBBBEFQPVEBWTH4F.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "QBBBEFQPVEBWTH4F", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QBBBEFQPVEBWTH4F.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "QBBBEFQPVEBWTH4F.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5470000000" - }, - "appliesTo" : [ ] - }, - "QBBBEFQPVEBWTH4F.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "QBBBEFQPVEBWTH4F.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3655" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QBBBEFQPVEBWTH4F.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "QBBBEFQPVEBWTH4F", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QBBBEFQPVEBWTH4F.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "QBBBEFQPVEBWTH4F.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QBBBEFQPVEBWTH4F.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QBBBEFQPVEBWTH4F", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QBBBEFQPVEBWTH4F.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QBBBEFQPVEBWTH4F.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QBBBEFQPVEBWTH4F.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QBBBEFQPVEBWTH4F", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QBBBEFQPVEBWTH4F.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QBBBEFQPVEBWTH4F.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3640" - }, - "appliesTo" : [ ] - }, - "QBBBEFQPVEBWTH4F.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QBBBEFQPVEBWTH4F.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QBBBEFQPVEBWTH4F.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QBBBEFQPVEBWTH4F", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QBBBEFQPVEBWTH4F.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QBBBEFQPVEBWTH4F.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QBBBEFQPVEBWTH4F.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QBBBEFQPVEBWTH4F.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6752" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "KNZCWW7PZRYSMJ6S" : { - "KNZCWW7PZRYSMJ6S.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "KNZCWW7PZRYSMJ6S", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "KNZCWW7PZRYSMJ6S.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "KNZCWW7PZRYSMJ6S.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2975" - }, - "appliesTo" : [ ] - }, - "KNZCWW7PZRYSMJ6S.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "KNZCWW7PZRYSMJ6S.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KNZCWW7PZRYSMJ6S.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "KNZCWW7PZRYSMJ6S", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "KNZCWW7PZRYSMJ6S.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "KNZCWW7PZRYSMJ6S.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1367" - }, - "appliesTo" : [ ] - }, - "KNZCWW7PZRYSMJ6S.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "KNZCWW7PZRYSMJ6S.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KNZCWW7PZRYSMJ6S.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "KNZCWW7PZRYSMJ6S", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "KNZCWW7PZRYSMJ6S.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "KNZCWW7PZRYSMJ6S.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1516" - }, - "appliesTo" : [ ] - }, - "KNZCWW7PZRYSMJ6S.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "KNZCWW7PZRYSMJ6S.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KNZCWW7PZRYSMJ6S.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "KNZCWW7PZRYSMJ6S", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "KNZCWW7PZRYSMJ6S.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "KNZCWW7PZRYSMJ6S.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "KNZCWW7PZRYSMJ6S.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "KNZCWW7PZRYSMJ6S.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1248" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KNZCWW7PZRYSMJ6S.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "KNZCWW7PZRYSMJ6S", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "KNZCWW7PZRYSMJ6S.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "KNZCWW7PZRYSMJ6S.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KNZCWW7PZRYSMJ6S.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "KNZCWW7PZRYSMJ6S", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "KNZCWW7PZRYSMJ6S.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "KNZCWW7PZRYSMJ6S.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2602" - }, - "appliesTo" : [ ] - }, - "KNZCWW7PZRYSMJ6S.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "KNZCWW7PZRYSMJ6S.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KNZCWW7PZRYSMJ6S.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "KNZCWW7PZRYSMJ6S", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "KNZCWW7PZRYSMJ6S.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "KNZCWW7PZRYSMJ6S.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0690000000" - }, - "appliesTo" : [ ] - }, - "KNZCWW7PZRYSMJ6S.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "KNZCWW7PZRYSMJ6S.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "665" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KNZCWW7PZRYSMJ6S.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "KNZCWW7PZRYSMJ6S", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "KNZCWW7PZRYSMJ6S.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "KNZCWW7PZRYSMJ6S.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KNZCWW7PZRYSMJ6S.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "KNZCWW7PZRYSMJ6S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KNZCWW7PZRYSMJ6S.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "KNZCWW7PZRYSMJ6S.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0780000000" - }, - "appliesTo" : [ ] - }, - "KNZCWW7PZRYSMJ6S.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "KNZCWW7PZRYSMJ6S.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "741" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KNZCWW7PZRYSMJ6S.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "KNZCWW7PZRYSMJ6S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KNZCWW7PZRYSMJ6S.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "KNZCWW7PZRYSMJ6S.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KNZCWW7PZRYSMJ6S.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "KNZCWW7PZRYSMJ6S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KNZCWW7PZRYSMJ6S.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "KNZCWW7PZRYSMJ6S.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1398" - }, - "appliesTo" : [ ] - }, - "KNZCWW7PZRYSMJ6S.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "KNZCWW7PZRYSMJ6S.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KNZCWW7PZRYSMJ6S.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "KNZCWW7PZRYSMJ6S", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "KNZCWW7PZRYSMJ6S.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "KNZCWW7PZRYSMJ6S.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "2E6TFSUWJVXJ9TK8" : { - "2E6TFSUWJVXJ9TK8.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "2E6TFSUWJVXJ9TK8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2E6TFSUWJVXJ9TK8.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "2E6TFSUWJVXJ9TK8.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2E6TFSUWJVXJ9TK8.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "2E6TFSUWJVXJ9TK8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2E6TFSUWJVXJ9TK8.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "2E6TFSUWJVXJ9TK8.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15762" - }, - "appliesTo" : [ ] - }, - "2E6TFSUWJVXJ9TK8.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "2E6TFSUWJVXJ9TK8.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2E6TFSUWJVXJ9TK8.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "2E6TFSUWJVXJ9TK8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2E6TFSUWJVXJ9TK8.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "2E6TFSUWJVXJ9TK8.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29330" - }, - "appliesTo" : [ ] - }, - "2E6TFSUWJVXJ9TK8.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "2E6TFSUWJVXJ9TK8.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2E6TFSUWJVXJ9TK8.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "2E6TFSUWJVXJ9TK8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2E6TFSUWJVXJ9TK8.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "2E6TFSUWJVXJ9TK8.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8042" - }, - "appliesTo" : [ ] - }, - "2E6TFSUWJVXJ9TK8.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "2E6TFSUWJVXJ9TK8.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2E6TFSUWJVXJ9TK8.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "2E6TFSUWJVXJ9TK8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2E6TFSUWJVXJ9TK8.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "2E6TFSUWJVXJ9TK8.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2E6TFSUWJVXJ9TK8.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "2E6TFSUWJVXJ9TK8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2E6TFSUWJVXJ9TK8.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "2E6TFSUWJVXJ9TK8.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5940000000" - }, - "appliesTo" : [ ] - }, - "2E6TFSUWJVXJ9TK8.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "2E6TFSUWJVXJ9TK8.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15601" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "WE43EAHVMJU4ZVBT" : { - "WE43EAHVMJU4ZVBT.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "WE43EAHVMJU4ZVBT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WE43EAHVMJU4ZVBT.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "WE43EAHVMJU4ZVBT.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WE43EAHVMJU4ZVBT.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "WE43EAHVMJU4ZVBT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WE43EAHVMJU4ZVBT.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "WE43EAHVMJU4ZVBT.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4610000000" - }, - "appliesTo" : [ ] - }, - "WE43EAHVMJU4ZVBT.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "WE43EAHVMJU4ZVBT.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4039" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WE43EAHVMJU4ZVBT.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "WE43EAHVMJU4ZVBT", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WE43EAHVMJU4ZVBT.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "WE43EAHVMJU4ZVBT.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "WE43EAHVMJU4ZVBT.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "WE43EAHVMJU4ZVBT", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WE43EAHVMJU4ZVBT.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "WE43EAHVMJU4ZVBT.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22011" - }, - "appliesTo" : [ ] - }, - "WE43EAHVMJU4ZVBT.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "WE43EAHVMJU4ZVBT.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WE43EAHVMJU4ZVBT.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "WE43EAHVMJU4ZVBT", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WE43EAHVMJU4ZVBT.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "WE43EAHVMJU4ZVBT.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3891" - }, - "appliesTo" : [ ] - }, - "WE43EAHVMJU4ZVBT.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "WE43EAHVMJU4ZVBT.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WE43EAHVMJU4ZVBT.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "WE43EAHVMJU4ZVBT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WE43EAHVMJU4ZVBT.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "WE43EAHVMJU4ZVBT.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8032" - }, - "appliesTo" : [ ] - }, - "WE43EAHVMJU4ZVBT.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "WE43EAHVMJU4ZVBT.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WE43EAHVMJU4ZVBT.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "WE43EAHVMJU4ZVBT", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WE43EAHVMJU4ZVBT.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "WE43EAHVMJU4ZVBT.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21254" - }, - "appliesTo" : [ ] - }, - "WE43EAHVMJU4ZVBT.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "WE43EAHVMJU4ZVBT.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WE43EAHVMJU4ZVBT.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "WE43EAHVMJU4ZVBT", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WE43EAHVMJU4ZVBT.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "WE43EAHVMJU4ZVBT.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "WE43EAHVMJU4ZVBT.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "WE43EAHVMJU4ZVBT", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WE43EAHVMJU4ZVBT.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "WE43EAHVMJU4ZVBT.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WE43EAHVMJU4ZVBT.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "WE43EAHVMJU4ZVBT", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WE43EAHVMJU4ZVBT.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "WE43EAHVMJU4ZVBT.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "WE43EAHVMJU4ZVBT.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "WE43EAHVMJU4ZVBT.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7743" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WE43EAHVMJU4ZVBT.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "WE43EAHVMJU4ZVBT", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WE43EAHVMJU4ZVBT.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "WE43EAHVMJU4ZVBT.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4210000000" - }, - "appliesTo" : [ ] - }, - "WE43EAHVMJU4ZVBT.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "WE43EAHVMJU4ZVBT.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11052" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WE43EAHVMJU4ZVBT.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "WE43EAHVMJU4ZVBT", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WE43EAHVMJU4ZVBT.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "WE43EAHVMJU4ZVBT.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10749" - }, - "appliesTo" : [ ] - }, - "WE43EAHVMJU4ZVBT.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "WE43EAHVMJU4ZVBT.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "KTQ9XV2KF6MVX7PJ" : { - "KTQ9XV2KF6MVX7PJ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "KTQ9XV2KF6MVX7PJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KTQ9XV2KF6MVX7PJ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "KTQ9XV2KF6MVX7PJ.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9278000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KTQ9XV2KF6MVX7PJ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "KTQ9XV2KF6MVX7PJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KTQ9XV2KF6MVX7PJ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "KTQ9XV2KF6MVX7PJ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3908" - }, - "appliesTo" : [ ] - }, - "KTQ9XV2KF6MVX7PJ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "KTQ9XV2KF6MVX7PJ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4391000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KTQ9XV2KF6MVX7PJ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "KTQ9XV2KF6MVX7PJ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "KTQ9XV2KF6MVX7PJ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "KTQ9XV2KF6MVX7PJ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3835000000" - }, - "appliesTo" : [ ] - }, - "KTQ9XV2KF6MVX7PJ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "KTQ9XV2KF6MVX7PJ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3422" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KTQ9XV2KF6MVX7PJ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "KTQ9XV2KF6MVX7PJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KTQ9XV2KF6MVX7PJ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "KTQ9XV2KF6MVX7PJ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7606" - }, - "appliesTo" : [ ] - }, - "KTQ9XV2KF6MVX7PJ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "KTQ9XV2KF6MVX7PJ.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KTQ9XV2KF6MVX7PJ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "KTQ9XV2KF6MVX7PJ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "KTQ9XV2KF6MVX7PJ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "KTQ9XV2KF6MVX7PJ.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8111000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KTQ9XV2KF6MVX7PJ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "KTQ9XV2KF6MVX7PJ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "KTQ9XV2KF6MVX7PJ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "KTQ9XV2KF6MVX7PJ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8481" - }, - "appliesTo" : [ ] - }, - "KTQ9XV2KF6MVX7PJ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "KTQ9XV2KF6MVX7PJ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3223000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KTQ9XV2KF6MVX7PJ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "KTQ9XV2KF6MVX7PJ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "KTQ9XV2KF6MVX7PJ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "KTQ9XV2KF6MVX7PJ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KTQ9XV2KF6MVX7PJ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "KTQ9XV2KF6MVX7PJ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "KTQ9XV2KF6MVX7PJ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "KTQ9XV2KF6MVX7PJ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16628" - }, - "appliesTo" : [ ] - }, - "KTQ9XV2KF6MVX7PJ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "KTQ9XV2KF6MVX7PJ.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KTQ9XV2KF6MVX7PJ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "KTQ9XV2KF6MVX7PJ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "KTQ9XV2KF6MVX7PJ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "KTQ9XV2KF6MVX7PJ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13983" - }, - "appliesTo" : [ ] - }, - "KTQ9XV2KF6MVX7PJ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "KTQ9XV2KF6MVX7PJ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KTQ9XV2KF6MVX7PJ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "KTQ9XV2KF6MVX7PJ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "KTQ9XV2KF6MVX7PJ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "KTQ9XV2KF6MVX7PJ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7012000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KTQ9XV2KF6MVX7PJ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "KTQ9XV2KF6MVX7PJ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "KTQ9XV2KF6MVX7PJ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "KTQ9XV2KF6MVX7PJ.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "KTQ9XV2KF6MVX7PJ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "KTQ9XV2KF6MVX7PJ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6651" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KTQ9XV2KF6MVX7PJ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "KTQ9XV2KF6MVX7PJ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "KTQ9XV2KF6MVX7PJ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "KTQ9XV2KF6MVX7PJ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7421" - }, - "appliesTo" : [ ] - }, - "KTQ9XV2KF6MVX7PJ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "KTQ9XV2KF6MVX7PJ.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "A633GX9XTPAPFK68" : { - "A633GX9XTPAPFK68.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "A633GX9XTPAPFK68", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "A633GX9XTPAPFK68.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "A633GX9XTPAPFK68.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "42994" - }, - "appliesTo" : [ ] - }, - "A633GX9XTPAPFK68.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "A633GX9XTPAPFK68.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "A633GX9XTPAPFK68.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "A633GX9XTPAPFK68", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "A633GX9XTPAPFK68.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "A633GX9XTPAPFK68.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "88044" - }, - "appliesTo" : [ ] - }, - "A633GX9XTPAPFK68.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "A633GX9XTPAPFK68.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "A633GX9XTPAPFK68.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "A633GX9XTPAPFK68", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "A633GX9XTPAPFK68.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "A633GX9XTPAPFK68.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "A633GX9XTPAPFK68.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "A633GX9XTPAPFK68.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "85017" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "A633GX9XTPAPFK68.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "A633GX9XTPAPFK68", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "A633GX9XTPAPFK68.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "A633GX9XTPAPFK68.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "A633GX9XTPAPFK68.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "A633GX9XTPAPFK68", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "A633GX9XTPAPFK68.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "A633GX9XTPAPFK68.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "A633GX9XTPAPFK68.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "A633GX9XTPAPFK68", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A633GX9XTPAPFK68.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "A633GX9XTPAPFK68.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8440000000" - }, - "appliesTo" : [ ] - }, - "A633GX9XTPAPFK68.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "A633GX9XTPAPFK68.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16155" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "A633GX9XTPAPFK68.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "A633GX9XTPAPFK68", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A633GX9XTPAPFK68.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "A633GX9XTPAPFK68.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32128" - }, - "appliesTo" : [ ] - }, - "A633GX9XTPAPFK68.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "A633GX9XTPAPFK68.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "A633GX9XTPAPFK68.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "A633GX9XTPAPFK68", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "A633GX9XTPAPFK68.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "A633GX9XTPAPFK68.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15565" - }, - "appliesTo" : [ ] - }, - "A633GX9XTPAPFK68.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "A633GX9XTPAPFK68.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "A633GX9XTPAPFK68.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "A633GX9XTPAPFK68", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "A633GX9XTPAPFK68.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "A633GX9XTPAPFK68.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "A633GX9XTPAPFK68.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "A633GX9XTPAPFK68", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "A633GX9XTPAPFK68.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "A633GX9XTPAPFK68.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "A633GX9XTPAPFK68.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "A633GX9XTPAPFK68.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30972" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "A633GX9XTPAPFK68.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "A633GX9XTPAPFK68", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A633GX9XTPAPFK68.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "A633GX9XTPAPFK68.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "A633GX9XTPAPFK68.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "A633GX9XTPAPFK68", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "A633GX9XTPAPFK68.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "A633GX9XTPAPFK68.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "44208" - }, - "appliesTo" : [ ] - }, - "A633GX9XTPAPFK68.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "A633GX9XTPAPFK68.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "WSBQ3GQCNJDRXWWZ" : { - "WSBQ3GQCNJDRXWWZ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "WSBQ3GQCNJDRXWWZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WSBQ3GQCNJDRXWWZ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "WSBQ3GQCNJDRXWWZ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WSBQ3GQCNJDRXWWZ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "WSBQ3GQCNJDRXWWZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WSBQ3GQCNJDRXWWZ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "WSBQ3GQCNJDRXWWZ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2024000000" - }, - "appliesTo" : [ ] - }, - "WSBQ3GQCNJDRXWWZ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "WSBQ3GQCNJDRXWWZ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1773" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WSBQ3GQCNJDRXWWZ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "WSBQ3GQCNJDRXWWZ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "WSBQ3GQCNJDRXWWZ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "WSBQ3GQCNJDRXWWZ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "WSBQ3GQCNJDRXWWZ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "WSBQ3GQCNJDRXWWZ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3013" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WSBQ3GQCNJDRXWWZ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "WSBQ3GQCNJDRXWWZ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "WSBQ3GQCNJDRXWWZ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "WSBQ3GQCNJDRXWWZ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3524" - }, - "appliesTo" : [ ] - }, - "WSBQ3GQCNJDRXWWZ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "WSBQ3GQCNJDRXWWZ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1341000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WSBQ3GQCNJDRXWWZ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "WSBQ3GQCNJDRXWWZ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "WSBQ3GQCNJDRXWWZ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "WSBQ3GQCNJDRXWWZ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3075" - }, - "appliesTo" : [ ] - }, - "WSBQ3GQCNJDRXWWZ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "WSBQ3GQCNJDRXWWZ.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WSBQ3GQCNJDRXWWZ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "WSBQ3GQCNJDRXWWZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WSBQ3GQCNJDRXWWZ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "WSBQ3GQCNJDRXWWZ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3475" - }, - "appliesTo" : [ ] - }, - "WSBQ3GQCNJDRXWWZ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "WSBQ3GQCNJDRXWWZ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WSBQ3GQCNJDRXWWZ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "WSBQ3GQCNJDRXWWZ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "WSBQ3GQCNJDRXWWZ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "WSBQ3GQCNJDRXWWZ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5781" - }, - "appliesTo" : [ ] - }, - "WSBQ3GQCNJDRXWWZ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "WSBQ3GQCNJDRXWWZ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WSBQ3GQCNJDRXWWZ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "WSBQ3GQCNJDRXWWZ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "WSBQ3GQCNJDRXWWZ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "WSBQ3GQCNJDRXWWZ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2519000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "WSBQ3GQCNJDRXWWZ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "WSBQ3GQCNJDRXWWZ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "WSBQ3GQCNJDRXWWZ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "WSBQ3GQCNJDRXWWZ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2896000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WSBQ3GQCNJDRXWWZ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "WSBQ3GQCNJDRXWWZ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "WSBQ3GQCNJDRXWWZ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "WSBQ3GQCNJDRXWWZ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6907" - }, - "appliesTo" : [ ] - }, - "WSBQ3GQCNJDRXWWZ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "WSBQ3GQCNJDRXWWZ.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WSBQ3GQCNJDRXWWZ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "WSBQ3GQCNJDRXWWZ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "WSBQ3GQCNJDRXWWZ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "WSBQ3GQCNJDRXWWZ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3696000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "WSBQ3GQCNJDRXWWZ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "WSBQ3GQCNJDRXWWZ", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "WSBQ3GQCNJDRXWWZ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "WSBQ3GQCNJDRXWWZ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1537" - }, - "appliesTo" : [ ] - }, - "WSBQ3GQCNJDRXWWZ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "WSBQ3GQCNJDRXWWZ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "355G43EUBXD5NEFF" : { - "355G43EUBXD5NEFF.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "355G43EUBXD5NEFF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "355G43EUBXD5NEFF.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "355G43EUBXD5NEFF.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7202000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "355G43EUBXD5NEFF.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "355G43EUBXD5NEFF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "355G43EUBXD5NEFF.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "355G43EUBXD5NEFF.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7329" - }, - "appliesTo" : [ ] - }, - "355G43EUBXD5NEFF.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "355G43EUBXD5NEFF.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8367000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "355G43EUBXD5NEFF.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "355G43EUBXD5NEFF", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "355G43EUBXD5NEFF.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "355G43EUBXD5NEFF.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "36869" - }, - "appliesTo" : [ ] - }, - "355G43EUBXD5NEFF.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "355G43EUBXD5NEFF.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "355G43EUBXD5NEFF.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "355G43EUBXD5NEFF", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "355G43EUBXD5NEFF.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "355G43EUBXD5NEFF.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5919000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "355G43EUBXD5NEFF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "355G43EUBXD5NEFF", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "355G43EUBXD5NEFF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "355G43EUBXD5NEFF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6794" - }, - "appliesTo" : [ ] - }, - "355G43EUBXD5NEFF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "355G43EUBXD5NEFF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7756000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "355G43EUBXD5NEFF.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "355G43EUBXD5NEFF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "355G43EUBXD5NEFF.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "355G43EUBXD5NEFF.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14494" - }, - "appliesTo" : [ ] - }, - "355G43EUBXD5NEFF.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "355G43EUBXD5NEFF.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "355G43EUBXD5NEFF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "355G43EUBXD5NEFF", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "355G43EUBXD5NEFF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "355G43EUBXD5NEFF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33961" - }, - "appliesTo" : [ ] - }, - "355G43EUBXD5NEFF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "355G43EUBXD5NEFF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "355G43EUBXD5NEFF.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "355G43EUBXD5NEFF", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "355G43EUBXD5NEFF.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "355G43EUBXD5NEFF.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3751000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "355G43EUBXD5NEFF.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "355G43EUBXD5NEFF", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "355G43EUBXD5NEFF.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "355G43EUBXD5NEFF.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "355G43EUBXD5NEFF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "355G43EUBXD5NEFF", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "355G43EUBXD5NEFF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "355G43EUBXD5NEFF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13445" - }, - "appliesTo" : [ ] - }, - "355G43EUBXD5NEFF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "355G43EUBXD5NEFF.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "355G43EUBXD5NEFF.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "355G43EUBXD5NEFF", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "355G43EUBXD5NEFF.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "355G43EUBXD5NEFF.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18613" - }, - "appliesTo" : [ ] - }, - "355G43EUBXD5NEFF.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "355G43EUBXD5NEFF.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7083000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "355G43EUBXD5NEFF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "355G43EUBXD5NEFF", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "355G43EUBXD5NEFF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "355G43EUBXD5NEFF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17447" - }, - "appliesTo" : [ ] - }, - "355G43EUBXD5NEFF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "355G43EUBXD5NEFF.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6639000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "TDQNZBUHCYXTFDUS" : { - "TDQNZBUHCYXTFDUS.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TDQNZBUHCYXTFDUS", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "TDQNZBUHCYXTFDUS.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TDQNZBUHCYXTFDUS.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1430000000" - }, - "appliesTo" : [ ] - }, - "TDQNZBUHCYXTFDUS.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TDQNZBUHCYXTFDUS.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "926" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TDQNZBUHCYXTFDUS.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TDQNZBUHCYXTFDUS", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "TDQNZBUHCYXTFDUS.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TDQNZBUHCYXTFDUS.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4650" - }, - "appliesTo" : [ ] - }, - "TDQNZBUHCYXTFDUS.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TDQNZBUHCYXTFDUS.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TDQNZBUHCYXTFDUS.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "TDQNZBUHCYXTFDUS", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "TDQNZBUHCYXTFDUS.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "TDQNZBUHCYXTFDUS.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1350000000" - }, - "appliesTo" : [ ] - }, - "TDQNZBUHCYXTFDUS.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "TDQNZBUHCYXTFDUS.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2500" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TDQNZBUHCYXTFDUS.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TDQNZBUHCYXTFDUS", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "TDQNZBUHCYXTFDUS.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TDQNZBUHCYXTFDUS.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2149" - }, - "appliesTo" : [ ] - }, - "TDQNZBUHCYXTFDUS.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TDQNZBUHCYXTFDUS.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TDQNZBUHCYXTFDUS.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "TDQNZBUHCYXTFDUS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TDQNZBUHCYXTFDUS.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "TDQNZBUHCYXTFDUS.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2311" - }, - "appliesTo" : [ ] - }, - "TDQNZBUHCYXTFDUS.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "TDQNZBUHCYXTFDUS.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TDQNZBUHCYXTFDUS.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "TDQNZBUHCYXTFDUS", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "TDQNZBUHCYXTFDUS.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "TDQNZBUHCYXTFDUS.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TDQNZBUHCYXTFDUS.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "TDQNZBUHCYXTFDUS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TDQNZBUHCYXTFDUS.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "TDQNZBUHCYXTFDUS.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1640000000" - }, - "appliesTo" : [ ] - }, - "TDQNZBUHCYXTFDUS.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "TDQNZBUHCYXTFDUS.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "911" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TDQNZBUHCYXTFDUS.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TDQNZBUHCYXTFDUS", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "TDQNZBUHCYXTFDUS.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TDQNZBUHCYXTFDUS.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TDQNZBUHCYXTFDUS.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "TDQNZBUHCYXTFDUS", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "TDQNZBUHCYXTFDUS.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "TDQNZBUHCYXTFDUS.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5976" - }, - "appliesTo" : [ ] - }, - "TDQNZBUHCYXTFDUS.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "TDQNZBUHCYXTFDUS.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TDQNZBUHCYXTFDUS.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TDQNZBUHCYXTFDUS", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "TDQNZBUHCYXTFDUS.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TDQNZBUHCYXTFDUS.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1320000000" - }, - "appliesTo" : [ ] - }, - "TDQNZBUHCYXTFDUS.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TDQNZBUHCYXTFDUS.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1480" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TDQNZBUHCYXTFDUS.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "TDQNZBUHCYXTFDUS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TDQNZBUHCYXTFDUS.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "TDQNZBUHCYXTFDUS.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "N48UCGS5YF8G8CCW" : { - "N48UCGS5YF8G8CCW.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "N48UCGS5YF8G8CCW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N48UCGS5YF8G8CCW.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "N48UCGS5YF8G8CCW.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25930" - }, - "appliesTo" : [ ] - }, - "N48UCGS5YF8G8CCW.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "N48UCGS5YF8G8CCW.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "N48UCGS5YF8G8CCW.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "N48UCGS5YF8G8CCW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "N48UCGS5YF8G8CCW.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "N48UCGS5YF8G8CCW.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.5350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "N48UCGS5YF8G8CCW.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "N48UCGS5YF8G8CCW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N48UCGS5YF8G8CCW.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "N48UCGS5YF8G8CCW.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.3460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "N48UCGS5YF8G8CCW.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "N48UCGS5YF8G8CCW", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "N48UCGS5YF8G8CCW.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "N48UCGS5YF8G8CCW.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "49144" - }, - "appliesTo" : [ ] - }, - "N48UCGS5YF8G8CCW.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "N48UCGS5YF8G8CCW.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "N48UCGS5YF8G8CCW.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "N48UCGS5YF8G8CCW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "N48UCGS5YF8G8CCW.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "N48UCGS5YF8G8CCW.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "N48UCGS5YF8G8CCW.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "N48UCGS5YF8G8CCW.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "95806" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "N48UCGS5YF8G8CCW.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "N48UCGS5YF8G8CCW", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "N48UCGS5YF8G8CCW.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "N48UCGS5YF8G8CCW.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "45333" - }, - "appliesTo" : [ ] - }, - "N48UCGS5YF8G8CCW.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "N48UCGS5YF8G8CCW.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "N48UCGS5YF8G8CCW.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "N48UCGS5YF8G8CCW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "N48UCGS5YF8G8CCW.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "N48UCGS5YF8G8CCW.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "56516" - }, - "appliesTo" : [ ] - }, - "N48UCGS5YF8G8CCW.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "N48UCGS5YF8G8CCW.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "N48UCGS5YF8G8CCW.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "N48UCGS5YF8G8CCW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "N48UCGS5YF8G8CCW.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "N48UCGS5YF8G8CCW.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.7750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "N48UCGS5YF8G8CCW.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "N48UCGS5YF8G8CCW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "N48UCGS5YF8G8CCW.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "N48UCGS5YF8G8CCW.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "114187" - }, - "appliesTo" : [ ] - }, - "N48UCGS5YF8G8CCW.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "N48UCGS5YF8G8CCW.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "N48UCGS5YF8G8CCW.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "N48UCGS5YF8G8CCW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "N48UCGS5YF8G8CCW.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "N48UCGS5YF8G8CCW.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.1690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "N48UCGS5YF8G8CCW.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "N48UCGS5YF8G8CCW", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "N48UCGS5YF8G8CCW.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "N48UCGS5YF8G8CCW.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22548" - }, - "appliesTo" : [ ] - }, - "N48UCGS5YF8G8CCW.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "N48UCGS5YF8G8CCW.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "N48UCGS5YF8G8CCW.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "N48UCGS5YF8G8CCW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N48UCGS5YF8G8CCW.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "N48UCGS5YF8G8CCW.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "51963" - }, - "appliesTo" : [ ] - }, - "N48UCGS5YF8G8CCW.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "N48UCGS5YF8G8CCW.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "8WMJSK8SESK57KMV" : { - "8WMJSK8SESK57KMV.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "8WMJSK8SESK57KMV", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "8WMJSK8SESK57KMV.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "8WMJSK8SESK57KMV.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "66960" - }, - "appliesTo" : [ ] - }, - "8WMJSK8SESK57KMV.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "8WMJSK8SESK57KMV.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5479000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8WMJSK8SESK57KMV.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "8WMJSK8SESK57KMV", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "8WMJSK8SESK57KMV.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "8WMJSK8SESK57KMV.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "8WMJSK8SESK57KMV.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "8WMJSK8SESK57KMV.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "141103" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8WMJSK8SESK57KMV.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "8WMJSK8SESK57KMV", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "8WMJSK8SESK57KMV.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "8WMJSK8SESK57KMV.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "130526" - }, - "appliesTo" : [ ] - }, - "8WMJSK8SESK57KMV.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "8WMJSK8SESK57KMV.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8WMJSK8SESK57KMV.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "8WMJSK8SESK57KMV", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "8WMJSK8SESK57KMV.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "8WMJSK8SESK57KMV.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "71202" - }, - "appliesTo" : [ ] - }, - "8WMJSK8SESK57KMV.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "8WMJSK8SESK57KMV.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7094000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8WMJSK8SESK57KMV.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "8WMJSK8SESK57KMV", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "8WMJSK8SESK57KMV.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "8WMJSK8SESK57KMV.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.2680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8WMJSK8SESK57KMV.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "8WMJSK8SESK57KMV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8WMJSK8SESK57KMV.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "8WMJSK8SESK57KMV.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "55052" - }, - "appliesTo" : [ ] - }, - "8WMJSK8SESK57KMV.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "8WMJSK8SESK57KMV.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8WMJSK8SESK57KMV.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "8WMJSK8SESK57KMV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8WMJSK8SESK57KMV.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "8WMJSK8SESK57KMV.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27824" - }, - "appliesTo" : [ ] - }, - "8WMJSK8SESK57KMV.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "8WMJSK8SESK57KMV.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1763000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8WMJSK8SESK57KMV.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "8WMJSK8SESK57KMV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8WMJSK8SESK57KMV.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "8WMJSK8SESK57KMV.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.5230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8WMJSK8SESK57KMV.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "8WMJSK8SESK57KMV", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "8WMJSK8SESK57KMV.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "8WMJSK8SESK57KMV.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25877" - }, - "appliesTo" : [ ] - }, - "8WMJSK8SESK57KMV.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "8WMJSK8SESK57KMV.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8WMJSK8SESK57KMV.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "8WMJSK8SESK57KMV", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "8WMJSK8SESK57KMV.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "8WMJSK8SESK57KMV.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "51235" - }, - "appliesTo" : [ ] - }, - "8WMJSK8SESK57KMV.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "8WMJSK8SESK57KMV.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8WMJSK8SESK57KMV.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "8WMJSK8SESK57KMV", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "8WMJSK8SESK57KMV.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "8WMJSK8SESK57KMV.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.0562000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8WMJSK8SESK57KMV.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "8WMJSK8SESK57KMV", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "8WMJSK8SESK57KMV.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "8WMJSK8SESK57KMV.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.6167000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "XDG4DYSAQBVCPRJQ" : { - "XDG4DYSAQBVCPRJQ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "XDG4DYSAQBVCPRJQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XDG4DYSAQBVCPRJQ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "XDG4DYSAQBVCPRJQ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0985000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XDG4DYSAQBVCPRJQ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XDG4DYSAQBVCPRJQ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XDG4DYSAQBVCPRJQ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XDG4DYSAQBVCPRJQ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8417000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XDG4DYSAQBVCPRJQ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XDG4DYSAQBVCPRJQ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XDG4DYSAQBVCPRJQ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XDG4DYSAQBVCPRJQ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15552" - }, - "appliesTo" : [ ] - }, - "XDG4DYSAQBVCPRJQ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XDG4DYSAQBVCPRJQ.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7218000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XDG4DYSAQBVCPRJQ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "XDG4DYSAQBVCPRJQ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XDG4DYSAQBVCPRJQ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "XDG4DYSAQBVCPRJQ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XDG4DYSAQBVCPRJQ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XDG4DYSAQBVCPRJQ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XDG4DYSAQBVCPRJQ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XDG4DYSAQBVCPRJQ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15134" - }, - "appliesTo" : [ ] - }, - "XDG4DYSAQBVCPRJQ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XDG4DYSAQBVCPRJQ.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XDG4DYSAQBVCPRJQ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XDG4DYSAQBVCPRJQ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XDG4DYSAQBVCPRJQ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XDG4DYSAQBVCPRJQ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32653" - }, - "appliesTo" : [ ] - }, - "XDG4DYSAQBVCPRJQ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XDG4DYSAQBVCPRJQ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XDG4DYSAQBVCPRJQ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "XDG4DYSAQBVCPRJQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XDG4DYSAQBVCPRJQ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "XDG4DYSAQBVCPRJQ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "XDG4DYSAQBVCPRJQ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "XDG4DYSAQBVCPRJQ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17233" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XDG4DYSAQBVCPRJQ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XDG4DYSAQBVCPRJQ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XDG4DYSAQBVCPRJQ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XDG4DYSAQBVCPRJQ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7140" - }, - "appliesTo" : [ ] - }, - "XDG4DYSAQBVCPRJQ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XDG4DYSAQBVCPRJQ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9451000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XDG4DYSAQBVCPRJQ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "XDG4DYSAQBVCPRJQ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XDG4DYSAQBVCPRJQ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "XDG4DYSAQBVCPRJQ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17885" - }, - "appliesTo" : [ ] - }, - "XDG4DYSAQBVCPRJQ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "XDG4DYSAQBVCPRJQ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8105000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XDG4DYSAQBVCPRJQ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "XDG4DYSAQBVCPRJQ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XDG4DYSAQBVCPRJQ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "XDG4DYSAQBVCPRJQ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38470" - }, - "appliesTo" : [ ] - }, - "XDG4DYSAQBVCPRJQ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "XDG4DYSAQBVCPRJQ.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XDG4DYSAQBVCPRJQ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "XDG4DYSAQBVCPRJQ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "XDG4DYSAQBVCPRJQ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "XDG4DYSAQBVCPRJQ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4082000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XDG4DYSAQBVCPRJQ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "XDG4DYSAQBVCPRJQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XDG4DYSAQBVCPRJQ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "XDG4DYSAQBVCPRJQ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8211" - }, - "appliesTo" : [ ] - }, - "XDG4DYSAQBVCPRJQ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "XDG4DYSAQBVCPRJQ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0674000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "A8NG2GF96A6WJPJW" : { - "A8NG2GF96A6WJPJW.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "A8NG2GF96A6WJPJW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A8NG2GF96A6WJPJW.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "A8NG2GF96A6WJPJW.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1833" - }, - "appliesTo" : [ ] - }, - "A8NG2GF96A6WJPJW.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "A8NG2GF96A6WJPJW.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "A8NG2GF96A6WJPJW.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "A8NG2GF96A6WJPJW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A8NG2GF96A6WJPJW.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "A8NG2GF96A6WJPJW.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "A8NG2GF96A6WJPJW.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "A8NG2GF96A6WJPJW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "A8NG2GF96A6WJPJW.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "A8NG2GF96A6WJPJW.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "A8NG2GF96A6WJPJW.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "A8NG2GF96A6WJPJW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "A8NG2GF96A6WJPJW.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "A8NG2GF96A6WJPJW.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8982" - }, - "appliesTo" : [ ] - }, - "A8NG2GF96A6WJPJW.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "A8NG2GF96A6WJPJW.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "A8NG2GF96A6WJPJW.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "A8NG2GF96A6WJPJW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "A8NG2GF96A6WJPJW.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "A8NG2GF96A6WJPJW.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "A8NG2GF96A6WJPJW.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "A8NG2GF96A6WJPJW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A8NG2GF96A6WJPJW.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "A8NG2GF96A6WJPJW.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3626" - }, - "appliesTo" : [ ] - }, - "A8NG2GF96A6WJPJW.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "A8NG2GF96A6WJPJW.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "A8NG2GF96A6WJPJW.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "A8NG2GF96A6WJPJW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "A8NG2GF96A6WJPJW.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "A8NG2GF96A6WJPJW.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "A8NG2GF96A6WJPJW.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "A8NG2GF96A6WJPJW.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3353" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "A8NG2GF96A6WJPJW.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "A8NG2GF96A6WJPJW", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "A8NG2GF96A6WJPJW.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "A8NG2GF96A6WJPJW.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1930000000" - }, - "appliesTo" : [ ] - }, - "A8NG2GF96A6WJPJW.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "A8NG2GF96A6WJPJW.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1694" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "A8NG2GF96A6WJPJW.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "A8NG2GF96A6WJPJW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "A8NG2GF96A6WJPJW.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "A8NG2GF96A6WJPJW.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4533" - }, - "appliesTo" : [ ] - }, - "A8NG2GF96A6WJPJW.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "A8NG2GF96A6WJPJW.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "A8NG2GF96A6WJPJW.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "A8NG2GF96A6WJPJW", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "A8NG2GF96A6WJPJW.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "A8NG2GF96A6WJPJW.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8304" - }, - "appliesTo" : [ ] - }, - "A8NG2GF96A6WJPJW.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "A8NG2GF96A6WJPJW.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "A8NG2GF96A6WJPJW.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "A8NG2GF96A6WJPJW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "A8NG2GF96A6WJPJW.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "A8NG2GF96A6WJPJW.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "A8NG2GF96A6WJPJW.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "A8NG2GF96A6WJPJW", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "A8NG2GF96A6WJPJW.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "A8NG2GF96A6WJPJW.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4263" - }, - "appliesTo" : [ ] - }, - "A8NG2GF96A6WJPJW.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "A8NG2GF96A6WJPJW.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "TN5GRYE6RHCET7M3" : { - "TN5GRYE6RHCET7M3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TN5GRYE6RHCET7M3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TN5GRYE6RHCET7M3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TN5GRYE6RHCET7M3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4288" - }, - "appliesTo" : [ ] - }, - "TN5GRYE6RHCET7M3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TN5GRYE6RHCET7M3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TN5GRYE6RHCET7M3.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "TN5GRYE6RHCET7M3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TN5GRYE6RHCET7M3.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "TN5GRYE6RHCET7M3.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9665" - }, - "appliesTo" : [ ] - }, - "TN5GRYE6RHCET7M3.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "TN5GRYE6RHCET7M3.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TN5GRYE6RHCET7M3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TN5GRYE6RHCET7M3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TN5GRYE6RHCET7M3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TN5GRYE6RHCET7M3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12264" - }, - "appliesTo" : [ ] - }, - "TN5GRYE6RHCET7M3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TN5GRYE6RHCET7M3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TN5GRYE6RHCET7M3.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "TN5GRYE6RHCET7M3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TN5GRYE6RHCET7M3.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "TN5GRYE6RHCET7M3.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TN5GRYE6RHCET7M3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TN5GRYE6RHCET7M3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TN5GRYE6RHCET7M3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TN5GRYE6RHCET7M3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8404" - }, - "appliesTo" : [ ] - }, - "TN5GRYE6RHCET7M3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TN5GRYE6RHCET7M3.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TN5GRYE6RHCET7M3.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "TN5GRYE6RHCET7M3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TN5GRYE6RHCET7M3.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "TN5GRYE6RHCET7M3.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14704" - }, - "appliesTo" : [ ] - }, - "TN5GRYE6RHCET7M3.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "TN5GRYE6RHCET7M3.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TN5GRYE6RHCET7M3.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "TN5GRYE6RHCET7M3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TN5GRYE6RHCET7M3.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "TN5GRYE6RHCET7M3.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TN5GRYE6RHCET7M3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TN5GRYE6RHCET7M3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TN5GRYE6RHCET7M3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TN5GRYE6RHCET7M3.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TN5GRYE6RHCET7M3.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "TN5GRYE6RHCET7M3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TN5GRYE6RHCET7M3.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "TN5GRYE6RHCET7M3.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4931" - }, - "appliesTo" : [ ] - }, - "TN5GRYE6RHCET7M3.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "TN5GRYE6RHCET7M3.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TN5GRYE6RHCET7M3.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "TN5GRYE6RHCET7M3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TN5GRYE6RHCET7M3.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "TN5GRYE6RHCET7M3.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TN5GRYE6RHCET7M3.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "TN5GRYE6RHCET7M3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TN5GRYE6RHCET7M3.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "TN5GRYE6RHCET7M3.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2850000000" - }, - "appliesTo" : [ ] - }, - "TN5GRYE6RHCET7M3.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "TN5GRYE6RHCET7M3.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7502" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TN5GRYE6RHCET7M3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TN5GRYE6RHCET7M3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TN5GRYE6RHCET7M3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TN5GRYE6RHCET7M3.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2480000000" - }, - "appliesTo" : [ ] - }, - "TN5GRYE6RHCET7M3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TN5GRYE6RHCET7M3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6524" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "Z684JBY4N78FZQ8Q" : { - "Z684JBY4N78FZQ8Q.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Z684JBY4N78FZQ8Q", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z684JBY4N78FZQ8Q.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Z684JBY4N78FZQ8Q.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0455000000" - }, - "appliesTo" : [ ] - }, - "Z684JBY4N78FZQ8Q.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Z684JBY4N78FZQ8Q.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "460" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z684JBY4N78FZQ8Q.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Z684JBY4N78FZQ8Q", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z684JBY4N78FZQ8Q.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Z684JBY4N78FZQ8Q.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "847" - }, - "appliesTo" : [ ] - }, - "Z684JBY4N78FZQ8Q.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Z684JBY4N78FZQ8Q.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Z684JBY4N78FZQ8Q.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "Z684JBY4N78FZQ8Q", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z684JBY4N78FZQ8Q.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "Z684JBY4N78FZQ8Q.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Z684JBY4N78FZQ8Q.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "Z684JBY4N78FZQ8Q", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z684JBY4N78FZQ8Q.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "Z684JBY4N78FZQ8Q.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1114000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Z684JBY4N78FZQ8Q.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "Z684JBY4N78FZQ8Q", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z684JBY4N78FZQ8Q.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "Z684JBY4N78FZQ8Q.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "931" - }, - "appliesTo" : [ ] - }, - "Z684JBY4N78FZQ8Q.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "Z684JBY4N78FZQ8Q.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Z684JBY4N78FZQ8Q.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "Z684JBY4N78FZQ8Q", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z684JBY4N78FZQ8Q.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "Z684JBY4N78FZQ8Q.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "503" - }, - "appliesTo" : [ ] - }, - "Z684JBY4N78FZQ8Q.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "Z684JBY4N78FZQ8Q.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0503000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z684JBY4N78FZQ8Q.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "Z684JBY4N78FZQ8Q", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z684JBY4N78FZQ8Q.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "Z684JBY4N78FZQ8Q.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "Z684JBY4N78FZQ8Q.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "Z684JBY4N78FZQ8Q.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1997" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Z684JBY4N78FZQ8Q.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Z684JBY4N78FZQ8Q", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z684JBY4N78FZQ8Q.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Z684JBY4N78FZQ8Q.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "930" - }, - "appliesTo" : [ ] - }, - "Z684JBY4N78FZQ8Q.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Z684JBY4N78FZQ8Q.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z684JBY4N78FZQ8Q.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Z684JBY4N78FZQ8Q", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z684JBY4N78FZQ8Q.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Z684JBY4N78FZQ8Q.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1011000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Z684JBY4N78FZQ8Q.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Z684JBY4N78FZQ8Q", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z684JBY4N78FZQ8Q.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Z684JBY4N78FZQ8Q.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1781" - }, - "appliesTo" : [ ] - }, - "Z684JBY4N78FZQ8Q.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Z684JBY4N78FZQ8Q.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Z684JBY4N78FZQ8Q.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "Z684JBY4N78FZQ8Q", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z684JBY4N78FZQ8Q.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "Z684JBY4N78FZQ8Q.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1017" - }, - "appliesTo" : [ ] - }, - "Z684JBY4N78FZQ8Q.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "Z684JBY4N78FZQ8Q.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0383000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z684JBY4N78FZQ8Q.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "Z684JBY4N78FZQ8Q", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z684JBY4N78FZQ8Q.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "Z684JBY4N78FZQ8Q.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0876000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "7WRGXK63YR8UUHF8" : { - "7WRGXK63YR8UUHF8.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "7WRGXK63YR8UUHF8", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "7WRGXK63YR8UUHF8.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "7WRGXK63YR8UUHF8.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9430000000" - }, - "appliesTo" : [ ] - }, - "7WRGXK63YR8UUHF8.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "7WRGXK63YR8UUHF8.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8264" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7WRGXK63YR8UUHF8.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "7WRGXK63YR8UUHF8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7WRGXK63YR8UUHF8.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "7WRGXK63YR8UUHF8.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8403" - }, - "appliesTo" : [ ] - }, - "7WRGXK63YR8UUHF8.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "7WRGXK63YR8UUHF8.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7WRGXK63YR8UUHF8.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "7WRGXK63YR8UUHF8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7WRGXK63YR8UUHF8.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "7WRGXK63YR8UUHF8.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7WRGXK63YR8UUHF8.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "7WRGXK63YR8UUHF8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7WRGXK63YR8UUHF8.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "7WRGXK63YR8UUHF8.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "48402" - }, - "appliesTo" : [ ] - }, - "7WRGXK63YR8UUHF8.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "7WRGXK63YR8UUHF8.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7WRGXK63YR8UUHF8.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "7WRGXK63YR8UUHF8", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "7WRGXK63YR8UUHF8.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "7WRGXK63YR8UUHF8.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47724" - }, - "appliesTo" : [ ] - }, - "7WRGXK63YR8UUHF8.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "7WRGXK63YR8UUHF8.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7WRGXK63YR8UUHF8.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "7WRGXK63YR8UUHF8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7WRGXK63YR8UUHF8.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "7WRGXK63YR8UUHF8.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7WRGXK63YR8UUHF8.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "7WRGXK63YR8UUHF8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7WRGXK63YR8UUHF8.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "7WRGXK63YR8UUHF8.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16766" - }, - "appliesTo" : [ ] - }, - "7WRGXK63YR8UUHF8.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "7WRGXK63YR8UUHF8.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7WRGXK63YR8UUHF8.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "7WRGXK63YR8UUHF8", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "7WRGXK63YR8UUHF8.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "7WRGXK63YR8UUHF8.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23973" - }, - "appliesTo" : [ ] - }, - "7WRGXK63YR8UUHF8.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "7WRGXK63YR8UUHF8.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7WRGXK63YR8UUHF8.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "7WRGXK63YR8UUHF8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7WRGXK63YR8UUHF8.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "7WRGXK63YR8UUHF8.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9230000000" - }, - "appliesTo" : [ ] - }, - "7WRGXK63YR8UUHF8.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "7WRGXK63YR8UUHF8.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24243" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7WRGXK63YR8UUHF8.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "7WRGXK63YR8UUHF8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7WRGXK63YR8UUHF8.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "7WRGXK63YR8UUHF8.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7WRGXK63YR8UUHF8.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "7WRGXK63YR8UUHF8", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "7WRGXK63YR8UUHF8.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "7WRGXK63YR8UUHF8.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16493" - }, - "appliesTo" : [ ] - }, - "7WRGXK63YR8UUHF8.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "7WRGXK63YR8UUHF8.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7WRGXK63YR8UUHF8.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "7WRGXK63YR8UUHF8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7WRGXK63YR8UUHF8.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "7WRGXK63YR8UUHF8.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "42568WZBBYJBWCB3" : { - "42568WZBBYJBWCB3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "42568WZBBYJBWCB3", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "42568WZBBYJBWCB3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "42568WZBBYJBWCB3.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2012000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "42568WZBBYJBWCB3.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "42568WZBBYJBWCB3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "42568WZBBYJBWCB3.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "42568WZBBYJBWCB3.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14248" - }, - "appliesTo" : [ ] - }, - "42568WZBBYJBWCB3.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "42568WZBBYJBWCB3.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6265000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "42568WZBBYJBWCB3.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "42568WZBBYJBWCB3", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "42568WZBBYJBWCB3.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "42568WZBBYJBWCB3.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0932000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "42568WZBBYJBWCB3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "42568WZBBYJBWCB3", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "42568WZBBYJBWCB3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "42568WZBBYJBWCB3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "78495" - }, - "appliesTo" : [ ] - }, - "42568WZBBYJBWCB3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "42568WZBBYJBWCB3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "42568WZBBYJBWCB3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "42568WZBBYJBWCB3", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "42568WZBBYJBWCB3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "42568WZBBYJBWCB3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27724" - }, - "appliesTo" : [ ] - }, - "42568WZBBYJBWCB3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "42568WZBBYJBWCB3.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "42568WZBBYJBWCB3.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "42568WZBBYJBWCB3", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "42568WZBBYJBWCB3.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "42568WZBBYJBWCB3.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0362000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "42568WZBBYJBWCB3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "42568WZBBYJBWCB3", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "42568WZBBYJBWCB3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "42568WZBBYJBWCB3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13907" - }, - "appliesTo" : [ ] - }, - "42568WZBBYJBWCB3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "42568WZBBYJBWCB3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5876000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "42568WZBBYJBWCB3.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "42568WZBBYJBWCB3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "42568WZBBYJBWCB3.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "42568WZBBYJBWCB3.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28392" - }, - "appliesTo" : [ ] - }, - "42568WZBBYJBWCB3.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "42568WZBBYJBWCB3.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "42568WZBBYJBWCB3.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "42568WZBBYJBWCB3", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "42568WZBBYJBWCB3.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "42568WZBBYJBWCB3.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "40219" - }, - "appliesTo" : [ ] - }, - "42568WZBBYJBWCB3.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "42568WZBBYJBWCB3.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5304000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "42568WZBBYJBWCB3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "42568WZBBYJBWCB3", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "42568WZBBYJBWCB3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "42568WZBBYJBWCB3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39525" - }, - "appliesTo" : [ ] - }, - "42568WZBBYJBWCB3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "42568WZBBYJBWCB3.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "42568WZBBYJBWCB3.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "42568WZBBYJBWCB3", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "42568WZBBYJBWCB3.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "42568WZBBYJBWCB3.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "42568WZBBYJBWCB3.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "42568WZBBYJBWCB3.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "80225" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "42568WZBBYJBWCB3.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "42568WZBBYJBWCB3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "42568WZBBYJBWCB3.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "42568WZBBYJBWCB3.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2829000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "AUEXKF3V3JXC7F22" : { - "AUEXKF3V3JXC7F22.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "AUEXKF3V3JXC7F22", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "AUEXKF3V3JXC7F22.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "AUEXKF3V3JXC7F22.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2291" - }, - "appliesTo" : [ ] - }, - "AUEXKF3V3JXC7F22.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "AUEXKF3V3JXC7F22.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AUEXKF3V3JXC7F22.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "AUEXKF3V3JXC7F22", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "AUEXKF3V3JXC7F22.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "AUEXKF3V3JXC7F22.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5151" - }, - "appliesTo" : [ ] - }, - "AUEXKF3V3JXC7F22.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "AUEXKF3V3JXC7F22.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AUEXKF3V3JXC7F22.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "AUEXKF3V3JXC7F22", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "AUEXKF3V3JXC7F22.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "AUEXKF3V3JXC7F22.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2185" - }, - "appliesTo" : [ ] - }, - "AUEXKF3V3JXC7F22.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "AUEXKF3V3JXC7F22.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AUEXKF3V3JXC7F22.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "AUEXKF3V3JXC7F22", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "AUEXKF3V3JXC7F22.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "AUEXKF3V3JXC7F22.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "AUEXKF3V3JXC7F22.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "AUEXKF3V3JXC7F22", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "AUEXKF3V3JXC7F22.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "AUEXKF3V3JXC7F22.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1600000000" - }, - "appliesTo" : [ ] - }, - "AUEXKF3V3JXC7F22.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "AUEXKF3V3JXC7F22.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "941" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "VU398KD2CYRQCGPP" : { - "VU398KD2CYRQCGPP.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "VU398KD2CYRQCGPP", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "VU398KD2CYRQCGPP.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "VU398KD2CYRQCGPP.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "142946" - }, - "appliesTo" : [ ] - }, - "VU398KD2CYRQCGPP.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "VU398KD2CYRQCGPP.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VU398KD2CYRQCGPP.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "VU398KD2CYRQCGPP", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "VU398KD2CYRQCGPP.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "VU398KD2CYRQCGPP.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "71727" - }, - "appliesTo" : [ ] - }, - "VU398KD2CYRQCGPP.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "VU398KD2CYRQCGPP.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.1880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VU398KD2CYRQCGPP.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "VU398KD2CYRQCGPP", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "VU398KD2CYRQCGPP.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "VU398KD2CYRQCGPP.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "211366" - }, - "appliesTo" : [ ] - }, - "VU398KD2CYRQCGPP.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "VU398KD2CYRQCGPP.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.0430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VU398KD2CYRQCGPP.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "VU398KD2CYRQCGPP", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "VU398KD2CYRQCGPP.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "VU398KD2CYRQCGPP.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "VU398KD2CYRQCGPP.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "VU398KD2CYRQCGPP.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "398463" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VU398KD2CYRQCGPP.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "VU398KD2CYRQCGPP", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "VU398KD2CYRQCGPP.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "VU398KD2CYRQCGPP.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.5300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VU398KD2CYRQCGPP.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "VU398KD2CYRQCGPP", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "VU398KD2CYRQCGPP.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "VU398KD2CYRQCGPP.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.6350000000" - }, - "appliesTo" : [ ] - }, - "VU398KD2CYRQCGPP.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "VU398KD2CYRQCGPP.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "200649" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VU398KD2CYRQCGPP.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "VU398KD2CYRQCGPP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VU398KD2CYRQCGPP.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "VU398KD2CYRQCGPP.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.4050000000" - }, - "appliesTo" : [ ] - }, - "VU398KD2CYRQCGPP.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "VU398KD2CYRQCGPP.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "73627" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VU398KD2CYRQCGPP.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "VU398KD2CYRQCGPP", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "VU398KD2CYRQCGPP.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "VU398KD2CYRQCGPP.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.8700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VU398KD2CYRQCGPP.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "VU398KD2CYRQCGPP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VU398KD2CYRQCGPP.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "VU398KD2CYRQCGPP.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.9770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VU398KD2CYRQCGPP.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "VU398KD2CYRQCGPP", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "VU398KD2CYRQCGPP.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "VU398KD2CYRQCGPP.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "421358" - }, - "appliesTo" : [ ] - }, - "VU398KD2CYRQCGPP.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "VU398KD2CYRQCGPP.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VU398KD2CYRQCGPP.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "VU398KD2CYRQCGPP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VU398KD2CYRQCGPP.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "VU398KD2CYRQCGPP.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "146669" - }, - "appliesTo" : [ ] - }, - "VU398KD2CYRQCGPP.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "VU398KD2CYRQCGPP.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "TGH4GCMRQQNEDGCJ" : { - "TGH4GCMRQQNEDGCJ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TGH4GCMRQQNEDGCJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TGH4GCMRQQNEDGCJ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TGH4GCMRQQNEDGCJ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22548" - }, - "appliesTo" : [ ] - }, - "TGH4GCMRQQNEDGCJ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TGH4GCMRQQNEDGCJ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TGH4GCMRQQNEDGCJ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TGH4GCMRQQNEDGCJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TGH4GCMRQQNEDGCJ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TGH4GCMRQQNEDGCJ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "44775" - }, - "appliesTo" : [ ] - }, - "TGH4GCMRQQNEDGCJ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TGH4GCMRQQNEDGCJ.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TGH4GCMRQQNEDGCJ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "TGH4GCMRQQNEDGCJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TGH4GCMRQQNEDGCJ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "TGH4GCMRQQNEDGCJ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47139" - }, - "appliesTo" : [ ] - }, - "TGH4GCMRQQNEDGCJ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "TGH4GCMRQQNEDGCJ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TGH4GCMRQQNEDGCJ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "TGH4GCMRQQNEDGCJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TGH4GCMRQQNEDGCJ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "TGH4GCMRQQNEDGCJ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "61493" - }, - "appliesTo" : [ ] - }, - "TGH4GCMRQQNEDGCJ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "TGH4GCMRQQNEDGCJ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TGH4GCMRQQNEDGCJ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "TGH4GCMRQQNEDGCJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TGH4GCMRQQNEDGCJ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "TGH4GCMRQQNEDGCJ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TGH4GCMRQQNEDGCJ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "TGH4GCMRQQNEDGCJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TGH4GCMRQQNEDGCJ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "TGH4GCMRQQNEDGCJ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.5290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TGH4GCMRQQNEDGCJ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TGH4GCMRQQNEDGCJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TGH4GCMRQQNEDGCJ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TGH4GCMRQQNEDGCJ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.2400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TGH4GCMRQQNEDGCJ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "TGH4GCMRQQNEDGCJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TGH4GCMRQQNEDGCJ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "TGH4GCMRQQNEDGCJ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23754" - }, - "appliesTo" : [ ] - }, - "TGH4GCMRQQNEDGCJ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "TGH4GCMRQQNEDGCJ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TGH4GCMRQQNEDGCJ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TGH4GCMRQQNEDGCJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TGH4GCMRQQNEDGCJ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TGH4GCMRQQNEDGCJ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2500000000" - }, - "appliesTo" : [ ] - }, - "TGH4GCMRQQNEDGCJ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TGH4GCMRQQNEDGCJ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "59121" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TGH4GCMRQQNEDGCJ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "TGH4GCMRQQNEDGCJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TGH4GCMRQQNEDGCJ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "TGH4GCMRQQNEDGCJ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "122267" - }, - "appliesTo" : [ ] - }, - "TGH4GCMRQQNEDGCJ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "TGH4GCMRQQNEDGCJ.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TGH4GCMRQQNEDGCJ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "TGH4GCMRQQNEDGCJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TGH4GCMRQQNEDGCJ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "TGH4GCMRQQNEDGCJ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.7890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TGH4GCMRQQNEDGCJ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TGH4GCMRQQNEDGCJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TGH4GCMRQQNEDGCJ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TGH4GCMRQQNEDGCJ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TGH4GCMRQQNEDGCJ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TGH4GCMRQQNEDGCJ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "116369" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "Q49VKFFWC877GUFC" : { - "Q49VKFFWC877GUFC.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Q49VKFFWC877GUFC", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Q49VKFFWC877GUFC.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Q49VKFFWC877GUFC.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3079000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Q49VKFFWC877GUFC.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Q49VKFFWC877GUFC", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Q49VKFFWC877GUFC.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Q49VKFFWC877GUFC.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1323" - }, - "appliesTo" : [ ] - }, - "Q49VKFFWC877GUFC.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Q49VKFFWC877GUFC.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q49VKFFWC877GUFC.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Q49VKFFWC877GUFC", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Q49VKFFWC877GUFC.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Q49VKFFWC877GUFC.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2625" - }, - "appliesTo" : [ ] - }, - "Q49VKFFWC877GUFC.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Q49VKFFWC877GUFC.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Q49VKFFWC877GUFC.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "Q49VKFFWC877GUFC", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Q49VKFFWC877GUFC.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "Q49VKFFWC877GUFC.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2834000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Q49VKFFWC877GUFC.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "Q49VKFFWC877GUFC", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Q49VKFFWC877GUFC.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "Q49VKFFWC877GUFC.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "Q49VKFFWC877GUFC.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "Q49VKFFWC877GUFC.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7205" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Q49VKFFWC877GUFC.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "Q49VKFFWC877GUFC", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Q49VKFFWC877GUFC.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "Q49VKFFWC877GUFC.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2704000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Q49VKFFWC877GUFC.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Q49VKFFWC877GUFC", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Q49VKFFWC877GUFC.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Q49VKFFWC877GUFC.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "Q49VKFFWC877GUFC.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Q49VKFFWC877GUFC.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6430" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Q49VKFFWC877GUFC.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "Q49VKFFWC877GUFC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q49VKFFWC877GUFC.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "Q49VKFFWC877GUFC.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2777" - }, - "appliesTo" : [ ] - }, - "Q49VKFFWC877GUFC.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "Q49VKFFWC877GUFC.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Q49VKFFWC877GUFC.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Q49VKFFWC877GUFC", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "Q49VKFFWC877GUFC.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Q49VKFFWC877GUFC.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3419" - }, - "appliesTo" : [ ] - }, - "Q49VKFFWC877GUFC.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Q49VKFFWC877GUFC.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q49VKFFWC877GUFC.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "Q49VKFFWC877GUFC", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Q49VKFFWC877GUFC.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "Q49VKFFWC877GUFC.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3627" - }, - "appliesTo" : [ ] - }, - "Q49VKFFWC877GUFC.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "Q49VKFFWC877GUFC.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q49VKFFWC877GUFC.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "Q49VKFFWC877GUFC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q49VKFFWC877GUFC.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "Q49VKFFWC877GUFC.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3265000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Q49VKFFWC877GUFC.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "Q49VKFFWC877GUFC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q49VKFFWC877GUFC.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "Q49VKFFWC877GUFC.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1599000000" - }, - "appliesTo" : [ ] - }, - "Q49VKFFWC877GUFC.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "Q49VKFFWC877GUFC.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1400" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "WVXEZZPK3N9SFW9H" : { - "WVXEZZPK3N9SFW9H.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "WVXEZZPK3N9SFW9H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WVXEZZPK3N9SFW9H.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "WVXEZZPK3N9SFW9H.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30512" - }, - "appliesTo" : [ ] - }, - "WVXEZZPK3N9SFW9H.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "WVXEZZPK3N9SFW9H.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WVXEZZPK3N9SFW9H.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "WVXEZZPK3N9SFW9H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WVXEZZPK3N9SFW9H.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "WVXEZZPK3N9SFW9H.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.5360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "WVXEZZPK3N9SFW9H.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "WVXEZZPK3N9SFW9H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WVXEZZPK3N9SFW9H.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "WVXEZZPK3N9SFW9H.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.2140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WVXEZZPK3N9SFW9H.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "WVXEZZPK3N9SFW9H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WVXEZZPK3N9SFW9H.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "WVXEZZPK3N9SFW9H.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "106860" - }, - "appliesTo" : [ ] - }, - "WVXEZZPK3N9SFW9H.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "WVXEZZPK3N9SFW9H.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WVXEZZPK3N9SFW9H.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "WVXEZZPK3N9SFW9H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WVXEZZPK3N9SFW9H.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "WVXEZZPK3N9SFW9H.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "54610" - }, - "appliesTo" : [ ] - }, - "WVXEZZPK3N9SFW9H.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "WVXEZZPK3N9SFW9H.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WVXEZZPK3N9SFW9H.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "WVXEZZPK3N9SFW9H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WVXEZZPK3N9SFW9H.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "WVXEZZPK3N9SFW9H.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "59458" - }, - "appliesTo" : [ ] - }, - "WVXEZZPK3N9SFW9H.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "WVXEZZPK3N9SFW9H.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WVXEZZPK3N9SFW9H.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "WVXEZZPK3N9SFW9H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WVXEZZPK3N9SFW9H.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "WVXEZZPK3N9SFW9H.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "55152" - }, - "appliesTo" : [ ] - }, - "WVXEZZPK3N9SFW9H.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "WVXEZZPK3N9SFW9H.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WVXEZZPK3N9SFW9H.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "WVXEZZPK3N9SFW9H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WVXEZZPK3N9SFW9H.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "WVXEZZPK3N9SFW9H.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.7260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WVXEZZPK3N9SFW9H.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "WVXEZZPK3N9SFW9H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WVXEZZPK3N9SFW9H.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "WVXEZZPK3N9SFW9H.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "WVXEZZPK3N9SFW9H.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "WVXEZZPK3N9SFW9H.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "117595" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WVXEZZPK3N9SFW9H.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "WVXEZZPK3N9SFW9H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WVXEZZPK3N9SFW9H.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "WVXEZZPK3N9SFW9H.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.3720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "WVXEZZPK3N9SFW9H.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "WVXEZZPK3N9SFW9H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WVXEZZPK3N9SFW9H.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "WVXEZZPK3N9SFW9H.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "60156" - }, - "appliesTo" : [ ] - }, - "WVXEZZPK3N9SFW9H.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "WVXEZZPK3N9SFW9H.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WVXEZZPK3N9SFW9H.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "WVXEZZPK3N9SFW9H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WVXEZZPK3N9SFW9H.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "WVXEZZPK3N9SFW9H.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1600000000" - }, - "appliesTo" : [ ] - }, - "WVXEZZPK3N9SFW9H.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "WVXEZZPK3N9SFW9H.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27682" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "ZTRYHCJDHUC65SBA" : { - "ZTRYHCJDHUC65SBA.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ZTRYHCJDHUC65SBA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZTRYHCJDHUC65SBA.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ZTRYHCJDHUC65SBA.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3721" - }, - "appliesTo" : [ ] - }, - "ZTRYHCJDHUC65SBA.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ZTRYHCJDHUC65SBA.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZTRYHCJDHUC65SBA.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ZTRYHCJDHUC65SBA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZTRYHCJDHUC65SBA.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ZTRYHCJDHUC65SBA.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1787" - }, - "appliesTo" : [ ] - }, - "ZTRYHCJDHUC65SBA.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ZTRYHCJDHUC65SBA.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZTRYHCJDHUC65SBA.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ZTRYHCJDHUC65SBA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZTRYHCJDHUC65SBA.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ZTRYHCJDHUC65SBA.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1874" - }, - "appliesTo" : [ ] - }, - "ZTRYHCJDHUC65SBA.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ZTRYHCJDHUC65SBA.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0713000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZTRYHCJDHUC65SBA.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ZTRYHCJDHUC65SBA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZTRYHCJDHUC65SBA.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ZTRYHCJDHUC65SBA.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1466000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZTRYHCJDHUC65SBA.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "ZTRYHCJDHUC65SBA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZTRYHCJDHUC65SBA.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "ZTRYHCJDHUC65SBA.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1395000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZTRYHCJDHUC65SBA.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ZTRYHCJDHUC65SBA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZTRYHCJDHUC65SBA.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ZTRYHCJDHUC65SBA.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ZTRYHCJDHUC65SBA.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ZTRYHCJDHUC65SBA.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3505" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZTRYHCJDHUC65SBA.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ZTRYHCJDHUC65SBA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZTRYHCJDHUC65SBA.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ZTRYHCJDHUC65SBA.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "730" - }, - "appliesTo" : [ ] - }, - "ZTRYHCJDHUC65SBA.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ZTRYHCJDHUC65SBA.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0833000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZTRYHCJDHUC65SBA.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ZTRYHCJDHUC65SBA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZTRYHCJDHUC65SBA.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ZTRYHCJDHUC65SBA.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1704000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZTRYHCJDHUC65SBA.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ZTRYHCJDHUC65SBA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZTRYHCJDHUC65SBA.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ZTRYHCJDHUC65SBA.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ZTRYHCJDHUC65SBA.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ZTRYHCJDHUC65SBA.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1363" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZTRYHCJDHUC65SBA.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ZTRYHCJDHUC65SBA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZTRYHCJDHUC65SBA.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ZTRYHCJDHUC65SBA.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1601000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZTRYHCJDHUC65SBA.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ZTRYHCJDHUC65SBA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZTRYHCJDHUC65SBA.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ZTRYHCJDHUC65SBA.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1447" - }, - "appliesTo" : [ ] - }, - "ZTRYHCJDHUC65SBA.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ZTRYHCJDHUC65SBA.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZTRYHCJDHUC65SBA.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ZTRYHCJDHUC65SBA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZTRYHCJDHUC65SBA.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ZTRYHCJDHUC65SBA.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "687" - }, - "appliesTo" : [ ] - }, - "ZTRYHCJDHUC65SBA.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ZTRYHCJDHUC65SBA.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0785000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "DRMGTKKSRFBNB2TD" : { - "DRMGTKKSRFBNB2TD.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "DRMGTKKSRFBNB2TD", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "DRMGTKKSRFBNB2TD.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "DRMGTKKSRFBNB2TD.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2267" - }, - "appliesTo" : [ ] - }, - "DRMGTKKSRFBNB2TD.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "DRMGTKKSRFBNB2TD.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DRMGTKKSRFBNB2TD.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "DRMGTKKSRFBNB2TD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DRMGTKKSRFBNB2TD.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "DRMGTKKSRFBNB2TD.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DRMGTKKSRFBNB2TD.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "DRMGTKKSRFBNB2TD", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "DRMGTKKSRFBNB2TD.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "DRMGTKKSRFBNB2TD.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5001" - }, - "appliesTo" : [ ] - }, - "DRMGTKKSRFBNB2TD.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "DRMGTKKSRFBNB2TD.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DRMGTKKSRFBNB2TD.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "DRMGTKKSRFBNB2TD", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "DRMGTKKSRFBNB2TD.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "DRMGTKKSRFBNB2TD.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3054" - }, - "appliesTo" : [ ] - }, - "DRMGTKKSRFBNB2TD.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "DRMGTKKSRFBNB2TD.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DRMGTKKSRFBNB2TD.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "DRMGTKKSRFBNB2TD", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "DRMGTKKSRFBNB2TD.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "DRMGTKKSRFBNB2TD.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2159" - }, - "appliesTo" : [ ] - }, - "DRMGTKKSRFBNB2TD.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "DRMGTKKSRFBNB2TD.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DRMGTKKSRFBNB2TD.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "DRMGTKKSRFBNB2TD", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "DRMGTKKSRFBNB2TD.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "DRMGTKKSRFBNB2TD.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6291" - }, - "appliesTo" : [ ] - }, - "DRMGTKKSRFBNB2TD.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "DRMGTKKSRFBNB2TD.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DRMGTKKSRFBNB2TD.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "DRMGTKKSRFBNB2TD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DRMGTKKSRFBNB2TD.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "DRMGTKKSRFBNB2TD.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "994" - }, - "appliesTo" : [ ] - }, - "DRMGTKKSRFBNB2TD.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "DRMGTKKSRFBNB2TD.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DRMGTKKSRFBNB2TD.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "DRMGTKKSRFBNB2TD", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "DRMGTKKSRFBNB2TD.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "DRMGTKKSRFBNB2TD.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DRMGTKKSRFBNB2TD.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "DRMGTKKSRFBNB2TD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DRMGTKKSRFBNB2TD.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "DRMGTKKSRFBNB2TD.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "DRMGTKKSRFBNB2TD.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "DRMGTKKSRFBNB2TD.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2474" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DRMGTKKSRFBNB2TD.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "DRMGTKKSRFBNB2TD", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "DRMGTKKSRFBNB2TD.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "DRMGTKKSRFBNB2TD.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DRMGTKKSRFBNB2TD.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "DRMGTKKSRFBNB2TD", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "DRMGTKKSRFBNB2TD.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "DRMGTKKSRFBNB2TD.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1131" - }, - "appliesTo" : [ ] - }, - "DRMGTKKSRFBNB2TD.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "DRMGTKKSRFBNB2TD.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "B94BJ9BKFE3BAMJW" : { - "B94BJ9BKFE3BAMJW.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "B94BJ9BKFE3BAMJW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "B94BJ9BKFE3BAMJW.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "B94BJ9BKFE3BAMJW.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "B94BJ9BKFE3BAMJW.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "B94BJ9BKFE3BAMJW", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "B94BJ9BKFE3BAMJW.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "B94BJ9BKFE3BAMJW.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12673" - }, - "appliesTo" : [ ] - }, - "B94BJ9BKFE3BAMJW.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "B94BJ9BKFE3BAMJW.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "B94BJ9BKFE3BAMJW.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "B94BJ9BKFE3BAMJW", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "B94BJ9BKFE3BAMJW.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "B94BJ9BKFE3BAMJW.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22959" - }, - "appliesTo" : [ ] - }, - "B94BJ9BKFE3BAMJW.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "B94BJ9BKFE3BAMJW.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "B94BJ9BKFE3BAMJW.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "B94BJ9BKFE3BAMJW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "B94BJ9BKFE3BAMJW.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "B94BJ9BKFE3BAMJW.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11232" - }, - "appliesTo" : [ ] - }, - "B94BJ9BKFE3BAMJW.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "B94BJ9BKFE3BAMJW.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "B94BJ9BKFE3BAMJW.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "B94BJ9BKFE3BAMJW", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "B94BJ9BKFE3BAMJW.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "B94BJ9BKFE3BAMJW.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7396" - }, - "appliesTo" : [ ] - }, - "B94BJ9BKFE3BAMJW.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "B94BJ9BKFE3BAMJW.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "J5XXRJGFYZHJVQZJ" : { - "J5XXRJGFYZHJVQZJ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "J5XXRJGFYZHJVQZJ", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "J5XXRJGFYZHJVQZJ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "J5XXRJGFYZHJVQZJ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1963" - }, - "appliesTo" : [ ] - }, - "J5XXRJGFYZHJVQZJ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "J5XXRJGFYZHJVQZJ.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "J5XXRJGFYZHJVQZJ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "J5XXRJGFYZHJVQZJ", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "J5XXRJGFYZHJVQZJ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "J5XXRJGFYZHJVQZJ.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "J5XXRJGFYZHJVQZJ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "J5XXRJGFYZHJVQZJ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4172" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "J5XXRJGFYZHJVQZJ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "J5XXRJGFYZHJVQZJ", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "J5XXRJGFYZHJVQZJ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "J5XXRJGFYZHJVQZJ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3065" - }, - "appliesTo" : [ ] - }, - "J5XXRJGFYZHJVQZJ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "J5XXRJGFYZHJVQZJ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "J5XXRJGFYZHJVQZJ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "J5XXRJGFYZHJVQZJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J5XXRJGFYZHJVQZJ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "J5XXRJGFYZHJVQZJ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1771" - }, - "appliesTo" : [ ] - }, - "J5XXRJGFYZHJVQZJ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "J5XXRJGFYZHJVQZJ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "J5XXRJGFYZHJVQZJ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "J5XXRJGFYZHJVQZJ", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "J5XXRJGFYZHJVQZJ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "J5XXRJGFYZHJVQZJ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "J5XXRJGFYZHJVQZJ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "J5XXRJGFYZHJVQZJ", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "J5XXRJGFYZHJVQZJ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "J5XXRJGFYZHJVQZJ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "J5XXRJGFYZHJVQZJ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "J5XXRJGFYZHJVQZJ", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "J5XXRJGFYZHJVQZJ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "J5XXRJGFYZHJVQZJ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0630000000" - }, - "appliesTo" : [ ] - }, - "J5XXRJGFYZHJVQZJ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "J5XXRJGFYZHJVQZJ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1028" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "J5XXRJGFYZHJVQZJ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "J5XXRJGFYZHJVQZJ", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "J5XXRJGFYZHJVQZJ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "J5XXRJGFYZHJVQZJ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "J5XXRJGFYZHJVQZJ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "J5XXRJGFYZHJVQZJ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1545" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "J5XXRJGFYZHJVQZJ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "J5XXRJGFYZHJVQZJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J5XXRJGFYZHJVQZJ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "J5XXRJGFYZHJVQZJ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "J5XXRJGFYZHJVQZJ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "J5XXRJGFYZHJVQZJ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "J5XXRJGFYZHJVQZJ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "J5XXRJGFYZHJVQZJ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2776" - }, - "appliesTo" : [ ] - }, - "J5XXRJGFYZHJVQZJ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "J5XXRJGFYZHJVQZJ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "J5XXRJGFYZHJVQZJ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "J5XXRJGFYZHJVQZJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J5XXRJGFYZHJVQZJ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "J5XXRJGFYZHJVQZJ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "904" - }, - "appliesTo" : [ ] - }, - "J5XXRJGFYZHJVQZJ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "J5XXRJGFYZHJVQZJ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "SA3SBP2T8HCQWD6V" : { - "SA3SBP2T8HCQWD6V.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SA3SBP2T8HCQWD6V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SA3SBP2T8HCQWD6V.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SA3SBP2T8HCQWD6V.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SA3SBP2T8HCQWD6V.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SA3SBP2T8HCQWD6V.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22387" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SA3SBP2T8HCQWD6V.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SA3SBP2T8HCQWD6V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SA3SBP2T8HCQWD6V.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SA3SBP2T8HCQWD6V.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2870000000" - }, - "appliesTo" : [ ] - }, - "SA3SBP2T8HCQWD6V.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SA3SBP2T8HCQWD6V.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11274" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SA3SBP2T8HCQWD6V.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "SA3SBP2T8HCQWD6V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SA3SBP2T8HCQWD6V.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "SA3SBP2T8HCQWD6V.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SA3SBP2T8HCQWD6V.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "SA3SBP2T8HCQWD6V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SA3SBP2T8HCQWD6V.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "SA3SBP2T8HCQWD6V.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23570" - }, - "appliesTo" : [ ] - }, - "SA3SBP2T8HCQWD6V.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "SA3SBP2T8HCQWD6V.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SA3SBP2T8HCQWD6V.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "SA3SBP2T8HCQWD6V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SA3SBP2T8HCQWD6V.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "SA3SBP2T8HCQWD6V.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SA3SBP2T8HCQWD6V.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "SA3SBP2T8HCQWD6V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SA3SBP2T8HCQWD6V.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "SA3SBP2T8HCQWD6V.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3560000000" - }, - "appliesTo" : [ ] - }, - "SA3SBP2T8HCQWD6V.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "SA3SBP2T8HCQWD6V.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11877" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SA3SBP2T8HCQWD6V.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "SA3SBP2T8HCQWD6V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SA3SBP2T8HCQWD6V.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "SA3SBP2T8HCQWD6V.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "61133" - }, - "appliesTo" : [ ] - }, - "SA3SBP2T8HCQWD6V.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "SA3SBP2T8HCQWD6V.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SA3SBP2T8HCQWD6V.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SA3SBP2T8HCQWD6V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SA3SBP2T8HCQWD6V.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SA3SBP2T8HCQWD6V.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SA3SBP2T8HCQWD6V.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SA3SBP2T8HCQWD6V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SA3SBP2T8HCQWD6V.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SA3SBP2T8HCQWD6V.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29560" - }, - "appliesTo" : [ ] - }, - "SA3SBP2T8HCQWD6V.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SA3SBP2T8HCQWD6V.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SA3SBP2T8HCQWD6V.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "SA3SBP2T8HCQWD6V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SA3SBP2T8HCQWD6V.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "SA3SBP2T8HCQWD6V.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30746" - }, - "appliesTo" : [ ] - }, - "SA3SBP2T8HCQWD6V.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "SA3SBP2T8HCQWD6V.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SA3SBP2T8HCQWD6V.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SA3SBP2T8HCQWD6V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SA3SBP2T8HCQWD6V.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SA3SBP2T8HCQWD6V.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "58184" - }, - "appliesTo" : [ ] - }, - "SA3SBP2T8HCQWD6V.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SA3SBP2T8HCQWD6V.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SA3SBP2T8HCQWD6V.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "SA3SBP2T8HCQWD6V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SA3SBP2T8HCQWD6V.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "SA3SBP2T8HCQWD6V.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "TTS386B2SXKQXGZP" : { - "TTS386B2SXKQXGZP.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TTS386B2SXKQXGZP", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "TTS386B2SXKQXGZP.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TTS386B2SXKQXGZP.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30527" - }, - "appliesTo" : [ ] - }, - "TTS386B2SXKQXGZP.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TTS386B2SXKQXGZP.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TTS386B2SXKQXGZP.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TTS386B2SXKQXGZP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TTS386B2SXKQXGZP.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TTS386B2SXKQXGZP.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TTS386B2SXKQXGZP.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "TTS386B2SXKQXGZP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TTS386B2SXKQXGZP.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "TTS386B2SXKQXGZP.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0176000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TTS386B2SXKQXGZP.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "TTS386B2SXKQXGZP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TTS386B2SXKQXGZP.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "TTS386B2SXKQXGZP.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25531" - }, - "appliesTo" : [ ] - }, - "TTS386B2SXKQXGZP.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "TTS386B2SXKQXGZP.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TTS386B2SXKQXGZP.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "TTS386B2SXKQXGZP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TTS386B2SXKQXGZP.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "TTS386B2SXKQXGZP.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12895" - }, - "appliesTo" : [ ] - }, - "TTS386B2SXKQXGZP.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "TTS386B2SXKQXGZP.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TTS386B2SXKQXGZP.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "TTS386B2SXKQXGZP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TTS386B2SXKQXGZP.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "TTS386B2SXKQXGZP.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TTS386B2SXKQXGZP.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "TTS386B2SXKQXGZP.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "63800" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TTS386B2SXKQXGZP.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "TTS386B2SXKQXGZP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TTS386B2SXKQXGZP.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "TTS386B2SXKQXGZP.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3878000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TTS386B2SXKQXGZP.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TTS386B2SXKQXGZP", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "TTS386B2SXKQXGZP.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TTS386B2SXKQXGZP.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12040" - }, - "appliesTo" : [ ] - }, - "TTS386B2SXKQXGZP.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TTS386B2SXKQXGZP.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TTS386B2SXKQXGZP.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "TTS386B2SXKQXGZP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TTS386B2SXKQXGZP.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "TTS386B2SXKQXGZP.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2236000000" - }, - "appliesTo" : [ ] - }, - "TTS386B2SXKQXGZP.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "TTS386B2SXKQXGZP.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32156" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TTS386B2SXKQXGZP.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "TTS386B2SXKQXGZP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TTS386B2SXKQXGZP.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "TTS386B2SXKQXGZP.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5252000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TTS386B2SXKQXGZP.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TTS386B2SXKQXGZP", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "TTS386B2SXKQXGZP.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TTS386B2SXKQXGZP.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23856" - }, - "appliesTo" : [ ] - }, - "TTS386B2SXKQXGZP.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TTS386B2SXKQXGZP.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TTS386B2SXKQXGZP.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TTS386B2SXKQXGZP", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "TTS386B2SXKQXGZP.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TTS386B2SXKQXGZP.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "59712" - }, - "appliesTo" : [ ] - }, - "TTS386B2SXKQXGZP.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TTS386B2SXKQXGZP.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "6S9PZ5AUPX5MV74N" : { - "6S9PZ5AUPX5MV74N.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6S9PZ5AUPX5MV74N", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6S9PZ5AUPX5MV74N.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6S9PZ5AUPX5MV74N.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3548" - }, - "appliesTo" : [ ] - }, - "6S9PZ5AUPX5MV74N.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6S9PZ5AUPX5MV74N.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6S9PZ5AUPX5MV74N.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6S9PZ5AUPX5MV74N", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6S9PZ5AUPX5MV74N.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6S9PZ5AUPX5MV74N.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1609" - }, - "appliesTo" : [ ] - }, - "6S9PZ5AUPX5MV74N.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6S9PZ5AUPX5MV74N.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6S9PZ5AUPX5MV74N.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "6S9PZ5AUPX5MV74N", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "6S9PZ5AUPX5MV74N.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "6S9PZ5AUPX5MV74N.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1760" - }, - "appliesTo" : [ ] - }, - "6S9PZ5AUPX5MV74N.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "6S9PZ5AUPX5MV74N.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6S9PZ5AUPX5MV74N.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6S9PZ5AUPX5MV74N", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6S9PZ5AUPX5MV74N.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6S9PZ5AUPX5MV74N.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1130000000" - }, - "appliesTo" : [ ] - }, - "6S9PZ5AUPX5MV74N.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6S9PZ5AUPX5MV74N.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "652" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6S9PZ5AUPX5MV74N.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "6S9PZ5AUPX5MV74N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6S9PZ5AUPX5MV74N.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "6S9PZ5AUPX5MV74N.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1773" - }, - "appliesTo" : [ ] - }, - "6S9PZ5AUPX5MV74N.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "6S9PZ5AUPX5MV74N.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6S9PZ5AUPX5MV74N.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "6S9PZ5AUPX5MV74N", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "6S9PZ5AUPX5MV74N.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "6S9PZ5AUPX5MV74N.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6S9PZ5AUPX5MV74N.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "6S9PZ5AUPX5MV74N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6S9PZ5AUPX5MV74N.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "6S9PZ5AUPX5MV74N.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "637" - }, - "appliesTo" : [ ] - }, - "6S9PZ5AUPX5MV74N.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "6S9PZ5AUPX5MV74N.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6S9PZ5AUPX5MV74N.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6S9PZ5AUPX5MV74N", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6S9PZ5AUPX5MV74N.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6S9PZ5AUPX5MV74N.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6S9PZ5AUPX5MV74N.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6S9PZ5AUPX5MV74N", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6S9PZ5AUPX5MV74N.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6S9PZ5AUPX5MV74N.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1016" - }, - "appliesTo" : [ ] - }, - "6S9PZ5AUPX5MV74N.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6S9PZ5AUPX5MV74N.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6S9PZ5AUPX5MV74N.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "6S9PZ5AUPX5MV74N", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "6S9PZ5AUPX5MV74N.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "6S9PZ5AUPX5MV74N.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4499" - }, - "appliesTo" : [ ] - }, - "6S9PZ5AUPX5MV74N.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "6S9PZ5AUPX5MV74N.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6S9PZ5AUPX5MV74N.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "6S9PZ5AUPX5MV74N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6S9PZ5AUPX5MV74N.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "6S9PZ5AUPX5MV74N.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "XVYMD36W2Q986RBB" : { - "XVYMD36W2Q986RBB.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XVYMD36W2Q986RBB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XVYMD36W2Q986RBB.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XVYMD36W2Q986RBB.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0560000000" - }, - "appliesTo" : [ ] - }, - "XVYMD36W2Q986RBB.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XVYMD36W2Q986RBB.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "491" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XVYMD36W2Q986RBB.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XVYMD36W2Q986RBB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XVYMD36W2Q986RBB.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XVYMD36W2Q986RBB.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "965" - }, - "appliesTo" : [ ] - }, - "XVYMD36W2Q986RBB.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XVYMD36W2Q986RBB.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XVYMD36W2Q986RBB.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "XVYMD36W2Q986RBB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XVYMD36W2Q986RBB.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "XVYMD36W2Q986RBB.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XVYMD36W2Q986RBB.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XVYMD36W2Q986RBB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XVYMD36W2Q986RBB.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XVYMD36W2Q986RBB.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XVYMD36W2Q986RBB.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XVYMD36W2Q986RBB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XVYMD36W2Q986RBB.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XVYMD36W2Q986RBB.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1897" - }, - "appliesTo" : [ ] - }, - "XVYMD36W2Q986RBB.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XVYMD36W2Q986RBB.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XVYMD36W2Q986RBB.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XVYMD36W2Q986RBB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XVYMD36W2Q986RBB.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XVYMD36W2Q986RBB.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1001" - }, - "appliesTo" : [ ] - }, - "XVYMD36W2Q986RBB.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XVYMD36W2Q986RBB.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "3753VU7A9Z8KFJ3N" : { - "3753VU7A9Z8KFJ3N.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "3753VU7A9Z8KFJ3N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3753VU7A9Z8KFJ3N.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "3753VU7A9Z8KFJ3N.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9990000000" - }, - "appliesTo" : [ ] - }, - "3753VU7A9Z8KFJ3N.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "3753VU7A9Z8KFJ3N.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "52543" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3753VU7A9Z8KFJ3N.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "3753VU7A9Z8KFJ3N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3753VU7A9Z8KFJ3N.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "3753VU7A9Z8KFJ3N.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.1240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3753VU7A9Z8KFJ3N.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "3753VU7A9Z8KFJ3N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3753VU7A9Z8KFJ3N.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "3753VU7A9Z8KFJ3N.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "111714" - }, - "appliesTo" : [ ] - }, - "3753VU7A9Z8KFJ3N.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "3753VU7A9Z8KFJ3N.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3753VU7A9Z8KFJ3N.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "3753VU7A9Z8KFJ3N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3753VU7A9Z8KFJ3N.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "3753VU7A9Z8KFJ3N.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.1580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3753VU7A9Z8KFJ3N.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "3753VU7A9Z8KFJ3N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3753VU7A9Z8KFJ3N.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "3753VU7A9Z8KFJ3N.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.7410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3753VU7A9Z8KFJ3N.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "3753VU7A9Z8KFJ3N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3753VU7A9Z8KFJ3N.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "3753VU7A9Z8KFJ3N.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2580000000" - }, - "appliesTo" : [ ] - }, - "3753VU7A9Z8KFJ3N.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "3753VU7A9Z8KFJ3N.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28540" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3753VU7A9Z8KFJ3N.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "3753VU7A9Z8KFJ3N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3753VU7A9Z8KFJ3N.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "3753VU7A9Z8KFJ3N.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "51248" - }, - "appliesTo" : [ ] - }, - "3753VU7A9Z8KFJ3N.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "3753VU7A9Z8KFJ3N.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3753VU7A9Z8KFJ3N.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "3753VU7A9Z8KFJ3N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3753VU7A9Z8KFJ3N.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "3753VU7A9Z8KFJ3N.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "56291" - }, - "appliesTo" : [ ] - }, - "3753VU7A9Z8KFJ3N.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "3753VU7A9Z8KFJ3N.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3753VU7A9Z8KFJ3N.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "3753VU7A9Z8KFJ3N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3753VU7A9Z8KFJ3N.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "3753VU7A9Z8KFJ3N.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9640000000" - }, - "appliesTo" : [ ] - }, - "3753VU7A9Z8KFJ3N.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "3753VU7A9Z8KFJ3N.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25967" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3753VU7A9Z8KFJ3N.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "3753VU7A9Z8KFJ3N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3753VU7A9Z8KFJ3N.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "3753VU7A9Z8KFJ3N.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "56457" - }, - "appliesTo" : [ ] - }, - "3753VU7A9Z8KFJ3N.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "3753VU7A9Z8KFJ3N.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3753VU7A9Z8KFJ3N.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "3753VU7A9Z8KFJ3N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3753VU7A9Z8KFJ3N.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "3753VU7A9Z8KFJ3N.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "101954" - }, - "appliesTo" : [ ] - }, - "3753VU7A9Z8KFJ3N.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "3753VU7A9Z8KFJ3N.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3753VU7A9Z8KFJ3N.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "3753VU7A9Z8KFJ3N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3753VU7A9Z8KFJ3N.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "3753VU7A9Z8KFJ3N.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.4790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "TS9C3QP757SZ6Y65" : { - "TS9C3QP757SZ6Y65.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TS9C3QP757SZ6Y65", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TS9C3QP757SZ6Y65.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TS9C3QP757SZ6Y65.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TS9C3QP757SZ6Y65.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TS9C3QP757SZ6Y65", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "TS9C3QP757SZ6Y65.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TS9C3QP757SZ6Y65.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7900000000" - }, - "appliesTo" : [ ] - }, - "TS9C3QP757SZ6Y65.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TS9C3QP757SZ6Y65.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47052" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TS9C3QP757SZ6Y65.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "TS9C3QP757SZ6Y65", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TS9C3QP757SZ6Y65.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "TS9C3QP757SZ6Y65.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "94790" - }, - "appliesTo" : [ ] - }, - "TS9C3QP757SZ6Y65.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "TS9C3QP757SZ6Y65.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TS9C3QP757SZ6Y65.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TS9C3QP757SZ6Y65", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "TS9C3QP757SZ6Y65.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TS9C3QP757SZ6Y65.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TS9C3QP757SZ6Y65.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TS9C3QP757SZ6Y65.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "93768" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TS9C3QP757SZ6Y65.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "TS9C3QP757SZ6Y65", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TS9C3QP757SZ6Y65.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "TS9C3QP757SZ6Y65.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6313000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TS9C3QP757SZ6Y65.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TS9C3QP757SZ6Y65", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "TS9C3QP757SZ6Y65.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TS9C3QP757SZ6Y65.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32244" - }, - "appliesTo" : [ ] - }, - "TS9C3QP757SZ6Y65.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TS9C3QP757SZ6Y65.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TS9C3QP757SZ6Y65.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TS9C3QP757SZ6Y65", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "TS9C3QP757SZ6Y65.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TS9C3QP757SZ6Y65.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16150" - }, - "appliesTo" : [ ] - }, - "TS9C3QP757SZ6Y65.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TS9C3QP757SZ6Y65.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TS9C3QP757SZ6Y65.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "TS9C3QP757SZ6Y65", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TS9C3QP757SZ6Y65.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "TS9C3QP757SZ6Y65.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32663" - }, - "appliesTo" : [ ] - }, - "TS9C3QP757SZ6Y65.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "TS9C3QP757SZ6Y65.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TS9C3QP757SZ6Y65.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "TS9C3QP757SZ6Y65", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TS9C3QP757SZ6Y65.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "TS9C3QP757SZ6Y65.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TS9C3QP757SZ6Y65.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "TS9C3QP757SZ6Y65", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TS9C3QP757SZ6Y65.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "TS9C3QP757SZ6Y65.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47459" - }, - "appliesTo" : [ ] - }, - "TS9C3QP757SZ6Y65.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "TS9C3QP757SZ6Y65.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8059000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TS9C3QP757SZ6Y65.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "TS9C3QP757SZ6Y65", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TS9C3QP757SZ6Y65.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "TS9C3QP757SZ6Y65.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16364" - }, - "appliesTo" : [ ] - }, - "TS9C3QP757SZ6Y65.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "TS9C3QP757SZ6Y65.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TS9C3QP757SZ6Y65.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "TS9C3QP757SZ6Y65", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TS9C3QP757SZ6Y65.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "TS9C3QP757SZ6Y65.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7544000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "8SB633RNEF7QTBRF" : { - "8SB633RNEF7QTBRF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "8SB633RNEF7QTBRF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "8SB633RNEF7QTBRF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "8SB633RNEF7QTBRF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8202" - }, - "appliesTo" : [ ] - }, - "8SB633RNEF7QTBRF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "8SB633RNEF7QTBRF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8SB633RNEF7QTBRF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "8SB633RNEF7QTBRF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "8SB633RNEF7QTBRF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "8SB633RNEF7QTBRF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14015" - }, - "appliesTo" : [ ] - }, - "8SB633RNEF7QTBRF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "8SB633RNEF7QTBRF.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8SB633RNEF7QTBRF.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "8SB633RNEF7QTBRF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8SB633RNEF7QTBRF.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "8SB633RNEF7QTBRF.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8SB633RNEF7QTBRF.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "8SB633RNEF7QTBRF", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "8SB633RNEF7QTBRF.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "8SB633RNEF7QTBRF.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6280000000" - }, - "appliesTo" : [ ] - }, - "8SB633RNEF7QTBRF.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "8SB633RNEF7QTBRF.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22009" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8SB633RNEF7QTBRF.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "8SB633RNEF7QTBRF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8SB633RNEF7QTBRF.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "8SB633RNEF7QTBRF.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8217" - }, - "appliesTo" : [ ] - }, - "8SB633RNEF7QTBRF.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "8SB633RNEF7QTBRF.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8SB633RNEF7QTBRF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "8SB633RNEF7QTBRF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "8SB633RNEF7QTBRF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "8SB633RNEF7QTBRF.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5430000000" - }, - "appliesTo" : [ ] - }, - "8SB633RNEF7QTBRF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "8SB633RNEF7QTBRF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12443" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8SB633RNEF7QTBRF.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "8SB633RNEF7QTBRF", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "8SB633RNEF7QTBRF.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "8SB633RNEF7QTBRF.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37710" - }, - "appliesTo" : [ ] - }, - "8SB633RNEF7QTBRF.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "8SB633RNEF7QTBRF.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8SB633RNEF7QTBRF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "8SB633RNEF7QTBRF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "8SB633RNEF7QTBRF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "8SB633RNEF7QTBRF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25119" - }, - "appliesTo" : [ ] - }, - "8SB633RNEF7QTBRF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "8SB633RNEF7QTBRF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8SB633RNEF7QTBRF.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "8SB633RNEF7QTBRF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8SB633RNEF7QTBRF.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "8SB633RNEF7QTBRF.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16050" - }, - "appliesTo" : [ ] - }, - "8SB633RNEF7QTBRF.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "8SB633RNEF7QTBRF.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8SB633RNEF7QTBRF.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "8SB633RNEF7QTBRF", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "8SB633RNEF7QTBRF.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "8SB633RNEF7QTBRF.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8SB633RNEF7QTBRF.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "8SB633RNEF7QTBRF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "8SB633RNEF7QTBRF.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "8SB633RNEF7QTBRF.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "AWHZBBETT4RF387X" : { - "AWHZBBETT4RF387X.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "AWHZBBETT4RF387X", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "AWHZBBETT4RF387X.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "AWHZBBETT4RF387X.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5017" - }, - "appliesTo" : [ ] - }, - "AWHZBBETT4RF387X.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "AWHZBBETT4RF387X.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AWHZBBETT4RF387X.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "AWHZBBETT4RF387X", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "AWHZBBETT4RF387X.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "AWHZBBETT4RF387X.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2046" - }, - "appliesTo" : [ ] - }, - "AWHZBBETT4RF387X.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "AWHZBBETT4RF387X.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AWHZBBETT4RF387X.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "AWHZBBETT4RF387X", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "AWHZBBETT4RF387X.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "AWHZBBETT4RF387X.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2570000000" - }, - "appliesTo" : [ ] - }, - "AWHZBBETT4RF387X.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "AWHZBBETT4RF387X.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4511" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AWHZBBETT4RF387X.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "AWHZBBETT4RF387X", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "AWHZBBETT4RF387X.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "AWHZBBETT4RF387X.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "AWHZBBETT4RF387X.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "AWHZBBETT4RF387X", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "AWHZBBETT4RF387X.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "AWHZBBETT4RF387X.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "AWHZBBETT4RF387X.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "AWHZBBETT4RF387X.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10598" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "G6V333UDG5YNV6DP" : { - "G6V333UDG5YNV6DP.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "G6V333UDG5YNV6DP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "G6V333UDG5YNV6DP.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "G6V333UDG5YNV6DP.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32750" - }, - "appliesTo" : [ ] - }, - "G6V333UDG5YNV6DP.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "G6V333UDG5YNV6DP.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "G6V333UDG5YNV6DP.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "G6V333UDG5YNV6DP", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "G6V333UDG5YNV6DP.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "G6V333UDG5YNV6DP.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "48172" - }, - "appliesTo" : [ ] - }, - "G6V333UDG5YNV6DP.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "G6V333UDG5YNV6DP.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "G6V333UDG5YNV6DP.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "G6V333UDG5YNV6DP", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "G6V333UDG5YNV6DP.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "G6V333UDG5YNV6DP.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "G6V333UDG5YNV6DP.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "G6V333UDG5YNV6DP", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "G6V333UDG5YNV6DP.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "G6V333UDG5YNV6DP.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "G6V333UDG5YNV6DP.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "G6V333UDG5YNV6DP.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "96188" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "G6V333UDG5YNV6DP.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "G6V333UDG5YNV6DP", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "G6V333UDG5YNV6DP.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "G6V333UDG5YNV6DP.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "94005" - }, - "appliesTo" : [ ] - }, - "G6V333UDG5YNV6DP.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "G6V333UDG5YNV6DP.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "G6V333UDG5YNV6DP.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "G6V333UDG5YNV6DP", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "G6V333UDG5YNV6DP.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "G6V333UDG5YNV6DP.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "G6V333UDG5YNV6DP.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "G6V333UDG5YNV6DP.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32347" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "G6V333UDG5YNV6DP.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "G6V333UDG5YNV6DP", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "G6V333UDG5YNV6DP.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "G6V333UDG5YNV6DP.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47178" - }, - "appliesTo" : [ ] - }, - "G6V333UDG5YNV6DP.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "G6V333UDG5YNV6DP.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "G6V333UDG5YNV6DP.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "G6V333UDG5YNV6DP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "G6V333UDG5YNV6DP.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "G6V333UDG5YNV6DP.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "G6V333UDG5YNV6DP.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "G6V333UDG5YNV6DP", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "G6V333UDG5YNV6DP.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "G6V333UDG5YNV6DP.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "G6V333UDG5YNV6DP.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "G6V333UDG5YNV6DP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "G6V333UDG5YNV6DP.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "G6V333UDG5YNV6DP.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16408" - }, - "appliesTo" : [ ] - }, - "G6V333UDG5YNV6DP.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "G6V333UDG5YNV6DP.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "G6V333UDG5YNV6DP.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "G6V333UDG5YNV6DP", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "G6V333UDG5YNV6DP.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "G6V333UDG5YNV6DP.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8500000000" - }, - "appliesTo" : [ ] - }, - "G6V333UDG5YNV6DP.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "G6V333UDG5YNV6DP.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16202" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "3H63S5QV423QAHHQ" : { - "3H63S5QV423QAHHQ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "3H63S5QV423QAHHQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3H63S5QV423QAHHQ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "3H63S5QV423QAHHQ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3H63S5QV423QAHHQ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "3H63S5QV423QAHHQ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "3H63S5QV423QAHHQ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "3H63S5QV423QAHHQ.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "3H63S5QV423QAHHQ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "3H63S5QV423QAHHQ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25445" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3H63S5QV423QAHHQ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "3H63S5QV423QAHHQ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "3H63S5QV423QAHHQ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "3H63S5QV423QAHHQ.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0759000000" - }, - "appliesTo" : [ ] - }, - "3H63S5QV423QAHHQ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "3H63S5QV423QAHHQ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28275" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3H63S5QV423QAHHQ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "3H63S5QV423QAHHQ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "3H63S5QV423QAHHQ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "3H63S5QV423QAHHQ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32518" - }, - "appliesTo" : [ ] - }, - "3H63S5QV423QAHHQ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "3H63S5QV423QAHHQ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2374000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3H63S5QV423QAHHQ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "3H63S5QV423QAHHQ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "3H63S5QV423QAHHQ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "3H63S5QV423QAHHQ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3H63S5QV423QAHHQ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "3H63S5QV423QAHHQ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "3H63S5QV423QAHHQ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "3H63S5QV423QAHHQ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "3H63S5QV423QAHHQ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "3H63S5QV423QAHHQ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "53158" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3H63S5QV423QAHHQ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "3H63S5QV423QAHHQ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "3H63S5QV423QAHHQ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "3H63S5QV423QAHHQ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6727000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3H63S5QV423QAHHQ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "3H63S5QV423QAHHQ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "3H63S5QV423QAHHQ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "3H63S5QV423QAHHQ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12982" - }, - "appliesTo" : [ ] - }, - "3H63S5QV423QAHHQ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "3H63S5QV423QAHHQ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3H63S5QV423QAHHQ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "3H63S5QV423QAHHQ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "3H63S5QV423QAHHQ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "3H63S5QV423QAHHQ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1122000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3H63S5QV423QAHHQ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "3H63S5QV423QAHHQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3H63S5QV423QAHHQ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "3H63S5QV423QAHHQ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7043000000" - }, - "appliesTo" : [ ] - }, - "3H63S5QV423QAHHQ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "3H63S5QV423QAHHQ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14930" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3H63S5QV423QAHHQ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "3H63S5QV423QAHHQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3H63S5QV423QAHHQ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "3H63S5QV423QAHHQ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29262" - }, - "appliesTo" : [ ] - }, - "3H63S5QV423QAHHQ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "3H63S5QV423QAHHQ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3H63S5QV423QAHHQ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "3H63S5QV423QAHHQ", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "3H63S5QV423QAHHQ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "3H63S5QV423QAHHQ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "63735" - }, - "appliesTo" : [ ] - }, - "3H63S5QV423QAHHQ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "3H63S5QV423QAHHQ.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "64EUYDYDPNWKXQUX" : { - "64EUYDYDPNWKXQUX.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "64EUYDYDPNWKXQUX", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "64EUYDYDPNWKXQUX.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "64EUYDYDPNWKXQUX.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16924" - }, - "appliesTo" : [ ] - }, - "64EUYDYDPNWKXQUX.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "64EUYDYDPNWKXQUX.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "64EUYDYDPNWKXQUX.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "64EUYDYDPNWKXQUX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "64EUYDYDPNWKXQUX.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "64EUYDYDPNWKXQUX.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18886" - }, - "appliesTo" : [ ] - }, - "64EUYDYDPNWKXQUX.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "64EUYDYDPNWKXQUX.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "64EUYDYDPNWKXQUX.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "64EUYDYDPNWKXQUX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "64EUYDYDPNWKXQUX.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "64EUYDYDPNWKXQUX.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34682" - }, - "appliesTo" : [ ] - }, - "64EUYDYDPNWKXQUX.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "64EUYDYDPNWKXQUX.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "64EUYDYDPNWKXQUX.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "64EUYDYDPNWKXQUX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "64EUYDYDPNWKXQUX.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "64EUYDYDPNWKXQUX.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11213" - }, - "appliesTo" : [ ] - }, - "64EUYDYDPNWKXQUX.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "64EUYDYDPNWKXQUX.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "64EUYDYDPNWKXQUX.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "64EUYDYDPNWKXQUX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "64EUYDYDPNWKXQUX.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "64EUYDYDPNWKXQUX.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "URVKD93M9ZPEGG7Z" : { - "URVKD93M9ZPEGG7Z.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "URVKD93M9ZPEGG7Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "URVKD93M9ZPEGG7Z.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "URVKD93M9ZPEGG7Z.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.5870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "URVKD93M9ZPEGG7Z.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "URVKD93M9ZPEGG7Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "URVKD93M9ZPEGG7Z.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "URVKD93M9ZPEGG7Z.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39447" - }, - "appliesTo" : [ ] - }, - "URVKD93M9ZPEGG7Z.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "URVKD93M9ZPEGG7Z.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.6330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "URVKD93M9ZPEGG7Z.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "URVKD93M9ZPEGG7Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "URVKD93M9ZPEGG7Z.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "URVKD93M9ZPEGG7Z.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "78456" - }, - "appliesTo" : [ ] - }, - "URVKD93M9ZPEGG7Z.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "URVKD93M9ZPEGG7Z.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "URVKD93M9ZPEGG7Z.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "URVKD93M9ZPEGG7Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "URVKD93M9ZPEGG7Z.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "URVKD93M9ZPEGG7Z.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34302" - }, - "appliesTo" : [ ] - }, - "URVKD93M9ZPEGG7Z.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "URVKD93M9ZPEGG7Z.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.0460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "URVKD93M9ZPEGG7Z.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "URVKD93M9ZPEGG7Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "URVKD93M9ZPEGG7Z.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "URVKD93M9ZPEGG7Z.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.3530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "URVKD93M9ZPEGG7Z.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "URVKD93M9ZPEGG7Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "URVKD93M9ZPEGG7Z.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "URVKD93M9ZPEGG7Z.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4140000000" - }, - "appliesTo" : [ ] - }, - "URVKD93M9ZPEGG7Z.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "URVKD93M9ZPEGG7Z.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "60018" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "URVKD93M9ZPEGG7Z.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "URVKD93M9ZPEGG7Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "URVKD93M9ZPEGG7Z.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "URVKD93M9ZPEGG7Z.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "101532" - }, - "appliesTo" : [ ] - }, - "URVKD93M9ZPEGG7Z.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "URVKD93M9ZPEGG7Z.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "URVKD93M9ZPEGG7Z.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "URVKD93M9ZPEGG7Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "URVKD93M9ZPEGG7Z.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "URVKD93M9ZPEGG7Z.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.4200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "URVKD93M9ZPEGG7Z.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "URVKD93M9ZPEGG7Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "URVKD93M9ZPEGG7Z.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "URVKD93M9ZPEGG7Z.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "121051" - }, - "appliesTo" : [ ] - }, - "URVKD93M9ZPEGG7Z.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "URVKD93M9ZPEGG7Z.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "URVKD93M9ZPEGG7Z.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "URVKD93M9ZPEGG7Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "URVKD93M9ZPEGG7Z.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "URVKD93M9ZPEGG7Z.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.0630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "URVKD93M9ZPEGG7Z.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "URVKD93M9ZPEGG7Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "URVKD93M9ZPEGG7Z.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "URVKD93M9ZPEGG7Z.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "68371" - }, - "appliesTo" : [ ] - }, - "URVKD93M9ZPEGG7Z.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "URVKD93M9ZPEGG7Z.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "URVKD93M9ZPEGG7Z.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "URVKD93M9ZPEGG7Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "URVKD93M9ZPEGG7Z.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "URVKD93M9ZPEGG7Z.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "52189" - }, - "appliesTo" : [ ] - }, - "URVKD93M9ZPEGG7Z.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "URVKD93M9ZPEGG7Z.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "BUEPRDN9GYBNSP3F" : { - "BUEPRDN9GYBNSP3F.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "BUEPRDN9GYBNSP3F", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BUEPRDN9GYBNSP3F.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "BUEPRDN9GYBNSP3F.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "BUEPRDN9GYBNSP3F.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "BUEPRDN9GYBNSP3F.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "57691" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BUEPRDN9GYBNSP3F.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "BUEPRDN9GYBNSP3F", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BUEPRDN9GYBNSP3F.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "BUEPRDN9GYBNSP3F.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23653" - }, - "appliesTo" : [ ] - }, - "BUEPRDN9GYBNSP3F.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "BUEPRDN9GYBNSP3F.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BUEPRDN9GYBNSP3F.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "BUEPRDN9GYBNSP3F", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BUEPRDN9GYBNSP3F.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "BUEPRDN9GYBNSP3F.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29282" - }, - "appliesTo" : [ ] - }, - "BUEPRDN9GYBNSP3F.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "BUEPRDN9GYBNSP3F.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BUEPRDN9GYBNSP3F.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "BUEPRDN9GYBNSP3F", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BUEPRDN9GYBNSP3F.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "BUEPRDN9GYBNSP3F.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BUEPRDN9GYBNSP3F.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "BUEPRDN9GYBNSP3F", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BUEPRDN9GYBNSP3F.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "BUEPRDN9GYBNSP3F.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "45362" - }, - "appliesTo" : [ ] - }, - "BUEPRDN9GYBNSP3F.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "BUEPRDN9GYBNSP3F.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BUEPRDN9GYBNSP3F.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "BUEPRDN9GYBNSP3F", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BUEPRDN9GYBNSP3F.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "BUEPRDN9GYBNSP3F.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BUEPRDN9GYBNSP3F.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "BUEPRDN9GYBNSP3F", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BUEPRDN9GYBNSP3F.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "BUEPRDN9GYBNSP3F.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22041" - }, - "appliesTo" : [ ] - }, - "BUEPRDN9GYBNSP3F.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "BUEPRDN9GYBNSP3F.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BUEPRDN9GYBNSP3F.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "BUEPRDN9GYBNSP3F", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BUEPRDN9GYBNSP3F.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "BUEPRDN9GYBNSP3F.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11195" - }, - "appliesTo" : [ ] - }, - "BUEPRDN9GYBNSP3F.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "BUEPRDN9GYBNSP3F.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BUEPRDN9GYBNSP3F.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "BUEPRDN9GYBNSP3F", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BUEPRDN9GYBNSP3F.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "BUEPRDN9GYBNSP3F.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "BUEPRDN9GYBNSP3F.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "BUEPRDN9GYBNSP3F.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24616" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BUEPRDN9GYBNSP3F.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "BUEPRDN9GYBNSP3F", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BUEPRDN9GYBNSP3F.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "BUEPRDN9GYBNSP3F.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BUEPRDN9GYBNSP3F.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "BUEPRDN9GYBNSP3F", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "BUEPRDN9GYBNSP3F.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "BUEPRDN9GYBNSP3F.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BUEPRDN9GYBNSP3F.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "BUEPRDN9GYBNSP3F", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BUEPRDN9GYBNSP3F.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "BUEPRDN9GYBNSP3F.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12508" - }, - "appliesTo" : [ ] - }, - "BUEPRDN9GYBNSP3F.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "BUEPRDN9GYBNSP3F.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "N8NT76W8DSVFQXZF" : { - "N8NT76W8DSVFQXZF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "N8NT76W8DSVFQXZF", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "N8NT76W8DSVFQXZF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "N8NT76W8DSVFQXZF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1514248" - }, - "appliesTo" : [ ] - }, - "N8NT76W8DSVFQXZF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "N8NT76W8DSVFQXZF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "N8NT76W8DSVFQXZF.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "N8NT76W8DSVFQXZF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "N8NT76W8DSVFQXZF.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "N8NT76W8DSVFQXZF.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "58.1760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "N8NT76W8DSVFQXZF.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "N8NT76W8DSVFQXZF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "N8NT76W8DSVFQXZF.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "N8NT76W8DSVFQXZF.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "768079" - }, - "appliesTo" : [ ] - }, - "N8NT76W8DSVFQXZF.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "N8NT76W8DSVFQXZF.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "29.2270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "N8NT76W8DSVFQXZF.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "N8NT76W8DSVFQXZF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "N8NT76W8DSVFQXZF.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "N8NT76W8DSVFQXZF.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "58.8190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "N8NT76W8DSVFQXZF.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "N8NT76W8DSVFQXZF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N8NT76W8DSVFQXZF.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "N8NT76W8DSVFQXZF.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "549340" - }, - "appliesTo" : [ ] - }, - "N8NT76W8DSVFQXZF.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "N8NT76W8DSVFQXZF.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "N8NT76W8DSVFQXZF.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "N8NT76W8DSVFQXZF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "N8NT76W8DSVFQXZF.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "N8NT76W8DSVFQXZF.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "N8NT76W8DSVFQXZF.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "N8NT76W8DSVFQXZF.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1533757" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "N8NT76W8DSVFQXZF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "N8NT76W8DSVFQXZF", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "N8NT76W8DSVFQXZF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "N8NT76W8DSVFQXZF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "539261" - }, - "appliesTo" : [ ] - }, - "N8NT76W8DSVFQXZF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "N8NT76W8DSVFQXZF.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "N8NT76W8DSVFQXZF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "N8NT76W8DSVFQXZF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "N8NT76W8DSVFQXZF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "N8NT76W8DSVFQXZF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "760254" - }, - "appliesTo" : [ ] - }, - "N8NT76W8DSVFQXZF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "N8NT76W8DSVFQXZF.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "28.9290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "N8NT76W8DSVFQXZF.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "N8NT76W8DSVFQXZF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N8NT76W8DSVFQXZF.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "N8NT76W8DSVFQXZF.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "63.3400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "N8NT76W8DSVFQXZF.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "N8NT76W8DSVFQXZF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N8NT76W8DSVFQXZF.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "N8NT76W8DSVFQXZF.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "275459" - }, - "appliesTo" : [ ] - }, - "N8NT76W8DSVFQXZF.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "N8NT76W8DSVFQXZF.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "31.4450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "N8NT76W8DSVFQXZF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "N8NT76W8DSVFQXZF", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "N8NT76W8DSVFQXZF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "N8NT76W8DSVFQXZF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "270316" - }, - "appliesTo" : [ ] - }, - "N8NT76W8DSVFQXZF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "N8NT76W8DSVFQXZF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "30.8580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "N8NT76W8DSVFQXZF.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "N8NT76W8DSVFQXZF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "N8NT76W8DSVFQXZF.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "N8NT76W8DSVFQXZF.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "62.1070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "SZQV42HNDR8AXTGV" : { - "SZQV42HNDR8AXTGV.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SZQV42HNDR8AXTGV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SZQV42HNDR8AXTGV.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SZQV42HNDR8AXTGV.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "231790" - }, - "appliesTo" : [ ] - }, - "SZQV42HNDR8AXTGV.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SZQV42HNDR8AXTGV.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.8200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SZQV42HNDR8AXTGV.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SZQV42HNDR8AXTGV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SZQV42HNDR8AXTGV.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SZQV42HNDR8AXTGV.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "18.0790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SZQV42HNDR8AXTGV.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "SZQV42HNDR8AXTGV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SZQV42HNDR8AXTGV.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "SZQV42HNDR8AXTGV.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "17.8336000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SZQV42HNDR8AXTGV.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "SZQV42HNDR8AXTGV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SZQV42HNDR8AXTGV.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "SZQV42HNDR8AXTGV.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "233366" - }, - "appliesTo" : [ ] - }, - "SZQV42HNDR8AXTGV.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "SZQV42HNDR8AXTGV.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.8800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SZQV42HNDR8AXTGV.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SZQV42HNDR8AXTGV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SZQV42HNDR8AXTGV.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SZQV42HNDR8AXTGV.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "462318" - }, - "appliesTo" : [ ] - }, - "SZQV42HNDR8AXTGV.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SZQV42HNDR8AXTGV.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SZQV42HNDR8AXTGV.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SZQV42HNDR8AXTGV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SZQV42HNDR8AXTGV.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SZQV42HNDR8AXTGV.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "157648" - }, - "appliesTo" : [ ] - }, - "SZQV42HNDR8AXTGV.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SZQV42HNDR8AXTGV.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SZQV42HNDR8AXTGV.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SZQV42HNDR8AXTGV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SZQV42HNDR8AXTGV.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SZQV42HNDR8AXTGV.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.0100000000" - }, - "appliesTo" : [ ] - }, - "SZQV42HNDR8AXTGV.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SZQV42HNDR8AXTGV.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "78928" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SZQV42HNDR8AXTGV.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "SZQV42HNDR8AXTGV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SZQV42HNDR8AXTGV.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "SZQV42HNDR8AXTGV.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "159168" - }, - "appliesTo" : [ ] - }, - "SZQV42HNDR8AXTGV.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "SZQV42HNDR8AXTGV.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SZQV42HNDR8AXTGV.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "SZQV42HNDR8AXTGV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SZQV42HNDR8AXTGV.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "SZQV42HNDR8AXTGV.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "18.2649000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SZQV42HNDR8AXTGV.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "SZQV42HNDR8AXTGV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SZQV42HNDR8AXTGV.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "SZQV42HNDR8AXTGV.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.0985000000" - }, - "appliesTo" : [ ] - }, - "SZQV42HNDR8AXTGV.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "SZQV42HNDR8AXTGV.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "79703" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SZQV42HNDR8AXTGV.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "SZQV42HNDR8AXTGV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SZQV42HNDR8AXTGV.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "SZQV42HNDR8AXTGV.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "17.7040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SZQV42HNDR8AXTGV.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "SZQV42HNDR8AXTGV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SZQV42HNDR8AXTGV.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "SZQV42HNDR8AXTGV.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "466249" - }, - "appliesTo" : [ ] - }, - "SZQV42HNDR8AXTGV.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "SZQV42HNDR8AXTGV.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "3S465DABJFVVXWJG" : { - "3S465DABJFVVXWJG.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "3S465DABJFVVXWJG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3S465DABJFVVXWJG.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "3S465DABJFVVXWJG.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15601" - }, - "appliesTo" : [ ] - }, - "3S465DABJFVVXWJG.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "3S465DABJFVVXWJG.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3S465DABJFVVXWJG.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "3S465DABJFVVXWJG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3S465DABJFVVXWJG.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "3S465DABJFVVXWJG.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "3S465DABJFVVXWJG.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "3S465DABJFVVXWJG.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38644" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3S465DABJFVVXWJG.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "3S465DABJFVVXWJG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3S465DABJFVVXWJG.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "3S465DABJFVVXWJG.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3S465DABJFVVXWJG.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "3S465DABJFVVXWJG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3S465DABJFVVXWJG.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "3S465DABJFVVXWJG.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16900" - }, - "appliesTo" : [ ] - }, - "3S465DABJFVVXWJG.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "3S465DABJFVVXWJG.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3S465DABJFVVXWJG.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "3S465DABJFVVXWJG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3S465DABJFVVXWJG.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "3S465DABJFVVXWJG.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32746" - }, - "appliesTo" : [ ] - }, - "3S465DABJFVVXWJG.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "3S465DABJFVVXWJG.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3S465DABJFVVXWJG.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "3S465DABJFVVXWJG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3S465DABJFVVXWJG.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "3S465DABJFVVXWJG.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17973" - }, - "appliesTo" : [ ] - }, - "3S465DABJFVVXWJG.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "3S465DABJFVVXWJG.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3S465DABJFVVXWJG.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "3S465DABJFVVXWJG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3S465DABJFVVXWJG.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "3S465DABJFVVXWJG.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3S465DABJFVVXWJG.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "3S465DABJFVVXWJG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3S465DABJFVVXWJG.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "3S465DABJFVVXWJG.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1860000000" - }, - "appliesTo" : [ ] - }, - "3S465DABJFVVXWJG.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "3S465DABJFVVXWJG.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9248" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3S465DABJFVVXWJG.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "3S465DABJFVVXWJG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3S465DABJFVVXWJG.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "3S465DABJFVVXWJG.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3S465DABJFVVXWJG.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "3S465DABJFVVXWJG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3S465DABJFVVXWJG.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "3S465DABJFVVXWJG.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0480000000" - }, - "appliesTo" : [ ] - }, - "3S465DABJFVVXWJG.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "3S465DABJFVVXWJG.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8042" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3S465DABJFVVXWJG.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "3S465DABJFVVXWJG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3S465DABJFVVXWJG.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "3S465DABJFVVXWJG.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3S465DABJFVVXWJG.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "3S465DABJFVVXWJG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3S465DABJFVVXWJG.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "3S465DABJFVVXWJG.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "3S465DABJFVVXWJG.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "3S465DABJFVVXWJG.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19265" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "W4HNTDUW2525QNYX" : { - "W4HNTDUW2525QNYX.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "W4HNTDUW2525QNYX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W4HNTDUW2525QNYX.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "W4HNTDUW2525QNYX.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5050000000" - }, - "appliesTo" : [ ] - }, - "W4HNTDUW2525QNYX.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "W4HNTDUW2525QNYX.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4423" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "W4HNTDUW2525QNYX.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "W4HNTDUW2525QNYX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W4HNTDUW2525QNYX.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "W4HNTDUW2525QNYX.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9007" - }, - "appliesTo" : [ ] - }, - "W4HNTDUW2525QNYX.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "W4HNTDUW2525QNYX.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "W4HNTDUW2525QNYX.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "W4HNTDUW2525QNYX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W4HNTDUW2525QNYX.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "W4HNTDUW2525QNYX.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17077" - }, - "appliesTo" : [ ] - }, - "W4HNTDUW2525QNYX.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "W4HNTDUW2525QNYX.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "W4HNTDUW2525QNYX.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "W4HNTDUW2525QNYX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W4HNTDUW2525QNYX.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "W4HNTDUW2525QNYX.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "W4HNTDUW2525QNYX.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "W4HNTDUW2525QNYX.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8685" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "W4HNTDUW2525QNYX.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "W4HNTDUW2525QNYX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W4HNTDUW2525QNYX.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "W4HNTDUW2525QNYX.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "W4HNTDUW2525QNYX.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "W4HNTDUW2525QNYX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W4HNTDUW2525QNYX.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "W4HNTDUW2525QNYX.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "GTJ44D58C728KCTE" : { - "GTJ44D58C728KCTE.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "GTJ44D58C728KCTE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GTJ44D58C728KCTE.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "GTJ44D58C728KCTE.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34302" - }, - "appliesTo" : [ ] - }, - "GTJ44D58C728KCTE.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "GTJ44D58C728KCTE.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GTJ44D58C728KCTE.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "GTJ44D58C728KCTE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GTJ44D58C728KCTE.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "GTJ44D58C728KCTE.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "98116" - }, - "appliesTo" : [ ] - }, - "GTJ44D58C728KCTE.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "GTJ44D58C728KCTE.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GTJ44D58C728KCTE.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "GTJ44D58C728KCTE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GTJ44D58C728KCTE.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "GTJ44D58C728KCTE.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "GTJ44D58C728KCTE.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "GTJ44D58C728KCTE.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "67232" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GTJ44D58C728KCTE.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "GTJ44D58C728KCTE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GTJ44D58C728KCTE.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "GTJ44D58C728KCTE.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "52189" - }, - "appliesTo" : [ ] - }, - "GTJ44D58C728KCTE.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "GTJ44D58C728KCTE.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GTJ44D58C728KCTE.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "GTJ44D58C728KCTE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GTJ44D58C728KCTE.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "GTJ44D58C728KCTE.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.2230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GTJ44D58C728KCTE.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "GTJ44D58C728KCTE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GTJ44D58C728KCTE.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "GTJ44D58C728KCTE.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "FD2MYJ67QXPYJGHF" : { - "FD2MYJ67QXPYJGHF.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "FD2MYJ67QXPYJGHF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FD2MYJ67QXPYJGHF.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "FD2MYJ67QXPYJGHF.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13532" - }, - "appliesTo" : [ ] - }, - "FD2MYJ67QXPYJGHF.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "FD2MYJ67QXPYJGHF.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FD2MYJ67QXPYJGHF.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "FD2MYJ67QXPYJGHF", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "FD2MYJ67QXPYJGHF.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "FD2MYJ67QXPYJGHF.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20510" - }, - "appliesTo" : [ ] - }, - "FD2MYJ67QXPYJGHF.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "FD2MYJ67QXPYJGHF.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FD2MYJ67QXPYJGHF.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "FD2MYJ67QXPYJGHF", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "FD2MYJ67QXPYJGHF.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "FD2MYJ67QXPYJGHF.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FD2MYJ67QXPYJGHF.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "FD2MYJ67QXPYJGHF", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "FD2MYJ67QXPYJGHF.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "FD2MYJ67QXPYJGHF.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30941" - }, - "appliesTo" : [ ] - }, - "FD2MYJ67QXPYJGHF.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "FD2MYJ67QXPYJGHF.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FD2MYJ67QXPYJGHF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "FD2MYJ67QXPYJGHF", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "FD2MYJ67QXPYJGHF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "FD2MYJ67QXPYJGHF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23468" - }, - "appliesTo" : [ ] - }, - "FD2MYJ67QXPYJGHF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "FD2MYJ67QXPYJGHF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FD2MYJ67QXPYJGHF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "FD2MYJ67QXPYJGHF", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "FD2MYJ67QXPYJGHF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "FD2MYJ67QXPYJGHF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10932" - }, - "appliesTo" : [ ] - }, - "FD2MYJ67QXPYJGHF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "FD2MYJ67QXPYJGHF.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FD2MYJ67QXPYJGHF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "FD2MYJ67QXPYJGHF", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "FD2MYJ67QXPYJGHF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "FD2MYJ67QXPYJGHF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7248" - }, - "appliesTo" : [ ] - }, - "FD2MYJ67QXPYJGHF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "FD2MYJ67QXPYJGHF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FD2MYJ67QXPYJGHF.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "FD2MYJ67QXPYJGHF", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "FD2MYJ67QXPYJGHF.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "FD2MYJ67QXPYJGHF.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FD2MYJ67QXPYJGHF.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "FD2MYJ67QXPYJGHF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FD2MYJ67QXPYJGHF.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "FD2MYJ67QXPYJGHF.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FD2MYJ67QXPYJGHF.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "FD2MYJ67QXPYJGHF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FD2MYJ67QXPYJGHF.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "FD2MYJ67QXPYJGHF.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6838" - }, - "appliesTo" : [ ] - }, - "FD2MYJ67QXPYJGHF.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "FD2MYJ67QXPYJGHF.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FD2MYJ67QXPYJGHF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "FD2MYJ67QXPYJGHF", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "FD2MYJ67QXPYJGHF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "FD2MYJ67QXPYJGHF.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3800000000" - }, - "appliesTo" : [ ] - }, - "FD2MYJ67QXPYJGHF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "FD2MYJ67QXPYJGHF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14980" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "MR5MW694BZTU3QD6" : { - "MR5MW694BZTU3QD6.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "MR5MW694BZTU3QD6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MR5MW694BZTU3QD6.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "MR5MW694BZTU3QD6.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "31.4650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MR5MW694BZTU3QD6.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "MR5MW694BZTU3QD6", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "MR5MW694BZTU3QD6.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "MR5MW694BZTU3QD6.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "136873" - }, - "appliesTo" : [ ] - }, - "MR5MW694BZTU3QD6.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "MR5MW694BZTU3QD6.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.6250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MR5MW694BZTU3QD6.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "MR5MW694BZTU3QD6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MR5MW694BZTU3QD6.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "MR5MW694BZTU3QD6.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "32.1430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MR5MW694BZTU3QD6.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "MR5MW694BZTU3QD6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MR5MW694BZTU3QD6.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "MR5MW694BZTU3QD6.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "139701" - }, - "appliesTo" : [ ] - }, - "MR5MW694BZTU3QD6.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "MR5MW694BZTU3QD6.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.9480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MR5MW694BZTU3QD6.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "MR5MW694BZTU3QD6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MR5MW694BZTU3QD6.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "MR5MW694BZTU3QD6.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "29.3020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MR5MW694BZTU3QD6.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "MR5MW694BZTU3QD6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MR5MW694BZTU3QD6.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "MR5MW694BZTU3QD6.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "772758" - }, - "appliesTo" : [ ] - }, - "MR5MW694BZTU3QD6.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "MR5MW694BZTU3QD6.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MR5MW694BZTU3QD6.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "MR5MW694BZTU3QD6", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "MR5MW694BZTU3QD6.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "MR5MW694BZTU3QD6.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "762028" - }, - "appliesTo" : [ ] - }, - "MR5MW694BZTU3QD6.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "MR5MW694BZTU3QD6.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MR5MW694BZTU3QD6.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "MR5MW694BZTU3QD6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MR5MW694BZTU3QD6.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "MR5MW694BZTU3QD6.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "278534" - }, - "appliesTo" : [ ] - }, - "MR5MW694BZTU3QD6.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "MR5MW694BZTU3QD6.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MR5MW694BZTU3QD6.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "MR5MW694BZTU3QD6", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "MR5MW694BZTU3QD6.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "MR5MW694BZTU3QD6.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "382736" - }, - "appliesTo" : [ ] - }, - "MR5MW694BZTU3QD6.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "MR5MW694BZTU3QD6.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.5640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MR5MW694BZTU3QD6.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "MR5MW694BZTU3QD6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MR5MW694BZTU3QD6.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "MR5MW694BZTU3QD6.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "387039" - }, - "appliesTo" : [ ] - }, - "MR5MW694BZTU3QD6.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "MR5MW694BZTU3QD6.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.7280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MR5MW694BZTU3QD6.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "MR5MW694BZTU3QD6", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "MR5MW694BZTU3QD6.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "MR5MW694BZTU3QD6.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "272991" - }, - "appliesTo" : [ ] - }, - "MR5MW694BZTU3QD6.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "MR5MW694BZTU3QD6.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MR5MW694BZTU3QD6.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "MR5MW694BZTU3QD6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MR5MW694BZTU3QD6.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "MR5MW694BZTU3QD6.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "29.6560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "A64H3T6VVR3C4SUA" : { - "A64H3T6VVR3C4SUA.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "A64H3T6VVR3C4SUA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "A64H3T6VVR3C4SUA.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "A64H3T6VVR3C4SUA.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3019" - }, - "appliesTo" : [ ] - }, - "A64H3T6VVR3C4SUA.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "A64H3T6VVR3C4SUA.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "A64H3T6VVR3C4SUA.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "A64H3T6VVR3C4SUA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "A64H3T6VVR3C4SUA.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "A64H3T6VVR3C4SUA.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "959" - }, - "appliesTo" : [ ] - }, - "A64H3T6VVR3C4SUA.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "A64H3T6VVR3C4SUA.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2395000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "A64H3T6VVR3C4SUA.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "A64H3T6VVR3C4SUA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A64H3T6VVR3C4SUA.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "A64H3T6VVR3C4SUA.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "A64H3T6VVR3C4SUA.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "A64H3T6VVR3C4SUA.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3301" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "A64H3T6VVR3C4SUA.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "A64H3T6VVR3C4SUA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "A64H3T6VVR3C4SUA.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "A64H3T6VVR3C4SUA.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2904000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "A64H3T6VVR3C4SUA.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "A64H3T6VVR3C4SUA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A64H3T6VVR3C4SUA.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "A64H3T6VVR3C4SUA.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1103" - }, - "appliesTo" : [ ] - }, - "A64H3T6VVR3C4SUA.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "A64H3T6VVR3C4SUA.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2559000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "A64H3T6VVR3C4SUA.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "A64H3T6VVR3C4SUA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A64H3T6VVR3C4SUA.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "A64H3T6VVR3C4SUA.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3945000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "A64H3T6VVR3C4SUA.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "A64H3T6VVR3C4SUA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "A64H3T6VVR3C4SUA.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "A64H3T6VVR3C4SUA.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "A64H3T6VVR3C4SUA.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "A64H3T6VVR3C4SUA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "A64H3T6VVR3C4SUA.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "A64H3T6VVR3C4SUA.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7814" - }, - "appliesTo" : [ ] - }, - "A64H3T6VVR3C4SUA.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "A64H3T6VVR3C4SUA.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "A64H3T6VVR3C4SUA.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "A64H3T6VVR3C4SUA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "A64H3T6VVR3C4SUA.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "A64H3T6VVR3C4SUA.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2042000000" - }, - "appliesTo" : [ ] - }, - "A64H3T6VVR3C4SUA.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "A64H3T6VVR3C4SUA.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1951" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "A64H3T6VVR3C4SUA.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "A64H3T6VVR3C4SUA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "A64H3T6VVR3C4SUA.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "A64H3T6VVR3C4SUA.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2244" - }, - "appliesTo" : [ ] - }, - "A64H3T6VVR3C4SUA.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "A64H3T6VVR3C4SUA.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2154000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "A64H3T6VVR3C4SUA.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "A64H3T6VVR3C4SUA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "A64H3T6VVR3C4SUA.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "A64H3T6VVR3C4SUA.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3144000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "A64H3T6VVR3C4SUA.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "A64H3T6VVR3C4SUA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "A64H3T6VVR3C4SUA.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "A64H3T6VVR3C4SUA.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7084" - }, - "appliesTo" : [ ] - }, - "A64H3T6VVR3C4SUA.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "A64H3T6VVR3C4SUA.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "V2ZSDPZ5ANEBUE99" : { - "V2ZSDPZ5ANEBUE99.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "V2ZSDPZ5ANEBUE99", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "V2ZSDPZ5ANEBUE99.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "V2ZSDPZ5ANEBUE99.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "V2ZSDPZ5ANEBUE99.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "V2ZSDPZ5ANEBUE99.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2970" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "V2ZSDPZ5ANEBUE99.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "V2ZSDPZ5ANEBUE99", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "V2ZSDPZ5ANEBUE99.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "V2ZSDPZ5ANEBUE99.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1796" - }, - "appliesTo" : [ ] - }, - "V2ZSDPZ5ANEBUE99.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "V2ZSDPZ5ANEBUE99.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "V2ZSDPZ5ANEBUE99.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "V2ZSDPZ5ANEBUE99", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "V2ZSDPZ5ANEBUE99.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "V2ZSDPZ5ANEBUE99.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5741" - }, - "appliesTo" : [ ] - }, - "V2ZSDPZ5ANEBUE99.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "V2ZSDPZ5ANEBUE99.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "V2ZSDPZ5ANEBUE99.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "V2ZSDPZ5ANEBUE99", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "V2ZSDPZ5ANEBUE99.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "V2ZSDPZ5ANEBUE99.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2876" - }, - "appliesTo" : [ ] - }, - "V2ZSDPZ5ANEBUE99.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "V2ZSDPZ5ANEBUE99.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "V2ZSDPZ5ANEBUE99.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "V2ZSDPZ5ANEBUE99", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "V2ZSDPZ5ANEBUE99.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "V2ZSDPZ5ANEBUE99.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "Q7J8RTVDQ7R7AEP9" : { - "Q7J8RTVDQ7R7AEP9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Q7J8RTVDQ7R7AEP9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "Q7J8RTVDQ7R7AEP9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Q7J8RTVDQ7R7AEP9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1406" - }, - "appliesTo" : [ ] - }, - "Q7J8RTVDQ7R7AEP9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Q7J8RTVDQ7R7AEP9.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Q7J8RTVDQ7R7AEP9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Q7J8RTVDQ7R7AEP9", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "Q7J8RTVDQ7R7AEP9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Q7J8RTVDQ7R7AEP9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "576" - }, - "appliesTo" : [ ] - }, - "Q7J8RTVDQ7R7AEP9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Q7J8RTVDQ7R7AEP9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q7J8RTVDQ7R7AEP9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Q7J8RTVDQ7R7AEP9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "Q7J8RTVDQ7R7AEP9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Q7J8RTVDQ7R7AEP9.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Q7J8RTVDQ7R7AEP9.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "Q7J8RTVDQ7R7AEP9", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "Q7J8RTVDQ7R7AEP9.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "Q7J8RTVDQ7R7AEP9.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Q7J8RTVDQ7R7AEP9.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "Q7J8RTVDQ7R7AEP9", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "Q7J8RTVDQ7R7AEP9.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "Q7J8RTVDQ7R7AEP9.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4055" - }, - "appliesTo" : [ ] - }, - "Q7J8RTVDQ7R7AEP9.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "Q7J8RTVDQ7R7AEP9.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Q7J8RTVDQ7R7AEP9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Q7J8RTVDQ7R7AEP9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "Q7J8RTVDQ7R7AEP9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Q7J8RTVDQ7R7AEP9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "Q7J8RTVDQ7R7AEP9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Q7J8RTVDQ7R7AEP9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3297" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Q7J8RTVDQ7R7AEP9.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "Q7J8RTVDQ7R7AEP9", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "Q7J8RTVDQ7R7AEP9.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "Q7J8RTVDQ7R7AEP9.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0950000000" - }, - "appliesTo" : [ ] - }, - "Q7J8RTVDQ7R7AEP9.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "Q7J8RTVDQ7R7AEP9.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1630" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q7J8RTVDQ7R7AEP9.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "Q7J8RTVDQ7R7AEP9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q7J8RTVDQ7R7AEP9.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "Q7J8RTVDQ7R7AEP9.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2052" - }, - "appliesTo" : [ ] - }, - "Q7J8RTVDQ7R7AEP9.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "Q7J8RTVDQ7R7AEP9.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Q7J8RTVDQ7R7AEP9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Q7J8RTVDQ7R7AEP9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "Q7J8RTVDQ7R7AEP9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Q7J8RTVDQ7R7AEP9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1405" - }, - "appliesTo" : [ ] - }, - "Q7J8RTVDQ7R7AEP9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Q7J8RTVDQ7R7AEP9.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q7J8RTVDQ7R7AEP9.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "Q7J8RTVDQ7R7AEP9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q7J8RTVDQ7R7AEP9.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "Q7J8RTVDQ7R7AEP9.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1032" - }, - "appliesTo" : [ ] - }, - "Q7J8RTVDQ7R7AEP9.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "Q7J8RTVDQ7R7AEP9.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q7J8RTVDQ7R7AEP9.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "Q7J8RTVDQ7R7AEP9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q7J8RTVDQ7R7AEP9.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "Q7J8RTVDQ7R7AEP9.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "S829SWJS7CDHWFZY" : { - "S829SWJS7CDHWFZY.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "S829SWJS7CDHWFZY", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "S829SWJS7CDHWFZY.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "S829SWJS7CDHWFZY.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "70.3340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "S829SWJS7CDHWFZY.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "S829SWJS7CDHWFZY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "S829SWJS7CDHWFZY.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "S829SWJS7CDHWFZY.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "35.9500000000" - }, - "appliesTo" : [ ] - }, - "S829SWJS7CDHWFZY.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "S829SWJS7CDHWFZY.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "314924" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "S829SWJS7CDHWFZY.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "S829SWJS7CDHWFZY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "S829SWJS7CDHWFZY.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "S829SWJS7CDHWFZY.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "72.8010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "S829SWJS7CDHWFZY.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "S829SWJS7CDHWFZY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "S829SWJS7CDHWFZY.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "S829SWJS7CDHWFZY.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "S829SWJS7CDHWFZY.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "S829SWJS7CDHWFZY.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "626693" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "S829SWJS7CDHWFZY.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "S829SWJS7CDHWFZY", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "S829SWJS7CDHWFZY.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "S829SWJS7CDHWFZY.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1612408" - }, - "appliesTo" : [ ] - }, - "S829SWJS7CDHWFZY.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "S829SWJS7CDHWFZY.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "S829SWJS7CDHWFZY.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "S829SWJS7CDHWFZY", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "S829SWJS7CDHWFZY.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "S829SWJS7CDHWFZY.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "62.4670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "S829SWJS7CDHWFZY.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "S829SWJS7CDHWFZY", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "S829SWJS7CDHWFZY.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "S829SWJS7CDHWFZY.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1651446" - }, - "appliesTo" : [ ] - }, - "S829SWJS7CDHWFZY.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "S829SWJS7CDHWFZY.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "S829SWJS7CDHWFZY.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "S829SWJS7CDHWFZY", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "S829SWJS7CDHWFZY.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "S829SWJS7CDHWFZY.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "812467" - }, - "appliesTo" : [ ] - }, - "S829SWJS7CDHWFZY.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "S829SWJS7CDHWFZY.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "30.9160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "S829SWJS7CDHWFZY.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "S829SWJS7CDHWFZY", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "S829SWJS7CDHWFZY.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "S829SWJS7CDHWFZY.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "828124" - }, - "appliesTo" : [ ] - }, - "S829SWJS7CDHWFZY.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "S829SWJS7CDHWFZY.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "31.5120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "S829SWJS7CDHWFZY.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "S829SWJS7CDHWFZY", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "S829SWJS7CDHWFZY.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "S829SWJS7CDHWFZY.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "304634" - }, - "appliesTo" : [ ] - }, - "S829SWJS7CDHWFZY.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "S829SWJS7CDHWFZY.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "34.7760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "S829SWJS7CDHWFZY.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "S829SWJS7CDHWFZY", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "S829SWJS7CDHWFZY.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "S829SWJS7CDHWFZY.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "606523" - }, - "appliesTo" : [ ] - }, - "S829SWJS7CDHWFZY.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "S829SWJS7CDHWFZY.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "WNE7QVTQ353JW53G" : { - "WNE7QVTQ353JW53G.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "WNE7QVTQ353JW53G", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WNE7QVTQ353JW53G.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "WNE7QVTQ353JW53G.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20589" - }, - "appliesTo" : [ ] - }, - "WNE7QVTQ353JW53G.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "WNE7QVTQ353JW53G.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WNE7QVTQ353JW53G.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "WNE7QVTQ353JW53G", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WNE7QVTQ353JW53G.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "WNE7QVTQ353JW53G.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "WNE7QVTQ353JW53G.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "WNE7QVTQ353JW53G.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20068" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WNE7QVTQ353JW53G.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "WNE7QVTQ353JW53G", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WNE7QVTQ353JW53G.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "WNE7QVTQ353JW53G.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7785000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "WNE7QVTQ353JW53G.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "WNE7QVTQ353JW53G", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WNE7QVTQ353JW53G.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "WNE7QVTQ353JW53G.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7957000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WNE7QVTQ353JW53G.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "WNE7QVTQ353JW53G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WNE7QVTQ353JW53G.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "WNE7QVTQ353JW53G.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4240000000" - }, - "appliesTo" : [ ] - }, - "WNE7QVTQ353JW53G.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "WNE7QVTQ353JW53G.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3714" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WNE7QVTQ353JW53G.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "WNE7QVTQ353JW53G", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WNE7QVTQ353JW53G.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "WNE7QVTQ353JW53G.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "WNE7QVTQ353JW53G.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "WNE7QVTQ353JW53G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WNE7QVTQ353JW53G.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "WNE7QVTQ353JW53G.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7396" - }, - "appliesTo" : [ ] - }, - "WNE7QVTQ353JW53G.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "WNE7QVTQ353JW53G.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WNE7QVTQ353JW53G.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "WNE7QVTQ353JW53G", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WNE7QVTQ353JW53G.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "WNE7QVTQ353JW53G.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4120000000" - }, - "appliesTo" : [ ] - }, - "WNE7QVTQ353JW53G.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "WNE7QVTQ353JW53G.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3609" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WNE7QVTQ353JW53G.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "WNE7QVTQ353JW53G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WNE7QVTQ353JW53G.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "WNE7QVTQ353JW53G.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8572000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WNE7QVTQ353JW53G.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "WNE7QVTQ353JW53G", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WNE7QVTQ353JW53G.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "WNE7QVTQ353JW53G.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7190" - }, - "appliesTo" : [ ] - }, - "WNE7QVTQ353JW53G.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "WNE7QVTQ353JW53G.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WNE7QVTQ353JW53G.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "WNE7QVTQ353JW53G", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WNE7QVTQ353JW53G.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "WNE7QVTQ353JW53G.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3850000000" - }, - "appliesTo" : [ ] - }, - "WNE7QVTQ353JW53G.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "WNE7QVTQ353JW53G.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10118" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WNE7QVTQ353JW53G.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "WNE7QVTQ353JW53G", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "WNE7QVTQ353JW53G.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "WNE7QVTQ353JW53G.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10327" - }, - "appliesTo" : [ ] - }, - "WNE7QVTQ353JW53G.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "WNE7QVTQ353JW53G.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3929000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "FDYDQJ8P2SCE3SD8" : { - "FDYDQJ8P2SCE3SD8.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "FDYDQJ8P2SCE3SD8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FDYDQJ8P2SCE3SD8.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "FDYDQJ8P2SCE3SD8.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3030000000" - }, - "appliesTo" : [ ] - }, - "FDYDQJ8P2SCE3SD8.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "FDYDQJ8P2SCE3SD8.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20176" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FDYDQJ8P2SCE3SD8.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "FDYDQJ8P2SCE3SD8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FDYDQJ8P2SCE3SD8.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "FDYDQJ8P2SCE3SD8.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.6680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FDYDQJ8P2SCE3SD8.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "FDYDQJ8P2SCE3SD8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FDYDQJ8P2SCE3SD8.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "FDYDQJ8P2SCE3SD8.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "104686" - }, - "appliesTo" : [ ] - }, - "FDYDQJ8P2SCE3SD8.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "FDYDQJ8P2SCE3SD8.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FDYDQJ8P2SCE3SD8.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "FDYDQJ8P2SCE3SD8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FDYDQJ8P2SCE3SD8.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "FDYDQJ8P2SCE3SD8.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19468" - }, - "appliesTo" : [ ] - }, - "FDYDQJ8P2SCE3SD8.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "FDYDQJ8P2SCE3SD8.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FDYDQJ8P2SCE3SD8.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "FDYDQJ8P2SCE3SD8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FDYDQJ8P2SCE3SD8.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "FDYDQJ8P2SCE3SD8.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.4990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FDYDQJ8P2SCE3SD8.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "FDYDQJ8P2SCE3SD8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FDYDQJ8P2SCE3SD8.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "FDYDQJ8P2SCE3SD8.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "40135" - }, - "appliesTo" : [ ] - }, - "FDYDQJ8P2SCE3SD8.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "FDYDQJ8P2SCE3SD8.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FDYDQJ8P2SCE3SD8.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "FDYDQJ8P2SCE3SD8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FDYDQJ8P2SCE3SD8.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "FDYDQJ8P2SCE3SD8.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "102002" - }, - "appliesTo" : [ ] - }, - "FDYDQJ8P2SCE3SD8.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "FDYDQJ8P2SCE3SD8.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FDYDQJ8P2SCE3SD8.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "FDYDQJ8P2SCE3SD8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FDYDQJ8P2SCE3SD8.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "FDYDQJ8P2SCE3SD8.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FDYDQJ8P2SCE3SD8.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "FDYDQJ8P2SCE3SD8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FDYDQJ8P2SCE3SD8.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "FDYDQJ8P2SCE3SD8.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "FDYDQJ8P2SCE3SD8.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "FDYDQJ8P2SCE3SD8.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38748" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FDYDQJ8P2SCE3SD8.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "FDYDQJ8P2SCE3SD8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FDYDQJ8P2SCE3SD8.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "FDYDQJ8P2SCE3SD8.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.0460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FDYDQJ8P2SCE3SD8.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "FDYDQJ8P2SCE3SD8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FDYDQJ8P2SCE3SD8.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "FDYDQJ8P2SCE3SD8.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "51432" - }, - "appliesTo" : [ ] - }, - "FDYDQJ8P2SCE3SD8.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "FDYDQJ8P2SCE3SD8.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FDYDQJ8P2SCE3SD8.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "FDYDQJ8P2SCE3SD8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FDYDQJ8P2SCE3SD8.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "FDYDQJ8P2SCE3SD8.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "52508" - }, - "appliesTo" : [ ] - }, - "FDYDQJ8P2SCE3SD8.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "FDYDQJ8P2SCE3SD8.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "QRBKW8JQVD29EVBU" : { - "QRBKW8JQVD29EVBU.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "QRBKW8JQVD29EVBU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QRBKW8JQVD29EVBU.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "QRBKW8JQVD29EVBU.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7135" - }, - "appliesTo" : [ ] - }, - "QRBKW8JQVD29EVBU.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "QRBKW8JQVD29EVBU.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QRBKW8JQVD29EVBU.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "QRBKW8JQVD29EVBU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QRBKW8JQVD29EVBU.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "QRBKW8JQVD29EVBU.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QRBKW8JQVD29EVBU.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QRBKW8JQVD29EVBU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QRBKW8JQVD29EVBU.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QRBKW8JQVD29EVBU.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25489" - }, - "appliesTo" : [ ] - }, - "QRBKW8JQVD29EVBU.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QRBKW8JQVD29EVBU.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QRBKW8JQVD29EVBU.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "QRBKW8JQVD29EVBU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QRBKW8JQVD29EVBU.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "QRBKW8JQVD29EVBU.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QRBKW8JQVD29EVBU.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QRBKW8JQVD29EVBU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QRBKW8JQVD29EVBU.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QRBKW8JQVD29EVBU.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13136" - }, - "appliesTo" : [ ] - }, - "QRBKW8JQVD29EVBU.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QRBKW8JQVD29EVBU.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QRBKW8JQVD29EVBU.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "QRBKW8JQVD29EVBU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QRBKW8JQVD29EVBU.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "QRBKW8JQVD29EVBU.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14114" - }, - "appliesTo" : [ ] - }, - "QRBKW8JQVD29EVBU.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "QRBKW8JQVD29EVBU.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QRBKW8JQVD29EVBU.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QRBKW8JQVD29EVBU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QRBKW8JQVD29EVBU.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QRBKW8JQVD29EVBU.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12812" - }, - "appliesTo" : [ ] - }, - "QRBKW8JQVD29EVBU.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QRBKW8JQVD29EVBU.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QRBKW8JQVD29EVBU.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QRBKW8JQVD29EVBU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QRBKW8JQVD29EVBU.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QRBKW8JQVD29EVBU.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6492" - }, - "appliesTo" : [ ] - }, - "QRBKW8JQVD29EVBU.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QRBKW8JQVD29EVBU.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QRBKW8JQVD29EVBU.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "QRBKW8JQVD29EVBU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QRBKW8JQVD29EVBU.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "QRBKW8JQVD29EVBU.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QRBKW8JQVD29EVBU.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QRBKW8JQVD29EVBU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QRBKW8JQVD29EVBU.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QRBKW8JQVD29EVBU.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QRBKW8JQVD29EVBU.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "QRBKW8JQVD29EVBU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QRBKW8JQVD29EVBU.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "QRBKW8JQVD29EVBU.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27928" - }, - "appliesTo" : [ ] - }, - "QRBKW8JQVD29EVBU.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "QRBKW8JQVD29EVBU.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QRBKW8JQVD29EVBU.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "QRBKW8JQVD29EVBU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QRBKW8JQVD29EVBU.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "QRBKW8JQVD29EVBU.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QRBKW8JQVD29EVBU.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "QRBKW8JQVD29EVBU.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14073" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "6V9UKEPJF6WP9M5K" : { - "6V9UKEPJF6WP9M5K.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6V9UKEPJF6WP9M5K", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6V9UKEPJF6WP9M5K.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6V9UKEPJF6WP9M5K.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13711" - }, - "appliesTo" : [ ] - }, - "6V9UKEPJF6WP9M5K.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6V9UKEPJF6WP9M5K.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6V9UKEPJF6WP9M5K.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6V9UKEPJF6WP9M5K", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "6V9UKEPJF6WP9M5K.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6V9UKEPJF6WP9M5K.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8008" - }, - "appliesTo" : [ ] - }, - "6V9UKEPJF6WP9M5K.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6V9UKEPJF6WP9M5K.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6V9UKEPJF6WP9M5K.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "6V9UKEPJF6WP9M5K", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "6V9UKEPJF6WP9M5K.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "6V9UKEPJF6WP9M5K.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37020" - }, - "appliesTo" : [ ] - }, - "6V9UKEPJF6WP9M5K.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "6V9UKEPJF6WP9M5K.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6V9UKEPJF6WP9M5K.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "6V9UKEPJF6WP9M5K", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6V9UKEPJF6WP9M5K.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "6V9UKEPJF6WP9M5K.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15760" - }, - "appliesTo" : [ ] - }, - "6V9UKEPJF6WP9M5K.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "6V9UKEPJF6WP9M5K.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6V9UKEPJF6WP9M5K.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6V9UKEPJF6WP9M5K", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6V9UKEPJF6WP9M5K.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6V9UKEPJF6WP9M5K.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6V9UKEPJF6WP9M5K.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "6V9UKEPJF6WP9M5K", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6V9UKEPJF6WP9M5K.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "6V9UKEPJF6WP9M5K.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8041" - }, - "appliesTo" : [ ] - }, - "6V9UKEPJF6WP9M5K.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "6V9UKEPJF6WP9M5K.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6V9UKEPJF6WP9M5K.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "6V9UKEPJF6WP9M5K", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6V9UKEPJF6WP9M5K.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "6V9UKEPJF6WP9M5K.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6V9UKEPJF6WP9M5K.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6V9UKEPJF6WP9M5K", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "6V9UKEPJF6WP9M5K.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6V9UKEPJF6WP9M5K.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "6V9UKEPJF6WP9M5K.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6V9UKEPJF6WP9M5K.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24429" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6V9UKEPJF6WP9M5K.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "6V9UKEPJF6WP9M5K", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "6V9UKEPJF6WP9M5K.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "6V9UKEPJF6WP9M5K.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21622" - }, - "appliesTo" : [ ] - }, - "6V9UKEPJF6WP9M5K.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "6V9UKEPJF6WP9M5K.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6V9UKEPJF6WP9M5K.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "6V9UKEPJF6WP9M5K", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "6V9UKEPJF6WP9M5K.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "6V9UKEPJF6WP9M5K.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6V9UKEPJF6WP9M5K.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6V9UKEPJF6WP9M5K", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6V9UKEPJF6WP9M5K.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6V9UKEPJF6WP9M5K.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5300000000" - }, - "appliesTo" : [ ] - }, - "6V9UKEPJF6WP9M5K.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6V9UKEPJF6WP9M5K.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12056" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "C3VTCSXYNCNUKHPS" : { - "C3VTCSXYNCNUKHPS.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "C3VTCSXYNCNUKHPS", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "C3VTCSXYNCNUKHPS.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "C3VTCSXYNCNUKHPS.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1782" - }, - "appliesTo" : [ ] - }, - "C3VTCSXYNCNUKHPS.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "C3VTCSXYNCNUKHPS.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "C3VTCSXYNCNUKHPS.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "C3VTCSXYNCNUKHPS", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "C3VTCSXYNCNUKHPS.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "C3VTCSXYNCNUKHPS.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "C3VTCSXYNCNUKHPS.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "C3VTCSXYNCNUKHPS", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "C3VTCSXYNCNUKHPS.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "C3VTCSXYNCNUKHPS.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5027" - }, - "appliesTo" : [ ] - }, - "C3VTCSXYNCNUKHPS.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "C3VTCSXYNCNUKHPS.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "C3VTCSXYNCNUKHPS.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "C3VTCSXYNCNUKHPS", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "C3VTCSXYNCNUKHPS.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "C3VTCSXYNCNUKHPS.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4381" - }, - "appliesTo" : [ ] - }, - "C3VTCSXYNCNUKHPS.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "C3VTCSXYNCNUKHPS.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "C3VTCSXYNCNUKHPS.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "C3VTCSXYNCNUKHPS", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "C3VTCSXYNCNUKHPS.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "C3VTCSXYNCNUKHPS.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11817" - }, - "appliesTo" : [ ] - }, - "C3VTCSXYNCNUKHPS.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "C3VTCSXYNCNUKHPS.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "QG8MPRPSA2WNM57J" : { - "QG8MPRPSA2WNM57J.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QG8MPRPSA2WNM57J", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "QG8MPRPSA2WNM57J.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QG8MPRPSA2WNM57J.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0330000000" - }, - "appliesTo" : [ ] - }, - "QG8MPRPSA2WNM57J.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QG8MPRPSA2WNM57J.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "860" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QG8MPRPSA2WNM57J.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "QG8MPRPSA2WNM57J", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "QG8MPRPSA2WNM57J.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "QG8MPRPSA2WNM57J.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2066" - }, - "appliesTo" : [ ] - }, - "QG8MPRPSA2WNM57J.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "QG8MPRPSA2WNM57J.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QG8MPRPSA2WNM57J.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "QG8MPRPSA2WNM57J", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "QG8MPRPSA2WNM57J.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "QG8MPRPSA2WNM57J.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QG8MPRPSA2WNM57J.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QG8MPRPSA2WNM57J", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QG8MPRPSA2WNM57J.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QG8MPRPSA2WNM57J.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QG8MPRPSA2WNM57J.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QG8MPRPSA2WNM57J.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1623" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QG8MPRPSA2WNM57J.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "QG8MPRPSA2WNM57J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QG8MPRPSA2WNM57J.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "QG8MPRPSA2WNM57J.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0490000000" - }, - "appliesTo" : [ ] - }, - "QG8MPRPSA2WNM57J.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "QG8MPRPSA2WNM57J.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "494" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QG8MPRPSA2WNM57J.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "QG8MPRPSA2WNM57J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QG8MPRPSA2WNM57J.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "QG8MPRPSA2WNM57J.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QG8MPRPSA2WNM57J.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "QG8MPRPSA2WNM57J", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "QG8MPRPSA2WNM57J.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "QG8MPRPSA2WNM57J.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1232" - }, - "appliesTo" : [ ] - }, - "QG8MPRPSA2WNM57J.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "QG8MPRPSA2WNM57J.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QG8MPRPSA2WNM57J.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QG8MPRPSA2WNM57J", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QG8MPRPSA2WNM57J.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QG8MPRPSA2WNM57J.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "809" - }, - "appliesTo" : [ ] - }, - "QG8MPRPSA2WNM57J.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QG8MPRPSA2WNM57J.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QG8MPRPSA2WNM57J.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QG8MPRPSA2WNM57J", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QG8MPRPSA2WNM57J.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QG8MPRPSA2WNM57J.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QG8MPRPSA2WNM57J.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "QG8MPRPSA2WNM57J", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QG8MPRPSA2WNM57J.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "QG8MPRPSA2WNM57J.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "914" - }, - "appliesTo" : [ ] - }, - "QG8MPRPSA2WNM57J.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "QG8MPRPSA2WNM57J.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QG8MPRPSA2WNM57J.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QG8MPRPSA2WNM57J", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QG8MPRPSA2WNM57J.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QG8MPRPSA2WNM57J.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "502" - }, - "appliesTo" : [ ] - }, - "QG8MPRPSA2WNM57J.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QG8MPRPSA2WNM57J.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "8D8WEXZEQ37HKFNV" : { - "8D8WEXZEQ37HKFNV.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "8D8WEXZEQ37HKFNV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8D8WEXZEQ37HKFNV.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "8D8WEXZEQ37HKFNV.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.5730000000" - }, - "appliesTo" : [ ] - }, - "8D8WEXZEQ37HKFNV.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "8D8WEXZEQ37HKFNV.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "75100" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8D8WEXZEQ37HKFNV.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "8D8WEXZEQ37HKFNV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8D8WEXZEQ37HKFNV.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "8D8WEXZEQ37HKFNV.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.2710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8D8WEXZEQ37HKFNV.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "8D8WEXZEQ37HKFNV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8D8WEXZEQ37HKFNV.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "8D8WEXZEQ37HKFNV.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "17.5960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8D8WEXZEQ37HKFNV.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "8D8WEXZEQ37HKFNV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8D8WEXZEQ37HKFNV.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "8D8WEXZEQ37HKFNV.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "329187" - }, - "appliesTo" : [ ] - }, - "8D8WEXZEQ37HKFNV.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "8D8WEXZEQ37HKFNV.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8D8WEXZEQ37HKFNV.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "8D8WEXZEQ37HKFNV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8D8WEXZEQ37HKFNV.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "8D8WEXZEQ37HKFNV.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "148623" - }, - "appliesTo" : [ ] - }, - "8D8WEXZEQ37HKFNV.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "8D8WEXZEQ37HKFNV.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8D8WEXZEQ37HKFNV.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "8D8WEXZEQ37HKFNV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8D8WEXZEQ37HKFNV.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "8D8WEXZEQ37HKFNV.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.3400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8D8WEXZEQ37HKFNV.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "8D8WEXZEQ37HKFNV", - "effectiveDate" : "2016-06-30T23:59:59Z", - "priceDimensions" : { - "8D8WEXZEQ37HKFNV.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "8D8WEXZEQ37HKFNV.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "71699" - }, - "appliesTo" : [ ] - }, - "8D8WEXZEQ37HKFNV.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "8D8WEXZEQ37HKFNV.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.1850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8D8WEXZEQ37HKFNV.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "8D8WEXZEQ37HKFNV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8D8WEXZEQ37HKFNV.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "8D8WEXZEQ37HKFNV.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "165793" - }, - "appliesTo" : [ ] - }, - "8D8WEXZEQ37HKFNV.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "8D8WEXZEQ37HKFNV.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.3090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8D8WEXZEQ37HKFNV.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "8D8WEXZEQ37HKFNV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8D8WEXZEQ37HKFNV.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "8D8WEXZEQ37HKFNV.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.9830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8D8WEXZEQ37HKFNV.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "8D8WEXZEQ37HKFNV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8D8WEXZEQ37HKFNV.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "8D8WEXZEQ37HKFNV.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.2560000000" - }, - "appliesTo" : [ ] - }, - "8D8WEXZEQ37HKFNV.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "8D8WEXZEQ37HKFNV.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "164408" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8D8WEXZEQ37HKFNV.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "8D8WEXZEQ37HKFNV", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "8D8WEXZEQ37HKFNV.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "8D8WEXZEQ37HKFNV.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "8D8WEXZEQ37HKFNV.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "8D8WEXZEQ37HKFNV.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "322555" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8D8WEXZEQ37HKFNV.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "8D8WEXZEQ37HKFNV", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "8D8WEXZEQ37HKFNV.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "8D8WEXZEQ37HKFNV.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "142027" - }, - "appliesTo" : [ ] - }, - "8D8WEXZEQ37HKFNV.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "8D8WEXZEQ37HKFNV.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "XEM85KR3292VMY35" : { - "XEM85KR3292VMY35.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XEM85KR3292VMY35", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XEM85KR3292VMY35.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XEM85KR3292VMY35.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1323" - }, - "appliesTo" : [ ] - }, - "XEM85KR3292VMY35.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XEM85KR3292VMY35.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XEM85KR3292VMY35.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XEM85KR3292VMY35", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "XEM85KR3292VMY35.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XEM85KR3292VMY35.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3408" - }, - "appliesTo" : [ ] - }, - "XEM85KR3292VMY35.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XEM85KR3292VMY35.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XEM85KR3292VMY35.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XEM85KR3292VMY35", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XEM85KR3292VMY35.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XEM85KR3292VMY35.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2089" - }, - "appliesTo" : [ ] - }, - "XEM85KR3292VMY35.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XEM85KR3292VMY35.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XEM85KR3292VMY35.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XEM85KR3292VMY35", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "XEM85KR3292VMY35.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XEM85KR3292VMY35.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7645" - }, - "appliesTo" : [ ] - }, - "XEM85KR3292VMY35.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XEM85KR3292VMY35.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XEM85KR3292VMY35.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XEM85KR3292VMY35", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XEM85KR3292VMY35.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XEM85KR3292VMY35.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "JXT6YFU3KSU3C7ZV" : { - "JXT6YFU3KSU3C7ZV.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "JXT6YFU3KSU3C7ZV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JXT6YFU3KSU3C7ZV.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "JXT6YFU3KSU3C7ZV.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "JXT6YFU3KSU3C7ZV.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "JXT6YFU3KSU3C7ZV.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3108" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "JXT6YFU3KSU3C7ZV.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "JXT6YFU3KSU3C7ZV", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "JXT6YFU3KSU3C7ZV.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "JXT6YFU3KSU3C7ZV.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "JXT6YFU3KSU3C7ZV.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "JXT6YFU3KSU3C7ZV", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JXT6YFU3KSU3C7ZV.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "JXT6YFU3KSU3C7ZV.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7738" - }, - "appliesTo" : [ ] - }, - "JXT6YFU3KSU3C7ZV.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "JXT6YFU3KSU3C7ZV.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JXT6YFU3KSU3C7ZV.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "JXT6YFU3KSU3C7ZV", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "JXT6YFU3KSU3C7ZV.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "JXT6YFU3KSU3C7ZV.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "JXT6YFU3KSU3C7ZV.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "JXT6YFU3KSU3C7ZV.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2977" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JXT6YFU3KSU3C7ZV.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "JXT6YFU3KSU3C7ZV", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JXT6YFU3KSU3C7ZV.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "JXT6YFU3KSU3C7ZV.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3291" - }, - "appliesTo" : [ ] - }, - "JXT6YFU3KSU3C7ZV.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "JXT6YFU3KSU3C7ZV.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "JXT6YFU3KSU3C7ZV.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "JXT6YFU3KSU3C7ZV", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "JXT6YFU3KSU3C7ZV.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "JXT6YFU3KSU3C7ZV.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3550" - }, - "appliesTo" : [ ] - }, - "JXT6YFU3KSU3C7ZV.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "JXT6YFU3KSU3C7ZV.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "JXT6YFU3KSU3C7ZV.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "JXT6YFU3KSU3C7ZV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JXT6YFU3KSU3C7ZV.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "JXT6YFU3KSU3C7ZV.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1780000000" - }, - "appliesTo" : [ ] - }, - "JXT6YFU3KSU3C7ZV.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "JXT6YFU3KSU3C7ZV.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1560" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "JXT6YFU3KSU3C7ZV.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "JXT6YFU3KSU3C7ZV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JXT6YFU3KSU3C7ZV.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "JXT6YFU3KSU3C7ZV.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "JXT6YFU3KSU3C7ZV.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "JXT6YFU3KSU3C7ZV", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "JXT6YFU3KSU3C7ZV.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "JXT6YFU3KSU3C7ZV.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8768" - }, - "appliesTo" : [ ] - }, - "JXT6YFU3KSU3C7ZV.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "JXT6YFU3KSU3C7ZV.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "JXT6YFU3KSU3C7ZV.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "JXT6YFU3KSU3C7ZV", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JXT6YFU3KSU3C7ZV.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "JXT6YFU3KSU3C7ZV.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1216" - }, - "appliesTo" : [ ] - }, - "JXT6YFU3KSU3C7ZV.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "JXT6YFU3KSU3C7ZV.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "JXT6YFU3KSU3C7ZV.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "JXT6YFU3KSU3C7ZV", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JXT6YFU3KSU3C7ZV.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "JXT6YFU3KSU3C7ZV.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "ZMGP8SNR2VJEV8FJ" : { - "ZMGP8SNR2VJEV8FJ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ZMGP8SNR2VJEV8FJ", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "ZMGP8SNR2VJEV8FJ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ZMGP8SNR2VJEV8FJ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "130073" - }, - "appliesTo" : [ ] - }, - "ZMGP8SNR2VJEV8FJ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ZMGP8SNR2VJEV8FJ.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZMGP8SNR2VJEV8FJ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ZMGP8SNR2VJEV8FJ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "ZMGP8SNR2VJEV8FJ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ZMGP8SNR2VJEV8FJ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4380000000" - }, - "appliesTo" : [ ] - }, - "ZMGP8SNR2VJEV8FJ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ZMGP8SNR2VJEV8FJ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "65160" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZMGP8SNR2VJEV8FJ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ZMGP8SNR2VJEV8FJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZMGP8SNR2VJEV8FJ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ZMGP8SNR2VJEV8FJ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "66099" - }, - "appliesTo" : [ ] - }, - "ZMGP8SNR2VJEV8FJ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ZMGP8SNR2VJEV8FJ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5456000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZMGP8SNR2VJEV8FJ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ZMGP8SNR2VJEV8FJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZMGP8SNR2VJEV8FJ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ZMGP8SNR2VJEV8FJ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.1721000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZMGP8SNR2VJEV8FJ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ZMGP8SNR2VJEV8FJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZMGP8SNR2VJEV8FJ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ZMGP8SNR2VJEV8FJ.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ZMGP8SNR2VJEV8FJ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ZMGP8SNR2VJEV8FJ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "381671" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZMGP8SNR2VJEV8FJ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "ZMGP8SNR2VJEV8FJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZMGP8SNR2VJEV8FJ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "ZMGP8SNR2VJEV8FJ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.4794000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZMGP8SNR2VJEV8FJ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ZMGP8SNR2VJEV8FJ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "ZMGP8SNR2VJEV8FJ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ZMGP8SNR2VJEV8FJ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "377176" - }, - "appliesTo" : [ ] - }, - "ZMGP8SNR2VJEV8FJ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ZMGP8SNR2VJEV8FJ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZMGP8SNR2VJEV8FJ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ZMGP8SNR2VJEV8FJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZMGP8SNR2VJEV8FJ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ZMGP8SNR2VJEV8FJ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "191118" - }, - "appliesTo" : [ ] - }, - "ZMGP8SNR2VJEV8FJ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ZMGP8SNR2VJEV8FJ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.2724000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZMGP8SNR2VJEV8FJ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ZMGP8SNR2VJEV8FJ", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "ZMGP8SNR2VJEV8FJ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ZMGP8SNR2VJEV8FJ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "189326" - }, - "appliesTo" : [ ] - }, - "ZMGP8SNR2VJEV8FJ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ZMGP8SNR2VJEV8FJ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.2040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZMGP8SNR2VJEV8FJ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ZMGP8SNR2VJEV8FJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZMGP8SNR2VJEV8FJ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ZMGP8SNR2VJEV8FJ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "131915" - }, - "appliesTo" : [ ] - }, - "ZMGP8SNR2VJEV8FJ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ZMGP8SNR2VJEV8FJ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZMGP8SNR2VJEV8FJ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ZMGP8SNR2VJEV8FJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZMGP8SNR2VJEV8FJ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ZMGP8SNR2VJEV8FJ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.9504000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZMGP8SNR2VJEV8FJ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ZMGP8SNR2VJEV8FJ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZMGP8SNR2VJEV8FJ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ZMGP8SNR2VJEV8FJ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.6305000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "WEJJ8BVQUW2CFG55" : { - "WEJJ8BVQUW2CFG55.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "WEJJ8BVQUW2CFG55", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WEJJ8BVQUW2CFG55.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "WEJJ8BVQUW2CFG55.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "491" - }, - "appliesTo" : [ ] - }, - "WEJJ8BVQUW2CFG55.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "WEJJ8BVQUW2CFG55.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WEJJ8BVQUW2CFG55.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "WEJJ8BVQUW2CFG55", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WEJJ8BVQUW2CFG55.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "WEJJ8BVQUW2CFG55.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "WEJJ8BVQUW2CFG55.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "WEJJ8BVQUW2CFG55.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1622" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WEJJ8BVQUW2CFG55.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "WEJJ8BVQUW2CFG55", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WEJJ8BVQUW2CFG55.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "WEJJ8BVQUW2CFG55.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1001" - }, - "appliesTo" : [ ] - }, - "WEJJ8BVQUW2CFG55.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "WEJJ8BVQUW2CFG55.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WEJJ8BVQUW2CFG55.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "WEJJ8BVQUW2CFG55", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WEJJ8BVQUW2CFG55.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "WEJJ8BVQUW2CFG55.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1133" - }, - "appliesTo" : [ ] - }, - "WEJJ8BVQUW2CFG55.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "WEJJ8BVQUW2CFG55.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WEJJ8BVQUW2CFG55.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "WEJJ8BVQUW2CFG55", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WEJJ8BVQUW2CFG55.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "WEJJ8BVQUW2CFG55.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3474" - }, - "appliesTo" : [ ] - }, - "WEJJ8BVQUW2CFG55.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "WEJJ8BVQUW2CFG55.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WEJJ8BVQUW2CFG55.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "WEJJ8BVQUW2CFG55", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WEJJ8BVQUW2CFG55.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "WEJJ8BVQUW2CFG55.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1491" - }, - "appliesTo" : [ ] - }, - "WEJJ8BVQUW2CFG55.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "WEJJ8BVQUW2CFG55.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WEJJ8BVQUW2CFG55.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "WEJJ8BVQUW2CFG55", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WEJJ8BVQUW2CFG55.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "WEJJ8BVQUW2CFG55.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WEJJ8BVQUW2CFG55.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "WEJJ8BVQUW2CFG55", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WEJJ8BVQUW2CFG55.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "WEJJ8BVQUW2CFG55.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "WEJJ8BVQUW2CFG55.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "WEJJ8BVQUW2CFG55", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WEJJ8BVQUW2CFG55.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "WEJJ8BVQUW2CFG55.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "558" - }, - "appliesTo" : [ ] - }, - "WEJJ8BVQUW2CFG55.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "WEJJ8BVQUW2CFG55.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WEJJ8BVQUW2CFG55.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "WEJJ8BVQUW2CFG55", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WEJJ8BVQUW2CFG55.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "WEJJ8BVQUW2CFG55.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WEJJ8BVQUW2CFG55.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "WEJJ8BVQUW2CFG55", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WEJJ8BVQUW2CFG55.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "WEJJ8BVQUW2CFG55.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3802" - }, - "appliesTo" : [ ] - }, - "WEJJ8BVQUW2CFG55.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "WEJJ8BVQUW2CFG55.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WEJJ8BVQUW2CFG55.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "WEJJ8BVQUW2CFG55", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WEJJ8BVQUW2CFG55.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "WEJJ8BVQUW2CFG55.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "EJXKAGBARC5X44CV" : { - "EJXKAGBARC5X44CV.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "EJXKAGBARC5X44CV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EJXKAGBARC5X44CV.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "EJXKAGBARC5X44CV.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "87531" - }, - "appliesTo" : [ ] - }, - "EJXKAGBARC5X44CV.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "EJXKAGBARC5X44CV.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EJXKAGBARC5X44CV.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "EJXKAGBARC5X44CV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EJXKAGBARC5X44CV.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "EJXKAGBARC5X44CV.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "EJXKAGBARC5X44CV.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "EJXKAGBARC5X44CV.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "177075" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "EJXKAGBARC5X44CV.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "EJXKAGBARC5X44CV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EJXKAGBARC5X44CV.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "EJXKAGBARC5X44CV.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31201" - }, - "appliesTo" : [ ] - }, - "EJXKAGBARC5X44CV.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "EJXKAGBARC5X44CV.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "EJXKAGBARC5X44CV.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "EJXKAGBARC5X44CV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EJXKAGBARC5X44CV.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "EJXKAGBARC5X44CV.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "174127" - }, - "appliesTo" : [ ] - }, - "EJXKAGBARC5X44CV.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "EJXKAGBARC5X44CV.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EJXKAGBARC5X44CV.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "EJXKAGBARC5X44CV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EJXKAGBARC5X44CV.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "EJXKAGBARC5X44CV.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.7090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "EJXKAGBARC5X44CV.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "EJXKAGBARC5X44CV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EJXKAGBARC5X44CV.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "EJXKAGBARC5X44CV.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.1760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "EJXKAGBARC5X44CV.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "EJXKAGBARC5X44CV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EJXKAGBARC5X44CV.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "EJXKAGBARC5X44CV.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "88717" - }, - "appliesTo" : [ ] - }, - "EJXKAGBARC5X44CV.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "EJXKAGBARC5X44CV.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "EJXKAGBARC5X44CV.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "EJXKAGBARC5X44CV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EJXKAGBARC5X44CV.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "EJXKAGBARC5X44CV.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "EJXKAGBARC5X44CV.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "EJXKAGBARC5X44CV.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "61035" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EJXKAGBARC5X44CV.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "EJXKAGBARC5X44CV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EJXKAGBARC5X44CV.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "EJXKAGBARC5X44CV.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4930000000" - }, - "appliesTo" : [ ] - }, - "EJXKAGBARC5X44CV.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "EJXKAGBARC5X44CV.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30598" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EJXKAGBARC5X44CV.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "EJXKAGBARC5X44CV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EJXKAGBARC5X44CV.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "EJXKAGBARC5X44CV.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.8060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "EJXKAGBARC5X44CV.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "EJXKAGBARC5X44CV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EJXKAGBARC5X44CV.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "EJXKAGBARC5X44CV.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "62217" - }, - "appliesTo" : [ ] - }, - "EJXKAGBARC5X44CV.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "EJXKAGBARC5X44CV.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "EJXKAGBARC5X44CV.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "EJXKAGBARC5X44CV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EJXKAGBARC5X44CV.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "EJXKAGBARC5X44CV.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.0320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "Y4FKSUJMDV8DEFTS" : { - "Y4FKSUJMDV8DEFTS.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Y4FKSUJMDV8DEFTS", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "Y4FKSUJMDV8DEFTS.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Y4FKSUJMDV8DEFTS.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1375" - }, - "appliesTo" : [ ] - }, - "Y4FKSUJMDV8DEFTS.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Y4FKSUJMDV8DEFTS.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Y4FKSUJMDV8DEFTS.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Y4FKSUJMDV8DEFTS", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "Y4FKSUJMDV8DEFTS.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Y4FKSUJMDV8DEFTS.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0280000000" - }, - "appliesTo" : [ ] - }, - "Y4FKSUJMDV8DEFTS.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Y4FKSUJMDV8DEFTS.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "727" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y4FKSUJMDV8DEFTS.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Y4FKSUJMDV8DEFTS", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "Y4FKSUJMDV8DEFTS.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Y4FKSUJMDV8DEFTS.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "680" - }, - "appliesTo" : [ ] - }, - "Y4FKSUJMDV8DEFTS.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Y4FKSUJMDV8DEFTS.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Y4FKSUJMDV8DEFTS.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Y4FKSUJMDV8DEFTS", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "Y4FKSUJMDV8DEFTS.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Y4FKSUJMDV8DEFTS.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Y4FKSUJMDV8DEFTS.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Y4FKSUJMDV8DEFTS", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "Y4FKSUJMDV8DEFTS.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Y4FKSUJMDV8DEFTS.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "423" - }, - "appliesTo" : [ ] - }, - "Y4FKSUJMDV8DEFTS.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Y4FKSUJMDV8DEFTS.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "9N4WQNFE4TP78PQF" : { - "9N4WQNFE4TP78PQF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "9N4WQNFE4TP78PQF", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "9N4WQNFE4TP78PQF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "9N4WQNFE4TP78PQF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1997" - }, - "appliesTo" : [ ] - }, - "9N4WQNFE4TP78PQF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "9N4WQNFE4TP78PQF.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9N4WQNFE4TP78PQF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "9N4WQNFE4TP78PQF", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "9N4WQNFE4TP78PQF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "9N4WQNFE4TP78PQF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1160000000" - }, - "appliesTo" : [ ] - }, - "9N4WQNFE4TP78PQF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "9N4WQNFE4TP78PQF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1007" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9N4WQNFE4TP78PQF.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "9N4WQNFE4TP78PQF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9N4WQNFE4TP78PQF.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "9N4WQNFE4TP78PQF.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1046" - }, - "appliesTo" : [ ] - }, - "9N4WQNFE4TP78PQF.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "9N4WQNFE4TP78PQF.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9N4WQNFE4TP78PQF.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "9N4WQNFE4TP78PQF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9N4WQNFE4TP78PQF.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "9N4WQNFE4TP78PQF.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9N4WQNFE4TP78PQF.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "9N4WQNFE4TP78PQF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9N4WQNFE4TP78PQF.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "9N4WQNFE4TP78PQF.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "9N4WQNFE4TP78PQF.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "9N4WQNFE4TP78PQF.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5619" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9N4WQNFE4TP78PQF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "9N4WQNFE4TP78PQF", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "9N4WQNFE4TP78PQF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "9N4WQNFE4TP78PQF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2733" - }, - "appliesTo" : [ ] - }, - "9N4WQNFE4TP78PQF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "9N4WQNFE4TP78PQF.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9N4WQNFE4TP78PQF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "9N4WQNFE4TP78PQF", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "9N4WQNFE4TP78PQF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "9N4WQNFE4TP78PQF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5369" - }, - "appliesTo" : [ ] - }, - "9N4WQNFE4TP78PQF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "9N4WQNFE4TP78PQF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9N4WQNFE4TP78PQF.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "9N4WQNFE4TP78PQF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9N4WQNFE4TP78PQF.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "9N4WQNFE4TP78PQF.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2823" - }, - "appliesTo" : [ ] - }, - "9N4WQNFE4TP78PQF.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "9N4WQNFE4TP78PQF.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9N4WQNFE4TP78PQF.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "9N4WQNFE4TP78PQF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9N4WQNFE4TP78PQF.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "9N4WQNFE4TP78PQF.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9N4WQNFE4TP78PQF.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "9N4WQNFE4TP78PQF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9N4WQNFE4TP78PQF.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "9N4WQNFE4TP78PQF.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2079" - }, - "appliesTo" : [ ] - }, - "9N4WQNFE4TP78PQF.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "9N4WQNFE4TP78PQF.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9N4WQNFE4TP78PQF.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "9N4WQNFE4TP78PQF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9N4WQNFE4TP78PQF.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "9N4WQNFE4TP78PQF.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9N4WQNFE4TP78PQF.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "9N4WQNFE4TP78PQF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9N4WQNFE4TP78PQF.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "9N4WQNFE4TP78PQF.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "ZWKFSQ2ZGE2PEHZQ" : { - "ZWKFSQ2ZGE2PEHZQ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ZWKFSQ2ZGE2PEHZQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZWKFSQ2ZGE2PEHZQ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ZWKFSQ2ZGE2PEHZQ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15947" - }, - "appliesTo" : [ ] - }, - "ZWKFSQ2ZGE2PEHZQ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ZWKFSQ2ZGE2PEHZQ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZWKFSQ2ZGE2PEHZQ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ZWKFSQ2ZGE2PEHZQ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "ZWKFSQ2ZGE2PEHZQ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ZWKFSQ2ZGE2PEHZQ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3020000000" - }, - "appliesTo" : [ ] - }, - "ZWKFSQ2ZGE2PEHZQ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ZWKFSQ2ZGE2PEHZQ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "63527" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZWKFSQ2ZGE2PEHZQ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ZWKFSQ2ZGE2PEHZQ", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "ZWKFSQ2ZGE2PEHZQ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ZWKFSQ2ZGE2PEHZQ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ZWKFSQ2ZGE2PEHZQ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ZWKFSQ2ZGE2PEHZQ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "84053" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZWKFSQ2ZGE2PEHZQ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ZWKFSQ2ZGE2PEHZQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZWKFSQ2ZGE2PEHZQ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ZWKFSQ2ZGE2PEHZQ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZWKFSQ2ZGE2PEHZQ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ZWKFSQ2ZGE2PEHZQ", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "ZWKFSQ2ZGE2PEHZQ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ZWKFSQ2ZGE2PEHZQ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "58153" - }, - "appliesTo" : [ ] - }, - "ZWKFSQ2ZGE2PEHZQ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ZWKFSQ2ZGE2PEHZQ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZWKFSQ2ZGE2PEHZQ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ZWKFSQ2ZGE2PEHZQ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "ZWKFSQ2ZGE2PEHZQ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ZWKFSQ2ZGE2PEHZQ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3300000000" - }, - "appliesTo" : [ ] - }, - "ZWKFSQ2ZGE2PEHZQ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ZWKFSQ2ZGE2PEHZQ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21628" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZWKFSQ2ZGE2PEHZQ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ZWKFSQ2ZGE2PEHZQ", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "ZWKFSQ2ZGE2PEHZQ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ZWKFSQ2ZGE2PEHZQ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32610" - }, - "appliesTo" : [ ] - }, - "ZWKFSQ2ZGE2PEHZQ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ZWKFSQ2ZGE2PEHZQ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZWKFSQ2ZGE2PEHZQ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ZWKFSQ2ZGE2PEHZQ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "ZWKFSQ2ZGE2PEHZQ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ZWKFSQ2ZGE2PEHZQ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.3530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZWKFSQ2ZGE2PEHZQ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ZWKFSQ2ZGE2PEHZQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZWKFSQ2ZGE2PEHZQ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ZWKFSQ2ZGE2PEHZQ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31735" - }, - "appliesTo" : [ ] - }, - "ZWKFSQ2ZGE2PEHZQ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ZWKFSQ2ZGE2PEHZQ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZWKFSQ2ZGE2PEHZQ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ZWKFSQ2ZGE2PEHZQ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "ZWKFSQ2ZGE2PEHZQ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ZWKFSQ2ZGE2PEHZQ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "95790" - }, - "appliesTo" : [ ] - }, - "ZWKFSQ2ZGE2PEHZQ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ZWKFSQ2ZGE2PEHZQ.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZWKFSQ2ZGE2PEHZQ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ZWKFSQ2ZGE2PEHZQ", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "ZWKFSQ2ZGE2PEHZQ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ZWKFSQ2ZGE2PEHZQ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.4450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "ZG4JRPCC4VZQWHCQ" : { - "ZG4JRPCC4VZQWHCQ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ZG4JRPCC4VZQWHCQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZG4JRPCC4VZQWHCQ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ZG4JRPCC4VZQWHCQ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3772000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZG4JRPCC4VZQWHCQ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ZG4JRPCC4VZQWHCQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZG4JRPCC4VZQWHCQ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ZG4JRPCC4VZQWHCQ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1840000000" - }, - "appliesTo" : [ ] - }, - "ZG4JRPCC4VZQWHCQ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ZG4JRPCC4VZQWHCQ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1612" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZG4JRPCC4VZQWHCQ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ZG4JRPCC4VZQWHCQ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZG4JRPCC4VZQWHCQ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ZG4JRPCC4VZQWHCQ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZG4JRPCC4VZQWHCQ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ZG4JRPCC4VZQWHCQ", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "ZG4JRPCC4VZQWHCQ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ZG4JRPCC4VZQWHCQ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1505" - }, - "appliesTo" : [ ] - }, - "ZG4JRPCC4VZQWHCQ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ZG4JRPCC4VZQWHCQ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZG4JRPCC4VZQWHCQ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ZG4JRPCC4VZQWHCQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZG4JRPCC4VZQWHCQ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ZG4JRPCC4VZQWHCQ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3191" - }, - "appliesTo" : [ ] - }, - "ZG4JRPCC4VZQWHCQ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ZG4JRPCC4VZQWHCQ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZG4JRPCC4VZQWHCQ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "ZG4JRPCC4VZQWHCQ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZG4JRPCC4VZQWHCQ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "ZG4JRPCC4VZQWHCQ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2985000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZG4JRPCC4VZQWHCQ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ZG4JRPCC4VZQWHCQ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZG4JRPCC4VZQWHCQ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ZG4JRPCC4VZQWHCQ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7975" - }, - "appliesTo" : [ ] - }, - "ZG4JRPCC4VZQWHCQ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ZG4JRPCC4VZQWHCQ.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZG4JRPCC4VZQWHCQ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ZG4JRPCC4VZQWHCQ", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "ZG4JRPCC4VZQWHCQ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ZG4JRPCC4VZQWHCQ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3816" - }, - "appliesTo" : [ ] - }, - "ZG4JRPCC4VZQWHCQ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ZG4JRPCC4VZQWHCQ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZG4JRPCC4VZQWHCQ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ZG4JRPCC4VZQWHCQ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZG4JRPCC4VZQWHCQ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ZG4JRPCC4VZQWHCQ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3157000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZG4JRPCC4VZQWHCQ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ZG4JRPCC4VZQWHCQ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZG4JRPCC4VZQWHCQ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ZG4JRPCC4VZQWHCQ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4020" - }, - "appliesTo" : [ ] - }, - "ZG4JRPCC4VZQWHCQ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ZG4JRPCC4VZQWHCQ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1529000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZG4JRPCC4VZQWHCQ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ZG4JRPCC4VZQWHCQ", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "ZG4JRPCC4VZQWHCQ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ZG4JRPCC4VZQWHCQ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ZG4JRPCC4VZQWHCQ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ZG4JRPCC4VZQWHCQ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2982" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZG4JRPCC4VZQWHCQ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ZG4JRPCC4VZQWHCQ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "ZG4JRPCC4VZQWHCQ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ZG4JRPCC4VZQWHCQ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7464" - }, - "appliesTo" : [ ] - }, - "ZG4JRPCC4VZQWHCQ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ZG4JRPCC4VZQWHCQ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "R6ZE4UJ2C8B36SBY" : { - "R6ZE4UJ2C8B36SBY.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "R6ZE4UJ2C8B36SBY", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "R6ZE4UJ2C8B36SBY.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "R6ZE4UJ2C8B36SBY.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12466" - }, - "appliesTo" : [ ] - }, - "R6ZE4UJ2C8B36SBY.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "R6ZE4UJ2C8B36SBY.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "R6ZE4UJ2C8B36SBY.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "R6ZE4UJ2C8B36SBY", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "R6ZE4UJ2C8B36SBY.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "R6ZE4UJ2C8B36SBY.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29282" - }, - "appliesTo" : [ ] - }, - "R6ZE4UJ2C8B36SBY.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "R6ZE4UJ2C8B36SBY.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "R6ZE4UJ2C8B36SBY.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "R6ZE4UJ2C8B36SBY", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "R6ZE4UJ2C8B36SBY.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "R6ZE4UJ2C8B36SBY.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11279" - }, - "appliesTo" : [ ] - }, - "R6ZE4UJ2C8B36SBY.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "R6ZE4UJ2C8B36SBY.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "R6ZE4UJ2C8B36SBY.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "R6ZE4UJ2C8B36SBY", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "R6ZE4UJ2C8B36SBY.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "R6ZE4UJ2C8B36SBY.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "R6ZE4UJ2C8B36SBY.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "R6ZE4UJ2C8B36SBY", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "R6ZE4UJ2C8B36SBY.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "R6ZE4UJ2C8B36SBY.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7880000000" - }, - "appliesTo" : [ ] - }, - "R6ZE4UJ2C8B36SBY.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "R6ZE4UJ2C8B36SBY.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4606" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "AJUJW25DAVRG4WEY" : { - "AJUJW25DAVRG4WEY.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "AJUJW25DAVRG4WEY", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "AJUJW25DAVRG4WEY.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "AJUJW25DAVRG4WEY.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "717" - }, - "appliesTo" : [ ] - }, - "AJUJW25DAVRG4WEY.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "AJUJW25DAVRG4WEY.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AJUJW25DAVRG4WEY.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "AJUJW25DAVRG4WEY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AJUJW25DAVRG4WEY.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "AJUJW25DAVRG4WEY.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "AJUJW25DAVRG4WEY.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "AJUJW25DAVRG4WEY.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1373" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "AJUJW25DAVRG4WEY.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "AJUJW25DAVRG4WEY", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "AJUJW25DAVRG4WEY.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "AJUJW25DAVRG4WEY.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2272" - }, - "appliesTo" : [ ] - }, - "AJUJW25DAVRG4WEY.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "AJUJW25DAVRG4WEY.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AJUJW25DAVRG4WEY.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "AJUJW25DAVRG4WEY", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "AJUJW25DAVRG4WEY.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "AJUJW25DAVRG4WEY.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1202" - }, - "appliesTo" : [ ] - }, - "AJUJW25DAVRG4WEY.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "AJUJW25DAVRG4WEY.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AJUJW25DAVRG4WEY.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "AJUJW25DAVRG4WEY", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "AJUJW25DAVRG4WEY.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "AJUJW25DAVRG4WEY.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1118" - }, - "appliesTo" : [ ] - }, - "AJUJW25DAVRG4WEY.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "AJUJW25DAVRG4WEY.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AJUJW25DAVRG4WEY.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "AJUJW25DAVRG4WEY", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "AJUJW25DAVRG4WEY.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "AJUJW25DAVRG4WEY.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1936" - }, - "appliesTo" : [ ] - }, - "AJUJW25DAVRG4WEY.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "AJUJW25DAVRG4WEY.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "AJUJW25DAVRG4WEY.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "AJUJW25DAVRG4WEY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AJUJW25DAVRG4WEY.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "AJUJW25DAVRG4WEY.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "AJUJW25DAVRG4WEY.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "AJUJW25DAVRG4WEY", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "AJUJW25DAVRG4WEY.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "AJUJW25DAVRG4WEY.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "AJUJW25DAVRG4WEY.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "AJUJW25DAVRG4WEY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AJUJW25DAVRG4WEY.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "AJUJW25DAVRG4WEY.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "700" - }, - "appliesTo" : [ ] - }, - "AJUJW25DAVRG4WEY.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "AJUJW25DAVRG4WEY.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "AJUJW25DAVRG4WEY.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "AJUJW25DAVRG4WEY", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "AJUJW25DAVRG4WEY.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "AJUJW25DAVRG4WEY.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3245" - }, - "appliesTo" : [ ] - }, - "AJUJW25DAVRG4WEY.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "AJUJW25DAVRG4WEY.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "AJUJW25DAVRG4WEY.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "AJUJW25DAVRG4WEY", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "AJUJW25DAVRG4WEY.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "AJUJW25DAVRG4WEY.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "EE7BATB9AU6WJQPT" : { - "EE7BATB9AU6WJQPT.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "EE7BATB9AU6WJQPT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EE7BATB9AU6WJQPT.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "EE7BATB9AU6WJQPT.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.1120000000" - }, - "appliesTo" : [ ] - }, - "EE7BATB9AU6WJQPT.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "EE7BATB9AU6WJQPT.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "370863" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EE7BATB9AU6WJQPT.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "EE7BATB9AU6WJQPT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EE7BATB9AU6WJQPT.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "EE7BATB9AU6WJQPT.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "745999" - }, - "appliesTo" : [ ] - }, - "EE7BATB9AU6WJQPT.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "EE7BATB9AU6WJQPT.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "EE7BATB9AU6WJQPT.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "EE7BATB9AU6WJQPT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EE7BATB9AU6WJQPT.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "EE7BATB9AU6WJQPT.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "373386" - }, - "appliesTo" : [ ] - }, - "EE7BATB9AU6WJQPT.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "EE7BATB9AU6WJQPT.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.2080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "EE7BATB9AU6WJQPT.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "EE7BATB9AU6WJQPT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EE7BATB9AU6WJQPT.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "EE7BATB9AU6WJQPT.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "28.9264000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "EE7BATB9AU6WJQPT.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "EE7BATB9AU6WJQPT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EE7BATB9AU6WJQPT.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "EE7BATB9AU6WJQPT.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "127525" - }, - "appliesTo" : [ ] - }, - "EE7BATB9AU6WJQPT.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "EE7BATB9AU6WJQPT.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.5576000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "EE7BATB9AU6WJQPT.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "EE7BATB9AU6WJQPT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EE7BATB9AU6WJQPT.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "EE7BATB9AU6WJQPT.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "29.2238000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "EE7BATB9AU6WJQPT.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "EE7BATB9AU6WJQPT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EE7BATB9AU6WJQPT.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "EE7BATB9AU6WJQPT.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "254669" - }, - "appliesTo" : [ ] - }, - "EE7BATB9AU6WJQPT.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "EE7BATB9AU6WJQPT.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "EE7BATB9AU6WJQPT.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "EE7BATB9AU6WJQPT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EE7BATB9AU6WJQPT.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "EE7BATB9AU6WJQPT.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "28.3264000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "EE7BATB9AU6WJQPT.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "EE7BATB9AU6WJQPT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EE7BATB9AU6WJQPT.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "EE7BATB9AU6WJQPT.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "126284" - }, - "appliesTo" : [ ] - }, - "EE7BATB9AU6WJQPT.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "EE7BATB9AU6WJQPT.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.4160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EE7BATB9AU6WJQPT.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "EE7BATB9AU6WJQPT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EE7BATB9AU6WJQPT.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "EE7BATB9AU6WJQPT.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "28.5338000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "EE7BATB9AU6WJQPT.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "EE7BATB9AU6WJQPT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EE7BATB9AU6WJQPT.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "EE7BATB9AU6WJQPT.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "252238" - }, - "appliesTo" : [ ] - }, - "EE7BATB9AU6WJQPT.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "EE7BATB9AU6WJQPT.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EE7BATB9AU6WJQPT.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "EE7BATB9AU6WJQPT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EE7BATB9AU6WJQPT.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "EE7BATB9AU6WJQPT.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "EE7BATB9AU6WJQPT.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "EE7BATB9AU6WJQPT.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "739708" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "7V39RZQPSWWKKC2U" : { - "7V39RZQPSWWKKC2U.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "7V39RZQPSWWKKC2U", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7V39RZQPSWWKKC2U.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "7V39RZQPSWWKKC2U.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11298" - }, - "appliesTo" : [ ] - }, - "7V39RZQPSWWKKC2U.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "7V39RZQPSWWKKC2U.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7V39RZQPSWWKKC2U.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "7V39RZQPSWWKKC2U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7V39RZQPSWWKKC2U.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "7V39RZQPSWWKKC2U.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7006" - }, - "appliesTo" : [ ] - }, - "7V39RZQPSWWKKC2U.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "7V39RZQPSWWKKC2U.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7V39RZQPSWWKKC2U.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "7V39RZQPSWWKKC2U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7V39RZQPSWWKKC2U.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "7V39RZQPSWWKKC2U.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7V39RZQPSWWKKC2U.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "7V39RZQPSWWKKC2U", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7V39RZQPSWWKKC2U.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "7V39RZQPSWWKKC2U.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13042" - }, - "appliesTo" : [ ] - }, - "7V39RZQPSWWKKC2U.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "7V39RZQPSWWKKC2U.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7V39RZQPSWWKKC2U.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "7V39RZQPSWWKKC2U", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7V39RZQPSWWKKC2U.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "7V39RZQPSWWKKC2U.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6420000000" - }, - "appliesTo" : [ ] - }, - "7V39RZQPSWWKKC2U.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "7V39RZQPSWWKKC2U.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11236" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7V39RZQPSWWKKC2U.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "7V39RZQPSWWKKC2U", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "7V39RZQPSWWKKC2U.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "7V39RZQPSWWKKC2U.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32589" - }, - "appliesTo" : [ ] - }, - "7V39RZQPSWWKKC2U.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "7V39RZQPSWWKKC2U.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7V39RZQPSWWKKC2U.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "7V39RZQPSWWKKC2U", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7V39RZQPSWWKKC2U.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "7V39RZQPSWWKKC2U.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "7V39RZQPSWWKKC2U.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "7V39RZQPSWWKKC2U.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26421" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7V39RZQPSWWKKC2U.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "7V39RZQPSWWKKC2U", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7V39RZQPSWWKKC2U.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "7V39RZQPSWWKKC2U.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7V39RZQPSWWKKC2U.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "7V39RZQPSWWKKC2U", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7V39RZQPSWWKKC2U.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "7V39RZQPSWWKKC2U.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7V39RZQPSWWKKC2U.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "7V39RZQPSWWKKC2U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7V39RZQPSWWKKC2U.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "7V39RZQPSWWKKC2U.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13909" - }, - "appliesTo" : [ ] - }, - "7V39RZQPSWWKKC2U.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "7V39RZQPSWWKKC2U.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7V39RZQPSWWKKC2U.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "7V39RZQPSWWKKC2U", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7V39RZQPSWWKKC2U.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "7V39RZQPSWWKKC2U.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4608" - }, - "appliesTo" : [ ] - }, - "7V39RZQPSWWKKC2U.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "7V39RZQPSWWKKC2U.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "864JFB48Z5WZN64X" : { - "864JFB48Z5WZN64X.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "864JFB48Z5WZN64X", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "864JFB48Z5WZN64X.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "864JFB48Z5WZN64X.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1610000000" - }, - "appliesTo" : [ ] - }, - "864JFB48Z5WZN64X.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "864JFB48Z5WZN64X.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "888" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "864JFB48Z5WZN64X.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "864JFB48Z5WZN64X", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "864JFB48Z5WZN64X.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "864JFB48Z5WZN64X.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2267" - }, - "appliesTo" : [ ] - }, - "864JFB48Z5WZN64X.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "864JFB48Z5WZN64X.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "864JFB48Z5WZN64X.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "864JFB48Z5WZN64X", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "864JFB48Z5WZN64X.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "864JFB48Z5WZN64X.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2116" - }, - "appliesTo" : [ ] - }, - "864JFB48Z5WZN64X.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "864JFB48Z5WZN64X.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "864JFB48Z5WZN64X.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "864JFB48Z5WZN64X", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "864JFB48Z5WZN64X.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "864JFB48Z5WZN64X.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5045" - }, - "appliesTo" : [ ] - }, - "864JFB48Z5WZN64X.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "864JFB48Z5WZN64X.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "864JFB48Z5WZN64X.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "864JFB48Z5WZN64X", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "864JFB48Z5WZN64X.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "864JFB48Z5WZN64X.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "864JFB48Z5WZN64X.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "864JFB48Z5WZN64X", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "864JFB48Z5WZN64X.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "864JFB48Z5WZN64X.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1845" - }, - "appliesTo" : [ ] - }, - "864JFB48Z5WZN64X.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "864JFB48Z5WZN64X.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "864JFB48Z5WZN64X.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "864JFB48Z5WZN64X", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "864JFB48Z5WZN64X.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "864JFB48Z5WZN64X.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "864JFB48Z5WZN64X.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "864JFB48Z5WZN64X", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "864JFB48Z5WZN64X.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "864JFB48Z5WZN64X.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "864JFB48Z5WZN64X.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "864JFB48Z5WZN64X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "864JFB48Z5WZN64X.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "864JFB48Z5WZN64X.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2540" - }, - "appliesTo" : [ ] - }, - "864JFB48Z5WZN64X.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "864JFB48Z5WZN64X.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "864JFB48Z5WZN64X.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "864JFB48Z5WZN64X", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "864JFB48Z5WZN64X.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "864JFB48Z5WZN64X.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "864JFB48Z5WZN64X.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "864JFB48Z5WZN64X.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5723" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "864JFB48Z5WZN64X.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "864JFB48Z5WZN64X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "864JFB48Z5WZN64X.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "864JFB48Z5WZN64X.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "864JFB48Z5WZN64X.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "864JFB48Z5WZN64X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "864JFB48Z5WZN64X.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "864JFB48Z5WZN64X.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1028" - }, - "appliesTo" : [ ] - }, - "864JFB48Z5WZN64X.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "864JFB48Z5WZN64X.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "AP8CRXEFDUCGR7QY" : { - "AP8CRXEFDUCGR7QY.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "AP8CRXEFDUCGR7QY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AP8CRXEFDUCGR7QY.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "AP8CRXEFDUCGR7QY.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "AP8CRXEFDUCGR7QY.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "AP8CRXEFDUCGR7QY.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1312" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AP8CRXEFDUCGR7QY.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "AP8CRXEFDUCGR7QY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AP8CRXEFDUCGR7QY.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "AP8CRXEFDUCGR7QY.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1388" - }, - "appliesTo" : [ ] - }, - "AP8CRXEFDUCGR7QY.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "AP8CRXEFDUCGR7QY.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "AP8CRXEFDUCGR7QY.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "AP8CRXEFDUCGR7QY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AP8CRXEFDUCGR7QY.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "AP8CRXEFDUCGR7QY.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1352000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "AP8CRXEFDUCGR7QY.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "AP8CRXEFDUCGR7QY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AP8CRXEFDUCGR7QY.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "AP8CRXEFDUCGR7QY.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "AP8CRXEFDUCGR7QY.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "AP8CRXEFDUCGR7QY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AP8CRXEFDUCGR7QY.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "AP8CRXEFDUCGR7QY.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "661" - }, - "appliesTo" : [ ] - }, - "AP8CRXEFDUCGR7QY.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "AP8CRXEFDUCGR7QY.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0755000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AP8CRXEFDUCGR7QY.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "AP8CRXEFDUCGR7QY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AP8CRXEFDUCGR7QY.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "AP8CRXEFDUCGR7QY.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3602" - }, - "appliesTo" : [ ] - }, - "AP8CRXEFDUCGR7QY.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "AP8CRXEFDUCGR7QY.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "AP8CRXEFDUCGR7QY.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "AP8CRXEFDUCGR7QY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AP8CRXEFDUCGR7QY.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "AP8CRXEFDUCGR7QY.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1417000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "AP8CRXEFDUCGR7QY.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "AP8CRXEFDUCGR7QY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AP8CRXEFDUCGR7QY.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "AP8CRXEFDUCGR7QY.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0799000000" - }, - "appliesTo" : [ ] - }, - "AP8CRXEFDUCGR7QY.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "AP8CRXEFDUCGR7QY.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "700" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "AP8CRXEFDUCGR7QY.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "AP8CRXEFDUCGR7QY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AP8CRXEFDUCGR7QY.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "AP8CRXEFDUCGR7QY.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1632000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "AP8CRXEFDUCGR7QY.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "AP8CRXEFDUCGR7QY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AP8CRXEFDUCGR7QY.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "AP8CRXEFDUCGR7QY.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "AP8CRXEFDUCGR7QY.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "AP8CRXEFDUCGR7QY.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3204" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AP8CRXEFDUCGR7QY.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "AP8CRXEFDUCGR7QY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AP8CRXEFDUCGR7QY.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "AP8CRXEFDUCGR7QY.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1813" - }, - "appliesTo" : [ ] - }, - "AP8CRXEFDUCGR7QY.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "AP8CRXEFDUCGR7QY.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "AP8CRXEFDUCGR7QY.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "AP8CRXEFDUCGR7QY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AP8CRXEFDUCGR7QY.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "AP8CRXEFDUCGR7QY.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0650000000" - }, - "appliesTo" : [ ] - }, - "AP8CRXEFDUCGR7QY.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "AP8CRXEFDUCGR7QY.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1703" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "FMDFEJP7NHC74DVF" : { - "FMDFEJP7NHC74DVF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "FMDFEJP7NHC74DVF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "FMDFEJP7NHC74DVF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "FMDFEJP7NHC74DVF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "736" - }, - "appliesTo" : [ ] - }, - "FMDFEJP7NHC74DVF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "FMDFEJP7NHC74DVF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FMDFEJP7NHC74DVF.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "FMDFEJP7NHC74DVF", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "FMDFEJP7NHC74DVF.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "FMDFEJP7NHC74DVF.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FMDFEJP7NHC74DVF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "FMDFEJP7NHC74DVF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "FMDFEJP7NHC74DVF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "FMDFEJP7NHC74DVF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2361" - }, - "appliesTo" : [ ] - }, - "FMDFEJP7NHC74DVF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "FMDFEJP7NHC74DVF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FMDFEJP7NHC74DVF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "FMDFEJP7NHC74DVF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "FMDFEJP7NHC74DVF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "FMDFEJP7NHC74DVF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1212" - }, - "appliesTo" : [ ] - }, - "FMDFEJP7NHC74DVF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "FMDFEJP7NHC74DVF.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FMDFEJP7NHC74DVF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "FMDFEJP7NHC74DVF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "FMDFEJP7NHC74DVF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "FMDFEJP7NHC74DVF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1212" - }, - "appliesTo" : [ ] - }, - "FMDFEJP7NHC74DVF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "FMDFEJP7NHC74DVF.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "TE2QPK3WJ4MBEASP" : { - "TE2QPK3WJ4MBEASP.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "TE2QPK3WJ4MBEASP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TE2QPK3WJ4MBEASP.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "TE2QPK3WJ4MBEASP.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.5320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TE2QPK3WJ4MBEASP.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TE2QPK3WJ4MBEASP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TE2QPK3WJ4MBEASP.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TE2QPK3WJ4MBEASP.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.1750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TE2QPK3WJ4MBEASP.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "TE2QPK3WJ4MBEASP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TE2QPK3WJ4MBEASP.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "TE2QPK3WJ4MBEASP.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TE2QPK3WJ4MBEASP.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "TE2QPK3WJ4MBEASP.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "132814" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TE2QPK3WJ4MBEASP.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "TE2QPK3WJ4MBEASP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TE2QPK3WJ4MBEASP.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "TE2QPK3WJ4MBEASP.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "43392" - }, - "appliesTo" : [ ] - }, - "TE2QPK3WJ4MBEASP.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "TE2QPK3WJ4MBEASP.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.0830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TE2QPK3WJ4MBEASP.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "TE2QPK3WJ4MBEASP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TE2QPK3WJ4MBEASP.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "TE2QPK3WJ4MBEASP.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TE2QPK3WJ4MBEASP.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "TE2QPK3WJ4MBEASP.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "86187" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TE2QPK3WJ4MBEASP.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "TE2QPK3WJ4MBEASP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TE2QPK3WJ4MBEASP.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "TE2QPK3WJ4MBEASP.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.8480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TE2QPK3WJ4MBEASP.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TE2QPK3WJ4MBEASP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TE2QPK3WJ4MBEASP.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TE2QPK3WJ4MBEASP.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "111344" - }, - "appliesTo" : [ ] - }, - "TE2QPK3WJ4MBEASP.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TE2QPK3WJ4MBEASP.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TE2QPK3WJ4MBEASP.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TE2QPK3WJ4MBEASP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TE2QPK3WJ4MBEASP.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TE2QPK3WJ4MBEASP.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "57408" - }, - "appliesTo" : [ ] - }, - "TE2QPK3WJ4MBEASP.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TE2QPK3WJ4MBEASP.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TE2QPK3WJ4MBEASP.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "TE2QPK3WJ4MBEASP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TE2QPK3WJ4MBEASP.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "TE2QPK3WJ4MBEASP.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "66019" - }, - "appliesTo" : [ ] - }, - "TE2QPK3WJ4MBEASP.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "TE2QPK3WJ4MBEASP.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TE2QPK3WJ4MBEASP.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TE2QPK3WJ4MBEASP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TE2QPK3WJ4MBEASP.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TE2QPK3WJ4MBEASP.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37732" - }, - "appliesTo" : [ ] - }, - "TE2QPK3WJ4MBEASP.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TE2QPK3WJ4MBEASP.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.4370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TE2QPK3WJ4MBEASP.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TE2QPK3WJ4MBEASP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TE2QPK3WJ4MBEASP.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TE2QPK3WJ4MBEASP.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "75094" - }, - "appliesTo" : [ ] - }, - "TE2QPK3WJ4MBEASP.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TE2QPK3WJ4MBEASP.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TE2QPK3WJ4MBEASP.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "TE2QPK3WJ4MBEASP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TE2QPK3WJ4MBEASP.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "TE2QPK3WJ4MBEASP.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.5560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "26EZN83WFYW935BY" : { - "26EZN83WFYW935BY.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "26EZN83WFYW935BY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "26EZN83WFYW935BY.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "26EZN83WFYW935BY.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4385" - }, - "appliesTo" : [ ] - }, - "26EZN83WFYW935BY.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "26EZN83WFYW935BY.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "26EZN83WFYW935BY.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "26EZN83WFYW935BY", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "26EZN83WFYW935BY.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "26EZN83WFYW935BY.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "26EZN83WFYW935BY.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "26EZN83WFYW935BY.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8705" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "26EZN83WFYW935BY.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "26EZN83WFYW935BY", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "26EZN83WFYW935BY.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "26EZN83WFYW935BY.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "26EZN83WFYW935BY.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "26EZN83WFYW935BY", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "26EZN83WFYW935BY.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "26EZN83WFYW935BY.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "26EZN83WFYW935BY.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "26EZN83WFYW935BY.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11085" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "26EZN83WFYW935BY.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "26EZN83WFYW935BY", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "26EZN83WFYW935BY.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "26EZN83WFYW935BY.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "26EZN83WFYW935BY.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "26EZN83WFYW935BY", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "26EZN83WFYW935BY.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "26EZN83WFYW935BY.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1683" - }, - "appliesTo" : [ ] - }, - "26EZN83WFYW935BY.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "26EZN83WFYW935BY.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "26EZN83WFYW935BY.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "26EZN83WFYW935BY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "26EZN83WFYW935BY.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "26EZN83WFYW935BY.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "26EZN83WFYW935BY.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "26EZN83WFYW935BY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "26EZN83WFYW935BY.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "26EZN83WFYW935BY.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3190000000" - }, - "appliesTo" : [ ] - }, - "26EZN83WFYW935BY.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "26EZN83WFYW935BY.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1656" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "26EZN83WFYW935BY.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "26EZN83WFYW935BY", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "26EZN83WFYW935BY.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "26EZN83WFYW935BY.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3979" - }, - "appliesTo" : [ ] - }, - "26EZN83WFYW935BY.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "26EZN83WFYW935BY.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "26EZN83WFYW935BY.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "26EZN83WFYW935BY", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "26EZN83WFYW935BY.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "26EZN83WFYW935BY.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4544" - }, - "appliesTo" : [ ] - }, - "26EZN83WFYW935BY.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "26EZN83WFYW935BY.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "26EZN83WFYW935BY.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "26EZN83WFYW935BY", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "26EZN83WFYW935BY.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "26EZN83WFYW935BY.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2691" - }, - "appliesTo" : [ ] - }, - "26EZN83WFYW935BY.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "26EZN83WFYW935BY.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "GVHWDK4ADFF5B3WR" : { - "GVHWDK4ADFF5B3WR.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "GVHWDK4ADFF5B3WR", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GVHWDK4ADFF5B3WR.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "GVHWDK4ADFF5B3WR.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25543" - }, - "appliesTo" : [ ] - }, - "GVHWDK4ADFF5B3WR.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "GVHWDK4ADFF5B3WR.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GVHWDK4ADFF5B3WR.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "GVHWDK4ADFF5B3WR", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "GVHWDK4ADFF5B3WR.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "GVHWDK4ADFF5B3WR.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7500000000" - }, - "appliesTo" : [ ] - }, - "GVHWDK4ADFF5B3WR.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "GVHWDK4ADFF5B3WR.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7220" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GVHWDK4ADFF5B3WR.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "GVHWDK4ADFF5B3WR", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GVHWDK4ADFF5B3WR.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "GVHWDK4ADFF5B3WR.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10880" - }, - "appliesTo" : [ ] - }, - "GVHWDK4ADFF5B3WR.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "GVHWDK4ADFF5B3WR.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GVHWDK4ADFF5B3WR.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "GVHWDK4ADFF5B3WR", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GVHWDK4ADFF5B3WR.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "GVHWDK4ADFF5B3WR.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "GVHWDK4ADFF5B3WR.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "GVHWDK4ADFF5B3WR.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13514" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GVHWDK4ADFF5B3WR.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "GVHWDK4ADFF5B3WR", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GVHWDK4ADFF5B3WR.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "GVHWDK4ADFF5B3WR.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "YRUVJDC2XTW5YRU3" : { - "YRUVJDC2XTW5YRU3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YRUVJDC2XTW5YRU3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YRUVJDC2XTW5YRU3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YRUVJDC2XTW5YRU3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23563" - }, - "appliesTo" : [ ] - }, - "YRUVJDC2XTW5YRU3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YRUVJDC2XTW5YRU3.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YRUVJDC2XTW5YRU3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YRUVJDC2XTW5YRU3", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YRUVJDC2XTW5YRU3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YRUVJDC2XTW5YRU3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13987" - }, - "appliesTo" : [ ] - }, - "YRUVJDC2XTW5YRU3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YRUVJDC2XTW5YRU3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YRUVJDC2XTW5YRU3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YRUVJDC2XTW5YRU3", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "YRUVJDC2XTW5YRU3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YRUVJDC2XTW5YRU3.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YRUVJDC2XTW5YRU3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YRUVJDC2XTW5YRU3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YRUVJDC2XTW5YRU3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YRUVJDC2XTW5YRU3.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9380000000" - }, - "appliesTo" : [ ] - }, - "YRUVJDC2XTW5YRU3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YRUVJDC2XTW5YRU3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26559" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YRUVJDC2XTW5YRU3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YRUVJDC2XTW5YRU3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YRUVJDC2XTW5YRU3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YRUVJDC2XTW5YRU3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YRUVJDC2XTW5YRU3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YRUVJDC2XTW5YRU3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "48137" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "G8C4DK367XUB4P7B" : { - "G8C4DK367XUB4P7B.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "G8C4DK367XUB4P7B", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "G8C4DK367XUB4P7B.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "G8C4DK367XUB4P7B.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7899000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "G8C4DK367XUB4P7B.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "G8C4DK367XUB4P7B", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "G8C4DK367XUB4P7B.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "G8C4DK367XUB4P7B.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20330" - }, - "appliesTo" : [ ] - }, - "G8C4DK367XUB4P7B.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "G8C4DK367XUB4P7B.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "G8C4DK367XUB4P7B.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "G8C4DK367XUB4P7B", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "G8C4DK367XUB4P7B.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "G8C4DK367XUB4P7B.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10487" - }, - "appliesTo" : [ ] - }, - "G8C4DK367XUB4P7B.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "G8C4DK367XUB4P7B.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "G8C4DK367XUB4P7B.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "G8C4DK367XUB4P7B", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "G8C4DK367XUB4P7B.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "G8C4DK367XUB4P7B.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8088000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "G8C4DK367XUB4P7B.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "G8C4DK367XUB4P7B", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "G8C4DK367XUB4P7B.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "G8C4DK367XUB4P7B.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10257" - }, - "appliesTo" : [ ] - }, - "G8C4DK367XUB4P7B.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "G8C4DK367XUB4P7B.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3903000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "G8C4DK367XUB4P7B.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "G8C4DK367XUB4P7B", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "G8C4DK367XUB4P7B.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "G8C4DK367XUB4P7B.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "G8C4DK367XUB4P7B.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "G8C4DK367XUB4P7B.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7328" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "G8C4DK367XUB4P7B.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "G8C4DK367XUB4P7B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "G8C4DK367XUB4P7B.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "G8C4DK367XUB4P7B.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8765000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "G8C4DK367XUB4P7B.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "G8C4DK367XUB4P7B", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "G8C4DK367XUB4P7B.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "G8C4DK367XUB4P7B.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3679" - }, - "appliesTo" : [ ] - }, - "G8C4DK367XUB4P7B.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "G8C4DK367XUB4P7B.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "G8C4DK367XUB4P7B.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "G8C4DK367XUB4P7B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "G8C4DK367XUB4P7B.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "G8C4DK367XUB4P7B.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3795" - }, - "appliesTo" : [ ] - }, - "G8C4DK367XUB4P7B.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "G8C4DK367XUB4P7B.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4332000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "G8C4DK367XUB4P7B.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "G8C4DK367XUB4P7B", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "G8C4DK367XUB4P7B.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "G8C4DK367XUB4P7B.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8488000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "G8C4DK367XUB4P7B.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "G8C4DK367XUB4P7B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "G8C4DK367XUB4P7B.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "G8C4DK367XUB4P7B.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "G8C4DK367XUB4P7B.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "G8C4DK367XUB4P7B.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7554" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "G8C4DK367XUB4P7B.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "G8C4DK367XUB4P7B", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "G8C4DK367XUB4P7B.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "G8C4DK367XUB4P7B.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "G8C4DK367XUB4P7B.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "G8C4DK367XUB4P7B.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20903" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "BYDPYVAT6B57HKJT" : { - "BYDPYVAT6B57HKJT.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "BYDPYVAT6B57HKJT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BYDPYVAT6B57HKJT.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "BYDPYVAT6B57HKJT.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5841" - }, - "appliesTo" : [ ] - }, - "BYDPYVAT6B57HKJT.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "BYDPYVAT6B57HKJT.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BYDPYVAT6B57HKJT.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "BYDPYVAT6B57HKJT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BYDPYVAT6B57HKJT.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "BYDPYVAT6B57HKJT.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BYDPYVAT6B57HKJT.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "BYDPYVAT6B57HKJT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BYDPYVAT6B57HKJT.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "BYDPYVAT6B57HKJT.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4126" - }, - "appliesTo" : [ ] - }, - "BYDPYVAT6B57HKJT.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "BYDPYVAT6B57HKJT.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BYDPYVAT6B57HKJT.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "BYDPYVAT6B57HKJT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BYDPYVAT6B57HKJT.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "BYDPYVAT6B57HKJT.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "BYDPYVAT6B57HKJT.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "BYDPYVAT6B57HKJT.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9664" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BYDPYVAT6B57HKJT.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "BYDPYVAT6B57HKJT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BYDPYVAT6B57HKJT.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "BYDPYVAT6B57HKJT.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5148" - }, - "appliesTo" : [ ] - }, - "BYDPYVAT6B57HKJT.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "BYDPYVAT6B57HKJT.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BYDPYVAT6B57HKJT.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "BYDPYVAT6B57HKJT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BYDPYVAT6B57HKJT.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "BYDPYVAT6B57HKJT.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BYDPYVAT6B57HKJT.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "BYDPYVAT6B57HKJT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BYDPYVAT6B57HKJT.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "BYDPYVAT6B57HKJT.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8322" - }, - "appliesTo" : [ ] - }, - "BYDPYVAT6B57HKJT.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "BYDPYVAT6B57HKJT.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BYDPYVAT6B57HKJT.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "BYDPYVAT6B57HKJT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BYDPYVAT6B57HKJT.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "BYDPYVAT6B57HKJT.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3290000000" - }, - "appliesTo" : [ ] - }, - "BYDPYVAT6B57HKJT.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "BYDPYVAT6B57HKJT.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2358" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BYDPYVAT6B57HKJT.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "BYDPYVAT6B57HKJT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BYDPYVAT6B57HKJT.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "BYDPYVAT6B57HKJT.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BYDPYVAT6B57HKJT.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "BYDPYVAT6B57HKJT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BYDPYVAT6B57HKJT.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "BYDPYVAT6B57HKJT.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BYDPYVAT6B57HKJT.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "BYDPYVAT6B57HKJT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BYDPYVAT6B57HKJT.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "BYDPYVAT6B57HKJT.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3700000000" - }, - "appliesTo" : [ ] - }, - "BYDPYVAT6B57HKJT.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "BYDPYVAT6B57HKJT.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2712" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BYDPYVAT6B57HKJT.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "BYDPYVAT6B57HKJT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BYDPYVAT6B57HKJT.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "BYDPYVAT6B57HKJT.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3588" - }, - "appliesTo" : [ ] - }, - "BYDPYVAT6B57HKJT.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "BYDPYVAT6B57HKJT.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "X4RWGEB2DKQGCWC2" : { - "X4RWGEB2DKQGCWC2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "X4RWGEB2DKQGCWC2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "X4RWGEB2DKQGCWC2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "X4RWGEB2DKQGCWC2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "405" - }, - "appliesTo" : [ ] - }, - "X4RWGEB2DKQGCWC2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "X4RWGEB2DKQGCWC2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "X4RWGEB2DKQGCWC2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "X4RWGEB2DKQGCWC2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "X4RWGEB2DKQGCWC2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "X4RWGEB2DKQGCWC2.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0280000000" - }, - "appliesTo" : [ ] - }, - "X4RWGEB2DKQGCWC2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "X4RWGEB2DKQGCWC2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "631" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "X4RWGEB2DKQGCWC2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "X4RWGEB2DKQGCWC2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "X4RWGEB2DKQGCWC2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "X4RWGEB2DKQGCWC2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "X4RWGEB2DKQGCWC2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "X4RWGEB2DKQGCWC2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1284" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "X4RWGEB2DKQGCWC2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "X4RWGEB2DKQGCWC2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "X4RWGEB2DKQGCWC2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "X4RWGEB2DKQGCWC2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "671" - }, - "appliesTo" : [ ] - }, - "X4RWGEB2DKQGCWC2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "X4RWGEB2DKQGCWC2.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "X4RWGEB2DKQGCWC2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "X4RWGEB2DKQGCWC2", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "X4RWGEB2DKQGCWC2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "X4RWGEB2DKQGCWC2.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "XDBQD4Z97Q72N97A" : { - "XDBQD4Z97Q72N97A.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XDBQD4Z97Q72N97A", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "XDBQD4Z97Q72N97A.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XDBQD4Z97Q72N97A.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "24.4980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XDBQD4Z97Q72N97A.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XDBQD4Z97Q72N97A", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "XDBQD4Z97Q72N97A.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XDBQD4Z97Q72N97A.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "205000" - }, - "appliesTo" : [ ] - }, - "XDBQD4Z97Q72N97A.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XDBQD4Z97Q72N97A.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XDBQD4Z97Q72N97A.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "XDBQD4Z97Q72N97A", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "XDBQD4Z97Q72N97A.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "XDBQD4Z97Q72N97A.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "17.9180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XDBQD4Z97Q72N97A.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "XDBQD4Z97Q72N97A", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "XDBQD4Z97Q72N97A.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "XDBQD4Z97Q72N97A.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "225839" - }, - "appliesTo" : [ ] - }, - "XDBQD4Z97Q72N97A.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "XDBQD4Z97Q72N97A.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.5940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XDBQD4Z97Q72N97A.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "XDBQD4Z97Q72N97A", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "XDBQD4Z97Q72N97A.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "XDBQD4Z97Q72N97A.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.6310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XDBQD4Z97Q72N97A.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XDBQD4Z97Q72N97A", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "XDBQD4Z97Q72N97A.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XDBQD4Z97Q72N97A.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "407838" - }, - "appliesTo" : [ ] - }, - "XDBQD4Z97Q72N97A.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XDBQD4Z97Q72N97A.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XDBQD4Z97Q72N97A.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "XDBQD4Z97Q72N97A", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "XDBQD4Z97Q72N97A.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "XDBQD4Z97Q72N97A.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "446876" - }, - "appliesTo" : [ ] - }, - "XDBQD4Z97Q72N97A.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "XDBQD4Z97Q72N97A.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XDBQD4Z97Q72N97A.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XDBQD4Z97Q72N97A", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "XDBQD4Z97Q72N97A.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XDBQD4Z97Q72N97A.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "210182" - }, - "appliesTo" : [ ] - }, - "XDBQD4Z97Q72N97A.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XDBQD4Z97Q72N97A.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.9980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XDBQD4Z97Q72N97A.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "XDBQD4Z97Q72N97A", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XDBQD4Z97Q72N97A.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "XDBQD4Z97Q72N97A.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "225169" - }, - "appliesTo" : [ ] - }, - "XDBQD4Z97Q72N97A.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "XDBQD4Z97Q72N97A.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XDBQD4Z97Q72N97A.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XDBQD4Z97Q72N97A", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "XDBQD4Z97Q72N97A.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XDBQD4Z97Q72N97A.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "11.8580000000" - }, - "appliesTo" : [ ] - }, - "XDBQD4Z97Q72N97A.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XDBQD4Z97Q72N97A.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "103872" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XDBQD4Z97Q72N97A.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "XDBQD4Z97Q72N97A", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XDBQD4Z97Q72N97A.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "XDBQD4Z97Q72N97A.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "26.9650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XDBQD4Z97Q72N97A.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "XDBQD4Z97Q72N97A", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XDBQD4Z97Q72N97A.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "XDBQD4Z97Q72N97A.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "114163" - }, - "appliesTo" : [ ] - }, - "XDBQD4Z97Q72N97A.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "XDBQD4Z97Q72N97A.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.0320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "SUJ3QNNHT5BXCCWP" : { - "SUJ3QNNHT5BXCCWP.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "SUJ3QNNHT5BXCCWP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SUJ3QNNHT5BXCCWP.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "SUJ3QNNHT5BXCCWP.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4005" - }, - "appliesTo" : [ ] - }, - "SUJ3QNNHT5BXCCWP.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "SUJ3QNNHT5BXCCWP.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SUJ3QNNHT5BXCCWP.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "SUJ3QNNHT5BXCCWP", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "SUJ3QNNHT5BXCCWP.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "SUJ3QNNHT5BXCCWP.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7267" - }, - "appliesTo" : [ ] - }, - "SUJ3QNNHT5BXCCWP.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "SUJ3QNNHT5BXCCWP.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SUJ3QNNHT5BXCCWP.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "SUJ3QNNHT5BXCCWP", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "SUJ3QNNHT5BXCCWP.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "SUJ3QNNHT5BXCCWP.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SUJ3QNNHT5BXCCWP.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SUJ3QNNHT5BXCCWP", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "SUJ3QNNHT5BXCCWP.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SUJ3QNNHT5BXCCWP.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3811" - }, - "appliesTo" : [ ] - }, - "SUJ3QNNHT5BXCCWP.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SUJ3QNNHT5BXCCWP.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SUJ3QNNHT5BXCCWP.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SUJ3QNNHT5BXCCWP", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "SUJ3QNNHT5BXCCWP.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SUJ3QNNHT5BXCCWP.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9558" - }, - "appliesTo" : [ ] - }, - "SUJ3QNNHT5BXCCWP.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SUJ3QNNHT5BXCCWP.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SUJ3QNNHT5BXCCWP.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "SUJ3QNNHT5BXCCWP", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "SUJ3QNNHT5BXCCWP.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "SUJ3QNNHT5BXCCWP.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10970" - }, - "appliesTo" : [ ] - }, - "SUJ3QNNHT5BXCCWP.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "SUJ3QNNHT5BXCCWP.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SUJ3QNNHT5BXCCWP.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SUJ3QNNHT5BXCCWP", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "SUJ3QNNHT5BXCCWP.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SUJ3QNNHT5BXCCWP.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1350000000" - }, - "appliesTo" : [ ] - }, - "SUJ3QNNHT5BXCCWP.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SUJ3QNNHT5BXCCWP.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6610" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SUJ3QNNHT5BXCCWP.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "SUJ3QNNHT5BXCCWP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SUJ3QNNHT5BXCCWP.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "SUJ3QNNHT5BXCCWP.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SUJ3QNNHT5BXCCWP.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "SUJ3QNNHT5BXCCWP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SUJ3QNNHT5BXCCWP.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "SUJ3QNNHT5BXCCWP.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2021" - }, - "appliesTo" : [ ] - }, - "SUJ3QNNHT5BXCCWP.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "SUJ3QNNHT5BXCCWP.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SUJ3QNNHT5BXCCWP.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SUJ3QNNHT5BXCCWP", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "SUJ3QNNHT5BXCCWP.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SUJ3QNNHT5BXCCWP.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SUJ3QNNHT5BXCCWP.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SUJ3QNNHT5BXCCWP", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "SUJ3QNNHT5BXCCWP.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SUJ3QNNHT5BXCCWP.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2525" - }, - "appliesTo" : [ ] - }, - "SUJ3QNNHT5BXCCWP.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SUJ3QNNHT5BXCCWP.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "Q7KRGX9524EXCE9T" : { - "Q7KRGX9524EXCE9T.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Q7KRGX9524EXCE9T", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Q7KRGX9524EXCE9T.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Q7KRGX9524EXCE9T.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6469" - }, - "appliesTo" : [ ] - }, - "Q7KRGX9524EXCE9T.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Q7KRGX9524EXCE9T.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7385000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q7KRGX9524EXCE9T.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Q7KRGX9524EXCE9T", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Q7KRGX9524EXCE9T.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Q7KRGX9524EXCE9T.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12809" - }, - "appliesTo" : [ ] - }, - "Q7KRGX9524EXCE9T.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Q7KRGX9524EXCE9T.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Q7KRGX9524EXCE9T.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "Q7KRGX9524EXCE9T", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Q7KRGX9524EXCE9T.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "Q7KRGX9524EXCE9T.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4042000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Q7KRGX9524EXCE9T.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "Q7KRGX9524EXCE9T", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Q7KRGX9524EXCE9T.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "Q7KRGX9524EXCE9T.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Q7KRGX9524EXCE9T.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "Q7KRGX9524EXCE9T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q7KRGX9524EXCE9T.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "Q7KRGX9524EXCE9T.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "Q7KRGX9524EXCE9T.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "Q7KRGX9524EXCE9T.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13763" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Q7KRGX9524EXCE9T.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Q7KRGX9524EXCE9T", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Q7KRGX9524EXCE9T.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Q7KRGX9524EXCE9T.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5141000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Q7KRGX9524EXCE9T.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "Q7KRGX9524EXCE9T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q7KRGX9524EXCE9T.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "Q7KRGX9524EXCE9T.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6956" - }, - "appliesTo" : [ ] - }, - "Q7KRGX9524EXCE9T.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "Q7KRGX9524EXCE9T.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7941000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q7KRGX9524EXCE9T.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "Q7KRGX9524EXCE9T", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Q7KRGX9524EXCE9T.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "Q7KRGX9524EXCE9T.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "Q7KRGX9524EXCE9T.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "Q7KRGX9524EXCE9T.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35276" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Q7KRGX9524EXCE9T.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Q7KRGX9524EXCE9T", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Q7KRGX9524EXCE9T.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Q7KRGX9524EXCE9T.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32632" - }, - "appliesTo" : [ ] - }, - "Q7KRGX9524EXCE9T.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Q7KRGX9524EXCE9T.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Q7KRGX9524EXCE9T.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "Q7KRGX9524EXCE9T", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Q7KRGX9524EXCE9T.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "Q7KRGX9524EXCE9T.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17800" - }, - "appliesTo" : [ ] - }, - "Q7KRGX9524EXCE9T.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "Q7KRGX9524EXCE9T.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6773000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q7KRGX9524EXCE9T.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "Q7KRGX9524EXCE9T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q7KRGX9524EXCE9T.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "Q7KRGX9524EXCE9T.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6308000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Q7KRGX9524EXCE9T.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Q7KRGX9524EXCE9T", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Q7KRGX9524EXCE9T.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Q7KRGX9524EXCE9T.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16740" - }, - "appliesTo" : [ ] - }, - "Q7KRGX9524EXCE9T.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Q7KRGX9524EXCE9T.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "BUBBYJ9CTGMQDCAN" : { - "BUBBYJ9CTGMQDCAN.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "BUBBYJ9CTGMQDCAN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BUBBYJ9CTGMQDCAN.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "BUBBYJ9CTGMQDCAN.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14930" - }, - "appliesTo" : [ ] - }, - "BUBBYJ9CTGMQDCAN.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "BUBBYJ9CTGMQDCAN.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8343000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BUBBYJ9CTGMQDCAN.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "BUBBYJ9CTGMQDCAN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BUBBYJ9CTGMQDCAN.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "BUBBYJ9CTGMQDCAN.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BUBBYJ9CTGMQDCAN.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "BUBBYJ9CTGMQDCAN", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "BUBBYJ9CTGMQDCAN.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "BUBBYJ9CTGMQDCAN.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12982" - }, - "appliesTo" : [ ] - }, - "BUBBYJ9CTGMQDCAN.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "BUBBYJ9CTGMQDCAN.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BUBBYJ9CTGMQDCAN.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "BUBBYJ9CTGMQDCAN", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "BUBBYJ9CTGMQDCAN.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "BUBBYJ9CTGMQDCAN.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2422000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BUBBYJ9CTGMQDCAN.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "BUBBYJ9CTGMQDCAN", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "BUBBYJ9CTGMQDCAN.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "BUBBYJ9CTGMQDCAN.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "67151" - }, - "appliesTo" : [ ] - }, - "BUBBYJ9CTGMQDCAN.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "BUBBYJ9CTGMQDCAN.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BUBBYJ9CTGMQDCAN.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "BUBBYJ9CTGMQDCAN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BUBBYJ9CTGMQDCAN.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "BUBBYJ9CTGMQDCAN.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30401" - }, - "appliesTo" : [ ] - }, - "BUBBYJ9CTGMQDCAN.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "BUBBYJ9CTGMQDCAN.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BUBBYJ9CTGMQDCAN.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "BUBBYJ9CTGMQDCAN", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "BUBBYJ9CTGMQDCAN.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "BUBBYJ9CTGMQDCAN.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32518" - }, - "appliesTo" : [ ] - }, - "BUBBYJ9CTGMQDCAN.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "BUBBYJ9CTGMQDCAN.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3674000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BUBBYJ9CTGMQDCAN.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "BUBBYJ9CTGMQDCAN", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "BUBBYJ9CTGMQDCAN.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "BUBBYJ9CTGMQDCAN.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BUBBYJ9CTGMQDCAN.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "BUBBYJ9CTGMQDCAN", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "BUBBYJ9CTGMQDCAN.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "BUBBYJ9CTGMQDCAN.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "56574" - }, - "appliesTo" : [ ] - }, - "BUBBYJ9CTGMQDCAN.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "BUBBYJ9CTGMQDCAN.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BUBBYJ9CTGMQDCAN.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "BUBBYJ9CTGMQDCAN", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "BUBBYJ9CTGMQDCAN.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "BUBBYJ9CTGMQDCAN.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8027000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BUBBYJ9CTGMQDCAN.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "BUBBYJ9CTGMQDCAN", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "BUBBYJ9CTGMQDCAN.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "BUBBYJ9CTGMQDCAN.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26584" - }, - "appliesTo" : [ ] - }, - "BUBBYJ9CTGMQDCAN.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "BUBBYJ9CTGMQDCAN.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BUBBYJ9CTGMQDCAN.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "BUBBYJ9CTGMQDCAN", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "BUBBYJ9CTGMQDCAN.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "BUBBYJ9CTGMQDCAN.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2059000000" - }, - "appliesTo" : [ ] - }, - "BUBBYJ9CTGMQDCAN.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "BUBBYJ9CTGMQDCAN.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28275" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "AAWCKPS6CUV38XXA" : { - "AAWCKPS6CUV38XXA.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "AAWCKPS6CUV38XXA", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "AAWCKPS6CUV38XXA.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "AAWCKPS6CUV38XXA.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14977" - }, - "appliesTo" : [ ] - }, - "AAWCKPS6CUV38XXA.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "AAWCKPS6CUV38XXA.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AAWCKPS6CUV38XXA.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "AAWCKPS6CUV38XXA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AAWCKPS6CUV38XXA.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "AAWCKPS6CUV38XXA.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6337000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "AAWCKPS6CUV38XXA.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "AAWCKPS6CUV38XXA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AAWCKPS6CUV38XXA.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "AAWCKPS6CUV38XXA.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7093000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "AAWCKPS6CUV38XXA.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "AAWCKPS6CUV38XXA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AAWCKPS6CUV38XXA.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "AAWCKPS6CUV38XXA.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3982000000" - }, - "appliesTo" : [ ] - }, - "AAWCKPS6CUV38XXA.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "AAWCKPS6CUV38XXA.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7048" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "AAWCKPS6CUV38XXA.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "AAWCKPS6CUV38XXA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AAWCKPS6CUV38XXA.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "AAWCKPS6CUV38XXA.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8089" - }, - "appliesTo" : [ ] - }, - "AAWCKPS6CUV38XXA.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "AAWCKPS6CUV38XXA.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "AAWCKPS6CUV38XXA.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "AAWCKPS6CUV38XXA", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "AAWCKPS6CUV38XXA.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "AAWCKPS6CUV38XXA.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6150" - }, - "appliesTo" : [ ] - }, - "AAWCKPS6CUV38XXA.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "AAWCKPS6CUV38XXA.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AAWCKPS6CUV38XXA.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "AAWCKPS6CUV38XXA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AAWCKPS6CUV38XXA.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "AAWCKPS6CUV38XXA.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3075" - }, - "appliesTo" : [ ] - }, - "AAWCKPS6CUV38XXA.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "AAWCKPS6CUV38XXA.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AAWCKPS6CUV38XXA.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "AAWCKPS6CUV38XXA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AAWCKPS6CUV38XXA.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "AAWCKPS6CUV38XXA.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3546" - }, - "appliesTo" : [ ] - }, - "AAWCKPS6CUV38XXA.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "AAWCKPS6CUV38XXA.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5348000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "AAWCKPS6CUV38XXA.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "AAWCKPS6CUV38XXA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AAWCKPS6CUV38XXA.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "AAWCKPS6CUV38XXA.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17230" - }, - "appliesTo" : [ ] - }, - "AAWCKPS6CUV38XXA.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "AAWCKPS6CUV38XXA.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "AAWCKPS6CUV38XXA.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "AAWCKPS6CUV38XXA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AAWCKPS6CUV38XXA.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "AAWCKPS6CUV38XXA.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9801000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "AAWCKPS6CUV38XXA.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "AAWCKPS6CUV38XXA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AAWCKPS6CUV38XXA.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "AAWCKPS6CUV38XXA.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8692000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "AAWCKPS6CUV38XXA.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "AAWCKPS6CUV38XXA", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "AAWCKPS6CUV38XXA.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "AAWCKPS6CUV38XXA.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7165" - }, - "appliesTo" : [ ] - }, - "AAWCKPS6CUV38XXA.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "AAWCKPS6CUV38XXA.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "M8D9MPXPJGZE2NYV" : { - "M8D9MPXPJGZE2NYV.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "M8D9MPXPJGZE2NYV", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "M8D9MPXPJGZE2NYV.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "M8D9MPXPJGZE2NYV.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1582" - }, - "appliesTo" : [ ] - }, - "M8D9MPXPJGZE2NYV.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "M8D9MPXPJGZE2NYV.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "M8D9MPXPJGZE2NYV.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "M8D9MPXPJGZE2NYV", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "M8D9MPXPJGZE2NYV.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "M8D9MPXPJGZE2NYV.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3225" - }, - "appliesTo" : [ ] - }, - "M8D9MPXPJGZE2NYV.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "M8D9MPXPJGZE2NYV.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "M8D9MPXPJGZE2NYV.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "M8D9MPXPJGZE2NYV", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "M8D9MPXPJGZE2NYV.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "M8D9MPXPJGZE2NYV.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1795" - }, - "appliesTo" : [ ] - }, - "M8D9MPXPJGZE2NYV.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "M8D9MPXPJGZE2NYV.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "M8D9MPXPJGZE2NYV.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "M8D9MPXPJGZE2NYV", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "M8D9MPXPJGZE2NYV.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "M8D9MPXPJGZE2NYV.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1042" - }, - "appliesTo" : [ ] - }, - "M8D9MPXPJGZE2NYV.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "M8D9MPXPJGZE2NYV.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "M8D9MPXPJGZE2NYV.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "M8D9MPXPJGZE2NYV", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "M8D9MPXPJGZE2NYV.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "M8D9MPXPJGZE2NYV.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "A2QSKG5CZVECRMUE" : { - "A2QSKG5CZVECRMUE.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "A2QSKG5CZVECRMUE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "A2QSKG5CZVECRMUE.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "A2QSKG5CZVECRMUE.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14990" - }, - "appliesTo" : [ ] - }, - "A2QSKG5CZVECRMUE.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "A2QSKG5CZVECRMUE.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5704000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "A2QSKG5CZVECRMUE.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "A2QSKG5CZVECRMUE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "A2QSKG5CZVECRMUE.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "A2QSKG5CZVECRMUE.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28038" - }, - "appliesTo" : [ ] - }, - "A2QSKG5CZVECRMUE.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "A2QSKG5CZVECRMUE.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "A2QSKG5CZVECRMUE.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "A2QSKG5CZVECRMUE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "A2QSKG5CZVECRMUE.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "A2QSKG5CZVECRMUE.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1162000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "A2QSKG5CZVECRMUE.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "A2QSKG5CZVECRMUE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "A2QSKG5CZVECRMUE.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "A2QSKG5CZVECRMUE.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10905" - }, - "appliesTo" : [ ] - }, - "A2QSKG5CZVECRMUE.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "A2QSKG5CZVECRMUE.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "A2QSKG5CZVECRMUE.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "A2QSKG5CZVECRMUE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "A2QSKG5CZVECRMUE.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "A2QSKG5CZVECRMUE.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5498" - }, - "appliesTo" : [ ] - }, - "A2QSKG5CZVECRMUE.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "A2QSKG5CZVECRMUE.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6276000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "A2QSKG5CZVECRMUE.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "A2QSKG5CZVECRMUE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A2QSKG5CZVECRMUE.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "A2QSKG5CZVECRMUE.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11573" - }, - "appliesTo" : [ ] - }, - "A2QSKG5CZVECRMUE.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "A2QSKG5CZVECRMUE.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "A2QSKG5CZVECRMUE.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "A2QSKG5CZVECRMUE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "A2QSKG5CZVECRMUE.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "A2QSKG5CZVECRMUE.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14296" - }, - "appliesTo" : [ ] - }, - "A2QSKG5CZVECRMUE.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "A2QSKG5CZVECRMUE.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "A2QSKG5CZVECRMUE.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "A2QSKG5CZVECRMUE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "A2QSKG5CZVECRMUE.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "A2QSKG5CZVECRMUE.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29767" - }, - "appliesTo" : [ ] - }, - "A2QSKG5CZVECRMUE.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "A2QSKG5CZVECRMUE.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "A2QSKG5CZVECRMUE.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "A2QSKG5CZVECRMUE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A2QSKG5CZVECRMUE.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "A2QSKG5CZVECRMUE.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3629000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "A2QSKG5CZVECRMUE.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "A2QSKG5CZVECRMUE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A2QSKG5CZVECRMUE.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "A2QSKG5CZVECRMUE.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5839" - }, - "appliesTo" : [ ] - }, - "A2QSKG5CZVECRMUE.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "A2QSKG5CZVECRMUE.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6665000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "A2QSKG5CZVECRMUE.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "A2QSKG5CZVECRMUE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "A2QSKG5CZVECRMUE.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "A2QSKG5CZVECRMUE.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2812000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "A2QSKG5CZVECRMUE.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "A2QSKG5CZVECRMUE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "A2QSKG5CZVECRMUE.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "A2QSKG5CZVECRMUE.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1732000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "XKREJETCK4Q363EE" : { - "XKREJETCK4Q363EE.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "XKREJETCK4Q363EE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XKREJETCK4Q363EE.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "XKREJETCK4Q363EE.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9273" - }, - "appliesTo" : [ ] - }, - "XKREJETCK4Q363EE.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "XKREJETCK4Q363EE.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XKREJETCK4Q363EE.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "XKREJETCK4Q363EE", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "XKREJETCK4Q363EE.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "XKREJETCK4Q363EE.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3570000000" - }, - "appliesTo" : [ ] - }, - "XKREJETCK4Q363EE.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "XKREJETCK4Q363EE.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17398" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XKREJETCK4Q363EE.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "XKREJETCK4Q363EE", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "XKREJETCK4Q363EE.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "XKREJETCK4Q363EE.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XKREJETCK4Q363EE.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XKREJETCK4Q363EE", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "XKREJETCK4Q363EE.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XKREJETCK4Q363EE.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15869" - }, - "appliesTo" : [ ] - }, - "XKREJETCK4Q363EE.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XKREJETCK4Q363EE.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XKREJETCK4Q363EE.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XKREJETCK4Q363EE", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "XKREJETCK4Q363EE.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XKREJETCK4Q363EE.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "XKREJETCK4Q363EE.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XKREJETCK4Q363EE.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22931" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XKREJETCK4Q363EE.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XKREJETCK4Q363EE", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "XKREJETCK4Q363EE.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XKREJETCK4Q363EE.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8898" - }, - "appliesTo" : [ ] - }, - "XKREJETCK4Q363EE.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XKREJETCK4Q363EE.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XKREJETCK4Q363EE.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "XKREJETCK4Q363EE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XKREJETCK4Q363EE.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "XKREJETCK4Q363EE.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XKREJETCK4Q363EE.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "XKREJETCK4Q363EE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XKREJETCK4Q363EE.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "XKREJETCK4Q363EE.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4655" - }, - "appliesTo" : [ ] - }, - "XKREJETCK4Q363EE.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "XKREJETCK4Q363EE.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XKREJETCK4Q363EE.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XKREJETCK4Q363EE", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "XKREJETCK4Q363EE.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XKREJETCK4Q363EE.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XKREJETCK4Q363EE.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XKREJETCK4Q363EE", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "XKREJETCK4Q363EE.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XKREJETCK4Q363EE.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5902" - }, - "appliesTo" : [ ] - }, - "XKREJETCK4Q363EE.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XKREJETCK4Q363EE.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XKREJETCK4Q363EE.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "XKREJETCK4Q363EE", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "XKREJETCK4Q363EE.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "XKREJETCK4Q363EE.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26231" - }, - "appliesTo" : [ ] - }, - "XKREJETCK4Q363EE.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "XKREJETCK4Q363EE.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "NQZBX7B4JXMHGKCW" : { - "NQZBX7B4JXMHGKCW.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "NQZBX7B4JXMHGKCW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NQZBX7B4JXMHGKCW.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "NQZBX7B4JXMHGKCW.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7641" - }, - "appliesTo" : [ ] - }, - "NQZBX7B4JXMHGKCW.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "NQZBX7B4JXMHGKCW.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8652000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "NQZBX7B4JXMHGKCW.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "NQZBX7B4JXMHGKCW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NQZBX7B4JXMHGKCW.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "NQZBX7B4JXMHGKCW.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8225000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "NQZBX7B4JXMHGKCW.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "NQZBX7B4JXMHGKCW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "NQZBX7B4JXMHGKCW.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "NQZBX7B4JXMHGKCW.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14490" - }, - "appliesTo" : [ ] - }, - "NQZBX7B4JXMHGKCW.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "NQZBX7B4JXMHGKCW.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "NQZBX7B4JXMHGKCW.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "NQZBX7B4JXMHGKCW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "NQZBX7B4JXMHGKCW.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "NQZBX7B4JXMHGKCW.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16611" - }, - "appliesTo" : [ ] - }, - "NQZBX7B4JXMHGKCW.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "NQZBX7B4JXMHGKCW.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6317000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "NQZBX7B4JXMHGKCW.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "NQZBX7B4JXMHGKCW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "NQZBX7B4JXMHGKCW.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "NQZBX7B4JXMHGKCW.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "NQZBX7B4JXMHGKCW.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "NQZBX7B4JXMHGKCW.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14921" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "NQZBX7B4JXMHGKCW.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "NQZBX7B4JXMHGKCW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "NQZBX7B4JXMHGKCW.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "NQZBX7B4JXMHGKCW.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "NQZBX7B4JXMHGKCW.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "NQZBX7B4JXMHGKCW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "NQZBX7B4JXMHGKCW.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "NQZBX7B4JXMHGKCW.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13013" - }, - "appliesTo" : [ ] - }, - "NQZBX7B4JXMHGKCW.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "NQZBX7B4JXMHGKCW.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "NQZBX7B4JXMHGKCW.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "NQZBX7B4JXMHGKCW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "NQZBX7B4JXMHGKCW.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "NQZBX7B4JXMHGKCW.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27273" - }, - "appliesTo" : [ ] - }, - "NQZBX7B4JXMHGKCW.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "NQZBX7B4JXMHGKCW.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "NQZBX7B4JXMHGKCW.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "NQZBX7B4JXMHGKCW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "NQZBX7B4JXMHGKCW.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "NQZBX7B4JXMHGKCW.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3693000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "NQZBX7B4JXMHGKCW.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "NQZBX7B4JXMHGKCW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "NQZBX7B4JXMHGKCW.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "NQZBX7B4JXMHGKCW.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "NQZBX7B4JXMHGKCW.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "NQZBX7B4JXMHGKCW.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32561" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "NQZBX7B4JXMHGKCW.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "NQZBX7B4JXMHGKCW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "NQZBX7B4JXMHGKCW.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "NQZBX7B4JXMHGKCW.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6667" - }, - "appliesTo" : [ ] - }, - "NQZBX7B4JXMHGKCW.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "NQZBX7B4JXMHGKCW.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "NQZBX7B4JXMHGKCW.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "NQZBX7B4JXMHGKCW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "NQZBX7B4JXMHGKCW.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "NQZBX7B4JXMHGKCW.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5891000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "VP7WYZSF63TZQ25D" : { - "VP7WYZSF63TZQ25D.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "VP7WYZSF63TZQ25D", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "VP7WYZSF63TZQ25D.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "VP7WYZSF63TZQ25D.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VP7WYZSF63TZQ25D.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "VP7WYZSF63TZQ25D", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "VP7WYZSF63TZQ25D.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "VP7WYZSF63TZQ25D.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4410000000" - }, - "appliesTo" : [ ] - }, - "VP7WYZSF63TZQ25D.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "VP7WYZSF63TZQ25D.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7742" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VP7WYZSF63TZQ25D.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "VP7WYZSF63TZQ25D", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "VP7WYZSF63TZQ25D.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "VP7WYZSF63TZQ25D.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "VP7WYZSF63TZQ25D.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "VP7WYZSF63TZQ25D.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18174" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VP7WYZSF63TZQ25D.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "VP7WYZSF63TZQ25D", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "VP7WYZSF63TZQ25D.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "VP7WYZSF63TZQ25D.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7617" - }, - "appliesTo" : [ ] - }, - "VP7WYZSF63TZQ25D.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "VP7WYZSF63TZQ25D.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VP7WYZSF63TZQ25D.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "VP7WYZSF63TZQ25D", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "VP7WYZSF63TZQ25D.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "VP7WYZSF63TZQ25D.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3109" - }, - "appliesTo" : [ ] - }, - "VP7WYZSF63TZQ25D.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "VP7WYZSF63TZQ25D.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "EMT6SZKEDQPJRUQQ" : { - "EMT6SZKEDQPJRUQQ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "EMT6SZKEDQPJRUQQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EMT6SZKEDQPJRUQQ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "EMT6SZKEDQPJRUQQ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "EMT6SZKEDQPJRUQQ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "EMT6SZKEDQPJRUQQ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "EMT6SZKEDQPJRUQQ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "EMT6SZKEDQPJRUQQ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6497" - }, - "appliesTo" : [ ] - }, - "EMT6SZKEDQPJRUQQ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "EMT6SZKEDQPJRUQQ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EMT6SZKEDQPJRUQQ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "EMT6SZKEDQPJRUQQ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "EMT6SZKEDQPJRUQQ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "EMT6SZKEDQPJRUQQ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12094" - }, - "appliesTo" : [ ] - }, - "EMT6SZKEDQPJRUQQ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "EMT6SZKEDQPJRUQQ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EMT6SZKEDQPJRUQQ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "EMT6SZKEDQPJRUQQ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "EMT6SZKEDQPJRUQQ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "EMT6SZKEDQPJRUQQ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6433" - }, - "appliesTo" : [ ] - }, - "EMT6SZKEDQPJRUQQ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "EMT6SZKEDQPJRUQQ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EMT6SZKEDQPJRUQQ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "EMT6SZKEDQPJRUQQ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "EMT6SZKEDQPJRUQQ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "EMT6SZKEDQPJRUQQ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3440000000" - }, - "appliesTo" : [ ] - }, - "EMT6SZKEDQPJRUQQ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "EMT6SZKEDQPJRUQQ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9041" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "EMT6SZKEDQPJRUQQ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "EMT6SZKEDQPJRUQQ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "EMT6SZKEDQPJRUQQ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "EMT6SZKEDQPJRUQQ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "EMT6SZKEDQPJRUQQ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "EMT6SZKEDQPJRUQQ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "EMT6SZKEDQPJRUQQ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "EMT6SZKEDQPJRUQQ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "EMT6SZKEDQPJRUQQ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "EMT6SZKEDQPJRUQQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EMT6SZKEDQPJRUQQ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "EMT6SZKEDQPJRUQQ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5087" - }, - "appliesTo" : [ ] - }, - "EMT6SZKEDQPJRUQQ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "EMT6SZKEDQPJRUQQ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "EMT6SZKEDQPJRUQQ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "EMT6SZKEDQPJRUQQ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "EMT6SZKEDQPJRUQQ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "EMT6SZKEDQPJRUQQ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3315" - }, - "appliesTo" : [ ] - }, - "EMT6SZKEDQPJRUQQ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "EMT6SZKEDQPJRUQQ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EMT6SZKEDQPJRUQQ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "EMT6SZKEDQPJRUQQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EMT6SZKEDQPJRUQQ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "EMT6SZKEDQPJRUQQ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "EMT6SZKEDQPJRUQQ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "EMT6SZKEDQPJRUQQ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10036" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "EMT6SZKEDQPJRUQQ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "EMT6SZKEDQPJRUQQ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "EMT6SZKEDQPJRUQQ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "EMT6SZKEDQPJRUQQ.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "EMT6SZKEDQPJRUQQ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "EMT6SZKEDQPJRUQQ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17720" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "U333877KGJA25DEX" : { - "U333877KGJA25DEX.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "U333877KGJA25DEX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "U333877KGJA25DEX.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "U333877KGJA25DEX.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17171" - }, - "appliesTo" : [ ] - }, - "U333877KGJA25DEX.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "U333877KGJA25DEX.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "U333877KGJA25DEX.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "U333877KGJA25DEX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "U333877KGJA25DEX.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "U333877KGJA25DEX.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38604" - }, - "appliesTo" : [ ] - }, - "U333877KGJA25DEX.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "U333877KGJA25DEX.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "U333877KGJA25DEX.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "U333877KGJA25DEX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "U333877KGJA25DEX.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "U333877KGJA25DEX.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6228000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "U333877KGJA25DEX.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "U333877KGJA25DEX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "U333877KGJA25DEX.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "U333877KGJA25DEX.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4154000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "U333877KGJA25DEX.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "U333877KGJA25DEX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "U333877KGJA25DEX.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "U333877KGJA25DEX.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32314" - }, - "appliesTo" : [ ] - }, - "U333877KGJA25DEX.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "U333877KGJA25DEX.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "U333877KGJA25DEX.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "U333877KGJA25DEX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U333877KGJA25DEX.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "U333877KGJA25DEX.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "U333877KGJA25DEX.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "U333877KGJA25DEX.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18929" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "U333877KGJA25DEX.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "U333877KGJA25DEX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "U333877KGJA25DEX.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "U333877KGJA25DEX.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8445" - }, - "appliesTo" : [ ] - }, - "U333877KGJA25DEX.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "U333877KGJA25DEX.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "U333877KGJA25DEX.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "U333877KGJA25DEX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "U333877KGJA25DEX.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "U333877KGJA25DEX.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0154000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "U333877KGJA25DEX.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "U333877KGJA25DEX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "U333877KGJA25DEX.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "U333877KGJA25DEX.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16498" - }, - "appliesTo" : [ ] - }, - "U333877KGJA25DEX.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "U333877KGJA25DEX.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "U333877KGJA25DEX.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "U333877KGJA25DEX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U333877KGJA25DEX.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "U333877KGJA25DEX.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9686" - }, - "appliesTo" : [ ] - }, - "U333877KGJA25DEX.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "U333877KGJA25DEX.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0986000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "U333877KGJA25DEX.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "U333877KGJA25DEX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U333877KGJA25DEX.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "U333877KGJA25DEX.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3128000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "U333877KGJA25DEX.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "U333877KGJA25DEX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "U333877KGJA25DEX.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "U333877KGJA25DEX.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19694" - }, - "appliesTo" : [ ] - }, - "U333877KGJA25DEX.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "U333877KGJA25DEX.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "ERSKB3J598DCE2QB" : { - "ERSKB3J598DCE2QB.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ERSKB3J598DCE2QB", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "ERSKB3J598DCE2QB.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ERSKB3J598DCE2QB.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "130383" - }, - "appliesTo" : [ ] - }, - "ERSKB3J598DCE2QB.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ERSKB3J598DCE2QB.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ERSKB3J598DCE2QB.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ERSKB3J598DCE2QB", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "ERSKB3J598DCE2QB.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ERSKB3J598DCE2QB.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "65318" - }, - "appliesTo" : [ ] - }, - "ERSKB3J598DCE2QB.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ERSKB3J598DCE2QB.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ERSKB3J598DCE2QB.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ERSKB3J598DCE2QB", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "ERSKB3J598DCE2QB.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ERSKB3J598DCE2QB.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "378562" - }, - "appliesTo" : [ ] - }, - "ERSKB3J598DCE2QB.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ERSKB3J598DCE2QB.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ERSKB3J598DCE2QB.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ERSKB3J598DCE2QB", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "ERSKB3J598DCE2QB.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ERSKB3J598DCE2QB.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.9890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ERSKB3J598DCE2QB.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ERSKB3J598DCE2QB", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "ERSKB3J598DCE2QB.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ERSKB3J598DCE2QB.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "387438" - }, - "appliesTo" : [ ] - }, - "ERSKB3J598DCE2QB.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ERSKB3J598DCE2QB.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ERSKB3J598DCE2QB.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ERSKB3J598DCE2QB", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "ERSKB3J598DCE2QB.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ERSKB3J598DCE2QB.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "194060" - }, - "appliesTo" : [ ] - }, - "ERSKB3J598DCE2QB.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ERSKB3J598DCE2QB.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ERSKB3J598DCE2QB.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ERSKB3J598DCE2QB", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "ERSKB3J598DCE2QB.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ERSKB3J598DCE2QB.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.1580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ERSKB3J598DCE2QB.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ERSKB3J598DCE2QB", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "ERSKB3J598DCE2QB.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ERSKB3J598DCE2QB.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "190064" - }, - "appliesTo" : [ ] - }, - "ERSKB3J598DCE2QB.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ERSKB3J598DCE2QB.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.2320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ERSKB3J598DCE2QB.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ERSKB3J598DCE2QB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ERSKB3J598DCE2QB.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ERSKB3J598DCE2QB.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.2050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ERSKB3J598DCE2QB.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ERSKB3J598DCE2QB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ERSKB3J598DCE2QB.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ERSKB3J598DCE2QB.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "132184" - }, - "appliesTo" : [ ] - }, - "ERSKB3J598DCE2QB.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ERSKB3J598DCE2QB.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ERSKB3J598DCE2QB.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ERSKB3J598DCE2QB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ERSKB3J598DCE2QB.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ERSKB3J598DCE2QB.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "66236" - }, - "appliesTo" : [ ] - }, - "ERSKB3J598DCE2QB.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ERSKB3J598DCE2QB.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "X2CZGDXUSRSFGZQ7" : { - "X2CZGDXUSRSFGZQ7.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "X2CZGDXUSRSFGZQ7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X2CZGDXUSRSFGZQ7.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "X2CZGDXUSRSFGZQ7.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "X2CZGDXUSRSFGZQ7.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "X2CZGDXUSRSFGZQ7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X2CZGDXUSRSFGZQ7.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "X2CZGDXUSRSFGZQ7.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3615" - }, - "appliesTo" : [ ] - }, - "X2CZGDXUSRSFGZQ7.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "X2CZGDXUSRSFGZQ7.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "X2CZGDXUSRSFGZQ7.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "X2CZGDXUSRSFGZQ7", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "X2CZGDXUSRSFGZQ7.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "X2CZGDXUSRSFGZQ7.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "X2CZGDXUSRSFGZQ7.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "X2CZGDXUSRSFGZQ7", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "X2CZGDXUSRSFGZQ7.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "X2CZGDXUSRSFGZQ7.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7851" - }, - "appliesTo" : [ ] - }, - "X2CZGDXUSRSFGZQ7.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "X2CZGDXUSRSFGZQ7.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "X2CZGDXUSRSFGZQ7.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "X2CZGDXUSRSFGZQ7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X2CZGDXUSRSFGZQ7.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "X2CZGDXUSRSFGZQ7.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8223" - }, - "appliesTo" : [ ] - }, - "X2CZGDXUSRSFGZQ7.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "X2CZGDXUSRSFGZQ7.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "X2CZGDXUSRSFGZQ7.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "X2CZGDXUSRSFGZQ7", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "X2CZGDXUSRSFGZQ7.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "X2CZGDXUSRSFGZQ7.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7320" - }, - "appliesTo" : [ ] - }, - "X2CZGDXUSRSFGZQ7.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "X2CZGDXUSRSFGZQ7.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "X2CZGDXUSRSFGZQ7.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "X2CZGDXUSRSFGZQ7", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "X2CZGDXUSRSFGZQ7.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "X2CZGDXUSRSFGZQ7.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3560000000" - }, - "appliesTo" : [ ] - }, - "X2CZGDXUSRSFGZQ7.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "X2CZGDXUSRSFGZQ7.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11102" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "X2CZGDXUSRSFGZQ7.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "X2CZGDXUSRSFGZQ7", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "X2CZGDXUSRSFGZQ7.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "X2CZGDXUSRSFGZQ7.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4112" - }, - "appliesTo" : [ ] - }, - "X2CZGDXUSRSFGZQ7.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "X2CZGDXUSRSFGZQ7.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "X2CZGDXUSRSFGZQ7.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "X2CZGDXUSRSFGZQ7", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "X2CZGDXUSRSFGZQ7.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "X2CZGDXUSRSFGZQ7.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15677" - }, - "appliesTo" : [ ] - }, - "X2CZGDXUSRSFGZQ7.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "X2CZGDXUSRSFGZQ7.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "X2CZGDXUSRSFGZQ7.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "X2CZGDXUSRSFGZQ7", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "X2CZGDXUSRSFGZQ7.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "X2CZGDXUSRSFGZQ7.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20105" - }, - "appliesTo" : [ ] - }, - "X2CZGDXUSRSFGZQ7.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "X2CZGDXUSRSFGZQ7.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "X2CZGDXUSRSFGZQ7.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "X2CZGDXUSRSFGZQ7", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "X2CZGDXUSRSFGZQ7.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "X2CZGDXUSRSFGZQ7.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "KCTR9Z2CY7MTZPGS" : { - "KCTR9Z2CY7MTZPGS.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "KCTR9Z2CY7MTZPGS", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "KCTR9Z2CY7MTZPGS.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "KCTR9Z2CY7MTZPGS.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.6630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KCTR9Z2CY7MTZPGS.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "KCTR9Z2CY7MTZPGS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KCTR9Z2CY7MTZPGS.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "KCTR9Z2CY7MTZPGS.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33480" - }, - "appliesTo" : [ ] - }, - "KCTR9Z2CY7MTZPGS.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "KCTR9Z2CY7MTZPGS.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KCTR9Z2CY7MTZPGS.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "KCTR9Z2CY7MTZPGS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KCTR9Z2CY7MTZPGS.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "KCTR9Z2CY7MTZPGS.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.6890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KCTR9Z2CY7MTZPGS.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "KCTR9Z2CY7MTZPGS", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "KCTR9Z2CY7MTZPGS.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "KCTR9Z2CY7MTZPGS.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "195390" - }, - "appliesTo" : [ ] - }, - "KCTR9Z2CY7MTZPGS.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "KCTR9Z2CY7MTZPGS.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KCTR9Z2CY7MTZPGS.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "KCTR9Z2CY7MTZPGS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KCTR9Z2CY7MTZPGS.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "KCTR9Z2CY7MTZPGS.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "KCTR9Z2CY7MTZPGS.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "KCTR9Z2CY7MTZPGS.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "66800" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KCTR9Z2CY7MTZPGS.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "KCTR9Z2CY7MTZPGS", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "KCTR9Z2CY7MTZPGS.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "KCTR9Z2CY7MTZPGS.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32975" - }, - "appliesTo" : [ ] - }, - "KCTR9Z2CY7MTZPGS.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "KCTR9Z2CY7MTZPGS.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KCTR9Z2CY7MTZPGS.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "KCTR9Z2CY7MTZPGS", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "KCTR9Z2CY7MTZPGS.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "KCTR9Z2CY7MTZPGS.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "65810" - }, - "appliesTo" : [ ] - }, - "KCTR9Z2CY7MTZPGS.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "KCTR9Z2CY7MTZPGS.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KCTR9Z2CY7MTZPGS.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "KCTR9Z2CY7MTZPGS", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "KCTR9Z2CY7MTZPGS.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "KCTR9Z2CY7MTZPGS.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "97882" - }, - "appliesTo" : [ ] - }, - "KCTR9Z2CY7MTZPGS.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "KCTR9Z2CY7MTZPGS.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KCTR9Z2CY7MTZPGS.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "KCTR9Z2CY7MTZPGS", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "KCTR9Z2CY7MTZPGS.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "KCTR9Z2CY7MTZPGS.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KCTR9Z2CY7MTZPGS.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "KCTR9Z2CY7MTZPGS", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "KCTR9Z2CY7MTZPGS.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "KCTR9Z2CY7MTZPGS.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "190519" - }, - "appliesTo" : [ ] - }, - "KCTR9Z2CY7MTZPGS.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "KCTR9Z2CY7MTZPGS.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KCTR9Z2CY7MTZPGS.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "KCTR9Z2CY7MTZPGS", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "KCTR9Z2CY7MTZPGS.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "KCTR9Z2CY7MTZPGS.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "95690" - }, - "appliesTo" : [ ] - }, - "KCTR9Z2CY7MTZPGS.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "KCTR9Z2CY7MTZPGS.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "VJ4XPF7YHUHKA3ZJ" : { - "VJ4XPF7YHUHKA3ZJ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "VJ4XPF7YHUHKA3ZJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VJ4XPF7YHUHKA3ZJ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "VJ4XPF7YHUHKA3ZJ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "43663" - }, - "appliesTo" : [ ] - }, - "VJ4XPF7YHUHKA3ZJ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "VJ4XPF7YHUHKA3ZJ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VJ4XPF7YHUHKA3ZJ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "VJ4XPF7YHUHKA3ZJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VJ4XPF7YHUHKA3ZJ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "VJ4XPF7YHUHKA3ZJ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VJ4XPF7YHUHKA3ZJ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "VJ4XPF7YHUHKA3ZJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VJ4XPF7YHUHKA3ZJ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "VJ4XPF7YHUHKA3ZJ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "57380" - }, - "appliesTo" : [ ] - }, - "VJ4XPF7YHUHKA3ZJ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "VJ4XPF7YHUHKA3ZJ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VJ4XPF7YHUHKA3ZJ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "VJ4XPF7YHUHKA3ZJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VJ4XPF7YHUHKA3ZJ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "VJ4XPF7YHUHKA3ZJ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VJ4XPF7YHUHKA3ZJ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "VJ4XPF7YHUHKA3ZJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VJ4XPF7YHUHKA3ZJ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "VJ4XPF7YHUHKA3ZJ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3860000000" - }, - "appliesTo" : [ ] - }, - "VJ4XPF7YHUHKA3ZJ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "VJ4XPF7YHUHKA3ZJ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33010" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VJ4XPF7YHUHKA3ZJ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "VJ4XPF7YHUHKA3ZJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VJ4XPF7YHUHKA3ZJ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "VJ4XPF7YHUHKA3ZJ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18866" - }, - "appliesTo" : [ ] - }, - "VJ4XPF7YHUHKA3ZJ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "VJ4XPF7YHUHKA3ZJ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VJ4XPF7YHUHKA3ZJ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "VJ4XPF7YHUHKA3ZJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VJ4XPF7YHUHKA3ZJ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "VJ4XPF7YHUHKA3ZJ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38116" - }, - "appliesTo" : [ ] - }, - "VJ4XPF7YHUHKA3ZJ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "VJ4XPF7YHUHKA3ZJ.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VJ4XPF7YHUHKA3ZJ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "VJ4XPF7YHUHKA3ZJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VJ4XPF7YHUHKA3ZJ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "VJ4XPF7YHUHKA3ZJ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "68115" - }, - "appliesTo" : [ ] - }, - "VJ4XPF7YHUHKA3ZJ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "VJ4XPF7YHUHKA3ZJ.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VJ4XPF7YHUHKA3ZJ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "VJ4XPF7YHUHKA3ZJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VJ4XPF7YHUHKA3ZJ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "VJ4XPF7YHUHKA3ZJ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28704" - }, - "appliesTo" : [ ] - }, - "VJ4XPF7YHUHKA3ZJ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "VJ4XPF7YHUHKA3ZJ.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VJ4XPF7YHUHKA3ZJ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "VJ4XPF7YHUHKA3ZJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VJ4XPF7YHUHKA3ZJ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "VJ4XPF7YHUHKA3ZJ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.3310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VJ4XPF7YHUHKA3ZJ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "VJ4XPF7YHUHKA3ZJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VJ4XPF7YHUHKA3ZJ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "VJ4XPF7YHUHKA3ZJ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.6530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VJ4XPF7YHUHKA3ZJ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "VJ4XPF7YHUHKA3ZJ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VJ4XPF7YHUHKA3ZJ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "VJ4XPF7YHUHKA3ZJ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21696" - }, - "appliesTo" : [ ] - }, - "VJ4XPF7YHUHKA3ZJ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "VJ4XPF7YHUHKA3ZJ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "N58RGQJW3EFKG6Q2" : { - "N58RGQJW3EFKG6Q2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "N58RGQJW3EFKG6Q2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "N58RGQJW3EFKG6Q2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "N58RGQJW3EFKG6Q2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4080000000" - }, - "appliesTo" : [ ] - }, - "N58RGQJW3EFKG6Q2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "N58RGQJW3EFKG6Q2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4004" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "N58RGQJW3EFKG6Q2.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "N58RGQJW3EFKG6Q2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N58RGQJW3EFKG6Q2.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "N58RGQJW3EFKG6Q2.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "N58RGQJW3EFKG6Q2.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "N58RGQJW3EFKG6Q2.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9019" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "N58RGQJW3EFKG6Q2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "N58RGQJW3EFKG6Q2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "N58RGQJW3EFKG6Q2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "N58RGQJW3EFKG6Q2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6028" - }, - "appliesTo" : [ ] - }, - "N58RGQJW3EFKG6Q2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "N58RGQJW3EFKG6Q2.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "N58RGQJW3EFKG6Q2.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "N58RGQJW3EFKG6Q2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "N58RGQJW3EFKG6Q2.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "N58RGQJW3EFKG6Q2.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10811" - }, - "appliesTo" : [ ] - }, - "N58RGQJW3EFKG6Q2.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "N58RGQJW3EFKG6Q2.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "N58RGQJW3EFKG6Q2.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "N58RGQJW3EFKG6Q2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "N58RGQJW3EFKG6Q2.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "N58RGQJW3EFKG6Q2.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "N58RGQJW3EFKG6Q2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "N58RGQJW3EFKG6Q2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "N58RGQJW3EFKG6Q2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "N58RGQJW3EFKG6Q2.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "N58RGQJW3EFKG6Q2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "N58RGQJW3EFKG6Q2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7427" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "N58RGQJW3EFKG6Q2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "N58RGQJW3EFKG6Q2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "N58RGQJW3EFKG6Q2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "N58RGQJW3EFKG6Q2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13844" - }, - "appliesTo" : [ ] - }, - "N58RGQJW3EFKG6Q2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "N58RGQJW3EFKG6Q2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "N58RGQJW3EFKG6Q2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "N58RGQJW3EFKG6Q2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "N58RGQJW3EFKG6Q2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "N58RGQJW3EFKG6Q2.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "N58RGQJW3EFKG6Q2.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "N58RGQJW3EFKG6Q2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N58RGQJW3EFKG6Q2.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "N58RGQJW3EFKG6Q2.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4020" - }, - "appliesTo" : [ ] - }, - "N58RGQJW3EFKG6Q2.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "N58RGQJW3EFKG6Q2.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "N58RGQJW3EFKG6Q2.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "N58RGQJW3EFKG6Q2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N58RGQJW3EFKG6Q2.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "N58RGQJW3EFKG6Q2.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "N58RGQJW3EFKG6Q2.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "N58RGQJW3EFKG6Q2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "N58RGQJW3EFKG6Q2.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "N58RGQJW3EFKG6Q2.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20223" - }, - "appliesTo" : [ ] - }, - "N58RGQJW3EFKG6Q2.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "N58RGQJW3EFKG6Q2.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "7JWZZUN6V6RU9JES" : { - "7JWZZUN6V6RU9JES.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "7JWZZUN6V6RU9JES", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7JWZZUN6V6RU9JES.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "7JWZZUN6V6RU9JES.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7JWZZUN6V6RU9JES.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "7JWZZUN6V6RU9JES", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7JWZZUN6V6RU9JES.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "7JWZZUN6V6RU9JES.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8022" - }, - "appliesTo" : [ ] - }, - "7JWZZUN6V6RU9JES.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "7JWZZUN6V6RU9JES.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7JWZZUN6V6RU9JES.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "7JWZZUN6V6RU9JES", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7JWZZUN6V6RU9JES.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "7JWZZUN6V6RU9JES.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8274" - }, - "appliesTo" : [ ] - }, - "7JWZZUN6V6RU9JES.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "7JWZZUN6V6RU9JES.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7JWZZUN6V6RU9JES.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "7JWZZUN6V6RU9JES", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7JWZZUN6V6RU9JES.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "7JWZZUN6V6RU9JES.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16754" - }, - "appliesTo" : [ ] - }, - "7JWZZUN6V6RU9JES.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "7JWZZUN6V6RU9JES.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7JWZZUN6V6RU9JES.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "7JWZZUN6V6RU9JES", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7JWZZUN6V6RU9JES.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "7JWZZUN6V6RU9JES.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5176" - }, - "appliesTo" : [ ] - }, - "7JWZZUN6V6RU9JES.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "7JWZZUN6V6RU9JES.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), cc2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "CHYHEFYUM8H6G965" : { - "CHYHEFYUM8H6G965.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "CHYHEFYUM8H6G965", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CHYHEFYUM8H6G965.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "CHYHEFYUM8H6G965.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4288" - }, - "appliesTo" : [ ] - }, - "CHYHEFYUM8H6G965.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "CHYHEFYUM8H6G965.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CHYHEFYUM8H6G965.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "CHYHEFYUM8H6G965", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CHYHEFYUM8H6G965.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "CHYHEFYUM8H6G965.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8404" - }, - "appliesTo" : [ ] - }, - "CHYHEFYUM8H6G965.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "CHYHEFYUM8H6G965.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CHYHEFYUM8H6G965.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "CHYHEFYUM8H6G965", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CHYHEFYUM8H6G965.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "CHYHEFYUM8H6G965.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CHYHEFYUM8H6G965.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "CHYHEFYUM8H6G965", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CHYHEFYUM8H6G965.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "CHYHEFYUM8H6G965.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CHYHEFYUM8H6G965.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "CHYHEFYUM8H6G965", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CHYHEFYUM8H6G965.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "CHYHEFYUM8H6G965.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12264" - }, - "appliesTo" : [ ] - }, - "CHYHEFYUM8H6G965.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "CHYHEFYUM8H6G965.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CHYHEFYUM8H6G965.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "CHYHEFYUM8H6G965", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CHYHEFYUM8H6G965.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "CHYHEFYUM8H6G965.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2480000000" - }, - "appliesTo" : [ ] - }, - "CHYHEFYUM8H6G965.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "CHYHEFYUM8H6G965.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6524" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "SMS2RQFVUU6VDNFP" : { - "SMS2RQFVUU6VDNFP.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "SMS2RQFVUU6VDNFP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SMS2RQFVUU6VDNFP.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "SMS2RQFVUU6VDNFP.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SMS2RQFVUU6VDNFP.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "SMS2RQFVUU6VDNFP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SMS2RQFVUU6VDNFP.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "SMS2RQFVUU6VDNFP.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3550" - }, - "appliesTo" : [ ] - }, - "SMS2RQFVUU6VDNFP.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "SMS2RQFVUU6VDNFP.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SMS2RQFVUU6VDNFP.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "SMS2RQFVUU6VDNFP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SMS2RQFVUU6VDNFP.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "SMS2RQFVUU6VDNFP.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SMS2RQFVUU6VDNFP.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SMS2RQFVUU6VDNFP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SMS2RQFVUU6VDNFP.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SMS2RQFVUU6VDNFP.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SMS2RQFVUU6VDNFP.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SMS2RQFVUU6VDNFP.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6733" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SMS2RQFVUU6VDNFP.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "SMS2RQFVUU6VDNFP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SMS2RQFVUU6VDNFP.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "SMS2RQFVUU6VDNFP.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SMS2RQFVUU6VDNFP.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "SMS2RQFVUU6VDNFP.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7061" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SMS2RQFVUU6VDNFP.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "SMS2RQFVUU6VDNFP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SMS2RQFVUU6VDNFP.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "SMS2RQFVUU6VDNFP.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2708" - }, - "appliesTo" : [ ] - }, - "SMS2RQFVUU6VDNFP.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "SMS2RQFVUU6VDNFP.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SMS2RQFVUU6VDNFP.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SMS2RQFVUU6VDNFP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SMS2RQFVUU6VDNFP.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SMS2RQFVUU6VDNFP.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3419" - }, - "appliesTo" : [ ] - }, - "SMS2RQFVUU6VDNFP.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SMS2RQFVUU6VDNFP.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SMS2RQFVUU6VDNFP.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SMS2RQFVUU6VDNFP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SMS2RQFVUU6VDNFP.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SMS2RQFVUU6VDNFP.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1297" - }, - "appliesTo" : [ ] - }, - "SMS2RQFVUU6VDNFP.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SMS2RQFVUU6VDNFP.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SMS2RQFVUU6VDNFP.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "SMS2RQFVUU6VDNFP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SMS2RQFVUU6VDNFP.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "SMS2RQFVUU6VDNFP.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SMS2RQFVUU6VDNFP.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "SMS2RQFVUU6VDNFP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SMS2RQFVUU6VDNFP.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "SMS2RQFVUU6VDNFP.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1364" - }, - "appliesTo" : [ ] - }, - "SMS2RQFVUU6VDNFP.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "SMS2RQFVUU6VDNFP.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SMS2RQFVUU6VDNFP.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SMS2RQFVUU6VDNFP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SMS2RQFVUU6VDNFP.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SMS2RQFVUU6VDNFP.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SMS2RQFVUU6VDNFP.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SMS2RQFVUU6VDNFP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SMS2RQFVUU6VDNFP.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SMS2RQFVUU6VDNFP.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2577" - }, - "appliesTo" : [ ] - }, - "SMS2RQFVUU6VDNFP.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SMS2RQFVUU6VDNFP.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "7P443J9REGZVNYQY" : { - "7P443J9REGZVNYQY.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "7P443J9REGZVNYQY", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "7P443J9REGZVNYQY.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "7P443J9REGZVNYQY.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13503" - }, - "appliesTo" : [ ] - }, - "7P443J9REGZVNYQY.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "7P443J9REGZVNYQY.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7P443J9REGZVNYQY.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "7P443J9REGZVNYQY", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7P443J9REGZVNYQY.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "7P443J9REGZVNYQY.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5820000000" - }, - "appliesTo" : [ ] - }, - "7P443J9REGZVNYQY.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "7P443J9REGZVNYQY.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22202" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7P443J9REGZVNYQY.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "7P443J9REGZVNYQY", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "7P443J9REGZVNYQY.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "7P443J9REGZVNYQY.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8223" - }, - "appliesTo" : [ ] - }, - "7P443J9REGZVNYQY.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "7P443J9REGZVNYQY.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7P443J9REGZVNYQY.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "7P443J9REGZVNYQY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7P443J9REGZVNYQY.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "7P443J9REGZVNYQY.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15308" - }, - "appliesTo" : [ ] - }, - "7P443J9REGZVNYQY.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "7P443J9REGZVNYQY.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7P443J9REGZVNYQY.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "7P443J9REGZVNYQY", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7P443J9REGZVNYQY.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "7P443J9REGZVNYQY.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "36800" - }, - "appliesTo" : [ ] - }, - "7P443J9REGZVNYQY.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "7P443J9REGZVNYQY.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7P443J9REGZVNYQY.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "7P443J9REGZVNYQY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7P443J9REGZVNYQY.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "7P443J9REGZVNYQY.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7P443J9REGZVNYQY.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "7P443J9REGZVNYQY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7P443J9REGZVNYQY.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "7P443J9REGZVNYQY.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7229" - }, - "appliesTo" : [ ] - }, - "7P443J9REGZVNYQY.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "7P443J9REGZVNYQY.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7P443J9REGZVNYQY.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "7P443J9REGZVNYQY", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "7P443J9REGZVNYQY.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "7P443J9REGZVNYQY.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7P443J9REGZVNYQY.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "7P443J9REGZVNYQY", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "7P443J9REGZVNYQY.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "7P443J9REGZVNYQY.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15702" - }, - "appliesTo" : [ ] - }, - "7P443J9REGZVNYQY.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "7P443J9REGZVNYQY.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7P443J9REGZVNYQY.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "7P443J9REGZVNYQY", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7P443J9REGZVNYQY.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "7P443J9REGZVNYQY.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27938" - }, - "appliesTo" : [ ] - }, - "7P443J9REGZVNYQY.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "7P443J9REGZVNYQY.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7P443J9REGZVNYQY.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "7P443J9REGZVNYQY", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7P443J9REGZVNYQY.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "7P443J9REGZVNYQY.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "YRY7U9ETRK6GWQEU" : { - "YRY7U9ETRK6GWQEU.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "YRY7U9ETRK6GWQEU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YRY7U9ETRK6GWQEU.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "YRY7U9ETRK6GWQEU.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YRY7U9ETRK6GWQEU.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "YRY7U9ETRK6GWQEU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YRY7U9ETRK6GWQEU.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "YRY7U9ETRK6GWQEU.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1747" - }, - "appliesTo" : [ ] - }, - "YRY7U9ETRK6GWQEU.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "YRY7U9ETRK6GWQEU.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YRY7U9ETRK6GWQEU.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YRY7U9ETRK6GWQEU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YRY7U9ETRK6GWQEU.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YRY7U9ETRK6GWQEU.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3563" - }, - "appliesTo" : [ ] - }, - "YRY7U9ETRK6GWQEU.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YRY7U9ETRK6GWQEU.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YRY7U9ETRK6GWQEU.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YRY7U9ETRK6GWQEU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YRY7U9ETRK6GWQEU.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YRY7U9ETRK6GWQEU.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3809" - }, - "appliesTo" : [ ] - }, - "YRY7U9ETRK6GWQEU.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YRY7U9ETRK6GWQEU.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YRY7U9ETRK6GWQEU.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "YRY7U9ETRK6GWQEU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YRY7U9ETRK6GWQEU.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "YRY7U9ETRK6GWQEU.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4226" - }, - "appliesTo" : [ ] - }, - "YRY7U9ETRK6GWQEU.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "YRY7U9ETRK6GWQEU.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YRY7U9ETRK6GWQEU.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "YRY7U9ETRK6GWQEU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YRY7U9ETRK6GWQEU.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "YRY7U9ETRK6GWQEU.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10454" - }, - "appliesTo" : [ ] - }, - "YRY7U9ETRK6GWQEU.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "YRY7U9ETRK6GWQEU.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YRY7U9ETRK6GWQEU.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YRY7U9ETRK6GWQEU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YRY7U9ETRK6GWQEU.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YRY7U9ETRK6GWQEU.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8960" - }, - "appliesTo" : [ ] - }, - "YRY7U9ETRK6GWQEU.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YRY7U9ETRK6GWQEU.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YRY7U9ETRK6GWQEU.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "YRY7U9ETRK6GWQEU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YRY7U9ETRK6GWQEU.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "YRY7U9ETRK6GWQEU.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YRY7U9ETRK6GWQEU.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YRY7U9ETRK6GWQEU", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "YRY7U9ETRK6GWQEU.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YRY7U9ETRK6GWQEU.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YRY7U9ETRK6GWQEU.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "YRY7U9ETRK6GWQEU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YRY7U9ETRK6GWQEU.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "YRY7U9ETRK6GWQEU.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3477" - }, - "appliesTo" : [ ] - }, - "YRY7U9ETRK6GWQEU.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "YRY7U9ETRK6GWQEU.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YRY7U9ETRK6GWQEU.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YRY7U9ETRK6GWQEU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YRY7U9ETRK6GWQEU.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YRY7U9ETRK6GWQEU.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1455" - }, - "appliesTo" : [ ] - }, - "YRY7U9ETRK6GWQEU.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YRY7U9ETRK6GWQEU.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "EK8RQK3XNDHYVHY2" : { - "EK8RQK3XNDHYVHY2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "EK8RQK3XNDHYVHY2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EK8RQK3XNDHYVHY2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "EK8RQK3XNDHYVHY2.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "EK8RQK3XNDHYVHY2.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "EK8RQK3XNDHYVHY2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EK8RQK3XNDHYVHY2.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "EK8RQK3XNDHYVHY2.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8085000000" - }, - "appliesTo" : [ ] - }, - "EK8RQK3XNDHYVHY2.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "EK8RQK3XNDHYVHY2.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5944" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "EK8RQK3XNDHYVHY2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "EK8RQK3XNDHYVHY2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EK8RQK3XNDHYVHY2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "EK8RQK3XNDHYVHY2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10512" - }, - "appliesTo" : [ ] - }, - "EK8RQK3XNDHYVHY2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "EK8RQK3XNDHYVHY2.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EK8RQK3XNDHYVHY2.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "EK8RQK3XNDHYVHY2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EK8RQK3XNDHYVHY2.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "EK8RQK3XNDHYVHY2.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27110" - }, - "appliesTo" : [ ] - }, - "EK8RQK3XNDHYVHY2.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "EK8RQK3XNDHYVHY2.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "EK8RQK3XNDHYVHY2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "EK8RQK3XNDHYVHY2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EK8RQK3XNDHYVHY2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "EK8RQK3XNDHYVHY2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23179" - }, - "appliesTo" : [ ] - }, - "EK8RQK3XNDHYVHY2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "EK8RQK3XNDHYVHY2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EK8RQK3XNDHYVHY2.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "EK8RQK3XNDHYVHY2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EK8RQK3XNDHYVHY2.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "EK8RQK3XNDHYVHY2.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1236000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "EK8RQK3XNDHYVHY2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "EK8RQK3XNDHYVHY2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EK8RQK3XNDHYVHY2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "EK8RQK3XNDHYVHY2.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "EK8RQK3XNDHYVHY2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "EK8RQK3XNDHYVHY2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11269" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EK8RQK3XNDHYVHY2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "EK8RQK3XNDHYVHY2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EK8RQK3XNDHYVHY2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "EK8RQK3XNDHYVHY2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5168" - }, - "appliesTo" : [ ] - }, - "EK8RQK3XNDHYVHY2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "EK8RQK3XNDHYVHY2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EK8RQK3XNDHYVHY2.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "EK8RQK3XNDHYVHY2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EK8RQK3XNDHYVHY2.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "EK8RQK3XNDHYVHY2.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12788" - }, - "appliesTo" : [ ] - }, - "EK8RQK3XNDHYVHY2.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "EK8RQK3XNDHYVHY2.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "EK8RQK3XNDHYVHY2.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "EK8RQK3XNDHYVHY2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EK8RQK3XNDHYVHY2.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "EK8RQK3XNDHYVHY2.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "EK8RQK3XNDHYVHY2.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "EK8RQK3XNDHYVHY2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EK8RQK3XNDHYVHY2.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "EK8RQK3XNDHYVHY2.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12089" - }, - "appliesTo" : [ ] - }, - "EK8RQK3XNDHYVHY2.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "EK8RQK3XNDHYVHY2.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "EK8RQK3XNDHYVHY2.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "EK8RQK3XNDHYVHY2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EK8RQK3XNDHYVHY2.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "EK8RQK3XNDHYVHY2.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5549000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "KNFTFJY262DHDG36" : { - "KNFTFJY262DHDG36.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "KNFTFJY262DHDG36", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KNFTFJY262DHDG36.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "KNFTFJY262DHDG36.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15308" - }, - "appliesTo" : [ ] - }, - "KNFTFJY262DHDG36.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "KNFTFJY262DHDG36.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KNFTFJY262DHDG36.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "KNFTFJY262DHDG36", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "KNFTFJY262DHDG36.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "KNFTFJY262DHDG36.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KNFTFJY262DHDG36.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "KNFTFJY262DHDG36", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "KNFTFJY262DHDG36.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "KNFTFJY262DHDG36.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6320000000" - }, - "appliesTo" : [ ] - }, - "KNFTFJY262DHDG36.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "KNFTFJY262DHDG36.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8223" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KNFTFJY262DHDG36.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "KNFTFJY262DHDG36", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "KNFTFJY262DHDG36.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "KNFTFJY262DHDG36.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "KNFTFJY262DHDG36.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "KNFTFJY262DHDG36.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "36800" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KNFTFJY262DHDG36.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "KNFTFJY262DHDG36", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KNFTFJY262DHDG36.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "KNFTFJY262DHDG36.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KNFTFJY262DHDG36.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "KNFTFJY262DHDG36", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "KNFTFJY262DHDG36.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "KNFTFJY262DHDG36.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KNFTFJY262DHDG36.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "KNFTFJY262DHDG36", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KNFTFJY262DHDG36.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "KNFTFJY262DHDG36.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7229" - }, - "appliesTo" : [ ] - }, - "KNFTFJY262DHDG36.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "KNFTFJY262DHDG36.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KNFTFJY262DHDG36.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "KNFTFJY262DHDG36", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "KNFTFJY262DHDG36.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "KNFTFJY262DHDG36.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15702" - }, - "appliesTo" : [ ] - }, - "KNFTFJY262DHDG36.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "KNFTFJY262DHDG36.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KNFTFJY262DHDG36.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "KNFTFJY262DHDG36", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "KNFTFJY262DHDG36.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "KNFTFJY262DHDG36.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22202" - }, - "appliesTo" : [ ] - }, - "KNFTFJY262DHDG36.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "KNFTFJY262DHDG36.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KNFTFJY262DHDG36.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "KNFTFJY262DHDG36", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "KNFTFJY262DHDG36.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "KNFTFJY262DHDG36.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27938" - }, - "appliesTo" : [ ] - }, - "KNFTFJY262DHDG36.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "KNFTFJY262DHDG36.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KNFTFJY262DHDG36.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "KNFTFJY262DHDG36", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "KNFTFJY262DHDG36.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "KNFTFJY262DHDG36.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "KNFTFJY262DHDG36.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "KNFTFJY262DHDG36.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13503" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "Q7XJ7URGAZ8RWDX7" : { - "Q7XJ7URGAZ8RWDX7.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Q7XJ7URGAZ8RWDX7", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "Q7XJ7URGAZ8RWDX7.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Q7XJ7URGAZ8RWDX7.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17276" - }, - "appliesTo" : [ ] - }, - "Q7XJ7URGAZ8RWDX7.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Q7XJ7URGAZ8RWDX7.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q7XJ7URGAZ8RWDX7.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Q7XJ7URGAZ8RWDX7", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "Q7XJ7URGAZ8RWDX7.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Q7XJ7URGAZ8RWDX7.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Q7XJ7URGAZ8RWDX7.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Q7XJ7URGAZ8RWDX7", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "Q7XJ7URGAZ8RWDX7.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Q7XJ7URGAZ8RWDX7.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35310" - }, - "appliesTo" : [ ] - }, - "Q7XJ7URGAZ8RWDX7.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Q7XJ7URGAZ8RWDX7.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Q7XJ7URGAZ8RWDX7.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Q7XJ7URGAZ8RWDX7", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "Q7XJ7URGAZ8RWDX7.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Q7XJ7URGAZ8RWDX7.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19162" - }, - "appliesTo" : [ ] - }, - "Q7XJ7URGAZ8RWDX7.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Q7XJ7URGAZ8RWDX7.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Q7XJ7URGAZ8RWDX7.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Q7XJ7URGAZ8RWDX7", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "Q7XJ7URGAZ8RWDX7.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Q7XJ7URGAZ8RWDX7.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11389" - }, - "appliesTo" : [ ] - }, - "Q7XJ7URGAZ8RWDX7.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Q7XJ7URGAZ8RWDX7.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "CGHFTKH25J86C64Y" : { - "CGHFTKH25J86C64Y.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "CGHFTKH25J86C64Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CGHFTKH25J86C64Y.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "CGHFTKH25J86C64Y.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26795" - }, - "appliesTo" : [ ] - }, - "CGHFTKH25J86C64Y.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "CGHFTKH25J86C64Y.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CGHFTKH25J86C64Y.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "CGHFTKH25J86C64Y", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CGHFTKH25J86C64Y.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "CGHFTKH25J86C64Y.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6305000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CGHFTKH25J86C64Y.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "CGHFTKH25J86C64Y", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CGHFTKH25J86C64Y.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "CGHFTKH25J86C64Y.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2724000000" - }, - "appliesTo" : [ ] - }, - "CGHFTKH25J86C64Y.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "CGHFTKH25J86C64Y.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33438" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CGHFTKH25J86C64Y.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "CGHFTKH25J86C64Y", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "CGHFTKH25J86C64Y.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "CGHFTKH25J86C64Y.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24953" - }, - "appliesTo" : [ ] - }, - "CGHFTKH25J86C64Y.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "CGHFTKH25J86C64Y.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CGHFTKH25J86C64Y.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "CGHFTKH25J86C64Y", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "CGHFTKH25J86C64Y.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "CGHFTKH25J86C64Y.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "CGHFTKH25J86C64Y.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "CGHFTKH25J86C64Y.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "61816" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CGHFTKH25J86C64Y.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "CGHFTKH25J86C64Y", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CGHFTKH25J86C64Y.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "CGHFTKH25J86C64Y.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4794000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CGHFTKH25J86C64Y.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "CGHFTKH25J86C64Y", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CGHFTKH25J86C64Y.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "CGHFTKH25J86C64Y.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "66311" - }, - "appliesTo" : [ ] - }, - "CGHFTKH25J86C64Y.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "CGHFTKH25J86C64Y.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CGHFTKH25J86C64Y.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "CGHFTKH25J86C64Y", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CGHFTKH25J86C64Y.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "CGHFTKH25J86C64Y.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4380000000" - }, - "appliesTo" : [ ] - }, - "CGHFTKH25J86C64Y.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "CGHFTKH25J86C64Y.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12600" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CGHFTKH25J86C64Y.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "CGHFTKH25J86C64Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CGHFTKH25J86C64Y.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "CGHFTKH25J86C64Y.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1721000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CGHFTKH25J86C64Y.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "CGHFTKH25J86C64Y", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CGHFTKH25J86C64Y.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "CGHFTKH25J86C64Y.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5456000000" - }, - "appliesTo" : [ ] - }, - "CGHFTKH25J86C64Y.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "CGHFTKH25J86C64Y.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13539" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CGHFTKH25J86C64Y.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "CGHFTKH25J86C64Y", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CGHFTKH25J86C64Y.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "CGHFTKH25J86C64Y.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9504000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CGHFTKH25J86C64Y.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "CGHFTKH25J86C64Y", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "CGHFTKH25J86C64Y.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "CGHFTKH25J86C64Y.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2040000000" - }, - "appliesTo" : [ ] - }, - "CGHFTKH25J86C64Y.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "CGHFTKH25J86C64Y.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31646" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "5WSKPWBZAEKKQ6RB" : { - "5WSKPWBZAEKKQ6RB.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "5WSKPWBZAEKKQ6RB", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "5WSKPWBZAEKKQ6RB.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "5WSKPWBZAEKKQ6RB.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12955" - }, - "appliesTo" : [ ] - }, - "5WSKPWBZAEKKQ6RB.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "5WSKPWBZAEKKQ6RB.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5WSKPWBZAEKKQ6RB.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "5WSKPWBZAEKKQ6RB", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "5WSKPWBZAEKKQ6RB.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "5WSKPWBZAEKKQ6RB.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "5WSKPWBZAEKKQ6RB.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "5WSKPWBZAEKKQ6RB.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17385" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "5WSKPWBZAEKKQ6RB.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "5WSKPWBZAEKKQ6RB", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "5WSKPWBZAEKKQ6RB.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "5WSKPWBZAEKKQ6RB.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "5WSKPWBZAEKKQ6RB.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "5WSKPWBZAEKKQ6RB", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "5WSKPWBZAEKKQ6RB.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "5WSKPWBZAEKKQ6RB.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6472" - }, - "appliesTo" : [ ] - }, - "5WSKPWBZAEKKQ6RB.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "5WSKPWBZAEKKQ6RB.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5WSKPWBZAEKKQ6RB.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "5WSKPWBZAEKKQ6RB", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "5WSKPWBZAEKKQ6RB.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "5WSKPWBZAEKKQ6RB.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8203" - }, - "appliesTo" : [ ] - }, - "5WSKPWBZAEKKQ6RB.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "5WSKPWBZAEKKQ6RB.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5WSKPWBZAEKKQ6RB.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "5WSKPWBZAEKKQ6RB", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "5WSKPWBZAEKKQ6RB.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "5WSKPWBZAEKKQ6RB.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11454" - }, - "appliesTo" : [ ] - }, - "5WSKPWBZAEKKQ6RB.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "5WSKPWBZAEKKQ6RB.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "5WSKPWBZAEKKQ6RB.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "5WSKPWBZAEKKQ6RB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5WSKPWBZAEKKQ6RB.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "5WSKPWBZAEKKQ6RB.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "5WSKPWBZAEKKQ6RB.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "5WSKPWBZAEKKQ6RB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5WSKPWBZAEKKQ6RB.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "5WSKPWBZAEKKQ6RB.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3791" - }, - "appliesTo" : [ ] - }, - "5WSKPWBZAEKKQ6RB.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "5WSKPWBZAEKKQ6RB.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "5WSKPWBZAEKKQ6RB.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "5WSKPWBZAEKKQ6RB", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "5WSKPWBZAEKKQ6RB.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "5WSKPWBZAEKKQ6RB.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "5WSKPWBZAEKKQ6RB.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "5WSKPWBZAEKKQ6RB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5WSKPWBZAEKKQ6RB.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "5WSKPWBZAEKKQ6RB.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "5WSKPWBZAEKKQ6RB.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "5WSKPWBZAEKKQ6RB.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7375" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "5WSKPWBZAEKKQ6RB.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "5WSKPWBZAEKKQ6RB", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "5WSKPWBZAEKKQ6RB.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "5WSKPWBZAEKKQ6RB.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2640000000" - }, - "appliesTo" : [ ] - }, - "5WSKPWBZAEKKQ6RB.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "5WSKPWBZAEKKQ6RB.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4288" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "A5GXEZ47W9A2SVY8" : { - "A5GXEZ47W9A2SVY8.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "A5GXEZ47W9A2SVY8", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "A5GXEZ47W9A2SVY8.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "A5GXEZ47W9A2SVY8.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5430000000" - }, - "appliesTo" : [ ] - }, - "A5GXEZ47W9A2SVY8.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "A5GXEZ47W9A2SVY8.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14280" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "A5GXEZ47W9A2SVY8.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "A5GXEZ47W9A2SVY8", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "A5GXEZ47W9A2SVY8.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "A5GXEZ47W9A2SVY8.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "A5GXEZ47W9A2SVY8.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "A5GXEZ47W9A2SVY8", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "A5GXEZ47W9A2SVY8.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "A5GXEZ47W9A2SVY8.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "A5GXEZ47W9A2SVY8.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "A5GXEZ47W9A2SVY8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "A5GXEZ47W9A2SVY8.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "A5GXEZ47W9A2SVY8.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26848" - }, - "appliesTo" : [ ] - }, - "A5GXEZ47W9A2SVY8.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "A5GXEZ47W9A2SVY8.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "A5GXEZ47W9A2SVY8.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "A5GXEZ47W9A2SVY8", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "A5GXEZ47W9A2SVY8.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "A5GXEZ47W9A2SVY8.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6180000000" - }, - "appliesTo" : [ ] - }, - "A5GXEZ47W9A2SVY8.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "A5GXEZ47W9A2SVY8.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16242" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "A5GXEZ47W9A2SVY8.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "A5GXEZ47W9A2SVY8", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "A5GXEZ47W9A2SVY8.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "A5GXEZ47W9A2SVY8.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5685" - }, - "appliesTo" : [ ] - }, - "A5GXEZ47W9A2SVY8.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "A5GXEZ47W9A2SVY8.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "A5GXEZ47W9A2SVY8.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "A5GXEZ47W9A2SVY8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "A5GXEZ47W9A2SVY8.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "A5GXEZ47W9A2SVY8.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11143" - }, - "appliesTo" : [ ] - }, - "A5GXEZ47W9A2SVY8.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "A5GXEZ47W9A2SVY8.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "A5GXEZ47W9A2SVY8.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "A5GXEZ47W9A2SVY8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "A5GXEZ47W9A2SVY8.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "A5GXEZ47W9A2SVY8.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0864000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "A5GXEZ47W9A2SVY8.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "A5GXEZ47W9A2SVY8", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "A5GXEZ47W9A2SVY8.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "A5GXEZ47W9A2SVY8.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31836" - }, - "appliesTo" : [ ] - }, - "A5GXEZ47W9A2SVY8.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "A5GXEZ47W9A2SVY8.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "A5GXEZ47W9A2SVY8.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "A5GXEZ47W9A2SVY8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A5GXEZ47W9A2SVY8.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "A5GXEZ47W9A2SVY8.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14043" - }, - "appliesTo" : [ ] - }, - "A5GXEZ47W9A2SVY8.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "A5GXEZ47W9A2SVY8.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "A5GXEZ47W9A2SVY8.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "A5GXEZ47W9A2SVY8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A5GXEZ47W9A2SVY8.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "A5GXEZ47W9A2SVY8.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6449000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "A5GXEZ47W9A2SVY8.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "A5GXEZ47W9A2SVY8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A5GXEZ47W9A2SVY8.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "A5GXEZ47W9A2SVY8.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8075000000" - }, - "appliesTo" : [ ] - }, - "A5GXEZ47W9A2SVY8.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "A5GXEZ47W9A2SVY8.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7074" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "9X8YQSJK3UTFW3TV" : { - "9X8YQSJK3UTFW3TV.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "9X8YQSJK3UTFW3TV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9X8YQSJK3UTFW3TV.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "9X8YQSJK3UTFW3TV.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9X8YQSJK3UTFW3TV.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "9X8YQSJK3UTFW3TV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9X8YQSJK3UTFW3TV.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "9X8YQSJK3UTFW3TV.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34581" - }, - "appliesTo" : [ ] - }, - "9X8YQSJK3UTFW3TV.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "9X8YQSJK3UTFW3TV.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9X8YQSJK3UTFW3TV.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "9X8YQSJK3UTFW3TV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9X8YQSJK3UTFW3TV.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "9X8YQSJK3UTFW3TV.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "67376" - }, - "appliesTo" : [ ] - }, - "9X8YQSJK3UTFW3TV.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "9X8YQSJK3UTFW3TV.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9X8YQSJK3UTFW3TV.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "9X8YQSJK3UTFW3TV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9X8YQSJK3UTFW3TV.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "9X8YQSJK3UTFW3TV.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "142038" - }, - "appliesTo" : [ ] - }, - "9X8YQSJK3UTFW3TV.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "9X8YQSJK3UTFW3TV.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9X8YQSJK3UTFW3TV.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "9X8YQSJK3UTFW3TV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9X8YQSJK3UTFW3TV.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "9X8YQSJK3UTFW3TV.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "71679" - }, - "appliesTo" : [ ] - }, - "9X8YQSJK3UTFW3TV.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "9X8YQSJK3UTFW3TV.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9X8YQSJK3UTFW3TV.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "9X8YQSJK3UTFW3TV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9X8YQSJK3UTFW3TV.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "9X8YQSJK3UTFW3TV.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.3020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9X8YQSJK3UTFW3TV.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "9X8YQSJK3UTFW3TV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9X8YQSJK3UTFW3TV.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "9X8YQSJK3UTFW3TV.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.1430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9X8YQSJK3UTFW3TV.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "9X8YQSJK3UTFW3TV", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "9X8YQSJK3UTFW3TV.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "9X8YQSJK3UTFW3TV.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "9X8YQSJK3UTFW3TV.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "9X8YQSJK3UTFW3TV.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "62751" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9X8YQSJK3UTFW3TV.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "9X8YQSJK3UTFW3TV", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "9X8YQSJK3UTFW3TV.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "9X8YQSJK3UTFW3TV.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31753" - }, - "appliesTo" : [ ] - }, - "9X8YQSJK3UTFW3TV.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "9X8YQSJK3UTFW3TV.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9X8YQSJK3UTFW3TV.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "9X8YQSJK3UTFW3TV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9X8YQSJK3UTFW3TV.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "9X8YQSJK3UTFW3TV.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "68294" - }, - "appliesTo" : [ ] - }, - "9X8YQSJK3UTFW3TV.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "9X8YQSJK3UTFW3TV.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9X8YQSJK3UTFW3TV.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "9X8YQSJK3UTFW3TV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9X8YQSJK3UTFW3TV.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "9X8YQSJK3UTFW3TV.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.6560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9X8YQSJK3UTFW3TV.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "9X8YQSJK3UTFW3TV", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "9X8YQSJK3UTFW3TV.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "9X8YQSJK3UTFW3TV.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "131308" - }, - "appliesTo" : [ ] - }, - "9X8YQSJK3UTFW3TV.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "9X8YQSJK3UTFW3TV.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "JC8C66GWV5KYJPAD" : { - "JC8C66GWV5KYJPAD.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "JC8C66GWV5KYJPAD", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JC8C66GWV5KYJPAD.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "JC8C66GWV5KYJPAD.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16586" - }, - "appliesTo" : [ ] - }, - "JC8C66GWV5KYJPAD.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "JC8C66GWV5KYJPAD.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JC8C66GWV5KYJPAD.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "JC8C66GWV5KYJPAD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JC8C66GWV5KYJPAD.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "JC8C66GWV5KYJPAD.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20774" - }, - "appliesTo" : [ ] - }, - "JC8C66GWV5KYJPAD.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "JC8C66GWV5KYJPAD.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "JC8C66GWV5KYJPAD.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "JC8C66GWV5KYJPAD", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "JC8C66GWV5KYJPAD.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "JC8C66GWV5KYJPAD.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19656" - }, - "appliesTo" : [ ] - }, - "JC8C66GWV5KYJPAD.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "JC8C66GWV5KYJPAD.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "JC8C66GWV5KYJPAD.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "JC8C66GWV5KYJPAD", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JC8C66GWV5KYJPAD.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "JC8C66GWV5KYJPAD.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1010000000" - }, - "appliesTo" : [ ] - }, - "JC8C66GWV5KYJPAD.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "JC8C66GWV5KYJPAD.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7280" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "JC8C66GWV5KYJPAD.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "JC8C66GWV5KYJPAD", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "JC8C66GWV5KYJPAD.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "JC8C66GWV5KYJPAD.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46019" - }, - "appliesTo" : [ ] - }, - "JC8C66GWV5KYJPAD.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "JC8C66GWV5KYJPAD.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "JC8C66GWV5KYJPAD.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "JC8C66GWV5KYJPAD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JC8C66GWV5KYJPAD.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "JC8C66GWV5KYJPAD.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "JC8C66GWV5KYJPAD.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "JC8C66GWV5KYJPAD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JC8C66GWV5KYJPAD.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "JC8C66GWV5KYJPAD.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10533" - }, - "appliesTo" : [ ] - }, - "JC8C66GWV5KYJPAD.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "JC8C66GWV5KYJPAD.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "JC8C66GWV5KYJPAD.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "JC8C66GWV5KYJPAD", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JC8C66GWV5KYJPAD.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "JC8C66GWV5KYJPAD.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "JC8C66GWV5KYJPAD.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "JC8C66GWV5KYJPAD", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "JC8C66GWV5KYJPAD.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "JC8C66GWV5KYJPAD.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10960" - }, - "appliesTo" : [ ] - }, - "JC8C66GWV5KYJPAD.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "JC8C66GWV5KYJPAD.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "JC8C66GWV5KYJPAD.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "JC8C66GWV5KYJPAD", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JC8C66GWV5KYJPAD.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "JC8C66GWV5KYJPAD.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34067" - }, - "appliesTo" : [ ] - }, - "JC8C66GWV5KYJPAD.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "JC8C66GWV5KYJPAD.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JC8C66GWV5KYJPAD.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "JC8C66GWV5KYJPAD", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "JC8C66GWV5KYJPAD.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "JC8C66GWV5KYJPAD.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "S3H5EEV3EEF3YHPE" : { - "S3H5EEV3EEF3YHPE.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "S3H5EEV3EEF3YHPE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "S3H5EEV3EEF3YHPE.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "S3H5EEV3EEF3YHPE.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "S3H5EEV3EEF3YHPE.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "S3H5EEV3EEF3YHPE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "S3H5EEV3EEF3YHPE.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "S3H5EEV3EEF3YHPE.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4490" - }, - "appliesTo" : [ ] - }, - "S3H5EEV3EEF3YHPE.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "S3H5EEV3EEF3YHPE.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "S3H5EEV3EEF3YHPE.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "S3H5EEV3EEF3YHPE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "S3H5EEV3EEF3YHPE.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "S3H5EEV3EEF3YHPE.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "S3H5EEV3EEF3YHPE.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "S3H5EEV3EEF3YHPE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "S3H5EEV3EEF3YHPE.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "S3H5EEV3EEF3YHPE.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "S3H5EEV3EEF3YHPE.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "S3H5EEV3EEF3YHPE", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "S3H5EEV3EEF3YHPE.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "S3H5EEV3EEF3YHPE.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10747" - }, - "appliesTo" : [ ] - }, - "S3H5EEV3EEF3YHPE.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "S3H5EEV3EEF3YHPE.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "S3H5EEV3EEF3YHPE.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "S3H5EEV3EEF3YHPE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "S3H5EEV3EEF3YHPE.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "S3H5EEV3EEF3YHPE.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11342" - }, - "appliesTo" : [ ] - }, - "S3H5EEV3EEF3YHPE.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "S3H5EEV3EEF3YHPE.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "S3H5EEV3EEF3YHPE.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "S3H5EEV3EEF3YHPE", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "S3H5EEV3EEF3YHPE.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "S3H5EEV3EEF3YHPE.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21007" - }, - "appliesTo" : [ ] - }, - "S3H5EEV3EEF3YHPE.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "S3H5EEV3EEF3YHPE.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "S3H5EEV3EEF3YHPE.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "S3H5EEV3EEF3YHPE", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "S3H5EEV3EEF3YHPE.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "S3H5EEV3EEF3YHPE.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8289" - }, - "appliesTo" : [ ] - }, - "S3H5EEV3EEF3YHPE.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "S3H5EEV3EEF3YHPE.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "S3H5EEV3EEF3YHPE.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "S3H5EEV3EEF3YHPE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "S3H5EEV3EEF3YHPE.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "S3H5EEV3EEF3YHPE.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4184" - }, - "appliesTo" : [ ] - }, - "S3H5EEV3EEF3YHPE.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "S3H5EEV3EEF3YHPE.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "S3H5EEV3EEF3YHPE.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "S3H5EEV3EEF3YHPE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "S3H5EEV3EEF3YHPE.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "S3H5EEV3EEF3YHPE.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "S3H5EEV3EEF3YHPE.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "S3H5EEV3EEF3YHPE.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8890" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "S3H5EEV3EEF3YHPE.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "S3H5EEV3EEF3YHPE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "S3H5EEV3EEF3YHPE.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "S3H5EEV3EEF3YHPE.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22499" - }, - "appliesTo" : [ ] - }, - "S3H5EEV3EEF3YHPE.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "S3H5EEV3EEF3YHPE.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "S3H5EEV3EEF3YHPE.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "S3H5EEV3EEF3YHPE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "S3H5EEV3EEF3YHPE.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "S3H5EEV3EEF3YHPE.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "DS6NATW2S9Q4UKZS" : { - "DS6NATW2S9Q4UKZS.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "DS6NATW2S9Q4UKZS", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "DS6NATW2S9Q4UKZS.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "DS6NATW2S9Q4UKZS.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DS6NATW2S9Q4UKZS.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "DS6NATW2S9Q4UKZS", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "DS6NATW2S9Q4UKZS.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "DS6NATW2S9Q4UKZS.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "631" - }, - "appliesTo" : [ ] - }, - "DS6NATW2S9Q4UKZS.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "DS6NATW2S9Q4UKZS.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DS6NATW2S9Q4UKZS.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "DS6NATW2S9Q4UKZS", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "DS6NATW2S9Q4UKZS.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "DS6NATW2S9Q4UKZS.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1186" - }, - "appliesTo" : [ ] - }, - "DS6NATW2S9Q4UKZS.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "DS6NATW2S9Q4UKZS.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DS6NATW2S9Q4UKZS.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "DS6NATW2S9Q4UKZS", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "DS6NATW2S9Q4UKZS.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "DS6NATW2S9Q4UKZS.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "405" - }, - "appliesTo" : [ ] - }, - "DS6NATW2S9Q4UKZS.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "DS6NATW2S9Q4UKZS.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DS6NATW2S9Q4UKZS.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "DS6NATW2S9Q4UKZS", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "DS6NATW2S9Q4UKZS.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "DS6NATW2S9Q4UKZS.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2767" - }, - "appliesTo" : [ ] - }, - "DS6NATW2S9Q4UKZS.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "DS6NATW2S9Q4UKZS.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "6RTK76EDTUWSCDZ8" : { - "6RTK76EDTUWSCDZ8.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "6RTK76EDTUWSCDZ8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6RTK76EDTUWSCDZ8.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "6RTK76EDTUWSCDZ8.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6RTK76EDTUWSCDZ8.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6RTK76EDTUWSCDZ8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6RTK76EDTUWSCDZ8.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6RTK76EDTUWSCDZ8.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "6RTK76EDTUWSCDZ8.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6RTK76EDTUWSCDZ8.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7881" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6RTK76EDTUWSCDZ8.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6RTK76EDTUWSCDZ8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6RTK76EDTUWSCDZ8.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6RTK76EDTUWSCDZ8.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "6RTK76EDTUWSCDZ8.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6RTK76EDTUWSCDZ8.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14665" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6RTK76EDTUWSCDZ8.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6RTK76EDTUWSCDZ8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6RTK76EDTUWSCDZ8.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6RTK76EDTUWSCDZ8.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4021" - }, - "appliesTo" : [ ] - }, - "6RTK76EDTUWSCDZ8.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6RTK76EDTUWSCDZ8.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6RTK76EDTUWSCDZ8.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6RTK76EDTUWSCDZ8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6RTK76EDTUWSCDZ8.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6RTK76EDTUWSCDZ8.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6RTK76EDTUWSCDZ8.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6RTK76EDTUWSCDZ8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6RTK76EDTUWSCDZ8.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6RTK76EDTUWSCDZ8.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7800" - }, - "appliesTo" : [ ] - }, - "6RTK76EDTUWSCDZ8.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6RTK76EDTUWSCDZ8.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "4C7N4APU9GEUZ6H6" : { - "4C7N4APU9GEUZ6H6.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "4C7N4APU9GEUZ6H6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4C7N4APU9GEUZ6H6.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "4C7N4APU9GEUZ6H6.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "302" - }, - "appliesTo" : [ ] - }, - "4C7N4APU9GEUZ6H6.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "4C7N4APU9GEUZ6H6.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4C7N4APU9GEUZ6H6.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "4C7N4APU9GEUZ6H6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4C7N4APU9GEUZ6H6.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "4C7N4APU9GEUZ6H6.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "4C7N4APU9GEUZ6H6.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "4C7N4APU9GEUZ6H6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4C7N4APU9GEUZ6H6.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "4C7N4APU9GEUZ6H6.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "4C7N4APU9GEUZ6H6.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "4C7N4APU9GEUZ6H6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4C7N4APU9GEUZ6H6.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "4C7N4APU9GEUZ6H6.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "4C7N4APU9GEUZ6H6.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "4C7N4APU9GEUZ6H6.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1214" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4C7N4APU9GEUZ6H6.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "4C7N4APU9GEUZ6H6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4C7N4APU9GEUZ6H6.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "4C7N4APU9GEUZ6H6.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "4C7N4APU9GEUZ6H6.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "4C7N4APU9GEUZ6H6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4C7N4APU9GEUZ6H6.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "4C7N4APU9GEUZ6H6.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0300000000" - }, - "appliesTo" : [ ] - }, - "4C7N4APU9GEUZ6H6.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "4C7N4APU9GEUZ6H6.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "263" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4C7N4APU9GEUZ6H6.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "4C7N4APU9GEUZ6H6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4C7N4APU9GEUZ6H6.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "4C7N4APU9GEUZ6H6.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "592" - }, - "appliesTo" : [ ] - }, - "4C7N4APU9GEUZ6H6.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "4C7N4APU9GEUZ6H6.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4C7N4APU9GEUZ6H6.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "4C7N4APU9GEUZ6H6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4C7N4APU9GEUZ6H6.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "4C7N4APU9GEUZ6H6.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "4C7N4APU9GEUZ6H6.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "4C7N4APU9GEUZ6H6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4C7N4APU9GEUZ6H6.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "4C7N4APU9GEUZ6H6.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "539" - }, - "appliesTo" : [ ] - }, - "4C7N4APU9GEUZ6H6.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "4C7N4APU9GEUZ6H6.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4C7N4APU9GEUZ6H6.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "4C7N4APU9GEUZ6H6", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "4C7N4APU9GEUZ6H6.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "4C7N4APU9GEUZ6H6.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1013" - }, - "appliesTo" : [ ] - }, - "4C7N4APU9GEUZ6H6.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "4C7N4APU9GEUZ6H6.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4C7N4APU9GEUZ6H6.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "4C7N4APU9GEUZ6H6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4C7N4APU9GEUZ6H6.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "4C7N4APU9GEUZ6H6.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "620" - }, - "appliesTo" : [ ] - }, - "4C7N4APU9GEUZ6H6.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "4C7N4APU9GEUZ6H6.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4C7N4APU9GEUZ6H6.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "4C7N4APU9GEUZ6H6", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "4C7N4APU9GEUZ6H6.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "4C7N4APU9GEUZ6H6.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "515" - }, - "appliesTo" : [ ] - }, - "4C7N4APU9GEUZ6H6.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "4C7N4APU9GEUZ6H6.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "MGQK9YE98AEGCFNM" : { - "MGQK9YE98AEGCFNM.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "MGQK9YE98AEGCFNM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MGQK9YE98AEGCFNM.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "MGQK9YE98AEGCFNM.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23537" - }, - "appliesTo" : [ ] - }, - "MGQK9YE98AEGCFNM.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "MGQK9YE98AEGCFNM.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MGQK9YE98AEGCFNM.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "MGQK9YE98AEGCFNM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MGQK9YE98AEGCFNM.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "MGQK9YE98AEGCFNM.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.5410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MGQK9YE98AEGCFNM.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "MGQK9YE98AEGCFNM", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MGQK9YE98AEGCFNM.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "MGQK9YE98AEGCFNM.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33919" - }, - "appliesTo" : [ ] - }, - "MGQK9YE98AEGCFNM.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "MGQK9YE98AEGCFNM.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MGQK9YE98AEGCFNM.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "MGQK9YE98AEGCFNM", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MGQK9YE98AEGCFNM.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "MGQK9YE98AEGCFNM.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9620000000" - }, - "appliesTo" : [ ] - }, - "MGQK9YE98AEGCFNM.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "MGQK9YE98AEGCFNM.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23174" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MGQK9YE98AEGCFNM.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "MGQK9YE98AEGCFNM", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "MGQK9YE98AEGCFNM.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "MGQK9YE98AEGCFNM.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39246" - }, - "appliesTo" : [ ] - }, - "MGQK9YE98AEGCFNM.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "MGQK9YE98AEGCFNM.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MGQK9YE98AEGCFNM.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "MGQK9YE98AEGCFNM", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MGQK9YE98AEGCFNM.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "MGQK9YE98AEGCFNM.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "70251" - }, - "appliesTo" : [ ] - }, - "MGQK9YE98AEGCFNM.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "MGQK9YE98AEGCFNM.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MGQK9YE98AEGCFNM.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "MGQK9YE98AEGCFNM", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "MGQK9YE98AEGCFNM.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "MGQK9YE98AEGCFNM.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MGQK9YE98AEGCFNM.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "MGQK9YE98AEGCFNM", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MGQK9YE98AEGCFNM.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "MGQK9YE98AEGCFNM.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14538" - }, - "appliesTo" : [ ] - }, - "MGQK9YE98AEGCFNM.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "MGQK9YE98AEGCFNM.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MGQK9YE98AEGCFNM.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "MGQK9YE98AEGCFNM", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "MGQK9YE98AEGCFNM.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "MGQK9YE98AEGCFNM.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "94278" - }, - "appliesTo" : [ ] - }, - "MGQK9YE98AEGCFNM.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "MGQK9YE98AEGCFNM.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MGQK9YE98AEGCFNM.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "MGQK9YE98AEGCFNM", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MGQK9YE98AEGCFNM.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "MGQK9YE98AEGCFNM.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.6230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MGQK9YE98AEGCFNM.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "MGQK9YE98AEGCFNM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MGQK9YE98AEGCFNM.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "MGQK9YE98AEGCFNM.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46489" - }, - "appliesTo" : [ ] - }, - "MGQK9YE98AEGCFNM.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "MGQK9YE98AEGCFNM.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "Y8VTXM3N25VB943C" : { - "Y8VTXM3N25VB943C.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Y8VTXM3N25VB943C", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "Y8VTXM3N25VB943C.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Y8VTXM3N25VB943C.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "Y8VTXM3N25VB943C.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Y8VTXM3N25VB943C.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7089" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Y8VTXM3N25VB943C.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "Y8VTXM3N25VB943C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Y8VTXM3N25VB943C.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "Y8VTXM3N25VB943C.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4152" - }, - "appliesTo" : [ ] - }, - "Y8VTXM3N25VB943C.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "Y8VTXM3N25VB943C.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y8VTXM3N25VB943C.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "Y8VTXM3N25VB943C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Y8VTXM3N25VB943C.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "Y8VTXM3N25VB943C.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Y8VTXM3N25VB943C.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "Y8VTXM3N25VB943C", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "Y8VTXM3N25VB943C.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "Y8VTXM3N25VB943C.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19051" - }, - "appliesTo" : [ ] - }, - "Y8VTXM3N25VB943C.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "Y8VTXM3N25VB943C.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Y8VTXM3N25VB943C.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Y8VTXM3N25VB943C", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "Y8VTXM3N25VB943C.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Y8VTXM3N25VB943C.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8988" - }, - "appliesTo" : [ ] - }, - "Y8VTXM3N25VB943C.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Y8VTXM3N25VB943C.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y8VTXM3N25VB943C.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "Y8VTXM3N25VB943C", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "Y8VTXM3N25VB943C.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "Y8VTXM3N25VB943C.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12564" - }, - "appliesTo" : [ ] - }, - "Y8VTXM3N25VB943C.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "Y8VTXM3N25VB943C.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y8VTXM3N25VB943C.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "Y8VTXM3N25VB943C", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "Y8VTXM3N25VB943C.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "Y8VTXM3N25VB943C.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Y8VTXM3N25VB943C.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "Y8VTXM3N25VB943C", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Y8VTXM3N25VB943C.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "Y8VTXM3N25VB943C.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8083" - }, - "appliesTo" : [ ] - }, - "Y8VTXM3N25VB943C.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "Y8VTXM3N25VB943C.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Y8VTXM3N25VB943C.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Y8VTXM3N25VB943C", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "Y8VTXM3N25VB943C.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Y8VTXM3N25VB943C.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14180" - }, - "appliesTo" : [ ] - }, - "Y8VTXM3N25VB943C.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Y8VTXM3N25VB943C.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Y8VTXM3N25VB943C.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Y8VTXM3N25VB943C", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "Y8VTXM3N25VB943C.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Y8VTXM3N25VB943C.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Y8VTXM3N25VB943C.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Y8VTXM3N25VB943C", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "Y8VTXM3N25VB943C.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Y8VTXM3N25VB943C.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2890000000" - }, - "appliesTo" : [ ] - }, - "Y8VTXM3N25VB943C.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Y8VTXM3N25VB943C.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4699" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "Y8GH4ZVR4XW8623W" : { - "Y8GH4ZVR4XW8623W.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Y8GH4ZVR4XW8623W", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "Y8GH4ZVR4XW8623W.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Y8GH4ZVR4XW8623W.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Y8GH4ZVR4XW8623W.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "Y8GH4ZVR4XW8623W", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Y8GH4ZVR4XW8623W.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "Y8GH4ZVR4XW8623W.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0400000000" - }, - "appliesTo" : [ ] - }, - "Y8GH4ZVR4XW8623W.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "Y8GH4ZVR4XW8623W.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "350" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y8GH4ZVR4XW8623W.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "Y8GH4ZVR4XW8623W", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Y8GH4ZVR4XW8623W.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "Y8GH4ZVR4XW8623W.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Y8GH4ZVR4XW8623W.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "Y8GH4ZVR4XW8623W", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Y8GH4ZVR4XW8623W.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "Y8GH4ZVR4XW8623W.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "686" - }, - "appliesTo" : [ ] - }, - "Y8GH4ZVR4XW8623W.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "Y8GH4ZVR4XW8623W.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Y8GH4ZVR4XW8623W.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "Y8GH4ZVR4XW8623W", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "Y8GH4ZVR4XW8623W.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "Y8GH4ZVR4XW8623W.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1609" - }, - "appliesTo" : [ ] - }, - "Y8GH4ZVR4XW8623W.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "Y8GH4ZVR4XW8623W.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Y8GH4ZVR4XW8623W.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Y8GH4ZVR4XW8623W", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "Y8GH4ZVR4XW8623W.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Y8GH4ZVR4XW8623W.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "359" - }, - "appliesTo" : [ ] - }, - "Y8GH4ZVR4XW8623W.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Y8GH4ZVR4XW8623W.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y8GH4ZVR4XW8623W.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Y8GH4ZVR4XW8623W", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "Y8GH4ZVR4XW8623W.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Y8GH4ZVR4XW8623W.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0240000000" - }, - "appliesTo" : [ ] - }, - "Y8GH4ZVR4XW8623W.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Y8GH4ZVR4XW8623W.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "559" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y8GH4ZVR4XW8623W.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "Y8GH4ZVR4XW8623W", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "Y8GH4ZVR4XW8623W.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "Y8GH4ZVR4XW8623W.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "969" - }, - "appliesTo" : [ ] - }, - "Y8GH4ZVR4XW8623W.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "Y8GH4ZVR4XW8623W.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y8GH4ZVR4XW8623W.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "Y8GH4ZVR4XW8623W", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "Y8GH4ZVR4XW8623W.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "Y8GH4ZVR4XW8623W.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Y8GH4ZVR4XW8623W.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Y8GH4ZVR4XW8623W", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "Y8GH4ZVR4XW8623W.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Y8GH4ZVR4XW8623W.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "Y8GH4ZVR4XW8623W.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Y8GH4ZVR4XW8623W.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1122" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Y8GH4ZVR4XW8623W.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Y8GH4ZVR4XW8623W", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "Y8GH4ZVR4XW8623W.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Y8GH4ZVR4XW8623W.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "596" - }, - "appliesTo" : [ ] - }, - "Y8GH4ZVR4XW8623W.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Y8GH4ZVR4XW8623W.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "R4QE46FY6EGW3G4T" : { - "R4QE46FY6EGW3G4T.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "R4QE46FY6EGW3G4T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R4QE46FY6EGW3G4T.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "R4QE46FY6EGW3G4T.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "R4QE46FY6EGW3G4T.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "R4QE46FY6EGW3G4T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R4QE46FY6EGW3G4T.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "R4QE46FY6EGW3G4T.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1616" - }, - "appliesTo" : [ ] - }, - "R4QE46FY6EGW3G4T.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "R4QE46FY6EGW3G4T.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "R4QE46FY6EGW3G4T.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "R4QE46FY6EGW3G4T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R4QE46FY6EGW3G4T.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "R4QE46FY6EGW3G4T.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4173" - }, - "appliesTo" : [ ] - }, - "R4QE46FY6EGW3G4T.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "R4QE46FY6EGW3G4T.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "R4QE46FY6EGW3G4T.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "R4QE46FY6EGW3G4T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R4QE46FY6EGW3G4T.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "R4QE46FY6EGW3G4T.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3211" - }, - "appliesTo" : [ ] - }, - "R4QE46FY6EGW3G4T.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "R4QE46FY6EGW3G4T.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "R4QE46FY6EGW3G4T.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "R4QE46FY6EGW3G4T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R4QE46FY6EGW3G4T.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "R4QE46FY6EGW3G4T.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "R4QE46FY6EGW3G4T.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "R4QE46FY6EGW3G4T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R4QE46FY6EGW3G4T.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "R4QE46FY6EGW3G4T.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4305" - }, - "appliesTo" : [ ] - }, - "R4QE46FY6EGW3G4T.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "R4QE46FY6EGW3G4T.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "R4QE46FY6EGW3G4T.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "R4QE46FY6EGW3G4T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R4QE46FY6EGW3G4T.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "R4QE46FY6EGW3G4T.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8569" - }, - "appliesTo" : [ ] - }, - "R4QE46FY6EGW3G4T.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "R4QE46FY6EGW3G4T.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "R4QE46FY6EGW3G4T.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "R4QE46FY6EGW3G4T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R4QE46FY6EGW3G4T.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "R4QE46FY6EGW3G4T.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3080" - }, - "appliesTo" : [ ] - }, - "R4QE46FY6EGW3G4T.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "R4QE46FY6EGW3G4T.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "R4QE46FY6EGW3G4T.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "R4QE46FY6EGW3G4T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R4QE46FY6EGW3G4T.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "R4QE46FY6EGW3G4T.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8241" - }, - "appliesTo" : [ ] - }, - "R4QE46FY6EGW3G4T.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "R4QE46FY6EGW3G4T.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "R4QE46FY6EGW3G4T.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "R4QE46FY6EGW3G4T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R4QE46FY6EGW3G4T.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "R4QE46FY6EGW3G4T.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "R4QE46FY6EGW3G4T.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "R4QE46FY6EGW3G4T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R4QE46FY6EGW3G4T.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "R4QE46FY6EGW3G4T.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1549" - }, - "appliesTo" : [ ] - }, - "R4QE46FY6EGW3G4T.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "R4QE46FY6EGW3G4T.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "R4QE46FY6EGW3G4T.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "R4QE46FY6EGW3G4T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R4QE46FY6EGW3G4T.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "R4QE46FY6EGW3G4T.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "V6XZ8Q6G3WH46NAH" : { - "V6XZ8Q6G3WH46NAH.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "V6XZ8Q6G3WH46NAH", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "V6XZ8Q6G3WH46NAH.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "V6XZ8Q6G3WH46NAH.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6152000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "V6XZ8Q6G3WH46NAH.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "V6XZ8Q6G3WH46NAH", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "V6XZ8Q6G3WH46NAH.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "V6XZ8Q6G3WH46NAH.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8121" - }, - "appliesTo" : [ ] - }, - "V6XZ8Q6G3WH46NAH.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "V6XZ8Q6G3WH46NAH.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "V6XZ8Q6G3WH46NAH.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "V6XZ8Q6G3WH46NAH", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "V6XZ8Q6G3WH46NAH.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "V6XZ8Q6G3WH46NAH.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6217000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "V6XZ8Q6G3WH46NAH.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "V6XZ8Q6G3WH46NAH", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "V6XZ8Q6G3WH46NAH.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "V6XZ8Q6G3WH46NAH.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16020" - }, - "appliesTo" : [ ] - }, - "V6XZ8Q6G3WH46NAH.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "V6XZ8Q6G3WH46NAH.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "V6XZ8Q6G3WH46NAH.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "V6XZ8Q6G3WH46NAH", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "V6XZ8Q6G3WH46NAH.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "V6XZ8Q6G3WH46NAH.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8042" - }, - "appliesTo" : [ ] - }, - "V6XZ8Q6G3WH46NAH.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "V6XZ8Q6G3WH46NAH.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "V6XZ8Q6G3WH46NAH.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "V6XZ8Q6G3WH46NAH", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "V6XZ8Q6G3WH46NAH.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "V6XZ8Q6G3WH46NAH.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16217" - }, - "appliesTo" : [ ] - }, - "V6XZ8Q6G3WH46NAH.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "V6XZ8Q6G3WH46NAH.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "V6XZ8Q6G3WH46NAH.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "V6XZ8Q6G3WH46NAH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V6XZ8Q6G3WH46NAH.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "V6XZ8Q6G3WH46NAH.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5593" - }, - "appliesTo" : [ ] - }, - "V6XZ8Q6G3WH46NAH.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "V6XZ8Q6G3WH46NAH.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "V6XZ8Q6G3WH46NAH.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "V6XZ8Q6G3WH46NAH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V6XZ8Q6G3WH46NAH.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "V6XZ8Q6G3WH46NAH.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2803" - }, - "appliesTo" : [ ] - }, - "V6XZ8Q6G3WH46NAH.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "V6XZ8Q6G3WH46NAH.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3199000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "V6XZ8Q6G3WH46NAH.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "V6XZ8Q6G3WH46NAH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V6XZ8Q6G3WH46NAH.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "V6XZ8Q6G3WH46NAH.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6432000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "V6XZ8Q6G3WH46NAH.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "V6XZ8Q6G3WH46NAH", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "V6XZ8Q6G3WH46NAH.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "V6XZ8Q6G3WH46NAH.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5517" - }, - "appliesTo" : [ ] - }, - "V6XZ8Q6G3WH46NAH.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "V6XZ8Q6G3WH46NAH.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "V6XZ8Q6G3WH46NAH.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "V6XZ8Q6G3WH46NAH", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "V6XZ8Q6G3WH46NAH.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "V6XZ8Q6G3WH46NAH.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2764" - }, - "appliesTo" : [ ] - }, - "V6XZ8Q6G3WH46NAH.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "V6XZ8Q6G3WH46NAH.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3155000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "V6XZ8Q6G3WH46NAH.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "V6XZ8Q6G3WH46NAH", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "V6XZ8Q6G3WH46NAH.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "V6XZ8Q6G3WH46NAH.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "6FNWHYYYSDGVQ87S" : { - "6FNWHYYYSDGVQ87S.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "6FNWHYYYSDGVQ87S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6FNWHYYYSDGVQ87S.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "6FNWHYYYSDGVQ87S.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6FNWHYYYSDGVQ87S.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "6FNWHYYYSDGVQ87S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6FNWHYYYSDGVQ87S.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "6FNWHYYYSDGVQ87S.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3232" - }, - "appliesTo" : [ ] - }, - "6FNWHYYYSDGVQ87S.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "6FNWHYYYSDGVQ87S.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6FNWHYYYSDGVQ87S.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6FNWHYYYSDGVQ87S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6FNWHYYYSDGVQ87S.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6FNWHYYYSDGVQ87S.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8345" - }, - "appliesTo" : [ ] - }, - "6FNWHYYYSDGVQ87S.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6FNWHYYYSDGVQ87S.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6FNWHYYYSDGVQ87S.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6FNWHYYYSDGVQ87S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6FNWHYYYSDGVQ87S.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6FNWHYYYSDGVQ87S.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6159" - }, - "appliesTo" : [ ] - }, - "6FNWHYYYSDGVQ87S.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6FNWHYYYSDGVQ87S.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6FNWHYYYSDGVQ87S.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "6FNWHYYYSDGVQ87S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6FNWHYYYSDGVQ87S.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "6FNWHYYYSDGVQ87S.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8609" - }, - "appliesTo" : [ ] - }, - "6FNWHYYYSDGVQ87S.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "6FNWHYYYSDGVQ87S.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6FNWHYYYSDGVQ87S.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "6FNWHYYYSDGVQ87S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6FNWHYYYSDGVQ87S.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "6FNWHYYYSDGVQ87S.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6422" - }, - "appliesTo" : [ ] - }, - "6FNWHYYYSDGVQ87S.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "6FNWHYYYSDGVQ87S.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6FNWHYYYSDGVQ87S.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "6FNWHYYYSDGVQ87S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6FNWHYYYSDGVQ87S.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "6FNWHYYYSDGVQ87S.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6FNWHYYYSDGVQ87S.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "6FNWHYYYSDGVQ87S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6FNWHYYYSDGVQ87S.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "6FNWHYYYSDGVQ87S.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6FNWHYYYSDGVQ87S.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6FNWHYYYSDGVQ87S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6FNWHYYYSDGVQ87S.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6FNWHYYYSDGVQ87S.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16483" - }, - "appliesTo" : [ ] - }, - "6FNWHYYYSDGVQ87S.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6FNWHYYYSDGVQ87S.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6FNWHYYYSDGVQ87S.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "6FNWHYYYSDGVQ87S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6FNWHYYYSDGVQ87S.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "6FNWHYYYSDGVQ87S.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17138" - }, - "appliesTo" : [ ] - }, - "6FNWHYYYSDGVQ87S.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "6FNWHYYYSDGVQ87S.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6FNWHYYYSDGVQ87S.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6FNWHYYYSDGVQ87S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6FNWHYYYSDGVQ87S.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6FNWHYYYSDGVQ87S.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3098" - }, - "appliesTo" : [ ] - }, - "6FNWHYYYSDGVQ87S.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6FNWHYYYSDGVQ87S.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6FNWHYYYSDGVQ87S.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6FNWHYYYSDGVQ87S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6FNWHYYYSDGVQ87S.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6FNWHYYYSDGVQ87S.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "DPCWVHKZ3AJBNM43" : { - "DPCWVHKZ3AJBNM43.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "DPCWVHKZ3AJBNM43", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DPCWVHKZ3AJBNM43.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "DPCWVHKZ3AJBNM43.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1322000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DPCWVHKZ3AJBNM43.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "DPCWVHKZ3AJBNM43", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "DPCWVHKZ3AJBNM43.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "DPCWVHKZ3AJBNM43.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "940" - }, - "appliesTo" : [ ] - }, - "DPCWVHKZ3AJBNM43.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "DPCWVHKZ3AJBNM43.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DPCWVHKZ3AJBNM43.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "DPCWVHKZ3AJBNM43", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "DPCWVHKZ3AJBNM43.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "DPCWVHKZ3AJBNM43.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1834" - }, - "appliesTo" : [ ] - }, - "DPCWVHKZ3AJBNM43.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "DPCWVHKZ3AJBNM43.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DPCWVHKZ3AJBNM43.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "DPCWVHKZ3AJBNM43", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "DPCWVHKZ3AJBNM43.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "DPCWVHKZ3AJBNM43.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0427000000" - }, - "appliesTo" : [ ] - }, - "DPCWVHKZ3AJBNM43.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "DPCWVHKZ3AJBNM43.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1122" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DPCWVHKZ3AJBNM43.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "DPCWVHKZ3AJBNM43", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "DPCWVHKZ3AJBNM43.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "DPCWVHKZ3AJBNM43.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0922000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DPCWVHKZ3AJBNM43.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "DPCWVHKZ3AJBNM43", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "DPCWVHKZ3AJBNM43.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "DPCWVHKZ3AJBNM43.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "976" - }, - "appliesTo" : [ ] - }, - "DPCWVHKZ3AJBNM43.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "DPCWVHKZ3AJBNM43.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0371000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DPCWVHKZ3AJBNM43.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "DPCWVHKZ3AJBNM43", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DPCWVHKZ3AJBNM43.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "DPCWVHKZ3AJBNM43.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "552" - }, - "appliesTo" : [ ] - }, - "DPCWVHKZ3AJBNM43.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "DPCWVHKZ3AJBNM43.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DPCWVHKZ3AJBNM43.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "DPCWVHKZ3AJBNM43", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "DPCWVHKZ3AJBNM43.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "DPCWVHKZ3AJBNM43.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "480" - }, - "appliesTo" : [ ] - }, - "DPCWVHKZ3AJBNM43.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "DPCWVHKZ3AJBNM43.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0548000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DPCWVHKZ3AJBNM43.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "DPCWVHKZ3AJBNM43", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "DPCWVHKZ3AJBNM43.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "DPCWVHKZ3AJBNM43.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DPCWVHKZ3AJBNM43.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "DPCWVHKZ3AJBNM43", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DPCWVHKZ3AJBNM43.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "DPCWVHKZ3AJBNM43.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "DPCWVHKZ3AJBNM43.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "DPCWVHKZ3AJBNM43.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1081" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DPCWVHKZ3AJBNM43.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "DPCWVHKZ3AJBNM43", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "DPCWVHKZ3AJBNM43.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "DPCWVHKZ3AJBNM43.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0802000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DPCWVHKZ3AJBNM43.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "DPCWVHKZ3AJBNM43", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "DPCWVHKZ3AJBNM43.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "DPCWVHKZ3AJBNM43.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2199" - }, - "appliesTo" : [ ] - }, - "DPCWVHKZ3AJBNM43.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "DPCWVHKZ3AJBNM43.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "9Z79M3D9R4KBF3U2" : { - "9Z79M3D9R4KBF3U2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "9Z79M3D9R4KBF3U2", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "9Z79M3D9R4KBF3U2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "9Z79M3D9R4KBF3U2.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9081000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9Z79M3D9R4KBF3U2.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "9Z79M3D9R4KBF3U2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9Z79M3D9R4KBF3U2.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "9Z79M3D9R4KBF3U2.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3732" - }, - "appliesTo" : [ ] - }, - "9Z79M3D9R4KBF3U2.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "9Z79M3D9R4KBF3U2.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5561000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9Z79M3D9R4KBF3U2.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "9Z79M3D9R4KBF3U2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9Z79M3D9R4KBF3U2.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "9Z79M3D9R4KBF3U2.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0248000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9Z79M3D9R4KBF3U2.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "9Z79M3D9R4KBF3U2", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "9Z79M3D9R4KBF3U2.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "9Z79M3D9R4KBF3U2.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19350" - }, - "appliesTo" : [ ] - }, - "9Z79M3D9R4KBF3U2.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "9Z79M3D9R4KBF3U2.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9Z79M3D9R4KBF3U2.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "9Z79M3D9R4KBF3U2", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "9Z79M3D9R4KBF3U2.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "9Z79M3D9R4KBF3U2.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7982000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9Z79M3D9R4KBF3U2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "9Z79M3D9R4KBF3U2", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "9Z79M3D9R4KBF3U2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "9Z79M3D9R4KBF3U2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3246" - }, - "appliesTo" : [ ] - }, - "9Z79M3D9R4KBF3U2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "9Z79M3D9R4KBF3U2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5005000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9Z79M3D9R4KBF3U2.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "9Z79M3D9R4KBF3U2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9Z79M3D9R4KBF3U2.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "9Z79M3D9R4KBF3U2.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8454" - }, - "appliesTo" : [ ] - }, - "9Z79M3D9R4KBF3U2.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "9Z79M3D9R4KBF3U2.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9Z79M3D9R4KBF3U2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "9Z79M3D9R4KBF3U2", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "9Z79M3D9R4KBF3U2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "9Z79M3D9R4KBF3U2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "9Z79M3D9R4KBF3U2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "9Z79M3D9R4KBF3U2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16706" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9Z79M3D9R4KBF3U2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "9Z79M3D9R4KBF3U2", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "9Z79M3D9R4KBF3U2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "9Z79M3D9R4KBF3U2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7500" - }, - "appliesTo" : [ ] - }, - "9Z79M3D9R4KBF3U2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "9Z79M3D9R4KBF3U2.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9Z79M3D9R4KBF3U2.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "9Z79M3D9R4KBF3U2", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "9Z79M3D9R4KBF3U2.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "9Z79M3D9R4KBF3U2.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9Z79M3D9R4KBF3U2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "9Z79M3D9R4KBF3U2", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "9Z79M3D9R4KBF3U2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "9Z79M3D9R4KBF3U2.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3990000000" - }, - "appliesTo" : [ ] - }, - "9Z79M3D9R4KBF3U2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "9Z79M3D9R4KBF3U2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7069" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9Z79M3D9R4KBF3U2.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "9Z79M3D9R4KBF3U2", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "9Z79M3D9R4KBF3U2.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "9Z79M3D9R4KBF3U2.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8129" - }, - "appliesTo" : [ ] - }, - "9Z79M3D9R4KBF3U2.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "9Z79M3D9R4KBF3U2.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4393000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "AJYJZ3X3S2AJ2D6D" : { - "AJYJZ3X3S2AJ2D6D.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "AJYJZ3X3S2AJ2D6D", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AJYJZ3X3S2AJ2D6D.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "AJYJZ3X3S2AJ2D6D.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "AJYJZ3X3S2AJ2D6D.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "AJYJZ3X3S2AJ2D6D", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AJYJZ3X3S2AJ2D6D.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "AJYJZ3X3S2AJ2D6D.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3280000000" - }, - "appliesTo" : [ ] - }, - "AJYJZ3X3S2AJ2D6D.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "AJYJZ3X3S2AJ2D6D.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11637" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "AJYJZ3X3S2AJ2D6D.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "AJYJZ3X3S2AJ2D6D", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AJYJZ3X3S2AJ2D6D.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "AJYJZ3X3S2AJ2D6D.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20299" - }, - "appliesTo" : [ ] - }, - "AJYJZ3X3S2AJ2D6D.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "AJYJZ3X3S2AJ2D6D.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AJYJZ3X3S2AJ2D6D.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "AJYJZ3X3S2AJ2D6D", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AJYJZ3X3S2AJ2D6D.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "AJYJZ3X3S2AJ2D6D.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21040" - }, - "appliesTo" : [ ] - }, - "AJYJZ3X3S2AJ2D6D.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "AJYJZ3X3S2AJ2D6D.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AJYJZ3X3S2AJ2D6D.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "AJYJZ3X3S2AJ2D6D", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AJYJZ3X3S2AJ2D6D.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "AJYJZ3X3S2AJ2D6D.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "AJYJZ3X3S2AJ2D6D.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "AJYJZ3X3S2AJ2D6D", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AJYJZ3X3S2AJ2D6D.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "AJYJZ3X3S2AJ2D6D.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26669" - }, - "appliesTo" : [ ] - }, - "AJYJZ3X3S2AJ2D6D.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "AJYJZ3X3S2AJ2D6D.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "AJYJZ3X3S2AJ2D6D.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "AJYJZ3X3S2AJ2D6D", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AJYJZ3X3S2AJ2D6D.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "AJYJZ3X3S2AJ2D6D.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "40135" - }, - "appliesTo" : [ ] - }, - "AJYJZ3X3S2AJ2D6D.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "AJYJZ3X3S2AJ2D6D.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AJYJZ3X3S2AJ2D6D.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "AJYJZ3X3S2AJ2D6D", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AJYJZ3X3S2AJ2D6D.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "AJYJZ3X3S2AJ2D6D.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "AJYJZ3X3S2AJ2D6D.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "AJYJZ3X3S2AJ2D6D", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AJYJZ3X3S2AJ2D6D.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "AJYJZ3X3S2AJ2D6D.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22873" - }, - "appliesTo" : [ ] - }, - "AJYJZ3X3S2AJ2D6D.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "AJYJZ3X3S2AJ2D6D.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "AJYJZ3X3S2AJ2D6D.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "AJYJZ3X3S2AJ2D6D", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AJYJZ3X3S2AJ2D6D.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "AJYJZ3X3S2AJ2D6D.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "AJYJZ3X3S2AJ2D6D.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "AJYJZ3X3S2AJ2D6D.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "52464" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "AJYJZ3X3S2AJ2D6D.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "AJYJZ3X3S2AJ2D6D", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AJYJZ3X3S2AJ2D6D.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "AJYJZ3X3S2AJ2D6D.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1790000000" - }, - "appliesTo" : [ ] - }, - "AJYJZ3X3S2AJ2D6D.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "AJYJZ3X3S2AJ2D6D.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10324" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AJYJZ3X3S2AJ2D6D.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "AJYJZ3X3S2AJ2D6D", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AJYJZ3X3S2AJ2D6D.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "AJYJZ3X3S2AJ2D6D.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "3SNVUNEGB8BAMWDP" : { - "3SNVUNEGB8BAMWDP.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "3SNVUNEGB8BAMWDP", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "3SNVUNEGB8BAMWDP.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "3SNVUNEGB8BAMWDP.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6120" - }, - "appliesTo" : [ ] - }, - "3SNVUNEGB8BAMWDP.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "3SNVUNEGB8BAMWDP.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3SNVUNEGB8BAMWDP.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "3SNVUNEGB8BAMWDP", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "3SNVUNEGB8BAMWDP.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "3SNVUNEGB8BAMWDP.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5405" - }, - "appliesTo" : [ ] - }, - "3SNVUNEGB8BAMWDP.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "3SNVUNEGB8BAMWDP.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3SNVUNEGB8BAMWDP.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "3SNVUNEGB8BAMWDP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3SNVUNEGB8BAMWDP.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "3SNVUNEGB8BAMWDP.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2002" - }, - "appliesTo" : [ ] - }, - "3SNVUNEGB8BAMWDP.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "3SNVUNEGB8BAMWDP.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3SNVUNEGB8BAMWDP.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "3SNVUNEGB8BAMWDP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3SNVUNEGB8BAMWDP.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "3SNVUNEGB8BAMWDP.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3425" - }, - "appliesTo" : [ ] - }, - "3SNVUNEGB8BAMWDP.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "3SNVUNEGB8BAMWDP.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3SNVUNEGB8BAMWDP.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "3SNVUNEGB8BAMWDP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3SNVUNEGB8BAMWDP.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "3SNVUNEGB8BAMWDP.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3940" - }, - "appliesTo" : [ ] - }, - "3SNVUNEGB8BAMWDP.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "3SNVUNEGB8BAMWDP.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3SNVUNEGB8BAMWDP.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "3SNVUNEGB8BAMWDP", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "3SNVUNEGB8BAMWDP.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "3SNVUNEGB8BAMWDP.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3SNVUNEGB8BAMWDP.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "3SNVUNEGB8BAMWDP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3SNVUNEGB8BAMWDP.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "3SNVUNEGB8BAMWDP.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2010" - }, - "appliesTo" : [ ] - }, - "3SNVUNEGB8BAMWDP.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "3SNVUNEGB8BAMWDP.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3SNVUNEGB8BAMWDP.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "3SNVUNEGB8BAMWDP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3SNVUNEGB8BAMWDP.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "3SNVUNEGB8BAMWDP.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3SNVUNEGB8BAMWDP.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "3SNVUNEGB8BAMWDP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3SNVUNEGB8BAMWDP.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "3SNVUNEGB8BAMWDP.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3014" - }, - "appliesTo" : [ ] - }, - "3SNVUNEGB8BAMWDP.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "3SNVUNEGB8BAMWDP.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3SNVUNEGB8BAMWDP.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "3SNVUNEGB8BAMWDP", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "3SNVUNEGB8BAMWDP.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "3SNVUNEGB8BAMWDP.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "3SNVUNEGB8BAMWDP.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "3SNVUNEGB8BAMWDP.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9248" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3SNVUNEGB8BAMWDP.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "3SNVUNEGB8BAMWDP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3SNVUNEGB8BAMWDP.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "3SNVUNEGB8BAMWDP.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "GU6HKEMK86X9HZKT" : { - "GU6HKEMK86X9HZKT.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "GU6HKEMK86X9HZKT", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "GU6HKEMK86X9HZKT.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "GU6HKEMK86X9HZKT.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6425" - }, - "appliesTo" : [ ] - }, - "GU6HKEMK86X9HZKT.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "GU6HKEMK86X9HZKT.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GU6HKEMK86X9HZKT.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "GU6HKEMK86X9HZKT", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "GU6HKEMK86X9HZKT.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "GU6HKEMK86X9HZKT.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GU6HKEMK86X9HZKT.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "GU6HKEMK86X9HZKT", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "GU6HKEMK86X9HZKT.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "GU6HKEMK86X9HZKT.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "GU6HKEMK86X9HZKT.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "GU6HKEMK86X9HZKT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GU6HKEMK86X9HZKT.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "GU6HKEMK86X9HZKT.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7502" - }, - "appliesTo" : [ ] - }, - "GU6HKEMK86X9HZKT.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "GU6HKEMK86X9HZKT.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GU6HKEMK86X9HZKT.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "GU6HKEMK86X9HZKT", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "GU6HKEMK86X9HZKT.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "GU6HKEMK86X9HZKT.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12482" - }, - "appliesTo" : [ ] - }, - "GU6HKEMK86X9HZKT.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "GU6HKEMK86X9HZKT.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GU6HKEMK86X9HZKT.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "GU6HKEMK86X9HZKT", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "GU6HKEMK86X9HZKT.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "GU6HKEMK86X9HZKT.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5247" - }, - "appliesTo" : [ ] - }, - "GU6HKEMK86X9HZKT.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "GU6HKEMK86X9HZKT.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GU6HKEMK86X9HZKT.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "GU6HKEMK86X9HZKT", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "GU6HKEMK86X9HZKT.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "GU6HKEMK86X9HZKT.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2654" - }, - "appliesTo" : [ ] - }, - "GU6HKEMK86X9HZKT.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "GU6HKEMK86X9HZKT.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GU6HKEMK86X9HZKT.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "GU6HKEMK86X9HZKT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GU6HKEMK86X9HZKT.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "GU6HKEMK86X9HZKT.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6795000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "GU6HKEMK86X9HZKT.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "GU6HKEMK86X9HZKT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GU6HKEMK86X9HZKT.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "GU6HKEMK86X9HZKT.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5705" - }, - "appliesTo" : [ ] - }, - "GU6HKEMK86X9HZKT.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "GU6HKEMK86X9HZKT.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "GU6HKEMK86X9HZKT.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "GU6HKEMK86X9HZKT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GU6HKEMK86X9HZKT.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "GU6HKEMK86X9HZKT.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2888" - }, - "appliesTo" : [ ] - }, - "GU6HKEMK86X9HZKT.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "GU6HKEMK86X9HZKT.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3297000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GU6HKEMK86X9HZKT.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "GU6HKEMK86X9HZKT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GU6HKEMK86X9HZKT.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "GU6HKEMK86X9HZKT.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7609000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GU6HKEMK86X9HZKT.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "GU6HKEMK86X9HZKT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "GU6HKEMK86X9HZKT.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "GU6HKEMK86X9HZKT.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "GU6HKEMK86X9HZKT.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "GU6HKEMK86X9HZKT.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14837" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "FZFXDFC28N97MJBH" : { - "FZFXDFC28N97MJBH.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "FZFXDFC28N97MJBH", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "FZFXDFC28N97MJBH.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "FZFXDFC28N97MJBH.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3427" - }, - "appliesTo" : [ ] - }, - "FZFXDFC28N97MJBH.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "FZFXDFC28N97MJBH.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FZFXDFC28N97MJBH.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "FZFXDFC28N97MJBH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FZFXDFC28N97MJBH.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "FZFXDFC28N97MJBH.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3226000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FZFXDFC28N97MJBH.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "FZFXDFC28N97MJBH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FZFXDFC28N97MJBH.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "FZFXDFC28N97MJBH.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FZFXDFC28N97MJBH.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "FZFXDFC28N97MJBH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FZFXDFC28N97MJBH.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "FZFXDFC28N97MJBH.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4026000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FZFXDFC28N97MJBH.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "FZFXDFC28N97MJBH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FZFXDFC28N97MJBH.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "FZFXDFC28N97MJBH.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1949" - }, - "appliesTo" : [ ] - }, - "FZFXDFC28N97MJBH.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "FZFXDFC28N97MJBH.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2154000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FZFXDFC28N97MJBH.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "FZFXDFC28N97MJBH", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "FZFXDFC28N97MJBH.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "FZFXDFC28N97MJBH.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1713" - }, - "appliesTo" : [ ] - }, - "FZFXDFC28N97MJBH.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "FZFXDFC28N97MJBH.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FZFXDFC28N97MJBH.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "FZFXDFC28N97MJBH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FZFXDFC28N97MJBH.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "FZFXDFC28N97MJBH.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2849000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FZFXDFC28N97MJBH.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "FZFXDFC28N97MJBH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FZFXDFC28N97MJBH.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "FZFXDFC28N97MJBH.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3765" - }, - "appliesTo" : [ ] - }, - "FZFXDFC28N97MJBH.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "FZFXDFC28N97MJBH.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FZFXDFC28N97MJBH.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "FZFXDFC28N97MJBH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FZFXDFC28N97MJBH.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "FZFXDFC28N97MJBH.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7601" - }, - "appliesTo" : [ ] - }, - "FZFXDFC28N97MJBH.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "FZFXDFC28N97MJBH.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FZFXDFC28N97MJBH.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "FZFXDFC28N97MJBH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FZFXDFC28N97MJBH.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "FZFXDFC28N97MJBH.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1471000000" - }, - "appliesTo" : [ ] - }, - "FZFXDFC28N97MJBH.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "FZFXDFC28N97MJBH.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3876" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FZFXDFC28N97MJBH.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "FZFXDFC28N97MJBH", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "FZFXDFC28N97MJBH.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "FZFXDFC28N97MJBH.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "FZFXDFC28N97MJBH.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "FZFXDFC28N97MJBH.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3303" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FZFXDFC28N97MJBH.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "FZFXDFC28N97MJBH", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "FZFXDFC28N97MJBH.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "FZFXDFC28N97MJBH.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6475" - }, - "appliesTo" : [ ] - }, - "FZFXDFC28N97MJBH.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "FZFXDFC28N97MJBH.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "7MZTFYDPAUJUXG8R" : { - "7MZTFYDPAUJUXG8R.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "7MZTFYDPAUJUXG8R", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7MZTFYDPAUJUXG8R.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "7MZTFYDPAUJUXG8R.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25999" - }, - "appliesTo" : [ ] - }, - "7MZTFYDPAUJUXG8R.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "7MZTFYDPAUJUXG8R.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7MZTFYDPAUJUXG8R.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "7MZTFYDPAUJUXG8R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7MZTFYDPAUJUXG8R.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "7MZTFYDPAUJUXG8R.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5352" - }, - "appliesTo" : [ ] - }, - "7MZTFYDPAUJUXG8R.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "7MZTFYDPAUJUXG8R.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7409000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7MZTFYDPAUJUXG8R.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "7MZTFYDPAUJUXG8R", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7MZTFYDPAUJUXG8R.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "7MZTFYDPAUJUXG8R.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7MZTFYDPAUJUXG8R.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "7MZTFYDPAUJUXG8R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7MZTFYDPAUJUXG8R.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "7MZTFYDPAUJUXG8R.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "7MZTFYDPAUJUXG8R.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "7MZTFYDPAUJUXG8R.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11628" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7MZTFYDPAUJUXG8R.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "7MZTFYDPAUJUXG8R", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7MZTFYDPAUJUXG8R.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "7MZTFYDPAUJUXG8R.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9535000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7MZTFYDPAUJUXG8R.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "7MZTFYDPAUJUXG8R", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "7MZTFYDPAUJUXG8R.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "7MZTFYDPAUJUXG8R.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4654" - }, - "appliesTo" : [ ] - }, - "7MZTFYDPAUJUXG8R.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "7MZTFYDPAUJUXG8R.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7MZTFYDPAUJUXG8R.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "7MZTFYDPAUJUXG8R", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "7MZTFYDPAUJUXG8R.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "7MZTFYDPAUJUXG8R.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7MZTFYDPAUJUXG8R.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "7MZTFYDPAUJUXG8R", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "7MZTFYDPAUJUXG8R.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "7MZTFYDPAUJUXG8R.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10260" - }, - "appliesTo" : [ ] - }, - "7MZTFYDPAUJUXG8R.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "7MZTFYDPAUJUXG8R.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7MZTFYDPAUJUXG8R.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "7MZTFYDPAUJUXG8R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7MZTFYDPAUJUXG8R.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "7MZTFYDPAUJUXG8R.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7MZTFYDPAUJUXG8R.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "7MZTFYDPAUJUXG8R", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "7MZTFYDPAUJUXG8R.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "7MZTFYDPAUJUXG8R.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22253" - }, - "appliesTo" : [ ] - }, - "7MZTFYDPAUJUXG8R.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "7MZTFYDPAUJUXG8R.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7MZTFYDPAUJUXG8R.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "7MZTFYDPAUJUXG8R", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "7MZTFYDPAUJUXG8R.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "7MZTFYDPAUJUXG8R.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10019" - }, - "appliesTo" : [ ] - }, - "7MZTFYDPAUJUXG8R.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "7MZTFYDPAUJUXG8R.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7MZTFYDPAUJUXG8R.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "7MZTFYDPAUJUXG8R", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7MZTFYDPAUJUXG8R.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "7MZTFYDPAUJUXG8R.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11522" - }, - "appliesTo" : [ ] - }, - "7MZTFYDPAUJUXG8R.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "7MZTFYDPAUJUXG8R.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5684000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "6SWWQPFNK6JG5AHS" : { - "6SWWQPFNK6JG5AHS.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6SWWQPFNK6JG5AHS", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "6SWWQPFNK6JG5AHS.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6SWWQPFNK6JG5AHS.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13404" - }, - "appliesTo" : [ ] - }, - "6SWWQPFNK6JG5AHS.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6SWWQPFNK6JG5AHS.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6SWWQPFNK6JG5AHS.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6SWWQPFNK6JG5AHS", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "6SWWQPFNK6JG5AHS.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6SWWQPFNK6JG5AHS.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6SWWQPFNK6JG5AHS.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6SWWQPFNK6JG5AHS", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "6SWWQPFNK6JG5AHS.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6SWWQPFNK6JG5AHS.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5473" - }, - "appliesTo" : [ ] - }, - "6SWWQPFNK6JG5AHS.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6SWWQPFNK6JG5AHS.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6SWWQPFNK6JG5AHS.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "6SWWQPFNK6JG5AHS", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "6SWWQPFNK6JG5AHS.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "6SWWQPFNK6JG5AHS.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6SWWQPFNK6JG5AHS.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "6SWWQPFNK6JG5AHS", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "6SWWQPFNK6JG5AHS.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "6SWWQPFNK6JG5AHS.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15864" - }, - "appliesTo" : [ ] - }, - "6SWWQPFNK6JG5AHS.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "6SWWQPFNK6JG5AHS.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6SWWQPFNK6JG5AHS.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6SWWQPFNK6JG5AHS", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6SWWQPFNK6JG5AHS.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6SWWQPFNK6JG5AHS.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14234" - }, - "appliesTo" : [ ] - }, - "6SWWQPFNK6JG5AHS.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6SWWQPFNK6JG5AHS.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6SWWQPFNK6JG5AHS.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "6SWWQPFNK6JG5AHS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6SWWQPFNK6JG5AHS.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "6SWWQPFNK6JG5AHS.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "6SWWQPFNK6JG5AHS.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "6SWWQPFNK6JG5AHS.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13109" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6SWWQPFNK6JG5AHS.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6SWWQPFNK6JG5AHS", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6SWWQPFNK6JG5AHS.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6SWWQPFNK6JG5AHS.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33434" - }, - "appliesTo" : [ ] - }, - "6SWWQPFNK6JG5AHS.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6SWWQPFNK6JG5AHS.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6SWWQPFNK6JG5AHS.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "6SWWQPFNK6JG5AHS", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "6SWWQPFNK6JG5AHS.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "6SWWQPFNK6JG5AHS.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "6SWWQPFNK6JG5AHS.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "6SWWQPFNK6JG5AHS.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39275" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6SWWQPFNK6JG5AHS.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "6SWWQPFNK6JG5AHS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6SWWQPFNK6JG5AHS.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "6SWWQPFNK6JG5AHS.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6591" - }, - "appliesTo" : [ ] - }, - "6SWWQPFNK6JG5AHS.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "6SWWQPFNK6JG5AHS.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6SWWQPFNK6JG5AHS.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "6SWWQPFNK6JG5AHS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6SWWQPFNK6JG5AHS.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "6SWWQPFNK6JG5AHS.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "CFPKDYHZCTKMWEKC" : { - "CFPKDYHZCTKMWEKC.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "CFPKDYHZCTKMWEKC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CFPKDYHZCTKMWEKC.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "CFPKDYHZCTKMWEKC.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10616" - }, - "appliesTo" : [ ] - }, - "CFPKDYHZCTKMWEKC.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "CFPKDYHZCTKMWEKC.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CFPKDYHZCTKMWEKC.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "CFPKDYHZCTKMWEKC", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CFPKDYHZCTKMWEKC.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "CFPKDYHZCTKMWEKC.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CFPKDYHZCTKMWEKC.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "CFPKDYHZCTKMWEKC", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CFPKDYHZCTKMWEKC.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "CFPKDYHZCTKMWEKC.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5070000000" - }, - "appliesTo" : [ ] - }, - "CFPKDYHZCTKMWEKC.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "CFPKDYHZCTKMWEKC.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9913" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CFPKDYHZCTKMWEKC.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "CFPKDYHZCTKMWEKC", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CFPKDYHZCTKMWEKC.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "CFPKDYHZCTKMWEKC.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CFPKDYHZCTKMWEKC.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "CFPKDYHZCTKMWEKC", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "CFPKDYHZCTKMWEKC.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "CFPKDYHZCTKMWEKC.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "CFPKDYHZCTKMWEKC.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "CFPKDYHZCTKMWEKC.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9432" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CFPKDYHZCTKMWEKC.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "CFPKDYHZCTKMWEKC", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "CFPKDYHZCTKMWEKC.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "CFPKDYHZCTKMWEKC.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19745" - }, - "appliesTo" : [ ] - }, - "CFPKDYHZCTKMWEKC.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "CFPKDYHZCTKMWEKC.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CFPKDYHZCTKMWEKC.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "CFPKDYHZCTKMWEKC", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CFPKDYHZCTKMWEKC.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "CFPKDYHZCTKMWEKC.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22846" - }, - "appliesTo" : [ ] - }, - "CFPKDYHZCTKMWEKC.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "CFPKDYHZCTKMWEKC.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CFPKDYHZCTKMWEKC.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "CFPKDYHZCTKMWEKC", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "CFPKDYHZCTKMWEKC.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "CFPKDYHZCTKMWEKC.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6130000000" - }, - "appliesTo" : [ ] - }, - "CFPKDYHZCTKMWEKC.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "CFPKDYHZCTKMWEKC.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4231" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CFPKDYHZCTKMWEKC.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "CFPKDYHZCTKMWEKC", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CFPKDYHZCTKMWEKC.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "CFPKDYHZCTKMWEKC.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CFPKDYHZCTKMWEKC.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "CFPKDYHZCTKMWEKC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CFPKDYHZCTKMWEKC.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "CFPKDYHZCTKMWEKC.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CFPKDYHZCTKMWEKC.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "CFPKDYHZCTKMWEKC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CFPKDYHZCTKMWEKC.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "CFPKDYHZCTKMWEKC.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4836" - }, - "appliesTo" : [ ] - }, - "CFPKDYHZCTKMWEKC.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "CFPKDYHZCTKMWEKC.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CFPKDYHZCTKMWEKC.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "CFPKDYHZCTKMWEKC", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "CFPKDYHZCTKMWEKC.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "CFPKDYHZCTKMWEKC.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8686" - }, - "appliesTo" : [ ] - }, - "CFPKDYHZCTKMWEKC.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "CFPKDYHZCTKMWEKC.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "5XD4G79GQT4HJ9K2" : { - "5XD4G79GQT4HJ9K2.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "5XD4G79GQT4HJ9K2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5XD4G79GQT4HJ9K2.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "5XD4G79GQT4HJ9K2.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "5XD4G79GQT4HJ9K2.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "5XD4G79GQT4HJ9K2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5XD4G79GQT4HJ9K2.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "5XD4G79GQT4HJ9K2.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16617" - }, - "appliesTo" : [ ] - }, - "5XD4G79GQT4HJ9K2.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "5XD4G79GQT4HJ9K2.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "5XD4G79GQT4HJ9K2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "5XD4G79GQT4HJ9K2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5XD4G79GQT4HJ9K2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "5XD4G79GQT4HJ9K2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28146" - }, - "appliesTo" : [ ] - }, - "5XD4G79GQT4HJ9K2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "5XD4G79GQT4HJ9K2.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5XD4G79GQT4HJ9K2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "5XD4G79GQT4HJ9K2", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "5XD4G79GQT4HJ9K2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "5XD4G79GQT4HJ9K2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29870" - }, - "appliesTo" : [ ] - }, - "5XD4G79GQT4HJ9K2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "5XD4G79GQT4HJ9K2.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5XD4G79GQT4HJ9K2.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "5XD4G79GQT4HJ9K2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5XD4G79GQT4HJ9K2.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "5XD4G79GQT4HJ9K2.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "5XD4G79GQT4HJ9K2.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "5XD4G79GQT4HJ9K2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5XD4G79GQT4HJ9K2.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "5XD4G79GQT4HJ9K2.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34201" - }, - "appliesTo" : [ ] - }, - "5XD4G79GQT4HJ9K2.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "5XD4G79GQT4HJ9K2.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "5XD4G79GQT4HJ9K2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "5XD4G79GQT4HJ9K2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5XD4G79GQT4HJ9K2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "5XD4G79GQT4HJ9K2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "56187" - }, - "appliesTo" : [ ] - }, - "5XD4G79GQT4HJ9K2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "5XD4G79GQT4HJ9K2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5XD4G79GQT4HJ9K2.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "5XD4G79GQT4HJ9K2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5XD4G79GQT4HJ9K2.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "5XD4G79GQT4HJ9K2.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "5XD4G79GQT4HJ9K2.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "5XD4G79GQT4HJ9K2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5XD4G79GQT4HJ9K2.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "5XD4G79GQT4HJ9K2.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32514" - }, - "appliesTo" : [ ] - }, - "5XD4G79GQT4HJ9K2.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "5XD4G79GQT4HJ9K2.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "5XD4G79GQT4HJ9K2.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "5XD4G79GQT4HJ9K2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5XD4G79GQT4HJ9K2.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "5XD4G79GQT4HJ9K2.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "67038" - }, - "appliesTo" : [ ] - }, - "5XD4G79GQT4HJ9K2.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "5XD4G79GQT4HJ9K2.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "5XD4G79GQT4HJ9K2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "5XD4G79GQT4HJ9K2", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "5XD4G79GQT4HJ9K2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "5XD4G79GQT4HJ9K2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14388" - }, - "appliesTo" : [ ] - }, - "5XD4G79GQT4HJ9K2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "5XD4G79GQT4HJ9K2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5XD4G79GQT4HJ9K2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "5XD4G79GQT4HJ9K2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "5XD4G79GQT4HJ9K2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "5XD4G79GQT4HJ9K2.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "6555VGRWG4AP5HWV" : { - "6555VGRWG4AP5HWV.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "6555VGRWG4AP5HWV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6555VGRWG4AP5HWV.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "6555VGRWG4AP5HWV.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "604" - }, - "appliesTo" : [ ] - }, - "6555VGRWG4AP5HWV.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "6555VGRWG4AP5HWV.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6555VGRWG4AP5HWV.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "6555VGRWG4AP5HWV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6555VGRWG4AP5HWV.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "6555VGRWG4AP5HWV.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1097000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6555VGRWG4AP5HWV.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6555VGRWG4AP5HWV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6555VGRWG4AP5HWV.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6555VGRWG4AP5HWV.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2565" - }, - "appliesTo" : [ ] - }, - "6555VGRWG4AP5HWV.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6555VGRWG4AP5HWV.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6555VGRWG4AP5HWV.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "6555VGRWG4AP5HWV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6555VGRWG4AP5HWV.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "6555VGRWG4AP5HWV.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1032000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6555VGRWG4AP5HWV.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6555VGRWG4AP5HWV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6555VGRWG4AP5HWV.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6555VGRWG4AP5HWV.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "526" - }, - "appliesTo" : [ ] - }, - "6555VGRWG4AP5HWV.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6555VGRWG4AP5HWV.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6555VGRWG4AP5HWV.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "6555VGRWG4AP5HWV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6555VGRWG4AP5HWV.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "6555VGRWG4AP5HWV.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2762" - }, - "appliesTo" : [ ] - }, - "6555VGRWG4AP5HWV.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "6555VGRWG4AP5HWV.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6555VGRWG4AP5HWV.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "6555VGRWG4AP5HWV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6555VGRWG4AP5HWV.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "6555VGRWG4AP5HWV.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "6555VGRWG4AP5HWV.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "6555VGRWG4AP5HWV.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1108" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6555VGRWG4AP5HWV.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "6555VGRWG4AP5HWV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6555VGRWG4AP5HWV.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "6555VGRWG4AP5HWV.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0939000000" - }, - "appliesTo" : [ ] - }, - "6555VGRWG4AP5HWV.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "6555VGRWG4AP5HWV.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "297" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6555VGRWG4AP5HWV.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "6555VGRWG4AP5HWV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6555VGRWG4AP5HWV.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "6555VGRWG4AP5HWV.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1312000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6555VGRWG4AP5HWV.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6555VGRWG4AP5HWV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6555VGRWG4AP5HWV.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6555VGRWG4AP5HWV.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "6555VGRWG4AP5HWV.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6555VGRWG4AP5HWV.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1032" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6555VGRWG4AP5HWV.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6555VGRWG4AP5HWV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6555VGRWG4AP5HWV.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6555VGRWG4AP5HWV.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "258" - }, - "appliesTo" : [ ] - }, - "6555VGRWG4AP5HWV.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6555VGRWG4AP5HWV.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0895000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6555VGRWG4AP5HWV.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6555VGRWG4AP5HWV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6555VGRWG4AP5HWV.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6555VGRWG4AP5HWV.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "2NCC7B83WHP39NK5" : { - "2NCC7B83WHP39NK5.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "2NCC7B83WHP39NK5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2NCC7B83WHP39NK5.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "2NCC7B83WHP39NK5.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2NCC7B83WHP39NK5.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "2NCC7B83WHP39NK5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2NCC7B83WHP39NK5.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "2NCC7B83WHP39NK5.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2041" - }, - "appliesTo" : [ ] - }, - "2NCC7B83WHP39NK5.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "2NCC7B83WHP39NK5.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2NCC7B83WHP39NK5.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "2NCC7B83WHP39NK5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "2NCC7B83WHP39NK5.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "2NCC7B83WHP39NK5.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4594" - }, - "appliesTo" : [ ] - }, - "2NCC7B83WHP39NK5.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "2NCC7B83WHP39NK5.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2NCC7B83WHP39NK5.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "2NCC7B83WHP39NK5", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "2NCC7B83WHP39NK5.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "2NCC7B83WHP39NK5.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6226" - }, - "appliesTo" : [ ] - }, - "2NCC7B83WHP39NK5.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "2NCC7B83WHP39NK5.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2NCC7B83WHP39NK5.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "2NCC7B83WHP39NK5", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "2NCC7B83WHP39NK5.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "2NCC7B83WHP39NK5.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1900000000" - }, - "appliesTo" : [ ] - }, - "2NCC7B83WHP39NK5.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "2NCC7B83WHP39NK5.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6307" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2NCC7B83WHP39NK5.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "2NCC7B83WHP39NK5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2NCC7B83WHP39NK5.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "2NCC7B83WHP39NK5.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5139" - }, - "appliesTo" : [ ] - }, - "2NCC7B83WHP39NK5.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "2NCC7B83WHP39NK5.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2NCC7B83WHP39NK5.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "2NCC7B83WHP39NK5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "2NCC7B83WHP39NK5.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "2NCC7B83WHP39NK5.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10622" - }, - "appliesTo" : [ ] - }, - "2NCC7B83WHP39NK5.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "2NCC7B83WHP39NK5.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2NCC7B83WHP39NK5.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "2NCC7B83WHP39NK5", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "2NCC7B83WHP39NK5.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "2NCC7B83WHP39NK5.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2NCC7B83WHP39NK5.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "2NCC7B83WHP39NK5", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "2NCC7B83WHP39NK5.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "2NCC7B83WHP39NK5.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12739" - }, - "appliesTo" : [ ] - }, - "2NCC7B83WHP39NK5.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "2NCC7B83WHP39NK5.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2NCC7B83WHP39NK5.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "2NCC7B83WHP39NK5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "2NCC7B83WHP39NK5.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "2NCC7B83WHP39NK5.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2NCC7B83WHP39NK5.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "2NCC7B83WHP39NK5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "2NCC7B83WHP39NK5.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "2NCC7B83WHP39NK5.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2306" - }, - "appliesTo" : [ ] - }, - "2NCC7B83WHP39NK5.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "2NCC7B83WHP39NK5.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "KBNWDNPNYX37C8BM" : { - "KBNWDNPNYX37C8BM.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "KBNWDNPNYX37C8BM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KBNWDNPNYX37C8BM.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "KBNWDNPNYX37C8BM.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KBNWDNPNYX37C8BM.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "KBNWDNPNYX37C8BM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KBNWDNPNYX37C8BM.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "KBNWDNPNYX37C8BM.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2487" - }, - "appliesTo" : [ ] - }, - "KBNWDNPNYX37C8BM.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "KBNWDNPNYX37C8BM.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KBNWDNPNYX37C8BM.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "KBNWDNPNYX37C8BM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KBNWDNPNYX37C8BM.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "KBNWDNPNYX37C8BM.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KBNWDNPNYX37C8BM.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "KBNWDNPNYX37C8BM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KBNWDNPNYX37C8BM.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "KBNWDNPNYX37C8BM.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6465" - }, - "appliesTo" : [ ] - }, - "KBNWDNPNYX37C8BM.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "KBNWDNPNYX37C8BM.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KBNWDNPNYX37C8BM.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "KBNWDNPNYX37C8BM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KBNWDNPNYX37C8BM.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "KBNWDNPNYX37C8BM.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KBNWDNPNYX37C8BM.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "KBNWDNPNYX37C8BM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KBNWDNPNYX37C8BM.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "KBNWDNPNYX37C8BM.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3284" - }, - "appliesTo" : [ ] - }, - "KBNWDNPNYX37C8BM.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "KBNWDNPNYX37C8BM.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KBNWDNPNYX37C8BM.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "KBNWDNPNYX37C8BM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KBNWDNPNYX37C8BM.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "KBNWDNPNYX37C8BM.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6793" - }, - "appliesTo" : [ ] - }, - "KBNWDNPNYX37C8BM.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "KBNWDNPNYX37C8BM.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KBNWDNPNYX37C8BM.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "KBNWDNPNYX37C8BM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KBNWDNPNYX37C8BM.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "KBNWDNPNYX37C8BM.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3416" - }, - "appliesTo" : [ ] - }, - "KBNWDNPNYX37C8BM.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "KBNWDNPNYX37C8BM.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KBNWDNPNYX37C8BM.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "KBNWDNPNYX37C8BM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KBNWDNPNYX37C8BM.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "KBNWDNPNYX37C8BM.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2619" - }, - "appliesTo" : [ ] - }, - "KBNWDNPNYX37C8BM.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "KBNWDNPNYX37C8BM.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KBNWDNPNYX37C8BM.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "KBNWDNPNYX37C8BM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KBNWDNPNYX37C8BM.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "KBNWDNPNYX37C8BM.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1430000000" - }, - "appliesTo" : [ ] - }, - "KBNWDNPNYX37C8BM.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "KBNWDNPNYX37C8BM.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1253" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KBNWDNPNYX37C8BM.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "KBNWDNPNYX37C8BM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KBNWDNPNYX37C8BM.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "KBNWDNPNYX37C8BM.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1320" - }, - "appliesTo" : [ ] - }, - "KBNWDNPNYX37C8BM.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "KBNWDNPNYX37C8BM.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KBNWDNPNYX37C8BM.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "KBNWDNPNYX37C8BM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KBNWDNPNYX37C8BM.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "KBNWDNPNYX37C8BM.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "7WKKM2PCFQV7UGX4" : { - "7WKKM2PCFQV7UGX4.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "7WKKM2PCFQV7UGX4", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7WKKM2PCFQV7UGX4.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "7WKKM2PCFQV7UGX4.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32210" - }, - "appliesTo" : [ ] - }, - "7WKKM2PCFQV7UGX4.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "7WKKM2PCFQV7UGX4.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7WKKM2PCFQV7UGX4.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "7WKKM2PCFQV7UGX4", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7WKKM2PCFQV7UGX4.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "7WKKM2PCFQV7UGX4.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "7WKKM2PCFQV7UGX4.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "7WKKM2PCFQV7UGX4.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12406" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7WKKM2PCFQV7UGX4.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "7WKKM2PCFQV7UGX4", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7WKKM2PCFQV7UGX4.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "7WKKM2PCFQV7UGX4.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13713" - }, - "appliesTo" : [ ] - }, - "7WKKM2PCFQV7UGX4.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "7WKKM2PCFQV7UGX4.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7WKKM2PCFQV7UGX4.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "7WKKM2PCFQV7UGX4", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7WKKM2PCFQV7UGX4.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "7WKKM2PCFQV7UGX4.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8670000000" - }, - "appliesTo" : [ ] - }, - "7WKKM2PCFQV7UGX4.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "7WKKM2PCFQV7UGX4.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5067" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7WKKM2PCFQV7UGX4.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "7WKKM2PCFQV7UGX4", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7WKKM2PCFQV7UGX4.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "7WKKM2PCFQV7UGX4.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "2S47E3PRB8XVH9QV" : { - "2S47E3PRB8XVH9QV.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "2S47E3PRB8XVH9QV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "2S47E3PRB8XVH9QV.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "2S47E3PRB8XVH9QV.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1951" - }, - "appliesTo" : [ ] - }, - "2S47E3PRB8XVH9QV.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "2S47E3PRB8XVH9QV.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0742000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2S47E3PRB8XVH9QV.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "2S47E3PRB8XVH9QV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "2S47E3PRB8XVH9QV.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "2S47E3PRB8XVH9QV.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "2S47E3PRB8XVH9QV.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "2S47E3PRB8XVH9QV.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4398" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2S47E3PRB8XVH9QV.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "2S47E3PRB8XVH9QV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "2S47E3PRB8XVH9QV.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "2S47E3PRB8XVH9QV.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1844000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2S47E3PRB8XVH9QV.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "2S47E3PRB8XVH9QV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2S47E3PRB8XVH9QV.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "2S47E3PRB8XVH9QV.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1259000000" - }, - "appliesTo" : [ ] - }, - "2S47E3PRB8XVH9QV.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "2S47E3PRB8XVH9QV.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1103" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2S47E3PRB8XVH9QV.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "2S47E3PRB8XVH9QV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "2S47E3PRB8XVH9QV.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "2S47E3PRB8XVH9QV.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2S47E3PRB8XVH9QV.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "2S47E3PRB8XVH9QV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "2S47E3PRB8XVH9QV.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "2S47E3PRB8XVH9QV.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1604000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2S47E3PRB8XVH9QV.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "2S47E3PRB8XVH9QV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "2S47E3PRB8XVH9QV.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "2S47E3PRB8XVH9QV.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1095000000" - }, - "appliesTo" : [ ] - }, - "2S47E3PRB8XVH9QV.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "2S47E3PRB8XVH9QV.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "959" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2S47E3PRB8XVH9QV.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "2S47E3PRB8XVH9QV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2S47E3PRB8XVH9QV.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "2S47E3PRB8XVH9QV.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2162" - }, - "appliesTo" : [ ] - }, - "2S47E3PRB8XVH9QV.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "2S47E3PRB8XVH9QV.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2S47E3PRB8XVH9QV.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "2S47E3PRB8XVH9QV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2S47E3PRB8XVH9QV.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "2S47E3PRB8XVH9QV.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2645000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2S47E3PRB8XVH9QV.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "2S47E3PRB8XVH9QV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "2S47E3PRB8XVH9QV.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "2S47E3PRB8XVH9QV.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2244" - }, - "appliesTo" : [ ] - }, - "2S47E3PRB8XVH9QV.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "2S47E3PRB8XVH9QV.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0854000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2S47E3PRB8XVH9QV.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "2S47E3PRB8XVH9QV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "2S47E3PRB8XVH9QV.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "2S47E3PRB8XVH9QV.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3668" - }, - "appliesTo" : [ ] - }, - "2S47E3PRB8XVH9QV.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "2S47E3PRB8XVH9QV.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2S47E3PRB8XVH9QV.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "2S47E3PRB8XVH9QV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "2S47E3PRB8XVH9QV.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "2S47E3PRB8XVH9QV.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1880" - }, - "appliesTo" : [ ] - }, - "2S47E3PRB8XVH9QV.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "2S47E3PRB8XVH9QV.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "SUWG7U93QWGDKW8P" : { - "SUWG7U93QWGDKW8P.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SUWG7U93QWGDKW8P", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "SUWG7U93QWGDKW8P.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SUWG7U93QWGDKW8P.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12348" - }, - "appliesTo" : [ ] - }, - "SUWG7U93QWGDKW8P.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SUWG7U93QWGDKW8P.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SUWG7U93QWGDKW8P.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SUWG7U93QWGDKW8P", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "SUWG7U93QWGDKW8P.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SUWG7U93QWGDKW8P.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6328" - }, - "appliesTo" : [ ] - }, - "SUWG7U93QWGDKW8P.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SUWG7U93QWGDKW8P.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SUWG7U93QWGDKW8P.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "SUWG7U93QWGDKW8P", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SUWG7U93QWGDKW8P.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "SUWG7U93QWGDKW8P.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SUWG7U93QWGDKW8P.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "SUWG7U93QWGDKW8P.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14190" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SUWG7U93QWGDKW8P.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "SUWG7U93QWGDKW8P", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SUWG7U93QWGDKW8P.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "SUWG7U93QWGDKW8P.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7331000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SUWG7U93QWGDKW8P.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "SUWG7U93QWGDKW8P", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SUWG7U93QWGDKW8P.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "SUWG7U93QWGDKW8P.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0404000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SUWG7U93QWGDKW8P.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "SUWG7U93QWGDKW8P", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SUWG7U93QWGDKW8P.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "SUWG7U93QWGDKW8P.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7268" - }, - "appliesTo" : [ ] - }, - "SUWG7U93QWGDKW8P.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "SUWG7U93QWGDKW8P.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8226000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SUWG7U93QWGDKW8P.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "SUWG7U93QWGDKW8P", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SUWG7U93QWGDKW8P.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "SUWG7U93QWGDKW8P.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28321" - }, - "appliesTo" : [ ] - }, - "SUWG7U93QWGDKW8P.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "SUWG7U93QWGDKW8P.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SUWG7U93QWGDKW8P.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SUWG7U93QWGDKW8P", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "SUWG7U93QWGDKW8P.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SUWG7U93QWGDKW8P.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12656" - }, - "appliesTo" : [ ] - }, - "SUWG7U93QWGDKW8P.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SUWG7U93QWGDKW8P.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SUWG7U93QWGDKW8P.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SUWG7U93QWGDKW8P", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SUWG7U93QWGDKW8P.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SUWG7U93QWGDKW8P.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5114000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SUWG7U93QWGDKW8P.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "SUWG7U93QWGDKW8P", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SUWG7U93QWGDKW8P.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "SUWG7U93QWGDKW8P.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5494000000" - }, - "appliesTo" : [ ] - }, - "SUWG7U93QWGDKW8P.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "SUWG7U93QWGDKW8P.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14448" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SUWG7U93QWGDKW8P.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SUWG7U93QWGDKW8P", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "SUWG7U93QWGDKW8P.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SUWG7U93QWGDKW8P.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23826" - }, - "appliesTo" : [ ] - }, - "SUWG7U93QWGDKW8P.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SUWG7U93QWGDKW8P.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SUWG7U93QWGDKW8P.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "SUWG7U93QWGDKW8P", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SUWG7U93QWGDKW8P.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "SUWG7U93QWGDKW8P.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1915000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "CZ9BHU45SGEFD4MA" : { - "CZ9BHU45SGEFD4MA.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "CZ9BHU45SGEFD4MA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CZ9BHU45SGEFD4MA.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "CZ9BHU45SGEFD4MA.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "41998" - }, - "appliesTo" : [ ] - }, - "CZ9BHU45SGEFD4MA.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "CZ9BHU45SGEFD4MA.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CZ9BHU45SGEFD4MA.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "CZ9BHU45SGEFD4MA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CZ9BHU45SGEFD4MA.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "CZ9BHU45SGEFD4MA.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.2238000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CZ9BHU45SGEFD4MA.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "CZ9BHU45SGEFD4MA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CZ9BHU45SGEFD4MA.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "CZ9BHU45SGEFD4MA.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "CZ9BHU45SGEFD4MA.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "CZ9BHU45SGEFD4MA.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "102904" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CZ9BHU45SGEFD4MA.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "CZ9BHU45SGEFD4MA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CZ9BHU45SGEFD4MA.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "CZ9BHU45SGEFD4MA.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "58026" - }, - "appliesTo" : [ ] - }, - "CZ9BHU45SGEFD4MA.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "CZ9BHU45SGEFD4MA.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CZ9BHU45SGEFD4MA.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "CZ9BHU45SGEFD4MA", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "CZ9BHU45SGEFD4MA.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "CZ9BHU45SGEFD4MA.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0830000000" - }, - "appliesTo" : [ ] - }, - "CZ9BHU45SGEFD4MA.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "CZ9BHU45SGEFD4MA.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "54736" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CZ9BHU45SGEFD4MA.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "CZ9BHU45SGEFD4MA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CZ9BHU45SGEFD4MA.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "CZ9BHU45SGEFD4MA.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "115279" - }, - "appliesTo" : [ ] - }, - "CZ9BHU45SGEFD4MA.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "CZ9BHU45SGEFD4MA.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CZ9BHU45SGEFD4MA.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "CZ9BHU45SGEFD4MA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CZ9BHU45SGEFD4MA.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "CZ9BHU45SGEFD4MA.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5576000000" - }, - "appliesTo" : [ ] - }, - "CZ9BHU45SGEFD4MA.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "CZ9BHU45SGEFD4MA.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22405" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CZ9BHU45SGEFD4MA.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "CZ9BHU45SGEFD4MA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CZ9BHU45SGEFD4MA.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "CZ9BHU45SGEFD4MA.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5338000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CZ9BHU45SGEFD4MA.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "CZ9BHU45SGEFD4MA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CZ9BHU45SGEFD4MA.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "CZ9BHU45SGEFD4MA.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "44429" - }, - "appliesTo" : [ ] - }, - "CZ9BHU45SGEFD4MA.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "CZ9BHU45SGEFD4MA.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CZ9BHU45SGEFD4MA.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "CZ9BHU45SGEFD4MA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CZ9BHU45SGEFD4MA.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "CZ9BHU45SGEFD4MA.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.3264000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CZ9BHU45SGEFD4MA.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "CZ9BHU45SGEFD4MA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CZ9BHU45SGEFD4MA.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "CZ9BHU45SGEFD4MA.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9264000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CZ9BHU45SGEFD4MA.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "CZ9BHU45SGEFD4MA", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CZ9BHU45SGEFD4MA.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "CZ9BHU45SGEFD4MA.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21164" - }, - "appliesTo" : [ ] - }, - "CZ9BHU45SGEFD4MA.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "CZ9BHU45SGEFD4MA.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "H4ERZSZPBES3WKPY" : { - "H4ERZSZPBES3WKPY.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "H4ERZSZPBES3WKPY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "H4ERZSZPBES3WKPY.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "H4ERZSZPBES3WKPY.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17347" - }, - "appliesTo" : [ ] - }, - "H4ERZSZPBES3WKPY.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "H4ERZSZPBES3WKPY.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "H4ERZSZPBES3WKPY.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "H4ERZSZPBES3WKPY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "H4ERZSZPBES3WKPY.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "H4ERZSZPBES3WKPY.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8269" - }, - "appliesTo" : [ ] - }, - "H4ERZSZPBES3WKPY.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "H4ERZSZPBES3WKPY.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "H4ERZSZPBES3WKPY.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "H4ERZSZPBES3WKPY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "H4ERZSZPBES3WKPY.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "H4ERZSZPBES3WKPY.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19342" - }, - "appliesTo" : [ ] - }, - "H4ERZSZPBES3WKPY.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "H4ERZSZPBES3WKPY.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "H4ERZSZPBES3WKPY.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "H4ERZSZPBES3WKPY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H4ERZSZPBES3WKPY.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "H4ERZSZPBES3WKPY.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4098000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "H4ERZSZPBES3WKPY.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "H4ERZSZPBES3WKPY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "H4ERZSZPBES3WKPY.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "H4ERZSZPBES3WKPY.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16819" - }, - "appliesTo" : [ ] - }, - "H4ERZSZPBES3WKPY.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "H4ERZSZPBES3WKPY.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "H4ERZSZPBES3WKPY.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "H4ERZSZPBES3WKPY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H4ERZSZPBES3WKPY.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "H4ERZSZPBES3WKPY.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9510" - }, - "appliesTo" : [ ] - }, - "H4ERZSZPBES3WKPY.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "H4ERZSZPBES3WKPY.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2156000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "H4ERZSZPBES3WKPY.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "H4ERZSZPBES3WKPY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "H4ERZSZPBES3WKPY.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "H4ERZSZPBES3WKPY.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "H4ERZSZPBES3WKPY.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "H4ERZSZPBES3WKPY.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "41327" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "H4ERZSZPBES3WKPY.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "H4ERZSZPBES3WKPY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "H4ERZSZPBES3WKPY.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "H4ERZSZPBES3WKPY.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35036" - }, - "appliesTo" : [ ] - }, - "H4ERZSZPBES3WKPY.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "H4ERZSZPBES3WKPY.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "H4ERZSZPBES3WKPY.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "H4ERZSZPBES3WKPY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "H4ERZSZPBES3WKPY.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "H4ERZSZPBES3WKPY.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5124000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "H4ERZSZPBES3WKPY.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "H4ERZSZPBES3WKPY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "H4ERZSZPBES3WKPY.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "H4ERZSZPBES3WKPY.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7198000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "H4ERZSZPBES3WKPY.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "H4ERZSZPBES3WKPY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "H4ERZSZPBES3WKPY.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "H4ERZSZPBES3WKPY.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19778" - }, - "appliesTo" : [ ] - }, - "H4ERZSZPBES3WKPY.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "H4ERZSZPBES3WKPY.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "H4ERZSZPBES3WKPY.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "H4ERZSZPBES3WKPY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "H4ERZSZPBES3WKPY.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "H4ERZSZPBES3WKPY.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1124000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "ZWRX2ZR95V6ZB42V" : { - "ZWRX2ZR95V6ZB42V.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ZWRX2ZR95V6ZB42V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZWRX2ZR95V6ZB42V.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ZWRX2ZR95V6ZB42V.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6720000000" - }, - "appliesTo" : [ ] - }, - "ZWRX2ZR95V6ZB42V.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ZWRX2ZR95V6ZB42V.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32163" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZWRX2ZR95V6ZB42V.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ZWRX2ZR95V6ZB42V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZWRX2ZR95V6ZB42V.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ZWRX2ZR95V6ZB42V.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.2900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZWRX2ZR95V6ZB42V.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ZWRX2ZR95V6ZB42V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZWRX2ZR95V6ZB42V.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ZWRX2ZR95V6ZB42V.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "187708" - }, - "appliesTo" : [ ] - }, - "ZWRX2ZR95V6ZB42V.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ZWRX2ZR95V6ZB42V.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZWRX2ZR95V6ZB42V.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ZWRX2ZR95V6ZB42V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZWRX2ZR95V6ZB42V.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ZWRX2ZR95V6ZB42V.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "93963" - }, - "appliesTo" : [ ] - }, - "ZWRX2ZR95V6ZB42V.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ZWRX2ZR95V6ZB42V.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZWRX2ZR95V6ZB42V.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ZWRX2ZR95V6ZB42V", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "ZWRX2ZR95V6ZB42V.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ZWRX2ZR95V6ZB42V.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5500000000" - }, - "appliesTo" : [ ] - }, - "ZWRX2ZR95V6ZB42V.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ZWRX2ZR95V6ZB42V.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "93283" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZWRX2ZR95V6ZB42V.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ZWRX2ZR95V6ZB42V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZWRX2ZR95V6ZB42V.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ZWRX2ZR95V6ZB42V.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZWRX2ZR95V6ZB42V.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ZWRX2ZR95V6ZB42V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZWRX2ZR95V6ZB42V.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ZWRX2ZR95V6ZB42V.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31962" - }, - "appliesTo" : [ ] - }, - "ZWRX2ZR95V6ZB42V.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ZWRX2ZR95V6ZB42V.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZWRX2ZR95V6ZB42V.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ZWRX2ZR95V6ZB42V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZWRX2ZR95V6ZB42V.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ZWRX2ZR95V6ZB42V.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "64220" - }, - "appliesTo" : [ ] - }, - "ZWRX2ZR95V6ZB42V.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ZWRX2ZR95V6ZB42V.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZWRX2ZR95V6ZB42V.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ZWRX2ZR95V6ZB42V", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "ZWRX2ZR95V6ZB42V.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ZWRX2ZR95V6ZB42V.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ZWRX2ZR95V6ZB42V.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ZWRX2ZR95V6ZB42V.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "185993" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZWRX2ZR95V6ZB42V.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "ZWRX2ZR95V6ZB42V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZWRX2ZR95V6ZB42V.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "ZWRX2ZR95V6ZB42V.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.1260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZWRX2ZR95V6ZB42V.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ZWRX2ZR95V6ZB42V", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "ZWRX2ZR95V6ZB42V.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ZWRX2ZR95V6ZB42V.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ZWRX2ZR95V6ZB42V.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ZWRX2ZR95V6ZB42V.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "63826" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZWRX2ZR95V6ZB42V.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ZWRX2ZR95V6ZB42V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZWRX2ZR95V6ZB42V.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ZWRX2ZR95V6ZB42V.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.1840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "DX44AJZKPEUWHF3H" : { - "DX44AJZKPEUWHF3H.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "DX44AJZKPEUWHF3H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DX44AJZKPEUWHF3H.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "DX44AJZKPEUWHF3H.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6876" - }, - "appliesTo" : [ ] - }, - "DX44AJZKPEUWHF3H.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "DX44AJZKPEUWHF3H.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DX44AJZKPEUWHF3H.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "DX44AJZKPEUWHF3H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DX44AJZKPEUWHF3H.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "DX44AJZKPEUWHF3H.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DX44AJZKPEUWHF3H.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "DX44AJZKPEUWHF3H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DX44AJZKPEUWHF3H.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "DX44AJZKPEUWHF3H.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12958" - }, - "appliesTo" : [ ] - }, - "DX44AJZKPEUWHF3H.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "DX44AJZKPEUWHF3H.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DX44AJZKPEUWHF3H.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "DX44AJZKPEUWHF3H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DX44AJZKPEUWHF3H.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "DX44AJZKPEUWHF3H.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15398" - }, - "appliesTo" : [ ] - }, - "DX44AJZKPEUWHF3H.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "DX44AJZKPEUWHF3H.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DX44AJZKPEUWHF3H.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "DX44AJZKPEUWHF3H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DX44AJZKPEUWHF3H.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "DX44AJZKPEUWHF3H.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9955" - }, - "appliesTo" : [ ] - }, - "DX44AJZKPEUWHF3H.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "DX44AJZKPEUWHF3H.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DX44AJZKPEUWHF3H.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "DX44AJZKPEUWHF3H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DX44AJZKPEUWHF3H.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "DX44AJZKPEUWHF3H.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DX44AJZKPEUWHF3H.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "DX44AJZKPEUWHF3H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DX44AJZKPEUWHF3H.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "DX44AJZKPEUWHF3H.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DX44AJZKPEUWHF3H.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "DX44AJZKPEUWHF3H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DX44AJZKPEUWHF3H.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "DX44AJZKPEUWHF3H.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4464" - }, - "appliesTo" : [ ] - }, - "DX44AJZKPEUWHF3H.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "DX44AJZKPEUWHF3H.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DX44AJZKPEUWHF3H.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "DX44AJZKPEUWHF3H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DX44AJZKPEUWHF3H.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "DX44AJZKPEUWHF3H.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8694" - }, - "appliesTo" : [ ] - }, - "DX44AJZKPEUWHF3H.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "DX44AJZKPEUWHF3H.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DX44AJZKPEUWHF3H.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "DX44AJZKPEUWHF3H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DX44AJZKPEUWHF3H.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "DX44AJZKPEUWHF3H.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DX44AJZKPEUWHF3H.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "DX44AJZKPEUWHF3H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DX44AJZKPEUWHF3H.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "DX44AJZKPEUWHF3H.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2980000000" - }, - "appliesTo" : [ ] - }, - "DX44AJZKPEUWHF3H.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "DX44AJZKPEUWHF3H.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7854" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DX44AJZKPEUWHF3H.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "DX44AJZKPEUWHF3H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DX44AJZKPEUWHF3H.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "DX44AJZKPEUWHF3H.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5107" - }, - "appliesTo" : [ ] - }, - "DX44AJZKPEUWHF3H.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "DX44AJZKPEUWHF3H.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "FN8H3W6RA9EGGSDT" : { - "FN8H3W6RA9EGGSDT.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "FN8H3W6RA9EGGSDT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FN8H3W6RA9EGGSDT.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "FN8H3W6RA9EGGSDT.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3860" - }, - "appliesTo" : [ ] - }, - "FN8H3W6RA9EGGSDT.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "FN8H3W6RA9EGGSDT.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FN8H3W6RA9EGGSDT.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "FN8H3W6RA9EGGSDT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FN8H3W6RA9EGGSDT.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "FN8H3W6RA9EGGSDT.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4385" - }, - "appliesTo" : [ ] - }, - "FN8H3W6RA9EGGSDT.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "FN8H3W6RA9EGGSDT.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FN8H3W6RA9EGGSDT.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "FN8H3W6RA9EGGSDT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FN8H3W6RA9EGGSDT.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "FN8H3W6RA9EGGSDT.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4530" - }, - "appliesTo" : [ ] - }, - "FN8H3W6RA9EGGSDT.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "FN8H3W6RA9EGGSDT.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FN8H3W6RA9EGGSDT.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "FN8H3W6RA9EGGSDT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FN8H3W6RA9EGGSDT.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "FN8H3W6RA9EGGSDT.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1966" - }, - "appliesTo" : [ ] - }, - "FN8H3W6RA9EGGSDT.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "FN8H3W6RA9EGGSDT.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FN8H3W6RA9EGGSDT.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "FN8H3W6RA9EGGSDT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FN8H3W6RA9EGGSDT.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "FN8H3W6RA9EGGSDT.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7590" - }, - "appliesTo" : [ ] - }, - "FN8H3W6RA9EGGSDT.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "FN8H3W6RA9EGGSDT.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FN8H3W6RA9EGGSDT.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "FN8H3W6RA9EGGSDT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FN8H3W6RA9EGGSDT.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "FN8H3W6RA9EGGSDT.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FN8H3W6RA9EGGSDT.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "FN8H3W6RA9EGGSDT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FN8H3W6RA9EGGSDT.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "FN8H3W6RA9EGGSDT.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2234" - }, - "appliesTo" : [ ] - }, - "FN8H3W6RA9EGGSDT.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "FN8H3W6RA9EGGSDT.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FN8H3W6RA9EGGSDT.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "FN8H3W6RA9EGGSDT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FN8H3W6RA9EGGSDT.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "FN8H3W6RA9EGGSDT.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FN8H3W6RA9EGGSDT.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "FN8H3W6RA9EGGSDT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FN8H3W6RA9EGGSDT.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "FN8H3W6RA9EGGSDT.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1520000000" - }, - "appliesTo" : [ ] - }, - "FN8H3W6RA9EGGSDT.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "FN8H3W6RA9EGGSDT.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4003" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FN8H3W6RA9EGGSDT.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "FN8H3W6RA9EGGSDT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FN8H3W6RA9EGGSDT.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "FN8H3W6RA9EGGSDT.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8901" - }, - "appliesTo" : [ ] - }, - "FN8H3W6RA9EGGSDT.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "FN8H3W6RA9EGGSDT.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FN8H3W6RA9EGGSDT.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "FN8H3W6RA9EGGSDT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FN8H3W6RA9EGGSDT.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "FN8H3W6RA9EGGSDT.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FN8H3W6RA9EGGSDT.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "FN8H3W6RA9EGGSDT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FN8H3W6RA9EGGSDT.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "FN8H3W6RA9EGGSDT.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "YAJW34A4DJF7KS9G" : { - "YAJW34A4DJF7KS9G.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YAJW34A4DJF7KS9G", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YAJW34A4DJF7KS9G.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YAJW34A4DJF7KS9G.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5443" - }, - "appliesTo" : [ ] - }, - "YAJW34A4DJF7KS9G.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YAJW34A4DJF7KS9G.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YAJW34A4DJF7KS9G.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "YAJW34A4DJF7KS9G", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "YAJW34A4DJF7KS9G.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "YAJW34A4DJF7KS9G.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YAJW34A4DJF7KS9G.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "YAJW34A4DJF7KS9G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YAJW34A4DJF7KS9G.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "YAJW34A4DJF7KS9G.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3114" - }, - "appliesTo" : [ ] - }, - "YAJW34A4DJF7KS9G.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "YAJW34A4DJF7KS9G.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YAJW34A4DJF7KS9G.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YAJW34A4DJF7KS9G", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "YAJW34A4DJF7KS9G.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YAJW34A4DJF7KS9G.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YAJW34A4DJF7KS9G.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YAJW34A4DJF7KS9G", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YAJW34A4DJF7KS9G.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YAJW34A4DJF7KS9G.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3940000000" - }, - "appliesTo" : [ ] - }, - "YAJW34A4DJF7KS9G.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YAJW34A4DJF7KS9G.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2299" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YAJW34A4DJF7KS9G.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "YAJW34A4DJF7KS9G", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "YAJW34A4DJF7KS9G.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "YAJW34A4DJF7KS9G.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15971" - }, - "appliesTo" : [ ] - }, - "YAJW34A4DJF7KS9G.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "YAJW34A4DJF7KS9G.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YAJW34A4DJF7KS9G.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "YAJW34A4DJF7KS9G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YAJW34A4DJF7KS9G.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "YAJW34A4DJF7KS9G.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6154" - }, - "appliesTo" : [ ] - }, - "YAJW34A4DJF7KS9G.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "YAJW34A4DJF7KS9G.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YAJW34A4DJF7KS9G.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "YAJW34A4DJF7KS9G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YAJW34A4DJF7KS9G.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "YAJW34A4DJF7KS9G.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YAJW34A4DJF7KS9G.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "YAJW34A4DJF7KS9G", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YAJW34A4DJF7KS9G.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "YAJW34A4DJF7KS9G.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6351" - }, - "appliesTo" : [ ] - }, - "YAJW34A4DJF7KS9G.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "YAJW34A4DJF7KS9G.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YAJW34A4DJF7KS9G.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YAJW34A4DJF7KS9G", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YAJW34A4DJF7KS9G.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YAJW34A4DJF7KS9G.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12799" - }, - "appliesTo" : [ ] - }, - "YAJW34A4DJF7KS9G.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YAJW34A4DJF7KS9G.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YAJW34A4DJF7KS9G.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YAJW34A4DJF7KS9G", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YAJW34A4DJF7KS9G.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YAJW34A4DJF7KS9G.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YAJW34A4DJF7KS9G.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YAJW34A4DJF7KS9G.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5635" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "24EZ2DK36FZ2REKT" : { - "24EZ2DK36FZ2REKT.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "24EZ2DK36FZ2REKT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "24EZ2DK36FZ2REKT.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "24EZ2DK36FZ2REKT.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "24EZ2DK36FZ2REKT.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "24EZ2DK36FZ2REKT.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "379160" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "24EZ2DK36FZ2REKT.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "24EZ2DK36FZ2REKT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "24EZ2DK36FZ2REKT.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "24EZ2DK36FZ2REKT.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "189836" - }, - "appliesTo" : [ ] - }, - "24EZ2DK36FZ2REKT.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "24EZ2DK36FZ2REKT.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.2236000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "24EZ2DK36FZ2REKT.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "24EZ2DK36FZ2REKT", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "24EZ2DK36FZ2REKT.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "24EZ2DK36FZ2REKT.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "188207" - }, - "appliesTo" : [ ] - }, - "24EZ2DK36FZ2REKT.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "24EZ2DK36FZ2REKT.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.1620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "24EZ2DK36FZ2REKT.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "24EZ2DK36FZ2REKT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "24EZ2DK36FZ2REKT.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "24EZ2DK36FZ2REKT.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.5252000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "24EZ2DK36FZ2REKT.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "24EZ2DK36FZ2REKT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "24EZ2DK36FZ2REKT.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "24EZ2DK36FZ2REKT.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "65455" - }, - "appliesTo" : [ ] - }, - "24EZ2DK36FZ2REKT.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "24EZ2DK36FZ2REKT.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "24EZ2DK36FZ2REKT.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "24EZ2DK36FZ2REKT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "24EZ2DK36FZ2REKT.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "24EZ2DK36FZ2REKT.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.8160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "24EZ2DK36FZ2REKT.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "24EZ2DK36FZ2REKT", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "24EZ2DK36FZ2REKT.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "24EZ2DK36FZ2REKT.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "64600" - }, - "appliesTo" : [ ] - }, - "24EZ2DK36FZ2REKT.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "24EZ2DK36FZ2REKT.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "24EZ2DK36FZ2REKT.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "24EZ2DK36FZ2REKT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "24EZ2DK36FZ2REKT.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "24EZ2DK36FZ2REKT.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.0176000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "24EZ2DK36FZ2REKT.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "24EZ2DK36FZ2REKT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "24EZ2DK36FZ2REKT.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "24EZ2DK36FZ2REKT.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "24EZ2DK36FZ2REKT.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "24EZ2DK36FZ2REKT.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "130651" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "24EZ2DK36FZ2REKT.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "24EZ2DK36FZ2REKT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "24EZ2DK36FZ2REKT.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "24EZ2DK36FZ2REKT.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.3878000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "24EZ2DK36FZ2REKT.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "24EZ2DK36FZ2REKT", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "24EZ2DK36FZ2REKT.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "24EZ2DK36FZ2REKT.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "375072" - }, - "appliesTo" : [ ] - }, - "24EZ2DK36FZ2REKT.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "24EZ2DK36FZ2REKT.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "24EZ2DK36FZ2REKT.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "24EZ2DK36FZ2REKT", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "24EZ2DK36FZ2REKT.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "24EZ2DK36FZ2REKT.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "128976" - }, - "appliesTo" : [ ] - }, - "24EZ2DK36FZ2REKT.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "24EZ2DK36FZ2REKT.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "WHSMTPG2EQZT7C6G" : { - "WHSMTPG2EQZT7C6G.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "WHSMTPG2EQZT7C6G", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "WHSMTPG2EQZT7C6G.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "WHSMTPG2EQZT7C6G.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16601" - }, - "appliesTo" : [ ] - }, - "WHSMTPG2EQZT7C6G.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "WHSMTPG2EQZT7C6G.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WHSMTPG2EQZT7C6G.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "WHSMTPG2EQZT7C6G", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "WHSMTPG2EQZT7C6G.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "WHSMTPG2EQZT7C6G.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4469" - }, - "appliesTo" : [ ] - }, - "WHSMTPG2EQZT7C6G.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "WHSMTPG2EQZT7C6G.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WHSMTPG2EQZT7C6G.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "WHSMTPG2EQZT7C6G", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "WHSMTPG2EQZT7C6G.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "WHSMTPG2EQZT7C6G.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "WHSMTPG2EQZT7C6G.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "WHSMTPG2EQZT7C6G", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "WHSMTPG2EQZT7C6G.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "WHSMTPG2EQZT7C6G.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7746" - }, - "appliesTo" : [ ] - }, - "WHSMTPG2EQZT7C6G.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "WHSMTPG2EQZT7C6G.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WHSMTPG2EQZT7C6G.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "WHSMTPG2EQZT7C6G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WHSMTPG2EQZT7C6G.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "WHSMTPG2EQZT7C6G.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2801" - }, - "appliesTo" : [ ] - }, - "WHSMTPG2EQZT7C6G.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "WHSMTPG2EQZT7C6G.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WHSMTPG2EQZT7C6G.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "WHSMTPG2EQZT7C6G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WHSMTPG2EQZT7C6G.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "WHSMTPG2EQZT7C6G.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WHSMTPG2EQZT7C6G.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "WHSMTPG2EQZT7C6G", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "WHSMTPG2EQZT7C6G.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "WHSMTPG2EQZT7C6G.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "WHSMTPG2EQZT7C6G.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "WHSMTPG2EQZT7C6G.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6012" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WHSMTPG2EQZT7C6G.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "WHSMTPG2EQZT7C6G", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "WHSMTPG2EQZT7C6G.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "WHSMTPG2EQZT7C6G.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2869" - }, - "appliesTo" : [ ] - }, - "WHSMTPG2EQZT7C6G.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "WHSMTPG2EQZT7C6G.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WHSMTPG2EQZT7C6G.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "WHSMTPG2EQZT7C6G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WHSMTPG2EQZT7C6G.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "WHSMTPG2EQZT7C6G.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6630" - }, - "appliesTo" : [ ] - }, - "WHSMTPG2EQZT7C6G.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "WHSMTPG2EQZT7C6G.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WHSMTPG2EQZT7C6G.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "WHSMTPG2EQZT7C6G", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "WHSMTPG2EQZT7C6G.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "WHSMTPG2EQZT7C6G.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WHSMTPG2EQZT7C6G.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "WHSMTPG2EQZT7C6G", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "WHSMTPG2EQZT7C6G.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "WHSMTPG2EQZT7C6G.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12624" - }, - "appliesTo" : [ ] - }, - "WHSMTPG2EQZT7C6G.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "WHSMTPG2EQZT7C6G.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "QW4FHUGEZYB74TW8" : { - "QW4FHUGEZYB74TW8.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "QW4FHUGEZYB74TW8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QW4FHUGEZYB74TW8.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "QW4FHUGEZYB74TW8.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QW4FHUGEZYB74TW8.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QW4FHUGEZYB74TW8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QW4FHUGEZYB74TW8.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QW4FHUGEZYB74TW8.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3467" - }, - "appliesTo" : [ ] - }, - "QW4FHUGEZYB74TW8.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QW4FHUGEZYB74TW8.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QW4FHUGEZYB74TW8.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QW4FHUGEZYB74TW8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QW4FHUGEZYB74TW8.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QW4FHUGEZYB74TW8.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6518" - }, - "appliesTo" : [ ] - }, - "QW4FHUGEZYB74TW8.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QW4FHUGEZYB74TW8.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QW4FHUGEZYB74TW8.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "QW4FHUGEZYB74TW8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QW4FHUGEZYB74TW8.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "QW4FHUGEZYB74TW8.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1520000000" - }, - "appliesTo" : [ ] - }, - "QW4FHUGEZYB74TW8.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "QW4FHUGEZYB74TW8.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3994" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QW4FHUGEZYB74TW8.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QW4FHUGEZYB74TW8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QW4FHUGEZYB74TW8.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QW4FHUGEZYB74TW8.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3503" - }, - "appliesTo" : [ ] - }, - "QW4FHUGEZYB74TW8.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QW4FHUGEZYB74TW8.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QW4FHUGEZYB74TW8.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "QW4FHUGEZYB74TW8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QW4FHUGEZYB74TW8.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "QW4FHUGEZYB74TW8.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2055" - }, - "appliesTo" : [ ] - }, - "QW4FHUGEZYB74TW8.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "QW4FHUGEZYB74TW8.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QW4FHUGEZYB74TW8.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QW4FHUGEZYB74TW8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QW4FHUGEZYB74TW8.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QW4FHUGEZYB74TW8.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QW4FHUGEZYB74TW8.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "QW4FHUGEZYB74TW8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QW4FHUGEZYB74TW8.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "QW4FHUGEZYB74TW8.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QW4FHUGEZYB74TW8.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "QW4FHUGEZYB74TW8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QW4FHUGEZYB74TW8.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "QW4FHUGEZYB74TW8.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7828" - }, - "appliesTo" : [ ] - }, - "QW4FHUGEZYB74TW8.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "QW4FHUGEZYB74TW8.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QW4FHUGEZYB74TW8.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QW4FHUGEZYB74TW8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QW4FHUGEZYB74TW8.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QW4FHUGEZYB74TW8.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1787" - }, - "appliesTo" : [ ] - }, - "QW4FHUGEZYB74TW8.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QW4FHUGEZYB74TW8.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QW4FHUGEZYB74TW8.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "QW4FHUGEZYB74TW8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QW4FHUGEZYB74TW8.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "QW4FHUGEZYB74TW8.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QW4FHUGEZYB74TW8.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "QW4FHUGEZYB74TW8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QW4FHUGEZYB74TW8.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "QW4FHUGEZYB74TW8.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4028" - }, - "appliesTo" : [ ] - }, - "QW4FHUGEZYB74TW8.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "QW4FHUGEZYB74TW8.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "YVR4R7XCGTF5BWVS" : { - "YVR4R7XCGTF5BWVS.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YVR4R7XCGTF5BWVS", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YVR4R7XCGTF5BWVS.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YVR4R7XCGTF5BWVS.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YVR4R7XCGTF5BWVS.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YVR4R7XCGTF5BWVS.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13953" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YVR4R7XCGTF5BWVS.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YVR4R7XCGTF5BWVS", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YVR4R7XCGTF5BWVS.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YVR4R7XCGTF5BWVS.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YVR4R7XCGTF5BWVS.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YVR4R7XCGTF5BWVS", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YVR4R7XCGTF5BWVS.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YVR4R7XCGTF5BWVS.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2188" - }, - "appliesTo" : [ ] - }, - "YVR4R7XCGTF5BWVS.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YVR4R7XCGTF5BWVS.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YVR4R7XCGTF5BWVS.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YVR4R7XCGTF5BWVS", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YVR4R7XCGTF5BWVS.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YVR4R7XCGTF5BWVS.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YVR4R7XCGTF5BWVS.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YVR4R7XCGTF5BWVS.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5364" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YVR4R7XCGTF5BWVS.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YVR4R7XCGTF5BWVS", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "YVR4R7XCGTF5BWVS.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YVR4R7XCGTF5BWVS.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3390000000" - }, - "appliesTo" : [ ] - }, - "YVR4R7XCGTF5BWVS.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YVR4R7XCGTF5BWVS.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5940" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "DN4D2SAMCUHNKK2B" : { - "DN4D2SAMCUHNKK2B.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "DN4D2SAMCUHNKK2B", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "DN4D2SAMCUHNKK2B.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "DN4D2SAMCUHNKK2B.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DN4D2SAMCUHNKK2B.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "DN4D2SAMCUHNKK2B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DN4D2SAMCUHNKK2B.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "DN4D2SAMCUHNKK2B.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6836" - }, - "appliesTo" : [ ] - }, - "DN4D2SAMCUHNKK2B.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "DN4D2SAMCUHNKK2B.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7804000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DN4D2SAMCUHNKK2B.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "DN4D2SAMCUHNKK2B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DN4D2SAMCUHNKK2B.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "DN4D2SAMCUHNKK2B.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5879000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DN4D2SAMCUHNKK2B.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "DN4D2SAMCUHNKK2B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DN4D2SAMCUHNKK2B.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "DN4D2SAMCUHNKK2B.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13578" - }, - "appliesTo" : [ ] - }, - "DN4D2SAMCUHNKK2B.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "DN4D2SAMCUHNKK2B.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DN4D2SAMCUHNKK2B.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "DN4D2SAMCUHNKK2B", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DN4D2SAMCUHNKK2B.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "DN4D2SAMCUHNKK2B.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28942" - }, - "appliesTo" : [ ] - }, - "DN4D2SAMCUHNKK2B.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "DN4D2SAMCUHNKK2B.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DN4D2SAMCUHNKK2B.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "DN4D2SAMCUHNKK2B", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DN4D2SAMCUHNKK2B.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "DN4D2SAMCUHNKK2B.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DN4D2SAMCUHNKK2B.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "DN4D2SAMCUHNKK2B", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "DN4D2SAMCUHNKK2B.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "DN4D2SAMCUHNKK2B.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5168" - }, - "appliesTo" : [ ] - }, - "DN4D2SAMCUHNKK2B.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "DN4D2SAMCUHNKK2B.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DN4D2SAMCUHNKK2B.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "DN4D2SAMCUHNKK2B", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DN4D2SAMCUHNKK2B.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "DN4D2SAMCUHNKK2B.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DN4D2SAMCUHNKK2B.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "DN4D2SAMCUHNKK2B", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "DN4D2SAMCUHNKK2B.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "DN4D2SAMCUHNKK2B.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14765" - }, - "appliesTo" : [ ] - }, - "DN4D2SAMCUHNKK2B.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "DN4D2SAMCUHNKK2B.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DN4D2SAMCUHNKK2B.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "DN4D2SAMCUHNKK2B", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "DN4D2SAMCUHNKK2B.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "DN4D2SAMCUHNKK2B.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12982" - }, - "appliesTo" : [ ] - }, - "DN4D2SAMCUHNKK2B.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "DN4D2SAMCUHNKK2B.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DN4D2SAMCUHNKK2B.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "DN4D2SAMCUHNKK2B", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DN4D2SAMCUHNKK2B.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "DN4D2SAMCUHNKK2B.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "DN4D2SAMCUHNKK2B.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "DN4D2SAMCUHNKK2B.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24406" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DN4D2SAMCUHNKK2B.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "DN4D2SAMCUHNKK2B", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DN4D2SAMCUHNKK2B.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "DN4D2SAMCUHNKK2B.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "DN4D2SAMCUHNKK2B.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "DN4D2SAMCUHNKK2B.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10130" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "PH8HDZXB5PCGB9JY" : { - "PH8HDZXB5PCGB9JY.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "PH8HDZXB5PCGB9JY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PH8HDZXB5PCGB9JY.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "PH8HDZXB5PCGB9JY.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11024" - }, - "appliesTo" : [ ] - }, - "PH8HDZXB5PCGB9JY.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "PH8HDZXB5PCGB9JY.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PH8HDZXB5PCGB9JY.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "PH8HDZXB5PCGB9JY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PH8HDZXB5PCGB9JY.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "PH8HDZXB5PCGB9JY.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "PH8HDZXB5PCGB9JY.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "PH8HDZXB5PCGB9JY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PH8HDZXB5PCGB9JY.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "PH8HDZXB5PCGB9JY.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5590000000" - }, - "appliesTo" : [ ] - }, - "PH8HDZXB5PCGB9JY.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "PH8HDZXB5PCGB9JY.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14704" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PH8HDZXB5PCGB9JY.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "PH8HDZXB5PCGB9JY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PH8HDZXB5PCGB9JY.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "PH8HDZXB5PCGB9JY.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33044" - }, - "appliesTo" : [ ] - }, - "PH8HDZXB5PCGB9JY.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "PH8HDZXB5PCGB9JY.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PH8HDZXB5PCGB9JY.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "PH8HDZXB5PCGB9JY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PH8HDZXB5PCGB9JY.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "PH8HDZXB5PCGB9JY.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16857" - }, - "appliesTo" : [ ] - }, - "PH8HDZXB5PCGB9JY.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "PH8HDZXB5PCGB9JY.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PH8HDZXB5PCGB9JY.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "PH8HDZXB5PCGB9JY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PH8HDZXB5PCGB9JY.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "PH8HDZXB5PCGB9JY.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "PH8HDZXB5PCGB9JY.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "PH8HDZXB5PCGB9JY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PH8HDZXB5PCGB9JY.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "PH8HDZXB5PCGB9JY.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "PH8HDZXB5PCGB9JY.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "PH8HDZXB5PCGB9JY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PH8HDZXB5PCGB9JY.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "PH8HDZXB5PCGB9JY.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9609" - }, - "appliesTo" : [ ] - }, - "PH8HDZXB5PCGB9JY.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "PH8HDZXB5PCGB9JY.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PH8HDZXB5PCGB9JY.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "PH8HDZXB5PCGB9JY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PH8HDZXB5PCGB9JY.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "PH8HDZXB5PCGB9JY.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21552" - }, - "appliesTo" : [ ] - }, - "PH8HDZXB5PCGB9JY.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "PH8HDZXB5PCGB9JY.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PH8HDZXB5PCGB9JY.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "PH8HDZXB5PCGB9JY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PH8HDZXB5PCGB9JY.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "PH8HDZXB5PCGB9JY.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18779" - }, - "appliesTo" : [ ] - }, - "PH8HDZXB5PCGB9JY.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "PH8HDZXB5PCGB9JY.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PH8HDZXB5PCGB9JY.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "PH8HDZXB5PCGB9JY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PH8HDZXB5PCGB9JY.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "PH8HDZXB5PCGB9JY.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27676" - }, - "appliesTo" : [ ] - }, - "PH8HDZXB5PCGB9JY.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "PH8HDZXB5PCGB9JY.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PH8HDZXB5PCGB9JY.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "PH8HDZXB5PCGB9JY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PH8HDZXB5PCGB9JY.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "PH8HDZXB5PCGB9JY.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "M585C29WB3HB866B" : { - "M585C29WB3HB866B.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "M585C29WB3HB866B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M585C29WB3HB866B.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "M585C29WB3HB866B.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0920000000" - }, - "appliesTo" : [ ] - }, - "M585C29WB3HB866B.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "M585C29WB3HB866B.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28704" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "M585C29WB3HB866B.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "M585C29WB3HB866B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M585C29WB3HB866B.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "M585C29WB3HB866B.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "M585C29WB3HB866B.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "M585C29WB3HB866B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M585C29WB3HB866B.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "M585C29WB3HB866B.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33010" - }, - "appliesTo" : [ ] - }, - "M585C29WB3HB866B.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "M585C29WB3HB866B.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "M585C29WB3HB866B.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "M585C29WB3HB866B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M585C29WB3HB866B.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "M585C29WB3HB866B.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "42524" - }, - "appliesTo" : [ ] - }, - "M585C29WB3HB866B.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "M585C29WB3HB866B.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "M585C29WB3HB866B.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "M585C29WB3HB866B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M585C29WB3HB866B.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "M585C29WB3HB866B.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "M585C29WB3HB866B.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "M585C29WB3HB866B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M585C29WB3HB866B.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "M585C29WB3HB866B.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "M585C29WB3HB866B.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "M585C29WB3HB866B.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "53964" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "M585C29WB3HB866B.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "M585C29WB3HB866B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M585C29WB3HB866B.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "M585C29WB3HB866B.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "64699" - }, - "appliesTo" : [ ] - }, - "M585C29WB3HB866B.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "M585C29WB3HB866B.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "M585C29WB3HB866B.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "M585C29WB3HB866B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M585C29WB3HB866B.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "M585C29WB3HB866B.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "M585C29WB3HB866B.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "M585C29WB3HB866B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M585C29WB3HB866B.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "M585C29WB3HB866B.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18866" - }, - "appliesTo" : [ ] - }, - "M585C29WB3HB866B.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "M585C29WB3HB866B.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "M585C29WB3HB866B.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "M585C29WB3HB866B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M585C29WB3HB866B.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "M585C29WB3HB866B.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "36978" - }, - "appliesTo" : [ ] - }, - "M585C29WB3HB866B.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "M585C29WB3HB866B.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "M585C29WB3HB866B.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "M585C29WB3HB866B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M585C29WB3HB866B.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "M585C29WB3HB866B.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4770000000" - }, - "appliesTo" : [ ] - }, - "M585C29WB3HB866B.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "M585C29WB3HB866B.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21696" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "M585C29WB3HB866B.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "M585C29WB3HB866B", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M585C29WB3HB866B.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "M585C29WB3HB866B.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.2010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "CR9BJ8YMV2HGWRBH" : { - "CR9BJ8YMV2HGWRBH.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "CR9BJ8YMV2HGWRBH", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "CR9BJ8YMV2HGWRBH.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "CR9BJ8YMV2HGWRBH.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2740" - }, - "appliesTo" : [ ] - }, - "CR9BJ8YMV2HGWRBH.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "CR9BJ8YMV2HGWRBH.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CR9BJ8YMV2HGWRBH.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "CR9BJ8YMV2HGWRBH", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "CR9BJ8YMV2HGWRBH.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "CR9BJ8YMV2HGWRBH.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1600000000" - }, - "appliesTo" : [ ] - }, - "CR9BJ8YMV2HGWRBH.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "CR9BJ8YMV2HGWRBH.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1398" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CR9BJ8YMV2HGWRBH.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "CR9BJ8YMV2HGWRBH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CR9BJ8YMV2HGWRBH.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "CR9BJ8YMV2HGWRBH.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2633000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CR9BJ8YMV2HGWRBH.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "CR9BJ8YMV2HGWRBH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CR9BJ8YMV2HGWRBH.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "CR9BJ8YMV2HGWRBH.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3204" - }, - "appliesTo" : [ ] - }, - "CR9BJ8YMV2HGWRBH.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "CR9BJ8YMV2HGWRBH.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1219000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CR9BJ8YMV2HGWRBH.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "CR9BJ8YMV2HGWRBH", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "CR9BJ8YMV2HGWRBH.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "CR9BJ8YMV2HGWRBH.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5257" - }, - "appliesTo" : [ ] - }, - "CR9BJ8YMV2HGWRBH.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "CR9BJ8YMV2HGWRBH.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CR9BJ8YMV2HGWRBH.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "CR9BJ8YMV2HGWRBH", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "CR9BJ8YMV2HGWRBH.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "CR9BJ8YMV2HGWRBH.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2796" - }, - "appliesTo" : [ ] - }, - "CR9BJ8YMV2HGWRBH.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "CR9BJ8YMV2HGWRBH.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CR9BJ8YMV2HGWRBH.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "CR9BJ8YMV2HGWRBH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CR9BJ8YMV2HGWRBH.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "CR9BJ8YMV2HGWRBH.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CR9BJ8YMV2HGWRBH.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "CR9BJ8YMV2HGWRBH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CR9BJ8YMV2HGWRBH.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "CR9BJ8YMV2HGWRBH.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3864000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CR9BJ8YMV2HGWRBH.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "CR9BJ8YMV2HGWRBH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CR9BJ8YMV2HGWRBH.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "CR9BJ8YMV2HGWRBH.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3159" - }, - "appliesTo" : [ ] - }, - "CR9BJ8YMV2HGWRBH.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "CR9BJ8YMV2HGWRBH.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CR9BJ8YMV2HGWRBH.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "CR9BJ8YMV2HGWRBH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CR9BJ8YMV2HGWRBH.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "CR9BJ8YMV2HGWRBH.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1840000000" - }, - "appliesTo" : [ ] - }, - "CR9BJ8YMV2HGWRBH.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "CR9BJ8YMV2HGWRBH.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1612" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CR9BJ8YMV2HGWRBH.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "CR9BJ8YMV2HGWRBH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CR9BJ8YMV2HGWRBH.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "CR9BJ8YMV2HGWRBH.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "CR9BJ8YMV2HGWRBH.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "CR9BJ8YMV2HGWRBH.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6279" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CR9BJ8YMV2HGWRBH.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "CR9BJ8YMV2HGWRBH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CR9BJ8YMV2HGWRBH.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "CR9BJ8YMV2HGWRBH.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "R785FVDGR7QSRRKB" : { - "R785FVDGR7QSRRKB.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "R785FVDGR7QSRRKB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R785FVDGR7QSRRKB.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "R785FVDGR7QSRRKB.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "142244" - }, - "appliesTo" : [ ] - }, - "R785FVDGR7QSRRKB.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "R785FVDGR7QSRRKB.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "R785FVDGR7QSRRKB.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "R785FVDGR7QSRRKB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "R785FVDGR7QSRRKB.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "R785FVDGR7QSRRKB.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "209063" - }, - "appliesTo" : [ ] - }, - "R785FVDGR7QSRRKB.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "R785FVDGR7QSRRKB.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.9550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "R785FVDGR7QSRRKB.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "R785FVDGR7QSRRKB", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "R785FVDGR7QSRRKB.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "R785FVDGR7QSRRKB.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "70846" - }, - "appliesTo" : [ ] - }, - "R785FVDGR7QSRRKB.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "R785FVDGR7QSRRKB.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.0870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "R785FVDGR7QSRRKB.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "R785FVDGR7QSRRKB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "R785FVDGR7QSRRKB.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "R785FVDGR7QSRRKB.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "417729" - }, - "appliesTo" : [ ] - }, - "R785FVDGR7QSRRKB.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "R785FVDGR7QSRRKB.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "R785FVDGR7QSRRKB.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "R785FVDGR7QSRRKB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "R785FVDGR7QSRRKB.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "R785FVDGR7QSRRKB.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.8640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "R785FVDGR7QSRRKB.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "R785FVDGR7QSRRKB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R785FVDGR7QSRRKB.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "R785FVDGR7QSRRKB.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.1300000000" - }, - "appliesTo" : [ ] - }, - "R785FVDGR7QSRRKB.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "R785FVDGR7QSRRKB.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "71219" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "R785FVDGR7QSRRKB.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "R785FVDGR7QSRRKB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "R785FVDGR7QSRRKB.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "R785FVDGR7QSRRKB.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.1640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "R785FVDGR7QSRRKB.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "R785FVDGR7QSRRKB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R785FVDGR7QSRRKB.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "R785FVDGR7QSRRKB.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.3150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "R785FVDGR7QSRRKB.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "R785FVDGR7QSRRKB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "R785FVDGR7QSRRKB.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "R785FVDGR7QSRRKB.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.9080000000" - }, - "appliesTo" : [ ] - }, - "R785FVDGR7QSRRKB.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "R785FVDGR7QSRRKB.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "207835" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "R785FVDGR7QSRRKB.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "R785FVDGR7QSRRKB", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "R785FVDGR7QSRRKB.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "R785FVDGR7QSRRKB.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "R785FVDGR7QSRRKB.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "R785FVDGR7QSRRKB.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "414628" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "R785FVDGR7QSRRKB.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "R785FVDGR7QSRRKB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "R785FVDGR7QSRRKB.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "R785FVDGR7QSRRKB.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.9710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "R785FVDGR7QSRRKB.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "R785FVDGR7QSRRKB", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "R785FVDGR7QSRRKB.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "R785FVDGR7QSRRKB.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "R785FVDGR7QSRRKB.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "R785FVDGR7QSRRKB.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "141514" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "B29HW84ZHNQH6MAR" : { - "B29HW84ZHNQH6MAR.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "B29HW84ZHNQH6MAR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "B29HW84ZHNQH6MAR.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "B29HW84ZHNQH6MAR.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "146669" - }, - "appliesTo" : [ ] - }, - "B29HW84ZHNQH6MAR.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "B29HW84ZHNQH6MAR.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "B29HW84ZHNQH6MAR.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "B29HW84ZHNQH6MAR", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "B29HW84ZHNQH6MAR.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "B29HW84ZHNQH6MAR.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "71727" - }, - "appliesTo" : [ ] - }, - "B29HW84ZHNQH6MAR.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "B29HW84ZHNQH6MAR.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.1880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "B29HW84ZHNQH6MAR.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "B29HW84ZHNQH6MAR", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "B29HW84ZHNQH6MAR.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "B29HW84ZHNQH6MAR.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "421358" - }, - "appliesTo" : [ ] - }, - "B29HW84ZHNQH6MAR.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "B29HW84ZHNQH6MAR.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "B29HW84ZHNQH6MAR.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "B29HW84ZHNQH6MAR", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "B29HW84ZHNQH6MAR.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "B29HW84ZHNQH6MAR.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.8700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "B29HW84ZHNQH6MAR.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "B29HW84ZHNQH6MAR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "B29HW84ZHNQH6MAR.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "B29HW84ZHNQH6MAR.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "73627" - }, - "appliesTo" : [ ] - }, - "B29HW84ZHNQH6MAR.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "B29HW84ZHNQH6MAR.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.4050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "B29HW84ZHNQH6MAR.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "B29HW84ZHNQH6MAR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "B29HW84ZHNQH6MAR.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "B29HW84ZHNQH6MAR.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.9770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "B29HW84ZHNQH6MAR.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "B29HW84ZHNQH6MAR", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "B29HW84ZHNQH6MAR.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "B29HW84ZHNQH6MAR.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.5300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "B29HW84ZHNQH6MAR.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "B29HW84ZHNQH6MAR", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "B29HW84ZHNQH6MAR.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "B29HW84ZHNQH6MAR.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "211366" - }, - "appliesTo" : [ ] - }, - "B29HW84ZHNQH6MAR.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "B29HW84ZHNQH6MAR.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.0430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "B29HW84ZHNQH6MAR.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "B29HW84ZHNQH6MAR", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "B29HW84ZHNQH6MAR.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "B29HW84ZHNQH6MAR.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.6350000000" - }, - "appliesTo" : [ ] - }, - "B29HW84ZHNQH6MAR.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "B29HW84ZHNQH6MAR.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "200649" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "B29HW84ZHNQH6MAR.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "B29HW84ZHNQH6MAR", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "B29HW84ZHNQH6MAR.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "B29HW84ZHNQH6MAR.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "142946" - }, - "appliesTo" : [ ] - }, - "B29HW84ZHNQH6MAR.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "B29HW84ZHNQH6MAR.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "B29HW84ZHNQH6MAR.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "B29HW84ZHNQH6MAR", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "B29HW84ZHNQH6MAR.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "B29HW84ZHNQH6MAR.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "B29HW84ZHNQH6MAR.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "B29HW84ZHNQH6MAR.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "398463" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "SCK4YS7YAEFFVGNK" : { - "SCK4YS7YAEFFVGNK.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "SCK4YS7YAEFFVGNK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SCK4YS7YAEFFVGNK.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "SCK4YS7YAEFFVGNK.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "56043" - }, - "appliesTo" : [ ] - }, - "SCK4YS7YAEFFVGNK.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "SCK4YS7YAEFFVGNK.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.3976000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SCK4YS7YAEFFVGNK.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "SCK4YS7YAEFFVGNK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SCK4YS7YAEFFVGNK.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "SCK4YS7YAEFFVGNK.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.9038000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SCK4YS7YAEFFVGNK.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "SCK4YS7YAEFFVGNK", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "SCK4YS7YAEFFVGNK.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "SCK4YS7YAEFFVGNK.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.0064000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SCK4YS7YAEFFVGNK.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "SCK4YS7YAEFFVGNK", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "SCK4YS7YAEFFVGNK.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "SCK4YS7YAEFFVGNK.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "317109" - }, - "appliesTo" : [ ] - }, - "SCK4YS7YAEFFVGNK.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "SCK4YS7YAEFFVGNK.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SCK4YS7YAEFFVGNK.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SCK4YS7YAEFFVGNK", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "SCK4YS7YAEFFVGNK.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SCK4YS7YAEFFVGNK.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.6064000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SCK4YS7YAEFFVGNK.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "SCK4YS7YAEFFVGNK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SCK4YS7YAEFFVGNK.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "SCK4YS7YAEFFVGNK.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "111706" - }, - "appliesTo" : [ ] - }, - "SCK4YS7YAEFFVGNK.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "SCK4YS7YAEFFVGNK.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SCK4YS7YAEFFVGNK.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SCK4YS7YAEFFVGNK", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "SCK4YS7YAEFFVGNK.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SCK4YS7YAEFFVGNK.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.2560000000" - }, - "appliesTo" : [ ] - }, - "SCK4YS7YAEFFVGNK.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SCK4YS7YAEFFVGNK.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "54803" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SCK4YS7YAEFFVGNK.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SCK4YS7YAEFFVGNK", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "SCK4YS7YAEFFVGNK.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SCK4YS7YAEFFVGNK.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SCK4YS7YAEFFVGNK.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SCK4YS7YAEFFVGNK.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "109274" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SCK4YS7YAEFFVGNK.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "SCK4YS7YAEFFVGNK", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "SCK4YS7YAEFFVGNK.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "SCK4YS7YAEFFVGNK.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.2138000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SCK4YS7YAEFFVGNK.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "SCK4YS7YAEFFVGNK", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "SCK4YS7YAEFFVGNK.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "SCK4YS7YAEFFVGNK.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "158941" - }, - "appliesTo" : [ ] - }, - "SCK4YS7YAEFFVGNK.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "SCK4YS7YAEFFVGNK.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.0480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SCK4YS7YAEFFVGNK.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SCK4YS7YAEFFVGNK", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "SCK4YS7YAEFFVGNK.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SCK4YS7YAEFFVGNK.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SCK4YS7YAEFFVGNK.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SCK4YS7YAEFFVGNK.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "306635" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SCK4YS7YAEFFVGNK.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SCK4YS7YAEFFVGNK", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "SCK4YS7YAEFFVGNK.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SCK4YS7YAEFFVGNK.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.9520000000" - }, - "appliesTo" : [ ] - }, - "SCK4YS7YAEFFVGNK.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SCK4YS7YAEFFVGNK.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "156419" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "FYP43BRDNQ66J7E7" : { - "FYP43BRDNQ66J7E7.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "FYP43BRDNQ66J7E7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FYP43BRDNQ66J7E7.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "FYP43BRDNQ66J7E7.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "62.1070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FYP43BRDNQ66J7E7.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "FYP43BRDNQ66J7E7", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "FYP43BRDNQ66J7E7.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "FYP43BRDNQ66J7E7.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "760254" - }, - "appliesTo" : [ ] - }, - "FYP43BRDNQ66J7E7.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "FYP43BRDNQ66J7E7.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "28.9290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FYP43BRDNQ66J7E7.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "FYP43BRDNQ66J7E7", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "FYP43BRDNQ66J7E7.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "FYP43BRDNQ66J7E7.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1514248" - }, - "appliesTo" : [ ] - }, - "FYP43BRDNQ66J7E7.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "FYP43BRDNQ66J7E7.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FYP43BRDNQ66J7E7.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "FYP43BRDNQ66J7E7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FYP43BRDNQ66J7E7.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "FYP43BRDNQ66J7E7.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "58.8190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FYP43BRDNQ66J7E7.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "FYP43BRDNQ66J7E7", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "FYP43BRDNQ66J7E7.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "FYP43BRDNQ66J7E7.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "FYP43BRDNQ66J7E7.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "FYP43BRDNQ66J7E7.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "539261" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FYP43BRDNQ66J7E7.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "FYP43BRDNQ66J7E7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FYP43BRDNQ66J7E7.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "FYP43BRDNQ66J7E7.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "549340" - }, - "appliesTo" : [ ] - }, - "FYP43BRDNQ66J7E7.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "FYP43BRDNQ66J7E7.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FYP43BRDNQ66J7E7.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "FYP43BRDNQ66J7E7", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "FYP43BRDNQ66J7E7.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "FYP43BRDNQ66J7E7.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "30.8580000000" - }, - "appliesTo" : [ ] - }, - "FYP43BRDNQ66J7E7.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "FYP43BRDNQ66J7E7.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "270316" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FYP43BRDNQ66J7E7.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "FYP43BRDNQ66J7E7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FYP43BRDNQ66J7E7.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "FYP43BRDNQ66J7E7.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "768079" - }, - "appliesTo" : [ ] - }, - "FYP43BRDNQ66J7E7.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "FYP43BRDNQ66J7E7.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "29.2270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FYP43BRDNQ66J7E7.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "FYP43BRDNQ66J7E7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FYP43BRDNQ66J7E7.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "FYP43BRDNQ66J7E7.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "58.1760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FYP43BRDNQ66J7E7.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "FYP43BRDNQ66J7E7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FYP43BRDNQ66J7E7.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "FYP43BRDNQ66J7E7.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1533757" - }, - "appliesTo" : [ ] - }, - "FYP43BRDNQ66J7E7.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "FYP43BRDNQ66J7E7.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FYP43BRDNQ66J7E7.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "FYP43BRDNQ66J7E7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FYP43BRDNQ66J7E7.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "FYP43BRDNQ66J7E7.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "63.3400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FYP43BRDNQ66J7E7.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "FYP43BRDNQ66J7E7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FYP43BRDNQ66J7E7.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "FYP43BRDNQ66J7E7.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "275459" - }, - "appliesTo" : [ ] - }, - "FYP43BRDNQ66J7E7.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "FYP43BRDNQ66J7E7.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "31.4450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "8QJEY5Y228R67A3N" : { - "8QJEY5Y228R67A3N.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "8QJEY5Y228R67A3N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8QJEY5Y228R67A3N.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "8QJEY5Y228R67A3N.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8QJEY5Y228R67A3N.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "8QJEY5Y228R67A3N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8QJEY5Y228R67A3N.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "8QJEY5Y228R67A3N.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17960" - }, - "appliesTo" : [ ] - }, - "8QJEY5Y228R67A3N.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "8QJEY5Y228R67A3N.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8QJEY5Y228R67A3N.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "8QJEY5Y228R67A3N", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8QJEY5Y228R67A3N.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "8QJEY5Y228R67A3N.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "89995" - }, - "appliesTo" : [ ] - }, - "8QJEY5Y228R67A3N.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "8QJEY5Y228R67A3N.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8QJEY5Y228R67A3N.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "8QJEY5Y228R67A3N", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8QJEY5Y228R67A3N.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "8QJEY5Y228R67A3N.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8QJEY5Y228R67A3N.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "8QJEY5Y228R67A3N", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8QJEY5Y228R67A3N.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "8QJEY5Y228R67A3N.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35559" - }, - "appliesTo" : [ ] - }, - "8QJEY5Y228R67A3N.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "8QJEY5Y228R67A3N.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8QJEY5Y228R67A3N.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "8QJEY5Y228R67A3N", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8QJEY5Y228R67A3N.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "8QJEY5Y228R67A3N.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8QJEY5Y228R67A3N.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "8QJEY5Y228R67A3N", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "8QJEY5Y228R67A3N.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "8QJEY5Y228R67A3N.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9100000000" - }, - "appliesTo" : [ ] - }, - "8QJEY5Y228R67A3N.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "8QJEY5Y228R67A3N.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16734" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8QJEY5Y228R67A3N.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "8QJEY5Y228R67A3N", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "8QJEY5Y228R67A3N.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "8QJEY5Y228R67A3N.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33156" - }, - "appliesTo" : [ ] - }, - "8QJEY5Y228R67A3N.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "8QJEY5Y228R67A3N.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8QJEY5Y228R67A3N.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "8QJEY5Y228R67A3N", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8QJEY5Y228R67A3N.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "8QJEY5Y228R67A3N.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8QJEY5Y228R67A3N.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "8QJEY5Y228R67A3N", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "8QJEY5Y228R67A3N.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "8QJEY5Y228R67A3N.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "84027" - }, - "appliesTo" : [ ] - }, - "8QJEY5Y228R67A3N.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "8QJEY5Y228R67A3N.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8QJEY5Y228R67A3N.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "8QJEY5Y228R67A3N", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8QJEY5Y228R67A3N.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "8QJEY5Y228R67A3N.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "45370" - }, - "appliesTo" : [ ] - }, - "8QJEY5Y228R67A3N.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "8QJEY5Y228R67A3N.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8QJEY5Y228R67A3N.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "8QJEY5Y228R67A3N", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "8QJEY5Y228R67A3N.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "8QJEY5Y228R67A3N.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "42988" - }, - "appliesTo" : [ ] - }, - "8QJEY5Y228R67A3N.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "8QJEY5Y228R67A3N.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "HUCWZ5CCHQU7EEQU" : { - "HUCWZ5CCHQU7EEQU.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "HUCWZ5CCHQU7EEQU", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "HUCWZ5CCHQU7EEQU.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "HUCWZ5CCHQU7EEQU.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.0770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "HUCWZ5CCHQU7EEQU.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "HUCWZ5CCHQU7EEQU", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "HUCWZ5CCHQU7EEQU.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "HUCWZ5CCHQU7EEQU.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "114975" - }, - "appliesTo" : [ ] - }, - "HUCWZ5CCHQU7EEQU.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "HUCWZ5CCHQU7EEQU.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HUCWZ5CCHQU7EEQU.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "HUCWZ5CCHQU7EEQU", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "HUCWZ5CCHQU7EEQU.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "HUCWZ5CCHQU7EEQU.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "55037" - }, - "appliesTo" : [ ] - }, - "HUCWZ5CCHQU7EEQU.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "HUCWZ5CCHQU7EEQU.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HUCWZ5CCHQU7EEQU.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "HUCWZ5CCHQU7EEQU", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "HUCWZ5CCHQU7EEQU.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "HUCWZ5CCHQU7EEQU.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "44592" - }, - "appliesTo" : [ ] - }, - "HUCWZ5CCHQU7EEQU.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "HUCWZ5CCHQU7EEQU.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HUCWZ5CCHQU7EEQU.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "HUCWZ5CCHQU7EEQU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "HUCWZ5CCHQU7EEQU.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "HUCWZ5CCHQU7EEQU.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25967" - }, - "appliesTo" : [ ] - }, - "HUCWZ5CCHQU7EEQU.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "HUCWZ5CCHQU7EEQU.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), cr1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "W22DG9FACE6C38MS" : { - "W22DG9FACE6C38MS.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "W22DG9FACE6C38MS", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "W22DG9FACE6C38MS.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "W22DG9FACE6C38MS.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "W22DG9FACE6C38MS.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "W22DG9FACE6C38MS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "W22DG9FACE6C38MS.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "W22DG9FACE6C38MS.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4505" - }, - "appliesTo" : [ ] - }, - "W22DG9FACE6C38MS.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "W22DG9FACE6C38MS.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "W22DG9FACE6C38MS.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "W22DG9FACE6C38MS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "W22DG9FACE6C38MS.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "W22DG9FACE6C38MS.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1561000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "W22DG9FACE6C38MS.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "W22DG9FACE6C38MS", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "W22DG9FACE6C38MS.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "W22DG9FACE6C38MS.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0910000000" - }, - "appliesTo" : [ ] - }, - "W22DG9FACE6C38MS.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "W22DG9FACE6C38MS.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "800" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "W22DG9FACE6C38MS.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "W22DG9FACE6C38MS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W22DG9FACE6C38MS.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "W22DG9FACE6C38MS.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2069" - }, - "appliesTo" : [ ] - }, - "W22DG9FACE6C38MS.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "W22DG9FACE6C38MS.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "W22DG9FACE6C38MS.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "W22DG9FACE6C38MS", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "W22DG9FACE6C38MS.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "W22DG9FACE6C38MS.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "W22DG9FACE6C38MS.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "W22DG9FACE6C38MS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W22DG9FACE6C38MS.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "W22DG9FACE6C38MS.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1041" - }, - "appliesTo" : [ ] - }, - "W22DG9FACE6C38MS.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "W22DG9FACE6C38MS.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1188000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "W22DG9FACE6C38MS.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "W22DG9FACE6C38MS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W22DG9FACE6C38MS.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "W22DG9FACE6C38MS.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2414000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "W22DG9FACE6C38MS.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "W22DG9FACE6C38MS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "W22DG9FACE6C38MS.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "W22DG9FACE6C38MS.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3858" - }, - "appliesTo" : [ ] - }, - "W22DG9FACE6C38MS.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "W22DG9FACE6C38MS.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "W22DG9FACE6C38MS.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "W22DG9FACE6C38MS", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "W22DG9FACE6C38MS.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "W22DG9FACE6C38MS.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1568" - }, - "appliesTo" : [ ] - }, - "W22DG9FACE6C38MS.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "W22DG9FACE6C38MS.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "W22DG9FACE6C38MS.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "W22DG9FACE6C38MS", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "W22DG9FACE6C38MS.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "W22DG9FACE6C38MS.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2052" - }, - "appliesTo" : [ ] - }, - "W22DG9FACE6C38MS.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "W22DG9FACE6C38MS.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "W22DG9FACE6C38MS.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "W22DG9FACE6C38MS", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "W22DG9FACE6C38MS.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "W22DG9FACE6C38MS.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2299" - }, - "appliesTo" : [ ] - }, - "W22DG9FACE6C38MS.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "W22DG9FACE6C38MS.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "7YAZRK59RPPWSKMN" : { - "7YAZRK59RPPWSKMN.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "7YAZRK59RPPWSKMN", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7YAZRK59RPPWSKMN.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "7YAZRK59RPPWSKMN.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1238" - }, - "appliesTo" : [ ] - }, - "7YAZRK59RPPWSKMN.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "7YAZRK59RPPWSKMN.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7YAZRK59RPPWSKMN.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "7YAZRK59RPPWSKMN", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7YAZRK59RPPWSKMN.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "7YAZRK59RPPWSKMN.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7YAZRK59RPPWSKMN.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "7YAZRK59RPPWSKMN", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7YAZRK59RPPWSKMN.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "7YAZRK59RPPWSKMN.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "795" - }, - "appliesTo" : [ ] - }, - "7YAZRK59RPPWSKMN.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "7YAZRK59RPPWSKMN.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7YAZRK59RPPWSKMN.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "7YAZRK59RPPWSKMN", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7YAZRK59RPPWSKMN.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "7YAZRK59RPPWSKMN.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1826" - }, - "appliesTo" : [ ] - }, - "7YAZRK59RPPWSKMN.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "7YAZRK59RPPWSKMN.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7YAZRK59RPPWSKMN.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "7YAZRK59RPPWSKMN", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "7YAZRK59RPPWSKMN.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "7YAZRK59RPPWSKMN.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3930" - }, - "appliesTo" : [ ] - }, - "7YAZRK59RPPWSKMN.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "7YAZRK59RPPWSKMN.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "VNX2EXRCP445NC9K" : { - "VNX2EXRCP445NC9K.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "VNX2EXRCP445NC9K", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VNX2EXRCP445NC9K.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "VNX2EXRCP445NC9K.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VNX2EXRCP445NC9K.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "VNX2EXRCP445NC9K", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VNX2EXRCP445NC9K.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "VNX2EXRCP445NC9K.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7990000000" - }, - "appliesTo" : [ ] - }, - "VNX2EXRCP445NC9K.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "VNX2EXRCP445NC9K.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14619" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VNX2EXRCP445NC9K.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "VNX2EXRCP445NC9K", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "VNX2EXRCP445NC9K.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "VNX2EXRCP445NC9K.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14560" - }, - "appliesTo" : [ ] - }, - "VNX2EXRCP445NC9K.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "VNX2EXRCP445NC9K.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VNX2EXRCP445NC9K.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "VNX2EXRCP445NC9K", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "VNX2EXRCP445NC9K.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "VNX2EXRCP445NC9K.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VNX2EXRCP445NC9K.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "VNX2EXRCP445NC9K", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "VNX2EXRCP445NC9K.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "VNX2EXRCP445NC9K.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39312" - }, - "appliesTo" : [ ] - }, - "VNX2EXRCP445NC9K.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "VNX2EXRCP445NC9K.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VNX2EXRCP445NC9K.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "VNX2EXRCP445NC9K", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "VNX2EXRCP445NC9K.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "VNX2EXRCP445NC9K.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VNX2EXRCP445NC9K.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "VNX2EXRCP445NC9K", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "VNX2EXRCP445NC9K.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "VNX2EXRCP445NC9K.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "VNX2EXRCP445NC9K.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "VNX2EXRCP445NC9K.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "45900" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VNX2EXRCP445NC9K.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "VNX2EXRCP445NC9K", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VNX2EXRCP445NC9K.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "VNX2EXRCP445NC9K.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29793" - }, - "appliesTo" : [ ] - }, - "VNX2EXRCP445NC9K.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "VNX2EXRCP445NC9K.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VNX2EXRCP445NC9K.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "VNX2EXRCP445NC9K", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "VNX2EXRCP445NC9K.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "VNX2EXRCP445NC9K.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "68859" - }, - "appliesTo" : [ ] - }, - "VNX2EXRCP445NC9K.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "VNX2EXRCP445NC9K.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VNX2EXRCP445NC9K.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "VNX2EXRCP445NC9K", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "VNX2EXRCP445NC9K.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "VNX2EXRCP445NC9K.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25446" - }, - "appliesTo" : [ ] - }, - "VNX2EXRCP445NC9K.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "VNX2EXRCP445NC9K.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VNX2EXRCP445NC9K.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "VNX2EXRCP445NC9K", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "VNX2EXRCP445NC9K.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "VNX2EXRCP445NC9K.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0240000000" - }, - "appliesTo" : [ ] - }, - "VNX2EXRCP445NC9K.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "VNX2EXRCP445NC9K.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21920" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "VQ9NZ966GW3FJN84" : { - "VQ9NZ966GW3FJN84.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "VQ9NZ966GW3FJN84", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VQ9NZ966GW3FJN84.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "VQ9NZ966GW3FJN84.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "63999" - }, - "appliesTo" : [ ] - }, - "VQ9NZ966GW3FJN84.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "VQ9NZ966GW3FJN84.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VQ9NZ966GW3FJN84.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "VQ9NZ966GW3FJN84", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "VQ9NZ966GW3FJN84.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "VQ9NZ966GW3FJN84.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "94503" - }, - "appliesTo" : [ ] - }, - "VQ9NZ966GW3FJN84.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "VQ9NZ966GW3FJN84.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VQ9NZ966GW3FJN84.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "VQ9NZ966GW3FJN84", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "VQ9NZ966GW3FJN84.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "VQ9NZ966GW3FJN84.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.2700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VQ9NZ966GW3FJN84.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "VQ9NZ966GW3FJN84", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "VQ9NZ966GW3FJN84.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "VQ9NZ966GW3FJN84.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "188767" - }, - "appliesTo" : [ ] - }, - "VQ9NZ966GW3FJN84.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "VQ9NZ966GW3FJN84.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VQ9NZ966GW3FJN84.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "VQ9NZ966GW3FJN84", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "VQ9NZ966GW3FJN84.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "VQ9NZ966GW3FJN84.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "63357" - }, - "appliesTo" : [ ] - }, - "VQ9NZ966GW3FJN84.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "VQ9NZ966GW3FJN84.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VQ9NZ966GW3FJN84.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "VQ9NZ966GW3FJN84", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "VQ9NZ966GW3FJN84.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "VQ9NZ966GW3FJN84.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "185288" - }, - "appliesTo" : [ ] - }, - "VQ9NZ966GW3FJN84.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "VQ9NZ966GW3FJN84.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VQ9NZ966GW3FJN84.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "VQ9NZ966GW3FJN84", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "VQ9NZ966GW3FJN84.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "VQ9NZ966GW3FJN84.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "92908" - }, - "appliesTo" : [ ] - }, - "VQ9NZ966GW3FJN84.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "VQ9NZ966GW3FJN84.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VQ9NZ966GW3FJN84.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "VQ9NZ966GW3FJN84", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VQ9NZ966GW3FJN84.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "VQ9NZ966GW3FJN84.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VQ9NZ966GW3FJN84.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "VQ9NZ966GW3FJN84", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VQ9NZ966GW3FJN84.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "VQ9NZ966GW3FJN84.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32050" - }, - "appliesTo" : [ ] - }, - "VQ9NZ966GW3FJN84.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "VQ9NZ966GW3FJN84.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VQ9NZ966GW3FJN84.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "VQ9NZ966GW3FJN84", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "VQ9NZ966GW3FJN84.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "VQ9NZ966GW3FJN84.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VQ9NZ966GW3FJN84.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "VQ9NZ966GW3FJN84", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "VQ9NZ966GW3FJN84.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "VQ9NZ966GW3FJN84.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31723" - }, - "appliesTo" : [ ] - }, - "VQ9NZ966GW3FJN84.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "VQ9NZ966GW3FJN84.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "D6YAK3JVF2VWSDJ9" : { - "D6YAK3JVF2VWSDJ9.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "D6YAK3JVF2VWSDJ9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "D6YAK3JVF2VWSDJ9.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "D6YAK3JVF2VWSDJ9.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "D6YAK3JVF2VWSDJ9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "D6YAK3JVF2VWSDJ9", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "D6YAK3JVF2VWSDJ9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "D6YAK3JVF2VWSDJ9.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "D6YAK3JVF2VWSDJ9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "D6YAK3JVF2VWSDJ9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "D6YAK3JVF2VWSDJ9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "D6YAK3JVF2VWSDJ9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "477" - }, - "appliesTo" : [ ] - }, - "D6YAK3JVF2VWSDJ9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "D6YAK3JVF2VWSDJ9.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "D6YAK3JVF2VWSDJ9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "D6YAK3JVF2VWSDJ9", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "D6YAK3JVF2VWSDJ9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "D6YAK3JVF2VWSDJ9.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "D6YAK3JVF2VWSDJ9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "D6YAK3JVF2VWSDJ9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "735" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "D6YAK3JVF2VWSDJ9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "D6YAK3JVF2VWSDJ9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "D6YAK3JVF2VWSDJ9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "D6YAK3JVF2VWSDJ9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "D6YAK3JVF2VWSDJ9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "D6YAK3JVF2VWSDJ9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1684" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "D6YAK3JVF2VWSDJ9.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "D6YAK3JVF2VWSDJ9", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "D6YAK3JVF2VWSDJ9.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "D6YAK3JVF2VWSDJ9.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "D6YAK3JVF2VWSDJ9.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "D6YAK3JVF2VWSDJ9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "D6YAK3JVF2VWSDJ9.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "D6YAK3JVF2VWSDJ9.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "809" - }, - "appliesTo" : [ ] - }, - "D6YAK3JVF2VWSDJ9.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "D6YAK3JVF2VWSDJ9.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "D6YAK3JVF2VWSDJ9.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "D6YAK3JVF2VWSDJ9", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "D6YAK3JVF2VWSDJ9.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "D6YAK3JVF2VWSDJ9.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "813" - }, - "appliesTo" : [ ] - }, - "D6YAK3JVF2VWSDJ9.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "D6YAK3JVF2VWSDJ9.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "D6YAK3JVF2VWSDJ9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "D6YAK3JVF2VWSDJ9", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "D6YAK3JVF2VWSDJ9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "D6YAK3JVF2VWSDJ9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0510000000" - }, - "appliesTo" : [ ] - }, - "D6YAK3JVF2VWSDJ9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "D6YAK3JVF2VWSDJ9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "292" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "D6YAK3JVF2VWSDJ9.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "D6YAK3JVF2VWSDJ9", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "D6YAK3JVF2VWSDJ9.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "D6YAK3JVF2VWSDJ9.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2099" - }, - "appliesTo" : [ ] - }, - "D6YAK3JVF2VWSDJ9.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "D6YAK3JVF2VWSDJ9.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "D6YAK3JVF2VWSDJ9.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "D6YAK3JVF2VWSDJ9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "D6YAK3JVF2VWSDJ9.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "D6YAK3JVF2VWSDJ9.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "409" - }, - "appliesTo" : [ ] - }, - "D6YAK3JVF2VWSDJ9.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "D6YAK3JVF2VWSDJ9.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "A3AVPUXAD6N4JXA9" : { - "A3AVPUXAD6N4JXA9.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "A3AVPUXAD6N4JXA9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A3AVPUXAD6N4JXA9.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "A3AVPUXAD6N4JXA9.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5606" - }, - "appliesTo" : [ ] - }, - "A3AVPUXAD6N4JXA9.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "A3AVPUXAD6N4JXA9.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "A3AVPUXAD6N4JXA9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "A3AVPUXAD6N4JXA9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A3AVPUXAD6N4JXA9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "A3AVPUXAD6N4JXA9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "A3AVPUXAD6N4JXA9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "A3AVPUXAD6N4JXA9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7439" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "A3AVPUXAD6N4JXA9.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "A3AVPUXAD6N4JXA9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A3AVPUXAD6N4JXA9.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "A3AVPUXAD6N4JXA9.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "A3AVPUXAD6N4JXA9.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "A3AVPUXAD6N4JXA9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A3AVPUXAD6N4JXA9.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "A3AVPUXAD6N4JXA9.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4478" - }, - "appliesTo" : [ ] - }, - "A3AVPUXAD6N4JXA9.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "A3AVPUXAD6N4JXA9.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "A3AVPUXAD6N4JXA9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "A3AVPUXAD6N4JXA9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A3AVPUXAD6N4JXA9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "A3AVPUXAD6N4JXA9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2534" - }, - "appliesTo" : [ ] - }, - "A3AVPUXAD6N4JXA9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "A3AVPUXAD6N4JXA9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "A3AVPUXAD6N4JXA9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "A3AVPUXAD6N4JXA9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A3AVPUXAD6N4JXA9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "A3AVPUXAD6N4JXA9.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1500000000" - }, - "appliesTo" : [ ] - }, - "A3AVPUXAD6N4JXA9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "A3AVPUXAD6N4JXA9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3940" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "A3AVPUXAD6N4JXA9.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "A3AVPUXAD6N4JXA9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A3AVPUXAD6N4JXA9.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "A3AVPUXAD6N4JXA9.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8781" - }, - "appliesTo" : [ ] - }, - "A3AVPUXAD6N4JXA9.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "A3AVPUXAD6N4JXA9.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "A3AVPUXAD6N4JXA9.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "A3AVPUXAD6N4JXA9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A3AVPUXAD6N4JXA9.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "A3AVPUXAD6N4JXA9.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3230000000" - }, - "appliesTo" : [ ] - }, - "A3AVPUXAD6N4JXA9.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "A3AVPUXAD6N4JXA9.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2888" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "A3AVPUXAD6N4JXA9.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "A3AVPUXAD6N4JXA9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A3AVPUXAD6N4JXA9.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "A3AVPUXAD6N4JXA9.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "A3AVPUXAD6N4JXA9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "A3AVPUXAD6N4JXA9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A3AVPUXAD6N4JXA9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "A3AVPUXAD6N4JXA9.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "A3AVPUXAD6N4JXA9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "A3AVPUXAD6N4JXA9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A3AVPUXAD6N4JXA9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "A3AVPUXAD6N4JXA9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4912" - }, - "appliesTo" : [ ] - }, - "A3AVPUXAD6N4JXA9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "A3AVPUXAD6N4JXA9.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "A3AVPUXAD6N4JXA9.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "A3AVPUXAD6N4JXA9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A3AVPUXAD6N4JXA9.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "A3AVPUXAD6N4JXA9.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "8D2QYF9WYWYEREWG" : { - "8D2QYF9WYWYEREWG.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "8D2QYF9WYWYEREWG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8D2QYF9WYWYEREWG.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "8D2QYF9WYWYEREWG.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8D2QYF9WYWYEREWG.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "8D2QYF9WYWYEREWG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8D2QYF9WYWYEREWG.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "8D2QYF9WYWYEREWG.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0950000000" - }, - "appliesTo" : [ ] - }, - "8D2QYF9WYWYEREWG.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "8D2QYF9WYWYEREWG.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "302" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8D2QYF9WYWYEREWG.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "8D2QYF9WYWYEREWG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8D2QYF9WYWYEREWG.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "8D2QYF9WYWYEREWG.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8D2QYF9WYWYEREWG.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "8D2QYF9WYWYEREWG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8D2QYF9WYWYEREWG.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "8D2QYF9WYWYEREWG.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "539" - }, - "appliesTo" : [ ] - }, - "8D2QYF9WYWYEREWG.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "8D2QYF9WYWYEREWG.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8D2QYF9WYWYEREWG.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "8D2QYF9WYWYEREWG", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "8D2QYF9WYWYEREWG.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "8D2QYF9WYWYEREWG.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2590" - }, - "appliesTo" : [ ] - }, - "8D2QYF9WYWYEREWG.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "8D2QYF9WYWYEREWG.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8D2QYF9WYWYEREWG.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "8D2QYF9WYWYEREWG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8D2QYF9WYWYEREWG.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "8D2QYF9WYWYEREWG.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8D2QYF9WYWYEREWG.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "8D2QYF9WYWYEREWG", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "8D2QYF9WYWYEREWG.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "8D2QYF9WYWYEREWG.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1041" - }, - "appliesTo" : [ ] - }, - "8D2QYF9WYWYEREWG.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "8D2QYF9WYWYEREWG.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8D2QYF9WYWYEREWG.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "8D2QYF9WYWYEREWG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8D2QYF9WYWYEREWG.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "8D2QYF9WYWYEREWG.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "8D2QYF9WYWYEREWG.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "8D2QYF9WYWYEREWG.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1118" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8D2QYF9WYWYEREWG.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "8D2QYF9WYWYEREWG", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "8D2QYF9WYWYEREWG.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "8D2QYF9WYWYEREWG.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "263" - }, - "appliesTo" : [ ] - }, - "8D2QYF9WYWYEREWG.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "8D2QYF9WYWYEREWG.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8D2QYF9WYWYEREWG.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "8D2QYF9WYWYEREWG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8D2QYF9WYWYEREWG.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "8D2QYF9WYWYEREWG.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "620" - }, - "appliesTo" : [ ] - }, - "8D2QYF9WYWYEREWG.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "8D2QYF9WYWYEREWG.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8D2QYF9WYWYEREWG.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "8D2QYF9WYWYEREWG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8D2QYF9WYWYEREWG.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "8D2QYF9WYWYEREWG.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "8D2QYF9WYWYEREWG.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "8D2QYF9WYWYEREWG.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2791" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8D2QYF9WYWYEREWG.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "8D2QYF9WYWYEREWG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8D2QYF9WYWYEREWG.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "8D2QYF9WYWYEREWG.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "HU3VQPHQ79Z4SYU9" : { - "HU3VQPHQ79Z4SYU9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "HU3VQPHQ79Z4SYU9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HU3VQPHQ79Z4SYU9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "HU3VQPHQ79Z4SYU9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16819" - }, - "appliesTo" : [ ] - }, - "HU3VQPHQ79Z4SYU9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "HU3VQPHQ79Z4SYU9.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HU3VQPHQ79Z4SYU9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "HU3VQPHQ79Z4SYU9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HU3VQPHQ79Z4SYU9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "HU3VQPHQ79Z4SYU9.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1124000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "HU3VQPHQ79Z4SYU9.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "HU3VQPHQ79Z4SYU9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HU3VQPHQ79Z4SYU9.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "HU3VQPHQ79Z4SYU9.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4098000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "HU3VQPHQ79Z4SYU9.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "HU3VQPHQ79Z4SYU9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HU3VQPHQ79Z4SYU9.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "HU3VQPHQ79Z4SYU9.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19778" - }, - "appliesTo" : [ ] - }, - "HU3VQPHQ79Z4SYU9.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "HU3VQPHQ79Z4SYU9.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "HU3VQPHQ79Z4SYU9.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "HU3VQPHQ79Z4SYU9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HU3VQPHQ79Z4SYU9.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "HU3VQPHQ79Z4SYU9.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9510" - }, - "appliesTo" : [ ] - }, - "HU3VQPHQ79Z4SYU9.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "HU3VQPHQ79Z4SYU9.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2156000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HU3VQPHQ79Z4SYU9.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "HU3VQPHQ79Z4SYU9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HU3VQPHQ79Z4SYU9.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "HU3VQPHQ79Z4SYU9.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "HU3VQPHQ79Z4SYU9.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "HU3VQPHQ79Z4SYU9.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "41327" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "HU3VQPHQ79Z4SYU9.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "HU3VQPHQ79Z4SYU9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HU3VQPHQ79Z4SYU9.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "HU3VQPHQ79Z4SYU9.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5124000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "HU3VQPHQ79Z4SYU9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "HU3VQPHQ79Z4SYU9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HU3VQPHQ79Z4SYU9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "HU3VQPHQ79Z4SYU9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8269" - }, - "appliesTo" : [ ] - }, - "HU3VQPHQ79Z4SYU9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "HU3VQPHQ79Z4SYU9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HU3VQPHQ79Z4SYU9.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "HU3VQPHQ79Z4SYU9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HU3VQPHQ79Z4SYU9.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "HU3VQPHQ79Z4SYU9.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7198000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "HU3VQPHQ79Z4SYU9.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "HU3VQPHQ79Z4SYU9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HU3VQPHQ79Z4SYU9.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "HU3VQPHQ79Z4SYU9.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8660000000" - }, - "appliesTo" : [ ] - }, - "HU3VQPHQ79Z4SYU9.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "HU3VQPHQ79Z4SYU9.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19342" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HU3VQPHQ79Z4SYU9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "HU3VQPHQ79Z4SYU9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HU3VQPHQ79Z4SYU9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "HU3VQPHQ79Z4SYU9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17347" - }, - "appliesTo" : [ ] - }, - "HU3VQPHQ79Z4SYU9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "HU3VQPHQ79Z4SYU9.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HU3VQPHQ79Z4SYU9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "HU3VQPHQ79Z4SYU9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HU3VQPHQ79Z4SYU9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "HU3VQPHQ79Z4SYU9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35036" - }, - "appliesTo" : [ ] - }, - "HU3VQPHQ79Z4SYU9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "HU3VQPHQ79Z4SYU9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "9DFRVEWZ38WMEJVB" : { - "9DFRVEWZ38WMEJVB.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "9DFRVEWZ38WMEJVB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9DFRVEWZ38WMEJVB.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "9DFRVEWZ38WMEJVB.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9DFRVEWZ38WMEJVB.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "9DFRVEWZ38WMEJVB", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "9DFRVEWZ38WMEJVB.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "9DFRVEWZ38WMEJVB.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1810000000" - }, - "appliesTo" : [ ] - }, - "9DFRVEWZ38WMEJVB.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "9DFRVEWZ38WMEJVB.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4749" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9DFRVEWZ38WMEJVB.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "9DFRVEWZ38WMEJVB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9DFRVEWZ38WMEJVB.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "9DFRVEWZ38WMEJVB.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9841" - }, - "appliesTo" : [ ] - }, - "9DFRVEWZ38WMEJVB.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "9DFRVEWZ38WMEJVB.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9DFRVEWZ38WMEJVB.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "9DFRVEWZ38WMEJVB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9DFRVEWZ38WMEJVB.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "9DFRVEWZ38WMEJVB.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3695000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9DFRVEWZ38WMEJVB.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "9DFRVEWZ38WMEJVB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9DFRVEWZ38WMEJVB.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "9DFRVEWZ38WMEJVB.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4952" - }, - "appliesTo" : [ ] - }, - "9DFRVEWZ38WMEJVB.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "9DFRVEWZ38WMEJVB.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1884000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9DFRVEWZ38WMEJVB.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "9DFRVEWZ38WMEJVB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9DFRVEWZ38WMEJVB.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "9DFRVEWZ38WMEJVB.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2195000000" - }, - "appliesTo" : [ ] - }, - "9DFRVEWZ38WMEJVB.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "9DFRVEWZ38WMEJVB.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1923" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9DFRVEWZ38WMEJVB.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "9DFRVEWZ38WMEJVB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9DFRVEWZ38WMEJVB.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "9DFRVEWZ38WMEJVB.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4482000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9DFRVEWZ38WMEJVB.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "9DFRVEWZ38WMEJVB", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "9DFRVEWZ38WMEJVB.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "9DFRVEWZ38WMEJVB.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1816" - }, - "appliesTo" : [ ] - }, - "9DFRVEWZ38WMEJVB.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "9DFRVEWZ38WMEJVB.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9DFRVEWZ38WMEJVB.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "9DFRVEWZ38WMEJVB", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "9DFRVEWZ38WMEJVB.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "9DFRVEWZ38WMEJVB.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3604" - }, - "appliesTo" : [ ] - }, - "9DFRVEWZ38WMEJVB.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "9DFRVEWZ38WMEJVB.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9DFRVEWZ38WMEJVB.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "9DFRVEWZ38WMEJVB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9DFRVEWZ38WMEJVB.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "9DFRVEWZ38WMEJVB.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3813" - }, - "appliesTo" : [ ] - }, - "9DFRVEWZ38WMEJVB.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "9DFRVEWZ38WMEJVB.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9DFRVEWZ38WMEJVB.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "9DFRVEWZ38WMEJVB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9DFRVEWZ38WMEJVB.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "9DFRVEWZ38WMEJVB.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3867000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9DFRVEWZ38WMEJVB.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "9DFRVEWZ38WMEJVB", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "9DFRVEWZ38WMEJVB.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "9DFRVEWZ38WMEJVB.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "9DFRVEWZ38WMEJVB.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "9DFRVEWZ38WMEJVB.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9330" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "SZADZHSFYSRDW37F" : { - "SZADZHSFYSRDW37F.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "SZADZHSFYSRDW37F", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SZADZHSFYSRDW37F.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "SZADZHSFYSRDW37F.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32069" - }, - "appliesTo" : [ ] - }, - "SZADZHSFYSRDW37F.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "SZADZHSFYSRDW37F.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SZADZHSFYSRDW37F.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SZADZHSFYSRDW37F", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SZADZHSFYSRDW37F.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SZADZHSFYSRDW37F.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.4070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SZADZHSFYSRDW37F.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "SZADZHSFYSRDW37F", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "SZADZHSFYSRDW37F.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "SZADZHSFYSRDW37F.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.2830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SZADZHSFYSRDW37F.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "SZADZHSFYSRDW37F", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "SZADZHSFYSRDW37F.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "SZADZHSFYSRDW37F.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5390000000" - }, - "appliesTo" : [ ] - }, - "SZADZHSFYSRDW37F.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "SZADZHSFYSRDW37F.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "92975" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SZADZHSFYSRDW37F.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "SZADZHSFYSRDW37F", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SZADZHSFYSRDW37F.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "SZADZHSFYSRDW37F.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SZADZHSFYSRDW37F.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SZADZHSFYSRDW37F", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SZADZHSFYSRDW37F.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SZADZHSFYSRDW37F.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SZADZHSFYSRDW37F.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SZADZHSFYSRDW37F.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "61674" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SZADZHSFYSRDW37F.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SZADZHSFYSRDW37F", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "SZADZHSFYSRDW37F.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SZADZHSFYSRDW37F.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "150681" - }, - "appliesTo" : [ ] - }, - "SZADZHSFYSRDW37F.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SZADZHSFYSRDW37F.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SZADZHSFYSRDW37F.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SZADZHSFYSRDW37F", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "SZADZHSFYSRDW37F.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SZADZHSFYSRDW37F.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31464" - }, - "appliesTo" : [ ] - }, - "SZADZHSFYSRDW37F.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SZADZHSFYSRDW37F.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SZADZHSFYSRDW37F.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "SZADZHSFYSRDW37F", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SZADZHSFYSRDW37F.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "SZADZHSFYSRDW37F.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "63945" - }, - "appliesTo" : [ ] - }, - "SZADZHSFYSRDW37F.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "SZADZHSFYSRDW37F.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SZADZHSFYSRDW37F.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "SZADZHSFYSRDW37F", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "SZADZHSFYSRDW37F.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "SZADZHSFYSRDW37F.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "182258" - }, - "appliesTo" : [ ] - }, - "SZADZHSFYSRDW37F.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "SZADZHSFYSRDW37F.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SZADZHSFYSRDW37F.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SZADZHSFYSRDW37F", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "SZADZHSFYSRDW37F.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SZADZHSFYSRDW37F.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "80154" - }, - "appliesTo" : [ ] - }, - "SZADZHSFYSRDW37F.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SZADZHSFYSRDW37F.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SZADZHSFYSRDW37F.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "SZADZHSFYSRDW37F", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SZADZHSFYSRDW37F.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "SZADZHSFYSRDW37F.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "V9GRWABS3YTSNDT3" : { - "V9GRWABS3YTSNDT3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "V9GRWABS3YTSNDT3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V9GRWABS3YTSNDT3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "V9GRWABS3YTSNDT3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "649" - }, - "appliesTo" : [ ] - }, - "V9GRWABS3YTSNDT3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "V9GRWABS3YTSNDT3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "V9GRWABS3YTSNDT3.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "V9GRWABS3YTSNDT3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V9GRWABS3YTSNDT3.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "V9GRWABS3YTSNDT3.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "V9GRWABS3YTSNDT3.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "V9GRWABS3YTSNDT3.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1354" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "V9GRWABS3YTSNDT3.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "V9GRWABS3YTSNDT3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V9GRWABS3YTSNDT3.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "V9GRWABS3YTSNDT3.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3530" - }, - "appliesTo" : [ ] - }, - "V9GRWABS3YTSNDT3.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "V9GRWABS3YTSNDT3.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "V9GRWABS3YTSNDT3.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "V9GRWABS3YTSNDT3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V9GRWABS3YTSNDT3.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "V9GRWABS3YTSNDT3.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "V9GRWABS3YTSNDT3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "V9GRWABS3YTSNDT3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V9GRWABS3YTSNDT3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "V9GRWABS3YTSNDT3.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "V9GRWABS3YTSNDT3.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "V9GRWABS3YTSNDT3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V9GRWABS3YTSNDT3.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "V9GRWABS3YTSNDT3.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "682" - }, - "appliesTo" : [ ] - }, - "V9GRWABS3YTSNDT3.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "V9GRWABS3YTSNDT3.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "V9GRWABS3YTSNDT3.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "V9GRWABS3YTSNDT3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V9GRWABS3YTSNDT3.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "V9GRWABS3YTSNDT3.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "V9GRWABS3YTSNDT3.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "V9GRWABS3YTSNDT3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V9GRWABS3YTSNDT3.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "V9GRWABS3YTSNDT3.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "V9GRWABS3YTSNDT3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "V9GRWABS3YTSNDT3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V9GRWABS3YTSNDT3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "V9GRWABS3YTSNDT3.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0650000000" - }, - "appliesTo" : [ ] - }, - "V9GRWABS3YTSNDT3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "V9GRWABS3YTSNDT3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1709" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "V9GRWABS3YTSNDT3.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "V9GRWABS3YTSNDT3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V9GRWABS3YTSNDT3.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "V9GRWABS3YTSNDT3.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1775" - }, - "appliesTo" : [ ] - }, - "V9GRWABS3YTSNDT3.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "V9GRWABS3YTSNDT3.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "V9GRWABS3YTSNDT3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "V9GRWABS3YTSNDT3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V9GRWABS3YTSNDT3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "V9GRWABS3YTSNDT3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1288" - }, - "appliesTo" : [ ] - }, - "V9GRWABS3YTSNDT3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "V9GRWABS3YTSNDT3.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "V9GRWABS3YTSNDT3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "V9GRWABS3YTSNDT3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "V9GRWABS3YTSNDT3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "V9GRWABS3YTSNDT3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3366" - }, - "appliesTo" : [ ] - }, - "V9GRWABS3YTSNDT3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "V9GRWABS3YTSNDT3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "AZ53HKVHTCDJVZZ5" : { - "AZ53HKVHTCDJVZZ5.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "AZ53HKVHTCDJVZZ5", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "AZ53HKVHTCDJVZZ5.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "AZ53HKVHTCDJVZZ5.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4418" - }, - "appliesTo" : [ ] - }, - "AZ53HKVHTCDJVZZ5.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "AZ53HKVHTCDJVZZ5.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "AZ53HKVHTCDJVZZ5.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "AZ53HKVHTCDJVZZ5", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "AZ53HKVHTCDJVZZ5.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "AZ53HKVHTCDJVZZ5.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "AZ53HKVHTCDJVZZ5.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "AZ53HKVHTCDJVZZ5.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8622" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "AZ53HKVHTCDJVZZ5.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "AZ53HKVHTCDJVZZ5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "AZ53HKVHTCDJVZZ5.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "AZ53HKVHTCDJVZZ5.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5847" - }, - "appliesTo" : [ ] - }, - "AZ53HKVHTCDJVZZ5.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "AZ53HKVHTCDJVZZ5.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AZ53HKVHTCDJVZZ5.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "AZ53HKVHTCDJVZZ5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AZ53HKVHTCDJVZZ5.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "AZ53HKVHTCDJVZZ5.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "AZ53HKVHTCDJVZZ5.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "AZ53HKVHTCDJVZZ5.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3696" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "AZ53HKVHTCDJVZZ5.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "AZ53HKVHTCDJVZZ5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "AZ53HKVHTCDJVZZ5.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "AZ53HKVHTCDJVZZ5.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3119" - }, - "appliesTo" : [ ] - }, - "AZ53HKVHTCDJVZZ5.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "AZ53HKVHTCDJVZZ5.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AZ53HKVHTCDJVZZ5.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "AZ53HKVHTCDJVZZ5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "AZ53HKVHTCDJVZZ5.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "AZ53HKVHTCDJVZZ5.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3237" - }, - "appliesTo" : [ ] - }, - "AZ53HKVHTCDJVZZ5.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "AZ53HKVHTCDJVZZ5.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AZ53HKVHTCDJVZZ5.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "AZ53HKVHTCDJVZZ5", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "AZ53HKVHTCDJVZZ5.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "AZ53HKVHTCDJVZZ5.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "AZ53HKVHTCDJVZZ5.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "AZ53HKVHTCDJVZZ5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "AZ53HKVHTCDJVZZ5.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "AZ53HKVHTCDJVZZ5.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "AZ53HKVHTCDJVZZ5.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "AZ53HKVHTCDJVZZ5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "AZ53HKVHTCDJVZZ5.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "AZ53HKVHTCDJVZZ5.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1682" - }, - "appliesTo" : [ ] - }, - "AZ53HKVHTCDJVZZ5.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "AZ53HKVHTCDJVZZ5.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AZ53HKVHTCDJVZZ5.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "AZ53HKVHTCDJVZZ5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AZ53HKVHTCDJVZZ5.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "AZ53HKVHTCDJVZZ5.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "AZ53HKVHTCDJVZZ5.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "AZ53HKVHTCDJVZZ5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AZ53HKVHTCDJVZZ5.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "AZ53HKVHTCDJVZZ5.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1914" - }, - "appliesTo" : [ ] - }, - "AZ53HKVHTCDJVZZ5.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "AZ53HKVHTCDJVZZ5.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "QMW9CSCFTNV2H99M" : { - "QMW9CSCFTNV2H99M.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "QMW9CSCFTNV2H99M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QMW9CSCFTNV2H99M.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "QMW9CSCFTNV2H99M.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1932000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QMW9CSCFTNV2H99M.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "QMW9CSCFTNV2H99M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QMW9CSCFTNV2H99M.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "QMW9CSCFTNV2H99M.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "806" - }, - "appliesTo" : [ ] - }, - "QMW9CSCFTNV2H99M.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "QMW9CSCFTNV2H99M.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QMW9CSCFTNV2H99M.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QMW9CSCFTNV2H99M", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QMW9CSCFTNV2H99M.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QMW9CSCFTNV2H99M.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QMW9CSCFTNV2H99M.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QMW9CSCFTNV2H99M", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "QMW9CSCFTNV2H99M.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QMW9CSCFTNV2H99M.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1398" - }, - "appliesTo" : [ ] - }, - "QMW9CSCFTNV2H99M.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QMW9CSCFTNV2H99M.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QMW9CSCFTNV2H99M.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QMW9CSCFTNV2H99M", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "QMW9CSCFTNV2H99M.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QMW9CSCFTNV2H99M.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2628" - }, - "appliesTo" : [ ] - }, - "QMW9CSCFTNV2H99M.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QMW9CSCFTNV2H99M.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QMW9CSCFTNV2H99M.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QMW9CSCFTNV2H99M", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "QMW9CSCFTNV2H99M.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QMW9CSCFTNV2H99M.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1370" - }, - "appliesTo" : [ ] - }, - "QMW9CSCFTNV2H99M.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QMW9CSCFTNV2H99M.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QMW9CSCFTNV2H99M.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "QMW9CSCFTNV2H99M", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QMW9CSCFTNV2H99M.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "QMW9CSCFTNV2H99M.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1602" - }, - "appliesTo" : [ ] - }, - "QMW9CSCFTNV2H99M.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "QMW9CSCFTNV2H99M.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0609000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QMW9CSCFTNV2H99M.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "QMW9CSCFTNV2H99M", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QMW9CSCFTNV2H99M.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "QMW9CSCFTNV2H99M.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1317000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QMW9CSCFTNV2H99M.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "QMW9CSCFTNV2H99M", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QMW9CSCFTNV2H99M.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "QMW9CSCFTNV2H99M.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1145000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QMW9CSCFTNV2H99M.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QMW9CSCFTNV2H99M", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "QMW9CSCFTNV2H99M.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QMW9CSCFTNV2H99M.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0800000000" - }, - "appliesTo" : [ ] - }, - "QMW9CSCFTNV2H99M.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QMW9CSCFTNV2H99M.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "699" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QMW9CSCFTNV2H99M.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "QMW9CSCFTNV2H99M", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "QMW9CSCFTNV2H99M.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "QMW9CSCFTNV2H99M.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QMW9CSCFTNV2H99M.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "QMW9CSCFTNV2H99M.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3139" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QMW9CSCFTNV2H99M.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "QMW9CSCFTNV2H99M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QMW9CSCFTNV2H99M.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "QMW9CSCFTNV2H99M.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1580" - }, - "appliesTo" : [ ] - }, - "QMW9CSCFTNV2H99M.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "QMW9CSCFTNV2H99M.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "GA5PWJF9UF3X7YVH" : { - "GA5PWJF9UF3X7YVH.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "GA5PWJF9UF3X7YVH", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GA5PWJF9UF3X7YVH.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "GA5PWJF9UF3X7YVH.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "967" - }, - "appliesTo" : [ ] - }, - "GA5PWJF9UF3X7YVH.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "GA5PWJF9UF3X7YVH.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GA5PWJF9UF3X7YVH.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "GA5PWJF9UF3X7YVH", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "GA5PWJF9UF3X7YVH.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "GA5PWJF9UF3X7YVH.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2373" - }, - "appliesTo" : [ ] - }, - "GA5PWJF9UF3X7YVH.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "GA5PWJF9UF3X7YVH.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GA5PWJF9UF3X7YVH.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "GA5PWJF9UF3X7YVH", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GA5PWJF9UF3X7YVH.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "GA5PWJF9UF3X7YVH.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5067" - }, - "appliesTo" : [ ] - }, - "GA5PWJF9UF3X7YVH.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "GA5PWJF9UF3X7YVH.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GA5PWJF9UF3X7YVH.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "GA5PWJF9UF3X7YVH", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GA5PWJF9UF3X7YVH.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "GA5PWJF9UF3X7YVH.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GA5PWJF9UF3X7YVH.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "GA5PWJF9UF3X7YVH", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GA5PWJF9UF3X7YVH.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "GA5PWJF9UF3X7YVH.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1230000000" - }, - "appliesTo" : [ ] - }, - "GA5PWJF9UF3X7YVH.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "GA5PWJF9UF3X7YVH.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2158" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "CRRB3H2DYHU6K9FV" : { - "CRRB3H2DYHU6K9FV.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "CRRB3H2DYHU6K9FV", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "CRRB3H2DYHU6K9FV.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "CRRB3H2DYHU6K9FV.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34682" - }, - "appliesTo" : [ ] - }, - "CRRB3H2DYHU6K9FV.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "CRRB3H2DYHU6K9FV.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CRRB3H2DYHU6K9FV.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "CRRB3H2DYHU6K9FV", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "CRRB3H2DYHU6K9FV.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "CRRB3H2DYHU6K9FV.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16924" - }, - "appliesTo" : [ ] - }, - "CRRB3H2DYHU6K9FV.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "CRRB3H2DYHU6K9FV.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CRRB3H2DYHU6K9FV.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "CRRB3H2DYHU6K9FV", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "CRRB3H2DYHU6K9FV.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "CRRB3H2DYHU6K9FV.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9200000000" - }, - "appliesTo" : [ ] - }, - "CRRB3H2DYHU6K9FV.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "CRRB3H2DYHU6K9FV.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11213" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CRRB3H2DYHU6K9FV.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "CRRB3H2DYHU6K9FV", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "CRRB3H2DYHU6K9FV.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "CRRB3H2DYHU6K9FV.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18886" - }, - "appliesTo" : [ ] - }, - "CRRB3H2DYHU6K9FV.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "CRRB3H2DYHU6K9FV.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CRRB3H2DYHU6K9FV.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "CRRB3H2DYHU6K9FV", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "CRRB3H2DYHU6K9FV.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "CRRB3H2DYHU6K9FV.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "VTKYCWG47S8NZFFH" : { - "VTKYCWG47S8NZFFH.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "VTKYCWG47S8NZFFH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VTKYCWG47S8NZFFH.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "VTKYCWG47S8NZFFH.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "VTKYCWG47S8NZFFH.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "VTKYCWG47S8NZFFH.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33934" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VTKYCWG47S8NZFFH.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "VTKYCWG47S8NZFFH", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "VTKYCWG47S8NZFFH.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "VTKYCWG47S8NZFFH.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33334" - }, - "appliesTo" : [ ] - }, - "VTKYCWG47S8NZFFH.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "VTKYCWG47S8NZFFH.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VTKYCWG47S8NZFFH.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "VTKYCWG47S8NZFFH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VTKYCWG47S8NZFFH.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "VTKYCWG47S8NZFFH.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VTKYCWG47S8NZFFH.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "VTKYCWG47S8NZFFH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VTKYCWG47S8NZFFH.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "VTKYCWG47S8NZFFH.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VTKYCWG47S8NZFFH.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "VTKYCWG47S8NZFFH", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "VTKYCWG47S8NZFFH.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "VTKYCWG47S8NZFFH.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "96141" - }, - "appliesTo" : [ ] - }, - "VTKYCWG47S8NZFFH.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "VTKYCWG47S8NZFFH.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VTKYCWG47S8NZFFH.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "VTKYCWG47S8NZFFH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VTKYCWG47S8NZFFH.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "VTKYCWG47S8NZFFH.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "VTKYCWG47S8NZFFH.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "VTKYCWG47S8NZFFH.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "97633" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VTKYCWG47S8NZFFH.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "VTKYCWG47S8NZFFH", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "VTKYCWG47S8NZFFH.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "VTKYCWG47S8NZFFH.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16706" - }, - "appliesTo" : [ ] - }, - "VTKYCWG47S8NZFFH.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "VTKYCWG47S8NZFFH.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VTKYCWG47S8NZFFH.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "VTKYCWG47S8NZFFH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VTKYCWG47S8NZFFH.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "VTKYCWG47S8NZFFH.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VTKYCWG47S8NZFFH.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "VTKYCWG47S8NZFFH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VTKYCWG47S8NZFFH.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "VTKYCWG47S8NZFFH.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VTKYCWG47S8NZFFH.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "VTKYCWG47S8NZFFH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VTKYCWG47S8NZFFH.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "VTKYCWG47S8NZFFH.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17012" - }, - "appliesTo" : [ ] - }, - "VTKYCWG47S8NZFFH.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "VTKYCWG47S8NZFFH.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VTKYCWG47S8NZFFH.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "VTKYCWG47S8NZFFH", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "VTKYCWG47S8NZFFH.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "VTKYCWG47S8NZFFH.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "48314" - }, - "appliesTo" : [ ] - }, - "VTKYCWG47S8NZFFH.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "VTKYCWG47S8NZFFH.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VTKYCWG47S8NZFFH.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "VTKYCWG47S8NZFFH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VTKYCWG47S8NZFFH.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "VTKYCWG47S8NZFFH.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "48910" - }, - "appliesTo" : [ ] - }, - "VTKYCWG47S8NZFFH.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "VTKYCWG47S8NZFFH.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "427555ENEC4F3EDG" : { - "427555ENEC4F3EDG.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "427555ENEC4F3EDG", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "427555ENEC4F3EDG.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "427555ENEC4F3EDG.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2020000000" - }, - "appliesTo" : [ ] - }, - "427555ENEC4F3EDG.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "427555ENEC4F3EDG.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14560" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "427555ENEC4F3EDG.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "427555ENEC4F3EDG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "427555ENEC4F3EDG.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "427555ENEC4F3EDG.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "427555ENEC4F3EDG.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "427555ENEC4F3EDG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "427555ENEC4F3EDG.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "427555ENEC4F3EDG.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "41549" - }, - "appliesTo" : [ ] - }, - "427555ENEC4F3EDG.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "427555ENEC4F3EDG.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "427555ENEC4F3EDG.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "427555ENEC4F3EDG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "427555ENEC4F3EDG.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "427555ENEC4F3EDG.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21067" - }, - "appliesTo" : [ ] - }, - "427555ENEC4F3EDG.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "427555ENEC4F3EDG.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "427555ENEC4F3EDG.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "427555ENEC4F3EDG", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "427555ENEC4F3EDG.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "427555ENEC4F3EDG.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "427555ENEC4F3EDG.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "427555ENEC4F3EDG", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "427555ENEC4F3EDG.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "427555ENEC4F3EDG.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "92040" - }, - "appliesTo" : [ ] - }, - "427555ENEC4F3EDG.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "427555ENEC4F3EDG.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "427555ENEC4F3EDG.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "427555ENEC4F3EDG", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "427555ENEC4F3EDG.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "427555ENEC4F3EDG.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21920" - }, - "appliesTo" : [ ] - }, - "427555ENEC4F3EDG.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "427555ENEC4F3EDG.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "427555ENEC4F3EDG.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "427555ENEC4F3EDG", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "427555ENEC4F3EDG.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "427555ENEC4F3EDG.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.1820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "427555ENEC4F3EDG.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "427555ENEC4F3EDG", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "427555ENEC4F3EDG.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "427555ENEC4F3EDG.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39312" - }, - "appliesTo" : [ ] - }, - "427555ENEC4F3EDG.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "427555ENEC4F3EDG.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "427555ENEC4F3EDG.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "427555ENEC4F3EDG", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "427555ENEC4F3EDG.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "427555ENEC4F3EDG.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "427555ENEC4F3EDG.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "427555ENEC4F3EDG.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33173" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "427555ENEC4F3EDG.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "427555ENEC4F3EDG", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "427555ENEC4F3EDG.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "427555ENEC4F3EDG.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "68134" - }, - "appliesTo" : [ ] - }, - "427555ENEC4F3EDG.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "427555ENEC4F3EDG.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "K28HPP98RVTNWAAD" : { - "K28HPP98RVTNWAAD.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "K28HPP98RVTNWAAD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K28HPP98RVTNWAAD.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "K28HPP98RVTNWAAD.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "K28HPP98RVTNWAAD.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "K28HPP98RVTNWAAD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K28HPP98RVTNWAAD.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "K28HPP98RVTNWAAD.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6915000000" - }, - "appliesTo" : [ ] - }, - "K28HPP98RVTNWAAD.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "K28HPP98RVTNWAAD.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6120" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "K28HPP98RVTNWAAD.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "K28HPP98RVTNWAAD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K28HPP98RVTNWAAD.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "K28HPP98RVTNWAAD.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24388" - }, - "appliesTo" : [ ] - }, - "K28HPP98RVTNWAAD.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "K28HPP98RVTNWAAD.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "K28HPP98RVTNWAAD.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "K28HPP98RVTNWAAD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K28HPP98RVTNWAAD.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "K28HPP98RVTNWAAD.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0266000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "K28HPP98RVTNWAAD.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "K28HPP98RVTNWAAD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K28HPP98RVTNWAAD.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "K28HPP98RVTNWAAD.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6030000000" - }, - "appliesTo" : [ ] - }, - "K28HPP98RVTNWAAD.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "K28HPP98RVTNWAAD.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5344" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "K28HPP98RVTNWAAD.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "K28HPP98RVTNWAAD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K28HPP98RVTNWAAD.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "K28HPP98RVTNWAAD.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11940" - }, - "appliesTo" : [ ] - }, - "K28HPP98RVTNWAAD.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "K28HPP98RVTNWAAD.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "K28HPP98RVTNWAAD.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "K28HPP98RVTNWAAD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K28HPP98RVTNWAAD.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "K28HPP98RVTNWAAD.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "K28HPP98RVTNWAAD.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "K28HPP98RVTNWAAD.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20457" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "K28HPP98RVTNWAAD.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "K28HPP98RVTNWAAD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K28HPP98RVTNWAAD.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "K28HPP98RVTNWAAD.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "K28HPP98RVTNWAAD.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "K28HPP98RVTNWAAD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K28HPP98RVTNWAAD.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "K28HPP98RVTNWAAD.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "K28HPP98RVTNWAAD.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "K28HPP98RVTNWAAD.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10420" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "K28HPP98RVTNWAAD.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "K28HPP98RVTNWAAD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K28HPP98RVTNWAAD.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "K28HPP98RVTNWAAD.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4130000000" - }, - "appliesTo" : [ ] - }, - "K28HPP98RVTNWAAD.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "K28HPP98RVTNWAAD.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10864" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "K28HPP98RVTNWAAD.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "K28HPP98RVTNWAAD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "K28HPP98RVTNWAAD.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "K28HPP98RVTNWAAD.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12441" - }, - "appliesTo" : [ ] - }, - "K28HPP98RVTNWAAD.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "K28HPP98RVTNWAAD.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "K28HPP98RVTNWAAD.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "K28HPP98RVTNWAAD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K28HPP98RVTNWAAD.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "K28HPP98RVTNWAAD.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4579000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "Y3Y6KWQHPWZMXFTW" : { - "Y3Y6KWQHPWZMXFTW.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "Y3Y6KWQHPWZMXFTW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Y3Y6KWQHPWZMXFTW.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "Y3Y6KWQHPWZMXFTW.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "44022" - }, - "appliesTo" : [ ] - }, - "Y3Y6KWQHPWZMXFTW.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "Y3Y6KWQHPWZMXFTW.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Y3Y6KWQHPWZMXFTW.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Y3Y6KWQHPWZMXFTW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Y3Y6KWQHPWZMXFTW.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Y3Y6KWQHPWZMXFTW.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Y3Y6KWQHPWZMXFTW.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "Y3Y6KWQHPWZMXFTW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Y3Y6KWQHPWZMXFTW.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "Y3Y6KWQHPWZMXFTW.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22104" - }, - "appliesTo" : [ ] - }, - "Y3Y6KWQHPWZMXFTW.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "Y3Y6KWQHPWZMXFTW.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y3Y6KWQHPWZMXFTW.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Y3Y6KWQHPWZMXFTW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Y3Y6KWQHPWZMXFTW.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Y3Y6KWQHPWZMXFTW.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21497" - }, - "appliesTo" : [ ] - }, - "Y3Y6KWQHPWZMXFTW.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Y3Y6KWQHPWZMXFTW.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y3Y6KWQHPWZMXFTW.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "Y3Y6KWQHPWZMXFTW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Y3Y6KWQHPWZMXFTW.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "Y3Y6KWQHPWZMXFTW.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Y3Y6KWQHPWZMXFTW.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "Y3Y6KWQHPWZMXFTW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Y3Y6KWQHPWZMXFTW.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "Y3Y6KWQHPWZMXFTW.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8077" - }, - "appliesTo" : [ ] - }, - "Y3Y6KWQHPWZMXFTW.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "Y3Y6KWQHPWZMXFTW.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y3Y6KWQHPWZMXFTW.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "Y3Y6KWQHPWZMXFTW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Y3Y6KWQHPWZMXFTW.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "Y3Y6KWQHPWZMXFTW.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Y3Y6KWQHPWZMXFTW.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Y3Y6KWQHPWZMXFTW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Y3Y6KWQHPWZMXFTW.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Y3Y6KWQHPWZMXFTW.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15486" - }, - "appliesTo" : [ ] - }, - "Y3Y6KWQHPWZMXFTW.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Y3Y6KWQHPWZMXFTW.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Y3Y6KWQHPWZMXFTW.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "Y3Y6KWQHPWZMXFTW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Y3Y6KWQHPWZMXFTW.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "Y3Y6KWQHPWZMXFTW.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "Y3Y6KWQHPWZMXFTW.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "Y3Y6KWQHPWZMXFTW.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16064" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Y3Y6KWQHPWZMXFTW.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Y3Y6KWQHPWZMXFTW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Y3Y6KWQHPWZMXFTW.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Y3Y6KWQHPWZMXFTW.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7782" - }, - "appliesTo" : [ ] - }, - "Y3Y6KWQHPWZMXFTW.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Y3Y6KWQHPWZMXFTW.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Y3Y6KWQHPWZMXFTW.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Y3Y6KWQHPWZMXFTW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Y3Y6KWQHPWZMXFTW.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Y3Y6KWQHPWZMXFTW.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "42508" - }, - "appliesTo" : [ ] - }, - "Y3Y6KWQHPWZMXFTW.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Y3Y6KWQHPWZMXFTW.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Y3Y6KWQHPWZMXFTW.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "Y3Y6KWQHPWZMXFTW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Y3Y6KWQHPWZMXFTW.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "Y3Y6KWQHPWZMXFTW.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "6BD6MNUEKG75NY7W" : { - "6BD6MNUEKG75NY7W.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "6BD6MNUEKG75NY7W", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6BD6MNUEKG75NY7W.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "6BD6MNUEKG75NY7W.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8207000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6BD6MNUEKG75NY7W.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "6BD6MNUEKG75NY7W", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6BD6MNUEKG75NY7W.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "6BD6MNUEKG75NY7W.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3562" - }, - "appliesTo" : [ ] - }, - "6BD6MNUEKG75NY7W.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "6BD6MNUEKG75NY7W.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4066000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6BD6MNUEKG75NY7W.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "6BD6MNUEKG75NY7W", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "6BD6MNUEKG75NY7W.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "6BD6MNUEKG75NY7W.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10055" - }, - "appliesTo" : [ ] - }, - "6BD6MNUEKG75NY7W.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "6BD6MNUEKG75NY7W.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3826000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6BD6MNUEKG75NY7W.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6BD6MNUEKG75NY7W", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "6BD6MNUEKG75NY7W.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6BD6MNUEKG75NY7W.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19624" - }, - "appliesTo" : [ ] - }, - "6BD6MNUEKG75NY7W.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6BD6MNUEKG75NY7W.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6BD6MNUEKG75NY7W.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6BD6MNUEKG75NY7W", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "6BD6MNUEKG75NY7W.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6BD6MNUEKG75NY7W.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9881" - }, - "appliesTo" : [ ] - }, - "6BD6MNUEKG75NY7W.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6BD6MNUEKG75NY7W.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6BD6MNUEKG75NY7W.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6BD6MNUEKG75NY7W", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "6BD6MNUEKG75NY7W.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6BD6MNUEKG75NY7W.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3477" - }, - "appliesTo" : [ ] - }, - "6BD6MNUEKG75NY7W.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6BD6MNUEKG75NY7W.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3969000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6BD6MNUEKG75NY7W.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6BD6MNUEKG75NY7W", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "6BD6MNUEKG75NY7W.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6BD6MNUEKG75NY7W.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6931" - }, - "appliesTo" : [ ] - }, - "6BD6MNUEKG75NY7W.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6BD6MNUEKG75NY7W.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6BD6MNUEKG75NY7W.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "6BD6MNUEKG75NY7W", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "6BD6MNUEKG75NY7W.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "6BD6MNUEKG75NY7W.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7733000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6BD6MNUEKG75NY7W.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "6BD6MNUEKG75NY7W", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "6BD6MNUEKG75NY7W.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "6BD6MNUEKG75NY7W.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6BD6MNUEKG75NY7W.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "6BD6MNUEKG75NY7W", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "6BD6MNUEKG75NY7W.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "6BD6MNUEKG75NY7W.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "6BD6MNUEKG75NY7W.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "6BD6MNUEKG75NY7W.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20056" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6BD6MNUEKG75NY7W.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "6BD6MNUEKG75NY7W", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6BD6MNUEKG75NY7W.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "6BD6MNUEKG75NY7W.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "6BD6MNUEKG75NY7W.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "6BD6MNUEKG75NY7W.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7098" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6BD6MNUEKG75NY7W.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6BD6MNUEKG75NY7W", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "6BD6MNUEKG75NY7W.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6BD6MNUEKG75NY7W.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8003000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "FDH7AF66PWQFC4ZX" : { - "FDH7AF66PWQFC4ZX.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "FDH7AF66PWQFC4ZX", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "FDH7AF66PWQFC4ZX.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "FDH7AF66PWQFC4ZX.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "19.6520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FDH7AF66PWQFC4ZX.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "FDH7AF66PWQFC4ZX", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "FDH7AF66PWQFC4ZX.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "FDH7AF66PWQFC4ZX.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "419712" - }, - "appliesTo" : [ ] - }, - "FDH7AF66PWQFC4ZX.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "FDH7AF66PWQFC4ZX.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FDH7AF66PWQFC4ZX.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "FDH7AF66PWQFC4ZX", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "FDH7AF66PWQFC4ZX.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "FDH7AF66PWQFC4ZX.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.4050000000" - }, - "appliesTo" : [ ] - }, - "FDH7AF66PWQFC4ZX.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "FDH7AF66PWQFC4ZX.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "168316" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FDH7AF66PWQFC4ZX.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "FDH7AF66PWQFC4ZX", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "FDH7AF66PWQFC4ZX.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "FDH7AF66PWQFC4ZX.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.1180000000" - }, - "appliesTo" : [ ] - }, - "FDH7AF66PWQFC4ZX.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "FDH7AF66PWQFC4ZX.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "213349" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FDH7AF66PWQFC4ZX.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "FDH7AF66PWQFC4ZX", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "FDH7AF66PWQFC4ZX.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "FDH7AF66PWQFC4ZX.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.5990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FDH7AF66PWQFC4ZX.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "FDH7AF66PWQFC4ZX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FDH7AF66PWQFC4ZX.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "FDH7AF66PWQFC4ZX.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "93097" - }, - "appliesTo" : [ ] - }, - "FDH7AF66PWQFC4ZX.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "FDH7AF66PWQFC4ZX.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.6280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FDH7AF66PWQFC4ZX.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "FDH7AF66PWQFC4ZX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FDH7AF66PWQFC4ZX.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "FDH7AF66PWQFC4ZX.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "22.1710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FDH7AF66PWQFC4ZX.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "FDH7AF66PWQFC4ZX", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "FDH7AF66PWQFC4ZX.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "FDH7AF66PWQFC4ZX.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "FDH7AF66PWQFC4ZX.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "FDH7AF66PWQFC4ZX.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "162391" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FDH7AF66PWQFC4ZX.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "FDH7AF66PWQFC4ZX", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "FDH7AF66PWQFC4ZX.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "FDH7AF66PWQFC4ZX.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "82589" - }, - "appliesTo" : [ ] - }, - "FDH7AF66PWQFC4ZX.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "FDH7AF66PWQFC4ZX.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.4280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FDH7AF66PWQFC4ZX.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "FDH7AF66PWQFC4ZX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FDH7AF66PWQFC4ZX.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "FDH7AF66PWQFC4ZX.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "182986" - }, - "appliesTo" : [ ] - }, - "FDH7AF66PWQFC4ZX.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "FDH7AF66PWQFC4ZX.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FDH7AF66PWQFC4ZX.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "FDH7AF66PWQFC4ZX", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "FDH7AF66PWQFC4ZX.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "FDH7AF66PWQFC4ZX.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "321076" - }, - "appliesTo" : [ ] - }, - "FDH7AF66PWQFC4ZX.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "FDH7AF66PWQFC4ZX.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FDH7AF66PWQFC4ZX.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "FDH7AF66PWQFC4ZX", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "FDH7AF66PWQFC4ZX.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "FDH7AF66PWQFC4ZX.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "17.3000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "JTDCCHG4KZ5M8H8N" : { - "JTDCCHG4KZ5M8H8N.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "JTDCCHG4KZ5M8H8N", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JTDCCHG4KZ5M8H8N.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "JTDCCHG4KZ5M8H8N.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "JTDCCHG4KZ5M8H8N.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "JTDCCHG4KZ5M8H8N", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JTDCCHG4KZ5M8H8N.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "JTDCCHG4KZ5M8H8N.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "669" - }, - "appliesTo" : [ ] - }, - "JTDCCHG4KZ5M8H8N.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "JTDCCHG4KZ5M8H8N.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "JTDCCHG4KZ5M8H8N.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "JTDCCHG4KZ5M8H8N", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JTDCCHG4KZ5M8H8N.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "JTDCCHG4KZ5M8H8N.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1102" - }, - "appliesTo" : [ ] - }, - "JTDCCHG4KZ5M8H8N.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "JTDCCHG4KZ5M8H8N.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "JTDCCHG4KZ5M8H8N.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "JTDCCHG4KZ5M8H8N", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JTDCCHG4KZ5M8H8N.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "JTDCCHG4KZ5M8H8N.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2147" - }, - "appliesTo" : [ ] - }, - "JTDCCHG4KZ5M8H8N.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "JTDCCHG4KZ5M8H8N.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JTDCCHG4KZ5M8H8N.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "JTDCCHG4KZ5M8H8N", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JTDCCHG4KZ5M8H8N.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "JTDCCHG4KZ5M8H8N.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1102" - }, - "appliesTo" : [ ] - }, - "JTDCCHG4KZ5M8H8N.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "JTDCCHG4KZ5M8H8N.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "97BZM647G2XZPFCY" : { - "97BZM647G2XZPFCY.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "97BZM647G2XZPFCY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "97BZM647G2XZPFCY.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "97BZM647G2XZPFCY.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "97BZM647G2XZPFCY.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "97BZM647G2XZPFCY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "97BZM647G2XZPFCY.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "97BZM647G2XZPFCY.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "97BZM647G2XZPFCY.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "97BZM647G2XZPFCY", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "97BZM647G2XZPFCY.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "97BZM647G2XZPFCY.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4149" - }, - "appliesTo" : [ ] - }, - "97BZM647G2XZPFCY.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "97BZM647G2XZPFCY.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "97BZM647G2XZPFCY.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "97BZM647G2XZPFCY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "97BZM647G2XZPFCY.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "97BZM647G2XZPFCY.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "97BZM647G2XZPFCY.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "97BZM647G2XZPFCY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "97BZM647G2XZPFCY.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "97BZM647G2XZPFCY.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4449" - }, - "appliesTo" : [ ] - }, - "97BZM647G2XZPFCY.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "97BZM647G2XZPFCY.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "97BZM647G2XZPFCY.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "97BZM647G2XZPFCY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "97BZM647G2XZPFCY.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "97BZM647G2XZPFCY.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "97BZM647G2XZPFCY.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "97BZM647G2XZPFCY", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "97BZM647G2XZPFCY.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "97BZM647G2XZPFCY.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10517" - }, - "appliesTo" : [ ] - }, - "97BZM647G2XZPFCY.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "97BZM647G2XZPFCY.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "97BZM647G2XZPFCY.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "97BZM647G2XZPFCY", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "97BZM647G2XZPFCY.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "97BZM647G2XZPFCY.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5380" - }, - "appliesTo" : [ ] - }, - "97BZM647G2XZPFCY.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "97BZM647G2XZPFCY.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "97BZM647G2XZPFCY.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "97BZM647G2XZPFCY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "97BZM647G2XZPFCY.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "97BZM647G2XZPFCY.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5678" - }, - "appliesTo" : [ ] - }, - "97BZM647G2XZPFCY.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "97BZM647G2XZPFCY.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "97BZM647G2XZPFCY.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "97BZM647G2XZPFCY", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "97BZM647G2XZPFCY.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "97BZM647G2XZPFCY.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2094" - }, - "appliesTo" : [ ] - }, - "97BZM647G2XZPFCY.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "97BZM647G2XZPFCY.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "97BZM647G2XZPFCY.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "97BZM647G2XZPFCY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "97BZM647G2XZPFCY.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "97BZM647G2XZPFCY.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11263" - }, - "appliesTo" : [ ] - }, - "97BZM647G2XZPFCY.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "97BZM647G2XZPFCY.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "97BZM647G2XZPFCY.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "97BZM647G2XZPFCY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "97BZM647G2XZPFCY.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "97BZM647G2XZPFCY.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2247" - }, - "appliesTo" : [ ] - }, - "97BZM647G2XZPFCY.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "97BZM647G2XZPFCY.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "YKQEND52YE639ZHB" : { - "YKQEND52YE639ZHB.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "YKQEND52YE639ZHB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YKQEND52YE639ZHB.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "YKQEND52YE639ZHB.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4720000000" - }, - "appliesTo" : [ ] - }, - "YKQEND52YE639ZHB.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "YKQEND52YE639ZHB.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12895" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YKQEND52YE639ZHB.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "YKQEND52YE639ZHB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YKQEND52YE639ZHB.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "YKQEND52YE639ZHB.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0912000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YKQEND52YE639ZHB.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YKQEND52YE639ZHB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YKQEND52YE639ZHB.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YKQEND52YE639ZHB.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21922" - }, - "appliesTo" : [ ] - }, - "YKQEND52YE639ZHB.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YKQEND52YE639ZHB.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YKQEND52YE639ZHB.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YKQEND52YE639ZHB", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "YKQEND52YE639ZHB.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YKQEND52YE639ZHB.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8510000000" - }, - "appliesTo" : [ ] - }, - "YKQEND52YE639ZHB.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YKQEND52YE639ZHB.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22370" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YKQEND52YE639ZHB.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "YKQEND52YE639ZHB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YKQEND52YE639ZHB.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "YKQEND52YE639ZHB.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1064000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YKQEND52YE639ZHB.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "YKQEND52YE639ZHB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YKQEND52YE639ZHB.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "YKQEND52YE639ZHB.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25628" - }, - "appliesTo" : [ ] - }, - "YKQEND52YE639ZHB.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "YKQEND52YE639ZHB.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9752000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YKQEND52YE639ZHB.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YKQEND52YE639ZHB", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "YKQEND52YE639ZHB.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YKQEND52YE639ZHB.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YKQEND52YE639ZHB.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YKQEND52YE639ZHB.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "42055" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YKQEND52YE639ZHB.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "YKQEND52YE639ZHB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YKQEND52YE639ZHB.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "YKQEND52YE639ZHB.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8317000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YKQEND52YE639ZHB.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YKQEND52YE639ZHB", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "YKQEND52YE639ZHB.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YKQEND52YE639ZHB.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11185" - }, - "appliesTo" : [ ] - }, - "YKQEND52YE639ZHB.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YKQEND52YE639ZHB.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YKQEND52YE639ZHB.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "YKQEND52YE639ZHB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YKQEND52YE639ZHB.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "YKQEND52YE639ZHB.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "50231" - }, - "appliesTo" : [ ] - }, - "YKQEND52YE639ZHB.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "YKQEND52YE639ZHB.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YKQEND52YE639ZHB.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YKQEND52YE639ZHB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YKQEND52YE639ZHB.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YKQEND52YE639ZHB.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YKQEND52YE639ZHB.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "YKQEND52YE639ZHB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YKQEND52YE639ZHB.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "YKQEND52YE639ZHB.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25273" - }, - "appliesTo" : [ ] - }, - "YKQEND52YE639ZHB.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "YKQEND52YE639ZHB.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "86VC54YVHZCQW5AC" : { - "86VC54YVHZCQW5AC.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "86VC54YVHZCQW5AC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "86VC54YVHZCQW5AC.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "86VC54YVHZCQW5AC.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2915" - }, - "appliesTo" : [ ] - }, - "86VC54YVHZCQW5AC.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "86VC54YVHZCQW5AC.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "86VC54YVHZCQW5AC.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "86VC54YVHZCQW5AC", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "86VC54YVHZCQW5AC.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "86VC54YVHZCQW5AC.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3781" - }, - "appliesTo" : [ ] - }, - "86VC54YVHZCQW5AC.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "86VC54YVHZCQW5AC.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "86VC54YVHZCQW5AC.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "86VC54YVHZCQW5AC", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "86VC54YVHZCQW5AC.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "86VC54YVHZCQW5AC.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1384" - }, - "appliesTo" : [ ] - }, - "86VC54YVHZCQW5AC.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "86VC54YVHZCQW5AC.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "86VC54YVHZCQW5AC.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "86VC54YVHZCQW5AC", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "86VC54YVHZCQW5AC.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "86VC54YVHZCQW5AC.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3482" - }, - "appliesTo" : [ ] - }, - "86VC54YVHZCQW5AC.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "86VC54YVHZCQW5AC.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "86VC54YVHZCQW5AC.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "86VC54YVHZCQW5AC", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "86VC54YVHZCQW5AC.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "86VC54YVHZCQW5AC.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "86VC54YVHZCQW5AC.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "86VC54YVHZCQW5AC.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6533" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "86VC54YVHZCQW5AC.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "86VC54YVHZCQW5AC", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "86VC54YVHZCQW5AC.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "86VC54YVHZCQW5AC.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2751" - }, - "appliesTo" : [ ] - }, - "86VC54YVHZCQW5AC.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "86VC54YVHZCQW5AC.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "86VC54YVHZCQW5AC.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "86VC54YVHZCQW5AC", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "86VC54YVHZCQW5AC.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "86VC54YVHZCQW5AC.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "86VC54YVHZCQW5AC.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "86VC54YVHZCQW5AC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "86VC54YVHZCQW5AC.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "86VC54YVHZCQW5AC.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1680000000" - }, - "appliesTo" : [ ] - }, - "86VC54YVHZCQW5AC.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "86VC54YVHZCQW5AC.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1471" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "86VC54YVHZCQW5AC.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "86VC54YVHZCQW5AC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "86VC54YVHZCQW5AC.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "86VC54YVHZCQW5AC.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "86VC54YVHZCQW5AC.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "86VC54YVHZCQW5AC", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "86VC54YVHZCQW5AC.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "86VC54YVHZCQW5AC.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "86VC54YVHZCQW5AC.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "86VC54YVHZCQW5AC", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "86VC54YVHZCQW5AC.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "86VC54YVHZCQW5AC.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7507" - }, - "appliesTo" : [ ] - }, - "86VC54YVHZCQW5AC.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "86VC54YVHZCQW5AC.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "86VC54YVHZCQW5AC.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "86VC54YVHZCQW5AC", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "86VC54YVHZCQW5AC.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "86VC54YVHZCQW5AC.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "68TFKFM9J33ZZB97" : { - "68TFKFM9J33ZZB97.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "68TFKFM9J33ZZB97", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "68TFKFM9J33ZZB97.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "68TFKFM9J33ZZB97.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "68TFKFM9J33ZZB97.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "68TFKFM9J33ZZB97.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12766" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "68TFKFM9J33ZZB97.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "68TFKFM9J33ZZB97", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "68TFKFM9J33ZZB97.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "68TFKFM9J33ZZB97.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29856" - }, - "appliesTo" : [ ] - }, - "68TFKFM9J33ZZB97.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "68TFKFM9J33ZZB97.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "68TFKFM9J33ZZB97.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "68TFKFM9J33ZZB97", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "68TFKFM9J33ZZB97.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "68TFKFM9J33ZZB97.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1939000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "68TFKFM9J33ZZB97.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "68TFKFM9J33ZZB97", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "68TFKFM9J33ZZB97.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "68TFKFM9J33ZZB97.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2626000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "68TFKFM9J33ZZB97.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "68TFKFM9J33ZZB97", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "68TFKFM9J33ZZB97.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "68TFKFM9J33ZZB97.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11928" - }, - "appliesTo" : [ ] - }, - "68TFKFM9J33ZZB97.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "68TFKFM9J33ZZB97.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "68TFKFM9J33ZZB97.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "68TFKFM9J33ZZB97", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "68TFKFM9J33ZZB97.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "68TFKFM9J33ZZB97.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5810000000" - }, - "appliesTo" : [ ] - }, - "68TFKFM9J33ZZB97.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "68TFKFM9J33ZZB97.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15263" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "68TFKFM9J33ZZB97.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "68TFKFM9J33ZZB97", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "68TFKFM9J33ZZB97.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "68TFKFM9J33ZZB97.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16078" - }, - "appliesTo" : [ ] - }, - "68TFKFM9J33ZZB97.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "68TFKFM9J33ZZB97.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6118000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "68TFKFM9J33ZZB97.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "68TFKFM9J33ZZB97", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "68TFKFM9J33ZZB97.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "68TFKFM9J33ZZB97.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6447" - }, - "appliesTo" : [ ] - }, - "68TFKFM9J33ZZB97.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "68TFKFM9J33ZZB97.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "68TFKFM9J33ZZB97.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "68TFKFM9J33ZZB97", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "68TFKFM9J33ZZB97.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "68TFKFM9J33ZZB97.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5088000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "68TFKFM9J33ZZB97.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "68TFKFM9J33ZZB97", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "68TFKFM9J33ZZB97.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "68TFKFM9J33ZZB97.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31900" - }, - "appliesTo" : [ ] - }, - "68TFKFM9J33ZZB97.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "68TFKFM9J33ZZB97.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "68TFKFM9J33ZZB97.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "68TFKFM9J33ZZB97", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "68TFKFM9J33ZZB97.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "68TFKFM9J33ZZB97.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6020" - }, - "appliesTo" : [ ] - }, - "68TFKFM9J33ZZB97.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "68TFKFM9J33ZZB97.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "68TFKFM9J33ZZB97.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "68TFKFM9J33ZZB97", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "68TFKFM9J33ZZB97.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "68TFKFM9J33ZZB97.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "5B3GT4NNY7ZCKUY7" : { - "5B3GT4NNY7ZCKUY7.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "5B3GT4NNY7ZCKUY7", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "5B3GT4NNY7ZCKUY7.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "5B3GT4NNY7ZCKUY7.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "11.8580000000" - }, - "appliesTo" : [ ] - }, - "5B3GT4NNY7ZCKUY7.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "5B3GT4NNY7ZCKUY7.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "103872" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5B3GT4NNY7ZCKUY7.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "5B3GT4NNY7ZCKUY7", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "5B3GT4NNY7ZCKUY7.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "5B3GT4NNY7ZCKUY7.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "205000" - }, - "appliesTo" : [ ] - }, - "5B3GT4NNY7ZCKUY7.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "5B3GT4NNY7ZCKUY7.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5B3GT4NNY7ZCKUY7.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "5B3GT4NNY7ZCKUY7", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "5B3GT4NNY7ZCKUY7.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "5B3GT4NNY7ZCKUY7.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "225839" - }, - "appliesTo" : [ ] - }, - "5B3GT4NNY7ZCKUY7.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "5B3GT4NNY7ZCKUY7.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.5940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "5B3GT4NNY7ZCKUY7.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "5B3GT4NNY7ZCKUY7", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "5B3GT4NNY7ZCKUY7.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "5B3GT4NNY7ZCKUY7.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "407838" - }, - "appliesTo" : [ ] - }, - "5B3GT4NNY7ZCKUY7.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "5B3GT4NNY7ZCKUY7.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "5B3GT4NNY7ZCKUY7.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "5B3GT4NNY7ZCKUY7", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "5B3GT4NNY7ZCKUY7.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "5B3GT4NNY7ZCKUY7.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "210182" - }, - "appliesTo" : [ ] - }, - "5B3GT4NNY7ZCKUY7.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "5B3GT4NNY7ZCKUY7.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.9980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "5B3GT4NNY7ZCKUY7.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "5B3GT4NNY7ZCKUY7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5B3GT4NNY7ZCKUY7.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "5B3GT4NNY7ZCKUY7.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "26.9650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "5B3GT4NNY7ZCKUY7.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "5B3GT4NNY7ZCKUY7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5B3GT4NNY7ZCKUY7.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "5B3GT4NNY7ZCKUY7.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "114163" - }, - "appliesTo" : [ ] - }, - "5B3GT4NNY7ZCKUY7.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "5B3GT4NNY7ZCKUY7.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.0320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "5B3GT4NNY7ZCKUY7.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "5B3GT4NNY7ZCKUY7", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "5B3GT4NNY7ZCKUY7.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "5B3GT4NNY7ZCKUY7.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.6310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "5B3GT4NNY7ZCKUY7.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "5B3GT4NNY7ZCKUY7", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "5B3GT4NNY7ZCKUY7.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "5B3GT4NNY7ZCKUY7.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "17.9180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "5B3GT4NNY7ZCKUY7.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "5B3GT4NNY7ZCKUY7", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "5B3GT4NNY7ZCKUY7.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "5B3GT4NNY7ZCKUY7.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "5B3GT4NNY7ZCKUY7.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "5B3GT4NNY7ZCKUY7.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "446876" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "5B3GT4NNY7ZCKUY7.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "5B3GT4NNY7ZCKUY7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "5B3GT4NNY7ZCKUY7.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "5B3GT4NNY7ZCKUY7.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "225169" - }, - "appliesTo" : [ ] - }, - "5B3GT4NNY7ZCKUY7.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "5B3GT4NNY7ZCKUY7.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "5B3GT4NNY7ZCKUY7.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "5B3GT4NNY7ZCKUY7", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "5B3GT4NNY7ZCKUY7.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "5B3GT4NNY7ZCKUY7.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "24.4980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "WAWEH2Q4B3BTK68V" : { - "WAWEH2Q4B3BTK68V.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "WAWEH2Q4B3BTK68V", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "WAWEH2Q4B3BTK68V.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "WAWEH2Q4B3BTK68V.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20498" - }, - "appliesTo" : [ ] - }, - "WAWEH2Q4B3BTK68V.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "WAWEH2Q4B3BTK68V.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WAWEH2Q4B3BTK68V.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "WAWEH2Q4B3BTK68V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WAWEH2Q4B3BTK68V.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "WAWEH2Q4B3BTK68V.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "WAWEH2Q4B3BTK68V.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "WAWEH2Q4B3BTK68V.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46203" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WAWEH2Q4B3BTK68V.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "WAWEH2Q4B3BTK68V", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "WAWEH2Q4B3BTK68V.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "WAWEH2Q4B3BTK68V.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "40177" - }, - "appliesTo" : [ ] - }, - "WAWEH2Q4B3BTK68V.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "WAWEH2Q4B3BTK68V.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WAWEH2Q4B3BTK68V.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "WAWEH2Q4B3BTK68V", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "WAWEH2Q4B3BTK68V.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "WAWEH2Q4B3BTK68V.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "83991" - }, - "appliesTo" : [ ] - }, - "WAWEH2Q4B3BTK68V.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "WAWEH2Q4B3BTK68V.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WAWEH2Q4B3BTK68V.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "WAWEH2Q4B3BTK68V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "WAWEH2Q4B3BTK68V.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "WAWEH2Q4B3BTK68V.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "WAWEH2Q4B3BTK68V.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "WAWEH2Q4B3BTK68V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "WAWEH2Q4B3BTK68V.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "WAWEH2Q4B3BTK68V.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9550000000" - }, - "appliesTo" : [ ] - }, - "WAWEH2Q4B3BTK68V.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "WAWEH2Q4B3BTK68V.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "51378" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WAWEH2Q4B3BTK68V.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "WAWEH2Q4B3BTK68V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "WAWEH2Q4B3BTK68V.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "WAWEH2Q4B3BTK68V.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "44676" - }, - "appliesTo" : [ ] - }, - "WAWEH2Q4B3BTK68V.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "WAWEH2Q4B3BTK68V.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WAWEH2Q4B3BTK68V.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "WAWEH2Q4B3BTK68V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WAWEH2Q4B3BTK68V.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "WAWEH2Q4B3BTK68V.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.6510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WAWEH2Q4B3BTK68V.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "WAWEH2Q4B3BTK68V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "WAWEH2Q4B3BTK68V.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "WAWEH2Q4B3BTK68V.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "WAWEH2Q4B3BTK68V.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "WAWEH2Q4B3BTK68V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WAWEH2Q4B3BTK68V.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "WAWEH2Q4B3BTK68V.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23573" - }, - "appliesTo" : [ ] - }, - "WAWEH2Q4B3BTK68V.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "WAWEH2Q4B3BTK68V.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WAWEH2Q4B3BTK68V.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "WAWEH2Q4B3BTK68V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "WAWEH2Q4B3BTK68V.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "WAWEH2Q4B3BTK68V.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "WAWEH2Q4B3BTK68V.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "WAWEH2Q4B3BTK68V.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "100701" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WAWEH2Q4B3BTK68V.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "WAWEH2Q4B3BTK68V", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "WAWEH2Q4B3BTK68V.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "WAWEH2Q4B3BTK68V.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "B6RS3QA3WVNWUFKM" : { - "B6RS3QA3WVNWUFKM.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "B6RS3QA3WVNWUFKM", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "B6RS3QA3WVNWUFKM.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "B6RS3QA3WVNWUFKM.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "50335" - }, - "appliesTo" : [ ] - }, - "B6RS3QA3WVNWUFKM.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "B6RS3QA3WVNWUFKM.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "B6RS3QA3WVNWUFKM.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "B6RS3QA3WVNWUFKM", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "B6RS3QA3WVNWUFKM.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "B6RS3QA3WVNWUFKM.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "106048" - }, - "appliesTo" : [ ] - }, - "B6RS3QA3WVNWUFKM.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "B6RS3QA3WVNWUFKM.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "B6RS3QA3WVNWUFKM.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "B6RS3QA3WVNWUFKM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "B6RS3QA3WVNWUFKM.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "B6RS3QA3WVNWUFKM.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18575" - }, - "appliesTo" : [ ] - }, - "B6RS3QA3WVNWUFKM.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "B6RS3QA3WVNWUFKM.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "B6RS3QA3WVNWUFKM.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "B6RS3QA3WVNWUFKM", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "B6RS3QA3WVNWUFKM.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "B6RS3QA3WVNWUFKM.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "99940" - }, - "appliesTo" : [ ] - }, - "B6RS3QA3WVNWUFKM.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "B6RS3QA3WVNWUFKM.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "B6RS3QA3WVNWUFKM.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "B6RS3QA3WVNWUFKM", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "B6RS3QA3WVNWUFKM.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "B6RS3QA3WVNWUFKM.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.1650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "B6RS3QA3WVNWUFKM.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "B6RS3QA3WVNWUFKM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "B6RS3QA3WVNWUFKM.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "B6RS3QA3WVNWUFKM.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "36997" - }, - "appliesTo" : [ ] - }, - "B6RS3QA3WVNWUFKM.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "B6RS3QA3WVNWUFKM.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "B6RS3QA3WVNWUFKM.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "B6RS3QA3WVNWUFKM", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "B6RS3QA3WVNWUFKM.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "B6RS3QA3WVNWUFKM.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "B6RS3QA3WVNWUFKM.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "B6RS3QA3WVNWUFKM", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "B6RS3QA3WVNWUFKM.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "B6RS3QA3WVNWUFKM.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35999" - }, - "appliesTo" : [ ] - }, - "B6RS3QA3WVNWUFKM.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "B6RS3QA3WVNWUFKM.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "B6RS3QA3WVNWUFKM.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "B6RS3QA3WVNWUFKM", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "B6RS3QA3WVNWUFKM.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "B6RS3QA3WVNWUFKM.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0620000000" - }, - "appliesTo" : [ ] - }, - "B6RS3QA3WVNWUFKM.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "B6RS3QA3WVNWUFKM.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18066" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "B6RS3QA3WVNWUFKM.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "B6RS3QA3WVNWUFKM", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "B6RS3QA3WVNWUFKM.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "B6RS3QA3WVNWUFKM.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "53203" - }, - "appliesTo" : [ ] - }, - "B6RS3QA3WVNWUFKM.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "B6RS3QA3WVNWUFKM.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "B6RS3QA3WVNWUFKM.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "B6RS3QA3WVNWUFKM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "B6RS3QA3WVNWUFKM.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "B6RS3QA3WVNWUFKM.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), d2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "PPNHZGKEWXG9QZV3" : { - "PPNHZGKEWXG9QZV3.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "PPNHZGKEWXG9QZV3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PPNHZGKEWXG9QZV3.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "PPNHZGKEWXG9QZV3.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "54301" - }, - "appliesTo" : [ ] - }, - "PPNHZGKEWXG9QZV3.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "PPNHZGKEWXG9QZV3.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PPNHZGKEWXG9QZV3.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "PPNHZGKEWXG9QZV3", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "PPNHZGKEWXG9QZV3.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "PPNHZGKEWXG9QZV3.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "59021" - }, - "appliesTo" : [ ] - }, - "PPNHZGKEWXG9QZV3.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "PPNHZGKEWXG9QZV3.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PPNHZGKEWXG9QZV3.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "PPNHZGKEWXG9QZV3", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "PPNHZGKEWXG9QZV3.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "PPNHZGKEWXG9QZV3.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.2550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "PPNHZGKEWXG9QZV3.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "PPNHZGKEWXG9QZV3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PPNHZGKEWXG9QZV3.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "PPNHZGKEWXG9QZV3.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "115685" - }, - "appliesTo" : [ ] - }, - "PPNHZGKEWXG9QZV3.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "PPNHZGKEWXG9QZV3.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PPNHZGKEWXG9QZV3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "PPNHZGKEWXG9QZV3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PPNHZGKEWXG9QZV3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "PPNHZGKEWXG9QZV3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "97547" - }, - "appliesTo" : [ ] - }, - "PPNHZGKEWXG9QZV3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "PPNHZGKEWXG9QZV3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PPNHZGKEWXG9QZV3.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "PPNHZGKEWXG9QZV3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PPNHZGKEWXG9QZV3.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "PPNHZGKEWXG9QZV3.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "PPNHZGKEWXG9QZV3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "PPNHZGKEWXG9QZV3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PPNHZGKEWXG9QZV3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "PPNHZGKEWXG9QZV3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "40489" - }, - "appliesTo" : [ ] - }, - "PPNHZGKEWXG9QZV3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "PPNHZGKEWXG9QZV3.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PPNHZGKEWXG9QZV3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "PPNHZGKEWXG9QZV3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PPNHZGKEWXG9QZV3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "PPNHZGKEWXG9QZV3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "51888" - }, - "appliesTo" : [ ] - }, - "PPNHZGKEWXG9QZV3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "PPNHZGKEWXG9QZV3.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PPNHZGKEWXG9QZV3.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "PPNHZGKEWXG9QZV3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PPNHZGKEWXG9QZV3.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "PPNHZGKEWXG9QZV3.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.3508000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "PPNHZGKEWXG9QZV3.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "PPNHZGKEWXG9QZV3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PPNHZGKEWXG9QZV3.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "PPNHZGKEWXG9QZV3.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1211000000" - }, - "appliesTo" : [ ] - }, - "PPNHZGKEWXG9QZV3.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "PPNHZGKEWXG9QZV3.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27341" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PPNHZGKEWXG9QZV3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "PPNHZGKEWXG9QZV3", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "PPNHZGKEWXG9QZV3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "PPNHZGKEWXG9QZV3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3580000000" - }, - "appliesTo" : [ ] - }, - "PPNHZGKEWXG9QZV3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "PPNHZGKEWXG9QZV3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20659" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PPNHZGKEWXG9QZV3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "PPNHZGKEWXG9QZV3", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "PPNHZGKEWXG9QZV3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "PPNHZGKEWXG9QZV3.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.5180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "4CWD92A352MDCZ9Q" : { - "4CWD92A352MDCZ9Q.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "4CWD92A352MDCZ9Q", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "4CWD92A352MDCZ9Q.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "4CWD92A352MDCZ9Q.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2173" - }, - "appliesTo" : [ ] - }, - "4CWD92A352MDCZ9Q.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "4CWD92A352MDCZ9Q.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4CWD92A352MDCZ9Q.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "4CWD92A352MDCZ9Q", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "4CWD92A352MDCZ9Q.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "4CWD92A352MDCZ9Q.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "4CWD92A352MDCZ9Q.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "4CWD92A352MDCZ9Q.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1098" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4CWD92A352MDCZ9Q.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "4CWD92A352MDCZ9Q", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "4CWD92A352MDCZ9Q.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "4CWD92A352MDCZ9Q.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0530000000" - }, - "appliesTo" : [ ] - }, - "4CWD92A352MDCZ9Q.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "4CWD92A352MDCZ9Q.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "657" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4CWD92A352MDCZ9Q.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "4CWD92A352MDCZ9Q", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "4CWD92A352MDCZ9Q.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "4CWD92A352MDCZ9Q.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1638" - }, - "appliesTo" : [ ] - }, - "4CWD92A352MDCZ9Q.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "4CWD92A352MDCZ9Q.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4CWD92A352MDCZ9Q.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "4CWD92A352MDCZ9Q", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4CWD92A352MDCZ9Q.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "4CWD92A352MDCZ9Q.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1183" - }, - "appliesTo" : [ ] - }, - "4CWD92A352MDCZ9Q.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "4CWD92A352MDCZ9Q.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4CWD92A352MDCZ9Q.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "4CWD92A352MDCZ9Q", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "4CWD92A352MDCZ9Q.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "4CWD92A352MDCZ9Q.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1128" - }, - "appliesTo" : [ ] - }, - "4CWD92A352MDCZ9Q.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "4CWD92A352MDCZ9Q.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4CWD92A352MDCZ9Q.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "4CWD92A352MDCZ9Q", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "4CWD92A352MDCZ9Q.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "4CWD92A352MDCZ9Q.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2780" - }, - "appliesTo" : [ ] - }, - "4CWD92A352MDCZ9Q.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "4CWD92A352MDCZ9Q.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4CWD92A352MDCZ9Q.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "4CWD92A352MDCZ9Q", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4CWD92A352MDCZ9Q.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "4CWD92A352MDCZ9Q.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "4CWD92A352MDCZ9Q.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "4CWD92A352MDCZ9Q", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4CWD92A352MDCZ9Q.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "4CWD92A352MDCZ9Q.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "631" - }, - "appliesTo" : [ ] - }, - "4CWD92A352MDCZ9Q.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "4CWD92A352MDCZ9Q.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4CWD92A352MDCZ9Q.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "4CWD92A352MDCZ9Q", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "4CWD92A352MDCZ9Q.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "4CWD92A352MDCZ9Q.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "4CWD92A352MDCZ9Q.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "4CWD92A352MDCZ9Q", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "4CWD92A352MDCZ9Q.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "4CWD92A352MDCZ9Q.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "7NHNWKWH69EZHFFD" : { - "7NHNWKWH69EZHFFD.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "7NHNWKWH69EZHFFD", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "7NHNWKWH69EZHFFD.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "7NHNWKWH69EZHFFD.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1345" - }, - "appliesTo" : [ ] - }, - "7NHNWKWH69EZHFFD.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "7NHNWKWH69EZHFFD.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7NHNWKWH69EZHFFD.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "7NHNWKWH69EZHFFD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7NHNWKWH69EZHFFD.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "7NHNWKWH69EZHFFD.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7NHNWKWH69EZHFFD.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "7NHNWKWH69EZHFFD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7NHNWKWH69EZHFFD.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "7NHNWKWH69EZHFFD.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2149" - }, - "appliesTo" : [ ] - }, - "7NHNWKWH69EZHFFD.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "7NHNWKWH69EZHFFD.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7NHNWKWH69EZHFFD.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "7NHNWKWH69EZHFFD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7NHNWKWH69EZHFFD.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "7NHNWKWH69EZHFFD.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "828" - }, - "appliesTo" : [ ] - }, - "7NHNWKWH69EZHFFD.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "7NHNWKWH69EZHFFD.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7NHNWKWH69EZHFFD.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "7NHNWKWH69EZHFFD", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "7NHNWKWH69EZHFFD.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "7NHNWKWH69EZHFFD.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7NHNWKWH69EZHFFD.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "7NHNWKWH69EZHFFD", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "7NHNWKWH69EZHFFD.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "7NHNWKWH69EZHFFD.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5434" - }, - "appliesTo" : [ ] - }, - "7NHNWKWH69EZHFFD.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "7NHNWKWH69EZHFFD.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7NHNWKWH69EZHFFD.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "7NHNWKWH69EZHFFD", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "7NHNWKWH69EZHFFD.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "7NHNWKWH69EZHFFD.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "842" - }, - "appliesTo" : [ ] - }, - "7NHNWKWH69EZHFFD.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "7NHNWKWH69EZHFFD.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7NHNWKWH69EZHFFD.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "7NHNWKWH69EZHFFD", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7NHNWKWH69EZHFFD.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "7NHNWKWH69EZHFFD.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2273" - }, - "appliesTo" : [ ] - }, - "7NHNWKWH69EZHFFD.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "7NHNWKWH69EZHFFD.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7NHNWKWH69EZHFFD.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "7NHNWKWH69EZHFFD", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7NHNWKWH69EZHFFD.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "7NHNWKWH69EZHFFD.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7NHNWKWH69EZHFFD.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "7NHNWKWH69EZHFFD", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "7NHNWKWH69EZHFFD.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "7NHNWKWH69EZHFFD.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4228" - }, - "appliesTo" : [ ] - }, - "7NHNWKWH69EZHFFD.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "7NHNWKWH69EZHFFD.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7NHNWKWH69EZHFFD.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "7NHNWKWH69EZHFFD", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "7NHNWKWH69EZHFFD.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "7NHNWKWH69EZHFFD.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1954" - }, - "appliesTo" : [ ] - }, - "7NHNWKWH69EZHFFD.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "7NHNWKWH69EZHFFD.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "EZC8PDJ8658WHH9T" : { - "EZC8PDJ8658WHH9T.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "EZC8PDJ8658WHH9T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EZC8PDJ8658WHH9T.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "EZC8PDJ8658WHH9T.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8301000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "EZC8PDJ8658WHH9T.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "EZC8PDJ8658WHH9T", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "EZC8PDJ8658WHH9T.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "EZC8PDJ8658WHH9T.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "EZC8PDJ8658WHH9T.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "EZC8PDJ8658WHH9T.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26548" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EZC8PDJ8658WHH9T.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "EZC8PDJ8658WHH9T", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "EZC8PDJ8658WHH9T.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "EZC8PDJ8658WHH9T.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "EZC8PDJ8658WHH9T.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "EZC8PDJ8658WHH9T.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13197" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EZC8PDJ8658WHH9T.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "EZC8PDJ8658WHH9T", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EZC8PDJ8658WHH9T.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "EZC8PDJ8658WHH9T.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14096" - }, - "appliesTo" : [ ] - }, - "EZC8PDJ8658WHH9T.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "EZC8PDJ8658WHH9T.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6664000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "EZC8PDJ8658WHH9T.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "EZC8PDJ8658WHH9T", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EZC8PDJ8658WHH9T.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "EZC8PDJ8658WHH9T.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2885000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "EZC8PDJ8658WHH9T.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "EZC8PDJ8658WHH9T", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "EZC8PDJ8658WHH9T.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "EZC8PDJ8658WHH9T.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12304" - }, - "appliesTo" : [ ] - }, - "EZC8PDJ8658WHH9T.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "EZC8PDJ8658WHH9T.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EZC8PDJ8658WHH9T.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "EZC8PDJ8658WHH9T", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EZC8PDJ8658WHH9T.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "EZC8PDJ8658WHH9T.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6084000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "EZC8PDJ8658WHH9T.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "EZC8PDJ8658WHH9T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EZC8PDJ8658WHH9T.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "EZC8PDJ8658WHH9T.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9396000000" - }, - "appliesTo" : [ ] - }, - "EZC8PDJ8658WHH9T.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "EZC8PDJ8658WHH9T.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7092" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "EZC8PDJ8658WHH9T.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "EZC8PDJ8658WHH9T", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "EZC8PDJ8658WHH9T.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "EZC8PDJ8658WHH9T.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6152" - }, - "appliesTo" : [ ] - }, - "EZC8PDJ8658WHH9T.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "EZC8PDJ8658WHH9T.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EZC8PDJ8658WHH9T.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "EZC8PDJ8658WHH9T", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EZC8PDJ8658WHH9T.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "EZC8PDJ8658WHH9T.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15039" - }, - "appliesTo" : [ ] - }, - "EZC8PDJ8658WHH9T.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "EZC8PDJ8658WHH9T.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "EZC8PDJ8658WHH9T.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "EZC8PDJ8658WHH9T", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EZC8PDJ8658WHH9T.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "EZC8PDJ8658WHH9T.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1374000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "EZC8PDJ8658WHH9T.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "EZC8PDJ8658WHH9T", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EZC8PDJ8658WHH9T.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "EZC8PDJ8658WHH9T.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31044" - }, - "appliesTo" : [ ] - }, - "EZC8PDJ8658WHH9T.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "EZC8PDJ8658WHH9T.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "A3G83M36QWPVFFSP" : { - "A3G83M36QWPVFFSP.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "A3G83M36QWPVFFSP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "A3G83M36QWPVFFSP.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "A3G83M36QWPVFFSP.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "419" - }, - "appliesTo" : [ ] - }, - "A3G83M36QWPVFFSP.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "A3G83M36QWPVFFSP.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "A3G83M36QWPVFFSP.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "A3G83M36QWPVFFSP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "A3G83M36QWPVFFSP.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "A3G83M36QWPVFFSP.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0300000000" - }, - "appliesTo" : [ ] - }, - "A3G83M36QWPVFFSP.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "A3G83M36QWPVFFSP.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "165" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "A3G83M36QWPVFFSP.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "A3G83M36QWPVFFSP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "A3G83M36QWPVFFSP.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "A3G83M36QWPVFFSP.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "259" - }, - "appliesTo" : [ ] - }, - "A3G83M36QWPVFFSP.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "A3G83M36QWPVFFSP.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "A3G83M36QWPVFFSP.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "A3G83M36QWPVFFSP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "A3G83M36QWPVFFSP.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "A3G83M36QWPVFFSP.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "A3G83M36QWPVFFSP.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "A3G83M36QWPVFFSP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "A3G83M36QWPVFFSP.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "A3G83M36QWPVFFSP.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "960" - }, - "appliesTo" : [ ] - }, - "A3G83M36QWPVFFSP.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "A3G83M36QWPVFFSP.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "GS7JMPJ9ZA8J6K6K" : { - "GS7JMPJ9ZA8J6K6K.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "GS7JMPJ9ZA8J6K6K", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GS7JMPJ9ZA8J6K6K.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "GS7JMPJ9ZA8J6K6K.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1086" - }, - "appliesTo" : [ ] - }, - "GS7JMPJ9ZA8J6K6K.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "GS7JMPJ9ZA8J6K6K.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GS7JMPJ9ZA8J6K6K.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "GS7JMPJ9ZA8J6K6K", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GS7JMPJ9ZA8J6K6K.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "GS7JMPJ9ZA8J6K6K.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1838" - }, - "appliesTo" : [ ] - }, - "GS7JMPJ9ZA8J6K6K.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "GS7JMPJ9ZA8J6K6K.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GS7JMPJ9ZA8J6K6K.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "GS7JMPJ9ZA8J6K6K", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GS7JMPJ9ZA8J6K6K.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "GS7JMPJ9ZA8J6K6K.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GS7JMPJ9ZA8J6K6K.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "GS7JMPJ9ZA8J6K6K", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GS7JMPJ9ZA8J6K6K.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "GS7JMPJ9ZA8J6K6K.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1651" - }, - "appliesTo" : [ ] - }, - "GS7JMPJ9ZA8J6K6K.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "GS7JMPJ9ZA8J6K6K.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GS7JMPJ9ZA8J6K6K.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "GS7JMPJ9ZA8J6K6K", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "GS7JMPJ9ZA8J6K6K.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "GS7JMPJ9ZA8J6K6K.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "GS7JMPJ9ZA8J6K6K.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "GS7JMPJ9ZA8J6K6K.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3372" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "PHH3YFDMQYEVPEK4" : { - "PHH3YFDMQYEVPEK4.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "PHH3YFDMQYEVPEK4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PHH3YFDMQYEVPEK4.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "PHH3YFDMQYEVPEK4.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17327" - }, - "appliesTo" : [ ] - }, - "PHH3YFDMQYEVPEK4.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "PHH3YFDMQYEVPEK4.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PHH3YFDMQYEVPEK4.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "PHH3YFDMQYEVPEK4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PHH3YFDMQYEVPEK4.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "PHH3YFDMQYEVPEK4.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33906" - }, - "appliesTo" : [ ] - }, - "PHH3YFDMQYEVPEK4.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "PHH3YFDMQYEVPEK4.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PHH3YFDMQYEVPEK4.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "PHH3YFDMQYEVPEK4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PHH3YFDMQYEVPEK4.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "PHH3YFDMQYEVPEK4.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.7610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "PHH3YFDMQYEVPEK4.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "PHH3YFDMQYEVPEK4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PHH3YFDMQYEVPEK4.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "PHH3YFDMQYEVPEK4.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19900" - }, - "appliesTo" : [ ] - }, - "PHH3YFDMQYEVPEK4.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "PHH3YFDMQYEVPEK4.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PHH3YFDMQYEVPEK4.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "PHH3YFDMQYEVPEK4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PHH3YFDMQYEVPEK4.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "PHH3YFDMQYEVPEK4.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26447" - }, - "appliesTo" : [ ] - }, - "PHH3YFDMQYEVPEK4.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "PHH3YFDMQYEVPEK4.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PHH3YFDMQYEVPEK4.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "PHH3YFDMQYEVPEK4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PHH3YFDMQYEVPEK4.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "PHH3YFDMQYEVPEK4.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "PHH3YFDMQYEVPEK4.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "PHH3YFDMQYEVPEK4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PHH3YFDMQYEVPEK4.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "PHH3YFDMQYEVPEK4.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "49752" - }, - "appliesTo" : [ ] - }, - "PHH3YFDMQYEVPEK4.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "PHH3YFDMQYEVPEK4.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PHH3YFDMQYEVPEK4.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "PHH3YFDMQYEVPEK4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PHH3YFDMQYEVPEK4.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "PHH3YFDMQYEVPEK4.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1550000000" - }, - "appliesTo" : [ ] - }, - "PHH3YFDMQYEVPEK4.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "PHH3YFDMQYEVPEK4.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30361" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PHH3YFDMQYEVPEK4.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "PHH3YFDMQYEVPEK4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PHH3YFDMQYEVPEK4.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "PHH3YFDMQYEVPEK4.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "59511" - }, - "appliesTo" : [ ] - }, - "PHH3YFDMQYEVPEK4.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "PHH3YFDMQYEVPEK4.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PHH3YFDMQYEVPEK4.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "PHH3YFDMQYEVPEK4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PHH3YFDMQYEVPEK4.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "PHH3YFDMQYEVPEK4.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38948" - }, - "appliesTo" : [ ] - }, - "PHH3YFDMQYEVPEK4.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "PHH3YFDMQYEVPEK4.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PHH3YFDMQYEVPEK4.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "PHH3YFDMQYEVPEK4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PHH3YFDMQYEVPEK4.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "PHH3YFDMQYEVPEK4.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.1450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "PHH3YFDMQYEVPEK4.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "PHH3YFDMQYEVPEK4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PHH3YFDMQYEVPEK4.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "PHH3YFDMQYEVPEK4.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "T87WP8AU8KNBMRYM" : { - "T87WP8AU8KNBMRYM.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "T87WP8AU8KNBMRYM", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "T87WP8AU8KNBMRYM.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "T87WP8AU8KNBMRYM.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35741" - }, - "appliesTo" : [ ] - }, - "T87WP8AU8KNBMRYM.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "T87WP8AU8KNBMRYM.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "T87WP8AU8KNBMRYM.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "T87WP8AU8KNBMRYM", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "T87WP8AU8KNBMRYM.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "T87WP8AU8KNBMRYM.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17934" - }, - "appliesTo" : [ ] - }, - "T87WP8AU8KNBMRYM.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "T87WP8AU8KNBMRYM.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "T87WP8AU8KNBMRYM.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "T87WP8AU8KNBMRYM", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "T87WP8AU8KNBMRYM.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "T87WP8AU8KNBMRYM.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "52847" - }, - "appliesTo" : [ ] - }, - "T87WP8AU8KNBMRYM.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "T87WP8AU8KNBMRYM.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "T87WP8AU8KNBMRYM.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "T87WP8AU8KNBMRYM", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "T87WP8AU8KNBMRYM.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "T87WP8AU8KNBMRYM.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "T87WP8AU8KNBMRYM.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "T87WP8AU8KNBMRYM.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "99615" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "T87WP8AU8KNBMRYM.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "T87WP8AU8KNBMRYM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "T87WP8AU8KNBMRYM.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "T87WP8AU8KNBMRYM.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "T87WP8AU8KNBMRYM.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "T87WP8AU8KNBMRYM", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "T87WP8AU8KNBMRYM.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "T87WP8AU8KNBMRYM.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9090000000" - }, - "appliesTo" : [ ] - }, - "T87WP8AU8KNBMRYM.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "T87WP8AU8KNBMRYM.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "50162" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "T87WP8AU8KNBMRYM.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "T87WP8AU8KNBMRYM", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "T87WP8AU8KNBMRYM.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "T87WP8AU8KNBMRYM.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "105351" - }, - "appliesTo" : [ ] - }, - "T87WP8AU8KNBMRYM.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "T87WP8AU8KNBMRYM.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "T87WP8AU8KNBMRYM.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "T87WP8AU8KNBMRYM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "T87WP8AU8KNBMRYM.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "T87WP8AU8KNBMRYM.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18407" - }, - "appliesTo" : [ ] - }, - "T87WP8AU8KNBMRYM.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "T87WP8AU8KNBMRYM.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "T87WP8AU8KNBMRYM.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "T87WP8AU8KNBMRYM", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "T87WP8AU8KNBMRYM.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "T87WP8AU8KNBMRYM.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.1330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "T87WP8AU8KNBMRYM.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "T87WP8AU8KNBMRYM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "T87WP8AU8KNBMRYM.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "T87WP8AU8KNBMRYM.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "36667" - }, - "appliesTo" : [ ] - }, - "T87WP8AU8KNBMRYM.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "T87WP8AU8KNBMRYM.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "T87WP8AU8KNBMRYM.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "T87WP8AU8KNBMRYM", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "T87WP8AU8KNBMRYM.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "T87WP8AU8KNBMRYM.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "M9PVZPV4MHCKEKFH" : { - "M9PVZPV4MHCKEKFH.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "M9PVZPV4MHCKEKFH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M9PVZPV4MHCKEKFH.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "M9PVZPV4MHCKEKFH.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2025000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "M9PVZPV4MHCKEKFH.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "M9PVZPV4MHCKEKFH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M9PVZPV4MHCKEKFH.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "M9PVZPV4MHCKEKFH.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "517" - }, - "appliesTo" : [ ] - }, - "M9PVZPV4MHCKEKFH.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "M9PVZPV4MHCKEKFH.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "M9PVZPV4MHCKEKFH.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "M9PVZPV4MHCKEKFH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M9PVZPV4MHCKEKFH.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "M9PVZPV4MHCKEKFH.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "594" - }, - "appliesTo" : [ ] - }, - "M9PVZPV4MHCKEKFH.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "M9PVZPV4MHCKEKFH.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1279000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "M9PVZPV4MHCKEKFH.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "M9PVZPV4MHCKEKFH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M9PVZPV4MHCKEKFH.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "M9PVZPV4MHCKEKFH.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1839000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "M9PVZPV4MHCKEKFH.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "M9PVZPV4MHCKEKFH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M9PVZPV4MHCKEKFH.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "M9PVZPV4MHCKEKFH.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1691" - }, - "appliesTo" : [ ] - }, - "M9PVZPV4MHCKEKFH.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "M9PVZPV4MHCKEKFH.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "M9PVZPV4MHCKEKFH.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "M9PVZPV4MHCKEKFH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M9PVZPV4MHCKEKFH.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "M9PVZPV4MHCKEKFH.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3946" - }, - "appliesTo" : [ ] - }, - "M9PVZPV4MHCKEKFH.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "M9PVZPV4MHCKEKFH.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "M9PVZPV4MHCKEKFH.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "M9PVZPV4MHCKEKFH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M9PVZPV4MHCKEKFH.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "M9PVZPV4MHCKEKFH.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1464000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "M9PVZPV4MHCKEKFH.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "M9PVZPV4MHCKEKFH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M9PVZPV4MHCKEKFH.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "M9PVZPV4MHCKEKFH.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1209" - }, - "appliesTo" : [ ] - }, - "M9PVZPV4MHCKEKFH.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "M9PVZPV4MHCKEKFH.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "M9PVZPV4MHCKEKFH.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "M9PVZPV4MHCKEKFH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M9PVZPV4MHCKEKFH.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "M9PVZPV4MHCKEKFH.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1594000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "M9PVZPV4MHCKEKFH.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "M9PVZPV4MHCKEKFH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M9PVZPV4MHCKEKFH.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "M9PVZPV4MHCKEKFH.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1051" - }, - "appliesTo" : [ ] - }, - "M9PVZPV4MHCKEKFH.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "M9PVZPV4MHCKEKFH.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "M9PVZPV4MHCKEKFH.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "M9PVZPV4MHCKEKFH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M9PVZPV4MHCKEKFH.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "M9PVZPV4MHCKEKFH.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1539" - }, - "appliesTo" : [ ] - }, - "M9PVZPV4MHCKEKFH.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "M9PVZPV4MHCKEKFH.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "M9PVZPV4MHCKEKFH.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "M9PVZPV4MHCKEKFH", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M9PVZPV4MHCKEKFH.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "M9PVZPV4MHCKEKFH.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3553" - }, - "appliesTo" : [ ] - }, - "M9PVZPV4MHCKEKFH.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "M9PVZPV4MHCKEKFH.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "C6M58F98AZ4YZW7U" : { - "C6M58F98AZ4YZW7U.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "C6M58F98AZ4YZW7U", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "C6M58F98AZ4YZW7U.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "C6M58F98AZ4YZW7U.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15981" - }, - "appliesTo" : [ ] - }, - "C6M58F98AZ4YZW7U.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "C6M58F98AZ4YZW7U.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "C6M58F98AZ4YZW7U.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "C6M58F98AZ4YZW7U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "C6M58F98AZ4YZW7U.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "C6M58F98AZ4YZW7U.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8360000000" - }, - "appliesTo" : [ ] - }, - "C6M58F98AZ4YZW7U.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "C6M58F98AZ4YZW7U.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16082" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "C6M58F98AZ4YZW7U.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "C6M58F98AZ4YZW7U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "C6M58F98AZ4YZW7U.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "C6M58F98AZ4YZW7U.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "C6M58F98AZ4YZW7U.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "C6M58F98AZ4YZW7U.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32110" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "C6M58F98AZ4YZW7U.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "C6M58F98AZ4YZW7U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "C6M58F98AZ4YZW7U.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "C6M58F98AZ4YZW7U.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "C6M58F98AZ4YZW7U.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "C6M58F98AZ4YZW7U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "C6M58F98AZ4YZW7U.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "C6M58F98AZ4YZW7U.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "C6M58F98AZ4YZW7U.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "C6M58F98AZ4YZW7U", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "C6M58F98AZ4YZW7U.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "C6M58F98AZ4YZW7U.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46642" - }, - "appliesTo" : [ ] - }, - "C6M58F98AZ4YZW7U.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "C6M58F98AZ4YZW7U.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "C6M58F98AZ4YZW7U.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "C6M58F98AZ4YZW7U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "C6M58F98AZ4YZW7U.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "C6M58F98AZ4YZW7U.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "C6M58F98AZ4YZW7U.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "C6M58F98AZ4YZW7U.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "93854" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "C6M58F98AZ4YZW7U.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "C6M58F98AZ4YZW7U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "C6M58F98AZ4YZW7U.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "C6M58F98AZ4YZW7U.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46982" - }, - "appliesTo" : [ ] - }, - "C6M58F98AZ4YZW7U.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "C6M58F98AZ4YZW7U.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "C6M58F98AZ4YZW7U.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "C6M58F98AZ4YZW7U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "C6M58F98AZ4YZW7U.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "C6M58F98AZ4YZW7U.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "C6M58F98AZ4YZW7U.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "C6M58F98AZ4YZW7U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "C6M58F98AZ4YZW7U.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "C6M58F98AZ4YZW7U.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "92997" - }, - "appliesTo" : [ ] - }, - "C6M58F98AZ4YZW7U.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "C6M58F98AZ4YZW7U.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "C6M58F98AZ4YZW7U.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "C6M58F98AZ4YZW7U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "C6M58F98AZ4YZW7U.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "C6M58F98AZ4YZW7U.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "C6M58F98AZ4YZW7U.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "C6M58F98AZ4YZW7U", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "C6M58F98AZ4YZW7U.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "C6M58F98AZ4YZW7U.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "C6M58F98AZ4YZW7U.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "C6M58F98AZ4YZW7U.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31913" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "FUD3JZ9ZMGTAMQWY" : { - "FUD3JZ9ZMGTAMQWY.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "FUD3JZ9ZMGTAMQWY", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "FUD3JZ9ZMGTAMQWY.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "FUD3JZ9ZMGTAMQWY.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8583" - }, - "appliesTo" : [ ] - }, - "FUD3JZ9ZMGTAMQWY.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "FUD3JZ9ZMGTAMQWY.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FUD3JZ9ZMGTAMQWY.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "FUD3JZ9ZMGTAMQWY", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "FUD3JZ9ZMGTAMQWY.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "FUD3JZ9ZMGTAMQWY.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4960000000" - }, - "appliesTo" : [ ] - }, - "FUD3JZ9ZMGTAMQWY.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "FUD3JZ9ZMGTAMQWY.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4407" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FUD3JZ9ZMGTAMQWY.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "FUD3JZ9ZMGTAMQWY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FUD3JZ9ZMGTAMQWY.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "FUD3JZ9ZMGTAMQWY.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FUD3JZ9ZMGTAMQWY.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "FUD3JZ9ZMGTAMQWY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FUD3JZ9ZMGTAMQWY.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "FUD3JZ9ZMGTAMQWY.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FUD3JZ9ZMGTAMQWY.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "FUD3JZ9ZMGTAMQWY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FUD3JZ9ZMGTAMQWY.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "FUD3JZ9ZMGTAMQWY.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20123" - }, - "appliesTo" : [ ] - }, - "FUD3JZ9ZMGTAMQWY.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "FUD3JZ9ZMGTAMQWY.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FUD3JZ9ZMGTAMQWY.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "FUD3JZ9ZMGTAMQWY", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "FUD3JZ9ZMGTAMQWY.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "FUD3JZ9ZMGTAMQWY.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17023" - }, - "appliesTo" : [ ] - }, - "FUD3JZ9ZMGTAMQWY.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "FUD3JZ9ZMGTAMQWY.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FUD3JZ9ZMGTAMQWY.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "FUD3JZ9ZMGTAMQWY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FUD3JZ9ZMGTAMQWY.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "FUD3JZ9ZMGTAMQWY.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FUD3JZ9ZMGTAMQWY.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "FUD3JZ9ZMGTAMQWY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FUD3JZ9ZMGTAMQWY.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "FUD3JZ9ZMGTAMQWY.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9768" - }, - "appliesTo" : [ ] - }, - "FUD3JZ9ZMGTAMQWY.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "FUD3JZ9ZMGTAMQWY.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "FUD3JZ9ZMGTAMQWY.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "FUD3JZ9ZMGTAMQWY", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "FUD3JZ9ZMGTAMQWY.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "FUD3JZ9ZMGTAMQWY.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9038" - }, - "appliesTo" : [ ] - }, - "FUD3JZ9ZMGTAMQWY.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "FUD3JZ9ZMGTAMQWY.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FUD3JZ9ZMGTAMQWY.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "FUD3JZ9ZMGTAMQWY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FUD3JZ9ZMGTAMQWY.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "FUD3JZ9ZMGTAMQWY.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3900000000" - }, - "appliesTo" : [ ] - }, - "FUD3JZ9ZMGTAMQWY.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "FUD3JZ9ZMGTAMQWY.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10265" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FUD3JZ9ZMGTAMQWY.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "FUD3JZ9ZMGTAMQWY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FUD3JZ9ZMGTAMQWY.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "FUD3JZ9ZMGTAMQWY.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5012" - }, - "appliesTo" : [ ] - }, - "FUD3JZ9ZMGTAMQWY.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "FUD3JZ9ZMGTAMQWY.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FUD3JZ9ZMGTAMQWY.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "FUD3JZ9ZMGTAMQWY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "FUD3JZ9ZMGTAMQWY.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "FUD3JZ9ZMGTAMQWY.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "JV8XGJX4R2ZMWD28" : { - "JV8XGJX4R2ZMWD28.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "JV8XGJX4R2ZMWD28", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JV8XGJX4R2ZMWD28.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "JV8XGJX4R2ZMWD28.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6589" - }, - "appliesTo" : [ ] - }, - "JV8XGJX4R2ZMWD28.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "JV8XGJX4R2ZMWD28.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "JV8XGJX4R2ZMWD28.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "JV8XGJX4R2ZMWD28", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JV8XGJX4R2ZMWD28.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "JV8XGJX4R2ZMWD28.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "JV8XGJX4R2ZMWD28.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "JV8XGJX4R2ZMWD28", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "JV8XGJX4R2ZMWD28.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "JV8XGJX4R2ZMWD28.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5059" - }, - "appliesTo" : [ ] - }, - "JV8XGJX4R2ZMWD28.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "JV8XGJX4R2ZMWD28.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "JV8XGJX4R2ZMWD28.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "JV8XGJX4R2ZMWD28", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JV8XGJX4R2ZMWD28.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "JV8XGJX4R2ZMWD28.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "JV8XGJX4R2ZMWD28.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "JV8XGJX4R2ZMWD28", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "JV8XGJX4R2ZMWD28.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "JV8XGJX4R2ZMWD28.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35139" - }, - "appliesTo" : [ ] - }, - "JV8XGJX4R2ZMWD28.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "JV8XGJX4R2ZMWD28.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "JV8XGJX4R2ZMWD28.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "JV8XGJX4R2ZMWD28", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JV8XGJX4R2ZMWD28.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "JV8XGJX4R2ZMWD28.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13017" - }, - "appliesTo" : [ ] - }, - "JV8XGJX4R2ZMWD28.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "JV8XGJX4R2ZMWD28.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "JV8XGJX4R2ZMWD28.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "JV8XGJX4R2ZMWD28", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "JV8XGJX4R2ZMWD28.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "JV8XGJX4R2ZMWD28.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "JV8XGJX4R2ZMWD28.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "JV8XGJX4R2ZMWD28", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "JV8XGJX4R2ZMWD28.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "JV8XGJX4R2ZMWD28.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13976" - }, - "appliesTo" : [ ] - }, - "JV8XGJX4R2ZMWD28.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "JV8XGJX4R2ZMWD28.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "JV8XGJX4R2ZMWD28.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "JV8XGJX4R2ZMWD28", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "JV8XGJX4R2ZMWD28.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "JV8XGJX4R2ZMWD28.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "JV8XGJX4R2ZMWD28.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "JV8XGJX4R2ZMWD28.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28157" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JV8XGJX4R2ZMWD28.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "JV8XGJX4R2ZMWD28", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JV8XGJX4R2ZMWD28.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "JV8XGJX4R2ZMWD28.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12399" - }, - "appliesTo" : [ ] - }, - "JV8XGJX4R2ZMWD28.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "JV8XGJX4R2ZMWD28.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JV8XGJX4R2ZMWD28.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "JV8XGJX4R2ZMWD28", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JV8XGJX4R2ZMWD28.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "JV8XGJX4R2ZMWD28.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6840000000" - }, - "appliesTo" : [ ] - }, - "JV8XGJX4R2ZMWD28.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "JV8XGJX4R2ZMWD28.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11975" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "MDWHVPMZ3JHUF4C8" : { - "MDWHVPMZ3JHUF4C8.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "MDWHVPMZ3JHUF4C8", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "MDWHVPMZ3JHUF4C8.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "MDWHVPMZ3JHUF4C8.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6303" - }, - "appliesTo" : [ ] - }, - "MDWHVPMZ3JHUF4C8.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "MDWHVPMZ3JHUF4C8.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MDWHVPMZ3JHUF4C8.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "MDWHVPMZ3JHUF4C8", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MDWHVPMZ3JHUF4C8.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "MDWHVPMZ3JHUF4C8.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MDWHVPMZ3JHUF4C8.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "MDWHVPMZ3JHUF4C8", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MDWHVPMZ3JHUF4C8.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "MDWHVPMZ3JHUF4C8.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4100000000" - }, - "appliesTo" : [ ] - }, - "MDWHVPMZ3JHUF4C8.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "MDWHVPMZ3JHUF4C8.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2398" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MDWHVPMZ3JHUF4C8.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "MDWHVPMZ3JHUF4C8", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MDWHVPMZ3JHUF4C8.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "MDWHVPMZ3JHUF4C8.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "MDWHVPMZ3JHUF4C8.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "MDWHVPMZ3JHUF4C8.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5872" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MDWHVPMZ3JHUF4C8.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "MDWHVPMZ3JHUF4C8", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MDWHVPMZ3JHUF4C8.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "MDWHVPMZ3JHUF4C8.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14810" - }, - "appliesTo" : [ ] - }, - "MDWHVPMZ3JHUF4C8.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "MDWHVPMZ3JHUF4C8.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "9E9PKC86XNNXZ5RW" : { - "9E9PKC86XNNXZ5RW.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "9E9PKC86XNNXZ5RW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9E9PKC86XNNXZ5RW.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "9E9PKC86XNNXZ5RW.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "118340" - }, - "appliesTo" : [ ] - }, - "9E9PKC86XNNXZ5RW.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "9E9PKC86XNNXZ5RW.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9E9PKC86XNNXZ5RW.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "9E9PKC86XNNXZ5RW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "9E9PKC86XNNXZ5RW.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "9E9PKC86XNNXZ5RW.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "321096" - }, - "appliesTo" : [ ] - }, - "9E9PKC86XNNXZ5RW.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "9E9PKC86XNNXZ5RW.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9E9PKC86XNNXZ5RW.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "9E9PKC86XNNXZ5RW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "9E9PKC86XNNXZ5RW.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "9E9PKC86XNNXZ5RW.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.4557000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9E9PKC86XNNXZ5RW.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "9E9PKC86XNNXZ5RW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "9E9PKC86XNNXZ5RW.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "9E9PKC86XNNXZ5RW.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.7304000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9E9PKC86XNNXZ5RW.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "9E9PKC86XNNXZ5RW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "9E9PKC86XNNXZ5RW.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "9E9PKC86XNNXZ5RW.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "9E9PKC86XNNXZ5RW.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "9E9PKC86XNNXZ5RW.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "115043" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9E9PKC86XNNXZ5RW.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "9E9PKC86XNNXZ5RW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "9E9PKC86XNNXZ5RW.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "9E9PKC86XNNXZ5RW.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "161885" - }, - "appliesTo" : [ ] - }, - "9E9PKC86XNNXZ5RW.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "9E9PKC86XNNXZ5RW.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.1600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9E9PKC86XNNXZ5RW.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "9E9PKC86XNNXZ5RW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "9E9PKC86XNNXZ5RW.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "9E9PKC86XNNXZ5RW.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "165228" - }, - "appliesTo" : [ ] - }, - "9E9PKC86XNNXZ5RW.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "9E9PKC86XNNXZ5RW.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.2872000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9E9PKC86XNNXZ5RW.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "9E9PKC86XNNXZ5RW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9E9PKC86XNNXZ5RW.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "9E9PKC86XNNXZ5RW.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.7152000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9E9PKC86XNNXZ5RW.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "9E9PKC86XNNXZ5RW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9E9PKC86XNNXZ5RW.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "9E9PKC86XNNXZ5RW.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "59428" - }, - "appliesTo" : [ ] - }, - "9E9PKC86XNNXZ5RW.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "9E9PKC86XNNXZ5RW.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.7840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9E9PKC86XNNXZ5RW.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "9E9PKC86XNNXZ5RW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "9E9PKC86XNNXZ5RW.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "9E9PKC86XNNXZ5RW.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "329430" - }, - "appliesTo" : [ ] - }, - "9E9PKC86XNNXZ5RW.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "9E9PKC86XNNXZ5RW.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9E9PKC86XNNXZ5RW.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "9E9PKC86XNNXZ5RW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "9E9PKC86XNNXZ5RW.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "9E9PKC86XNNXZ5RW.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.3120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9E9PKC86XNNXZ5RW.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "9E9PKC86XNNXZ5RW", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "9E9PKC86XNNXZ5RW.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "9E9PKC86XNNXZ5RW.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.5920000000" - }, - "appliesTo" : [ ] - }, - "9E9PKC86XNNXZ5RW.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "9E9PKC86XNNXZ5RW.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "57746" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "GT4TKK9K9AXX36E5" : { - "GT4TKK9K9AXX36E5.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "GT4TKK9K9AXX36E5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GT4TKK9K9AXX36E5.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "GT4TKK9K9AXX36E5.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "GT4TKK9K9AXX36E5.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "GT4TKK9K9AXX36E5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GT4TKK9K9AXX36E5.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "GT4TKK9K9AXX36E5.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GT4TKK9K9AXX36E5.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "GT4TKK9K9AXX36E5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GT4TKK9K9AXX36E5.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "GT4TKK9K9AXX36E5.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7646" - }, - "appliesTo" : [ ] - }, - "GT4TKK9K9AXX36E5.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "GT4TKK9K9AXX36E5.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GT4TKK9K9AXX36E5.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "GT4TKK9K9AXX36E5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GT4TKK9K9AXX36E5.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "GT4TKK9K9AXX36E5.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6626" - }, - "appliesTo" : [ ] - }, - "GT4TKK9K9AXX36E5.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "GT4TKK9K9AXX36E5.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GT4TKK9K9AXX36E5.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "GT4TKK9K9AXX36E5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GT4TKK9K9AXX36E5.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "GT4TKK9K9AXX36E5.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16125" - }, - "appliesTo" : [ ] - }, - "GT4TKK9K9AXX36E5.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "GT4TKK9K9AXX36E5.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "GT4TKK9K9AXX36E5.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "GT4TKK9K9AXX36E5", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "GT4TKK9K9AXX36E5.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "GT4TKK9K9AXX36E5.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "GT4TKK9K9AXX36E5.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "GT4TKK9K9AXX36E5", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "GT4TKK9K9AXX36E5.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "GT4TKK9K9AXX36E5.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8240000000" - }, - "appliesTo" : [ ] - }, - "GT4TKK9K9AXX36E5.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "GT4TKK9K9AXX36E5.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17890" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GT4TKK9K9AXX36E5.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "GT4TKK9K9AXX36E5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GT4TKK9K9AXX36E5.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "GT4TKK9K9AXX36E5.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26390" - }, - "appliesTo" : [ ] - }, - "GT4TKK9K9AXX36E5.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "GT4TKK9K9AXX36E5.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GT4TKK9K9AXX36E5.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "GT4TKK9K9AXX36E5", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "GT4TKK9K9AXX36E5.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "GT4TKK9K9AXX36E5.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14219" - }, - "appliesTo" : [ ] - }, - "GT4TKK9K9AXX36E5.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "GT4TKK9K9AXX36E5.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GT4TKK9K9AXX36E5.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "GT4TKK9K9AXX36E5", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "GT4TKK9K9AXX36E5.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "GT4TKK9K9AXX36E5.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38760" - }, - "appliesTo" : [ ] - }, - "GT4TKK9K9AXX36E5.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "GT4TKK9K9AXX36E5.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "GT4TKK9K9AXX36E5.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "GT4TKK9K9AXX36E5", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "GT4TKK9K9AXX36E5.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "GT4TKK9K9AXX36E5.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12175" - }, - "appliesTo" : [ ] - }, - "GT4TKK9K9AXX36E5.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "GT4TKK9K9AXX36E5.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), d2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "3X6QM8VEN9SGUP4E" : { - "3X6QM8VEN9SGUP4E.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "3X6QM8VEN9SGUP4E", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "3X6QM8VEN9SGUP4E.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "3X6QM8VEN9SGUP4E.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3580" - }, - "appliesTo" : [ ] - }, - "3X6QM8VEN9SGUP4E.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "3X6QM8VEN9SGUP4E.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3X6QM8VEN9SGUP4E.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "3X6QM8VEN9SGUP4E", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3X6QM8VEN9SGUP4E.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "3X6QM8VEN9SGUP4E.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1400000000" - }, - "appliesTo" : [ ] - }, - "3X6QM8VEN9SGUP4E.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "3X6QM8VEN9SGUP4E.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3163" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3X6QM8VEN9SGUP4E.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "3X6QM8VEN9SGUP4E", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3X6QM8VEN9SGUP4E.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "3X6QM8VEN9SGUP4E.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6422" - }, - "appliesTo" : [ ] - }, - "3X6QM8VEN9SGUP4E.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "3X6QM8VEN9SGUP4E.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3X6QM8VEN9SGUP4E.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "3X6QM8VEN9SGUP4E", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "3X6QM8VEN9SGUP4E.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "3X6QM8VEN9SGUP4E.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2083" - }, - "appliesTo" : [ ] - }, - "3X6QM8VEN9SGUP4E.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "3X6QM8VEN9SGUP4E.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3X6QM8VEN9SGUP4E.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "3X6QM8VEN9SGUP4E", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3X6QM8VEN9SGUP4E.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "3X6QM8VEN9SGUP4E.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "FFSCXMMMXUSSXA8W" : { - "FFSCXMMMXUSSXA8W.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "FFSCXMMMXUSSXA8W", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "FFSCXMMMXUSSXA8W.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "FFSCXMMMXUSSXA8W.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9067" - }, - "appliesTo" : [ ] - }, - "FFSCXMMMXUSSXA8W.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "FFSCXMMMXUSSXA8W.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FFSCXMMMXUSSXA8W.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "FFSCXMMMXUSSXA8W", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FFSCXMMMXUSSXA8W.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "FFSCXMMMXUSSXA8W.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FFSCXMMMXUSSXA8W.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "FFSCXMMMXUSSXA8W", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FFSCXMMMXUSSXA8W.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "FFSCXMMMXUSSXA8W.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9414" - }, - "appliesTo" : [ ] - }, - "FFSCXMMMXUSSXA8W.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "FFSCXMMMXUSSXA8W.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "FFSCXMMMXUSSXA8W.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "FFSCXMMMXUSSXA8W", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FFSCXMMMXUSSXA8W.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "FFSCXMMMXUSSXA8W.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "FFSCXMMMXUSSXA8W.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "FFSCXMMMXUSSXA8W", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "FFSCXMMMXUSSXA8W.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "FFSCXMMMXUSSXA8W.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17870" - }, - "appliesTo" : [ ] - }, - "FFSCXMMMXUSSXA8W.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "FFSCXMMMXUSSXA8W.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FFSCXMMMXUSSXA8W.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "FFSCXMMMXUSSXA8W", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FFSCXMMMXUSSXA8W.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "FFSCXMMMXUSSXA8W.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4540000000" - }, - "appliesTo" : [ ] - }, - "FFSCXMMMXUSSXA8W.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "FFSCXMMMXUSSXA8W.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3977" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "FFSCXMMMXUSSXA8W.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "FFSCXMMMXUSSXA8W", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "FFSCXMMMXUSSXA8W.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "FFSCXMMMXUSSXA8W.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "FFSCXMMMXUSSXA8W.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "FFSCXMMMXUSSXA8W.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7796" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "FFSCXMMMXUSSXA8W.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "FFSCXMMMXUSSXA8W", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FFSCXMMMXUSSXA8W.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "FFSCXMMMXUSSXA8W.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "FFSCXMMMXUSSXA8W.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "FFSCXMMMXUSSXA8W", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "FFSCXMMMXUSSXA8W.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "FFSCXMMMXUSSXA8W.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "FFSCXMMMXUSSXA8W.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "FFSCXMMMXUSSXA8W.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18720" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "VNT94W34YSHKDST8" : { - "VNT94W34YSHKDST8.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "VNT94W34YSHKDST8", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "VNT94W34YSHKDST8.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "VNT94W34YSHKDST8.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "345760" - }, - "appliesTo" : [ ] - }, - "VNT94W34YSHKDST8.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "VNT94W34YSHKDST8.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VNT94W34YSHKDST8.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "VNT94W34YSHKDST8", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "VNT94W34YSHKDST8.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "VNT94W34YSHKDST8.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.0630000000" - }, - "appliesTo" : [ ] - }, - "VNT94W34YSHKDST8.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "VNT94W34YSHKDST8.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "129632" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VNT94W34YSHKDST8.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "VNT94W34YSHKDST8", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "VNT94W34YSHKDST8.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "VNT94W34YSHKDST8.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.4860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VNT94W34YSHKDST8.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "VNT94W34YSHKDST8", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "VNT94W34YSHKDST8.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "VNT94W34YSHKDST8.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "174665" - }, - "appliesTo" : [ ] - }, - "VNT94W34YSHKDST8.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "VNT94W34YSHKDST8.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.7760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VNT94W34YSHKDST8.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "VNT94W34YSHKDST8", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "VNT94W34YSHKDST8.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "VNT94W34YSHKDST8.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "VNT94W34YSHKDST8.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "VNT94W34YSHKDST8.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "137740" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VNT94W34YSHKDST8.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "VNT94W34YSHKDST8", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "VNT94W34YSHKDST8.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "VNT94W34YSHKDST8.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "VNT94W34YSHKDST8.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "VNT94W34YSHKDST8.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "247124" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VNT94W34YSHKDST8.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "VNT94W34YSHKDST8", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "VNT94W34YSHKDST8.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "VNT94W34YSHKDST8.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.8380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VNT94W34YSHKDST8.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "VNT94W34YSHKDST8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VNT94W34YSHKDST8.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "VNT94W34YSHKDST8.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.2860000000" - }, - "appliesTo" : [ ] - }, - "VNT94W34YSHKDST8.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "VNT94W34YSHKDST8.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "80202" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VNT94W34YSHKDST8.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "VNT94W34YSHKDST8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VNT94W34YSHKDST8.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "VNT94W34YSHKDST8.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "19.3570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VNT94W34YSHKDST8.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "VNT94W34YSHKDST8", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "VNT94W34YSHKDST8.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "VNT94W34YSHKDST8.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "69695" - }, - "appliesTo" : [ ] - }, - "VNT94W34YSHKDST8.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "VNT94W34YSHKDST8.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.0860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VNT94W34YSHKDST8.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "VNT94W34YSHKDST8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VNT94W34YSHKDST8.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "VNT94W34YSHKDST8.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "158335" - }, - "appliesTo" : [ ] - }, - "VNT94W34YSHKDST8.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "VNT94W34YSHKDST8.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VNT94W34YSHKDST8.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "VNT94W34YSHKDST8", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "VNT94W34YSHKDST8.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "VNT94W34YSHKDST8.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.7850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "RSKUKWVCVPG8AZB5" : { - "RSKUKWVCVPG8AZB5.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "RSKUKWVCVPG8AZB5", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "RSKUKWVCVPG8AZB5.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "RSKUKWVCVPG8AZB5.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3247" - }, - "appliesTo" : [ ] - }, - "RSKUKWVCVPG8AZB5.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "RSKUKWVCVPG8AZB5.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RSKUKWVCVPG8AZB5.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "RSKUKWVCVPG8AZB5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RSKUKWVCVPG8AZB5.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "RSKUKWVCVPG8AZB5.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RSKUKWVCVPG8AZB5.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "RSKUKWVCVPG8AZB5", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RSKUKWVCVPG8AZB5.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "RSKUKWVCVPG8AZB5.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1657" - }, - "appliesTo" : [ ] - }, - "RSKUKWVCVPG8AZB5.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "RSKUKWVCVPG8AZB5.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RSKUKWVCVPG8AZB5.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "RSKUKWVCVPG8AZB5", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "RSKUKWVCVPG8AZB5.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "RSKUKWVCVPG8AZB5.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8767" - }, - "appliesTo" : [ ] - }, - "RSKUKWVCVPG8AZB5.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "RSKUKWVCVPG8AZB5.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RSKUKWVCVPG8AZB5.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "RSKUKWVCVPG8AZB5", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "RSKUKWVCVPG8AZB5.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "RSKUKWVCVPG8AZB5.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RSKUKWVCVPG8AZB5.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "RSKUKWVCVPG8AZB5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RSKUKWVCVPG8AZB5.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "RSKUKWVCVPG8AZB5.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3044" - }, - "appliesTo" : [ ] - }, - "RSKUKWVCVPG8AZB5.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "RSKUKWVCVPG8AZB5.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RSKUKWVCVPG8AZB5.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "RSKUKWVCVPG8AZB5", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "RSKUKWVCVPG8AZB5.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "RSKUKWVCVPG8AZB5.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4474" - }, - "appliesTo" : [ ] - }, - "RSKUKWVCVPG8AZB5.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "RSKUKWVCVPG8AZB5.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RSKUKWVCVPG8AZB5.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "RSKUKWVCVPG8AZB5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RSKUKWVCVPG8AZB5.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "RSKUKWVCVPG8AZB5.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3747" - }, - "appliesTo" : [ ] - }, - "RSKUKWVCVPG8AZB5.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "RSKUKWVCVPG8AZB5.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RSKUKWVCVPG8AZB5.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "RSKUKWVCVPG8AZB5", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RSKUKWVCVPG8AZB5.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "RSKUKWVCVPG8AZB5.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "RSKUKWVCVPG8AZB5.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "RSKUKWVCVPG8AZB5.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5715" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RSKUKWVCVPG8AZB5.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "RSKUKWVCVPG8AZB5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RSKUKWVCVPG8AZB5.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "RSKUKWVCVPG8AZB5.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2180000000" - }, - "appliesTo" : [ ] - }, - "RSKUKWVCVPG8AZB5.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "RSKUKWVCVPG8AZB5.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1912" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RSKUKWVCVPG8AZB5.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "RSKUKWVCVPG8AZB5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RSKUKWVCVPG8AZB5.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "RSKUKWVCVPG8AZB5.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), d2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "E598E3ESM66XHVUP" : { - "E598E3ESM66XHVUP.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "E598E3ESM66XHVUP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "E598E3ESM66XHVUP.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "E598E3ESM66XHVUP.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "E598E3ESM66XHVUP.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "E598E3ESM66XHVUP", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "E598E3ESM66XHVUP.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "E598E3ESM66XHVUP.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "E598E3ESM66XHVUP.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "E598E3ESM66XHVUP", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "E598E3ESM66XHVUP.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "E598E3ESM66XHVUP.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4727" - }, - "appliesTo" : [ ] - }, - "E598E3ESM66XHVUP.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "E598E3ESM66XHVUP.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "E598E3ESM66XHVUP.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "E598E3ESM66XHVUP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "E598E3ESM66XHVUP.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "E598E3ESM66XHVUP.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0970000000" - }, - "appliesTo" : [ ] - }, - "E598E3ESM66XHVUP.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "E598E3ESM66XHVUP.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "852" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "E598E3ESM66XHVUP.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "E598E3ESM66XHVUP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "E598E3ESM66XHVUP.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "E598E3ESM66XHVUP.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1695" - }, - "appliesTo" : [ ] - }, - "E598E3ESM66XHVUP.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "E598E3ESM66XHVUP.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "E598E3ESM66XHVUP.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "E598E3ESM66XHVUP", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "E598E3ESM66XHVUP.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "E598E3ESM66XHVUP.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "E598E3ESM66XHVUP.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "E598E3ESM66XHVUP.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4073" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "E598E3ESM66XHVUP.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "E598E3ESM66XHVUP", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "E598E3ESM66XHVUP.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "E598E3ESM66XHVUP.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1914" - }, - "appliesTo" : [ ] - }, - "E598E3ESM66XHVUP.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "E598E3ESM66XHVUP.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "E598E3ESM66XHVUP.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "E598E3ESM66XHVUP", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "E598E3ESM66XHVUP.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "E598E3ESM66XHVUP.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1130000000" - }, - "appliesTo" : [ ] - }, - "E598E3ESM66XHVUP.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "E598E3ESM66XHVUP.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "659" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "E598E3ESM66XHVUP.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "E598E3ESM66XHVUP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "E598E3ESM66XHVUP.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "E598E3ESM66XHVUP.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1731" - }, - "appliesTo" : [ ] - }, - "E598E3ESM66XHVUP.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "E598E3ESM66XHVUP.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "E598E3ESM66XHVUP.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "E598E3ESM66XHVUP", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "E598E3ESM66XHVUP.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "E598E3ESM66XHVUP.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "E598E3ESM66XHVUP.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "E598E3ESM66XHVUP.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1611" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "E598E3ESM66XHVUP.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "E598E3ESM66XHVUP", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "E598E3ESM66XHVUP.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "E598E3ESM66XHVUP.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "R48BU675BDZRSA46" : { - "R48BU675BDZRSA46.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "R48BU675BDZRSA46", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "R48BU675BDZRSA46.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "R48BU675BDZRSA46.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "R48BU675BDZRSA46.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "R48BU675BDZRSA46", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "R48BU675BDZRSA46.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "R48BU675BDZRSA46.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0630000000" - }, - "appliesTo" : [ ] - }, - "R48BU675BDZRSA46.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "R48BU675BDZRSA46.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1102" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "R48BU675BDZRSA46.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "R48BU675BDZRSA46", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "R48BU675BDZRSA46.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "R48BU675BDZRSA46.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "R48BU675BDZRSA46.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "R48BU675BDZRSA46.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1135" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "R48BU675BDZRSA46.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "R48BU675BDZRSA46", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "R48BU675BDZRSA46.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "R48BU675BDZRSA46.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "466" - }, - "appliesTo" : [ ] - }, - "R48BU675BDZRSA46.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "R48BU675BDZRSA46.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "R48BU675BDZRSA46.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "R48BU675BDZRSA46", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "R48BU675BDZRSA46.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "R48BU675BDZRSA46.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2592" - }, - "appliesTo" : [ ] - }, - "R48BU675BDZRSA46.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "R48BU675BDZRSA46.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "CNBDW56G9K7XSBK4" : { - "CNBDW56G9K7XSBK4.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "CNBDW56G9K7XSBK4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CNBDW56G9K7XSBK4.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "CNBDW56G9K7XSBK4.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8013" - }, - "appliesTo" : [ ] - }, - "CNBDW56G9K7XSBK4.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "CNBDW56G9K7XSBK4.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CNBDW56G9K7XSBK4.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "CNBDW56G9K7XSBK4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CNBDW56G9K7XSBK4.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "CNBDW56G9K7XSBK4.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CNBDW56G9K7XSBK4.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "CNBDW56G9K7XSBK4", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "CNBDW56G9K7XSBK4.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "CNBDW56G9K7XSBK4.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CNBDW56G9K7XSBK4.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "CNBDW56G9K7XSBK4", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "CNBDW56G9K7XSBK4.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "CNBDW56G9K7XSBK4.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47209" - }, - "appliesTo" : [ ] - }, - "CNBDW56G9K7XSBK4.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "CNBDW56G9K7XSBK4.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CNBDW56G9K7XSBK4.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "CNBDW56G9K7XSBK4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CNBDW56G9K7XSBK4.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "CNBDW56G9K7XSBK4.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "CNBDW56G9K7XSBK4.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "CNBDW56G9K7XSBK4.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CNBDW56G9K7XSBK4.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "CNBDW56G9K7XSBK4", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "CNBDW56G9K7XSBK4.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "CNBDW56G9K7XSBK4.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9060000000" - }, - "appliesTo" : [ ] - }, - "CNBDW56G9K7XSBK4.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "CNBDW56G9K7XSBK4.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7934" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CNBDW56G9K7XSBK4.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "CNBDW56G9K7XSBK4", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "CNBDW56G9K7XSBK4.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "CNBDW56G9K7XSBK4.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23634" - }, - "appliesTo" : [ ] - }, - "CNBDW56G9K7XSBK4.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "CNBDW56G9K7XSBK4.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CNBDW56G9K7XSBK4.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "CNBDW56G9K7XSBK4", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "CNBDW56G9K7XSBK4.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "CNBDW56G9K7XSBK4.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23228" - }, - "appliesTo" : [ ] - }, - "CNBDW56G9K7XSBK4.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "CNBDW56G9K7XSBK4.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CNBDW56G9K7XSBK4.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "CNBDW56G9K7XSBK4", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "CNBDW56G9K7XSBK4.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "CNBDW56G9K7XSBK4.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "CNBDW56G9K7XSBK4.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "CNBDW56G9K7XSBK4.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15846" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CNBDW56G9K7XSBK4.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "CNBDW56G9K7XSBK4", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "CNBDW56G9K7XSBK4.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "CNBDW56G9K7XSBK4.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CNBDW56G9K7XSBK4.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "CNBDW56G9K7XSBK4", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "CNBDW56G9K7XSBK4.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "CNBDW56G9K7XSBK4.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46323" - }, - "appliesTo" : [ ] - }, - "CNBDW56G9K7XSBK4.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "CNBDW56G9K7XSBK4.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "HK2GMCFHXFH3NGAD" : { - "HK2GMCFHXFH3NGAD.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "HK2GMCFHXFH3NGAD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HK2GMCFHXFH3NGAD.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "HK2GMCFHXFH3NGAD.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15423" - }, - "appliesTo" : [ ] - }, - "HK2GMCFHXFH3NGAD.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "HK2GMCFHXFH3NGAD.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "HK2GMCFHXFH3NGAD.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "HK2GMCFHXFH3NGAD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HK2GMCFHXFH3NGAD.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "HK2GMCFHXFH3NGAD.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6143" - }, - "appliesTo" : [ ] - }, - "HK2GMCFHXFH3NGAD.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "HK2GMCFHXFH3NGAD.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HK2GMCFHXFH3NGAD.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "HK2GMCFHXFH3NGAD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HK2GMCFHXFH3NGAD.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "HK2GMCFHXFH3NGAD.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7064" - }, - "appliesTo" : [ ] - }, - "HK2GMCFHXFH3NGAD.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "HK2GMCFHXFH3NGAD.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HK2GMCFHXFH3NGAD.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "HK2GMCFHXFH3NGAD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HK2GMCFHXFH3NGAD.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "HK2GMCFHXFH3NGAD.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "HK2GMCFHXFH3NGAD.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "HK2GMCFHXFH3NGAD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HK2GMCFHXFH3NGAD.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "HK2GMCFHXFH3NGAD.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3241" - }, - "appliesTo" : [ ] - }, - "HK2GMCFHXFH3NGAD.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "HK2GMCFHXFH3NGAD.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HK2GMCFHXFH3NGAD.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "HK2GMCFHXFH3NGAD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HK2GMCFHXFH3NGAD.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "HK2GMCFHXFH3NGAD.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6879" - }, - "appliesTo" : [ ] - }, - "HK2GMCFHXFH3NGAD.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "HK2GMCFHXFH3NGAD.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "HK2GMCFHXFH3NGAD.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "HK2GMCFHXFH3NGAD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HK2GMCFHXFH3NGAD.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "HK2GMCFHXFH3NGAD.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "HK2GMCFHXFH3NGAD.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "HK2GMCFHXFH3NGAD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HK2GMCFHXFH3NGAD.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "HK2GMCFHXFH3NGAD.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "HK2GMCFHXFH3NGAD.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "HK2GMCFHXFH3NGAD", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "HK2GMCFHXFH3NGAD.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "HK2GMCFHXFH3NGAD.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2819" - }, - "appliesTo" : [ ] - }, - "HK2GMCFHXFH3NGAD.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "HK2GMCFHXFH3NGAD.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HK2GMCFHXFH3NGAD.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "HK2GMCFHXFH3NGAD", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "HK2GMCFHXFH3NGAD.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "HK2GMCFHXFH3NGAD.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "HK2GMCFHXFH3NGAD.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "HK2GMCFHXFH3NGAD.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6050" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HK2GMCFHXFH3NGAD.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "HK2GMCFHXFH3NGAD", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "HK2GMCFHXFH3NGAD.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "HK2GMCFHXFH3NGAD.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13126" - }, - "appliesTo" : [ ] - }, - "HK2GMCFHXFH3NGAD.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "HK2GMCFHXFH3NGAD.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HK2GMCFHXFH3NGAD.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "HK2GMCFHXFH3NGAD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HK2GMCFHXFH3NGAD.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "HK2GMCFHXFH3NGAD.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "HM82VKFH3K99HEA4" : { - "HM82VKFH3K99HEA4.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "HM82VKFH3K99HEA4", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "HM82VKFH3K99HEA4.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "HM82VKFH3K99HEA4.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16761" - }, - "appliesTo" : [ ] - }, - "HM82VKFH3K99HEA4.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "HM82VKFH3K99HEA4.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HM82VKFH3K99HEA4.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "HM82VKFH3K99HEA4", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "HM82VKFH3K99HEA4.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "HM82VKFH3K99HEA4.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17105" - }, - "appliesTo" : [ ] - }, - "HM82VKFH3K99HEA4.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "HM82VKFH3K99HEA4.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "HM82VKFH3K99HEA4.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "HM82VKFH3K99HEA4", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "HM82VKFH3K99HEA4.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "HM82VKFH3K99HEA4.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "HM82VKFH3K99HEA4.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "HM82VKFH3K99HEA4", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "HM82VKFH3K99HEA4.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "HM82VKFH3K99HEA4.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "HM82VKFH3K99HEA4.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "HM82VKFH3K99HEA4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HM82VKFH3K99HEA4.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "HM82VKFH3K99HEA4.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6018" - }, - "appliesTo" : [ ] - }, - "HM82VKFH3K99HEA4.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "HM82VKFH3K99HEA4.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "HM82VKFH3K99HEA4.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "HM82VKFH3K99HEA4", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "HM82VKFH3K99HEA4.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "HM82VKFH3K99HEA4.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "HM82VKFH3K99HEA4.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "HM82VKFH3K99HEA4", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "HM82VKFH3K99HEA4.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "HM82VKFH3K99HEA4.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2952" - }, - "appliesTo" : [ ] - }, - "HM82VKFH3K99HEA4.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "HM82VKFH3K99HEA4.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HM82VKFH3K99HEA4.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "HM82VKFH3K99HEA4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HM82VKFH3K99HEA4.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "HM82VKFH3K99HEA4.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "HM82VKFH3K99HEA4.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "HM82VKFH3K99HEA4", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HM82VKFH3K99HEA4.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "HM82VKFH3K99HEA4.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3019" - }, - "appliesTo" : [ ] - }, - "HM82VKFH3K99HEA4.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "HM82VKFH3K99HEA4.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HM82VKFH3K99HEA4.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "HM82VKFH3K99HEA4", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "HM82VKFH3K99HEA4.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "HM82VKFH3K99HEA4.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5886" - }, - "appliesTo" : [ ] - }, - "HM82VKFH3K99HEA4.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "HM82VKFH3K99HEA4.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HM82VKFH3K99HEA4.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "HM82VKFH3K99HEA4", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "HM82VKFH3K99HEA4.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "HM82VKFH3K99HEA4.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3260000000" - }, - "appliesTo" : [ ] - }, - "HM82VKFH3K99HEA4.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "HM82VKFH3K99HEA4.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8574" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HM82VKFH3K99HEA4.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "HM82VKFH3K99HEA4", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "HM82VKFH3K99HEA4.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "HM82VKFH3K99HEA4.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8436" - }, - "appliesTo" : [ ] - }, - "HM82VKFH3K99HEA4.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "HM82VKFH3K99HEA4.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "D3DQYQJXGDG9DV7G" : { - "D3DQYQJXGDG9DV7G.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "D3DQYQJXGDG9DV7G", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "D3DQYQJXGDG9DV7G.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "D3DQYQJXGDG9DV7G.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "D3DQYQJXGDG9DV7G.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "D3DQYQJXGDG9DV7G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "D3DQYQJXGDG9DV7G.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "D3DQYQJXGDG9DV7G.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6430000000" - }, - "appliesTo" : [ ] - }, - "D3DQYQJXGDG9DV7G.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "D3DQYQJXGDG9DV7G.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5632" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "D3DQYQJXGDG9DV7G.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "D3DQYQJXGDG9DV7G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "D3DQYQJXGDG9DV7G.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "D3DQYQJXGDG9DV7G.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "D3DQYQJXGDG9DV7G.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "D3DQYQJXGDG9DV7G", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "D3DQYQJXGDG9DV7G.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "D3DQYQJXGDG9DV7G.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5290000000" - }, - "appliesTo" : [ ] - }, - "D3DQYQJXGDG9DV7G.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "D3DQYQJXGDG9DV7G.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6028" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "D3DQYQJXGDG9DV7G.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "D3DQYQJXGDG9DV7G", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "D3DQYQJXGDG9DV7G.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "D3DQYQJXGDG9DV7G.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9126" - }, - "appliesTo" : [ ] - }, - "D3DQYQJXGDG9DV7G.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "D3DQYQJXGDG9DV7G.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "D3DQYQJXGDG9DV7G.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "D3DQYQJXGDG9DV7G", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "D3DQYQJXGDG9DV7G.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "D3DQYQJXGDG9DV7G.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "D3DQYQJXGDG9DV7G.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "D3DQYQJXGDG9DV7G", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "D3DQYQJXGDG9DV7G.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "D3DQYQJXGDG9DV7G.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "D3DQYQJXGDG9DV7G.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "D3DQYQJXGDG9DV7G.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18736" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "D3DQYQJXGDG9DV7G.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "D3DQYQJXGDG9DV7G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "D3DQYQJXGDG9DV7G.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "D3DQYQJXGDG9DV7G.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11104" - }, - "appliesTo" : [ ] - }, - "D3DQYQJXGDG9DV7G.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "D3DQYQJXGDG9DV7G.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "D3DQYQJXGDG9DV7G.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "D3DQYQJXGDG9DV7G", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "D3DQYQJXGDG9DV7G.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "D3DQYQJXGDG9DV7G.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10811" - }, - "appliesTo" : [ ] - }, - "D3DQYQJXGDG9DV7G.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "D3DQYQJXGDG9DV7G.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "D3DQYQJXGDG9DV7G.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "D3DQYQJXGDG9DV7G", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "D3DQYQJXGDG9DV7G.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "D3DQYQJXGDG9DV7G.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4004" - }, - "appliesTo" : [ ] - }, - "D3DQYQJXGDG9DV7G.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "D3DQYQJXGDG9DV7G.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "D3DQYQJXGDG9DV7G.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "D3DQYQJXGDG9DV7G", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "D3DQYQJXGDG9DV7G.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "D3DQYQJXGDG9DV7G.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25320" - }, - "appliesTo" : [ ] - }, - "D3DQYQJXGDG9DV7G.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "D3DQYQJXGDG9DV7G.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "KCN6V5R2ZXCNYDBZ" : { - "KCN6V5R2ZXCNYDBZ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "KCN6V5R2ZXCNYDBZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KCN6V5R2ZXCNYDBZ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "KCN6V5R2ZXCNYDBZ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25537" - }, - "appliesTo" : [ ] - }, - "KCN6V5R2ZXCNYDBZ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "KCN6V5R2ZXCNYDBZ.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KCN6V5R2ZXCNYDBZ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "KCN6V5R2ZXCNYDBZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KCN6V5R2ZXCNYDBZ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "KCN6V5R2ZXCNYDBZ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5620" - }, - "appliesTo" : [ ] - }, - "KCN6V5R2ZXCNYDBZ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "KCN6V5R2ZXCNYDBZ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KCN6V5R2ZXCNYDBZ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "KCN6V5R2ZXCNYDBZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KCN6V5R2ZXCNYDBZ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "KCN6V5R2ZXCNYDBZ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KCN6V5R2ZXCNYDBZ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "KCN6V5R2ZXCNYDBZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KCN6V5R2ZXCNYDBZ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "KCN6V5R2ZXCNYDBZ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KCN6V5R2ZXCNYDBZ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "KCN6V5R2ZXCNYDBZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KCN6V5R2ZXCNYDBZ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "KCN6V5R2ZXCNYDBZ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24195" - }, - "appliesTo" : [ ] - }, - "KCN6V5R2ZXCNYDBZ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "KCN6V5R2ZXCNYDBZ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KCN6V5R2ZXCNYDBZ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "KCN6V5R2ZXCNYDBZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KCN6V5R2ZXCNYDBZ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "KCN6V5R2ZXCNYDBZ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12313" - }, - "appliesTo" : [ ] - }, - "KCN6V5R2ZXCNYDBZ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "KCN6V5R2ZXCNYDBZ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KCN6V5R2ZXCNYDBZ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "KCN6V5R2ZXCNYDBZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KCN6V5R2ZXCNYDBZ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "KCN6V5R2ZXCNYDBZ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12851" - }, - "appliesTo" : [ ] - }, - "KCN6V5R2ZXCNYDBZ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "KCN6V5R2ZXCNYDBZ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KCN6V5R2ZXCNYDBZ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "KCN6V5R2ZXCNYDBZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KCN6V5R2ZXCNYDBZ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "KCN6V5R2ZXCNYDBZ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10439" - }, - "appliesTo" : [ ] - }, - "KCN6V5R2ZXCNYDBZ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "KCN6V5R2ZXCNYDBZ.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KCN6V5R2ZXCNYDBZ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "KCN6V5R2ZXCNYDBZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KCN6V5R2ZXCNYDBZ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "KCN6V5R2ZXCNYDBZ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "KCN6V5R2ZXCNYDBZ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "KCN6V5R2ZXCNYDBZ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11132" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KCN6V5R2ZXCNYDBZ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "KCN6V5R2ZXCNYDBZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KCN6V5R2ZXCNYDBZ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "KCN6V5R2ZXCNYDBZ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KCN6V5R2ZXCNYDBZ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "KCN6V5R2ZXCNYDBZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KCN6V5R2ZXCNYDBZ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "KCN6V5R2ZXCNYDBZ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KCN6V5R2ZXCNYDBZ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "KCN6V5R2ZXCNYDBZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KCN6V5R2ZXCNYDBZ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "KCN6V5R2ZXCNYDBZ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5267" - }, - "appliesTo" : [ ] - }, - "KCN6V5R2ZXCNYDBZ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "KCN6V5R2ZXCNYDBZ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "22BY823JMH3UZ9AS" : { - "22BY823JMH3UZ9AS.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "22BY823JMH3UZ9AS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "22BY823JMH3UZ9AS.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "22BY823JMH3UZ9AS.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9020" - }, - "appliesTo" : [ ] - }, - "22BY823JMH3UZ9AS.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "22BY823JMH3UZ9AS.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "22BY823JMH3UZ9AS.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "22BY823JMH3UZ9AS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "22BY823JMH3UZ9AS.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "22BY823JMH3UZ9AS.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5890000000" - }, - "appliesTo" : [ ] - }, - "22BY823JMH3UZ9AS.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "22BY823JMH3UZ9AS.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4021" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "22BY823JMH3UZ9AS.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "22BY823JMH3UZ9AS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "22BY823JMH3UZ9AS.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "22BY823JMH3UZ9AS.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8987" - }, - "appliesTo" : [ ] - }, - "22BY823JMH3UZ9AS.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "22BY823JMH3UZ9AS.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "22BY823JMH3UZ9AS.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "22BY823JMH3UZ9AS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "22BY823JMH3UZ9AS.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "22BY823JMH3UZ9AS.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "22BY823JMH3UZ9AS.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "22BY823JMH3UZ9AS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "22BY823JMH3UZ9AS.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "22BY823JMH3UZ9AS.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18081" - }, - "appliesTo" : [ ] - }, - "22BY823JMH3UZ9AS.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "22BY823JMH3UZ9AS.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "22BY823JMH3UZ9AS.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "22BY823JMH3UZ9AS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "22BY823JMH3UZ9AS.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "22BY823JMH3UZ9AS.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7800" - }, - "appliesTo" : [ ] - }, - "22BY823JMH3UZ9AS.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "22BY823JMH3UZ9AS.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "22BY823JMH3UZ9AS.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "22BY823JMH3UZ9AS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "22BY823JMH3UZ9AS.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "22BY823JMH3UZ9AS.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "22BY823JMH3UZ9AS.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "22BY823JMH3UZ9AS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "22BY823JMH3UZ9AS.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "22BY823JMH3UZ9AS.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "22BY823JMH3UZ9AS.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "22BY823JMH3UZ9AS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "22BY823JMH3UZ9AS.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "22BY823JMH3UZ9AS.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10202" - }, - "appliesTo" : [ ] - }, - "22BY823JMH3UZ9AS.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "22BY823JMH3UZ9AS.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "22BY823JMH3UZ9AS.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "22BY823JMH3UZ9AS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "22BY823JMH3UZ9AS.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "22BY823JMH3UZ9AS.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "22BY823JMH3UZ9AS.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "22BY823JMH3UZ9AS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "22BY823JMH3UZ9AS.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "22BY823JMH3UZ9AS.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21030" - }, - "appliesTo" : [ ] - }, - "22BY823JMH3UZ9AS.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "22BY823JMH3UZ9AS.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "22BY823JMH3UZ9AS.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "22BY823JMH3UZ9AS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "22BY823JMH3UZ9AS.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "22BY823JMH3UZ9AS.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4624" - }, - "appliesTo" : [ ] - }, - "22BY823JMH3UZ9AS.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "22BY823JMH3UZ9AS.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "Z5UJJBU6GS6N6Y27" : { - "Z5UJJBU6GS6N6Y27.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "Z5UJJBU6GS6N6Y27", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z5UJJBU6GS6N6Y27.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "Z5UJJBU6GS6N6Y27.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "Z5UJJBU6GS6N6Y27.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "Z5UJJBU6GS6N6Y27.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "118340" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Z5UJJBU6GS6N6Y27.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "Z5UJJBU6GS6N6Y27", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Z5UJJBU6GS6N6Y27.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "Z5UJJBU6GS6N6Y27.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.7304000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Z5UJJBU6GS6N6Y27.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Z5UJJBU6GS6N6Y27", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Z5UJJBU6GS6N6Y27.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Z5UJJBU6GS6N6Y27.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "115043" - }, - "appliesTo" : [ ] - }, - "Z5UJJBU6GS6N6Y27.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Z5UJJBU6GS6N6Y27.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Z5UJJBU6GS6N6Y27.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Z5UJJBU6GS6N6Y27", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Z5UJJBU6GS6N6Y27.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Z5UJJBU6GS6N6Y27.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "321096" - }, - "appliesTo" : [ ] - }, - "Z5UJJBU6GS6N6Y27.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Z5UJJBU6GS6N6Y27.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Z5UJJBU6GS6N6Y27.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "Z5UJJBU6GS6N6Y27", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Z5UJJBU6GS6N6Y27.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "Z5UJJBU6GS6N6Y27.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.4557000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Z5UJJBU6GS6N6Y27.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "Z5UJJBU6GS6N6Y27", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Z5UJJBU6GS6N6Y27.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "Z5UJJBU6GS6N6Y27.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "329430" - }, - "appliesTo" : [ ] - }, - "Z5UJJBU6GS6N6Y27.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "Z5UJJBU6GS6N6Y27.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Z5UJJBU6GS6N6Y27.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Z5UJJBU6GS6N6Y27", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Z5UJJBU6GS6N6Y27.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Z5UJJBU6GS6N6Y27.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "57746" - }, - "appliesTo" : [ ] - }, - "Z5UJJBU6GS6N6Y27.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Z5UJJBU6GS6N6Y27.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.5920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z5UJJBU6GS6N6Y27.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Z5UJJBU6GS6N6Y27", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Z5UJJBU6GS6N6Y27.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Z5UJJBU6GS6N6Y27.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.3120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Z5UJJBU6GS6N6Y27.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "Z5UJJBU6GS6N6Y27", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z5UJJBU6GS6N6Y27.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "Z5UJJBU6GS6N6Y27.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "59428" - }, - "appliesTo" : [ ] - }, - "Z5UJJBU6GS6N6Y27.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "Z5UJJBU6GS6N6Y27.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.7840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z5UJJBU6GS6N6Y27.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "Z5UJJBU6GS6N6Y27", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z5UJJBU6GS6N6Y27.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "Z5UJJBU6GS6N6Y27.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.7152000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Z5UJJBU6GS6N6Y27.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Z5UJJBU6GS6N6Y27", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Z5UJJBU6GS6N6Y27.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Z5UJJBU6GS6N6Y27.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "161885" - }, - "appliesTo" : [ ] - }, - "Z5UJJBU6GS6N6Y27.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Z5UJJBU6GS6N6Y27.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.1600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z5UJJBU6GS6N6Y27.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "Z5UJJBU6GS6N6Y27", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "Z5UJJBU6GS6N6Y27.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "Z5UJJBU6GS6N6Y27.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.2872000000" - }, - "appliesTo" : [ ] - }, - "Z5UJJBU6GS6N6Y27.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "Z5UJJBU6GS6N6Y27.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "165228" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "6NM6AHQ97YV7NWV2" : { - "6NM6AHQ97YV7NWV2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6NM6AHQ97YV7NWV2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6NM6AHQ97YV7NWV2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6NM6AHQ97YV7NWV2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5392" - }, - "appliesTo" : [ ] - }, - "6NM6AHQ97YV7NWV2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6NM6AHQ97YV7NWV2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6NM6AHQ97YV7NWV2.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "6NM6AHQ97YV7NWV2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6NM6AHQ97YV7NWV2.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "6NM6AHQ97YV7NWV2.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6NM6AHQ97YV7NWV2.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "6NM6AHQ97YV7NWV2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6NM6AHQ97YV7NWV2.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "6NM6AHQ97YV7NWV2.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5269" - }, - "appliesTo" : [ ] - }, - "6NM6AHQ97YV7NWV2.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "6NM6AHQ97YV7NWV2.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6NM6AHQ97YV7NWV2.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "6NM6AHQ97YV7NWV2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "6NM6AHQ97YV7NWV2.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "6NM6AHQ97YV7NWV2.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24069" - }, - "appliesTo" : [ ] - }, - "6NM6AHQ97YV7NWV2.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "6NM6AHQ97YV7NWV2.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6NM6AHQ97YV7NWV2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6NM6AHQ97YV7NWV2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6NM6AHQ97YV7NWV2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6NM6AHQ97YV7NWV2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17109" - }, - "appliesTo" : [ ] - }, - "6NM6AHQ97YV7NWV2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6NM6AHQ97YV7NWV2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6NM6AHQ97YV7NWV2.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "6NM6AHQ97YV7NWV2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6NM6AHQ97YV7NWV2.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "6NM6AHQ97YV7NWV2.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "6NM6AHQ97YV7NWV2.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "6NM6AHQ97YV7NWV2.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10273" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6NM6AHQ97YV7NWV2.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "6NM6AHQ97YV7NWV2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "6NM6AHQ97YV7NWV2.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "6NM6AHQ97YV7NWV2.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3860000000" - }, - "appliesTo" : [ ] - }, - "6NM6AHQ97YV7NWV2.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "6NM6AHQ97YV7NWV2.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14435" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6NM6AHQ97YV7NWV2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6NM6AHQ97YV7NWV2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6NM6AHQ97YV7NWV2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6NM6AHQ97YV7NWV2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8478" - }, - "appliesTo" : [ ] - }, - "6NM6AHQ97YV7NWV2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6NM6AHQ97YV7NWV2.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6NM6AHQ97YV7NWV2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6NM6AHQ97YV7NWV2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6NM6AHQ97YV7NWV2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6NM6AHQ97YV7NWV2.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6NM6AHQ97YV7NWV2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6NM6AHQ97YV7NWV2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "6NM6AHQ97YV7NWV2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6NM6AHQ97YV7NWV2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8958" - }, - "appliesTo" : [ ] - }, - "6NM6AHQ97YV7NWV2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6NM6AHQ97YV7NWV2.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6NM6AHQ97YV7NWV2.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "6NM6AHQ97YV7NWV2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "6NM6AHQ97YV7NWV2.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "6NM6AHQ97YV7NWV2.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "ZA47RH8PF27SDZKP" : { - "ZA47RH8PF27SDZKP.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ZA47RH8PF27SDZKP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ZA47RH8PF27SDZKP.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ZA47RH8PF27SDZKP.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZA47RH8PF27SDZKP.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ZA47RH8PF27SDZKP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZA47RH8PF27SDZKP.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ZA47RH8PF27SDZKP.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1273" - }, - "appliesTo" : [ ] - }, - "ZA47RH8PF27SDZKP.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ZA47RH8PF27SDZKP.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZA47RH8PF27SDZKP.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ZA47RH8PF27SDZKP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZA47RH8PF27SDZKP.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ZA47RH8PF27SDZKP.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZA47RH8PF27SDZKP.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ZA47RH8PF27SDZKP", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "ZA47RH8PF27SDZKP.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ZA47RH8PF27SDZKP.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3521" - }, - "appliesTo" : [ ] - }, - "ZA47RH8PF27SDZKP.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ZA47RH8PF27SDZKP.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZA47RH8PF27SDZKP.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ZA47RH8PF27SDZKP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ZA47RH8PF27SDZKP.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ZA47RH8PF27SDZKP.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4132" - }, - "appliesTo" : [ ] - }, - "ZA47RH8PF27SDZKP.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ZA47RH8PF27SDZKP.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZA47RH8PF27SDZKP.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ZA47RH8PF27SDZKP", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "ZA47RH8PF27SDZKP.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ZA47RH8PF27SDZKP.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZA47RH8PF27SDZKP.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ZA47RH8PF27SDZKP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ZA47RH8PF27SDZKP.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ZA47RH8PF27SDZKP.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2031" - }, - "appliesTo" : [ ] - }, - "ZA47RH8PF27SDZKP.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ZA47RH8PF27SDZKP.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZA47RH8PF27SDZKP.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ZA47RH8PF27SDZKP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ZA47RH8PF27SDZKP.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ZA47RH8PF27SDZKP.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2170" - }, - "appliesTo" : [ ] - }, - "ZA47RH8PF27SDZKP.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ZA47RH8PF27SDZKP.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZA47RH8PF27SDZKP.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ZA47RH8PF27SDZKP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "ZA47RH8PF27SDZKP.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ZA47RH8PF27SDZKP.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1304" - }, - "appliesTo" : [ ] - }, - "ZA47RH8PF27SDZKP.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ZA47RH8PF27SDZKP.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZA47RH8PF27SDZKP.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ZA47RH8PF27SDZKP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZA47RH8PF27SDZKP.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ZA47RH8PF27SDZKP.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ZA47RH8PF27SDZKP.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ZA47RH8PF27SDZKP.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2496" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZA47RH8PF27SDZKP.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ZA47RH8PF27SDZKP", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "ZA47RH8PF27SDZKP.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ZA47RH8PF27SDZKP.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5859" - }, - "appliesTo" : [ ] - }, - "ZA47RH8PF27SDZKP.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ZA47RH8PF27SDZKP.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "9NMZ5HGTS2QHKR4V" : { - "9NMZ5HGTS2QHKR4V.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "9NMZ5HGTS2QHKR4V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9NMZ5HGTS2QHKR4V.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "9NMZ5HGTS2QHKR4V.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0173000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9NMZ5HGTS2QHKR4V.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "9NMZ5HGTS2QHKR4V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9NMZ5HGTS2QHKR4V.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "9NMZ5HGTS2QHKR4V.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0099000000" - }, - "appliesTo" : [ ] - }, - "9NMZ5HGTS2QHKR4V.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "9NMZ5HGTS2QHKR4V.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "56" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9NMZ5HGTS2QHKR4V.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "9NMZ5HGTS2QHKR4V", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "9NMZ5HGTS2QHKR4V.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "9NMZ5HGTS2QHKR4V.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "339" - }, - "appliesTo" : [ ] - }, - "9NMZ5HGTS2QHKR4V.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "9NMZ5HGTS2QHKR4V.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9NMZ5HGTS2QHKR4V.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "9NMZ5HGTS2QHKR4V", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "9NMZ5HGTS2QHKR4V.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "9NMZ5HGTS2QHKR4V.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0162000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9NMZ5HGTS2QHKR4V.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "9NMZ5HGTS2QHKR4V", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "9NMZ5HGTS2QHKR4V.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "9NMZ5HGTS2QHKR4V.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "52" - }, - "appliesTo" : [ ] - }, - "9NMZ5HGTS2QHKR4V.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "9NMZ5HGTS2QHKR4V.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0094000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9NMZ5HGTS2QHKR4V.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "9NMZ5HGTS2QHKR4V", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9NMZ5HGTS2QHKR4V.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "9NMZ5HGTS2QHKR4V.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "143" - }, - "appliesTo" : [ ] - }, - "9NMZ5HGTS2QHKR4V.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "9NMZ5HGTS2QHKR4V.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9NMZ5HGTS2QHKR4V.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "9NMZ5HGTS2QHKR4V", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "9NMZ5HGTS2QHKR4V.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "9NMZ5HGTS2QHKR4V.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9NMZ5HGTS2QHKR4V.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "9NMZ5HGTS2QHKR4V", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "9NMZ5HGTS2QHKR4V.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "9NMZ5HGTS2QHKR4V.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "9NMZ5HGTS2QHKR4V.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "9NMZ5HGTS2QHKR4V.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "317" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9NMZ5HGTS2QHKR4V.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "9NMZ5HGTS2QHKR4V", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "9NMZ5HGTS2QHKR4V.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "9NMZ5HGTS2QHKR4V.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0148000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9NMZ5HGTS2QHKR4V.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "9NMZ5HGTS2QHKR4V", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "9NMZ5HGTS2QHKR4V.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "9NMZ5HGTS2QHKR4V.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "9NMZ5HGTS2QHKR4V.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "9NMZ5HGTS2QHKR4V.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "134" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9NMZ5HGTS2QHKR4V.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "9NMZ5HGTS2QHKR4V", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "9NMZ5HGTS2QHKR4V.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "9NMZ5HGTS2QHKR4V.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "114" - }, - "appliesTo" : [ ] - }, - "9NMZ5HGTS2QHKR4V.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "9NMZ5HGTS2QHKR4V.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0087000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9NMZ5HGTS2QHKR4V.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "9NMZ5HGTS2QHKR4V", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "9NMZ5HGTS2QHKR4V.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "9NMZ5HGTS2QHKR4V.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.micro reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0080000000" - }, - "appliesTo" : [ ] - }, - "9NMZ5HGTS2QHKR4V.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "9NMZ5HGTS2QHKR4V.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "110" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "9S3T4JTQ45TQKNTE" : { - "9S3T4JTQ45TQKNTE.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "9S3T4JTQ45TQKNTE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9S3T4JTQ45TQKNTE.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "9S3T4JTQ45TQKNTE.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25308" - }, - "appliesTo" : [ ] - }, - "9S3T4JTQ45TQKNTE.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "9S3T4JTQ45TQKNTE.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9S3T4JTQ45TQKNTE.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "9S3T4JTQ45TQKNTE", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "9S3T4JTQ45TQKNTE.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "9S3T4JTQ45TQKNTE.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12912" - }, - "appliesTo" : [ ] - }, - "9S3T4JTQ45TQKNTE.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "9S3T4JTQ45TQKNTE.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9S3T4JTQ45TQKNTE.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "9S3T4JTQ45TQKNTE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9S3T4JTQ45TQKNTE.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "9S3T4JTQ45TQKNTE.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "60967" - }, - "appliesTo" : [ ] - }, - "9S3T4JTQ45TQKNTE.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "9S3T4JTQ45TQKNTE.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9S3T4JTQ45TQKNTE.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "9S3T4JTQ45TQKNTE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9S3T4JTQ45TQKNTE.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "9S3T4JTQ45TQKNTE.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "36889" - }, - "appliesTo" : [ ] - }, - "9S3T4JTQ45TQKNTE.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "9S3T4JTQ45TQKNTE.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9S3T4JTQ45TQKNTE.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "9S3T4JTQ45TQKNTE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9S3T4JTQ45TQKNTE.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "9S3T4JTQ45TQKNTE.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9689000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9S3T4JTQ45TQKNTE.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "9S3T4JTQ45TQKNTE", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "9S3T4JTQ45TQKNTE.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "9S3T4JTQ45TQKNTE.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32430" - }, - "appliesTo" : [ ] - }, - "9S3T4JTQ45TQKNTE.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "9S3T4JTQ45TQKNTE.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9S3T4JTQ45TQKNTE.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "9S3T4JTQ45TQKNTE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9S3T4JTQ45TQKNTE.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "9S3T4JTQ45TQKNTE.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17086" - }, - "appliesTo" : [ ] - }, - "9S3T4JTQ45TQKNTE.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "9S3T4JTQ45TQKNTE.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9505000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9S3T4JTQ45TQKNTE.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "9S3T4JTQ45TQKNTE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9S3T4JTQ45TQKNTE.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "9S3T4JTQ45TQKNTE.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "9S3T4JTQ45TQKNTE.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "9S3T4JTQ45TQKNTE.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "72303" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9S3T4JTQ45TQKNTE.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "9S3T4JTQ45TQKNTE", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "9S3T4JTQ45TQKNTE.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "9S3T4JTQ45TQKNTE.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9S3T4JTQ45TQKNTE.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "9S3T4JTQ45TQKNTE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "9S3T4JTQ45TQKNTE.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "9S3T4JTQ45TQKNTE.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9S3T4JTQ45TQKNTE.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "9S3T4JTQ45TQKNTE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9S3T4JTQ45TQKNTE.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "9S3T4JTQ45TQKNTE.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "9S3T4JTQ45TQKNTE.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "9S3T4JTQ45TQKNTE.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33935" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9S3T4JTQ45TQKNTE.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "9S3T4JTQ45TQKNTE", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "9S3T4JTQ45TQKNTE.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "9S3T4JTQ45TQKNTE.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "ZQQM88TCYA932EPG" : { - "ZQQM88TCYA932EPG.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ZQQM88TCYA932EPG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZQQM88TCYA932EPG.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ZQQM88TCYA932EPG.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ZQQM88TCYA932EPG.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ZQQM88TCYA932EPG.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "107927" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZQQM88TCYA932EPG.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ZQQM88TCYA932EPG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZQQM88TCYA932EPG.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ZQQM88TCYA932EPG.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "66019" - }, - "appliesTo" : [ ] - }, - "ZQQM88TCYA932EPG.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ZQQM88TCYA932EPG.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZQQM88TCYA932EPG.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ZQQM88TCYA932EPG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZQQM88TCYA932EPG.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ZQQM88TCYA932EPG.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.4260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZQQM88TCYA932EPG.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "ZQQM88TCYA932EPG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZQQM88TCYA932EPG.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "ZQQM88TCYA932EPG.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.7180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZQQM88TCYA932EPG.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ZQQM88TCYA932EPG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZQQM88TCYA932EPG.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ZQQM88TCYA932EPG.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ZQQM88TCYA932EPG.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ZQQM88TCYA932EPG.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "129398" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZQQM88TCYA932EPG.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ZQQM88TCYA932EPG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZQQM88TCYA932EPG.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ZQQM88TCYA932EPG.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "85049" - }, - "appliesTo" : [ ] - }, - "ZQQM88TCYA932EPG.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ZQQM88TCYA932EPG.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZQQM88TCYA932EPG.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ZQQM88TCYA932EPG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZQQM88TCYA932EPG.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ZQQM88TCYA932EPG.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37732" - }, - "appliesTo" : [ ] - }, - "ZQQM88TCYA932EPG.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ZQQM88TCYA932EPG.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.3070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZQQM88TCYA932EPG.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ZQQM88TCYA932EPG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZQQM88TCYA932EPG.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ZQQM88TCYA932EPG.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.0450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZQQM88TCYA932EPG.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ZQQM88TCYA932EPG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZQQM88TCYA932EPG.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ZQQM88TCYA932EPG.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.4020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZQQM88TCYA932EPG.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ZQQM88TCYA932EPG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZQQM88TCYA932EPG.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ZQQM88TCYA932EPG.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.9530000000" - }, - "appliesTo" : [ ] - }, - "ZQQM88TCYA932EPG.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ZQQM88TCYA932EPG.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "43392" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZQQM88TCYA932EPG.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ZQQM88TCYA932EPG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZQQM88TCYA932EPG.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ZQQM88TCYA932EPG.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "73955" - }, - "appliesTo" : [ ] - }, - "ZQQM88TCYA932EPG.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ZQQM88TCYA932EPG.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZQQM88TCYA932EPG.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ZQQM88TCYA932EPG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZQQM88TCYA932EPG.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ZQQM88TCYA932EPG.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "57408" - }, - "appliesTo" : [ ] - }, - "ZQQM88TCYA932EPG.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ZQQM88TCYA932EPG.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "3X4XPPD8AEXYQCJ7" : { - "3X4XPPD8AEXYQCJ7.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "3X4XPPD8AEXYQCJ7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3X4XPPD8AEXYQCJ7.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "3X4XPPD8AEXYQCJ7.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2516000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3X4XPPD8AEXYQCJ7.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "3X4XPPD8AEXYQCJ7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3X4XPPD8AEXYQCJ7.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "3X4XPPD8AEXYQCJ7.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1010000000" - }, - "appliesTo" : [ ] - }, - "3X4XPPD8AEXYQCJ7.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "3X4XPPD8AEXYQCJ7.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2665" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3X4XPPD8AEXYQCJ7.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "3X4XPPD8AEXYQCJ7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3X4XPPD8AEXYQCJ7.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "3X4XPPD8AEXYQCJ7.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3012" - }, - "appliesTo" : [ ] - }, - "3X4XPPD8AEXYQCJ7.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "3X4XPPD8AEXYQCJ7.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1142000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3X4XPPD8AEXYQCJ7.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "3X4XPPD8AEXYQCJ7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3X4XPPD8AEXYQCJ7.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "3X4XPPD8AEXYQCJ7.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2519" - }, - "appliesTo" : [ ] - }, - "3X4XPPD8AEXYQCJ7.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "3X4XPPD8AEXYQCJ7.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3X4XPPD8AEXYQCJ7.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "3X4XPPD8AEXYQCJ7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3X4XPPD8AEXYQCJ7.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "3X4XPPD8AEXYQCJ7.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "3X4XPPD8AEXYQCJ7.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "3X4XPPD8AEXYQCJ7.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5042" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3X4XPPD8AEXYQCJ7.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "3X4XPPD8AEXYQCJ7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3X4XPPD8AEXYQCJ7.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "3X4XPPD8AEXYQCJ7.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3465000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3X4XPPD8AEXYQCJ7.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "3X4XPPD8AEXYQCJ7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3X4XPPD8AEXYQCJ7.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "3X4XPPD8AEXYQCJ7.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1484" - }, - "appliesTo" : [ ] - }, - "3X4XPPD8AEXYQCJ7.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "3X4XPPD8AEXYQCJ7.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1623000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3X4XPPD8AEXYQCJ7.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "3X4XPPD8AEXYQCJ7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3X4XPPD8AEXYQCJ7.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "3X4XPPD8AEXYQCJ7.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3056000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3X4XPPD8AEXYQCJ7.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "3X4XPPD8AEXYQCJ7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3X4XPPD8AEXYQCJ7.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "3X4XPPD8AEXYQCJ7.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1313" - }, - "appliesTo" : [ ] - }, - "3X4XPPD8AEXYQCJ7.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "3X4XPPD8AEXYQCJ7.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1428000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3X4XPPD8AEXYQCJ7.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "3X4XPPD8AEXYQCJ7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3X4XPPD8AEXYQCJ7.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "3X4XPPD8AEXYQCJ7.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2853" - }, - "appliesTo" : [ ] - }, - "3X4XPPD8AEXYQCJ7.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "3X4XPPD8AEXYQCJ7.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3X4XPPD8AEXYQCJ7.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "3X4XPPD8AEXYQCJ7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3X4XPPD8AEXYQCJ7.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "3X4XPPD8AEXYQCJ7.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2231000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3X4XPPD8AEXYQCJ7.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "3X4XPPD8AEXYQCJ7", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "3X4XPPD8AEXYQCJ7.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "3X4XPPD8AEXYQCJ7.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5907" - }, - "appliesTo" : [ ] - }, - "3X4XPPD8AEXYQCJ7.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "3X4XPPD8AEXYQCJ7.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "ANHAK96GJ32FCXM9" : { - "ANHAK96GJ32FCXM9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ANHAK96GJ32FCXM9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ANHAK96GJ32FCXM9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ANHAK96GJ32FCXM9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8240000000" - }, - "appliesTo" : [ ] - }, - "ANHAK96GJ32FCXM9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ANHAK96GJ32FCXM9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7282" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ANHAK96GJ32FCXM9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ANHAK96GJ32FCXM9", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "ANHAK96GJ32FCXM9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ANHAK96GJ32FCXM9.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ANHAK96GJ32FCXM9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ANHAK96GJ32FCXM9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14218" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ANHAK96GJ32FCXM9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ANHAK96GJ32FCXM9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ANHAK96GJ32FCXM9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ANHAK96GJ32FCXM9.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ANHAK96GJ32FCXM9.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ANHAK96GJ32FCXM9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ANHAK96GJ32FCXM9.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ANHAK96GJ32FCXM9.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17276" - }, - "appliesTo" : [ ] - }, - "ANHAK96GJ32FCXM9.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ANHAK96GJ32FCXM9.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ANHAK96GJ32FCXM9.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ANHAK96GJ32FCXM9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ANHAK96GJ32FCXM9.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ANHAK96GJ32FCXM9.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ANHAK96GJ32FCXM9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ANHAK96GJ32FCXM9", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "ANHAK96GJ32FCXM9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ANHAK96GJ32FCXM9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ANHAK96GJ32FCXM9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ANHAK96GJ32FCXM9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28441" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ANHAK96GJ32FCXM9.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "ANHAK96GJ32FCXM9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ANHAK96GJ32FCXM9.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "ANHAK96GJ32FCXM9.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ANHAK96GJ32FCXM9.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ANHAK96GJ32FCXM9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ANHAK96GJ32FCXM9.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ANHAK96GJ32FCXM9.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33866" - }, - "appliesTo" : [ ] - }, - "ANHAK96GJ32FCXM9.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ANHAK96GJ32FCXM9.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ANHAK96GJ32FCXM9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ANHAK96GJ32FCXM9", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "ANHAK96GJ32FCXM9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ANHAK96GJ32FCXM9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15111" - }, - "appliesTo" : [ ] - }, - "ANHAK96GJ32FCXM9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ANHAK96GJ32FCXM9.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ANHAK96GJ32FCXM9.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ANHAK96GJ32FCXM9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ANHAK96GJ32FCXM9.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ANHAK96GJ32FCXM9.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16402" - }, - "appliesTo" : [ ] - }, - "ANHAK96GJ32FCXM9.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ANHAK96GJ32FCXM9.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ANHAK96GJ32FCXM9.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ANHAK96GJ32FCXM9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ANHAK96GJ32FCXM9.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ANHAK96GJ32FCXM9.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8396" - }, - "appliesTo" : [ ] - }, - "ANHAK96GJ32FCXM9.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ANHAK96GJ32FCXM9.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ANHAK96GJ32FCXM9.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ANHAK96GJ32FCXM9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ANHAK96GJ32FCXM9.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ANHAK96GJ32FCXM9.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "JHPHDAYNUFXJTVZB" : { - "JHPHDAYNUFXJTVZB.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "JHPHDAYNUFXJTVZB", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JHPHDAYNUFXJTVZB.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "JHPHDAYNUFXJTVZB.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "JHPHDAYNUFXJTVZB.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "JHPHDAYNUFXJTVZB", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JHPHDAYNUFXJTVZB.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "JHPHDAYNUFXJTVZB.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "759" - }, - "appliesTo" : [ ] - }, - "JHPHDAYNUFXJTVZB.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "JHPHDAYNUFXJTVZB.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "JHPHDAYNUFXJTVZB.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "JHPHDAYNUFXJTVZB", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JHPHDAYNUFXJTVZB.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "JHPHDAYNUFXJTVZB.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "754" - }, - "appliesTo" : [ ] - }, - "JHPHDAYNUFXJTVZB.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "JHPHDAYNUFXJTVZB.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JHPHDAYNUFXJTVZB.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "JHPHDAYNUFXJTVZB", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "JHPHDAYNUFXJTVZB.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "JHPHDAYNUFXJTVZB.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "308" - }, - "appliesTo" : [ ] - }, - "JHPHDAYNUFXJTVZB.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "JHPHDAYNUFXJTVZB.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "JHPHDAYNUFXJTVZB.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "JHPHDAYNUFXJTVZB", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "JHPHDAYNUFXJTVZB.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "JHPHDAYNUFXJTVZB.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1800" - }, - "appliesTo" : [ ] - }, - "JHPHDAYNUFXJTVZB.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "JHPHDAYNUFXJTVZB.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "EVNBJQCCHQGV6XNB" : { - "EVNBJQCCHQGV6XNB.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "EVNBJQCCHQGV6XNB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EVNBJQCCHQGV6XNB.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "EVNBJQCCHQGV6XNB.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "EVNBJQCCHQGV6XNB.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "EVNBJQCCHQGV6XNB", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "EVNBJQCCHQGV6XNB.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "EVNBJQCCHQGV6XNB.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5936" - }, - "appliesTo" : [ ] - }, - "EVNBJQCCHQGV6XNB.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "EVNBJQCCHQGV6XNB.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EVNBJQCCHQGV6XNB.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "EVNBJQCCHQGV6XNB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EVNBJQCCHQGV6XNB.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "EVNBJQCCHQGV6XNB.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6774" - }, - "appliesTo" : [ ] - }, - "EVNBJQCCHQGV6XNB.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "EVNBJQCCHQGV6XNB.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "EVNBJQCCHQGV6XNB.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "EVNBJQCCHQGV6XNB", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "EVNBJQCCHQGV6XNB.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "EVNBJQCCHQGV6XNB.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11193" - }, - "appliesTo" : [ ] - }, - "EVNBJQCCHQGV6XNB.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "EVNBJQCCHQGV6XNB.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EVNBJQCCHQGV6XNB.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "EVNBJQCCHQGV6XNB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EVNBJQCCHQGV6XNB.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "EVNBJQCCHQGV6XNB.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "EVNBJQCCHQGV6XNB.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "EVNBJQCCHQGV6XNB", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "EVNBJQCCHQGV6XNB.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "EVNBJQCCHQGV6XNB.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5312" - }, - "appliesTo" : [ ] - }, - "EVNBJQCCHQGV6XNB.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "EVNBJQCCHQGV6XNB.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EVNBJQCCHQGV6XNB.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "EVNBJQCCHQGV6XNB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EVNBJQCCHQGV6XNB.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "EVNBJQCCHQGV6XNB.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6065" - }, - "appliesTo" : [ ] - }, - "EVNBJQCCHQGV6XNB.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "EVNBJQCCHQGV6XNB.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "EVNBJQCCHQGV6XNB.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "EVNBJQCCHQGV6XNB", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "EVNBJQCCHQGV6XNB.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "EVNBJQCCHQGV6XNB.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3060000000" - }, - "appliesTo" : [ ] - }, - "EVNBJQCCHQGV6XNB.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "EVNBJQCCHQGV6XNB.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2738" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EVNBJQCCHQGV6XNB.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "EVNBJQCCHQGV6XNB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EVNBJQCCHQGV6XNB.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "EVNBJQCCHQGV6XNB.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "EVNBJQCCHQGV6XNB.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "EVNBJQCCHQGV6XNB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "EVNBJQCCHQGV6XNB.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "EVNBJQCCHQGV6XNB.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13282" - }, - "appliesTo" : [ ] - }, - "EVNBJQCCHQGV6XNB.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "EVNBJQCCHQGV6XNB.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "EVNBJQCCHQGV6XNB.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "EVNBJQCCHQGV6XNB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EVNBJQCCHQGV6XNB.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "EVNBJQCCHQGV6XNB.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "EVNBJQCCHQGV6XNB.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "EVNBJQCCHQGV6XNB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EVNBJQCCHQGV6XNB.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "EVNBJQCCHQGV6XNB.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3123" - }, - "appliesTo" : [ ] - }, - "EVNBJQCCHQGV6XNB.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "EVNBJQCCHQGV6XNB.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "Z3R6FENB6RXUUA7Z" : { - "Z3R6FENB6RXUUA7Z.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Z3R6FENB6RXUUA7Z", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "Z3R6FENB6RXUUA7Z.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Z3R6FENB6RXUUA7Z.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10323" - }, - "appliesTo" : [ ] - }, - "Z3R6FENB6RXUUA7Z.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Z3R6FENB6RXUUA7Z.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Z3R6FENB6RXUUA7Z.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Z3R6FENB6RXUUA7Z", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "Z3R6FENB6RXUUA7Z.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Z3R6FENB6RXUUA7Z.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5295" - }, - "appliesTo" : [ ] - }, - "Z3R6FENB6RXUUA7Z.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Z3R6FENB6RXUUA7Z.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z3R6FENB6RXUUA7Z.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "Z3R6FENB6RXUUA7Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z3R6FENB6RXUUA7Z.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "Z3R6FENB6RXUUA7Z.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6063" - }, - "appliesTo" : [ ] - }, - "Z3R6FENB6RXUUA7Z.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "Z3R6FENB6RXUUA7Z.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z3R6FENB6RXUUA7Z.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "Z3R6FENB6RXUUA7Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z3R6FENB6RXUUA7Z.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "Z3R6FENB6RXUUA7Z.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4442000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Z3R6FENB6RXUUA7Z.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Z3R6FENB6RXUUA7Z", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "Z3R6FENB6RXUUA7Z.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Z3R6FENB6RXUUA7Z.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4320000000" - }, - "appliesTo" : [ ] - }, - "Z3R6FENB6RXUUA7Z.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Z3R6FENB6RXUUA7Z.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11373" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z3R6FENB6RXUUA7Z.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "Z3R6FENB6RXUUA7Z", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z3R6FENB6RXUUA7Z.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "Z3R6FENB6RXUUA7Z.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4953000000" - }, - "appliesTo" : [ ] - }, - "Z3R6FENB6RXUUA7Z.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "Z3R6FENB6RXUUA7Z.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13026" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z3R6FENB6RXUUA7Z.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Z3R6FENB6RXUUA7Z", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "Z3R6FENB6RXUUA7Z.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Z3R6FENB6RXUUA7Z.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "Z3R6FENB6RXUUA7Z.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Z3R6FENB6RXUUA7Z.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21414" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Z3R6FENB6RXUUA7Z.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "Z3R6FENB6RXUUA7Z", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z3R6FENB6RXUUA7Z.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "Z3R6FENB6RXUUA7Z.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9388000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Z3R6FENB6RXUUA7Z.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "Z3R6FENB6RXUUA7Z", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z3R6FENB6RXUUA7Z.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "Z3R6FENB6RXUUA7Z.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11828" - }, - "appliesTo" : [ ] - }, - "Z3R6FENB6RXUUA7Z.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "Z3R6FENB6RXUUA7Z.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Z3R6FENB6RXUUA7Z.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "Z3R6FENB6RXUUA7Z", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z3R6FENB6RXUUA7Z.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "Z3R6FENB6RXUUA7Z.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25535" - }, - "appliesTo" : [ ] - }, - "Z3R6FENB6RXUUA7Z.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "Z3R6FENB6RXUUA7Z.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Z3R6FENB6RXUUA7Z.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Z3R6FENB6RXUUA7Z", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "Z3R6FENB6RXUUA7Z.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Z3R6FENB6RXUUA7Z.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Z3R6FENB6RXUUA7Z.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "Z3R6FENB6RXUUA7Z", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z3R6FENB6RXUUA7Z.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "Z3R6FENB6RXUUA7Z.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0747000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "68JXBV5UF5AMUV4X" : { - "68JXBV5UF5AMUV4X.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "68JXBV5UF5AMUV4X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "68JXBV5UF5AMUV4X.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "68JXBV5UF5AMUV4X.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "97501" - }, - "appliesTo" : [ ] - }, - "68JXBV5UF5AMUV4X.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "68JXBV5UF5AMUV4X.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "68JXBV5UF5AMUV4X.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "68JXBV5UF5AMUV4X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "68JXBV5UF5AMUV4X.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "68JXBV5UF5AMUV4X.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "45437" - }, - "appliesTo" : [ ] - }, - "68JXBV5UF5AMUV4X.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "68JXBV5UF5AMUV4X.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "68JXBV5UF5AMUV4X.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "68JXBV5UF5AMUV4X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "68JXBV5UF5AMUV4X.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "68JXBV5UF5AMUV4X.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "68JXBV5UF5AMUV4X.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "68JXBV5UF5AMUV4X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "68JXBV5UF5AMUV4X.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "68JXBV5UF5AMUV4X.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8780000000" - }, - "appliesTo" : [ ] - }, - "68JXBV5UF5AMUV4X.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "68JXBV5UF5AMUV4X.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "49351" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "68JXBV5UF5AMUV4X.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "68JXBV5UF5AMUV4X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "68JXBV5UF5AMUV4X.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "68JXBV5UF5AMUV4X.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "68JXBV5UF5AMUV4X.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "68JXBV5UF5AMUV4X.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "87742" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "68JXBV5UF5AMUV4X.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "68JXBV5UF5AMUV4X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "68JXBV5UF5AMUV4X.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "68JXBV5UF5AMUV4X.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "51553" - }, - "appliesTo" : [ ] - }, - "68JXBV5UF5AMUV4X.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "68JXBV5UF5AMUV4X.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "68JXBV5UF5AMUV4X.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "68JXBV5UF5AMUV4X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "68JXBV5UF5AMUV4X.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "68JXBV5UF5AMUV4X.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26171" - }, - "appliesTo" : [ ] - }, - "68JXBV5UF5AMUV4X.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "68JXBV5UF5AMUV4X.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "68JXBV5UF5AMUV4X.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "68JXBV5UF5AMUV4X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "68JXBV5UF5AMUV4X.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "68JXBV5UF5AMUV4X.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.2000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "68JXBV5UF5AMUV4X.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "68JXBV5UF5AMUV4X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "68JXBV5UF5AMUV4X.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "68JXBV5UF5AMUV4X.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46511" - }, - "appliesTo" : [ ] - }, - "68JXBV5UF5AMUV4X.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "68JXBV5UF5AMUV4X.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "68JXBV5UF5AMUV4X.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "68JXBV5UF5AMUV4X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "68JXBV5UF5AMUV4X.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "68JXBV5UF5AMUV4X.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23598" - }, - "appliesTo" : [ ] - }, - "68JXBV5UF5AMUV4X.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "68JXBV5UF5AMUV4X.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "68JXBV5UF5AMUV4X.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "68JXBV5UF5AMUV4X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "68JXBV5UF5AMUV4X.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "68JXBV5UF5AMUV4X.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.5840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "68JXBV5UF5AMUV4X.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "68JXBV5UF5AMUV4X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "68JXBV5UF5AMUV4X.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "68JXBV5UF5AMUV4X.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "73PG2QBG4QJ74BQG" : { - "73PG2QBG4QJ74BQG.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "73PG2QBG4QJ74BQG", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "73PG2QBG4QJ74BQG.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "73PG2QBG4QJ74BQG.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8166" - }, - "appliesTo" : [ ] - }, - "73PG2QBG4QJ74BQG.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "73PG2QBG4QJ74BQG.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "73PG2QBG4QJ74BQG.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "73PG2QBG4QJ74BQG", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "73PG2QBG4QJ74BQG.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "73PG2QBG4QJ74BQG.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "73PG2QBG4QJ74BQG.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "73PG2QBG4QJ74BQG.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16301" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "73PG2QBG4QJ74BQG.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "73PG2QBG4QJ74BQG", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "73PG2QBG4QJ74BQG.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "73PG2QBG4QJ74BQG.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47311" - }, - "appliesTo" : [ ] - }, - "73PG2QBG4QJ74BQG.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "73PG2QBG4QJ74BQG.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "73PG2QBG4QJ74BQG.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "73PG2QBG4QJ74BQG", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "73PG2QBG4QJ74BQG.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "73PG2QBG4QJ74BQG.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "73PG2QBG4QJ74BQG.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "73PG2QBG4QJ74BQG", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "73PG2QBG4QJ74BQG.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "73PG2QBG4QJ74BQG.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "48437" - }, - "appliesTo" : [ ] - }, - "73PG2QBG4QJ74BQG.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "73PG2QBG4QJ74BQG.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "73PG2QBG4QJ74BQG.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "73PG2QBG4QJ74BQG", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "73PG2QBG4QJ74BQG.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "73PG2QBG4QJ74BQG.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23753" - }, - "appliesTo" : [ ] - }, - "73PG2QBG4QJ74BQG.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "73PG2QBG4QJ74BQG.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "73PG2QBG4QJ74BQG.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "73PG2QBG4QJ74BQG", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "73PG2QBG4QJ74BQG.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "73PG2QBG4QJ74BQG.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24261" - }, - "appliesTo" : [ ] - }, - "73PG2QBG4QJ74BQG.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "73PG2QBG4QJ74BQG.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "73PG2QBG4QJ74BQG.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "73PG2QBG4QJ74BQG", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "73PG2QBG4QJ74BQG.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "73PG2QBG4QJ74BQG.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "73PG2QBG4QJ74BQG.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "73PG2QBG4QJ74BQG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "73PG2QBG4QJ74BQG.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "73PG2QBG4QJ74BQG.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8280" - }, - "appliesTo" : [ ] - }, - "73PG2QBG4QJ74BQG.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "73PG2QBG4QJ74BQG.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "73PG2QBG4QJ74BQG.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "73PG2QBG4QJ74BQG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "73PG2QBG4QJ74BQG.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "73PG2QBG4QJ74BQG.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "73PG2QBG4QJ74BQG.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "73PG2QBG4QJ74BQG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "73PG2QBG4QJ74BQG.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "73PG2QBG4QJ74BQG.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16523" - }, - "appliesTo" : [ ] - }, - "73PG2QBG4QJ74BQG.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "73PG2QBG4QJ74BQG.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "VYJECTWWHZY57WXX" : { - "VYJECTWWHZY57WXX.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "VYJECTWWHZY57WXX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "VYJECTWWHZY57WXX.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "VYJECTWWHZY57WXX.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4558" - }, - "appliesTo" : [ ] - }, - "VYJECTWWHZY57WXX.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "VYJECTWWHZY57WXX.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VYJECTWWHZY57WXX.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "VYJECTWWHZY57WXX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "VYJECTWWHZY57WXX.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "VYJECTWWHZY57WXX.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2002" - }, - "appliesTo" : [ ] - }, - "VYJECTWWHZY57WXX.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "VYJECTWWHZY57WXX.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VYJECTWWHZY57WXX.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "VYJECTWWHZY57WXX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VYJECTWWHZY57WXX.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "VYJECTWWHZY57WXX.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5552" - }, - "appliesTo" : [ ] - }, - "VYJECTWWHZY57WXX.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "VYJECTWWHZY57WXX.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VYJECTWWHZY57WXX.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "VYJECTWWHZY57WXX", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "VYJECTWWHZY57WXX.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "VYJECTWWHZY57WXX.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VYJECTWWHZY57WXX.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "VYJECTWWHZY57WXX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "VYJECTWWHZY57WXX.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "VYJECTWWHZY57WXX.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "VYJECTWWHZY57WXX.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "VYJECTWWHZY57WXX.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9381" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VYJECTWWHZY57WXX.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "VYJECTWWHZY57WXX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "VYJECTWWHZY57WXX.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "VYJECTWWHZY57WXX.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VYJECTWWHZY57WXX.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "VYJECTWWHZY57WXX", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "VYJECTWWHZY57WXX.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "VYJECTWWHZY57WXX.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2650000000" - }, - "appliesTo" : [ ] - }, - "VYJECTWWHZY57WXX.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "VYJECTWWHZY57WXX.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3014" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VYJECTWWHZY57WXX.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "VYJECTWWHZY57WXX", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "VYJECTWWHZY57WXX.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "VYJECTWWHZY57WXX.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12647" - }, - "appliesTo" : [ ] - }, - "VYJECTWWHZY57WXX.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "VYJECTWWHZY57WXX.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VYJECTWWHZY57WXX.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "VYJECTWWHZY57WXX", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "VYJECTWWHZY57WXX.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "VYJECTWWHZY57WXX.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5405" - }, - "appliesTo" : [ ] - }, - "VYJECTWWHZY57WXX.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "VYJECTWWHZY57WXX.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VYJECTWWHZY57WXX.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "VYJECTWWHZY57WXX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VYJECTWWHZY57WXX.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "VYJECTWWHZY57WXX.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2816" - }, - "appliesTo" : [ ] - }, - "VYJECTWWHZY57WXX.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "VYJECTWWHZY57WXX.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VYJECTWWHZY57WXX.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "VYJECTWWHZY57WXX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VYJECTWWHZY57WXX.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "VYJECTWWHZY57WXX.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "XP36THJWHRJ7JUHM" : { - "XP36THJWHRJ7JUHM.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "XP36THJWHRJ7JUHM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XP36THJWHRJ7JUHM.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "XP36THJWHRJ7JUHM.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XP36THJWHRJ7JUHM.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "XP36THJWHRJ7JUHM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XP36THJWHRJ7JUHM.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "XP36THJWHRJ7JUHM.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XP36THJWHRJ7JUHM.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XP36THJWHRJ7JUHM", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "XP36THJWHRJ7JUHM.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XP36THJWHRJ7JUHM.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "XP36THJWHRJ7JUHM.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XP36THJWHRJ7JUHM.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10353" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XP36THJWHRJ7JUHM.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "XP36THJWHRJ7JUHM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XP36THJWHRJ7JUHM.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "XP36THJWHRJ7JUHM.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11709" - }, - "appliesTo" : [ ] - }, - "XP36THJWHRJ7JUHM.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "XP36THJWHRJ7JUHM.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XP36THJWHRJ7JUHM.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "XP36THJWHRJ7JUHM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XP36THJWHRJ7JUHM.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "XP36THJWHRJ7JUHM.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5167" - }, - "appliesTo" : [ ] - }, - "XP36THJWHRJ7JUHM.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "XP36THJWHRJ7JUHM.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XP36THJWHRJ7JUHM.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XP36THJWHRJ7JUHM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XP36THJWHRJ7JUHM.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XP36THJWHRJ7JUHM.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3690" - }, - "appliesTo" : [ ] - }, - "XP36THJWHRJ7JUHM.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XP36THJWHRJ7JUHM.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XP36THJWHRJ7JUHM.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "XP36THJWHRJ7JUHM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XP36THJWHRJ7JUHM.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "XP36THJWHRJ7JUHM.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4231" - }, - "appliesTo" : [ ] - }, - "XP36THJWHRJ7JUHM.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "XP36THJWHRJ7JUHM.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XP36THJWHRJ7JUHM.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XP36THJWHRJ7JUHM", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "XP36THJWHRJ7JUHM.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XP36THJWHRJ7JUHM.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1777" - }, - "appliesTo" : [ ] - }, - "XP36THJWHRJ7JUHM.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XP36THJWHRJ7JUHM.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XP36THJWHRJ7JUHM.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "XP36THJWHRJ7JUHM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XP36THJWHRJ7JUHM.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "XP36THJWHRJ7JUHM.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3650000000" - }, - "appliesTo" : [ ] - }, - "XP36THJWHRJ7JUHM.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "XP36THJWHRJ7JUHM.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2055" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XP36THJWHRJ7JUHM.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "XP36THJWHRJ7JUHM", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XP36THJWHRJ7JUHM.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "XP36THJWHRJ7JUHM.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XP36THJWHRJ7JUHM.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XP36THJWHRJ7JUHM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XP36THJWHRJ7JUHM.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XP36THJWHRJ7JUHM.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XP36THJWHRJ7JUHM.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XP36THJWHRJ7JUHM", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XP36THJWHRJ7JUHM.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XP36THJWHRJ7JUHM.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "XP36THJWHRJ7JUHM.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XP36THJWHRJ7JUHM.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4621" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "R5VPK73B6MUUM6YC" : { - "R5VPK73B6MUUM6YC.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "R5VPK73B6MUUM6YC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "R5VPK73B6MUUM6YC.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "R5VPK73B6MUUM6YC.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "R5VPK73B6MUUM6YC.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "R5VPK73B6MUUM6YC", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "R5VPK73B6MUUM6YC.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "R5VPK73B6MUUM6YC.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12746" - }, - "appliesTo" : [ ] - }, - "R5VPK73B6MUUM6YC.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "R5VPK73B6MUUM6YC.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "R5VPK73B6MUUM6YC.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "R5VPK73B6MUUM6YC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "R5VPK73B6MUUM6YC.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "R5VPK73B6MUUM6YC.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38638" - }, - "appliesTo" : [ ] - }, - "R5VPK73B6MUUM6YC.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "R5VPK73B6MUUM6YC.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "R5VPK73B6MUUM6YC.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "R5VPK73B6MUUM6YC", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "R5VPK73B6MUUM6YC.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "R5VPK73B6MUUM6YC.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "R5VPK73B6MUUM6YC.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "R5VPK73B6MUUM6YC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "R5VPK73B6MUUM6YC.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "R5VPK73B6MUUM6YC.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18650" - }, - "appliesTo" : [ ] - }, - "R5VPK73B6MUUM6YC.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "R5VPK73B6MUUM6YC.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "R5VPK73B6MUUM6YC.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "R5VPK73B6MUUM6YC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R5VPK73B6MUUM6YC.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "R5VPK73B6MUUM6YC.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24677" - }, - "appliesTo" : [ ] - }, - "R5VPK73B6MUUM6YC.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "R5VPK73B6MUUM6YC.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "R5VPK73B6MUUM6YC.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "R5VPK73B6MUUM6YC", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "R5VPK73B6MUUM6YC.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "R5VPK73B6MUUM6YC.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21586" - }, - "appliesTo" : [ ] - }, - "R5VPK73B6MUUM6YC.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "R5VPK73B6MUUM6YC.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "R5VPK73B6MUUM6YC.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "R5VPK73B6MUUM6YC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "R5VPK73B6MUUM6YC.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "R5VPK73B6MUUM6YC.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7996" - }, - "appliesTo" : [ ] - }, - "R5VPK73B6MUUM6YC.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "R5VPK73B6MUUM6YC.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "R5VPK73B6MUUM6YC.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "R5VPK73B6MUUM6YC", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "R5VPK73B6MUUM6YC.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "R5VPK73B6MUUM6YC.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "R5VPK73B6MUUM6YC.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "R5VPK73B6MUUM6YC.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "51837" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "R5VPK73B6MUUM6YC.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "R5VPK73B6MUUM6YC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R5VPK73B6MUUM6YC.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "R5VPK73B6MUUM6YC.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "R5VPK73B6MUUM6YC.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "R5VPK73B6MUUM6YC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "R5VPK73B6MUUM6YC.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "R5VPK73B6MUUM6YC.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12500" - }, - "appliesTo" : [ ] - }, - "R5VPK73B6MUUM6YC.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "R5VPK73B6MUUM6YC.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "TQYX838K5K3QH7KK" : { - "TQYX838K5K3QH7KK.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "TQYX838K5K3QH7KK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TQYX838K5K3QH7KK.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "TQYX838K5K3QH7KK.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TQYX838K5K3QH7KK.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "TQYX838K5K3QH7KK.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11823" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TQYX838K5K3QH7KK.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TQYX838K5K3QH7KK", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "TQYX838K5K3QH7KK.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TQYX838K5K3QH7KK.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TQYX838K5K3QH7KK.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TQYX838K5K3QH7KK.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29370" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TQYX838K5K3QH7KK.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "TQYX838K5K3QH7KK", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "TQYX838K5K3QH7KK.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "TQYX838K5K3QH7KK.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TQYX838K5K3QH7KK.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "TQYX838K5K3QH7KK", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "TQYX838K5K3QH7KK.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "TQYX838K5K3QH7KK.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "TQYX838K5K3QH7KK.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "TQYX838K5K3QH7KK.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33285" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TQYX838K5K3QH7KK.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TQYX838K5K3QH7KK", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "TQYX838K5K3QH7KK.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TQYX838K5K3QH7KK.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TQYX838K5K3QH7KK.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TQYX838K5K3QH7KK", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "TQYX838K5K3QH7KK.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TQYX838K5K3QH7KK.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4622" - }, - "appliesTo" : [ ] - }, - "TQYX838K5K3QH7KK.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TQYX838K5K3QH7KK.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TQYX838K5K3QH7KK.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "TQYX838K5K3QH7KK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TQYX838K5K3QH7KK.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "TQYX838K5K3QH7KK.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TQYX838K5K3QH7KK.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "TQYX838K5K3QH7KK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TQYX838K5K3QH7KK.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "TQYX838K5K3QH7KK.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6780000000" - }, - "appliesTo" : [ ] - }, - "TQYX838K5K3QH7KK.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "TQYX838K5K3QH7KK.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5937" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TQYX838K5K3QH7KK.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TQYX838K5K3QH7KK", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "TQYX838K5K3QH7KK.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TQYX838K5K3QH7KK.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11312" - }, - "appliesTo" : [ ] - }, - "TQYX838K5K3QH7KK.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TQYX838K5K3QH7KK.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TQYX838K5K3QH7KK.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "TQYX838K5K3QH7KK", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "TQYX838K5K3QH7KK.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "TQYX838K5K3QH7KK.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13475" - }, - "appliesTo" : [ ] - }, - "TQYX838K5K3QH7KK.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "TQYX838K5K3QH7KK.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TQYX838K5K3QH7KK.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TQYX838K5K3QH7KK", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "TQYX838K5K3QH7KK.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TQYX838K5K3QH7KK.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12507" - }, - "appliesTo" : [ ] - }, - "TQYX838K5K3QH7KK.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TQYX838K5K3QH7KK.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "U2FYDQN5UB6DJ9P6" : { - "U2FYDQN5UB6DJ9P6.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "U2FYDQN5UB6DJ9P6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "U2FYDQN5UB6DJ9P6.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "U2FYDQN5UB6DJ9P6.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "958" - }, - "appliesTo" : [ ] - }, - "U2FYDQN5UB6DJ9P6.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "U2FYDQN5UB6DJ9P6.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "U2FYDQN5UB6DJ9P6.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "U2FYDQN5UB6DJ9P6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "U2FYDQN5UB6DJ9P6.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "U2FYDQN5UB6DJ9P6.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "U2FYDQN5UB6DJ9P6.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "U2FYDQN5UB6DJ9P6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "U2FYDQN5UB6DJ9P6.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "U2FYDQN5UB6DJ9P6.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "U2FYDQN5UB6DJ9P6.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "U2FYDQN5UB6DJ9P6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "U2FYDQN5UB6DJ9P6.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "U2FYDQN5UB6DJ9P6.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2281" - }, - "appliesTo" : [ ] - }, - "U2FYDQN5UB6DJ9P6.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "U2FYDQN5UB6DJ9P6.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "U2FYDQN5UB6DJ9P6.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "U2FYDQN5UB6DJ9P6", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "U2FYDQN5UB6DJ9P6.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "U2FYDQN5UB6DJ9P6.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1108" - }, - "appliesTo" : [ ] - }, - "U2FYDQN5UB6DJ9P6.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "U2FYDQN5UB6DJ9P6.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "U2FYDQN5UB6DJ9P6.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "U2FYDQN5UB6DJ9P6", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "U2FYDQN5UB6DJ9P6.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "U2FYDQN5UB6DJ9P6.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0560000000" - }, - "appliesTo" : [ ] - }, - "U2FYDQN5UB6DJ9P6.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "U2FYDQN5UB6DJ9P6.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "489" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "U2FYDQN5UB6DJ9P6.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "U2FYDQN5UB6DJ9P6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "U2FYDQN5UB6DJ9P6.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "U2FYDQN5UB6DJ9P6.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "U2FYDQN5UB6DJ9P6.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "U2FYDQN5UB6DJ9P6", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "U2FYDQN5UB6DJ9P6.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "U2FYDQN5UB6DJ9P6.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "U2FYDQN5UB6DJ9P6.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "U2FYDQN5UB6DJ9P6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U2FYDQN5UB6DJ9P6.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "U2FYDQN5UB6DJ9P6.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "565" - }, - "appliesTo" : [ ] - }, - "U2FYDQN5UB6DJ9P6.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "U2FYDQN5UB6DJ9P6.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "U2FYDQN5UB6DJ9P6.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "U2FYDQN5UB6DJ9P6", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "U2FYDQN5UB6DJ9P6.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "U2FYDQN5UB6DJ9P6.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1908" - }, - "appliesTo" : [ ] - }, - "U2FYDQN5UB6DJ9P6.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "U2FYDQN5UB6DJ9P6.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "U2FYDQN5UB6DJ9P6.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "U2FYDQN5UB6DJ9P6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "U2FYDQN5UB6DJ9P6.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "U2FYDQN5UB6DJ9P6.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1164" - }, - "appliesTo" : [ ] - }, - "U2FYDQN5UB6DJ9P6.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "U2FYDQN5UB6DJ9P6.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "U2FYDQN5UB6DJ9P6.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "U2FYDQN5UB6DJ9P6", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "U2FYDQN5UB6DJ9P6.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "U2FYDQN5UB6DJ9P6.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1012" - }, - "appliesTo" : [ ] - }, - "U2FYDQN5UB6DJ9P6.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "U2FYDQN5UB6DJ9P6.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "4EBV6P5EQBBDFNKX" : { - "4EBV6P5EQBBDFNKX.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "4EBV6P5EQBBDFNKX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4EBV6P5EQBBDFNKX.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "4EBV6P5EQBBDFNKX.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16059" - }, - "appliesTo" : [ ] - }, - "4EBV6P5EQBBDFNKX.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "4EBV6P5EQBBDFNKX.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8333000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4EBV6P5EQBBDFNKX.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "4EBV6P5EQBBDFNKX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4EBV6P5EQBBDFNKX.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "4EBV6P5EQBBDFNKX.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5866000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "4EBV6P5EQBBDFNKX.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "4EBV6P5EQBBDFNKX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4EBV6P5EQBBDFNKX.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "4EBV6P5EQBBDFNKX.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32067" - }, - "appliesTo" : [ ] - }, - "4EBV6P5EQBBDFNKX.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "4EBV6P5EQBBDFNKX.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4EBV6P5EQBBDFNKX.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "4EBV6P5EQBBDFNKX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4EBV6P5EQBBDFNKX.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "4EBV6P5EQBBDFNKX.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5581000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "4EBV6P5EQBBDFNKX.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "4EBV6P5EQBBDFNKX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4EBV6P5EQBBDFNKX.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "4EBV6P5EQBBDFNKX.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6406000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "4EBV6P5EQBBDFNKX.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "4EBV6P5EQBBDFNKX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4EBV6P5EQBBDFNKX.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "4EBV6P5EQBBDFNKX.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "93724" - }, - "appliesTo" : [ ] - }, - "4EBV6P5EQBBDFNKX.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "4EBV6P5EQBBDFNKX.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4EBV6P5EQBBDFNKX.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "4EBV6P5EQBBDFNKX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4EBV6P5EQBBDFNKX.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "4EBV6P5EQBBDFNKX.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15889" - }, - "appliesTo" : [ ] - }, - "4EBV6P5EQBBDFNKX.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "4EBV6P5EQBBDFNKX.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8138000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4EBV6P5EQBBDFNKX.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "4EBV6P5EQBBDFNKX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4EBV6P5EQBBDFNKX.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "4EBV6P5EQBBDFNKX.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31732" - }, - "appliesTo" : [ ] - }, - "4EBV6P5EQBBDFNKX.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "4EBV6P5EQBBDFNKX.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4EBV6P5EQBBDFNKX.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "4EBV6P5EQBBDFNKX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4EBV6P5EQBBDFNKX.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "4EBV6P5EQBBDFNKX.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6815000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "4EBV6P5EQBBDFNKX.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "4EBV6P5EQBBDFNKX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4EBV6P5EQBBDFNKX.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "4EBV6P5EQBBDFNKX.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "92859" - }, - "appliesTo" : [ ] - }, - "4EBV6P5EQBBDFNKX.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "4EBV6P5EQBBDFNKX.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4EBV6P5EQBBDFNKX.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "4EBV6P5EQBBDFNKX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4EBV6P5EQBBDFNKX.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "4EBV6P5EQBBDFNKX.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46568" - }, - "appliesTo" : [ ] - }, - "4EBV6P5EQBBDFNKX.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "4EBV6P5EQBBDFNKX.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4EBV6P5EQBBDFNKX.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "4EBV6P5EQBBDFNKX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4EBV6P5EQBBDFNKX.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "4EBV6P5EQBBDFNKX.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7852000000" - }, - "appliesTo" : [ ] - }, - "4EBV6P5EQBBDFNKX.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "4EBV6P5EQBBDFNKX.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46915" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "PEEKBP32QZKKEGWF" : { - "PEEKBP32QZKKEGWF.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "PEEKBP32QZKKEGWF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PEEKBP32QZKKEGWF.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "PEEKBP32QZKKEGWF.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.0120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "PEEKBP32QZKKEGWF.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "PEEKBP32QZKKEGWF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PEEKBP32QZKKEGWF.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "PEEKBP32QZKKEGWF.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34272" - }, - "appliesTo" : [ ] - }, - "PEEKBP32QZKKEGWF.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "PEEKBP32QZKKEGWF.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PEEKBP32QZKKEGWF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "PEEKBP32QZKKEGWF", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "PEEKBP32QZKKEGWF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "PEEKBP32QZKKEGWF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32043" - }, - "appliesTo" : [ ] - }, - "PEEKBP32QZKKEGWF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "PEEKBP32QZKKEGWF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PEEKBP32QZKKEGWF.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "PEEKBP32QZKKEGWF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PEEKBP32QZKKEGWF.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "PEEKBP32QZKKEGWF.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "PEEKBP32QZKKEGWF.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "PEEKBP32QZKKEGWF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PEEKBP32QZKKEGWF.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "PEEKBP32QZKKEGWF.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3240000000" - }, - "appliesTo" : [ ] - }, - "PEEKBP32QZKKEGWF.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "PEEKBP32QZKKEGWF.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "87342" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PEEKBP32QZKKEGWF.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "PEEKBP32QZKKEGWF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PEEKBP32QZKKEGWF.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "PEEKBP32QZKKEGWF.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.4900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "PEEKBP32QZKKEGWF.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "PEEKBP32QZKKEGWF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PEEKBP32QZKKEGWF.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "PEEKBP32QZKKEGWF.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.8530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "PEEKBP32QZKKEGWF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "PEEKBP32QZKKEGWF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PEEKBP32QZKKEGWF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "PEEKBP32QZKKEGWF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "162479" - }, - "appliesTo" : [ ] - }, - "PEEKBP32QZKKEGWF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "PEEKBP32QZKKEGWF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PEEKBP32QZKKEGWF.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "PEEKBP32QZKKEGWF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PEEKBP32QZKKEGWF.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "PEEKBP32QZKKEGWF.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "67886" - }, - "appliesTo" : [ ] - }, - "PEEKBP32QZKKEGWF.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "PEEKBP32QZKKEGWF.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PEEKBP32QZKKEGWF.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "PEEKBP32QZKKEGWF", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PEEKBP32QZKKEGWF.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "PEEKBP32QZKKEGWF.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "173330" - }, - "appliesTo" : [ ] - }, - "PEEKBP32QZKKEGWF.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "PEEKBP32QZKKEGWF.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PEEKBP32QZKKEGWF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "PEEKBP32QZKKEGWF", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "PEEKBP32QZKKEGWF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "PEEKBP32QZKKEGWF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "63518" - }, - "appliesTo" : [ ] - }, - "PEEKBP32QZKKEGWF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "PEEKBP32QZKKEGWF.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PEEKBP32QZKKEGWF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "PEEKBP32QZKKEGWF", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "PEEKBP32QZKKEGWF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "PEEKBP32QZKKEGWF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "83011" - }, - "appliesTo" : [ ] - }, - "PEEKBP32QZKKEGWF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "PEEKBP32QZKKEGWF.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "DRXSTBE8SCECG53R" : { - "DRXSTBE8SCECG53R.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "DRXSTBE8SCECG53R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DRXSTBE8SCECG53R.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "DRXSTBE8SCECG53R.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "89925" - }, - "appliesTo" : [ ] - }, - "DRXSTBE8SCECG53R.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "DRXSTBE8SCECG53R.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.2650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DRXSTBE8SCECG53R.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "DRXSTBE8SCECG53R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DRXSTBE8SCECG53R.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "DRXSTBE8SCECG53R.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "21.0260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DRXSTBE8SCECG53R.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "DRXSTBE8SCECG53R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DRXSTBE8SCECG53R.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "DRXSTBE8SCECG53R.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "167021" - }, - "appliesTo" : [ ] - }, - "DRXSTBE8SCECG53R.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "DRXSTBE8SCECG53R.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DRXSTBE8SCECG53R.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "DRXSTBE8SCECG53R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DRXSTBE8SCECG53R.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "DRXSTBE8SCECG53R.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "205619" - }, - "appliesTo" : [ ] - }, - "DRXSTBE8SCECG53R.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "DRXSTBE8SCECG53R.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.8240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DRXSTBE8SCECG53R.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "DRXSTBE8SCECG53R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DRXSTBE8SCECG53R.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "DRXSTBE8SCECG53R.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "197008" - }, - "appliesTo" : [ ] - }, - "DRXSTBE8SCECG53R.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "DRXSTBE8SCECG53R.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DRXSTBE8SCECG53R.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "DRXSTBE8SCECG53R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DRXSTBE8SCECG53R.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "DRXSTBE8SCECG53R.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "178115" - }, - "appliesTo" : [ ] - }, - "DRXSTBE8SCECG53R.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "DRXSTBE8SCECG53R.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DRXSTBE8SCECG53R.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "DRXSTBE8SCECG53R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DRXSTBE8SCECG53R.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "DRXSTBE8SCECG53R.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "387126" - }, - "appliesTo" : [ ] - }, - "DRXSTBE8SCECG53R.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "DRXSTBE8SCECG53R.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DRXSTBE8SCECG53R.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "DRXSTBE8SCECG53R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DRXSTBE8SCECG53R.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "DRXSTBE8SCECG53R.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.3420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DRXSTBE8SCECG53R.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "DRXSTBE8SCECG53R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DRXSTBE8SCECG53R.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "DRXSTBE8SCECG53R.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.0500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DRXSTBE8SCECG53R.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "DRXSTBE8SCECG53R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DRXSTBE8SCECG53R.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "DRXSTBE8SCECG53R.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "19.6690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DRXSTBE8SCECG53R.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "DRXSTBE8SCECG53R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DRXSTBE8SCECG53R.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "DRXSTBE8SCECG53R.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "408597" - }, - "appliesTo" : [ ] - }, - "DRXSTBE8SCECG53R.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "DRXSTBE8SCECG53R.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DRXSTBE8SCECG53R.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "DRXSTBE8SCECG53R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DRXSTBE8SCECG53R.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "DRXSTBE8SCECG53R.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "84265" - }, - "appliesTo" : [ ] - }, - "DRXSTBE8SCECG53R.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "DRXSTBE8SCECG53R.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.6190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "22SBKEJ8F25GCA2X" : { - "22SBKEJ8F25GCA2X.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "22SBKEJ8F25GCA2X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "22SBKEJ8F25GCA2X.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "22SBKEJ8F25GCA2X.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8016" - }, - "appliesTo" : [ ] - }, - "22SBKEJ8F25GCA2X.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "22SBKEJ8F25GCA2X.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "22SBKEJ8F25GCA2X.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "22SBKEJ8F25GCA2X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "22SBKEJ8F25GCA2X.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "22SBKEJ8F25GCA2X.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16145" - }, - "appliesTo" : [ ] - }, - "22SBKEJ8F25GCA2X.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "22SBKEJ8F25GCA2X.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "22SBKEJ8F25GCA2X.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "22SBKEJ8F25GCA2X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "22SBKEJ8F25GCA2X.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "22SBKEJ8F25GCA2X.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8082" - }, - "appliesTo" : [ ] - }, - "22SBKEJ8F25GCA2X.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "22SBKEJ8F25GCA2X.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "22SBKEJ8F25GCA2X.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "22SBKEJ8F25GCA2X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "22SBKEJ8F25GCA2X.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "22SBKEJ8F25GCA2X.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "22SBKEJ8F25GCA2X.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "22SBKEJ8F25GCA2X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "22SBKEJ8F25GCA2X.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "22SBKEJ8F25GCA2X.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "22SBKEJ8F25GCA2X.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "22SBKEJ8F25GCA2X.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15981" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "22SBKEJ8F25GCA2X.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "22SBKEJ8F25GCA2X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "22SBKEJ8F25GCA2X.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "22SBKEJ8F25GCA2X.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "22SBKEJ8F25GCA2X.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "22SBKEJ8F25GCA2X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "22SBKEJ8F25GCA2X.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "22SBKEJ8F25GCA2X.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "22SBKEJ8F25GCA2X.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "22SBKEJ8F25GCA2X.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5493" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "22SBKEJ8F25GCA2X.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "22SBKEJ8F25GCA2X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "22SBKEJ8F25GCA2X.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "22SBKEJ8F25GCA2X.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3140000000" - }, - "appliesTo" : [ ] - }, - "22SBKEJ8F25GCA2X.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "22SBKEJ8F25GCA2X.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2751" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "22SBKEJ8F25GCA2X.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "22SBKEJ8F25GCA2X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "22SBKEJ8F25GCA2X.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "22SBKEJ8F25GCA2X.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "22SBKEJ8F25GCA2X.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "22SBKEJ8F25GCA2X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "22SBKEJ8F25GCA2X.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "22SBKEJ8F25GCA2X.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5559" - }, - "appliesTo" : [ ] - }, - "22SBKEJ8F25GCA2X.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "22SBKEJ8F25GCA2X.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "22SBKEJ8F25GCA2X.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "22SBKEJ8F25GCA2X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "22SBKEJ8F25GCA2X.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "22SBKEJ8F25GCA2X.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "22SBKEJ8F25GCA2X.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "22SBKEJ8F25GCA2X", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "22SBKEJ8F25GCA2X.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "22SBKEJ8F25GCA2X.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3180000000" - }, - "appliesTo" : [ ] - }, - "22SBKEJ8F25GCA2X.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "22SBKEJ8F25GCA2X.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2785" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "P3HMXPX59K45JP62" : { - "P3HMXPX59K45JP62.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "P3HMXPX59K45JP62", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P3HMXPX59K45JP62.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "P3HMXPX59K45JP62.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "P3HMXPX59K45JP62.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "P3HMXPX59K45JP62", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P3HMXPX59K45JP62.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "P3HMXPX59K45JP62.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0420000000" - }, - "appliesTo" : [ ] - }, - "P3HMXPX59K45JP62.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "P3HMXPX59K45JP62.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "433" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "P3HMXPX59K45JP62.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "P3HMXPX59K45JP62", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P3HMXPX59K45JP62.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "P3HMXPX59K45JP62.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0390000000" - }, - "appliesTo" : [ ] - }, - "P3HMXPX59K45JP62.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "P3HMXPX59K45JP62.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "399" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "P3HMXPX59K45JP62.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "P3HMXPX59K45JP62", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P3HMXPX59K45JP62.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "P3HMXPX59K45JP62.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "P3HMXPX59K45JP62.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "P3HMXPX59K45JP62", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P3HMXPX59K45JP62.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "P3HMXPX59K45JP62.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "793" - }, - "appliesTo" : [ ] - }, - "P3HMXPX59K45JP62.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "P3HMXPX59K45JP62.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "P3HMXPX59K45JP62.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "P3HMXPX59K45JP62", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P3HMXPX59K45JP62.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "P3HMXPX59K45JP62.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "P3HMXPX59K45JP62.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "P3HMXPX59K45JP62", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P3HMXPX59K45JP62.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "P3HMXPX59K45JP62.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "851" - }, - "appliesTo" : [ ] - }, - "P3HMXPX59K45JP62.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "P3HMXPX59K45JP62.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "P3HMXPX59K45JP62.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "P3HMXPX59K45JP62", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P3HMXPX59K45JP62.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "P3HMXPX59K45JP62.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1673" - }, - "appliesTo" : [ ] - }, - "P3HMXPX59K45JP62.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "P3HMXPX59K45JP62.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "P3HMXPX59K45JP62.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "P3HMXPX59K45JP62", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P3HMXPX59K45JP62.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "P3HMXPX59K45JP62.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "728" - }, - "appliesTo" : [ ] - }, - "P3HMXPX59K45JP62.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "P3HMXPX59K45JP62.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "P3HMXPX59K45JP62.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "P3HMXPX59K45JP62", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P3HMXPX59K45JP62.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "P3HMXPX59K45JP62.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1509" - }, - "appliesTo" : [ ] - }, - "P3HMXPX59K45JP62.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "P3HMXPX59K45JP62.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "P3HMXPX59K45JP62.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "P3HMXPX59K45JP62", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P3HMXPX59K45JP62.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "P3HMXPX59K45JP62.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "P3HMXPX59K45JP62.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "P3HMXPX59K45JP62", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "P3HMXPX59K45JP62.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "P3HMXPX59K45JP62.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0290000000" - }, - "appliesTo" : [ ] - }, - "P3HMXPX59K45JP62.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "P3HMXPX59K45JP62.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "785" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "MAVGNUA5DQ5SM9C7" : { - "MAVGNUA5DQ5SM9C7.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "MAVGNUA5DQ5SM9C7", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "MAVGNUA5DQ5SM9C7.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "MAVGNUA5DQ5SM9C7.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1018" - }, - "appliesTo" : [ ] - }, - "MAVGNUA5DQ5SM9C7.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "MAVGNUA5DQ5SM9C7.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MAVGNUA5DQ5SM9C7.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "MAVGNUA5DQ5SM9C7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MAVGNUA5DQ5SM9C7.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "MAVGNUA5DQ5SM9C7.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "MAVGNUA5DQ5SM9C7.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "MAVGNUA5DQ5SM9C7.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1913" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MAVGNUA5DQ5SM9C7.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "MAVGNUA5DQ5SM9C7", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "MAVGNUA5DQ5SM9C7.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "MAVGNUA5DQ5SM9C7.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4459" - }, - "appliesTo" : [ ] - }, - "MAVGNUA5DQ5SM9C7.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "MAVGNUA5DQ5SM9C7.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MAVGNUA5DQ5SM9C7.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "MAVGNUA5DQ5SM9C7", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "MAVGNUA5DQ5SM9C7.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "MAVGNUA5DQ5SM9C7.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MAVGNUA5DQ5SM9C7.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "MAVGNUA5DQ5SM9C7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MAVGNUA5DQ5SM9C7.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "MAVGNUA5DQ5SM9C7.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1004" - }, - "appliesTo" : [ ] - }, - "MAVGNUA5DQ5SM9C7.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "MAVGNUA5DQ5SM9C7.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MAVGNUA5DQ5SM9C7.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "MAVGNUA5DQ5SM9C7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MAVGNUA5DQ5SM9C7.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "MAVGNUA5DQ5SM9C7.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MAVGNUA5DQ5SM9C7.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "MAVGNUA5DQ5SM9C7", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "MAVGNUA5DQ5SM9C7.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "MAVGNUA5DQ5SM9C7.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MAVGNUA5DQ5SM9C7.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "MAVGNUA5DQ5SM9C7", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MAVGNUA5DQ5SM9C7.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "MAVGNUA5DQ5SM9C7.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1697" - }, - "appliesTo" : [ ] - }, - "MAVGNUA5DQ5SM9C7.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "MAVGNUA5DQ5SM9C7.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MAVGNUA5DQ5SM9C7.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "MAVGNUA5DQ5SM9C7", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "MAVGNUA5DQ5SM9C7.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "MAVGNUA5DQ5SM9C7.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2625" - }, - "appliesTo" : [ ] - }, - "MAVGNUA5DQ5SM9C7.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "MAVGNUA5DQ5SM9C7.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MAVGNUA5DQ5SM9C7.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "MAVGNUA5DQ5SM9C7", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "MAVGNUA5DQ5SM9C7.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "MAVGNUA5DQ5SM9C7.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1713" - }, - "appliesTo" : [ ] - }, - "MAVGNUA5DQ5SM9C7.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "MAVGNUA5DQ5SM9C7.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MAVGNUA5DQ5SM9C7.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "MAVGNUA5DQ5SM9C7", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MAVGNUA5DQ5SM9C7.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "MAVGNUA5DQ5SM9C7.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3349" - }, - "appliesTo" : [ ] - }, - "MAVGNUA5DQ5SM9C7.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "MAVGNUA5DQ5SM9C7.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "6TEX73KEE94WMEED" : { - "6TEX73KEE94WMEED.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6TEX73KEE94WMEED", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "6TEX73KEE94WMEED.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6TEX73KEE94WMEED.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5139" - }, - "appliesTo" : [ ] - }, - "6TEX73KEE94WMEED.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6TEX73KEE94WMEED.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6TEX73KEE94WMEED.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6TEX73KEE94WMEED", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6TEX73KEE94WMEED.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6TEX73KEE94WMEED.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1620" - }, - "appliesTo" : [ ] - }, - "6TEX73KEE94WMEED.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6TEX73KEE94WMEED.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6TEX73KEE94WMEED.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6TEX73KEE94WMEED", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6TEX73KEE94WMEED.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6TEX73KEE94WMEED.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6TEX73KEE94WMEED.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6TEX73KEE94WMEED", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "6TEX73KEE94WMEED.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6TEX73KEE94WMEED.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2703" - }, - "appliesTo" : [ ] - }, - "6TEX73KEE94WMEED.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6TEX73KEE94WMEED.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6TEX73KEE94WMEED.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6TEX73KEE94WMEED", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6TEX73KEE94WMEED.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6TEX73KEE94WMEED.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2524" - }, - "appliesTo" : [ ] - }, - "6TEX73KEE94WMEED.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6TEX73KEE94WMEED.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "GTXM83ZHJ4EVYY9U" : { - "GTXM83ZHJ4EVYY9U.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "GTXM83ZHJ4EVYY9U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GTXM83ZHJ4EVYY9U.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "GTXM83ZHJ4EVYY9U.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "GTXM83ZHJ4EVYY9U.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "GTXM83ZHJ4EVYY9U", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "GTXM83ZHJ4EVYY9U.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "GTXM83ZHJ4EVYY9U.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GTXM83ZHJ4EVYY9U.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "GTXM83ZHJ4EVYY9U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GTXM83ZHJ4EVYY9U.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "GTXM83ZHJ4EVYY9U.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11541" - }, - "appliesTo" : [ ] - }, - "GTXM83ZHJ4EVYY9U.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "GTXM83ZHJ4EVYY9U.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GTXM83ZHJ4EVYY9U.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "GTXM83ZHJ4EVYY9U", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "GTXM83ZHJ4EVYY9U.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "GTXM83ZHJ4EVYY9U.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "GTXM83ZHJ4EVYY9U.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "GTXM83ZHJ4EVYY9U", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "GTXM83ZHJ4EVYY9U.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "GTXM83ZHJ4EVYY9U.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4150000000" - }, - "appliesTo" : [ ] - }, - "GTXM83ZHJ4EVYY9U.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "GTXM83ZHJ4EVYY9U.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19249" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GTXM83ZHJ4EVYY9U.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "GTXM83ZHJ4EVYY9U", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GTXM83ZHJ4EVYY9U.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "GTXM83ZHJ4EVYY9U.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19307" - }, - "appliesTo" : [ ] - }, - "GTXM83ZHJ4EVYY9U.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "GTXM83ZHJ4EVYY9U.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GTXM83ZHJ4EVYY9U.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "GTXM83ZHJ4EVYY9U", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GTXM83ZHJ4EVYY9U.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "GTXM83ZHJ4EVYY9U.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "45873" - }, - "appliesTo" : [ ] - }, - "GTXM83ZHJ4EVYY9U.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "GTXM83ZHJ4EVYY9U.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GTXM83ZHJ4EVYY9U.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "GTXM83ZHJ4EVYY9U", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GTXM83ZHJ4EVYY9U.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "GTXM83ZHJ4EVYY9U.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6938" - }, - "appliesTo" : [ ] - }, - "GTXM83ZHJ4EVYY9U.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "GTXM83ZHJ4EVYY9U.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GTXM83ZHJ4EVYY9U.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "GTXM83ZHJ4EVYY9U", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "GTXM83ZHJ4EVYY9U.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "GTXM83ZHJ4EVYY9U.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "GTXM83ZHJ4EVYY9U.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "GTXM83ZHJ4EVYY9U.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "55314" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "GTXM83ZHJ4EVYY9U.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "GTXM83ZHJ4EVYY9U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GTXM83ZHJ4EVYY9U.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "GTXM83ZHJ4EVYY9U.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22878" - }, - "appliesTo" : [ ] - }, - "GTXM83ZHJ4EVYY9U.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "GTXM83ZHJ4EVYY9U.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "GTXM83ZHJ4EVYY9U.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "GTXM83ZHJ4EVYY9U", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GTXM83ZHJ4EVYY9U.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "GTXM83ZHJ4EVYY9U.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11116" - }, - "appliesTo" : [ ] - }, - "GTXM83ZHJ4EVYY9U.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "GTXM83ZHJ4EVYY9U.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "QBZMZDA3WBTDVYJ7" : { - "QBZMZDA3WBTDVYJ7.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "QBZMZDA3WBTDVYJ7", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QBZMZDA3WBTDVYJ7.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "QBZMZDA3WBTDVYJ7.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "QBZMZDA3WBTDVYJ7.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "QBZMZDA3WBTDVYJ7", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QBZMZDA3WBTDVYJ7.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "QBZMZDA3WBTDVYJ7.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9325" - }, - "appliesTo" : [ ] - }, - "QBZMZDA3WBTDVYJ7.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "QBZMZDA3WBTDVYJ7.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QBZMZDA3WBTDVYJ7.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "QBZMZDA3WBTDVYJ7", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "QBZMZDA3WBTDVYJ7.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "QBZMZDA3WBTDVYJ7.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "QBZMZDA3WBTDVYJ7.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "QBZMZDA3WBTDVYJ7", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QBZMZDA3WBTDVYJ7.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "QBZMZDA3WBTDVYJ7.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "QBZMZDA3WBTDVYJ7.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "QBZMZDA3WBTDVYJ7.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19333" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "QBZMZDA3WBTDVYJ7.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "QBZMZDA3WBTDVYJ7", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "QBZMZDA3WBTDVYJ7.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "QBZMZDA3WBTDVYJ7.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25917" - }, - "appliesTo" : [ ] - }, - "QBZMZDA3WBTDVYJ7.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "QBZMZDA3WBTDVYJ7.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QBZMZDA3WBTDVYJ7.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "QBZMZDA3WBTDVYJ7", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QBZMZDA3WBTDVYJ7.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "QBZMZDA3WBTDVYJ7.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5400000000" - }, - "appliesTo" : [ ] - }, - "QBZMZDA3WBTDVYJ7.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "QBZMZDA3WBTDVYJ7.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6373" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QBZMZDA3WBTDVYJ7.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "QBZMZDA3WBTDVYJ7", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "QBZMZDA3WBTDVYJ7.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "QBZMZDA3WBTDVYJ7.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3999" - }, - "appliesTo" : [ ] - }, - "QBZMZDA3WBTDVYJ7.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "QBZMZDA3WBTDVYJ7.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "QBZMZDA3WBTDVYJ7.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "QBZMZDA3WBTDVYJ7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QBZMZDA3WBTDVYJ7.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "QBZMZDA3WBTDVYJ7.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12339" - }, - "appliesTo" : [ ] - }, - "QBZMZDA3WBTDVYJ7.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "QBZMZDA3WBTDVYJ7.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "QBZMZDA3WBTDVYJ7.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "QBZMZDA3WBTDVYJ7", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "QBZMZDA3WBTDVYJ7.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "QBZMZDA3WBTDVYJ7.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10796" - }, - "appliesTo" : [ ] - }, - "QBZMZDA3WBTDVYJ7.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "QBZMZDA3WBTDVYJ7.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QBZMZDA3WBTDVYJ7.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "QBZMZDA3WBTDVYJ7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QBZMZDA3WBTDVYJ7.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "QBZMZDA3WBTDVYJ7.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7130000000" - }, - "appliesTo" : [ ] - }, - "QBZMZDA3WBTDVYJ7.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "QBZMZDA3WBTDVYJ7.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6250" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "QBZMZDA3WBTDVYJ7.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "QBZMZDA3WBTDVYJ7", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "QBZMZDA3WBTDVYJ7.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "QBZMZDA3WBTDVYJ7.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "2BU9UYZTGYW8M965" : { - "2BU9UYZTGYW8M965.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "2BU9UYZTGYW8M965", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "2BU9UYZTGYW8M965.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "2BU9UYZTGYW8M965.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2BU9UYZTGYW8M965.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "2BU9UYZTGYW8M965", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "2BU9UYZTGYW8M965.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "2BU9UYZTGYW8M965.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4386" - }, - "appliesTo" : [ ] - }, - "2BU9UYZTGYW8M965.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "2BU9UYZTGYW8M965.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2BU9UYZTGYW8M965.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "2BU9UYZTGYW8M965", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "2BU9UYZTGYW8M965.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "2BU9UYZTGYW8M965.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1797" - }, - "appliesTo" : [ ] - }, - "2BU9UYZTGYW8M965.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "2BU9UYZTGYW8M965.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2BU9UYZTGYW8M965.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "2BU9UYZTGYW8M965", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "2BU9UYZTGYW8M965.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "2BU9UYZTGYW8M965.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9731" - }, - "appliesTo" : [ ] - }, - "2BU9UYZTGYW8M965.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "2BU9UYZTGYW8M965.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2BU9UYZTGYW8M965.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "2BU9UYZTGYW8M965", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "2BU9UYZTGYW8M965.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "2BU9UYZTGYW8M965.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4138" - }, - "appliesTo" : [ ] - }, - "2BU9UYZTGYW8M965.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "2BU9UYZTGYW8M965.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m1.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "WTV2MMMZFYFVHXYW" : { - "WTV2MMMZFYFVHXYW.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "WTV2MMMZFYFVHXYW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WTV2MMMZFYFVHXYW.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "WTV2MMMZFYFVHXYW.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "WTV2MMMZFYFVHXYW.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "WTV2MMMZFYFVHXYW.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7654" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WTV2MMMZFYFVHXYW.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "WTV2MMMZFYFVHXYW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "WTV2MMMZFYFVHXYW.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "WTV2MMMZFYFVHXYW.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "WTV2MMMZFYFVHXYW.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "WTV2MMMZFYFVHXYW", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "WTV2MMMZFYFVHXYW.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "WTV2MMMZFYFVHXYW.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17301" - }, - "appliesTo" : [ ] - }, - "WTV2MMMZFYFVHXYW.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "WTV2MMMZFYFVHXYW.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WTV2MMMZFYFVHXYW.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "WTV2MMMZFYFVHXYW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "WTV2MMMZFYFVHXYW.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "WTV2MMMZFYFVHXYW.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9490" - }, - "appliesTo" : [ ] - }, - "WTV2MMMZFYFVHXYW.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "WTV2MMMZFYFVHXYW.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "WTV2MMMZFYFVHXYW.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "WTV2MMMZFYFVHXYW", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "WTV2MMMZFYFVHXYW.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "WTV2MMMZFYFVHXYW.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8894" - }, - "appliesTo" : [ ] - }, - "WTV2MMMZFYFVHXYW.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "WTV2MMMZFYFVHXYW.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WTV2MMMZFYFVHXYW.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "WTV2MMMZFYFVHXYW", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "WTV2MMMZFYFVHXYW.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "WTV2MMMZFYFVHXYW.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3566" - }, - "appliesTo" : [ ] - }, - "WTV2MMMZFYFVHXYW.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "WTV2MMMZFYFVHXYW.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "WTV2MMMZFYFVHXYW.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "WTV2MMMZFYFVHXYW", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "WTV2MMMZFYFVHXYW.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "WTV2MMMZFYFVHXYW.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7054" - }, - "appliesTo" : [ ] - }, - "WTV2MMMZFYFVHXYW.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "WTV2MMMZFYFVHXYW.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "WTV2MMMZFYFVHXYW.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "WTV2MMMZFYFVHXYW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "WTV2MMMZFYFVHXYW.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "WTV2MMMZFYFVHXYW.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WTV2MMMZFYFVHXYW.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "WTV2MMMZFYFVHXYW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WTV2MMMZFYFVHXYW.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "WTV2MMMZFYFVHXYW.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "WTV2MMMZFYFVHXYW.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "WTV2MMMZFYFVHXYW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "WTV2MMMZFYFVHXYW.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "WTV2MMMZFYFVHXYW.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "WTV2MMMZFYFVHXYW.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "WTV2MMMZFYFVHXYW", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "WTV2MMMZFYFVHXYW.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "WTV2MMMZFYFVHXYW.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18793" - }, - "appliesTo" : [ ] - }, - "WTV2MMMZFYFVHXYW.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "WTV2MMMZFYFVHXYW.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "WTV2MMMZFYFVHXYW.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "WTV2MMMZFYFVHXYW", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "WTV2MMMZFYFVHXYW.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "WTV2MMMZFYFVHXYW.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4420000000" - }, - "appliesTo" : [ ] - }, - "WTV2MMMZFYFVHXYW.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "WTV2MMMZFYFVHXYW.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3872" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "RB56QANQ2YBHVFK2" : { - "RB56QANQ2YBHVFK2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "RB56QANQ2YBHVFK2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RB56QANQ2YBHVFK2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "RB56QANQ2YBHVFK2.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.0450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RB56QANQ2YBHVFK2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "RB56QANQ2YBHVFK2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RB56QANQ2YBHVFK2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "RB56QANQ2YBHVFK2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.3070000000" - }, - "appliesTo" : [ ] - }, - "RB56QANQ2YBHVFK2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "RB56QANQ2YBHVFK2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37732" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RB56QANQ2YBHVFK2.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "RB56QANQ2YBHVFK2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RB56QANQ2YBHVFK2.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "RB56QANQ2YBHVFK2.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.7180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RB56QANQ2YBHVFK2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "RB56QANQ2YBHVFK2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RB56QANQ2YBHVFK2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "RB56QANQ2YBHVFK2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "107927" - }, - "appliesTo" : [ ] - }, - "RB56QANQ2YBHVFK2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "RB56QANQ2YBHVFK2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RB56QANQ2YBHVFK2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "RB56QANQ2YBHVFK2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RB56QANQ2YBHVFK2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "RB56QANQ2YBHVFK2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "57408" - }, - "appliesTo" : [ ] - }, - "RB56QANQ2YBHVFK2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "RB56QANQ2YBHVFK2.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RB56QANQ2YBHVFK2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "RB56QANQ2YBHVFK2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RB56QANQ2YBHVFK2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "RB56QANQ2YBHVFK2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "73955" - }, - "appliesTo" : [ ] - }, - "RB56QANQ2YBHVFK2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "RB56QANQ2YBHVFK2.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "VTRGBHUJVPMPXVJ5" : { - "VTRGBHUJVPMPXVJ5.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "VTRGBHUJVPMPXVJ5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VTRGBHUJVPMPXVJ5.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "VTRGBHUJVPMPXVJ5.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "60391" - }, - "appliesTo" : [ ] - }, - "VTRGBHUJVPMPXVJ5.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "VTRGBHUJVPMPXVJ5.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.8940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VTRGBHUJVPMPXVJ5.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "VTRGBHUJVPMPXVJ5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VTRGBHUJVPMPXVJ5.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "VTRGBHUJVPMPXVJ5.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "120461" - }, - "appliesTo" : [ ] - }, - "VTRGBHUJVPMPXVJ5.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "VTRGBHUJVPMPXVJ5.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VTRGBHUJVPMPXVJ5.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "VTRGBHUJVPMPXVJ5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VTRGBHUJVPMPXVJ5.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "VTRGBHUJVPMPXVJ5.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "VTRGBHUJVPMPXVJ5.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "VTRGBHUJVPMPXVJ5.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "122825" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VTRGBHUJVPMPXVJ5.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "VTRGBHUJVPMPXVJ5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VTRGBHUJVPMPXVJ5.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "VTRGBHUJVPMPXVJ5.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.4290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VTRGBHUJVPMPXVJ5.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "VTRGBHUJVPMPXVJ5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VTRGBHUJVPMPXVJ5.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "VTRGBHUJVPMPXVJ5.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.8800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VTRGBHUJVPMPXVJ5.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "VTRGBHUJVPMPXVJ5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VTRGBHUJVPMPXVJ5.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "VTRGBHUJVPMPXVJ5.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "172650" - }, - "appliesTo" : [ ] - }, - "VTRGBHUJVPMPXVJ5.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "VTRGBHUJVPMPXVJ5.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.5700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VTRGBHUJVPMPXVJ5.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "VTRGBHUJVPMPXVJ5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VTRGBHUJVPMPXVJ5.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "VTRGBHUJVPMPXVJ5.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "61598" - }, - "appliesTo" : [ ] - }, - "VTRGBHUJVPMPXVJ5.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "VTRGBHUJVPMPXVJ5.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.0320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VTRGBHUJVPMPXVJ5.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "VTRGBHUJVPMPXVJ5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VTRGBHUJVPMPXVJ5.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "VTRGBHUJVPMPXVJ5.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "VTRGBHUJVPMPXVJ5.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "VTRGBHUJVPMPXVJ5.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "349326" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VTRGBHUJVPMPXVJ5.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "VTRGBHUJVPMPXVJ5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VTRGBHUJVPMPXVJ5.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "VTRGBHUJVPMPXVJ5.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "343428" - }, - "appliesTo" : [ ] - }, - "VTRGBHUJVPMPXVJ5.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "VTRGBHUJVPMPXVJ5.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VTRGBHUJVPMPXVJ5.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "VTRGBHUJVPMPXVJ5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VTRGBHUJVPMPXVJ5.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "VTRGBHUJVPMPXVJ5.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.2340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VTRGBHUJVPMPXVJ5.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "VTRGBHUJVPMPXVJ5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VTRGBHUJVPMPXVJ5.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "VTRGBHUJVPMPXVJ5.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "175022" - }, - "appliesTo" : [ ] - }, - "VTRGBHUJVPMPXVJ5.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "VTRGBHUJVPMPXVJ5.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.6600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VTRGBHUJVPMPXVJ5.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "VTRGBHUJVPMPXVJ5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VTRGBHUJVPMPXVJ5.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "VTRGBHUJVPMPXVJ5.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.1690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "XERSDU2TVYCQWYRV" : { - "XERSDU2TVYCQWYRV.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XERSDU2TVYCQWYRV", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "XERSDU2TVYCQWYRV.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XERSDU2TVYCQWYRV.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1576" - }, - "appliesTo" : [ ] - }, - "XERSDU2TVYCQWYRV.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XERSDU2TVYCQWYRV.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XERSDU2TVYCQWYRV.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XERSDU2TVYCQWYRV", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "XERSDU2TVYCQWYRV.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XERSDU2TVYCQWYRV.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3121" - }, - "appliesTo" : [ ] - }, - "XERSDU2TVYCQWYRV.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XERSDU2TVYCQWYRV.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XERSDU2TVYCQWYRV.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "XERSDU2TVYCQWYRV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XERSDU2TVYCQWYRV.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "XERSDU2TVYCQWYRV.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3965000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XERSDU2TVYCQWYRV.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "XERSDU2TVYCQWYRV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XERSDU2TVYCQWYRV.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "XERSDU2TVYCQWYRV.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1590000000" - }, - "appliesTo" : [ ] - }, - "XERSDU2TVYCQWYRV.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "XERSDU2TVYCQWYRV.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4180" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XERSDU2TVYCQWYRV.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XERSDU2TVYCQWYRV", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "XERSDU2TVYCQWYRV.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XERSDU2TVYCQWYRV.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3958" - }, - "appliesTo" : [ ] - }, - "XERSDU2TVYCQWYRV.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XERSDU2TVYCQWYRV.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XERSDU2TVYCQWYRV.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "XERSDU2TVYCQWYRV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XERSDU2TVYCQWYRV.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "XERSDU2TVYCQWYRV.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1692" - }, - "appliesTo" : [ ] - }, - "XERSDU2TVYCQWYRV.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "XERSDU2TVYCQWYRV.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1932000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XERSDU2TVYCQWYRV.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "XERSDU2TVYCQWYRV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XERSDU2TVYCQWYRV.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "XERSDU2TVYCQWYRV.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8289" - }, - "appliesTo" : [ ] - }, - "XERSDU2TVYCQWYRV.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "XERSDU2TVYCQWYRV.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XERSDU2TVYCQWYRV.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "XERSDU2TVYCQWYRV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XERSDU2TVYCQWYRV.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "XERSDU2TVYCQWYRV.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3099000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XERSDU2TVYCQWYRV.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XERSDU2TVYCQWYRV", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "XERSDU2TVYCQWYRV.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XERSDU2TVYCQWYRV.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7731" - }, - "appliesTo" : [ ] - }, - "XERSDU2TVYCQWYRV.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XERSDU2TVYCQWYRV.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XERSDU2TVYCQWYRV.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "XERSDU2TVYCQWYRV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XERSDU2TVYCQWYRV.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "XERSDU2TVYCQWYRV.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3349" - }, - "appliesTo" : [ ] - }, - "XERSDU2TVYCQWYRV.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "XERSDU2TVYCQWYRV.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XERSDU2TVYCQWYRV.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "XERSDU2TVYCQWYRV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XERSDU2TVYCQWYRV.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "XERSDU2TVYCQWYRV.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3288000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XERSDU2TVYCQWYRV.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XERSDU2TVYCQWYRV", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "XERSDU2TVYCQWYRV.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XERSDU2TVYCQWYRV.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3688000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "73HRUT4W38285YYX" : { - "73HRUT4W38285YYX.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "73HRUT4W38285YYX", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "73HRUT4W38285YYX.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "73HRUT4W38285YYX.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2960000000" - }, - "appliesTo" : [ ] - }, - "73HRUT4W38285YYX.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "73HRUT4W38285YYX.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28873" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "73HRUT4W38285YYX.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "73HRUT4W38285YYX", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "73HRUT4W38285YYX.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "73HRUT4W38285YYX.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1436000000" - }, - "appliesTo" : [ ] - }, - "73HRUT4W38285YYX.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "73HRUT4W38285YYX.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "82614" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "73HRUT4W38285YYX.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "73HRUT4W38285YYX", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "73HRUT4W38285YYX.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "73HRUT4W38285YYX.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.3652000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "73HRUT4W38285YYX.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "73HRUT4W38285YYX", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "73HRUT4W38285YYX.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "73HRUT4W38285YYX.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "57522" - }, - "appliesTo" : [ ] - }, - "73HRUT4W38285YYX.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "73HRUT4W38285YYX.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "73HRUT4W38285YYX.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "73HRUT4W38285YYX", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "73HRUT4W38285YYX.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "73HRUT4W38285YYX.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "160548" - }, - "appliesTo" : [ ] - }, - "73HRUT4W38285YYX.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "73HRUT4W38285YYX.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "73HRUT4W38285YYX.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "73HRUT4W38285YYX", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "73HRUT4W38285YYX.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "73HRUT4W38285YYX.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "80943" - }, - "appliesTo" : [ ] - }, - "73HRUT4W38285YYX.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "73HRUT4W38285YYX.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "73HRUT4W38285YYX.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "73HRUT4W38285YYX", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "73HRUT4W38285YYX.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "73HRUT4W38285YYX.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.6560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "73HRUT4W38285YYX.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "73HRUT4W38285YYX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "73HRUT4W38285YYX.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "73HRUT4W38285YYX.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.8576000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "73HRUT4W38285YYX.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "73HRUT4W38285YYX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "73HRUT4W38285YYX.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "73HRUT4W38285YYX.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "59170" - }, - "appliesTo" : [ ] - }, - "73HRUT4W38285YYX.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "73HRUT4W38285YYX.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "73HRUT4W38285YYX.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "73HRUT4W38285YYX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "73HRUT4W38285YYX.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "73HRUT4W38285YYX.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29714" - }, - "appliesTo" : [ ] - }, - "73HRUT4W38285YYX.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "73HRUT4W38285YYX.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "73HRUT4W38285YYX.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "73HRUT4W38285YYX", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "73HRUT4W38285YYX.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "73HRUT4W38285YYX.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.2278000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "73HRUT4W38285YYX.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "73HRUT4W38285YYX", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "73HRUT4W38285YYX.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "73HRUT4W38285YYX.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "164715" - }, - "appliesTo" : [ ] - }, - "73HRUT4W38285YYX.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "73HRUT4W38285YYX.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "8329EG456ZYK9UHU" : { - "8329EG456ZYK9UHU.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "8329EG456ZYK9UHU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8329EG456ZYK9UHU.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "8329EG456ZYK9UHU.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "155747" - }, - "appliesTo" : [ ] - }, - "8329EG456ZYK9UHU.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "8329EG456ZYK9UHU.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "17.7790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8329EG456ZYK9UHU.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "8329EG456ZYK9UHU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8329EG456ZYK9UHU.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "8329EG456ZYK9UHU.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "309985" - }, - "appliesTo" : [ ] - }, - "8329EG456ZYK9UHU.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "8329EG456ZYK9UHU.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8329EG456ZYK9UHU.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "8329EG456ZYK9UHU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8329EG456ZYK9UHU.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "8329EG456ZYK9UHU.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "32.3700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8329EG456ZYK9UHU.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "8329EG456ZYK9UHU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8329EG456ZYK9UHU.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "8329EG456ZYK9UHU.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "31.6620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8329EG456ZYK9UHU.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "8329EG456ZYK9UHU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8329EG456ZYK9UHU.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "8329EG456ZYK9UHU.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "321078" - }, - "appliesTo" : [ ] - }, - "8329EG456ZYK9UHU.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "8329EG456ZYK9UHU.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8329EG456ZYK9UHU.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "8329EG456ZYK9UHU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8329EG456ZYK9UHU.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "8329EG456ZYK9UHU.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "35.9890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8329EG456ZYK9UHU.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "8329EG456ZYK9UHU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8329EG456ZYK9UHU.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "8329EG456ZYK9UHU.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "161407" - }, - "appliesTo" : [ ] - }, - "8329EG456ZYK9UHU.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "8329EG456ZYK9UHU.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "18.4250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8329EG456ZYK9UHU.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "8329EG456ZYK9UHU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8329EG456ZYK9UHU.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "8329EG456ZYK9UHU.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "8329EG456ZYK9UHU.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "8329EG456ZYK9UHU.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "837486" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8329EG456ZYK9UHU.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "8329EG456ZYK9UHU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8329EG456ZYK9UHU.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "8329EG456ZYK9UHU.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "420064" - }, - "appliesTo" : [ ] - }, - "8329EG456ZYK9UHU.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "8329EG456ZYK9UHU.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.9840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8329EG456ZYK9UHU.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "8329EG456ZYK9UHU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8329EG456ZYK9UHU.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "8329EG456ZYK9UHU.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "8329EG456ZYK9UHU.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "8329EG456ZYK9UHU.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "816016" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8329EG456ZYK9UHU.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "8329EG456ZYK9UHU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8329EG456ZYK9UHU.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "8329EG456ZYK9UHU.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "37.3460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8329EG456ZYK9UHU.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "8329EG456ZYK9UHU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8329EG456ZYK9UHU.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "8329EG456ZYK9UHU.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "411452" - }, - "appliesTo" : [ ] - }, - "8329EG456ZYK9UHU.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "8329EG456ZYK9UHU.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.6560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "KBAHSDRSVP6ZT96X" : { - "KBAHSDRSVP6ZT96X.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "KBAHSDRSVP6ZT96X", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "KBAHSDRSVP6ZT96X.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "KBAHSDRSVP6ZT96X.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "438" - }, - "appliesTo" : [ ] - }, - "KBAHSDRSVP6ZT96X.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "KBAHSDRSVP6ZT96X.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KBAHSDRSVP6ZT96X.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "KBAHSDRSVP6ZT96X", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "KBAHSDRSVP6ZT96X.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "KBAHSDRSVP6ZT96X.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "135" - }, - "appliesTo" : [ ] - }, - "KBAHSDRSVP6ZT96X.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "KBAHSDRSVP6ZT96X.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KBAHSDRSVP6ZT96X.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "KBAHSDRSVP6ZT96X", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "KBAHSDRSVP6ZT96X.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "KBAHSDRSVP6ZT96X.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KBAHSDRSVP6ZT96X.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "KBAHSDRSVP6ZT96X", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "KBAHSDRSVP6ZT96X.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "KBAHSDRSVP6ZT96X.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0100000000" - }, - "appliesTo" : [ ] - }, - "KBAHSDRSVP6ZT96X.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "KBAHSDRSVP6ZT96X.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "207" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KBAHSDRSVP6ZT96X.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "KBAHSDRSVP6ZT96X", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "KBAHSDRSVP6ZT96X.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "KBAHSDRSVP6ZT96X.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "226" - }, - "appliesTo" : [ ] - }, - "KBAHSDRSVP6ZT96X.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "KBAHSDRSVP6ZT96X.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "N23UBSTNARQRHWES" : { - "N23UBSTNARQRHWES.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "N23UBSTNARQRHWES", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "N23UBSTNARQRHWES.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "N23UBSTNARQRHWES.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5150000000" - }, - "appliesTo" : [ ] - }, - "N23UBSTNARQRHWES.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "N23UBSTNARQRHWES.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8399" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "N23UBSTNARQRHWES.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "N23UBSTNARQRHWES", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "N23UBSTNARQRHWES.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "N23UBSTNARQRHWES.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12654" - }, - "appliesTo" : [ ] - }, - "N23UBSTNARQRHWES.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "N23UBSTNARQRHWES.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "N23UBSTNARQRHWES.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "N23UBSTNARQRHWES", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N23UBSTNARQRHWES.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "N23UBSTNARQRHWES.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7405" - }, - "appliesTo" : [ ] - }, - "N23UBSTNARQRHWES.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "N23UBSTNARQRHWES.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "N23UBSTNARQRHWES.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "N23UBSTNARQRHWES", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N23UBSTNARQRHWES.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "N23UBSTNARQRHWES.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "N23UBSTNARQRHWES.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "N23UBSTNARQRHWES", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "N23UBSTNARQRHWES.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "N23UBSTNARQRHWES.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16054" - }, - "appliesTo" : [ ] - }, - "N23UBSTNARQRHWES.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "N23UBSTNARQRHWES.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "N23UBSTNARQRHWES.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "N23UBSTNARQRHWES", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "N23UBSTNARQRHWES.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "N23UBSTNARQRHWES.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "N23UBSTNARQRHWES.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "N23UBSTNARQRHWES.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34077" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "N23UBSTNARQRHWES.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "N23UBSTNARQRHWES", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "N23UBSTNARQRHWES.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "N23UBSTNARQRHWES.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22554" - }, - "appliesTo" : [ ] - }, - "N23UBSTNARQRHWES.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "N23UBSTNARQRHWES.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "N23UBSTNARQRHWES.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "N23UBSTNARQRHWES", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "N23UBSTNARQRHWES.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "N23UBSTNARQRHWES.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25215" - }, - "appliesTo" : [ ] - }, - "N23UBSTNARQRHWES.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "N23UBSTNARQRHWES.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "N23UBSTNARQRHWES.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "N23UBSTNARQRHWES", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "N23UBSTNARQRHWES.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "N23UBSTNARQRHWES.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14459" - }, - "appliesTo" : [ ] - }, - "N23UBSTNARQRHWES.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "N23UBSTNARQRHWES.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "N23UBSTNARQRHWES.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "N23UBSTNARQRHWES", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "N23UBSTNARQRHWES.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "N23UBSTNARQRHWES.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "N23UBSTNARQRHWES.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "N23UBSTNARQRHWES", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "N23UBSTNARQRHWES.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "N23UBSTNARQRHWES.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "CZEFYKJRS5KC69GA" : { - "CZEFYKJRS5KC69GA.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "CZEFYKJRS5KC69GA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CZEFYKJRS5KC69GA.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "CZEFYKJRS5KC69GA.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.4840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CZEFYKJRS5KC69GA.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "CZEFYKJRS5KC69GA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CZEFYKJRS5KC69GA.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "CZEFYKJRS5KC69GA.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "40101" - }, - "appliesTo" : [ ] - }, - "CZEFYKJRS5KC69GA.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "CZEFYKJRS5KC69GA.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.7080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CZEFYKJRS5KC69GA.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "CZEFYKJRS5KC69GA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CZEFYKJRS5KC69GA.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "CZEFYKJRS5KC69GA.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "79737" - }, - "appliesTo" : [ ] - }, - "CZEFYKJRS5KC69GA.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "CZEFYKJRS5KC69GA.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CZEFYKJRS5KC69GA.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "CZEFYKJRS5KC69GA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CZEFYKJRS5KC69GA.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "CZEFYKJRS5KC69GA.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34847" - }, - "appliesTo" : [ ] - }, - "CZEFYKJRS5KC69GA.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "CZEFYKJRS5KC69GA.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.1080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CZEFYKJRS5KC69GA.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "CZEFYKJRS5KC69GA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CZEFYKJRS5KC69GA.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "CZEFYKJRS5KC69GA.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.7430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CZEFYKJRS5KC69GA.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "CZEFYKJRS5KC69GA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CZEFYKJRS5KC69GA.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "CZEFYKJRS5KC69GA.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.4570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CZEFYKJRS5KC69GA.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "CZEFYKJRS5KC69GA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CZEFYKJRS5KC69GA.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "CZEFYKJRS5KC69GA.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "174588" - }, - "appliesTo" : [ ] - }, - "CZEFYKJRS5KC69GA.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "CZEFYKJRS5KC69GA.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CZEFYKJRS5KC69GA.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "CZEFYKJRS5KC69GA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CZEFYKJRS5KC69GA.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "CZEFYKJRS5KC69GA.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CZEFYKJRS5KC69GA.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "CZEFYKJRS5KC69GA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CZEFYKJRS5KC69GA.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "CZEFYKJRS5KC69GA.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "64816" - }, - "appliesTo" : [ ] - }, - "CZEFYKJRS5KC69GA.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "CZEFYKJRS5KC69GA.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CZEFYKJRS5KC69GA.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "CZEFYKJRS5KC69GA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CZEFYKJRS5KC69GA.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "CZEFYKJRS5KC69GA.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "87333" - }, - "appliesTo" : [ ] - }, - "CZEFYKJRS5KC69GA.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "CZEFYKJRS5KC69GA.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CZEFYKJRS5KC69GA.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "CZEFYKJRS5KC69GA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CZEFYKJRS5KC69GA.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "CZEFYKJRS5KC69GA.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "125270" - }, - "appliesTo" : [ ] - }, - "CZEFYKJRS5KC69GA.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "CZEFYKJRS5KC69GA.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CZEFYKJRS5KC69GA.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "CZEFYKJRS5KC69GA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "CZEFYKJRS5KC69GA.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "CZEFYKJRS5KC69GA.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "CZEFYKJRS5KC69GA.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "CZEFYKJRS5KC69GA.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "69439" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "2SN6CBPKJWMJK4W8" : { - "2SN6CBPKJWMJK4W8.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "2SN6CBPKJWMJK4W8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2SN6CBPKJWMJK4W8.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "2SN6CBPKJWMJK4W8.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2SN6CBPKJWMJK4W8.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "2SN6CBPKJWMJK4W8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2SN6CBPKJWMJK4W8.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "2SN6CBPKJWMJK4W8.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "61493" - }, - "appliesTo" : [ ] - }, - "2SN6CBPKJWMJK4W8.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "2SN6CBPKJWMJK4W8.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2SN6CBPKJWMJK4W8.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "2SN6CBPKJWMJK4W8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2SN6CBPKJWMJK4W8.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "2SN6CBPKJWMJK4W8.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.7890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2SN6CBPKJWMJK4W8.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "2SN6CBPKJWMJK4W8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2SN6CBPKJWMJK4W8.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "2SN6CBPKJWMJK4W8.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "116369" - }, - "appliesTo" : [ ] - }, - "2SN6CBPKJWMJK4W8.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "2SN6CBPKJWMJK4W8.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2SN6CBPKJWMJK4W8.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "2SN6CBPKJWMJK4W8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2SN6CBPKJWMJK4W8.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "2SN6CBPKJWMJK4W8.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "122267" - }, - "appliesTo" : [ ] - }, - "2SN6CBPKJWMJK4W8.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "2SN6CBPKJWMJK4W8.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2SN6CBPKJWMJK4W8.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "2SN6CBPKJWMJK4W8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2SN6CBPKJWMJK4W8.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "2SN6CBPKJWMJK4W8.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "59121" - }, - "appliesTo" : [ ] - }, - "2SN6CBPKJWMJK4W8.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "2SN6CBPKJWMJK4W8.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2SN6CBPKJWMJK4W8.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "2SN6CBPKJWMJK4W8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2SN6CBPKJWMJK4W8.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "2SN6CBPKJWMJK4W8.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47139" - }, - "appliesTo" : [ ] - }, - "2SN6CBPKJWMJK4W8.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "2SN6CBPKJWMJK4W8.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2SN6CBPKJWMJK4W8.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "2SN6CBPKJWMJK4W8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2SN6CBPKJWMJK4W8.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "2SN6CBPKJWMJK4W8.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5740000000" - }, - "appliesTo" : [ ] - }, - "2SN6CBPKJWMJK4W8.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "2SN6CBPKJWMJK4W8.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22548" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2SN6CBPKJWMJK4W8.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "2SN6CBPKJWMJK4W8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2SN6CBPKJWMJK4W8.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "2SN6CBPKJWMJK4W8.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "2SN6CBPKJWMJK4W8.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "2SN6CBPKJWMJK4W8.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "44775" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2SN6CBPKJWMJK4W8.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "2SN6CBPKJWMJK4W8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2SN6CBPKJWMJK4W8.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "2SN6CBPKJWMJK4W8.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.2400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2SN6CBPKJWMJK4W8.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "2SN6CBPKJWMJK4W8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2SN6CBPKJWMJK4W8.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "2SN6CBPKJWMJK4W8.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23754" - }, - "appliesTo" : [ ] - }, - "2SN6CBPKJWMJK4W8.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "2SN6CBPKJWMJK4W8.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2SN6CBPKJWMJK4W8.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "2SN6CBPKJWMJK4W8", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2SN6CBPKJWMJK4W8.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "2SN6CBPKJWMJK4W8.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.5290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "A7J6GBKB42E7ZP99" : { - "A7J6GBKB42E7ZP99.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "A7J6GBKB42E7ZP99", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "A7J6GBKB42E7ZP99.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "A7J6GBKB42E7ZP99.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "64488" - }, - "appliesTo" : [ ] - }, - "A7J6GBKB42E7ZP99.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "A7J6GBKB42E7ZP99.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "A7J6GBKB42E7ZP99.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "A7J6GBKB42E7ZP99", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A7J6GBKB42E7ZP99.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "A7J6GBKB42E7ZP99.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "65326" - }, - "appliesTo" : [ ] - }, - "A7J6GBKB42E7ZP99.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "A7J6GBKB42E7ZP99.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "A7J6GBKB42E7ZP99.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "A7J6GBKB42E7ZP99", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "A7J6GBKB42E7ZP99.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "A7J6GBKB42E7ZP99.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "94918" - }, - "appliesTo" : [ ] - }, - "A7J6GBKB42E7ZP99.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "A7J6GBKB42E7ZP99.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6118000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "A7J6GBKB42E7ZP99.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "A7J6GBKB42E7ZP99", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "A7J6GBKB42E7ZP99.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "A7J6GBKB42E7ZP99.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32300" - }, - "appliesTo" : [ ] - }, - "A7J6GBKB42E7ZP99.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "A7J6GBKB42E7ZP99.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "A7J6GBKB42E7ZP99.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "A7J6GBKB42E7ZP99", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "A7J6GBKB42E7ZP99.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "A7J6GBKB42E7ZP99.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "189580" - }, - "appliesTo" : [ ] - }, - "A7J6GBKB42E7ZP99.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "A7J6GBKB42E7ZP99.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "A7J6GBKB42E7ZP99.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "A7J6GBKB42E7ZP99", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "A7J6GBKB42E7ZP99.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "A7J6GBKB42E7ZP99.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.1939000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "A7J6GBKB42E7ZP99.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "A7J6GBKB42E7ZP99", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A7J6GBKB42E7ZP99.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "A7J6GBKB42E7ZP99.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5088000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "A7J6GBKB42E7ZP99.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "A7J6GBKB42E7ZP99", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A7J6GBKB42E7ZP99.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "A7J6GBKB42E7ZP99.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7360000000" - }, - "appliesTo" : [ ] - }, - "A7J6GBKB42E7ZP99.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "A7J6GBKB42E7ZP99.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32727" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "A7J6GBKB42E7ZP99.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "A7J6GBKB42E7ZP99", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "A7J6GBKB42E7ZP99.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "A7J6GBKB42E7ZP99.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "A7J6GBKB42E7ZP99.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "A7J6GBKB42E7ZP99", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "A7J6GBKB42E7ZP99.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "A7J6GBKB42E7ZP99.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "94103" - }, - "appliesTo" : [ ] - }, - "A7J6GBKB42E7ZP99.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "A7J6GBKB42E7ZP99.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "A7J6GBKB42E7ZP99.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "A7J6GBKB42E7ZP99", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "A7J6GBKB42E7ZP99.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "A7J6GBKB42E7ZP99.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "187536" - }, - "appliesTo" : [ ] - }, - "A7J6GBKB42E7ZP99.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "A7J6GBKB42E7ZP99.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "A7J6GBKB42E7ZP99.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "A7J6GBKB42E7ZP99", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "A7J6GBKB42E7ZP99.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "A7J6GBKB42E7ZP99.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.2626000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "TA9V737SGNW5GKAK" : { - "TA9V737SGNW5GKAK.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "TA9V737SGNW5GKAK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TA9V737SGNW5GKAK.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "TA9V737SGNW5GKAK.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "909489" - }, - "appliesTo" : [ ] - }, - "TA9V737SGNW5GKAK.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "TA9V737SGNW5GKAK.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TA9V737SGNW5GKAK.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "TA9V737SGNW5GKAK", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "TA9V737SGNW5GKAK.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "TA9V737SGNW5GKAK.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.8720000000" - }, - "appliesTo" : [ ] - }, - "TA9V737SGNW5GKAK.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "TA9V737SGNW5GKAK.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "443396" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TA9V737SGNW5GKAK.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "TA9V737SGNW5GKAK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TA9V737SGNW5GKAK.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "TA9V737SGNW5GKAK.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "17.3820000000" - }, - "appliesTo" : [ ] - }, - "TA9V737SGNW5GKAK.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "TA9V737SGNW5GKAK.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "456800" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TA9V737SGNW5GKAK.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "TA9V737SGNW5GKAK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TA9V737SGNW5GKAK.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "TA9V737SGNW5GKAK.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "36.7720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TA9V737SGNW5GKAK.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "TA9V737SGNW5GKAK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TA9V737SGNW5GKAK.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "TA9V737SGNW5GKAK.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "328436" - }, - "appliesTo" : [ ] - }, - "TA9V737SGNW5GKAK.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "TA9V737SGNW5GKAK.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "TA9V737SGNW5GKAK.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "TA9V737SGNW5GKAK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TA9V737SGNW5GKAK.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "TA9V737SGNW5GKAK.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "38.2460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "TA9V737SGNW5GKAK.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "TA9V737SGNW5GKAK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TA9V737SGNW5GKAK.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "TA9V737SGNW5GKAK.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "34.2880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "TA9V737SGNW5GKAK.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "TA9V737SGNW5GKAK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "TA9V737SGNW5GKAK.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "TA9V737SGNW5GKAK.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "165161" - }, - "appliesTo" : [ ] - }, - "TA9V737SGNW5GKAK.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "TA9V737SGNW5GKAK.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "18.8540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "TA9V737SGNW5GKAK.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "TA9V737SGNW5GKAK", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "TA9V737SGNW5GKAK.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "TA9V737SGNW5GKAK.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "316383" - }, - "appliesTo" : [ ] - }, - "TA9V737SGNW5GKAK.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "TA9V737SGNW5GKAK.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TA9V737SGNW5GKAK.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "TA9V737SGNW5GKAK", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "TA9V737SGNW5GKAK.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "TA9V737SGNW5GKAK.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "159012" - }, - "appliesTo" : [ ] - }, - "TA9V737SGNW5GKAK.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "TA9V737SGNW5GKAK.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "18.1520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "TA9V737SGNW5GKAK.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "TA9V737SGNW5GKAK", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "TA9V737SGNW5GKAK.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "TA9V737SGNW5GKAK.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "876070" - }, - "appliesTo" : [ ] - }, - "TA9V737SGNW5GKAK.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "TA9V737SGNW5GKAK.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "TA9V737SGNW5GKAK.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "TA9V737SGNW5GKAK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "TA9V737SGNW5GKAK.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "TA9V737SGNW5GKAK.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "35.3900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "SGYUS9N7VCKNAXVB" : { - "SGYUS9N7VCKNAXVB.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "SGYUS9N7VCKNAXVB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SGYUS9N7VCKNAXVB.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "SGYUS9N7VCKNAXVB.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.5230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SGYUS9N7VCKNAXVB.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "SGYUS9N7VCKNAXVB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SGYUS9N7VCKNAXVB.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "SGYUS9N7VCKNAXVB.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1763000000" - }, - "appliesTo" : [ ] - }, - "SGYUS9N7VCKNAXVB.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "SGYUS9N7VCKNAXVB.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27824" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SGYUS9N7VCKNAXVB.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SGYUS9N7VCKNAXVB", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "SGYUS9N7VCKNAXVB.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SGYUS9N7VCKNAXVB.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25877" - }, - "appliesTo" : [ ] - }, - "SGYUS9N7VCKNAXVB.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SGYUS9N7VCKNAXVB.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SGYUS9N7VCKNAXVB.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SGYUS9N7VCKNAXVB", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "SGYUS9N7VCKNAXVB.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SGYUS9N7VCKNAXVB.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.0562000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SGYUS9N7VCKNAXVB.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "SGYUS9N7VCKNAXVB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SGYUS9N7VCKNAXVB.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "SGYUS9N7VCKNAXVB.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "55052" - }, - "appliesTo" : [ ] - }, - "SGYUS9N7VCKNAXVB.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "SGYUS9N7VCKNAXVB.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SGYUS9N7VCKNAXVB.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "SGYUS9N7VCKNAXVB", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "SGYUS9N7VCKNAXVB.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "SGYUS9N7VCKNAXVB.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.6167000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "SGYUS9N7VCKNAXVB.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "SGYUS9N7VCKNAXVB", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "SGYUS9N7VCKNAXVB.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "SGYUS9N7VCKNAXVB.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "71202" - }, - "appliesTo" : [ ] - }, - "SGYUS9N7VCKNAXVB.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "SGYUS9N7VCKNAXVB.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7094000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "SGYUS9N7VCKNAXVB.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "SGYUS9N7VCKNAXVB", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "SGYUS9N7VCKNAXVB.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "SGYUS9N7VCKNAXVB.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "141103" - }, - "appliesTo" : [ ] - }, - "SGYUS9N7VCKNAXVB.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "SGYUS9N7VCKNAXVB.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "SGYUS9N7VCKNAXVB.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SGYUS9N7VCKNAXVB", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "SGYUS9N7VCKNAXVB.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SGYUS9N7VCKNAXVB.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "130526" - }, - "appliesTo" : [ ] - }, - "SGYUS9N7VCKNAXVB.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SGYUS9N7VCKNAXVB.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SGYUS9N7VCKNAXVB.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SGYUS9N7VCKNAXVB", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "SGYUS9N7VCKNAXVB.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SGYUS9N7VCKNAXVB.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "51235" - }, - "appliesTo" : [ ] - }, - "SGYUS9N7VCKNAXVB.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SGYUS9N7VCKNAXVB.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SGYUS9N7VCKNAXVB.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "SGYUS9N7VCKNAXVB", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "SGYUS9N7VCKNAXVB.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "SGYUS9N7VCKNAXVB.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.2680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SGYUS9N7VCKNAXVB.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SGYUS9N7VCKNAXVB", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "SGYUS9N7VCKNAXVB.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SGYUS9N7VCKNAXVB.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "66960" - }, - "appliesTo" : [ ] - }, - "SGYUS9N7VCKNAXVB.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SGYUS9N7VCKNAXVB.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5479000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "DF8Q7FFWFQ7XFMWT" : { - "DF8Q7FFWFQ7XFMWT.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "DF8Q7FFWFQ7XFMWT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DF8Q7FFWFQ7XFMWT.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "DF8Q7FFWFQ7XFMWT.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "DF8Q7FFWFQ7XFMWT.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "DF8Q7FFWFQ7XFMWT.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4728" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DF8Q7FFWFQ7XFMWT.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "DF8Q7FFWFQ7XFMWT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DF8Q7FFWFQ7XFMWT.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "DF8Q7FFWFQ7XFMWT.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "DF8Q7FFWFQ7XFMWT.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "DF8Q7FFWFQ7XFMWT.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5358" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DF8Q7FFWFQ7XFMWT.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "DF8Q7FFWFQ7XFMWT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DF8Q7FFWFQ7XFMWT.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "DF8Q7FFWFQ7XFMWT.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DF8Q7FFWFQ7XFMWT.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "DF8Q7FFWFQ7XFMWT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DF8Q7FFWFQ7XFMWT.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "DF8Q7FFWFQ7XFMWT.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DF8Q7FFWFQ7XFMWT.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "DF8Q7FFWFQ7XFMWT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DF8Q7FFWFQ7XFMWT.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "DF8Q7FFWFQ7XFMWT.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8929" - }, - "appliesTo" : [ ] - }, - "DF8Q7FFWFQ7XFMWT.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "DF8Q7FFWFQ7XFMWT.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DF8Q7FFWFQ7XFMWT.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "DF8Q7FFWFQ7XFMWT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DF8Q7FFWFQ7XFMWT.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "DF8Q7FFWFQ7XFMWT.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2144" - }, - "appliesTo" : [ ] - }, - "DF8Q7FFWFQ7XFMWT.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "DF8Q7FFWFQ7XFMWT.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DF8Q7FFWFQ7XFMWT.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "DF8Q7FFWFQ7XFMWT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DF8Q7FFWFQ7XFMWT.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "DF8Q7FFWFQ7XFMWT.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3410000000" - }, - "appliesTo" : [ ] - }, - "DF8Q7FFWFQ7XFMWT.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "DF8Q7FFWFQ7XFMWT.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2465" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DF8Q7FFWFQ7XFMWT.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "DF8Q7FFWFQ7XFMWT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DF8Q7FFWFQ7XFMWT.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "DF8Q7FFWFQ7XFMWT.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DF8Q7FFWFQ7XFMWT.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "DF8Q7FFWFQ7XFMWT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DF8Q7FFWFQ7XFMWT.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "DF8Q7FFWFQ7XFMWT.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DF8Q7FFWFQ7XFMWT.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "DF8Q7FFWFQ7XFMWT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DF8Q7FFWFQ7XFMWT.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "DF8Q7FFWFQ7XFMWT.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7709" - }, - "appliesTo" : [ ] - }, - "DF8Q7FFWFQ7XFMWT.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "DF8Q7FFWFQ7XFMWT.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DF8Q7FFWFQ7XFMWT.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "DF8Q7FFWFQ7XFMWT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DF8Q7FFWFQ7XFMWT.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "DF8Q7FFWFQ7XFMWT.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3262" - }, - "appliesTo" : [ ] - }, - "DF8Q7FFWFQ7XFMWT.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "DF8Q7FFWFQ7XFMWT.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DF8Q7FFWFQ7XFMWT.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "DF8Q7FFWFQ7XFMWT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DF8Q7FFWFQ7XFMWT.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "DF8Q7FFWFQ7XFMWT.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3751" - }, - "appliesTo" : [ ] - }, - "DF8Q7FFWFQ7XFMWT.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "DF8Q7FFWFQ7XFMWT.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "A83EBS2T67UP72G2" : { - "A83EBS2T67UP72G2.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "A83EBS2T67UP72G2", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "A83EBS2T67UP72G2.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "A83EBS2T67UP72G2.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "A83EBS2T67UP72G2.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "A83EBS2T67UP72G2.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3856" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "A83EBS2T67UP72G2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "A83EBS2T67UP72G2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "A83EBS2T67UP72G2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "A83EBS2T67UP72G2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1345" - }, - "appliesTo" : [ ] - }, - "A83EBS2T67UP72G2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "A83EBS2T67UP72G2.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "A83EBS2T67UP72G2.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "A83EBS2T67UP72G2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "A83EBS2T67UP72G2.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "A83EBS2T67UP72G2.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "A83EBS2T67UP72G2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "A83EBS2T67UP72G2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "A83EBS2T67UP72G2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "A83EBS2T67UP72G2.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "A83EBS2T67UP72G2.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "A83EBS2T67UP72G2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A83EBS2T67UP72G2.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "A83EBS2T67UP72G2.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "828" - }, - "appliesTo" : [ ] - }, - "A83EBS2T67UP72G2.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "A83EBS2T67UP72G2.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "A83EBS2T67UP72G2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "A83EBS2T67UP72G2", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "A83EBS2T67UP72G2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "A83EBS2T67UP72G2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "842" - }, - "appliesTo" : [ ] - }, - "A83EBS2T67UP72G2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "A83EBS2T67UP72G2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "A83EBS2T67UP72G2.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "A83EBS2T67UP72G2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A83EBS2T67UP72G2.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "A83EBS2T67UP72G2.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1623" - }, - "appliesTo" : [ ] - }, - "A83EBS2T67UP72G2.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "A83EBS2T67UP72G2.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "A83EBS2T67UP72G2.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "A83EBS2T67UP72G2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A83EBS2T67UP72G2.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "A83EBS2T67UP72G2.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "A83EBS2T67UP72G2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "A83EBS2T67UP72G2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "A83EBS2T67UP72G2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "A83EBS2T67UP72G2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2746" - }, - "appliesTo" : [ ] - }, - "A83EBS2T67UP72G2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "A83EBS2T67UP72G2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "A83EBS2T67UP72G2.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "A83EBS2T67UP72G2", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "A83EBS2T67UP72G2.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "A83EBS2T67UP72G2.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0630000000" - }, - "appliesTo" : [ ] - }, - "A83EBS2T67UP72G2.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "A83EBS2T67UP72G2.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2273" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "A83EBS2T67UP72G2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "A83EBS2T67UP72G2", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "A83EBS2T67UP72G2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "A83EBS2T67UP72G2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1428" - }, - "appliesTo" : [ ] - }, - "A83EBS2T67UP72G2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "A83EBS2T67UP72G2.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "4WQD6GEAM4NRC7U3" : { - "4WQD6GEAM4NRC7U3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "4WQD6GEAM4NRC7U3", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "4WQD6GEAM4NRC7U3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "4WQD6GEAM4NRC7U3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "849" - }, - "appliesTo" : [ ] - }, - "4WQD6GEAM4NRC7U3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "4WQD6GEAM4NRC7U3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4WQD6GEAM4NRC7U3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "4WQD6GEAM4NRC7U3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "4WQD6GEAM4NRC7U3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "4WQD6GEAM4NRC7U3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "413" - }, - "appliesTo" : [ ] - }, - "4WQD6GEAM4NRC7U3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "4WQD6GEAM4NRC7U3.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4WQD6GEAM4NRC7U3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "4WQD6GEAM4NRC7U3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "4WQD6GEAM4NRC7U3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "4WQD6GEAM4NRC7U3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "454" - }, - "appliesTo" : [ ] - }, - "4WQD6GEAM4NRC7U3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "4WQD6GEAM4NRC7U3.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4WQD6GEAM4NRC7U3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "4WQD6GEAM4NRC7U3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "4WQD6GEAM4NRC7U3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "4WQD6GEAM4NRC7U3.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "4WQD6GEAM4NRC7U3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "4WQD6GEAM4NRC7U3", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "4WQD6GEAM4NRC7U3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "4WQD6GEAM4NRC7U3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "272" - }, - "appliesTo" : [ ] - }, - "4WQD6GEAM4NRC7U3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "4WQD6GEAM4NRC7U3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "EM3N7MRMRY4Z5BMR" : { - "EM3N7MRMRY4Z5BMR.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "EM3N7MRMRY4Z5BMR", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "EM3N7MRMRY4Z5BMR.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "EM3N7MRMRY4Z5BMR.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.4460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "EM3N7MRMRY4Z5BMR.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "EM3N7MRMRY4Z5BMR", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "EM3N7MRMRY4Z5BMR.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "EM3N7MRMRY4Z5BMR.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "134464" - }, - "appliesTo" : [ ] - }, - "EM3N7MRMRY4Z5BMR.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "EM3N7MRMRY4Z5BMR.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EM3N7MRMRY4Z5BMR.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "EM3N7MRMRY4Z5BMR", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "EM3N7MRMRY4Z5BMR.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "EM3N7MRMRY4Z5BMR.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.5790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "EM3N7MRMRY4Z5BMR.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "EM3N7MRMRY4Z5BMR", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "EM3N7MRMRY4Z5BMR.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "EM3N7MRMRY4Z5BMR.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "196232" - }, - "appliesTo" : [ ] - }, - "EM3N7MRMRY4Z5BMR.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "EM3N7MRMRY4Z5BMR.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EM3N7MRMRY4Z5BMR.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "EM3N7MRMRY4Z5BMR", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "EM3N7MRMRY4Z5BMR.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "EM3N7MRMRY4Z5BMR.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "104379" - }, - "appliesTo" : [ ] - }, - "EM3N7MRMRY4Z5BMR.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "EM3N7MRMRY4Z5BMR.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EM3N7MRMRY4Z5BMR.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "EM3N7MRMRY4Z5BMR", - "effectiveDate" : "2017-08-31T23:59:59Z", - "priceDimensions" : { - "EM3N7MRMRY4Z5BMR.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "EM3N7MRMRY4Z5BMR.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "68604" - }, - "appliesTo" : [ ] - }, - "EM3N7MRMRY4Z5BMR.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "EM3N7MRMRY4Z5BMR.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.32xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.8320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "94UG4CXUHQVWH768" : { - "94UG4CXUHQVWH768.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "94UG4CXUHQVWH768", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "94UG4CXUHQVWH768.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "94UG4CXUHQVWH768.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27856" - }, - "appliesTo" : [ ] - }, - "94UG4CXUHQVWH768.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "94UG4CXUHQVWH768.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "94UG4CXUHQVWH768.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "94UG4CXUHQVWH768", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "94UG4CXUHQVWH768.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "94UG4CXUHQVWH768.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6220000000" - }, - "appliesTo" : [ ] - }, - "94UG4CXUHQVWH768.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "94UG4CXUHQVWH768.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14212" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "94UG4CXUHQVWH768.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "94UG4CXUHQVWH768", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "94UG4CXUHQVWH768.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "94UG4CXUHQVWH768.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "94UG4CXUHQVWH768.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "94UG4CXUHQVWH768", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "94UG4CXUHQVWH768.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "94UG4CXUHQVWH768.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "94UG4CXUHQVWH768.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "94UG4CXUHQVWH768", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "94UG4CXUHQVWH768.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "94UG4CXUHQVWH768.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32224" - }, - "appliesTo" : [ ] - }, - "94UG4CXUHQVWH768.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "94UG4CXUHQVWH768.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "94UG4CXUHQVWH768.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "94UG4CXUHQVWH768", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "94UG4CXUHQVWH768.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "94UG4CXUHQVWH768.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "94UG4CXUHQVWH768.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "94UG4CXUHQVWH768", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "94UG4CXUHQVWH768.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "94UG4CXUHQVWH768.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16441" - }, - "appliesTo" : [ ] - }, - "94UG4CXUHQVWH768.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "94UG4CXUHQVWH768.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "94UG4CXUHQVWH768.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "94UG4CXUHQVWH768", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "94UG4CXUHQVWH768.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "94UG4CXUHQVWH768.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "66344" - }, - "appliesTo" : [ ] - }, - "94UG4CXUHQVWH768.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "94UG4CXUHQVWH768.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "94UG4CXUHQVWH768.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "94UG4CXUHQVWH768", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "94UG4CXUHQVWH768.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "94UG4CXUHQVWH768.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33849" - }, - "appliesTo" : [ ] - }, - "94UG4CXUHQVWH768.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "94UG4CXUHQVWH768.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "94UG4CXUHQVWH768.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "94UG4CXUHQVWH768", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "94UG4CXUHQVWH768.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "94UG4CXUHQVWH768.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "94UG4CXUHQVWH768.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "94UG4CXUHQVWH768.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "55493" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "94UG4CXUHQVWH768.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "94UG4CXUHQVWH768", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "94UG4CXUHQVWH768.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "94UG4CXUHQVWH768.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "94UG4CXUHQVWH768.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "94UG4CXUHQVWH768", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "94UG4CXUHQVWH768.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "94UG4CXUHQVWH768.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29518" - }, - "appliesTo" : [ ] - }, - "94UG4CXUHQVWH768.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "94UG4CXUHQVWH768.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "6BD786EZRWD4UZTB" : { - "6BD786EZRWD4UZTB.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "6BD786EZRWD4UZTB", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "6BD786EZRWD4UZTB.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "6BD786EZRWD4UZTB.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6BD786EZRWD4UZTB.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "6BD786EZRWD4UZTB", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "6BD786EZRWD4UZTB.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "6BD786EZRWD4UZTB.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3257" - }, - "appliesTo" : [ ] - }, - "6BD786EZRWD4UZTB.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "6BD786EZRWD4UZTB.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6BD786EZRWD4UZTB.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6BD786EZRWD4UZTB", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6BD786EZRWD4UZTB.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6BD786EZRWD4UZTB.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6708" - }, - "appliesTo" : [ ] - }, - "6BD786EZRWD4UZTB.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6BD786EZRWD4UZTB.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6BD786EZRWD4UZTB.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "6BD786EZRWD4UZTB", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "6BD786EZRWD4UZTB.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "6BD786EZRWD4UZTB.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "6BD786EZRWD4UZTB.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "6BD786EZRWD4UZTB.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8308" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6BD786EZRWD4UZTB.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "6BD786EZRWD4UZTB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6BD786EZRWD4UZTB.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "6BD786EZRWD4UZTB.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3235" - }, - "appliesTo" : [ ] - }, - "6BD786EZRWD4UZTB.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "6BD786EZRWD4UZTB.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6BD786EZRWD4UZTB.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6BD786EZRWD4UZTB", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "6BD786EZRWD4UZTB.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6BD786EZRWD4UZTB.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2912" - }, - "appliesTo" : [ ] - }, - "6BD786EZRWD4UZTB.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6BD786EZRWD4UZTB.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6BD786EZRWD4UZTB.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6BD786EZRWD4UZTB", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "6BD786EZRWD4UZTB.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6BD786EZRWD4UZTB.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1906" - }, - "appliesTo" : [ ] - }, - "6BD786EZRWD4UZTB.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6BD786EZRWD4UZTB.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6BD786EZRWD4UZTB.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "6BD786EZRWD4UZTB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6BD786EZRWD4UZTB.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "6BD786EZRWD4UZTB.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6BD786EZRWD4UZTB.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "6BD786EZRWD4UZTB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6BD786EZRWD4UZTB.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "6BD786EZRWD4UZTB.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1634" - }, - "appliesTo" : [ ] - }, - "6BD786EZRWD4UZTB.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "6BD786EZRWD4UZTB.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6BD786EZRWD4UZTB.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6BD786EZRWD4UZTB", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "6BD786EZRWD4UZTB.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6BD786EZRWD4UZTB.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2060000000" - }, - "appliesTo" : [ ] - }, - "6BD786EZRWD4UZTB.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6BD786EZRWD4UZTB.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1170" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6BD786EZRWD4UZTB.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6BD786EZRWD4UZTB", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "6BD786EZRWD4UZTB.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6BD786EZRWD4UZTB.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "4RDK5GMP5336FHVU" : { - "4RDK5GMP5336FHVU.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "4RDK5GMP5336FHVU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4RDK5GMP5336FHVU.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "4RDK5GMP5336FHVU.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6894" - }, - "appliesTo" : [ ] - }, - "4RDK5GMP5336FHVU.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "4RDK5GMP5336FHVU.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4RDK5GMP5336FHVU.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "4RDK5GMP5336FHVU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4RDK5GMP5336FHVU.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "4RDK5GMP5336FHVU.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3814" - }, - "appliesTo" : [ ] - }, - "4RDK5GMP5336FHVU.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "4RDK5GMP5336FHVU.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4RDK5GMP5336FHVU.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "4RDK5GMP5336FHVU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4RDK5GMP5336FHVU.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "4RDK5GMP5336FHVU.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14699" - }, - "appliesTo" : [ ] - }, - "4RDK5GMP5336FHVU.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "4RDK5GMP5336FHVU.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4RDK5GMP5336FHVU.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "4RDK5GMP5336FHVU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4RDK5GMP5336FHVU.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "4RDK5GMP5336FHVU.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "4RDK5GMP5336FHVU.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "4RDK5GMP5336FHVU.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13358" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4RDK5GMP5336FHVU.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "4RDK5GMP5336FHVU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4RDK5GMP5336FHVU.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "4RDK5GMP5336FHVU.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "4RDK5GMP5336FHVU.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "4RDK5GMP5336FHVU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4RDK5GMP5336FHVU.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "4RDK5GMP5336FHVU.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "4RDK5GMP5336FHVU.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "4RDK5GMP5336FHVU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4RDK5GMP5336FHVU.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "4RDK5GMP5336FHVU.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7432" - }, - "appliesTo" : [ ] - }, - "4RDK5GMP5336FHVU.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "4RDK5GMP5336FHVU.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4RDK5GMP5336FHVU.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "4RDK5GMP5336FHVU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4RDK5GMP5336FHVU.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "4RDK5GMP5336FHVU.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6826" - }, - "appliesTo" : [ ] - }, - "4RDK5GMP5336FHVU.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "4RDK5GMP5336FHVU.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4RDK5GMP5336FHVU.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "4RDK5GMP5336FHVU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4RDK5GMP5336FHVU.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "4RDK5GMP5336FHVU.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3460" - }, - "appliesTo" : [ ] - }, - "4RDK5GMP5336FHVU.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "4RDK5GMP5336FHVU.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4RDK5GMP5336FHVU.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "4RDK5GMP5336FHVU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4RDK5GMP5336FHVU.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "4RDK5GMP5336FHVU.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "4RDK5GMP5336FHVU.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "4RDK5GMP5336FHVU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4RDK5GMP5336FHVU.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "4RDK5GMP5336FHVU.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7520" - }, - "appliesTo" : [ ] - }, - "4RDK5GMP5336FHVU.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "4RDK5GMP5336FHVU.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4RDK5GMP5336FHVU.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "4RDK5GMP5336FHVU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4RDK5GMP5336FHVU.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "4RDK5GMP5336FHVU.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1e.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "MZHWDXN9MH59MH34" : { - "MZHWDXN9MH59MH34.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "MZHWDXN9MH59MH34", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MZHWDXN9MH59MH34.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "MZHWDXN9MH59MH34.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "MZHWDXN9MH59MH34.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "MZHWDXN9MH59MH34.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9132" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MZHWDXN9MH59MH34.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "MZHWDXN9MH59MH34", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MZHWDXN9MH59MH34.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "MZHWDXN9MH59MH34.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8203" - }, - "appliesTo" : [ ] - }, - "MZHWDXN9MH59MH34.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "MZHWDXN9MH59MH34.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MZHWDXN9MH59MH34.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "MZHWDXN9MH59MH34", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MZHWDXN9MH59MH34.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "MZHWDXN9MH59MH34.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19297" - }, - "appliesTo" : [ ] - }, - "MZHWDXN9MH59MH34.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "MZHWDXN9MH59MH34.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MZHWDXN9MH59MH34.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "MZHWDXN9MH59MH34", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MZHWDXN9MH59MH34.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "MZHWDXN9MH59MH34.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6380000000" - }, - "appliesTo" : [ ] - }, - "MZHWDXN9MH59MH34.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "MZHWDXN9MH59MH34.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3729" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MZHWDXN9MH59MH34.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "MZHWDXN9MH59MH34", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "MZHWDXN9MH59MH34.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "MZHWDXN9MH59MH34.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "Z78M4CHWU3KRBC2H" : { - "Z78M4CHWU3KRBC2H.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "Z78M4CHWU3KRBC2H", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z78M4CHWU3KRBC2H.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "Z78M4CHWU3KRBC2H.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1106000000" - }, - "appliesTo" : [ ] - }, - "Z78M4CHWU3KRBC2H.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "Z78M4CHWU3KRBC2H.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1330" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z78M4CHWU3KRBC2H.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Z78M4CHWU3KRBC2H", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z78M4CHWU3KRBC2H.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Z78M4CHWU3KRBC2H.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3751" - }, - "appliesTo" : [ ] - }, - "Z78M4CHWU3KRBC2H.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Z78M4CHWU3KRBC2H.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Z78M4CHWU3KRBC2H.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "Z78M4CHWU3KRBC2H", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z78M4CHWU3KRBC2H.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "Z78M4CHWU3KRBC2H.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1693000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Z78M4CHWU3KRBC2H.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "Z78M4CHWU3KRBC2H", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z78M4CHWU3KRBC2H.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "Z78M4CHWU3KRBC2H.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Z78M4CHWU3KRBC2H.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "Z78M4CHWU3KRBC2H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z78M4CHWU3KRBC2H.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "Z78M4CHWU3KRBC2H.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "Z78M4CHWU3KRBC2H.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "Z78M4CHWU3KRBC2H.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1807" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Z78M4CHWU3KRBC2H.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Z78M4CHWU3KRBC2H", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z78M4CHWU3KRBC2H.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Z78M4CHWU3KRBC2H.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1156" - }, - "appliesTo" : [ ] - }, - "Z78M4CHWU3KRBC2H.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Z78M4CHWU3KRBC2H.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z78M4CHWU3KRBC2H.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Z78M4CHWU3KRBC2H", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z78M4CHWU3KRBC2H.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Z78M4CHWU3KRBC2H.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "569" - }, - "appliesTo" : [ ] - }, - "Z78M4CHWU3KRBC2H.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Z78M4CHWU3KRBC2H.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1249000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z78M4CHWU3KRBC2H.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "Z78M4CHWU3KRBC2H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z78M4CHWU3KRBC2H.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "Z78M4CHWU3KRBC2H.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "654" - }, - "appliesTo" : [ ] - }, - "Z78M4CHWU3KRBC2H.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "Z78M4CHWU3KRBC2H.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1346000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z78M4CHWU3KRBC2H.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "Z78M4CHWU3KRBC2H", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z78M4CHWU3KRBC2H.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "Z78M4CHWU3KRBC2H.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4183" - }, - "appliesTo" : [ ] - }, - "Z78M4CHWU3KRBC2H.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "Z78M4CHWU3KRBC2H.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Z78M4CHWU3KRBC2H.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "Z78M4CHWU3KRBC2H", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z78M4CHWU3KRBC2H.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "Z78M4CHWU3KRBC2H.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2167000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Z78M4CHWU3KRBC2H.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Z78M4CHWU3KRBC2H", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z78M4CHWU3KRBC2H.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Z78M4CHWU3KRBC2H.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1963000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Z78M4CHWU3KRBC2H.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Z78M4CHWU3KRBC2H", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z78M4CHWU3KRBC2H.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Z78M4CHWU3KRBC2H.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1640" - }, - "appliesTo" : [ ] - }, - "Z78M4CHWU3KRBC2H.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Z78M4CHWU3KRBC2H.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "E3GUDV3CG8QTVYVK" : { - "E3GUDV3CG8QTVYVK.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "E3GUDV3CG8QTVYVK", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "E3GUDV3CG8QTVYVK.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "E3GUDV3CG8QTVYVK.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1452000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "E3GUDV3CG8QTVYVK.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "E3GUDV3CG8QTVYVK", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "E3GUDV3CG8QTVYVK.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "E3GUDV3CG8QTVYVK.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28627" - }, - "appliesTo" : [ ] - }, - "E3GUDV3CG8QTVYVK.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "E3GUDV3CG8QTVYVK.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0889000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "E3GUDV3CG8QTVYVK.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "E3GUDV3CG8QTVYVK", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "E3GUDV3CG8QTVYVK.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "E3GUDV3CG8QTVYVK.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "53852" - }, - "appliesTo" : [ ] - }, - "E3GUDV3CG8QTVYVK.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "E3GUDV3CG8QTVYVK.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "E3GUDV3CG8QTVYVK.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "E3GUDV3CG8QTVYVK", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "E3GUDV3CG8QTVYVK.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "E3GUDV3CG8QTVYVK.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7057000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "E3GUDV3CG8QTVYVK.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "E3GUDV3CG8QTVYVK", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "E3GUDV3CG8QTVYVK.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "E3GUDV3CG8QTVYVK.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25735" - }, - "appliesTo" : [ ] - }, - "E3GUDV3CG8QTVYVK.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "E3GUDV3CG8QTVYVK.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "E3GUDV3CG8QTVYVK.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "E3GUDV3CG8QTVYVK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "E3GUDV3CG8QTVYVK.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "E3GUDV3CG8QTVYVK.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29552" - }, - "appliesTo" : [ ] - }, - "E3GUDV3CG8QTVYVK.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "E3GUDV3CG8QTVYVK.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "E3GUDV3CG8QTVYVK.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "E3GUDV3CG8QTVYVK", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "E3GUDV3CG8QTVYVK.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "E3GUDV3CG8QTVYVK.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13158" - }, - "appliesTo" : [ ] - }, - "E3GUDV3CG8QTVYVK.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "E3GUDV3CG8QTVYVK.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "E3GUDV3CG8QTVYVK.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "E3GUDV3CG8QTVYVK", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "E3GUDV3CG8QTVYVK.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "E3GUDV3CG8QTVYVK.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32870" - }, - "appliesTo" : [ ] - }, - "E3GUDV3CG8QTVYVK.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "E3GUDV3CG8QTVYVK.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2504000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "E3GUDV3CG8QTVYVK.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "E3GUDV3CG8QTVYVK", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "E3GUDV3CG8QTVYVK.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "E3GUDV3CG8QTVYVK.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "64429" - }, - "appliesTo" : [ ] - }, - "E3GUDV3CG8QTVYVK.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "E3GUDV3CG8QTVYVK.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "E3GUDV3CG8QTVYVK.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "E3GUDV3CG8QTVYVK", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "E3GUDV3CG8QTVYVK.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "E3GUDV3CG8QTVYVK.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "E3GUDV3CG8QTVYVK.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "E3GUDV3CG8QTVYVK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "E3GUDV3CG8QTVYVK.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "E3GUDV3CG8QTVYVK.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "E3GUDV3CG8QTVYVK.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "E3GUDV3CG8QTVYVK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "E3GUDV3CG8QTVYVK.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "E3GUDV3CG8QTVYVK.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15106" - }, - "appliesTo" : [ ] - }, - "E3GUDV3CG8QTVYVK.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "E3GUDV3CG8QTVYVK.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7173000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "4GRDB56V2W7EVFSU" : { - "4GRDB56V2W7EVFSU.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "4GRDB56V2W7EVFSU", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "4GRDB56V2W7EVFSU.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "4GRDB56V2W7EVFSU.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12982" - }, - "appliesTo" : [ ] - }, - "4GRDB56V2W7EVFSU.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "4GRDB56V2W7EVFSU.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4GRDB56V2W7EVFSU.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "4GRDB56V2W7EVFSU", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "4GRDB56V2W7EVFSU.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "4GRDB56V2W7EVFSU.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26584" - }, - "appliesTo" : [ ] - }, - "4GRDB56V2W7EVFSU.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "4GRDB56V2W7EVFSU.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4GRDB56V2W7EVFSU.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "4GRDB56V2W7EVFSU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4GRDB56V2W7EVFSU.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "4GRDB56V2W7EVFSU.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30401" - }, - "appliesTo" : [ ] - }, - "4GRDB56V2W7EVFSU.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "4GRDB56V2W7EVFSU.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4GRDB56V2W7EVFSU.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "4GRDB56V2W7EVFSU", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "4GRDB56V2W7EVFSU.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "4GRDB56V2W7EVFSU.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8027000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "4GRDB56V2W7EVFSU.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "4GRDB56V2W7EVFSU", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "4GRDB56V2W7EVFSU.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "4GRDB56V2W7EVFSU.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "56574" - }, - "appliesTo" : [ ] - }, - "4GRDB56V2W7EVFSU.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "4GRDB56V2W7EVFSU.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4GRDB56V2W7EVFSU.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "4GRDB56V2W7EVFSU", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "4GRDB56V2W7EVFSU.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "4GRDB56V2W7EVFSU.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2422000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "4GRDB56V2W7EVFSU.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "4GRDB56V2W7EVFSU", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "4GRDB56V2W7EVFSU.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "4GRDB56V2W7EVFSU.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "67151" - }, - "appliesTo" : [ ] - }, - "4GRDB56V2W7EVFSU.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "4GRDB56V2W7EVFSU.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4GRDB56V2W7EVFSU.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "4GRDB56V2W7EVFSU", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "4GRDB56V2W7EVFSU.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "4GRDB56V2W7EVFSU.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2059000000" - }, - "appliesTo" : [ ] - }, - "4GRDB56V2W7EVFSU.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "4GRDB56V2W7EVFSU.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28275" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4GRDB56V2W7EVFSU.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "4GRDB56V2W7EVFSU", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "4GRDB56V2W7EVFSU.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "4GRDB56V2W7EVFSU.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32518" - }, - "appliesTo" : [ ] - }, - "4GRDB56V2W7EVFSU.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "4GRDB56V2W7EVFSU.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3674000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4GRDB56V2W7EVFSU.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "4GRDB56V2W7EVFSU", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "4GRDB56V2W7EVFSU.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "4GRDB56V2W7EVFSU.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "4GRDB56V2W7EVFSU.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "4GRDB56V2W7EVFSU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4GRDB56V2W7EVFSU.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "4GRDB56V2W7EVFSU.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14930" - }, - "appliesTo" : [ ] - }, - "4GRDB56V2W7EVFSU.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "4GRDB56V2W7EVFSU.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8343000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4GRDB56V2W7EVFSU.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "4GRDB56V2W7EVFSU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4GRDB56V2W7EVFSU.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "4GRDB56V2W7EVFSU.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), g3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "E39WJ4NFW33589ZS" : { - "E39WJ4NFW33589ZS.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "E39WJ4NFW33589ZS", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "E39WJ4NFW33589ZS.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "E39WJ4NFW33589ZS.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20023" - }, - "appliesTo" : [ ] - }, - "E39WJ4NFW33589ZS.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "E39WJ4NFW33589ZS.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "E39WJ4NFW33589ZS.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "E39WJ4NFW33589ZS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "E39WJ4NFW33589ZS.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "E39WJ4NFW33589ZS.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7144000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "E39WJ4NFW33589ZS.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "E39WJ4NFW33589ZS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "E39WJ4NFW33589ZS.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "E39WJ4NFW33589ZS.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14792" - }, - "appliesTo" : [ ] - }, - "E39WJ4NFW33589ZS.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "E39WJ4NFW33589ZS.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "E39WJ4NFW33589ZS.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "E39WJ4NFW33589ZS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "E39WJ4NFW33589ZS.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "E39WJ4NFW33589ZS.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7428" - }, - "appliesTo" : [ ] - }, - "E39WJ4NFW33589ZS.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "E39WJ4NFW33589ZS.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "E39WJ4NFW33589ZS.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "E39WJ4NFW33589ZS", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "E39WJ4NFW33589ZS.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "E39WJ4NFW33589ZS.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "E39WJ4NFW33589ZS.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "E39WJ4NFW33589ZS", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "E39WJ4NFW33589ZS.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "E39WJ4NFW33589ZS.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7140" - }, - "appliesTo" : [ ] - }, - "E39WJ4NFW33589ZS.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "E39WJ4NFW33589ZS.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "E39WJ4NFW33589ZS.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "E39WJ4NFW33589ZS", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "E39WJ4NFW33589ZS.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "E39WJ4NFW33589ZS.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "E39WJ4NFW33589ZS.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "E39WJ4NFW33589ZS", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "E39WJ4NFW33589ZS.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "E39WJ4NFW33589ZS.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "41179" - }, - "appliesTo" : [ ] - }, - "E39WJ4NFW33589ZS.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "E39WJ4NFW33589ZS.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "E39WJ4NFW33589ZS.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "E39WJ4NFW33589ZS", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "E39WJ4NFW33589ZS.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "E39WJ4NFW33589ZS.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5913000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "E39WJ4NFW33589ZS.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "E39WJ4NFW33589ZS", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "E39WJ4NFW33589ZS.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "E39WJ4NFW33589ZS.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20653" - }, - "appliesTo" : [ ] - }, - "E39WJ4NFW33589ZS.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "E39WJ4NFW33589ZS.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7859000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "E39WJ4NFW33589ZS.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "E39WJ4NFW33589ZS", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "E39WJ4NFW33589ZS.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "E39WJ4NFW33589ZS.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39710" - }, - "appliesTo" : [ ] - }, - "E39WJ4NFW33589ZS.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "E39WJ4NFW33589ZS.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "E39WJ4NFW33589ZS.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "E39WJ4NFW33589ZS", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "E39WJ4NFW33589ZS.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "E39WJ4NFW33589ZS.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14225" - }, - "appliesTo" : [ ] - }, - "E39WJ4NFW33589ZS.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "E39WJ4NFW33589ZS.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "6AUAERFUWRVM7MMK" : { - "6AUAERFUWRVM7MMK.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6AUAERFUWRVM7MMK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "6AUAERFUWRVM7MMK.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6AUAERFUWRVM7MMK.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8712" - }, - "appliesTo" : [ ] - }, - "6AUAERFUWRVM7MMK.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6AUAERFUWRVM7MMK.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6AUAERFUWRVM7MMK.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "6AUAERFUWRVM7MMK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6AUAERFUWRVM7MMK.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "6AUAERFUWRVM7MMK.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4030000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6AUAERFUWRVM7MMK.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "6AUAERFUWRVM7MMK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6AUAERFUWRVM7MMK.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "6AUAERFUWRVM7MMK.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "6AUAERFUWRVM7MMK.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "6AUAERFUWRVM7MMK.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19650" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6AUAERFUWRVM7MMK.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "6AUAERFUWRVM7MMK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "6AUAERFUWRVM7MMK.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "6AUAERFUWRVM7MMK.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6AUAERFUWRVM7MMK.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "6AUAERFUWRVM7MMK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6AUAERFUWRVM7MMK.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "6AUAERFUWRVM7MMK.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10025" - }, - "appliesTo" : [ ] - }, - "6AUAERFUWRVM7MMK.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "6AUAERFUWRVM7MMK.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6AUAERFUWRVM7MMK.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6AUAERFUWRVM7MMK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "6AUAERFUWRVM7MMK.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6AUAERFUWRVM7MMK.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16204" - }, - "appliesTo" : [ ] - }, - "6AUAERFUWRVM7MMK.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6AUAERFUWRVM7MMK.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6AUAERFUWRVM7MMK.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "6AUAERFUWRVM7MMK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "6AUAERFUWRVM7MMK.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "6AUAERFUWRVM7MMK.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "42793" - }, - "appliesTo" : [ ] - }, - "6AUAERFUWRVM7MMK.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "6AUAERFUWRVM7MMK.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6AUAERFUWRVM7MMK.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "6AUAERFUWRVM7MMK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "6AUAERFUWRVM7MMK.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "6AUAERFUWRVM7MMK.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21833" - }, - "appliesTo" : [ ] - }, - "6AUAERFUWRVM7MMK.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "6AUAERFUWRVM7MMK.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6AUAERFUWRVM7MMK.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6AUAERFUWRVM7MMK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "6AUAERFUWRVM7MMK.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6AUAERFUWRVM7MMK.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6AUAERFUWRVM7MMK.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6AUAERFUWRVM7MMK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "6AUAERFUWRVM7MMK.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6AUAERFUWRVM7MMK.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17075" - }, - "appliesTo" : [ ] - }, - "6AUAERFUWRVM7MMK.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6AUAERFUWRVM7MMK.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6AUAERFUWRVM7MMK.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6AUAERFUWRVM7MMK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "6AUAERFUWRVM7MMK.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6AUAERFUWRVM7MMK.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30463" - }, - "appliesTo" : [ ] - }, - "6AUAERFUWRVM7MMK.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6AUAERFUWRVM7MMK.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6AUAERFUWRVM7MMK.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "6AUAERFUWRVM7MMK", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "6AUAERFUWRVM7MMK.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "6AUAERFUWRVM7MMK.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "DMG3Z3PAUFNBRWWT" : { - "DMG3Z3PAUFNBRWWT.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "DMG3Z3PAUFNBRWWT", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "DMG3Z3PAUFNBRWWT.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "DMG3Z3PAUFNBRWWT.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "805" - }, - "appliesTo" : [ ] - }, - "DMG3Z3PAUFNBRWWT.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "DMG3Z3PAUFNBRWWT.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DMG3Z3PAUFNBRWWT.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "DMG3Z3PAUFNBRWWT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DMG3Z3PAUFNBRWWT.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "DMG3Z3PAUFNBRWWT.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "882" - }, - "appliesTo" : [ ] - }, - "DMG3Z3PAUFNBRWWT.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "DMG3Z3PAUFNBRWWT.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DMG3Z3PAUFNBRWWT.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "DMG3Z3PAUFNBRWWT", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "DMG3Z3PAUFNBRWWT.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "DMG3Z3PAUFNBRWWT.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0430000000" - }, - "appliesTo" : [ ] - }, - "DMG3Z3PAUFNBRWWT.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "DMG3Z3PAUFNBRWWT.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "439" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DMG3Z3PAUFNBRWWT.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "DMG3Z3PAUFNBRWWT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DMG3Z3PAUFNBRWWT.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "DMG3Z3PAUFNBRWWT.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "972" - }, - "appliesTo" : [ ] - }, - "DMG3Z3PAUFNBRWWT.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "DMG3Z3PAUFNBRWWT.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DMG3Z3PAUFNBRWWT.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "DMG3Z3PAUFNBRWWT", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "DMG3Z3PAUFNBRWWT.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "DMG3Z3PAUFNBRWWT.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1707" - }, - "appliesTo" : [ ] - }, - "DMG3Z3PAUFNBRWWT.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "DMG3Z3PAUFNBRWWT.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "DMG3Z3PAUFNBRWWT.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "DMG3Z3PAUFNBRWWT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DMG3Z3PAUFNBRWWT.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "DMG3Z3PAUFNBRWWT.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "DMG3Z3PAUFNBRWWT.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "DMG3Z3PAUFNBRWWT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DMG3Z3PAUFNBRWWT.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "DMG3Z3PAUFNBRWWT.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "478" - }, - "appliesTo" : [ ] - }, - "DMG3Z3PAUFNBRWWT.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "DMG3Z3PAUFNBRWWT.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "DMG3Z3PAUFNBRWWT.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "DMG3Z3PAUFNBRWWT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DMG3Z3PAUFNBRWWT.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "DMG3Z3PAUFNBRWWT.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0960000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DMG3Z3PAUFNBRWWT.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "DMG3Z3PAUFNBRWWT", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "DMG3Z3PAUFNBRWWT.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "DMG3Z3PAUFNBRWWT.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "891" - }, - "appliesTo" : [ ] - }, - "DMG3Z3PAUFNBRWWT.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "DMG3Z3PAUFNBRWWT.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "DMG3Z3PAUFNBRWWT.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "DMG3Z3PAUFNBRWWT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DMG3Z3PAUFNBRWWT.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "DMG3Z3PAUFNBRWWT.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "DMG3Z3PAUFNBRWWT.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "DMG3Z3PAUFNBRWWT.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1908" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "DMG3Z3PAUFNBRWWT.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "DMG3Z3PAUFNBRWWT", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "DMG3Z3PAUFNBRWWT.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "DMG3Z3PAUFNBRWWT.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "DMG3Z3PAUFNBRWWT.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "DMG3Z3PAUFNBRWWT", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "DMG3Z3PAUFNBRWWT.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "DMG3Z3PAUFNBRWWT.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), c4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "ZUTU5QZ3PZY7BWCS" : { - "ZUTU5QZ3PZY7BWCS.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ZUTU5QZ3PZY7BWCS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZUTU5QZ3PZY7BWCS.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ZUTU5QZ3PZY7BWCS.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.1200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZUTU5QZ3PZY7BWCS.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ZUTU5QZ3PZY7BWCS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZUTU5QZ3PZY7BWCS.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ZUTU5QZ3PZY7BWCS.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.1060000000" - }, - "appliesTo" : [ ] - }, - "ZUTU5QZ3PZY7BWCS.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ZUTU5QZ3PZY7BWCS.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "71007" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZUTU5QZ3PZY7BWCS.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ZUTU5QZ3PZY7BWCS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZUTU5QZ3PZY7BWCS.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ZUTU5QZ3PZY7BWCS.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ZUTU5QZ3PZY7BWCS.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ZUTU5QZ3PZY7BWCS.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "415913" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZUTU5QZ3PZY7BWCS.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ZUTU5QZ3PZY7BWCS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZUTU5QZ3PZY7BWCS.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ZUTU5QZ3PZY7BWCS.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "206950" - }, - "appliesTo" : [ ] - }, - "ZUTU5QZ3PZY7BWCS.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ZUTU5QZ3PZY7BWCS.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.8750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZUTU5QZ3PZY7BWCS.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ZUTU5QZ3PZY7BWCS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZUTU5QZ3PZY7BWCS.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ZUTU5QZ3PZY7BWCS.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "16.2640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZUTU5QZ3PZY7BWCS.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "ZUTU5QZ3PZY7BWCS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZUTU5QZ3PZY7BWCS.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "ZUTU5QZ3PZY7BWCS.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.7970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZUTU5QZ3PZY7BWCS.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ZUTU5QZ3PZY7BWCS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZUTU5QZ3PZY7BWCS.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ZUTU5QZ3PZY7BWCS.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.0370000000" - }, - "appliesTo" : [ ] - }, - "ZUTU5QZ3PZY7BWCS.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ZUTU5QZ3PZY7BWCS.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "70404" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZUTU5QZ3PZY7BWCS.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ZUTU5QZ3PZY7BWCS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZUTU5QZ3PZY7BWCS.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ZUTU5QZ3PZY7BWCS.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "208136" - }, - "appliesTo" : [ ] - }, - "ZUTU5QZ3PZY7BWCS.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ZUTU5QZ3PZY7BWCS.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.9200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZUTU5QZ3PZY7BWCS.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ZUTU5QZ3PZY7BWCS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZUTU5QZ3PZY7BWCS.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ZUTU5QZ3PZY7BWCS.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "140647" - }, - "appliesTo" : [ ] - }, - "ZUTU5QZ3PZY7BWCS.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ZUTU5QZ3PZY7BWCS.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZUTU5QZ3PZY7BWCS.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ZUTU5QZ3PZY7BWCS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZUTU5QZ3PZY7BWCS.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ZUTU5QZ3PZY7BWCS.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ZUTU5QZ3PZY7BWCS.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ZUTU5QZ3PZY7BWCS.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "412964" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZUTU5QZ3PZY7BWCS.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ZUTU5QZ3PZY7BWCS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZUTU5QZ3PZY7BWCS.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ZUTU5QZ3PZY7BWCS.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "141830" - }, - "appliesTo" : [ ] - }, - "ZUTU5QZ3PZY7BWCS.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ZUTU5QZ3PZY7BWCS.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZUTU5QZ3PZY7BWCS.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ZUTU5QZ3PZY7BWCS", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZUTU5QZ3PZY7BWCS.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ZUTU5QZ3PZY7BWCS.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.8950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "BFQ697P5TXZG7V4S" : { - "BFQ697P5TXZG7V4S.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "BFQ697P5TXZG7V4S", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "BFQ697P5TXZG7V4S.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "BFQ697P5TXZG7V4S.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2642" - }, - "appliesTo" : [ ] - }, - "BFQ697P5TXZG7V4S.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "BFQ697P5TXZG7V4S.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BFQ697P5TXZG7V4S.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "BFQ697P5TXZG7V4S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BFQ697P5TXZG7V4S.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "BFQ697P5TXZG7V4S.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6769" - }, - "appliesTo" : [ ] - }, - "BFQ697P5TXZG7V4S.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "BFQ697P5TXZG7V4S.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BFQ697P5TXZG7V4S.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "BFQ697P5TXZG7V4S", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BFQ697P5TXZG7V4S.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "BFQ697P5TXZG7V4S.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18979" - }, - "appliesTo" : [ ] - }, - "BFQ697P5TXZG7V4S.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "BFQ697P5TXZG7V4S.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BFQ697P5TXZG7V4S.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "BFQ697P5TXZG7V4S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BFQ697P5TXZG7V4S.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "BFQ697P5TXZG7V4S.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3880000000" - }, - "appliesTo" : [ ] - }, - "BFQ697P5TXZG7V4S.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "BFQ697P5TXZG7V4S.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3401" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BFQ697P5TXZG7V4S.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "BFQ697P5TXZG7V4S", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "BFQ697P5TXZG7V4S.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "BFQ697P5TXZG7V4S.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BFQ697P5TXZG7V4S.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "BFQ697P5TXZG7V4S", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BFQ697P5TXZG7V4S.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "BFQ697P5TXZG7V4S.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BFQ697P5TXZG7V4S.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "BFQ697P5TXZG7V4S", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BFQ697P5TXZG7V4S.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "BFQ697P5TXZG7V4S.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "BFQ697P5TXZG7V4S.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "BFQ697P5TXZG7V4S.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16267" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BFQ697P5TXZG7V4S.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "BFQ697P5TXZG7V4S", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BFQ697P5TXZG7V4S.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "BFQ697P5TXZG7V4S.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7673" - }, - "appliesTo" : [ ] - }, - "BFQ697P5TXZG7V4S.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "BFQ697P5TXZG7V4S.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BFQ697P5TXZG7V4S.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "BFQ697P5TXZG7V4S", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "BFQ697P5TXZG7V4S.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "BFQ697P5TXZG7V4S.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BFQ697P5TXZG7V4S.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "BFQ697P5TXZG7V4S", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BFQ697P5TXZG7V4S.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "BFQ697P5TXZG7V4S.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3950000000" - }, - "appliesTo" : [ ] - }, - "BFQ697P5TXZG7V4S.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "BFQ697P5TXZG7V4S.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6925" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BFQ697P5TXZG7V4S.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "BFQ697P5TXZG7V4S", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "BFQ697P5TXZG7V4S.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "BFQ697P5TXZG7V4S.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "BFQ697P5TXZG7V4S.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "BFQ697P5TXZG7V4S.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6469" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "HEF4JAUBGGF9GEHP" : { - "HEF4JAUBGGF9GEHP.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "HEF4JAUBGGF9GEHP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HEF4JAUBGGF9GEHP.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "HEF4JAUBGGF9GEHP.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "HEF4JAUBGGF9GEHP.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "HEF4JAUBGGF9GEHP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HEF4JAUBGGF9GEHP.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "HEF4JAUBGGF9GEHP.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14078" - }, - "appliesTo" : [ ] - }, - "HEF4JAUBGGF9GEHP.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "HEF4JAUBGGF9GEHP.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HEF4JAUBGGF9GEHP.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "HEF4JAUBGGF9GEHP", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HEF4JAUBGGF9GEHP.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "HEF4JAUBGGF9GEHP.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "HEF4JAUBGGF9GEHP.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "HEF4JAUBGGF9GEHP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "HEF4JAUBGGF9GEHP.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "HEF4JAUBGGF9GEHP.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12224" - }, - "appliesTo" : [ ] - }, - "HEF4JAUBGGF9GEHP.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "HEF4JAUBGGF9GEHP.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HEF4JAUBGGF9GEHP.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "HEF4JAUBGGF9GEHP", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "HEF4JAUBGGF9GEHP.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "HEF4JAUBGGF9GEHP.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "64414" - }, - "appliesTo" : [ ] - }, - "HEF4JAUBGGF9GEHP.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "HEF4JAUBGGF9GEHP.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "HEF4JAUBGGF9GEHP.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "HEF4JAUBGGF9GEHP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HEF4JAUBGGF9GEHP.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "HEF4JAUBGGF9GEHP.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27538" - }, - "appliesTo" : [ ] - }, - "HEF4JAUBGGF9GEHP.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "HEF4JAUBGGF9GEHP.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "HEF4JAUBGGF9GEHP.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "HEF4JAUBGGF9GEHP", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "HEF4JAUBGGF9GEHP.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "HEF4JAUBGGF9GEHP.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "HEF4JAUBGGF9GEHP.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "HEF4JAUBGGF9GEHP", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "HEF4JAUBGGF9GEHP.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "HEF4JAUBGGF9GEHP.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22488" - }, - "appliesTo" : [ ] - }, - "HEF4JAUBGGF9GEHP.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "HEF4JAUBGGF9GEHP.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HEF4JAUBGGF9GEHP.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "HEF4JAUBGGF9GEHP", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "HEF4JAUBGGF9GEHP.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "HEF4JAUBGGF9GEHP.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2510000000" - }, - "appliesTo" : [ ] - }, - "HEF4JAUBGGF9GEHP.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "HEF4JAUBGGF9GEHP.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32882" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HEF4JAUBGGF9GEHP.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "HEF4JAUBGGF9GEHP", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "HEF4JAUBGGF9GEHP.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "HEF4JAUBGGF9GEHP.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23904" - }, - "appliesTo" : [ ] - }, - "HEF4JAUBGGF9GEHP.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "HEF4JAUBGGF9GEHP.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HEF4JAUBGGF9GEHP.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "HEF4JAUBGGF9GEHP", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "HEF4JAUBGGF9GEHP.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "HEF4JAUBGGF9GEHP.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "42211" - }, - "appliesTo" : [ ] - }, - "HEF4JAUBGGF9GEHP.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "HEF4JAUBGGF9GEHP.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), d2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "9VRMFY5RW5MYMD9F" : { - "9VRMFY5RW5MYMD9F.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "9VRMFY5RW5MYMD9F", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9VRMFY5RW5MYMD9F.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "9VRMFY5RW5MYMD9F.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16900" - }, - "appliesTo" : [ ] - }, - "9VRMFY5RW5MYMD9F.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "9VRMFY5RW5MYMD9F.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9VRMFY5RW5MYMD9F.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "9VRMFY5RW5MYMD9F", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9VRMFY5RW5MYMD9F.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "9VRMFY5RW5MYMD9F.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17973" - }, - "appliesTo" : [ ] - }, - "9VRMFY5RW5MYMD9F.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "9VRMFY5RW5MYMD9F.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9VRMFY5RW5MYMD9F.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "9VRMFY5RW5MYMD9F", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9VRMFY5RW5MYMD9F.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "9VRMFY5RW5MYMD9F.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19265" - }, - "appliesTo" : [ ] - }, - "9VRMFY5RW5MYMD9F.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "9VRMFY5RW5MYMD9F.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9VRMFY5RW5MYMD9F.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "9VRMFY5RW5MYMD9F", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9VRMFY5RW5MYMD9F.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "9VRMFY5RW5MYMD9F.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0480000000" - }, - "appliesTo" : [ ] - }, - "9VRMFY5RW5MYMD9F.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "9VRMFY5RW5MYMD9F.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8042" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9VRMFY5RW5MYMD9F.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "9VRMFY5RW5MYMD9F", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9VRMFY5RW5MYMD9F.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "9VRMFY5RW5MYMD9F.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32746" - }, - "appliesTo" : [ ] - }, - "9VRMFY5RW5MYMD9F.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "9VRMFY5RW5MYMD9F.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "9VRMFY5RW5MYMD9F.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "9VRMFY5RW5MYMD9F", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9VRMFY5RW5MYMD9F.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "9VRMFY5RW5MYMD9F.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "9VRMFY5RW5MYMD9F.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "9VRMFY5RW5MYMD9F", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9VRMFY5RW5MYMD9F.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "9VRMFY5RW5MYMD9F.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0580000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9VRMFY5RW5MYMD9F.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "9VRMFY5RW5MYMD9F", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9VRMFY5RW5MYMD9F.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "9VRMFY5RW5MYMD9F.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9248" - }, - "appliesTo" : [ ] - }, - "9VRMFY5RW5MYMD9F.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "9VRMFY5RW5MYMD9F.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "9VRMFY5RW5MYMD9F.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "9VRMFY5RW5MYMD9F", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9VRMFY5RW5MYMD9F.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "9VRMFY5RW5MYMD9F.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15601" - }, - "appliesTo" : [ ] - }, - "9VRMFY5RW5MYMD9F.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "9VRMFY5RW5MYMD9F.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "9VRMFY5RW5MYMD9F.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "9VRMFY5RW5MYMD9F", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9VRMFY5RW5MYMD9F.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "9VRMFY5RW5MYMD9F.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38644" - }, - "appliesTo" : [ ] - }, - "9VRMFY5RW5MYMD9F.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "9VRMFY5RW5MYMD9F.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "9VRMFY5RW5MYMD9F.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "9VRMFY5RW5MYMD9F", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9VRMFY5RW5MYMD9F.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "9VRMFY5RW5MYMD9F.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "9VRMFY5RW5MYMD9F.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "9VRMFY5RW5MYMD9F", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "9VRMFY5RW5MYMD9F.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "9VRMFY5RW5MYMD9F.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c5.18xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "CZNF2F6CSUG2M7XY" : { - "CZNF2F6CSUG2M7XY.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "CZNF2F6CSUG2M7XY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CZNF2F6CSUG2M7XY.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "CZNF2F6CSUG2M7XY.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3367" - }, - "appliesTo" : [ ] - }, - "CZNF2F6CSUG2M7XY.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "CZNF2F6CSUG2M7XY.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CZNF2F6CSUG2M7XY.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "CZNF2F6CSUG2M7XY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CZNF2F6CSUG2M7XY.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "CZNF2F6CSUG2M7XY.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1137" - }, - "appliesTo" : [ ] - }, - "CZNF2F6CSUG2M7XY.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "CZNF2F6CSUG2M7XY.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2598000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CZNF2F6CSUG2M7XY.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "CZNF2F6CSUG2M7XY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CZNF2F6CSUG2M7XY.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "CZNF2F6CSUG2M7XY.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "CZNF2F6CSUG2M7XY.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "CZNF2F6CSUG2M7XY.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7764" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CZNF2F6CSUG2M7XY.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "CZNF2F6CSUG2M7XY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CZNF2F6CSUG2M7XY.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "CZNF2F6CSUG2M7XY.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2312000000" - }, - "appliesTo" : [ ] - }, - "CZNF2F6CSUG2M7XY.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "CZNF2F6CSUG2M7XY.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2660" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CZNF2F6CSUG2M7XY.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "CZNF2F6CSUG2M7XY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CZNF2F6CSUG2M7XY.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "CZNF2F6CSUG2M7XY.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2180000000" - }, - "appliesTo" : [ ] - }, - "CZNF2F6CSUG2M7XY.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "CZNF2F6CSUG2M7XY.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2313" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CZNF2F6CSUG2M7XY.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "CZNF2F6CSUG2M7XY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CZNF2F6CSUG2M7XY.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "CZNF2F6CSUG2M7XY.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4435000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CZNF2F6CSUG2M7XY.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "CZNF2F6CSUG2M7XY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CZNF2F6CSUG2M7XY.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "CZNF2F6CSUG2M7XY.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1308" - }, - "appliesTo" : [ ] - }, - "CZNF2F6CSUG2M7XY.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "CZNF2F6CSUG2M7XY.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2793000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CZNF2F6CSUG2M7XY.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "CZNF2F6CSUG2M7XY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CZNF2F6CSUG2M7XY.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "CZNF2F6CSUG2M7XY.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3486000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CZNF2F6CSUG2M7XY.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "CZNF2F6CSUG2M7XY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CZNF2F6CSUG2M7XY.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "CZNF2F6CSUG2M7XY.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3201000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CZNF2F6CSUG2M7XY.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "CZNF2F6CSUG2M7XY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CZNF2F6CSUG2M7XY.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "CZNF2F6CSUG2M7XY.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8629" - }, - "appliesTo" : [ ] - }, - "CZNF2F6CSUG2M7XY.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "CZNF2F6CSUG2M7XY.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CZNF2F6CSUG2M7XY.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "CZNF2F6CSUG2M7XY", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CZNF2F6CSUG2M7XY.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "CZNF2F6CSUG2M7XY.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3702" - }, - "appliesTo" : [ ] - }, - "CZNF2F6CSUG2M7XY.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "CZNF2F6CSUG2M7XY.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CZNF2F6CSUG2M7XY.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "CZNF2F6CSUG2M7XY", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CZNF2F6CSUG2M7XY.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "CZNF2F6CSUG2M7XY.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4026000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "VK7DM9VN6XHH954M" : { - "VK7DM9VN6XHH954M.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "VK7DM9VN6XHH954M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VK7DM9VN6XHH954M.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "VK7DM9VN6XHH954M.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "51063" - }, - "appliesTo" : [ ] - }, - "VK7DM9VN6XHH954M.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "VK7DM9VN6XHH954M.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VK7DM9VN6XHH954M.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "VK7DM9VN6XHH954M", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "VK7DM9VN6XHH954M.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "VK7DM9VN6XHH954M.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "119423" - }, - "appliesTo" : [ ] - }, - "VK7DM9VN6XHH954M.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "VK7DM9VN6XHH954M.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VK7DM9VN6XHH954M.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "VK7DM9VN6XHH954M", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "VK7DM9VN6XHH954M.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "VK7DM9VN6XHH954M.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47712" - }, - "appliesTo" : [ ] - }, - "VK7DM9VN6XHH954M.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "VK7DM9VN6XHH954M.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VK7DM9VN6XHH954M.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "VK7DM9VN6XHH954M", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VK7DM9VN6XHH954M.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "VK7DM9VN6XHH954M.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.0504000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VK7DM9VN6XHH954M.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "VK7DM9VN6XHH954M", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VK7DM9VN6XHH954M.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "VK7DM9VN6XHH954M.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.7757000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VK7DM9VN6XHH954M.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "VK7DM9VN6XHH954M", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VK7DM9VN6XHH954M.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "VK7DM9VN6XHH954M.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "127600" - }, - "appliesTo" : [ ] - }, - "VK7DM9VN6XHH954M.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "VK7DM9VN6XHH954M.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VK7DM9VN6XHH954M.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "VK7DM9VN6XHH954M", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "VK7DM9VN6XHH954M.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "VK7DM9VN6XHH954M.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24079" - }, - "appliesTo" : [ ] - }, - "VK7DM9VN6XHH954M.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "VK7DM9VN6XHH954M.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VK7DM9VN6XHH954M.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "VK7DM9VN6XHH954M", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VK7DM9VN6XHH954M.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "VK7DM9VN6XHH954M.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.6320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VK7DM9VN6XHH954M.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "VK7DM9VN6XHH954M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VK7DM9VN6XHH954M.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "VK7DM9VN6XHH954M.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.0352000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VK7DM9VN6XHH954M.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "VK7DM9VN6XHH954M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VK7DM9VN6XHH954M.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "VK7DM9VN6XHH954M.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25789" - }, - "appliesTo" : [ ] - }, - "VK7DM9VN6XHH954M.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "VK7DM9VN6XHH954M.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VK7DM9VN6XHH954M.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "VK7DM9VN6XHH954M", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "VK7DM9VN6XHH954M.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "VK7DM9VN6XHH954M.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "61054" - }, - "appliesTo" : [ ] - }, - "VK7DM9VN6XHH954M.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "VK7DM9VN6XHH954M.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VK7DM9VN6XHH954M.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "VK7DM9VN6XHH954M", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VK7DM9VN6XHH954M.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "VK7DM9VN6XHH954M.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "64312" - }, - "appliesTo" : [ ] - }, - "VK7DM9VN6XHH954M.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "VK7DM9VN6XHH954M.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r4.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4472000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "BV77CKND4GMG6JUT" : { - "BV77CKND4GMG6JUT.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "BV77CKND4GMG6JUT", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BV77CKND4GMG6JUT.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "BV77CKND4GMG6JUT.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BV77CKND4GMG6JUT.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "BV77CKND4GMG6JUT", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BV77CKND4GMG6JUT.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "BV77CKND4GMG6JUT.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "211" - }, - "appliesTo" : [ ] - }, - "BV77CKND4GMG6JUT.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "BV77CKND4GMG6JUT.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BV77CKND4GMG6JUT.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "BV77CKND4GMG6JUT", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BV77CKND4GMG6JUT.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "BV77CKND4GMG6JUT.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "387" - }, - "appliesTo" : [ ] - }, - "BV77CKND4GMG6JUT.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "BV77CKND4GMG6JUT.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BV77CKND4GMG6JUT.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "BV77CKND4GMG6JUT", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BV77CKND4GMG6JUT.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "BV77CKND4GMG6JUT.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "836" - }, - "appliesTo" : [ ] - }, - "BV77CKND4GMG6JUT.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "BV77CKND4GMG6JUT.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BV77CKND4GMG6JUT.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "BV77CKND4GMG6JUT", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "BV77CKND4GMG6JUT.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "BV77CKND4GMG6JUT.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m1.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0200000000" - }, - "appliesTo" : [ ] - }, - "BV77CKND4GMG6JUT.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "BV77CKND4GMG6JUT.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "364" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "XYZXK8CJSF87RVWV" : { - "XYZXK8CJSF87RVWV.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XYZXK8CJSF87RVWV", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "XYZXK8CJSF87RVWV.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XYZXK8CJSF87RVWV.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XYZXK8CJSF87RVWV.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XYZXK8CJSF87RVWV", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "XYZXK8CJSF87RVWV.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XYZXK8CJSF87RVWV.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "875" - }, - "appliesTo" : [ ] - }, - "XYZXK8CJSF87RVWV.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XYZXK8CJSF87RVWV.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XYZXK8CJSF87RVWV.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XYZXK8CJSF87RVWV", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XYZXK8CJSF87RVWV.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XYZXK8CJSF87RVWV.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4323" - }, - "appliesTo" : [ ] - }, - "XYZXK8CJSF87RVWV.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XYZXK8CJSF87RVWV.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XYZXK8CJSF87RVWV.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XYZXK8CJSF87RVWV", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XYZXK8CJSF87RVWV.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XYZXK8CJSF87RVWV.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1362" - }, - "appliesTo" : [ ] - }, - "XYZXK8CJSF87RVWV.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XYZXK8CJSF87RVWV.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XYZXK8CJSF87RVWV.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XYZXK8CJSF87RVWV", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XYZXK8CJSF87RVWV.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XYZXK8CJSF87RVWV.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2008" - }, - "appliesTo" : [ ] - }, - "XYZXK8CJSF87RVWV.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XYZXK8CJSF87RVWV.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), m2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "PQXUZFT763CBBFXN" : { - "PQXUZFT763CBBFXN.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "PQXUZFT763CBBFXN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PQXUZFT763CBBFXN.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "PQXUZFT763CBBFXN.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "106143" - }, - "appliesTo" : [ ] - }, - "PQXUZFT763CBBFXN.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "PQXUZFT763CBBFXN.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PQXUZFT763CBBFXN.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "PQXUZFT763CBBFXN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PQXUZFT763CBBFXN.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "PQXUZFT763CBBFXN.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "118196" - }, - "appliesTo" : [ ] - }, - "PQXUZFT763CBBFXN.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "PQXUZFT763CBBFXN.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PQXUZFT763CBBFXN.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "PQXUZFT763CBBFXN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PQXUZFT763CBBFXN.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "PQXUZFT763CBBFXN.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.2880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "PQXUZFT763CBBFXN.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "PQXUZFT763CBBFXN", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "PQXUZFT763CBBFXN.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "PQXUZFT763CBBFXN.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "53892" - }, - "appliesTo" : [ ] - }, - "PQXUZFT763CBBFXN.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "PQXUZFT763CBBFXN.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.1520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "PQXUZFT763CBBFXN.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "PQXUZFT763CBBFXN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PQXUZFT763CBBFXN.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "PQXUZFT763CBBFXN.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.7720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "PQXUZFT763CBBFXN.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "PQXUZFT763CBBFXN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PQXUZFT763CBBFXN.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "PQXUZFT763CBBFXN.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "278769" - }, - "appliesTo" : [ ] - }, - "PQXUZFT763CBBFXN.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "PQXUZFT763CBBFXN.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "PQXUZFT763CBBFXN.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "PQXUZFT763CBBFXN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PQXUZFT763CBBFXN.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "PQXUZFT763CBBFXN.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.8540000000" - }, - "appliesTo" : [ ] - }, - "PQXUZFT763CBBFXN.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "PQXUZFT763CBBFXN.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "60041" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PQXUZFT763CBBFXN.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "PQXUZFT763CBBFXN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PQXUZFT763CBBFXN.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "PQXUZFT763CBBFXN.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "11.3900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "PQXUZFT763CBBFXN.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "PQXUZFT763CBBFXN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "PQXUZFT763CBBFXN.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "PQXUZFT763CBBFXN.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.2460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "PQXUZFT763CBBFXN.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "PQXUZFT763CBBFXN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PQXUZFT763CBBFXN.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "PQXUZFT763CBBFXN.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "PQXUZFT763CBBFXN.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "PQXUZFT763CBBFXN.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "245350" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "PQXUZFT763CBBFXN.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "PQXUZFT763CBBFXN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "PQXUZFT763CBBFXN.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "PQXUZFT763CBBFXN.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "141440" - }, - "appliesTo" : [ ] - }, - "PQXUZFT763CBBFXN.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "PQXUZFT763CBBFXN.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.3820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "PQXUZFT763CBBFXN.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "PQXUZFT763CBBFXN", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "PQXUZFT763CBBFXN.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "PQXUZFT763CBBFXN.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.8720000000" - }, - "appliesTo" : [ ] - }, - "PQXUZFT763CBBFXN.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "PQXUZFT763CBBFXN.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "128036" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "8K8S8K92EHM2PHP6" : { - "8K8S8K92EHM2PHP6.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "8K8S8K92EHM2PHP6", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "8K8S8K92EHM2PHP6.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "8K8S8K92EHM2PHP6.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8K8S8K92EHM2PHP6.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "8K8S8K92EHM2PHP6", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "8K8S8K92EHM2PHP6.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "8K8S8K92EHM2PHP6.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1398" - }, - "appliesTo" : [ ] - }, - "8K8S8K92EHM2PHP6.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "8K8S8K92EHM2PHP6.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8K8S8K92EHM2PHP6.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "8K8S8K92EHM2PHP6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8K8S8K92EHM2PHP6.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "8K8S8K92EHM2PHP6.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5164000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "8K8S8K92EHM2PHP6.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "8K8S8K92EHM2PHP6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8K8S8K92EHM2PHP6.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "8K8S8K92EHM2PHP6.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1612" - }, - "appliesTo" : [ ] - }, - "8K8S8K92EHM2PHP6.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "8K8S8K92EHM2PHP6.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8K8S8K92EHM2PHP6.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "8K8S8K92EHM2PHP6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8K8S8K92EHM2PHP6.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "8K8S8K92EHM2PHP6.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "8K8S8K92EHM2PHP6.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "8K8S8K92EHM2PHP6", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "8K8S8K92EHM2PHP6.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "8K8S8K92EHM2PHP6.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3775" - }, - "appliesTo" : [ ] - }, - "8K8S8K92EHM2PHP6.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "8K8S8K92EHM2PHP6.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "8K8S8K92EHM2PHP6.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "8K8S8K92EHM2PHP6", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "8K8S8K92EHM2PHP6.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "8K8S8K92EHM2PHP6.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "8K8S8K92EHM2PHP6.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "8K8S8K92EHM2PHP6.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6834" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8K8S8K92EHM2PHP6.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "8K8S8K92EHM2PHP6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8K8S8K92EHM2PHP6.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "8K8S8K92EHM2PHP6.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "8K8S8K92EHM2PHP6.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "8K8S8K92EHM2PHP6.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8976" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8K8S8K92EHM2PHP6.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "8K8S8K92EHM2PHP6", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "8K8S8K92EHM2PHP6.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "8K8S8K92EHM2PHP6.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4298" - }, - "appliesTo" : [ ] - }, - "8K8S8K92EHM2PHP6.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "8K8S8K92EHM2PHP6.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "8K8S8K92EHM2PHP6.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "8K8S8K92EHM2PHP6", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "8K8S8K92EHM2PHP6.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "8K8S8K92EHM2PHP6.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2796" - }, - "appliesTo" : [ ] - }, - "8K8S8K92EHM2PHP6.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "8K8S8K92EHM2PHP6.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "8K8S8K92EHM2PHP6.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "8K8S8K92EHM2PHP6", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "8K8S8K92EHM2PHP6.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "8K8S8K92EHM2PHP6.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3266" - }, - "appliesTo" : [ ] - }, - "8K8S8K92EHM2PHP6.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "8K8S8K92EHM2PHP6.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "8K8S8K92EHM2PHP6.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "8K8S8K92EHM2PHP6", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "8K8S8K92EHM2PHP6.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "8K8S8K92EHM2PHP6.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3933000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "XUKM8UBN69JM7HAV" : { - "XUKM8UBN69JM7HAV.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XUKM8UBN69JM7HAV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "XUKM8UBN69JM7HAV.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XUKM8UBN69JM7HAV.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "418" - }, - "appliesTo" : [ ] - }, - "XUKM8UBN69JM7HAV.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XUKM8UBN69JM7HAV.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XUKM8UBN69JM7HAV.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XUKM8UBN69JM7HAV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "XUKM8UBN69JM7HAV.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XUKM8UBN69JM7HAV.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "684" - }, - "appliesTo" : [ ] - }, - "XUKM8UBN69JM7HAV.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XUKM8UBN69JM7HAV.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XUKM8UBN69JM7HAV.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "XUKM8UBN69JM7HAV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "XUKM8UBN69JM7HAV.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "XUKM8UBN69JM7HAV.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XUKM8UBN69JM7HAV.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "XUKM8UBN69JM7HAV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "XUKM8UBN69JM7HAV.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "XUKM8UBN69JM7HAV.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0902000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XUKM8UBN69JM7HAV.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "XUKM8UBN69JM7HAV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "XUKM8UBN69JM7HAV.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "XUKM8UBN69JM7HAV.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2007" - }, - "appliesTo" : [ ] - }, - "XUKM8UBN69JM7HAV.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "XUKM8UBN69JM7HAV.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XUKM8UBN69JM7HAV.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "XUKM8UBN69JM7HAV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XUKM8UBN69JM7HAV.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "XUKM8UBN69JM7HAV.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "838" - }, - "appliesTo" : [ ] - }, - "XUKM8UBN69JM7HAV.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "XUKM8UBN69JM7HAV.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XUKM8UBN69JM7HAV.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XUKM8UBN69JM7HAV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "XUKM8UBN69JM7HAV.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XUKM8UBN69JM7HAV.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XUKM8UBN69JM7HAV.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "XUKM8UBN69JM7HAV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XUKM8UBN69JM7HAV.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "XUKM8UBN69JM7HAV.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0967000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XUKM8UBN69JM7HAV.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "XUKM8UBN69JM7HAV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XUKM8UBN69JM7HAV.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "XUKM8UBN69JM7HAV.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "420" - }, - "appliesTo" : [ ] - }, - "XUKM8UBN69JM7HAV.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "XUKM8UBN69JM7HAV.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XUKM8UBN69JM7HAV.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XUKM8UBN69JM7HAV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "XUKM8UBN69JM7HAV.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XUKM8UBN69JM7HAV.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "XUKM8UBN69JM7HAV.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XUKM8UBN69JM7HAV.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1779" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XUKM8UBN69JM7HAV.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "XUKM8UBN69JM7HAV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "XUKM8UBN69JM7HAV.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "XUKM8UBN69JM7HAV.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1223" - }, - "appliesTo" : [ ] - }, - "XUKM8UBN69JM7HAV.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "XUKM8UBN69JM7HAV.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XUKM8UBN69JM7HAV.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XUKM8UBN69JM7HAV", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "XUKM8UBN69JM7HAV.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XUKM8UBN69JM7HAV.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "946" - }, - "appliesTo" : [ ] - }, - "XUKM8UBN69JM7HAV.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XUKM8UBN69JM7HAV.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.small reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "B4JUK3U7ZG63RGSF" : { - "B4JUK3U7ZG63RGSF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "B4JUK3U7ZG63RGSF", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "B4JUK3U7ZG63RGSF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "B4JUK3U7ZG63RGSF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4350" - }, - "appliesTo" : [ ] - }, - "B4JUK3U7ZG63RGSF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "B4JUK3U7ZG63RGSF.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "B4JUK3U7ZG63RGSF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "B4JUK3U7ZG63RGSF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "B4JUK3U7ZG63RGSF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "B4JUK3U7ZG63RGSF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2608" - }, - "appliesTo" : [ ] - }, - "B4JUK3U7ZG63RGSF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "B4JUK3U7ZG63RGSF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "B4JUK3U7ZG63RGSF.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "B4JUK3U7ZG63RGSF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "B4JUK3U7ZG63RGSF.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "B4JUK3U7ZG63RGSF.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4992" - }, - "appliesTo" : [ ] - }, - "B4JUK3U7ZG63RGSF.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "B4JUK3U7ZG63RGSF.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "B4JUK3U7ZG63RGSF.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "B4JUK3U7ZG63RGSF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "B4JUK3U7ZG63RGSF.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "B4JUK3U7ZG63RGSF.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "B4JUK3U7ZG63RGSF.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "B4JUK3U7ZG63RGSF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "B4JUK3U7ZG63RGSF.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "B4JUK3U7ZG63RGSF.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2547" - }, - "appliesTo" : [ ] - }, - "B4JUK3U7ZG63RGSF.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "B4JUK3U7ZG63RGSF.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "B4JUK3U7ZG63RGSF.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "B4JUK3U7ZG63RGSF", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "B4JUK3U7ZG63RGSF.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "B4JUK3U7ZG63RGSF.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11745" - }, - "appliesTo" : [ ] - }, - "B4JUK3U7ZG63RGSF.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "B4JUK3U7ZG63RGSF.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "B4JUK3U7ZG63RGSF.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "B4JUK3U7ZG63RGSF", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "B4JUK3U7ZG63RGSF.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "B4JUK3U7ZG63RGSF.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7042" - }, - "appliesTo" : [ ] - }, - "B4JUK3U7ZG63RGSF.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "B4JUK3U7ZG63RGSF.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "B4JUK3U7ZG63RGSF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "B4JUK3U7ZG63RGSF", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "B4JUK3U7ZG63RGSF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "B4JUK3U7ZG63RGSF.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1800000000" - }, - "appliesTo" : [ ] - }, - "B4JUK3U7ZG63RGSF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "B4JUK3U7ZG63RGSF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4063" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "B4JUK3U7ZG63RGSF.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "B4JUK3U7ZG63RGSF", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "B4JUK3U7ZG63RGSF.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "B4JUK3U7ZG63RGSF.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "B4JUK3U7ZG63RGSF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "B4JUK3U7ZG63RGSF", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "B4JUK3U7ZG63RGSF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "B4JUK3U7ZG63RGSF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8265" - }, - "appliesTo" : [ ] - }, - "B4JUK3U7ZG63RGSF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "B4JUK3U7ZG63RGSF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "B4JUK3U7ZG63RGSF.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "B4JUK3U7ZG63RGSF", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "B4JUK3U7ZG63RGSF.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "B4JUK3U7ZG63RGSF.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "AN49H8NYXWHMRMMP" : { - "AN49H8NYXWHMRMMP.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "AN49H8NYXWHMRMMP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AN49H8NYXWHMRMMP.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "AN49H8NYXWHMRMMP.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "AN49H8NYXWHMRMMP.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "AN49H8NYXWHMRMMP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AN49H8NYXWHMRMMP.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "AN49H8NYXWHMRMMP.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "AN49H8NYXWHMRMMP.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "AN49H8NYXWHMRMMP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AN49H8NYXWHMRMMP.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "AN49H8NYXWHMRMMP.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "483" - }, - "appliesTo" : [ ] - }, - "AN49H8NYXWHMRMMP.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "AN49H8NYXWHMRMMP.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AN49H8NYXWHMRMMP.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "AN49H8NYXWHMRMMP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AN49H8NYXWHMRMMP.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "AN49H8NYXWHMRMMP.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "246" - }, - "appliesTo" : [ ] - }, - "AN49H8NYXWHMRMMP.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "AN49H8NYXWHMRMMP.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AN49H8NYXWHMRMMP.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "AN49H8NYXWHMRMMP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AN49H8NYXWHMRMMP.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "AN49H8NYXWHMRMMP.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "949" - }, - "appliesTo" : [ ] - }, - "AN49H8NYXWHMRMMP.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "AN49H8NYXWHMRMMP.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AN49H8NYXWHMRMMP.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "AN49H8NYXWHMRMMP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AN49H8NYXWHMRMMP.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "AN49H8NYXWHMRMMP.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0190000000" - }, - "appliesTo" : [ ] - }, - "AN49H8NYXWHMRMMP.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "AN49H8NYXWHMRMMP.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "500" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "A5V9YQVUZMY5XA83" : { - "A5V9YQVUZMY5XA83.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "A5V9YQVUZMY5XA83", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A5V9YQVUZMY5XA83.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "A5V9YQVUZMY5XA83.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "A5V9YQVUZMY5XA83.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "A5V9YQVUZMY5XA83.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2193" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "A5V9YQVUZMY5XA83.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "A5V9YQVUZMY5XA83", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A5V9YQVUZMY5XA83.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "A5V9YQVUZMY5XA83.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "A5V9YQVUZMY5XA83.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "A5V9YQVUZMY5XA83.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1930" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "A5V9YQVUZMY5XA83.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "A5V9YQVUZMY5XA83", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A5V9YQVUZMY5XA83.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "A5V9YQVUZMY5XA83.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "A5V9YQVUZMY5XA83.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "A5V9YQVUZMY5XA83", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A5V9YQVUZMY5XA83.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "A5V9YQVUZMY5XA83.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "A5V9YQVUZMY5XA83.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "A5V9YQVUZMY5XA83", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A5V9YQVUZMY5XA83.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "A5V9YQVUZMY5XA83.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3795" - }, - "appliesTo" : [ ] - }, - "A5V9YQVUZMY5XA83.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "A5V9YQVUZMY5XA83.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "A5V9YQVUZMY5XA83.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "A5V9YQVUZMY5XA83", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A5V9YQVUZMY5XA83.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "A5V9YQVUZMY5XA83.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2001" - }, - "appliesTo" : [ ] - }, - "A5V9YQVUZMY5XA83.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "A5V9YQVUZMY5XA83.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0760000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "A5V9YQVUZMY5XA83.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "A5V9YQVUZMY5XA83", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A5V9YQVUZMY5XA83.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "A5V9YQVUZMY5XA83.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2265" - }, - "appliesTo" : [ ] - }, - "A5V9YQVUZMY5XA83.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "A5V9YQVUZMY5XA83.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "A5V9YQVUZMY5XA83.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "A5V9YQVUZMY5XA83", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A5V9YQVUZMY5XA83.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "A5V9YQVUZMY5XA83.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "A5V9YQVUZMY5XA83.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "A5V9YQVUZMY5XA83", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A5V9YQVUZMY5XA83.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "A5V9YQVUZMY5XA83.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1280000000" - }, - "appliesTo" : [ ] - }, - "A5V9YQVUZMY5XA83.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "A5V9YQVUZMY5XA83.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1117" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "A5V9YQVUZMY5XA83.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "A5V9YQVUZMY5XA83", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A5V9YQVUZMY5XA83.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "A5V9YQVUZMY5XA83.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "A5V9YQVUZMY5XA83.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "A5V9YQVUZMY5XA83.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4450" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "A5V9YQVUZMY5XA83.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "A5V9YQVUZMY5XA83", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A5V9YQVUZMY5XA83.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "A5V9YQVUZMY5XA83.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "983" - }, - "appliesTo" : [ ] - }, - "A5V9YQVUZMY5XA83.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "A5V9YQVUZMY5XA83.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "A5V9YQVUZMY5XA83.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "A5V9YQVUZMY5XA83", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "A5V9YQVUZMY5XA83.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "A5V9YQVUZMY5XA83.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "3P9SFGQNFGEFVPCX" : { - "3P9SFGQNFGEFVPCX.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "3P9SFGQNFGEFVPCX", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "3P9SFGQNFGEFVPCX.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "3P9SFGQNFGEFVPCX.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "840" - }, - "appliesTo" : [ ] - }, - "3P9SFGQNFGEFVPCX.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "3P9SFGQNFGEFVPCX.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0316000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3P9SFGQNFGEFVPCX.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "3P9SFGQNFGEFVPCX", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "3P9SFGQNFGEFVPCX.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "3P9SFGQNFGEFVPCX.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0905000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3P9SFGQNFGEFVPCX.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "3P9SFGQNFGEFVPCX", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "3P9SFGQNFGEFVPCX.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "3P9SFGQNFGEFVPCX.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0731000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3P9SFGQNFGEFVPCX.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "3P9SFGQNFGEFVPCX", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "3P9SFGQNFGEFVPCX.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "3P9SFGQNFGEFVPCX.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1793" - }, - "appliesTo" : [ ] - }, - "3P9SFGQNFGEFVPCX.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "3P9SFGQNFGEFVPCX.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3P9SFGQNFGEFVPCX.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "3P9SFGQNFGEFVPCX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3P9SFGQNFGEFVPCX.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "3P9SFGQNFGEFVPCX.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "831" - }, - "appliesTo" : [ ] - }, - "3P9SFGQNFGEFVPCX.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "3P9SFGQNFGEFVPCX.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "3P9SFGQNFGEFVPCX.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "3P9SFGQNFGEFVPCX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3P9SFGQNFGEFVPCX.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "3P9SFGQNFGEFVPCX.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0991000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3P9SFGQNFGEFVPCX.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "3P9SFGQNFGEFVPCX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "3P9SFGQNFGEFVPCX.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "3P9SFGQNFGEFVPCX.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "452" - }, - "appliesTo" : [ ] - }, - "3P9SFGQNFGEFVPCX.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "3P9SFGQNFGEFVPCX.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0445000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3P9SFGQNFGEFVPCX.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "3P9SFGQNFGEFVPCX", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "3P9SFGQNFGEFVPCX.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "3P9SFGQNFGEFVPCX.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0404000000" - }, - "appliesTo" : [ ] - }, - "3P9SFGQNFGEFVPCX.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "3P9SFGQNFGEFVPCX.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "416" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3P9SFGQNFGEFVPCX.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "3P9SFGQNFGEFVPCX", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "3P9SFGQNFGEFVPCX.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "3P9SFGQNFGEFVPCX.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "760" - }, - "appliesTo" : [ ] - }, - "3P9SFGQNFGEFVPCX.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "3P9SFGQNFGEFVPCX.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3P9SFGQNFGEFVPCX.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "3P9SFGQNFGEFVPCX", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "3P9SFGQNFGEFVPCX.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "3P9SFGQNFGEFVPCX.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "913" - }, - "appliesTo" : [ ] - }, - "3P9SFGQNFGEFVPCX.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "3P9SFGQNFGEFVPCX.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0343000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "3P9SFGQNFGEFVPCX.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "3P9SFGQNFGEFVPCX", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "3P9SFGQNFGEFVPCX.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "3P9SFGQNFGEFVPCX.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0791000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "3P9SFGQNFGEFVPCX.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "3P9SFGQNFGEFVPCX", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "3P9SFGQNFGEFVPCX.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "3P9SFGQNFGEFVPCX.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1611" - }, - "appliesTo" : [ ] - }, - "3P9SFGQNFGEFVPCX.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "3P9SFGQNFGEFVPCX.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), t2.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "63SCWY92BSEPEYVC" : { - "63SCWY92BSEPEYVC.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "63SCWY92BSEPEYVC", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "63SCWY92BSEPEYVC.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "63SCWY92BSEPEYVC.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "63SCWY92BSEPEYVC.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "63SCWY92BSEPEYVC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "63SCWY92BSEPEYVC.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "63SCWY92BSEPEYVC.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10310" - }, - "appliesTo" : [ ] - }, - "63SCWY92BSEPEYVC.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "63SCWY92BSEPEYVC.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "63SCWY92BSEPEYVC.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "63SCWY92BSEPEYVC", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "63SCWY92BSEPEYVC.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "63SCWY92BSEPEYVC.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12415" - }, - "appliesTo" : [ ] - }, - "63SCWY92BSEPEYVC.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "63SCWY92BSEPEYVC.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "63SCWY92BSEPEYVC.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "63SCWY92BSEPEYVC", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "63SCWY92BSEPEYVC.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "63SCWY92BSEPEYVC.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "63SCWY92BSEPEYVC.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "63SCWY92BSEPEYVC", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "63SCWY92BSEPEYVC.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "63SCWY92BSEPEYVC.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2974" - }, - "appliesTo" : [ ] - }, - "63SCWY92BSEPEYVC.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "63SCWY92BSEPEYVC.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "63SCWY92BSEPEYVC.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "63SCWY92BSEPEYVC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "63SCWY92BSEPEYVC.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "63SCWY92BSEPEYVC.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5027" - }, - "appliesTo" : [ ] - }, - "63SCWY92BSEPEYVC.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "63SCWY92BSEPEYVC.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "63SCWY92BSEPEYVC.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "63SCWY92BSEPEYVC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "63SCWY92BSEPEYVC.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "63SCWY92BSEPEYVC.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2555" - }, - "appliesTo" : [ ] - }, - "63SCWY92BSEPEYVC.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "63SCWY92BSEPEYVC.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "63SCWY92BSEPEYVC.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "63SCWY92BSEPEYVC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "63SCWY92BSEPEYVC.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "63SCWY92BSEPEYVC.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "63SCWY92BSEPEYVC.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "63SCWY92BSEPEYVC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "63SCWY92BSEPEYVC.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "63SCWY92BSEPEYVC.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "63SCWY92BSEPEYVC.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "63SCWY92BSEPEYVC.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4486" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "63SCWY92BSEPEYVC.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "63SCWY92BSEPEYVC", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "63SCWY92BSEPEYVC.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "63SCWY92BSEPEYVC.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8230" - }, - "appliesTo" : [ ] - }, - "63SCWY92BSEPEYVC.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "63SCWY92BSEPEYVC.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "63SCWY92BSEPEYVC.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "63SCWY92BSEPEYVC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "63SCWY92BSEPEYVC.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "63SCWY92BSEPEYVC.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7131" - }, - "appliesTo" : [ ] - }, - "63SCWY92BSEPEYVC.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "63SCWY92BSEPEYVC.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "4XKHFJVHSPER36XU" : { - "4XKHFJVHSPER36XU.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "4XKHFJVHSPER36XU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4XKHFJVHSPER36XU.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "4XKHFJVHSPER36XU.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1848000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "4XKHFJVHSPER36XU.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "4XKHFJVHSPER36XU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4XKHFJVHSPER36XU.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "4XKHFJVHSPER36XU.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "887" - }, - "appliesTo" : [ ] - }, - "4XKHFJVHSPER36XU.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "4XKHFJVHSPER36XU.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1012000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4XKHFJVHSPER36XU.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "4XKHFJVHSPER36XU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4XKHFJVHSPER36XU.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "4XKHFJVHSPER36XU.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3453" - }, - "appliesTo" : [ ] - }, - "4XKHFJVHSPER36XU.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "4XKHFJVHSPER36XU.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4XKHFJVHSPER36XU.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "4XKHFJVHSPER36XU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4XKHFJVHSPER36XU.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "4XKHFJVHSPER36XU.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1448000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "4XKHFJVHSPER36XU.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "4XKHFJVHSPER36XU", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "4XKHFJVHSPER36XU.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "4XKHFJVHSPER36XU.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0880000000" - }, - "appliesTo" : [ ] - }, - "4XKHFJVHSPER36XU.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "4XKHFJVHSPER36XU.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "770" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4XKHFJVHSPER36XU.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "4XKHFJVHSPER36XU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4XKHFJVHSPER36XU.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "4XKHFJVHSPER36XU.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1738" - }, - "appliesTo" : [ ] - }, - "4XKHFJVHSPER36XU.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "4XKHFJVHSPER36XU.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4XKHFJVHSPER36XU.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "4XKHFJVHSPER36XU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4XKHFJVHSPER36XU.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "4XKHFJVHSPER36XU.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1259000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "4XKHFJVHSPER36XU.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "4XKHFJVHSPER36XU", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "4XKHFJVHSPER36XU.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "4XKHFJVHSPER36XU.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1509" - }, - "appliesTo" : [ ] - }, - "4XKHFJVHSPER36XU.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "4XKHFJVHSPER36XU.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4XKHFJVHSPER36XU.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "4XKHFJVHSPER36XU", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "4XKHFJVHSPER36XU.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "4XKHFJVHSPER36XU.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2895" - }, - "appliesTo" : [ ] - }, - "4XKHFJVHSPER36XU.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "4XKHFJVHSPER36XU.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4XKHFJVHSPER36XU.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "4XKHFJVHSPER36XU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4XKHFJVHSPER36XU.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "4XKHFJVHSPER36XU.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1762" - }, - "appliesTo" : [ ] - }, - "4XKHFJVHSPER36XU.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "4XKHFJVHSPER36XU.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4XKHFJVHSPER36XU.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "4XKHFJVHSPER36XU", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "4XKHFJVHSPER36XU.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "4XKHFJVHSPER36XU.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1540" - }, - "appliesTo" : [ ] - }, - "4XKHFJVHSPER36XU.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "4XKHFJVHSPER36XU.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4XKHFJVHSPER36XU.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "4XKHFJVHSPER36XU", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4XKHFJVHSPER36XU.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "4XKHFJVHSPER36XU.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2125000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "CZMS4AAZCDSZGNTD" : { - "CZMS4AAZCDSZGNTD.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "CZMS4AAZCDSZGNTD", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "CZMS4AAZCDSZGNTD.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "CZMS4AAZCDSZGNTD.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "699" - }, - "appliesTo" : [ ] - }, - "CZMS4AAZCDSZGNTD.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "CZMS4AAZCDSZGNTD.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CZMS4AAZCDSZGNTD.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "CZMS4AAZCDSZGNTD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CZMS4AAZCDSZGNTD.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "CZMS4AAZCDSZGNTD.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1258000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CZMS4AAZCDSZGNTD.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "CZMS4AAZCDSZGNTD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CZMS4AAZCDSZGNTD.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "CZMS4AAZCDSZGNTD.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "801" - }, - "appliesTo" : [ ] - }, - "CZMS4AAZCDSZGNTD.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "CZMS4AAZCDSZGNTD.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0905000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CZMS4AAZCDSZGNTD.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "CZMS4AAZCDSZGNTD", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "CZMS4AAZCDSZGNTD.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "CZMS4AAZCDSZGNTD.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2891" - }, - "appliesTo" : [ ] - }, - "CZMS4AAZCDSZGNTD.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "CZMS4AAZCDSZGNTD.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CZMS4AAZCDSZGNTD.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "CZMS4AAZCDSZGNTD", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "CZMS4AAZCDSZGNTD.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "CZMS4AAZCDSZGNTD.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "CZMS4AAZCDSZGNTD.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "CZMS4AAZCDSZGNTD.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1211" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CZMS4AAZCDSZGNTD.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "CZMS4AAZCDSZGNTD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CZMS4AAZCDSZGNTD.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "CZMS4AAZCDSZGNTD.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1566000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CZMS4AAZCDSZGNTD.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "CZMS4AAZCDSZGNTD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CZMS4AAZCDSZGNTD.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "CZMS4AAZCDSZGNTD.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1315" - }, - "appliesTo" : [ ] - }, - "CZMS4AAZCDSZGNTD.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "CZMS4AAZCDSZGNTD.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CZMS4AAZCDSZGNTD.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "CZMS4AAZCDSZGNTD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CZMS4AAZCDSZGNTD.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "CZMS4AAZCDSZGNTD.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CZMS4AAZCDSZGNTD.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "CZMS4AAZCDSZGNTD", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CZMS4AAZCDSZGNTD.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "CZMS4AAZCDSZGNTD.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "403" - }, - "appliesTo" : [ ] - }, - "CZMS4AAZCDSZGNTD.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "CZMS4AAZCDSZGNTD.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CZMS4AAZCDSZGNTD.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "CZMS4AAZCDSZGNTD", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "CZMS4AAZCDSZGNTD.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "CZMS4AAZCDSZGNTD.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1000000000" - }, - "appliesTo" : [ ] - }, - "CZMS4AAZCDSZGNTD.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "CZMS4AAZCDSZGNTD.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "350" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CZMS4AAZCDSZGNTD.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "CZMS4AAZCDSZGNTD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CZMS4AAZCDSZGNTD.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "CZMS4AAZCDSZGNTD.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3147" - }, - "appliesTo" : [ ] - }, - "CZMS4AAZCDSZGNTD.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "CZMS4AAZCDSZGNTD.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CZMS4AAZCDSZGNTD.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "CZMS4AAZCDSZGNTD", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CZMS4AAZCDSZGNTD.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "CZMS4AAZCDSZGNTD.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), r4.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1172000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "4TYUSVW2SFT4SYCV" : { - "4TYUSVW2SFT4SYCV.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "4TYUSVW2SFT4SYCV", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "4TYUSVW2SFT4SYCV.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "4TYUSVW2SFT4SYCV.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3795" - }, - "appliesTo" : [ ] - }, - "4TYUSVW2SFT4SYCV.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "4TYUSVW2SFT4SYCV.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4TYUSVW2SFT4SYCV.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "4TYUSVW2SFT4SYCV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4TYUSVW2SFT4SYCV.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "4TYUSVW2SFT4SYCV.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2402" - }, - "appliesTo" : [ ] - }, - "4TYUSVW2SFT4SYCV.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "4TYUSVW2SFT4SYCV.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4TYUSVW2SFT4SYCV.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "4TYUSVW2SFT4SYCV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4TYUSVW2SFT4SYCV.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "4TYUSVW2SFT4SYCV.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "4TYUSVW2SFT4SYCV.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "4TYUSVW2SFT4SYCV", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "4TYUSVW2SFT4SYCV.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "4TYUSVW2SFT4SYCV.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1211" - }, - "appliesTo" : [ ] - }, - "4TYUSVW2SFT4SYCV.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "4TYUSVW2SFT4SYCV.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4TYUSVW2SFT4SYCV.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "4TYUSVW2SFT4SYCV", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "4TYUSVW2SFT4SYCV.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "4TYUSVW2SFT4SYCV.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "4TYUSVW2SFT4SYCV.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "4TYUSVW2SFT4SYCV", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "4TYUSVW2SFT4SYCV.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "4TYUSVW2SFT4SYCV.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0890000000" - }, - "appliesTo" : [ ] - }, - "4TYUSVW2SFT4SYCV.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "4TYUSVW2SFT4SYCV.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1454" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "4TYUSVW2SFT4SYCV.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "4TYUSVW2SFT4SYCV", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "4TYUSVW2SFT4SYCV.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "4TYUSVW2SFT4SYCV.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6324" - }, - "appliesTo" : [ ] - }, - "4TYUSVW2SFT4SYCV.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "4TYUSVW2SFT4SYCV.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "4TYUSVW2SFT4SYCV.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "4TYUSVW2SFT4SYCV", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "4TYUSVW2SFT4SYCV.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "4TYUSVW2SFT4SYCV.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "4TYUSVW2SFT4SYCV.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "4TYUSVW2SFT4SYCV", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "4TYUSVW2SFT4SYCV.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "4TYUSVW2SFT4SYCV.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5489" - }, - "appliesTo" : [ ] - }, - "4TYUSVW2SFT4SYCV.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "4TYUSVW2SFT4SYCV.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "4TYUSVW2SFT4SYCV.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "4TYUSVW2SFT4SYCV", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "4TYUSVW2SFT4SYCV.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "4TYUSVW2SFT4SYCV.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4193" - }, - "appliesTo" : [ ] - }, - "4TYUSVW2SFT4SYCV.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "4TYUSVW2SFT4SYCV.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "4TYUSVW2SFT4SYCV.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "4TYUSVW2SFT4SYCV", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "4TYUSVW2SFT4SYCV.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "4TYUSVW2SFT4SYCV.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2193" - }, - "appliesTo" : [ ] - }, - "4TYUSVW2SFT4SYCV.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "4TYUSVW2SFT4SYCV.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "K6TSS6QSQBWVHANR" : { - "K6TSS6QSQBWVHANR.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "K6TSS6QSQBWVHANR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K6TSS6QSQBWVHANR.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "K6TSS6QSQBWVHANR.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "K6TSS6QSQBWVHANR.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "K6TSS6QSQBWVHANR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K6TSS6QSQBWVHANR.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "K6TSS6QSQBWVHANR.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1832" - }, - "appliesTo" : [ ] - }, - "K6TSS6QSQBWVHANR.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "K6TSS6QSQBWVHANR.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "K6TSS6QSQBWVHANR.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "K6TSS6QSQBWVHANR", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "K6TSS6QSQBWVHANR.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "K6TSS6QSQBWVHANR.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "K6TSS6QSQBWVHANR.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "K6TSS6QSQBWVHANR", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "K6TSS6QSQBWVHANR.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "K6TSS6QSQBWVHANR.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3043" - }, - "appliesTo" : [ ] - }, - "K6TSS6QSQBWVHANR.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "K6TSS6QSQBWVHANR.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "K6TSS6QSQBWVHANR.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "K6TSS6QSQBWVHANR", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "K6TSS6QSQBWVHANR.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "K6TSS6QSQBWVHANR.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6096" - }, - "appliesTo" : [ ] - }, - "K6TSS6QSQBWVHANR.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "K6TSS6QSQBWVHANR.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "K6TSS6QSQBWVHANR.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "K6TSS6QSQBWVHANR", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "K6TSS6QSQBWVHANR.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "K6TSS6QSQBWVHANR.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3125" - }, - "appliesTo" : [ ] - }, - "K6TSS6QSQBWVHANR.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "K6TSS6QSQBWVHANR.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "K6TSS6QSQBWVHANR.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "K6TSS6QSQBWVHANR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "K6TSS6QSQBWVHANR.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "K6TSS6QSQBWVHANR.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3536" - }, - "appliesTo" : [ ] - }, - "K6TSS6QSQBWVHANR.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "K6TSS6QSQBWVHANR.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "K6TSS6QSQBWVHANR.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "K6TSS6QSQBWVHANR", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "K6TSS6QSQBWVHANR.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "K6TSS6QSQBWVHANR.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "K6TSS6QSQBWVHANR.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "K6TSS6QSQBWVHANR", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "K6TSS6QSQBWVHANR.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "K6TSS6QSQBWVHANR.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1360000000" - }, - "appliesTo" : [ ] - }, - "K6TSS6QSQBWVHANR.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "K6TSS6QSQBWVHANR.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4896" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "K6TSS6QSQBWVHANR.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "K6TSS6QSQBWVHANR", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "K6TSS6QSQBWVHANR.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "K6TSS6QSQBWVHANR.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1859" - }, - "appliesTo" : [ ] - }, - "K6TSS6QSQBWVHANR.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "K6TSS6QSQBWVHANR.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1520000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "K6TSS6QSQBWVHANR.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "K6TSS6QSQBWVHANR", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "K6TSS6QSQBWVHANR.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "K6TSS6QSQBWVHANR.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8271" - }, - "appliesTo" : [ ] - }, - "K6TSS6QSQBWVHANR.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "K6TSS6QSQBWVHANR.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "RG525W32DHGJSVCS" : { - "RG525W32DHGJSVCS.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "RG525W32DHGJSVCS", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "RG525W32DHGJSVCS.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "RG525W32DHGJSVCS.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RG525W32DHGJSVCS.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "RG525W32DHGJSVCS", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RG525W32DHGJSVCS.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "RG525W32DHGJSVCS.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3227" - }, - "appliesTo" : [ ] - }, - "RG525W32DHGJSVCS.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "RG525W32DHGJSVCS.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RG525W32DHGJSVCS.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "RG525W32DHGJSVCS", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RG525W32DHGJSVCS.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "RG525W32DHGJSVCS.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2070" - }, - "appliesTo" : [ ] - }, - "RG525W32DHGJSVCS.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "RG525W32DHGJSVCS.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RG525W32DHGJSVCS.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "RG525W32DHGJSVCS", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RG525W32DHGJSVCS.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "RG525W32DHGJSVCS.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3522" - }, - "appliesTo" : [ ] - }, - "RG525W32DHGJSVCS.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "RG525W32DHGJSVCS.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RG525W32DHGJSVCS.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "RG525W32DHGJSVCS", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "RG525W32DHGJSVCS.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "RG525W32DHGJSVCS.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6442" - }, - "appliesTo" : [ ] - }, - "RG525W32DHGJSVCS.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "RG525W32DHGJSVCS.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m2.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "3M86JWNYP8BSN55W" : { - "3M86JWNYP8BSN55W.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "3M86JWNYP8BSN55W", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3M86JWNYP8BSN55W.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "3M86JWNYP8BSN55W.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2147" - }, - "appliesTo" : [ ] - }, - "3M86JWNYP8BSN55W.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "3M86JWNYP8BSN55W.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "3M86JWNYP8BSN55W.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "3M86JWNYP8BSN55W", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3M86JWNYP8BSN55W.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "3M86JWNYP8BSN55W.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "947" - }, - "appliesTo" : [ ] - }, - "3M86JWNYP8BSN55W.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "3M86JWNYP8BSN55W.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3M86JWNYP8BSN55W.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "3M86JWNYP8BSN55W", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3M86JWNYP8BSN55W.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "3M86JWNYP8BSN55W.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "3M86JWNYP8BSN55W.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "3M86JWNYP8BSN55W", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "3M86JWNYP8BSN55W.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "3M86JWNYP8BSN55W.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1438" - }, - "appliesTo" : [ ] - }, - "3M86JWNYP8BSN55W.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "3M86JWNYP8BSN55W.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "3M86JWNYP8BSN55W.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "3M86JWNYP8BSN55W", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "3M86JWNYP8BSN55W.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "3M86JWNYP8BSN55W.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4414" - }, - "appliesTo" : [ ] - }, - "3M86JWNYP8BSN55W.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "3M86JWNYP8BSN55W.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "7XDBWG89WM5JF367" : { - "7XDBWG89WM5JF367.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "7XDBWG89WM5JF367", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "7XDBWG89WM5JF367.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "7XDBWG89WM5JF367.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.0510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7XDBWG89WM5JF367.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "7XDBWG89WM5JF367", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7XDBWG89WM5JF367.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "7XDBWG89WM5JF367.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.1890000000" - }, - "appliesTo" : [ ] - }, - "7XDBWG89WM5JF367.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "7XDBWG89WM5JF367.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "62974" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7XDBWG89WM5JF367.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "7XDBWG89WM5JF367", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "7XDBWG89WM5JF367.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "7XDBWG89WM5JF367.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "345543" - }, - "appliesTo" : [ ] - }, - "7XDBWG89WM5JF367.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "7XDBWG89WM5JF367.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7XDBWG89WM5JF367.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "7XDBWG89WM5JF367", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "7XDBWG89WM5JF367.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "7XDBWG89WM5JF367.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.4060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7XDBWG89WM5JF367.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "7XDBWG89WM5JF367", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "7XDBWG89WM5JF367.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "7XDBWG89WM5JF367.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.9440000000" - }, - "appliesTo" : [ ] - }, - "7XDBWG89WM5JF367.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "7XDBWG89WM5JF367.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "60830" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7XDBWG89WM5JF367.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "7XDBWG89WM5JF367", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7XDBWG89WM5JF367.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "7XDBWG89WM5JF367.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "125290" - }, - "appliesTo" : [ ] - }, - "7XDBWG89WM5JF367.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "7XDBWG89WM5JF367.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7XDBWG89WM5JF367.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "7XDBWG89WM5JF367", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "7XDBWG89WM5JF367.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "7XDBWG89WM5JF367.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.0430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7XDBWG89WM5JF367.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "7XDBWG89WM5JF367", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "7XDBWG89WM5JF367.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "7XDBWG89WM5JF367.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "334534" - }, - "appliesTo" : [ ] - }, - "7XDBWG89WM5JF367.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "7XDBWG89WM5JF367.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7XDBWG89WM5JF367.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "7XDBWG89WM5JF367", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "7XDBWG89WM5JF367.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "7XDBWG89WM5JF367.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "7XDBWG89WM5JF367.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "7XDBWG89WM5JF367.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "121087" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7XDBWG89WM5JF367.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "7XDBWG89WM5JF367", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "7XDBWG89WM5JF367.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "7XDBWG89WM5JF367.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "169033" - }, - "appliesTo" : [ ] - }, - "7XDBWG89WM5JF367.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "7XDBWG89WM5JF367.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.4320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7XDBWG89WM5JF367.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "7XDBWG89WM5JF367", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "7XDBWG89WM5JF367.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "7XDBWG89WM5JF367.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "173448" - }, - "appliesTo" : [ ] - }, - "7XDBWG89WM5JF367.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "7XDBWG89WM5JF367.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.6000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7XDBWG89WM5JF367.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "7XDBWG89WM5JF367", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7XDBWG89WM5JF367.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "7XDBWG89WM5JF367.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), i3.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "14.5650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "6U6GZ2DN4RFCJ7D9" : { - "6U6GZ2DN4RFCJ7D9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6U6GZ2DN4RFCJ7D9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6U6GZ2DN4RFCJ7D9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6U6GZ2DN4RFCJ7D9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "438" - }, - "appliesTo" : [ ] - }, - "6U6GZ2DN4RFCJ7D9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6U6GZ2DN4RFCJ7D9.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6U6GZ2DN4RFCJ7D9.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "6U6GZ2DN4RFCJ7D9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6U6GZ2DN4RFCJ7D9.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "6U6GZ2DN4RFCJ7D9.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6U6GZ2DN4RFCJ7D9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6U6GZ2DN4RFCJ7D9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6U6GZ2DN4RFCJ7D9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6U6GZ2DN4RFCJ7D9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "815" - }, - "appliesTo" : [ ] - }, - "6U6GZ2DN4RFCJ7D9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6U6GZ2DN4RFCJ7D9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6U6GZ2DN4RFCJ7D9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6U6GZ2DN4RFCJ7D9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6U6GZ2DN4RFCJ7D9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6U6GZ2DN4RFCJ7D9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "433" - }, - "appliesTo" : [ ] - }, - "6U6GZ2DN4RFCJ7D9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6U6GZ2DN4RFCJ7D9.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6U6GZ2DN4RFCJ7D9.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "6U6GZ2DN4RFCJ7D9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6U6GZ2DN4RFCJ7D9.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "6U6GZ2DN4RFCJ7D9.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "499" - }, - "appliesTo" : [ ] - }, - "6U6GZ2DN4RFCJ7D9.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "6U6GZ2DN4RFCJ7D9.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6U6GZ2DN4RFCJ7D9.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "6U6GZ2DN4RFCJ7D9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6U6GZ2DN4RFCJ7D9.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "6U6GZ2DN4RFCJ7D9.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "979" - }, - "appliesTo" : [ ] - }, - "6U6GZ2DN4RFCJ7D9.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "6U6GZ2DN4RFCJ7D9.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6U6GZ2DN4RFCJ7D9.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "6U6GZ2DN4RFCJ7D9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6U6GZ2DN4RFCJ7D9.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "6U6GZ2DN4RFCJ7D9.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6U6GZ2DN4RFCJ7D9.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "6U6GZ2DN4RFCJ7D9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6U6GZ2DN4RFCJ7D9.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "6U6GZ2DN4RFCJ7D9.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "257" - }, - "appliesTo" : [ ] - }, - "6U6GZ2DN4RFCJ7D9.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "6U6GZ2DN4RFCJ7D9.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6U6GZ2DN4RFCJ7D9.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "6U6GZ2DN4RFCJ7D9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6U6GZ2DN4RFCJ7D9.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "6U6GZ2DN4RFCJ7D9.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "6U6GZ2DN4RFCJ7D9.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "6U6GZ2DN4RFCJ7D9.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "503" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6U6GZ2DN4RFCJ7D9.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "6U6GZ2DN4RFCJ7D9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6U6GZ2DN4RFCJ7D9.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "6U6GZ2DN4RFCJ7D9.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6U6GZ2DN4RFCJ7D9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6U6GZ2DN4RFCJ7D9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6U6GZ2DN4RFCJ7D9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6U6GZ2DN4RFCJ7D9.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6U6GZ2DN4RFCJ7D9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6U6GZ2DN4RFCJ7D9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6U6GZ2DN4RFCJ7D9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6U6GZ2DN4RFCJ7D9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "223" - }, - "appliesTo" : [ ] - }, - "6U6GZ2DN4RFCJ7D9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6U6GZ2DN4RFCJ7D9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "KC3PFUW2U3T5RRSR" : { - "KC3PFUW2U3T5RRSR.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "KC3PFUW2U3T5RRSR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KC3PFUW2U3T5RRSR.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "KC3PFUW2U3T5RRSR.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.4010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KC3PFUW2U3T5RRSR.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "KC3PFUW2U3T5RRSR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KC3PFUW2U3T5RRSR.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "KC3PFUW2U3T5RRSR.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "52342" - }, - "appliesTo" : [ ] - }, - "KC3PFUW2U3T5RRSR.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "KC3PFUW2U3T5RRSR.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.9750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KC3PFUW2U3T5RRSR.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "KC3PFUW2U3T5RRSR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KC3PFUW2U3T5RRSR.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "KC3PFUW2U3T5RRSR.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4580000000" - }, - "appliesTo" : [ ] - }, - "KC3PFUW2U3T5RRSR.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "KC3PFUW2U3T5RRSR.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "90873" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KC3PFUW2U3T5RRSR.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "KC3PFUW2U3T5RRSR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KC3PFUW2U3T5RRSR.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "KC3PFUW2U3T5RRSR.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "93021" - }, - "appliesTo" : [ ] - }, - "KC3PFUW2U3T5RRSR.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "KC3PFUW2U3T5RRSR.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KC3PFUW2U3T5RRSR.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "KC3PFUW2U3T5RRSR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KC3PFUW2U3T5RRSR.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "KC3PFUW2U3T5RRSR.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "98702" - }, - "appliesTo" : [ ] - }, - "KC3PFUW2U3T5RRSR.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "KC3PFUW2U3T5RRSR.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KC3PFUW2U3T5RRSR.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "KC3PFUW2U3T5RRSR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KC3PFUW2U3T5RRSR.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "KC3PFUW2U3T5RRSR.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "103106" - }, - "appliesTo" : [ ] - }, - "KC3PFUW2U3T5RRSR.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "KC3PFUW2U3T5RRSR.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KC3PFUW2U3T5RRSR.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "KC3PFUW2U3T5RRSR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KC3PFUW2U3T5RRSR.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "KC3PFUW2U3T5RRSR.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "KC3PFUW2U3T5RRSR.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "KC3PFUW2U3T5RRSR.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "175484" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KC3PFUW2U3T5RRSR.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "KC3PFUW2U3T5RRSR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KC3PFUW2U3T5RRSR.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "KC3PFUW2U3T5RRSR.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.2340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KC3PFUW2U3T5RRSR.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "KC3PFUW2U3T5RRSR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KC3PFUW2U3T5RRSR.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "KC3PFUW2U3T5RRSR.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.8770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KC3PFUW2U3T5RRSR.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "KC3PFUW2U3T5RRSR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KC3PFUW2U3T5RRSR.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "KC3PFUW2U3T5RRSR.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "195003" - }, - "appliesTo" : [ ] - }, - "KC3PFUW2U3T5RRSR.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "KC3PFUW2U3T5RRSR.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KC3PFUW2U3T5RRSR.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "KC3PFUW2U3T5RRSR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KC3PFUW2U3T5RRSR.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "KC3PFUW2U3T5RRSR.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47197" - }, - "appliesTo" : [ ] - }, - "KC3PFUW2U3T5RRSR.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "KC3PFUW2U3T5RRSR.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.3880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KC3PFUW2U3T5RRSR.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "KC3PFUW2U3T5RRSR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KC3PFUW2U3T5RRSR.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "KC3PFUW2U3T5RRSR.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), x1e.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "11.1670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "Z73VPF4R8N955QMR" : { - "Z73VPF4R8N955QMR.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Z73VPF4R8N955QMR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z73VPF4R8N955QMR.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Z73VPF4R8N955QMR.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3440000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Z73VPF4R8N955QMR.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "Z73VPF4R8N955QMR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z73VPF4R8N955QMR.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "Z73VPF4R8N955QMR.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6447" - }, - "appliesTo" : [ ] - }, - "Z73VPF4R8N955QMR.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "Z73VPF4R8N955QMR.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z73VPF4R8N955QMR.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "Z73VPF4R8N955QMR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z73VPF4R8N955QMR.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "Z73VPF4R8N955QMR.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5456000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Z73VPF4R8N955QMR.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "Z73VPF4R8N955QMR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z73VPF4R8N955QMR.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "Z73VPF4R8N955QMR.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25116" - }, - "appliesTo" : [ ] - }, - "Z73VPF4R8N955QMR.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "Z73VPF4R8N955QMR.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Z73VPF4R8N955QMR.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "Z73VPF4R8N955QMR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z73VPF4R8N955QMR.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "Z73VPF4R8N955QMR.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9158000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Z73VPF4R8N955QMR.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "Z73VPF4R8N955QMR", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Z73VPF4R8N955QMR.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "Z73VPF4R8N955QMR.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "Z73VPF4R8N955QMR.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "Z73VPF4R8N955QMR.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12637" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Z73VPF4R8N955QMR.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Z73VPF4R8N955QMR", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "Z73VPF4R8N955QMR.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Z73VPF4R8N955QMR.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5592" - }, - "appliesTo" : [ ] - }, - "Z73VPF4R8N955QMR.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Z73VPF4R8N955QMR.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z73VPF4R8N955QMR.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Z73VPF4R8N955QMR", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "Z73VPF4R8N955QMR.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Z73VPF4R8N955QMR.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11185" - }, - "appliesTo" : [ ] - }, - "Z73VPF4R8N955QMR.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Z73VPF4R8N955QMR.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z73VPF4R8N955QMR.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "Z73VPF4R8N955QMR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z73VPF4R8N955QMR.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "Z73VPF4R8N955QMR.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12814" - }, - "appliesTo" : [ ] - }, - "Z73VPF4R8N955QMR.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "Z73VPF4R8N955QMR.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4876000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Z73VPF4R8N955QMR.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Z73VPF4R8N955QMR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z73VPF4R8N955QMR.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Z73VPF4R8N955QMR.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21027" - }, - "appliesTo" : [ ] - }, - "Z73VPF4R8N955QMR.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Z73VPF4R8N955QMR.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Z73VPF4R8N955QMR.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Z73VPF4R8N955QMR", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "Z73VPF4R8N955QMR.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Z73VPF4R8N955QMR.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "Z73VPF4R8N955QMR.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Z73VPF4R8N955QMR.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10961" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Z73VPF4R8N955QMR.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "Z73VPF4R8N955QMR", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Z73VPF4R8N955QMR.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "Z73VPF4R8N955QMR.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), r4.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0532000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "7SE3X65CKC25URNP" : { - "7SE3X65CKC25URNP.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "7SE3X65CKC25URNP", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "7SE3X65CKC25URNP.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "7SE3X65CKC25URNP.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "7SE3X65CKC25URNP.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "7SE3X65CKC25URNP.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "96953" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7SE3X65CKC25URNP.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "7SE3X65CKC25URNP", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "7SE3X65CKC25URNP.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "7SE3X65CKC25URNP.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47469" - }, - "appliesTo" : [ ] - }, - "7SE3X65CKC25URNP.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "7SE3X65CKC25URNP.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7SE3X65CKC25URNP.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "7SE3X65CKC25URNP", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "7SE3X65CKC25URNP.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "7SE3X65CKC25URNP.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "94552" - }, - "appliesTo" : [ ] - }, - "7SE3X65CKC25URNP.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "7SE3X65CKC25URNP.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7SE3X65CKC25URNP.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "7SE3X65CKC25URNP", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "7SE3X65CKC25URNP.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "7SE3X65CKC25URNP.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "48562" - }, - "appliesTo" : [ ] - }, - "7SE3X65CKC25URNP.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "7SE3X65CKC25URNP.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7SE3X65CKC25URNP.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "7SE3X65CKC25URNP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7SE3X65CKC25URNP.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "7SE3X65CKC25URNP.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "7SE3X65CKC25URNP.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "7SE3X65CKC25URNP.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33074" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7SE3X65CKC25URNP.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "7SE3X65CKC25URNP", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "7SE3X65CKC25URNP.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "7SE3X65CKC25URNP.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7SE3X65CKC25URNP.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "7SE3X65CKC25URNP", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "7SE3X65CKC25URNP.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "7SE3X65CKC25URNP.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7SE3X65CKC25URNP.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "7SE3X65CKC25URNP", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "7SE3X65CKC25URNP.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "7SE3X65CKC25URNP.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16347" - }, - "appliesTo" : [ ] - }, - "7SE3X65CKC25URNP.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "7SE3X65CKC25URNP.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7SE3X65CKC25URNP.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "7SE3X65CKC25URNP", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "7SE3X65CKC25URNP.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "7SE3X65CKC25URNP.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32630" - }, - "appliesTo" : [ ] - }, - "7SE3X65CKC25URNP.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "7SE3X65CKC25URNP.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7SE3X65CKC25URNP.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "7SE3X65CKC25URNP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7SE3X65CKC25URNP.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "7SE3X65CKC25URNP.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16574" - }, - "appliesTo" : [ ] - }, - "7SE3X65CKC25URNP.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "7SE3X65CKC25URNP.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7SE3X65CKC25URNP.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "7SE3X65CKC25URNP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7SE3X65CKC25URNP.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "7SE3X65CKC25URNP.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), m3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "P2X5CCNUGDNQVXV2" : { - "P2X5CCNUGDNQVXV2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "P2X5CCNUGDNQVXV2", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "P2X5CCNUGDNQVXV2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "P2X5CCNUGDNQVXV2.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "P2X5CCNUGDNQVXV2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "P2X5CCNUGDNQVXV2", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "P2X5CCNUGDNQVXV2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "P2X5CCNUGDNQVXV2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37843" - }, - "appliesTo" : [ ] - }, - "P2X5CCNUGDNQVXV2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "P2X5CCNUGDNQVXV2.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "P2X5CCNUGDNQVXV2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "P2X5CCNUGDNQVXV2", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "P2X5CCNUGDNQVXV2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "P2X5CCNUGDNQVXV2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27542" - }, - "appliesTo" : [ ] - }, - "P2X5CCNUGDNQVXV2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "P2X5CCNUGDNQVXV2.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "P2X5CCNUGDNQVXV2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "P2X5CCNUGDNQVXV2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "P2X5CCNUGDNQVXV2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "P2X5CCNUGDNQVXV2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "71145" - }, - "appliesTo" : [ ] - }, - "P2X5CCNUGDNQVXV2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "P2X5CCNUGDNQVXV2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "P2X5CCNUGDNQVXV2.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "P2X5CCNUGDNQVXV2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "P2X5CCNUGDNQVXV2.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "P2X5CCNUGDNQVXV2.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33031" - }, - "appliesTo" : [ ] - }, - "P2X5CCNUGDNQVXV2.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "P2X5CCNUGDNQVXV2.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9110000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "P2X5CCNUGDNQVXV2.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "P2X5CCNUGDNQVXV2", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "P2X5CCNUGDNQVXV2.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "P2X5CCNUGDNQVXV2.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "P2X5CCNUGDNQVXV2.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "P2X5CCNUGDNQVXV2", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "P2X5CCNUGDNQVXV2.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "P2X5CCNUGDNQVXV2.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "81583" - }, - "appliesTo" : [ ] - }, - "P2X5CCNUGDNQVXV2.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "P2X5CCNUGDNQVXV2.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "P2X5CCNUGDNQVXV2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "P2X5CCNUGDNQVXV2", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "P2X5CCNUGDNQVXV2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "P2X5CCNUGDNQVXV2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11241" - }, - "appliesTo" : [ ] - }, - "P2X5CCNUGDNQVXV2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "P2X5CCNUGDNQVXV2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), g2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "XTPNAJDDCCQR3XRZ" : { - "XTPNAJDDCCQR3XRZ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "XTPNAJDDCCQR3XRZ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "XTPNAJDDCCQR3XRZ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "XTPNAJDDCCQR3XRZ.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "XTPNAJDDCCQR3XRZ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "XTPNAJDDCCQR3XRZ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10126" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XTPNAJDDCCQR3XRZ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XTPNAJDDCCQR3XRZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XTPNAJDDCCQR3XRZ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XTPNAJDDCCQR3XRZ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XTPNAJDDCCQR3XRZ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "XTPNAJDDCCQR3XRZ", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "XTPNAJDDCCQR3XRZ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "XTPNAJDDCCQR3XRZ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3872" - }, - "appliesTo" : [ ] - }, - "XTPNAJDDCCQR3XRZ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "XTPNAJDDCCQR3XRZ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XTPNAJDDCCQR3XRZ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XTPNAJDDCCQR3XRZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XTPNAJDDCCQR3XRZ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XTPNAJDDCCQR3XRZ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2234" - }, - "appliesTo" : [ ] - }, - "XTPNAJDDCCQR3XRZ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XTPNAJDDCCQR3XRZ.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2420000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XTPNAJDDCCQR3XRZ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XTPNAJDDCCQR3XRZ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "XTPNAJDDCCQR3XRZ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XTPNAJDDCCQR3XRZ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "XTPNAJDDCCQR3XRZ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XTPNAJDDCCQR3XRZ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8077" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XTPNAJDDCCQR3XRZ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "XTPNAJDDCCQR3XRZ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "XTPNAJDDCCQR3XRZ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "XTPNAJDDCCQR3XRZ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XTPNAJDDCCQR3XRZ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XTPNAJDDCCQR3XRZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XTPNAJDDCCQR3XRZ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XTPNAJDDCCQR3XRZ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "XTPNAJDDCCQR3XRZ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XTPNAJDDCCQR3XRZ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3614" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XTPNAJDDCCQR3XRZ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XTPNAJDDCCQR3XRZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XTPNAJDDCCQR3XRZ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XTPNAJDDCCQR3XRZ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1434" - }, - "appliesTo" : [ ] - }, - "XTPNAJDDCCQR3XRZ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XTPNAJDDCCQR3XRZ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XTPNAJDDCCQR3XRZ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "XTPNAJDDCCQR3XRZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XTPNAJDDCCQR3XRZ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "XTPNAJDDCCQR3XRZ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3884" - }, - "appliesTo" : [ ] - }, - "XTPNAJDDCCQR3XRZ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "XTPNAJDDCCQR3XRZ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XTPNAJDDCCQR3XRZ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "XTPNAJDDCCQR3XRZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XTPNAJDDCCQR3XRZ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "XTPNAJDDCCQR3XRZ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XTPNAJDDCCQR3XRZ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "XTPNAJDDCCQR3XRZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XTPNAJDDCCQR3XRZ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "XTPNAJDDCCQR3XRZ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2900000000" - }, - "appliesTo" : [ ] - }, - "XTPNAJDDCCQR3XRZ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "XTPNAJDDCCQR3XRZ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1401" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "KAZBRUMA5WBV7S69" : { - "KAZBRUMA5WBV7S69.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "KAZBRUMA5WBV7S69", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KAZBRUMA5WBV7S69.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "KAZBRUMA5WBV7S69.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4675000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KAZBRUMA5WBV7S69.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "KAZBRUMA5WBV7S69", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KAZBRUMA5WBV7S69.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "KAZBRUMA5WBV7S69.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1992" - }, - "appliesTo" : [ ] - }, - "KAZBRUMA5WBV7S69.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "KAZBRUMA5WBV7S69.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2274000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KAZBRUMA5WBV7S69.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "KAZBRUMA5WBV7S69", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "KAZBRUMA5WBV7S69.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "KAZBRUMA5WBV7S69.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2110000000" - }, - "appliesTo" : [ ] - }, - "KAZBRUMA5WBV7S69.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "KAZBRUMA5WBV7S69.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1848" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KAZBRUMA5WBV7S69.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "KAZBRUMA5WBV7S69", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "KAZBRUMA5WBV7S69.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "KAZBRUMA5WBV7S69.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KAZBRUMA5WBV7S69.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "KAZBRUMA5WBV7S69", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "KAZBRUMA5WBV7S69.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "KAZBRUMA5WBV7S69.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3634000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KAZBRUMA5WBV7S69.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "KAZBRUMA5WBV7S69", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "KAZBRUMA5WBV7S69.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "KAZBRUMA5WBV7S69.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4911" - }, - "appliesTo" : [ ] - }, - "KAZBRUMA5WBV7S69.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "KAZBRUMA5WBV7S69.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1869000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "KAZBRUMA5WBV7S69.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "KAZBRUMA5WBV7S69", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "KAZBRUMA5WBV7S69.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "KAZBRUMA5WBV7S69.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9003" - }, - "appliesTo" : [ ] - }, - "KAZBRUMA5WBV7S69.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "KAZBRUMA5WBV7S69.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KAZBRUMA5WBV7S69.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "KAZBRUMA5WBV7S69", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "KAZBRUMA5WBV7S69.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "KAZBRUMA5WBV7S69.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3874000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "KAZBRUMA5WBV7S69.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "KAZBRUMA5WBV7S69", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "KAZBRUMA5WBV7S69.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "KAZBRUMA5WBV7S69.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3940" - }, - "appliesTo" : [ ] - }, - "KAZBRUMA5WBV7S69.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "KAZBRUMA5WBV7S69.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KAZBRUMA5WBV7S69.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "KAZBRUMA5WBV7S69", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "KAZBRUMA5WBV7S69.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "KAZBRUMA5WBV7S69.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9732" - }, - "appliesTo" : [ ] - }, - "KAZBRUMA5WBV7S69.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "KAZBRUMA5WBV7S69.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "KAZBRUMA5WBV7S69.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "KAZBRUMA5WBV7S69", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "KAZBRUMA5WBV7S69.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "KAZBRUMA5WBV7S69.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3658" - }, - "appliesTo" : [ ] - }, - "KAZBRUMA5WBV7S69.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "KAZBRUMA5WBV7S69.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KAZBRUMA5WBV7S69.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "KAZBRUMA5WBV7S69", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "KAZBRUMA5WBV7S69.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "KAZBRUMA5WBV7S69.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4618" - }, - "appliesTo" : [ ] - }, - "KAZBRUMA5WBV7S69.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "KAZBRUMA5WBV7S69.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), t2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1757000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "W2C299XDDHK5Q5HK" : { - "W2C299XDDHK5Q5HK.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "W2C299XDDHK5Q5HK", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "W2C299XDDHK5Q5HK.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "W2C299XDDHK5Q5HK.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "W2C299XDDHK5Q5HK.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "W2C299XDDHK5Q5HK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W2C299XDDHK5Q5HK.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "W2C299XDDHK5Q5HK.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14619" - }, - "appliesTo" : [ ] - }, - "W2C299XDDHK5Q5HK.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "W2C299XDDHK5Q5HK.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "W2C299XDDHK5Q5HK.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "W2C299XDDHK5Q5HK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W2C299XDDHK5Q5HK.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "W2C299XDDHK5Q5HK.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "W2C299XDDHK5Q5HK.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "W2C299XDDHK5Q5HK", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "W2C299XDDHK5Q5HK.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "W2C299XDDHK5Q5HK.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39312" - }, - "appliesTo" : [ ] - }, - "W2C299XDDHK5Q5HK.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "W2C299XDDHK5Q5HK.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "W2C299XDDHK5Q5HK.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "W2C299XDDHK5Q5HK", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "W2C299XDDHK5Q5HK.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "W2C299XDDHK5Q5HK.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "W2C299XDDHK5Q5HK.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "W2C299XDDHK5Q5HK", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "W2C299XDDHK5Q5HK.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "W2C299XDDHK5Q5HK.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "45900" - }, - "appliesTo" : [ ] - }, - "W2C299XDDHK5Q5HK.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "W2C299XDDHK5Q5HK.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "W2C299XDDHK5Q5HK.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "W2C299XDDHK5Q5HK", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "W2C299XDDHK5Q5HK.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "W2C299XDDHK5Q5HK.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21920" - }, - "appliesTo" : [ ] - }, - "W2C299XDDHK5Q5HK.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "W2C299XDDHK5Q5HK.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0240000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "W2C299XDDHK5Q5HK.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "W2C299XDDHK5Q5HK", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "W2C299XDDHK5Q5HK.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "W2C299XDDHK5Q5HK.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14560" - }, - "appliesTo" : [ ] - }, - "W2C299XDDHK5Q5HK.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "W2C299XDDHK5Q5HK.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "W2C299XDDHK5Q5HK.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "W2C299XDDHK5Q5HK", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "W2C299XDDHK5Q5HK.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "W2C299XDDHK5Q5HK.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25446" - }, - "appliesTo" : [ ] - }, - "W2C299XDDHK5Q5HK.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "W2C299XDDHK5Q5HK.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "W2C299XDDHK5Q5HK.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "W2C299XDDHK5Q5HK", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "W2C299XDDHK5Q5HK.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "W2C299XDDHK5Q5HK.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "68859" - }, - "appliesTo" : [ ] - }, - "W2C299XDDHK5Q5HK.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "W2C299XDDHK5Q5HK.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "W2C299XDDHK5Q5HK.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "W2C299XDDHK5Q5HK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "W2C299XDDHK5Q5HK.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "W2C299XDDHK5Q5HK.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "W2C299XDDHK5Q5HK.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "W2C299XDDHK5Q5HK.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29793" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "VZB4MZEV7XEAF6US" : { - "VZB4MZEV7XEAF6US.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "VZB4MZEV7XEAF6US", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "VZB4MZEV7XEAF6US.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "VZB4MZEV7XEAF6US.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9121" - }, - "appliesTo" : [ ] - }, - "VZB4MZEV7XEAF6US.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "VZB4MZEV7XEAF6US.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VZB4MZEV7XEAF6US.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "VZB4MZEV7XEAF6US", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VZB4MZEV7XEAF6US.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "VZB4MZEV7XEAF6US.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6109000000" - }, - "appliesTo" : [ ] - }, - "VZB4MZEV7XEAF6US.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "VZB4MZEV7XEAF6US.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5352" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VZB4MZEV7XEAF6US.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "VZB4MZEV7XEAF6US", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VZB4MZEV7XEAF6US.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "VZB4MZEV7XEAF6US.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VZB4MZEV7XEAF6US.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "VZB4MZEV7XEAF6US", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VZB4MZEV7XEAF6US.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "VZB4MZEV7XEAF6US.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22583" - }, - "appliesTo" : [ ] - }, - "VZB4MZEV7XEAF6US.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "VZB4MZEV7XEAF6US.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "VZB4MZEV7XEAF6US.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "VZB4MZEV7XEAF6US", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VZB4MZEV7XEAF6US.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "VZB4MZEV7XEAF6US.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11522" - }, - "appliesTo" : [ ] - }, - "VZB4MZEV7XEAF6US.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "VZB4MZEV7XEAF6US.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4384000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "VZB4MZEV7XEAF6US.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "VZB4MZEV7XEAF6US", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "VZB4MZEV7XEAF6US.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "VZB4MZEV7XEAF6US.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10019" - }, - "appliesTo" : [ ] - }, - "VZB4MZEV7XEAF6US.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "VZB4MZEV7XEAF6US.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VZB4MZEV7XEAF6US.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "VZB4MZEV7XEAF6US", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VZB4MZEV7XEAF6US.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "VZB4MZEV7XEAF6US.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "VZB4MZEV7XEAF6US.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "VZB4MZEV7XEAF6US", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "VZB4MZEV7XEAF6US.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "VZB4MZEV7XEAF6US.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18836" - }, - "appliesTo" : [ ] - }, - "VZB4MZEV7XEAF6US.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "VZB4MZEV7XEAF6US.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "VZB4MZEV7XEAF6US.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "VZB4MZEV7XEAF6US", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "VZB4MZEV7XEAF6US.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "VZB4MZEV7XEAF6US.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8235000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VZB4MZEV7XEAF6US.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "VZB4MZEV7XEAF6US", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "VZB4MZEV7XEAF6US.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "VZB4MZEV7XEAF6US.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "VZB4MZEV7XEAF6US.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "VZB4MZEV7XEAF6US", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "VZB4MZEV7XEAF6US.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "VZB4MZEV7XEAF6US.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4654" - }, - "appliesTo" : [ ] - }, - "VZB4MZEV7XEAF6US.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "VZB4MZEV7XEAF6US.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "VZB4MZEV7XEAF6US.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "VZB4MZEV7XEAF6US", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "VZB4MZEV7XEAF6US.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "VZB4MZEV7XEAF6US.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), f1.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "VZB4MZEV7XEAF6US.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "VZB4MZEV7XEAF6US.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10489" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "GEDBVWHPGWMPYFMC" : { - "GEDBVWHPGWMPYFMC.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "GEDBVWHPGWMPYFMC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GEDBVWHPGWMPYFMC.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "GEDBVWHPGWMPYFMC.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "GEDBVWHPGWMPYFMC.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "GEDBVWHPGWMPYFMC", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "GEDBVWHPGWMPYFMC.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "GEDBVWHPGWMPYFMC.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1093" - }, - "appliesTo" : [ ] - }, - "GEDBVWHPGWMPYFMC.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "GEDBVWHPGWMPYFMC.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GEDBVWHPGWMPYFMC.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "GEDBVWHPGWMPYFMC", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "GEDBVWHPGWMPYFMC.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "GEDBVWHPGWMPYFMC.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "GEDBVWHPGWMPYFMC.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "GEDBVWHPGWMPYFMC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GEDBVWHPGWMPYFMC.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "GEDBVWHPGWMPYFMC.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "GEDBVWHPGWMPYFMC.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "GEDBVWHPGWMPYFMC.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1248" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "GEDBVWHPGWMPYFMC.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "GEDBVWHPGWMPYFMC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GEDBVWHPGWMPYFMC.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "GEDBVWHPGWMPYFMC.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2066" - }, - "appliesTo" : [ ] - }, - "GEDBVWHPGWMPYFMC.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "GEDBVWHPGWMPYFMC.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "GEDBVWHPGWMPYFMC.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "GEDBVWHPGWMPYFMC", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "GEDBVWHPGWMPYFMC.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "GEDBVWHPGWMPYFMC.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2951" - }, - "appliesTo" : [ ] - }, - "GEDBVWHPGWMPYFMC.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "GEDBVWHPGWMPYFMC.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "GEDBVWHPGWMPYFMC.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "GEDBVWHPGWMPYFMC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GEDBVWHPGWMPYFMC.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "GEDBVWHPGWMPYFMC.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1016" - }, - "appliesTo" : [ ] - }, - "GEDBVWHPGWMPYFMC.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "GEDBVWHPGWMPYFMC.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GEDBVWHPGWMPYFMC.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "GEDBVWHPGWMPYFMC", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "GEDBVWHPGWMPYFMC.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "GEDBVWHPGWMPYFMC.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1760" - }, - "appliesTo" : [ ] - }, - "GEDBVWHPGWMPYFMC.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "GEDBVWHPGWMPYFMC.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GEDBVWHPGWMPYFMC.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "GEDBVWHPGWMPYFMC", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "GEDBVWHPGWMPYFMC.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "GEDBVWHPGWMPYFMC.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0530000000" - }, - "appliesTo" : [ ] - }, - "GEDBVWHPGWMPYFMC.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "GEDBVWHPGWMPYFMC.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "652" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "GEDBVWHPGWMPYFMC.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "GEDBVWHPGWMPYFMC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GEDBVWHPGWMPYFMC.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "GEDBVWHPGWMPYFMC.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "637" - }, - "appliesTo" : [ ] - }, - "GEDBVWHPGWMPYFMC.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "GEDBVWHPGWMPYFMC.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "GEDBVWHPGWMPYFMC.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "GEDBVWHPGWMPYFMC", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "GEDBVWHPGWMPYFMC.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "GEDBVWHPGWMPYFMC.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "D8HDF78JFRVMSXZK" : { - "D8HDF78JFRVMSXZK.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "D8HDF78JFRVMSXZK", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "D8HDF78JFRVMSXZK.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "D8HDF78JFRVMSXZK.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.0930000000" - }, - "appliesTo" : [ ] - }, - "D8HDF78JFRVMSXZK.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "D8HDF78JFRVMSXZK.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35850" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "D8HDF78JFRVMSXZK.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "D8HDF78JFRVMSXZK", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "D8HDF78JFRVMSXZK.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "D8HDF78JFRVMSXZK.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "71015" - }, - "appliesTo" : [ ] - }, - "D8HDF78JFRVMSXZK.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "D8HDF78JFRVMSXZK.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "D8HDF78JFRVMSXZK.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "D8HDF78JFRVMSXZK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "D8HDF78JFRVMSXZK.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "D8HDF78JFRVMSXZK.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.4910000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "D8HDF78JFRVMSXZK.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "D8HDF78JFRVMSXZK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "D8HDF78JFRVMSXZK.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "D8HDF78JFRVMSXZK.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.1700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "D8HDF78JFRVMSXZK.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "D8HDF78JFRVMSXZK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "D8HDF78JFRVMSXZK.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "D8HDF78JFRVMSXZK.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "164594" - }, - "appliesTo" : [ ] - }, - "D8HDF78JFRVMSXZK.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "D8HDF78JFRVMSXZK.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "D8HDF78JFRVMSXZK.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "D8HDF78JFRVMSXZK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "D8HDF78JFRVMSXZK.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "D8HDF78JFRVMSXZK.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "74311" - }, - "appliesTo" : [ ] - }, - "D8HDF78JFRVMSXZK.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "D8HDF78JFRVMSXZK.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "D8HDF78JFRVMSXZK.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "D8HDF78JFRVMSXZK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "D8HDF78JFRVMSXZK.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "D8HDF78JFRVMSXZK.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.1360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "D8HDF78JFRVMSXZK.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "D8HDF78JFRVMSXZK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "D8HDF78JFRVMSXZK.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "D8HDF78JFRVMSXZK.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.7980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "D8HDF78JFRVMSXZK.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "D8HDF78JFRVMSXZK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "D8HDF78JFRVMSXZK.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "D8HDF78JFRVMSXZK.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37550" - }, - "appliesTo" : [ ] - }, - "D8HDF78JFRVMSXZK.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "D8HDF78JFRVMSXZK.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2870000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "D8HDF78JFRVMSXZK.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "D8HDF78JFRVMSXZK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "D8HDF78JFRVMSXZK.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "D8HDF78JFRVMSXZK.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "82897" - }, - "appliesTo" : [ ] - }, - "D8HDF78JFRVMSXZK.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "D8HDF78JFRVMSXZK.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "D8HDF78JFRVMSXZK.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "D8HDF78JFRVMSXZK", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "D8HDF78JFRVMSXZK.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "D8HDF78JFRVMSXZK.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "161278" - }, - "appliesTo" : [ ] - }, - "D8HDF78JFRVMSXZK.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "D8HDF78JFRVMSXZK.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "D8HDF78JFRVMSXZK.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "D8HDF78JFRVMSXZK", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "D8HDF78JFRVMSXZK.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "D8HDF78JFRVMSXZK.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "82204" - }, - "appliesTo" : [ ] - }, - "D8HDF78JFRVMSXZK.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "D8HDF78JFRVMSXZK.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.1280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "AXBKPP5M3DJRHZ89" : { - "AXBKPP5M3DJRHZ89.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "AXBKPP5M3DJRHZ89", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AXBKPP5M3DJRHZ89.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "AXBKPP5M3DJRHZ89.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "36978" - }, - "appliesTo" : [ ] - }, - "AXBKPP5M3DJRHZ89.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "AXBKPP5M3DJRHZ89.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AXBKPP5M3DJRHZ89.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "AXBKPP5M3DJRHZ89", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AXBKPP5M3DJRHZ89.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "AXBKPP5M3DJRHZ89.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18866" - }, - "appliesTo" : [ ] - }, - "AXBKPP5M3DJRHZ89.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "AXBKPP5M3DJRHZ89.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.1540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AXBKPP5M3DJRHZ89.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "AXBKPP5M3DJRHZ89", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AXBKPP5M3DJRHZ89.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "AXBKPP5M3DJRHZ89.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "AXBKPP5M3DJRHZ89.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "AXBKPP5M3DJRHZ89", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AXBKPP5M3DJRHZ89.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "AXBKPP5M3DJRHZ89.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "28704" - }, - "appliesTo" : [ ] - }, - "AXBKPP5M3DJRHZ89.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "AXBKPP5M3DJRHZ89.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0920000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AXBKPP5M3DJRHZ89.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "AXBKPP5M3DJRHZ89", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AXBKPP5M3DJRHZ89.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "AXBKPP5M3DJRHZ89.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "AXBKPP5M3DJRHZ89.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "AXBKPP5M3DJRHZ89", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AXBKPP5M3DJRHZ89.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "AXBKPP5M3DJRHZ89.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "53964" - }, - "appliesTo" : [ ] - }, - "AXBKPP5M3DJRHZ89.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "AXBKPP5M3DJRHZ89.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), x1e.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "Q5KJSQ8D6YCWXG4R" : { - "Q5KJSQ8D6YCWXG4R.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Q5KJSQ8D6YCWXG4R", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "Q5KJSQ8D6YCWXG4R.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Q5KJSQ8D6YCWXG4R.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "46454" - }, - "appliesTo" : [ ] - }, - "Q5KJSQ8D6YCWXG4R.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Q5KJSQ8D6YCWXG4R.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q5KJSQ8D6YCWXG4R.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "Q5KJSQ8D6YCWXG4R", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "Q5KJSQ8D6YCWXG4R.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "Q5KJSQ8D6YCWXG4R.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "94373" - }, - "appliesTo" : [ ] - }, - "Q5KJSQ8D6YCWXG4R.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "Q5KJSQ8D6YCWXG4R.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Q5KJSQ8D6YCWXG4R.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "Q5KJSQ8D6YCWXG4R", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "Q5KJSQ8D6YCWXG4R.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "Q5KJSQ8D6YCWXG4R.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47246" - }, - "appliesTo" : [ ] - }, - "Q5KJSQ8D6YCWXG4R.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "Q5KJSQ8D6YCWXG4R.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q5KJSQ8D6YCWXG4R.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Q5KJSQ8D6YCWXG4R", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "Q5KJSQ8D6YCWXG4R.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Q5KJSQ8D6YCWXG4R.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Q5KJSQ8D6YCWXG4R.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "Q5KJSQ8D6YCWXG4R", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "Q5KJSQ8D6YCWXG4R.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "Q5KJSQ8D6YCWXG4R.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Q5KJSQ8D6YCWXG4R.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Q5KJSQ8D6YCWXG4R", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "Q5KJSQ8D6YCWXG4R.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Q5KJSQ8D6YCWXG4R.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "Q5KJSQ8D6YCWXG4R.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Q5KJSQ8D6YCWXG4R.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31675" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Q5KJSQ8D6YCWXG4R.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Q5KJSQ8D6YCWXG4R", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "Q5KJSQ8D6YCWXG4R.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Q5KJSQ8D6YCWXG4R.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "92644" - }, - "appliesTo" : [ ] - }, - "Q5KJSQ8D6YCWXG4R.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Q5KJSQ8D6YCWXG4R.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Q5KJSQ8D6YCWXG4R.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Q5KJSQ8D6YCWXG4R", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "Q5KJSQ8D6YCWXG4R.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Q5KJSQ8D6YCWXG4R.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15860" - }, - "appliesTo" : [ ] - }, - "Q5KJSQ8D6YCWXG4R.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Q5KJSQ8D6YCWXG4R.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q5KJSQ8D6YCWXG4R.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "Q5KJSQ8D6YCWXG4R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q5KJSQ8D6YCWXG4R.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "Q5KJSQ8D6YCWXG4R.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8290000000" - }, - "appliesTo" : [ ] - }, - "Q5KJSQ8D6YCWXG4R.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "Q5KJSQ8D6YCWXG4R.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16025" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q5KJSQ8D6YCWXG4R.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "Q5KJSQ8D6YCWXG4R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q5KJSQ8D6YCWXG4R.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "Q5KJSQ8D6YCWXG4R.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "31999" - }, - "appliesTo" : [ ] - }, - "Q5KJSQ8D6YCWXG4R.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "Q5KJSQ8D6YCWXG4R.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Q5KJSQ8D6YCWXG4R.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "Q5KJSQ8D6YCWXG4R", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q5KJSQ8D6YCWXG4R.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "Q5KJSQ8D6YCWXG4R.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), c3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6730000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "J7QRRNJ6GRX8D5SH" : { - "J7QRRNJ6GRX8D5SH.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "J7QRRNJ6GRX8D5SH", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "J7QRRNJ6GRX8D5SH.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "J7QRRNJ6GRX8D5SH.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17893" - }, - "appliesTo" : [ ] - }, - "J7QRRNJ6GRX8D5SH.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "J7QRRNJ6GRX8D5SH.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "J7QRRNJ6GRX8D5SH.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "J7QRRNJ6GRX8D5SH", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "J7QRRNJ6GRX8D5SH.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "J7QRRNJ6GRX8D5SH.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "J7QRRNJ6GRX8D5SH.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "J7QRRNJ6GRX8D5SH", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "J7QRRNJ6GRX8D5SH.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "J7QRRNJ6GRX8D5SH.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4350000000" - }, - "appliesTo" : [ ] - }, - "J7QRRNJ6GRX8D5SH.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "J7QRRNJ6GRX8D5SH.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7618" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "J7QRRNJ6GRX8D5SH.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "J7QRRNJ6GRX8D5SH", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "J7QRRNJ6GRX8D5SH.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "J7QRRNJ6GRX8D5SH.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "20877" - }, - "appliesTo" : [ ] - }, - "J7QRRNJ6GRX8D5SH.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "J7QRRNJ6GRX8D5SH.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "J7QRRNJ6GRX8D5SH.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "J7QRRNJ6GRX8D5SH", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "J7QRRNJ6GRX8D5SH.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "J7QRRNJ6GRX8D5SH.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8440" - }, - "appliesTo" : [ ] - }, - "J7QRRNJ6GRX8D5SH.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "J7QRRNJ6GRX8D5SH.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4890000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "J7QRRNJ6GRX8D5SH.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "J7QRRNJ6GRX8D5SH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J7QRRNJ6GRX8D5SH.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "J7QRRNJ6GRX8D5SH.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6932" - }, - "appliesTo" : [ ] - }, - "J7QRRNJ6GRX8D5SH.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "J7QRRNJ6GRX8D5SH.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "J7QRRNJ6GRX8D5SH.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "J7QRRNJ6GRX8D5SH", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "J7QRRNJ6GRX8D5SH.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "J7QRRNJ6GRX8D5SH.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7116" - }, - "appliesTo" : [ ] - }, - "J7QRRNJ6GRX8D5SH.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "J7QRRNJ6GRX8D5SH.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "J7QRRNJ6GRX8D5SH.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "J7QRRNJ6GRX8D5SH", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "J7QRRNJ6GRX8D5SH.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "J7QRRNJ6GRX8D5SH.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2906" - }, - "appliesTo" : [ ] - }, - "J7QRRNJ6GRX8D5SH.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "J7QRRNJ6GRX8D5SH.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "J7QRRNJ6GRX8D5SH.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "J7QRRNJ6GRX8D5SH", - "effectiveDate" : "2015-05-31T23:59:59Z", - "priceDimensions" : { - "J7QRRNJ6GRX8D5SH.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "J7QRRNJ6GRX8D5SH.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "J7QRRNJ6GRX8D5SH.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "J7QRRNJ6GRX8D5SH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J7QRRNJ6GRX8D5SH.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "J7QRRNJ6GRX8D5SH.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3484" - }, - "appliesTo" : [ ] - }, - "J7QRRNJ6GRX8D5SH.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "J7QRRNJ6GRX8D5SH.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "J7QRRNJ6GRX8D5SH.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "J7QRRNJ6GRX8D5SH", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "J7QRRNJ6GRX8D5SH.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "J7QRRNJ6GRX8D5SH.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), m3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "HWHBVKY9RQMK67F9" : { - "HWHBVKY9RQMK67F9.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "HWHBVKY9RQMK67F9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HWHBVKY9RQMK67F9.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "HWHBVKY9RQMK67F9.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8085000000" - }, - "appliesTo" : [ ] - }, - "HWHBVKY9RQMK67F9.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "HWHBVKY9RQMK67F9.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5944" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HWHBVKY9RQMK67F9.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "HWHBVKY9RQMK67F9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HWHBVKY9RQMK67F9.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "HWHBVKY9RQMK67F9.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5549000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "HWHBVKY9RQMK67F9.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "HWHBVKY9RQMK67F9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HWHBVKY9RQMK67F9.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "HWHBVKY9RQMK67F9.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "HWHBVKY9RQMK67F9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "HWHBVKY9RQMK67F9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HWHBVKY9RQMK67F9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "HWHBVKY9RQMK67F9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "HWHBVKY9RQMK67F9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "HWHBVKY9RQMK67F9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23179" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HWHBVKY9RQMK67F9.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "HWHBVKY9RQMK67F9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HWHBVKY9RQMK67F9.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "HWHBVKY9RQMK67F9.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1236000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "HWHBVKY9RQMK67F9.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "HWHBVKY9RQMK67F9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HWHBVKY9RQMK67F9.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "HWHBVKY9RQMK67F9.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12089" - }, - "appliesTo" : [ ] - }, - "HWHBVKY9RQMK67F9.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "HWHBVKY9RQMK67F9.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "HWHBVKY9RQMK67F9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "HWHBVKY9RQMK67F9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HWHBVKY9RQMK67F9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "HWHBVKY9RQMK67F9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10512" - }, - "appliesTo" : [ ] - }, - "HWHBVKY9RQMK67F9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "HWHBVKY9RQMK67F9.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HWHBVKY9RQMK67F9.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "HWHBVKY9RQMK67F9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HWHBVKY9RQMK67F9.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "HWHBVKY9RQMK67F9.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27110" - }, - "appliesTo" : [ ] - }, - "HWHBVKY9RQMK67F9.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "HWHBVKY9RQMK67F9.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "HWHBVKY9RQMK67F9.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "HWHBVKY9RQMK67F9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "HWHBVKY9RQMK67F9.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "HWHBVKY9RQMK67F9.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12788" - }, - "appliesTo" : [ ] - }, - "HWHBVKY9RQMK67F9.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "HWHBVKY9RQMK67F9.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "HWHBVKY9RQMK67F9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "HWHBVKY9RQMK67F9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HWHBVKY9RQMK67F9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "HWHBVKY9RQMK67F9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5168" - }, - "appliesTo" : [ ] - }, - "HWHBVKY9RQMK67F9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "HWHBVKY9RQMK67F9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "HWHBVKY9RQMK67F9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "HWHBVKY9RQMK67F9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HWHBVKY9RQMK67F9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "HWHBVKY9RQMK67F9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11269" - }, - "appliesTo" : [ ] - }, - "HWHBVKY9RQMK67F9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "HWHBVKY9RQMK67F9.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "HWHBVKY9RQMK67F9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "HWHBVKY9RQMK67F9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "HWHBVKY9RQMK67F9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "HWHBVKY9RQMK67F9.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "7VJXKNKUWTYUUJDQ" : { - "7VJXKNKUWTYUUJDQ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "7VJXKNKUWTYUUJDQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7VJXKNKUWTYUUJDQ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "7VJXKNKUWTYUUJDQ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7334" - }, - "appliesTo" : [ ] - }, - "7VJXKNKUWTYUUJDQ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "7VJXKNKUWTYUUJDQ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8370000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7VJXKNKUWTYUUJDQ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "7VJXKNKUWTYUUJDQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7VJXKNKUWTYUUJDQ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "7VJXKNKUWTYUUJDQ.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7VJXKNKUWTYUUJDQ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "7VJXKNKUWTYUUJDQ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "7VJXKNKUWTYUUJDQ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "7VJXKNKUWTYUUJDQ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "7VJXKNKUWTYUUJDQ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "7VJXKNKUWTYUUJDQ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13411" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7VJXKNKUWTYUUJDQ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "7VJXKNKUWTYUUJDQ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7VJXKNKUWTYUUJDQ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "7VJXKNKUWTYUUJDQ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18133" - }, - "appliesTo" : [ ] - }, - "7VJXKNKUWTYUUJDQ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "7VJXKNKUWTYUUJDQ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7VJXKNKUWTYUUJDQ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "7VJXKNKUWTYUUJDQ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "7VJXKNKUWTYUUJDQ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "7VJXKNKUWTYUUJDQ.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6490000000" - }, - "appliesTo" : [ ] - }, - "7VJXKNKUWTYUUJDQ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "7VJXKNKUWTYUUJDQ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17050" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7VJXKNKUWTYUUJDQ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "7VJXKNKUWTYUUJDQ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7VJXKNKUWTYUUJDQ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "7VJXKNKUWTYUUJDQ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14503" - }, - "appliesTo" : [ ] - }, - "7VJXKNKUWTYUUJDQ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "7VJXKNKUWTYUUJDQ.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7VJXKNKUWTYUUJDQ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "7VJXKNKUWTYUUJDQ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "7VJXKNKUWTYUUJDQ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "7VJXKNKUWTYUUJDQ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33215" - }, - "appliesTo" : [ ] - }, - "7VJXKNKUWTYUUJDQ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "7VJXKNKUWTYUUJDQ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7VJXKNKUWTYUUJDQ.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "7VJXKNKUWTYUUJDQ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7VJXKNKUWTYUUJDQ.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "7VJXKNKUWTYUUJDQ.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7VJXKNKUWTYUUJDQ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "7VJXKNKUWTYUUJDQ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7VJXKNKUWTYUUJDQ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "7VJXKNKUWTYUUJDQ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7VJXKNKUWTYUUJDQ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "7VJXKNKUWTYUUJDQ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7VJXKNKUWTYUUJDQ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "7VJXKNKUWTYUUJDQ.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7VJXKNKUWTYUUJDQ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "7VJXKNKUWTYUUJDQ", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7VJXKNKUWTYUUJDQ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "7VJXKNKUWTYUUJDQ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35928" - }, - "appliesTo" : [ ] - }, - "7VJXKNKUWTYUUJDQ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "7VJXKNKUWTYUUJDQ.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7VJXKNKUWTYUUJDQ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "7VJXKNKUWTYUUJDQ", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "7VJXKNKUWTYUUJDQ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "7VJXKNKUWTYUUJDQ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6777" - }, - "appliesTo" : [ ] - }, - "7VJXKNKUWTYUUJDQ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "7VJXKNKUWTYUUJDQ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "ZA2GJ3U6RCX4Q6HE" : { - "ZA2GJ3U6RCX4Q6HE.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ZA2GJ3U6RCX4Q6HE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZA2GJ3U6RCX4Q6HE.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ZA2GJ3U6RCX4Q6HE.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZA2GJ3U6RCX4Q6HE.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ZA2GJ3U6RCX4Q6HE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZA2GJ3U6RCX4Q6HE.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ZA2GJ3U6RCX4Q6HE.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "690" - }, - "appliesTo" : [ ] - }, - "ZA2GJ3U6RCX4Q6HE.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ZA2GJ3U6RCX4Q6HE.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0720000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZA2GJ3U6RCX4Q6HE.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ZA2GJ3U6RCX4Q6HE", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "ZA2GJ3U6RCX4Q6HE.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ZA2GJ3U6RCX4Q6HE.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1160" - }, - "appliesTo" : [ ] - }, - "ZA2GJ3U6RCX4Q6HE.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ZA2GJ3U6RCX4Q6HE.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZA2GJ3U6RCX4Q6HE.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ZA2GJ3U6RCX4Q6HE", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "ZA2GJ3U6RCX4Q6HE.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ZA2GJ3U6RCX4Q6HE.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0480000000" - }, - "appliesTo" : [ ] - }, - "ZA2GJ3U6RCX4Q6HE.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ZA2GJ3U6RCX4Q6HE.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1274" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZA2GJ3U6RCX4Q6HE.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ZA2GJ3U6RCX4Q6HE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZA2GJ3U6RCX4Q6HE.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ZA2GJ3U6RCX4Q6HE.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1410" - }, - "appliesTo" : [ ] - }, - "ZA2GJ3U6RCX4Q6HE.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ZA2GJ3U6RCX4Q6HE.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ZA2GJ3U6RCX4Q6HE.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ZA2GJ3U6RCX4Q6HE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ZA2GJ3U6RCX4Q6HE.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ZA2GJ3U6RCX4Q6HE.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1297" - }, - "appliesTo" : [ ] - }, - "ZA2GJ3U6RCX4Q6HE.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ZA2GJ3U6RCX4Q6HE.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZA2GJ3U6RCX4Q6HE.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "ZA2GJ3U6RCX4Q6HE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZA2GJ3U6RCX4Q6HE.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "ZA2GJ3U6RCX4Q6HE.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZA2GJ3U6RCX4Q6HE.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ZA2GJ3U6RCX4Q6HE", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "ZA2GJ3U6RCX4Q6HE.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ZA2GJ3U6RCX4Q6HE.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ZA2GJ3U6RCX4Q6HE.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ZA2GJ3U6RCX4Q6HE.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2428" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ZA2GJ3U6RCX4Q6HE.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ZA2GJ3U6RCX4Q6HE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZA2GJ3U6RCX4Q6HE.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ZA2GJ3U6RCX4Q6HE.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ZA2GJ3U6RCX4Q6HE.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ZA2GJ3U6RCX4Q6HE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZA2GJ3U6RCX4Q6HE.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ZA2GJ3U6RCX4Q6HE.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2767" - }, - "appliesTo" : [ ] - }, - "ZA2GJ3U6RCX4Q6HE.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ZA2GJ3U6RCX4Q6HE.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ZA2GJ3U6RCX4Q6HE.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ZA2GJ3U6RCX4Q6HE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ZA2GJ3U6RCX4Q6HE.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ZA2GJ3U6RCX4Q6HE.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ZA2GJ3U6RCX4Q6HE.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ZA2GJ3U6RCX4Q6HE", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "ZA2GJ3U6RCX4Q6HE.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ZA2GJ3U6RCX4Q6HE.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "620" - }, - "appliesTo" : [ ] - }, - "ZA2GJ3U6RCX4Q6HE.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ZA2GJ3U6RCX4Q6HE.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "US4KNUGYQKAD8SVF" : { - "US4KNUGYQKAD8SVF.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "US4KNUGYQKAD8SVF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "US4KNUGYQKAD8SVF.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "US4KNUGYQKAD8SVF.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "68301" - }, - "appliesTo" : [ ] - }, - "US4KNUGYQKAD8SVF.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "US4KNUGYQKAD8SVF.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "US4KNUGYQKAD8SVF.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "US4KNUGYQKAD8SVF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "US4KNUGYQKAD8SVF.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "US4KNUGYQKAD8SVF.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34847" - }, - "appliesTo" : [ ] - }, - "US4KNUGYQKAD8SVF.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "US4KNUGYQKAD8SVF.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.9780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "US4KNUGYQKAD8SVF.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "US4KNUGYQKAD8SVF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "US4KNUGYQKAD8SVF.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "US4KNUGYQKAD8SVF.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.1780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "US4KNUGYQKAD8SVF.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "US4KNUGYQKAD8SVF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "US4KNUGYQKAD8SVF.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "US4KNUGYQKAD8SVF.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3230000000" - }, - "appliesTo" : [ ] - }, - "US4KNUGYQKAD8SVF.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "US4KNUGYQKAD8SVF.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "87333" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "US4KNUGYQKAD8SVF.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "US4KNUGYQKAD8SVF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "US4KNUGYQKAD8SVF.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "US4KNUGYQKAD8SVF.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "121854" - }, - "appliesTo" : [ ] - }, - "US4KNUGYQKAD8SVF.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "US4KNUGYQKAD8SVF.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "US4KNUGYQKAD8SVF.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "US4KNUGYQKAD8SVF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "US4KNUGYQKAD8SVF.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "US4KNUGYQKAD8SVF.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "64816" - }, - "appliesTo" : [ ] - }, - "US4KNUGYQKAD8SVF.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "US4KNUGYQKAD8SVF.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.4660000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "US4KNUGYQKAD8SVF.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "US4KNUGYQKAD8SVF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "US4KNUGYQKAD8SVF.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "US4KNUGYQKAD8SVF.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.3540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "US4KNUGYQKAD8SVF.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "US4KNUGYQKAD8SVF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "US4KNUGYQKAD8SVF.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "US4KNUGYQKAD8SVF.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "78598" - }, - "appliesTo" : [ ] - }, - "US4KNUGYQKAD8SVF.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "US4KNUGYQKAD8SVF.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "US4KNUGYQKAD8SVF.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "US4KNUGYQKAD8SVF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "US4KNUGYQKAD8SVF.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "US4KNUGYQKAD8SVF.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.6130000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "US4KNUGYQKAD8SVF.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "US4KNUGYQKAD8SVF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "US4KNUGYQKAD8SVF.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "US4KNUGYQKAD8SVF.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "171172" - }, - "appliesTo" : [ ] - }, - "US4KNUGYQKAD8SVF.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "US4KNUGYQKAD8SVF.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "US4KNUGYQKAD8SVF.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "US4KNUGYQKAD8SVF", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "US4KNUGYQKAD8SVF.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "US4KNUGYQKAD8SVF.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "40101" - }, - "appliesTo" : [ ] - }, - "US4KNUGYQKAD8SVF.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "US4KNUGYQKAD8SVF.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "US4KNUGYQKAD8SVF.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "US4KNUGYQKAD8SVF", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "US4KNUGYQKAD8SVF.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "US4KNUGYQKAD8SVF.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.3270000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "2Q55CNPTGCQPP362" : { - "2Q55CNPTGCQPP362.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "2Q55CNPTGCQPP362", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2Q55CNPTGCQPP362.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "2Q55CNPTGCQPP362.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2111" - }, - "appliesTo" : [ ] - }, - "2Q55CNPTGCQPP362.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "2Q55CNPTGCQPP362.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2Q55CNPTGCQPP362.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "2Q55CNPTGCQPP362", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "2Q55CNPTGCQPP362.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "2Q55CNPTGCQPP362.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2Q55CNPTGCQPP362.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "2Q55CNPTGCQPP362", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2Q55CNPTGCQPP362.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "2Q55CNPTGCQPP362.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2Q55CNPTGCQPP362.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "2Q55CNPTGCQPP362", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "2Q55CNPTGCQPP362.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "2Q55CNPTGCQPP362.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12066" - }, - "appliesTo" : [ ] - }, - "2Q55CNPTGCQPP362.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "2Q55CNPTGCQPP362.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2Q55CNPTGCQPP362.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "2Q55CNPTGCQPP362", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "2Q55CNPTGCQPP362.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "2Q55CNPTGCQPP362.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1710000000" - }, - "appliesTo" : [ ] - }, - "2Q55CNPTGCQPP362.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "2Q55CNPTGCQPP362.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2778" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2Q55CNPTGCQPP362.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "2Q55CNPTGCQPP362", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2Q55CNPTGCQPP362.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "2Q55CNPTGCQPP362.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4182" - }, - "appliesTo" : [ ] - }, - "2Q55CNPTGCQPP362.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "2Q55CNPTGCQPP362.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2Q55CNPTGCQPP362.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "2Q55CNPTGCQPP362", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "2Q55CNPTGCQPP362.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "2Q55CNPTGCQPP362.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5480000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2Q55CNPTGCQPP362.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "2Q55CNPTGCQPP362", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "2Q55CNPTGCQPP362.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "2Q55CNPTGCQPP362.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7270" - }, - "appliesTo" : [ ] - }, - "2Q55CNPTGCQPP362.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "2Q55CNPTGCQPP362.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2Q55CNPTGCQPP362.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "2Q55CNPTGCQPP362", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "2Q55CNPTGCQPP362.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "2Q55CNPTGCQPP362.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10513" - }, - "appliesTo" : [ ] - }, - "2Q55CNPTGCQPP362.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "2Q55CNPTGCQPP362.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2Q55CNPTGCQPP362.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "2Q55CNPTGCQPP362", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "2Q55CNPTGCQPP362.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "2Q55CNPTGCQPP362.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4192" - }, - "appliesTo" : [ ] - }, - "2Q55CNPTGCQPP362.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "2Q55CNPTGCQPP362.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2Q55CNPTGCQPP362.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "2Q55CNPTGCQPP362", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "2Q55CNPTGCQPP362.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "2Q55CNPTGCQPP362.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1640000000" - }, - "appliesTo" : [ ] - }, - "2Q55CNPTGCQPP362.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "2Q55CNPTGCQPP362.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7995" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "NPXGF3ETGHQX3T5Z" : { - "NPXGF3ETGHQX3T5Z.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "NPXGF3ETGHQX3T5Z", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "NPXGF3ETGHQX3T5Z.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "NPXGF3ETGHQX3T5Z.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "465" - }, - "appliesTo" : [ ] - }, - "NPXGF3ETGHQX3T5Z.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "NPXGF3ETGHQX3T5Z.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "NPXGF3ETGHQX3T5Z.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "NPXGF3ETGHQX3T5Z", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "NPXGF3ETGHQX3T5Z.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "NPXGF3ETGHQX3T5Z.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "NPXGF3ETGHQX3T5Z.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "NPXGF3ETGHQX3T5Z", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "NPXGF3ETGHQX3T5Z.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "NPXGF3ETGHQX3T5Z.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "800" - }, - "appliesTo" : [ ] - }, - "NPXGF3ETGHQX3T5Z.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "NPXGF3ETGHQX3T5Z.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "NPXGF3ETGHQX3T5Z.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "NPXGF3ETGHQX3T5Z", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "NPXGF3ETGHQX3T5Z.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "NPXGF3ETGHQX3T5Z.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "NPXGF3ETGHQX3T5Z.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "NPXGF3ETGHQX3T5Z.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "748" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "NPXGF3ETGHQX3T5Z.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "NPXGF3ETGHQX3T5Z", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "NPXGF3ETGHQX3T5Z.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "NPXGF3ETGHQX3T5Z.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), m1.medium reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "NPXGF3ETGHQX3T5Z.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "NPXGF3ETGHQX3T5Z.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1512" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "MV64DNBJGVHEPRZX" : { - "MV64DNBJGVHEPRZX.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "MV64DNBJGVHEPRZX", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "MV64DNBJGVHEPRZX.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "MV64DNBJGVHEPRZX.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14398" - }, - "appliesTo" : [ ] - }, - "MV64DNBJGVHEPRZX.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "MV64DNBJGVHEPRZX.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MV64DNBJGVHEPRZX.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "MV64DNBJGVHEPRZX", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "MV64DNBJGVHEPRZX.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "MV64DNBJGVHEPRZX.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7255" - }, - "appliesTo" : [ ] - }, - "MV64DNBJGVHEPRZX.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "MV64DNBJGVHEPRZX.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MV64DNBJGVHEPRZX.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "MV64DNBJGVHEPRZX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MV64DNBJGVHEPRZX.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "MV64DNBJGVHEPRZX.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15236" - }, - "appliesTo" : [ ] - }, - "MV64DNBJGVHEPRZX.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "MV64DNBJGVHEPRZX.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MV64DNBJGVHEPRZX.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "MV64DNBJGVHEPRZX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MV64DNBJGVHEPRZX.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "MV64DNBJGVHEPRZX.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5446000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "MV64DNBJGVHEPRZX.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "MV64DNBJGVHEPRZX", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "MV64DNBJGVHEPRZX.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "MV64DNBJGVHEPRZX.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37267" - }, - "appliesTo" : [ ] - }, - "MV64DNBJGVHEPRZX.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "MV64DNBJGVHEPRZX.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "MV64DNBJGVHEPRZX.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "MV64DNBJGVHEPRZX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MV64DNBJGVHEPRZX.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "MV64DNBJGVHEPRZX.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.6900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MV64DNBJGVHEPRZX.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "MV64DNBJGVHEPRZX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MV64DNBJGVHEPRZX.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "MV64DNBJGVHEPRZX.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39311" - }, - "appliesTo" : [ ] - }, - "MV64DNBJGVHEPRZX.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "MV64DNBJGVHEPRZX.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "MV64DNBJGVHEPRZX.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "MV64DNBJGVHEPRZX", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "MV64DNBJGVHEPRZX.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "MV64DNBJGVHEPRZX.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7220000000" - }, - "appliesTo" : [ ] - }, - "MV64DNBJGVHEPRZX.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "MV64DNBJGVHEPRZX.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "18969" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "MV64DNBJGVHEPRZX.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "MV64DNBJGVHEPRZX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MV64DNBJGVHEPRZX.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "MV64DNBJGVHEPRZX.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19784" - }, - "appliesTo" : [ ] - }, - "MV64DNBJGVHEPRZX.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "MV64DNBJGVHEPRZX.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7528000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MV64DNBJGVHEPRZX.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "MV64DNBJGVHEPRZX", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "MV64DNBJGVHEPRZX.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "MV64DNBJGVHEPRZX.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4759000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "MV64DNBJGVHEPRZX.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "MV64DNBJGVHEPRZX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MV64DNBJGVHEPRZX.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "MV64DNBJGVHEPRZX.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7682" - }, - "appliesTo" : [ ] - }, - "MV64DNBJGVHEPRZX.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "MV64DNBJGVHEPRZX.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "MV64DNBJGVHEPRZX.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "MV64DNBJGVHEPRZX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "MV64DNBJGVHEPRZX.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "MV64DNBJGVHEPRZX.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.7908000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "U9S9CX6UESN4T4P2" : { - "U9S9CX6UESN4T4P2.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "U9S9CX6UESN4T4P2", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "U9S9CX6UESN4T4P2.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "U9S9CX6UESN4T4P2.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8244" - }, - "appliesTo" : [ ] - }, - "U9S9CX6UESN4T4P2.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "U9S9CX6UESN4T4P2.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9410000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "U9S9CX6UESN4T4P2.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "U9S9CX6UESN4T4P2", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "U9S9CX6UESN4T4P2.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "U9S9CX6UESN4T4P2.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16454" - }, - "appliesTo" : [ ] - }, - "U9S9CX6UESN4T4P2.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "U9S9CX6UESN4T4P2.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "U9S9CX6UESN4T4P2.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "U9S9CX6UESN4T4P2", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "U9S9CX6UESN4T4P2.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "U9S9CX6UESN4T4P2.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "U9S9CX6UESN4T4P2.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "U9S9CX6UESN4T4P2", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "U9S9CX6UESN4T4P2.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "U9S9CX6UESN4T4P2.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8930000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "U9S9CX6UESN4T4P2.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "U9S9CX6UESN4T4P2", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "U9S9CX6UESN4T4P2.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "U9S9CX6UESN4T4P2.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23914" - }, - "appliesTo" : [ ] - }, - "U9S9CX6UESN4T4P2.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "U9S9CX6UESN4T4P2.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "U9S9CX6UESN4T4P2.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "U9S9CX6UESN4T4P2", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "U9S9CX6UESN4T4P2.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "U9S9CX6UESN4T4P2.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9310000000" - }, - "appliesTo" : [ ] - }, - "U9S9CX6UESN4T4P2.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "U9S9CX6UESN4T4P2.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24473" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "U9S9CX6UESN4T4P2.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "U9S9CX6UESN4T4P2", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "U9S9CX6UESN4T4P2.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "U9S9CX6UESN4T4P2.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "U9S9CX6UESN4T4P2.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "U9S9CX6UESN4T4P2.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "47614" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "U9S9CX6UESN4T4P2.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "U9S9CX6UESN4T4P2", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "U9S9CX6UESN4T4P2.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "U9S9CX6UESN4T4P2.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "48851" - }, - "appliesTo" : [ ] - }, - "U9S9CX6UESN4T4P2.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "U9S9CX6UESN4T4P2.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "U9S9CX6UESN4T4P2.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "U9S9CX6UESN4T4P2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U9S9CX6UESN4T4P2.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "U9S9CX6UESN4T4P2.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16700" - }, - "appliesTo" : [ ] - }, - "U9S9CX6UESN4T4P2.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "U9S9CX6UESN4T4P2.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "U9S9CX6UESN4T4P2.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "U9S9CX6UESN4T4P2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U9S9CX6UESN4T4P2.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "U9S9CX6UESN4T4P2.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.9220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "U9S9CX6UESN4T4P2.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "U9S9CX6UESN4T4P2", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "U9S9CX6UESN4T4P2.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "U9S9CX6UESN4T4P2.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8370" - }, - "appliesTo" : [ ] - }, - "U9S9CX6UESN4T4P2.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "U9S9CX6UESN4T4P2.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), r3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9550000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "KDCQC5EHG2SRP6TU" : { - "KDCQC5EHG2SRP6TU.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "KDCQC5EHG2SRP6TU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "KDCQC5EHG2SRP6TU.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "KDCQC5EHG2SRP6TU.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19162" - }, - "appliesTo" : [ ] - }, - "KDCQC5EHG2SRP6TU.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "KDCQC5EHG2SRP6TU.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KDCQC5EHG2SRP6TU.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "KDCQC5EHG2SRP6TU", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "KDCQC5EHG2SRP6TU.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "KDCQC5EHG2SRP6TU.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35310" - }, - "appliesTo" : [ ] - }, - "KDCQC5EHG2SRP6TU.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "KDCQC5EHG2SRP6TU.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "KDCQC5EHG2SRP6TU.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "KDCQC5EHG2SRP6TU", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "KDCQC5EHG2SRP6TU.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "KDCQC5EHG2SRP6TU.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7720000000" - }, - "appliesTo" : [ ] - }, - "KDCQC5EHG2SRP6TU.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "KDCQC5EHG2SRP6TU.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17276" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "KDCQC5EHG2SRP6TU.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "KDCQC5EHG2SRP6TU", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "KDCQC5EHG2SRP6TU.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "KDCQC5EHG2SRP6TU.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "KDCQC5EHG2SRP6TU.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "KDCQC5EHG2SRP6TU", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "KDCQC5EHG2SRP6TU.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "KDCQC5EHG2SRP6TU.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11389" - }, - "appliesTo" : [ ] - }, - "KDCQC5EHG2SRP6TU.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "KDCQC5EHG2SRP6TU.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), hs1.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9320000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "EWR4DWGXX5YW4B4M" : { - "EWR4DWGXX5YW4B4M.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "EWR4DWGXX5YW4B4M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EWR4DWGXX5YW4B4M.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "EWR4DWGXX5YW4B4M.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "EWR4DWGXX5YW4B4M.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "EWR4DWGXX5YW4B4M.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "27526" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "EWR4DWGXX5YW4B4M.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "EWR4DWGXX5YW4B4M", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "EWR4DWGXX5YW4B4M.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "EWR4DWGXX5YW4B4M.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3547000000" - }, - "appliesTo" : [ ] - }, - "EWR4DWGXX5YW4B4M.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "EWR4DWGXX5YW4B4M.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35601" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "EWR4DWGXX5YW4B4M.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "EWR4DWGXX5YW4B4M", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "EWR4DWGXX5YW4B4M.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "EWR4DWGXX5YW4B4M.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.8083000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "EWR4DWGXX5YW4B4M.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "EWR4DWGXX5YW4B4M", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "EWR4DWGXX5YW4B4M.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "EWR4DWGXX5YW4B4M.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "25617" - }, - "appliesTo" : [ ] - }, - "EWR4DWGXX5YW4B4M.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "EWR4DWGXX5YW4B4M.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EWR4DWGXX5YW4B4M.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "EWR4DWGXX5YW4B4M", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "EWR4DWGXX5YW4B4M.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "EWR4DWGXX5YW4B4M.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "EWR4DWGXX5YW4B4M.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "EWR4DWGXX5YW4B4M.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "70552" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "EWR4DWGXX5YW4B4M.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "EWR4DWGXX5YW4B4M", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "EWR4DWGXX5YW4B4M.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "EWR4DWGXX5YW4B4M.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "65263" - }, - "appliesTo" : [ ] - }, - "EWR4DWGXX5YW4B4M.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "EWR4DWGXX5YW4B4M.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "EWR4DWGXX5YW4B4M.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "EWR4DWGXX5YW4B4M", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "EWR4DWGXX5YW4B4M.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "EWR4DWGXX5YW4B4M.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6340000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "EWR4DWGXX5YW4B4M.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "EWR4DWGXX5YW4B4M", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "EWR4DWGXX5YW4B4M.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "EWR4DWGXX5YW4B4M.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33480" - }, - "appliesTo" : [ ] - }, - "EWR4DWGXX5YW4B4M.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "EWR4DWGXX5YW4B4M.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "EWR4DWGXX5YW4B4M.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "EWR4DWGXX5YW4B4M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EWR4DWGXX5YW4B4M.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "EWR4DWGXX5YW4B4M.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2615000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "EWR4DWGXX5YW4B4M.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "EWR4DWGXX5YW4B4M", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "EWR4DWGXX5YW4B4M.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "EWR4DWGXX5YW4B4M.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13912" - }, - "appliesTo" : [ ] - }, - "EWR4DWGXX5YW4B4M.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "EWR4DWGXX5YW4B4M.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5882000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "EWR4DWGXX5YW4B4M.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "EWR4DWGXX5YW4B4M", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "EWR4DWGXX5YW4B4M.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "EWR4DWGXX5YW4B4M.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.0281000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "EWR4DWGXX5YW4B4M.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "EWR4DWGXX5YW4B4M", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "EWR4DWGXX5YW4B4M.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "EWR4DWGXX5YW4B4M.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12939" - }, - "appliesTo" : [ ] - }, - "EWR4DWGXX5YW4B4M.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "EWR4DWGXX5YW4B4M.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), g3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "XX2TZABY6QFVXNY9" : { - "XX2TZABY6QFVXNY9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XX2TZABY6QFVXNY9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XX2TZABY6QFVXNY9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XX2TZABY6QFVXNY9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2361" - }, - "appliesTo" : [ ] - }, - "XX2TZABY6QFVXNY9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XX2TZABY6QFVXNY9.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XX2TZABY6QFVXNY9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XX2TZABY6QFVXNY9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XX2TZABY6QFVXNY9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XX2TZABY6QFVXNY9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1042" - }, - "appliesTo" : [ ] - }, - "XX2TZABY6QFVXNY9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XX2TZABY6QFVXNY9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XX2TZABY6QFVXNY9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XX2TZABY6QFVXNY9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XX2TZABY6QFVXNY9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XX2TZABY6QFVXNY9.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XX2TZABY6QFVXNY9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XX2TZABY6QFVXNY9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XX2TZABY6QFVXNY9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XX2TZABY6QFVXNY9.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1360000000" - }, - "appliesTo" : [ ] - }, - "XX2TZABY6QFVXNY9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XX2TZABY6QFVXNY9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1582" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XX2TZABY6QFVXNY9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XX2TZABY6QFVXNY9", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XX2TZABY6QFVXNY9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XX2TZABY6QFVXNY9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4855" - }, - "appliesTo" : [ ] - }, - "XX2TZABY6QFVXNY9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XX2TZABY6QFVXNY9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "AGHHWVT6KDRBWTWP" : { - "AGHHWVT6KDRBWTWP.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "AGHHWVT6KDRBWTWP", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AGHHWVT6KDRBWTWP.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "AGHHWVT6KDRBWTWP.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "AGHHWVT6KDRBWTWP.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "AGHHWVT6KDRBWTWP.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AGHHWVT6KDRBWTWP.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "AGHHWVT6KDRBWTWP", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AGHHWVT6KDRBWTWP.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "AGHHWVT6KDRBWTWP.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0017000000" - }, - "appliesTo" : [ ] - }, - "AGHHWVT6KDRBWTWP.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "AGHHWVT6KDRBWTWP.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AGHHWVT6KDRBWTWP.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "AGHHWVT6KDRBWTWP", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AGHHWVT6KDRBWTWP.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "AGHHWVT6KDRBWTWP.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0029000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "AGHHWVT6KDRBWTWP.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "AGHHWVT6KDRBWTWP", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AGHHWVT6KDRBWTWP.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "AGHHWVT6KDRBWTWP.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "35" - }, - "appliesTo" : [ ] - }, - "AGHHWVT6KDRBWTWP.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "AGHHWVT6KDRBWTWP.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0013000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "AGHHWVT6KDRBWTWP.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "AGHHWVT6KDRBWTWP", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AGHHWVT6KDRBWTWP.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "AGHHWVT6KDRBWTWP.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "57" - }, - "appliesTo" : [ ] - }, - "AGHHWVT6KDRBWTWP.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "AGHHWVT6KDRBWTWP.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "AGHHWVT6KDRBWTWP.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "AGHHWVT6KDRBWTWP", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AGHHWVT6KDRBWTWP.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "AGHHWVT6KDRBWTWP.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30" - }, - "appliesTo" : [ ] - }, - "AGHHWVT6KDRBWTWP.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "AGHHWVT6KDRBWTWP.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0012000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "AGHHWVT6KDRBWTWP.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "AGHHWVT6KDRBWTWP", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AGHHWVT6KDRBWTWP.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "AGHHWVT6KDRBWTWP.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0036000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "AGHHWVT6KDRBWTWP.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "AGHHWVT6KDRBWTWP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AGHHWVT6KDRBWTWP.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "AGHHWVT6KDRBWTWP.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34" - }, - "appliesTo" : [ ] - }, - "AGHHWVT6KDRBWTWP.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "AGHHWVT6KDRBWTWP.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "AGHHWVT6KDRBWTWP.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "AGHHWVT6KDRBWTWP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AGHHWVT6KDRBWTWP.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "AGHHWVT6KDRBWTWP.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0041000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "AGHHWVT6KDRBWTWP.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "AGHHWVT6KDRBWTWP", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AGHHWVT6KDRBWTWP.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "AGHHWVT6KDRBWTWP.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "69" - }, - "appliesTo" : [ ] - }, - "AGHHWVT6KDRBWTWP.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "AGHHWVT6KDRBWTWP.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "AGHHWVT6KDRBWTWP.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "AGHHWVT6KDRBWTWP", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "AGHHWVT6KDRBWTWP.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "AGHHWVT6KDRBWTWP.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17" - }, - "appliesTo" : [ ] - }, - "AGHHWVT6KDRBWTWP.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "AGHHWVT6KDRBWTWP.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0020000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "AGHHWVT6KDRBWTWP.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "AGHHWVT6KDRBWTWP", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "AGHHWVT6KDRBWTWP.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "AGHHWVT6KDRBWTWP.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), t2.nano reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0025000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "T9TYJWD5FYY22EY9" : { - "T9TYJWD5FYY22EY9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "T9TYJWD5FYY22EY9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "T9TYJWD5FYY22EY9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "T9TYJWD5FYY22EY9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "86325" - }, - "appliesTo" : [ ] - }, - "T9TYJWD5FYY22EY9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "T9TYJWD5FYY22EY9.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.2850000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "T9TYJWD5FYY22EY9.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "T9TYJWD5FYY22EY9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "T9TYJWD5FYY22EY9.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "T9TYJWD5FYY22EY9.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "174663" - }, - "appliesTo" : [ ] - }, - "T9TYJWD5FYY22EY9.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "T9TYJWD5FYY22EY9.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "T9TYJWD5FYY22EY9.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "T9TYJWD5FYY22EY9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "T9TYJWD5FYY22EY9.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "T9TYJWD5FYY22EY9.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.7150000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "T9TYJWD5FYY22EY9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "T9TYJWD5FYY22EY9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "T9TYJWD5FYY22EY9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "T9TYJWD5FYY22EY9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "T9TYJWD5FYY22EY9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "T9TYJWD5FYY22EY9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "171714" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "T9TYJWD5FYY22EY9.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "T9TYJWD5FYY22EY9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "T9TYJWD5FYY22EY9.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "T9TYJWD5FYY22EY9.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.6170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "T9TYJWD5FYY22EY9.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "T9TYJWD5FYY22EY9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "T9TYJWD5FYY22EY9.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "T9TYJWD5FYY22EY9.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "61413" - }, - "appliesTo" : [ ] - }, - "T9TYJWD5FYY22EY9.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "T9TYJWD5FYY22EY9.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "T9TYJWD5FYY22EY9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "T9TYJWD5FYY22EY9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "T9TYJWD5FYY22EY9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "T9TYJWD5FYY22EY9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.4470000000" - }, - "appliesTo" : [ ] - }, - "T9TYJWD5FYY22EY9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "T9TYJWD5FYY22EY9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30196" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "T9TYJWD5FYY22EY9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "T9TYJWD5FYY22EY9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "T9TYJWD5FYY22EY9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "T9TYJWD5FYY22EY9.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.9400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "T9TYJWD5FYY22EY9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "T9TYJWD5FYY22EY9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "T9TYJWD5FYY22EY9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "T9TYJWD5FYY22EY9.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "T9TYJWD5FYY22EY9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "T9TYJWD5FYY22EY9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "60231" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "T9TYJWD5FYY22EY9.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "T9TYJWD5FYY22EY9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "T9TYJWD5FYY22EY9.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "T9TYJWD5FYY22EY9.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30799" - }, - "appliesTo" : [ ] - }, - "T9TYJWD5FYY22EY9.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "T9TYJWD5FYY22EY9.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.5160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "T9TYJWD5FYY22EY9.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "T9TYJWD5FYY22EY9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "T9TYJWD5FYY22EY9.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "T9TYJWD5FYY22EY9.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.0840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "T9TYJWD5FYY22EY9.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "T9TYJWD5FYY22EY9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "T9TYJWD5FYY22EY9.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "T9TYJWD5FYY22EY9.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "87511" - }, - "appliesTo" : [ ] - }, - "T9TYJWD5FYY22EY9.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "T9TYJWD5FYY22EY9.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c5.9xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.3300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "6WKTRGBBJD2C2RZE" : { - "6WKTRGBBJD2C2RZE.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "6WKTRGBBJD2C2RZE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6WKTRGBBJD2C2RZE.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "6WKTRGBBJD2C2RZE.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "6WKTRGBBJD2C2RZE.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "6WKTRGBBJD2C2RZE.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1633" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6WKTRGBBJD2C2RZE.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "6WKTRGBBJD2C2RZE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6WKTRGBBJD2C2RZE.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "6WKTRGBBJD2C2RZE.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6WKTRGBBJD2C2RZE.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "6WKTRGBBJD2C2RZE", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "6WKTRGBBJD2C2RZE.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "6WKTRGBBJD2C2RZE.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3484" - }, - "appliesTo" : [ ] - }, - "6WKTRGBBJD2C2RZE.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "6WKTRGBBJD2C2RZE.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6WKTRGBBJD2C2RZE.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "6WKTRGBBJD2C2RZE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6WKTRGBBJD2C2RZE.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "6WKTRGBBJD2C2RZE.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6WKTRGBBJD2C2RZE.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "6WKTRGBBJD2C2RZE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6WKTRGBBJD2C2RZE.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "6WKTRGBBJD2C2RZE.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "6WKTRGBBJD2C2RZE.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "6WKTRGBBJD2C2RZE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6WKTRGBBJD2C2RZE.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "6WKTRGBBJD2C2RZE.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "6WKTRGBBJD2C2RZE.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "6WKTRGBBJD2C2RZE.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3857" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "6WKTRGBBJD2C2RZE.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "6WKTRGBBJD2C2RZE", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "6WKTRGBBJD2C2RZE.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "6WKTRGBBJD2C2RZE.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "489" - }, - "appliesTo" : [ ] - }, - "6WKTRGBBJD2C2RZE.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "6WKTRGBBJD2C2RZE.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6WKTRGBBJD2C2RZE.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "6WKTRGBBJD2C2RZE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6WKTRGBBJD2C2RZE.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "6WKTRGBBJD2C2RZE.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "6WKTRGBBJD2C2RZE.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "6WKTRGBBJD2C2RZE", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "6WKTRGBBJD2C2RZE.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "6WKTRGBBJD2C2RZE.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "565" - }, - "appliesTo" : [ ] - }, - "6WKTRGBBJD2C2RZE.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "6WKTRGBBJD2C2RZE.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1250000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "6WKTRGBBJD2C2RZE.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "6WKTRGBBJD2C2RZE", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "6WKTRGBBJD2C2RZE.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "6WKTRGBBJD2C2RZE.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1483" - }, - "appliesTo" : [ ] - }, - "6WKTRGBBJD2C2RZE.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "6WKTRGBBJD2C2RZE.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "6WKTRGBBJD2C2RZE.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "6WKTRGBBJD2C2RZE", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "6WKTRGBBJD2C2RZE.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "6WKTRGBBJD2C2RZE.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1015" - }, - "appliesTo" : [ ] - }, - "6WKTRGBBJD2C2RZE.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "6WKTRGBBJD2C2RZE.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "6WKTRGBBJD2C2RZE.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "6WKTRGBBJD2C2RZE", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "6WKTRGBBJD2C2RZE.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "6WKTRGBBJD2C2RZE.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1164" - }, - "appliesTo" : [ ] - }, - "6WKTRGBBJD2C2RZE.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "6WKTRGBBJD2C2RZE.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), i3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "ABJ9HJ6JXJ4MY26U" : { - "ABJ9HJ6JXJ4MY26U.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "ABJ9HJ6JXJ4MY26U", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "ABJ9HJ6JXJ4MY26U.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "ABJ9HJ6JXJ4MY26U.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "33412" - }, - "appliesTo" : [ ] - }, - "ABJ9HJ6JXJ4MY26U.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "ABJ9HJ6JXJ4MY26U.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ABJ9HJ6JXJ4MY26U.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "ABJ9HJ6JXJ4MY26U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ABJ9HJ6JXJ4MY26U.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "ABJ9HJ6JXJ4MY26U.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.6780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ABJ9HJ6JXJ4MY26U.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "ABJ9HJ6JXJ4MY26U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ABJ9HJ6JXJ4MY26U.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "ABJ9HJ6JXJ4MY26U.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8840000000" - }, - "appliesTo" : [ ] - }, - "ABJ9HJ6JXJ4MY26U.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "ABJ9HJ6JXJ4MY26U.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34025" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ABJ9HJ6JXJ4MY26U.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "ABJ9HJ6JXJ4MY26U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ABJ9HJ6JXJ4MY26U.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "ABJ9HJ6JXJ4MY26U.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.8200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "ABJ9HJ6JXJ4MY26U.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "ABJ9HJ6JXJ4MY26U", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "ABJ9HJ6JXJ4MY26U.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "ABJ9HJ6JXJ4MY26U.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "67869" - }, - "appliesTo" : [ ] - }, - "ABJ9HJ6JXJ4MY26U.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "ABJ9HJ6JXJ4MY26U.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ABJ9HJ6JXJ4MY26U.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "ABJ9HJ6JXJ4MY26U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ABJ9HJ6JXJ4MY26U.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "ABJ9HJ6JXJ4MY26U.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "ABJ9HJ6JXJ4MY26U.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "ABJ9HJ6JXJ4MY26U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ABJ9HJ6JXJ4MY26U.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "ABJ9HJ6JXJ4MY26U.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "96628" - }, - "appliesTo" : [ ] - }, - "ABJ9HJ6JXJ4MY26U.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "ABJ9HJ6JXJ4MY26U.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.6770000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "ABJ9HJ6JXJ4MY26U.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "ABJ9HJ6JXJ4MY26U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ABJ9HJ6JXJ4MY26U.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "ABJ9HJ6JXJ4MY26U.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "195267" - }, - "appliesTo" : [ ] - }, - "ABJ9HJ6JXJ4MY26U.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "ABJ9HJ6JXJ4MY26U.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "ABJ9HJ6JXJ4MY26U.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "ABJ9HJ6JXJ4MY26U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ABJ9HJ6JXJ4MY26U.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "ABJ9HJ6JXJ4MY26U.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "97819" - }, - "appliesTo" : [ ] - }, - "ABJ9HJ6JXJ4MY26U.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "ABJ9HJ6JXJ4MY26U.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7220000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "ABJ9HJ6JXJ4MY26U.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "ABJ9HJ6JXJ4MY26U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ABJ9HJ6JXJ4MY26U.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "ABJ9HJ6JXJ4MY26U.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "ABJ9HJ6JXJ4MY26U.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "ABJ9HJ6JXJ4MY26U.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "66668" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ABJ9HJ6JXJ4MY26U.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "ABJ9HJ6JXJ4MY26U", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "ABJ9HJ6JXJ4MY26U.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "ABJ9HJ6JXJ4MY26U.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "192283" - }, - "appliesTo" : [ ] - }, - "ABJ9HJ6JXJ4MY26U.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "ABJ9HJ6JXJ4MY26U.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "ABJ9HJ6JXJ4MY26U.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "ABJ9HJ6JXJ4MY26U", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "ABJ9HJ6JXJ4MY26U.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "ABJ9HJ6JXJ4MY26U.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "YHTMJU9RK3XB4R35" : { - "YHTMJU9RK3XB4R35.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YHTMJU9RK3XB4R35", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YHTMJU9RK3XB4R35.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YHTMJU9RK3XB4R35.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12243" - }, - "appliesTo" : [ ] - }, - "YHTMJU9RK3XB4R35.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YHTMJU9RK3XB4R35.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YHTMJU9RK3XB4R35.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "YHTMJU9RK3XB4R35", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YHTMJU9RK3XB4R35.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "YHTMJU9RK3XB4R35.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YHTMJU9RK3XB4R35.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "YHTMJU9RK3XB4R35", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YHTMJU9RK3XB4R35.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "YHTMJU9RK3XB4R35.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YHTMJU9RK3XB4R35.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "YHTMJU9RK3XB4R35", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YHTMJU9RK3XB4R35.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "YHTMJU9RK3XB4R35.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6643" - }, - "appliesTo" : [ ] - }, - "YHTMJU9RK3XB4R35.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "YHTMJU9RK3XB4R35.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YHTMJU9RK3XB4R35.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "YHTMJU9RK3XB4R35", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YHTMJU9RK3XB4R35.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "YHTMJU9RK3XB4R35.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7416" - }, - "appliesTo" : [ ] - }, - "YHTMJU9RK3XB4R35.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "YHTMJU9RK3XB4R35.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YHTMJU9RK3XB4R35.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "YHTMJU9RK3XB4R35", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YHTMJU9RK3XB4R35.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "YHTMJU9RK3XB4R35.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "YHTMJU9RK3XB4R35.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "YHTMJU9RK3XB4R35.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14540" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YHTMJU9RK3XB4R35.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YHTMJU9RK3XB4R35", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "YHTMJU9RK3XB4R35.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YHTMJU9RK3XB4R35.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2995" - }, - "appliesTo" : [ ] - }, - "YHTMJU9RK3XB4R35.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YHTMJU9RK3XB4R35.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YHTMJU9RK3XB4R35.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YHTMJU9RK3XB4R35", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YHTMJU9RK3XB4R35.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YHTMJU9RK3XB4R35.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YHTMJU9RK3XB4R35.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "YHTMJU9RK3XB4R35", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YHTMJU9RK3XB4R35.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "YHTMJU9RK3XB4R35.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8100000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YHTMJU9RK3XB4R35.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "YHTMJU9RK3XB4R35", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YHTMJU9RK3XB4R35.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "YHTMJU9RK3XB4R35.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3417" - }, - "appliesTo" : [ ] - }, - "YHTMJU9RK3XB4R35.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "YHTMJU9RK3XB4R35.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3830000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YHTMJU9RK3XB4R35.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YHTMJU9RK3XB4R35", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "YHTMJU9RK3XB4R35.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YHTMJU9RK3XB4R35.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5814" - }, - "appliesTo" : [ ] - }, - "YHTMJU9RK3XB4R35.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YHTMJU9RK3XB4R35.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YHTMJU9RK3XB4R35.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YHTMJU9RK3XB4R35", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "YHTMJU9RK3XB4R35.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YHTMJU9RK3XB4R35.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6495" - }, - "appliesTo" : [ ] - }, - "YHTMJU9RK3XB4R35.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YHTMJU9RK3XB4R35.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "2R3TZFKRGVGPMMC9" : { - "2R3TZFKRGVGPMMC9.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "2R3TZFKRGVGPMMC9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2R3TZFKRGVGPMMC9.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "2R3TZFKRGVGPMMC9.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.6350000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2R3TZFKRGVGPMMC9.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "2R3TZFKRGVGPMMC9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2R3TZFKRGVGPMMC9.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "2R3TZFKRGVGPMMC9.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11072" - }, - "appliesTo" : [ ] - }, - "2R3TZFKRGVGPMMC9.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "2R3TZFKRGVGPMMC9.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2570000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2R3TZFKRGVGPMMC9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "2R3TZFKRGVGPMMC9", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "2R3TZFKRGVGPMMC9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "2R3TZFKRGVGPMMC9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9759" - }, - "appliesTo" : [ ] - }, - "2R3TZFKRGVGPMMC9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "2R3TZFKRGVGPMMC9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "2R3TZFKRGVGPMMC9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "2R3TZFKRGVGPMMC9", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "2R3TZFKRGVGPMMC9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "2R3TZFKRGVGPMMC9.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3200000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2R3TZFKRGVGPMMC9.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "2R3TZFKRGVGPMMC9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "2R3TZFKRGVGPMMC9.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "2R3TZFKRGVGPMMC9.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "21682" - }, - "appliesTo" : [ ] - }, - "2R3TZFKRGVGPMMC9.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "2R3TZFKRGVGPMMC9.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2R3TZFKRGVGPMMC9.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "2R3TZFKRGVGPMMC9", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "2R3TZFKRGVGPMMC9.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "2R3TZFKRGVGPMMC9.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "24799" - }, - "appliesTo" : [ ] - }, - "2R3TZFKRGVGPMMC9.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "2R3TZFKRGVGPMMC9.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "2R3TZFKRGVGPMMC9.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "2R3TZFKRGVGPMMC9", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "2R3TZFKRGVGPMMC9.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "2R3TZFKRGVGPMMC9.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0260000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "2R3TZFKRGVGPMMC9.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "2R3TZFKRGVGPMMC9", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "2R3TZFKRGVGPMMC9.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "2R3TZFKRGVGPMMC9.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "2R3TZFKRGVGPMMC9.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "2R3TZFKRGVGPMMC9.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "48714" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "2R3TZFKRGVGPMMC9.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "2R3TZFKRGVGPMMC9", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "2R3TZFKRGVGPMMC9.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "2R3TZFKRGVGPMMC9.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.5640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "2R3TZFKRGVGPMMC9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "2R3TZFKRGVGPMMC9", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "2R3TZFKRGVGPMMC9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "2R3TZFKRGVGPMMC9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "36385" - }, - "appliesTo" : [ ] - }, - "2R3TZFKRGVGPMMC9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "2R3TZFKRGVGPMMC9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2R3TZFKRGVGPMMC9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "2R3TZFKRGVGPMMC9", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "2R3TZFKRGVGPMMC9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "2R3TZFKRGVGPMMC9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19108" - }, - "appliesTo" : [ ] - }, - "2R3TZFKRGVGPMMC9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "2R3TZFKRGVGPMMC9.6QCMYABX3D.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "2R3TZFKRGVGPMMC9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "2R3TZFKRGVGPMMC9", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "2R3TZFKRGVGPMMC9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "2R3TZFKRGVGPMMC9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19170" - }, - "appliesTo" : [ ] - }, - "2R3TZFKRGVGPMMC9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "2R3TZFKRGVGPMMC9.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), p3.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "RSYDZDVYE5V36ECZ" : { - "RSYDZDVYE5V36ECZ.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "RSYDZDVYE5V36ECZ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "RSYDZDVYE5V36ECZ.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "RSYDZDVYE5V36ECZ.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7990000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RSYDZDVYE5V36ECZ.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "RSYDZDVYE5V36ECZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RSYDZDVYE5V36ECZ.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "RSYDZDVYE5V36ECZ.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11731" - }, - "appliesTo" : [ ] - }, - "RSYDZDVYE5V36ECZ.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "RSYDZDVYE5V36ECZ.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "RSYDZDVYE5V36ECZ.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "RSYDZDVYE5V36ECZ", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "RSYDZDVYE5V36ECZ.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "RSYDZDVYE5V36ECZ.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2920000000" - }, - "appliesTo" : [ ] - }, - "RSYDZDVYE5V36ECZ.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "RSYDZDVYE5V36ECZ.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10180" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RSYDZDVYE5V36ECZ.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "RSYDZDVYE5V36ECZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RSYDZDVYE5V36ECZ.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "RSYDZDVYE5V36ECZ.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7454" - }, - "appliesTo" : [ ] - }, - "RSYDZDVYE5V36ECZ.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "RSYDZDVYE5V36ECZ.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RSYDZDVYE5V36ECZ.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "RSYDZDVYE5V36ECZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RSYDZDVYE5V36ECZ.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "RSYDZDVYE5V36ECZ.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5832" - }, - "appliesTo" : [ ] - }, - "RSYDZDVYE5V36ECZ.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "RSYDZDVYE5V36ECZ.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RSYDZDVYE5V36ECZ.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "RSYDZDVYE5V36ECZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RSYDZDVYE5V36ECZ.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "RSYDZDVYE5V36ECZ.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3816" - }, - "appliesTo" : [ ] - }, - "RSYDZDVYE5V36ECZ.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "RSYDZDVYE5V36ECZ.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "RSYDZDVYE5V36ECZ.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "RSYDZDVYE5V36ECZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RSYDZDVYE5V36ECZ.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "RSYDZDVYE5V36ECZ.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3831" - }, - "appliesTo" : [ ] - }, - "RSYDZDVYE5V36ECZ.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "RSYDZDVYE5V36ECZ.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4300000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "RSYDZDVYE5V36ECZ.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "RSYDZDVYE5V36ECZ", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "RSYDZDVYE5V36ECZ.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "RSYDZDVYE5V36ECZ.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17467" - }, - "appliesTo" : [ ] - }, - "RSYDZDVYE5V36ECZ.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "RSYDZDVYE5V36ECZ.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "RSYDZDVYE5V36ECZ.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "RSYDZDVYE5V36ECZ", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "RSYDZDVYE5V36ECZ.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "RSYDZDVYE5V36ECZ.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9090000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "RSYDZDVYE5V36ECZ.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "RSYDZDVYE5V36ECZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RSYDZDVYE5V36ECZ.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "RSYDZDVYE5V36ECZ.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "RSYDZDVYE5V36ECZ.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "RSYDZDVYE5V36ECZ", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "RSYDZDVYE5V36ECZ.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "RSYDZDVYE5V36ECZ.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6512" - }, - "appliesTo" : [ ] - }, - "RSYDZDVYE5V36ECZ.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "RSYDZDVYE5V36ECZ.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i2.2xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "M5Q2FGMPJ4Q6PA2G" : { - "M5Q2FGMPJ4Q6PA2G.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "M5Q2FGMPJ4Q6PA2G", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M5Q2FGMPJ4Q6PA2G.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "M5Q2FGMPJ4Q6PA2G.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5950000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "M5Q2FGMPJ4Q6PA2G.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "M5Q2FGMPJ4Q6PA2G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M5Q2FGMPJ4Q6PA2G.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "M5Q2FGMPJ4Q6PA2G.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "39780" - }, - "appliesTo" : [ ] - }, - "M5Q2FGMPJ4Q6PA2G.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "M5Q2FGMPJ4Q6PA2G.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "M5Q2FGMPJ4Q6PA2G.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "M5Q2FGMPJ4Q6PA2G", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M5Q2FGMPJ4Q6PA2G.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "M5Q2FGMPJ4Q6PA2G.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "29995" - }, - "appliesTo" : [ ] - }, - "M5Q2FGMPJ4Q6PA2G.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "M5Q2FGMPJ4Q6PA2G.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "M5Q2FGMPJ4Q6PA2G.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "M5Q2FGMPJ4Q6PA2G", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M5Q2FGMPJ4Q6PA2G.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "M5Q2FGMPJ4Q6PA2G.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "62207" - }, - "appliesTo" : [ ] - }, - "M5Q2FGMPJ4Q6PA2G.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "M5Q2FGMPJ4Q6PA2G.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "M5Q2FGMPJ4Q6PA2G.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "M5Q2FGMPJ4Q6PA2G", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "M5Q2FGMPJ4Q6PA2G.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "M5Q2FGMPJ4Q6PA2G.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "52452" - }, - "appliesTo" : [ ] - }, - "M5Q2FGMPJ4Q6PA2G.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "M5Q2FGMPJ4Q6PA2G.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "M5Q2FGMPJ4Q6PA2G.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "M5Q2FGMPJ4Q6PA2G", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M5Q2FGMPJ4Q6PA2G.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "M5Q2FGMPJ4Q6PA2G.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.2740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "M5Q2FGMPJ4Q6PA2G.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "M5Q2FGMPJ4Q6PA2G", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M5Q2FGMPJ4Q6PA2G.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "M5Q2FGMPJ4Q6PA2G.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34740" - }, - "appliesTo" : [ ] - }, - "M5Q2FGMPJ4Q6PA2G.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "M5Q2FGMPJ4Q6PA2G.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "M5Q2FGMPJ4Q6PA2G.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "M5Q2FGMPJ4Q6PA2G", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "M5Q2FGMPJ4Q6PA2G.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "M5Q2FGMPJ4Q6PA2G.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "26083" - }, - "appliesTo" : [ ] - }, - "M5Q2FGMPJ4Q6PA2G.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "M5Q2FGMPJ4Q6PA2G.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.1230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "M5Q2FGMPJ4Q6PA2G.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "M5Q2FGMPJ4Q6PA2G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M5Q2FGMPJ4Q6PA2G.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "M5Q2FGMPJ4Q6PA2G.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.8560000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "M5Q2FGMPJ4Q6PA2G.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "M5Q2FGMPJ4Q6PA2G", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "M5Q2FGMPJ4Q6PA2G.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "M5Q2FGMPJ4Q6PA2G.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19715" - }, - "appliesTo" : [ ] - }, - "M5Q2FGMPJ4Q6PA2G.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "M5Q2FGMPJ4Q6PA2G.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.3810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "M5Q2FGMPJ4Q6PA2G.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "M5Q2FGMPJ4Q6PA2G", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "M5Q2FGMPJ4Q6PA2G.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "M5Q2FGMPJ4Q6PA2G.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.0870000000" - }, - "appliesTo" : [ ] - }, - "M5Q2FGMPJ4Q6PA2G.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "M5Q2FGMPJ4Q6PA2G.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17143" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "M5Q2FGMPJ4Q6PA2G.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "M5Q2FGMPJ4Q6PA2G", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "M5Q2FGMPJ4Q6PA2G.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "M5Q2FGMPJ4Q6PA2G.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.2400000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "7NEQ4VTJKJUPEVYG" : { - "7NEQ4VTJKJUPEVYG.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "7NEQ4VTJKJUPEVYG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7NEQ4VTJKJUPEVYG.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "7NEQ4VTJKJUPEVYG.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7731" - }, - "appliesTo" : [ ] - }, - "7NEQ4VTJKJUPEVYG.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "7NEQ4VTJKJUPEVYG.38NPMPTW36.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7NEQ4VTJKJUPEVYG.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "7NEQ4VTJKJUPEVYG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7NEQ4VTJKJUPEVYG.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "7NEQ4VTJKJUPEVYG.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "14567" - }, - "appliesTo" : [ ] - }, - "7NEQ4VTJKJUPEVYG.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "7NEQ4VTJKJUPEVYG.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7NEQ4VTJKJUPEVYG.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "7NEQ4VTJKJUPEVYG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7NEQ4VTJKJUPEVYG.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "7NEQ4VTJKJUPEVYG.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3350000000" - }, - "appliesTo" : [ ] - }, - "7NEQ4VTJKJUPEVYG.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "7NEQ4VTJKJUPEVYG.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8814" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7NEQ4VTJKJUPEVYG.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "7NEQ4VTJKJUPEVYG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7NEQ4VTJKJUPEVYG.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "7NEQ4VTJKJUPEVYG.BPH4J8HBKS.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7NEQ4VTJKJUPEVYG.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "7NEQ4VTJKJUPEVYG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7NEQ4VTJKJUPEVYG.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "7NEQ4VTJKJUPEVYG.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17280" - }, - "appliesTo" : [ ] - }, - "7NEQ4VTJKJUPEVYG.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "7NEQ4VTJKJUPEVYG.MZU6U2429S.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7NEQ4VTJKJUPEVYG.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "7NEQ4VTJKJUPEVYG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7NEQ4VTJKJUPEVYG.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "7NEQ4VTJKJUPEVYG.7NE97W5U4E.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.0180000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "7NEQ4VTJKJUPEVYG.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "7NEQ4VTJKJUPEVYG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7NEQ4VTJKJUPEVYG.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "7NEQ4VTJKJUPEVYG.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4286" - }, - "appliesTo" : [ ] - }, - "7NEQ4VTJKJUPEVYG.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "7NEQ4VTJKJUPEVYG.CUZHX8X6JH.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "7NEQ4VTJKJUPEVYG.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "7NEQ4VTJKJUPEVYG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7NEQ4VTJKJUPEVYG.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "7NEQ4VTJKJUPEVYG.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3729" - }, - "appliesTo" : [ ] - }, - "7NEQ4VTJKJUPEVYG.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "7NEQ4VTJKJUPEVYG.HU7G6KETJZ.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4190000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "7NEQ4VTJKJUPEVYG.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "7NEQ4VTJKJUPEVYG", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "7NEQ4VTJKJUPEVYG.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "7NEQ4VTJKJUPEVYG.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7254" - }, - "appliesTo" : [ ] - }, - "7NEQ4VTJKJUPEVYG.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "7NEQ4VTJKJUPEVYG.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "7NEQ4VTJKJUPEVYG.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "7NEQ4VTJKJUPEVYG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "7NEQ4VTJKJUPEVYG.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "7NEQ4VTJKJUPEVYG.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8346" - }, - "appliesTo" : [ ] - }, - "7NEQ4VTJKJUPEVYG.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "7NEQ4VTJKJUPEVYG.VJWZNREJX2.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "7NEQ4VTJKJUPEVYG.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "7NEQ4VTJKJUPEVYG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7NEQ4VTJKJUPEVYG.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "7NEQ4VTJKJUPEVYG.4NA7Y494T4.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "7NEQ4VTJKJUPEVYG.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "7NEQ4VTJKJUPEVYG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "7NEQ4VTJKJUPEVYG.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "7NEQ4VTJKJUPEVYG.Z2E3P23VKM.6YS6EN2CT7", - "description" : "SUSE Linux (Amazon VPC), i3.4xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "E3A2FAQ7KZXK2BME" : { - "E3A2FAQ7KZXK2BME.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "E3A2FAQ7KZXK2BME", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "E3A2FAQ7KZXK2BME.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "E3A2FAQ7KZXK2BME.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "135571" - }, - "appliesTo" : [ ] - }, - "E3A2FAQ7KZXK2BME.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "E3A2FAQ7KZXK2BME.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "E3A2FAQ7KZXK2BME.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "E3A2FAQ7KZXK2BME", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "E3A2FAQ7KZXK2BME.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "E3A2FAQ7KZXK2BME.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "13.3360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "E3A2FAQ7KZXK2BME.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "E3A2FAQ7KZXK2BME", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "E3A2FAQ7KZXK2BME.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "E3A2FAQ7KZXK2BME.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.5680000000" - }, - "appliesTo" : [ ] - }, - "E3A2FAQ7KZXK2BME.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "E3A2FAQ7KZXK2BME.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "172594" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "E3A2FAQ7KZXK2BME.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "E3A2FAQ7KZXK2BME", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "E3A2FAQ7KZXK2BME.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "E3A2FAQ7KZXK2BME.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "130027" - }, - "appliesTo" : [ ] - }, - "E3A2FAQ7KZXK2BME.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "E3A2FAQ7KZXK2BME.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "E3A2FAQ7KZXK2BME.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "E3A2FAQ7KZXK2BME", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "E3A2FAQ7KZXK2BME.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "E3A2FAQ7KZXK2BME.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "333139" - }, - "appliesTo" : [ ] - }, - "E3A2FAQ7KZXK2BME.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "E3A2FAQ7KZXK2BME.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "E3A2FAQ7KZXK2BME.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "E3A2FAQ7KZXK2BME", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "E3A2FAQ7KZXK2BME.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "E3A2FAQ7KZXK2BME.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "12.9820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "E3A2FAQ7KZXK2BME.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "E3A2FAQ7KZXK2BME", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "E3A2FAQ7KZXK2BME.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "E3A2FAQ7KZXK2BME.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "343868" - }, - "appliesTo" : [ ] - }, - "E3A2FAQ7KZXK2BME.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "E3A2FAQ7KZXK2BME.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "E3A2FAQ7KZXK2BME.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "E3A2FAQ7KZXK2BME", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "E3A2FAQ7KZXK2BME.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "E3A2FAQ7KZXK2BME.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.4040000000" - }, - "appliesTo" : [ ] - }, - "E3A2FAQ7KZXK2BME.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "E3A2FAQ7KZXK2BME.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "168291" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "E3A2FAQ7KZXK2BME.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "E3A2FAQ7KZXK2BME", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "E3A2FAQ7KZXK2BME.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "E3A2FAQ7KZXK2BME.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.8230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "E3A2FAQ7KZXK2BME.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "E3A2FAQ7KZXK2BME", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "E3A2FAQ7KZXK2BME.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "E3A2FAQ7KZXK2BME.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "68219" - }, - "appliesTo" : [ ] - }, - "E3A2FAQ7KZXK2BME.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "E3A2FAQ7KZXK2BME.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.7880000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "E3A2FAQ7KZXK2BME.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "E3A2FAQ7KZXK2BME", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "E3A2FAQ7KZXK2BME.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "E3A2FAQ7KZXK2BME.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "65391" - }, - "appliesTo" : [ ] - }, - "E3A2FAQ7KZXK2BME.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "E3A2FAQ7KZXK2BME.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4650000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "E3A2FAQ7KZXK2BME.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "E3A2FAQ7KZXK2BME", - "effectiveDate" : "2017-06-30T23:59:59Z", - "priceDimensions" : { - "E3A2FAQ7KZXK2BME.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "E3A2FAQ7KZXK2BME.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), x1.16xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.1450000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "53K4ZCP8C6KM9F2C" : { - "53K4ZCP8C6KM9F2C.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "53K4ZCP8C6KM9F2C", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "53K4ZCP8C6KM9F2C.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "53K4ZCP8C6KM9F2C.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1271" - }, - "appliesTo" : [ ] - }, - "53K4ZCP8C6KM9F2C.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "53K4ZCP8C6KM9F2C.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0780000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "53K4ZCP8C6KM9F2C.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "53K4ZCP8C6KM9F2C", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "53K4ZCP8C6KM9F2C.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "53K4ZCP8C6KM9F2C.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "53K4ZCP8C6KM9F2C.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "53K4ZCP8C6KM9F2C.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1919" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "53K4ZCP8C6KM9F2C.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "53K4ZCP8C6KM9F2C", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "53K4ZCP8C6KM9F2C.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "53K4ZCP8C6KM9F2C.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2610000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "53K4ZCP8C6KM9F2C.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "53K4ZCP8C6KM9F2C", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "53K4ZCP8C6KM9F2C.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "53K4ZCP8C6KM9F2C.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3644" - }, - "appliesTo" : [ ] - }, - "53K4ZCP8C6KM9F2C.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "53K4ZCP8C6KM9F2C.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0750000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "53K4ZCP8C6KM9F2C.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "53K4ZCP8C6KM9F2C", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "53K4ZCP8C6KM9F2C.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "53K4ZCP8C6KM9F2C.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "53K4ZCP8C6KM9F2C.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "53K4ZCP8C6KM9F2C", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "53K4ZCP8C6KM9F2C.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "53K4ZCP8C6KM9F2C.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4122" - }, - "appliesTo" : [ ] - }, - "53K4ZCP8C6KM9F2C.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "53K4ZCP8C6KM9F2C.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "53K4ZCP8C6KM9F2C.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "53K4ZCP8C6KM9F2C", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "53K4ZCP8C6KM9F2C.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "53K4ZCP8C6KM9F2C.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5502" - }, - "appliesTo" : [ ] - }, - "53K4ZCP8C6KM9F2C.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "53K4ZCP8C6KM9F2C.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "53K4ZCP8C6KM9F2C.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "53K4ZCP8C6KM9F2C", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "53K4ZCP8C6KM9F2C.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "53K4ZCP8C6KM9F2C.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2631" - }, - "appliesTo" : [ ] - }, - "53K4ZCP8C6KM9F2C.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "53K4ZCP8C6KM9F2C.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), r3.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0670000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "96UUST8GZ7QZZ2Z3" : { - "96UUST8GZ7QZZ2Z3.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "96UUST8GZ7QZZ2Z3", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "96UUST8GZ7QZZ2Z3.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "96UUST8GZ7QZZ2Z3.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "66107" - }, - "appliesTo" : [ ] - }, - "96UUST8GZ7QZZ2Z3.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "96UUST8GZ7QZZ2Z3.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.5470000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "96UUST8GZ7QZZ2Z3.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "96UUST8GZ7QZZ2Z3", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "96UUST8GZ7QZZ2Z3.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "96UUST8GZ7QZZ2Z3.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "131931" - }, - "appliesTo" : [ ] - }, - "96UUST8GZ7QZZ2Z3.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "96UUST8GZ7QZZ2Z3.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "96UUST8GZ7QZZ2Z3.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "96UUST8GZ7QZZ2Z3", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "96UUST8GZ7QZZ2Z3.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "96UUST8GZ7QZZ2Z3.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.3690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "96UUST8GZ7QZZ2Z3.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "96UUST8GZ7QZZ2Z3", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "96UUST8GZ7QZZ2Z3.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "96UUST8GZ7QZZ2Z3.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.1790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "96UUST8GZ7QZZ2Z3.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "96UUST8GZ7QZZ2Z3", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "96UUST8GZ7QZZ2Z3.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "96UUST8GZ7QZZ2Z3.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "391617" - }, - "appliesTo" : [ ] - }, - "96UUST8GZ7QZZ2Z3.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "96UUST8GZ7QZZ2Z3.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "96UUST8GZ7QZZ2Z3.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "96UUST8GZ7QZZ2Z3", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "96UUST8GZ7QZZ2Z3.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "96UUST8GZ7QZZ2Z3.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "192790" - }, - "appliesTo" : [ ] - }, - "96UUST8GZ7QZZ2Z3.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "96UUST8GZ7QZZ2Z3.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.3360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "96UUST8GZ7QZZ2Z3.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "96UUST8GZ7QZZ2Z3", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "96UUST8GZ7QZZ2Z3.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "96UUST8GZ7QZZ2Z3.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.4650000000" - }, - "appliesTo" : [ ] - }, - "96UUST8GZ7QZZ2Z3.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "96UUST8GZ7QZZ2Z3.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "196192" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "96UUST8GZ7QZZ2Z3.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "96UUST8GZ7QZZ2Z3", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "96UUST8GZ7QZZ2Z3.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "96UUST8GZ7QZZ2Z3.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "383688" - }, - "appliesTo" : [ ] - }, - "96UUST8GZ7QZZ2Z3.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "96UUST8GZ7QZZ2Z3.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "96UUST8GZ7QZZ2Z3.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "96UUST8GZ7QZZ2Z3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "96UUST8GZ7QZZ2Z3.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "96UUST8GZ7QZZ2Z3.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "134016" - }, - "appliesTo" : [ ] - }, - "96UUST8GZ7QZZ2Z3.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "96UUST8GZ7QZZ2Z3.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "96UUST8GZ7QZZ2Z3.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "96UUST8GZ7QZZ2Z3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "96UUST8GZ7QZZ2Z3.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "96UUST8GZ7QZZ2Z3.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "67171" - }, - "appliesTo" : [ ] - }, - "96UUST8GZ7QZZ2Z3.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "96UUST8GZ7QZZ2Z3.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "7.6680000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "96UUST8GZ7QZZ2Z3.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "96UUST8GZ7QZZ2Z3", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "96UUST8GZ7QZZ2Z3.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "96UUST8GZ7QZZ2Z3.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Enterprise (Amazon VPC), g2.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "15.4290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "UEMM3EBWG9B8QGPK" : { - "UEMM3EBWG9B8QGPK.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "UEMM3EBWG9B8QGPK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "UEMM3EBWG9B8QGPK.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "UEMM3EBWG9B8QGPK.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.9936000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "UEMM3EBWG9B8QGPK.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "UEMM3EBWG9B8QGPK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "UEMM3EBWG9B8QGPK.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "UEMM3EBWG9B8QGPK.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10512" - }, - "appliesTo" : [ ] - }, - "UEMM3EBWG9B8QGPK.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "UEMM3EBWG9B8QGPK.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "UEMM3EBWG9B8QGPK.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "UEMM3EBWG9B8QGPK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "UEMM3EBWG9B8QGPK.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "UEMM3EBWG9B8QGPK.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4600000000" - }, - "appliesTo" : [ ] - }, - "UEMM3EBWG9B8QGPK.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "UEMM3EBWG9B8QGPK.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12089" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "UEMM3EBWG9B8QGPK.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "UEMM3EBWG9B8QGPK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "UEMM3EBWG9B8QGPK.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "UEMM3EBWG9B8QGPK.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19763" - }, - "appliesTo" : [ ] - }, - "UEMM3EBWG9B8QGPK.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "UEMM3EBWG9B8QGPK.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "UEMM3EBWG9B8QGPK.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "UEMM3EBWG9B8QGPK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "UEMM3EBWG9B8QGPK.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "UEMM3EBWG9B8QGPK.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10130" - }, - "appliesTo" : [ ] - }, - "UEMM3EBWG9B8QGPK.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "UEMM3EBWG9B8QGPK.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "UEMM3EBWG9B8QGPK.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "UEMM3EBWG9B8QGPK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UEMM3EBWG9B8QGPK.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "UEMM3EBWG9B8QGPK.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5944" - }, - "appliesTo" : [ ] - }, - "UEMM3EBWG9B8QGPK.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "UEMM3EBWG9B8QGPK.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6785000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "UEMM3EBWG9B8QGPK.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "UEMM3EBWG9B8QGPK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "UEMM3EBWG9B8QGPK.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "UEMM3EBWG9B8QGPK.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.2390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "UEMM3EBWG9B8QGPK.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "UEMM3EBWG9B8QGPK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UEMM3EBWG9B8QGPK.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "UEMM3EBWG9B8QGPK.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4249000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "UEMM3EBWG9B8QGPK.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "UEMM3EBWG9B8QGPK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "UEMM3EBWG9B8QGPK.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "UEMM3EBWG9B8QGPK.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "23694" - }, - "appliesTo" : [ ] - }, - "UEMM3EBWG9B8QGPK.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "UEMM3EBWG9B8QGPK.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "UEMM3EBWG9B8QGPK.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "UEMM3EBWG9B8QGPK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "UEMM3EBWG9B8QGPK.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "UEMM3EBWG9B8QGPK.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5168" - }, - "appliesTo" : [ ] - }, - "UEMM3EBWG9B8QGPK.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "UEMM3EBWG9B8QGPK.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "UEMM3EBWG9B8QGPK.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "UEMM3EBWG9B8QGPK", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "UEMM3EBWG9B8QGPK.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "UEMM3EBWG9B8QGPK.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8640000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "UEMM3EBWG9B8QGPK.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "UEMM3EBWG9B8QGPK", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "UEMM3EBWG9B8QGPK.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "UEMM3EBWG9B8QGPK.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), m4.10xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "UEMM3EBWG9B8QGPK.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "UEMM3EBWG9B8QGPK.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11650" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - } - }, - "SYFUF8QKH77BHGHX" : { - "SYFUF8QKH77BHGHX.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "SYFUF8QKH77BHGHX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SYFUF8QKH77BHGHX.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "SYFUF8QKH77BHGHX.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "433" - }, - "appliesTo" : [ ] - }, - "SYFUF8QKH77BHGHX.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "SYFUF8QKH77BHGHX.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0160000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "SYFUF8QKH77BHGHX.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "SYFUF8QKH77BHGHX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SYFUF8QKH77BHGHX.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "SYFUF8QKH77BHGHX.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "815" - }, - "appliesTo" : [ ] - }, - "SYFUF8QKH77BHGHX.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "SYFUF8QKH77BHGHX.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SYFUF8QKH77BHGHX.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "SYFUF8QKH77BHGHX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SYFUF8QKH77BHGHX.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "SYFUF8QKH77BHGHX.6QCMYABX3D.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "SYFUF8QKH77BHGHX.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "SYFUF8QKH77BHGHX.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "438" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "SYFUF8QKH77BHGHX.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "SYFUF8QKH77BHGHX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SYFUF8QKH77BHGHX.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "SYFUF8QKH77BHGHX.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0540000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SYFUF8QKH77BHGHX.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "SYFUF8QKH77BHGHX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SYFUF8QKH77BHGHX.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "SYFUF8QKH77BHGHX.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "SYFUF8QKH77BHGHX.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "SYFUF8QKH77BHGHX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "SYFUF8QKH77BHGHX.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "SYFUF8QKH77BHGHX.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows BYOL (Amazon VPC), c5.large reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0260000000" - }, - "appliesTo" : [ ] - }, - "SYFUF8QKH77BHGHX.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "SYFUF8QKH77BHGHX.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "223" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "35AEEWH98DECPC35" : { - "35AEEWH98DECPC35.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "35AEEWH98DECPC35", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "35AEEWH98DECPC35.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "35AEEWH98DECPC35.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "876" - }, - "appliesTo" : [ ] - }, - "35AEEWH98DECPC35.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "35AEEWH98DECPC35.6QCMYABX3D.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "35AEEWH98DECPC35.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "35AEEWH98DECPC35", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "35AEEWH98DECPC35.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "35AEEWH98DECPC35.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "447" - }, - "appliesTo" : [ ] - }, - "35AEEWH98DECPC35.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "35AEEWH98DECPC35.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "35AEEWH98DECPC35.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "35AEEWH98DECPC35", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "35AEEWH98DECPC35.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "35AEEWH98DECPC35.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "999" - }, - "appliesTo" : [ ] - }, - "35AEEWH98DECPC35.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "35AEEWH98DECPC35.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0380000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "35AEEWH98DECPC35.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "35AEEWH98DECPC35", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "35AEEWH98DECPC35.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "35AEEWH98DECPC35.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1629" - }, - "appliesTo" : [ ] - }, - "35AEEWH98DECPC35.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "35AEEWH98DECPC35.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "35AEEWH98DECPC35.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "35AEEWH98DECPC35", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "35AEEWH98DECPC35.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "35AEEWH98DECPC35.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1230000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "35AEEWH98DECPC35.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "35AEEWH98DECPC35", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "35AEEWH98DECPC35.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "35AEEWH98DECPC35.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "867" - }, - "appliesTo" : [ ] - }, - "35AEEWH98DECPC35.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "35AEEWH98DECPC35.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0330000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "35AEEWH98DECPC35.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "35AEEWH98DECPC35", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "35AEEWH98DECPC35.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "35AEEWH98DECPC35.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1957" - }, - "appliesTo" : [ ] - }, - "35AEEWH98DECPC35.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "35AEEWH98DECPC35.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "35AEEWH98DECPC35.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "35AEEWH98DECPC35", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "35AEEWH98DECPC35.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "35AEEWH98DECPC35.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "514" - }, - "appliesTo" : [ ] - }, - "35AEEWH98DECPC35.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "35AEEWH98DECPC35.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0590000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "35AEEWH98DECPC35.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "35AEEWH98DECPC35", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "35AEEWH98DECPC35.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "35AEEWH98DECPC35.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "35AEEWH98DECPC35.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "35AEEWH98DECPC35", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "35AEEWH98DECPC35.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "35AEEWH98DECPC35.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0820000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "35AEEWH98DECPC35.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "35AEEWH98DECPC35", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "35AEEWH98DECPC35.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "35AEEWH98DECPC35.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1007" - }, - "appliesTo" : [ ] - }, - "35AEEWH98DECPC35.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "35AEEWH98DECPC35.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "35AEEWH98DECPC35.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "35AEEWH98DECPC35", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "35AEEWH98DECPC35.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "35AEEWH98DECPC35.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), c5.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "CBEVSDJQW44MTAH9" : { - "CBEVSDJQW44MTAH9.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "CBEVSDJQW44MTAH9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CBEVSDJQW44MTAH9.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "CBEVSDJQW44MTAH9.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2003" - }, - "appliesTo" : [ ] - }, - "CBEVSDJQW44MTAH9.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "CBEVSDJQW44MTAH9.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2287000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CBEVSDJQW44MTAH9.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "CBEVSDJQW44MTAH9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CBEVSDJQW44MTAH9.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "CBEVSDJQW44MTAH9.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10155" - }, - "appliesTo" : [ ] - }, - "CBEVSDJQW44MTAH9.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "CBEVSDJQW44MTAH9.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CBEVSDJQW44MTAH9.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "CBEVSDJQW44MTAH9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CBEVSDJQW44MTAH9.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "CBEVSDJQW44MTAH9.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5113" - }, - "appliesTo" : [ ] - }, - "CBEVSDJQW44MTAH9.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "CBEVSDJQW44MTAH9.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1945000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "CBEVSDJQW44MTAH9.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "CBEVSDJQW44MTAH9", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "CBEVSDJQW44MTAH9.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "CBEVSDJQW44MTAH9.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "9597" - }, - "appliesTo" : [ ] - }, - "CBEVSDJQW44MTAH9.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "CBEVSDJQW44MTAH9.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CBEVSDJQW44MTAH9.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "CBEVSDJQW44MTAH9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CBEVSDJQW44MTAH9.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "CBEVSDJQW44MTAH9.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4675000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CBEVSDJQW44MTAH9.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "CBEVSDJQW44MTAH9", - "effectiveDate" : "2016-10-31T23:59:59Z", - "priceDimensions" : { - "CBEVSDJQW44MTAH9.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "CBEVSDJQW44MTAH9.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4891" - }, - "appliesTo" : [ ] - }, - "CBEVSDJQW44MTAH9.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "CBEVSDJQW44MTAH9.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CBEVSDJQW44MTAH9.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "CBEVSDJQW44MTAH9", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "CBEVSDJQW44MTAH9.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "CBEVSDJQW44MTAH9.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2150000000" - }, - "appliesTo" : [ ] - }, - "CBEVSDJQW44MTAH9.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "CBEVSDJQW44MTAH9.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1887" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "CBEVSDJQW44MTAH9.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "CBEVSDJQW44MTAH9", - "effectiveDate" : "2017-03-31T23:59:59Z", - "priceDimensions" : { - "CBEVSDJQW44MTAH9.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "CBEVSDJQW44MTAH9.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3743" - }, - "appliesTo" : [ ] - }, - "CBEVSDJQW44MTAH9.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "CBEVSDJQW44MTAH9.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "CBEVSDJQW44MTAH9.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "CBEVSDJQW44MTAH9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CBEVSDJQW44MTAH9.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "CBEVSDJQW44MTAH9.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3998000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "CBEVSDJQW44MTAH9.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "CBEVSDJQW44MTAH9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CBEVSDJQW44MTAH9.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "CBEVSDJQW44MTAH9.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3809000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "CBEVSDJQW44MTAH9.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "CBEVSDJQW44MTAH9", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "CBEVSDJQW44MTAH9.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "CBEVSDJQW44MTAH9.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3971" - }, - "appliesTo" : [ ] - }, - "CBEVSDJQW44MTAH9.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "CBEVSDJQW44MTAH9.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "CBEVSDJQW44MTAH9.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "CBEVSDJQW44MTAH9", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "CBEVSDJQW44MTAH9.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "CBEVSDJQW44MTAH9.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4398000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - } - }, - "Q9SS9CE4RXPCX5KG" : { - "Q9SS9CE4RXPCX5KG.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "Q9SS9CE4RXPCX5KG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q9SS9CE4RXPCX5KG.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "Q9SS9CE4RXPCX5KG.VJWZNREJX2.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "Q9SS9CE4RXPCX5KG.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "Q9SS9CE4RXPCX5KG.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2014" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Q9SS9CE4RXPCX5KG.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "Q9SS9CE4RXPCX5KG", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "Q9SS9CE4RXPCX5KG.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "Q9SS9CE4RXPCX5KG.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "888" - }, - "appliesTo" : [ ] - }, - "Q9SS9CE4RXPCX5KG.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "Q9SS9CE4RXPCX5KG.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1010000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q9SS9CE4RXPCX5KG.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "Q9SS9CE4RXPCX5KG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Q9SS9CE4RXPCX5KG.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "Q9SS9CE4RXPCX5KG.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2116" - }, - "appliesTo" : [ ] - }, - "Q9SS9CE4RXPCX5KG.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "Q9SS9CE4RXPCX5KG.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0810000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q9SS9CE4RXPCX5KG.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "Q9SS9CE4RXPCX5KG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Q9SS9CE4RXPCX5KG.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "Q9SS9CE4RXPCX5KG.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4146" - }, - "appliesTo" : [ ] - }, - "Q9SS9CE4RXPCX5KG.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "Q9SS9CE4RXPCX5KG.MZU6U2429S.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "Q9SS9CE4RXPCX5KG.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "Q9SS9CE4RXPCX5KG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Q9SS9CE4RXPCX5KG.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "Q9SS9CE4RXPCX5KG.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Q9SS9CE4RXPCX5KG.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "Q9SS9CE4RXPCX5KG", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "Q9SS9CE4RXPCX5KG.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "Q9SS9CE4RXPCX5KG.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1028" - }, - "appliesTo" : [ ] - }, - "Q9SS9CE4RXPCX5KG.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "Q9SS9CE4RXPCX5KG.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q9SS9CE4RXPCX5KG.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "Q9SS9CE4RXPCX5KG", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "Q9SS9CE4RXPCX5KG.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "Q9SS9CE4RXPCX5KG.7NE97W5U4E.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2460000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Q9SS9CE4RXPCX5KG.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "Q9SS9CE4RXPCX5KG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Q9SS9CE4RXPCX5KG.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "Q9SS9CE4RXPCX5KG.4NA7Y494T4.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2140000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "Q9SS9CE4RXPCX5KG.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "Q9SS9CE4RXPCX5KG", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "Q9SS9CE4RXPCX5KG.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "Q9SS9CE4RXPCX5KG.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1845" - }, - "appliesTo" : [ ] - }, - "Q9SS9CE4RXPCX5KG.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "Q9SS9CE4RXPCX5KG.38NPMPTW36.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "Q9SS9CE4RXPCX5KG.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "Q9SS9CE4RXPCX5KG", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "Q9SS9CE4RXPCX5KG.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "Q9SS9CE4RXPCX5KG.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1740000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "Q9SS9CE4RXPCX5KG.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "Q9SS9CE4RXPCX5KG", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "Q9SS9CE4RXPCX5KG.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "Q9SS9CE4RXPCX5KG.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3468" - }, - "appliesTo" : [ ] - }, - "Q9SS9CE4RXPCX5KG.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "Q9SS9CE4RXPCX5KG.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "Q9SS9CE4RXPCX5KG.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "Q9SS9CE4RXPCX5KG", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "Q9SS9CE4RXPCX5KG.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "Q9SS9CE4RXPCX5KG.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1741" - }, - "appliesTo" : [ ] - }, - "Q9SS9CE4RXPCX5KG.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "Q9SS9CE4RXPCX5KG.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Linux/UNIX (Amazon VPC), i3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - } - }, - "JEV4RPZQUJDFUUG5" : { - "JEV4RPZQUJDFUUG5.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "JEV4RPZQUJDFUUG5", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "JEV4RPZQUJDFUUG5.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "JEV4RPZQUJDFUUG5.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8130000000" - }, - "appliesTo" : [ ] - }, - "JEV4RPZQUJDFUUG5.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "JEV4RPZQUJDFUUG5.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "13216" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "JEV4RPZQUJDFUUG5.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "JEV4RPZQUJDFUUG5", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "JEV4RPZQUJDFUUG5.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "JEV4RPZQUJDFUUG5.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "JEV4RPZQUJDFUUG5.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "JEV4RPZQUJDFUUG5.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "19928" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JEV4RPZQUJDFUUG5.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "JEV4RPZQUJDFUUG5", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "JEV4RPZQUJDFUUG5.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "JEV4RPZQUJDFUUG5.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "56075" - }, - "appliesTo" : [ ] - }, - "JEV4RPZQUJDFUUG5.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "JEV4RPZQUJDFUUG5.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "JEV4RPZQUJDFUUG5.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "JEV4RPZQUJDFUUG5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JEV4RPZQUJDFUUG5.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "JEV4RPZQUJDFUUG5.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "32004" - }, - "appliesTo" : [ ] - }, - "JEV4RPZQUJDFUUG5.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "JEV4RPZQUJDFUUG5.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "JEV4RPZQUJDFUUG5.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "JEV4RPZQUJDFUUG5", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "JEV4RPZQUJDFUUG5.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "JEV4RPZQUJDFUUG5.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.7170000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "JEV4RPZQUJDFUUG5.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "JEV4RPZQUJDFUUG5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JEV4RPZQUJDFUUG5.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "JEV4RPZQUJDFUUG5.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.8430000000" - }, - "appliesTo" : [ ] - }, - "JEV4RPZQUJDFUUG5.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "JEV4RPZQUJDFUUG5.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "16147" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "JEV4RPZQUJDFUUG5.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "JEV4RPZQUJDFUUG5", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "JEV4RPZQUJDFUUG5.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "JEV4RPZQUJDFUUG5.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.7690000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "JEV4RPZQUJDFUUG5.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "JEV4RPZQUJDFUUG5", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "JEV4RPZQUJDFUUG5.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "JEV4RPZQUJDFUUG5.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "JEV4RPZQUJDFUUG5.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "JEV4RPZQUJDFUUG5.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "50018" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "JEV4RPZQUJDFUUG5.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "JEV4RPZQUJDFUUG5", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "JEV4RPZQUJDFUUG5.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "JEV4RPZQUJDFUUG5.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.5500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "JEV4RPZQUJDFUUG5.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "JEV4RPZQUJDFUUG5", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "JEV4RPZQUJDFUUG5.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "JEV4RPZQUJDFUUG5.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "37181" - }, - "appliesTo" : [ ] - }, - "JEV4RPZQUJDFUUG5.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "JEV4RPZQUJDFUUG5.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7630000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "JEV4RPZQUJDFUUG5.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "JEV4RPZQUJDFUUG5", - "effectiveDate" : "2015-12-31T23:59:59Z", - "priceDimensions" : { - "JEV4RPZQUJDFUUG5.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "JEV4RPZQUJDFUUG5.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "34653" - }, - "appliesTo" : [ ] - }, - "JEV4RPZQUJDFUUG5.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "JEV4RPZQUJDFUUG5.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), r3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "XKP8XXFGKBFRSGFX" : { - "XKP8XXFGKBFRSGFX.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "XKP8XXFGKBFRSGFX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XKP8XXFGKBFRSGFX.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "XKP8XXFGKBFRSGFX.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1152" - }, - "appliesTo" : [ ] - }, - "XKP8XXFGKBFRSGFX.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "XKP8XXFGKBFRSGFX.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XKP8XXFGKBFRSGFX.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "XKP8XXFGKBFRSGFX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XKP8XXFGKBFRSGFX.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "XKP8XXFGKBFRSGFX.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "XKP8XXFGKBFRSGFX.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "XKP8XXFGKBFRSGFX.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3482" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XKP8XXFGKBFRSGFX.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "XKP8XXFGKBFRSGFX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XKP8XXFGKBFRSGFX.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "XKP8XXFGKBFRSGFX.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6593" - }, - "appliesTo" : [ ] - }, - "XKP8XXFGKBFRSGFX.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "XKP8XXFGKBFRSGFX.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XKP8XXFGKBFRSGFX.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "XKP8XXFGKBFRSGFX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XKP8XXFGKBFRSGFX.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "XKP8XXFGKBFRSGFX.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2829" - }, - "appliesTo" : [ ] - }, - "XKP8XXFGKBFRSGFX.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "XKP8XXFGKBFRSGFX.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "XKP8XXFGKBFRSGFX.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "XKP8XXFGKBFRSGFX", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "XKP8XXFGKBFRSGFX.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "XKP8XXFGKBFRSGFX.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8159" - }, - "appliesTo" : [ ] - }, - "XKP8XXFGKBFRSGFX.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "XKP8XXFGKBFRSGFX.MZU6U2429S.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "XKP8XXFGKBFRSGFX.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "XKP8XXFGKBFRSGFX", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "XKP8XXFGKBFRSGFX.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "XKP8XXFGKBFRSGFX.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3710000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "XKP8XXFGKBFRSGFX.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "XKP8XXFGKBFRSGFX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XKP8XXFGKBFRSGFX.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "XKP8XXFGKBFRSGFX.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1754" - }, - "appliesTo" : [ ] - }, - "XKP8XXFGKBFRSGFX.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "XKP8XXFGKBFRSGFX.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XKP8XXFGKBFRSGFX.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "XKP8XXFGKBFRSGFX", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "XKP8XXFGKBFRSGFX.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "XKP8XXFGKBFRSGFX.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "XKP8XXFGKBFRSGFX.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "XKP8XXFGKBFRSGFX", - "effectiveDate" : "2016-08-31T23:59:59Z", - "priceDimensions" : { - "XKP8XXFGKBFRSGFX.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "XKP8XXFGKBFRSGFX.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1930000000" - }, - "appliesTo" : [ ] - }, - "XKP8XXFGKBFRSGFX.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "XKP8XXFGKBFRSGFX.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3260" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "XKP8XXFGKBFRSGFX.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "XKP8XXFGKBFRSGFX", - "effectiveDate" : "2015-04-30T23:59:59Z", - "priceDimensions" : { - "XKP8XXFGKBFRSGFX.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "XKP8XXFGKBFRSGFX.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "2809" - }, - "appliesTo" : [ ] - }, - "XKP8XXFGKBFRSGFX.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "XKP8XXFGKBFRSGFX.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1600000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "XKP8XXFGKBFRSGFX.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "XKP8XXFGKBFRSGFX", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "XKP8XXFGKBFRSGFX.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "XKP8XXFGKBFRSGFX.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Web (Amazon VPC), c3.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - } - }, - "BGU9UG7QCNNGBKAB" : { - "BGU9UG7QCNNGBKAB.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "BGU9UG7QCNNGBKAB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BGU9UG7QCNNGBKAB.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "BGU9UG7QCNNGBKAB.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.8900000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BGU9UG7QCNNGBKAB.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "BGU9UG7QCNNGBKAB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "BGU9UG7QCNNGBKAB.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "BGU9UG7QCNNGBKAB.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7980000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BGU9UG7QCNNGBKAB.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "BGU9UG7QCNNGBKAB", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "BGU9UG7QCNNGBKAB.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "BGU9UG7QCNNGBKAB.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6634" - }, - "appliesTo" : [ ] - }, - "BGU9UG7QCNNGBKAB.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "BGU9UG7QCNNGBKAB.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BGU9UG7QCNNGBKAB.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "BGU9UG7QCNNGBKAB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "BGU9UG7QCNNGBKAB.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "BGU9UG7QCNNGBKAB.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7120000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BGU9UG7QCNNGBKAB.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "BGU9UG7QCNNGBKAB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BGU9UG7QCNNGBKAB.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "BGU9UG7QCNNGBKAB.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "BGU9UG7QCNNGBKAB.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "BGU9UG7QCNNGBKAB.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "7387" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BGU9UG7QCNNGBKAB.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "BGU9UG7QCNNGBKAB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "BGU9UG7QCNNGBKAB.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "BGU9UG7QCNNGBKAB.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15334" - }, - "appliesTo" : [ ] - }, - "BGU9UG7QCNNGBKAB.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "BGU9UG7QCNNGBKAB.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BGU9UG7QCNNGBKAB.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "BGU9UG7QCNNGBKAB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "BGU9UG7QCNNGBKAB.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "BGU9UG7QCNNGBKAB.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.6430000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BGU9UG7QCNNGBKAB.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "BGU9UG7QCNNGBKAB", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BGU9UG7QCNNGBKAB.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "BGU9UG7QCNNGBKAB.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3368" - }, - "appliesTo" : [ ] - }, - "BGU9UG7QCNNGBKAB.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "BGU9UG7QCNNGBKAB.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3840000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BGU9UG7QCNNGBKAB.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "BGU9UG7QCNNGBKAB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "BGU9UG7QCNNGBKAB.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "BGU9UG7QCNNGBKAB.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8840" - }, - "appliesTo" : [ ] - }, - "BGU9UG7QCNNGBKAB.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "BGU9UG7QCNNGBKAB.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3360000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BGU9UG7QCNNGBKAB.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "BGU9UG7QCNNGBKAB", - "effectiveDate" : "2016-09-30T23:59:59Z", - "priceDimensions" : { - "BGU9UG7QCNNGBKAB.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "BGU9UG7QCNNGBKAB.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "8002" - }, - "appliesTo" : [ ] - }, - "BGU9UG7QCNNGBKAB.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "BGU9UG7QCNNGBKAB.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.3040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BGU9UG7QCNNGBKAB.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "BGU9UG7QCNNGBKAB", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "BGU9UG7QCNNGBKAB.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "BGU9UG7QCNNGBKAB.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "17423" - }, - "appliesTo" : [ ] - }, - "BGU9UG7QCNNGBKAB.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "BGU9UG7QCNNGBKAB.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BGU9UG7QCNNGBKAB.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "BGU9UG7QCNNGBKAB", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BGU9UG7QCNNGBKAB.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "BGU9UG7QCNNGBKAB.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3753" - }, - "appliesTo" : [ ] - }, - "BGU9UG7QCNNGBKAB.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "BGU9UG7QCNNGBKAB.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows (Amazon VPC), p2.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4280000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "X6PQNCEPYKKQHDCA" : { - "X6PQNCEPYKKQHDCA.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "X6PQNCEPYKKQHDCA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X6PQNCEPYKKQHDCA.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "X6PQNCEPYKKQHDCA.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "5.1060000000" - }, - "appliesTo" : [ ] - }, - "X6PQNCEPYKKQHDCA.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "X6PQNCEPYKKQHDCA.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "43586" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "X6PQNCEPYKKQHDCA.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "X6PQNCEPYKKQHDCA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X6PQNCEPYKKQHDCA.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "X6PQNCEPYKKQHDCA.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "10.5390000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "X6PQNCEPYKKQHDCA.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "X6PQNCEPYKKQHDCA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "X6PQNCEPYKKQHDCA.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "X6PQNCEPYKKQHDCA.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "195497" - }, - "appliesTo" : [ ] - }, - "X6PQNCEPYKKQHDCA.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "X6PQNCEPYKKQHDCA.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "X6PQNCEPYKKQHDCA.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "X6PQNCEPYKKQHDCA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "X6PQNCEPYKKQHDCA.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "X6PQNCEPYKKQHDCA.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "9.2790000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "X6PQNCEPYKKQHDCA.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "X6PQNCEPYKKQHDCA", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "X6PQNCEPYKKQHDCA.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "X6PQNCEPYKKQHDCA.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "86707" - }, - "appliesTo" : [ ] - }, - "X6PQNCEPYKKQHDCA.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "X6PQNCEPYKKQHDCA.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "X6PQNCEPYKKQHDCA.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "X6PQNCEPYKKQHDCA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "X6PQNCEPYKKQHDCA.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "X6PQNCEPYKKQHDCA.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "38332" - }, - "appliesTo" : [ ] - }, - "X6PQNCEPYKKQHDCA.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "X6PQNCEPYKKQHDCA.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "4.5060000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "X6PQNCEPYKKQHDCA.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "X6PQNCEPYKKQHDCA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "X6PQNCEPYKKQHDCA.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "X6PQNCEPYKKQHDCA.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "8.1040000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "X6PQNCEPYKKQHDCA.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "X6PQNCEPYKKQHDCA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "X6PQNCEPYKKQHDCA.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "X6PQNCEPYKKQHDCA.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "146179" - }, - "appliesTo" : [ ] - }, - "X6PQNCEPYKKQHDCA.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "X6PQNCEPYKKQHDCA.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "X6PQNCEPYKKQHDCA.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "X6PQNCEPYKKQHDCA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "X6PQNCEPYKKQHDCA.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "X6PQNCEPYKKQHDCA.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "6.2530000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "X6PQNCEPYKKQHDCA.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "X6PQNCEPYKKQHDCA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "X6PQNCEPYKKQHDCA.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "X6PQNCEPYKKQHDCA.6QCMYABX3D.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "X6PQNCEPYKKQHDCA.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "X6PQNCEPYKKQHDCA.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "76409" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "X6PQNCEPYKKQHDCA.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "X6PQNCEPYKKQHDCA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "X6PQNCEPYKKQHDCA.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "X6PQNCEPYKKQHDCA.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "97787" - }, - "appliesTo" : [ ] - }, - "X6PQNCEPYKKQHDCA.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "X6PQNCEPYKKQHDCA.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "3.8510000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "X6PQNCEPYKKQHDCA.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "X6PQNCEPYKKQHDCA", - "effectiveDate" : "2017-09-30T23:59:59Z", - "priceDimensions" : { - "X6PQNCEPYKKQHDCA.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "X6PQNCEPYKKQHDCA.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "75270" - }, - "appliesTo" : [ ] - }, - "X6PQNCEPYKKQHDCA.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "X6PQNCEPYKKQHDCA.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), p3.8xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "2.9940000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - } - }, - "YRB3EKJ97RGRBWWN" : { - "YRB3EKJ97RGRBWWN.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "YRB3EKJ97RGRBWWN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YRB3EKJ97RGRBWWN.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "YRB3EKJ97RGRBWWN.7NE97W5U4E.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.2050000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YRB3EKJ97RGRBWWN.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "YRB3EKJ97RGRBWWN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YRB3EKJ97RGRBWWN.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "YRB3EKJ97RGRBWWN.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "604" - }, - "appliesTo" : [ ] - }, - "YRB3EKJ97RGRBWWN.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "YRB3EKJ97RGRBWWN.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1290000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "YRB3EKJ97RGRBWWN.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "YRB3EKJ97RGRBWWN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YRB3EKJ97RGRBWWN.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "YRB3EKJ97RGRBWWN.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "4005" - }, - "appliesTo" : [ ] - }, - "YRB3EKJ97RGRBWWN.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "YRB3EKJ97RGRBWWN.MZU6U2429S.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YRB3EKJ97RGRBWWN.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "YRB3EKJ97RGRBWWN", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "YRB3EKJ97RGRBWWN.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "YRB3EKJ97RGRBWWN.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "530" - }, - "appliesTo" : [ ] - }, - "YRB3EKJ97RGRBWWN.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "YRB3EKJ97RGRBWWN.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1210000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YRB3EKJ97RGRBWWN.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "YRB3EKJ97RGRBWWN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YRB3EKJ97RGRBWWN.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "YRB3EKJ97RGRBWWN.4NA7Y494T4.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1860000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YRB3EKJ97RGRBWWN.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "YRB3EKJ97RGRBWWN", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "YRB3EKJ97RGRBWWN.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "YRB3EKJ97RGRBWWN.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1710" - }, - "appliesTo" : [ ] - }, - "YRB3EKJ97RGRBWWN.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "YRB3EKJ97RGRBWWN.VJWZNREJX2.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "YRB3EKJ97RGRBWWN.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "YRB3EKJ97RGRBWWN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YRB3EKJ97RGRBWWN.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "YRB3EKJ97RGRBWWN.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "3627" - }, - "appliesTo" : [ ] - }, - "YRB3EKJ97RGRBWWN.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "YRB3EKJ97RGRBWWN.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YRB3EKJ97RGRBWWN.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "YRB3EKJ97RGRBWWN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YRB3EKJ97RGRBWWN.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "YRB3EKJ97RGRBWWN.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1490000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "YRB3EKJ97RGRBWWN.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "YRB3EKJ97RGRBWWN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YRB3EKJ97RGRBWWN.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "YRB3EKJ97RGRBWWN.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1620000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "YRB3EKJ97RGRBWWN.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "YRB3EKJ97RGRBWWN", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "YRB3EKJ97RGRBWWN.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "YRB3EKJ97RGRBWWN.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1564" - }, - "appliesTo" : [ ] - }, - "YRB3EKJ97RGRBWWN.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "YRB3EKJ97RGRBWWN.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "YRB3EKJ97RGRBWWN.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "YRB3EKJ97RGRBWWN", - "effectiveDate" : "2017-02-28T23:59:59Z", - "priceDimensions" : { - "YRB3EKJ97RGRBWWN.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "YRB3EKJ97RGRBWWN.38NPMPTW36.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1020000000" - }, - "appliesTo" : [ ] - }, - "YRB3EKJ97RGRBWWN.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "YRB3EKJ97RGRBWWN.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1091" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "YRB3EKJ97RGRBWWN.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "YRB3EKJ97RGRBWWN", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "YRB3EKJ97RGRBWWN.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "YRB3EKJ97RGRBWWN.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "1239" - }, - "appliesTo" : [ ] - }, - "YRB3EKJ97RGRBWWN.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "YRB3EKJ97RGRBWWN.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Red Hat Enterprise Linux (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.1070000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } + } + }, + "terms": { + "OnDemand": { + "47GP959QAF69YPG5": { + "47GP959QAF69YPG5.JRTCKXETXF": { + "offerTermCode": "JRTCKXETXF", + "sku": "47GP959QAF69YPG5", + "effectiveDate": "2017-11-01T00:00:00Z", + "priceDimensions": { + "47GP959QAF69YPG5.JRTCKXETXF.6YS6EN2CT7": { + "rateCode": "47GP959QAF69YPG5.JRTCKXETXF.6YS6EN2CT7", + "description": "$0.20 per On Demand Linux m4.xlarge Instance Hour", + "beginRange": "0", + "endRange": "Inf", + "unit": "Hrs", + "pricePerUnit": { + "USD": "0.2000000000" + }, + "appliesTo": [] + } + }, + "termAttributes": {} + } + }, + "J4T9ZF4AJ2DXE7SA": { + "J4T9ZF4AJ2DXE7SA.JRTCKXETXF": { + "offerTermCode": "JRTCKXETXF", + "sku": "J4T9ZF4AJ2DXE7SA", + "effectiveDate": "2017-11-01T00:00:00Z", + "priceDimensions": { + "J4T9ZF4AJ2DXE7SA.JRTCKXETXF.6YS6EN2CT7": { + "rateCode": "J4T9ZF4AJ2DXE7SA.JRTCKXETXF.6YS6EN2CT7", + "description": "$2.00 per On Demand Linux m4.10xlarge Instance Hour", + "beginRange": "0", + "endRange": "Inf", + "unit": "Hrs", + "pricePerUnit": { + "USD": "2.0000000000" + }, + "appliesTo": [] + } + }, + "termAttributes": {} + } + }, + "8VCNEHQMSCQS4P39": { + "8VCNEHQMSCQS4P39.JRTCKXETXF": { + "offerTermCode": "JRTCKXETXF", + "sku": "8VCNEHQMSCQS4P39", + "effectiveDate": "2017-11-01T00:00:00Z", + "priceDimensions": { + "8VCNEHQMSCQS4P39.JRTCKXETXF.6YS6EN2CT7": { + "rateCode": "8VCNEHQMSCQS4P39.JRTCKXETXF.6YS6EN2CT7", + "description": "$0.10 per On Demand Linux m4.large Instance Hour", + "beginRange": "0", + "endRange": "Inf", + "unit": "Hrs", + "pricePerUnit": { + "USD": "0.1000000000" + }, + "appliesTo": [] + } + }, + "termAttributes": {} + } + }, + "ECM8RSBXMC7F4WAS": { + "ECM8RSBXMC7F4WAS.JRTCKXETXF": { + "offerTermCode": "JRTCKXETXF", + "sku": "ECM8RSBXMC7F4WAS", + "effectiveDate": "2017-11-01T00:00:00Z", + "priceDimensions": { + "ECM8RSBXMC7F4WAS.JRTCKXETXF.6YS6EN2CT7": { + "rateCode": "ECM8RSBXMC7F4WAS.JRTCKXETXF.6YS6EN2CT7", + "description": "$3.20 per On Demand Linux m4.16xlarge Instance Hour", + "beginRange": "0", + "endRange": "Inf", + "unit": "Hrs", + "pricePerUnit": { + "USD": "3.2000000000" + }, + "appliesTo": [] + } + }, + "termAttributes": {} + } + }, + "VHC3YWSZ6ZFZPJN4": { + "VHC3YWSZ6ZFZPJN4.JRTCKXETXF": { + "offerTermCode": "JRTCKXETXF", + "sku": "VHC3YWSZ6ZFZPJN4", + "effectiveDate": "2017-11-01T00:00:00Z", + "priceDimensions": { + "VHC3YWSZ6ZFZPJN4.JRTCKXETXF.6YS6EN2CT7": { + "rateCode": "VHC3YWSZ6ZFZPJN4.JRTCKXETXF.6YS6EN2CT7", + "description": "$0.40 per On Demand Linux m4.2xlarge Instance Hour", + "beginRange": "0", + "endRange": "Inf", + "unit": "Hrs", + "pricePerUnit": { + "USD": "0.4000000000" + }, + "appliesTo": [] + } + }, + "termAttributes": {} } }, - "BNQSZ9699GKWMJ72" : { - "BNQSZ9699GKWMJ72.4NA7Y494T4" : { - "offerTermCode" : "4NA7Y494T4", - "sku" : "BNQSZ9699GKWMJ72", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "BNQSZ9699GKWMJ72.4NA7Y494T4.6YS6EN2CT7" : { - "rateCode" : "BNQSZ9699GKWMJ72.4NA7Y494T4.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BNQSZ9699GKWMJ72.38NPMPTW36" : { - "offerTermCode" : "38NPMPTW36", - "sku" : "BNQSZ9699GKWMJ72", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "BNQSZ9699GKWMJ72.38NPMPTW36.2TG2D8R56U" : { - "rateCode" : "BNQSZ9699GKWMJ72.38NPMPTW36.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "11836" - }, - "appliesTo" : [ ] - }, - "BNQSZ9699GKWMJ72.38NPMPTW36.6YS6EN2CT7" : { - "rateCode" : "BNQSZ9699GKWMJ72.38NPMPTW36.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.4500000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BNQSZ9699GKWMJ72.Z2E3P23VKM" : { - "offerTermCode" : "Z2E3P23VKM", - "sku" : "BNQSZ9699GKWMJ72", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "BNQSZ9699GKWMJ72.Z2E3P23VKM.6YS6EN2CT7" : { - "rateCode" : "BNQSZ9699GKWMJ72.Z2E3P23VKM.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.3800000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BNQSZ9699GKWMJ72.NQ3QZPMQV9" : { - "offerTermCode" : "NQ3QZPMQV9", - "sku" : "BNQSZ9699GKWMJ72", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "BNQSZ9699GKWMJ72.NQ3QZPMQV9.2TG2D8R56U" : { - "rateCode" : "BNQSZ9699GKWMJ72.NQ3QZPMQV9.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "22259" - }, - "appliesTo" : [ ] - }, - "BNQSZ9699GKWMJ72.NQ3QZPMQV9.6YS6EN2CT7" : { - "rateCode" : "BNQSZ9699GKWMJ72.NQ3QZPMQV9.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" + "3UP33R2RXCADSPSX": { + "3UP33R2RXCADSPSX.JRTCKXETXF": { + "offerTermCode": "JRTCKXETXF", + "sku": "3UP33R2RXCADSPSX", + "effectiveDate": "2017-11-01T00:00:00Z", + "priceDimensions": { + "3UP33R2RXCADSPSX.JRTCKXETXF.6YS6EN2CT7": { + "rateCode": "3UP33R2RXCADSPSX.JRTCKXETXF.6YS6EN2CT7", + "description": "$0.80 per On Demand Linux m4.4xlarge Instance Hour", + "beginRange": "0", + "endRange": "Inf", + "unit": "Hrs", + "pricePerUnit": { + "USD": "0.8000000000" }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BNQSZ9699GKWMJ72.R5XV2EPZQZ" : { - "offerTermCode" : "R5XV2EPZQZ", - "sku" : "BNQSZ9699GKWMJ72", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "BNQSZ9699GKWMJ72.R5XV2EPZQZ.6YS6EN2CT7" : { - "rateCode" : "BNQSZ9699GKWMJ72.R5XV2EPZQZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5900000000" - }, - "appliesTo" : [ ] - }, - "BNQSZ9699GKWMJ72.R5XV2EPZQZ.2TG2D8R56U" : { - "rateCode" : "BNQSZ9699GKWMJ72.R5XV2EPZQZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "15498" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } - }, - "BNQSZ9699GKWMJ72.6QCMYABX3D" : { - "offerTermCode" : "6QCMYABX3D", - "sku" : "BNQSZ9699GKWMJ72", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "BNQSZ9699GKWMJ72.6QCMYABX3D.2TG2D8R56U" : { - "rateCode" : "BNQSZ9699GKWMJ72.6QCMYABX3D.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "10250" - }, - "appliesTo" : [ ] - }, - "BNQSZ9699GKWMJ72.6QCMYABX3D.6YS6EN2CT7" : { - "rateCode" : "BNQSZ9699GKWMJ72.6QCMYABX3D.6YS6EN2CT7", - "description" : "USD 0.0 per Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "All Upfront" - } - }, - "BNQSZ9699GKWMJ72.HU7G6KETJZ" : { - "offerTermCode" : "HU7G6KETJZ", - "sku" : "BNQSZ9699GKWMJ72", - "effectiveDate" : "2016-11-30T23:59:59Z", - "priceDimensions" : { - "BNQSZ9699GKWMJ72.HU7G6KETJZ.2TG2D8R56U" : { - "rateCode" : "BNQSZ9699GKWMJ72.HU7G6KETJZ.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "5231" - }, - "appliesTo" : [ ] - }, - "BNQSZ9699GKWMJ72.HU7G6KETJZ.6YS6EN2CT7" : { - "rateCode" : "BNQSZ9699GKWMJ72.HU7G6KETJZ.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.5970000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "standard", - "PurchaseOption" : "Partial Upfront" - } - }, - "BNQSZ9699GKWMJ72.BPH4J8HBKS" : { - "offerTermCode" : "BPH4J8HBKS", - "sku" : "BNQSZ9699GKWMJ72", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "BNQSZ9699GKWMJ72.BPH4J8HBKS.6YS6EN2CT7" : { - "rateCode" : "BNQSZ9699GKWMJ72.BPH4J8HBKS.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4080000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "standard", - "PurchaseOption" : "No Upfront" - } - }, - "BNQSZ9699GKWMJ72.7NE97W5U4E" : { - "offerTermCode" : "7NE97W5U4E", - "sku" : "BNQSZ9699GKWMJ72", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BNQSZ9699GKWMJ72.7NE97W5U4E.6YS6EN2CT7" : { - "rateCode" : "BNQSZ9699GKWMJ72.7NE97W5U4E.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "1.4700000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "No Upfront" - } - }, - "BNQSZ9699GKWMJ72.VJWZNREJX2" : { - "offerTermCode" : "VJWZNREJX2", - "sku" : "BNQSZ9699GKWMJ72", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BNQSZ9699GKWMJ72.VJWZNREJX2.2TG2D8R56U" : { - "rateCode" : "BNQSZ9699GKWMJ72.VJWZNREJX2.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "12788" - }, - "appliesTo" : [ ] - }, - "BNQSZ9699GKWMJ72.VJWZNREJX2.6YS6EN2CT7" : { - "rateCode" : "BNQSZ9699GKWMJ72.VJWZNREJX2.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BNQSZ9699GKWMJ72.MZU6U2429S" : { - "offerTermCode" : "MZU6U2429S", - "sku" : "BNQSZ9699GKWMJ72", - "effectiveDate" : "2017-04-30T23:59:59Z", - "priceDimensions" : { - "BNQSZ9699GKWMJ72.MZU6U2429S.6YS6EN2CT7" : { - "rateCode" : "BNQSZ9699GKWMJ72.MZU6U2429S.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.0000000000" - }, - "appliesTo" : [ ] - }, - "BNQSZ9699GKWMJ72.MZU6U2429S.2TG2D8R56U" : { - "rateCode" : "BNQSZ9699GKWMJ72.MZU6U2429S.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "30370" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "3yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "All Upfront" - } - }, - "BNQSZ9699GKWMJ72.CUZHX8X6JH" : { - "offerTermCode" : "CUZHX8X6JH", - "sku" : "BNQSZ9699GKWMJ72", - "effectiveDate" : "2017-10-31T23:59:59Z", - "priceDimensions" : { - "BNQSZ9699GKWMJ72.CUZHX8X6JH.2TG2D8R56U" : { - "rateCode" : "BNQSZ9699GKWMJ72.CUZHX8X6JH.2TG2D8R56U", - "description" : "Upfront Fee", - "unit" : "Quantity", - "pricePerUnit" : { - "USD" : "6407" - }, - "appliesTo" : [ ] - }, - "BNQSZ9699GKWMJ72.CUZHX8X6JH.6YS6EN2CT7" : { - "rateCode" : "BNQSZ9699GKWMJ72.CUZHX8X6JH.6YS6EN2CT7", - "description" : "Windows with SQL Server Standard (Amazon VPC), c4.xlarge reserved instance applied", - "beginRange" : "0", - "endRange" : "Inf", - "unit" : "Hrs", - "pricePerUnit" : { - "USD" : "0.7310000000" - }, - "appliesTo" : [ ] - } - }, - "termAttributes" : { - "LeaseContractLength" : "1yr", - "OfferingClass" : "convertible", - "PurchaseOption" : "Partial Upfront" - } + "appliesTo": [] + } + }, + "termAttributes": {} } } } } -} \ No newline at end of file +} From bcb8ee8abc401aa1712f50dc5ee9f6c8c6b7c01b Mon Sep 17 00:00:00 2001 From: Marc Riegel Date: Mon, 30 Jul 2018 12:09:47 +0200 Subject: [PATCH 20/33] optimized instance info test cases --- .../cloudprovider/aws/api/instance_info.go | 2 +- .../aws/api/instance_info_test.go | 115 +++++++++--------- 2 files changed, 61 insertions(+), 56 deletions(-) diff --git a/cluster-autoscaler/cloudprovider/aws/api/instance_info.go b/cluster-autoscaler/cloudprovider/aws/api/instance_info.go index 909d08fad92f..68d2e8ecf7b4 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/instance_info.go +++ b/cluster-autoscaler/cloudprovider/aws/api/instance_info.go @@ -239,7 +239,7 @@ func (s *instanceInfoService) fetch(availabilityZone string, etag string) (*resp } if res.StatusCode != 200 { - return nil, fmt.Errorf("got unexpected http status code %s with body [%s]", res.StatusCode, string(body)) + return nil, fmt.Errorf("got unexpected http status code %d with body [%s]", res.StatusCode, string(body)) } var data = new(response) diff --git a/cluster-autoscaler/cloudprovider/aws/api/instance_info_test.go b/cluster-autoscaler/cloudprovider/aws/api/instance_info_test.go index ffc91393bd22..ca69635af874 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/instance_info_test.go +++ b/cluster-autoscaler/cloudprovider/aws/api/instance_info_test.go @@ -28,83 +28,88 @@ import ( "github.com/stretchr/testify/assert" ) -var pricingBody []byte -func init() { +func loadMockData(t *testing.T) []byte { + var pricingBody []byte f, err := os.Open("pricing_eu-west-1.json") if err != nil { - panic(err) + t.Fatalf("Failed to open mock file: %v", err) } pricingBody, err = ioutil.ReadAll(f) if err != nil { - panic(err) + t.Fatalf("Failed to load mock file: %v", err) } + + return pricingBody } func TestInstanceInfoService_DescribeInstanceInfo(t *testing.T) { - usEastOneURL, err := url.Parse(fmt.Sprintf(awsPricingAPIURLTemplate, "us-east-1")) - assert.NoError(t, err) - - usWestOneURL, err := url.Parse(fmt.Sprintf(awsPricingAPIURLTemplate, "us-west-1")) - assert.NoError(t, err) - - mc := &mockClient{m: make(map[string]mockResponse)} - mc.m[usEastOneURL.Path] = mockResponse{pricingBody, 200} - mc.m[usWestOneURL.Path] = mockResponse{[]byte("some non-json stuff"), 200} - - type testCase struct { + tcs := []struct { + name string instanceType string region string expectError bool expectOnDemandPrice float64 expectCPU int64 - } - type cases []testCase - - tcs := cases{ - { // good case: common case - "m4.xlarge", - "us-east-1", - false, - 0.2, - 4, + }{ + { + name: "good case: common case", + instanceType:"m4.xlarge", + region:"us-east-1", + expectError:false, + expectOnDemandPrice:0.2, + expectCPU:4, }, - { // error case: unknown availability region - "m4.xlarge", - "eu-east-2", - true, - 0, - 0, + { + name: "error case: unknown availability region", + instanceType:"m4.xlarge", + region:"eu-east-2", + expectError:true, + expectOnDemandPrice:0, + expectCPU:0, }, - { // error case: unknown instance - "unknown-instance", - "us-east-1", - true, - 0, - 0, + { + name: "error case: unknown instance", + instanceType:"unknown-instance", + region:"us-east-1", + expectError:true, + expectOnDemandPrice:0, + expectCPU:0, }, - { // error case: invalid server response - "m4.xlarge", - "us-west-1", - true, - 0, - 0, + { + name: "error case: invalid server response", + instanceType:"m4.xlarge", + region: "us-west-1", + expectError:true, + expectOnDemandPrice:0, + expectCPU:0, }, } - service := NewEC2InstanceInfoService(mc) - - for n, tc := range tcs { - info, err := service.DescribeInstanceInfo(tc.instanceType, tc.region) - if tc.expectError { - assert.Error(t, err, fmt.Sprintf("case %d", n)) - } else { - assert.NoError(t, err, fmt.Sprintf("case %d", n)) - assert.Equal(t, tc.instanceType, info.InstanceType) - assert.Equal(t, tc.expectCPU, info.VCPU) - assert.Equal(t, tc.expectOnDemandPrice, info.OnDemandPrice) - } + for _, tc := range tcs { + t.Run(tc.name, func(t *testing.T) { + usEastOneURL, err := url.Parse(fmt.Sprintf(awsPricingAPIURLTemplate, "us-east-1")) + assert.NoError(t, err) + + usWestOneURL, err := url.Parse(fmt.Sprintf(awsPricingAPIURLTemplate, "us-west-1")) + assert.NoError(t, err) + + mc := &mockClient{m: make(map[string]mockResponse)} + mc.m[usEastOneURL.Path] = mockResponse{loadMockData(t), 200} + mc.m[usWestOneURL.Path] = mockResponse{[]byte("some non-json stuff"), 200} + + service := NewEC2InstanceInfoService(mc) + info, err := service.DescribeInstanceInfo(tc.instanceType, tc.region) + if tc.expectError { + assert.Error(t, err) + } else { + assert.NoError(t, err) + assert.Equal(t, tc.instanceType, info.InstanceType) + assert.Equal(t, tc.expectCPU, info.VCPU) + assert.Equal(t, tc.expectOnDemandPrice, info.OnDemandPrice) + } + }) } } From c518c03bfecb1728162573d9ef3dfe33b970d48b Mon Sep 17 00:00:00 2001 From: Marc Riegel Date: Mon, 30 Jul 2018 12:10:01 +0200 Subject: [PATCH 21/33] optimized instance info test cases --- .../cloudprovider/aws/aws_price_model_test.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/cluster-autoscaler/cloudprovider/aws/aws_price_model_test.go b/cluster-autoscaler/cloudprovider/aws/aws_price_model_test.go index 5d552098d13e..62bf636fb83f 100644 --- a/cluster-autoscaler/cloudprovider/aws/aws_price_model_test.go +++ b/cluster-autoscaler/cloudprovider/aws/aws_price_model_test.go @@ -36,7 +36,7 @@ func TestPriceModel_NodePrice(t *testing.T) { pm := &priceModel{ asgs: &fakeInstanceFinder{ - c: map[string]*Asg{ + c: map[string]*asg{ "node-a": { AwsRef: AwsRef{ Name: "k8s-AutoscalingGroupWorker-AAAAAA", @@ -232,15 +232,15 @@ func buildNode(providerID string) *apiv1.Node { var _ instanceByASGFinder = &fakeInstanceFinder{} type fakeInstanceFinder struct { - c map[string]*Asg + c map[string]*asg } -func (i *fakeInstanceFinder) GetAsgForInstance(instance *AwsRef) (*Asg, error) { +func (i *fakeInstanceFinder) GetAsgForInstance(instance AwsInstanceRef) *asg { if asg, found := i.c[instance.Name]; found { - return asg, nil + return asg } - return nil, nil + return nil } type podContainers struct { @@ -267,7 +267,7 @@ func convertContainers(prs ...podContainers) []apiv1.Container { containers[n].Resources.Requests[apiv1.ResourceCPU] = resource.MustParse(pr.cpu) } if len(pr.gpu) != 0 { - containers[n].Resources.Requests[apiv1.ResourceNvidiaGPU] = resource.MustParse(pr.gpu) + containers[n].Resources.Requests[resourceNvidiaGPU] = resource.MustParse(pr.gpu) } if len(pr.memory) != 0 { containers[n].Resources.Requests[apiv1.ResourceMemory] = resource.MustParse(pr.memory) From 96ee3a00c4ef892cdd494bf347e7232074d42a7d Mon Sep 17 00:00:00 2001 From: Marc Riegel Date: Mon, 30 Jul 2018 12:29:18 +0200 Subject: [PATCH 22/33] go fmt --- .../aws/api/instance_info_test.go | 52 +++++++++---------- .../cloudprovider/aws/aws_cloud_provider.go | 2 +- .../aws/aws_cloud_provider_test.go | 4 +- 3 files changed, 28 insertions(+), 30 deletions(-) diff --git a/cluster-autoscaler/cloudprovider/aws/api/instance_info_test.go b/cluster-autoscaler/cloudprovider/aws/api/instance_info_test.go index ca69635af874..ed90c918f3fa 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/instance_info_test.go +++ b/cluster-autoscaler/cloudprovider/aws/api/instance_info_test.go @@ -28,7 +28,6 @@ import ( "github.com/stretchr/testify/assert" ) - func loadMockData(t *testing.T) []byte { var pricingBody []byte f, err := os.Open("pricing_eu-west-1.json") @@ -45,7 +44,7 @@ func loadMockData(t *testing.T) []byte { func TestInstanceInfoService_DescribeInstanceInfo(t *testing.T) { tcs := []struct { - name string + name string instanceType string region string expectError bool @@ -53,40 +52,39 @@ func TestInstanceInfoService_DescribeInstanceInfo(t *testing.T) { expectCPU int64 }{ { - name: "good case: common case", - instanceType:"m4.xlarge", - region:"us-east-1", - expectError:false, - expectOnDemandPrice:0.2, - expectCPU:4, + name: "good case: common case", + instanceType: "m4.xlarge", + region: "us-east-1", + expectError: false, + expectOnDemandPrice: 0.2, + expectCPU: 4, }, { - name: "error case: unknown availability region", - instanceType:"m4.xlarge", - region:"eu-east-2", - expectError:true, - expectOnDemandPrice:0, - expectCPU:0, + name: "error case: unknown availability region", + instanceType: "m4.xlarge", + region: "eu-east-2", + expectError: true, + expectOnDemandPrice: 0, + expectCPU: 0, }, { - name: "error case: unknown instance", - instanceType:"unknown-instance", - region:"us-east-1", - expectError:true, - expectOnDemandPrice:0, - expectCPU:0, + name: "error case: unknown instance", + instanceType: "unknown-instance", + region: "us-east-1", + expectError: true, + expectOnDemandPrice: 0, + expectCPU: 0, }, { - name: "error case: invalid server response", - instanceType:"m4.xlarge", - region: "us-west-1", - expectError:true, - expectOnDemandPrice:0, - expectCPU:0, + name: "error case: invalid server response", + instanceType: "m4.xlarge", + region: "us-west-1", + expectError: true, + expectOnDemandPrice: 0, + expectCPU: 0, }, } - for _, tc := range tcs { t.Run(tc.name, func(t *testing.T) { usEastOneURL, err := url.Parse(fmt.Sprintf(awsPricingAPIURLTemplate, "us-east-1")) diff --git a/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go b/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go index d6ddff3cb837..dbefcd721085 100644 --- a/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go +++ b/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go @@ -21,8 +21,8 @@ import ( "regexp" "strings" - "github.com/golang/glog" "github.com/aws/aws-sdk-go/aws/session" + "github.com/golang/glog" apiv1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/api/resource" "k8s.io/autoscaler/cluster-autoscaler/cloudprovider" diff --git a/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider_test.go b/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider_test.go index 14f8b967a177..00c286bb7109 100644 --- a/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider_test.go +++ b/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider_test.go @@ -85,7 +85,7 @@ func (pd *testPriceDescriptor) Price(asgName string) (price float64, err error) return } -func newTestAwsManagerWithService(service autoScaling) *AwsManager { +func newTestAwsManagerWithService(service autoScaling, autoDiscoverySpecs []cloudprovider.ASGAutoDiscoveryConfig) *AwsManager { wrapper := autoScalingWrapper{service} return &AwsManager{ autoScalingService: wrapper, @@ -206,7 +206,7 @@ func TestAutoDiscoveredNodeGroups(t *testing.T) { provider.Refresh() nodeGroups := provider.NodeGroups() - assert.Equal(t, len(nodeGroups), 1) + assert.Len(t, nodeGroups, 1) assert.Equal(t, nodeGroups[0].Id(), "auto-asg") assert.Equal(t, nodeGroups[0].MinSize(), 1) assert.Equal(t, nodeGroups[0].MaxSize(), 5) From 230432a1ac4b5b6777b53bb9d4dd6af02a35cbf5 Mon Sep 17 00:00:00 2001 From: ylallemant Date: Wed, 9 Jan 2019 10:54:22 +0100 Subject: [PATCH 23/33] always keep the last item in history --- .../cloudprovider/aws/price/spot/history.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/cluster-autoscaler/cloudprovider/aws/price/spot/history.go b/cluster-autoscaler/cloudprovider/aws/price/spot/history.go index ed8ebc096c71..d6b78851b5c3 100644 --- a/cluster-autoscaler/cloudprovider/aws/price/spot/history.go +++ b/cluster-autoscaler/cloudprovider/aws/price/spot/history.go @@ -67,6 +67,10 @@ func (h *History) Housekeep() { c := make(api.SpotPriceItems, 0) deadEnd := time.Now().Truncate(h.maxAge) + lastItem, err := h.LastItem() + if err != nil { + return + } for _, item := range h.items { if item.Timestamp.Before(deadEnd) { @@ -76,6 +80,10 @@ func (h *History) Housekeep() { c = append(c, item) } + if len(c) == 0 { + c = append(c, lastItem) + } + sort.Sort(c) h.items = c From 823ecb1c0a8970d8e9e20c2436d84ddc4df0378c Mon Sep 17 00:00:00 2001 From: Marc Riegel Date: Wed, 9 Jan 2019 11:16:24 +0100 Subject: [PATCH 24/33] Use converters from aws package --- .../cloudprovider/aws/api/converter.go | 52 ------------------- .../cloudprovider/aws/api/ec2_autoscaling.go | 3 +- .../aws/api/ec2_autoscaling_test.go | 2 +- .../aws/api/ec2_launchconfiguration.go | 4 +- .../aws/api/instance_spot_price_history.go | 33 ++++++------ 5 files changed, 21 insertions(+), 73 deletions(-) delete mode 100644 cluster-autoscaler/cloudprovider/aws/api/converter.go diff --git a/cluster-autoscaler/cloudprovider/aws/api/converter.go b/cluster-autoscaler/cloudprovider/aws/api/converter.go deleted file mode 100644 index 789c283cbe74..000000000000 --- a/cluster-autoscaler/cloudprovider/aws/api/converter.go +++ /dev/null @@ -1,52 +0,0 @@ -/* -Copyright 2017 The Kubernetes Authors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -package api - -import "strconv" - -// stringRefToFloat64 converts fields of type *float64 to float64 (fallback to zero value if nil) -// it's mostly used to handle aws api responds nicely -func stringRefToFloat64(p *string) (float64, error) { - if p == nil { - return 0, nil - } - return strconv.ParseFloat(*p, 64) -} - -// stringRefToStringSlice converts ...*string to []string (fallback to zero value if nil) -// it's mostly used to handle aws api responds nicely -func stringRefToStringSlice(in ...*string) []string { - vs := make([]string, len(in)) - - for i, v := range in { - vs[i] = *v - } - - return vs -} - -// stringToStringSliceRef converts ...string to []*string -// it's mostly used to handle aws api responds nicely -func stringToStringSliceRef(in ...string) []*string { - vs := make([]*string, len(in)) - - for i, v := range in { - vs[i] = &v - } - - return vs -} diff --git a/cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling.go b/cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling.go index c6980ec8836b..fc89ae4ccf17 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling.go +++ b/cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling.go @@ -18,6 +18,7 @@ package api import ( "fmt" + "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/service/autoscaling" ) @@ -63,7 +64,7 @@ func (ass *autoscalingService) DescribeAutoscalingGroup(autoscalingGroupName str return &EC2AutoscalingGroup{ Name: *group.AutoScalingGroupName, LaunchConfigurationName: *group.LaunchConfigurationName, - AvailabilityZones: stringRefToStringSlice(group.AvailabilityZones...), + AvailabilityZones: aws.StringValueSlice(group.AvailabilityZones), }, nil } } diff --git a/cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling_test.go b/cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling_test.go index b62602aea924..41a11724fcdc 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling_test.go +++ b/cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling_test.go @@ -95,7 +95,7 @@ func newFakeAutoscalingService(ams ...autoscalingMock) *fakeAutoscalingService { func newAutoscalingMock(asName, lcName string, availabilityZones ...string) autoscalingMock { return autoscalingMock{ asg: &autoscaling.Group{ - AvailabilityZones: stringToStringSliceRef(availabilityZones...), + AvailabilityZones: aws.StringSlice(availabilityZones), LaunchConfigurationName: aws.String(lcName), AutoScalingGroupName: aws.String(asName), }, diff --git a/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration.go b/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration.go index 9c4f960882dc..4ee03f63f20f 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration.go +++ b/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration.go @@ -18,6 +18,8 @@ package api import ( "fmt" + "github.com/aws/aws-sdk-go/aws" + "strconv" "github.com/aws/aws-sdk-go/service/autoscaling" ) @@ -62,7 +64,7 @@ func (lcs *launchConfigurationService) DescribeLaunchConfiguration(launchConfigu for _, lc := range res.LaunchConfigurations { if *lc.LaunchConfigurationName == launchConfigurationName { - p, err := stringRefToFloat64(lc.SpotPrice) + p, err := strconv.ParseFloat(aws.StringValue(lc.SpotPrice), 64) if err != nil { return nil, fmt.Errorf("failed to parse price: %v", err) } diff --git a/cluster-autoscaler/cloudprovider/aws/api/instance_spot_price_history.go b/cluster-autoscaler/cloudprovider/aws/api/instance_spot_price_history.go index df5c2feb4f09..ad04632bf322 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/instance_spot_price_history.go +++ b/cluster-autoscaler/cloudprovider/aws/api/instance_spot_price_history.go @@ -17,7 +17,10 @@ limitations under the License. package api import ( + "github.com/aws/aws-sdk-go/aws" + "github.com/golang/glog" "sort" + "strconv" "time" "github.com/aws/aws-sdk-go/service/ec2" @@ -47,13 +50,15 @@ type spotPriceHistoryService struct { // DescribeSpotPriceHistory returns the spot price history for given instance type func (spd *spotPriceHistoryService) DescribeSpotPriceHistory(instanceType string, availabilityZone string, startTime time.Time) (*SpotPriceHistory, error) { - req := &ec2.DescribeSpotPriceHistoryInput{ - Filters: []*ec2.Filter{ - spotPriceFilter("availability-zone", availabilityZone), - spotPriceFilter("product-description", "Linux/UNIX"), - spotPriceFilter("instance-type", instanceType), - }, - StartTime: &startTime, + req := new(ec2.DescribeSpotPriceHistoryInput) + req.SetInstanceTypes(aws.StringSlice([]string{instanceType})) + req.SetAvailabilityZone(availabilityZone) + req.SetProductDescriptions(aws.StringSlice([]string{"Linux/UNIX"})) + + if startTime.IsZero() { + req.SetMaxResults(10) + } else { + req.SetStartTime(startTime) } prices := make(SpotPriceItems, 0) @@ -111,22 +116,14 @@ func (sps SpotPriceItems) Swap(i, j int) { sps[i], sps[j] = sps[j], sps[i] } -func spotPriceFilter(name string, values ...string) *ec2.Filter { - vs := stringToStringSliceRef(values...) - - return &ec2.Filter{ - Name: &name, - Values: vs, - } -} - func convertSpotPriceItems(in ...*ec2.SpotPrice) SpotPriceItems { prices := make(SpotPriceItems, len(in)) for i, item := range in { - price, err := stringRefToFloat64(item.SpotPrice) + priceValue := aws.StringValue(item.SpotPrice) + price, err := strconv.ParseFloat(priceValue, 64) if err != nil { - // TODO add logging + glog.Warningf("Failed to parse aws spot price '%s' to float: %v", priceValue, err) continue } From 6b647aefbd623b52acc1bb184de7257d57ab96d0 Mon Sep 17 00:00:00 2001 From: Marc Riegel Date: Wed, 9 Jan 2019 11:17:10 +0100 Subject: [PATCH 25/33] Don't filter by time as long as the cache is empty --- cluster-autoscaler/cloudprovider/aws/price/spot/descriptor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster-autoscaler/cloudprovider/aws/price/spot/descriptor.go b/cluster-autoscaler/cloudprovider/aws/price/spot/descriptor.go index 746ab6082553..5124ba9a7af8 100644 --- a/cluster-autoscaler/cloudprovider/aws/price/spot/descriptor.go +++ b/cluster-autoscaler/cloudprovider/aws/price/spot/descriptor.go @@ -166,7 +166,7 @@ func (d *descriptor) syncSpotPriceHistory(instanceType string, availabilityZone if found { begin = history.LastSync() } else { - begin = time.Now().Truncate(cacheWindow) + begin = time.Time{} history = &History{maxAge: cacheWindow, items: make(api.SpotPriceItems, 0)} d.bucket[instanceZone] = history From b1758d08216e816068f7122ce7313759a89da85f Mon Sep 17 00:00:00 2001 From: ylallemant Date: Wed, 9 Jan 2019 12:02:30 +0100 Subject: [PATCH 26/33] added handling for nil prices --- .../aws/api/ec2_launchconfiguration.go | 11 +++++-- .../aws/api/ec2_launchconfiguration_test.go | 30 ++++++++++++++----- 2 files changed, 31 insertions(+), 10 deletions(-) diff --git a/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration.go b/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration.go index 4ee03f63f20f..05e1f04907ac 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration.go +++ b/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration.go @@ -64,10 +64,15 @@ func (lcs *launchConfigurationService) DescribeLaunchConfiguration(launchConfigu for _, lc := range res.LaunchConfigurations { if *lc.LaunchConfigurationName == launchConfigurationName { - p, err := strconv.ParseFloat(aws.StringValue(lc.SpotPrice), 64) - if err != nil { - return nil, fmt.Errorf("failed to parse price: %v", err) + var p float64 + + if lc.SpotPrice != nil { + p, err = strconv.ParseFloat(aws.StringValue(lc.SpotPrice), 64) + if err != nil { + return nil, fmt.Errorf("failed to parse price: %v", err) + } } + return &EC2LaunchConfiguration{ HasSpotMarkedBid: lc.SpotPrice != nil, SpotPrice: p, diff --git a/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration_test.go b/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration_test.go index e6a2d754122f..50bbecd111dc 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration_test.go +++ b/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration_test.go @@ -42,17 +42,32 @@ func TestLaunchConfigurationService_DescribeLaunchConfiguration(t *testing.T) { tcs := cases{ { // good case: common case lcName1, - newLCFakeService(lcName1, "m3.xlarge", stringSlice("token-a"), nil), + newLCFakeService(lcName1, aws.String("m3.xlarge"), nil, stringSlice("token-a"), nil), false, }, { // good case: common case lcName2, - newLCFakeService(lcName2, "m3.xlarge", stringSlice("token-a"), nil), + newLCFakeService(lcName2, aws.String("m3.xlarge"), nil, stringSlice("token-a"), nil), false, }, - { // good case: common case + { // error case: unknown launch configuration + lcName3, + newLCFakeService(lcName2, aws.String("m3.xlarge"), nil, stringSlice("token-a"), nil), + true, + }, + { // good case: spot price converted + lcName3, + newLCFakeService(lcName3, aws.String("m3.xlarge"), aws.String("0.645"), stringSlice("token-a"), nil), + false, + }, + { // error case: invalid spot price + lcName3, + newLCFakeService(lcName3, aws.String("m3.xlarge"), aws.String("hhzu"), stringSlice("token-a"), nil), + true, + }, + { // error case: unexpected error lcName3, - newLCFakeService(lcName2, "m3.xlarge", stringSlice("token-a"), nil), + newLCFakeService(lcName3, aws.String("m3.xlarge"), aws.String("0.45"), stringSlice("token-a"), errors.New("some error")), true, }, } @@ -71,13 +86,14 @@ func TestLaunchConfigurationService_DescribeLaunchConfiguration(t *testing.T) { } } -func newLCFakeService(name string, instanceType string, tokens []string, err error) *fakeLCService { +func newLCFakeService(name string, instanceType , spotPrice *string, tokens []string, err error) *fakeLCService { return &fakeLCService{ mocks: map[string]*autoscaling.LaunchConfiguration{ name: { LaunchConfigurationName: aws.String(name), LaunchConfigurationARN: aws.String(fmt.Sprintf("arn:aws:ec2:launchconfiguration:123456789:%s", name)), - InstanceType: aws.String(instanceType), + SpotPrice: spotPrice, + InstanceType: instanceType, }, }, err: err, @@ -93,7 +109,7 @@ type fakeLCService struct { func (lcs *fakeLCService) DescribeLaunchConfigurations(input *autoscaling.DescribeLaunchConfigurationsInput) (output *autoscaling.DescribeLaunchConfigurationsOutput, err error) { if lcs.err != nil { - return nil, err + return nil, lcs.err } output = new(autoscaling.DescribeLaunchConfigurationsOutput) From b6d92592de0116c143f0b23a655f8e042e8998fb Mon Sep 17 00:00:00 2001 From: ylallemant Date: Wed, 9 Jan 2019 12:50:41 +0100 Subject: [PATCH 27/33] go fmt --- .../cloudprovider/aws/api/ec2_launchconfiguration.go | 4 +++- .../cloudprovider/aws/api/ec2_launchconfiguration_test.go | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration.go b/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration.go index 05e1f04907ac..866b19f85954 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration.go +++ b/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration.go @@ -18,9 +18,10 @@ package api import ( "fmt" - "github.com/aws/aws-sdk-go/aws" "strconv" + "github.com/aws/aws-sdk-go/aws" + "github.com/aws/aws-sdk-go/service/autoscaling" ) @@ -63,6 +64,7 @@ func (lcs *launchConfigurationService) DescribeLaunchConfiguration(launchConfigu } for _, lc := range res.LaunchConfigurations { + if *lc.LaunchConfigurationName == launchConfigurationName { var p float64 diff --git a/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration_test.go b/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration_test.go index 50bbecd111dc..4c7d20e958e3 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration_test.go +++ b/cluster-autoscaler/cloudprovider/aws/api/ec2_launchconfiguration_test.go @@ -86,13 +86,13 @@ func TestLaunchConfigurationService_DescribeLaunchConfiguration(t *testing.T) { } } -func newLCFakeService(name string, instanceType , spotPrice *string, tokens []string, err error) *fakeLCService { +func newLCFakeService(name string, instanceType, spotPrice *string, tokens []string, err error) *fakeLCService { return &fakeLCService{ mocks: map[string]*autoscaling.LaunchConfiguration{ name: { LaunchConfigurationName: aws.String(name), LaunchConfigurationARN: aws.String(fmt.Sprintf("arn:aws:ec2:launchconfiguration:123456789:%s", name)), - SpotPrice: spotPrice, + SpotPrice: spotPrice, InstanceType: instanceType, }, }, From 90038a8ddb64d7e6e947fcad6c1beac6f740851f Mon Sep 17 00:00:00 2001 From: "Y. Lallemant" Date: Fri, 11 Jan 2019 13:21:27 +0100 Subject: [PATCH 28/33] fixed price calculation and tests * fixed price calculation and added tests * corrected test names (cherry picked from commit 52598c0) --- .../aws/api/instance_spot_price_history.go | 11 +- .../aws/price/spot/descriptor.go | 34 +- .../aws/price/spot/descriptor_test.go | 673 ++++++++++++++++++ .../cloudprovider/aws/price/spot/history.go | 18 +- .../aws/price/spot/history_test.go | 374 ++++++++++ 5 files changed, 1091 insertions(+), 19 deletions(-) create mode 100644 cluster-autoscaler/cloudprovider/aws/price/spot/descriptor_test.go create mode 100644 cluster-autoscaler/cloudprovider/aws/price/spot/history_test.go diff --git a/cluster-autoscaler/cloudprovider/aws/api/instance_spot_price_history.go b/cluster-autoscaler/cloudprovider/aws/api/instance_spot_price_history.go index ad04632bf322..bea05890f839 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/instance_spot_price_history.go +++ b/cluster-autoscaler/cloudprovider/aws/api/instance_spot_price_history.go @@ -17,12 +17,13 @@ limitations under the License. package api import ( - "github.com/aws/aws-sdk-go/aws" - "github.com/golang/glog" "sort" "strconv" "time" + "github.com/aws/aws-sdk-go/aws" + "github.com/golang/glog" + "github.com/aws/aws-sdk-go/service/ec2" ) @@ -56,6 +57,7 @@ func (spd *spotPriceHistoryService) DescribeSpotPriceHistory(instanceType string req.SetProductDescriptions(aws.StringSlice([]string{"Linux/UNIX"})) if startTime.IsZero() { + glog.V(5).Info("initial history loading - retrieve only the last 10 prices") req.SetMaxResults(10) } else { req.SetStartTime(startTime) @@ -73,6 +75,11 @@ func (spd *spotPriceHistoryService) DescribeSpotPriceHistory(instanceType string req.NextToken = res.NextToken if req.NextToken == nil || len(*req.NextToken) == 0 { + glog.V(6).Info("breaking history loop after pagination record") + break + } + if startTime.IsZero() { + glog.V(6).Info("breaking history loop after retrieving last 10 prices") break } } diff --git a/cluster-autoscaler/cloudprovider/aws/price/spot/descriptor.go b/cluster-autoscaler/cloudprovider/aws/price/spot/descriptor.go index 5124ba9a7af8..150bb3b0351a 100644 --- a/cluster-autoscaler/cloudprovider/aws/price/spot/descriptor.go +++ b/cluster-autoscaler/cloudprovider/aws/price/spot/descriptor.go @@ -18,6 +18,7 @@ package spot import ( "fmt" + "strings" "time" "github.com/golang/glog" @@ -63,23 +64,36 @@ type descriptor struct { // It returns an error if the current price is greater than the bid price. func (d *descriptor) Price(instanceType string, bidPrice float64, availabilityZones ...string) (float64, error) { var avgPrice float64 - prices := make([]float64, len(availabilityZones)) + prices := make([]float64, 0, len(availabilityZones)) + validPriceFound := false - for i, zone := range availabilityZones { + for _, zone := range availabilityZones { maxPrice, err := d.maxSpotPriceForDuration(instanceType, zone, lookupWindow) if err != nil { - return avgPrice, err + instanceTypeUnknown := strings.Index(err.Error(), "instance info not available") > -1 + priceHistoryEmpty := strings.Index(err.Error(), "no spot price information") > -1 + + if !instanceTypeUnknown && !priceHistoryEmpty { + return avgPrice, err + } } if maxPrice == 0.0 { - return avgPrice, fmt.Errorf("got invalid spot price of 0.0 for instance type %s in availability zone %s", instanceType, zone) + continue } if maxPrice > bidPrice { return 0, fmt.Errorf("spot price bid of %.4f lower than current offer of %.4f at %s", bidPrice, maxPrice, zone) } - prices[i] = maxPrice + validPriceFound = true + prices = append(prices, maxPrice) + } + + if !validPriceFound { + // no valid price was found across all AZ for the specified instance type + // no valid average can be calculated + return avgPrice, fmt.Errorf("got invalid spot price of 0.0 for instance type %s in availability zones %s", instanceType, availabilityZones) } var sum float64 @@ -106,7 +120,7 @@ func (d *descriptor) maxSpotPriceForDuration(instanceType string, availabilityZo return maxPrice, fmt.Errorf("no spot price information for instance %s in availability zone %s", instanceType, availabilityZone) } - startTime := time.Now().Truncate(lookupWindow) + startTime := time.Now().Add(-lookupWindow) for _, price := range history.Slice() { if price.Timestamp.Before(startTime) { @@ -120,10 +134,7 @@ func (d *descriptor) maxSpotPriceForDuration(instanceType string, availabilityZo // The case when there are no new price information within the requested time window. if maxPrice == 0.0 { - item, err := history.LastItem() - if err != nil { - return maxPrice, fmt.Errorf("failed to fetch last history item: %v", err) - } + item, _ := history.LastItem() glog.Warningf( "no spot price information newer than %s, using last known price of %f which is %s old", @@ -143,6 +154,7 @@ func (d *descriptor) spotPriceHistory(instanceType, availabilityZone string) (*H return nil, fmt.Errorf("spot price sync failed: %v", err) } } + glog.V(5).Infof("price history successfully synchronized for %s in AZ %s", instanceType, availabilityZone) instanceZone := instanceTypeInZone{instanceType: instanceType, availabilityZone: availabilityZone} return d.bucket[instanceZone], nil @@ -155,7 +167,7 @@ func (d *descriptor) syncRequired(instanceType, availabilityZone string) bool { return true } - return history.LastSync().Before(time.Now().Truncate(cacheMaxAge)) + return history.LastSync().Before(time.Now().Add(-cacheMaxAge)) } func (d *descriptor) syncSpotPriceHistory(instanceType string, availabilityZone string) error { diff --git a/cluster-autoscaler/cloudprovider/aws/price/spot/descriptor_test.go b/cluster-autoscaler/cloudprovider/aws/price/spot/descriptor_test.go new file mode 100644 index 000000000000..a48679bce568 --- /dev/null +++ b/cluster-autoscaler/cloudprovider/aws/price/spot/descriptor_test.go @@ -0,0 +1,673 @@ +/* +Copyright 2017 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package spot + +import ( + "fmt" + "time" + + "testing" + + "github.com/stretchr/testify/assert" + "k8s.io/autoscaler/cluster-autoscaler/cloudprovider/aws/api" +) + +func TestDescriptor_syncSpotPriceHistory(t *testing.T) { + cases := []struct { + name string + local spotPriceBucket + aws spotPriceBucket + expected api.SpotPriceItems + errorExpected bool + }{ + { + name: "empty history for unknown type - no change", + local: spotPriceBucket{}, + aws: spotPriceBucket{ + instanceTypeInZone{"m4.xlarge", "us-east-1"}: newHistoryMock(time.Time{}, 1*time.Second, api.SpotPriceItems{ + { + Timestamp: testTimestamp, + Price: float64(0.5678), + }, + { + Timestamp: testTimestamp.Add(-5 * time.Hour), + Price: float64(0.6054), + }, + }), + }, + expected: api.SpotPriceItems{}, + errorExpected: true, + }, + { + name: "empty history for known type - updated", + local: spotPriceBucket{}, + aws: spotPriceBucket{ + instanceTypeInZone{"m4.2xlarge", "us-east-1a"}: newHistoryMock(time.Time{}, 1*time.Second, api.SpotPriceItems{ + { + Timestamp: testTimestamp.Add(-5 * time.Minute), + Price: float64(1.034), + }, + { + Timestamp: testTimestamp.Add(-1 * time.Hour), + Price: float64(1.203), + }, + }), + }, + expected: api.SpotPriceItems{ + { + Timestamp: testTimestamp.Add(-1 * time.Hour), + Price: float64(1.203), + }, + { + Timestamp: testTimestamp.Add(-5 * time.Minute), + Price: float64(1.034), + }, + }, + errorExpected: false, + }, + { + name: "history updated despite all entries being outside the cache window (fallback)", + local: spotPriceBucket{ + instanceTypeInZone{"m4.2xlarge", "us-east-1a"}: newHistoryMock(testTimestamp.Add(-30*time.Minute), 1*time.Second, api.SpotPriceItems{ + { + Timestamp: testTimestamp.Add(-1 * time.Hour), + Price: float64(1.203), + }, + }), + }, + aws: spotPriceBucket{ + instanceTypeInZone{"m4.2xlarge", "us-east-1a"}: newHistoryMock(time.Time{}, 1*time.Second, api.SpotPriceItems{ + { + Timestamp: testTimestamp.Add(-5 * time.Minute), + Price: float64(1.034), + }, + { + Timestamp: testTimestamp.Add(-1 * time.Hour), + Price: float64(1.203), + }, + }), + }, + expected: api.SpotPriceItems{ + { + Timestamp: testTimestamp.Add(-5 * time.Minute), + Price: float64(1.034), + }, + }, + errorExpected: false, + }, + { + name: "history updated within the cache window", + local: spotPriceBucket{ + instanceTypeInZone{"m4.2xlarge", "us-east-1a"}: newHistoryMock(testTimestamp.Add(-30*time.Minute), 10*time.Hour, api.SpotPriceItems{ + { + Timestamp: testTimestamp.Add(-1 * time.Hour), + Price: float64(1.203), + }, + }), + }, + aws: spotPriceBucket{ + instanceTypeInZone{"m4.2xlarge", "us-east-1a"}: newHistoryMock(time.Time{}, 1*time.Second, api.SpotPriceItems{ + { + Timestamp: testTimestamp.Add(-5 * time.Minute), + Price: float64(1.034), + }, + { + Timestamp: testTimestamp.Add(-1 * time.Hour), + Price: float64(1.203), + }, + }), + }, + expected: api.SpotPriceItems{ + { + Timestamp: testTimestamp.Add(-1 * time.Hour), + Price: float64(1.203), + }, + { + Timestamp: testTimestamp.Add(-5 * time.Minute), + Price: float64(1.034), + }, + }, + errorExpected: false, + }, + { + name: "no new records found since last update - history unchanged", + local: spotPriceBucket{ + instanceTypeInZone{"m4.2xlarge", "us-east-1a"}: newHistoryMock(testTimestamp, 10*time.Hour, api.SpotPriceItems{ + { + Timestamp: testTimestamp.Add(-1 * time.Hour), + Price: float64(1.203), + }, + { + Timestamp: testTimestamp.Add(-5 * time.Minute), + Price: float64(1.034), + }, + }), + }, + aws: spotPriceBucket{ + instanceTypeInZone{"m4.2xlarge", "us-east-1a"}: newHistoryMock(time.Time{}, 1*time.Second, api.SpotPriceItems{ + { + Timestamp: testTimestamp.Add(-5 * time.Minute), + Price: float64(1.034), + }, + { + Timestamp: testTimestamp.Add(-1 * time.Hour), + Price: float64(1.203), + }, + }), + }, + expected: api.SpotPriceItems{ + { + Timestamp: testTimestamp.Add(-1 * time.Hour), + Price: float64(1.203), + }, + { + Timestamp: testTimestamp.Add(-5 * time.Minute), + Price: float64(1.034), + }, + }, + errorExpected: false, + }, + } + + for _, c := range cases { + t.Run(c.name, func(tt *testing.T) { + awsApi := newFakeSpotPriceHistoryDescriber(c.aws) + desc := newDescriptorMock(c.local, awsApi) + + itz := instanceTypeInZone{"m4.2xlarge", "us-east-1a"} + + err := desc.syncSpotPriceHistory(itz.instanceType, itz.availabilityZone) + + if c.errorExpected { + assert.NotNil(tt, err, "an error should have been returned") + } else { + assert.Nil(tt, err, "no error should have been returned") + } + + assert.WithinDuration(tt, time.Now(), desc.bucket[itz].LastSync(), 10*time.Millisecond, "last sync time too old") + assert.Equal(tt, c.expected, desc.bucket[itz].items, "bucked has not been filled with the expected entries") + }) + } +} + +func TestDescriptor_syncRequired(t *testing.T) { + cases := []struct { + name string + bucketKey instanceTypeInZone + local spotPriceBucket + expected bool + }{ + { + name: "unknown bucket: sync required", + bucketKey: instanceTypeInZone{"m4.xlarge", "us-east-1"}, + local: spotPriceBucket{}, + expected: true, + }, + { + name: "deprecated cache: sync required", + bucketKey: instanceTypeInZone{"m4.2xlarge", "us-east-1a"}, + local: spotPriceBucket{ + instanceTypeInZone{"m4.2xlarge", "us-east-1a"}: newHistoryMock(testTimestamp.Add(-cacheMaxAge), 10*time.Hour, api.SpotPriceItems{ + { + Timestamp: testTimestamp.Add(-1 * time.Hour), + Price: float64(1.203), + }, + { + Timestamp: testTimestamp.Add(-5 * time.Minute), + Price: float64(1.034), + }, + }), + }, + expected: true, + }, + { + name: "valid cache age: sync not required", + bucketKey: instanceTypeInZone{"m4.2xlarge", "us-east-1a"}, + local: spotPriceBucket{ + instanceTypeInZone{"m4.2xlarge", "us-east-1a"}: newHistoryMock(time.Now(), 10*time.Hour, api.SpotPriceItems{ + { + Timestamp: testTimestamp.Add(-1 * time.Hour), + Price: float64(1.203), + }, + { + Timestamp: testTimestamp.Add(-5 * time.Minute), + Price: float64(1.034), + }, + }), + }, + expected: false, + }, + } + + for _, c := range cases { + t.Run(c.name, func(tt *testing.T) { + awsApi := newFakeSpotPriceHistoryDescriber(spotPriceBucket{}) + desc := newDescriptorMock(c.local, awsApi) + + assert.Equal(tt, c.expected, desc.syncRequired(c.bucketKey.instanceType, c.bucketKey.availabilityZone)) + }) + } +} + +func TestDescriptor_spotPriceHistory(t *testing.T) { + cases := []struct { + name string + local spotPriceBucket + aws spotPriceBucket + expected api.SpotPriceItems + errorExpected bool + }{ + { + name: "empty history for unknown type - no change", + local: spotPriceBucket{}, + aws: spotPriceBucket{ + instanceTypeInZone{"m4.xlarge", "us-east-1"}: newHistoryMock(time.Time{}, 1*time.Second, api.SpotPriceItems{ + { + Timestamp: testTimestamp, + Price: float64(0.5678), + }, + { + Timestamp: testTimestamp.Add(-5 * time.Hour), + Price: float64(0.6054), + }, + }), + }, + expected: api.SpotPriceItems{}, + errorExpected: true, + }, + { + name: "empty history for known type - updated", + local: spotPriceBucket{}, + aws: spotPriceBucket{ + instanceTypeInZone{"m4.2xlarge", "us-east-1a"}: newHistoryMock(time.Time{}, 1*time.Second, api.SpotPriceItems{ + { + Timestamp: testTimestamp.Add(-5 * time.Minute), + Price: float64(1.034), + }, + { + Timestamp: testTimestamp.Add(-1 * time.Hour), + Price: float64(1.203), + }, + }), + }, + expected: api.SpotPriceItems{ + { + Timestamp: testTimestamp.Add(-1 * time.Hour), + Price: float64(1.203), + }, + { + Timestamp: testTimestamp.Add(-5 * time.Minute), + Price: float64(1.034), + }, + }, + errorExpected: false, + }, + } + + for _, c := range cases { + t.Run(c.name, func(tt *testing.T) { + awsApi := newFakeSpotPriceHistoryDescriber(c.aws) + desc := newDescriptorMock(c.local, awsApi) + + itz := instanceTypeInZone{"m4.2xlarge", "us-east-1a"} + + res, err := desc.spotPriceHistory(itz.instanceType, itz.availabilityZone) + + if c.errorExpected { + assert.NotNil(tt, err, "an error should have been returned") + assert.Nil(tt, res, "no history should have been returned") + } else { + assert.Nil(tt, err, "no error should have been returned") + assert.Equal(tt, c.expected, res.items, "history is not filled with the expected entries") + } + + assert.WithinDuration(tt, time.Now(), desc.bucket[itz].LastSync(), 10*time.Millisecond, "last sync time too old") + }) + } +} + +func TestDescriptor_maxSpotPriceForDuration(t *testing.T) { + actualTime := time.Now() + + cases := []struct { + name string + local spotPriceBucket + lookupWindow time.Duration + expected float64 + errorExpected bool + expectedError string + }{ + { + name: "empty history for unknown type - returns 0.0", + local: spotPriceBucket{ + instanceTypeInZone{"m4.xlarge", "us-east-1"}: newHistoryMock(actualTime, 10*time.Hour, api.SpotPriceItems{ + { + Timestamp: actualTime.Add(-5 * time.Minute), + Price: float64(1.034), + }, + { + Timestamp: actualTime.Add(-1 * time.Hour), + Price: float64(1.203), + }, + }), + }, + lookupWindow: 30 * time.Minute, + expected: 0.0, + errorExpected: true, + expectedError: "spot price sync failed: instance info not available for instance type m4.2xlarge in AZ us-east-1a", + }, + { + name: "empty history for known type - returns 0.0", + local: spotPriceBucket{ + instanceTypeInZone{"m4.2xlarge", "us-east-1a"}: newHistoryMock(actualTime, 10*time.Hour, api.SpotPriceItems{}), + }, + lookupWindow: 30 * time.Minute, + expected: 0.0, + errorExpected: true, + expectedError: "no spot price information for instance m4.2xlarge in availability zone us-east-1a", + }, + { + name: "history outside lookup window - returns last price", + local: spotPriceBucket{ + instanceTypeInZone{"m4.2xlarge", "us-east-1a"}: newHistoryMock(actualTime, 10*time.Hour, api.SpotPriceItems{ + { + Timestamp: actualTime.Add(-1 * time.Hour), + Price: float64(1.203), + }, + { + Timestamp: actualTime.Add(-5 * time.Minute), + Price: float64(1.034), + }, + }), + }, + lookupWindow: 1 * time.Minute, + expected: 1.034, + errorExpected: false, + }, + { + name: "history with short lookup window - returns max price", + local: spotPriceBucket{ + instanceTypeInZone{"m4.2xlarge", "us-east-1a"}: newHistoryMock(actualTime, 10*time.Hour, api.SpotPriceItems{ + { + Timestamp: actualTime.Add(-1 * time.Hour), + Price: float64(1.203), + }, + { + Timestamp: actualTime.Add(-5 * time.Minute), + Price: float64(1.034), + }, + }), + }, + lookupWindow: 30 * time.Minute, + expected: 1.034, + errorExpected: false, + }, + { + name: "history with long lookup window - returns max price", + local: spotPriceBucket{ + instanceTypeInZone{"m4.2xlarge", "us-east-1a"}: newHistoryMock(actualTime, 10*time.Hour, api.SpotPriceItems{ + { + Timestamp: actualTime.Add(-5 * time.Minute), + Price: float64(1.034), + }, + { + Timestamp: actualTime.Add(-1 * time.Hour), + Price: float64(1.203), + }, + }), + }, + lookupWindow: 3 * time.Hour, + expected: 1.203, + errorExpected: false, + }, + } + + for _, c := range cases { + t.Run(c.name, func(tt *testing.T) { + awsApi := newFakeSpotPriceHistoryDescriber(spotPriceBucket{}) + desc := newDescriptorMock(c.local, awsApi) + + itz := instanceTypeInZone{"m4.2xlarge", "us-east-1a"} + + res, err := desc.maxSpotPriceForDuration(itz.instanceType, itz.availabilityZone, c.lookupWindow) + + if c.errorExpected { + assert.NotNil(tt, err, "an error should have been returned") + assert.Equal(tt, c.expectedError, err.Error(), "false error message returned") + } else { + assert.Nil(tt, err, "no error should have been returned") + } + + assert.Equal(tt, c.expected, res, "false max price for duration returned") + }) + } +} + +func TestDescriptor_Price(t *testing.T) { + actualTime := time.Now() + + cases := []struct { + name string + bidPrice float64 + availabilityZones []string + local spotPriceBucket + expected float64 + errorExpected bool + expectedError string + }{ + { + name: "instance type unknown in all AZ - returns 0.0", + bidPrice: 1.8, + availabilityZones: []string{"us-east-1a", "us-east-1b"}, + local: spotPriceBucket{ + instanceTypeInZone{"m4.xlarge", "us-east-1"}: newHistoryMock(actualTime, 10*time.Hour, api.SpotPriceItems{ + { + Timestamp: actualTime.Add(-5 * time.Minute), + Price: float64(1.034), + }, + { + Timestamp: actualTime.Add(-1 * time.Minute), + Price: float64(1.203), + }, + }), + }, + expected: 0.0, + errorExpected: true, + expectedError: "got invalid spot price of 0.0 for instance type m4.2xlarge in availability zones [us-east-1a us-east-1b]", + }, + { + name: "empty history for known type in all AZ - returns 0.0", + bidPrice: 1.8, + availabilityZones: []string{"us-east-1a", "us-east-1b"}, + local: spotPriceBucket{ + instanceTypeInZone{"m4.2xlarge", "us-east-1a"}: newHistoryMock(actualTime, 10*time.Hour, api.SpotPriceItems{}), + }, + expected: 0.0, + errorExpected: true, + expectedError: "got invalid spot price of 0.0 for instance type m4.2xlarge in availability zones [us-east-1a us-east-1b]", + }, + { + name: "empty history for known type in all AZ - returns 0.0", + bidPrice: 1.8, + availabilityZones: []string{"us-east-1a", "us-east-1b"}, + local: spotPriceBucket{ + instanceTypeInZone{"m4.2xlarge", "us-east-1a"}: newHistoryMock(actualTime, 10*time.Hour, api.SpotPriceItems{ + { + Timestamp: actualTime.Add(-5 * time.Minute), + Price: float64(2.056), + }, + { + Timestamp: actualTime.Add(-1 * time.Minute), + Price: float64(1.203), + }, + }), + }, + expected: 0.0, + errorExpected: true, + expectedError: "spot price bid of 1.8000 lower than current offer of 2.0560 at us-east-1a", + }, + { + name: "history outside lookup window - returns last price", + bidPrice: 1.8, + availabilityZones: []string{"us-east-1a", "us-east-1b"}, + local: spotPriceBucket{ + instanceTypeInZone{"m4.2xlarge", "us-east-1a"}: newHistoryMock(actualTime, 10*time.Hour, api.SpotPriceItems{ + { + Timestamp: actualTime.Add(-5 * time.Hour), + Price: float64(1.034), + }, + { + Timestamp: actualTime.Add(-1 * time.Hour), + Price: float64(1.203), + }, + }), + }, + expected: 1.203, + errorExpected: false, + }, + { + name: "single AZ price with short lookup window - returns max average", + bidPrice: 1.8, + availabilityZones: []string{"us-east-1a", "us-east-1b"}, + local: spotPriceBucket{ + instanceTypeInZone{"m4.2xlarge", "us-east-1a"}: newHistoryMock(actualTime, 10*time.Hour, api.SpotPriceItems{ + { + Timestamp: actualTime.Add(-5 * time.Minute), + Price: float64(1.034), + }, + { + Timestamp: actualTime.Add(-1 * time.Minute), + Price: float64(1.203), + }, + }), + }, + expected: 1.203, + errorExpected: false, + }, + { + name: "single AZ price with long lookup window - returns max average", + bidPrice: 1.8, + availabilityZones: []string{"us-east-1a", "us-east-1b"}, + local: spotPriceBucket{ + instanceTypeInZone{"m4.2xlarge", "us-east-1a"}: newHistoryMock(actualTime, 10*time.Hour, api.SpotPriceItems{ + { + Timestamp: actualTime.Add(-5 * time.Minute), + Price: float64(1.034), + }, + { + Timestamp: actualTime.Add(-1 * time.Minute), + Price: float64(1.203), + }, + }), + }, + expected: 1.203, + errorExpected: false, + }, + { + name: "multi AZ price - returns max average", + bidPrice: 1.8, + availabilityZones: []string{"us-east-1a", "us-east-1b"}, + local: spotPriceBucket{ + instanceTypeInZone{"m4.2xlarge", "us-east-1a"}: newHistoryMock(actualTime, 10*time.Hour, api.SpotPriceItems{ + { + Timestamp: actualTime.Add(-5 * time.Minute), + Price: float64(1.034), + }, + { + Timestamp: actualTime.Add(-1 * time.Minute), + Price: float64(1.203), + }, + }), + instanceTypeInZone{"m4.2xlarge", "us-east-1b"}: newHistoryMock(actualTime, 10*time.Hour, api.SpotPriceItems{ + { + Timestamp: actualTime.Add(-12 * time.Minute), + Price: float64(1.389), + }, + { + Timestamp: actualTime.Add(-2 * time.Minute), + Price: float64(1.123), + }, + }), + }, + expected: 1.296, + errorExpected: false, + }, + } + + for _, c := range cases { + t.Run(c.name, func(tt *testing.T) { + awsApi := newFakeSpotPriceHistoryDescriber(spotPriceBucket{}) + desc := newDescriptorMock(c.local, awsApi) + + res, err := desc.Price("m4.2xlarge", c.bidPrice, c.availabilityZones...) + + if c.errorExpected { + assert.NotNil(tt, err, "an error should have been returned") + assert.Equal(tt, c.expectedError, err.Error(), "false error message returned") + } else { + assert.Nil(tt, err, "no error should have been returned") + } + + assert.Equal(tt, c.expected, res, "false max price for duration returned") + }) + } +} + +func newDescriptorMock(bucket spotPriceBucket, spotApi *fakeSpotPriceHistoryDescriber) *descriptor { + d := NewDescriptor(spotApi) + + d.bucket = bucket + + return d +} + +func newFakeSpotPriceHistoryDescriber(buckets spotPriceBucket) *fakeSpotPriceHistoryDescriber { + f := new(fakeSpotPriceHistoryDescriber) + + f.c = map[instanceTypeInZone]*api.SpotPriceHistory{} + + for itz, history := range buckets { + f.c[itz] = &api.SpotPriceHistory{ + history.Slice(), + } + } + + return f +} + +type fakeSpotPriceHistoryDescriber struct { + c map[instanceTypeInZone]*api.SpotPriceHistory +} + +func (i *fakeSpotPriceHistoryDescriber) DescribeSpotPriceHistory(instanceType string, availabilityZone string, startTime time.Time) (*api.SpotPriceHistory, error) { + itz := instanceTypeInZone{instanceType, availabilityZone} + + if history, found := i.c[itz]; found { + filtered := new(api.SpotPriceHistory) + filtered.HistoryItems = make(api.SpotPriceItems, 0, len(history.HistoryItems)) + + for _, item := range history.HistoryItems { + if item.Timestamp.After(startTime) { + filtered.HistoryItems = append(filtered.HistoryItems, item) + } + } + + return filtered, nil + } + + return nil, fmt.Errorf("instance info not available for instance type %s in AZ %s", instanceType, availabilityZone) +} diff --git a/cluster-autoscaler/cloudprovider/aws/price/spot/history.go b/cluster-autoscaler/cloudprovider/aws/price/spot/history.go index d6b78851b5c3..edf51e64265d 100644 --- a/cluster-autoscaler/cloudprovider/aws/price/spot/history.go +++ b/cluster-autoscaler/cloudprovider/aws/price/spot/history.go @@ -23,6 +23,7 @@ import ( "errors" + "github.com/golang/glog" "k8s.io/autoscaler/cluster-autoscaler/cloudprovider/aws/api" ) @@ -61,16 +62,18 @@ func (h *History) Len() int { // Housekeep drops items older than maxAge and sorts the history func (h *History) Housekeep() { + lastItem, err := h.LastItem() + if err != nil { + glog.Warningf("no last item found, price history is empty - exit housekeeping") + return + } + h.Lock() defer h.Unlock() c := make(api.SpotPriceItems, 0) - deadEnd := time.Now().Truncate(h.maxAge) - lastItem, err := h.LastItem() - if err != nil { - return - } + deadEnd := time.Now().Add(-h.maxAge) for _, item := range h.items { if item.Timestamp.Before(deadEnd) { @@ -82,6 +85,7 @@ func (h *History) Housekeep() { if len(c) == 0 { c = append(c, lastItem) + glog.V(5).Infof("cleaned history was empty, last price has been inserted back - age: %v", time.Now().Sub(lastItem.Timestamp)) } sort.Sort(c) @@ -91,12 +95,14 @@ func (h *History) Housekeep() { // Add adds sorted api.SpotPriceItems and sets the last-sync to current time func (h *History) Add(items api.SpotPriceItems) { + items = append(items, h.Slice()...) + h.Lock() defer h.Unlock() sort.Sort(items) - h.items = append(h.items, items...) + h.items = items h.lastSync = time.Now() } diff --git a/cluster-autoscaler/cloudprovider/aws/price/spot/history_test.go b/cluster-autoscaler/cloudprovider/aws/price/spot/history_test.go new file mode 100644 index 000000000000..e33534c90d1b --- /dev/null +++ b/cluster-autoscaler/cloudprovider/aws/price/spot/history_test.go @@ -0,0 +1,374 @@ +package spot + +import ( + "testing" + "time" + + "github.com/stretchr/testify/assert" + "k8s.io/autoscaler/cluster-autoscaler/cloudprovider/aws/api" +) + +var testTimestamp = time.Now().Add(-5 * time.Minute) + +func TestHistory_Slice(t *testing.T) { + + cases := []struct { + name string + history *History + expected api.SpotPriceItems + }{ + { + name: "empty history", + history: newHistoryMock(time.Time{}, 1*time.Second, api.SpotPriceItems{}), + expected: api.SpotPriceItems{}, + }, + { + name: "filled history", + history: newHistoryMock(time.Time{}, 1*time.Second, api.SpotPriceItems{ + { + Timestamp: testTimestamp, + Price: float64(0.5678), + }, + { + Timestamp: testTimestamp.Add(-5 * time.Hour), + Price: float64(0.6054), + }, + }), + expected: api.SpotPriceItems{ + { + Timestamp: testTimestamp, + Price: float64(0.5678), + }, + { + Timestamp: testTimestamp.Add(-5 * time.Hour), + Price: float64(0.6054), + }, + }, + }, + } + + for _, c := range cases { + t.Run(c.name, func(tt *testing.T) { + res := c.history.Slice() + assert.Equal(tt, c.expected, res) + }) + } +} + +func TestHistory_Add(t *testing.T) { + cases := []struct { + name string + history *History + items api.SpotPriceItems + expected api.SpotPriceItems + }{ + { + name: "adding empty item list to empty history", + history: newHistoryMock(time.Time{}, 1*time.Second, api.SpotPriceItems{}), + items: api.SpotPriceItems{}, + expected: api.SpotPriceItems{}, + }, + { + name: "adding filled item list to empty history", + history: newHistoryMock(time.Time{}, 1*time.Second, api.SpotPriceItems{}), + items: api.SpotPriceItems{ + { + Timestamp: testTimestamp, + Price: float64(0.5678), + }, + { + Timestamp: testTimestamp.Add(-5 * time.Hour), + Price: float64(0.6054), + }, + }, + expected: api.SpotPriceItems{ + { + Timestamp: testTimestamp.Add(-5 * time.Hour), + Price: float64(0.6054), + }, + { + Timestamp: testTimestamp, + Price: float64(0.5678), + }, + }, + }, + { + name: "adding empty item list to filled history", + history: newHistoryMock(time.Time{}, 1*time.Second, api.SpotPriceItems{ + { + Timestamp: testTimestamp, + Price: float64(0.5678), + }, + { + Timestamp: testTimestamp.Add(-5 * time.Hour), + Price: float64(0.6054), + }, + }), + items: api.SpotPriceItems{}, + expected: api.SpotPriceItems{ + { + Timestamp: testTimestamp.Add(-5 * time.Hour), + Price: float64(0.6054), + }, + { + Timestamp: testTimestamp, + Price: float64(0.5678), + }, + }, + }, + { + name: "adding filled item list to filled history", + history: newHistoryMock(testTimestamp, 1*time.Second, api.SpotPriceItems{ + { + Timestamp: testTimestamp, + Price: float64(0.5678), + }, + { + Timestamp: testTimestamp.Add(-5 * time.Hour), + Price: float64(0.6054), + }, + }), + items: api.SpotPriceItems{ + { + Timestamp: testTimestamp.Add(-3 * time.Hour), + Price: float64(0.5783), + }, + { + Timestamp: testTimestamp.Add(-2 * time.Hour), + Price: float64(0.5609), + }, + }, + expected: api.SpotPriceItems{ + { + Timestamp: testTimestamp.Add(-5 * time.Hour), + Price: float64(0.6054), + }, + { + Timestamp: testTimestamp.Add(-3 * time.Hour), + Price: float64(0.5783), + }, + { + Timestamp: testTimestamp.Add(-2 * time.Hour), + Price: float64(0.5609), + }, + { + Timestamp: testTimestamp, + Price: float64(0.5678), + }, + }, + }, + } + + for _, c := range cases { + t.Run(c.name, func(tt *testing.T) { + c.history.Add(c.items) + res := c.history.Slice() + + assert.WithinDuration(tt, time.Now(), c.history.LastSync(), 10*time.Millisecond, "last sync time too old") + assert.Equal(tt, c.expected, res) + }) + } +} + +func TestHistory_Empty(t *testing.T) { + cases := []struct { + name string + history *History + expected bool + }{ + { + name: "empty history: return true", + history: newHistoryMock(time.Time{}, 1*time.Second, api.SpotPriceItems{}), + expected: true, + }, + { + name: "filled history: return false", + history: newHistoryMock(time.Time{}, 1*time.Second, api.SpotPriceItems{ + { + Timestamp: time.Now(), + Price: float64(0.5678), + }, + }), + expected: false, + }, + } + + for _, c := range cases { + t.Run(c.name, func(tt *testing.T) { + res := c.history.Empty() + assert.Equal(tt, c.expected, res) + }) + } +} + +func TestHistory_LastItem(t *testing.T) { + cases := []struct { + name string + history *History + expected api.SpotPriceItem + errorExpected bool + }{ + { + name: "no last item found", + history: newHistoryMock(time.Time{}, 1*time.Second, api.SpotPriceItems{}), + expected: api.EmptySpotPriceItem, + errorExpected: true, + }, + { + name: "last item found", + history: newHistoryMock(time.Time{}, 1*time.Second, api.SpotPriceItems{ + { + Timestamp: testTimestamp.Add(-5 * time.Hour), + Price: float64(0.6054), + }, + { + Timestamp: testTimestamp, + Price: float64(0.5678), + }, + }), + expected: api.SpotPriceItem{ + Timestamp: testTimestamp, + Price: float64(0.5678), + }, + errorExpected: false, + }, + } + + for _, c := range cases { + t.Run(c.name, func(tt *testing.T) { + res, err := c.history.LastItem() + + if c.errorExpected { + assert.NotNil(tt, err) + assert.Equal(tt, ErrEmptySpotPriceHistory, err) + assert.Equal(tt, c.expected, res) + } else { + assert.Nil(tt, err) + assert.Equal(tt, c.expected, res) + } + + }) + } +} + +func TestHistory_Housekeep(t *testing.T) { + cases := []struct { + name string + history *History + expected api.SpotPriceItems + }{ + { + name: "empty history - no change", + history: newHistoryMock(time.Time{}, 1*time.Second, api.SpotPriceItems{}), + expected: api.SpotPriceItems{}, + }, + { + name: "some entries deprecated", + history: newHistoryMock(time.Time{}, 3*time.Hour+30*time.Minute, api.SpotPriceItems{ + { + Timestamp: testTimestamp.Add(-5 * time.Hour), + Price: float64(0.6054), + }, + { + Timestamp: testTimestamp.Add(-4 * time.Hour), + Price: float64(0.5783), + }, + { + Timestamp: testTimestamp.Add(-3 * time.Hour), + Price: float64(0.5783), + }, + { + Timestamp: testTimestamp.Add(-2 * time.Hour), + Price: float64(0.5609), + }, + { + Timestamp: testTimestamp, + Price: float64(0.5678), + }, + }), + expected: api.SpotPriceItems{ + { + Timestamp: testTimestamp.Add(-3 * time.Hour), + Price: float64(0.5783), + }, + { + Timestamp: testTimestamp.Add(-2 * time.Hour), + Price: float64(0.5609), + }, + { + Timestamp: testTimestamp, + Price: float64(0.5678), + }, + }, + }, + { + name: "all entries deprecated, history empty after cleanup - last item still present", + history: newHistoryMock(time.Time{}, 1*time.Second, api.SpotPriceItems{ + { + Timestamp: testTimestamp.Add(-5 * time.Hour), + Price: float64(0.6054), + }, + { + Timestamp: testTimestamp.Add(-3 * time.Hour), + Price: float64(0.5783), + }, + { + Timestamp: testTimestamp.Add(-2 * time.Hour), + Price: float64(0.5609), + }, + { + Timestamp: testTimestamp, + Price: float64(0.5678), + }, + }), + expected: api.SpotPriceItems{ + { + Timestamp: testTimestamp, + Price: float64(0.5678), + }, + }, + }, + } + + for _, c := range cases { + t.Run(c.name, func(tt *testing.T) { + c.history.Housekeep() + res := c.history.Slice() + + assert.Equal(tt, c.expected, res) + }) + } +} + +func TestHistory_SetLastSync(t *testing.T) { + cases := []struct { + name string + history *History + }{ + { + name: "zero sync time: set actual time", + history: newHistoryMock(time.Time{}, 1*time.Second, api.SpotPriceItems{}), + }, + { + name: "existing sync time: set actual time", + history: newHistoryMock(testTimestamp, 1*time.Second, api.SpotPriceItems{}), + }, + } + + for _, c := range cases { + t.Run(c.name, func(tt *testing.T) { + c.history.SetLastSync() + assert.WithinDuration(tt, time.Now(), c.history.LastSync(), 10*time.Millisecond) + }) + } +} + +func newHistoryMock(lastSync time.Time, maxAge time.Duration, items api.SpotPriceItems) *History { + history := new(History) + + history.lastSync = lastSync + history.maxAge = maxAge + history.items = items + + return history +} From 01cf276c0274df1b585a957ca1442eb35faaaf33 Mon Sep 17 00:00:00 2001 From: ylallemant Date: Fri, 11 Jan 2019 13:52:45 +0100 Subject: [PATCH 29/33] added boilerplate header --- .../cloudprovider/aws/price/spot/history_test.go | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/cluster-autoscaler/cloudprovider/aws/price/spot/history_test.go b/cluster-autoscaler/cloudprovider/aws/price/spot/history_test.go index e33534c90d1b..d00a98847336 100644 --- a/cluster-autoscaler/cloudprovider/aws/price/spot/history_test.go +++ b/cluster-autoscaler/cloudprovider/aws/price/spot/history_test.go @@ -1,3 +1,19 @@ +/* +Copyright 2017 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package spot import ( From afe8f3c4d7dcd47ed305f3b1bec69bb8a78be50e Mon Sep 17 00:00:00 2001 From: ylallemant Date: Fri, 18 Jan 2019 16:17:50 +0100 Subject: [PATCH 30/33] go fmt... --- cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling.go b/cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling.go index fc89ae4ccf17..02f0cd8f7170 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling.go +++ b/cluster-autoscaler/cloudprovider/aws/api/ec2_autoscaling.go @@ -18,8 +18,8 @@ package api import ( "fmt" - "github.com/aws/aws-sdk-go/aws" + "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/service/autoscaling" ) @@ -62,7 +62,7 @@ func (ass *autoscalingService) DescribeAutoscalingGroup(autoscalingGroupName str for _, group := range res.AutoScalingGroups { if *group.AutoScalingGroupName == autoscalingGroupName { return &EC2AutoscalingGroup{ - Name: *group.AutoScalingGroupName, + Name: *group.AutoScalingGroupName, LaunchConfigurationName: *group.LaunchConfigurationName, AvailabilityZones: aws.StringValueSlice(group.AvailabilityZones), }, nil From 6f34ce72c805316adce6eb8de9b8981fad83db37 Mon Sep 17 00:00:00 2001 From: "Y. Lallemant" Date: Wed, 23 Jan 2019 15:52:28 +0100 Subject: [PATCH 31/33] use AWS SDK for OnDemand Nodes (#5) * added aws-pricing to godeps * updated kubernetes.sync * replaced glog with klog * using pricing SDK to list OnDemand prices * moved aws session creation to price/descriptor * fixed ondemand api test * updated test data for better test coverage --- cluster-autoscaler/Godeps/Godeps.json | 3093 +++++++++-------- .../cloudprovider/aws/api/UPDATE_TEST_DATA.md | 23 + .../cloudprovider/aws/api/instance_info.go | 214 +- .../aws/api/instance_info_test.go | 155 +- .../aws/api/instance_spot_price_history.go | 10 +- .../aws/api/pricing_eu-west-1.json | 325 -- .../aws/api/pricing_ondemand_eu-west-1.json | 20 + .../cloudprovider/aws/aws_cloud_provider.go | 13 +- .../cloudprovider/aws/price/descriptor.go | 5 +- .../aws/price/spot/descriptor.go | 6 +- .../cloudprovider/aws/price/spot/history.go | 6 +- cluster-autoscaler/expander/price/price.go | 3 +- cluster-autoscaler/kubernetes.sync | 10 +- .../aws/aws-sdk-go/service/pricing/api.go | 955 +++++ .../aws/aws-sdk-go/service/pricing/doc.go | 51 + .../aws/aws-sdk-go/service/pricing/errors.go | 37 + .../aws/aws-sdk-go/service/pricing/service.go | 100 + .../vendor/github.com/golang/glog/LICENSE | 191 + .../vendor/github.com/golang/glog/README | 44 + .../vendor/github.com/golang/glog/glog.go | 1180 +++++++ .../github.com/golang/glog/glog_file.go | 124 + .../pkg/util/proxy/upgradeaware.go | 39 +- .../pkg/util/webhook/authentication.go | 1 + .../vendor/k8s.io/client-go/rest/BUILD | 4 - .../vendor/k8s.io/client-go/rest/config.go | 26 +- .../tools/clientcmd/client_config.go | 7 +- .../vendor/k8s.io/client-go/transport/BUILD | 4 + .../k8s.io/client-go/transport/config.go | 7 +- .../client-go/transport/round_trippers.go | 39 +- .../{rest => transport}/token_source.go | 14 +- .../pkg/apis/autoscaling/v2beta1/BUILD | 6 +- .../apis/autoscaling/v2beta1/conversion.go | 12 +- .../azure/azure_controller_standard.go | 13 +- .../providers/azure/azure_controller_vmss.go | 46 +- .../providers/azure/azure_instances.go | 13 +- .../cloudprovider/providers/gce/cloud/gen.go | 2 +- .../k8s.io/kubernetes/pkg/kubelet/BUILD | 1 + .../kubernetes/pkg/kubelet/config/defaults.go | 1 + .../kubernetes/pkg/kubelet/kubelet_getters.go | 22 +- .../kubernetes/pkg/kubelet/kubelet_volumes.go | 16 +- .../kuberuntime/kuberuntime_sandbox.go | 3 + .../kubernetes/pkg/kubelet/server/stats/BUILD | 1 + .../pkg/kubelet/server/stats/summary.go | 24 +- .../server/stats/summary_sys_containers.go | 29 +- .../k8s.io/kubernetes/pkg/kubelet/util/BUILD | 2 + .../pkg/kubelet/util/boottime_util_darwin.go | 44 + .../pkg/kubelet/util/boottime_util_linux.go | 36 + .../util/pluginwatcher/plugin_watcher.go | 2 +- .../pkg/kubelet/util/util_unsupported.go | 5 + .../pkg/kubelet/util/util_windows.go | 13 + .../cache/desired_state_of_world.go | 13 +- .../volumemanager/reconciler/reconciler.go | 8 +- .../pkg/proxy/ipvs/graceful_termination.go | 12 +- .../kubernetes/pkg/proxy/ipvs/proxier.go | 84 +- .../k8s.io/kubernetes/pkg/proxy/util/utils.go | 47 + .../kubernetes/pkg/scheduler/algorithm/BUILD | 1 - .../pkg/scheduler/algorithm/types.go | 6 +- .../pkg/scheduler/core/generic_scheduler.go | 56 +- .../kubernetes/pkg/scheduler/factory/BUILD | 1 + .../pkg/scheduler/factory/factory.go | 56 +- .../pkg/scheduler/internal/cache/BUILD | 1 + .../pkg/scheduler/internal/cache/cache.go | 3 +- .../pkg/scheduler/internal/cache/interface.go | 6 +- .../pkg/scheduler/internal/queue/BUILD | 3 + .../internal/queue/scheduling_queue.go | 213 +- .../kubernetes/pkg/util/ipvs/ipvs_linux.go | 23 + .../k8s.io/kubernetes/pkg/util/mount/BUILD | 2 + .../k8s.io/kubernetes/pkg/util/mount/fake.go | 10 +- .../kubernetes/pkg/util/mount/mount_helper.go | 124 + .../kubernetes/pkg/util/mount/mount_linux.go | 40 +- .../pkg/volume/azure_dd/azure_common.go | 2 +- .../pkg/volume/azure_dd/azure_dd.go | 2 +- .../kubernetes/pkg/volume/csi/csi_plugin.go | 8 +- .../pkg/volume/portworx/portworx.go | 15 +- .../pkg/volume/portworx/portworx_util.go | 170 +- .../k8s.io/kubernetes/pkg/volume/util/BUILD | 9 +- .../operationexecutor/operation_executor.go | 2 +- .../operationexecutor/operation_generator.go | 98 +- .../k8s.io/kubernetes/pkg/volume/util/util.go | 97 +- 79 files changed, 5637 insertions(+), 2472 deletions(-) create mode 100644 cluster-autoscaler/cloudprovider/aws/api/UPDATE_TEST_DATA.md delete mode 100644 cluster-autoscaler/cloudprovider/aws/api/pricing_eu-west-1.json create mode 100644 cluster-autoscaler/cloudprovider/aws/api/pricing_ondemand_eu-west-1.json create mode 100644 cluster-autoscaler/vendor/github.com/aws/aws-sdk-go/service/pricing/api.go create mode 100644 cluster-autoscaler/vendor/github.com/aws/aws-sdk-go/service/pricing/doc.go create mode 100644 cluster-autoscaler/vendor/github.com/aws/aws-sdk-go/service/pricing/errors.go create mode 100644 cluster-autoscaler/vendor/github.com/aws/aws-sdk-go/service/pricing/service.go create mode 100644 cluster-autoscaler/vendor/github.com/golang/glog/LICENSE create mode 100644 cluster-autoscaler/vendor/github.com/golang/glog/README create mode 100644 cluster-autoscaler/vendor/github.com/golang/glog/glog.go create mode 100644 cluster-autoscaler/vendor/github.com/golang/glog/glog_file.go rename cluster-autoscaler/vendor/k8s.io/client-go/{rest => transport}/token_source.go (87%) create mode 100644 cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/util/boottime_util_darwin.go create mode 100644 cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/util/boottime_util_linux.go create mode 100644 cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/util/mount/mount_helper.go diff --git a/cluster-autoscaler/Godeps/Godeps.json b/cluster-autoscaler/Godeps/Godeps.json index 30ff1b339b70..e56378ba280e 100644 --- a/cluster-autoscaler/Godeps/Godeps.json +++ b/cluster-autoscaler/Godeps/Godeps.json @@ -23,43 +23,43 @@ }, { "ImportPath": "github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2018-10-01/compute", - "Comment": "v21.3.0-1-g541abcba", - "Rev": "541abcbad0801b2e0dc34980ba43c385c082338f" + "Comment": "v21.3.0-1-g33832ab67", + "Rev": "33832ab67033fd6d0dd826ea5c6f3f512a7e7e7c" }, { "ImportPath": "github.com/Azure/azure-sdk-for-go/services/containerregistry/mgmt/2017-10-01/containerregistry", - "Comment": "v21.3.0-1-g541abcba", - "Rev": "541abcbad0801b2e0dc34980ba43c385c082338f" + "Comment": "v21.3.0-1-g33832ab67", + "Rev": "33832ab67033fd6d0dd826ea5c6f3f512a7e7e7c" }, { "ImportPath": "github.com/Azure/azure-sdk-for-go/services/containerservice/mgmt/2018-03-31/containerservice", - "Comment": "v21.3.0-1-g541abcba", - "Rev": "541abcbad0801b2e0dc34980ba43c385c082338f" + "Comment": "v21.3.0-1-g33832ab67", + "Rev": "33832ab67033fd6d0dd826ea5c6f3f512a7e7e7c" }, { "ImportPath": "github.com/Azure/azure-sdk-for-go/services/network/mgmt/2017-09-01/network", - "Comment": "v21.3.0-1-g541abcba", - "Rev": "541abcbad0801b2e0dc34980ba43c385c082338f" + "Comment": "v21.3.0-1-g33832ab67", + "Rev": "33832ab67033fd6d0dd826ea5c6f3f512a7e7e7c" }, { "ImportPath": "github.com/Azure/azure-sdk-for-go/services/resources/mgmt/2017-05-10/resources", - "Comment": "v21.3.0-1-g541abcba", - "Rev": "541abcbad0801b2e0dc34980ba43c385c082338f" + "Comment": "v21.3.0-1-g33832ab67", + "Rev": "33832ab67033fd6d0dd826ea5c6f3f512a7e7e7c" }, { "ImportPath": "github.com/Azure/azure-sdk-for-go/services/storage/mgmt/2018-07-01/storage", - "Comment": "v21.3.0-1-g541abcba", - "Rev": "541abcbad0801b2e0dc34980ba43c385c082338f" + "Comment": "v21.3.0-1-g33832ab67", + "Rev": "33832ab67033fd6d0dd826ea5c6f3f512a7e7e7c" }, { "ImportPath": "github.com/Azure/azure-sdk-for-go/storage", - "Comment": "v21.3.0-1-g541abcba", - "Rev": "541abcbad0801b2e0dc34980ba43c385c082338f" + "Comment": "v21.3.0-1-g33832ab67", + "Rev": "33832ab67033fd6d0dd826ea5c6f3f512a7e7e7c" }, { "ImportPath": "github.com/Azure/azure-sdk-for-go/version", - "Comment": "v21.3.0-1-g541abcba", - "Rev": "541abcbad0801b2e0dc34980ba43c385c082338f" + "Comment": "v21.3.0-1-g33832ab67", + "Rev": "33832ab67033fd6d0dd826ea5c6f3f512a7e7e7c" }, { "ImportPath": "github.com/Azure/go-ansiterm", @@ -71,33 +71,33 @@ }, { "ImportPath": "github.com/Azure/go-autorest/autorest", - "Comment": "v11.1.0-1-g8b706c1", - "Rev": "8b706c11479dcb28f316d424c2a0fa93311debe3" + "Comment": "v11.1.0-1-g60305e4", + "Rev": "60305e4d6b37fcd9cd93948d2770c7920e88d69f" }, { "ImportPath": "github.com/Azure/go-autorest/autorest/adal", - "Comment": "v11.1.0-1-g8b706c1", - "Rev": "8b706c11479dcb28f316d424c2a0fa93311debe3" + "Comment": "v11.1.0-1-g60305e4", + "Rev": "60305e4d6b37fcd9cd93948d2770c7920e88d69f" }, { "ImportPath": "github.com/Azure/go-autorest/autorest/azure", - "Comment": "v11.1.0-1-g8b706c1", - "Rev": "8b706c11479dcb28f316d424c2a0fa93311debe3" + "Comment": "v11.1.0-1-g60305e4", + "Rev": "60305e4d6b37fcd9cd93948d2770c7920e88d69f" }, { "ImportPath": "github.com/Azure/go-autorest/autorest/date", - "Comment": "v11.1.0-1-g8b706c1", - "Rev": "8b706c11479dcb28f316d424c2a0fa93311debe3" + "Comment": "v11.1.0-1-g60305e4", + "Rev": "60305e4d6b37fcd9cd93948d2770c7920e88d69f" }, { "ImportPath": "github.com/Azure/go-autorest/autorest/to", - "Comment": "v11.1.0-1-g8b706c1", - "Rev": "8b706c11479dcb28f316d424c2a0fa93311debe3" + "Comment": "v11.1.0-1-g60305e4", + "Rev": "60305e4d6b37fcd9cd93948d2770c7920e88d69f" }, { "ImportPath": "github.com/Azure/go-autorest/autorest/validation", - "Comment": "v11.1.0-1-g8b706c1", - "Rev": "8b706c11479dcb28f316d424c2a0fa93311debe3" + "Comment": "v11.1.0-1-g60305e4", + "Rev": "60305e4d6b37fcd9cd93948d2770c7920e88d69f" }, { "ImportPath": "github.com/JeffAshton/win_pdh", @@ -161,178 +161,183 @@ }, { "ImportPath": "github.com/aws/aws-sdk-go/aws", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/aws/awserr", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/aws/awsutil", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/aws/client", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/aws/client/metadata", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/aws/corehandlers", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/aws/credentials", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/aws/credentials/endpointcreds", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/aws/credentials/stscreds", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/aws/csm", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/aws/defaults", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/aws/ec2metadata", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/aws/endpoints", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/aws/request", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/aws/session", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/aws/signer/v4", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/internal/sdkio", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/internal/sdkrand", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/internal/shareddefaults", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/private/protocol", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/private/protocol/ec2query", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/private/protocol/json/jsonutil", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/private/protocol/jsonrpc", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/private/protocol/query", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/private/protocol/query/queryutil", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/private/protocol/rest", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/service/autoscaling", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/service/ec2", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/service/ecr", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/service/elb", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/service/elbv2", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/service/kms", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" + }, + { + "ImportPath": "github.com/aws/aws-sdk-go/service/pricing", + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/aws/aws-sdk-go/service/sts", - "Comment": "v1.14.12-2-g906be003", - "Rev": "906be00371d06cae3e024fe094c69cc7960436f5" + "Comment": "v1.14.12-2-g329497a5", + "Rev": "329497a5f86a3433730c7e35a532c9be566d7b6d" }, { "ImportPath": "github.com/beorn7/perks/quantile", @@ -366,78 +371,78 @@ }, { "ImportPath": "github.com/containerd/containerd/api/services/containers/v1", - "Comment": "v1.0.2-1-g7f2e11d2", - "Rev": "7f2e11d2526dbba7f86118880342dbc004961949" + "Comment": "v1.0.2-1-g64b5196d", + "Rev": "64b5196df45f37570fac946524056c35009f19f8" }, { "ImportPath": "github.com/containerd/containerd/api/services/tasks/v1", - "Comment": "v1.0.2-1-g7f2e11d2", - "Rev": "7f2e11d2526dbba7f86118880342dbc004961949" + "Comment": "v1.0.2-1-g64b5196d", + "Rev": "64b5196df45f37570fac946524056c35009f19f8" }, { "ImportPath": "github.com/containerd/containerd/api/services/version/v1", - "Comment": "v1.0.2-1-g7f2e11d2", - "Rev": "7f2e11d2526dbba7f86118880342dbc004961949" + "Comment": "v1.0.2-1-g64b5196d", + "Rev": "64b5196df45f37570fac946524056c35009f19f8" }, { "ImportPath": "github.com/containerd/containerd/api/types", - "Comment": "v1.0.2-1-g7f2e11d2", - "Rev": "7f2e11d2526dbba7f86118880342dbc004961949" + "Comment": "v1.0.2-1-g64b5196d", + "Rev": "64b5196df45f37570fac946524056c35009f19f8" }, { "ImportPath": "github.com/containerd/containerd/api/types/task", - "Comment": "v1.0.2-1-g7f2e11d2", - "Rev": "7f2e11d2526dbba7f86118880342dbc004961949" + "Comment": "v1.0.2-1-g64b5196d", + "Rev": "64b5196df45f37570fac946524056c35009f19f8" }, { "ImportPath": "github.com/containerd/containerd/containers", - "Comment": "v1.0.2-1-g7f2e11d2", - "Rev": "7f2e11d2526dbba7f86118880342dbc004961949" + "Comment": "v1.0.2-1-g64b5196d", + "Rev": "64b5196df45f37570fac946524056c35009f19f8" }, { "ImportPath": "github.com/containerd/containerd/dialer", - "Comment": "v1.0.2-1-g7f2e11d2", - "Rev": "7f2e11d2526dbba7f86118880342dbc004961949" + "Comment": "v1.0.2-1-g64b5196d", + "Rev": "64b5196df45f37570fac946524056c35009f19f8" }, { "ImportPath": "github.com/containerd/containerd/errdefs", - "Comment": "v1.0.2-1-g7f2e11d2", - "Rev": "7f2e11d2526dbba7f86118880342dbc004961949" + "Comment": "v1.0.2-1-g64b5196d", + "Rev": "64b5196df45f37570fac946524056c35009f19f8" }, { "ImportPath": "github.com/containerd/containerd/namespaces", - "Comment": "v1.0.2-1-g7f2e11d2", - "Rev": "7f2e11d2526dbba7f86118880342dbc004961949" + "Comment": "v1.0.2-1-g64b5196d", + "Rev": "64b5196df45f37570fac946524056c35009f19f8" }, { "ImportPath": "github.com/containernetworking/cni/libcni", - "Comment": "v0.6.0-1-ge19c0b4", - "Rev": "e19c0b4e864458a5093666d860b98145d47b39e1" + "Comment": "v0.6.0-1-gb45b1ab", + "Rev": "b45b1ab5d60969c49999271d29da2f4acfe79699" }, { "ImportPath": "github.com/containernetworking/cni/pkg/invoke", - "Comment": "v0.6.0-1-ge19c0b4", - "Rev": "e19c0b4e864458a5093666d860b98145d47b39e1" + "Comment": "v0.6.0-1-gb45b1ab", + "Rev": "b45b1ab5d60969c49999271d29da2f4acfe79699" }, { "ImportPath": "github.com/containernetworking/cni/pkg/types", - "Comment": "v0.6.0-1-ge19c0b4", - "Rev": "e19c0b4e864458a5093666d860b98145d47b39e1" + "Comment": "v0.6.0-1-gb45b1ab", + "Rev": "b45b1ab5d60969c49999271d29da2f4acfe79699" }, { "ImportPath": "github.com/containernetworking/cni/pkg/types/020", - "Comment": "v0.6.0-1-ge19c0b4", - "Rev": "e19c0b4e864458a5093666d860b98145d47b39e1" + "Comment": "v0.6.0-1-gb45b1ab", + "Rev": "b45b1ab5d60969c49999271d29da2f4acfe79699" }, { "ImportPath": "github.com/containernetworking/cni/pkg/types/current", - "Comment": "v0.6.0-1-ge19c0b4", - "Rev": "e19c0b4e864458a5093666d860b98145d47b39e1" + "Comment": "v0.6.0-1-gb45b1ab", + "Rev": "b45b1ab5d60969c49999271d29da2f4acfe79699" }, { "ImportPath": "github.com/containernetworking/cni/pkg/version", - "Comment": "v0.6.0-1-ge19c0b4", - "Rev": "e19c0b4e864458a5093666d860b98145d47b39e1" + "Comment": "v0.6.0-1-gb45b1ab", + "Rev": "b45b1ab5d60969c49999271d29da2f4acfe79699" }, { "ImportPath": "github.com/coreos/go-systemd/daemon", @@ -461,13 +466,13 @@ }, { "ImportPath": "github.com/coreos/rkt/api/v1alpha", - "Comment": "v1.25.0-1-gf898f945", - "Rev": "f898f9450e8cba9688f916f389d5985675dbf39b" + "Comment": "v1.25.0-1-g3134694e", + "Rev": "3134694e384e8859e7eaf3867f6a9b4abb4d1672" }, { "ImportPath": "github.com/cyphar/filepath-securejoin", - "Comment": "v0.2.1-2-g0be6c49", - "Rev": "0be6c49ab9064879b3899eb0638bd472c0277151" + "Comment": "v0.2.1-2-ge080d7b", + "Rev": "e080d7b5dad1387bf3cc9fb5fc0607682366f109" }, { "ImportPath": "github.com/d2g/dhcp4", @@ -489,143 +494,143 @@ }, { "ImportPath": "github.com/docker/distribution/digestset", - "Comment": "v2.6.0-rc.1-210-gb869bb2f", - "Rev": "b869bb2f3c53614bf8accdf7ab61f0ecbe5a5a3e" + "Comment": "v2.6.0-rc.1-210-ga287c716", + "Rev": "a287c716525dc05181b6dc22473d5459b947b187" }, { "ImportPath": "github.com/docker/distribution/reference", - "Comment": "v2.6.0-rc.1-210-gb869bb2f", - "Rev": "b869bb2f3c53614bf8accdf7ab61f0ecbe5a5a3e" + "Comment": "v2.6.0-rc.1-210-ga287c716", + "Rev": "a287c716525dc05181b6dc22473d5459b947b187" }, { "ImportPath": "github.com/docker/docker/api", - "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-gd2f424ca26", - "Rev": "d2f424ca262112caddce2aa0ba4ea508109f40d1" + "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-g24c13d4d18", + "Rev": "24c13d4d1885108d79d432115608246603a7d96b" }, { "ImportPath": "github.com/docker/docker/api/types", - "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-gd2f424ca26", - "Rev": "d2f424ca262112caddce2aa0ba4ea508109f40d1" + "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-g24c13d4d18", + "Rev": "24c13d4d1885108d79d432115608246603a7d96b" }, { "ImportPath": "github.com/docker/docker/api/types/blkiodev", - "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-gd2f424ca26", - "Rev": "d2f424ca262112caddce2aa0ba4ea508109f40d1" + "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-g24c13d4d18", + "Rev": "24c13d4d1885108d79d432115608246603a7d96b" }, { "ImportPath": "github.com/docker/docker/api/types/container", - "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-gd2f424ca26", - "Rev": "d2f424ca262112caddce2aa0ba4ea508109f40d1" + "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-g24c13d4d18", + "Rev": "24c13d4d1885108d79d432115608246603a7d96b" }, { "ImportPath": "github.com/docker/docker/api/types/events", - "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-gd2f424ca26", - "Rev": "d2f424ca262112caddce2aa0ba4ea508109f40d1" + "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-g24c13d4d18", + "Rev": "24c13d4d1885108d79d432115608246603a7d96b" }, { "ImportPath": "github.com/docker/docker/api/types/filters", - "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-gd2f424ca26", - "Rev": "d2f424ca262112caddce2aa0ba4ea508109f40d1" + "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-g24c13d4d18", + "Rev": "24c13d4d1885108d79d432115608246603a7d96b" }, { "ImportPath": "github.com/docker/docker/api/types/image", - "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-gd2f424ca26", - "Rev": "d2f424ca262112caddce2aa0ba4ea508109f40d1" + "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-g24c13d4d18", + "Rev": "24c13d4d1885108d79d432115608246603a7d96b" }, { "ImportPath": "github.com/docker/docker/api/types/mount", - "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-gd2f424ca26", - "Rev": "d2f424ca262112caddce2aa0ba4ea508109f40d1" + "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-g24c13d4d18", + "Rev": "24c13d4d1885108d79d432115608246603a7d96b" }, { "ImportPath": "github.com/docker/docker/api/types/network", - "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-gd2f424ca26", - "Rev": "d2f424ca262112caddce2aa0ba4ea508109f40d1" + "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-g24c13d4d18", + "Rev": "24c13d4d1885108d79d432115608246603a7d96b" }, { "ImportPath": "github.com/docker/docker/api/types/registry", - "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-gd2f424ca26", - "Rev": "d2f424ca262112caddce2aa0ba4ea508109f40d1" + "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-g24c13d4d18", + "Rev": "24c13d4d1885108d79d432115608246603a7d96b" }, { "ImportPath": "github.com/docker/docker/api/types/strslice", - "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-gd2f424ca26", - "Rev": "d2f424ca262112caddce2aa0ba4ea508109f40d1" + "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-g24c13d4d18", + "Rev": "24c13d4d1885108d79d432115608246603a7d96b" }, { "ImportPath": "github.com/docker/docker/api/types/swarm", - "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-gd2f424ca26", - "Rev": "d2f424ca262112caddce2aa0ba4ea508109f40d1" + "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-g24c13d4d18", + "Rev": "24c13d4d1885108d79d432115608246603a7d96b" }, { "ImportPath": "github.com/docker/docker/api/types/swarm/runtime", - "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-gd2f424ca26", - "Rev": "d2f424ca262112caddce2aa0ba4ea508109f40d1" + "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-g24c13d4d18", + "Rev": "24c13d4d1885108d79d432115608246603a7d96b" }, { "ImportPath": "github.com/docker/docker/api/types/time", - "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-gd2f424ca26", - "Rev": "d2f424ca262112caddce2aa0ba4ea508109f40d1" + "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-g24c13d4d18", + "Rev": "24c13d4d1885108d79d432115608246603a7d96b" }, { "ImportPath": "github.com/docker/docker/api/types/versions", - "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-gd2f424ca26", - "Rev": "d2f424ca262112caddce2aa0ba4ea508109f40d1" + "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-g24c13d4d18", + "Rev": "24c13d4d1885108d79d432115608246603a7d96b" }, { "ImportPath": "github.com/docker/docker/api/types/volume", - "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-gd2f424ca26", - "Rev": "d2f424ca262112caddce2aa0ba4ea508109f40d1" + "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-g24c13d4d18", + "Rev": "24c13d4d1885108d79d432115608246603a7d96b" }, { "ImportPath": "github.com/docker/docker/client", - "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-gd2f424ca26", - "Rev": "d2f424ca262112caddce2aa0ba4ea508109f40d1" + "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-g24c13d4d18", + "Rev": "24c13d4d1885108d79d432115608246603a7d96b" }, { "ImportPath": "github.com/docker/docker/daemon/logger/jsonfilelog/jsonlog", - "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-gd2f424ca26", - "Rev": "d2f424ca262112caddce2aa0ba4ea508109f40d1" + "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-g24c13d4d18", + "Rev": "24c13d4d1885108d79d432115608246603a7d96b" }, { "ImportPath": "github.com/docker/docker/pkg/jsonmessage", - "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-gd2f424ca26", - "Rev": "d2f424ca262112caddce2aa0ba4ea508109f40d1" + "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-g24c13d4d18", + "Rev": "24c13d4d1885108d79d432115608246603a7d96b" }, { "ImportPath": "github.com/docker/docker/pkg/mount", - "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-gd2f424ca26", - "Rev": "d2f424ca262112caddce2aa0ba4ea508109f40d1" + "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-g24c13d4d18", + "Rev": "24c13d4d1885108d79d432115608246603a7d96b" }, { "ImportPath": "github.com/docker/docker/pkg/parsers", - "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-gd2f424ca26", - "Rev": "d2f424ca262112caddce2aa0ba4ea508109f40d1" + "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-g24c13d4d18", + "Rev": "24c13d4d1885108d79d432115608246603a7d96b" }, { "ImportPath": "github.com/docker/docker/pkg/parsers/operatingsystem", - "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-gd2f424ca26", - "Rev": "d2f424ca262112caddce2aa0ba4ea508109f40d1" + "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-g24c13d4d18", + "Rev": "24c13d4d1885108d79d432115608246603a7d96b" }, { "ImportPath": "github.com/docker/docker/pkg/stdcopy", - "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-gd2f424ca26", - "Rev": "d2f424ca262112caddce2aa0ba4ea508109f40d1" + "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-g24c13d4d18", + "Rev": "24c13d4d1885108d79d432115608246603a7d96b" }, { "ImportPath": "github.com/docker/docker/pkg/sysinfo", - "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-gd2f424ca26", - "Rev": "d2f424ca262112caddce2aa0ba4ea508109f40d1" + "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-g24c13d4d18", + "Rev": "24c13d4d1885108d79d432115608246603a7d96b" }, { "ImportPath": "github.com/docker/docker/pkg/term", - "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-gd2f424ca26", - "Rev": "d2f424ca262112caddce2aa0ba4ea508109f40d1" + "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-g24c13d4d18", + "Rev": "24c13d4d1885108d79d432115608246603a7d96b" }, { "ImportPath": "github.com/docker/docker/pkg/term/windows", - "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-gd2f424ca26", - "Rev": "d2f424ca262112caddce2aa0ba4ea508109f40d1" + "Comment": "docs-v1.12.0-rc4-2016-07-15-9512-g24c13d4d18", + "Rev": "24c13d4d1885108d79d432115608246603a7d96b" }, { "ImportPath": "github.com/docker/go-connections/nat", @@ -649,8 +654,8 @@ }, { "ImportPath": "github.com/docker/libnetwork/ipvs", - "Comment": "v0.8.0-dev.2-1266-gbc9ffbdb", - "Rev": "bc9ffbdbb964ca6742b58364e45453e85d634bb0" + "Comment": "v0.8.0-dev.2-1266-g1c68e497", + "Rev": "1c68e497056216b0d9203c7968189004721cf6f6" }, { "ImportPath": "github.com/docker/spdystream", @@ -710,12 +715,12 @@ }, { "ImportPath": "github.com/go-openapi/jsonpointer", - "Comment": "v0.17.2", + "Comment": "v0.18.0", "Rev": "ef5f0afec364d3b9396b7b77b43dbe26bf1f8004" }, { "ImportPath": "github.com/go-openapi/jsonreference", - "Comment": "v0.17.2", + "Comment": "v0.18.0", "Rev": "8483a886a90412cd6858df4ea3483dce9c8e35a3" }, { @@ -768,6 +773,10 @@ "Comment": "v0.5", "Rev": "342cbe0a04158f6dcb03ca0079991a51a4248c02" }, + { + "ImportPath": "github.com/golang/glog", + "Rev": "23def4e6c14b4da8ac2ed8007337bc5eb5007998" + }, { "ImportPath": "github.com/golang/groupcache/lru", "Rev": "02826c3e79038b59d737d3b1c0a1d937f71a4433" @@ -817,183 +826,183 @@ }, { "ImportPath": "github.com/google/cadvisor/accelerators", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/cache/memory", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/collector", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/container", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/container/common", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/container/containerd", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/container/crio", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/container/docker", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/container/libcontainer", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/container/mesos", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/container/raw", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/container/rkt", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/container/systemd", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/devicemapper", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/events", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/fs", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/info/v1", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/info/v2", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/machine", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/manager", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/manager/watcher", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/manager/watcher/raw", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/manager/watcher/rkt", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/metrics", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/storage", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/summary", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/utils", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/utils/cloudinfo", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/utils/cpuload", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/utils/cpuload/netlink", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/utils/docker", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/utils/oomparser", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/utils/sysfs", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/utils/sysinfo", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/version", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/cadvisor/zfs", - "Comment": "v0.32.0-1-g71f4d3db", - "Rev": "71f4d3dba95580556293597df2661f746e18481b" + "Comment": "v0.32.0-1-gc79add0e", + "Rev": "c79add0e72c545fe050a534aab35833c657c593e" }, { "ImportPath": "github.com/google/gofuzz", @@ -1159,17 +1168,17 @@ }, { "ImportPath": "github.com/heketi/heketi/client/api/go-client", - "Comment": "v8.0.0-49-g558b292", + "Comment": "v8.0.0-49-g558b2926", "Rev": "558b29266ce0a873991ecfb3edc41a668a998514" }, { "ImportPath": "github.com/heketi/heketi/pkg/glusterfs/api", - "Comment": "v8.0.0-49-g558b292", + "Comment": "v8.0.0-49-g558b2926", "Rev": "558b29266ce0a873991ecfb3edc41a668a998514" }, { "ImportPath": "github.com/heketi/heketi/pkg/utils", - "Comment": "v8.0.0-49-g558b292", + "Comment": "v8.0.0-49-g558b2926", "Rev": "558b29266ce0a873991ecfb3edc41a668a998514" }, { @@ -1207,31 +1216,31 @@ }, { "ImportPath": "github.com/libopenstorage/openstorage/api", - "Rev": "5a0aee411e4133f3def6a31563a4d216b66b0afe" + "Rev": "c888502d608ef472adb4d6752dd75ee654314d15" }, { "ImportPath": "github.com/libopenstorage/openstorage/api/client", - "Rev": "5a0aee411e4133f3def6a31563a4d216b66b0afe" + "Rev": "c888502d608ef472adb4d6752dd75ee654314d15" }, { "ImportPath": "github.com/libopenstorage/openstorage/api/client/volume", - "Rev": "5a0aee411e4133f3def6a31563a4d216b66b0afe" + "Rev": "c888502d608ef472adb4d6752dd75ee654314d15" }, { "ImportPath": "github.com/libopenstorage/openstorage/api/spec", - "Rev": "5a0aee411e4133f3def6a31563a4d216b66b0afe" + "Rev": "c888502d608ef472adb4d6752dd75ee654314d15" }, { "ImportPath": "github.com/libopenstorage/openstorage/pkg/parser", - "Rev": "5a0aee411e4133f3def6a31563a4d216b66b0afe" + "Rev": "c888502d608ef472adb4d6752dd75ee654314d15" }, { "ImportPath": "github.com/libopenstorage/openstorage/pkg/units", - "Rev": "5a0aee411e4133f3def6a31563a4d216b66b0afe" + "Rev": "c888502d608ef472adb4d6752dd75ee654314d15" }, { "ImportPath": "github.com/libopenstorage/openstorage/volume", - "Rev": "5a0aee411e4133f3def6a31563a4d216b66b0afe" + "Rev": "c888502d608ef472adb4d6752dd75ee654314d15" }, { "ImportPath": "github.com/mailru/easyjson/buffer", @@ -1262,73 +1271,73 @@ }, { "ImportPath": "github.com/mesos/mesos-go/api/v1/lib", - "Comment": "mesos-1.6.x-14-g55319d4", - "Rev": "55319d4ec884c3fb7ffdba6bbebe31a1bd869c03" + "Comment": "mesos-1.6.x-14-g7878dd5", + "Rev": "7878dd5d490f29f61aa313b25e0de108c893ca7e" }, { "ImportPath": "github.com/mesos/mesos-go/api/v1/lib/agent", - "Comment": "mesos-1.6.x-14-g55319d4", - "Rev": "55319d4ec884c3fb7ffdba6bbebe31a1bd869c03" + "Comment": "mesos-1.6.x-14-g7878dd5", + "Rev": "7878dd5d490f29f61aa313b25e0de108c893ca7e" }, { "ImportPath": "github.com/mesos/mesos-go/api/v1/lib/agent/calls", - "Comment": "mesos-1.6.x-14-g55319d4", - "Rev": "55319d4ec884c3fb7ffdba6bbebe31a1bd869c03" + "Comment": "mesos-1.6.x-14-g7878dd5", + "Rev": "7878dd5d490f29f61aa313b25e0de108c893ca7e" }, { "ImportPath": "github.com/mesos/mesos-go/api/v1/lib/client", - "Comment": "mesos-1.6.x-14-g55319d4", - "Rev": "55319d4ec884c3fb7ffdba6bbebe31a1bd869c03" + "Comment": "mesos-1.6.x-14-g7878dd5", + "Rev": "7878dd5d490f29f61aa313b25e0de108c893ca7e" }, { "ImportPath": "github.com/mesos/mesos-go/api/v1/lib/debug", - "Comment": "mesos-1.6.x-14-g55319d4", - "Rev": "55319d4ec884c3fb7ffdba6bbebe31a1bd869c03" + "Comment": "mesos-1.6.x-14-g7878dd5", + "Rev": "7878dd5d490f29f61aa313b25e0de108c893ca7e" }, { "ImportPath": "github.com/mesos/mesos-go/api/v1/lib/encoding", - "Comment": "mesos-1.6.x-14-g55319d4", - "Rev": "55319d4ec884c3fb7ffdba6bbebe31a1bd869c03" + "Comment": "mesos-1.6.x-14-g7878dd5", + "Rev": "7878dd5d490f29f61aa313b25e0de108c893ca7e" }, { "ImportPath": "github.com/mesos/mesos-go/api/v1/lib/encoding/codecs", - "Comment": "mesos-1.6.x-14-g55319d4", - "Rev": "55319d4ec884c3fb7ffdba6bbebe31a1bd869c03" + "Comment": "mesos-1.6.x-14-g7878dd5", + "Rev": "7878dd5d490f29f61aa313b25e0de108c893ca7e" }, { "ImportPath": "github.com/mesos/mesos-go/api/v1/lib/encoding/framing", - "Comment": "mesos-1.6.x-14-g55319d4", - "Rev": "55319d4ec884c3fb7ffdba6bbebe31a1bd869c03" + "Comment": "mesos-1.6.x-14-g7878dd5", + "Rev": "7878dd5d490f29f61aa313b25e0de108c893ca7e" }, { "ImportPath": "github.com/mesos/mesos-go/api/v1/lib/encoding/json", - "Comment": "mesos-1.6.x-14-g55319d4", - "Rev": "55319d4ec884c3fb7ffdba6bbebe31a1bd869c03" + "Comment": "mesos-1.6.x-14-g7878dd5", + "Rev": "7878dd5d490f29f61aa313b25e0de108c893ca7e" }, { "ImportPath": "github.com/mesos/mesos-go/api/v1/lib/encoding/proto", - "Comment": "mesos-1.6.x-14-g55319d4", - "Rev": "55319d4ec884c3fb7ffdba6bbebe31a1bd869c03" + "Comment": "mesos-1.6.x-14-g7878dd5", + "Rev": "7878dd5d490f29f61aa313b25e0de108c893ca7e" }, { "ImportPath": "github.com/mesos/mesos-go/api/v1/lib/httpcli", - "Comment": "mesos-1.6.x-14-g55319d4", - "Rev": "55319d4ec884c3fb7ffdba6bbebe31a1bd869c03" + "Comment": "mesos-1.6.x-14-g7878dd5", + "Rev": "7878dd5d490f29f61aa313b25e0de108c893ca7e" }, { "ImportPath": "github.com/mesos/mesos-go/api/v1/lib/httpcli/apierrors", - "Comment": "mesos-1.6.x-14-g55319d4", - "Rev": "55319d4ec884c3fb7ffdba6bbebe31a1bd869c03" + "Comment": "mesos-1.6.x-14-g7878dd5", + "Rev": "7878dd5d490f29f61aa313b25e0de108c893ca7e" }, { "ImportPath": "github.com/mesos/mesos-go/api/v1/lib/recordio", - "Comment": "mesos-1.6.x-14-g55319d4", - "Rev": "55319d4ec884c3fb7ffdba6bbebe31a1bd869c03" + "Comment": "mesos-1.6.x-14-g7878dd5", + "Rev": "7878dd5d490f29f61aa313b25e0de108c893ca7e" }, { "ImportPath": "github.com/mesos/mesos-go/api/v1/lib/roles", - "Comment": "mesos-1.6.x-14-g55319d4", - "Rev": "55319d4ec884c3fb7ffdba6bbebe31a1bd869c03" + "Comment": "mesos-1.6.x-14-g7878dd5", + "Rev": "7878dd5d490f29f61aa313b25e0de108c893ca7e" }, { "ImportPath": "github.com/miekg/dns", @@ -1385,83 +1394,83 @@ }, { "ImportPath": "github.com/opencontainers/runc/libcontainer", - "Comment": "v1.0.0-rc5-47-gea7170d5", - "Rev": "ea7170d59f0eda19113ddee10527bc5682b0be55" + "Comment": "v1.0.0-rc5-47-gc061e128", + "Rev": "c061e1283a72690919a3ccbc2c16e6cef9698569" }, { "ImportPath": "github.com/opencontainers/runc/libcontainer/apparmor", - "Comment": "v1.0.0-rc5-47-gea7170d5", - "Rev": "ea7170d59f0eda19113ddee10527bc5682b0be55" + "Comment": "v1.0.0-rc5-47-gc061e128", + "Rev": "c061e1283a72690919a3ccbc2c16e6cef9698569" }, { "ImportPath": "github.com/opencontainers/runc/libcontainer/cgroups", - "Comment": "v1.0.0-rc5-47-gea7170d5", - "Rev": "ea7170d59f0eda19113ddee10527bc5682b0be55" + "Comment": "v1.0.0-rc5-47-gc061e128", + "Rev": "c061e1283a72690919a3ccbc2c16e6cef9698569" }, { "ImportPath": "github.com/opencontainers/runc/libcontainer/cgroups/fs", - "Comment": "v1.0.0-rc5-47-gea7170d5", - "Rev": "ea7170d59f0eda19113ddee10527bc5682b0be55" + "Comment": "v1.0.0-rc5-47-gc061e128", + "Rev": "c061e1283a72690919a3ccbc2c16e6cef9698569" }, { "ImportPath": "github.com/opencontainers/runc/libcontainer/cgroups/systemd", - "Comment": "v1.0.0-rc5-47-gea7170d5", - "Rev": "ea7170d59f0eda19113ddee10527bc5682b0be55" + "Comment": "v1.0.0-rc5-47-gc061e128", + "Rev": "c061e1283a72690919a3ccbc2c16e6cef9698569" }, { "ImportPath": "github.com/opencontainers/runc/libcontainer/configs", - "Comment": "v1.0.0-rc5-47-gea7170d5", - "Rev": "ea7170d59f0eda19113ddee10527bc5682b0be55" + "Comment": "v1.0.0-rc5-47-gc061e128", + "Rev": "c061e1283a72690919a3ccbc2c16e6cef9698569" }, { "ImportPath": "github.com/opencontainers/runc/libcontainer/configs/validate", - "Comment": "v1.0.0-rc5-47-gea7170d5", - "Rev": "ea7170d59f0eda19113ddee10527bc5682b0be55" + "Comment": "v1.0.0-rc5-47-gc061e128", + "Rev": "c061e1283a72690919a3ccbc2c16e6cef9698569" }, { "ImportPath": "github.com/opencontainers/runc/libcontainer/criurpc", - "Comment": "v1.0.0-rc5-47-gea7170d5", - "Rev": "ea7170d59f0eda19113ddee10527bc5682b0be55" + "Comment": "v1.0.0-rc5-47-gc061e128", + "Rev": "c061e1283a72690919a3ccbc2c16e6cef9698569" }, { "ImportPath": "github.com/opencontainers/runc/libcontainer/intelrdt", - "Comment": "v1.0.0-rc5-47-gea7170d5", - "Rev": "ea7170d59f0eda19113ddee10527bc5682b0be55" + "Comment": "v1.0.0-rc5-47-gc061e128", + "Rev": "c061e1283a72690919a3ccbc2c16e6cef9698569" }, { "ImportPath": "github.com/opencontainers/runc/libcontainer/keys", - "Comment": "v1.0.0-rc5-47-gea7170d5", - "Rev": "ea7170d59f0eda19113ddee10527bc5682b0be55" + "Comment": "v1.0.0-rc5-47-gc061e128", + "Rev": "c061e1283a72690919a3ccbc2c16e6cef9698569" }, { "ImportPath": "github.com/opencontainers/runc/libcontainer/mount", - "Comment": "v1.0.0-rc5-47-gea7170d5", - "Rev": "ea7170d59f0eda19113ddee10527bc5682b0be55" + "Comment": "v1.0.0-rc5-47-gc061e128", + "Rev": "c061e1283a72690919a3ccbc2c16e6cef9698569" }, { "ImportPath": "github.com/opencontainers/runc/libcontainer/seccomp", - "Comment": "v1.0.0-rc5-47-gea7170d5", - "Rev": "ea7170d59f0eda19113ddee10527bc5682b0be55" + "Comment": "v1.0.0-rc5-47-gc061e128", + "Rev": "c061e1283a72690919a3ccbc2c16e6cef9698569" }, { "ImportPath": "github.com/opencontainers/runc/libcontainer/stacktrace", - "Comment": "v1.0.0-rc5-47-gea7170d5", - "Rev": "ea7170d59f0eda19113ddee10527bc5682b0be55" + "Comment": "v1.0.0-rc5-47-gc061e128", + "Rev": "c061e1283a72690919a3ccbc2c16e6cef9698569" }, { "ImportPath": "github.com/opencontainers/runc/libcontainer/system", - "Comment": "v1.0.0-rc5-47-gea7170d5", - "Rev": "ea7170d59f0eda19113ddee10527bc5682b0be55" + "Comment": "v1.0.0-rc5-47-gc061e128", + "Rev": "c061e1283a72690919a3ccbc2c16e6cef9698569" }, { "ImportPath": "github.com/opencontainers/runc/libcontainer/user", - "Comment": "v1.0.0-rc5-47-gea7170d5", - "Rev": "ea7170d59f0eda19113ddee10527bc5682b0be55" + "Comment": "v1.0.0-rc5-47-gc061e128", + "Rev": "c061e1283a72690919a3ccbc2c16e6cef9698569" }, { "ImportPath": "github.com/opencontainers/runc/libcontainer/utils", - "Comment": "v1.0.0-rc5-47-gea7170d5", - "Rev": "ea7170d59f0eda19113ddee10527bc5682b0be55" + "Comment": "v1.0.0-rc5-47-gc061e128", + "Rev": "c061e1283a72690919a3ccbc2c16e6cef9698569" }, { "ImportPath": "github.com/opencontainers/runtime-spec/specs-go", @@ -1502,11 +1511,11 @@ }, { "ImportPath": "github.com/pquerna/ffjson/fflib/v1", - "Rev": "9e2c6466d97bb185232b2534ed09356080100647" + "Rev": "7b31e31f7874d1661bf0f616e95c4b8e8600d9a9" }, { "ImportPath": "github.com/pquerna/ffjson/fflib/v1/internal", - "Rev": "9e2c6466d97bb185232b2534ed09356080100647" + "Rev": "7b31e31f7874d1661bf0f616e95c4b8e8600d9a9" }, { "ImportPath": "github.com/prometheus/client_golang/prometheus", @@ -1550,8 +1559,8 @@ }, { "ImportPath": "github.com/rancher/go-rancher/client", - "Comment": "v0.1.0-197-g83099ea", - "Rev": "83099eae75f167389dcf7372111ff2a1c5c43dfc" + "Comment": "v0.1.0-197-gc307816", + "Rev": "c3078161b04fe323c6c43d27ab893d6c7e8c5ec9" }, { "ImportPath": "github.com/renstrom/dedent", @@ -1560,7 +1569,7 @@ }, { "ImportPath": "github.com/rubiojr/go-vhd/vhd", - "Rev": "418c08ac24e1fde04a5dfa7f8b290514e4ae59a0" + "Rev": "7dd03acfebb96e022b222b564f6098c1337f712d" }, { "ImportPath": "github.com/satori/go.uuid", @@ -1628,13 +1637,13 @@ }, { "ImportPath": "github.com/stretchr/testify/assert", - "Comment": "v1.2.1-15-g8e0656f", - "Rev": "8e0656fdf766ca9523f21349d30ce89ddd12ed94" + "Comment": "v1.2.1-15-gecb9b00", + "Rev": "ecb9b00c820a813dc8968fbaaed8a838fb241a27" }, { "ImportPath": "github.com/stretchr/testify/mock", - "Comment": "v1.2.1-15-g8e0656f", - "Rev": "8e0656fdf766ca9523f21349d30ce89ddd12ed94" + "Comment": "v1.2.1-15-gecb9b00", + "Rev": "ecb9b00c820a813dc8968fbaaed8a838fb241a27" }, { "ImportPath": "github.com/syndtr/gocapability/capability", @@ -1654,133 +1663,133 @@ }, { "ImportPath": "github.com/vmware/govmomi/find", - "Comment": "v0.18.0-50-g85b21fd", - "Rev": "85b21fd1adeb776b697965951a9f35f07cd52e37" + "Comment": "v0.18.0-50-g9acdfc2", + "Rev": "9acdfc28401d087b96a15e5ae27b53a4842977b0" }, { "ImportPath": "github.com/vmware/govmomi/list", - "Comment": "v0.18.0-50-g85b21fd", - "Rev": "85b21fd1adeb776b697965951a9f35f07cd52e37" + "Comment": "v0.18.0-50-g9acdfc2", + "Rev": "9acdfc28401d087b96a15e5ae27b53a4842977b0" }, { "ImportPath": "github.com/vmware/govmomi/lookup", - "Comment": "v0.18.0-50-g85b21fd", - "Rev": "85b21fd1adeb776b697965951a9f35f07cd52e37" + "Comment": "v0.18.0-50-g9acdfc2", + "Rev": "9acdfc28401d087b96a15e5ae27b53a4842977b0" }, { "ImportPath": "github.com/vmware/govmomi/lookup/methods", - "Comment": "v0.18.0-50-g85b21fd", - "Rev": "85b21fd1adeb776b697965951a9f35f07cd52e37" + "Comment": "v0.18.0-50-g9acdfc2", + "Rev": "9acdfc28401d087b96a15e5ae27b53a4842977b0" }, { "ImportPath": "github.com/vmware/govmomi/lookup/types", - "Comment": "v0.18.0-50-g85b21fd", - "Rev": "85b21fd1adeb776b697965951a9f35f07cd52e37" + "Comment": "v0.18.0-50-g9acdfc2", + "Rev": "9acdfc28401d087b96a15e5ae27b53a4842977b0" }, { "ImportPath": "github.com/vmware/govmomi/nfc", - "Comment": "v0.18.0-50-g85b21fd", - "Rev": "85b21fd1adeb776b697965951a9f35f07cd52e37" + "Comment": "v0.18.0-50-g9acdfc2", + "Rev": "9acdfc28401d087b96a15e5ae27b53a4842977b0" }, { "ImportPath": "github.com/vmware/govmomi/object", - "Comment": "v0.18.0-50-g85b21fd", - "Rev": "85b21fd1adeb776b697965951a9f35f07cd52e37" + "Comment": "v0.18.0-50-g9acdfc2", + "Rev": "9acdfc28401d087b96a15e5ae27b53a4842977b0" }, { "ImportPath": "github.com/vmware/govmomi/pbm", - "Comment": "v0.18.0-50-g85b21fd", - "Rev": "85b21fd1adeb776b697965951a9f35f07cd52e37" + "Comment": "v0.18.0-50-g9acdfc2", + "Rev": "9acdfc28401d087b96a15e5ae27b53a4842977b0" }, { "ImportPath": "github.com/vmware/govmomi/pbm/methods", - "Comment": "v0.18.0-50-g85b21fd", - "Rev": "85b21fd1adeb776b697965951a9f35f07cd52e37" + "Comment": "v0.18.0-50-g9acdfc2", + "Rev": "9acdfc28401d087b96a15e5ae27b53a4842977b0" }, { "ImportPath": "github.com/vmware/govmomi/pbm/types", - "Comment": "v0.18.0-50-g85b21fd", - "Rev": "85b21fd1adeb776b697965951a9f35f07cd52e37" + "Comment": "v0.18.0-50-g9acdfc2", + "Rev": "9acdfc28401d087b96a15e5ae27b53a4842977b0" }, { "ImportPath": "github.com/vmware/govmomi/property", - "Comment": "v0.18.0-50-g85b21fd", - "Rev": "85b21fd1adeb776b697965951a9f35f07cd52e37" + "Comment": "v0.18.0-50-g9acdfc2", + "Rev": "9acdfc28401d087b96a15e5ae27b53a4842977b0" }, { "ImportPath": "github.com/vmware/govmomi/session", - "Comment": "v0.18.0-50-g85b21fd", - "Rev": "85b21fd1adeb776b697965951a9f35f07cd52e37" + "Comment": "v0.18.0-50-g9acdfc2", + "Rev": "9acdfc28401d087b96a15e5ae27b53a4842977b0" }, { "ImportPath": "github.com/vmware/govmomi/sts", - "Comment": "v0.18.0-50-g85b21fd", - "Rev": "85b21fd1adeb776b697965951a9f35f07cd52e37" + "Comment": "v0.18.0-50-g9acdfc2", + "Rev": "9acdfc28401d087b96a15e5ae27b53a4842977b0" }, { "ImportPath": "github.com/vmware/govmomi/sts/internal", - "Comment": "v0.18.0-50-g85b21fd", - "Rev": "85b21fd1adeb776b697965951a9f35f07cd52e37" + "Comment": "v0.18.0-50-g9acdfc2", + "Rev": "9acdfc28401d087b96a15e5ae27b53a4842977b0" }, { "ImportPath": "github.com/vmware/govmomi/task", - "Comment": "v0.18.0-50-g85b21fd", - "Rev": "85b21fd1adeb776b697965951a9f35f07cd52e37" + "Comment": "v0.18.0-50-g9acdfc2", + "Rev": "9acdfc28401d087b96a15e5ae27b53a4842977b0" }, { "ImportPath": "github.com/vmware/govmomi/vapi/internal", - "Comment": "v0.18.0-50-g85b21fd", - "Rev": "85b21fd1adeb776b697965951a9f35f07cd52e37" + "Comment": "v0.18.0-50-g9acdfc2", + "Rev": "9acdfc28401d087b96a15e5ae27b53a4842977b0" }, { "ImportPath": "github.com/vmware/govmomi/vapi/rest", - "Comment": "v0.18.0-50-g85b21fd", - "Rev": "85b21fd1adeb776b697965951a9f35f07cd52e37" + "Comment": "v0.18.0-50-g9acdfc2", + "Rev": "9acdfc28401d087b96a15e5ae27b53a4842977b0" }, { "ImportPath": "github.com/vmware/govmomi/vapi/tags", - "Comment": "v0.18.0-50-g85b21fd", - "Rev": "85b21fd1adeb776b697965951a9f35f07cd52e37" + "Comment": "v0.18.0-50-g9acdfc2", + "Rev": "9acdfc28401d087b96a15e5ae27b53a4842977b0" }, { "ImportPath": "github.com/vmware/govmomi/vim25", - "Comment": "v0.18.0-50-g85b21fd", - "Rev": "85b21fd1adeb776b697965951a9f35f07cd52e37" + "Comment": "v0.18.0-50-g9acdfc2", + "Rev": "9acdfc28401d087b96a15e5ae27b53a4842977b0" }, { "ImportPath": "github.com/vmware/govmomi/vim25/debug", - "Comment": "v0.18.0-50-g85b21fd", - "Rev": "85b21fd1adeb776b697965951a9f35f07cd52e37" + "Comment": "v0.18.0-50-g9acdfc2", + "Rev": "9acdfc28401d087b96a15e5ae27b53a4842977b0" }, { "ImportPath": "github.com/vmware/govmomi/vim25/methods", - "Comment": "v0.18.0-50-g85b21fd", - "Rev": "85b21fd1adeb776b697965951a9f35f07cd52e37" + "Comment": "v0.18.0-50-g9acdfc2", + "Rev": "9acdfc28401d087b96a15e5ae27b53a4842977b0" }, { "ImportPath": "github.com/vmware/govmomi/vim25/mo", - "Comment": "v0.18.0-50-g85b21fd", - "Rev": "85b21fd1adeb776b697965951a9f35f07cd52e37" + "Comment": "v0.18.0-50-g9acdfc2", + "Rev": "9acdfc28401d087b96a15e5ae27b53a4842977b0" }, { "ImportPath": "github.com/vmware/govmomi/vim25/progress", - "Comment": "v0.18.0-50-g85b21fd", - "Rev": "85b21fd1adeb776b697965951a9f35f07cd52e37" + "Comment": "v0.18.0-50-g9acdfc2", + "Rev": "9acdfc28401d087b96a15e5ae27b53a4842977b0" }, { "ImportPath": "github.com/vmware/govmomi/vim25/soap", - "Comment": "v0.18.0-50-g85b21fd", - "Rev": "85b21fd1adeb776b697965951a9f35f07cd52e37" + "Comment": "v0.18.0-50-g9acdfc2", + "Rev": "9acdfc28401d087b96a15e5ae27b53a4842977b0" }, { "ImportPath": "github.com/vmware/govmomi/vim25/types", - "Comment": "v0.18.0-50-g85b21fd", - "Rev": "85b21fd1adeb776b697965951a9f35f07cd52e37" + "Comment": "v0.18.0-50-g9acdfc2", + "Rev": "9acdfc28401d087b96a15e5ae27b53a4842977b0" }, { "ImportPath": "github.com/vmware/govmomi/vim25/xml", - "Comment": "v0.18.0-50-g85b21fd", - "Rev": "85b21fd1adeb776b697965951a9f35f07cd52e37" + "Comment": "v0.18.0-50-g9acdfc2", + "Rev": "9acdfc28401d087b96a15e5ae27b53a4842977b0" }, { "ImportPath": "github.com/vmware/photon-controller-go-sdk/SSPI", @@ -1996,39 +2005,39 @@ }, { "ImportPath": "google.golang.org/api/compute/v0.alpha", - "Rev": "9ae993de6357beab523761e324a2e0941b323833" + "Rev": "48d7507584184935318f7e63262c8dd702782db8" }, { "ImportPath": "google.golang.org/api/compute/v0.beta", - "Rev": "9ae993de6357beab523761e324a2e0941b323833" + "Rev": "48d7507584184935318f7e63262c8dd702782db8" }, { "ImportPath": "google.golang.org/api/compute/v1", - "Rev": "9ae993de6357beab523761e324a2e0941b323833" + "Rev": "48d7507584184935318f7e63262c8dd702782db8" }, { "ImportPath": "google.golang.org/api/container/v1", - "Rev": "9ae993de6357beab523761e324a2e0941b323833" + "Rev": "48d7507584184935318f7e63262c8dd702782db8" }, { "ImportPath": "google.golang.org/api/container/v1beta1", - "Rev": "9ae993de6357beab523761e324a2e0941b323833" + "Rev": "48d7507584184935318f7e63262c8dd702782db8" }, { "ImportPath": "google.golang.org/api/gensupport", - "Rev": "9ae993de6357beab523761e324a2e0941b323833" + "Rev": "48d7507584184935318f7e63262c8dd702782db8" }, { "ImportPath": "google.golang.org/api/googleapi", - "Rev": "9ae993de6357beab523761e324a2e0941b323833" + "Rev": "48d7507584184935318f7e63262c8dd702782db8" }, { "ImportPath": "google.golang.org/api/googleapi/internal/uritemplates", - "Rev": "9ae993de6357beab523761e324a2e0941b323833" + "Rev": "48d7507584184935318f7e63262c8dd702782db8" }, { "ImportPath": "google.golang.org/api/tpu/v1", - "Rev": "9ae993de6357beab523761e324a2e0941b323833" + "Rev": "48d7507584184935318f7e63262c8dd702782db8" }, { "ImportPath": "google.golang.org/genproto/googleapis/rpc/status", @@ -2216,1379 +2225,1379 @@ }, { "ImportPath": "k8s.io/api/admission/v1beta1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/admissionregistration/v1alpha1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/admissionregistration/v1beta1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/apps/v1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/apps/v1beta1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/apps/v1beta2", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/auditregistration/v1alpha1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/authentication/v1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/authentication/v1beta1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/authorization/v1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/authorization/v1beta1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/autoscaling/v1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/autoscaling/v2beta1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/autoscaling/v2beta2", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/batch/v1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/batch/v1beta1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/batch/v2alpha1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/certificates/v1beta1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/coordination/v1beta1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/core/v1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/events/v1beta1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/extensions/v1beta1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/imagepolicy/v1alpha1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/networking/v1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/policy/v1beta1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/rbac/v1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/rbac/v1alpha1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/rbac/v1beta1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/scheduling/v1alpha1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/scheduling/v1beta1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/settings/v1alpha1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/storage/v1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/storage/v1alpha1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/api/storage/v1beta1", - "Rev": "e22207415b9969dd281d66b837d2ac921d6c1b86" + "Rev": "d6bc0b913e9c7a07c059b15213aa9cc9bf225aae" }, { "ImportPath": "k8s.io/apiextensions-apiserver/pkg/features", - "Rev": "6a7a980c2fdf70626551c2391d6ee253eb33e830" + "Rev": "65ed30d16d6dcb505d463ceeedb0f4ea2bb3860c" }, { "ImportPath": "k8s.io/apimachinery/pkg/api/equality", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/api/errors", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/api/meta", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/api/resource", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/api/validation", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/api/validation/path", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/apis/config", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/apis/config/v1alpha1", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/apis/meta/internalversion", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/apis/meta/v1", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructuredscheme", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/apis/meta/v1/validation", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/apis/meta/v1beta1", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/conversion", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/conversion/queryparams", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/fields", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/labels", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/runtime", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/runtime/schema", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/runtime/serializer", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/runtime/serializer/json", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/runtime/serializer/protobuf", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/runtime/serializer/recognizer", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/runtime/serializer/streaming", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/runtime/serializer/versioning", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/selection", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/types", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/util/cache", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/util/clock", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/util/diff", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/util/duration", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/util/errors", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/util/framer", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/util/httpstream", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/util/httpstream/spdy", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/util/intstr", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/util/json", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/util/mergepatch", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/util/naming", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/util/net", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/util/proxy", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/util/rand", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/util/remotecommand", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/util/runtime", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/util/sets", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/util/strategicpatch", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/util/uuid", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/util/validation", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/util/validation/field", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/util/version", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/util/wait", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/util/yaml", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/version", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/pkg/watch", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/third_party/forked/golang/json", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/third_party/forked/golang/netutil", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apimachinery/third_party/forked/golang/reflect", - "Rev": "48046c6f120068248d1e115f4f9554d1bac539be" + "Rev": "2c348e07047b379e27a535228ee4fc30c3494a4b" }, { "ImportPath": "k8s.io/apiserver/pkg/admission", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/apis/apiserver", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/apis/apiserver/v1alpha1", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/apis/audit", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/apis/audit/v1", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/apis/audit/v1alpha1", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/apis/audit/v1beta1", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/apis/config", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/audit", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/authentication/authenticator", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/authentication/authenticatorfactory", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/authentication/group", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/authentication/request/anonymous", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/authentication/request/bearertoken", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/authentication/request/headerrequest", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/authentication/request/union", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/authentication/request/websocket", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/authentication/request/x509", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/authentication/serviceaccount", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/authentication/token/cache", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/authentication/token/tokenfile", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/authentication/user", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/authorization/authorizer", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/authorization/authorizerfactory", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/endpoints/handlers/negotiation", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/endpoints/handlers/responsewriters", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/endpoints/metrics", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/endpoints/request", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/features", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/registry/rest", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/server/healthz", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/server/httplog", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/server/mux", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/server/routes", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/server/routes/data/swagger", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/storage", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/storage/etcd", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/storage/etcd/metrics", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/storage/names", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/util/feature", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/util/flag", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/util/flushwriter", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/util/logs", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/util/trace", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/util/webhook", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/pkg/util/wsstream", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/plugin/pkg/authenticator/token/webhook", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/apiserver/plugin/pkg/authorizer/webhook", - "Rev": "a46833858d51325050151055cd21dc687ab654eb" + "Rev": "2455906e540b50825a95ba9d302196ce3f5d35ed" }, { "ImportPath": "k8s.io/cli-runtime/pkg/genericclioptions", - "Rev": "4894e490c4cf4c3c3b2dbdd8209124bebf65f567" + "Rev": "b343932291a7c7cf39c33c80fed984ca7ab1e170" }, { "ImportPath": "k8s.io/cli-runtime/pkg/genericclioptions/printers", - "Rev": "4894e490c4cf4c3c3b2dbdd8209124bebf65f567" + "Rev": "b343932291a7c7cf39c33c80fed984ca7ab1e170" }, { "ImportPath": "k8s.io/cli-runtime/pkg/genericclioptions/resource", - "Rev": "4894e490c4cf4c3c3b2dbdd8209124bebf65f567" + "Rev": "b343932291a7c7cf39c33c80fed984ca7ab1e170" }, { "ImportPath": "k8s.io/client-go/discovery", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/discovery/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/dynamic", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/admissionregistration", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/admissionregistration/v1alpha1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/admissionregistration/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/apps", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/apps/v1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/apps/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/apps/v1beta2", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/auditregistration", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/auditregistration/v1alpha1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/autoscaling", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/autoscaling/v1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/autoscaling/v2beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/autoscaling/v2beta2", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/batch", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/batch/v1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/batch/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/batch/v2alpha1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/certificates", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/certificates/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/coordination", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/coordination/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/core", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/core/v1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/events", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/events/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/extensions", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/extensions/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/internalinterfaces", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/networking", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/networking/v1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/policy", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/policy/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/rbac", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/rbac/v1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/rbac/v1alpha1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/rbac/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/scheduling", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/scheduling/v1alpha1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/scheduling/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/settings", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/settings/v1alpha1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/storage", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/storage/v1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/storage/v1alpha1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/informers/storage/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/scheme", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/admissionregistration/v1alpha1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/admissionregistration/v1alpha1/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/admissionregistration/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/admissionregistration/v1beta1/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/apps/v1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/apps/v1/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/apps/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/apps/v1beta1/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/apps/v1beta2", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/apps/v1beta2/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/auditregistration/v1alpha1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/auditregistration/v1alpha1/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/authentication/v1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/authentication/v1/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/authentication/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/authentication/v1beta1/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/authorization/v1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/authorization/v1/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/authorization/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/authorization/v1beta1/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/autoscaling/v1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/autoscaling/v1/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/autoscaling/v2beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/autoscaling/v2beta1/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/autoscaling/v2beta2", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/autoscaling/v2beta2/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/batch/v1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/batch/v1/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/batch/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/batch/v1beta1/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/batch/v2alpha1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/batch/v2alpha1/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/certificates/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/certificates/v1beta1/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/coordination/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/coordination/v1beta1/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/core/v1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/core/v1/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/events/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/events/v1beta1/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/extensions/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/extensions/v1beta1/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/networking/v1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/networking/v1/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/policy/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/policy/v1beta1/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/rbac/v1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/rbac/v1/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/rbac/v1alpha1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/rbac/v1alpha1/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/rbac/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/rbac/v1beta1/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/scheduling/v1alpha1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/scheduling/v1alpha1/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/scheduling/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/scheduling/v1beta1/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/settings/v1alpha1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/settings/v1alpha1/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/storage/v1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/storage/v1/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/storage/v1alpha1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/storage/v1alpha1/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/storage/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/kubernetes/typed/storage/v1beta1/fake", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/listers/admissionregistration/v1alpha1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/listers/admissionregistration/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/listers/apps/v1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/listers/apps/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/listers/apps/v1beta2", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/listers/auditregistration/v1alpha1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/listers/autoscaling/v1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/listers/autoscaling/v2beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/listers/autoscaling/v2beta2", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/listers/batch/v1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/listers/batch/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/listers/batch/v2alpha1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/listers/certificates/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/listers/coordination/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/listers/core/v1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/listers/events/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/listers/extensions/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/listers/networking/v1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/listers/policy/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/listers/rbac/v1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/listers/rbac/v1alpha1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/listers/rbac/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/listers/scheduling/v1alpha1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/listers/scheduling/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/listers/settings/v1alpha1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/listers/storage/v1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/listers/storage/v1alpha1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/listers/storage/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/pkg/apis/clientauthentication", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/pkg/apis/clientauthentication/v1alpha1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/pkg/apis/clientauthentication/v1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/pkg/version", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/plugin/pkg/client/auth/exec", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/rest", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/rest/watch", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/restmapper", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/scale", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/scale/scheme", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/scale/scheme/appsint", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/scale/scheme/appsv1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/scale/scheme/appsv1beta2", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/scale/scheme/autoscalingv1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/scale/scheme/extensionsint", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/scale/scheme/extensionsv1beta1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/testing", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/third_party/forked/golang/template", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/tools/auth", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/tools/cache", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/tools/clientcmd", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/tools/clientcmd/api", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/tools/clientcmd/api/latest", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/tools/clientcmd/api/v1", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/tools/leaderelection", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/tools/leaderelection/resourcelock", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/tools/metrics", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/tools/pager", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/tools/record", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/tools/reference", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/tools/remotecommand", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/tools/watch", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/transport", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/transport/spdy", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/util/buffer", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/util/cert", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/util/certificate", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/util/certificate/csr", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/util/connrotation", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/util/exec", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/util/flowcontrol", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/util/homedir", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/util/integer", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/util/jsonpath", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/util/retry", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/client-go/util/workqueue", - "Rev": "59c2a8cb4f132af26d4d8d3c2fc91605e43d17cd" + "Rev": "21ef9faa5ba9ffe9e2c8cd6b40b1d4ac306eadc0" }, { "ImportPath": "k8s.io/cloud-provider", - "Rev": "f3ef4ee6f521520a216bd57c3f9a349ca71fff74" + "Rev": "9cadaea8457db95b46367f564cc8fa22879f8ea2" }, { "ImportPath": "k8s.io/csi-api/pkg/apis/csi/v1alpha1", - "Rev": "e425feb6162ff484236f5b7eab79d207e5047513" + "Rev": "ceded49ae99a26bcc10b2763ce5716a602dcd954" }, { "ImportPath": "k8s.io/csi-api/pkg/client/clientset/versioned", - "Rev": "e425feb6162ff484236f5b7eab79d207e5047513" + "Rev": "ceded49ae99a26bcc10b2763ce5716a602dcd954" }, { "ImportPath": "k8s.io/csi-api/pkg/client/clientset/versioned/scheme", - "Rev": "e425feb6162ff484236f5b7eab79d207e5047513" + "Rev": "ceded49ae99a26bcc10b2763ce5716a602dcd954" }, { "ImportPath": "k8s.io/csi-api/pkg/client/clientset/versioned/typed/csi/v1alpha1", - "Rev": "e425feb6162ff484236f5b7eab79d207e5047513" + "Rev": "ceded49ae99a26bcc10b2763ce5716a602dcd954" }, { "ImportPath": "k8s.io/csi-api/pkg/client/informers/externalversions", - "Rev": "e425feb6162ff484236f5b7eab79d207e5047513" + "Rev": "ceded49ae99a26bcc10b2763ce5716a602dcd954" }, { "ImportPath": "k8s.io/csi-api/pkg/client/informers/externalversions/csi", - "Rev": "e425feb6162ff484236f5b7eab79d207e5047513" + "Rev": "ceded49ae99a26bcc10b2763ce5716a602dcd954" }, { "ImportPath": "k8s.io/csi-api/pkg/client/informers/externalversions/csi/v1alpha1", - "Rev": "e425feb6162ff484236f5b7eab79d207e5047513" + "Rev": "ceded49ae99a26bcc10b2763ce5716a602dcd954" }, { "ImportPath": "k8s.io/csi-api/pkg/client/informers/externalversions/internalinterfaces", - "Rev": "e425feb6162ff484236f5b7eab79d207e5047513" + "Rev": "ceded49ae99a26bcc10b2763ce5716a602dcd954" }, { "ImportPath": "k8s.io/csi-api/pkg/client/listers/csi/v1alpha1", - "Rev": "e425feb6162ff484236f5b7eab79d207e5047513" + "Rev": "ceded49ae99a26bcc10b2763ce5716a602dcd954" }, { "ImportPath": "k8s.io/klog", @@ -3616,1991 +3625,1991 @@ }, { "ImportPath": "k8s.io/kube-proxy/config/v1alpha1", - "Rev": "d788cd669db2b4318e07df390476c345abfd3f51" + "Rev": "51590f6f600b19ba2534f5d6e415a600654084d2" }, { "ImportPath": "k8s.io/kubelet/config/v1beta1", - "Rev": "67362483bec9a8a41228f3e6f825e24959b4625d" + "Rev": "33f1c54199e185a6fbf1af4deae776f454298b13" }, { "ImportPath": "k8s.io/kubernetes/cmd/kube-proxy/app", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/cmd/kubelet/app", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/cmd/kubelet/app/options", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/api/legacyscheme", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/api/ref", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/api/service", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/api/testapi", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/api/v1/pod", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/api/v1/resource", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/api/v1/service", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/admission", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/admission/install", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/admission/v1beta1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/admissionregistration", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/admissionregistration/install", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/admissionregistration/v1alpha1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/admissionregistration/v1beta1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/apps", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/apps/install", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/apps/v1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/apps/v1beta1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/apps/v1beta2", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/apps/validation", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/auditregistration", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/auditregistration/install", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/auditregistration/v1alpha1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/authentication", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/authentication/install", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/authentication/v1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/authentication/v1beta1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/authorization", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/authorization/install", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/authorization/v1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/authorization/v1beta1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/autoscaling", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/autoscaling/install", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/autoscaling/v1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/autoscaling/v2beta1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/autoscaling/v2beta2", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/batch", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/batch/install", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/batch/v1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/batch/v1beta1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/batch/v2alpha1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/certificates", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/certificates/install", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/certificates/v1beta1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/coordination", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/coordination/install", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/coordination/v1beta1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/core", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/core/helper", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/core/install", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/core/pods", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/core/v1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/core/v1/helper", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/core/v1/helper/qos", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/core/v1/validation", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/core/validation", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/events", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/events/install", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/events/v1beta1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/extensions", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/extensions/install", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/extensions/v1beta1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/imagepolicy", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/imagepolicy/install", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/imagepolicy/v1alpha1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/networking", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/networking/install", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/networking/v1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/policy", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/policy/install", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/policy/v1beta1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/policy/validation", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/rbac", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/rbac/install", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/rbac/v1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/rbac/v1alpha1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/rbac/v1beta1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/scheduling", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/scheduling/install", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/scheduling/v1alpha1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/scheduling/v1beta1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/settings", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/settings/install", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/settings/v1alpha1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/storage", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/storage/install", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/storage/v1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/storage/v1alpha1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/apis/storage/v1beta1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/capabilities", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset/scheme", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset/typed/admissionregistration/internalversion", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset/typed/apps/internalversion", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset/typed/auditregistration/internalversion", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset/typed/authentication/internalversion", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset/typed/authorization/internalversion", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset/typed/autoscaling/internalversion", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset/typed/batch/internalversion", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset/typed/certificates/internalversion", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset/typed/coordination/internalversion", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset/typed/core/internalversion", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset/typed/events/internalversion", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset/typed/extensions/internalversion", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset/typed/networking/internalversion", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset/typed/policy/internalversion", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset/typed/rbac/internalversion", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset/typed/scheduling/internalversion", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset/typed/settings/internalversion", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset/typed/storage/internalversion", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/client/leaderelectionconfig", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/client/metrics/prometheus", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/cloudprovider/providers", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/cloudprovider/providers/aws", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/cloudprovider/providers/azure", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/cloudprovider/providers/azure/auth", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/cloudprovider/providers/cloudstack", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/cloudprovider/providers/gce", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/cloudprovider/providers/gce/cloud", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/cloudprovider/providers/gce/cloud/filter", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/cloudprovider/providers/gce/cloud/meta", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/cloudprovider/providers/gce/cloud/mock", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/cloudprovider/providers/openstack", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/cloudprovider/providers/ovirt", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/cloudprovider/providers/photon", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/cloudprovider/providers/vsphere", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/cloudprovider/providers/vsphere/vclib", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/cloudprovider/providers/vsphere/vclib/diskmanagers", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/controller", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/controller/deployment/util", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/controller/volume/events", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/controller/volume/expand/cache", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/controller/volume/persistentvolume", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/controller/volume/persistentvolume/metrics", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/credentialprovider", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/credentialprovider/aws", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/credentialprovider/azure", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/credentialprovider/gcp", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/credentialprovider/rancher", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/credentialprovider/secrets", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/features", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/fieldpath", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubectl", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubectl/apps", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubectl/describe", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubectl/describe/versioned", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubectl/scheme", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubectl/util", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubectl/util/certificate", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubectl/util/deployment", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubectl/util/event", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubectl/util/fieldpath", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubectl/util/podutils", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubectl/util/qos", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubectl/util/rbac", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubectl/util/resource", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubectl/util/slice", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubectl/util/storage", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/apis", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/apis/config", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/apis/config/scheme", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/apis/config/v1beta1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/apis/config/validation", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/apis/cri", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/apis/cri/runtime/v1alpha2", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/apis/deviceplugin/v1beta1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/apis/pluginregistration/v1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/apis/podresources", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/apis/podresources/v1alpha1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/apis/stats/v1alpha1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/cadvisor", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/certificate", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/certificate/bootstrap", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/checkpoint", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/checkpointmanager", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/checkpointmanager/checksum", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/checkpointmanager/errors", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/cloudresource", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/cm", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/cm/cpumanager", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/cm/cpumanager/state", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/cm/cpumanager/topology", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/cm/cpuset", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/cm/devicemanager", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/cm/devicemanager/checkpoint", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/cm/util", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/config", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/configmap", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/container", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/container/testing", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/dockershim", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/dockershim/cm", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/dockershim/libdocker", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/dockershim/metrics", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/dockershim/network", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/dockershim/network/cni", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/dockershim/network/hostport", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/dockershim/network/kubenet", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/dockershim/network/metrics", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/dockershim/remote", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/envvars", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/events", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/eviction", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/eviction/api", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/images", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/kubeletconfig", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/kubeletconfig/checkpoint", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/kubeletconfig/checkpoint/store", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/kubeletconfig/configfiles", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/kubeletconfig/status", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/kubeletconfig/util/codec", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/kubeletconfig/util/files", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/kubeletconfig/util/log", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/kubeletconfig/util/panic", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/kuberuntime", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/kuberuntime/logs", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/leaky", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/lifecycle", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/logs", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/metrics", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/metrics/collectors", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/mountpod", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/network/dns", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/nodelease", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/nodestatus", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/pleg", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/pod", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/preemption", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/prober", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/prober/results", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/qos", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/remote", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/runtimeclass", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/secret", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/server", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/server/portforward", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/server/remotecommand", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/server/stats", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/server/streaming", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/stats", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/status", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/sysctl", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/token", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/types", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/util", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/util/cache", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/util/format", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/util/ioutils", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/util/manager", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/util/pluginwatcher", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/util/pluginwatcher/example_plugin_apis/v1beta1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/util/pluginwatcher/example_plugin_apis/v1beta2", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/util/queue", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/util/sliceutils", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/util/store", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/volumemanager", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/volumemanager/cache", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/volumemanager/metrics", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/volumemanager/populator", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/volumemanager/reconciler", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubelet/winstats", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/kubemark", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/master/ports", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/probe", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/probe/exec", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/probe/http", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/probe/tcp", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/proxy", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/proxy/apis/config", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/proxy/apis/config/scheme", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/proxy/apis/config/v1alpha1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/proxy/apis/config/validation", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/proxy/config", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/proxy/healthcheck", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/proxy/iptables", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/proxy/ipvs", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/proxy/metrics", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/proxy/userspace", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/proxy/util", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/proxy/winkernel", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/proxy/winuserspace", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/quota/v1", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/scheduler/algorithm", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/scheduler/algorithm/predicates", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/scheduler/algorithm/priorities", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/scheduler/algorithm/priorities/util", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/scheduler/algorithmprovider", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/scheduler/algorithmprovider/defaults", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/scheduler/api", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/scheduler/api/validation", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/scheduler/cache", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/scheduler/core", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/scheduler/core/equivalence", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/scheduler/factory", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/scheduler/internal/cache", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/scheduler/internal/cache/debugger", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/scheduler/internal/queue", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/scheduler/metrics", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/scheduler/util", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/scheduler/volumebinder", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/security/apparmor", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/security/podsecuritypolicy/seccomp", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/security/podsecuritypolicy/sysctl", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/security/podsecuritypolicy/util", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/securitycontext", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/serviceaccount", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/async", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/bandwidth", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/config", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/configz", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/conntrack", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/dbus", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/ebtables", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/env", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/file", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/filesystem", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/flag", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/flock", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/goroutinemap", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/goroutinemap/exponentialbackoff", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/hash", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/io", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/ipconfig", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/ipset", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/iptables", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/ipvs", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/keymutex", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/labels", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/mount", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/net", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/net/sets", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/netsh", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/node", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/nsenter", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/oom", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/parsers", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/pod", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/procfs", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/removeall", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/resizefs", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/resourcecontainer", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/rlimit", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/selinux", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/slice", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/strings", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/sysctl", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/tail", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/util/taints", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/version", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/version/verflag", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/awsebs", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/azure_dd", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/azure_file", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/cephfs", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/cinder", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/configmap", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/csi", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/csi/csiv0", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/csi/nodeinfomanager", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/downwardapi", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/emptydir", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/fc", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/flexvolume", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/flocker", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/gcepd", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/git_repo", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/glusterfs", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/host_path", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/iscsi", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/local", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/nfs", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/photon_pd", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/portworx", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/projected", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/quobyte", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/rbd", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/scaleio", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/secret", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/storageos", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/util", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/util/fs", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/util/nestedpendingoperations", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/util/operationexecutor", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/util/recyclerclient", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/util/types", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/util/volumepathhandler", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/validation", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/volume/vsphere_volume", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/pkg/windows/service", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/test/utils", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/kubernetes/third_party/forked/golang/expansion", - "Comment": "v1.14.0-alpha.0-575-gf8ac78b3cb", - "Rev": "f8ac78b3cb11c940c301be5aa5de419c036e9ce3" + "Comment": "v1.13.2-1-gd48387cc4c", + "Rev": "d48387cc4ca85d2af0c27602f466d750686f2b28" }, { "ImportPath": "k8s.io/utils/clock", diff --git a/cluster-autoscaler/cloudprovider/aws/api/UPDATE_TEST_DATA.md b/cluster-autoscaler/cloudprovider/aws/api/UPDATE_TEST_DATA.md new file mode 100644 index 000000000000..a5098f8923e3 --- /dev/null +++ b/cluster-autoscaler/cloudprovider/aws/api/UPDATE_TEST_DATA.md @@ -0,0 +1,23 @@ +Update AWS test data +===== + +Install AWS CLI Tools + +Update + +```bash +cd ${GOPATH}/src/k8s.io/autoscaler + +# update on demand data +aws pricing get-products \ + --region=us-east-1 \ + --service-code=AmazonEC2 \ + --filter Type=TERM_MATCH,Field=capacitystatus,Value=Used \ + Type=TERM_MATCH,Field=preInstalledSw,Value=NA \ + Type=TERM_MATCH,Field=location,Value="EU (Ireland)" \ + Type=TERM_MATCH,Field=instanceType,Value="m4.xlarge" \ + > ./cluster-autoscaler/cloudprovider/aws/api/pricing_ondemand_eu-west-1.json + +# update spot data + +``` \ No newline at end of file diff --git a/cluster-autoscaler/cloudprovider/aws/api/instance_info.go b/cluster-autoscaler/cloudprovider/aws/api/instance_info.go index 68d2e8ecf7b4..259e3d81840e 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/instance_info.go +++ b/cluster-autoscaler/cloudprovider/aws/api/instance_info.go @@ -19,7 +19,6 @@ package api import ( "encoding/json" "fmt" - "io/ioutil" "net/http" "regexp" "strconv" @@ -27,7 +26,11 @@ import ( "sync" "time" - "github.com/golang/glog" + "github.com/aws/aws-sdk-go/aws" + "github.com/aws/aws-sdk-go/private/protocol" + "github.com/aws/aws-sdk-go/service/pricing" + "github.com/pkg/errors" + "k8s.io/klog" ) const ( @@ -37,6 +40,33 @@ const ( instanceTenancyShared = "Shared" ) +// TODO find some API for this map - support case opened +var ( + regionNameMap = map[string]string{ + "us-east-2": "USA East (Ohio)", + "us-east-1": "USA East (N. Virginia)", + "us-west-1": "USA West (N. California)", + "us-west-2": "USA West (Oregon)", + "ap-south-1": "Asia Pacific (Mumbai)", + "ap-northeast-3": "Asia Pacific (Osaka-Local)", + "ap-northeast-2": "Asia Pacific (Seoul)", + "ap-southeast-1": "Asia Pacific (Singapore)", + "ap-southeast-2": "Asia Pacific (Sydney)", + "ap-northeast-1": "Asia Pacific (Tokyo)", + "ca-central-1": "Canada (Central)", + "cn-north-1": "China (Beijing)", + "cn-northwest-1": "China (Ningxia)", + "eu-central-1": "EU (Frankfurt)", + "eu-west-1": "EU (Ireland)", + "eu-west-2": "EU (London)", + "eu-west-3": "EU (Paris)", + "eu-north-1": "EU (Stockholm)", + "sa-east-1": "South America (São Paulo)", + "us-gov-east-1": "AWS GovCloud (US-East)", + "us-gov-west-1": "AWS GovCloud (USA)", + } +) + // InstanceInfo holds AWS EC2 instance information type InstanceInfo struct { // InstanceType of the described instance @@ -51,12 +81,12 @@ type InstanceInfo struct { GPU int64 } -type httpClient interface { - Do(req *http.Request) (*http.Response, error) +type awsClient interface { + GetProducts(input *pricing.GetProductsInput) (*pricing.GetProductsOutput, error) } // NewEC2InstanceInfoService is the constructor of instanceInfoService which is a wrapper for AWS Pricing API. -func NewEC2InstanceInfoService(client httpClient) *instanceInfoService { +func NewEC2InstanceInfoService(client awsClient) *instanceInfoService { return &instanceInfoService{ client: client, cache: make(instanceInfoCache), @@ -64,32 +94,32 @@ func NewEC2InstanceInfoService(client httpClient) *instanceInfoService { } type instanceInfoService struct { - client httpClient + client awsClient cache instanceInfoCache sync.RWMutex } // DescribeInstanceInfo returns the corresponding aws instance info by given instance type and availability zone. -func (s *instanceInfoService) DescribeInstanceInfo(instanceType string, availabilityZone string) (*InstanceInfo, error) { - if s.shouldSync(availabilityZone) { - if err := s.sync(availabilityZone); err != nil { +func (s *instanceInfoService) DescribeInstanceInfo(instanceType string, region string) (*InstanceInfo, error) { + if s.shouldSync(region) { + if err := s.sync(region); err != nil { // TODO may this be tolerated for resilience return nil, fmt.Errorf("failed to sync aws product and price information: %v", err) } } - if bucket, found := s.cache[availabilityZone]; found { + if bucket, found := s.cache[region]; found { for _, info := range bucket.info { if info.InstanceType == instanceType { return &info, nil } } } - return nil, fmt.Errorf("instance info not available for instance type %s in zone %s", instanceType, availabilityZone) + return nil, fmt.Errorf("instance info not available for instance type %s region %s", instanceType, region) } -func (s *instanceInfoService) shouldSync(availabilityZone string) bool { - bucket, found := s.cache[availabilityZone] +func (s *instanceInfoService) shouldSync(region string) bool { + bucket, found := s.cache[region] if !found { return true } @@ -97,25 +127,25 @@ func (s *instanceInfoService) shouldSync(availabilityZone string) bool { return bucket.LastSync().Before(time.Now().Truncate(instanceInfoCacheMaxAge)) } -func (s *instanceInfoService) sync(availabilityZone string) error { +func (s *instanceInfoService) sync(region string) error { s.Lock() defer s.Unlock() start := time.Now() - bucket, found := s.cache[availabilityZone] + bucket, found := s.cache[region] if !found { bucket = new(regionalInstanceInfoBucket) - s.cache[availabilityZone] = bucket + s.cache[region] = bucket } - response, err := s.fetch(availabilityZone, bucket.ETag) + response, err := s.fetch(region, bucket.ETag) if err != nil { return err } defer func() { - glog.V(4).Infof("Synchronized aws ec2 instance information for availability zone %s - took %s", availabilityZone, time.Now().Sub(start).String()) + klog.V(4).Infof("Synchronized aws ec2 instance information for region %s - took %s", region, time.Now().Sub(start).String()) }() if response == nil { @@ -152,22 +182,22 @@ func (s *instanceInfoService) sync(availabilityZone string) error { var err error if attr.Memory != "" && attr.Memory != "NA" { if i.MemoryMb, err = parseMemory(attr.Memory); err != nil { - return fmt.Errorf("parser error %v", err) + return errors.Wrapf(err, "error parsing memory for SKU %s [%s]", sku, attr.Memory) } } if attr.VCPU != "" { if i.VCPU, err = parseCPU(attr.VCPU); err != nil { - return fmt.Errorf("parser error %v", err) + return errors.Wrapf(err, "error parsing VCPU for SKU %s [%s]", sku, attr.VCPU) } } if attr.GPU != "" { if i.GPU, err = parseCPU(attr.GPU); err != nil { - return fmt.Errorf("parser error %v", err) + return errors.Wrapf(err, "error parsing GPU for SKU %s [%s]", sku, attr.GPU) } } - for priceSKU, offers := range response.Terms.OnDemand { + for priceSKU, offer := range response.Terms.OnDemand { if priceSKU != sku { continue } @@ -175,28 +205,26 @@ func (s *instanceInfoService) sync(availabilityZone string) error { var lastOfferTime time.Time var lastOfferPrice float64 - for _, offer := range offers { - if offer.EffectiveDate.After(now) { + if offer.EffectiveDate.After(now) { + continue + } + + for _, price := range offer.PriceDimensions { + if price.EndRange != "Inf" || price.Unit != "Hrs" { + continue + } + p, err := strconv.ParseFloat(price.PricePerUnit.USD, 64) + if err != nil { + return errors.Wrapf(err, "error parsing price for SKU %s [%s]", sku, price.PricePerUnit.USD) + } + + if p == 0.0 { continue } - for _, price := range offer.PriceDimensions { - if price.EndRange != "Inf" || price.Unit != "Hrs" { - continue - } - p, err := strconv.ParseFloat(price.PricePerUnit.USD, 64) - if err != nil { - return fmt.Errorf("error parsing price for SKU %s [%s] %v", sku, price.PricePerUnit.USD, err) - } - - if p == 0.0 { - continue - } - - if lastOfferTime.IsZero() || lastOfferTime.After(offer.EffectiveDate) { - lastOfferTime = offer.EffectiveDate - lastOfferPrice = p - } + if lastOfferTime.IsZero() || lastOfferTime.After(offer.EffectiveDate) { + lastOfferTime = offer.EffectiveDate + lastOfferPrice = p } } @@ -213,8 +241,12 @@ func (s *instanceInfoService) sync(availabilityZone string) error { return nil } -func (s *instanceInfoService) fetch(availabilityZone string, etag string) (*response, error) { - url := fmt.Sprintf(awsPricingAPIURLTemplate, availabilityZone) +func (s *instanceInfoService) fetch(region string, etag string) (*response, error) { + url := fmt.Sprintf(awsPricingAPIURLTemplate, region) + regionName, err := regionFullName(region) + if err != nil { + return nil, err + } req, err := http.NewRequest("GET", url, nil) @@ -222,29 +254,78 @@ func (s *instanceInfoService) fetch(availabilityZone string, etag string) (*resp req.Header.Add("If-None-Match", etag) } - res, err := s.client.Do(req) + input := &pricing.GetProductsInput{ + ServiceCode: aws.String("AmazonEC2"), + Filters: []*pricing.Filter{ + { + Type: aws.String("TERM_MATCH"), + Field: aws.String("location"), + Value: aws.String(regionName), + }, + { + Type: aws.String("TERM_MATCH"), + Field: aws.String("operatingSystem"), + Value: aws.String("Linux"), + }, + { + Type: aws.String("TERM_MATCH"), + Field: aws.String("capacitystatus"), + Value: aws.String("Used"), + }, + { + Type: aws.String("TERM_MATCH"), + Field: aws.String("tenancy"), + Value: aws.String("Shared"), + }, + { + Type: aws.String("TERM_MATCH"), + Field: aws.String("preInstalledSw"), + Value: aws.String("NA"), + }, + }, + } + + output, err := s.client.GetProducts(input) if err != nil { - return nil, fmt.Errorf("error fetching [%s]", url) + return nil, errors.Wrapf(err, "could not fetch products for region %s", region) } - defer res.Body.Close() + var data = new(response) + data.Products = make(map[string]product, 0) + data.Terms.OnDemand = make(map[string]productOffer, 0) - if res.StatusCode == 304 { - return nil, nil - } + for _, entry := range output.PriceList { + raw, err := protocol.EncodeJSONValue(entry, protocol.NoEscape) + if err != nil { + return nil, errors.Wrap(err, "could not encode back aws sdk pricing response") + } - var body []byte - if body, err = ioutil.ReadAll(res.Body); err != nil { - return nil, fmt.Errorf("error loading content of %s", url) - } + var entry = new(priceListEntry) + if err := json.Unmarshal([]byte(raw), entry); err != nil { + return nil, errors.Wrapf(err, "error unmarshaling pricing list entry: %s", raw) + } + + var validTerm productOffer + for _, term := range entry.Terms.OnDemand { + for _, priceDimension := range term.PriceDimensions { + if priceDimension.BeginRange == "0" && priceDimension.EndRange == "Inf" && !strings.HasPrefix(priceDimension.PricePerUnit.USD, "0.000000") { + validTerm = term + } + } + } + + if validTerm.SKU == "" { + klog.Warningf("no on demand price was not found for instance type %s in region %s", entry.Product.Attributes.InstanceType, region) + continue + } + + data.Products[entry.Product.SKU] = entry.Product + data.Terms.OnDemand[entry.Product.SKU] = validTerm - if res.StatusCode != 200 { - return nil, fmt.Errorf("got unexpected http status code %d with body [%s]", res.StatusCode, string(body)) } - var data = new(response) - if err := json.Unmarshal(body, data); err != nil { - return nil, fmt.Errorf("error unmarshaling %s with body [%s]", url, string(body)) + if len(data.Products) == 0 { + return nil, fmt.Errorf("no price information found for region %s", region) } return data, nil @@ -287,17 +368,20 @@ func (b *regionalInstanceInfoBucket) Add(info ...InstanceInfo) { b.info = append(b.info, info...) } +type priceListEntry struct { + Product product `json:"product"` + Terms terms `json:"terms"` +} + type response struct { Products map[string]product `json:"products"` Terms terms `json:"terms"` } type terms struct { - OnDemand map[string]productOffers `json:"OnDemand"` + OnDemand map[string]productOffer `json:"OnDemand"` } -type productOffers map[string]productOffer - type productOffer struct { OfferTermCode string `json:"offerTermCode"` EffectiveDate time.Time `json:"effectiveDate"` @@ -354,3 +438,11 @@ func parseCPU(cpu string) (int64, error) { } return i, nil } + +func regionFullName(region string) (string, error) { + if fullName, ok := regionNameMap[region]; ok { + return fullName, nil + } + + return "", errors.New(fmt.Sprintf("region full name not found for region: %s", region)) +} diff --git a/cluster-autoscaler/cloudprovider/aws/api/instance_info_test.go b/cluster-autoscaler/cloudprovider/aws/api/instance_info_test.go index ed90c918f3fa..b2abf6e61c8b 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/instance_info_test.go +++ b/cluster-autoscaler/cloudprovider/aws/api/instance_info_test.go @@ -17,124 +17,135 @@ limitations under the License. package api import ( - "bytes" "fmt" - "io/ioutil" - "net/http" - "net/url" "os" "testing" + "reflect" + + "github.com/aws/aws-sdk-go/aws" + "github.com/aws/aws-sdk-go/private/protocol/json/jsonutil" + "github.com/aws/aws-sdk-go/service/pricing" "github.com/stretchr/testify/assert" ) -func loadMockData(t *testing.T) []byte { - var pricingBody []byte - f, err := os.Open("pricing_eu-west-1.json") +func loadMockData(t *testing.T) []aws.JSONValue { + f, err := os.Open("pricing_ondemand_eu-west-1.json") if err != nil { t.Fatalf("Failed to open mock file: %v", err) } - pricingBody, err = ioutil.ReadAll(f) + + grütze := &pricing.GetProductsOutput{} + + err = jsonutil.UnmarshalJSON(grütze, f) if err != nil { - t.Fatalf("Failed to load mock file: %v", err) + t.Fatalf("Failed transform mock JSON into AWS JSONValue: %v", err) } - return pricingBody + return grütze.PriceList } func TestInstanceInfoService_DescribeInstanceInfo(t *testing.T) { tcs := []struct { - name string - instanceType string - region string - expectError bool - expectOnDemandPrice float64 - expectCPU int64 + name string + instanceType string + region string + data []aws.JSONValue + errorExpected bool + expectedError string + expectedOnDemandPrice float64 + expectedCPU int64 }{ { - name: "good case: common case", - instanceType: "m4.xlarge", - region: "us-east-1", - expectError: false, - expectOnDemandPrice: 0.2, - expectCPU: 4, + name: "error case: unknown availability region", + instanceType: "m4.xlarge", + region: "unknown-region", + data: []aws.JSONValue{}, + errorExpected: true, + expectedError: "region full name not found for region: unknown-region", + expectedOnDemandPrice: 0, + expectedCPU: 0, }, { - name: "error case: unknown availability region", - instanceType: "m4.xlarge", - region: "eu-east-2", - expectError: true, - expectOnDemandPrice: 0, - expectCPU: 0, + name: "error case: invalid server response", + instanceType: "m4.xlarge", + region: "us-west-1", + data: []aws.JSONValue{}, + errorExpected: true, + expectedError: "failed to sync aws product and price information: no price information found for region us-west-1", + expectedOnDemandPrice: 0, + expectedCPU: 0, }, { - name: "error case: unknown instance", - instanceType: "unknown-instance", - region: "us-east-1", - expectError: true, - expectOnDemandPrice: 0, - expectCPU: 0, + name: "error case: unknown instance", + instanceType: "unknown-instance", + region: "eu-west-1", + data: loadMockData(t), + errorExpected: true, + expectedError: "instance info not available for instance type unknown-instance region eu-west-1", + expectedOnDemandPrice: 0, + expectedCPU: 0, }, { - name: "error case: invalid server response", - instanceType: "m4.xlarge", - region: "us-west-1", - expectError: true, - expectOnDemandPrice: 0, - expectCPU: 0, + name: "good case: common case", + instanceType: "m4.xlarge", + region: "eu-west-1", + data: loadMockData(t), + errorExpected: false, + expectedOnDemandPrice: 0.222, + expectedCPU: 4, }, } for _, tc := range tcs { t.Run(tc.name, func(t *testing.T) { - usEastOneURL, err := url.Parse(fmt.Sprintf(awsPricingAPIURLTemplate, "us-east-1")) - assert.NoError(t, err) - - usWestOneURL, err := url.Parse(fmt.Sprintf(awsPricingAPIURLTemplate, "us-west-1")) - assert.NoError(t, err) + indexRegion, err := regionFullName(tc.region) + if err != nil { + assert.Equal(t, err.Error(), tc.expectedError) + return + } - mc := &mockClient{m: make(map[string]mockResponse)} - mc.m[usEastOneURL.Path] = mockResponse{loadMockData(t), 200} - mc.m[usWestOneURL.Path] = mockResponse{[]byte("some non-json stuff"), 200} + mc := &mockClient{m: make(map[string][]aws.JSONValue)} + mc.m[indexRegion] = tc.data service := NewEC2InstanceInfoService(mc) info, err := service.DescribeInstanceInfo(tc.instanceType, tc.region) - if tc.expectError { + + if tc.errorExpected { assert.Error(t, err) + assert.Equal(t, tc.expectedError, err.Error()) } else { assert.NoError(t, err) assert.Equal(t, tc.instanceType, info.InstanceType) - assert.Equal(t, tc.expectCPU, info.VCPU) - assert.Equal(t, tc.expectOnDemandPrice, info.OnDemandPrice) + assert.Equal(t, tc.expectedCPU, info.VCPU) + assert.Equal(t, tc.expectedOnDemandPrice, info.OnDemandPrice) } }) } } -type mockResponse struct { - body []byte - statusCode int -} - type mockClient struct { - m map[string]mockResponse + m map[string][]aws.JSONValue } -func (m *mockClient) Do(req *http.Request) (*http.Response, error) { - if mock, found := m.m[req.URL.Path]; found { - return &http.Response{ - Status: http.StatusText(mock.statusCode), - StatusCode: mock.statusCode, - ContentLength: int64(len(mock.body)), - Body: ioutil.NopCloser(bytes.NewReader(mock.body)), - Request: req, +func (m *mockClient) GetProducts(input *pricing.GetProductsInput) (*pricing.GetProductsOutput, error) { + region := getRegionFromFilters(input.Filters) + + if mock, found := m.m[region]; found { + return &pricing.GetProductsOutput{ + PriceList: mock, }, nil } - return &http.Response{ - Status: http.StatusText(404), - StatusCode: 404, - Request: req, - Body: ioutil.NopCloser(bytes.NewReader([]byte{})), - ContentLength: 0, - }, nil + + return nil, fmt.Errorf("no price information found for region %s", region) +} + +func getRegionFromFilters(filters []*pricing.Filter) string { + for _, filter := range filters { + if reflect.DeepEqual(filter.Field, aws.String("location")) { + return aws.StringValue(filter.Value) + } + } + + return "no-region" } diff --git a/cluster-autoscaler/cloudprovider/aws/api/instance_spot_price_history.go b/cluster-autoscaler/cloudprovider/aws/api/instance_spot_price_history.go index bea05890f839..037e0fe90726 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/instance_spot_price_history.go +++ b/cluster-autoscaler/cloudprovider/aws/api/instance_spot_price_history.go @@ -22,7 +22,7 @@ import ( "time" "github.com/aws/aws-sdk-go/aws" - "github.com/golang/glog" + "k8s.io/klog" "github.com/aws/aws-sdk-go/service/ec2" ) @@ -57,7 +57,7 @@ func (spd *spotPriceHistoryService) DescribeSpotPriceHistory(instanceType string req.SetProductDescriptions(aws.StringSlice([]string{"Linux/UNIX"})) if startTime.IsZero() { - glog.V(5).Info("initial history loading - retrieve only the last 10 prices") + klog.V(5).Info("initial history loading - retrieve only the last 10 prices") req.SetMaxResults(10) } else { req.SetStartTime(startTime) @@ -75,11 +75,11 @@ func (spd *spotPriceHistoryService) DescribeSpotPriceHistory(instanceType string req.NextToken = res.NextToken if req.NextToken == nil || len(*req.NextToken) == 0 { - glog.V(6).Info("breaking history loop after pagination record") + klog.V(6).Info("breaking history loop after pagination record") break } if startTime.IsZero() { - glog.V(6).Info("breaking history loop after retrieving last 10 prices") + klog.V(6).Info("breaking history loop after retrieving last 10 prices") break } } @@ -130,7 +130,7 @@ func convertSpotPriceItems(in ...*ec2.SpotPrice) SpotPriceItems { priceValue := aws.StringValue(item.SpotPrice) price, err := strconv.ParseFloat(priceValue, 64) if err != nil { - glog.Warningf("Failed to parse aws spot price '%s' to float: %v", priceValue, err) + klog.Warningf("Failed to parse aws spot price '%s' to float: %v", priceValue, err) continue } diff --git a/cluster-autoscaler/cloudprovider/aws/api/pricing_eu-west-1.json b/cluster-autoscaler/cloudprovider/aws/api/pricing_eu-west-1.json deleted file mode 100644 index b367797321de..000000000000 --- a/cluster-autoscaler/cloudprovider/aws/api/pricing_eu-west-1.json +++ /dev/null @@ -1,325 +0,0 @@ -{ - "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/", - "offerCode": "AmazonEC2", - "version": "20171117190039", - "publicationDate": "2017-11-17T19:00:39Z", - "products": { - "3UP33R2RXCADSPSX": { - "sku": "3UP33R2RXCADSPSX", - "productFamily": "Compute Instance", - "attributes": { - "servicecode": "AmazonEC2", - "location": "US East (N. Virginia)", - "locationType": "AWS Region", - "instanceType": "m4.4xlarge", - "currentGeneration": "Yes", - "instanceFamily": "General purpose", - "vcpu": "16", - "physicalProcessor": "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed": "2.4 GHz", - "memory": "64 GiB", - "storage": "EBS only", - "networkPerformance": "High", - "processorArchitecture": "64-bit", - "tenancy": "Shared", - "operatingSystem": "Linux", - "licenseModel": "No License required", - "usagetype": "BoxUsage:m4.4xlarge", - "operation": "RunInstances", - "dedicatedEbsThroughput": "2000 Mbps", - "ecu": "53.5", - "enhancedNetworkingSupported": "Yes", - "normalizationSizeFactor": "32", - "preInstalledSw": "NA", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "servicename": "Amazon Elastic Compute Cloud" - } - }, - "8VCNEHQMSCQS4P39": { - "sku": "8VCNEHQMSCQS4P39", - "productFamily": "Compute Instance", - "attributes": { - "servicecode": "AmazonEC2", - "location": "US East (N. Virginia)", - "locationType": "AWS Region", - "instanceType": "m4.large", - "currentGeneration": "Yes", - "instanceFamily": "General purpose", - "vcpu": "2", - "physicalProcessor": "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed": "2.4 GHz", - "memory": "8 GiB", - "storage": "EBS only", - "networkPerformance": "Moderate", - "processorArchitecture": "64-bit", - "tenancy": "Shared", - "operatingSystem": "Linux", - "licenseModel": "No License required", - "usagetype": "BoxUsage:m4.large", - "operation": "RunInstances", - "dedicatedEbsThroughput": "450 Mbps", - "ecu": "6.5", - "enhancedNetworkingSupported": "Yes", - "normalizationSizeFactor": "4", - "preInstalledSw": "NA", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "servicename": "Amazon Elastic Compute Cloud" - } - }, - "ECM8RSBXMC7F4WAS": { - "sku": "ECM8RSBXMC7F4WAS", - "productFamily": "Compute Instance", - "attributes": { - "servicecode": "AmazonEC2", - "location": "US East (N. Virginia)", - "locationType": "AWS Region", - "instanceType": "m4.16xlarge", - "currentGeneration": "Yes", - "instanceFamily": "General purpose", - "vcpu": "64", - "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", - "clockSpeed": "2.3 GHz", - "memory": "256 GiB", - "storage": "EBS only", - "networkPerformance": "20 Gigabit", - "processorArchitecture": "64-bit", - "tenancy": "Shared", - "operatingSystem": "Linux", - "licenseModel": "No License required", - "usagetype": "BoxUsage:m4.16xlarge", - "operation": "RunInstances", - "dedicatedEbsThroughput": "10000 Mbps", - "ecu": "188", - "enhancedNetworkingSupported": "Yes", - "normalizationSizeFactor": "128", - "preInstalledSw": "NA", - "processorFeatures": "Intel AVX, Intel AVX2, Intel Turbo", - "servicename": "Amazon Elastic Compute Cloud" - } - }, - "J4T9ZF4AJ2DXE7SA": { - "sku": "J4T9ZF4AJ2DXE7SA", - "productFamily": "Compute Instance", - "attributes": { - "servicecode": "AmazonEC2", - "location": "US East (N. Virginia)", - "locationType": "AWS Region", - "instanceType": "m4.10xlarge", - "currentGeneration": "Yes", - "instanceFamily": "General purpose", - "vcpu": "40", - "physicalProcessor": "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed": "2.4 GHz", - "memory": "160 GiB", - "storage": "EBS only", - "networkPerformance": "10 Gigabit", - "processorArchitecture": "64-bit", - "tenancy": "Shared", - "operatingSystem": "Linux", - "licenseModel": "No License required", - "usagetype": "BoxUsage:m4.10xlarge", - "operation": "RunInstances", - "dedicatedEbsThroughput": "4000 Mbps", - "ecu": "124.5", - "enhancedNetworkingSupported": "Yes", - "normalizationSizeFactor": "80", - "preInstalledSw": "NA", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "servicename": "Amazon Elastic Compute Cloud" - } - }, - "47GP959QAF69YPG5": { - "sku": "47GP959QAF69YPG5", - "productFamily": "Compute Instance", - "attributes": { - "servicecode": "AmazonEC2", - "location": "US East (N. Virginia)", - "locationType": "AWS Region", - "instanceType": "m4.xlarge", - "currentGeneration": "Yes", - "instanceFamily": "General purpose", - "vcpu": "4", - "physicalProcessor": "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed": "2.4 GHz", - "memory": "16 GiB", - "storage": "EBS only", - "networkPerformance": "High", - "processorArchitecture": "64-bit", - "tenancy": "Shared", - "operatingSystem": "Linux", - "licenseModel": "No License required", - "usagetype": "BoxUsage:m4.xlarge", - "operation": "RunInstances", - "dedicatedEbsThroughput": "750 Mbps", - "ecu": "13", - "enhancedNetworkingSupported": "Yes", - "normalizationSizeFactor": "8", - "preInstalledSw": "NA", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "servicename": "Amazon Elastic Compute Cloud" - } - }, - "VHC3YWSZ6ZFZPJN4": { - "sku": "VHC3YWSZ6ZFZPJN4", - "productFamily": "Compute Instance", - "attributes": { - "servicecode": "AmazonEC2", - "location": "US East (N. Virginia)", - "locationType": "AWS Region", - "instanceType": "m4.2xlarge", - "currentGeneration": "Yes", - "instanceFamily": "General purpose", - "vcpu": "8", - "physicalProcessor": "Intel Xeon E5-2676 v3 (Haswell)", - "clockSpeed": "2.4 GHz", - "memory": "32 GiB", - "storage": "EBS only", - "networkPerformance": "High", - "processorArchitecture": "64-bit", - "tenancy": "Shared", - "operatingSystem": "Linux", - "licenseModel": "No License required", - "usagetype": "BoxUsage:m4.2xlarge", - "operation": "RunInstances", - "dedicatedEbsThroughput": "1000 Mbps", - "ecu": "26", - "enhancedNetworkingSupported": "Yes", - "normalizationSizeFactor": "16", - "preInstalledSw": "NA", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "servicename": "Amazon Elastic Compute Cloud" - } - } - }, - "terms": { - "OnDemand": { - "47GP959QAF69YPG5": { - "47GP959QAF69YPG5.JRTCKXETXF": { - "offerTermCode": "JRTCKXETXF", - "sku": "47GP959QAF69YPG5", - "effectiveDate": "2017-11-01T00:00:00Z", - "priceDimensions": { - "47GP959QAF69YPG5.JRTCKXETXF.6YS6EN2CT7": { - "rateCode": "47GP959QAF69YPG5.JRTCKXETXF.6YS6EN2CT7", - "description": "$0.20 per On Demand Linux m4.xlarge Instance Hour", - "beginRange": "0", - "endRange": "Inf", - "unit": "Hrs", - "pricePerUnit": { - "USD": "0.2000000000" - }, - "appliesTo": [] - } - }, - "termAttributes": {} - } - }, - "J4T9ZF4AJ2DXE7SA": { - "J4T9ZF4AJ2DXE7SA.JRTCKXETXF": { - "offerTermCode": "JRTCKXETXF", - "sku": "J4T9ZF4AJ2DXE7SA", - "effectiveDate": "2017-11-01T00:00:00Z", - "priceDimensions": { - "J4T9ZF4AJ2DXE7SA.JRTCKXETXF.6YS6EN2CT7": { - "rateCode": "J4T9ZF4AJ2DXE7SA.JRTCKXETXF.6YS6EN2CT7", - "description": "$2.00 per On Demand Linux m4.10xlarge Instance Hour", - "beginRange": "0", - "endRange": "Inf", - "unit": "Hrs", - "pricePerUnit": { - "USD": "2.0000000000" - }, - "appliesTo": [] - } - }, - "termAttributes": {} - } - }, - "8VCNEHQMSCQS4P39": { - "8VCNEHQMSCQS4P39.JRTCKXETXF": { - "offerTermCode": "JRTCKXETXF", - "sku": "8VCNEHQMSCQS4P39", - "effectiveDate": "2017-11-01T00:00:00Z", - "priceDimensions": { - "8VCNEHQMSCQS4P39.JRTCKXETXF.6YS6EN2CT7": { - "rateCode": "8VCNEHQMSCQS4P39.JRTCKXETXF.6YS6EN2CT7", - "description": "$0.10 per On Demand Linux m4.large Instance Hour", - "beginRange": "0", - "endRange": "Inf", - "unit": "Hrs", - "pricePerUnit": { - "USD": "0.1000000000" - }, - "appliesTo": [] - } - }, - "termAttributes": {} - } - }, - "ECM8RSBXMC7F4WAS": { - "ECM8RSBXMC7F4WAS.JRTCKXETXF": { - "offerTermCode": "JRTCKXETXF", - "sku": "ECM8RSBXMC7F4WAS", - "effectiveDate": "2017-11-01T00:00:00Z", - "priceDimensions": { - "ECM8RSBXMC7F4WAS.JRTCKXETXF.6YS6EN2CT7": { - "rateCode": "ECM8RSBXMC7F4WAS.JRTCKXETXF.6YS6EN2CT7", - "description": "$3.20 per On Demand Linux m4.16xlarge Instance Hour", - "beginRange": "0", - "endRange": "Inf", - "unit": "Hrs", - "pricePerUnit": { - "USD": "3.2000000000" - }, - "appliesTo": [] - } - }, - "termAttributes": {} - } - }, - "VHC3YWSZ6ZFZPJN4": { - "VHC3YWSZ6ZFZPJN4.JRTCKXETXF": { - "offerTermCode": "JRTCKXETXF", - "sku": "VHC3YWSZ6ZFZPJN4", - "effectiveDate": "2017-11-01T00:00:00Z", - "priceDimensions": { - "VHC3YWSZ6ZFZPJN4.JRTCKXETXF.6YS6EN2CT7": { - "rateCode": "VHC3YWSZ6ZFZPJN4.JRTCKXETXF.6YS6EN2CT7", - "description": "$0.40 per On Demand Linux m4.2xlarge Instance Hour", - "beginRange": "0", - "endRange": "Inf", - "unit": "Hrs", - "pricePerUnit": { - "USD": "0.4000000000" - }, - "appliesTo": [] - } - }, - "termAttributes": {} - } - }, - "3UP33R2RXCADSPSX": { - "3UP33R2RXCADSPSX.JRTCKXETXF": { - "offerTermCode": "JRTCKXETXF", - "sku": "3UP33R2RXCADSPSX", - "effectiveDate": "2017-11-01T00:00:00Z", - "priceDimensions": { - "3UP33R2RXCADSPSX.JRTCKXETXF.6YS6EN2CT7": { - "rateCode": "3UP33R2RXCADSPSX.JRTCKXETXF.6YS6EN2CT7", - "description": "$0.80 per On Demand Linux m4.4xlarge Instance Hour", - "beginRange": "0", - "endRange": "Inf", - "unit": "Hrs", - "pricePerUnit": { - "USD": "0.8000000000" - }, - "appliesTo": [] - } - }, - "termAttributes": {} - } - } - } - } -} diff --git a/cluster-autoscaler/cloudprovider/aws/api/pricing_ondemand_eu-west-1.json b/cluster-autoscaler/cloudprovider/aws/api/pricing_ondemand_eu-west-1.json new file mode 100644 index 000000000000..c16078c396e0 --- /dev/null +++ b/cluster-autoscaler/cloudprovider/aws/api/pricing_ondemand_eu-west-1.json @@ -0,0 +1,20 @@ +{ + "PriceList": [ + "{\"product\":{\"productFamily\":\"Compute Instance\",\"attributes\":{\"enhancedNetworkingSupported\":\"Yes\",\"memory\":\"16 GiB\",\"dedicatedEbsThroughput\":\"750 Mbps\",\"vcpu\":\"4\",\"capacitystatus\":\"Used\",\"locationType\":\"AWS Region\",\"storage\":\"EBS only\",\"instanceFamily\":\"General purpose\",\"operatingSystem\":\"Windows\",\"physicalProcessor\":\"Intel Xeon E5-2676 v3 (Haswell)\",\"clockSpeed\":\"2.4 GHz\",\"ecu\":\"13\",\"networkPerformance\":\"High\",\"servicename\":\"Amazon Elastic Compute Cloud\",\"instanceType\":\"m4.xlarge\",\"tenancy\":\"Dedicated\",\"usagetype\":\"EU-DedicatedUsage:m4.xlarge\",\"normalizationSizeFactor\":\"8\",\"processorFeatures\":\"Intel AVX; Intel AVX2; Intel Turbo\",\"servicecode\":\"AmazonEC2\",\"licenseModel\":\"No License required\",\"currentGeneration\":\"Yes\",\"preInstalledSw\":\"NA\",\"location\":\"EU (Ireland)\",\"processorArchitecture\":\"64-bit\",\"operation\":\"RunInstances:0002\"},\"sku\":\"5BPT2UQ5P4XGF9CU\"},\"serviceCode\":\"AmazonEC2\",\"terms\":{\"OnDemand\":{\"5BPT2UQ5P4XGF9CU.JRTCKXETXF\":{\"priceDimensions\":{\"5BPT2UQ5P4XGF9CU.JRTCKXETXF.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"$0.4282 per Dedicated Windows m4.xlarge Instance Hour\",\"appliesTo\":[],\"rateCode\":\"5BPT2UQ5P4XGF9CU.JRTCKXETXF.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.4282000000\"}}},\"sku\":\"5BPT2UQ5P4XGF9CU\",\"effectiveDate\":\"2019-01-01T00:00:00Z\",\"offerTermCode\":\"JRTCKXETXF\",\"termAttributes\":{}}},\"Reserved\":{\"5BPT2UQ5P4XGF9CU.MZU6U2429S\":{\"priceDimensions\":{\"5BPT2UQ5P4XGF9CU.MZU6U2429S.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"5BPT2UQ5P4XGF9CU.MZU6U2429S.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"8093\"}},\"5BPT2UQ5P4XGF9CU.MZU6U2429S.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"USD 0.0 per Windows (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"5BPT2UQ5P4XGF9CU.MZU6U2429S.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}}},\"sku\":\"5BPT2UQ5P4XGF9CU\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"MZU6U2429S\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"All Upfront\"}},\"5BPT2UQ5P4XGF9CU.BPH4J8HBKS\":{\"priceDimensions\":{\"5BPT2UQ5P4XGF9CU.BPH4J8HBKS.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Windows (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"5BPT2UQ5P4XGF9CU.BPH4J8HBKS.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.3028000000\"}}},\"sku\":\"5BPT2UQ5P4XGF9CU\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"BPH4J8HBKS\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"No Upfront\"}},\"5BPT2UQ5P4XGF9CU.NQ3QZPMQV9\":{\"priceDimensions\":{\"5BPT2UQ5P4XGF9CU.NQ3QZPMQV9.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"5BPT2UQ5P4XGF9CU.NQ3QZPMQV9.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"7553\"}},\"5BPT2UQ5P4XGF9CU.NQ3QZPMQV9.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"USD 0.0 per Windows (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"5BPT2UQ5P4XGF9CU.NQ3QZPMQV9.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}}},\"sku\":\"5BPT2UQ5P4XGF9CU\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"NQ3QZPMQV9\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"All Upfront\"}},\"5BPT2UQ5P4XGF9CU.VJWZNREJX2\":{\"priceDimensions\":{\"5BPT2UQ5P4XGF9CU.VJWZNREJX2.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"5BPT2UQ5P4XGF9CU.VJWZNREJX2.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"3176\"}},\"5BPT2UQ5P4XGF9CU.VJWZNREJX2.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Windows (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"5BPT2UQ5P4XGF9CU.VJWZNREJX2.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}}},\"sku\":\"5BPT2UQ5P4XGF9CU\",\"effectiveDate\":\"2017-10-31T23:59:59Z\",\"offerTermCode\":\"VJWZNREJX2\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"All Upfront\"}},\"5BPT2UQ5P4XGF9CU.38NPMPTW36\":{\"priceDimensions\":{\"5BPT2UQ5P4XGF9CU.38NPMPTW36.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"5BPT2UQ5P4XGF9CU.38NPMPTW36.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"3863\"}},\"5BPT2UQ5P4XGF9CU.38NPMPTW36.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Windows (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"5BPT2UQ5P4XGF9CU.38NPMPTW36.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1470000000\"}}},\"sku\":\"5BPT2UQ5P4XGF9CU\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"38NPMPTW36\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"Partial Upfront\"}},\"5BPT2UQ5P4XGF9CU.R5XV2EPZQZ\":{\"priceDimensions\":{\"5BPT2UQ5P4XGF9CU.R5XV2EPZQZ.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Windows (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"5BPT2UQ5P4XGF9CU.R5XV2EPZQZ.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1553000000\"}},\"5BPT2UQ5P4XGF9CU.R5XV2EPZQZ.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"5BPT2UQ5P4XGF9CU.R5XV2EPZQZ.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"4080\"}}},\"sku\":\"5BPT2UQ5P4XGF9CU\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"R5XV2EPZQZ\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"Partial Upfront\"}},\"5BPT2UQ5P4XGF9CU.4NA7Y494T4\":{\"priceDimensions\":{\"5BPT2UQ5P4XGF9CU.4NA7Y494T4.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Windows (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"5BPT2UQ5P4XGF9CU.4NA7Y494T4.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.3503000000\"}}},\"sku\":\"5BPT2UQ5P4XGF9CU\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"4NA7Y494T4\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"No Upfront\"}},\"5BPT2UQ5P4XGF9CU.6QCMYABX3D\":{\"priceDimensions\":{\"5BPT2UQ5P4XGF9CU.6QCMYABX3D.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"5BPT2UQ5P4XGF9CU.6QCMYABX3D.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"2972\"}},\"5BPT2UQ5P4XGF9CU.6QCMYABX3D.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"USD 0.0 per Windows (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"5BPT2UQ5P4XGF9CU.6QCMYABX3D.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}}},\"sku\":\"5BPT2UQ5P4XGF9CU\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"6QCMYABX3D\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"All Upfront\"}},\"5BPT2UQ5P4XGF9CU.Z2E3P23VKM\":{\"priceDimensions\":{\"5BPT2UQ5P4XGF9CU.Z2E3P23VKM.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Windows (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"5BPT2UQ5P4XGF9CU.Z2E3P23VKM.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.3206000000\"}}},\"sku\":\"5BPT2UQ5P4XGF9CU\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"Z2E3P23VKM\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"No Upfront\"}},\"5BPT2UQ5P4XGF9CU.HU7G6KETJZ\":{\"priceDimensions\":{\"5BPT2UQ5P4XGF9CU.HU7G6KETJZ.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"5BPT2UQ5P4XGF9CU.HU7G6KETJZ.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"1500\"}},\"5BPT2UQ5P4XGF9CU.HU7G6KETJZ.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Windows (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"5BPT2UQ5P4XGF9CU.HU7G6KETJZ.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1712000000\"}}},\"sku\":\"5BPT2UQ5P4XGF9CU\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"HU7G6KETJZ\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"Partial Upfront\"}},\"5BPT2UQ5P4XGF9CU.CUZHX8X6JH\":{\"priceDimensions\":{\"5BPT2UQ5P4XGF9CU.CUZHX8X6JH.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"5BPT2UQ5P4XGF9CU.CUZHX8X6JH.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"1604\"}},\"5BPT2UQ5P4XGF9CU.CUZHX8X6JH.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Windows (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"5BPT2UQ5P4XGF9CU.CUZHX8X6JH.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1831000000\"}}},\"sku\":\"5BPT2UQ5P4XGF9CU\",\"effectiveDate\":\"2017-10-31T23:59:59Z\",\"offerTermCode\":\"CUZHX8X6JH\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"Partial Upfront\"}},\"5BPT2UQ5P4XGF9CU.7NE97W5U4E\":{\"priceDimensions\":{\"5BPT2UQ5P4XGF9CU.7NE97W5U4E.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Windows (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"5BPT2UQ5P4XGF9CU.7NE97W5U4E.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.3753000000\"}}},\"sku\":\"5BPT2UQ5P4XGF9CU\",\"effectiveDate\":\"2017-10-31T23:59:59Z\",\"offerTermCode\":\"7NE97W5U4E\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"No Upfront\"}}}},\"version\":\"20190116212448\",\"publicationDate\":\"2019-01-16T21:24:48Z\"}", + "{\"product\":{\"productFamily\":\"Compute Instance\",\"attributes\":{\"enhancedNetworkingSupported\":\"Yes\",\"memory\":\"16 GiB\",\"dedicatedEbsThroughput\":\"750 Mbps\",\"vcpu\":\"4\",\"capacitystatus\":\"Used\",\"locationType\":\"AWS Region\",\"storage\":\"EBS only\",\"instanceFamily\":\"General purpose\",\"operatingSystem\":\"Linux\",\"physicalProcessor\":\"Intel Xeon E5-2676 v3 (Haswell)\",\"clockSpeed\":\"2.4 GHz\",\"ecu\":\"13\",\"networkPerformance\":\"High\",\"servicename\":\"Amazon Elastic Compute Cloud\",\"instanceType\":\"m4.xlarge\",\"tenancy\":\"Shared\",\"usagetype\":\"EU-BoxUsage:m4.xlarge\",\"normalizationSizeFactor\":\"8\",\"processorFeatures\":\"Intel AVX; Intel AVX2; Intel Turbo\",\"servicecode\":\"AmazonEC2\",\"licenseModel\":\"No License required\",\"currentGeneration\":\"Yes\",\"preInstalledSw\":\"NA\",\"location\":\"EU (Ireland)\",\"processorArchitecture\":\"64-bit\",\"operation\":\"RunInstances\"},\"sku\":\"6FU9JEK79WWSARQ9\"},\"serviceCode\":\"AmazonEC2\",\"terms\":{\"OnDemand\":{\"6FU9JEK79WWSARQ9.JRTCKXETXF\":{\"priceDimensions\":{\"6FU9JEK79WWSARQ9.JRTCKXETXF.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"$0.222 per On Demand Linux m4.xlarge Instance Hour\",\"appliesTo\":[],\"rateCode\":\"6FU9JEK79WWSARQ9.JRTCKXETXF.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.2220000000\"}}},\"sku\":\"6FU9JEK79WWSARQ9\",\"effectiveDate\":\"2019-01-01T00:00:00Z\",\"offerTermCode\":\"JRTCKXETXF\",\"termAttributes\":{}}},\"Reserved\":{\"6FU9JEK79WWSARQ9.MZU6U2429S\":{\"priceDimensions\":{\"6FU9JEK79WWSARQ9.MZU6U2429S.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"6FU9JEK79WWSARQ9.MZU6U2429S.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"2962\"}},\"6FU9JEK79WWSARQ9.MZU6U2429S.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"USD 0.0 per Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"6FU9JEK79WWSARQ9.MZU6U2429S.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}}},\"sku\":\"6FU9JEK79WWSARQ9\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"MZU6U2429S\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"All Upfront\"}},\"6FU9JEK79WWSARQ9.BPH4J8HBKS\":{\"priceDimensions\":{\"6FU9JEK79WWSARQ9.BPH4J8HBKS.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"6FU9JEK79WWSARQ9.BPH4J8HBKS.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1080000000\"}}},\"sku\":\"6FU9JEK79WWSARQ9\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"BPH4J8HBKS\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"No Upfront\"}},\"6FU9JEK79WWSARQ9.NQ3QZPMQV9\":{\"priceDimensions\":{\"6FU9JEK79WWSARQ9.NQ3QZPMQV9.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"6FU9JEK79WWSARQ9.NQ3QZPMQV9.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"2470\"}},\"6FU9JEK79WWSARQ9.NQ3QZPMQV9.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"USD 0.0 per Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"6FU9JEK79WWSARQ9.NQ3QZPMQV9.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}}},\"sku\":\"6FU9JEK79WWSARQ9\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"NQ3QZPMQV9\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"All Upfront\"}},\"6FU9JEK79WWSARQ9.Z2E3P23VKM\":{\"priceDimensions\":{\"6FU9JEK79WWSARQ9.Z2E3P23VKM.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"6FU9JEK79WWSARQ9.Z2E3P23VKM.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1242000000\"}}},\"sku\":\"6FU9JEK79WWSARQ9\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"Z2E3P23VKM\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"No Upfront\"}},\"6FU9JEK79WWSARQ9.4NA7Y494T4\":{\"priceDimensions\":{\"6FU9JEK79WWSARQ9.4NA7Y494T4.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"6FU9JEK79WWSARQ9.4NA7Y494T4.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1512000000\"}}},\"sku\":\"6FU9JEK79WWSARQ9\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"4NA7Y494T4\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"No Upfront\"}},\"6FU9JEK79WWSARQ9.CUZHX8X6JH\":{\"priceDimensions\":{\"6FU9JEK79WWSARQ9.CUZHX8X6JH.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"6FU9JEK79WWSARQ9.CUZHX8X6JH.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"725\"}},\"6FU9JEK79WWSARQ9.CUZHX8X6JH.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"6FU9JEK79WWSARQ9.CUZHX8X6JH.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0828000000\"}}},\"sku\":\"6FU9JEK79WWSARQ9\",\"effectiveDate\":\"2017-10-31T23:59:59Z\",\"offerTermCode\":\"CUZHX8X6JH\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"Partial Upfront\"}},\"6FU9JEK79WWSARQ9.VJWZNREJX2\":{\"priceDimensions\":{\"6FU9JEK79WWSARQ9.VJWZNREJX2.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"6FU9JEK79WWSARQ9.VJWZNREJX2.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"1422\"}},\"6FU9JEK79WWSARQ9.VJWZNREJX2.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"6FU9JEK79WWSARQ9.VJWZNREJX2.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}}},\"sku\":\"6FU9JEK79WWSARQ9\",\"effectiveDate\":\"2017-10-31T23:59:59Z\",\"offerTermCode\":\"VJWZNREJX2\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"All Upfront\"}},\"6FU9JEK79WWSARQ9.HU7G6KETJZ\":{\"priceDimensions\":{\"6FU9JEK79WWSARQ9.HU7G6KETJZ.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"6FU9JEK79WWSARQ9.HU7G6KETJZ.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"631\"}},\"6FU9JEK79WWSARQ9.HU7G6KETJZ.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"6FU9JEK79WWSARQ9.HU7G6KETJZ.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0720000000\"}}},\"sku\":\"6FU9JEK79WWSARQ9\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"HU7G6KETJZ\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"Partial Upfront\"}},\"6FU9JEK79WWSARQ9.7NE97W5U4E\":{\"priceDimensions\":{\"6FU9JEK79WWSARQ9.7NE97W5U4E.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"6FU9JEK79WWSARQ9.7NE97W5U4E.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1739000000\"}}},\"sku\":\"6FU9JEK79WWSARQ9\",\"effectiveDate\":\"2017-10-31T23:59:59Z\",\"offerTermCode\":\"7NE97W5U4E\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"No Upfront\"}},\"6FU9JEK79WWSARQ9.6QCMYABX3D\":{\"priceDimensions\":{\"6FU9JEK79WWSARQ9.6QCMYABX3D.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"6FU9JEK79WWSARQ9.6QCMYABX3D.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"1236\"}},\"6FU9JEK79WWSARQ9.6QCMYABX3D.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"USD 0.0 per Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"6FU9JEK79WWSARQ9.6QCMYABX3D.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}}},\"sku\":\"6FU9JEK79WWSARQ9\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"6QCMYABX3D\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"All Upfront\"}},\"6FU9JEK79WWSARQ9.R5XV2EPZQZ\":{\"priceDimensions\":{\"6FU9JEK79WWSARQ9.R5XV2EPZQZ.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"6FU9JEK79WWSARQ9.R5XV2EPZQZ.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0575000000\"}},\"6FU9JEK79WWSARQ9.R5XV2EPZQZ.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"6FU9JEK79WWSARQ9.R5XV2EPZQZ.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"1511\"}}},\"sku\":\"6FU9JEK79WWSARQ9\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"R5XV2EPZQZ\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"Partial Upfront\"}},\"6FU9JEK79WWSARQ9.38NPMPTW36\":{\"priceDimensions\":{\"6FU9JEK79WWSARQ9.38NPMPTW36.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"6FU9JEK79WWSARQ9.38NPMPTW36.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"1314\"}},\"6FU9JEK79WWSARQ9.38NPMPTW36.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"6FU9JEK79WWSARQ9.38NPMPTW36.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0500000000\"}}},\"sku\":\"6FU9JEK79WWSARQ9\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"38NPMPTW36\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"Partial Upfront\"}}}},\"version\":\"20190116212448\",\"publicationDate\":\"2019-01-16T21:24:48Z\"}", + "{\"product\":{\"productFamily\":\"Compute Instance\",\"attributes\":{\"enhancedNetworkingSupported\":\"Yes\",\"memory\":\"16 GiB\",\"dedicatedEbsThroughput\":\"750 Mbps\",\"vcpu\":\"4\",\"capacitystatus\":\"Used\",\"locationType\":\"AWS Region\",\"storage\":\"EBS only\",\"instanceFamily\":\"General purpose\",\"operatingSystem\":\"SUSE\",\"physicalProcessor\":\"Intel Xeon E5-2676 v3 (Haswell)\",\"clockSpeed\":\"2.4 GHz\",\"ecu\":\"13\",\"networkPerformance\":\"High\",\"servicename\":\"Amazon Elastic Compute Cloud\",\"instanceType\":\"m4.xlarge\",\"tenancy\":\"Shared\",\"usagetype\":\"EU-BoxUsage:m4.xlarge\",\"normalizationSizeFactor\":\"8\",\"processorFeatures\":\"Intel AVX; Intel AVX2; Intel Turbo\",\"servicecode\":\"AmazonEC2\",\"licenseModel\":\"No License required\",\"currentGeneration\":\"Yes\",\"preInstalledSw\":\"NA\",\"location\":\"EU (Ireland)\",\"processorArchitecture\":\"64-bit\",\"operation\":\"RunInstances:000g\"},\"sku\":\"754M877DFCU5FZVH\"},\"serviceCode\":\"AmazonEC2\",\"terms\":{\"OnDemand\":{\"754M877DFCU5FZVH.JRTCKXETXF\":{\"priceDimensions\":{\"754M877DFCU5FZVH.JRTCKXETXF.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"$0.322 per On Demand SUSE m4.xlarge Instance Hour\",\"appliesTo\":[],\"rateCode\":\"754M877DFCU5FZVH.JRTCKXETXF.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.3220000000\"}}},\"sku\":\"754M877DFCU5FZVH\",\"effectiveDate\":\"2019-01-01T00:00:00Z\",\"offerTermCode\":\"JRTCKXETXF\",\"termAttributes\":{}}},\"Reserved\":{\"754M877DFCU5FZVH.NQ3QZPMQV9\":{\"priceDimensions\":{\"754M877DFCU5FZVH.NQ3QZPMQV9.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"754M877DFCU5FZVH.NQ3QZPMQV9.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"3164\"}},\"754M877DFCU5FZVH.NQ3QZPMQV9.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"USD 0.0 per SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"754M877DFCU5FZVH.NQ3QZPMQV9.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}}},\"sku\":\"754M877DFCU5FZVH\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"NQ3QZPMQV9\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"All Upfront\"}},\"754M877DFCU5FZVH.6QCMYABX3D\":{\"priceDimensions\":{\"754M877DFCU5FZVH.6QCMYABX3D.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"754M877DFCU5FZVH.6QCMYABX3D.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"1526\"}},\"754M877DFCU5FZVH.6QCMYABX3D.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"USD 0.0 per SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"754M877DFCU5FZVH.6QCMYABX3D.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}}},\"sku\":\"754M877DFCU5FZVH\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"6QCMYABX3D\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"All Upfront\"}},\"754M877DFCU5FZVH.BPH4J8HBKS\":{\"priceDimensions\":{\"754M877DFCU5FZVH.BPH4J8HBKS.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"754M877DFCU5FZVH.BPH4J8HBKS.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1410000000\"}}},\"sku\":\"754M877DFCU5FZVH\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"BPH4J8HBKS\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"No Upfront\"}},\"754M877DFCU5FZVH.HU7G6KETJZ\":{\"priceDimensions\":{\"754M877DFCU5FZVH.HU7G6KETJZ.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"754M877DFCU5FZVH.HU7G6KETJZ.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"807\"}},\"754M877DFCU5FZVH.HU7G6KETJZ.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"754M877DFCU5FZVH.HU7G6KETJZ.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0850000000\"}}},\"sku\":\"754M877DFCU5FZVH\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"HU7G6KETJZ\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"Partial Upfront\"}},\"754M877DFCU5FZVH.R5XV2EPZQZ\":{\"priceDimensions\":{\"754M877DFCU5FZVH.R5XV2EPZQZ.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"754M877DFCU5FZVH.R5XV2EPZQZ.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0705000000\"}},\"754M877DFCU5FZVH.R5XV2EPZQZ.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"754M877DFCU5FZVH.R5XV2EPZQZ.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"1863\"}}},\"sku\":\"754M877DFCU5FZVH\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"R5XV2EPZQZ\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"Partial Upfront\"}},\"754M877DFCU5FZVH.VJWZNREJX2\":{\"priceDimensions\":{\"754M877DFCU5FZVH.VJWZNREJX2.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"754M877DFCU5FZVH.VJWZNREJX2.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"1712\"}},\"754M877DFCU5FZVH.VJWZNREJX2.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"754M877DFCU5FZVH.VJWZNREJX2.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}}},\"sku\":\"754M877DFCU5FZVH\",\"effectiveDate\":\"2017-10-31T23:59:59Z\",\"offerTermCode\":\"VJWZNREJX2\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"All Upfront\"}},\"754M877DFCU5FZVH.Z2E3P23VKM\":{\"priceDimensions\":{\"754M877DFCU5FZVH.Z2E3P23VKM.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"754M877DFCU5FZVH.Z2E3P23VKM.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1572000000\"}}},\"sku\":\"754M877DFCU5FZVH\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"Z2E3P23VKM\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"No Upfront\"}},\"754M877DFCU5FZVH.CUZHX8X6JH\":{\"priceDimensions\":{\"754M877DFCU5FZVH.CUZHX8X6JH.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"754M877DFCU5FZVH.CUZHX8X6JH.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"901\"}},\"754M877DFCU5FZVH.CUZHX8X6JH.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"754M877DFCU5FZVH.CUZHX8X6JH.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0958000000\"}}},\"sku\":\"754M877DFCU5FZVH\",\"effectiveDate\":\"2017-10-31T23:59:59Z\",\"offerTermCode\":\"CUZHX8X6JH\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"Partial Upfront\"}},\"754M877DFCU5FZVH.4NA7Y494T4\":{\"priceDimensions\":{\"754M877DFCU5FZVH.4NA7Y494T4.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"754M877DFCU5FZVH.4NA7Y494T4.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1842000000\"}}},\"sku\":\"754M877DFCU5FZVH\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"4NA7Y494T4\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"No Upfront\"}},\"754M877DFCU5FZVH.MZU6U2429S\":{\"priceDimensions\":{\"754M877DFCU5FZVH.MZU6U2429S.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"754M877DFCU5FZVH.MZU6U2429S.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"3656\"}},\"754M877DFCU5FZVH.MZU6U2429S.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"USD 0.0 per SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"754M877DFCU5FZVH.MZU6U2429S.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}}},\"sku\":\"754M877DFCU5FZVH\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"MZU6U2429S\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"All Upfront\"}},\"754M877DFCU5FZVH.38NPMPTW36\":{\"priceDimensions\":{\"754M877DFCU5FZVH.38NPMPTW36.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"754M877DFCU5FZVH.38NPMPTW36.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0630000000\"}},\"754M877DFCU5FZVH.38NPMPTW36.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"754M877DFCU5FZVH.38NPMPTW36.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"1666\"}}},\"sku\":\"754M877DFCU5FZVH\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"38NPMPTW36\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"Partial Upfront\"}},\"754M877DFCU5FZVH.7NE97W5U4E\":{\"priceDimensions\":{\"754M877DFCU5FZVH.7NE97W5U4E.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"754M877DFCU5FZVH.7NE97W5U4E.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.2069000000\"}}},\"sku\":\"754M877DFCU5FZVH\",\"effectiveDate\":\"2017-10-31T23:59:59Z\",\"offerTermCode\":\"7NE97W5U4E\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"No Upfront\"}}}},\"version\":\"20190116212448\",\"publicationDate\":\"2019-01-16T21:24:48Z\"}", + "{\"product\":{\"productFamily\":\"Compute Instance\",\"attributes\":{\"enhancedNetworkingSupported\":\"Yes\",\"memory\":\"16 GiB\",\"dedicatedEbsThroughput\":\"750 Mbps\",\"vcpu\":\"4\",\"capacitystatus\":\"Used\",\"locationType\":\"AWS Region\",\"storage\":\"EBS only\",\"instanceFamily\":\"General purpose\",\"operatingSystem\":\"Windows\",\"physicalProcessor\":\"Intel Xeon E5-2676 v3 (Haswell)\",\"clockSpeed\":\"2.4 GHz\",\"ecu\":\"13\",\"networkPerformance\":\"High\",\"servicename\":\"Amazon Elastic Compute Cloud\",\"instanceType\":\"m4.xlarge\",\"tenancy\":\"Shared\",\"usagetype\":\"EU-BoxUsage:m4.xlarge\",\"normalizationSizeFactor\":\"8\",\"processorFeatures\":\"Intel AVX; Intel AVX2; Intel Turbo\",\"servicecode\":\"AmazonEC2\",\"licenseModel\":\"Bring your own license\",\"currentGeneration\":\"Yes\",\"preInstalledSw\":\"NA\",\"location\":\"EU (Ireland)\",\"processorArchitecture\":\"64-bit\",\"operation\":\"RunInstances:0800\"},\"sku\":\"78748EQZN4RZFXG8\"},\"serviceCode\":\"AmazonEC2\",\"terms\":{\"OnDemand\":{\"78748EQZN4RZFXG8.JRTCKXETXF\":{\"priceDimensions\":{\"78748EQZN4RZFXG8.JRTCKXETXF.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"$0.222 per On Demand Windows BYOL m4.xlarge Instance Hour\",\"appliesTo\":[],\"rateCode\":\"78748EQZN4RZFXG8.JRTCKXETXF.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.2220000000\"}}},\"sku\":\"78748EQZN4RZFXG8\",\"effectiveDate\":\"2019-01-01T00:00:00Z\",\"offerTermCode\":\"JRTCKXETXF\",\"termAttributes\":{}}}},\"version\":\"20190116212448\",\"publicationDate\":\"2019-01-16T21:24:48Z\"}", + "{\"product\":{\"productFamily\":\"Compute Instance\",\"attributes\":{\"enhancedNetworkingSupported\":\"Yes\",\"memory\":\"16 GiB\",\"dedicatedEbsThroughput\":\"750 Mbps\",\"vcpu\":\"4\",\"capacitystatus\":\"Used\",\"locationType\":\"AWS Region\",\"storage\":\"EBS only\",\"instanceFamily\":\"General purpose\",\"operatingSystem\":\"Linux\",\"physicalProcessor\":\"Intel Xeon E5-2676 v3 (Haswell)\",\"clockSpeed\":\"2.4 GHz\",\"ecu\":\"13\",\"networkPerformance\":\"High\",\"servicename\":\"Amazon Elastic Compute Cloud\",\"instanceType\":\"m4.xlarge\",\"tenancy\":\"Host\",\"usagetype\":\"EU-HostBoxUsage:m4.xlarge\",\"normalizationSizeFactor\":\"8\",\"processorFeatures\":\"Intel AVX; Intel AVX2; Intel Turbo\",\"servicecode\":\"AmazonEC2\",\"licenseModel\":\"No License required\",\"currentGeneration\":\"Yes\",\"preInstalledSw\":\"NA\",\"location\":\"EU (Ireland)\",\"processorArchitecture\":\"64-bit\",\"operation\":\"RunInstances\"},\"sku\":\"8JTZ8Y4FN6FSFDJ7\"},\"serviceCode\":\"AmazonEC2\",\"terms\":{\"OnDemand\":{\"8JTZ8Y4FN6FSFDJ7.JRTCKXETXF\":{\"priceDimensions\":{\"8JTZ8Y4FN6FSFDJ7.JRTCKXETXF.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"$0.000 per Linux m4.xlarge Dedicated Host Instance hour\",\"appliesTo\":[],\"rateCode\":\"8JTZ8Y4FN6FSFDJ7.JRTCKXETXF.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}}},\"sku\":\"8JTZ8Y4FN6FSFDJ7\",\"effectiveDate\":\"2019-01-01T00:00:00Z\",\"offerTermCode\":\"JRTCKXETXF\",\"termAttributes\":{}}}},\"version\":\"20190116212448\",\"publicationDate\":\"2019-01-16T21:24:48Z\"}", + "{\"product\":{\"productFamily\":\"Compute Instance\",\"attributes\":{\"enhancedNetworkingSupported\":\"Yes\",\"memory\":\"16 GiB\",\"dedicatedEbsThroughput\":\"750 Mbps\",\"vcpu\":\"4\",\"capacitystatus\":\"Used\",\"locationType\":\"AWS Region\",\"storage\":\"EBS only\",\"instanceFamily\":\"General purpose\",\"operatingSystem\":\"Windows\",\"physicalProcessor\":\"Intel Xeon E5-2676 v3 (Haswell)\",\"clockSpeed\":\"2.4 GHz\",\"ecu\":\"13\",\"networkPerformance\":\"High\",\"servicename\":\"Amazon Elastic Compute Cloud\",\"instanceType\":\"m4.xlarge\",\"tenancy\":\"Host\",\"usagetype\":\"EU-HostBoxUsage:m4.xlarge\",\"normalizationSizeFactor\":\"8\",\"processorFeatures\":\"Intel AVX; Intel AVX2; Intel Turbo\",\"servicecode\":\"AmazonEC2\",\"licenseModel\":\"No License required\",\"currentGeneration\":\"Yes\",\"preInstalledSw\":\"NA\",\"location\":\"EU (Ireland)\",\"processorArchitecture\":\"64-bit\",\"operation\":\"RunInstances:0002\"},\"sku\":\"A4392DXX8HZVKB96\"},\"serviceCode\":\"AmazonEC2\",\"terms\":{\"OnDemand\":{\"A4392DXX8HZVKB96.JRTCKXETXF\":{\"priceDimensions\":{\"A4392DXX8HZVKB96.JRTCKXETXF.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"$0.000 per Windows m4.xlarge Dedicated Host Instance hour\",\"appliesTo\":[],\"rateCode\":\"A4392DXX8HZVKB96.JRTCKXETXF.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}}},\"sku\":\"A4392DXX8HZVKB96\",\"effectiveDate\":\"2019-01-01T00:00:00Z\",\"offerTermCode\":\"JRTCKXETXF\",\"termAttributes\":{}}}},\"version\":\"20190116212448\",\"publicationDate\":\"2019-01-16T21:24:48Z\"}", + "{\"product\":{\"productFamily\":\"Compute Instance\",\"attributes\":{\"enhancedNetworkingSupported\":\"Yes\",\"memory\":\"16 GiB\",\"dedicatedEbsThroughput\":\"750 Mbps\",\"vcpu\":\"4\",\"capacitystatus\":\"Used\",\"locationType\":\"AWS Region\",\"storage\":\"EBS only\",\"instanceFamily\":\"General purpose\",\"operatingSystem\":\"SUSE\",\"physicalProcessor\":\"Intel Xeon E5-2676 v3 (Haswell)\",\"clockSpeed\":\"2.4 GHz\",\"ecu\":\"13\",\"networkPerformance\":\"High\",\"servicename\":\"Amazon Elastic Compute Cloud\",\"instanceType\":\"m4.xlarge\",\"tenancy\":\"Dedicated\",\"usagetype\":\"EU-DedicatedUsage:m4.xlarge\",\"normalizationSizeFactor\":\"8\",\"processorFeatures\":\"Intel AVX; Intel AVX2; Intel Turbo\",\"servicecode\":\"AmazonEC2\",\"licenseModel\":\"No License required\",\"currentGeneration\":\"Yes\",\"preInstalledSw\":\"NA\",\"location\":\"EU (Ireland)\",\"processorArchitecture\":\"64-bit\",\"operation\":\"RunInstances:000g\"},\"sku\":\"E2GJSF2Y4VK3UTJX\"},\"serviceCode\":\"AmazonEC2\",\"terms\":{\"OnDemand\":{\"E2GJSF2Y4VK3UTJX.JRTCKXETXF\":{\"priceDimensions\":{\"E2GJSF2Y4VK3UTJX.JRTCKXETXF.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"$0.3442 per Dedicated SUSE m4.xlarge Instance Hour\",\"appliesTo\":[],\"rateCode\":\"E2GJSF2Y4VK3UTJX.JRTCKXETXF.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.3442000000\"}}},\"sku\":\"E2GJSF2Y4VK3UTJX\",\"effectiveDate\":\"2019-01-01T00:00:00Z\",\"offerTermCode\":\"JRTCKXETXF\",\"termAttributes\":{}}},\"Reserved\":{\"E2GJSF2Y4VK3UTJX.7NE97W5U4E\":{\"priceDimensions\":{\"E2GJSF2Y4VK3UTJX.7NE97W5U4E.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"E2GJSF2Y4VK3UTJX.7NE97W5U4E.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.2243000000\"}}},\"sku\":\"E2GJSF2Y4VK3UTJX\",\"effectiveDate\":\"2017-10-31T23:59:59Z\",\"offerTermCode\":\"7NE97W5U4E\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"No Upfront\"}},\"E2GJSF2Y4VK3UTJX.HU7G6KETJZ\":{\"priceDimensions\":{\"E2GJSF2Y4VK3UTJX.HU7G6KETJZ.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"E2GJSF2Y4VK3UTJX.HU7G6KETJZ.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"870\"}},\"E2GJSF2Y4VK3UTJX.HU7G6KETJZ.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"E2GJSF2Y4VK3UTJX.HU7G6KETJZ.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0922000000\"}}},\"sku\":\"E2GJSF2Y4VK3UTJX\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"HU7G6KETJZ\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"Partial Upfront\"}},\"E2GJSF2Y4VK3UTJX.CUZHX8X6JH\":{\"priceDimensions\":{\"E2GJSF2Y4VK3UTJX.CUZHX8X6JH.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"E2GJSF2Y4VK3UTJX.CUZHX8X6JH.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1041000000\"}},\"E2GJSF2Y4VK3UTJX.CUZHX8X6JH.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"E2GJSF2Y4VK3UTJX.CUZHX8X6JH.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"974\"}}},\"sku\":\"E2GJSF2Y4VK3UTJX\",\"effectiveDate\":\"2017-10-31T23:59:59Z\",\"offerTermCode\":\"CUZHX8X6JH\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"Partial Upfront\"}},\"E2GJSF2Y4VK3UTJX.4NA7Y494T4\":{\"priceDimensions\":{\"E2GJSF2Y4VK3UTJX.4NA7Y494T4.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"E2GJSF2Y4VK3UTJX.4NA7Y494T4.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1993000000\"}}},\"sku\":\"E2GJSF2Y4VK3UTJX\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"4NA7Y494T4\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"No Upfront\"}},\"E2GJSF2Y4VK3UTJX.VJWZNREJX2\":{\"priceDimensions\":{\"E2GJSF2Y4VK3UTJX.VJWZNREJX2.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"E2GJSF2Y4VK3UTJX.VJWZNREJX2.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"1854\"}},\"E2GJSF2Y4VK3UTJX.VJWZNREJX2.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"E2GJSF2Y4VK3UTJX.VJWZNREJX2.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}}},\"sku\":\"E2GJSF2Y4VK3UTJX\",\"effectiveDate\":\"2017-10-31T23:59:59Z\",\"offerTermCode\":\"VJWZNREJX2\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"All Upfront\"}},\"E2GJSF2Y4VK3UTJX.MZU6U2429S\":{\"priceDimensions\":{\"E2GJSF2Y4VK3UTJX.MZU6U2429S.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"USD 0.0 per SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"E2GJSF2Y4VK3UTJX.MZU6U2429S.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}},\"E2GJSF2Y4VK3UTJX.MZU6U2429S.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"E2GJSF2Y4VK3UTJX.MZU6U2429S.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"3952\"}}},\"sku\":\"E2GJSF2Y4VK3UTJX\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"MZU6U2429S\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"All Upfront\"}},\"E2GJSF2Y4VK3UTJX.R5XV2EPZQZ\":{\"priceDimensions\":{\"E2GJSF2Y4VK3UTJX.R5XV2EPZQZ.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"E2GJSF2Y4VK3UTJX.R5XV2EPZQZ.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"2014\"}},\"E2GJSF2Y4VK3UTJX.R5XV2EPZQZ.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"E2GJSF2Y4VK3UTJX.R5XV2EPZQZ.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0763000000\"}}},\"sku\":\"E2GJSF2Y4VK3UTJX\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"R5XV2EPZQZ\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"Partial Upfront\"}},\"E2GJSF2Y4VK3UTJX.NQ3QZPMQV9\":{\"priceDimensions\":{\"E2GJSF2Y4VK3UTJX.NQ3QZPMQV9.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"USD 0.0 per SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"E2GJSF2Y4VK3UTJX.NQ3QZPMQV9.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}},\"E2GJSF2Y4VK3UTJX.NQ3QZPMQV9.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"E2GJSF2Y4VK3UTJX.NQ3QZPMQV9.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"3411\"}}},\"sku\":\"E2GJSF2Y4VK3UTJX\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"NQ3QZPMQV9\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"All Upfront\"}},\"E2GJSF2Y4VK3UTJX.BPH4J8HBKS\":{\"priceDimensions\":{\"E2GJSF2Y4VK3UTJX.BPH4J8HBKS.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"E2GJSF2Y4VK3UTJX.BPH4J8HBKS.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1518000000\"}}},\"sku\":\"E2GJSF2Y4VK3UTJX\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"BPH4J8HBKS\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"No Upfront\"}},\"E2GJSF2Y4VK3UTJX.Z2E3P23VKM\":{\"priceDimensions\":{\"E2GJSF2Y4VK3UTJX.Z2E3P23VKM.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"E2GJSF2Y4VK3UTJX.Z2E3P23VKM.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1696000000\"}}},\"sku\":\"E2GJSF2Y4VK3UTJX\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"Z2E3P23VKM\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"No Upfront\"}},\"E2GJSF2Y4VK3UTJX.38NPMPTW36\":{\"priceDimensions\":{\"E2GJSF2Y4VK3UTJX.38NPMPTW36.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"E2GJSF2Y4VK3UTJX.38NPMPTW36.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"1797\"}},\"E2GJSF2Y4VK3UTJX.38NPMPTW36.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"E2GJSF2Y4VK3UTJX.38NPMPTW36.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0680000000\"}}},\"sku\":\"E2GJSF2Y4VK3UTJX\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"38NPMPTW36\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"Partial Upfront\"}},\"E2GJSF2Y4VK3UTJX.6QCMYABX3D\":{\"priceDimensions\":{\"E2GJSF2Y4VK3UTJX.6QCMYABX3D.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"USD 0.0 per SUSE Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"E2GJSF2Y4VK3UTJX.6QCMYABX3D.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}},\"E2GJSF2Y4VK3UTJX.6QCMYABX3D.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"E2GJSF2Y4VK3UTJX.6QCMYABX3D.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"1650\"}}},\"sku\":\"E2GJSF2Y4VK3UTJX\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"6QCMYABX3D\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"All Upfront\"}}}},\"version\":\"20190116212448\",\"publicationDate\":\"2019-01-16T21:24:48Z\"}", + "{\"product\":{\"productFamily\":\"Compute Instance\",\"attributes\":{\"enhancedNetworkingSupported\":\"Yes\",\"memory\":\"16 GiB\",\"dedicatedEbsThroughput\":\"750 Mbps\",\"vcpu\":\"4\",\"capacitystatus\":\"Used\",\"locationType\":\"AWS Region\",\"storage\":\"EBS only\",\"instanceFamily\":\"General purpose\",\"operatingSystem\":\"Windows\",\"physicalProcessor\":\"Intel Xeon E5-2676 v3 (Haswell)\",\"clockSpeed\":\"2.4 GHz\",\"ecu\":\"13\",\"networkPerformance\":\"High\",\"servicename\":\"Amazon Elastic Compute Cloud\",\"instanceType\":\"m4.xlarge\",\"tenancy\":\"Dedicated\",\"usagetype\":\"EU-DedicatedUsage:m4.xlarge\",\"normalizationSizeFactor\":\"8\",\"processorFeatures\":\"Intel AVX; Intel AVX2; Intel Turbo\",\"servicecode\":\"AmazonEC2\",\"licenseModel\":\"Bring your own license\",\"currentGeneration\":\"Yes\",\"preInstalledSw\":\"NA\",\"location\":\"EU (Ireland)\",\"processorArchitecture\":\"64-bit\",\"operation\":\"RunInstances:0800\"},\"sku\":\"EAE5U4TVXNVU7KUW\"},\"serviceCode\":\"AmazonEC2\",\"terms\":{\"OnDemand\":{\"EAE5U4TVXNVU7KUW.JRTCKXETXF\":{\"priceDimensions\":{\"EAE5U4TVXNVU7KUW.JRTCKXETXF.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"$0.2442 per Dedicated Windows BYOL m4.xlarge Instance Hour\",\"appliesTo\":[],\"rateCode\":\"EAE5U4TVXNVU7KUW.JRTCKXETXF.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.2442000000\"}}},\"sku\":\"EAE5U4TVXNVU7KUW\",\"effectiveDate\":\"2019-01-01T00:00:00Z\",\"offerTermCode\":\"JRTCKXETXF\",\"termAttributes\":{}}}},\"version\":\"20190116212448\",\"publicationDate\":\"2019-01-16T21:24:48Z\"}", + "{\"product\":{\"productFamily\":\"Compute Instance\",\"attributes\":{\"enhancedNetworkingSupported\":\"Yes\",\"memory\":\"16 GiB\",\"dedicatedEbsThroughput\":\"750 Mbps\",\"vcpu\":\"4\",\"capacitystatus\":\"Used\",\"locationType\":\"AWS Region\",\"storage\":\"EBS only\",\"instanceFamily\":\"General purpose\",\"operatingSystem\":\"RHEL\",\"physicalProcessor\":\"Intel Xeon E5-2676 v3 (Haswell)\",\"clockSpeed\":\"2.4 GHz\",\"ecu\":\"13\",\"networkPerformance\":\"High\",\"servicename\":\"Amazon Elastic Compute Cloud\",\"instanceType\":\"m4.xlarge\",\"tenancy\":\"Dedicated\",\"usagetype\":\"EU-DedicatedUsage:m4.xlarge\",\"normalizationSizeFactor\":\"8\",\"processorFeatures\":\"Intel AVX; Intel AVX2; Intel Turbo\",\"servicecode\":\"AmazonEC2\",\"licenseModel\":\"No License required\",\"currentGeneration\":\"Yes\",\"preInstalledSw\":\"NA\",\"location\":\"EU (Ireland)\",\"processorArchitecture\":\"64-bit\",\"operation\":\"RunInstances:0010\"},\"sku\":\"H4U3243366KVUYPJ\"},\"serviceCode\":\"AmazonEC2\",\"terms\":{\"OnDemand\":{\"H4U3243366KVUYPJ.JRTCKXETXF\":{\"priceDimensions\":{\"H4U3243366KVUYPJ.JRTCKXETXF.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"$0.3042 per Dedicated RHEL m4.xlarge Instance Hour\",\"appliesTo\":[],\"rateCode\":\"H4U3243366KVUYPJ.JRTCKXETXF.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.3042000000\"}}},\"sku\":\"H4U3243366KVUYPJ\",\"effectiveDate\":\"2019-01-01T00:00:00Z\",\"offerTermCode\":\"JRTCKXETXF\",\"termAttributes\":{}}},\"Reserved\":{\"H4U3243366KVUYPJ.4NA7Y494T4\":{\"priceDimensions\":{\"H4U3243366KVUYPJ.4NA7Y494T4.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"H4U3243366KVUYPJ.4NA7Y494T4.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.2263000000\"}}},\"sku\":\"H4U3243366KVUYPJ\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"4NA7Y494T4\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"No Upfront\"}},\"H4U3243366KVUYPJ.38NPMPTW36\":{\"priceDimensions\":{\"H4U3243366KVUYPJ.38NPMPTW36.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"H4U3243366KVUYPJ.38NPMPTW36.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1150000000\"}},\"H4U3243366KVUYPJ.38NPMPTW36.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"H4U3243366KVUYPJ.38NPMPTW36.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"1445\"}}},\"sku\":\"H4U3243366KVUYPJ\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"38NPMPTW36\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"Partial Upfront\"}},\"H4U3243366KVUYPJ.MZU6U2429S\":{\"priceDimensions\":{\"H4U3243366KVUYPJ.MZU6U2429S.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"H4U3243366KVUYPJ.MZU6U2429S.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"4835\"}},\"H4U3243366KVUYPJ.MZU6U2429S.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"H4U3243366KVUYPJ.MZU6U2429S.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}}},\"sku\":\"H4U3243366KVUYPJ\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"MZU6U2429S\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"All Upfront\"}},\"H4U3243366KVUYPJ.R5XV2EPZQZ\":{\"priceDimensions\":{\"H4U3243366KVUYPJ.R5XV2EPZQZ.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"H4U3243366KVUYPJ.R5XV2EPZQZ.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"1662\"}},\"H4U3243366KVUYPJ.R5XV2EPZQZ.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"H4U3243366KVUYPJ.R5XV2EPZQZ.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1233000000\"}}},\"sku\":\"H4U3243366KVUYPJ\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"R5XV2EPZQZ\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"Partial Upfront\"}},\"H4U3243366KVUYPJ.BPH4J8HBKS\":{\"priceDimensions\":{\"H4U3243366KVUYPJ.BPH4J8HBKS.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"H4U3243366KVUYPJ.BPH4J8HBKS.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1788000000\"}}},\"sku\":\"H4U3243366KVUYPJ\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"BPH4J8HBKS\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"No Upfront\"}},\"H4U3243366KVUYPJ.CUZHX8X6JH\":{\"priceDimensions\":{\"H4U3243366KVUYPJ.CUZHX8X6JH.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"H4U3243366KVUYPJ.CUZHX8X6JH.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1511000000\"}},\"H4U3243366KVUYPJ.CUZHX8X6JH.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"H4U3243366KVUYPJ.CUZHX8X6JH.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"798\"}}},\"sku\":\"H4U3243366KVUYPJ\",\"effectiveDate\":\"2017-10-31T23:59:59Z\",\"offerTermCode\":\"CUZHX8X6JH\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"Partial Upfront\"}},\"H4U3243366KVUYPJ.7NE97W5U4E\":{\"priceDimensions\":{\"H4U3243366KVUYPJ.7NE97W5U4E.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"H4U3243366KVUYPJ.7NE97W5U4E.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.2513000000\"}}},\"sku\":\"H4U3243366KVUYPJ\",\"effectiveDate\":\"2017-10-31T23:59:59Z\",\"offerTermCode\":\"7NE97W5U4E\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"No Upfront\"}},\"H4U3243366KVUYPJ.HU7G6KETJZ\":{\"priceDimensions\":{\"H4U3243366KVUYPJ.HU7G6KETJZ.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"H4U3243366KVUYPJ.HU7G6KETJZ.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"694\"}},\"H4U3243366KVUYPJ.HU7G6KETJZ.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"H4U3243366KVUYPJ.HU7G6KETJZ.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1392000000\"}}},\"sku\":\"H4U3243366KVUYPJ\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"HU7G6KETJZ\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"Partial Upfront\"}},\"H4U3243366KVUYPJ.6QCMYABX3D\":{\"priceDimensions\":{\"H4U3243366KVUYPJ.6QCMYABX3D.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"H4U3243366KVUYPJ.6QCMYABX3D.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}},\"H4U3243366KVUYPJ.6QCMYABX3D.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"H4U3243366KVUYPJ.6QCMYABX3D.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"1885\"}}},\"sku\":\"H4U3243366KVUYPJ\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"6QCMYABX3D\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"All Upfront\"}},\"H4U3243366KVUYPJ.VJWZNREJX2\":{\"priceDimensions\":{\"H4U3243366KVUYPJ.VJWZNREJX2.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"H4U3243366KVUYPJ.VJWZNREJX2.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"2089\"}},\"H4U3243366KVUYPJ.VJWZNREJX2.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"H4U3243366KVUYPJ.VJWZNREJX2.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}}},\"sku\":\"H4U3243366KVUYPJ\",\"effectiveDate\":\"2017-10-31T23:59:59Z\",\"offerTermCode\":\"VJWZNREJX2\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"All Upfront\"}},\"H4U3243366KVUYPJ.Z2E3P23VKM\":{\"priceDimensions\":{\"H4U3243366KVUYPJ.Z2E3P23VKM.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"H4U3243366KVUYPJ.Z2E3P23VKM.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1966000000\"}}},\"sku\":\"H4U3243366KVUYPJ\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"Z2E3P23VKM\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"No Upfront\"}},\"H4U3243366KVUYPJ.NQ3QZPMQV9\":{\"priceDimensions\":{\"H4U3243366KVUYPJ.NQ3QZPMQV9.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"H4U3243366KVUYPJ.NQ3QZPMQV9.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"4294\"}},\"H4U3243366KVUYPJ.NQ3QZPMQV9.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"H4U3243366KVUYPJ.NQ3QZPMQV9.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}}},\"sku\":\"H4U3243366KVUYPJ\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"NQ3QZPMQV9\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"All Upfront\"}}}},\"version\":\"20190116212448\",\"publicationDate\":\"2019-01-16T21:24:48Z\"}", + "{\"product\":{\"productFamily\":\"Compute Instance\",\"attributes\":{\"enhancedNetworkingSupported\":\"Yes\",\"memory\":\"16 GiB\",\"dedicatedEbsThroughput\":\"750 Mbps\",\"vcpu\":\"4\",\"capacitystatus\":\"Used\",\"locationType\":\"AWS Region\",\"storage\":\"EBS only\",\"instanceFamily\":\"General purpose\",\"operatingSystem\":\"RHEL\",\"physicalProcessor\":\"Intel Xeon E5-2676 v3 (Haswell)\",\"clockSpeed\":\"2.4 GHz\",\"ecu\":\"13\",\"networkPerformance\":\"High\",\"servicename\":\"Amazon Elastic Compute Cloud\",\"instanceType\":\"m4.xlarge\",\"tenancy\":\"Shared\",\"usagetype\":\"EU-BoxUsage:m4.xlarge\",\"normalizationSizeFactor\":\"8\",\"processorFeatures\":\"Intel AVX; Intel AVX2; Intel Turbo\",\"servicecode\":\"AmazonEC2\",\"licenseModel\":\"No License required\",\"currentGeneration\":\"Yes\",\"preInstalledSw\":\"NA\",\"location\":\"EU (Ireland)\",\"processorArchitecture\":\"64-bit\",\"operation\":\"RunInstances:0010\"},\"sku\":\"M99NCAWRZV658GRP\"},\"serviceCode\":\"AmazonEC2\",\"terms\":{\"OnDemand\":{\"M99NCAWRZV658GRP.JRTCKXETXF\":{\"priceDimensions\":{\"M99NCAWRZV658GRP.JRTCKXETXF.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"$0.282 per On Demand RHEL m4.xlarge Instance Hour\",\"appliesTo\":[],\"rateCode\":\"M99NCAWRZV658GRP.JRTCKXETXF.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.2820000000\"}}},\"sku\":\"M99NCAWRZV658GRP\",\"effectiveDate\":\"2019-01-01T00:00:00Z\",\"offerTermCode\":\"JRTCKXETXF\",\"termAttributes\":{}}},\"Reserved\":{\"M99NCAWRZV658GRP.7NE97W5U4E\":{\"priceDimensions\":{\"M99NCAWRZV658GRP.7NE97W5U4E.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"M99NCAWRZV658GRP.7NE97W5U4E.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.2339000000\"}}},\"sku\":\"M99NCAWRZV658GRP\",\"effectiveDate\":\"2017-10-31T23:59:59Z\",\"offerTermCode\":\"7NE97W5U4E\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"No Upfront\"}},\"M99NCAWRZV658GRP.CUZHX8X6JH\":{\"priceDimensions\":{\"M99NCAWRZV658GRP.CUZHX8X6JH.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"M99NCAWRZV658GRP.CUZHX8X6JH.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"725\"}},\"M99NCAWRZV658GRP.CUZHX8X6JH.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"M99NCAWRZV658GRP.CUZHX8X6JH.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1428000000\"}}},\"sku\":\"M99NCAWRZV658GRP\",\"effectiveDate\":\"2017-10-31T23:59:59Z\",\"offerTermCode\":\"CUZHX8X6JH\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"Partial Upfront\"}},\"M99NCAWRZV658GRP.4NA7Y494T4\":{\"priceDimensions\":{\"M99NCAWRZV658GRP.4NA7Y494T4.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"M99NCAWRZV658GRP.4NA7Y494T4.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.2112000000\"}}},\"sku\":\"M99NCAWRZV658GRP\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"4NA7Y494T4\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"No Upfront\"}},\"M99NCAWRZV658GRP.VJWZNREJX2\":{\"priceDimensions\":{\"M99NCAWRZV658GRP.VJWZNREJX2.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"M99NCAWRZV658GRP.VJWZNREJX2.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"1947\"}},\"M99NCAWRZV658GRP.VJWZNREJX2.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"M99NCAWRZV658GRP.VJWZNREJX2.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}}},\"sku\":\"M99NCAWRZV658GRP\",\"effectiveDate\":\"2017-10-31T23:59:59Z\",\"offerTermCode\":\"VJWZNREJX2\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"All Upfront\"}},\"M99NCAWRZV658GRP.HU7G6KETJZ\":{\"priceDimensions\":{\"M99NCAWRZV658GRP.HU7G6KETJZ.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"M99NCAWRZV658GRP.HU7G6KETJZ.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"631\"}},\"M99NCAWRZV658GRP.HU7G6KETJZ.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"M99NCAWRZV658GRP.HU7G6KETJZ.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1320000000\"}}},\"sku\":\"M99NCAWRZV658GRP\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"HU7G6KETJZ\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"Partial Upfront\"}},\"M99NCAWRZV658GRP.MZU6U2429S\":{\"priceDimensions\":{\"M99NCAWRZV658GRP.MZU6U2429S.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"M99NCAWRZV658GRP.MZU6U2429S.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"4539\"}},\"M99NCAWRZV658GRP.MZU6U2429S.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"M99NCAWRZV658GRP.MZU6U2429S.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}}},\"sku\":\"M99NCAWRZV658GRP\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"MZU6U2429S\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"All Upfront\"}},\"M99NCAWRZV658GRP.NQ3QZPMQV9\":{\"priceDimensions\":{\"M99NCAWRZV658GRP.NQ3QZPMQV9.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"M99NCAWRZV658GRP.NQ3QZPMQV9.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"4047\"}},\"M99NCAWRZV658GRP.NQ3QZPMQV9.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"M99NCAWRZV658GRP.NQ3QZPMQV9.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}}},\"sku\":\"M99NCAWRZV658GRP\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"NQ3QZPMQV9\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"All Upfront\"}},\"M99NCAWRZV658GRP.BPH4J8HBKS\":{\"priceDimensions\":{\"M99NCAWRZV658GRP.BPH4J8HBKS.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"M99NCAWRZV658GRP.BPH4J8HBKS.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1680000000\"}}},\"sku\":\"M99NCAWRZV658GRP\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"BPH4J8HBKS\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"No Upfront\"}},\"M99NCAWRZV658GRP.Z2E3P23VKM\":{\"priceDimensions\":{\"M99NCAWRZV658GRP.Z2E3P23VKM.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"M99NCAWRZV658GRP.Z2E3P23VKM.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1842000000\"}}},\"sku\":\"M99NCAWRZV658GRP\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"Z2E3P23VKM\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"No Upfront\"}},\"M99NCAWRZV658GRP.6QCMYABX3D\":{\"priceDimensions\":{\"M99NCAWRZV658GRP.6QCMYABX3D.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"USD 0.0 per Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"M99NCAWRZV658GRP.6QCMYABX3D.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}},\"M99NCAWRZV658GRP.6QCMYABX3D.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"M99NCAWRZV658GRP.6QCMYABX3D.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"1762\"}}},\"sku\":\"M99NCAWRZV658GRP\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"6QCMYABX3D\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"All Upfront\"}},\"M99NCAWRZV658GRP.38NPMPTW36\":{\"priceDimensions\":{\"M99NCAWRZV658GRP.38NPMPTW36.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"M99NCAWRZV658GRP.38NPMPTW36.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"1314\"}},\"M99NCAWRZV658GRP.38NPMPTW36.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"M99NCAWRZV658GRP.38NPMPTW36.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1100000000\"}}},\"sku\":\"M99NCAWRZV658GRP\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"38NPMPTW36\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"Partial Upfront\"}},\"M99NCAWRZV658GRP.R5XV2EPZQZ\":{\"priceDimensions\":{\"M99NCAWRZV658GRP.R5XV2EPZQZ.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Red Hat Enterprise Linux (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"M99NCAWRZV658GRP.R5XV2EPZQZ.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1175000000\"}},\"M99NCAWRZV658GRP.R5XV2EPZQZ.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"M99NCAWRZV658GRP.R5XV2EPZQZ.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"1511\"}}},\"sku\":\"M99NCAWRZV658GRP\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"R5XV2EPZQZ\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"Partial Upfront\"}}}},\"version\":\"20190116212448\",\"publicationDate\":\"2019-01-16T21:24:48Z\"}", + "{\"product\":{\"productFamily\":\"Compute Instance\",\"attributes\":{\"enhancedNetworkingSupported\":\"Yes\",\"memory\":\"16 GiB\",\"dedicatedEbsThroughput\":\"750 Mbps\",\"vcpu\":\"4\",\"capacitystatus\":\"Used\",\"locationType\":\"AWS Region\",\"storage\":\"EBS only\",\"instanceFamily\":\"General purpose\",\"operatingSystem\":\"Linux\",\"physicalProcessor\":\"Intel Xeon E5-2676 v3 (Haswell)\",\"clockSpeed\":\"2.4 GHz\",\"ecu\":\"13\",\"networkPerformance\":\"High\",\"servicename\":\"Amazon Elastic Compute Cloud\",\"instanceType\":\"m4.xlarge\",\"tenancy\":\"Dedicated\",\"usagetype\":\"EU-DedicatedUsage:m4.xlarge\",\"normalizationSizeFactor\":\"8\",\"processorFeatures\":\"Intel AVX; Intel AVX2; Intel Turbo\",\"servicecode\":\"AmazonEC2\",\"licenseModel\":\"No License required\",\"currentGeneration\":\"Yes\",\"preInstalledSw\":\"NA\",\"location\":\"EU (Ireland)\",\"processorArchitecture\":\"64-bit\",\"operation\":\"RunInstances\"},\"sku\":\"QN8P2TBTGRWK6CRK\"},\"serviceCode\":\"AmazonEC2\",\"terms\":{\"OnDemand\":{\"QN8P2TBTGRWK6CRK.JRTCKXETXF\":{\"priceDimensions\":{\"QN8P2TBTGRWK6CRK.JRTCKXETXF.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"$0.2442 per Dedicated Linux m4.xlarge Instance Hour\",\"appliesTo\":[],\"rateCode\":\"QN8P2TBTGRWK6CRK.JRTCKXETXF.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.2442000000\"}}},\"sku\":\"QN8P2TBTGRWK6CRK\",\"effectiveDate\":\"2019-01-01T00:00:00Z\",\"offerTermCode\":\"JRTCKXETXF\",\"termAttributes\":{}}},\"Reserved\":{\"QN8P2TBTGRWK6CRK.CUZHX8X6JH\":{\"priceDimensions\":{\"QN8P2TBTGRWK6CRK.CUZHX8X6JH.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"QN8P2TBTGRWK6CRK.CUZHX8X6JH.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"798\"}},\"QN8P2TBTGRWK6CRK.CUZHX8X6JH.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"QN8P2TBTGRWK6CRK.CUZHX8X6JH.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0911000000\"}}},\"sku\":\"QN8P2TBTGRWK6CRK\",\"effectiveDate\":\"2017-10-31T23:59:59Z\",\"offerTermCode\":\"CUZHX8X6JH\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"Partial Upfront\"}},\"QN8P2TBTGRWK6CRK.4NA7Y494T4\":{\"priceDimensions\":{\"QN8P2TBTGRWK6CRK.4NA7Y494T4.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"QN8P2TBTGRWK6CRK.4NA7Y494T4.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1663000000\"}}},\"sku\":\"QN8P2TBTGRWK6CRK\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"4NA7Y494T4\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"No Upfront\"}},\"QN8P2TBTGRWK6CRK.38NPMPTW36\":{\"priceDimensions\":{\"QN8P2TBTGRWK6CRK.38NPMPTW36.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"QN8P2TBTGRWK6CRK.38NPMPTW36.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"1445\"}},\"QN8P2TBTGRWK6CRK.38NPMPTW36.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"QN8P2TBTGRWK6CRK.38NPMPTW36.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0550000000\"}}},\"sku\":\"QN8P2TBTGRWK6CRK\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"38NPMPTW36\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"Partial Upfront\"}},\"QN8P2TBTGRWK6CRK.MZU6U2429S\":{\"priceDimensions\":{\"QN8P2TBTGRWK6CRK.MZU6U2429S.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"USD 0.0 per Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"QN8P2TBTGRWK6CRK.MZU6U2429S.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}},\"QN8P2TBTGRWK6CRK.MZU6U2429S.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"QN8P2TBTGRWK6CRK.MZU6U2429S.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"3258\"}}},\"sku\":\"QN8P2TBTGRWK6CRK\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"MZU6U2429S\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"All Upfront\"}},\"QN8P2TBTGRWK6CRK.BPH4J8HBKS\":{\"priceDimensions\":{\"QN8P2TBTGRWK6CRK.BPH4J8HBKS.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"QN8P2TBTGRWK6CRK.BPH4J8HBKS.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1188000000\"}}},\"sku\":\"QN8P2TBTGRWK6CRK\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"BPH4J8HBKS\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"No Upfront\"}},\"QN8P2TBTGRWK6CRK.7NE97W5U4E\":{\"priceDimensions\":{\"QN8P2TBTGRWK6CRK.7NE97W5U4E.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"QN8P2TBTGRWK6CRK.7NE97W5U4E.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1913000000\"}}},\"sku\":\"QN8P2TBTGRWK6CRK\",\"effectiveDate\":\"2017-10-31T23:59:59Z\",\"offerTermCode\":\"7NE97W5U4E\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"No Upfront\"}},\"QN8P2TBTGRWK6CRK.6QCMYABX3D\":{\"priceDimensions\":{\"QN8P2TBTGRWK6CRK.6QCMYABX3D.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"QN8P2TBTGRWK6CRK.6QCMYABX3D.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"1360\"}},\"QN8P2TBTGRWK6CRK.6QCMYABX3D.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"USD 0.0 per Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"QN8P2TBTGRWK6CRK.6QCMYABX3D.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}}},\"sku\":\"QN8P2TBTGRWK6CRK\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"6QCMYABX3D\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"All Upfront\"}},\"QN8P2TBTGRWK6CRK.VJWZNREJX2\":{\"priceDimensions\":{\"QN8P2TBTGRWK6CRK.VJWZNREJX2.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"QN8P2TBTGRWK6CRK.VJWZNREJX2.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"1564\"}},\"QN8P2TBTGRWK6CRK.VJWZNREJX2.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"QN8P2TBTGRWK6CRK.VJWZNREJX2.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}}},\"sku\":\"QN8P2TBTGRWK6CRK\",\"effectiveDate\":\"2017-10-31T23:59:59Z\",\"offerTermCode\":\"VJWZNREJX2\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"All Upfront\"}},\"QN8P2TBTGRWK6CRK.R5XV2EPZQZ\":{\"priceDimensions\":{\"QN8P2TBTGRWK6CRK.R5XV2EPZQZ.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"QN8P2TBTGRWK6CRK.R5XV2EPZQZ.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"1662\"}},\"QN8P2TBTGRWK6CRK.R5XV2EPZQZ.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"QN8P2TBTGRWK6CRK.R5XV2EPZQZ.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0633000000\"}}},\"sku\":\"QN8P2TBTGRWK6CRK\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"R5XV2EPZQZ\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"Partial Upfront\"}},\"QN8P2TBTGRWK6CRK.HU7G6KETJZ\":{\"priceDimensions\":{\"QN8P2TBTGRWK6CRK.HU7G6KETJZ.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"QN8P2TBTGRWK6CRK.HU7G6KETJZ.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"694\"}},\"QN8P2TBTGRWK6CRK.HU7G6KETJZ.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"QN8P2TBTGRWK6CRK.HU7G6KETJZ.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0792000000\"}}},\"sku\":\"QN8P2TBTGRWK6CRK\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"HU7G6KETJZ\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"Partial Upfront\"}},\"QN8P2TBTGRWK6CRK.NQ3QZPMQV9\":{\"priceDimensions\":{\"QN8P2TBTGRWK6CRK.NQ3QZPMQV9.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"QN8P2TBTGRWK6CRK.NQ3QZPMQV9.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"2717\"}},\"QN8P2TBTGRWK6CRK.NQ3QZPMQV9.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"USD 0.0 per Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"QN8P2TBTGRWK6CRK.NQ3QZPMQV9.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}}},\"sku\":\"QN8P2TBTGRWK6CRK\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"NQ3QZPMQV9\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"All Upfront\"}},\"QN8P2TBTGRWK6CRK.Z2E3P23VKM\":{\"priceDimensions\":{\"QN8P2TBTGRWK6CRK.Z2E3P23VKM.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Linux/UNIX (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"QN8P2TBTGRWK6CRK.Z2E3P23VKM.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1366000000\"}}},\"sku\":\"QN8P2TBTGRWK6CRK\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"Z2E3P23VKM\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"No Upfront\"}}}},\"version\":\"20190116212448\",\"publicationDate\":\"2019-01-16T21:24:48Z\"}", + "{\"product\":{\"productFamily\":\"Compute Instance\",\"attributes\":{\"enhancedNetworkingSupported\":\"Yes\",\"memory\":\"16 GiB\",\"dedicatedEbsThroughput\":\"750 Mbps\",\"vcpu\":\"4\",\"capacitystatus\":\"Used\",\"locationType\":\"AWS Region\",\"storage\":\"EBS only\",\"instanceFamily\":\"General purpose\",\"operatingSystem\":\"Windows\",\"physicalProcessor\":\"Intel Xeon E5-2676 v3 (Haswell)\",\"clockSpeed\":\"2.4 GHz\",\"ecu\":\"13\",\"networkPerformance\":\"High\",\"servicename\":\"Amazon Elastic Compute Cloud\",\"instanceType\":\"m4.xlarge\",\"tenancy\":\"Shared\",\"usagetype\":\"EU-BoxUsage:m4.xlarge\",\"normalizationSizeFactor\":\"8\",\"processorFeatures\":\"Intel AVX; Intel AVX2; Intel Turbo\",\"servicecode\":\"AmazonEC2\",\"licenseModel\":\"No License required\",\"currentGeneration\":\"Yes\",\"preInstalledSw\":\"NA\",\"location\":\"EU (Ireland)\",\"processorArchitecture\":\"64-bit\",\"operation\":\"RunInstances:0002\"},\"sku\":\"SB23J89QM4VUQ5AT\"},\"serviceCode\":\"AmazonEC2\",\"terms\":{\"OnDemand\":{\"SB23J89QM4VUQ5AT.JRTCKXETXF\":{\"priceDimensions\":{\"SB23J89QM4VUQ5AT.JRTCKXETXF.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"$0.406 per On Demand Windows m4.xlarge Instance Hour\",\"appliesTo\":[],\"rateCode\":\"SB23J89QM4VUQ5AT.JRTCKXETXF.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.4060000000\"}}},\"sku\":\"SB23J89QM4VUQ5AT\",\"effectiveDate\":\"2019-01-01T00:00:00Z\",\"offerTermCode\":\"JRTCKXETXF\",\"termAttributes\":{}}},\"Reserved\":{\"SB23J89QM4VUQ5AT.6QCMYABX3D\":{\"priceDimensions\":{\"SB23J89QM4VUQ5AT.6QCMYABX3D.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"USD 0.0 per Windows (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"SB23J89QM4VUQ5AT.6QCMYABX3D.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}},\"SB23J89QM4VUQ5AT.6QCMYABX3D.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"SB23J89QM4VUQ5AT.6QCMYABX3D.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"2848\"}}},\"sku\":\"SB23J89QM4VUQ5AT\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"6QCMYABX3D\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"All Upfront\"}},\"SB23J89QM4VUQ5AT.VJWZNREJX2\":{\"priceDimensions\":{\"SB23J89QM4VUQ5AT.VJWZNREJX2.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"SB23J89QM4VUQ5AT.VJWZNREJX2.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"3033\"}},\"SB23J89QM4VUQ5AT.VJWZNREJX2.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Windows (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"SB23J89QM4VUQ5AT.VJWZNREJX2.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}}},\"sku\":\"SB23J89QM4VUQ5AT\",\"effectiveDate\":\"2017-10-31T23:59:59Z\",\"offerTermCode\":\"VJWZNREJX2\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"All Upfront\"}},\"SB23J89QM4VUQ5AT.HU7G6KETJZ\":{\"priceDimensions\":{\"SB23J89QM4VUQ5AT.HU7G6KETJZ.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Windows (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"SB23J89QM4VUQ5AT.HU7G6KETJZ.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1640000000\"}},\"SB23J89QM4VUQ5AT.HU7G6KETJZ.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"SB23J89QM4VUQ5AT.HU7G6KETJZ.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"1437\"}}},\"sku\":\"SB23J89QM4VUQ5AT\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"HU7G6KETJZ\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"Partial Upfront\"}},\"SB23J89QM4VUQ5AT.4NA7Y494T4\":{\"priceDimensions\":{\"SB23J89QM4VUQ5AT.4NA7Y494T4.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Windows (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"SB23J89QM4VUQ5AT.4NA7Y494T4.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.3352000000\"}}},\"sku\":\"SB23J89QM4VUQ5AT\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"4NA7Y494T4\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"No Upfront\"}},\"SB23J89QM4VUQ5AT.38NPMPTW36\":{\"priceDimensions\":{\"SB23J89QM4VUQ5AT.38NPMPTW36.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"SB23J89QM4VUQ5AT.38NPMPTW36.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"3732\"}},\"SB23J89QM4VUQ5AT.38NPMPTW36.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Windows (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"SB23J89QM4VUQ5AT.38NPMPTW36.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1420000000\"}}},\"sku\":\"SB23J89QM4VUQ5AT\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"38NPMPTW36\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"Partial Upfront\"}},\"SB23J89QM4VUQ5AT.MZU6U2429S\":{\"priceDimensions\":{\"SB23J89QM4VUQ5AT.MZU6U2429S.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"SB23J89QM4VUQ5AT.MZU6U2429S.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"7797\"}},\"SB23J89QM4VUQ5AT.MZU6U2429S.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"USD 0.0 per Windows (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"SB23J89QM4VUQ5AT.MZU6U2429S.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}}},\"sku\":\"SB23J89QM4VUQ5AT\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"MZU6U2429S\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"All Upfront\"}},\"SB23J89QM4VUQ5AT.BPH4J8HBKS\":{\"priceDimensions\":{\"SB23J89QM4VUQ5AT.BPH4J8HBKS.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Windows (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"SB23J89QM4VUQ5AT.BPH4J8HBKS.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.2920000000\"}}},\"sku\":\"SB23J89QM4VUQ5AT\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"BPH4J8HBKS\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"No Upfront\"}},\"SB23J89QM4VUQ5AT.NQ3QZPMQV9\":{\"priceDimensions\":{\"SB23J89QM4VUQ5AT.NQ3QZPMQV9.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"SB23J89QM4VUQ5AT.NQ3QZPMQV9.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"7306\"}},\"SB23J89QM4VUQ5AT.NQ3QZPMQV9.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"USD 0.0 per Windows (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"SB23J89QM4VUQ5AT.NQ3QZPMQV9.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}}},\"sku\":\"SB23J89QM4VUQ5AT\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"NQ3QZPMQV9\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"standard\",\"PurchaseOption\":\"All Upfront\"}},\"SB23J89QM4VUQ5AT.CUZHX8X6JH\":{\"priceDimensions\":{\"SB23J89QM4VUQ5AT.CUZHX8X6JH.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Windows (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"SB23J89QM4VUQ5AT.CUZHX8X6JH.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1748000000\"}},\"SB23J89QM4VUQ5AT.CUZHX8X6JH.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"SB23J89QM4VUQ5AT.CUZHX8X6JH.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"1531\"}}},\"sku\":\"SB23J89QM4VUQ5AT\",\"effectiveDate\":\"2017-10-31T23:59:59Z\",\"offerTermCode\":\"CUZHX8X6JH\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"Partial Upfront\"}},\"SB23J89QM4VUQ5AT.Z2E3P23VKM\":{\"priceDimensions\":{\"SB23J89QM4VUQ5AT.Z2E3P23VKM.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Windows (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"SB23J89QM4VUQ5AT.Z2E3P23VKM.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.3082000000\"}}},\"sku\":\"SB23J89QM4VUQ5AT\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"Z2E3P23VKM\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"No Upfront\"}},\"SB23J89QM4VUQ5AT.7NE97W5U4E\":{\"priceDimensions\":{\"SB23J89QM4VUQ5AT.7NE97W5U4E.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Windows (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"SB23J89QM4VUQ5AT.7NE97W5U4E.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.3579000000\"}}},\"sku\":\"SB23J89QM4VUQ5AT\",\"effectiveDate\":\"2017-10-31T23:59:59Z\",\"offerTermCode\":\"7NE97W5U4E\",\"termAttributes\":{\"LeaseContractLength\":\"1yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"No Upfront\"}},\"SB23J89QM4VUQ5AT.R5XV2EPZQZ\":{\"priceDimensions\":{\"SB23J89QM4VUQ5AT.R5XV2EPZQZ.2TG2D8R56U\":{\"unit\":\"Quantity\",\"description\":\"Upfront Fee\",\"appliesTo\":[],\"rateCode\":\"SB23J89QM4VUQ5AT.R5XV2EPZQZ.2TG2D8R56U\",\"pricePerUnit\":{\"USD\":\"3929\"}},\"SB23J89QM4VUQ5AT.R5XV2EPZQZ.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"Windows (Amazon VPC), m4.xlarge reserved instance applied\",\"appliesTo\":[],\"rateCode\":\"SB23J89QM4VUQ5AT.R5XV2EPZQZ.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.1495000000\"}}},\"sku\":\"SB23J89QM4VUQ5AT\",\"effectiveDate\":\"2017-04-30T23:59:59Z\",\"offerTermCode\":\"R5XV2EPZQZ\",\"termAttributes\":{\"LeaseContractLength\":\"3yr\",\"OfferingClass\":\"convertible\",\"PurchaseOption\":\"Partial Upfront\"}}}},\"version\":\"20190116212448\",\"publicationDate\":\"2019-01-16T21:24:48Z\"}", + "{\"product\":{\"productFamily\":\"Compute Instance\",\"attributes\":{\"enhancedNetworkingSupported\":\"Yes\",\"memory\":\"16 GiB\",\"dedicatedEbsThroughput\":\"750 Mbps\",\"vcpu\":\"4\",\"capacitystatus\":\"Used\",\"locationType\":\"AWS Region\",\"storage\":\"EBS only\",\"instanceFamily\":\"General purpose\",\"operatingSystem\":\"RHEL\",\"physicalProcessor\":\"Intel Xeon E5-2676 v3 (Haswell)\",\"clockSpeed\":\"2.4 GHz\",\"ecu\":\"13\",\"networkPerformance\":\"High\",\"servicename\":\"Amazon Elastic Compute Cloud\",\"instanceType\":\"m4.xlarge\",\"tenancy\":\"Host\",\"usagetype\":\"EU-HostBoxUsage:m4.xlarge\",\"normalizationSizeFactor\":\"8\",\"processorFeatures\":\"Intel AVX; Intel AVX2; Intel Turbo\",\"servicecode\":\"AmazonEC2\",\"licenseModel\":\"No License required\",\"currentGeneration\":\"Yes\",\"preInstalledSw\":\"NA\",\"location\":\"EU (Ireland)\",\"processorArchitecture\":\"64-bit\",\"operation\":\"RunInstances:0010\"},\"sku\":\"TD747NNS7HFVAC78\"},\"serviceCode\":\"AmazonEC2\",\"terms\":{\"OnDemand\":{\"TD747NNS7HFVAC78.JRTCKXETXF\":{\"priceDimensions\":{\"TD747NNS7HFVAC78.JRTCKXETXF.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"$0.000 per RHEL m4.xlarge Dedicated Host Instance hour\",\"appliesTo\":[],\"rateCode\":\"TD747NNS7HFVAC78.JRTCKXETXF.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}}},\"sku\":\"TD747NNS7HFVAC78\",\"effectiveDate\":\"2019-01-01T00:00:00Z\",\"offerTermCode\":\"JRTCKXETXF\",\"termAttributes\":{}}}},\"version\":\"20190116212448\",\"publicationDate\":\"2019-01-16T21:24:48Z\"}", + "{\"product\":{\"productFamily\":\"Compute Instance\",\"attributes\":{\"enhancedNetworkingSupported\":\"Yes\",\"memory\":\"16 GiB\",\"dedicatedEbsThroughput\":\"750 Mbps\",\"vcpu\":\"4\",\"capacitystatus\":\"Used\",\"locationType\":\"AWS Region\",\"storage\":\"EBS only\",\"instanceFamily\":\"General purpose\",\"operatingSystem\":\"Windows\",\"physicalProcessor\":\"Intel Xeon E5-2676 v3 (Haswell)\",\"clockSpeed\":\"2.4 GHz\",\"ecu\":\"13\",\"networkPerformance\":\"High\",\"servicename\":\"Amazon Elastic Compute Cloud\",\"instanceType\":\"m4.xlarge\",\"tenancy\":\"Host\",\"usagetype\":\"EU-HostBoxUsage:m4.xlarge\",\"normalizationSizeFactor\":\"8\",\"processorFeatures\":\"Intel AVX; Intel AVX2; Intel Turbo\",\"servicecode\":\"AmazonEC2\",\"licenseModel\":\"Bring your own license\",\"currentGeneration\":\"Yes\",\"preInstalledSw\":\"NA\",\"location\":\"EU (Ireland)\",\"processorArchitecture\":\"64-bit\",\"operation\":\"RunInstances:0800\"},\"sku\":\"VQP4ARZ9PSE77WTX\"},\"serviceCode\":\"AmazonEC2\",\"terms\":{\"OnDemand\":{\"VQP4ARZ9PSE77WTX.JRTCKXETXF\":{\"priceDimensions\":{\"VQP4ARZ9PSE77WTX.JRTCKXETXF.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"$0.000 per Windows BYOL m4.xlarge Dedicated Host Instance hour\",\"appliesTo\":[],\"rateCode\":\"VQP4ARZ9PSE77WTX.JRTCKXETXF.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}}},\"sku\":\"VQP4ARZ9PSE77WTX\",\"effectiveDate\":\"2019-01-01T00:00:00Z\",\"offerTermCode\":\"JRTCKXETXF\",\"termAttributes\":{}}}},\"version\":\"20190116212448\",\"publicationDate\":\"2019-01-16T21:24:48Z\"}", + "{\"product\":{\"productFamily\":\"Compute Instance\",\"attributes\":{\"enhancedNetworkingSupported\":\"Yes\",\"memory\":\"16 GiB\",\"dedicatedEbsThroughput\":\"750 Mbps\",\"vcpu\":\"4\",\"capacitystatus\":\"Used\",\"locationType\":\"AWS Region\",\"storage\":\"EBS only\",\"instanceFamily\":\"General purpose\",\"operatingSystem\":\"SUSE\",\"physicalProcessor\":\"Intel Xeon E5-2676 v3 (Haswell)\",\"clockSpeed\":\"2.4 GHz\",\"ecu\":\"13\",\"networkPerformance\":\"High\",\"servicename\":\"Amazon Elastic Compute Cloud\",\"instanceType\":\"m4.xlarge\",\"tenancy\":\"Host\",\"usagetype\":\"EU-HostBoxUsage:m4.xlarge\",\"normalizationSizeFactor\":\"8\",\"processorFeatures\":\"Intel AVX; Intel AVX2; Intel Turbo\",\"servicecode\":\"AmazonEC2\",\"licenseModel\":\"No License required\",\"currentGeneration\":\"Yes\",\"preInstalledSw\":\"NA\",\"location\":\"EU (Ireland)\",\"processorArchitecture\":\"64-bit\",\"operation\":\"RunInstances:000g\"},\"sku\":\"XKU4NDDFXPHHTKAN\"},\"serviceCode\":\"AmazonEC2\",\"terms\":{\"OnDemand\":{\"XKU4NDDFXPHHTKAN.JRTCKXETXF\":{\"priceDimensions\":{\"XKU4NDDFXPHHTKAN.JRTCKXETXF.6YS6EN2CT7\":{\"unit\":\"Hrs\",\"endRange\":\"Inf\",\"description\":\"$0.000 per SUSE m4.xlarge Dedicated Host Instance hour\",\"appliesTo\":[],\"rateCode\":\"XKU4NDDFXPHHTKAN.JRTCKXETXF.6YS6EN2CT7\",\"beginRange\":\"0\",\"pricePerUnit\":{\"USD\":\"0.0000000000\"}}},\"sku\":\"XKU4NDDFXPHHTKAN\",\"effectiveDate\":\"2019-01-01T00:00:00Z\",\"offerTermCode\":\"JRTCKXETXF\",\"termAttributes\":{}}}},\"version\":\"20190116212448\",\"publicationDate\":\"2019-01-16T21:24:48Z\"}" + ], + "FormatVersion": "aws_v1" +} diff --git a/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go b/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go index d790188f41bb..c69224fa812a 100644 --- a/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go +++ b/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go @@ -23,7 +23,9 @@ import ( "regexp" "strings" + awssdk "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/session" + goerrors "github.com/pkg/errors" apiv1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/api/resource" "k8s.io/autoscaler/cluster-autoscaler/cloudprovider" @@ -103,7 +105,16 @@ func (aws *awsCloudProvider) NodeGroupForNode(node *apiv1.Node) (cloudprovider.N // Pricing returns pricing model for this cloud provider or error if not available. func (aws *awsCloudProvider) Pricing() (cloudprovider.PricingModel, errors.AutoscalerError) { - return NewPriceModel(aws.awsManager, price.NewDescriptor(session.New())), nil + sess, err := session.NewSession(&awssdk.Config{ + Region: awssdk.String("us-east-1"), + }) + + if err != nil { + err = goerrors.Wrap(err, "could not create AWS session") + return nil, errors.ToAutoscalerError(errors.InternalError, err) + } + + return NewPriceModel(aws.awsManager, price.NewDescriptor(sess)), nil } // GetAvailableMachineTypes get all machine types that can be requested from the cloud provider. diff --git a/cluster-autoscaler/cloudprovider/aws/price/descriptor.go b/cluster-autoscaler/cloudprovider/aws/price/descriptor.go index a927e42a5d9f..890cd20ac8e0 100644 --- a/cluster-autoscaler/cloudprovider/aws/price/descriptor.go +++ b/cluster-autoscaler/cloudprovider/aws/price/descriptor.go @@ -17,11 +17,10 @@ limitations under the License. package price import ( - "net/http" - "github.com/aws/aws-sdk-go/aws/session" "github.com/aws/aws-sdk-go/service/autoscaling" "github.com/aws/aws-sdk-go/service/ec2" + "github.com/aws/aws-sdk-go/service/pricing" "k8s.io/autoscaler/cluster-autoscaler/cloudprovider/aws/api" "k8s.io/autoscaler/cluster-autoscaler/cloudprovider/aws/price/ondemand" "k8s.io/autoscaler/cluster-autoscaler/cloudprovider/aws/price/spot" @@ -47,7 +46,7 @@ func NewDescriptor(s *session.Session) *shapeDescriptor { autoscaling: api.NewEC2AutoscalingService(as), launchConfiguration: api.NewEC2LaunchConfigurationService(as), spot: spot.NewDescriptor(api.NewEC2SpotPriceService(ec2.New(s))), - onDemand: ondemand.NewDescriptor(api.NewEC2InstanceInfoService(http.DefaultClient)), + onDemand: ondemand.NewDescriptor(api.NewEC2InstanceInfoService(pricing.New(s))), } } diff --git a/cluster-autoscaler/cloudprovider/aws/price/spot/descriptor.go b/cluster-autoscaler/cloudprovider/aws/price/spot/descriptor.go index 150bb3b0351a..321557a78344 100644 --- a/cluster-autoscaler/cloudprovider/aws/price/spot/descriptor.go +++ b/cluster-autoscaler/cloudprovider/aws/price/spot/descriptor.go @@ -21,8 +21,8 @@ import ( "strings" "time" - "github.com/golang/glog" "k8s.io/autoscaler/cluster-autoscaler/cloudprovider/aws/api" + "k8s.io/klog" ) const ( @@ -136,7 +136,7 @@ func (d *descriptor) maxSpotPriceForDuration(instanceType string, availabilityZo if maxPrice == 0.0 { item, _ := history.LastItem() - glog.Warningf( + klog.Warningf( "no spot price information newer than %s, using last known price of %f which is %s old", lookupWindow, item.Price, @@ -154,7 +154,7 @@ func (d *descriptor) spotPriceHistory(instanceType, availabilityZone string) (*H return nil, fmt.Errorf("spot price sync failed: %v", err) } } - glog.V(5).Infof("price history successfully synchronized for %s in AZ %s", instanceType, availabilityZone) + klog.V(5).Infof("price history successfully synchronized for %s in AZ %s", instanceType, availabilityZone) instanceZone := instanceTypeInZone{instanceType: instanceType, availabilityZone: availabilityZone} return d.bucket[instanceZone], nil diff --git a/cluster-autoscaler/cloudprovider/aws/price/spot/history.go b/cluster-autoscaler/cloudprovider/aws/price/spot/history.go index edf51e64265d..7402678381d9 100644 --- a/cluster-autoscaler/cloudprovider/aws/price/spot/history.go +++ b/cluster-autoscaler/cloudprovider/aws/price/spot/history.go @@ -23,8 +23,8 @@ import ( "errors" - "github.com/golang/glog" "k8s.io/autoscaler/cluster-autoscaler/cloudprovider/aws/api" + "k8s.io/klog" ) // ErrEmptySpotPriceHistory implements the error interface @@ -64,7 +64,7 @@ func (h *History) Len() int { func (h *History) Housekeep() { lastItem, err := h.LastItem() if err != nil { - glog.Warningf("no last item found, price history is empty - exit housekeeping") + klog.Warningf("no last item found, price history is empty - exit housekeeping") return } @@ -85,7 +85,7 @@ func (h *History) Housekeep() { if len(c) == 0 { c = append(c, lastItem) - glog.V(5).Infof("cleaned history was empty, last price has been inserted back - age: %v", time.Now().Sub(lastItem.Timestamp)) + klog.V(5).Infof("cleaned history was empty, last price has been inserted back - age: %v", time.Now().Sub(lastItem.Timestamp)) } sort.Sort(c) diff --git a/cluster-autoscaler/expander/price/price.go b/cluster-autoscaler/expander/price/price.go index c8ba8a869e12..c59bd2847884 100644 --- a/cluster-autoscaler/expander/price/price.go +++ b/cluster-autoscaler/expander/price/price.go @@ -151,7 +151,8 @@ nextoption: optionScore *= notExistCoeficient } - debug := fmt.Sprintf("all_nodes_price=%f pods_price=%f stabilized_ratio=%f unfitness=%f suppressed=%f final_score=%f", + debug := fmt.Sprintf("node_price=%f all_nodes_price=%f pods_price=%f stabilized_ratio=%f unfitness=%f suppressed=%f final_score=%f", + nodePrice, totalNodePrice, totalPodPrice, priceSubScore, diff --git a/cluster-autoscaler/kubernetes.sync b/cluster-autoscaler/kubernetes.sync index a7f2bfa964be..cdfebd00cdab 100644 --- a/cluster-autoscaler/kubernetes.sync +++ b/cluster-autoscaler/kubernetes.sync @@ -1,5 +1,7 @@ -commit 416974b8346bb1c219efe871c18a9f29de4fad2d (origin/master, origin/HEAD) -Author: Anago GCB -Date: Mon Nov 26 14:16:47 2018 +0000 +Merge: abc71e373f d4ff786eb0 +Author: Kubernetes Prow Robot +Date: Tue Jan 8 23:56:01 2019 -0800 - Update CHANGELOG-1.12.md for v1.12.3. + Merge pull request #72668 from ixdy/automated-cherry-pick-of-#72173-#72218-release-1.13 + + Automated cherry pick of #72173: make integration/verify script look for k8s under GOPATH #72218: Clean up artifacts variables in hack scripts diff --git a/cluster-autoscaler/vendor/github.com/aws/aws-sdk-go/service/pricing/api.go b/cluster-autoscaler/vendor/github.com/aws/aws-sdk-go/service/pricing/api.go new file mode 100644 index 000000000000..f5be2db265a1 --- /dev/null +++ b/cluster-autoscaler/vendor/github.com/aws/aws-sdk-go/service/pricing/api.go @@ -0,0 +1,955 @@ +// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. + +package pricing + +import ( + "fmt" + + "github.com/aws/aws-sdk-go/aws" + "github.com/aws/aws-sdk-go/aws/awsutil" + "github.com/aws/aws-sdk-go/aws/request" +) + +const opDescribeServices = "DescribeServices" + +// DescribeServicesRequest generates a "aws/request.Request" representing the +// client's request for the DescribeServices operation. The "output" return +// value will be populated with the request's response once the request completes +// successfuly. +// +// Use "Send" method on the returned Request to send the API call to the service. +// the "output" return value is not valid until after Send returns without error. +// +// See DescribeServices for more information on using the DescribeServices +// API call, and error handling. +// +// This method is useful when you want to inject custom logic or configuration +// into the SDK's request lifecycle. Such as custom headers, or retry logic. +// +// +// // Example sending a request using the DescribeServicesRequest method. +// req, resp := client.DescribeServicesRequest(params) +// +// err := req.Send() +// if err == nil { // resp is now filled +// fmt.Println(resp) +// } +// +// See also, https://docs.aws.amazon.com/goto/WebAPI/pricing-2017-10-15/DescribeServices +func (c *Pricing) DescribeServicesRequest(input *DescribeServicesInput) (req *request.Request, output *DescribeServicesOutput) { + op := &request.Operation{ + Name: opDescribeServices, + HTTPMethod: "POST", + HTTPPath: "/", + Paginator: &request.Paginator{ + InputTokens: []string{"NextToken"}, + OutputTokens: []string{"NextToken"}, + LimitToken: "MaxResults", + TruncationToken: "", + }, + } + + if input == nil { + input = &DescribeServicesInput{} + } + + output = &DescribeServicesOutput{} + req = c.newRequest(op, input, output) + return +} + +// DescribeServices API operation for AWS Price List Service. +// +// Returns the metadata for one service or a list of the metadata for all services. +// Use this without a service code to get the service codes for all services. +// Use it with a service code, such as AmazonEC2, to get information specific +// to that service, such as the attribute names available for that service. +// For example, some of the attribute names available for EC2 are volumeType, +// maxIopsVolume, operation, locationType, and instanceCapacity10xlarge. +// +// Returns awserr.Error for service API and SDK errors. Use runtime type assertions +// with awserr.Error's Code and Message methods to get detailed information about +// the error. +// +// See the AWS API reference guide for AWS Price List Service's +// API operation DescribeServices for usage and error information. +// +// Returned Error Codes: +// * ErrCodeInternalErrorException "InternalErrorException" +// An error on the server occurred during the processing of your request. Try +// again later. +// +// * ErrCodeInvalidParameterException "InvalidParameterException" +// One or more parameters had an invalid value. +// +// * ErrCodeNotFoundException "NotFoundException" +// The requested resource can't be found. +// +// * ErrCodeInvalidNextTokenException "InvalidNextTokenException" +// The pagination token is invalid. Try again without a pagination token. +// +// * ErrCodeExpiredNextTokenException "ExpiredNextTokenException" +// The pagination token expired. Try again without a pagination token. +// +// See also, https://docs.aws.amazon.com/goto/WebAPI/pricing-2017-10-15/DescribeServices +func (c *Pricing) DescribeServices(input *DescribeServicesInput) (*DescribeServicesOutput, error) { + req, out := c.DescribeServicesRequest(input) + return out, req.Send() +} + +// DescribeServicesWithContext is the same as DescribeServices with the addition of +// the ability to pass a context and additional request options. +// +// See DescribeServices for details on how to use this API operation. +// +// The context must be non-nil and will be used for request cancellation. If +// the context is nil a panic will occur. In the future the SDK may create +// sub-contexts for http.Requests. See https://golang.org/pkg/context/ +// for more information on using Contexts. +func (c *Pricing) DescribeServicesWithContext(ctx aws.Context, input *DescribeServicesInput, opts ...request.Option) (*DescribeServicesOutput, error) { + req, out := c.DescribeServicesRequest(input) + req.SetContext(ctx) + req.ApplyOptions(opts...) + return out, req.Send() +} + +// DescribeServicesPages iterates over the pages of a DescribeServices operation, +// calling the "fn" function with the response data for each page. To stop +// iterating, return false from the fn function. +// +// See DescribeServices method for more information on how to use this operation. +// +// Note: This operation can generate multiple requests to a service. +// +// // Example iterating over at most 3 pages of a DescribeServices operation. +// pageNum := 0 +// err := client.DescribeServicesPages(params, +// func(page *DescribeServicesOutput, lastPage bool) bool { +// pageNum++ +// fmt.Println(page) +// return pageNum <= 3 +// }) +// +func (c *Pricing) DescribeServicesPages(input *DescribeServicesInput, fn func(*DescribeServicesOutput, bool) bool) error { + return c.DescribeServicesPagesWithContext(aws.BackgroundContext(), input, fn) +} + +// DescribeServicesPagesWithContext same as DescribeServicesPages except +// it takes a Context and allows setting request options on the pages. +// +// The context must be non-nil and will be used for request cancellation. If +// the context is nil a panic will occur. In the future the SDK may create +// sub-contexts for http.Requests. See https://golang.org/pkg/context/ +// for more information on using Contexts. +func (c *Pricing) DescribeServicesPagesWithContext(ctx aws.Context, input *DescribeServicesInput, fn func(*DescribeServicesOutput, bool) bool, opts ...request.Option) error { + p := request.Pagination{ + NewRequest: func() (*request.Request, error) { + var inCpy *DescribeServicesInput + if input != nil { + tmp := *input + inCpy = &tmp + } + req, _ := c.DescribeServicesRequest(inCpy) + req.SetContext(ctx) + req.ApplyOptions(opts...) + return req, nil + }, + } + + cont := true + for p.Next() && cont { + cont = fn(p.Page().(*DescribeServicesOutput), !p.HasNextPage()) + } + return p.Err() +} + +const opGetAttributeValues = "GetAttributeValues" + +// GetAttributeValuesRequest generates a "aws/request.Request" representing the +// client's request for the GetAttributeValues operation. The "output" return +// value will be populated with the request's response once the request completes +// successfuly. +// +// Use "Send" method on the returned Request to send the API call to the service. +// the "output" return value is not valid until after Send returns without error. +// +// See GetAttributeValues for more information on using the GetAttributeValues +// API call, and error handling. +// +// This method is useful when you want to inject custom logic or configuration +// into the SDK's request lifecycle. Such as custom headers, or retry logic. +// +// +// // Example sending a request using the GetAttributeValuesRequest method. +// req, resp := client.GetAttributeValuesRequest(params) +// +// err := req.Send() +// if err == nil { // resp is now filled +// fmt.Println(resp) +// } +// +// See also, https://docs.aws.amazon.com/goto/WebAPI/pricing-2017-10-15/GetAttributeValues +func (c *Pricing) GetAttributeValuesRequest(input *GetAttributeValuesInput) (req *request.Request, output *GetAttributeValuesOutput) { + op := &request.Operation{ + Name: opGetAttributeValues, + HTTPMethod: "POST", + HTTPPath: "/", + Paginator: &request.Paginator{ + InputTokens: []string{"NextToken"}, + OutputTokens: []string{"NextToken"}, + LimitToken: "MaxResults", + TruncationToken: "", + }, + } + + if input == nil { + input = &GetAttributeValuesInput{} + } + + output = &GetAttributeValuesOutput{} + req = c.newRequest(op, input, output) + return +} + +// GetAttributeValues API operation for AWS Price List Service. +// +// Returns a list of attribute values. Attibutes are similar to the details +// in a Price List API offer file. For a list of available attributes, see Offer +// File Definitions (http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/reading-an-offer.html#pps-defs) +// in the AWS Billing and Cost Management User Guide (http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/billing-what-is.html). +// +// Returns awserr.Error for service API and SDK errors. Use runtime type assertions +// with awserr.Error's Code and Message methods to get detailed information about +// the error. +// +// See the AWS API reference guide for AWS Price List Service's +// API operation GetAttributeValues for usage and error information. +// +// Returned Error Codes: +// * ErrCodeInternalErrorException "InternalErrorException" +// An error on the server occurred during the processing of your request. Try +// again later. +// +// * ErrCodeInvalidParameterException "InvalidParameterException" +// One or more parameters had an invalid value. +// +// * ErrCodeNotFoundException "NotFoundException" +// The requested resource can't be found. +// +// * ErrCodeInvalidNextTokenException "InvalidNextTokenException" +// The pagination token is invalid. Try again without a pagination token. +// +// * ErrCodeExpiredNextTokenException "ExpiredNextTokenException" +// The pagination token expired. Try again without a pagination token. +// +// See also, https://docs.aws.amazon.com/goto/WebAPI/pricing-2017-10-15/GetAttributeValues +func (c *Pricing) GetAttributeValues(input *GetAttributeValuesInput) (*GetAttributeValuesOutput, error) { + req, out := c.GetAttributeValuesRequest(input) + return out, req.Send() +} + +// GetAttributeValuesWithContext is the same as GetAttributeValues with the addition of +// the ability to pass a context and additional request options. +// +// See GetAttributeValues for details on how to use this API operation. +// +// The context must be non-nil and will be used for request cancellation. If +// the context is nil a panic will occur. In the future the SDK may create +// sub-contexts for http.Requests. See https://golang.org/pkg/context/ +// for more information on using Contexts. +func (c *Pricing) GetAttributeValuesWithContext(ctx aws.Context, input *GetAttributeValuesInput, opts ...request.Option) (*GetAttributeValuesOutput, error) { + req, out := c.GetAttributeValuesRequest(input) + req.SetContext(ctx) + req.ApplyOptions(opts...) + return out, req.Send() +} + +// GetAttributeValuesPages iterates over the pages of a GetAttributeValues operation, +// calling the "fn" function with the response data for each page. To stop +// iterating, return false from the fn function. +// +// See GetAttributeValues method for more information on how to use this operation. +// +// Note: This operation can generate multiple requests to a service. +// +// // Example iterating over at most 3 pages of a GetAttributeValues operation. +// pageNum := 0 +// err := client.GetAttributeValuesPages(params, +// func(page *GetAttributeValuesOutput, lastPage bool) bool { +// pageNum++ +// fmt.Println(page) +// return pageNum <= 3 +// }) +// +func (c *Pricing) GetAttributeValuesPages(input *GetAttributeValuesInput, fn func(*GetAttributeValuesOutput, bool) bool) error { + return c.GetAttributeValuesPagesWithContext(aws.BackgroundContext(), input, fn) +} + +// GetAttributeValuesPagesWithContext same as GetAttributeValuesPages except +// it takes a Context and allows setting request options on the pages. +// +// The context must be non-nil and will be used for request cancellation. If +// the context is nil a panic will occur. In the future the SDK may create +// sub-contexts for http.Requests. See https://golang.org/pkg/context/ +// for more information on using Contexts. +func (c *Pricing) GetAttributeValuesPagesWithContext(ctx aws.Context, input *GetAttributeValuesInput, fn func(*GetAttributeValuesOutput, bool) bool, opts ...request.Option) error { + p := request.Pagination{ + NewRequest: func() (*request.Request, error) { + var inCpy *GetAttributeValuesInput + if input != nil { + tmp := *input + inCpy = &tmp + } + req, _ := c.GetAttributeValuesRequest(inCpy) + req.SetContext(ctx) + req.ApplyOptions(opts...) + return req, nil + }, + } + + cont := true + for p.Next() && cont { + cont = fn(p.Page().(*GetAttributeValuesOutput), !p.HasNextPage()) + } + return p.Err() +} + +const opGetProducts = "GetProducts" + +// GetProductsRequest generates a "aws/request.Request" representing the +// client's request for the GetProducts operation. The "output" return +// value will be populated with the request's response once the request completes +// successfuly. +// +// Use "Send" method on the returned Request to send the API call to the service. +// the "output" return value is not valid until after Send returns without error. +// +// See GetProducts for more information on using the GetProducts +// API call, and error handling. +// +// This method is useful when you want to inject custom logic or configuration +// into the SDK's request lifecycle. Such as custom headers, or retry logic. +// +// +// // Example sending a request using the GetProductsRequest method. +// req, resp := client.GetProductsRequest(params) +// +// err := req.Send() +// if err == nil { // resp is now filled +// fmt.Println(resp) +// } +// +// See also, https://docs.aws.amazon.com/goto/WebAPI/pricing-2017-10-15/GetProducts +func (c *Pricing) GetProductsRequest(input *GetProductsInput) (req *request.Request, output *GetProductsOutput) { + op := &request.Operation{ + Name: opGetProducts, + HTTPMethod: "POST", + HTTPPath: "/", + Paginator: &request.Paginator{ + InputTokens: []string{"NextToken"}, + OutputTokens: []string{"NextToken"}, + LimitToken: "MaxResults", + TruncationToken: "", + }, + } + + if input == nil { + input = &GetProductsInput{} + } + + output = &GetProductsOutput{} + req = c.newRequest(op, input, output) + return +} + +// GetProducts API operation for AWS Price List Service. +// +// Returns a list of all products that match the filter criteria. +// +// Returns awserr.Error for service API and SDK errors. Use runtime type assertions +// with awserr.Error's Code and Message methods to get detailed information about +// the error. +// +// See the AWS API reference guide for AWS Price List Service's +// API operation GetProducts for usage and error information. +// +// Returned Error Codes: +// * ErrCodeInternalErrorException "InternalErrorException" +// An error on the server occurred during the processing of your request. Try +// again later. +// +// * ErrCodeInvalidParameterException "InvalidParameterException" +// One or more parameters had an invalid value. +// +// * ErrCodeNotFoundException "NotFoundException" +// The requested resource can't be found. +// +// * ErrCodeInvalidNextTokenException "InvalidNextTokenException" +// The pagination token is invalid. Try again without a pagination token. +// +// * ErrCodeExpiredNextTokenException "ExpiredNextTokenException" +// The pagination token expired. Try again without a pagination token. +// +// See also, https://docs.aws.amazon.com/goto/WebAPI/pricing-2017-10-15/GetProducts +func (c *Pricing) GetProducts(input *GetProductsInput) (*GetProductsOutput, error) { + req, out := c.GetProductsRequest(input) + return out, req.Send() +} + +// GetProductsWithContext is the same as GetProducts with the addition of +// the ability to pass a context and additional request options. +// +// See GetProducts for details on how to use this API operation. +// +// The context must be non-nil and will be used for request cancellation. If +// the context is nil a panic will occur. In the future the SDK may create +// sub-contexts for http.Requests. See https://golang.org/pkg/context/ +// for more information on using Contexts. +func (c *Pricing) GetProductsWithContext(ctx aws.Context, input *GetProductsInput, opts ...request.Option) (*GetProductsOutput, error) { + req, out := c.GetProductsRequest(input) + req.SetContext(ctx) + req.ApplyOptions(opts...) + return out, req.Send() +} + +// GetProductsPages iterates over the pages of a GetProducts operation, +// calling the "fn" function with the response data for each page. To stop +// iterating, return false from the fn function. +// +// See GetProducts method for more information on how to use this operation. +// +// Note: This operation can generate multiple requests to a service. +// +// // Example iterating over at most 3 pages of a GetProducts operation. +// pageNum := 0 +// err := client.GetProductsPages(params, +// func(page *GetProductsOutput, lastPage bool) bool { +// pageNum++ +// fmt.Println(page) +// return pageNum <= 3 +// }) +// +func (c *Pricing) GetProductsPages(input *GetProductsInput, fn func(*GetProductsOutput, bool) bool) error { + return c.GetProductsPagesWithContext(aws.BackgroundContext(), input, fn) +} + +// GetProductsPagesWithContext same as GetProductsPages except +// it takes a Context and allows setting request options on the pages. +// +// The context must be non-nil and will be used for request cancellation. If +// the context is nil a panic will occur. In the future the SDK may create +// sub-contexts for http.Requests. See https://golang.org/pkg/context/ +// for more information on using Contexts. +func (c *Pricing) GetProductsPagesWithContext(ctx aws.Context, input *GetProductsInput, fn func(*GetProductsOutput, bool) bool, opts ...request.Option) error { + p := request.Pagination{ + NewRequest: func() (*request.Request, error) { + var inCpy *GetProductsInput + if input != nil { + tmp := *input + inCpy = &tmp + } + req, _ := c.GetProductsRequest(inCpy) + req.SetContext(ctx) + req.ApplyOptions(opts...) + return req, nil + }, + } + + cont := true + for p.Next() && cont { + cont = fn(p.Page().(*GetProductsOutput), !p.HasNextPage()) + } + return p.Err() +} + +// The values of a given attribute, such as Throughput Optimized HDD or Provisioned +// IOPS for the Amazon EC2volumeType attribute. +type AttributeValue struct { + _ struct{} `type:"structure"` + + // The specific value of an attributeName. + Value *string `type:"string"` +} + +// String returns the string representation +func (s AttributeValue) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation +func (s AttributeValue) GoString() string { + return s.String() +} + +// SetValue sets the Value field's value. +func (s *AttributeValue) SetValue(v string) *AttributeValue { + s.Value = &v + return s +} + +type DescribeServicesInput struct { + _ struct{} `type:"structure"` + + // The format version that you want the response to be in. + // + // Valid values are: aws_v1 + FormatVersion *string `type:"string"` + + // The maximum number of results that you want returned in the response. + MaxResults *int64 `min:"1" type:"integer"` + + // The pagination token that indicates the next set of results that you want + // to retrieve. + NextToken *string `type:"string"` + + // The code for the service whose information you want to retrieve, such as + // AmazonEC2. You can use the ServiceCode to filter the results in a GetProducts + // call. To retrieve a list of all services, leave this blank. + ServiceCode *string `type:"string"` +} + +// String returns the string representation +func (s DescribeServicesInput) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation +func (s DescribeServicesInput) GoString() string { + return s.String() +} + +// Validate inspects the fields of the type to determine if they are valid. +func (s *DescribeServicesInput) Validate() error { + invalidParams := request.ErrInvalidParams{Context: "DescribeServicesInput"} + if s.MaxResults != nil && *s.MaxResults < 1 { + invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1)) + } + + if invalidParams.Len() > 0 { + return invalidParams + } + return nil +} + +// SetFormatVersion sets the FormatVersion field's value. +func (s *DescribeServicesInput) SetFormatVersion(v string) *DescribeServicesInput { + s.FormatVersion = &v + return s +} + +// SetMaxResults sets the MaxResults field's value. +func (s *DescribeServicesInput) SetMaxResults(v int64) *DescribeServicesInput { + s.MaxResults = &v + return s +} + +// SetNextToken sets the NextToken field's value. +func (s *DescribeServicesInput) SetNextToken(v string) *DescribeServicesInput { + s.NextToken = &v + return s +} + +// SetServiceCode sets the ServiceCode field's value. +func (s *DescribeServicesInput) SetServiceCode(v string) *DescribeServicesInput { + s.ServiceCode = &v + return s +} + +type DescribeServicesOutput struct { + _ struct{} `type:"structure"` + + // The format version of the response. For example, aws_v1. + FormatVersion *string `type:"string"` + + // The pagination token for the next set of retreivable results. + NextToken *string `type:"string"` + + // The service metadata for the service or services in the response. + Services []*Service `type:"list"` +} + +// String returns the string representation +func (s DescribeServicesOutput) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation +func (s DescribeServicesOutput) GoString() string { + return s.String() +} + +// SetFormatVersion sets the FormatVersion field's value. +func (s *DescribeServicesOutput) SetFormatVersion(v string) *DescribeServicesOutput { + s.FormatVersion = &v + return s +} + +// SetNextToken sets the NextToken field's value. +func (s *DescribeServicesOutput) SetNextToken(v string) *DescribeServicesOutput { + s.NextToken = &v + return s +} + +// SetServices sets the Services field's value. +func (s *DescribeServicesOutput) SetServices(v []*Service) *DescribeServicesOutput { + s.Services = v + return s +} + +// The constraints that you want all returned products to match. +type Filter struct { + _ struct{} `type:"structure"` + + // The product metadata field that you want to filter on. You can filter by + // just the service code to see all products for a specific service, filter + // by just the attribute name to see a specific attribute for multiple services, + // or use both a service code and an attribute name to retrieve only products + // that match both fields. + // + // Valid values include: ServiceCode, and all attribute names + // + // For example, you can filter by the AmazonEC2 service code and the volumeType + // attribute name to get the prices for only Amazon EC2 volumes. + // + // Field is a required field + Field *string `type:"string" required:"true"` + + // The type of filter that you want to use. + // + // Valid values are: TERM_MATCH. TERM_MATCH returns only products that match + // both the given filter field and the given value. + // + // Type is a required field + Type *string `type:"string" required:"true" enum:"FilterType"` + + // The service code or attribute value that you want to filter by. If you are + // filtering by service code this is the actual service code, such as AmazonEC2. + // If you are filtering by attribute name, this is the attribute value that + // you want the returned products to match, such as a Provisioned IOPS volume. + // + // Value is a required field + Value *string `type:"string" required:"true"` +} + +// String returns the string representation +func (s Filter) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation +func (s Filter) GoString() string { + return s.String() +} + +// Validate inspects the fields of the type to determine if they are valid. +func (s *Filter) Validate() error { + invalidParams := request.ErrInvalidParams{Context: "Filter"} + if s.Field == nil { + invalidParams.Add(request.NewErrParamRequired("Field")) + } + if s.Type == nil { + invalidParams.Add(request.NewErrParamRequired("Type")) + } + if s.Value == nil { + invalidParams.Add(request.NewErrParamRequired("Value")) + } + + if invalidParams.Len() > 0 { + return invalidParams + } + return nil +} + +// SetField sets the Field field's value. +func (s *Filter) SetField(v string) *Filter { + s.Field = &v + return s +} + +// SetType sets the Type field's value. +func (s *Filter) SetType(v string) *Filter { + s.Type = &v + return s +} + +// SetValue sets the Value field's value. +func (s *Filter) SetValue(v string) *Filter { + s.Value = &v + return s +} + +type GetAttributeValuesInput struct { + _ struct{} `type:"structure"` + + // The name of the attribute that you want to retrieve the values for, such + // as volumeType. + // + // AttributeName is a required field + AttributeName *string `type:"string" required:"true"` + + // The maximum number of results to return in response. + MaxResults *int64 `min:"1" type:"integer"` + + // The pagination token that indicates the next set of results that you want + // to retrieve. + NextToken *string `type:"string"` + + // The service code for the service whose attributes you want to retrieve. For + // example, if you want the retrieve an EC2 attribute, use AmazonEC2. + // + // ServiceCode is a required field + ServiceCode *string `type:"string" required:"true"` +} + +// String returns the string representation +func (s GetAttributeValuesInput) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation +func (s GetAttributeValuesInput) GoString() string { + return s.String() +} + +// Validate inspects the fields of the type to determine if they are valid. +func (s *GetAttributeValuesInput) Validate() error { + invalidParams := request.ErrInvalidParams{Context: "GetAttributeValuesInput"} + if s.AttributeName == nil { + invalidParams.Add(request.NewErrParamRequired("AttributeName")) + } + if s.MaxResults != nil && *s.MaxResults < 1 { + invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1)) + } + if s.ServiceCode == nil { + invalidParams.Add(request.NewErrParamRequired("ServiceCode")) + } + + if invalidParams.Len() > 0 { + return invalidParams + } + return nil +} + +// SetAttributeName sets the AttributeName field's value. +func (s *GetAttributeValuesInput) SetAttributeName(v string) *GetAttributeValuesInput { + s.AttributeName = &v + return s +} + +// SetMaxResults sets the MaxResults field's value. +func (s *GetAttributeValuesInput) SetMaxResults(v int64) *GetAttributeValuesInput { + s.MaxResults = &v + return s +} + +// SetNextToken sets the NextToken field's value. +func (s *GetAttributeValuesInput) SetNextToken(v string) *GetAttributeValuesInput { + s.NextToken = &v + return s +} + +// SetServiceCode sets the ServiceCode field's value. +func (s *GetAttributeValuesInput) SetServiceCode(v string) *GetAttributeValuesInput { + s.ServiceCode = &v + return s +} + +type GetAttributeValuesOutput struct { + _ struct{} `type:"structure"` + + // The list of values for an attribute. For example, Throughput Optimized HDD + // and Provisioned IOPS are two available values for the AmazonEC2volumeType. + AttributeValues []*AttributeValue `type:"list"` + + // The pagination token that indicates the next set of results to retrieve. + NextToken *string `type:"string"` +} + +// String returns the string representation +func (s GetAttributeValuesOutput) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation +func (s GetAttributeValuesOutput) GoString() string { + return s.String() +} + +// SetAttributeValues sets the AttributeValues field's value. +func (s *GetAttributeValuesOutput) SetAttributeValues(v []*AttributeValue) *GetAttributeValuesOutput { + s.AttributeValues = v + return s +} + +// SetNextToken sets the NextToken field's value. +func (s *GetAttributeValuesOutput) SetNextToken(v string) *GetAttributeValuesOutput { + s.NextToken = &v + return s +} + +type GetProductsInput struct { + _ struct{} `type:"structure"` + + // The list of filters that limit the returned products. only products that + // match all filters are returned. + Filters []*Filter `type:"list"` + + // The format version that you want the response to be in. + // + // Valid values are: aws_v1 + FormatVersion *string `type:"string"` + + // The maximum number of results to return in the response. + MaxResults *int64 `min:"1" type:"integer"` + + // The pagination token that indicates the next set of results that you want + // to retrieve. + NextToken *string `type:"string"` + + // The code for the service whose products you want to retrieve. + ServiceCode *string `type:"string"` +} + +// String returns the string representation +func (s GetProductsInput) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation +func (s GetProductsInput) GoString() string { + return s.String() +} + +// Validate inspects the fields of the type to determine if they are valid. +func (s *GetProductsInput) Validate() error { + invalidParams := request.ErrInvalidParams{Context: "GetProductsInput"} + if s.MaxResults != nil && *s.MaxResults < 1 { + invalidParams.Add(request.NewErrParamMinValue("MaxResults", 1)) + } + if s.Filters != nil { + for i, v := range s.Filters { + if v == nil { + continue + } + if err := v.Validate(); err != nil { + invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Filters", i), err.(request.ErrInvalidParams)) + } + } + } + + if invalidParams.Len() > 0 { + return invalidParams + } + return nil +} + +// SetFilters sets the Filters field's value. +func (s *GetProductsInput) SetFilters(v []*Filter) *GetProductsInput { + s.Filters = v + return s +} + +// SetFormatVersion sets the FormatVersion field's value. +func (s *GetProductsInput) SetFormatVersion(v string) *GetProductsInput { + s.FormatVersion = &v + return s +} + +// SetMaxResults sets the MaxResults field's value. +func (s *GetProductsInput) SetMaxResults(v int64) *GetProductsInput { + s.MaxResults = &v + return s +} + +// SetNextToken sets the NextToken field's value. +func (s *GetProductsInput) SetNextToken(v string) *GetProductsInput { + s.NextToken = &v + return s +} + +// SetServiceCode sets the ServiceCode field's value. +func (s *GetProductsInput) SetServiceCode(v string) *GetProductsInput { + s.ServiceCode = &v + return s +} + +type GetProductsOutput struct { + _ struct{} `type:"structure"` + + // The format version of the response. For example, aws_v1. + FormatVersion *string `type:"string"` + + // The pagination token that indicates the next set of results to retrieve. + NextToken *string `type:"string"` + + // The list of products that match your filters. The list contains both the + // product metadata and the price information. + PriceList []aws.JSONValue `type:"list"` +} + +// String returns the string representation +func (s GetProductsOutput) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation +func (s GetProductsOutput) GoString() string { + return s.String() +} + +// SetFormatVersion sets the FormatVersion field's value. +func (s *GetProductsOutput) SetFormatVersion(v string) *GetProductsOutput { + s.FormatVersion = &v + return s +} + +// SetNextToken sets the NextToken field's value. +func (s *GetProductsOutput) SetNextToken(v string) *GetProductsOutput { + s.NextToken = &v + return s +} + +// SetPriceList sets the PriceList field's value. +func (s *GetProductsOutput) SetPriceList(v []aws.JSONValue) *GetProductsOutput { + s.PriceList = v + return s +} + +// The metadata for a service, such as the service code and available attribute +// names. +type Service struct { + _ struct{} `type:"structure"` + + // The attributes that are available for this service. + AttributeNames []*string `type:"list"` + + // The code for the AWS service. + ServiceCode *string `type:"string"` +} + +// String returns the string representation +func (s Service) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation +func (s Service) GoString() string { + return s.String() +} + +// SetAttributeNames sets the AttributeNames field's value. +func (s *Service) SetAttributeNames(v []*string) *Service { + s.AttributeNames = v + return s +} + +// SetServiceCode sets the ServiceCode field's value. +func (s *Service) SetServiceCode(v string) *Service { + s.ServiceCode = &v + return s +} + +const ( + // FilterTypeTermMatch is a FilterType enum value + FilterTypeTermMatch = "TERM_MATCH" +) diff --git a/cluster-autoscaler/vendor/github.com/aws/aws-sdk-go/service/pricing/doc.go b/cluster-autoscaler/vendor/github.com/aws/aws-sdk-go/service/pricing/doc.go new file mode 100644 index 000000000000..0555bc4c3cb3 --- /dev/null +++ b/cluster-autoscaler/vendor/github.com/aws/aws-sdk-go/service/pricing/doc.go @@ -0,0 +1,51 @@ +// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. + +// Package pricing provides the client and types for making API +// requests to AWS Price List Service. +// +// AWS Price List Service API (AWS Price List Service) is a centralized and +// convenient way to programmatically query Amazon Web Services for services, +// products, and pricing information. The AWS Price List Service uses standardized +// product attributes such as Location, Storage Class, and Operating System, +// and provides prices at the SKU level. You can use the AWS Price List Service +// to build cost control and scenario planning tools, reconcile billing data, +// forecast future spend for budgeting purposes, and provide cost benefit analysis +// that compare your internal workloads with AWS. +// +// Use GetServices without a service code to retrieve the service codes for +// all AWS services, then GetServices with a service code to retreive the attribute +// names for that service. After you have the service code and attribute names, +// you can use GetAttributeValues to see what values are available for an attribute. +// With the service code and an attribute name and value, you can use GetProducts +// to find specific products that you're interested in, such as an AmazonEC2 +// instance, with a Provisioned IOPSvolumeType. +// +// Service Endpoint +// +// AWS Price List Service API provides the following two endpoints: +// +// * https://api.pricing.us-east-1.amazonaws.com +// +// * https://api.pricing.ap-south-1.amazonaws.com +// +// See https://docs.aws.amazon.com/goto/WebAPI/pricing-2017-10-15 for more information on this service. +// +// See pricing package documentation for more information. +// https://docs.aws.amazon.com/sdk-for-go/api/service/pricing/ +// +// Using the Client +// +// To contact AWS Price List Service with the SDK use the New function to create +// a new service client. With that client you can make API requests to the service. +// These clients are safe to use concurrently. +// +// See the SDK's documentation for more information on how to use the SDK. +// https://docs.aws.amazon.com/sdk-for-go/api/ +// +// See aws.Config documentation for more information on configuring SDK clients. +// https://docs.aws.amazon.com/sdk-for-go/api/aws/#Config +// +// See the AWS Price List Service client Pricing for more +// information on creating client for this service. +// https://docs.aws.amazon.com/sdk-for-go/api/service/pricing/#New +package pricing diff --git a/cluster-autoscaler/vendor/github.com/aws/aws-sdk-go/service/pricing/errors.go b/cluster-autoscaler/vendor/github.com/aws/aws-sdk-go/service/pricing/errors.go new file mode 100644 index 000000000000..10e4c44fe929 --- /dev/null +++ b/cluster-autoscaler/vendor/github.com/aws/aws-sdk-go/service/pricing/errors.go @@ -0,0 +1,37 @@ +// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. + +package pricing + +const ( + + // ErrCodeExpiredNextTokenException for service response error code + // "ExpiredNextTokenException". + // + // The pagination token expired. Try again without a pagination token. + ErrCodeExpiredNextTokenException = "ExpiredNextTokenException" + + // ErrCodeInternalErrorException for service response error code + // "InternalErrorException". + // + // An error on the server occurred during the processing of your request. Try + // again later. + ErrCodeInternalErrorException = "InternalErrorException" + + // ErrCodeInvalidNextTokenException for service response error code + // "InvalidNextTokenException". + // + // The pagination token is invalid. Try again without a pagination token. + ErrCodeInvalidNextTokenException = "InvalidNextTokenException" + + // ErrCodeInvalidParameterException for service response error code + // "InvalidParameterException". + // + // One or more parameters had an invalid value. + ErrCodeInvalidParameterException = "InvalidParameterException" + + // ErrCodeNotFoundException for service response error code + // "NotFoundException". + // + // The requested resource can't be found. + ErrCodeNotFoundException = "NotFoundException" +) diff --git a/cluster-autoscaler/vendor/github.com/aws/aws-sdk-go/service/pricing/service.go b/cluster-autoscaler/vendor/github.com/aws/aws-sdk-go/service/pricing/service.go new file mode 100644 index 000000000000..90ff33d0a084 --- /dev/null +++ b/cluster-autoscaler/vendor/github.com/aws/aws-sdk-go/service/pricing/service.go @@ -0,0 +1,100 @@ +// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. + +package pricing + +import ( + "github.com/aws/aws-sdk-go/aws" + "github.com/aws/aws-sdk-go/aws/client" + "github.com/aws/aws-sdk-go/aws/client/metadata" + "github.com/aws/aws-sdk-go/aws/request" + "github.com/aws/aws-sdk-go/aws/signer/v4" + "github.com/aws/aws-sdk-go/private/protocol/jsonrpc" +) + +// Pricing provides the API operation methods for making requests to +// AWS Price List Service. See this package's package overview docs +// for details on the service. +// +// Pricing methods are safe to use concurrently. It is not safe to +// modify mutate any of the struct's properties though. +type Pricing struct { + *client.Client +} + +// Used for custom client initialization logic +var initClient func(*client.Client) + +// Used for custom request initialization logic +var initRequest func(*request.Request) + +// Service information constants +const ( + ServiceName = "api.pricing" // Name of service. + EndpointsID = ServiceName // ID to lookup a service endpoint with. + ServiceID = "Pricing" // ServiceID is a unique identifer of a specific service. +) + +// New creates a new instance of the Pricing client with a session. +// If additional configuration is needed for the client instance use the optional +// aws.Config parameter to add your extra config. +// +// Example: +// // Create a Pricing client from just a session. +// svc := pricing.New(mySession) +// +// // Create a Pricing client with additional configuration +// svc := pricing.New(mySession, aws.NewConfig().WithRegion("us-west-2")) +func New(p client.ConfigProvider, cfgs ...*aws.Config) *Pricing { + c := p.ClientConfig(EndpointsID, cfgs...) + if c.SigningNameDerived || len(c.SigningName) == 0 { + c.SigningName = "pricing" + } + return newClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion, c.SigningName) +} + +// newClient creates, initializes and returns a new service client instance. +func newClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion, signingName string) *Pricing { + svc := &Pricing{ + Client: client.New( + cfg, + metadata.ClientInfo{ + ServiceName: ServiceName, + ServiceID: ServiceID, + SigningName: signingName, + SigningRegion: signingRegion, + Endpoint: endpoint, + APIVersion: "2017-10-15", + JSONVersion: "1.1", + TargetPrefix: "AWSPriceListService", + }, + handlers, + ), + } + + // Handlers + svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) + svc.Handlers.Build.PushBackNamed(jsonrpc.BuildHandler) + svc.Handlers.Unmarshal.PushBackNamed(jsonrpc.UnmarshalHandler) + svc.Handlers.UnmarshalMeta.PushBackNamed(jsonrpc.UnmarshalMetaHandler) + svc.Handlers.UnmarshalError.PushBackNamed(jsonrpc.UnmarshalErrorHandler) + + // Run custom client initialization if present + if initClient != nil { + initClient(svc.Client) + } + + return svc +} + +// newRequest creates a new request for a Pricing operation and runs any +// custom request initialization. +func (c *Pricing) newRequest(op *request.Operation, params, data interface{}) *request.Request { + req := c.NewRequest(op, params, data) + + // Run custom request initialization if present + if initRequest != nil { + initRequest(req) + } + + return req +} diff --git a/cluster-autoscaler/vendor/github.com/golang/glog/LICENSE b/cluster-autoscaler/vendor/github.com/golang/glog/LICENSE new file mode 100644 index 000000000000..37ec93a14fdc --- /dev/null +++ b/cluster-autoscaler/vendor/github.com/golang/glog/LICENSE @@ -0,0 +1,191 @@ +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and +distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright +owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities +that control, are controlled by, or are under common control with that entity. +For the purposes of this definition, "control" means (i) the power, direct or +indirect, to cause the direction or management of such entity, whether by +contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the +outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising +permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including +but not limited to software source code, documentation source, and configuration +files. + +"Object" form shall mean any form resulting from mechanical transformation or +translation of a Source form, including but not limited to compiled object code, +generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made +available under the License, as indicated by a copyright notice that is included +in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that +is based on (or derived from) the Work and for which the editorial revisions, +annotations, elaborations, or other modifications represent, as a whole, an +original work of authorship. For the purposes of this License, Derivative Works +shall not include works that remain separable from, or merely link (or bind by +name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version +of the Work and any modifications or additions to that Work or Derivative Works +thereof, that is intentionally submitted to Licensor for inclusion in the Work +by the copyright owner or by an individual or Legal Entity authorized to submit +on behalf of the copyright owner. For the purposes of this definition, +"submitted" means any form of electronic, verbal, or written communication sent +to the Licensor or its representatives, including but not limited to +communication on electronic mailing lists, source code control systems, and +issue tracking systems that are managed by, or on behalf of, the Licensor for +the purpose of discussing and improving the Work, but excluding communication +that is conspicuously marked or otherwise designated in writing by the copyright +owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf +of whom a Contribution has been received by Licensor and subsequently +incorporated within the Work. + +2. Grant of Copyright License. + +Subject to the terms and conditions of this License, each Contributor hereby +grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, +irrevocable copyright license to reproduce, prepare Derivative Works of, +publicly display, publicly perform, sublicense, and distribute the Work and such +Derivative Works in Source or Object form. + +3. Grant of Patent License. + +Subject to the terms and conditions of this License, each Contributor hereby +grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, +irrevocable (except as stated in this section) patent license to make, have +made, use, offer to sell, sell, import, and otherwise transfer the Work, where +such license applies only to those patent claims licensable by such Contributor +that are necessarily infringed by their Contribution(s) alone or by combination +of their Contribution(s) with the Work to which such Contribution(s) was +submitted. If You institute patent litigation against any entity (including a +cross-claim or counterclaim in a lawsuit) alleging that the Work or a +Contribution incorporated within the Work constitutes direct or contributory +patent infringement, then any patent licenses granted to You under this License +for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. + +You may reproduce and distribute copies of the Work or Derivative Works thereof +in any medium, with or without modifications, and in Source or Object form, +provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of +this License; and +You must cause any modified files to carry prominent notices stating that You +changed the files; and +You must retain, in the Source form of any Derivative Works that You distribute, +all copyright, patent, trademark, and attribution notices from the Source form +of the Work, excluding those notices that do not pertain to any part of the +Derivative Works; and +If the Work includes a "NOTICE" text file as part of its distribution, then any +Derivative Works that You distribute must include a readable copy of the +attribution notices contained within such NOTICE file, excluding those notices +that do not pertain to any part of the Derivative Works, in at least one of the +following places: within a NOTICE text file distributed as part of the +Derivative Works; within the Source form or documentation, if provided along +with the Derivative Works; or, within a display generated by the Derivative +Works, if and wherever such third-party notices normally appear. The contents of +the NOTICE file are for informational purposes only and do not modify the +License. You may add Your own attribution notices within Derivative Works that +You distribute, alongside or as an addendum to the NOTICE text from the Work, +provided that such additional attribution notices cannot be construed as +modifying the License. +You may add Your own copyright statement to Your modifications and may provide +additional or different license terms and conditions for use, reproduction, or +distribution of Your modifications, or for any such Derivative Works as a whole, +provided Your use, reproduction, and distribution of the Work otherwise complies +with the conditions stated in this License. + +5. Submission of Contributions. + +Unless You explicitly state otherwise, any Contribution intentionally submitted +for inclusion in the Work by You to the Licensor shall be under the terms and +conditions of this License, without any additional terms or conditions. +Notwithstanding the above, nothing herein shall supersede or modify the terms of +any separate license agreement you may have executed with Licensor regarding +such Contributions. + +6. Trademarks. + +This License does not grant permission to use the trade names, trademarks, +service marks, or product names of the Licensor, except as required for +reasonable and customary use in describing the origin of the Work and +reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. + +Unless required by applicable law or agreed to in writing, Licensor provides the +Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, +including, without limitation, any warranties or conditions of TITLE, +NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are +solely responsible for determining the appropriateness of using or +redistributing the Work and assume any risks associated with Your exercise of +permissions under this License. + +8. Limitation of Liability. + +In no event and under no legal theory, whether in tort (including negligence), +contract, or otherwise, unless required by applicable law (such as deliberate +and grossly negligent acts) or agreed to in writing, shall any Contributor be +liable to You for damages, including any direct, indirect, special, incidental, +or consequential damages of any character arising as a result of this License or +out of the use or inability to use the Work (including but not limited to +damages for loss of goodwill, work stoppage, computer failure or malfunction, or +any and all other commercial damages or losses), even if such Contributor has +been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. + +While redistributing the Work or Derivative Works thereof, You may choose to +offer, and charge a fee for, acceptance of support, warranty, indemnity, or +other liability obligations and/or rights consistent with this License. However, +in accepting such obligations, You may act only on Your own behalf and on Your +sole responsibility, not on behalf of any other Contributor, and only if You +agree to indemnify, defend, and hold each Contributor harmless for any liability +incurred by, or claims asserted against, such Contributor by reason of your +accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work + +To apply the Apache License to your work, attach the following boilerplate +notice, with the fields enclosed by brackets "[]" replaced with your own +identifying information. (Don't include the brackets!) The text should be +enclosed in the appropriate comment syntax for the file format. We also +recommend that a file or class name and description of purpose be included on +the same "printed page" as the copyright notice for easier identification within +third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/cluster-autoscaler/vendor/github.com/golang/glog/README b/cluster-autoscaler/vendor/github.com/golang/glog/README new file mode 100644 index 000000000000..387b4eb68909 --- /dev/null +++ b/cluster-autoscaler/vendor/github.com/golang/glog/README @@ -0,0 +1,44 @@ +glog +==== + +Leveled execution logs for Go. + +This is an efficient pure Go implementation of leveled logs in the +manner of the open source C++ package + https://github.com/google/glog + +By binding methods to booleans it is possible to use the log package +without paying the expense of evaluating the arguments to the log. +Through the -vmodule flag, the package also provides fine-grained +control over logging at the file level. + +The comment from glog.go introduces the ideas: + + Package glog implements logging analogous to the Google-internal + C++ INFO/ERROR/V setup. It provides functions Info, Warning, + Error, Fatal, plus formatting variants such as Infof. It + also provides V-style logging controlled by the -v and + -vmodule=file=2 flags. + + Basic examples: + + glog.Info("Prepare to repel boarders") + + glog.Fatalf("Initialization failed: %s", err) + + See the documentation for the V function for an explanation + of these examples: + + if glog.V(2) { + glog.Info("Starting transaction...") + } + + glog.V(2).Infoln("Processed", nItems, "elements") + + +The repository contains an open source version of the log package +used inside Google. The master copy of the source lives inside +Google, not here. The code in this repo is for export only and is not itself +under development. Feature requests will be ignored. + +Send bug reports to golang-nuts@googlegroups.com. diff --git a/cluster-autoscaler/vendor/github.com/golang/glog/glog.go b/cluster-autoscaler/vendor/github.com/golang/glog/glog.go new file mode 100644 index 000000000000..54bd7afdcabe --- /dev/null +++ b/cluster-autoscaler/vendor/github.com/golang/glog/glog.go @@ -0,0 +1,1180 @@ +// Go support for leveled logs, analogous to https://code.google.com/p/google-glog/ +// +// Copyright 2013 Google Inc. All Rights Reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// Package glog implements logging analogous to the Google-internal C++ INFO/ERROR/V setup. +// It provides functions Info, Warning, Error, Fatal, plus formatting variants such as +// Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. +// +// Basic examples: +// +// glog.Info("Prepare to repel boarders") +// +// glog.Fatalf("Initialization failed: %s", err) +// +// See the documentation for the V function for an explanation of these examples: +// +// if glog.V(2) { +// glog.Info("Starting transaction...") +// } +// +// glog.V(2).Infoln("Processed", nItems, "elements") +// +// Log output is buffered and written periodically using Flush. Programs +// should call Flush before exiting to guarantee all log output is written. +// +// By default, all log statements write to files in a temporary directory. +// This package provides several flags that modify this behavior. +// As a result, flag.Parse must be called before any logging is done. +// +// -logtostderr=false +// Logs are written to standard error instead of to files. +// -alsologtostderr=false +// Logs are written to standard error as well as to files. +// -stderrthreshold=ERROR +// Log events at or above this severity are logged to standard +// error as well as to files. +// -log_dir="" +// Log files will be written to this directory instead of the +// default temporary directory. +// +// Other flags provide aids to debugging. +// +// -log_backtrace_at="" +// When set to a file and line number holding a logging statement, +// such as +// -log_backtrace_at=gopherflakes.go:234 +// a stack trace will be written to the Info log whenever execution +// hits that statement. (Unlike with -vmodule, the ".go" must be +// present.) +// -v=0 +// Enable V-leveled logging at the specified level. +// -vmodule="" +// The syntax of the argument is a comma-separated list of pattern=N, +// where pattern is a literal file name (minus the ".go" suffix) or +// "glob" pattern and N is a V level. For instance, +// -vmodule=gopher*=3 +// sets the V level to 3 in all Go files whose names begin "gopher". +// +package glog + +import ( + "bufio" + "bytes" + "errors" + "flag" + "fmt" + "io" + stdLog "log" + "os" + "path/filepath" + "runtime" + "strconv" + "strings" + "sync" + "sync/atomic" + "time" +) + +// severity identifies the sort of log: info, warning etc. It also implements +// the flag.Value interface. The -stderrthreshold flag is of type severity and +// should be modified only through the flag.Value interface. The values match +// the corresponding constants in C++. +type severity int32 // sync/atomic int32 + +// These constants identify the log levels in order of increasing severity. +// A message written to a high-severity log file is also written to each +// lower-severity log file. +const ( + infoLog severity = iota + warningLog + errorLog + fatalLog + numSeverity = 4 +) + +const severityChar = "IWEF" + +var severityName = []string{ + infoLog: "INFO", + warningLog: "WARNING", + errorLog: "ERROR", + fatalLog: "FATAL", +} + +// get returns the value of the severity. +func (s *severity) get() severity { + return severity(atomic.LoadInt32((*int32)(s))) +} + +// set sets the value of the severity. +func (s *severity) set(val severity) { + atomic.StoreInt32((*int32)(s), int32(val)) +} + +// String is part of the flag.Value interface. +func (s *severity) String() string { + return strconv.FormatInt(int64(*s), 10) +} + +// Get is part of the flag.Value interface. +func (s *severity) Get() interface{} { + return *s +} + +// Set is part of the flag.Value interface. +func (s *severity) Set(value string) error { + var threshold severity + // Is it a known name? + if v, ok := severityByName(value); ok { + threshold = v + } else { + v, err := strconv.Atoi(value) + if err != nil { + return err + } + threshold = severity(v) + } + logging.stderrThreshold.set(threshold) + return nil +} + +func severityByName(s string) (severity, bool) { + s = strings.ToUpper(s) + for i, name := range severityName { + if name == s { + return severity(i), true + } + } + return 0, false +} + +// OutputStats tracks the number of output lines and bytes written. +type OutputStats struct { + lines int64 + bytes int64 +} + +// Lines returns the number of lines written. +func (s *OutputStats) Lines() int64 { + return atomic.LoadInt64(&s.lines) +} + +// Bytes returns the number of bytes written. +func (s *OutputStats) Bytes() int64 { + return atomic.LoadInt64(&s.bytes) +} + +// Stats tracks the number of lines of output and number of bytes +// per severity level. Values must be read with atomic.LoadInt64. +var Stats struct { + Info, Warning, Error OutputStats +} + +var severityStats = [numSeverity]*OutputStats{ + infoLog: &Stats.Info, + warningLog: &Stats.Warning, + errorLog: &Stats.Error, +} + +// Level is exported because it appears in the arguments to V and is +// the type of the v flag, which can be set programmatically. +// It's a distinct type because we want to discriminate it from logType. +// Variables of type level are only changed under logging.mu. +// The -v flag is read only with atomic ops, so the state of the logging +// module is consistent. + +// Level is treated as a sync/atomic int32. + +// Level specifies a level of verbosity for V logs. *Level implements +// flag.Value; the -v flag is of type Level and should be modified +// only through the flag.Value interface. +type Level int32 + +// get returns the value of the Level. +func (l *Level) get() Level { + return Level(atomic.LoadInt32((*int32)(l))) +} + +// set sets the value of the Level. +func (l *Level) set(val Level) { + atomic.StoreInt32((*int32)(l), int32(val)) +} + +// String is part of the flag.Value interface. +func (l *Level) String() string { + return strconv.FormatInt(int64(*l), 10) +} + +// Get is part of the flag.Value interface. +func (l *Level) Get() interface{} { + return *l +} + +// Set is part of the flag.Value interface. +func (l *Level) Set(value string) error { + v, err := strconv.Atoi(value) + if err != nil { + return err + } + logging.mu.Lock() + defer logging.mu.Unlock() + logging.setVState(Level(v), logging.vmodule.filter, false) + return nil +} + +// moduleSpec represents the setting of the -vmodule flag. +type moduleSpec struct { + filter []modulePat +} + +// modulePat contains a filter for the -vmodule flag. +// It holds a verbosity level and a file pattern to match. +type modulePat struct { + pattern string + literal bool // The pattern is a literal string + level Level +} + +// match reports whether the file matches the pattern. It uses a string +// comparison if the pattern contains no metacharacters. +func (m *modulePat) match(file string) bool { + if m.literal { + return file == m.pattern + } + match, _ := filepath.Match(m.pattern, file) + return match +} + +func (m *moduleSpec) String() string { + // Lock because the type is not atomic. TODO: clean this up. + logging.mu.Lock() + defer logging.mu.Unlock() + var b bytes.Buffer + for i, f := range m.filter { + if i > 0 { + b.WriteRune(',') + } + fmt.Fprintf(&b, "%s=%d", f.pattern, f.level) + } + return b.String() +} + +// Get is part of the (Go 1.2) flag.Getter interface. It always returns nil for this flag type since the +// struct is not exported. +func (m *moduleSpec) Get() interface{} { + return nil +} + +var errVmoduleSyntax = errors.New("syntax error: expect comma-separated list of filename=N") + +// Syntax: -vmodule=recordio=2,file=1,gfs*=3 +func (m *moduleSpec) Set(value string) error { + var filter []modulePat + for _, pat := range strings.Split(value, ",") { + if len(pat) == 0 { + // Empty strings such as from a trailing comma can be ignored. + continue + } + patLev := strings.Split(pat, "=") + if len(patLev) != 2 || len(patLev[0]) == 0 || len(patLev[1]) == 0 { + return errVmoduleSyntax + } + pattern := patLev[0] + v, err := strconv.Atoi(patLev[1]) + if err != nil { + return errors.New("syntax error: expect comma-separated list of filename=N") + } + if v < 0 { + return errors.New("negative value for vmodule level") + } + if v == 0 { + continue // Ignore. It's harmless but no point in paying the overhead. + } + // TODO: check syntax of filter? + filter = append(filter, modulePat{pattern, isLiteral(pattern), Level(v)}) + } + logging.mu.Lock() + defer logging.mu.Unlock() + logging.setVState(logging.verbosity, filter, true) + return nil +} + +// isLiteral reports whether the pattern is a literal string, that is, has no metacharacters +// that require filepath.Match to be called to match the pattern. +func isLiteral(pattern string) bool { + return !strings.ContainsAny(pattern, `\*?[]`) +} + +// traceLocation represents the setting of the -log_backtrace_at flag. +type traceLocation struct { + file string + line int +} + +// isSet reports whether the trace location has been specified. +// logging.mu is held. +func (t *traceLocation) isSet() bool { + return t.line > 0 +} + +// match reports whether the specified file and line matches the trace location. +// The argument file name is the full path, not the basename specified in the flag. +// logging.mu is held. +func (t *traceLocation) match(file string, line int) bool { + if t.line != line { + return false + } + if i := strings.LastIndex(file, "/"); i >= 0 { + file = file[i+1:] + } + return t.file == file +} + +func (t *traceLocation) String() string { + // Lock because the type is not atomic. TODO: clean this up. + logging.mu.Lock() + defer logging.mu.Unlock() + return fmt.Sprintf("%s:%d", t.file, t.line) +} + +// Get is part of the (Go 1.2) flag.Getter interface. It always returns nil for this flag type since the +// struct is not exported +func (t *traceLocation) Get() interface{} { + return nil +} + +var errTraceSyntax = errors.New("syntax error: expect file.go:234") + +// Syntax: -log_backtrace_at=gopherflakes.go:234 +// Note that unlike vmodule the file extension is included here. +func (t *traceLocation) Set(value string) error { + if value == "" { + // Unset. + t.line = 0 + t.file = "" + } + fields := strings.Split(value, ":") + if len(fields) != 2 { + return errTraceSyntax + } + file, line := fields[0], fields[1] + if !strings.Contains(file, ".") { + return errTraceSyntax + } + v, err := strconv.Atoi(line) + if err != nil { + return errTraceSyntax + } + if v <= 0 { + return errors.New("negative or zero value for level") + } + logging.mu.Lock() + defer logging.mu.Unlock() + t.line = v + t.file = file + return nil +} + +// flushSyncWriter is the interface satisfied by logging destinations. +type flushSyncWriter interface { + Flush() error + Sync() error + io.Writer +} + +func init() { + flag.BoolVar(&logging.toStderr, "logtostderr", false, "log to standard error instead of files") + flag.BoolVar(&logging.alsoToStderr, "alsologtostderr", false, "log to standard error as well as files") + flag.Var(&logging.verbosity, "v", "log level for V logs") + flag.Var(&logging.stderrThreshold, "stderrthreshold", "logs at or above this threshold go to stderr") + flag.Var(&logging.vmodule, "vmodule", "comma-separated list of pattern=N settings for file-filtered logging") + flag.Var(&logging.traceLocation, "log_backtrace_at", "when logging hits line file:N, emit a stack trace") + + // Default stderrThreshold is ERROR. + logging.stderrThreshold = errorLog + + logging.setVState(0, nil, false) + go logging.flushDaemon() +} + +// Flush flushes all pending log I/O. +func Flush() { + logging.lockAndFlushAll() +} + +// loggingT collects all the global state of the logging setup. +type loggingT struct { + // Boolean flags. Not handled atomically because the flag.Value interface + // does not let us avoid the =true, and that shorthand is necessary for + // compatibility. TODO: does this matter enough to fix? Seems unlikely. + toStderr bool // The -logtostderr flag. + alsoToStderr bool // The -alsologtostderr flag. + + // Level flag. Handled atomically. + stderrThreshold severity // The -stderrthreshold flag. + + // freeList is a list of byte buffers, maintained under freeListMu. + freeList *buffer + // freeListMu maintains the free list. It is separate from the main mutex + // so buffers can be grabbed and printed to without holding the main lock, + // for better parallelization. + freeListMu sync.Mutex + + // mu protects the remaining elements of this structure and is + // used to synchronize logging. + mu sync.Mutex + // file holds writer for each of the log types. + file [numSeverity]flushSyncWriter + // pcs is used in V to avoid an allocation when computing the caller's PC. + pcs [1]uintptr + // vmap is a cache of the V Level for each V() call site, identified by PC. + // It is wiped whenever the vmodule flag changes state. + vmap map[uintptr]Level + // filterLength stores the length of the vmodule filter chain. If greater + // than zero, it means vmodule is enabled. It may be read safely + // using sync.LoadInt32, but is only modified under mu. + filterLength int32 + // traceLocation is the state of the -log_backtrace_at flag. + traceLocation traceLocation + // These flags are modified only under lock, although verbosity may be fetched + // safely using atomic.LoadInt32. + vmodule moduleSpec // The state of the -vmodule flag. + verbosity Level // V logging level, the value of the -v flag/ +} + +// buffer holds a byte Buffer for reuse. The zero value is ready for use. +type buffer struct { + bytes.Buffer + tmp [64]byte // temporary byte array for creating headers. + next *buffer +} + +var logging loggingT + +// setVState sets a consistent state for V logging. +// l.mu is held. +func (l *loggingT) setVState(verbosity Level, filter []modulePat, setFilter bool) { + // Turn verbosity off so V will not fire while we are in transition. + logging.verbosity.set(0) + // Ditto for filter length. + atomic.StoreInt32(&logging.filterLength, 0) + + // Set the new filters and wipe the pc->Level map if the filter has changed. + if setFilter { + logging.vmodule.filter = filter + logging.vmap = make(map[uintptr]Level) + } + + // Things are consistent now, so enable filtering and verbosity. + // They are enabled in order opposite to that in V. + atomic.StoreInt32(&logging.filterLength, int32(len(filter))) + logging.verbosity.set(verbosity) +} + +// getBuffer returns a new, ready-to-use buffer. +func (l *loggingT) getBuffer() *buffer { + l.freeListMu.Lock() + b := l.freeList + if b != nil { + l.freeList = b.next + } + l.freeListMu.Unlock() + if b == nil { + b = new(buffer) + } else { + b.next = nil + b.Reset() + } + return b +} + +// putBuffer returns a buffer to the free list. +func (l *loggingT) putBuffer(b *buffer) { + if b.Len() >= 256 { + // Let big buffers die a natural death. + return + } + l.freeListMu.Lock() + b.next = l.freeList + l.freeList = b + l.freeListMu.Unlock() +} + +var timeNow = time.Now // Stubbed out for testing. + +/* +header formats a log header as defined by the C++ implementation. +It returns a buffer containing the formatted header and the user's file and line number. +The depth specifies how many stack frames above lives the source line to be identified in the log message. + +Log lines have this form: + Lmmdd hh:mm:ss.uuuuuu threadid file:line] msg... +where the fields are defined as follows: + L A single character, representing the log level (eg 'I' for INFO) + mm The month (zero padded; ie May is '05') + dd The day (zero padded) + hh:mm:ss.uuuuuu Time in hours, minutes and fractional seconds + threadid The space-padded thread ID as returned by GetTID() + file The file name + line The line number + msg The user-supplied message +*/ +func (l *loggingT) header(s severity, depth int) (*buffer, string, int) { + _, file, line, ok := runtime.Caller(3 + depth) + if !ok { + file = "???" + line = 1 + } else { + slash := strings.LastIndex(file, "/") + if slash >= 0 { + file = file[slash+1:] + } + } + return l.formatHeader(s, file, line), file, line +} + +// formatHeader formats a log header using the provided file name and line number. +func (l *loggingT) formatHeader(s severity, file string, line int) *buffer { + now := timeNow() + if line < 0 { + line = 0 // not a real line number, but acceptable to someDigits + } + if s > fatalLog { + s = infoLog // for safety. + } + buf := l.getBuffer() + + // Avoid Fprintf, for speed. The format is so simple that we can do it quickly by hand. + // It's worth about 3X. Fprintf is hard. + _, month, day := now.Date() + hour, minute, second := now.Clock() + // Lmmdd hh:mm:ss.uuuuuu threadid file:line] + buf.tmp[0] = severityChar[s] + buf.twoDigits(1, int(month)) + buf.twoDigits(3, day) + buf.tmp[5] = ' ' + buf.twoDigits(6, hour) + buf.tmp[8] = ':' + buf.twoDigits(9, minute) + buf.tmp[11] = ':' + buf.twoDigits(12, second) + buf.tmp[14] = '.' + buf.nDigits(6, 15, now.Nanosecond()/1000, '0') + buf.tmp[21] = ' ' + buf.nDigits(7, 22, pid, ' ') // TODO: should be TID + buf.tmp[29] = ' ' + buf.Write(buf.tmp[:30]) + buf.WriteString(file) + buf.tmp[0] = ':' + n := buf.someDigits(1, line) + buf.tmp[n+1] = ']' + buf.tmp[n+2] = ' ' + buf.Write(buf.tmp[:n+3]) + return buf +} + +// Some custom tiny helper functions to print the log header efficiently. + +const digits = "0123456789" + +// twoDigits formats a zero-prefixed two-digit integer at buf.tmp[i]. +func (buf *buffer) twoDigits(i, d int) { + buf.tmp[i+1] = digits[d%10] + d /= 10 + buf.tmp[i] = digits[d%10] +} + +// nDigits formats an n-digit integer at buf.tmp[i], +// padding with pad on the left. +// It assumes d >= 0. +func (buf *buffer) nDigits(n, i, d int, pad byte) { + j := n - 1 + for ; j >= 0 && d > 0; j-- { + buf.tmp[i+j] = digits[d%10] + d /= 10 + } + for ; j >= 0; j-- { + buf.tmp[i+j] = pad + } +} + +// someDigits formats a zero-prefixed variable-width integer at buf.tmp[i]. +func (buf *buffer) someDigits(i, d int) int { + // Print into the top, then copy down. We know there's space for at least + // a 10-digit number. + j := len(buf.tmp) + for { + j-- + buf.tmp[j] = digits[d%10] + d /= 10 + if d == 0 { + break + } + } + return copy(buf.tmp[i:], buf.tmp[j:]) +} + +func (l *loggingT) println(s severity, args ...interface{}) { + buf, file, line := l.header(s, 0) + fmt.Fprintln(buf, args...) + l.output(s, buf, file, line, false) +} + +func (l *loggingT) print(s severity, args ...interface{}) { + l.printDepth(s, 1, args...) +} + +func (l *loggingT) printDepth(s severity, depth int, args ...interface{}) { + buf, file, line := l.header(s, depth) + fmt.Fprint(buf, args...) + if buf.Bytes()[buf.Len()-1] != '\n' { + buf.WriteByte('\n') + } + l.output(s, buf, file, line, false) +} + +func (l *loggingT) printf(s severity, format string, args ...interface{}) { + buf, file, line := l.header(s, 0) + fmt.Fprintf(buf, format, args...) + if buf.Bytes()[buf.Len()-1] != '\n' { + buf.WriteByte('\n') + } + l.output(s, buf, file, line, false) +} + +// printWithFileLine behaves like print but uses the provided file and line number. If +// alsoLogToStderr is true, the log message always appears on standard error; it +// will also appear in the log file unless --logtostderr is set. +func (l *loggingT) printWithFileLine(s severity, file string, line int, alsoToStderr bool, args ...interface{}) { + buf := l.formatHeader(s, file, line) + fmt.Fprint(buf, args...) + if buf.Bytes()[buf.Len()-1] != '\n' { + buf.WriteByte('\n') + } + l.output(s, buf, file, line, alsoToStderr) +} + +// output writes the data to the log files and releases the buffer. +func (l *loggingT) output(s severity, buf *buffer, file string, line int, alsoToStderr bool) { + l.mu.Lock() + if l.traceLocation.isSet() { + if l.traceLocation.match(file, line) { + buf.Write(stacks(false)) + } + } + data := buf.Bytes() + if !flag.Parsed() { + os.Stderr.Write([]byte("ERROR: logging before flag.Parse: ")) + os.Stderr.Write(data) + } else if l.toStderr { + os.Stderr.Write(data) + } else { + if alsoToStderr || l.alsoToStderr || s >= l.stderrThreshold.get() { + os.Stderr.Write(data) + } + if l.file[s] == nil { + if err := l.createFiles(s); err != nil { + os.Stderr.Write(data) // Make sure the message appears somewhere. + l.exit(err) + } + } + switch s { + case fatalLog: + l.file[fatalLog].Write(data) + fallthrough + case errorLog: + l.file[errorLog].Write(data) + fallthrough + case warningLog: + l.file[warningLog].Write(data) + fallthrough + case infoLog: + l.file[infoLog].Write(data) + } + } + if s == fatalLog { + // If we got here via Exit rather than Fatal, print no stacks. + if atomic.LoadUint32(&fatalNoStacks) > 0 { + l.mu.Unlock() + timeoutFlush(10 * time.Second) + os.Exit(1) + } + // Dump all goroutine stacks before exiting. + // First, make sure we see the trace for the current goroutine on standard error. + // If -logtostderr has been specified, the loop below will do that anyway + // as the first stack in the full dump. + if !l.toStderr { + os.Stderr.Write(stacks(false)) + } + // Write the stack trace for all goroutines to the files. + trace := stacks(true) + logExitFunc = func(error) {} // If we get a write error, we'll still exit below. + for log := fatalLog; log >= infoLog; log-- { + if f := l.file[log]; f != nil { // Can be nil if -logtostderr is set. + f.Write(trace) + } + } + l.mu.Unlock() + timeoutFlush(10 * time.Second) + os.Exit(255) // C++ uses -1, which is silly because it's anded with 255 anyway. + } + l.putBuffer(buf) + l.mu.Unlock() + if stats := severityStats[s]; stats != nil { + atomic.AddInt64(&stats.lines, 1) + atomic.AddInt64(&stats.bytes, int64(len(data))) + } +} + +// timeoutFlush calls Flush and returns when it completes or after timeout +// elapses, whichever happens first. This is needed because the hooks invoked +// by Flush may deadlock when glog.Fatal is called from a hook that holds +// a lock. +func timeoutFlush(timeout time.Duration) { + done := make(chan bool, 1) + go func() { + Flush() // calls logging.lockAndFlushAll() + done <- true + }() + select { + case <-done: + case <-time.After(timeout): + fmt.Fprintln(os.Stderr, "glog: Flush took longer than", timeout) + } +} + +// stacks is a wrapper for runtime.Stack that attempts to recover the data for all goroutines. +func stacks(all bool) []byte { + // We don't know how big the traces are, so grow a few times if they don't fit. Start large, though. + n := 10000 + if all { + n = 100000 + } + var trace []byte + for i := 0; i < 5; i++ { + trace = make([]byte, n) + nbytes := runtime.Stack(trace, all) + if nbytes < len(trace) { + return trace[:nbytes] + } + n *= 2 + } + return trace +} + +// logExitFunc provides a simple mechanism to override the default behavior +// of exiting on error. Used in testing and to guarantee we reach a required exit +// for fatal logs. Instead, exit could be a function rather than a method but that +// would make its use clumsier. +var logExitFunc func(error) + +// exit is called if there is trouble creating or writing log files. +// It flushes the logs and exits the program; there's no point in hanging around. +// l.mu is held. +func (l *loggingT) exit(err error) { + fmt.Fprintf(os.Stderr, "log: exiting because of error: %s\n", err) + // If logExitFunc is set, we do that instead of exiting. + if logExitFunc != nil { + logExitFunc(err) + return + } + l.flushAll() + os.Exit(2) +} + +// syncBuffer joins a bufio.Writer to its underlying file, providing access to the +// file's Sync method and providing a wrapper for the Write method that provides log +// file rotation. There are conflicting methods, so the file cannot be embedded. +// l.mu is held for all its methods. +type syncBuffer struct { + logger *loggingT + *bufio.Writer + file *os.File + sev severity + nbytes uint64 // The number of bytes written to this file +} + +func (sb *syncBuffer) Sync() error { + return sb.file.Sync() +} + +func (sb *syncBuffer) Write(p []byte) (n int, err error) { + if sb.nbytes+uint64(len(p)) >= MaxSize { + if err := sb.rotateFile(time.Now()); err != nil { + sb.logger.exit(err) + } + } + n, err = sb.Writer.Write(p) + sb.nbytes += uint64(n) + if err != nil { + sb.logger.exit(err) + } + return +} + +// rotateFile closes the syncBuffer's file and starts a new one. +func (sb *syncBuffer) rotateFile(now time.Time) error { + if sb.file != nil { + sb.Flush() + sb.file.Close() + } + var err error + sb.file, _, err = create(severityName[sb.sev], now) + sb.nbytes = 0 + if err != nil { + return err + } + + sb.Writer = bufio.NewWriterSize(sb.file, bufferSize) + + // Write header. + var buf bytes.Buffer + fmt.Fprintf(&buf, "Log file created at: %s\n", now.Format("2006/01/02 15:04:05")) + fmt.Fprintf(&buf, "Running on machine: %s\n", host) + fmt.Fprintf(&buf, "Binary: Built with %s %s for %s/%s\n", runtime.Compiler, runtime.Version(), runtime.GOOS, runtime.GOARCH) + fmt.Fprintf(&buf, "Log line format: [IWEF]mmdd hh:mm:ss.uuuuuu threadid file:line] msg\n") + n, err := sb.file.Write(buf.Bytes()) + sb.nbytes += uint64(n) + return err +} + +// bufferSize sizes the buffer associated with each log file. It's large +// so that log records can accumulate without the logging thread blocking +// on disk I/O. The flushDaemon will block instead. +const bufferSize = 256 * 1024 + +// createFiles creates all the log files for severity from sev down to infoLog. +// l.mu is held. +func (l *loggingT) createFiles(sev severity) error { + now := time.Now() + // Files are created in decreasing severity order, so as soon as we find one + // has already been created, we can stop. + for s := sev; s >= infoLog && l.file[s] == nil; s-- { + sb := &syncBuffer{ + logger: l, + sev: s, + } + if err := sb.rotateFile(now); err != nil { + return err + } + l.file[s] = sb + } + return nil +} + +const flushInterval = 30 * time.Second + +// flushDaemon periodically flushes the log file buffers. +func (l *loggingT) flushDaemon() { + for _ = range time.NewTicker(flushInterval).C { + l.lockAndFlushAll() + } +} + +// lockAndFlushAll is like flushAll but locks l.mu first. +func (l *loggingT) lockAndFlushAll() { + l.mu.Lock() + l.flushAll() + l.mu.Unlock() +} + +// flushAll flushes all the logs and attempts to "sync" their data to disk. +// l.mu is held. +func (l *loggingT) flushAll() { + // Flush from fatal down, in case there's trouble flushing. + for s := fatalLog; s >= infoLog; s-- { + file := l.file[s] + if file != nil { + file.Flush() // ignore error + file.Sync() // ignore error + } + } +} + +// CopyStandardLogTo arranges for messages written to the Go "log" package's +// default logs to also appear in the Google logs for the named and lower +// severities. Subsequent changes to the standard log's default output location +// or format may break this behavior. +// +// Valid names are "INFO", "WARNING", "ERROR", and "FATAL". If the name is not +// recognized, CopyStandardLogTo panics. +func CopyStandardLogTo(name string) { + sev, ok := severityByName(name) + if !ok { + panic(fmt.Sprintf("log.CopyStandardLogTo(%q): unrecognized severity name", name)) + } + // Set a log format that captures the user's file and line: + // d.go:23: message + stdLog.SetFlags(stdLog.Lshortfile) + stdLog.SetOutput(logBridge(sev)) +} + +// logBridge provides the Write method that enables CopyStandardLogTo to connect +// Go's standard logs to the logs provided by this package. +type logBridge severity + +// Write parses the standard logging line and passes its components to the +// logger for severity(lb). +func (lb logBridge) Write(b []byte) (n int, err error) { + var ( + file = "???" + line = 1 + text string + ) + // Split "d.go:23: message" into "d.go", "23", and "message". + if parts := bytes.SplitN(b, []byte{':'}, 3); len(parts) != 3 || len(parts[0]) < 1 || len(parts[2]) < 1 { + text = fmt.Sprintf("bad log format: %s", b) + } else { + file = string(parts[0]) + text = string(parts[2][1:]) // skip leading space + line, err = strconv.Atoi(string(parts[1])) + if err != nil { + text = fmt.Sprintf("bad line number: %s", b) + line = 1 + } + } + // printWithFileLine with alsoToStderr=true, so standard log messages + // always appear on standard error. + logging.printWithFileLine(severity(lb), file, line, true, text) + return len(b), nil +} + +// setV computes and remembers the V level for a given PC +// when vmodule is enabled. +// File pattern matching takes the basename of the file, stripped +// of its .go suffix, and uses filepath.Match, which is a little more +// general than the *? matching used in C++. +// l.mu is held. +func (l *loggingT) setV(pc uintptr) Level { + fn := runtime.FuncForPC(pc) + file, _ := fn.FileLine(pc) + // The file is something like /a/b/c/d.go. We want just the d. + if strings.HasSuffix(file, ".go") { + file = file[:len(file)-3] + } + if slash := strings.LastIndex(file, "/"); slash >= 0 { + file = file[slash+1:] + } + for _, filter := range l.vmodule.filter { + if filter.match(file) { + l.vmap[pc] = filter.level + return filter.level + } + } + l.vmap[pc] = 0 + return 0 +} + +// Verbose is a boolean type that implements Infof (like Printf) etc. +// See the documentation of V for more information. +type Verbose bool + +// V reports whether verbosity at the call site is at least the requested level. +// The returned value is a boolean of type Verbose, which implements Info, Infoln +// and Infof. These methods will write to the Info log if called. +// Thus, one may write either +// if glog.V(2) { glog.Info("log this") } +// or +// glog.V(2).Info("log this") +// The second form is shorter but the first is cheaper if logging is off because it does +// not evaluate its arguments. +// +// Whether an individual call to V generates a log record depends on the setting of +// the -v and --vmodule flags; both are off by default. If the level in the call to +// V is at least the value of -v, or of -vmodule for the source file containing the +// call, the V call will log. +func V(level Level) Verbose { + // This function tries hard to be cheap unless there's work to do. + // The fast path is two atomic loads and compares. + + // Here is a cheap but safe test to see if V logging is enabled globally. + if logging.verbosity.get() >= level { + return Verbose(true) + } + + // It's off globally but it vmodule may still be set. + // Here is another cheap but safe test to see if vmodule is enabled. + if atomic.LoadInt32(&logging.filterLength) > 0 { + // Now we need a proper lock to use the logging structure. The pcs field + // is shared so we must lock before accessing it. This is fairly expensive, + // but if V logging is enabled we're slow anyway. + logging.mu.Lock() + defer logging.mu.Unlock() + if runtime.Callers(2, logging.pcs[:]) == 0 { + return Verbose(false) + } + v, ok := logging.vmap[logging.pcs[0]] + if !ok { + v = logging.setV(logging.pcs[0]) + } + return Verbose(v >= level) + } + return Verbose(false) +} + +// Info is equivalent to the global Info function, guarded by the value of v. +// See the documentation of V for usage. +func (v Verbose) Info(args ...interface{}) { + if v { + logging.print(infoLog, args...) + } +} + +// Infoln is equivalent to the global Infoln function, guarded by the value of v. +// See the documentation of V for usage. +func (v Verbose) Infoln(args ...interface{}) { + if v { + logging.println(infoLog, args...) + } +} + +// Infof is equivalent to the global Infof function, guarded by the value of v. +// See the documentation of V for usage. +func (v Verbose) Infof(format string, args ...interface{}) { + if v { + logging.printf(infoLog, format, args...) + } +} + +// Info logs to the INFO log. +// Arguments are handled in the manner of fmt.Print; a newline is appended if missing. +func Info(args ...interface{}) { + logging.print(infoLog, args...) +} + +// InfoDepth acts as Info but uses depth to determine which call frame to log. +// InfoDepth(0, "msg") is the same as Info("msg"). +func InfoDepth(depth int, args ...interface{}) { + logging.printDepth(infoLog, depth, args...) +} + +// Infoln logs to the INFO log. +// Arguments are handled in the manner of fmt.Println; a newline is appended if missing. +func Infoln(args ...interface{}) { + logging.println(infoLog, args...) +} + +// Infof logs to the INFO log. +// Arguments are handled in the manner of fmt.Printf; a newline is appended if missing. +func Infof(format string, args ...interface{}) { + logging.printf(infoLog, format, args...) +} + +// Warning logs to the WARNING and INFO logs. +// Arguments are handled in the manner of fmt.Print; a newline is appended if missing. +func Warning(args ...interface{}) { + logging.print(warningLog, args...) +} + +// WarningDepth acts as Warning but uses depth to determine which call frame to log. +// WarningDepth(0, "msg") is the same as Warning("msg"). +func WarningDepth(depth int, args ...interface{}) { + logging.printDepth(warningLog, depth, args...) +} + +// Warningln logs to the WARNING and INFO logs. +// Arguments are handled in the manner of fmt.Println; a newline is appended if missing. +func Warningln(args ...interface{}) { + logging.println(warningLog, args...) +} + +// Warningf logs to the WARNING and INFO logs. +// Arguments are handled in the manner of fmt.Printf; a newline is appended if missing. +func Warningf(format string, args ...interface{}) { + logging.printf(warningLog, format, args...) +} + +// Error logs to the ERROR, WARNING, and INFO logs. +// Arguments are handled in the manner of fmt.Print; a newline is appended if missing. +func Error(args ...interface{}) { + logging.print(errorLog, args...) +} + +// ErrorDepth acts as Error but uses depth to determine which call frame to log. +// ErrorDepth(0, "msg") is the same as Error("msg"). +func ErrorDepth(depth int, args ...interface{}) { + logging.printDepth(errorLog, depth, args...) +} + +// Errorln logs to the ERROR, WARNING, and INFO logs. +// Arguments are handled in the manner of fmt.Println; a newline is appended if missing. +func Errorln(args ...interface{}) { + logging.println(errorLog, args...) +} + +// Errorf logs to the ERROR, WARNING, and INFO logs. +// Arguments are handled in the manner of fmt.Printf; a newline is appended if missing. +func Errorf(format string, args ...interface{}) { + logging.printf(errorLog, format, args...) +} + +// Fatal logs to the FATAL, ERROR, WARNING, and INFO logs, +// including a stack trace of all running goroutines, then calls os.Exit(255). +// Arguments are handled in the manner of fmt.Print; a newline is appended if missing. +func Fatal(args ...interface{}) { + logging.print(fatalLog, args...) +} + +// FatalDepth acts as Fatal but uses depth to determine which call frame to log. +// FatalDepth(0, "msg") is the same as Fatal("msg"). +func FatalDepth(depth int, args ...interface{}) { + logging.printDepth(fatalLog, depth, args...) +} + +// Fatalln logs to the FATAL, ERROR, WARNING, and INFO logs, +// including a stack trace of all running goroutines, then calls os.Exit(255). +// Arguments are handled in the manner of fmt.Println; a newline is appended if missing. +func Fatalln(args ...interface{}) { + logging.println(fatalLog, args...) +} + +// Fatalf logs to the FATAL, ERROR, WARNING, and INFO logs, +// including a stack trace of all running goroutines, then calls os.Exit(255). +// Arguments are handled in the manner of fmt.Printf; a newline is appended if missing. +func Fatalf(format string, args ...interface{}) { + logging.printf(fatalLog, format, args...) +} + +// fatalNoStacks is non-zero if we are to exit without dumping goroutine stacks. +// It allows Exit and relatives to use the Fatal logs. +var fatalNoStacks uint32 + +// Exit logs to the FATAL, ERROR, WARNING, and INFO logs, then calls os.Exit(1). +// Arguments are handled in the manner of fmt.Print; a newline is appended if missing. +func Exit(args ...interface{}) { + atomic.StoreUint32(&fatalNoStacks, 1) + logging.print(fatalLog, args...) +} + +// ExitDepth acts as Exit but uses depth to determine which call frame to log. +// ExitDepth(0, "msg") is the same as Exit("msg"). +func ExitDepth(depth int, args ...interface{}) { + atomic.StoreUint32(&fatalNoStacks, 1) + logging.printDepth(fatalLog, depth, args...) +} + +// Exitln logs to the FATAL, ERROR, WARNING, and INFO logs, then calls os.Exit(1). +func Exitln(args ...interface{}) { + atomic.StoreUint32(&fatalNoStacks, 1) + logging.println(fatalLog, args...) +} + +// Exitf logs to the FATAL, ERROR, WARNING, and INFO logs, then calls os.Exit(1). +// Arguments are handled in the manner of fmt.Printf; a newline is appended if missing. +func Exitf(format string, args ...interface{}) { + atomic.StoreUint32(&fatalNoStacks, 1) + logging.printf(fatalLog, format, args...) +} diff --git a/cluster-autoscaler/vendor/github.com/golang/glog/glog_file.go b/cluster-autoscaler/vendor/github.com/golang/glog/glog_file.go new file mode 100644 index 000000000000..65075d281110 --- /dev/null +++ b/cluster-autoscaler/vendor/github.com/golang/glog/glog_file.go @@ -0,0 +1,124 @@ +// Go support for leveled logs, analogous to https://code.google.com/p/google-glog/ +// +// Copyright 2013 Google Inc. All Rights Reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// File I/O for logs. + +package glog + +import ( + "errors" + "flag" + "fmt" + "os" + "os/user" + "path/filepath" + "strings" + "sync" + "time" +) + +// MaxSize is the maximum size of a log file in bytes. +var MaxSize uint64 = 1024 * 1024 * 1800 + +// logDirs lists the candidate directories for new log files. +var logDirs []string + +// If non-empty, overrides the choice of directory in which to write logs. +// See createLogDirs for the full list of possible destinations. +var logDir = flag.String("log_dir", "", "If non-empty, write log files in this directory") + +func createLogDirs() { + if *logDir != "" { + logDirs = append(logDirs, *logDir) + } + logDirs = append(logDirs, os.TempDir()) +} + +var ( + pid = os.Getpid() + program = filepath.Base(os.Args[0]) + host = "unknownhost" + userName = "unknownuser" +) + +func init() { + h, err := os.Hostname() + if err == nil { + host = shortHostname(h) + } + + current, err := user.Current() + if err == nil { + userName = current.Username + } + + // Sanitize userName since it may contain filepath separators on Windows. + userName = strings.Replace(userName, `\`, "_", -1) +} + +// shortHostname returns its argument, truncating at the first period. +// For instance, given "www.google.com" it returns "www". +func shortHostname(hostname string) string { + if i := strings.Index(hostname, "."); i >= 0 { + return hostname[:i] + } + return hostname +} + +// logName returns a new log file name containing tag, with start time t, and +// the name for the symlink for tag. +func logName(tag string, t time.Time) (name, link string) { + name = fmt.Sprintf("%s.%s.%s.log.%s.%04d%02d%02d-%02d%02d%02d.%d", + program, + host, + userName, + tag, + t.Year(), + t.Month(), + t.Day(), + t.Hour(), + t.Minute(), + t.Second(), + pid) + return name, program + "." + tag +} + +var onceLogDirs sync.Once + +// create creates a new log file and returns the file and its filename, which +// contains tag ("INFO", "FATAL", etc.) and t. If the file is created +// successfully, create also attempts to update the symlink for that tag, ignoring +// errors. +func create(tag string, t time.Time) (f *os.File, filename string, err error) { + onceLogDirs.Do(createLogDirs) + if len(logDirs) == 0 { + return nil, "", errors.New("log: no log dirs") + } + name, link := logName(tag, t) + var lastErr error + for _, dir := range logDirs { + fname := filepath.Join(dir, name) + f, err := os.Create(fname) + if err == nil { + symlink := filepath.Join(dir, link) + os.Remove(symlink) // ignore err + os.Symlink(name, symlink) // ignore err + return f, fname, nil + } + lastErr = err + } + return nil, "", fmt.Errorf("log: cannot create log: %v", lastErr) +} diff --git a/cluster-autoscaler/vendor/k8s.io/apimachinery/pkg/util/proxy/upgradeaware.go b/cluster-autoscaler/vendor/k8s.io/apimachinery/pkg/util/proxy/upgradeaware.go index 2cabb894c1af..3c8e09399f51 100644 --- a/cluster-autoscaler/vendor/k8s.io/apimachinery/pkg/util/proxy/upgradeaware.go +++ b/cluster-autoscaler/vendor/k8s.io/apimachinery/pkg/util/proxy/upgradeaware.go @@ -273,7 +273,7 @@ func (h *UpgradeAwareHandler) tryUpgrade(w http.ResponseWriter, req *http.Reques defer backendConn.Close() // determine the http response code from the backend by reading from rawResponse+backendConn - rawResponseCode, headerBytes, err := getResponseCode(io.MultiReader(bytes.NewReader(rawResponse), backendConn)) + backendHTTPResponse, headerBytes, err := getResponse(io.MultiReader(bytes.NewReader(rawResponse), backendConn)) if err != nil { klog.V(6).Infof("Proxy connection error: %v", err) h.Responder.Error(w, req, err) @@ -300,6 +300,22 @@ func (h *UpgradeAwareHandler) tryUpgrade(w http.ResponseWriter, req *http.Reques } defer requestHijackedConn.Close() + if backendHTTPResponse.StatusCode != http.StatusSwitchingProtocols { + // If the backend did not upgrade the request, echo the response from the backend to the client and return, closing the connection. + klog.V(6).Infof("Proxy upgrade error, status code %d", backendHTTPResponse.StatusCode) + // set read/write deadlines + deadline := time.Now().Add(10 * time.Second) + backendConn.SetReadDeadline(deadline) + requestHijackedConn.SetWriteDeadline(deadline) + // write the response to the client + err := backendHTTPResponse.Write(requestHijackedConn) + if err != nil && !strings.Contains(err.Error(), "use of closed network connection") { + klog.Errorf("Error proxying data from backend to client: %v", err) + } + // Indicate we handled the request + return true + } + // Forward raw response bytes back to client. if len(rawResponse) > 0 { klog.V(6).Infof("Writing %d bytes to hijacked connection", len(rawResponse)) @@ -308,17 +324,6 @@ func (h *UpgradeAwareHandler) tryUpgrade(w http.ResponseWriter, req *http.Reques } } - if rawResponseCode != http.StatusSwitchingProtocols { - // If the backend did not upgrade the request, finish echoing the response from the backend to the client and return, closing the connection. - klog.V(6).Infof("Proxy upgrade error, status code %d", rawResponseCode) - _, err := io.Copy(requestHijackedConn, backendConn) - if err != nil && !strings.Contains(err.Error(), "use of closed network connection") { - klog.Errorf("Error proxying data from backend to client: %v", err) - } - // Indicate we handled the request - return true - } - // Proxy the connection. This is bidirectional, so we need a goroutine // to copy in each direction. Once one side of the connection exits, we // exit the function which performs cleanup and in the process closes @@ -380,17 +385,17 @@ func (h *UpgradeAwareHandler) DialForUpgrade(req *http.Request) (net.Conn, error return dial(updatedReq, h.UpgradeTransport) } -// getResponseCode reads a http response from the given reader, returns the status code, +// getResponseCode reads a http response from the given reader, returns the response, // the bytes read from the reader, and any error encountered -func getResponseCode(r io.Reader) (int, []byte, error) { +func getResponse(r io.Reader) (*http.Response, []byte, error) { rawResponse := bytes.NewBuffer(make([]byte, 0, 256)) // Save the bytes read while reading the response headers into the rawResponse buffer resp, err := http.ReadResponse(bufio.NewReader(io.TeeReader(r, rawResponse)), nil) if err != nil { - return 0, nil, err + return nil, nil, err } - // return the http status code and the raw bytes consumed from the reader in the process - return resp.StatusCode, rawResponse.Bytes(), nil + // return the http response and the raw bytes consumed from the reader in the process + return resp, rawResponse.Bytes(), nil } // dial dials the backend at req.URL and writes req to it. diff --git a/cluster-autoscaler/vendor/k8s.io/apiserver/pkg/util/webhook/authentication.go b/cluster-autoscaler/vendor/k8s.io/apiserver/pkg/util/webhook/authentication.go index 1d1c0ad3bc9d..dd0f4e5e663c 100644 --- a/cluster-autoscaler/vendor/k8s.io/apiserver/pkg/util/webhook/authentication.go +++ b/cluster-autoscaler/vendor/k8s.io/apiserver/pkg/util/webhook/authentication.go @@ -177,6 +177,7 @@ func restConfigFromKubeconfig(configAuthInfo *clientcmdapi.AuthInfo) (*rest.Conf return nil, err } config.BearerToken = string(tokenBytes) + config.BearerTokenFile = configAuthInfo.TokenFile } if len(configAuthInfo.Impersonate) > 0 { config.Impersonate = rest.ImpersonationConfig{ diff --git a/cluster-autoscaler/vendor/k8s.io/client-go/rest/BUILD b/cluster-autoscaler/vendor/k8s.io/client-go/rest/BUILD index 70920303e4e4..9f00aac950e7 100644 --- a/cluster-autoscaler/vendor/k8s.io/client-go/rest/BUILD +++ b/cluster-autoscaler/vendor/k8s.io/client-go/rest/BUILD @@ -13,7 +13,6 @@ go_test( "config_test.go", "plugin_test.go", "request_test.go", - "token_source_test.go", "url_utils_test.go", "urlbackoff_test.go", ], @@ -41,7 +40,6 @@ go_test( "//staging/src/k8s.io/client-go/util/testing:go_default_library", "//vendor/github.com/google/gofuzz:go_default_library", "//vendor/github.com/stretchr/testify/assert:go_default_library", - "//vendor/golang.org/x/oauth2:go_default_library", "//vendor/k8s.io/klog:go_default_library", ], ) @@ -53,7 +51,6 @@ go_library( "config.go", "plugin.go", "request.go", - "token_source.go", "transport.go", "url_utils.go", "urlbackoff.go", @@ -80,7 +77,6 @@ go_library( "//staging/src/k8s.io/client-go/util/cert:go_default_library", "//staging/src/k8s.io/client-go/util/flowcontrol:go_default_library", "//vendor/golang.org/x/net/http2:go_default_library", - "//vendor/golang.org/x/oauth2:go_default_library", "//vendor/k8s.io/klog:go_default_library", ], ) diff --git a/cluster-autoscaler/vendor/k8s.io/client-go/rest/config.go b/cluster-autoscaler/vendor/k8s.io/client-go/rest/config.go index 438eb3bedac0..072e7392b191 100644 --- a/cluster-autoscaler/vendor/k8s.io/client-go/rest/config.go +++ b/cluster-autoscaler/vendor/k8s.io/client-go/rest/config.go @@ -70,6 +70,11 @@ type Config struct { // TODO: demonstrate an OAuth2 compatible client. BearerToken string + // Path to a file containing a BearerToken. + // If set, the contents are periodically read. + // The last successfully read value takes precedence over BearerToken. + BearerTokenFile string + // Impersonate is the configuration that RESTClient will use for impersonation. Impersonate ImpersonationConfig @@ -322,9 +327,8 @@ func InClusterConfig() (*Config, error) { return nil, ErrNotInCluster } - ts := NewCachedFileTokenSource(tokenFile) - - if _, err := ts.Token(); err != nil { + token, err := ioutil.ReadFile(tokenFile) + if err != nil { return nil, err } @@ -340,7 +344,8 @@ func InClusterConfig() (*Config, error) { // TODO: switch to using cluster DNS. Host: "https://" + net.JoinHostPort(host, port), TLSClientConfig: tlsClientConfig, - WrapTransport: TokenSourceWrapTransport(ts), + BearerToken: string(token), + BearerTokenFile: tokenFile, }, nil } @@ -430,12 +435,13 @@ func AnonymousClientConfig(config *Config) *Config { // CopyConfig returns a copy of the given config func CopyConfig(config *Config) *Config { return &Config{ - Host: config.Host, - APIPath: config.APIPath, - ContentConfig: config.ContentConfig, - Username: config.Username, - Password: config.Password, - BearerToken: config.BearerToken, + Host: config.Host, + APIPath: config.APIPath, + ContentConfig: config.ContentConfig, + Username: config.Username, + Password: config.Password, + BearerToken: config.BearerToken, + BearerTokenFile: config.BearerTokenFile, Impersonate: ImpersonationConfig{ Groups: config.Impersonate.Groups, Extra: config.Impersonate.Extra, diff --git a/cluster-autoscaler/vendor/k8s.io/client-go/tools/clientcmd/client_config.go b/cluster-autoscaler/vendor/k8s.io/client-go/tools/clientcmd/client_config.go index dea229c91825..a7b8c1c6e42b 100644 --- a/cluster-autoscaler/vendor/k8s.io/client-go/tools/clientcmd/client_config.go +++ b/cluster-autoscaler/vendor/k8s.io/client-go/tools/clientcmd/client_config.go @@ -229,11 +229,12 @@ func (config *DirectClientConfig) getUserIdentificationPartialConfig(configAuthI if len(configAuthInfo.Token) > 0 { mergedConfig.BearerToken = configAuthInfo.Token } else if len(configAuthInfo.TokenFile) > 0 { - ts := restclient.NewCachedFileTokenSource(configAuthInfo.TokenFile) - if _, err := ts.Token(); err != nil { + tokenBytes, err := ioutil.ReadFile(configAuthInfo.TokenFile) + if err != nil { return nil, err } - mergedConfig.WrapTransport = restclient.TokenSourceWrapTransport(ts) + mergedConfig.BearerToken = string(tokenBytes) + mergedConfig.BearerTokenFile = configAuthInfo.TokenFile } if len(configAuthInfo.Impersonate) > 0 { mergedConfig.Impersonate = restclient.ImpersonationConfig{ diff --git a/cluster-autoscaler/vendor/k8s.io/client-go/transport/BUILD b/cluster-autoscaler/vendor/k8s.io/client-go/transport/BUILD index dc1800681d3f..643750e25638 100644 --- a/cluster-autoscaler/vendor/k8s.io/client-go/transport/BUILD +++ b/cluster-autoscaler/vendor/k8s.io/client-go/transport/BUILD @@ -11,9 +11,11 @@ go_test( srcs = [ "cache_test.go", "round_trippers_test.go", + "token_source_test.go", "transport_test.go", ], embed = [":go_default_library"], + deps = ["//vendor/golang.org/x/oauth2:go_default_library"], ) go_library( @@ -22,12 +24,14 @@ go_library( "cache.go", "config.go", "round_trippers.go", + "token_source.go", "transport.go", ], importmap = "k8s.io/kubernetes/vendor/k8s.io/client-go/transport", importpath = "k8s.io/client-go/transport", deps = [ "//staging/src/k8s.io/apimachinery/pkg/util/net:go_default_library", + "//vendor/golang.org/x/oauth2:go_default_library", "//vendor/k8s.io/klog:go_default_library", ], ) diff --git a/cluster-autoscaler/vendor/k8s.io/client-go/transport/config.go b/cluster-autoscaler/vendor/k8s.io/client-go/transport/config.go index 4081c23e7ff0..acb126d8b09c 100644 --- a/cluster-autoscaler/vendor/k8s.io/client-go/transport/config.go +++ b/cluster-autoscaler/vendor/k8s.io/client-go/transport/config.go @@ -39,6 +39,11 @@ type Config struct { // Bearer token for authentication BearerToken string + // Path to a file containing a BearerToken. + // If set, the contents are periodically read. + // The last successfully read value takes precedence over BearerToken. + BearerTokenFile string + // Impersonate is the config that this Config will impersonate using Impersonate ImpersonationConfig @@ -80,7 +85,7 @@ func (c *Config) HasBasicAuth() bool { // HasTokenAuth returns whether the configuration has token authentication or not. func (c *Config) HasTokenAuth() bool { - return len(c.BearerToken) != 0 + return len(c.BearerToken) != 0 || len(c.BearerTokenFile) != 0 } // HasCertAuth returns whether the configuration has certificate authentication or not. diff --git a/cluster-autoscaler/vendor/k8s.io/client-go/transport/round_trippers.go b/cluster-autoscaler/vendor/k8s.io/client-go/transport/round_trippers.go index da417cf96ea0..117a9c8c4de4 100644 --- a/cluster-autoscaler/vendor/k8s.io/client-go/transport/round_trippers.go +++ b/cluster-autoscaler/vendor/k8s.io/client-go/transport/round_trippers.go @@ -22,6 +22,7 @@ import ( "strings" "time" + "golang.org/x/oauth2" "k8s.io/klog" utilnet "k8s.io/apimachinery/pkg/util/net" @@ -44,7 +45,11 @@ func HTTPWrappersForConfig(config *Config, rt http.RoundTripper) (http.RoundTrip case config.HasBasicAuth() && config.HasTokenAuth(): return nil, fmt.Errorf("username/password or bearer token may be set, but not both") case config.HasTokenAuth(): - rt = NewBearerAuthRoundTripper(config.BearerToken, rt) + var err error + rt, err = NewBearerAuthWithRefreshRoundTripper(config.BearerToken, config.BearerTokenFile, rt) + if err != nil { + return nil, err + } case config.HasBasicAuth(): rt = NewBasicAuthRoundTripper(config.Username, config.Password, rt) } @@ -265,13 +270,35 @@ func (rt *impersonatingRoundTripper) WrappedRoundTripper() http.RoundTripper { r type bearerAuthRoundTripper struct { bearer string + source oauth2.TokenSource rt http.RoundTripper } // NewBearerAuthRoundTripper adds the provided bearer token to a request // unless the authorization header has already been set. func NewBearerAuthRoundTripper(bearer string, rt http.RoundTripper) http.RoundTripper { - return &bearerAuthRoundTripper{bearer, rt} + return &bearerAuthRoundTripper{bearer, nil, rt} +} + +// NewBearerAuthRoundTripper adds the provided bearer token to a request +// unless the authorization header has already been set. +// If tokenFile is non-empty, it is periodically read, +// and the last successfully read content is used as the bearer token. +// If tokenFile is non-empty and bearer is empty, the tokenFile is read +// immediately to populate the initial bearer token. +func NewBearerAuthWithRefreshRoundTripper(bearer string, tokenFile string, rt http.RoundTripper) (http.RoundTripper, error) { + if len(tokenFile) == 0 { + return &bearerAuthRoundTripper{bearer, nil, rt}, nil + } + source := NewCachedFileTokenSource(tokenFile) + if len(bearer) == 0 { + token, err := source.Token() + if err != nil { + return nil, err + } + bearer = token.AccessToken + } + return &bearerAuthRoundTripper{bearer, source, rt}, nil } func (rt *bearerAuthRoundTripper) RoundTrip(req *http.Request) (*http.Response, error) { @@ -280,7 +307,13 @@ func (rt *bearerAuthRoundTripper) RoundTrip(req *http.Request) (*http.Response, } req = utilnet.CloneRequest(req) - req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", rt.bearer)) + token := rt.bearer + if rt.source != nil { + if refreshedToken, err := rt.source.Token(); err == nil { + token = refreshedToken.AccessToken + } + } + req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", token)) return rt.rt.RoundTrip(req) } diff --git a/cluster-autoscaler/vendor/k8s.io/client-go/rest/token_source.go b/cluster-autoscaler/vendor/k8s.io/client-go/transport/token_source.go similarity index 87% rename from cluster-autoscaler/vendor/k8s.io/client-go/rest/token_source.go rename to cluster-autoscaler/vendor/k8s.io/client-go/transport/token_source.go index c251b5eb0bb6..8595df271694 100644 --- a/cluster-autoscaler/vendor/k8s.io/client-go/rest/token_source.go +++ b/cluster-autoscaler/vendor/k8s.io/client-go/transport/token_source.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package rest +package transport import ( "fmt" @@ -47,14 +47,14 @@ func TokenSourceWrapTransport(ts oauth2.TokenSource) func(http.RoundTripper) htt func NewCachedFileTokenSource(path string) oauth2.TokenSource { return &cachingTokenSource{ now: time.Now, - leeway: 1 * time.Minute, + leeway: 10 * time.Second, base: &fileTokenSource{ path: path, - // This period was picked because it is half of the minimum validity - // duration for a token provisioned by they TokenRequest API. This is - // unsophisticated and should induce rotation at a frequency that should - // work with the token volume source. - period: 5 * time.Minute, + // This period was picked because it is half of the duration between when the kubelet + // refreshes a projected service account token and when the original token expires. + // Default token lifetime is 10 minutes, and the kubelet starts refreshing at 80% of lifetime. + // This should induce re-reading at a frequency that works with the token volume source. + period: time.Minute, }, } } diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/apis/autoscaling/v2beta1/BUILD b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/apis/autoscaling/v2beta1/BUILD index 47d21ddb94ee..5fbc372b4583 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/apis/autoscaling/v2beta1/BUILD +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/apis/autoscaling/v2beta1/BUILD @@ -26,7 +26,10 @@ go_library( go_test( name = "go_default_test", - srcs = ["defaults_test.go"], + srcs = [ + "conversion_test.go", + "defaults_test.go", + ], embed = [":go_default_library"], deps = [ "//pkg/api/legacyscheme:go_default_library", @@ -37,6 +40,7 @@ go_test( "//staging/src/k8s.io/api/core/v1:go_default_library", "//staging/src/k8s.io/apimachinery/pkg/api/equality:go_default_library", "//staging/src/k8s.io/apimachinery/pkg/runtime:go_default_library", + "//vendor/github.com/stretchr/testify/assert:go_default_library", "//vendor/k8s.io/utils/pointer:go_default_library", ], ) diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/apis/autoscaling/v2beta1/conversion.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/apis/autoscaling/v2beta1/conversion.go index eebc10430534..142cf726493f 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/apis/autoscaling/v2beta1/conversion.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/apis/autoscaling/v2beta1/conversion.go @@ -185,8 +185,10 @@ func Convert_v2beta1_ObjectMetricSource_To_autoscaling_ObjectMetricSource(in *au } func Convert_autoscaling_PodsMetricSource_To_v2beta1_PodsMetricSource(in *autoscaling.PodsMetricSource, out *autoscalingv2beta1.PodsMetricSource, s conversion.Scope) error { - targetAverageValue := *in.Target.AverageValue - out.TargetAverageValue = targetAverageValue + if in.Target.AverageValue != nil { + targetAverageValue := *in.Target.AverageValue + out.TargetAverageValue = targetAverageValue + } out.MetricName = in.Metric.Name out.Selector = in.Metric.Selector @@ -247,8 +249,10 @@ func Convert_autoscaling_ObjectMetricStatus_To_v2beta1_ObjectMetricStatus(in *au } out.MetricName = in.Metric.Name out.Selector = in.Metric.Selector - currentAverageValue := *in.Current.AverageValue - out.AverageValue = ¤tAverageValue + if in.Current.AverageValue != nil { + currentAverageValue := *in.Current.AverageValue + out.AverageValue = ¤tAverageValue + } return nil } diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/cloudprovider/providers/azure/azure_controller_standard.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/cloudprovider/providers/azure/azure_controller_standard.go index b21964b215ea..f600209e284a 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/cloudprovider/providers/azure/azure_controller_standard.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/cloudprovider/providers/azure/azure_controller_standard.go @@ -68,6 +68,7 @@ func (as *availabilitySet) AttachDisk(isManagedDisk bool, diskName, diskURI stri newVM := compute.VirtualMachine{ Location: vm.Location, VirtualMachineProperties: &compute.VirtualMachineProperties{ + HardwareProfile: vm.HardwareProfile, StorageProfile: &compute.StorageProfile{ DataDisks: &disks, }, @@ -77,6 +78,9 @@ func (as *availabilitySet) AttachDisk(isManagedDisk bool, diskName, diskURI stri ctx, cancel := getContextWithCancel() defer cancel() + // Invalidate the cache right after updating + defer as.cloud.vmCache.Delete(vmName) + _, err = as.VirtualMachinesClient.CreateOrUpdate(ctx, nodeResourceGroup, vmName, newVM) if err != nil { klog.Errorf("azureDisk - attach disk(%s) failed, err: %v", diskName, err) @@ -88,8 +92,6 @@ func (as *availabilitySet) AttachDisk(isManagedDisk bool, diskName, diskURI stri } } else { klog.V(2).Infof("azureDisk - attach disk(%s) succeeded", diskName) - // Invalidate the cache right after updating - as.cloud.vmCache.Delete(vmName) } return err } @@ -131,6 +133,7 @@ func (as *availabilitySet) DetachDiskByName(diskName, diskURI string, nodeName t newVM := compute.VirtualMachine{ Location: vm.Location, VirtualMachineProperties: &compute.VirtualMachineProperties{ + HardwareProfile: vm.HardwareProfile, StorageProfile: &compute.StorageProfile{ DataDisks: &disks, }, @@ -139,13 +142,15 @@ func (as *availabilitySet) DetachDiskByName(diskName, diskURI string, nodeName t klog.V(2).Infof("azureDisk - update(%s): vm(%s) - detach disk(%s)", nodeResourceGroup, vmName, diskName) ctx, cancel := getContextWithCancel() defer cancel() + + // Invalidate the cache right after updating + defer as.cloud.vmCache.Delete(vmName) + _, err = as.VirtualMachinesClient.CreateOrUpdate(ctx, nodeResourceGroup, vmName, newVM) if err != nil { klog.Errorf("azureDisk - detach disk(%s) failed, err: %v", diskName, err) } else { klog.V(2).Infof("azureDisk - detach disk(%s) succeeded", diskName) - // Invalidate the cache right after updating - as.cloud.vmCache.Delete(vmName) } return err } diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/cloudprovider/providers/azure/azure_controller_vmss.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/cloudprovider/providers/azure/azure_controller_vmss.go index b11705fdfc06..80a27bf03854 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/cloudprovider/providers/azure/azure_controller_vmss.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/cloudprovider/providers/azure/azure_controller_vmss.go @@ -67,13 +67,27 @@ func (ss *scaleSet) AttachDisk(isManagedDisk bool, diskName, diskURI string, nod CreateOption: "attach", }) } - vm.StorageProfile.DataDisks = &disks + newVM := compute.VirtualMachineScaleSetVM{ + Sku: vm.Sku, + Location: vm.Location, + VirtualMachineScaleSetVMProperties: &compute.VirtualMachineScaleSetVMProperties{ + HardwareProfile: vm.HardwareProfile, + StorageProfile: &compute.StorageProfile{ + OsDisk: vm.StorageProfile.OsDisk, + DataDisks: &disks, + }, + }, + } ctx, cancel := getContextWithCancel() defer cancel() - klog.V(2).Infof("azureDisk - update(%s): vm(%s) - attach disk(%s)", nodeResourceGroup, nodeName, diskName) - _, err = ss.VirtualMachineScaleSetVMsClient.Update(ctx, nodeResourceGroup, ssName, instanceID, vm) + // Invalidate the cache right after updating + key := buildVmssCacheKey(nodeResourceGroup, ss.makeVmssVMName(ssName, instanceID)) + defer ss.vmssVMCache.Delete(key) + + klog.V(2).Infof("azureDisk - update(%s): vm(%s) - attach disk(%s)", nodeResourceGroup, nodeName, diskName) + _, err = ss.VirtualMachineScaleSetVMsClient.Update(ctx, nodeResourceGroup, ssName, instanceID, newVM) if err != nil { detail := err.Error() if strings.Contains(detail, errLeaseFailed) || strings.Contains(detail, errDiskBlobNotFound) { @@ -83,9 +97,6 @@ func (ss *scaleSet) AttachDisk(isManagedDisk bool, diskName, diskURI string, nod } } else { klog.V(2).Infof("azureDisk - attach disk(%s) succeeded", diskName) - // Invalidate the cache right after updating - key := buildVmssCacheKey(nodeResourceGroup, ss.makeVmssVMName(ssName, instanceID)) - ss.vmssVMCache.Delete(key) } return err } @@ -125,18 +136,31 @@ func (ss *scaleSet) DetachDiskByName(diskName, diskURI string, nodeName types.No return fmt.Errorf("detach azure disk failure, disk %s not found, diskURI: %s", diskName, diskURI) } - vm.StorageProfile.DataDisks = &disks + newVM := compute.VirtualMachineScaleSetVM{ + Sku: vm.Sku, + Location: vm.Location, + VirtualMachineScaleSetVMProperties: &compute.VirtualMachineScaleSetVMProperties{ + HardwareProfile: vm.HardwareProfile, + StorageProfile: &compute.StorageProfile{ + OsDisk: vm.StorageProfile.OsDisk, + DataDisks: &disks, + }, + }, + } + ctx, cancel := getContextWithCancel() defer cancel() + + // Invalidate the cache right after updating + key := buildVmssCacheKey(nodeResourceGroup, ss.makeVmssVMName(ssName, instanceID)) + defer ss.vmssVMCache.Delete(key) + klog.V(2).Infof("azureDisk - update(%s): vm(%s) - detach disk(%s)", nodeResourceGroup, nodeName, diskName) - _, err = ss.VirtualMachineScaleSetVMsClient.Update(ctx, nodeResourceGroup, ssName, instanceID, vm) + _, err = ss.VirtualMachineScaleSetVMsClient.Update(ctx, nodeResourceGroup, ssName, instanceID, newVM) if err != nil { klog.Errorf("azureDisk - detach disk(%s) from %s failed, err: %v", diskName, nodeName, err) } else { klog.V(2).Infof("azureDisk - detach disk(%s) succeeded", diskName) - // Invalidate the cache right after updating - key := buildVmssCacheKey(nodeResourceGroup, ss.makeVmssVMName(ssName, instanceID)) - ss.vmssVMCache.Delete(key) } return err diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/cloudprovider/providers/azure/azure_instances.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/cloudprovider/providers/azure/azure_instances.go index 158ffb976ca8..abfaf331158d 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/cloudprovider/providers/azure/azure_instances.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/cloudprovider/providers/azure/azure_instances.go @@ -96,7 +96,8 @@ func (az *Cloud) NodeAddresses(ctx context.Context, name types.NodeName) ([]v1.N addresses := []v1.NodeAddress{ {Type: v1.NodeHostName, Address: string(name)}, } - for _, address := range ipAddress.IPV4.IPAddress { + if len(ipAddress.IPV4.IPAddress) > 0 && len(ipAddress.IPV4.IPAddress[0].PrivateIP) > 0 { + address := ipAddress.IPV4.IPAddress[0] addresses = append(addresses, v1.NodeAddress{ Type: v1.NodeInternalIP, Address: address.PrivateIP, @@ -108,7 +109,8 @@ func (az *Cloud) NodeAddresses(ctx context.Context, name types.NodeName) ([]v1.N }) } } - for _, address := range ipAddress.IPV6.IPAddress { + if len(ipAddress.IPV6.IPAddress) > 0 && len(ipAddress.IPV6.IPAddress[0].PrivateIP) > 0 { + address := ipAddress.IPV6.IPAddress[0] addresses = append(addresses, v1.NodeAddress{ Type: v1.NodeInternalIP, Address: address.PrivateIP, @@ -120,6 +122,13 @@ func (az *Cloud) NodeAddresses(ctx context.Context, name types.NodeName) ([]v1.N }) } } + + if len(addresses) == 1 { + // No IP addresses is got from instance metadata service, clean up cache and report errors. + az.metadata.imsCache.Delete(metadataCacheKey) + return nil, fmt.Errorf("get empty IP addresses from instance metadata service") + } + return addresses, nil } diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/cloudprovider/providers/gce/cloud/gen.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/cloudprovider/providers/gce/cloud/gen.go index a3e7cd2c657a..f51ec77f0df0 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/cloudprovider/providers/gce/cloud/gen.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/cloudprovider/providers/gce/cloud/gen.go @@ -1,5 +1,5 @@ /* -Copyright 2018 The Kubernetes Authors. +Copyright 2019 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/BUILD b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/BUILD index fd5e6391c517..cdd40d9a99af 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/BUILD +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/BUILD @@ -165,6 +165,7 @@ go_test( "kubelet_pods_windows_test.go", "kubelet_resources_test.go", "kubelet_test.go", + "kubelet_volumes_linux_test.go", "kubelet_volumes_test.go", "main_test.go", "oom_watcher_test.go", diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/config/defaults.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/config/defaults.go index 96ab9cebac8f..43f7162bfd8b 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/config/defaults.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/config/defaults.go @@ -19,6 +19,7 @@ package config const ( DefaultKubeletPodsDirName = "pods" DefaultKubeletVolumesDirName = "volumes" + DefaultKubeletVolumeSubpathsDirName = "volume-subpaths" DefaultKubeletVolumeDevicesDirName = "volumeDevices" DefaultKubeletPluginsDirName = "plugins" DefaultKubeletPluginsRegistrationDirName = "plugins_registry" diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/kubelet_getters.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/kubelet_getters.go index eb05a578c077..a577a6bfad77 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/kubelet_getters.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/kubelet_getters.go @@ -25,7 +25,7 @@ import ( cadvisorapiv1 "github.com/google/cadvisor/info/v1" "k8s.io/klog" - "k8s.io/api/core/v1" + v1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/types" "k8s.io/kubernetes/pkg/kubelet/cm" "k8s.io/kubernetes/pkg/kubelet/config" @@ -99,6 +99,13 @@ func (kl *Kubelet) getPodDir(podUID types.UID) string { return filepath.Join(kl.getPodsDir(), string(podUID)) } +// getPodVolumesSubpathsDir returns the full path to the per-pod subpaths directory under +// which subpath volumes are created for the specified pod. This directory may not +// exist if the pod does not exist or subpaths are not specified. +func (kl *Kubelet) getPodVolumeSubpathsDir(podUID types.UID) string { + return filepath.Join(kl.getPodDir(podUID), config.DefaultKubeletVolumeSubpathsDirName) +} + // getPodVolumesDir returns the full path to the per-pod data directory under // which volumes are created for the specified pod. This directory may not // exist if the pod does not exist. @@ -315,6 +322,19 @@ func (kl *Kubelet) getMountedVolumePathListFromDisk(podUID types.UID) ([]string, return mountedVolumes, nil } +// podVolumesSubpathsDirExists returns true if the pod volume-subpaths directory for +// a given pod exists +func (kl *Kubelet) podVolumeSubpathsDirExists(podUID types.UID) (bool, error) { + podVolDir := kl.getPodVolumeSubpathsDir(podUID) + + if pathExists, pathErr := volumeutil.PathExists(podVolDir); pathErr != nil { + return true, fmt.Errorf("Error checking if path %q exists: %v", podVolDir, pathErr) + } else if !pathExists { + return false, nil + } + return true, nil +} + // GetVersionInfo returns information about the version of cAdvisor in use. func (kl *Kubelet) GetVersionInfo() (*cadvisorapiv1.VersionInfo, error) { return kl.cadvisor.VersionInfo() diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/kubelet_volumes.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/kubelet_volumes.go index 7681ee6529e9..88b34c5efd11 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/kubelet_volumes.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/kubelet_volumes.go @@ -19,7 +19,7 @@ package kubelet import ( "fmt" - "k8s.io/api/core/v1" + v1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/types" utilerrors "k8s.io/apimachinery/pkg/util/errors" "k8s.io/apimachinery/pkg/util/sets" @@ -114,6 +114,8 @@ func (kl *Kubelet) cleanupOrphanedPodDirs(pods []*v1.Pod, runningPods []*kubecon } // If volumes have not been unmounted/detached, do not delete directory. // Doing so may result in corruption of data. + // TODO: getMountedVolumePathListFromDisk() call may be redundant with + // kl.getPodVolumePathListFromDisk(). Can this be cleaned up? if podVolumesExist := kl.podVolumesExist(uid); podVolumesExist { klog.V(3).Infof("Orphaned pod %q found, but volumes are not cleaned up", uid) continue @@ -128,6 +130,18 @@ func (kl *Kubelet) cleanupOrphanedPodDirs(pods []*v1.Pod, runningPods []*kubecon orphanVolumeErrors = append(orphanVolumeErrors, fmt.Errorf("Orphaned pod %q found, but volume paths are still present on disk", uid)) continue } + + // If there are any volume-subpaths, do not cleanup directories + volumeSubpathExists, err := kl.podVolumeSubpathsDirExists(uid) + if err != nil { + orphanVolumeErrors = append(orphanVolumeErrors, fmt.Errorf("Orphaned pod %q found, but error %v occurred during reading of volume-subpaths dir from disk", uid, err)) + continue + } + if volumeSubpathExists { + orphanVolumeErrors = append(orphanVolumeErrors, fmt.Errorf("Orphaned pod %q found, but volume subpaths are still present on disk", uid)) + continue + } + klog.V(3).Infof("Orphaned pod %q found, removing", uid) if err := removeall.RemoveAllOneFilesystem(kl.mounter, kl.getPodDir(uid)); err != nil { klog.Errorf("Failed to remove orphaned pod %q dir; err: %v", uid, err) diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/kuberuntime/kuberuntime_sandbox.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/kuberuntime/kuberuntime_sandbox.go index dd51bda32ca9..cf0db44db069 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/kuberuntime/kuberuntime_sandbox.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/kuberuntime/kuberuntime_sandbox.go @@ -57,6 +57,9 @@ func (m *kubeGenericRuntimeManager) createPodSandbox(pod *v1.Pod, attempt uint32 message := fmt.Sprintf("CreatePodSandbox for pod %q failed: %v", format.Pod(pod), err) return "", message, err } + if runtimeHandler != "" { + klog.V(2).Infof("Running pod %s with RuntimeHandler %q", format.Pod(pod), runtimeHandler) + } } podSandBoxID, err := m.runtimeService.RunPodSandbox(podSandboxConfig, runtimeHandler) diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/server/stats/BUILD b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/server/stats/BUILD index 6fec6f2eb998..dde9b3cbc7dc 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/server/stats/BUILD +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/server/stats/BUILD @@ -18,6 +18,7 @@ go_library( "//pkg/kubelet/apis/stats/v1alpha1:go_default_library", "//pkg/kubelet/cm:go_default_library", "//pkg/kubelet/container:go_default_library", + "//pkg/kubelet/util:go_default_library", "//pkg/kubelet/util/format:go_default_library", "//pkg/volume:go_default_library", "//staging/src/k8s.io/api/core/v1:go_default_library", diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/server/stats/summary.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/server/stats/summary.go index fb646c5d2f31..93aef69ed87d 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/server/stats/summary.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/server/stats/summary.go @@ -19,7 +19,11 @@ package stats import ( "fmt" + "k8s.io/klog" + + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" statsapi "k8s.io/kubernetes/pkg/kubelet/apis/stats/v1alpha1" + "k8s.io/kubernetes/pkg/kubelet/util" ) type SummaryProvider interface { @@ -32,6 +36,11 @@ type SummaryProvider interface { // summaryProviderImpl implements the SummaryProvider interface. type summaryProviderImpl struct { + // kubeletCreationTime is the time at which the summaryProvider was created. + kubeletCreationTime metav1.Time + // systemBootTime is the time at which the system was started + systemBootTime metav1.Time + provider StatsProvider } @@ -40,7 +49,18 @@ var _ SummaryProvider = &summaryProviderImpl{} // NewSummaryProvider returns a SummaryProvider using the stats provided by the // specified statsProvider. func NewSummaryProvider(statsProvider StatsProvider) SummaryProvider { - return &summaryProviderImpl{statsProvider} + kubeletCreationTime := metav1.Now() + bootTime, err := util.GetBootTime() + if err != nil { + // bootTime will be zero if we encounter an error getting the boot time. + klog.Warningf("Error getting system boot time. Node metrics will have an incorrect start time: %v", err) + } + + return &summaryProviderImpl{ + kubeletCreationTime: kubeletCreationTime, + systemBootTime: metav1.NewTime(bootTime), + provider: statsProvider, + } } func (sp *summaryProviderImpl) Get(updateStats bool) (*statsapi.Summary, error) { @@ -77,7 +97,7 @@ func (sp *summaryProviderImpl) Get(updateStats bool) (*statsapi.Summary, error) CPU: rootStats.CPU, Memory: rootStats.Memory, Network: networkStats, - StartTime: rootStats.StartTime, + StartTime: sp.systemBootTime, Fs: rootFsStats, Runtime: &statsapi.RuntimeStats{ImageFs: imageFsStats}, Rlimit: rlimit, diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/server/stats/summary_sys_containers.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/server/stats/summary_sys_containers.go index baaff0ab1bd6..4526f2a7695e 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/server/stats/summary_sys_containers.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/server/stats/summary_sys_containers.go @@ -21,6 +21,7 @@ package stats import ( "k8s.io/klog" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" statsapi "k8s.io/kubernetes/pkg/kubelet/apis/stats/v1alpha1" "k8s.io/kubernetes/pkg/kubelet/cm" ) @@ -29,11 +30,12 @@ func (sp *summaryProviderImpl) GetSystemContainersStats(nodeConfig cm.NodeConfig systemContainers := map[string]struct { name string forceStatsUpdate bool + startTime metav1.Time }{ - statsapi.SystemContainerKubelet: {nodeConfig.KubeletCgroupsName, false}, - statsapi.SystemContainerRuntime: {nodeConfig.RuntimeCgroupsName, false}, - statsapi.SystemContainerMisc: {nodeConfig.SystemCgroupsName, false}, - statsapi.SystemContainerPods: {sp.provider.GetPodCgroupRoot(), updateStats}, + statsapi.SystemContainerKubelet: {name: nodeConfig.KubeletCgroupsName, forceStatsUpdate: false, startTime: sp.kubeletCreationTime}, + statsapi.SystemContainerRuntime: {name: nodeConfig.RuntimeCgroupsName, forceStatsUpdate: false}, + statsapi.SystemContainerMisc: {name: nodeConfig.SystemCgroupsName, forceStatsUpdate: false}, + statsapi.SystemContainerPods: {name: sp.provider.GetPodCgroupRoot(), forceStatsUpdate: updateStats}, } for sys, cont := range systemContainers { // skip if cgroup name is undefined (not all system containers are required) @@ -48,6 +50,11 @@ func (sp *summaryProviderImpl) GetSystemContainersStats(nodeConfig cm.NodeConfig // System containers don't have a filesystem associated with them. s.Logs, s.Rootfs = nil, nil s.Name = sys + + // if we know the start time of a system container, use that instead of the start time provided by cAdvisor + if !cont.startTime.IsZero() { + s.StartTime = cont.startTime + } stats = append(stats, *s) } @@ -58,11 +65,12 @@ func (sp *summaryProviderImpl) GetSystemContainersCPUAndMemoryStats(nodeConfig c systemContainers := map[string]struct { name string forceStatsUpdate bool + startTime metav1.Time }{ - statsapi.SystemContainerKubelet: {nodeConfig.KubeletCgroupsName, false}, - statsapi.SystemContainerRuntime: {nodeConfig.RuntimeCgroupsName, false}, - statsapi.SystemContainerMisc: {nodeConfig.SystemCgroupsName, false}, - statsapi.SystemContainerPods: {sp.provider.GetPodCgroupRoot(), updateStats}, + statsapi.SystemContainerKubelet: {name: nodeConfig.KubeletCgroupsName, forceStatsUpdate: false, startTime: sp.kubeletCreationTime}, + statsapi.SystemContainerRuntime: {name: nodeConfig.RuntimeCgroupsName, forceStatsUpdate: false}, + statsapi.SystemContainerMisc: {name: nodeConfig.SystemCgroupsName, forceStatsUpdate: false}, + statsapi.SystemContainerPods: {name: sp.provider.GetPodCgroupRoot(), forceStatsUpdate: updateStats}, } for sys, cont := range systemContainers { // skip if cgroup name is undefined (not all system containers are required) @@ -75,6 +83,11 @@ func (sp *summaryProviderImpl) GetSystemContainersCPUAndMemoryStats(nodeConfig c continue } s.Name = sys + + // if we know the start time of a system container, use that instead of the start time provided by cAdvisor + if !cont.startTime.IsZero() { + s.StartTime = cont.startTime + } stats = append(stats, *s) } diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/util/BUILD b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/util/BUILD index 4165864e0a30..7b590024861d 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/util/BUILD +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/util/BUILD @@ -34,6 +34,8 @@ go_test( go_library( name = "go_default_library", srcs = [ + "boottime_util_darwin.go", + "boottime_util_linux.go", "doc.go", "util.go", "util_unix.go", diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/util/boottime_util_darwin.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/util/boottime_util_darwin.go new file mode 100644 index 000000000000..09d3b8865da0 --- /dev/null +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/util/boottime_util_darwin.go @@ -0,0 +1,44 @@ +// +build darwin + +/* +Copyright 2018 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package util + +import ( + "fmt" + "syscall" + "time" + "unsafe" + + "golang.org/x/sys/unix" +) + +// GetBootTime returns the time at which the machine was started, truncated to the nearest second +func GetBootTime() (time.Time, error) { + output, err := unix.SysctlRaw("kern.boottime") + if err != nil { + return time.Time{}, err + } + var timeval syscall.Timeval + if len(output) != int(unsafe.Sizeof(timeval)) { + return time.Time{}, fmt.Errorf("unexpected output when calling syscall kern.bootime. Expected len(output) to be %v, but got %v", + int(unsafe.Sizeof(timeval)), len(output)) + } + timeval = *(*syscall.Timeval)(unsafe.Pointer(&output[0])) + sec, nsec := timeval.Unix() + return time.Unix(sec, nsec).Truncate(time.Second), nil +} diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/util/boottime_util_linux.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/util/boottime_util_linux.go new file mode 100644 index 000000000000..f00e7c06bfa5 --- /dev/null +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/util/boottime_util_linux.go @@ -0,0 +1,36 @@ +// +build freebsd linux + +/* +Copyright 2018 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package util + +import ( + "fmt" + "time" + + "golang.org/x/sys/unix" +) + +// GetBootTime returns the time at which the machine was started, truncated to the nearest second +func GetBootTime() (time.Time, error) { + currentTime := time.Now() + var info unix.Sysinfo_t + if err := unix.Sysinfo(&info); err != nil { + return time.Time{}, fmt.Errorf("error getting system uptime: %s", err) + } + return currentTime.Add(-time.Duration(info.Uptime) * time.Second).Truncate(time.Second), nil +} diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/util/pluginwatcher/plugin_watcher.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/util/pluginwatcher/plugin_watcher.go index 9116222caeb8..a9f8422edf06 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/util/pluginwatcher/plugin_watcher.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/util/pluginwatcher/plugin_watcher.go @@ -111,7 +111,7 @@ func (w *Watcher) Start() error { //TODO: Handle errors by taking corrective measures w.wg.Add(1) - go func() { + func() { defer w.wg.Done() if event.Op&fsnotify.Create == fsnotify.Create { diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/util/util_unsupported.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/util/util_unsupported.go index 6661678acedf..68a2bdf01b7e 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/util/util_unsupported.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/util/util_unsupported.go @@ -45,3 +45,8 @@ func UnlockPath(fileHandles []uintptr) { func LocalEndpoint(path, file string) string { return "" } + +// GetBootTime empty implementation +func GetBootTime() (time.Time, error) { + return time.Time{}, fmt.Errorf("GetBootTime is unsupported in this build") +} diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/util/util_windows.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/util/util_windows.go index 7123728ff94a..92accc55e148 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/util/util_windows.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/util/util_windows.go @@ -23,6 +23,7 @@ import ( "net" "net/url" "strings" + "syscall" "time" "github.com/Microsoft/go-winio" @@ -112,3 +113,15 @@ func LocalEndpoint(path, file string) string { } return u.String() + "//./pipe/" + file } + +var tickCount = syscall.NewLazyDLL("kernel32.dll").NewProc("GetTickCount64") + +// GetBootTime returns the time at which the machine was started, truncated to the nearest second +func GetBootTime() (time.Time, error) { + currentTime := time.Now() + output, _, err := tickCount.Call() + if errno, ok := err.(syscall.Errno); !ok || errno != 0 { + return time.Time{}, err + } + return currentTime.Add(-time.Duration(output) * time.Millisecond).Truncate(time.Second), nil +} diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/volumemanager/cache/desired_state_of_world.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/volumemanager/cache/desired_state_of_world.go index d4745ee0b1b9..1c748505a261 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/volumemanager/cache/desired_state_of_world.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/volumemanager/cache/desired_state_of_world.go @@ -203,11 +203,12 @@ func (dsw *desiredStateOfWorld) AddPodToVolume( var volumeName v1.UniqueVolumeName - // The unique volume name used depends on whether the volume is attachable + // The unique volume name used depends on whether the volume is attachable/device-mountable // or not. attachable := dsw.isAttachableVolume(volumeSpec) - if attachable { - // For attachable volumes, use the unique volume name as reported by + deviceMountable := dsw.isDeviceMountableVolume(volumeSpec) + if attachable || deviceMountable { + // For attachable/device-mountable volumes, use the unique volume name as reported by // the plugin. volumeName, err = util.GetUniqueVolumeNameFromSpec(volumePlugin, volumeSpec) @@ -219,13 +220,11 @@ func (dsw *desiredStateOfWorld) AddPodToVolume( err) } } else { - // For non-attachable volumes, generate a unique name based on the pod + // For non-attachable and non-device-mountable volumes, generate a unique name based on the pod // namespace and name and the name of the volume within the pod. - volumeName = util.GetUniqueVolumeNameForNonAttachableVolume(podName, volumePlugin, volumeSpec) + volumeName = util.GetUniqueVolumeNameFromSpecWithPod(podName, volumePlugin, volumeSpec) } - deviceMountable := dsw.isDeviceMountableVolume(volumeSpec) - if _, volumeExists := dsw.volumesToMount[volumeName]; !volumeExists { dsw.volumesToMount[volumeName] = volumeToMount{ volumeName: volumeName, diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/volumemanager/reconciler/reconciler.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/volumemanager/reconciler/reconciler.go index 1b6bbbfbe778..f57d6bf26e95 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/volumemanager/reconciler/reconciler.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/kubelet/volumemanager/reconciler/reconciler.go @@ -455,6 +455,10 @@ func (rc *reconciler) reconstructVolume(volume podVolume) (*reconstructedVolume, if err != nil { return nil, err } + deviceMountablePlugin, err := rc.volumePluginMgr.FindDeviceMountablePluginByName(volume.pluginName) + if err != nil { + return nil, err + } // Create pod object pod := &v1.Pod{ @@ -480,13 +484,13 @@ func (rc *reconciler) reconstructVolume(volume podVolume) (*reconstructedVolume, } var uniqueVolumeName v1.UniqueVolumeName - if attachablePlugin != nil { + if attachablePlugin != nil || deviceMountablePlugin != nil { uniqueVolumeName, err = util.GetUniqueVolumeNameFromSpec(plugin, volumeSpec) if err != nil { return nil, err } } else { - uniqueVolumeName = util.GetUniqueVolumeNameForNonAttachableVolume(volume.podName, plugin, volumeSpec) + uniqueVolumeName = util.GetUniqueVolumeNameFromSpecWithPod(volume.podName, plugin, volumeSpec) } // Check existence of mount point for filesystem volume or symbolic link for block volume isExist, checkErr := rc.operationExecutor.CheckVolumeExistenceOperation(volumeSpec, volume.mountPath, volumeSpec.Name(), rc.mounter, uniqueVolumeName, volume.podName, pod.UID, attachablePlugin) diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/proxy/ipvs/graceful_termination.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/proxy/ipvs/graceful_termination.go index d9357d2c6d8c..4d53d4ee7b99 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/proxy/ipvs/graceful_termination.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/proxy/ipvs/graceful_termination.go @@ -75,10 +75,10 @@ func (q *graceTerminateRSList) remove(rs *listItem) bool { uniqueRS := rs.String() if _, ok := q.list[uniqueRS]; ok { - return false + delete(q.list, uniqueRS) + return true } - delete(q.list, uniqueRS) - return true + return false } func (q *graceTerminateRSList) flushList(handler func(rsToDelete *listItem) (bool, error)) bool { @@ -164,7 +164,11 @@ func (m *GracefulTerminationManager) deleteRsFunc(rsToDelete *listItem) (bool, e } for _, rs := range rss { if rsToDelete.RealServer.Equal(rs) { - if rs.ActiveConn != 0 { + // Delete RS with no connections + // For UDP, ActiveConn is always 0 + // For TCP, InactiveConn are connections not in ESTABLISHED state + if rs.ActiveConn+rs.InactiveConn != 0 { + klog.Infof("Not deleting, RS %v: %v ActiveConn, %v InactiveConn", rsToDelete.String(), rs.ActiveConn, rs.InactiveConn) return false, nil } klog.Infof("Deleting rs: %s", rsToDelete.String()) diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/proxy/ipvs/proxier.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/proxy/ipvs/proxier.go index 242a6025ca62..9ca7e059d47d 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/proxy/ipvs/proxier.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/proxy/ipvs/proxier.go @@ -162,6 +162,8 @@ const sysctlRouteLocalnet = "net/ipv4/conf/all/route_localnet" const sysctlBridgeCallIPTables = "net/bridge/bridge-nf-call-iptables" const sysctlVSConnTrack = "net/ipv4/vs/conntrack" const sysctlConnReuse = "net/ipv4/vs/conn_reuse_mode" +const sysctlExpireNoDestConn = "net/ipv4/vs/expire_nodest_conn" +const sysctlExpireQuiescentTemplate = "net/ipv4/vs/expire_quiescent_template" const sysctlForward = "net/ipv4/ip_forward" const sysctlArpIgnore = "net/ipv4/conf/all/arp_ignore" const sysctlArpAnnounce = "net/ipv4/conf/all/arp_announce" @@ -321,6 +323,20 @@ func NewProxier(ipt utiliptables.Interface, } } + // Set the expire_nodest_conn sysctl we need for + if val, _ := sysctl.GetSysctl(sysctlExpireNoDestConn); val != 1 { + if err := sysctl.SetSysctl(sysctlExpireNoDestConn, 1); err != nil { + return nil, fmt.Errorf("can't set sysctl %s: %v", sysctlExpireNoDestConn, err) + } + } + + // Set the expire_quiescent_template sysctl we need for + if val, _ := sysctl.GetSysctl(sysctlExpireQuiescentTemplate); val != 1 { + if err := sysctl.SetSysctl(sysctlExpireQuiescentTemplate, 1); err != nil { + return nil, fmt.Errorf("can't set sysctl %s: %v", sysctlExpireQuiescentTemplate, err) + } + } + // Set the ip_forward sysctl we need for if val, _ := sysctl.GetSysctl(sysctlForward); val != 1 { if err := sysctl.SetSysctl(sysctlForward, 1); err != nil { @@ -1190,7 +1206,15 @@ func (proxier *Proxier) syncProxyRules() { } proxier.portsMap = replacementPortsMap - // Clean up legacy IPVS services + // Get legacy bind address + // currentBindAddrs represents ip addresses bind to DefaultDummyDevice from the system + currentBindAddrs, err := proxier.netlinkHandle.ListBindAddress(DefaultDummyDevice) + if err != nil { + klog.Errorf("Failed to get bind address, err: %v", err) + } + legacyBindAddrs := proxier.getLegacyBindAddr(activeBindAddrs, currentBindAddrs) + + // Clean up legacy IPVS services and unbind addresses appliedSvcs, err := proxier.ipvs.GetVirtualServers() if err == nil { for _, appliedSvc := range appliedSvcs { @@ -1199,15 +1223,7 @@ func (proxier *Proxier) syncProxyRules() { } else { klog.Errorf("Failed to get ipvs service, err: %v", err) } - proxier.cleanLegacyService(activeIPVSServices, currentIPVSServices) - - // Clean up legacy bind address - // currentBindAddrs represents ip addresses bind to DefaultDummyDevice from the system - currentBindAddrs, err := proxier.netlinkHandle.ListBindAddress(DefaultDummyDevice) - if err != nil { - klog.Errorf("Failed to get bind address, err: %v", err) - } - proxier.cleanLegacyBindAddr(activeBindAddrs, currentBindAddrs) + proxier.cleanLegacyService(activeIPVSServices, currentIPVSServices, legacyBindAddrs) // Update healthz timestamp if proxier.healthzServer != nil { @@ -1602,32 +1618,41 @@ func (proxier *Proxier) syncEndpoint(svcPortName proxy.ServicePortName, onlyNode Port: uint16(portNum), } - klog.V(5).Infof("Using graceful delete to delete: %v", delDest) + klog.V(5).Infof("Using graceful delete to delete: %v", uniqueRS) err = proxier.gracefuldeleteManager.GracefulDeleteRS(appliedVirtualServer, delDest) if err != nil { - klog.Errorf("Failed to delete destination: %v, error: %v", delDest, err) + klog.Errorf("Failed to delete destination: %v, error: %v", uniqueRS, err) continue } } return nil } -func (proxier *Proxier) cleanLegacyService(activeServices map[string]bool, currentServices map[string]*utilipvs.VirtualServer) { +func (proxier *Proxier) cleanLegacyService(activeServices map[string]bool, currentServices map[string]*utilipvs.VirtualServer, legacyBindAddrs map[string]bool) { for cs := range currentServices { svc := currentServices[cs] if _, ok := activeServices[cs]; !ok { // This service was not processed in the latest sync loop so before deleting it, - // make sure it does not fall within an excluded CIDR range. okayToDelete := true rsList, _ := proxier.ipvs.GetRealServers(svc) + + // If we still have real servers graceful termination is not done + if len(rsList) > 0 { + okayToDelete = false + } + // Applying graceful termination to all real servers for _, rs := range rsList { uniqueRS := GetUniqueRSName(svc, rs) - // if there are in terminating real server in this service, then handle it later + // If RS is already in the graceful termination list, no need to add it again if proxier.gracefuldeleteManager.InTerminationList(uniqueRS) { - okayToDelete = false - break + continue + } + klog.V(5).Infof("Using graceful delete to delete: %v", uniqueRS) + if err := proxier.gracefuldeleteManager.GracefulDeleteRS(svc, rs); err != nil { + klog.Errorf("Failed to delete destination: %v, error: %v", uniqueRS, err) } } + // make sure it does not fall within an excluded CIDR range. for _, excludedCIDR := range proxier.excludeCIDRs { // Any validation of this CIDR already should have occurred. _, n, _ := net.ParseCIDR(excludedCIDR) @@ -1637,26 +1662,33 @@ func (proxier *Proxier) cleanLegacyService(activeServices map[string]bool, curre } } if okayToDelete { + klog.V(4).Infof("Delete service %s", svc.String()) if err := proxier.ipvs.DeleteVirtualServer(svc); err != nil { - klog.Errorf("Failed to delete service, error: %v", err) + klog.Errorf("Failed to delete service %s, error: %v", svc.String(), err) + } + addr := svc.Address.String() + if _, ok := legacyBindAddrs[addr]; ok { + klog.V(4).Infof("Unbinding address %s", addr) + if err := proxier.netlinkHandle.UnbindAddress(addr, DefaultDummyDevice); err != nil { + klog.Errorf("Failed to unbind service addr %s from dummy interface %s: %v", addr, DefaultDummyDevice, err) + } else { + // In case we delete a multi-port service, avoid trying to unbind multiple times + delete(legacyBindAddrs, addr) + } } } } } } -func (proxier *Proxier) cleanLegacyBindAddr(activeBindAddrs map[string]bool, currentBindAddrs []string) { +func (proxier *Proxier) getLegacyBindAddr(activeBindAddrs map[string]bool, currentBindAddrs []string) map[string]bool { + legacyAddrs := make(map[string]bool) for _, addr := range currentBindAddrs { if _, ok := activeBindAddrs[addr]; !ok { - // This address was not processed in the latest sync loop - klog.V(4).Infof("Unbind addr %s", addr) - err := proxier.netlinkHandle.UnbindAddress(addr, DefaultDummyDevice) - // Ignore no such address error when try to unbind address - if err != nil { - klog.Errorf("Failed to unbind service addr %s from dummy interface %s: %v", addr, DefaultDummyDevice, err) - } + legacyAddrs[addr] = true } } + return legacyAddrs } // Join all words with spaces, terminate with newline and write to buff. diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/proxy/util/utils.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/proxy/util/utils.go index f1db309a941e..2c1408da43b5 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/proxy/util/utils.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/proxy/util/utils.go @@ -17,6 +17,8 @@ limitations under the License. package util import ( + "context" + "errors" "fmt" "net" @@ -35,6 +37,11 @@ const ( IPv6ZeroCIDR = "::/0" ) +var ( + ErrAddressNotAllowed = errors.New("address not allowed") + ErrNoAddresses = errors.New("No addresses for hostname") +) + func IsZeroCIDR(cidr string) bool { if cidr == IPv4ZeroCIDR || cidr == IPv6ZeroCIDR { return true @@ -42,6 +49,46 @@ func IsZeroCIDR(cidr string) bool { return false } +// IsProxyableIP checks if a given IP address is permitted to be proxied +func IsProxyableIP(ip string) error { + netIP := net.ParseIP(ip) + if netIP == nil { + return ErrAddressNotAllowed + } + return isProxyableIP(netIP) +} + +func isProxyableIP(ip net.IP) error { + if ip.IsLoopback() || ip.IsLinkLocalUnicast() || ip.IsLinkLocalMulticast() || ip.IsInterfaceLocalMulticast() { + return ErrAddressNotAllowed + } + return nil +} + +// Resolver is an interface for net.Resolver +type Resolver interface { + LookupIPAddr(ctx context.Context, host string) ([]net.IPAddr, error) +} + +// IsProxyableHostname checks if the IP addresses for a given hostname are permitted to be proxied +func IsProxyableHostname(ctx context.Context, resolv Resolver, hostname string) error { + resp, err := resolv.LookupIPAddr(ctx, hostname) + if err != nil { + return err + } + + if len(resp) == 0 { + return ErrNoAddresses + } + + for _, host := range resp { + if err := isProxyableIP(host.IP); err != nil { + return err + } + } + return nil +} + func IsLocalIP(ip string) (bool, error) { addrs, err := net.InterfaceAddrs() if err != nil { diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/algorithm/BUILD b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/algorithm/BUILD index 0b19967bafa4..da4b77ede200 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/algorithm/BUILD +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/algorithm/BUILD @@ -17,7 +17,6 @@ go_library( deps = [ "//pkg/scheduler/api:go_default_library", "//pkg/scheduler/cache:go_default_library", - "//pkg/scheduler/internal/cache:go_default_library", "//staging/src/k8s.io/api/apps/v1:go_default_library", "//staging/src/k8s.io/api/core/v1:go_default_library", "//staging/src/k8s.io/api/policy/v1beta1:go_default_library", diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/algorithm/types.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/algorithm/types.go index 835a5a0bfb8a..f7b54e2d7e67 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/algorithm/types.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/algorithm/types.go @@ -23,7 +23,6 @@ import ( "k8s.io/apimachinery/pkg/labels" schedulerapi "k8s.io/kubernetes/pkg/scheduler/api" schedulercache "k8s.io/kubernetes/pkg/scheduler/cache" - schedulerinternalcache "k8s.io/kubernetes/pkg/scheduler/internal/cache" ) // NodeFieldSelectorKeys is a map that: the key are node field selector keys; the values are @@ -92,6 +91,9 @@ type NodeLister interface { List() ([]*v1.Node, error) } +// PodFilter is a function to filter a pod. If pod passed return true else return false. +type PodFilter func(*v1.Pod) bool + // PodLister interface represents anything that can list pods for a scheduler. type PodLister interface { // We explicitly return []*v1.Pod, instead of v1.PodList, to avoid @@ -99,7 +101,7 @@ type PodLister interface { List(labels.Selector) ([]*v1.Pod, error) // This is similar to "List()", but the returned slice does not // contain pods that don't pass `podFilter`. - FilteredList(podFilter schedulerinternalcache.PodFilter, selector labels.Selector) ([]*v1.Pod, error) + FilteredList(podFilter PodFilter, selector labels.Selector) ([]*v1.Pod, error) } // ServiceLister interface represents anything that can produce a list of services; the list is consumed by a scheduler. diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/core/generic_scheduler.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/core/generic_scheduler.go index 5f163889c48f..e6740d566fe4 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/core/generic_scheduler.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/core/generic_scheduler.go @@ -351,7 +351,7 @@ func (g *genericScheduler) processPreemptionWithExtenders( // worth the complexity, especially because we generally expect to have a very // small number of nominated pods per node. func (g *genericScheduler) getLowerPriorityNominatedPods(pod *v1.Pod, nodeName string) []*v1.Pod { - pods := g.schedulingQueue.WaitingPodsForNode(nodeName) + pods := g.schedulingQueue.NominatedPodsForNode(nodeName) if len(pods) == 0 { return nil @@ -501,7 +501,7 @@ func addNominatedPods(pod *v1.Pod, meta algorithm.PredicateMetadata, // This may happen only in tests. return false, meta, nodeInfo } - nominatedPods := queue.WaitingPodsForNode(nodeInfo.Node().Name) + nominatedPods := queue.NominatedPodsForNode(nodeInfo.Node().Name) if nominatedPods == nil || len(nominatedPods) == 0 { return false, meta, nodeInfo } @@ -655,24 +655,26 @@ func PrioritizeNodes( // DEPRECATED: we can remove this when all priorityConfigs implement the // Map-Reduce pattern. - workqueue.ParallelizeUntil(context.TODO(), 16, len(priorityConfigs), func(i int) { - priorityConfig := priorityConfigs[i] - if priorityConfig.Function == nil { + for i := range priorityConfigs { + if priorityConfigs[i].Function != nil { + wg.Add(1) + go func(index int) { + defer wg.Done() + var err error + results[index], err = priorityConfigs[index].Function(pod, nodeNameToInfo, nodes) + if err != nil { + appendError(err) + } + }(i) + } else { results[i] = make(schedulerapi.HostPriorityList, len(nodes)) - return } - - var err error - results[i], err = priorityConfig.Function(pod, nodeNameToInfo, nodes) - if err != nil { - appendError(err) - } - }) + } workqueue.ParallelizeUntil(context.TODO(), 16, len(nodes), func(index int) { nodeInfo := nodeNameToInfo[nodes[index].Name] - for i, priorityConfig := range priorityConfigs { - if priorityConfig.Function != nil { + for i := range priorityConfigs { + if priorityConfigs[i].Function != nil { continue } @@ -685,22 +687,22 @@ func PrioritizeNodes( } }) - for i, priorityConfig := range priorityConfigs { - if priorityConfig.Reduce == nil { + for i := range priorityConfigs { + if priorityConfigs[i].Reduce == nil { continue } wg.Add(1) - go func(index int, config algorithm.PriorityConfig) { + go func(index int) { defer wg.Done() - if err := config.Reduce(pod, meta, nodeNameToInfo, results[index]); err != nil { + if err := priorityConfigs[index].Reduce(pod, meta, nodeNameToInfo, results[index]); err != nil { appendError(err) } if klog.V(10) { for _, hostPriority := range results[index] { - klog.Infof("%v -> %v: %v, Score: (%d)", util.GetPodFullName(pod), hostPriority.Host, config.Name, hostPriority.Score) + klog.Infof("%v -> %v: %v, Score: (%d)", util.GetPodFullName(pod), hostPriority.Host, priorityConfigs[index].Name, hostPriority.Score) } } - }(i, priorityConfig) + }(i) } // Wait for all computations to be finished. wg.Wait() @@ -720,14 +722,14 @@ func PrioritizeNodes( if len(extenders) != 0 && nodes != nil { combinedScores := make(map[string]int, len(nodeNameToInfo)) - for _, extender := range extenders { - if !extender.IsInterested(pod) { + for i := range extenders { + if !extenders[i].IsInterested(pod) { continue } wg.Add(1) - go func(ext algorithm.SchedulerExtender) { + go func(extIndex int) { defer wg.Done() - prioritizedList, weight, err := ext.Prioritize(pod, nodes) + prioritizedList, weight, err := extenders[extIndex].Prioritize(pod, nodes) if err != nil { // Prioritization errors from extender can be ignored, let k8s/other extenders determine the priorities return @@ -736,12 +738,12 @@ func PrioritizeNodes( for i := range *prioritizedList { host, score := (*prioritizedList)[i].Host, (*prioritizedList)[i].Score if klog.V(10) { - klog.Infof("%v -> %v: %v, Score: (%d)", util.GetPodFullName(pod), host, ext.Name(), score) + klog.Infof("%v -> %v: %v, Score: (%d)", util.GetPodFullName(pod), host, extenders[extIndex].Name(), score) } combinedScores[host] += score * weight } mu.Unlock() - }(extender) + }(i) } // wait for all go routines to finish wg.Wait() diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/factory/BUILD b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/factory/BUILD index 7be893b06067..f7332ccdca84 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/factory/BUILD +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/factory/BUILD @@ -73,6 +73,7 @@ go_test( "//pkg/scheduler/testing:go_default_library", "//pkg/scheduler/util:go_default_library", "//staging/src/k8s.io/api/core/v1:go_default_library", + "//staging/src/k8s.io/apimachinery/pkg/api/resource:go_default_library", "//staging/src/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library", "//staging/src/k8s.io/apimachinery/pkg/runtime:go_default_library", "//staging/src/k8s.io/apimachinery/pkg/util/sets:go_default_library", diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/factory/factory.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/factory/factory.go index aa420bcb173b..6242f3b485b9 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/factory/factory.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/factory/factory.go @@ -992,7 +992,14 @@ func (c *configFactory) updateNodeInCache(oldObj, newObj interface{}) { } c.invalidateCachedPredicatesOnNodeUpdate(newNode, oldNode) - c.podQueue.MoveAllToActiveQueue() + // Only activate unschedulable pods if the node became more schedulable. + // We skip the node property comparison when there is no unschedulable pods in the queue + // to save processing cycles. We still trigger a move to active queue to cover the case + // that a pod being processed by the scheduler is determined unschedulable. We want this + // pod to be reevaluated when a change in the cluster happens. + if c.podQueue.NumUnschedulablePods() == 0 || nodeSchedulingPropertiesChanged(newNode, oldNode) { + c.podQueue.MoveAllToActiveQueue() + } } func (c *configFactory) invalidateCachedPredicatesOnNodeUpdate(newNode *v1.Node, oldNode *v1.Node) { @@ -1064,6 +1071,53 @@ func (c *configFactory) invalidateCachedPredicatesOnNodeUpdate(newNode *v1.Node, } } +func nodeSchedulingPropertiesChanged(newNode *v1.Node, oldNode *v1.Node) bool { + if nodeSpecUnschedulableChanged(newNode, oldNode) { + return true + } + if nodeAllocatableChanged(newNode, oldNode) { + return true + } + if nodeLabelsChanged(newNode, oldNode) { + return true + } + if nodeTaintsChanged(newNode, oldNode) { + return true + } + if nodeConditionsChanged(newNode, oldNode) { + return true + } + + return false +} + +func nodeAllocatableChanged(newNode *v1.Node, oldNode *v1.Node) bool { + return !reflect.DeepEqual(oldNode.Status.Allocatable, newNode.Status.Allocatable) +} + +func nodeLabelsChanged(newNode *v1.Node, oldNode *v1.Node) bool { + return !reflect.DeepEqual(oldNode.GetLabels(), newNode.GetLabels()) +} + +func nodeTaintsChanged(newNode *v1.Node, oldNode *v1.Node) bool { + return !reflect.DeepEqual(newNode.Spec.Taints, oldNode.Spec.Taints) +} + +func nodeConditionsChanged(newNode *v1.Node, oldNode *v1.Node) bool { + strip := func(conditions []v1.NodeCondition) map[v1.NodeConditionType]v1.ConditionStatus { + conditionStatuses := make(map[v1.NodeConditionType]v1.ConditionStatus, len(conditions)) + for i := range conditions { + conditionStatuses[conditions[i].Type] = conditions[i].Status + } + return conditionStatuses + } + return !reflect.DeepEqual(strip(oldNode.Status.Conditions), strip(newNode.Status.Conditions)) +} + +func nodeSpecUnschedulableChanged(newNode *v1.Node, oldNode *v1.Node) bool { + return newNode.Spec.Unschedulable != oldNode.Spec.Unschedulable && newNode.Spec.Unschedulable == false +} + func (c *configFactory) deleteNodeFromCache(obj interface{}) { var node *v1.Node switch t := obj.(type) { diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/internal/cache/BUILD b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/internal/cache/BUILD index 61202c8c2864..5b505704eae9 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/internal/cache/BUILD +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/internal/cache/BUILD @@ -11,6 +11,7 @@ go_library( visibility = ["//visibility:public"], deps = [ "//pkg/features:go_default_library", + "//pkg/scheduler/algorithm:go_default_library", "//pkg/scheduler/cache:go_default_library", "//pkg/util/node:go_default_library", "//staging/src/k8s.io/api/core/v1:go_default_library", diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/internal/cache/cache.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/internal/cache/cache.go index 535236e5c1fb..3956fb28ee63 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/internal/cache/cache.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/internal/cache/cache.go @@ -27,6 +27,7 @@ import ( "k8s.io/apimachinery/pkg/util/wait" utilfeature "k8s.io/apiserver/pkg/util/feature" "k8s.io/kubernetes/pkg/features" + "k8s.io/kubernetes/pkg/scheduler/algorithm" schedulercache "k8s.io/kubernetes/pkg/scheduler/cache" "k8s.io/klog" @@ -149,7 +150,7 @@ func (cache *schedulerCache) List(selector labels.Selector) ([]*v1.Pod, error) { return cache.FilteredList(alwaysTrue, selector) } -func (cache *schedulerCache) FilteredList(podFilter PodFilter, selector labels.Selector) ([]*v1.Pod, error) { +func (cache *schedulerCache) FilteredList(podFilter algorithm.PodFilter, selector labels.Selector) ([]*v1.Pod, error) { cache.mu.RLock() defer cache.mu.RUnlock() // podFilter is expected to return true for most or all of the pods. We diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/internal/cache/interface.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/internal/cache/interface.go index 878c2aa07411..4de292cea784 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/internal/cache/interface.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/internal/cache/interface.go @@ -19,12 +19,10 @@ package cache import ( "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/labels" + "k8s.io/kubernetes/pkg/scheduler/algorithm" schedulercache "k8s.io/kubernetes/pkg/scheduler/cache" ) -// PodFilter is a function to filter a pod. If pod passed return true else return false. -type PodFilter func(*v1.Pod) bool - // Cache collects pods' information and provides node-level aggregated information. // It's intended for generic scheduler to do efficient lookup. // Cache's operations are pod centric. It does incremental updates based on pod events. @@ -106,7 +104,7 @@ type Cache interface { List(labels.Selector) ([]*v1.Pod, error) // FilteredList returns all cached pods that pass the filter. - FilteredList(filter PodFilter, selector labels.Selector) ([]*v1.Pod, error) + FilteredList(filter algorithm.PodFilter, selector labels.Selector) ([]*v1.Pod, error) // Snapshot takes a snapshot on current cache Snapshot() *Snapshot diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/internal/queue/BUILD b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/internal/queue/BUILD index c675f8592482..454c6ac67aed 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/internal/queue/BUILD +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/internal/queue/BUILD @@ -12,6 +12,7 @@ go_library( "//pkg/scheduler/util:go_default_library", "//staging/src/k8s.io/api/core/v1:go_default_library", "//staging/src/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library", + "//staging/src/k8s.io/apimachinery/pkg/types:go_default_library", "//staging/src/k8s.io/client-go/tools/cache:go_default_library", "//vendor/k8s.io/klog:go_default_library", ], @@ -22,9 +23,11 @@ go_test( srcs = ["scheduling_queue_test.go"], embed = [":go_default_library"], deps = [ + "//pkg/api/v1/pod:go_default_library", "//pkg/scheduler/util:go_default_library", "//staging/src/k8s.io/api/core/v1:go_default_library", "//staging/src/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library", + "//staging/src/k8s.io/apimachinery/pkg/types:go_default_library", ], ) diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/internal/queue/scheduling_queue.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/internal/queue/scheduling_queue.go index 6f5aa682c98f..48f56ce77f43 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/internal/queue/scheduling_queue.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/scheduler/internal/queue/scheduling_queue.go @@ -36,6 +36,7 @@ import ( "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + ktypes "k8s.io/apimachinery/pkg/types" "k8s.io/client-go/tools/cache" podutil "k8s.io/kubernetes/pkg/api/v1/pod" "k8s.io/kubernetes/pkg/scheduler/algorithm/predicates" @@ -62,13 +63,18 @@ type SchedulingQueue interface { MoveAllToActiveQueue() AssignedPodAdded(pod *v1.Pod) AssignedPodUpdated(pod *v1.Pod) - WaitingPodsForNode(nodeName string) []*v1.Pod + NominatedPodsForNode(nodeName string) []*v1.Pod WaitingPods() []*v1.Pod // Close closes the SchedulingQueue so that the goroutine which is // waiting to pop items can exit gracefully. Close() + // UpdateNominatedPodForNode adds the given pod to the nominated pod map or + // updates it if it already exists. + UpdateNominatedPodForNode(pod *v1.Pod, nodeName string) // DeleteNominatedPodIfExists deletes nominatedPod from internal cache DeleteNominatedPodIfExists(pod *v1.Pod) + // NumUnschedulablePods returns the number of unschedulable pods exist in the SchedulingQueue. + NumUnschedulablePods() int } // NewSchedulingQueue initializes a new scheduling queue. If pod priority is @@ -148,9 +154,9 @@ func (f *FIFO) AssignedPodUpdated(pod *v1.Pod) {} // MoveAllToActiveQueue does nothing in FIFO as all pods are always in the active queue. func (f *FIFO) MoveAllToActiveQueue() {} -// WaitingPodsForNode returns pods that are nominated to run on the given node, +// NominatedPodsForNode returns pods that are nominated to run on the given node, // but FIFO does not support it. -func (f *FIFO) WaitingPodsForNode(nodeName string) []*v1.Pod { +func (f *FIFO) NominatedPodsForNode(nodeName string) []*v1.Pod { return nil } @@ -162,6 +168,14 @@ func (f *FIFO) Close() { // DeleteNominatedPodIfExists does nothing in FIFO. func (f *FIFO) DeleteNominatedPodIfExists(pod *v1.Pod) {} +// UpdateNominatedPodForNode does nothing in FIFO. +func (f *FIFO) UpdateNominatedPodForNode(pod *v1.Pod, nodeName string) {} + +// NumUnschedulablePods returns the number of unschedulable pods exist in the SchedulingQueue. +func (f *FIFO) NumUnschedulablePods() int { + return 0 +} + // NewFIFO creates a FIFO object. func NewFIFO() *FIFO { return &FIFO{FIFO: cache.NewFIFO(cache.MetaNamespaceKeyFunc)} @@ -187,10 +201,9 @@ type PriorityQueue struct { activeQ *Heap // unschedulableQ holds pods that have been tried and determined unschedulable. unschedulableQ *UnschedulablePodsMap - // nominatedPods is a map keyed by a node name and the value is a list of - // pods which are nominated to run on the node. These are pods which can be in - // the activeQ or unschedulableQ. - nominatedPods map[string][]*v1.Pod + // nominatedPods is a structures that stores pods which are nominated to run + // on nodes. + nominatedPods *nominatedPodMap // receivedMoveRequest is set to true whenever we receive a request to move a // pod from the unschedulableQ to the activeQ, and is set to false, when we pop // a pod from the activeQ. It indicates if we received a move request when a @@ -206,57 +219,38 @@ type PriorityQueue struct { // Making sure that PriorityQueue implements SchedulingQueue. var _ = SchedulingQueue(&PriorityQueue{}) +// podTimeStamp returns pod's last schedule time or its creation time if the +// scheduler has never tried scheduling it. +func podTimestamp(pod *v1.Pod) *metav1.Time { + _, condition := podutil.GetPodCondition(&pod.Status, v1.PodScheduled) + if condition == nil { + return &pod.CreationTimestamp + } + return &condition.LastTransitionTime +} + +// activeQComp is the function used by the activeQ heap algorithm to sort pods. +// It sorts pods based on their priority. When priorities are equal, it uses +// podTimestamp. +func activeQComp(pod1, pod2 interface{}) bool { + p1 := pod1.(*v1.Pod) + p2 := pod2.(*v1.Pod) + prio1 := util.GetPodPriority(p1) + prio2 := util.GetPodPriority(p2) + return (prio1 > prio2) || (prio1 == prio2 && podTimestamp(p1).Before(podTimestamp(p2))) +} + // NewPriorityQueue creates a PriorityQueue object. func NewPriorityQueue() *PriorityQueue { pq := &PriorityQueue{ - activeQ: newHeap(cache.MetaNamespaceKeyFunc, util.HigherPriorityPod), + activeQ: newHeap(cache.MetaNamespaceKeyFunc, activeQComp), unschedulableQ: newUnschedulablePodsMap(), - nominatedPods: map[string][]*v1.Pod{}, + nominatedPods: newNominatedPodMap(), } pq.cond.L = &pq.lock return pq } -// addNominatedPodIfNeeded adds a pod to nominatedPods if it has a NominatedNodeName and it does not -// already exist in the map. Adding an existing pod is not going to update the pod. -func (p *PriorityQueue) addNominatedPodIfNeeded(pod *v1.Pod) { - nnn := NominatedNodeName(pod) - if len(nnn) > 0 { - for _, np := range p.nominatedPods[nnn] { - if np.UID == pod.UID { - klog.V(4).Infof("Pod %v/%v already exists in the nominated map!", pod.Namespace, pod.Name) - return - } - } - p.nominatedPods[nnn] = append(p.nominatedPods[nnn], pod) - } -} - -// deleteNominatedPodIfExists deletes a pod from the nominatedPods. -// NOTE: this function assumes lock has been acquired in caller. -func (p *PriorityQueue) deleteNominatedPodIfExists(pod *v1.Pod) { - nnn := NominatedNodeName(pod) - if len(nnn) > 0 { - for i, np := range p.nominatedPods[nnn] { - if np.UID == pod.UID { - p.nominatedPods[nnn] = append(p.nominatedPods[nnn][:i], p.nominatedPods[nnn][i+1:]...) - if len(p.nominatedPods[nnn]) == 0 { - delete(p.nominatedPods, nnn) - } - break - } - } - } -} - -// updateNominatedPod updates a pod in the nominatedPods. -func (p *PriorityQueue) updateNominatedPod(oldPod, newPod *v1.Pod) { - // Even if the nominated node name of the Pod is not changed, we must delete and add it again - // to ensure that its pointer is updated. - p.deleteNominatedPodIfExists(oldPod) - p.addNominatedPodIfNeeded(newPod) -} - // Add adds a pod to the active queue. It should be called only when a new pod // is added so there is no chance the pod is already in either queue. func (p *PriorityQueue) Add(pod *v1.Pod) error { @@ -268,10 +262,9 @@ func (p *PriorityQueue) Add(pod *v1.Pod) error { } else { if p.unschedulableQ.get(pod) != nil { klog.Errorf("Error: pod %v/%v is already in the unschedulable queue.", pod.Namespace, pod.Name) - p.deleteNominatedPodIfExists(pod) p.unschedulableQ.delete(pod) } - p.addNominatedPodIfNeeded(pod) + p.nominatedPods.add(pod, "") p.cond.Broadcast() } return err @@ -292,7 +285,7 @@ func (p *PriorityQueue) AddIfNotPresent(pod *v1.Pod) error { if err != nil { klog.Errorf("Error adding pod %v/%v to the scheduling queue: %v", pod.Namespace, pod.Name, err) } else { - p.addNominatedPodIfNeeded(pod) + p.nominatedPods.add(pod, "") p.cond.Broadcast() } return err @@ -317,12 +310,12 @@ func (p *PriorityQueue) AddUnschedulableIfNotPresent(pod *v1.Pod) error { } if !p.receivedMoveRequest && isPodUnschedulable(pod) { p.unschedulableQ.addOrUpdate(pod) - p.addNominatedPodIfNeeded(pod) + p.nominatedPods.add(pod, "") return nil } err := p.activeQ.Add(pod) if err == nil { - p.addNominatedPodIfNeeded(pod) + p.nominatedPods.add(pod, "") p.cond.Broadcast() } return err @@ -373,13 +366,13 @@ func (p *PriorityQueue) Update(oldPod, newPod *v1.Pod) error { defer p.lock.Unlock() // If the pod is already in the active queue, just update it there. if _, exists, _ := p.activeQ.Get(newPod); exists { - p.updateNominatedPod(oldPod, newPod) + p.nominatedPods.update(oldPod, newPod) err := p.activeQ.Update(newPod) return err } // If the pod is in the unschedulable queue, updating it may make it schedulable. if usPod := p.unschedulableQ.get(newPod); usPod != nil { - p.updateNominatedPod(oldPod, newPod) + p.nominatedPods.update(oldPod, newPod) if isPodUpdated(oldPod, newPod) { p.unschedulableQ.delete(usPod) err := p.activeQ.Add(newPod) @@ -394,7 +387,7 @@ func (p *PriorityQueue) Update(oldPod, newPod *v1.Pod) error { // If pod is not in any of the two queue, we put it in the active queue. err := p.activeQ.Add(newPod) if err == nil { - p.addNominatedPodIfNeeded(newPod) + p.nominatedPods.add(newPod, "") p.cond.Broadcast() } return err @@ -405,7 +398,7 @@ func (p *PriorityQueue) Update(oldPod, newPod *v1.Pod) error { func (p *PriorityQueue) Delete(pod *v1.Pod) error { p.lock.Lock() defer p.lock.Unlock() - p.deleteNominatedPodIfExists(pod) + p.nominatedPods.delete(pod) err := p.activeQ.Delete(pod) if err != nil { // The item was probably not found in the activeQ. p.unschedulableQ.delete(pod) @@ -488,16 +481,13 @@ func (p *PriorityQueue) getUnschedulablePodsWithMatchingAffinityTerm(pod *v1.Pod return podsToMove } -// WaitingPodsForNode returns pods that are nominated to run on the given node, +// NominatedPodsForNode returns pods that are nominated to run on the given node, // but they are waiting for other pods to be removed from the node before they // can be actually scheduled. -func (p *PriorityQueue) WaitingPodsForNode(nodeName string) []*v1.Pod { +func (p *PriorityQueue) NominatedPodsForNode(nodeName string) []*v1.Pod { p.lock.RLock() defer p.lock.RUnlock() - if list, ok := p.nominatedPods[nodeName]; ok { - return list - } - return nil + return p.nominatedPods.podsForNode(nodeName) } // WaitingPods returns all the waiting pods in the queue. @@ -523,13 +513,30 @@ func (p *PriorityQueue) Close() { p.cond.Broadcast() } -// DeleteNominatedPodIfExists deletes pod from internal cache if it's a nominatedPod +// DeleteNominatedPodIfExists deletes pod nominatedPods. func (p *PriorityQueue) DeleteNominatedPodIfExists(pod *v1.Pod) { p.lock.Lock() - p.deleteNominatedPodIfExists(pod) + p.nominatedPods.delete(pod) + p.lock.Unlock() +} + +// UpdateNominatedPodForNode adds a pod to the nominated pods of the given node. +// This is called during the preemption process after a node is nominated to run +// the pod. We update the structure before sending a request to update the pod +// object to avoid races with the following scheduling cycles. +func (p *PriorityQueue) UpdateNominatedPodForNode(pod *v1.Pod, nodeName string) { + p.lock.Lock() + p.nominatedPods.add(pod, nodeName) p.lock.Unlock() } +// NumUnschedulablePods returns the number of unschedulable pods exist in the SchedulingQueue. +func (p *PriorityQueue) NumUnschedulablePods() int { + p.lock.RLock() + defer p.lock.RUnlock() + return len(p.unschedulableQ.pods) +} + // UnschedulablePodsMap holds pods that cannot be scheduled. This data structure // is used to implement unschedulableQ. type UnschedulablePodsMap struct { @@ -767,3 +774,77 @@ func newHeap(keyFn KeyFunc, lessFn LessFunc) *Heap { }, } } + +// nominatedPodMap is a structure that stores pods nominated to run on nodes. +// It exists because nominatedNodeName of pod objects stored in the structure +// may be different than what scheduler has here. We should be able to find pods +// by their UID and update/delete them. +type nominatedPodMap struct { + // nominatedPods is a map keyed by a node name and the value is a list of + // pods which are nominated to run on the node. These are pods which can be in + // the activeQ or unschedulableQ. + nominatedPods map[string][]*v1.Pod + // nominatedPodToNode is map keyed by a Pod UID to the node name where it is + // nominated. + nominatedPodToNode map[ktypes.UID]string +} + +func (npm *nominatedPodMap) add(p *v1.Pod, nodeName string) { + // always delete the pod if it already exist, to ensure we never store more than + // one instance of the pod. + npm.delete(p) + + nnn := nodeName + if len(nnn) == 0 { + nnn = NominatedNodeName(p) + if len(nnn) == 0 { + return + } + } + npm.nominatedPodToNode[p.UID] = nnn + for _, np := range npm.nominatedPods[nnn] { + if np.UID == p.UID { + klog.V(4).Infof("Pod %v/%v already exists in the nominated map!", p.Namespace, p.Name) + return + } + } + npm.nominatedPods[nnn] = append(npm.nominatedPods[nnn], p) +} + +func (npm *nominatedPodMap) delete(p *v1.Pod) { + nnn, ok := npm.nominatedPodToNode[p.UID] + if !ok { + return + } + for i, np := range npm.nominatedPods[nnn] { + if np.UID == p.UID { + npm.nominatedPods[nnn] = append(npm.nominatedPods[nnn][:i], npm.nominatedPods[nnn][i+1:]...) + if len(npm.nominatedPods[nnn]) == 0 { + delete(npm.nominatedPods, nnn) + } + break + } + } + delete(npm.nominatedPodToNode, p.UID) +} + +func (npm *nominatedPodMap) update(oldPod, newPod *v1.Pod) { + // We update irrespective of the nominatedNodeName changed or not, to ensure + // that pod pointer is updated. + npm.delete(oldPod) + npm.add(newPod, "") +} + +func (npm *nominatedPodMap) podsForNode(nodeName string) []*v1.Pod { + if list, ok := npm.nominatedPods[nodeName]; ok { + return list + } + return nil +} + +func newNominatedPodMap() *nominatedPodMap { + return &nominatedPodMap{ + nominatedPods: make(map[string][]*v1.Pod), + nominatedPodToNode: make(map[ktypes.UID]string), + } +} diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/util/ipvs/ipvs_linux.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/util/ipvs/ipvs_linux.go index b4f53be6fdb9..54dac294262d 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/util/ipvs/ipvs_linux.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/util/ipvs/ipvs_linux.go @@ -23,6 +23,7 @@ import ( "fmt" "net" "strings" + "sync" "syscall" libipvs "github.com/docker/libnetwork/ipvs" @@ -34,6 +35,7 @@ import ( type runner struct { exec utilexec.Interface ipvsHandle *libipvs.Handle + mu sync.Mutex // Protect Netlink calls } // Protocol is the IPVS service protocol type @@ -58,6 +60,8 @@ func (runner *runner) AddVirtualServer(vs *VirtualServer) error { if err != nil { return err } + runner.mu.Lock() + defer runner.mu.Unlock() return runner.ipvsHandle.NewService(svc) } @@ -67,6 +71,8 @@ func (runner *runner) UpdateVirtualServer(vs *VirtualServer) error { if err != nil { return err } + runner.mu.Lock() + defer runner.mu.Unlock() return runner.ipvsHandle.UpdateService(svc) } @@ -76,6 +82,8 @@ func (runner *runner) DeleteVirtualServer(vs *VirtualServer) error { if err != nil { return err } + runner.mu.Lock() + defer runner.mu.Unlock() return runner.ipvsHandle.DelService(svc) } @@ -85,7 +93,10 @@ func (runner *runner) GetVirtualServer(vs *VirtualServer) (*VirtualServer, error if err != nil { return nil, err } + runner.mu.Lock() ipvsSvc, err := runner.ipvsHandle.GetService(svc) + runner.mu.Unlock() + if err != nil { return nil, err } @@ -98,7 +109,9 @@ func (runner *runner) GetVirtualServer(vs *VirtualServer) (*VirtualServer, error // GetVirtualServers is part of ipvs.Interface. func (runner *runner) GetVirtualServers() ([]*VirtualServer, error) { + runner.mu.Lock() ipvsSvcs, err := runner.ipvsHandle.GetServices() + runner.mu.Unlock() if err != nil { return nil, err } @@ -115,6 +128,8 @@ func (runner *runner) GetVirtualServers() ([]*VirtualServer, error) { // Flush is part of ipvs.Interface. Currently we delete IPVS services one by one func (runner *runner) Flush() error { + runner.mu.Lock() + defer runner.mu.Unlock() return runner.ipvsHandle.Flush() } @@ -128,6 +143,8 @@ func (runner *runner) AddRealServer(vs *VirtualServer, rs *RealServer) error { if err != nil { return err } + runner.mu.Lock() + defer runner.mu.Unlock() return runner.ipvsHandle.NewDestination(svc, dst) } @@ -141,6 +158,8 @@ func (runner *runner) DeleteRealServer(vs *VirtualServer, rs *RealServer) error if err != nil { return err } + runner.mu.Lock() + defer runner.mu.Unlock() return runner.ipvsHandle.DelDestination(svc, dst) } @@ -153,6 +172,8 @@ func (runner *runner) UpdateRealServer(vs *VirtualServer, rs *RealServer) error if err != nil { return err } + runner.mu.Lock() + defer runner.mu.Unlock() return runner.ipvsHandle.UpdateDestination(svc, dst) } @@ -162,7 +183,9 @@ func (runner *runner) GetRealServers(vs *VirtualServer) ([]*RealServer, error) { if err != nil { return nil, err } + runner.mu.Lock() dsts, err := runner.ipvsHandle.GetDestinations(svc) + runner.mu.Unlock() if err != nil { return nil, err } diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/util/mount/BUILD b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/util/mount/BUILD index 221afb7a9c65..c9b9ce8a47e6 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/util/mount/BUILD +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/util/mount/BUILD @@ -9,6 +9,7 @@ go_library( "exec_mount_unsupported.go", "fake.go", "mount.go", + "mount_helper.go", "mount_linux.go", "mount_unsupported.go", "mount_windows.go", @@ -67,6 +68,7 @@ go_test( name = "go_default_test", srcs = [ "exec_mount_test.go", + "mount_helper_test.go", "mount_linux_test.go", "mount_test.go", "mount_windows_test.go", diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/util/mount/fake.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/util/mount/fake.go index 06e0fcccdc16..0e2952f3e02d 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/util/mount/fake.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/util/mount/fake.go @@ -30,6 +30,8 @@ type FakeMounter struct { MountPoints []MountPoint Log []FakeAction Filesystem map[string]FileType + // Error to return for a path when calling IsLikelyNotMountPoint + MountCheckErrors map[string]error // Some tests run things in parallel, make sure the mounter does not produce // any golang's DATA RACE warnings. mutex sync.Mutex @@ -119,6 +121,7 @@ func (f *FakeMounter) Unmount(target string) error { } f.MountPoints = newMountpoints f.Log = append(f.Log, FakeAction{Action: FakeActionUnmount, Target: absTarget}) + delete(f.MountCheckErrors, target) return nil } @@ -141,7 +144,12 @@ func (f *FakeMounter) IsLikelyNotMountPoint(file string) (bool, error) { f.mutex.Lock() defer f.mutex.Unlock() - _, err := os.Stat(file) + err := f.MountCheckErrors[file] + if err != nil { + return false, err + } + + _, err = os.Stat(file) if err != nil { return true, err } diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/util/mount/mount_helper.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/util/mount/mount_helper.go new file mode 100644 index 000000000000..a06871e4789e --- /dev/null +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/util/mount/mount_helper.go @@ -0,0 +1,124 @@ +/* +Copyright 2018 The Kubernetes Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package mount + +import ( + "fmt" + "os" + "syscall" + + "k8s.io/klog" +) + +// CleanupMountPoint unmounts the given path and +// deletes the remaining directory if successful. +// if extensiveMountPointCheck is true +// IsNotMountPoint will be called instead of IsLikelyNotMountPoint. +// IsNotMountPoint is more expensive but properly handles bind mounts within the same fs. +func CleanupMountPoint(mountPath string, mounter Interface, extensiveMountPointCheck bool) error { + // mounter.ExistsPath cannot be used because for containerized kubelet, we need to check + // the path in the kubelet container, not on the host. + pathExists, pathErr := PathExists(mountPath) + if !pathExists { + klog.Warningf("Warning: Unmount skipped because path does not exist: %v", mountPath) + return nil + } + corruptedMnt := IsCorruptedMnt(pathErr) + if pathErr != nil && !corruptedMnt { + return fmt.Errorf("Error checking path: %v", pathErr) + } + return doCleanupMountPoint(mountPath, mounter, extensiveMountPointCheck, corruptedMnt) +} + +// doCleanupMountPoint unmounts the given path and +// deletes the remaining directory if successful. +// if extensiveMountPointCheck is true +// IsNotMountPoint will be called instead of IsLikelyNotMountPoint. +// IsNotMountPoint is more expensive but properly handles bind mounts within the same fs. +// if corruptedMnt is true, it means that the mountPath is a corrupted mountpoint, and the mount point check +// will be skipped +func doCleanupMountPoint(mountPath string, mounter Interface, extensiveMountPointCheck bool, corruptedMnt bool) error { + if !corruptedMnt { + var notMnt bool + var err error + if extensiveMountPointCheck { + notMnt, err = IsNotMountPoint(mounter, mountPath) + } else { + notMnt, err = mounter.IsLikelyNotMountPoint(mountPath) + } + + if err != nil { + return err + } + + if notMnt { + klog.Warningf("Warning: %q is not a mountpoint, deleting", mountPath) + return os.Remove(mountPath) + } + } + + // Unmount the mount path + klog.V(4).Infof("%q is a mountpoint, unmounting", mountPath) + if err := mounter.Unmount(mountPath); err != nil { + return err + } + + notMnt, mntErr := mounter.IsLikelyNotMountPoint(mountPath) + if mntErr != nil { + return mntErr + } + if notMnt { + klog.V(4).Infof("%q is unmounted, deleting the directory", mountPath) + return os.Remove(mountPath) + } + return fmt.Errorf("Failed to unmount path %v", mountPath) +} + +// TODO: clean this up to use pkg/util/file/FileExists +// PathExists returns true if the specified path exists. +func PathExists(path string) (bool, error) { + _, err := os.Stat(path) + if err == nil { + return true, nil + } else if os.IsNotExist(err) { + return false, nil + } else if IsCorruptedMnt(err) { + return true, err + } else { + return false, err + } +} + +// IsCorruptedMnt return true if err is about corrupted mount point +func IsCorruptedMnt(err error) bool { + if err == nil { + return false + } + var underlyingError error + switch pe := err.(type) { + case nil: + return false + case *os.PathError: + underlyingError = pe.Err + case *os.LinkError: + underlyingError = pe.Err + case *os.SyscallError: + underlyingError = pe.Err + } + + return underlyingError == syscall.ENOTCONN || underlyingError == syscall.ESTALE || underlyingError == syscall.EIO +} diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/util/mount/mount_linux.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/util/mount/mount_linux.go index 6ebeff053b59..85a901696875 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/util/mount/mount_linux.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/util/mount/mount_linux.go @@ -55,6 +55,7 @@ const ( fsckErrorsUncorrected = 4 // place for subpath mounts + // TODO: pass in directory using kubelet_getters instead containerSubPathDirectoryName = "volume-subpaths" // syscall.Openat flags used to traverse directories not following symlinks nofollowFlags = unix.O_RDONLY | unix.O_NOFOLLOW @@ -890,15 +891,22 @@ func doCleanSubPaths(mounter Interface, podDir string, volumeName string) error // scan /var/lib/kubelet/pods//volume-subpaths///* fullContainerDirPath := filepath.Join(subPathDir, containerDir.Name()) - subPaths, err := ioutil.ReadDir(fullContainerDirPath) - if err != nil { - return fmt.Errorf("error reading %s: %s", fullContainerDirPath, err) - } - for _, subPath := range subPaths { - if err = doCleanSubPath(mounter, fullContainerDirPath, subPath.Name()); err != nil { + err = filepath.Walk(fullContainerDirPath, func(path string, info os.FileInfo, err error) error { + if path == fullContainerDirPath { + // Skip top level directory + return nil + } + + // pass through errors and let doCleanSubPath handle them + if err = doCleanSubPath(mounter, fullContainerDirPath, filepath.Base(path)); err != nil { return err } + return nil + }) + if err != nil { + return fmt.Errorf("error processing %s: %s", fullContainerDirPath, err) } + // Whole container has been processed, remove its directory. if err := os.Remove(fullContainerDirPath); err != nil { return fmt.Errorf("error deleting %s: %s", fullContainerDirPath, err) @@ -925,22 +933,12 @@ func doCleanSubPath(mounter Interface, fullContainerDirPath, subPathIndex string // process /var/lib/kubelet/pods//volume-subpaths/// klog.V(4).Infof("Cleaning up subpath mounts for subpath %v", subPathIndex) fullSubPath := filepath.Join(fullContainerDirPath, subPathIndex) - notMnt, err := IsNotMountPoint(mounter, fullSubPath) - if err != nil { - return fmt.Errorf("error checking %s for mount: %s", fullSubPath, err) - } - // Unmount it - if !notMnt { - if err = mounter.Unmount(fullSubPath); err != nil { - return fmt.Errorf("error unmounting %s: %s", fullSubPath, err) - } - klog.V(5).Infof("Unmounted %s", fullSubPath) - } - // Remove it *non*-recursively, just in case there were some hiccups. - if err = os.Remove(fullSubPath); err != nil { - return fmt.Errorf("error deleting %s: %s", fullSubPath, err) + + if err := CleanupMountPoint(fullSubPath, mounter, true); err != nil { + return fmt.Errorf("error cleaning subpath mount %s: %s", fullSubPath, err) } - klog.V(5).Infof("Removed %s", fullSubPath) + + klog.V(4).Infof("Successfully cleaned subpath directory %s", fullSubPath) return nil } diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/azure_dd/azure_common.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/azure_dd/azure_common.go index 9de53fe3368e..174510c5d1b0 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/azure_dd/azure_common.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/azure_dd/azure_common.go @@ -40,7 +40,7 @@ import ( const ( defaultStorageAccountType = compute.StandardLRS defaultAzureDiskKind = v1.AzureManagedDisk - defaultAzureDataDiskCachingMode = v1.AzureDataDiskCachingNone + defaultAzureDataDiskCachingMode = v1.AzureDataDiskCachingReadOnly ) type dataDisk struct { diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/azure_dd/azure_dd.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/azure_dd/azure_dd.go index 961d5a35714a..4a082addf1b5 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/azure_dd/azure_dd.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/azure_dd/azure_dd.go @@ -187,7 +187,7 @@ func getMaxDataDiskCount(instanceType string, sizeList *[]compute.VirtualMachine continue } if strings.ToUpper(*size.Name) == vmsize { - klog.V(2).Infof("got a matching size in getMaxDataDiskCount, Name: %s, MaxDataDiskCount: %d", *size.Name, *size.MaxDataDiskCount) + klog.V(12).Infof("got a matching size in getMaxDataDiskCount, Name: %s, MaxDataDiskCount: %d", *size.Name, *size.MaxDataDiskCount) return int64(*size.MaxDataDiskCount) } } diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/csi/csi_plugin.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/csi/csi_plugin.go index 1732dc7f9231..35f20dc69101 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/csi/csi_plugin.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/csi/csi_plugin.go @@ -705,15 +705,15 @@ func highestSupportedVersion(versions []string) (*utilversion.Version, error) { return nil, fmt.Errorf("None of the CSI versions reported by this driver are supported") } -// Only CSI 0.x drivers are allowed to use deprecated socket dir. +// Only drivers that implement CSI 0.x are allowed to use deprecated socket dir. func isDeprecatedSocketDirAllowed(versions []string) bool { for _, version := range versions { - if !isV0Version(version) { - return false + if isV0Version(version) { + return true } } - return true + return false } func isV0Version(version string) bool { diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/portworx/portworx.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/portworx/portworx.go index 212a4c23d796..e2cb8982986d 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/portworx/portworx.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/portworx/portworx.go @@ -20,6 +20,7 @@ import ( "fmt" "os" + volumeclient "github.com/libopenstorage/openstorage/api/client/volume" "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/api/resource" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" @@ -43,7 +44,7 @@ func ProbeVolumePlugins() []volume.VolumePlugin { type portworxVolumePlugin struct { host volume.VolumeHost - util *PortworxVolumeUtil + util *portworxVolumeUtil } var _ volume.VolumePlugin = &portworxVolumePlugin{} @@ -61,8 +62,18 @@ func getPath(uid types.UID, volName string, host volume.VolumeHost) string { } func (plugin *portworxVolumePlugin) Init(host volume.VolumeHost) error { + client, err := volumeclient.NewDriverClient( + fmt.Sprintf("http://%s:%d", host.GetHostName(), osdMgmtDefaultPort), + pxdDriverName, osdDriverVersion, pxDriverName) + if err != nil { + return err + } + plugin.host = host - plugin.util = &PortworxVolumeUtil{} + plugin.util = &portworxVolumeUtil{ + portworxClient: client, + } + return nil } diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/portworx/portworx_util.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/portworx/portworx_util.go index 62b3e3f4d317..7ac5522dac1f 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/portworx/portworx_util.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/portworx/portworx_util.go @@ -34,22 +34,22 @@ import ( ) const ( - osdMgmtPort = "9001" - osdDriverVersion = "v1" - pxdDriverName = "pxd" - pvcClaimLabel = "pvc" - pvcNamespaceLabel = "namespace" - pxServiceName = "portworx-service" - pxDriverName = "pxd-sched" + osdMgmtDefaultPort = 9001 + osdDriverVersion = "v1" + pxdDriverName = "pxd" + pvcClaimLabel = "pvc" + pvcNamespaceLabel = "namespace" + pxServiceName = "portworx-service" + pxDriverName = "pxd-sched" ) -type PortworxVolumeUtil struct { +type portworxVolumeUtil struct { portworxClient *osdclient.Client } // CreateVolume creates a Portworx volume. -func (util *PortworxVolumeUtil) CreateVolume(p *portworxVolumeProvisioner) (string, int64, map[string]string, error) { - driver, err := util.getPortworxDriver(p.plugin.host, false /*localOnly*/) +func (util *portworxVolumeUtil) CreateVolume(p *portworxVolumeProvisioner) (string, int64, map[string]string, error) { + driver, err := util.getPortworxDriver(p.plugin.host) if err != nil || driver == nil { klog.Errorf("Failed to get portworx driver. Err: %v", err) return "", 0, nil, err @@ -112,8 +112,8 @@ func (util *PortworxVolumeUtil) CreateVolume(p *portworxVolumeProvisioner) (stri } // DeleteVolume deletes a Portworx volume -func (util *PortworxVolumeUtil) DeleteVolume(d *portworxVolumeDeleter) error { - driver, err := util.getPortworxDriver(d.plugin.host, false /*localOnly*/) +func (util *portworxVolumeUtil) DeleteVolume(d *portworxVolumeDeleter) error { + driver, err := util.getPortworxDriver(d.plugin.host) if err != nil || driver == nil { klog.Errorf("Failed to get portworx driver. Err: %v", err) return err @@ -128,8 +128,8 @@ func (util *PortworxVolumeUtil) DeleteVolume(d *portworxVolumeDeleter) error { } // AttachVolume attaches a Portworx Volume -func (util *PortworxVolumeUtil) AttachVolume(m *portworxVolumeMounter, attachOptions map[string]string) (string, error) { - driver, err := util.getPortworxDriver(m.plugin.host, true /*localOnly*/) +func (util *portworxVolumeUtil) AttachVolume(m *portworxVolumeMounter, attachOptions map[string]string) (string, error) { + driver, err := util.getLocalPortworxDriver(m.plugin.host) if err != nil || driver == nil { klog.Errorf("Failed to get portworx driver. Err: %v", err) return "", err @@ -144,8 +144,8 @@ func (util *PortworxVolumeUtil) AttachVolume(m *portworxVolumeMounter, attachOpt } // DetachVolume detaches a Portworx Volume -func (util *PortworxVolumeUtil) DetachVolume(u *portworxVolumeUnmounter) error { - driver, err := util.getPortworxDriver(u.plugin.host, true /*localOnly*/) +func (util *portworxVolumeUtil) DetachVolume(u *portworxVolumeUnmounter) error { + driver, err := util.getLocalPortworxDriver(u.plugin.host) if err != nil || driver == nil { klog.Errorf("Failed to get portworx driver. Err: %v", err) return err @@ -160,8 +160,8 @@ func (util *PortworxVolumeUtil) DetachVolume(u *portworxVolumeUnmounter) error { } // MountVolume mounts a Portworx Volume on the specified mountPath -func (util *PortworxVolumeUtil) MountVolume(m *portworxVolumeMounter, mountPath string) error { - driver, err := util.getPortworxDriver(m.plugin.host, true /*localOnly*/) +func (util *portworxVolumeUtil) MountVolume(m *portworxVolumeMounter, mountPath string) error { + driver, err := util.getLocalPortworxDriver(m.plugin.host) if err != nil || driver == nil { klog.Errorf("Failed to get portworx driver. Err: %v", err) return err @@ -176,8 +176,8 @@ func (util *PortworxVolumeUtil) MountVolume(m *portworxVolumeMounter, mountPath } // UnmountVolume unmounts a Portworx Volume -func (util *PortworxVolumeUtil) UnmountVolume(u *portworxVolumeUnmounter, mountPath string) error { - driver, err := util.getPortworxDriver(u.plugin.host, true /*localOnly*/) +func (util *portworxVolumeUtil) UnmountVolume(u *portworxVolumeUnmounter, mountPath string) error { + driver, err := util.getLocalPortworxDriver(u.plugin.host) if err != nil || driver == nil { klog.Errorf("Failed to get portworx driver. Err: %v", err) return err @@ -191,8 +191,8 @@ func (util *PortworxVolumeUtil) UnmountVolume(u *portworxVolumeUnmounter, mountP return nil } -func (util *PortworxVolumeUtil) ResizeVolume(spec *volume.Spec, newSize resource.Quantity, volumeHost volume.VolumeHost) error { - driver, err := util.getPortworxDriver(volumeHost, false /*localOnly*/) +func (util *portworxVolumeUtil) ResizeVolume(spec *volume.Spec, newSize resource.Quantity, volumeHost volume.VolumeHost) error { + driver, err := util.getPortworxDriver(volumeHost) if err != nil || driver == nil { klog.Errorf("Failed to get portworx driver. Err: %v", err) return err @@ -254,8 +254,8 @@ func isClientValid(client *osdclient.Client) (bool, error) { return true, nil } -func createDriverClient(hostname string) (*osdclient.Client, error) { - client, err := volumeclient.NewDriverClient("http://"+hostname+":"+osdMgmtPort, +func createDriverClient(hostname string, port int32) (*osdclient.Client, error) { + client, err := volumeclient.NewDriverClient(fmt.Sprintf("http://%s:%d", hostname, port), pxdDriverName, osdDriverVersion, pxDriverName) if err != nil { return nil, err @@ -268,65 +268,105 @@ func createDriverClient(hostname string) (*osdclient.Client, error) { } } -// getPortworxDriver() returns a Portworx volume driver which can be used for volume operations -// localOnly: If true, the returned driver will be connected to Portworx API server on volume host. -// If false, driver will be connected to API server on volume host or Portworx k8s service cluster IP -// This flag is required to explicitly force certain operations (mount, unmount, detach, attach) to -// go to the volume host instead of the k8s service which might route it to any host. This pertains to how -// Portworx mounts and attaches a volume to the running container. The node getting these requests needs to -// see the pod container mounts (specifically /var/lib/kubelet/pods/) -// Operations like create and delete volume don't need to be restricted to local volume host since -// any node in the Portworx cluster can co-ordinate the create/delete request and forward the operations to -// the Portworx node that will own/owns the data. -func (util *PortworxVolumeUtil) getPortworxDriver(volumeHost volume.VolumeHost, localOnly bool) (volumeapi.VolumeDriver, error) { - var err error - if localOnly { - util.portworxClient, err = createDriverClient(volumeHost.GetHostName()) - if err != nil { - return nil, err - } else { - klog.V(4).Infof("Using portworx local service at: %v as api endpoint", volumeHost.GetHostName()) - return volumeclient.VolumeDriver(util.portworxClient), nil - } - } - +// getPortworxDriver returns a Portworx volume driver which can be used for cluster wide operations. +// Operations like create and delete volume don't need to be restricted to local volume host since +// any node in the Portworx cluster can co-ordinate the create/delete request and forward the operations to +// the Portworx node that will own/owns the data. +func (util *portworxVolumeUtil) getPortworxDriver(volumeHost volume.VolumeHost) (volumeapi.VolumeDriver, error) { // check if existing saved client is valid if isValid, _ := isClientValid(util.portworxClient); isValid { return volumeclient.VolumeDriver(util.portworxClient), nil } // create new client - util.portworxClient, err = createDriverClient(volumeHost.GetHostName()) // for backward compatibility + var err error + util.portworxClient, err = createDriverClient(volumeHost.GetHostName(), osdMgmtDefaultPort) // for backward compatibility if err != nil || util.portworxClient == nil { - // Create client from portworx service - kubeClient := volumeHost.GetKubeClient() - if kubeClient == nil { - klog.Error("Failed to get kubeclient when creating portworx client") - return nil, nil - } - - opts := metav1.GetOptions{} - svc, err := kubeClient.CoreV1().Services(api.NamespaceSystem).Get(pxServiceName, opts) + // Create client from portworx k8s service. + svc, err := getPortworxService(volumeHost) if err != nil { - klog.Errorf("Failed to get service. Err: %v", err) - return nil, err - } - - if svc == nil { - klog.Errorf("Service: %v not found. Consult Portworx docs to deploy it.", pxServiceName) return nil, err } - util.portworxClient, err = createDriverClient(svc.Spec.ClusterIP) + // The port here is always the default one since it's the service port + util.portworxClient, err = createDriverClient(svc.Spec.ClusterIP, osdMgmtDefaultPort) if err != nil || util.portworxClient == nil { klog.Errorf("Failed to connect to portworx service. Err: %v", err) return nil, err } - klog.Infof("Using portworx cluster service at: %v as api endpoint", svc.Spec.ClusterIP) + klog.Infof("Using portworx cluster service at: %v:%d as api endpoint", + svc.Spec.ClusterIP, osdMgmtDefaultPort) } else { - klog.Infof("Using portworx service at: %v as api endpoint", volumeHost.GetHostName()) + klog.Infof("Using portworx service at: %v:%d as api endpoint", + volumeHost.GetHostName(), osdMgmtDefaultPort) + } + + return volumeclient.VolumeDriver(util.portworxClient), nil +} + +// getLocalPortworxDriver returns driver connected to Portworx API server on volume host. +// This is required to force certain operations (mount, unmount, detach, attach) to +// go to the volume host instead of the k8s service which might route it to any host. This pertains to how +// Portworx mounts and attaches a volume to the running container. The node getting these requests needs to +// see the pod container mounts (specifically /var/lib/kubelet/pods/) +func (util *portworxVolumeUtil) getLocalPortworxDriver(volumeHost volume.VolumeHost) (volumeapi.VolumeDriver, error) { + if util.portworxClient != nil { + // check if existing saved client is valid + if isValid, _ := isClientValid(util.portworxClient); isValid { + return volumeclient.VolumeDriver(util.portworxClient), nil + } + } + + // Lookup port + svc, err := getPortworxService(volumeHost) + if err != nil { + return nil, err + } + + osgMgmtPort := lookupPXAPIPortFromService(svc) + util.portworxClient, err = createDriverClient(volumeHost.GetHostName(), osgMgmtPort) + if err != nil { + return nil, err } + klog.Infof("Using portworx local service at: %v:%d as api endpoint", + volumeHost.GetHostName(), osgMgmtPort) return volumeclient.VolumeDriver(util.portworxClient), nil } + +// lookupPXAPIPortFromService goes over all the ports in the given service and returns the target +// port for osdMgmtDefaultPort +func lookupPXAPIPortFromService(svc *v1.Service) int32 { + for _, p := range svc.Spec.Ports { + if p.Port == osdMgmtDefaultPort { + return p.TargetPort.IntVal + } + } + return osdMgmtDefaultPort // default +} + +// getPortworxService returns the portworx cluster service from the API server +func getPortworxService(host volume.VolumeHost) (*v1.Service, error) { + kubeClient := host.GetKubeClient() + if kubeClient == nil { + err := fmt.Errorf("Failed to get kubeclient when creating portworx client") + klog.Errorf(err.Error()) + return nil, err + } + + opts := metav1.GetOptions{} + svc, err := kubeClient.CoreV1().Services(api.NamespaceSystem).Get(pxServiceName, opts) + if err != nil { + klog.Errorf("Failed to get service. Err: %v", err) + return nil, err + } + + if svc == nil { + err = fmt.Errorf("Service: %v not found. Consult Portworx docs to deploy it.", pxServiceName) + klog.Errorf(err.Error()) + return nil, err + } + + return svc, nil +} diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/util/BUILD b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/util/BUILD index 64eac778de27..8ccd019eb051 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/util/BUILD +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/util/BUILD @@ -63,7 +63,6 @@ go_test( "//pkg/apis/core/v1/helper:go_default_library", "//pkg/features:go_default_library", "//pkg/kubelet/apis:go_default_library", - "//pkg/util/mount:go_default_library", "//pkg/util/slice:go_default_library", "//pkg/volume:go_default_library", "//staging/src/k8s.io/api/core/v1:go_default_library", @@ -73,8 +72,12 @@ go_test( "//staging/src/k8s.io/apimachinery/pkg/util/sets:go_default_library", "//staging/src/k8s.io/apiserver/pkg/util/feature:go_default_library", "//staging/src/k8s.io/apiserver/pkg/util/feature/testing:go_default_library", - "//staging/src/k8s.io/client-go/util/testing:go_default_library", - ], + ] + select({ + "@io_bazel_rules_go//go/platform:linux": [ + "//staging/src/k8s.io/client-go/util/testing:go_default_library", + ], + "//conditions:default": [], + }), ) filegroup( diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/util/operationexecutor/operation_executor.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/util/operationexecutor/operation_executor.go index 745910dc220d..cfcc249f8bd1 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/util/operationexecutor/operation_executor.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/util/operationexecutor/operation_executor.go @@ -725,7 +725,7 @@ func (oe *operationExecutor) MountVolume( if fsVolume { // Filesystem volume case // Mount/remount a volume when a volume is attached - generatedOperations, err = oe.operationGenerator.GenerateMountVolumeFunc( + generatedOperations = oe.operationGenerator.GenerateMountVolumeFunc( waitForAttachTimeout, volumeToMount, actualStateOfWorld, isRemount) } else { diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/util/operationexecutor/operation_generator.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/util/operationexecutor/operation_generator.go index 36c10b67752a..e0123d5611a1 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/util/operationexecutor/operation_generator.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/util/operationexecutor/operation_generator.go @@ -40,6 +40,10 @@ import ( "k8s.io/kubernetes/pkg/volume/util/volumepathhandler" ) +const ( + unknownVolumePlugin string = "UnknownVolumePlugin" +) + var _ OperationGenerator = &operationGenerator{} type operationGenerator struct { @@ -82,7 +86,7 @@ func NewOperationGenerator(kubeClient clientset.Interface, // OperationGenerator interface that extracts out the functions from operation_executor to make it dependency injectable type OperationGenerator interface { // Generates the MountVolume function needed to perform the mount of a volume plugin - GenerateMountVolumeFunc(waitForAttachTimeout time.Duration, volumeToMount VolumeToMount, actualStateOfWorldMounterUpdater ActualStateOfWorldMounterUpdater, isRemount bool) (volumetypes.GeneratedOperations, error) + GenerateMountVolumeFunc(waitForAttachTimeout time.Duration, volumeToMount VolumeToMount, actualStateOfWorldMounterUpdater ActualStateOfWorldMounterUpdater, isRemount bool) volumetypes.GeneratedOperations // Generates the UnmountVolume function needed to perform the unmount of a volume plugin GenerateUnmountVolumeFunc(volumeToUnmount MountedVolume, actualStateOfWorld ActualStateOfWorldMounterUpdater, podsDir string) (volumetypes.GeneratedOperations, error) @@ -436,61 +440,61 @@ func (og *operationGenerator) GenerateMountVolumeFunc( waitForAttachTimeout time.Duration, volumeToMount VolumeToMount, actualStateOfWorld ActualStateOfWorldMounterUpdater, - isRemount bool) (volumetypes.GeneratedOperations, error) { + isRemount bool) volumetypes.GeneratedOperations { // Get mounter plugin + volumePluginName := unknownVolumePlugin volumePlugin, err := og.volumePluginMgr.FindPluginBySpec(volumeToMount.VolumeSpec) - if err != nil || volumePlugin == nil { - return volumetypes.GeneratedOperations{}, volumeToMount.GenerateErrorDetailed("MountVolume.FindPluginBySpec failed", err) + if err == nil && volumePlugin != nil { + volumePluginName = volumePlugin.GetPluginName() } - affinityErr := checkNodeAffinity(og, volumeToMount, volumePlugin) - if affinityErr != nil { - eventErr, detailedErr := volumeToMount.GenerateError("MountVolume.NodeAffinity check failed", affinityErr) - og.recorder.Eventf(volumeToMount.Pod, v1.EventTypeWarning, kevents.FailedMountVolume, eventErr.Error()) - return volumetypes.GeneratedOperations{}, detailedErr - } + mountVolumeFunc := func() (error, error) { + if err != nil || volumePlugin == nil { + return volumeToMount.GenerateError("MountVolume.FindPluginBySpec failed", err) + } - volumeMounter, newMounterErr := volumePlugin.NewMounter( - volumeToMount.VolumeSpec, - volumeToMount.Pod, - volume.VolumeOptions{}) - if newMounterErr != nil { - eventErr, detailedErr := volumeToMount.GenerateError("MountVolume.NewMounter initialization failed", newMounterErr) - og.recorder.Eventf(volumeToMount.Pod, v1.EventTypeWarning, kevents.FailedMountVolume, eventErr.Error()) - return volumetypes.GeneratedOperations{}, detailedErr - } + affinityErr := checkNodeAffinity(og, volumeToMount, volumePlugin) + if affinityErr != nil { + return volumeToMount.GenerateError("MountVolume.NodeAffinity check failed", affinityErr) + } - mountCheckError := checkMountOptionSupport(og, volumeToMount, volumePlugin) + volumeMounter, newMounterErr := volumePlugin.NewMounter( + volumeToMount.VolumeSpec, + volumeToMount.Pod, + volume.VolumeOptions{}) + if newMounterErr != nil { + return volumeToMount.GenerateError("MountVolume.NewMounter initialization failed", newMounterErr) - if mountCheckError != nil { - eventErr, detailedErr := volumeToMount.GenerateError("MountVolume.MountOptionSupport check failed", mountCheckError) - og.recorder.Eventf(volumeToMount.Pod, v1.EventTypeWarning, kevents.UnsupportedMountOption, eventErr.Error()) - return volumetypes.GeneratedOperations{}, detailedErr - } + } - // Get attacher, if possible - attachableVolumePlugin, _ := - og.volumePluginMgr.FindAttachablePluginBySpec(volumeToMount.VolumeSpec) - var volumeAttacher volume.Attacher - if attachableVolumePlugin != nil { - volumeAttacher, _ = attachableVolumePlugin.NewAttacher() - } + mountCheckError := checkMountOptionSupport(og, volumeToMount, volumePlugin) - // get deviceMounter, if possible - deviceMountableVolumePlugin, _ := og.volumePluginMgr.FindDeviceMountablePluginBySpec(volumeToMount.VolumeSpec) - var volumeDeviceMounter volume.DeviceMounter - if deviceMountableVolumePlugin != nil { - volumeDeviceMounter, _ = deviceMountableVolumePlugin.NewDeviceMounter() - } + if mountCheckError != nil { + return volumeToMount.GenerateError("MountVolume.MountOptionSupport check failed", mountCheckError) + } - var fsGroup *int64 - if volumeToMount.Pod.Spec.SecurityContext != nil && - volumeToMount.Pod.Spec.SecurityContext.FSGroup != nil { - fsGroup = volumeToMount.Pod.Spec.SecurityContext.FSGroup - } + // Get attacher, if possible + attachableVolumePlugin, _ := + og.volumePluginMgr.FindAttachablePluginBySpec(volumeToMount.VolumeSpec) + var volumeAttacher volume.Attacher + if attachableVolumePlugin != nil { + volumeAttacher, _ = attachableVolumePlugin.NewAttacher() + } + + // get deviceMounter, if possible + deviceMountableVolumePlugin, _ := og.volumePluginMgr.FindDeviceMountablePluginBySpec(volumeToMount.VolumeSpec) + var volumeDeviceMounter volume.DeviceMounter + if deviceMountableVolumePlugin != nil { + volumeDeviceMounter, _ = deviceMountableVolumePlugin.NewDeviceMounter() + } + + var fsGroup *int64 + if volumeToMount.Pod.Spec.SecurityContext != nil && + volumeToMount.Pod.Spec.SecurityContext.FSGroup != nil { + fsGroup = volumeToMount.Pod.Spec.SecurityContext.FSGroup + } - mountVolumeFunc := func() (error, error) { devicePath := volumeToMount.DevicePath if volumeAttacher != nil { // Wait for attachable volumes to finish attaching @@ -536,7 +540,7 @@ func (og *operationGenerator) GenerateMountVolumeFunc( // resizeFileSystem will resize the file system if user has requested a resize of // underlying persistent volume and is allowed to do so. - resizeSimpleError, resizeDetailedError := og.resizeFileSystem(volumeToMount, devicePath, deviceMountPath, volumePlugin.GetPluginName()) + resizeSimpleError, resizeDetailedError := og.resizeFileSystem(volumeToMount, devicePath, deviceMountPath, volumePluginName) if resizeSimpleError != nil || resizeDetailedError != nil { return resizeSimpleError, resizeDetailedError @@ -593,8 +597,8 @@ func (og *operationGenerator) GenerateMountVolumeFunc( return volumetypes.GeneratedOperations{ OperationFunc: mountVolumeFunc, EventRecorderFunc: eventRecorderFunc, - CompleteFunc: util.OperationCompleteHook(util.GetFullQualifiedPluginNameForVolume(volumePlugin.GetPluginName(), volumeToMount.VolumeSpec), "volume_mount"), - }, nil + CompleteFunc: util.OperationCompleteHook(util.GetFullQualifiedPluginNameForVolume(volumePluginName, volumeToMount.VolumeSpec), "volume_mount"), + } } func (og *operationGenerator) resizeFileSystem(volumeToMount VolumeToMount, devicePath, deviceMountPath, pluginName string) (simpleErr, detailedErr error) { diff --git a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/util/util.go b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/util/util.go index 070961c2822a..18e24d69f051 100644 --- a/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/util/util.go +++ b/cluster-autoscaler/vendor/k8s.io/kubernetes/pkg/volume/util/util.go @@ -23,9 +23,8 @@ import ( "path" "path/filepath" "strings" - "syscall" - "k8s.io/api/core/v1" + v1 "k8s.io/api/core/v1" storage "k8s.io/api/storage/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/labels" @@ -128,8 +127,9 @@ func SetReady(dir string) { // UnmountPath is a common unmount routine that unmounts the given path and // deletes the remaining directory if successful. +// TODO: Remove this function and change callers to call mount pkg directly func UnmountPath(mountPath string, mounter mount.Interface) error { - return UnmountMountPoint(mountPath, mounter, false /* extensiveMountPointCheck */) + return mount.CleanupMountPoint(mountPath, mounter, false /* extensiveMountPointCheck */) } // UnmountMountPoint is a common unmount routine that unmounts the given path and @@ -137,93 +137,21 @@ func UnmountPath(mountPath string, mounter mount.Interface) error { // if extensiveMountPointCheck is true // IsNotMountPoint will be called instead of IsLikelyNotMountPoint. // IsNotMountPoint is more expensive but properly handles bind mounts. +// TODO: Change callers to call mount pkg directly func UnmountMountPoint(mountPath string, mounter mount.Interface, extensiveMountPointCheck bool) error { - pathExists, pathErr := PathExists(mountPath) - if !pathExists { - klog.Warningf("Warning: Unmount skipped because path does not exist: %v", mountPath) - return nil - } - corruptedMnt := IsCorruptedMnt(pathErr) - if pathErr != nil && !corruptedMnt { - return fmt.Errorf("Error checking path: %v", pathErr) - } - return doUnmountMountPoint(mountPath, mounter, extensiveMountPointCheck, corruptedMnt) -} - -// doUnmountMountPoint is a common unmount routine that unmounts the given path and -// deletes the remaining directory if successful. -// if extensiveMountPointCheck is true -// IsNotMountPoint will be called instead of IsLikelyNotMountPoint. -// IsNotMountPoint is more expensive but properly handles bind mounts. -// if corruptedMnt is true, it means that the mountPath is a corrupted mountpoint, Take it as an argument for convenience of testing -func doUnmountMountPoint(mountPath string, mounter mount.Interface, extensiveMountPointCheck bool, corruptedMnt bool) error { - if !corruptedMnt { - var notMnt bool - var err error - if extensiveMountPointCheck { - notMnt, err = mount.IsNotMountPoint(mounter, mountPath) - } else { - notMnt, err = mounter.IsLikelyNotMountPoint(mountPath) - } - - if err != nil { - return err - } - - if notMnt { - klog.Warningf("Warning: %q is not a mountpoint, deleting", mountPath) - return os.Remove(mountPath) - } - } - - // Unmount the mount path - klog.V(4).Infof("%q is a mountpoint, unmounting", mountPath) - if err := mounter.Unmount(mountPath); err != nil { - return err - } - notMnt, mntErr := mounter.IsLikelyNotMountPoint(mountPath) - if mntErr != nil { - return mntErr - } - if notMnt { - klog.V(4).Infof("%q is unmounted, deleting the directory", mountPath) - return os.Remove(mountPath) - } - return fmt.Errorf("Failed to unmount path %v", mountPath) + return mount.CleanupMountPoint(mountPath, mounter, extensiveMountPointCheck) } // PathExists returns true if the specified path exists. +// TODO: Change callers to call mount pkg directly func PathExists(path string) (bool, error) { - _, err := os.Stat(path) - if err == nil { - return true, nil - } else if os.IsNotExist(err) { - return false, nil - } else if IsCorruptedMnt(err) { - return true, err - } else { - return false, err - } + return mount.PathExists(path) } // IsCorruptedMnt return true if err is about corrupted mount point +// TODO: Change callers to call mount pkg directly func IsCorruptedMnt(err error) bool { - if err == nil { - return false - } - var underlyingError error - switch pe := err.(type) { - case nil: - return false - case *os.PathError: - underlyingError = pe.Err - case *os.LinkError: - underlyingError = pe.Err - case *os.SyscallError: - underlyingError = pe.Err - } - - return underlyingError == syscall.ENOTCONN || underlyingError == syscall.ESTALE || underlyingError == syscall.EIO + return mount.IsCorruptedMnt(err) } // GetSecretForPod locates secret by name in the pod's namespace and returns secret map @@ -825,9 +753,10 @@ func GetUniqueVolumeName(pluginName, volumeName string) v1.UniqueVolumeName { return v1.UniqueVolumeName(fmt.Sprintf("%s/%s", pluginName, volumeName)) } -// GetUniqueVolumeNameForNonAttachableVolume returns the unique volume name -// for a non-attachable volume. -func GetUniqueVolumeNameForNonAttachableVolume( +// GetUniqueVolumeNameFromSpecWithPod returns a unique volume name with pod +// name included. This is useful to generate different names for different pods +// on same volume. +func GetUniqueVolumeNameFromSpecWithPod( podName types.UniquePodName, volumePlugin volume.VolumePlugin, volumeSpec *volume.Spec) v1.UniqueVolumeName { return v1.UniqueVolumeName( fmt.Sprintf("%s/%v-%s", volumePlugin.GetPluginName(), podName, volumeSpec.Name())) From 8551199f3938b9e138f30230f48efe62cd1ff5ce Mon Sep 17 00:00:00 2001 From: ylallemant Date: Thu, 24 Jan 2019 10:37:49 +0100 Subject: [PATCH 32/33] split AWS sessions for OnDemand and Spot pricing API --- .../cloudprovider/aws/aws_cloud_provider.go | 12 ++++++++---- .../cloudprovider/aws/price/descriptor.go | 18 +++++++++++++++--- 2 files changed, 23 insertions(+), 7 deletions(-) diff --git a/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go b/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go index c69224fa812a..6b57c8042d1a 100644 --- a/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go +++ b/cluster-autoscaler/cloudprovider/aws/aws_cloud_provider.go @@ -105,16 +105,20 @@ func (aws *awsCloudProvider) NodeGroupForNode(node *apiv1.Node) (cloudprovider.N // Pricing returns pricing model for this cloud provider or error if not available. func (aws *awsCloudProvider) Pricing() (cloudprovider.PricingModel, errors.AutoscalerError) { - sess, err := session.NewSession(&awssdk.Config{ - Region: awssdk.String("us-east-1"), - }) + sess, err := session.NewSession(&awssdk.Config{}) if err != nil { err = goerrors.Wrap(err, "could not create AWS session") return nil, errors.ToAutoscalerError(errors.InternalError, err) } - return NewPriceModel(aws.awsManager, price.NewDescriptor(sess)), nil + priceDescriptors, err := price.NewDescriptor(sess) + + if err != nil { + return nil, errors.ToAutoscalerError(errors.InternalError, err) + } + + return NewPriceModel(aws.awsManager, priceDescriptors), nil } // GetAvailableMachineTypes get all machine types that can be requested from the cloud provider. diff --git a/cluster-autoscaler/cloudprovider/aws/price/descriptor.go b/cluster-autoscaler/cloudprovider/aws/price/descriptor.go index 890cd20ac8e0..d96f90bc0975 100644 --- a/cluster-autoscaler/cloudprovider/aws/price/descriptor.go +++ b/cluster-autoscaler/cloudprovider/aws/price/descriptor.go @@ -17,10 +17,12 @@ limitations under the License. package price import ( + awssdk "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws/session" "github.com/aws/aws-sdk-go/service/autoscaling" "github.com/aws/aws-sdk-go/service/ec2" "github.com/aws/aws-sdk-go/service/pricing" + goerrors "github.com/pkg/errors" "k8s.io/autoscaler/cluster-autoscaler/cloudprovider/aws/api" "k8s.io/autoscaler/cluster-autoscaler/cloudprovider/aws/price/ondemand" "k8s.io/autoscaler/cluster-autoscaler/cloudprovider/aws/price/spot" @@ -40,14 +42,24 @@ type shapeDescriptor struct { } // NewDescriptor is the constructor of a shapeDescriptor -func NewDescriptor(s *session.Session) *shapeDescriptor { +func NewDescriptor(s *session.Session) (*shapeDescriptor, error) { + + // AWS Pricing API can only be used with Region us-east-1 + sess, err := session.NewSession(&awssdk.Config{ + Region: awssdk.String("us-east-1"), + }) + + if err != nil { + return nil, goerrors.Wrap(err, "could not create AWS session for on demand descriptor") + } + as := autoscaling.New(s) return &shapeDescriptor{ autoscaling: api.NewEC2AutoscalingService(as), launchConfiguration: api.NewEC2LaunchConfigurationService(as), spot: spot.NewDescriptor(api.NewEC2SpotPriceService(ec2.New(s))), - onDemand: ondemand.NewDescriptor(api.NewEC2InstanceInfoService(pricing.New(s))), - } + onDemand: ondemand.NewDescriptor(api.NewEC2InstanceInfoService(pricing.New(sess))), + }, nil } // Price calls, depending whether the asg has a spot price or not, the spot or the on-demand price descriptor From 3b2905538beea283744191c22880c2a646ed8ae2 Mon Sep 17 00:00:00 2001 From: ylallemant Date: Mon, 18 Feb 2019 08:57:15 +0100 Subject: [PATCH 33/33] removed old REST API calls --- .../cloudprovider/aws/api/UPDATE_TEST_DATA.md | 4 ++-- .../cloudprovider/aws/api/instance_info.go | 9 --------- 2 files changed, 2 insertions(+), 11 deletions(-) diff --git a/cluster-autoscaler/cloudprovider/aws/api/UPDATE_TEST_DATA.md b/cluster-autoscaler/cloudprovider/aws/api/UPDATE_TEST_DATA.md index a5098f8923e3..9f73b3916f72 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/UPDATE_TEST_DATA.md +++ b/cluster-autoscaler/cloudprovider/aws/api/UPDATE_TEST_DATA.md @@ -12,10 +12,10 @@ cd ${GOPATH}/src/k8s.io/autoscaler aws pricing get-products \ --region=us-east-1 \ --service-code=AmazonEC2 \ - --filter Type=TERM_MATCH,Field=capacitystatus,Value=Used \ - Type=TERM_MATCH,Field=preInstalledSw,Value=NA \ + --filter Type=TERM_MATCH,Field=preInstalledSw,Value=NA \ Type=TERM_MATCH,Field=location,Value="EU (Ireland)" \ Type=TERM_MATCH,Field=instanceType,Value="m4.xlarge" \ + Type=TERM_MATCH,Field=capacitystatus,Value=Used \ > ./cluster-autoscaler/cloudprovider/aws/api/pricing_ondemand_eu-west-1.json # update spot data diff --git a/cluster-autoscaler/cloudprovider/aws/api/instance_info.go b/cluster-autoscaler/cloudprovider/aws/api/instance_info.go index 259e3d81840e..690adbf7abc0 100644 --- a/cluster-autoscaler/cloudprovider/aws/api/instance_info.go +++ b/cluster-autoscaler/cloudprovider/aws/api/instance_info.go @@ -19,7 +19,6 @@ package api import ( "encoding/json" "fmt" - "net/http" "regexp" "strconv" "strings" @@ -35,7 +34,6 @@ import ( const ( instanceInfoCacheMaxAge = time.Hour * 6 - awsPricingAPIURLTemplate = "https://pricing.us-east-1.amazonaws.com/offers/v1.0/aws/AmazonEC2/current/%s/index.json" instanceOperatingSystemLinux = "Linux" instanceTenancyShared = "Shared" ) @@ -242,18 +240,11 @@ func (s *instanceInfoService) sync(region string) error { } func (s *instanceInfoService) fetch(region string, etag string) (*response, error) { - url := fmt.Sprintf(awsPricingAPIURLTemplate, region) regionName, err := regionFullName(region) if err != nil { return nil, err } - req, err := http.NewRequest("GET", url, nil) - - if len(etag) != 0 { - req.Header.Add("If-None-Match", etag) - } - input := &pricing.GetProductsInput{ ServiceCode: aws.String("AmazonEC2"), Filters: []*pricing.Filter{